2020-11-18 13:09:08 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module RackAttack
|
|
|
|
module Request
|
2021-09-09 08:09:09 -04:00
|
|
|
FILES_PATH_REGEX = %r{^/api/v\d+/projects/[^/]+/repository/files/.+}.freeze
|
2021-09-28 08:11:10 -04:00
|
|
|
GROUP_PATH_REGEX = %r{^/api/v\d+/groups/[^/]+/?$}.freeze
|
2021-09-09 08:09:09 -04:00
|
|
|
|
2020-11-18 13:09:08 -05:00
|
|
|
def unauthenticated?
|
|
|
|
!(authenticated_user_id([:api, :rss, :ics]) || authenticated_runner_id)
|
|
|
|
end
|
|
|
|
|
2020-12-07 16:10:08 -05:00
|
|
|
def throttled_user_id(request_formats)
|
|
|
|
user_id = authenticated_user_id(request_formats)
|
|
|
|
|
|
|
|
if Gitlab::RackAttack.user_allowlist.include?(user_id)
|
|
|
|
Gitlab::Instrumentation::Throttle.safelist = 'throttle_user_allowlist'
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
user_id
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authenticated_runner_id
|
|
|
|
request_authenticator.runner&.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_request?
|
|
|
|
path.start_with?('/api')
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_internal_request?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(%r{^/api/v\d+/internal/})
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def health_check_request?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(%r{^/-/(health|liveness|readiness|metrics)})
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
|
2021-04-12 11:09:30 -04:00
|
|
|
def container_registry_event?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(%r{^/api/v\d+/container_registry_event/})
|
2021-04-12 11:09:30 -04:00
|
|
|
end
|
|
|
|
|
2020-11-18 13:09:08 -05:00
|
|
|
def product_analytics_collector_request?
|
|
|
|
path.start_with?('/-/collector/i')
|
|
|
|
end
|
|
|
|
|
|
|
|
def should_be_skipped?
|
2021-04-12 11:09:30 -04:00
|
|
|
api_internal_request? || health_check_request? || container_registry_event?
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def web_request?
|
|
|
|
!api_request? && !health_check_request?
|
|
|
|
end
|
|
|
|
|
|
|
|
def protected_path?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(protected_paths_regex)
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
|
2021-09-17 11:11:44 -04:00
|
|
|
def throttle?(throttle, authenticated:)
|
|
|
|
fragment = Gitlab::Throttle.throttle_fragment!(throttle, authenticated: authenticated)
|
|
|
|
|
|
|
|
__send__("#{fragment}?") # rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
end
|
|
|
|
|
2021-09-14 11:12:05 -04:00
|
|
|
def throttle_unauthenticated_api?
|
|
|
|
api_request? &&
|
2021-04-21 11:09:35 -04:00
|
|
|
!should_be_skipped? &&
|
|
|
|
!throttle_unauthenticated_packages_api? &&
|
2021-09-09 08:09:09 -04:00
|
|
|
!throttle_unauthenticated_files_api? &&
|
2021-09-28 08:11:10 -04:00
|
|
|
!throttle_unauthenticated_deprecated_api? &&
|
2021-09-14 11:12:05 -04:00
|
|
|
Gitlab::Throttle.settings.throttle_unauthenticated_api_enabled &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_unauthenticated_web?
|
2022-01-21 13:12:45 -05:00
|
|
|
web_request? &&
|
2021-09-14 11:12:05 -04:00
|
|
|
!should_be_skipped? &&
|
|
|
|
# TODO: Column will be renamed in https://gitlab.com/gitlab-org/gitlab/-/issues/340031
|
2021-04-21 11:09:35 -04:00
|
|
|
Gitlab::Throttle.settings.throttle_unauthenticated_enabled &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_api?
|
|
|
|
api_request? &&
|
|
|
|
!throttle_authenticated_packages_api? &&
|
2021-09-09 08:09:09 -04:00
|
|
|
!throttle_authenticated_files_api? &&
|
2021-09-28 08:11:10 -04:00
|
|
|
!throttle_authenticated_deprecated_api? &&
|
2021-04-21 11:09:35 -04:00
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_api_enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_web?
|
2022-01-21 13:12:45 -05:00
|
|
|
web_request? &&
|
2021-09-01 14:08:49 -04:00
|
|
|
!throttle_authenticated_git_lfs? &&
|
2021-04-21 11:09:35 -04:00
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_web_enabled
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_unauthenticated_protected_paths?
|
|
|
|
post? &&
|
|
|
|
!should_be_skipped? &&
|
|
|
|
protected_path? &&
|
|
|
|
Gitlab::Throttle.protected_paths_enabled? &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_protected_paths_api?
|
|
|
|
post? &&
|
|
|
|
api_request? &&
|
|
|
|
protected_path? &&
|
|
|
|
Gitlab::Throttle.protected_paths_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_protected_paths_web?
|
|
|
|
post? &&
|
|
|
|
web_request? &&
|
|
|
|
protected_path? &&
|
|
|
|
Gitlab::Throttle.protected_paths_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_unauthenticated_packages_api?
|
|
|
|
packages_api_path? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_unauthenticated_packages_api_enabled &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_packages_api?
|
|
|
|
packages_api_path? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_packages_api_enabled
|
|
|
|
end
|
|
|
|
|
2021-09-01 14:08:49 -04:00
|
|
|
def throttle_authenticated_git_lfs?
|
|
|
|
git_lfs_path? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_git_lfs_enabled
|
|
|
|
end
|
|
|
|
|
2021-09-09 08:09:09 -04:00
|
|
|
def throttle_unauthenticated_files_api?
|
|
|
|
files_api_path? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_unauthenticated_files_api_enabled &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_files_api?
|
|
|
|
files_api_path? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_files_api_enabled
|
|
|
|
end
|
|
|
|
|
2021-09-28 08:11:10 -04:00
|
|
|
def throttle_unauthenticated_deprecated_api?
|
|
|
|
deprecated_api_request? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_unauthenticated_deprecated_api_enabled &&
|
|
|
|
unauthenticated?
|
|
|
|
end
|
|
|
|
|
|
|
|
def throttle_authenticated_deprecated_api?
|
|
|
|
deprecated_api_request? &&
|
|
|
|
Gitlab::Throttle.settings.throttle_authenticated_deprecated_api_enabled
|
|
|
|
end
|
|
|
|
|
2020-11-18 13:09:08 -05:00
|
|
|
private
|
|
|
|
|
2020-12-07 16:10:08 -05:00
|
|
|
def authenticated_user_id(request_formats)
|
|
|
|
request_authenticator.user(request_formats)&.id
|
|
|
|
end
|
|
|
|
|
2020-11-18 13:09:08 -05:00
|
|
|
def request_authenticator
|
|
|
|
@request_authenticator ||= Gitlab::Auth::RequestAuthenticator.new(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def protected_paths
|
|
|
|
Gitlab::CurrentSettings.current_application_settings.protected_paths
|
|
|
|
end
|
|
|
|
|
|
|
|
def protected_paths_regex
|
|
|
|
Regexp.union(protected_paths.map { |path| /\A#{Regexp.escape(path)}/ })
|
|
|
|
end
|
2021-04-21 11:09:35 -04:00
|
|
|
|
|
|
|
def packages_api_path?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(::Gitlab::Regex::Packages::API_PATH_REGEX)
|
2021-04-21 11:09:35 -04:00
|
|
|
end
|
2021-09-01 14:08:49 -04:00
|
|
|
|
|
|
|
def git_lfs_path?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(::Gitlab::PathRegex.repository_git_lfs_route_regex)
|
2021-09-01 14:08:49 -04:00
|
|
|
end
|
2021-09-09 08:09:09 -04:00
|
|
|
|
|
|
|
def files_api_path?
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(FILES_PATH_REGEX)
|
2021-09-09 08:09:09 -04:00
|
|
|
end
|
2021-09-28 08:11:10 -04:00
|
|
|
|
|
|
|
def deprecated_api_request?
|
|
|
|
# The projects member of the groups endpoint is deprecated. If left
|
|
|
|
# unspecified, with_projects defaults to true
|
|
|
|
with_projects = params['with_projects']
|
|
|
|
with_projects = true if with_projects.blank?
|
|
|
|
|
2022-02-01 07:17:55 -05:00
|
|
|
path.match?(GROUP_PATH_REGEX) && Gitlab::Utils.to_boolean(with_projects)
|
2021-09-28 08:11:10 -04:00
|
|
|
end
|
2020-11-18 13:09:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-05-11 17:10:21 -04:00
|
|
|
::Gitlab::RackAttack::Request.prepend_mod_with('Gitlab::RackAttack::Request')
|