com.floragunn.searchguard.auth.limiting.AbstractRateLimiter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of search-guard-6 Show documentation
Show all versions of search-guard-6 Show documentation
Provide access control related features for Elasticsearch 6
The newest version!
/*
* Copyright 2015-2019 floragunn GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.floragunn.searchguard.auth.limiting;
import java.net.InetAddress;
import java.nio.file.Path;
import org.elasticsearch.common.settings.Settings;
import com.floragunn.searchguard.auth.AuthFailureListener;
import com.floragunn.searchguard.auth.blocking.ClientBlockRegistry;
import com.floragunn.searchguard.auth.blocking.HeapBasedClientBlockRegistry;
import com.floragunn.searchguard.user.AuthCredentials;
import com.floragunn.searchguard.util.ratetracking.RateTracker;
public abstract class AbstractRateLimiter implements AuthFailureListener, ClientBlockRegistry {
protected final ClientBlockRegistry clientBlockRegistry;
protected final RateTracker rateTracker;
public AbstractRateLimiter(Settings settings, Path configPath, Class clientIdType) {
this.clientBlockRegistry = new HeapBasedClientBlockRegistry<>(settings.getAsInt("block_expiry_seconds", 60 * 10) * 1000,
settings.getAsInt("max_blocked_clients", 100_000), clientIdType);
this.rateTracker = RateTracker.create(settings.getAsInt("time_window_seconds", 60 * 60) * 1000, settings.getAsInt("allowed_tries", 10),
settings.getAsInt("max_tracked_clients", 100_000));
}
@Override
public abstract void onAuthFailure(InetAddress remoteAddress, AuthCredentials authCredentials, Object request);
@Override
public boolean isBlocked(ClientIdType clientId) {
return clientBlockRegistry.isBlocked(clientId);
}
@Override
public void block(ClientIdType clientId) {
clientBlockRegistry.block(clientId);
rateTracker.reset(clientId);
}
@Override
public Class getClientIdType() {
return clientBlockRegistry.getClientIdType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy