2019-10-28 20:06:10 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-11 19:39:58 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-10-13 20:13:11 -04:00
|
|
|
describe 'Rack Attack global throttles' do
|
2019-10-09 08:06:13 -04:00
|
|
|
include RackAttackSpecHelpers
|
|
|
|
|
2017-10-11 19:39:58 -04:00
|
|
|
let(:settings) { Gitlab::CurrentSettings.current_application_settings }
|
|
|
|
|
2017-10-30 19:46:20 -04:00
|
|
|
# Start with really high limits and override them with low limits to ensure
|
|
|
|
# the right settings are being exercised
|
|
|
|
let(:settings_to_set) do
|
|
|
|
{
|
|
|
|
throttle_unauthenticated_requests_per_period: 100,
|
|
|
|
throttle_unauthenticated_period_in_seconds: 1,
|
|
|
|
throttle_authenticated_api_requests_per_period: 100,
|
|
|
|
throttle_authenticated_api_period_in_seconds: 1,
|
|
|
|
throttle_authenticated_web_requests_per_period: 100,
|
2019-09-26 17:06:29 -04:00
|
|
|
throttle_authenticated_web_period_in_seconds: 1,
|
|
|
|
throttle_authenticated_protected_paths_request_per_period: 100,
|
|
|
|
throttle_authenticated_protected_paths_in_seconds: 1
|
2017-10-30 19:46:20 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_method) { 'GET' }
|
2017-10-30 19:46:20 -04:00
|
|
|
let(:requests_per_period) { 1 }
|
|
|
|
let(:period_in_seconds) { 10000 }
|
|
|
|
let(:period) { period_in_seconds.seconds }
|
|
|
|
|
2019-10-09 08:06:13 -04:00
|
|
|
include_context 'rack attack cache store'
|
2017-10-11 19:39:58 -04:00
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
describe 'unauthenticated requests' do
|
2019-09-05 17:15:55 -04:00
|
|
|
let(:url_that_does_not_require_authentication) { '/users/sign_in' }
|
|
|
|
let(:url_api_internal) { '/api/v4/internal/check' }
|
|
|
|
|
2017-10-11 19:39:58 -04:00
|
|
|
before do
|
2019-09-26 17:06:29 -04:00
|
|
|
# Disabling protected paths throttle, otherwise requests to
|
|
|
|
# '/users/sign_in' are caught by this throttle.
|
|
|
|
settings_to_set[:throttle_protected_paths_enabled] = false
|
|
|
|
|
2017-10-11 19:39:58 -04:00
|
|
|
# Set low limits
|
2017-10-30 19:46:20 -04:00
|
|
|
settings_to_set[:throttle_unauthenticated_requests_per_period] = requests_per_period
|
|
|
|
settings_to_set[:throttle_unauthenticated_period_in_seconds] = period_in_seconds
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the throttle is enabled' do
|
|
|
|
before do
|
2017-10-30 19:46:20 -04:00
|
|
|
settings_to_set[:throttle_unauthenticated_enabled] = true
|
|
|
|
stub_application_setting(settings_to_set)
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects requests over the rate limit' do
|
|
|
|
# At first, allow requests under the rate limit.
|
|
|
|
requests_per_period.times do
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-11 19:39:58 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
|
|
|
# the last straw
|
2017-10-31 14:36:33 -04:00
|
|
|
expect_rejection { get url_that_does_not_require_authentication }
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests after throttling and then waiting for the next period' do
|
|
|
|
requests_per_period.times do
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-11 19:39:58 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
2017-10-31 14:36:33 -04:00
|
|
|
expect_rejection { get url_that_does_not_require_authentication }
|
2017-10-11 19:39:58 -04:00
|
|
|
|
2017-11-07 05:58:10 -05:00
|
|
|
Timecop.travel(period.from_now) do
|
2017-10-11 19:39:58 -04:00
|
|
|
requests_per_period.times do
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-11 19:39:58 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
2017-10-31 14:36:33 -04:00
|
|
|
expect_rejection { get url_that_does_not_require_authentication }
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
it 'counts requests from different IPs separately' do
|
2017-10-11 19:39:58 -04:00
|
|
|
requests_per_period.times do
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-11 19:39:58 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
2019-12-16 07:07:43 -05:00
|
|
|
expect_next_instance_of(Rack::Attack::Request) do |instance|
|
|
|
|
expect(instance).to receive(:ip).at_least(:once).and_return('1.2.3.4')
|
|
|
|
end
|
2017-10-11 19:39:58 -04:00
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
# would be over limit for the same IP
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-13 20:05:18 -04:00
|
|
|
expect(response).to have_http_status 200
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
2018-02-15 11:54:36 -05:00
|
|
|
|
|
|
|
context 'when the request is to the api internal endpoints' do
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2018-12-17 17:52:17 -05:00
|
|
|
get url_api_internal, params: { secret_token: Gitlab::Shell.secret_token }
|
2018-02-15 11:54:36 -05:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-05-23 20:45:02 -04:00
|
|
|
|
2019-12-11 07:08:10 -05:00
|
|
|
context 'when the request is authenticated by a runner token' do
|
|
|
|
let(:request_jobs_url) { '/api/v4/jobs/request' }
|
|
|
|
let(:runner) { create(:ci_runner) }
|
|
|
|
|
|
|
|
it 'does not cont as unauthenticated' do
|
|
|
|
(1 + requests_per_period).times do
|
|
|
|
post request_jobs_url, params: { token: runner.token }
|
|
|
|
expect(response).to have_http_status 204
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-23 20:45:02 -04:00
|
|
|
it 'logs RackAttack info into structured logs' do
|
|
|
|
requests_per_period.times do
|
|
|
|
get url_that_does_not_require_authentication
|
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
2019-07-02 15:48:06 -04:00
|
|
|
arguments = {
|
|
|
|
message: 'Rack_Attack',
|
|
|
|
env: :throttle,
|
2019-08-20 14:12:28 -04:00
|
|
|
remote_ip: '127.0.0.1',
|
2019-07-02 15:48:06 -04:00
|
|
|
request_method: 'GET',
|
2019-08-20 14:12:28 -04:00
|
|
|
path: '/users/sign_in'
|
2019-07-02 15:48:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
expect(Gitlab::AuthLogger).to receive(:error).with(arguments)
|
2019-05-23 20:45:02 -04:00
|
|
|
|
|
|
|
get url_that_does_not_require_authentication
|
|
|
|
end
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the throttle is disabled' do
|
|
|
|
before do
|
2017-10-30 19:46:20 -04:00
|
|
|
settings_to_set[:throttle_unauthenticated_enabled] = false
|
|
|
|
stub_application_setting(settings_to_set)
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2017-10-31 14:36:33 -04:00
|
|
|
get url_that_does_not_require_authentication
|
2017-10-11 19:39:58 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
describe 'API requests authenticated with personal access token', :api do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:token) { create(:personal_access_token, user: user) }
|
|
|
|
let(:other_user) { create(:user) }
|
|
|
|
let(:other_user_token) { create(:personal_access_token, user: other_user) }
|
|
|
|
let(:throttle_setting_prefix) { 'throttle_authenticated_api' }
|
2019-09-05 17:15:55 -04:00
|
|
|
let(:api_partial_url) { '/todos' }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
context 'with the token in the query string' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { [api(api_partial_url, personal_access_token: token)] }
|
|
|
|
let(:other_user_request_args) { [api(api_partial_url, personal_access_token: other_user_token)] }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with the token in the headers' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { api_get_args_with_token_headers(api_partial_url, personal_access_token_headers(token)) }
|
|
|
|
let(:other_user_request_args) { api_get_args_with_token_headers(api_partial_url, personal_access_token_headers(other_user_token)) }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'API requests authenticated with OAuth token', :api do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:application) { Doorkeeper::Application.create!(name: "MyApp", redirect_uri: "https://app.com", owner: user) }
|
|
|
|
let(:token) { Doorkeeper::AccessToken.create!(application_id: application.id, resource_owner_id: user.id, scopes: "api") }
|
2019-09-05 17:15:55 -04:00
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
let(:other_user) { create(:user) }
|
|
|
|
let(:other_user_application) { Doorkeeper::Application.create!(name: "MyApp", redirect_uri: "https://app.com", owner: other_user) }
|
|
|
|
let(:other_user_token) { Doorkeeper::AccessToken.create!(application_id: application.id, resource_owner_id: other_user.id, scopes: "api") }
|
2019-09-05 17:15:55 -04:00
|
|
|
|
2017-10-13 20:05:18 -04:00
|
|
|
let(:throttle_setting_prefix) { 'throttle_authenticated_api' }
|
2019-09-05 17:15:55 -04:00
|
|
|
let(:api_partial_url) { '/todos' }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
context 'with the token in the query string' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { [api(api_partial_url, oauth_access_token: token)] }
|
|
|
|
let(:other_user_request_args) { [api(api_partial_url, oauth_access_token: other_user_token)] }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with the token in the headers' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { api_get_args_with_token_headers(api_partial_url, oauth_token_headers(token)) }
|
|
|
|
let(:other_user_request_args) { api_get_args_with_token_headers(api_partial_url, oauth_token_headers(other_user_token)) }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '"web" (non-API) requests authenticated with RSS token' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:other_user) { create(:user) }
|
|
|
|
let(:throttle_setting_prefix) { 'throttle_authenticated_web' }
|
|
|
|
|
|
|
|
context 'with the token in the query string' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { [rss_url(user), params: nil] }
|
|
|
|
let(:other_user_request_args) { [rss_url(other_user), params: nil] }
|
2017-10-13 20:05:18 -04:00
|
|
|
|
2017-11-10 13:17:55 -05:00
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
2017-10-13 20:05:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'web requests authenticated with regular login' do
|
2019-09-05 17:15:55 -04:00
|
|
|
let(:throttle_setting_prefix) { 'throttle_authenticated_web' }
|
2017-10-11 19:39:58 -04:00
|
|
|
let(:user) { create(:user) }
|
2019-09-05 17:15:55 -04:00
|
|
|
let(:url_that_requires_authentication) { '/dashboard/snippets' }
|
2017-10-11 19:39:58 -04:00
|
|
|
|
2019-09-05 17:15:55 -04:00
|
|
|
it_behaves_like 'rate-limited web authenticated requests'
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|
2017-10-13 20:05:18 -04:00
|
|
|
|
2019-09-26 17:06:29 -04:00
|
|
|
describe 'protected paths' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_method) { 'POST' }
|
|
|
|
|
2019-09-26 17:06:29 -04:00
|
|
|
context 'unauthenticated requests' do
|
|
|
|
let(:protected_path_that_does_not_require_authentication) do
|
2019-11-08 22:06:40 -05:00
|
|
|
'/users/sign_in'
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:post_params) { { user: { login: 'username', password: 'password' } } }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
settings_to_set[:throttle_protected_paths_requests_per_period] = requests_per_period # 1
|
|
|
|
settings_to_set[:throttle_protected_paths_period_in_seconds] = period_in_seconds # 10_000
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when protected paths throttle is disabled' do
|
|
|
|
before do
|
|
|
|
settings_to_set[:throttle_protected_paths_enabled] = false
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2019-11-08 22:06:40 -05:00
|
|
|
post protected_path_that_does_not_require_authentication, params: post_params
|
2019-09-26 17:06:29 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when protected paths throttle is enabled' do
|
|
|
|
before do
|
|
|
|
settings_to_set[:throttle_protected_paths_enabled] = true
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'rejects requests over the rate limit' do
|
|
|
|
requests_per_period.times do
|
2019-11-08 22:06:40 -05:00
|
|
|
post protected_path_that_does_not_require_authentication, params: post_params
|
2019-09-26 17:06:29 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
|
2019-11-08 22:06:40 -05:00
|
|
|
expect_rejection { post protected_path_that_does_not_require_authentication, params: post_params }
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
|
|
|
|
2019-12-04 19:07:50 -05:00
|
|
|
context 'when Omnibus throttle should be used' do
|
2019-09-26 17:06:29 -04:00
|
|
|
before do
|
|
|
|
allow(Gitlab::Throttle)
|
2019-12-04 19:07:50 -05:00
|
|
|
.to receive(:should_use_omnibus_protected_paths?).and_return(true)
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2019-11-08 22:06:40 -05:00
|
|
|
post protected_path_that_does_not_require_authentication, params: post_params
|
2019-09-26 17:06:29 -04:00
|
|
|
expect(response).to have_http_status 200
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'API requests authenticated with personal access token', :api do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:token) { create(:personal_access_token, user: user) }
|
|
|
|
let(:other_user) { create(:user) }
|
|
|
|
let(:other_user_token) { create(:personal_access_token, user: other_user) }
|
|
|
|
let(:throttle_setting_prefix) { 'throttle_protected_paths' }
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:api_partial_url) { '/user/emails' }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
let(:protected_paths) do
|
|
|
|
[
|
2019-11-08 22:06:40 -05:00
|
|
|
'/api/v4/user/emails'
|
2019-09-26 17:06:29 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
settings_to_set[:protected_paths] = protected_paths
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with the token in the query string' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { [api(api_partial_url, personal_access_token: token)] }
|
|
|
|
let(:other_user_request_args) { [api(api_partial_url, personal_access_token: other_user_token)] }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with the token in the headers' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { api_get_args_with_token_headers(api_partial_url, personal_access_token_headers(token)) }
|
|
|
|
let(:other_user_request_args) { api_get_args_with_token_headers(api_partial_url, personal_access_token_headers(other_user_token)) }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
it_behaves_like 'rate-limited token-authenticated requests'
|
|
|
|
end
|
|
|
|
|
2019-12-04 19:07:50 -05:00
|
|
|
context 'when Omnibus throttle should be used' do
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:request_args) { [api(api_partial_url, personal_access_token: token)] }
|
|
|
|
let(:other_user_request_args) { [api(api_partial_url, personal_access_token: other_user_token)] }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_requests_per_period"] = requests_per_period
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_period_in_seconds"] = period_in_seconds
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_enabled"] = true
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
|
|
|
|
allow(Gitlab::Throttle)
|
2019-12-04 19:07:50 -05:00
|
|
|
.to receive(:should_use_omnibus_protected_paths?).and_return(true)
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2019-11-08 22:06:40 -05:00
|
|
|
post(*request_args)
|
|
|
|
expect(response).not_to have_http_status 429
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'web requests authenticated with regular login' do
|
|
|
|
let(:throttle_setting_prefix) { 'throttle_protected_paths' }
|
|
|
|
let(:user) { create(:user) }
|
2019-11-08 22:06:40 -05:00
|
|
|
let(:url_that_requires_authentication) { '/users/confirmation' }
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
let(:protected_paths) do
|
|
|
|
[
|
|
|
|
url_that_requires_authentication
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
settings_to_set[:protected_paths] = protected_paths
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'rate-limited web authenticated requests'
|
|
|
|
|
2019-12-04 19:07:50 -05:00
|
|
|
context 'when Omnibus throttle should be used' do
|
2019-09-26 17:06:29 -04:00
|
|
|
before do
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_requests_per_period"] = requests_per_period
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_period_in_seconds"] = period_in_seconds
|
|
|
|
settings_to_set[:"#{throttle_setting_prefix}_enabled"] = true
|
|
|
|
stub_application_setting(settings_to_set)
|
|
|
|
|
|
|
|
allow(Gitlab::Throttle)
|
2019-12-04 19:07:50 -05:00
|
|
|
.to receive(:should_use_omnibus_protected_paths?).and_return(true)
|
2019-09-26 17:06:29 -04:00
|
|
|
|
|
|
|
login_as(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows requests over the rate limit' do
|
|
|
|
(1 + requests_per_period).times do
|
2019-11-08 22:06:40 -05:00
|
|
|
post url_that_requires_authentication
|
|
|
|
expect(response).not_to have_http_status 429
|
2019-09-26 17:06:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-10-11 19:39:58 -04:00
|
|
|
end
|