/* * ==================================================================== * 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * */ package org.apache.hc.core5.http.nio.ssl; import java.net.InetSocketAddress; import java.net.SocketAddress; import javax.net.ssl.SSLContext; import org.apache.hc.core5.reactor.ssl.SSLBufferManagement; import org.apache.hc.core5.reactor.ssl.SSLSessionInitializer; import org.apache.hc.core5.reactor.ssl.SSLSessionVerifier; import org.apache.hc.core5.reactor.ssl.TransportSecurityLayer; import org.apache.hc.core5.ssl.SSLContexts; import org.apache.hc.core5.util.Args; /** * Basic side-side implementation of {@link TlsStrategy} that upgrades to TLS for endpoints * with the specified local ports. * * @since 5.0 */ public class BasicServerTlsStrategy implements TlsStrategy { private final int[] securePorts; private final SSLContext sslContext; private final SSLBufferManagement sslBufferManagement; private final SSLSessionInitializer initializer; private final SSLSessionVerifier verifier; public BasicServerTlsStrategy( final int[] securePorts, final SSLContext sslContext, final SSLBufferManagement sslBufferManagement, final SSLSessionInitializer initializer, final SSLSessionVerifier verifier) { this.securePorts = Args.notNull(securePorts, "Array of ports"); this.sslContext = Args.notNull(sslContext, "SSL context"); this.sslBufferManagement = sslBufferManagement; this.initializer = initializer; this.verifier = verifier; } public BasicServerTlsStrategy( final int[] securePorts, final SSLContext sslContext, final SSLSessionInitializer initializer, final SSLSessionVerifier verifier) { this(securePorts, sslContext, null, initializer, verifier); } public BasicServerTlsStrategy( final int[] securePorts, final SSLContext sslContext, final SSLSessionVerifier verifier) { this(securePorts, sslContext, null, null, verifier); } public BasicServerTlsStrategy(final int[] securePorts, final SSLContext sslContext) { this(securePorts, sslContext, null, null, null); } public BasicServerTlsStrategy(final int[] securePorts) { this(securePorts, SSLContexts.createSystemDefault()); } @Override public void upgrade( final TransportSecurityLayer tlsSession, final String scheme, final SocketAddress localAddress, final SocketAddress remoteAddress, final String... parameters) { final int port = ((InetSocketAddress) localAddress).getPort(); for (int securePort: securePorts) { if (port == securePort) { tlsSession.start(sslContext, sslBufferManagement, initializer, verifier); break; } } } }