87 lines
2.7 KiB
Ruby
87 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Metrics
|
|
module Subscribers
|
|
# - Adds logging for all Rack Attack blocks and throttling events.
|
|
# - Instrument the cache operations of RackAttack to use in structured
|
|
# logs. Two fields are exposed:
|
|
# + rack_attack_redis_count: the number of redis calls triggered by
|
|
# RackAttack in a request.
|
|
# + rack_attack_redis_duration_s: the total duration of all redis calls
|
|
# triggered by RackAttack in a request.
|
|
class RackAttack < ActiveSupport::Subscriber
|
|
attach_to 'rack_attack'
|
|
|
|
INSTRUMENTATION_STORE_KEY = :rack_attack_instrumentation
|
|
|
|
def self.payload
|
|
Gitlab::SafeRequestStore[INSTRUMENTATION_STORE_KEY] ||= {
|
|
rack_attack_redis_count: 0,
|
|
rack_attack_redis_duration_s: 0.0
|
|
}
|
|
end
|
|
|
|
def redis(event)
|
|
self.class.payload[:rack_attack_redis_count] += 1
|
|
self.class.payload[:rack_attack_redis_duration_s] += event.duration.to_f / 1000
|
|
end
|
|
|
|
def safelist(event)
|
|
req = event.payload[:request]
|
|
Gitlab::Instrumentation::Throttle.safelist = req.env['rack.attack.matched']
|
|
end
|
|
|
|
def throttle(event)
|
|
log_into_auth_logger(event, status: 429)
|
|
end
|
|
|
|
def blocklist(event)
|
|
log_into_auth_logger(event, status: 403)
|
|
end
|
|
|
|
def track(event)
|
|
log_into_auth_logger(event, status: nil)
|
|
end
|
|
|
|
private
|
|
|
|
def log_into_auth_logger(event, status:)
|
|
req = event.payload[:request]
|
|
rack_attack_info = {
|
|
message: 'Rack_Attack',
|
|
env: req.env['rack.attack.match_type'],
|
|
remote_ip: req.ip,
|
|
request_method: req.request_method,
|
|
path: req.fullpath,
|
|
matched: req.env['rack.attack.matched']
|
|
}
|
|
|
|
if status
|
|
rack_attack_info[:status] = status
|
|
end
|
|
|
|
discriminator = req.env['rack.attack.match_discriminator'].to_s
|
|
discriminator_id = discriminator.split(':').last
|
|
|
|
if discriminator.starts_with?('user:')
|
|
user = User.find_by(id: discriminator_id) # rubocop:disable CodeReuse/ActiveRecord
|
|
|
|
rack_attack_info[:user_id] = discriminator_id.to_i
|
|
rack_attack_info['meta.user'] = user.username unless user.nil?
|
|
elsif discriminator.starts_with?('deploy_token:')
|
|
rack_attack_info[:deploy_token_id] = discriminator_id.to_i
|
|
end
|
|
|
|
Gitlab::InstrumentationHelper.add_instrumentation_data(rack_attack_info)
|
|
|
|
logger.error(rack_attack_info)
|
|
end
|
|
|
|
def logger
|
|
Gitlab::AuthLogger
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|