debian-mirror-gitlab/app/models/u2f_registration.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
# Registration information for U2F (universal 2nd factor) devices, like Yubikeys
2019-07-07 11:18:12 +05:30
class U2fRegistration < ApplicationRecord
belongs_to :user
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
after_create :create_webauthn_registration
2022-08-27 11:52:29 +05:30
after_update :update_webauthn_registration, if: :saved_change_to_counter?
2016-09-13 17:45:13 +05:30
def self.register(user, app_id, params, challenges)
u2f = U2F::U2F.new(app_id)
registration = self.new
begin
2016-09-13 17:45:13 +05:30
response = U2F::RegisterResponse.load_from_json(params[:device_response])
registration_data = u2f.register!(challenges, response)
registration.update(certificate: registration_data.certificate,
key_handle: registration_data.key_handle,
public_key: registration_data.public_key,
counter: registration_data.counter,
2016-09-13 17:45:13 +05:30
user: user,
name: params[:name])
rescue JSON::ParserError, NoMethodError, ArgumentError
2019-07-31 22:56:46 +05:30
registration.errors.add(:base, _('Your U2F device did not send a valid JSON response.'))
rescue U2F::Error => e
registration.errors.add(:base, e.message)
end
registration
end
def self.authenticate(user, app_id, json_response, challenges)
response = U2F::SignResponse.load_from_json(json_response)
registration = user.u2f_registrations.find_by_key_handle(response.key_handle)
u2f = U2F::U2F.new(app_id)
if registration
u2f.authenticate!(challenges, response, Base64.decode64(registration.public_key), registration.counter)
registration.update(counter: response.counter)
true
end
rescue JSON::ParserError, NoMethodError, ArgumentError, U2F::Error
false
end
2021-01-03 14:25:43 +05:30
private
2022-08-27 11:52:29 +05:30
def create_webauthn_registration
converter = Gitlab::Auth::U2fWebauthnConverter.new(self)
WebauthnRegistration.create!(converter.convert)
rescue StandardError => e
Gitlab::ErrorTracking.track_exception(e, u2f_registration_id: self.id)
end
def update_webauthn_registration
# When we update the sign count of this registration
# we need to update the sign count of the corresponding webauthn registration
# as well if it exists already
WebauthnRegistration.find_by_credential_xid(webauthn_credential_xid)
&.update_attribute(:counter, counter)
end
2021-01-03 14:25:43 +05:30
def webauthn_credential_xid
Base64.strict_encode64(Base64.urlsafe_decode64(key_handle))
end
end