All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.ee8.security.authentication.SslClientCertAuthenticator Maven / Gradle / Ivy

There is a newer version: 2.0.32
Show newest version
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.ee8.security.authentication;

import java.security.Principal;
import java.security.cert.X509Certificate;
import java.util.Base64;
import java.util.Objects;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.ee8.nested.Authentication;
import org.eclipse.jetty.ee8.nested.Authentication.User;
import org.eclipse.jetty.ee8.security.Authenticator;
import org.eclipse.jetty.ee8.security.ServerAuthException;
import org.eclipse.jetty.ee8.security.UserAuthentication;
import org.eclipse.jetty.security.UserIdentity;
import org.eclipse.jetty.util.ssl.SslContextFactory;

/**
 * CLIENT-CERT authenticator.
 *
 * 

This {@link Authenticator} implements client certificate authentication. * The client certificates available in the request will be verified against the configured {@link SslContextFactory} instance *

*/ public class SslClientCertAuthenticator extends LoginAuthenticator { private final SslContextFactory sslContextFactory; private boolean validateCerts = true; public SslClientCertAuthenticator(SslContextFactory sslContextFactory) { this.sslContextFactory = Objects.requireNonNull(sslContextFactory); } @Override public String getAuthMethod() { return Authenticator.CERT_AUTH; } @Override public Authentication validateRequest(ServletRequest req, ServletResponse res, boolean mandatory) throws ServerAuthException { if (!mandatory) return new DeferredAuthentication(this); HttpServletRequest request = (HttpServletRequest) req; HttpServletResponse response = (HttpServletResponse) res; X509Certificate[] certs = (X509Certificate[]) request.getAttribute("javax.servlet.request.X509Certificate"); try { // Need certificates. if (certs != null && certs.length > 0) { if (validateCerts) sslContextFactory.validateCerts(certs); for (X509Certificate cert : certs) { if (cert == null) continue; Principal principal = cert.getSubjectX500Principal(); if (principal == null) principal = cert.getIssuerX500Principal(); String username = principal == null ? "clientcert" : principal.getName(); UserIdentity user = login(username, "", req); if (user != null) return new UserAuthentication(getAuthMethod(), user); // try with null password user = login(username, null, req); if (user != null) return new UserAuthentication(getAuthMethod(), user); // try with certs sig against login service as previous behaviour char[] credential = Base64.getEncoder().encodeToString(cert.getSignature()).toCharArray(); user = login(username, credential, req); if (user != null) return new UserAuthentication(getAuthMethod(), user); } } if (!DeferredAuthentication.isDeferred(response)) { response.sendError(HttpServletResponse.SC_FORBIDDEN); return Authentication.SEND_FAILURE; } return Authentication.UNAUTHENTICATED; } catch (Exception e) { throw new ServerAuthException(e.getMessage()); } } @Override public boolean secureResponse(ServletRequest req, ServletResponse res, boolean mandatory, User validatedUser) throws ServerAuthException { return true; } /** * @return true if SSL certificate has to be validated. */ public boolean isValidateCerts() { return validateCerts; } /** * Set true if SSL certificates have to be validated.. * @param validateCerts true if SSL certificates have to be validated. */ public void setValidateCerts(boolean validateCerts) { this.validateCerts = validateCerts; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy