io.micronaut.security.x509.X509AuthenticationFetcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-security Show documentation
Show all versions of micronaut-security Show documentation
Official Security Solution for Micronaut
/*
* Copyright 2017-2022 original authors
*
* 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
*
* https://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 io.micronaut.security.x509;
import static java.util.regex.Pattern.CASE_INSENSITIVE;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.http.HttpRequest;
import io.micronaut.security.authentication.Authentication;
import io.micronaut.security.filters.AuthenticationFetcher;
import io.micronaut.security.token.TokenAuthenticationFetcher;
import jakarta.inject.Singleton;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;
import java.util.Optional;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Mono;
/**
* Creates an Authentication if an X.509 client certificate is present and a
* name (CN) can be extracted.
*
* @author Burt Beckwith
* @since 3.3
*/
@Singleton
public class X509AuthenticationFetcher implements AuthenticationFetcher {
/**
* The order of the fetcher.
*/
public static final int ORDER = TokenAuthenticationFetcher.ORDER - 200;
private final Pattern subjectDnPattern;
/**
*
* @param x509Configuration x509 configuration
*/
public X509AuthenticationFetcher(X509Configuration x509Configuration) {
subjectDnPattern = Pattern.compile(x509Configuration.getSubjectDnRegex(), CASE_INSENSITIVE);
}
@Override
public int getOrder() {
return ORDER;
}
@Override
public Publisher fetchAuthentication(HttpRequest> request) {
return Mono.create(emitter -> {
Optional authentication = createAuthentication(request);
if (authentication.isPresent()) {
emitter.success(authentication.get());
} else {
emitter.success();
}
});
}
/**
* Creates an {@link X509Authentication} from information in an {@link X509Certificate}
* if one is present in the request.
*
* @param request the request
* @return the authentication if the certificate exists and contains a valid name
*/
@NonNull
protected Optional createAuthentication(HttpRequest> request) {
Optional optionalCertificate = request.getCertificate();
if (optionalCertificate.isPresent()) {
Certificate certificate = optionalCertificate.get();
if (certificate instanceof X509Certificate) {
return createX509Authentication((X509Certificate) certificate);
}
}
return Optional.empty();
}
/**
* Creates an {@link X509Authentication} from information in an {@link X509Certificate}.
*
* @param certificate the certificate
* @return the authentication if the certificate contains a valid name
*/
@NonNull
protected Optional createX509Authentication(@NonNull X509Certificate certificate) {
return extractName(certificate)
.map(name -> new X509Authentication(name, certificate));
}
/**
* Extracts the name from the certificate using the subject DN regex.
*
* @param certificate the client certificate
* @return the name if found
*/
@NonNull
protected Optional extractName(@NonNull X509Certificate certificate) {
String subjectDN = certificate.getSubjectX500Principal().getName();
Matcher matcher = subjectDnPattern.matcher(subjectDN);
if (!matcher.find()) {
return Optional.empty();
}
if (matcher.groupCount() != 1) {
return Optional.empty();
}
return Optional.of(matcher.group(1));
}
}