authenticates_with_two_factor.rb 3.3 KB
Newer Older
1 2
# frozen_string_literal: true

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# == AuthenticatesWithTwoFactor
#
# Controller concern to handle two-factor authentication
#
# Upon inclusion, skips `require_no_authentication` on `:create`.
module AuthenticatesWithTwoFactor
  extend ActiveSupport::Concern

  # Store the user's ID in the session for later retrieval and render the
  # two factor code prompt
  #
  # The user must have been authenticated with a valid login and password
  # before calling this method!
  #
  # user - User record
  #
  # Returns nil
  def prompt_for_two_factor(user)
21 22 23
    # Set @user for Devise views
    @user = user # rubocop:disable Gitlab/ModuleWithInstanceVariables

24
    return locked_user_redirect(user) unless user.can?(:log_in)
25

26
    session[:otp_user_id] = user.id
27 28 29 30
    setup_u2f_authentication(user)
    render 'devise/sessions/two_factor'
  end

31
  def locked_user_redirect(user)
32
    flash.now[:alert] = _('Invalid Login or password')
33 34 35
    render 'devise/sessions/new'
  end

36 37
  def authenticate_with_two_factor
    user = self.resource = find_user
38
    return locked_user_redirect(user) unless user.can?(:log_in)
39

40
    if user_params[:otp_attempt].present? && session[:otp_user_id]
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
      authenticate_with_two_factor_via_otp(user)
    elsif user_params[:device_response].present? && session[:otp_user_id]
      authenticate_with_two_factor_via_u2f(user)
    elsif user && user.valid_password?(user_params[:password])
      prompt_for_two_factor(user)
    end
  end

  private

  def authenticate_with_two_factor_via_otp(user)
    if valid_otp_attempt?(user)
      # Remove any lingering user data from login
      session.delete(:otp_user_id)

      remember_me(user) if user_params[:remember_me] == '1'
57
      user.save!
58
      sign_in(user, message: :two_factor_authenticated)
59
    else
60
      user.increment_failed_attempts!
61
      Gitlab::AppLogger.info("Failed Login: user=#{user.username} ip=#{request.remote_ip} method=OTP")
62
      flash.now[:alert] = _('Invalid two-factor code.')
63
      prompt_for_two_factor(user)
64 65 66 67 68
    end
  end

  # Authenticate using the response from a U2F (universal 2nd factor) device
  def authenticate_with_two_factor_via_u2f(user)
69
    if U2fRegistration.authenticate(user, u2f_app_id, user_params[:device_response], session[:challenge])
70 71
      # Remove any lingering user data from login
      session.delete(:otp_user_id)
72
      session.delete(:challenge)
73

74
      remember_me(user) if user_params[:remember_me] == '1'
75
      sign_in(user, message: :two_factor_authenticated)
76
    else
77
      user.increment_failed_attempts!
78
      Gitlab::AppLogger.info("Failed Login: user=#{user.username} ip=#{request.remote_ip} method=U2F")
79
      flash.now[:alert] = _('Authentication via U2F device failed.')
80 81 82 83 84 85
      prompt_for_two_factor(user)
    end
  end

  # Setup in preparation of communication with a U2F (universal 2nd factor) device
  # Actual communication is performed using a Javascript API
86
  # rubocop: disable CodeReuse/ActiveRecord
87 88 89
  def setup_u2f_authentication(user)
    key_handles = user.u2f_registrations.pluck(:key_handle)
    u2f = U2F::U2F.new(u2f_app_id)
90

91 92
    if key_handles.present?
      sign_requests = u2f.authentication_requests(key_handles)
93 94
      session[:challenge] ||= u2f.challenge
      gon.push(u2f: { challenge: session[:challenge], app_id: u2f_app_id,
95
                      sign_requests: sign_requests })
96
    end
97
  end
98
  # rubocop: enable CodeReuse/ActiveRecord
99
end