com.floragunn.searchguard.http.HTTPBasicAuthenticator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of search-guard-2 Show documentation
Show all versions of search-guard-2 Show documentation
Provide access control related features for Elasticsearch 2
/*
* Copyright 2015 floragunn UG (haftungsbeschränkt)
*
* 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.http;
import java.nio.charset.StandardCharsets;
import javax.xml.bind.DatatypeConverter;
import org.elasticsearch.common.logging.ESLogger;
import org.elasticsearch.common.logging.Loggers;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.rest.BytesRestResponse;
import org.elasticsearch.rest.RestChannel;
import org.elasticsearch.rest.RestRequest;
import org.elasticsearch.rest.RestStatus;
import com.floragunn.searchguard.auth.HTTPAuthenticator;
import com.floragunn.searchguard.user.AuthCredentials;
//TODO FUTURE allow only if protocol==https
public class HTTPBasicAuthenticator implements HTTPAuthenticator {
protected final ESLogger log = Loggers.getLogger(this.getClass());
private final Settings settings;
public HTTPBasicAuthenticator(final Settings settings) {
super();
this.settings = settings;
}
@Override
public AuthCredentials extractCredentials(final RestRequest request) {
final String authorizationHeader = request.header("Authorization");
final boolean forceLogin = request.paramAsBoolean("force_login", false);
if (authorizationHeader != null && !forceLogin) {
if (!authorizationHeader.trim().toLowerCase().startsWith("basic ")) {
log.warn("No 'Basic Authorization' header, send 401 and 'WWW-Authenticate Basic'");
return null;
} else {
final String decodedBasicHeader = new String(DatatypeConverter.parseBase64Binary(authorizationHeader.split(" ")[1]),
StandardCharsets.UTF_8);
//username:password
//special case
//username must not contain a :, but password is allowed to do so
// username:pass:word
//blank password
// username:
final int firstColonIndex = decodedBasicHeader.indexOf(':');
String username = null;
String password = null;
if (firstColonIndex > 0) {
username = decodedBasicHeader.substring(0, firstColonIndex);
if(decodedBasicHeader.length() - 1 != firstColonIndex) {
password = decodedBasicHeader.substring(firstColonIndex + 1);
} else {
//blank password
password="";
}
}
if (username == null || password == null) {
log.warn("Invalid 'Authorization' header, send 401 and 'WWW-Authenticate Basic'");
return null;
} else {
return new AuthCredentials(username, password.getBytes(StandardCharsets.UTF_8)).markComplete();
}
}
} else {
log.trace("No 'Authorization' header, send 401 and 'WWW-Authenticate Basic'");
return null;
}
}
@Override
public boolean reRequestAuthentication(final RestChannel channel, AuthCredentials creds) {
final BytesRestResponse wwwAuthenticateResponse = new BytesRestResponse(RestStatus.UNAUTHORIZED);
wwwAuthenticateResponse.addHeader("WWW-Authenticate", "Basic realm=\"Search Guard\"");
channel.sendResponse(wwwAuthenticateResponse);
return true;
}
@Override
public String getType() {
return "basic";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy