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

org.apache.camel.util.jsse.SSLContextServerParameters Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.camel.util.jsse;

import java.security.GeneralSecurityException;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLEngine;
import javax.net.ssl.SSLServerSocket;
import javax.net.ssl.SSLSocketFactory;

import org.apache.camel.RuntimeCamelException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class SSLContextServerParameters extends BaseSSLContextParameters {
    
    private static final Logger LOG = LoggerFactory.getLogger(SSLContextServerParameters.class);

    /**
     * The optional configuration options for server-side client-authentication requirements.
     */
    protected String clientAuthentication;
    
    /**
     * @see #setClientAuthentication(String)
     */
    public String getClientAuthentication() {
        return clientAuthentication;
    }

    /**
     * Sets the configuration options for server-side client-authentication requirements.
     * The value must be one of NONE, WANT, REQUIRE as defined in {@link ClientAuthentication}.
     * 
     * @param value the desired configuration options or {@code null} to use the defaults
     */
    public void setClientAuthentication(String value) {
        this.clientAuthentication = value;
    }
    
    @Override
    protected boolean getAllowPassthrough() {
        return true;
    }
    
    @Override
    protected void configureSSLContext(SSLContext context) throws GeneralSecurityException {
        LOG.trace("Configuring server-side SSLContext parameters on SSLContext [{}]...", context);
        if (this.getSessionTimeout() != null) {
            LOG.debug("Configuring server-side SSLContext session timeout on SSLContext [{}] to [{}].", context, this.getSessionTimeout());
            this.configureSessionContext(context.getServerSessionContext(), this.getSessionTimeout());
        }
        LOG.trace("Configured server-side SSLContext parameters on SSLContext [{}].", context);   
    }

    /**
     * {@inheritDoc}
     * 

* This implementation allows for configuration of the need and want settings * for client authentication, but ignores the enabled cipher suites * and protocols as they are not client and server side specific in an * {@code SSLEngine}. Consequently, overriding them here would be a bit odd * as the server side specific configuration shouldn't really override a * shared client/server configuration option. */ @Override protected List> getSSLEngineConfigurers(SSLContext context) { // NOTE: if the super class gets additional shared configuration options beyond // cipher suites and protocols, this method needs to address that. // As is, we do NOT pass the configurers along for those two settings. List> sslEngineConfigurers = new LinkedList>(); if (this.getClientAuthentication() != null) { final ClientAuthentication clientAuthValue = ClientAuthentication.valueOf(this.parsePropertyValue(this.getClientAuthentication())); Configurer sslEngineConfigurer = new Configurer() { @Override public SSLEngine configure(SSLEngine engine) { LOG.trace("Configuring client-auth on SSLEngine [{}] to [{}].", engine, clientAuthValue); switch (clientAuthValue) { case NONE: engine.setWantClientAuth(false); engine.setNeedClientAuth(false); break; case WANT: engine.setWantClientAuth(true); break; case REQUIRE: engine.setNeedClientAuth(true); break; default: throw new RuntimeCamelException("Unknown ClientAuthentication value: " + clientAuthValue); } return engine; } }; sslEngineConfigurers.add(sslEngineConfigurer); } return sslEngineConfigurers; } @Override protected List> getSSLServerSocketFactorySSLServerSocketConfigurers(SSLContext context) { List> sslServerSocketConfigurers = super.getSSLServerSocketFactorySSLServerSocketConfigurers(context); if (this.getClientAuthentication() != null) { final ClientAuthentication clientAuthValue = ClientAuthentication.valueOf(this.parsePropertyValue(this.getClientAuthentication())); Configurer sslServerSocketConfigurer = new Configurer() { @Override public SSLServerSocket configure(SSLServerSocket socket) { LOG.trace("Configuring client-auth on SSLServerSocket [{}] to [{}].", socket, clientAuthValue); switch (clientAuthValue) { case NONE: socket.setWantClientAuth(false); socket.setNeedClientAuth(false); break; case WANT: socket.setWantClientAuth(true); break; case REQUIRE: socket.setNeedClientAuth(true); break; default: throw new RuntimeCamelException("Unknown ClientAuthentication value: " + clientAuthValue); } return socket; } }; sslServerSocketConfigurers.add(sslServerSocketConfigurer); } return sslServerSocketConfigurers; } /** * This class has no bearing on {@code SSLSocketFactory} instances and therefore provides no * configurers for that purpose. */ @Override protected List> getSSLSocketFactoryConfigurers(SSLContext context) { return Collections.emptyList(); } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("SSLContextServerParameters[clientAuthentication="); builder.append(clientAuthentication); builder.append(", getCipherSuites()="); builder.append(getCipherSuites()); builder.append(", getCipherSuitesFilter()="); builder.append(getCipherSuitesFilter()); builder.append(", getSecureSocketProtocols()="); builder.append(getSecureSocketProtocols()); builder.append(", getSecureSocketProtocolsFilter()="); builder.append(getSecureSocketProtocolsFilter()); builder.append(", getSessionTimeout()="); builder.append(getSessionTimeout()); builder.append("]"); return builder.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy