gitlab-org--gitlab-foss/lib/gitlab/auth.rb

199 lines
6.3 KiB
Ruby
Raw Normal View History

2012-09-12 06:23:16 +00:00
module Gitlab
2016-06-03 15:07:40 +00:00
module Auth
class MissingPersonalTokenError < StandardError; end
2017-02-21 23:32:18 +00:00
SCOPES = [:api, :read_user].freeze
DEFAULT_SCOPES = [:api].freeze
OPTIONAL_SCOPES = SCOPES - DEFAULT_SCOPES
2016-04-29 16:58:55 +00:00
class << self
def find_for_git_client(login, password, project:, ip:)
2016-04-29 16:58:55 +00:00
raise "Must provide an IP for rate limiting" if ip.nil?
# `user_with_password_for_git` should be the last check
# because it's the most expensive, especially when LDAP
# is enabled.
result =
service_request_check(login, password, project) ||
build_access_token_check(login, password) ||
lfs_token_check(login, password) ||
oauth_access_token_check(login, password) ||
personal_access_token_check(login, password) ||
user_with_password_for_git(login, password) ||
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new
2016-04-29 16:58:55 +00:00
rate_limit!(ip, success: result.success?, login: login)
2016-06-03 12:57:34 +00:00
result
2016-04-29 16:58:55 +00:00
end
def find_with_user_password(login, password)
2016-04-29 16:58:55 +00:00
user = User.by_login(login)
# If no user is found, or it's an LDAP server, try LDAP.
# LDAP users are only authenticated via LDAP
if user.nil? || user.ldap_user?
# Second chance - try LDAP authentication
return nil unless Gitlab::LDAP::Config.enabled?
Gitlab::LDAP::Authentication.login(login, password)
else
user if user.valid_password?(password)
end
end
2016-06-06 15:40:26 +00:00
def rate_limit!(ip, success:, login:)
rate_limiter = Gitlab::Auth::IpRateLimiter.new(ip)
return unless rate_limiter.enabled?
if success
# Repeated login 'failures' are normal behavior for some Git clients so
# it is important to reset the ban counter once the client has proven
# they are not a 'bad guy'.
rate_limiter.reset!
else
# Register a login failure so that Rack::Attack can block the next
# request from this IP if needed.
rate_limiter.register_fail!
if rate_limiter.banned?
Rails.logger.info "IP #{ip} failed to login " \
"as #{login} but has been temporarily banned from Git auth"
end
end
end
2016-04-29 16:58:55 +00:00
private
def service_request_check(login, password, project)
2016-04-29 16:58:55 +00:00
matched_login = /(?<service>^[a-zA-Z]*-ci)-token$/.match(login)
return unless project && matched_login.present?
2016-04-29 16:58:55 +00:00
underscored_service = matched_login['service'].underscore
if Service.available_services_names.include?(underscored_service)
2016-04-29 16:58:55 +00:00
# We treat underscored_service as a trusted input because it is included
# in the Service.available_services_names whitelist.
2016-06-03 15:23:34 +00:00
service = project.public_send("#{underscored_service}_service")
2016-04-29 16:58:55 +00:00
if service && service.activated? && service.valid_token?(password)
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new(nil, project, :ci, build_authentication_abilities)
end
end
end
def user_with_password_for_git(login, password)
user = find_with_user_password(login, password)
return unless user
raise Gitlab::Auth::MissingPersonalTokenError if user.two_factor_enabled?
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new(user, nil, :gitlab_or_ldap, full_authentication_abilities)
end
2016-04-29 16:58:55 +00:00
def oauth_access_token_check(login, password)
if login == "oauth2" && password.present?
token = Doorkeeper::AccessToken.by_token(password)
if valid_oauth_token?(token)
user = User.find_by(id: token.resource_owner_id)
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new(user, nil, :oauth, read_authentication_abilities)
end
2016-04-29 16:58:55 +00:00
end
end
def personal_access_token_check(login, password)
if login && password
token = PersonalAccessToken.active.find_by_token(password)
validation = User.by_login(login)
if valid_personal_access_token?(token, validation)
Gitlab::Auth::Result.new(validation, nil, :personal_token, full_authentication_abilities)
end
end
end
def valid_oauth_token?(token)
token && token.accessible? && valid_api_token?(token)
end
def valid_personal_access_token?(token, user)
token && token.user == user && valid_api_token?(token)
end
def valid_api_token?(token)
AccessTokenValidationService.new(token).include_any_scope?(['api'])
end
def lfs_token_check(login, password)
deploy_key_matches = login.match(/\Alfs\+deploy-key-(\d+)\z/)
actor =
if deploy_key_matches
DeployKey.find(deploy_key_matches[1])
else
User.by_login(login)
end
2016-09-20 07:41:21 +00:00
return unless actor
2016-09-20 07:41:21 +00:00
token_handler = Gitlab::LfsToken.new(actor)
2016-09-20 07:41:21 +00:00
authentication_abilities =
if token_handler.user?
full_authentication_abilities
else
read_authentication_abilities
end
if Devise.secure_compare(token_handler.token, password)
Gitlab::Auth::Result.new(actor, nil, token_handler.type, authentication_abilities)
end
end
def build_access_token_check(login, password)
return unless login == 'gitlab-ci-token'
return unless password
2016-09-15 11:49:11 +00:00
build = ::Ci::Build.running.find_by_token(password)
return unless build
2016-09-15 13:40:53 +00:00
return unless build.project.builds_enabled?
if build.user
# If user is assigned to build, use restricted credentials of user
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new(build.user, build.project, :build, build_authentication_abilities)
else
# Otherwise use generic CI credentials (backward compatibility)
2016-09-19 11:50:28 +00:00
Gitlab::Auth::Result.new(nil, build.project, :ci, build_authentication_abilities)
end
end
public
def build_authentication_abilities
[
:read_project,
:build_download_code,
:build_read_container_image,
:build_create_container_image
]
end
def read_authentication_abilities
[
:read_project,
:download_code,
:read_container_image
]
end
def full_authentication_abilities
read_authentication_abilities + [
:push_code,
:create_container_image
]
end
2013-07-16 08:28:19 +00:00
end
2012-09-12 06:23:16 +00:00
end
end