diff --git a/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/ApacheHttpClientChannels.java b/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/ApacheHttpClientChannels.java index 92a0bfec1..578890334 100644 --- a/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/ApacheHttpClientChannels.java +++ b/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/ApacheHttpClientChannels.java @@ -83,7 +83,6 @@ import org.apache.hc.client5.http.socket.ConnectionSocketFactory; import org.apache.hc.client5.http.socket.PlainConnectionSocketFactory; import org.apache.hc.client5.http.ssl.DefaultHostnameVerifier; -import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory; import org.apache.hc.core5.http.URIScheme; import org.apache.hc.core5.http.config.RegistryBuilder; import org.apache.hc.core5.http.io.SocketConfig; @@ -485,19 +484,17 @@ public Socket createSocket(HttpContext _context) { }) .register( URIScheme.HTTPS.id, - new SSLConnectionSocketFactory( + new InstrumentedSslConnectionSocketFactory( + name, + DialogueClientMetrics.of(clientConfiguration.taggedMetricRegistry()), MetricRegistries.instrument( conf.taggedMetricRegistry(), rawSocketFactory, name), TlsProtocols.get(), supportedCipherSuites( CipherSuites.allCipherSuites(), rawSocketFactory, name), new InstrumentedHostnameVerifier( - new DefaultHostnameVerifier(), name, conf.taggedMetricRegistry())) { - @Override - public Socket createSocket(HttpContext _context) { - return simpleSocketCreator.get(); - } - }) + new DefaultHostnameVerifier(), name, conf.taggedMetricRegistry()), + simpleSocketCreator)) .build(), PoolConcurrencyPolicy.LAX, // Allow unnecessary connections to time out reducing system load. diff --git a/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/InstrumentedSslConnectionSocketFactory.java b/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/InstrumentedSslConnectionSocketFactory.java new file mode 100644 index 000000000..18d5b3885 --- /dev/null +++ b/dialogue-apache-hc5-client/src/main/java/com/palantir/dialogue/hc5/InstrumentedSslConnectionSocketFactory.java @@ -0,0 +1,206 @@ +/* + * (c) Copyright 2023 Palantir Technologies Inc. All rights reserved. + * + * 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.palantir.dialogue.hc5; + +import com.codahale.metrics.Timer; +import com.palantir.dialogue.hc5.DialogueClientMetrics.ConnectionConnect_Result; +import com.palantir.logsafe.Preconditions; +import com.palantir.logsafe.SafeArg; +import com.palantir.logsafe.UnsafeArg; +import com.palantir.logsafe.exceptions.SafeIoException; +import com.palantir.logsafe.logger.SafeLogger; +import com.palantir.logsafe.logger.SafeLoggerFactory; +import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.Socket; +import java.net.SocketAddress; +import java.security.AccessController; +import java.security.PrivilegedActionException; +import java.security.PrivilegedExceptionAction; +import java.util.concurrent.TimeUnit; +import java.util.function.Supplier; +import javax.net.ssl.HostnameVerifier; +import javax.net.ssl.SSLHandshakeException; +import javax.net.ssl.SSLSession; +import javax.net.ssl.SSLSocket; +import javax.net.ssl.SSLSocketFactory; +import org.apache.hc.client5.http.config.TlsConfig; +import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory; +import org.apache.hc.core5.http.HttpHost; +import org.apache.hc.core5.http.protocol.HttpContext; +import org.apache.hc.core5.http.ssl.TLS; +import org.apache.hc.core5.http.ssl.TlsCiphers; +import org.apache.hc.core5.io.Closer; +import org.apache.hc.core5.util.Timeout; + +/** + * InstrumentedSslConnectionSocketFactory is based closely on {@link SSLConnectionSocketFactory}, with two changes + * described below. + *
    + *
  1. {@link #rawSocketCreator} provided for socks proxy support.
  2. + *
  3. {@link #connectSocket(Socket, HttpHost, InetSocketAddress, InetSocketAddress, Timeout, Object, HttpContext)} + * overridden to add timing metrics around {@link Socket#connect(SocketAddress, int)}
  4. + *
+ * The implementation of the connectSocket override borrows heavily from the original implementation of + * {@link SSLConnectionSocketFactory} from httpclient5-5.2.1 licensed under Apache 2.0 in order to apply + * instrumentation without interfering with behavior. + */ +final class InstrumentedSslConnectionSocketFactory extends SSLConnectionSocketFactory { + private static final SafeLogger log = SafeLoggerFactory.get(InstrumentedSslConnectionSocketFactory.class); + + private final Supplier rawSocketCreator; + private final String[] supportedProtocols; + private final String[] supportedCipherSuites; + private final String clientName; + + private final Timer connectTimerSuccess; + private final Timer connectTimerFailure; + + InstrumentedSslConnectionSocketFactory( + String clientName, + DialogueClientMetrics dialogueClientMetrics, + SSLSocketFactory socketFactory, + String[] supportedProtocols, + String[] supportedCipherSuites, + HostnameVerifier hostnameVerifier, + Supplier rawSocketCreator) { + super(socketFactory, supportedProtocols, supportedCipherSuites, hostnameVerifier); + this.supportedProtocols = supportedProtocols; + this.supportedCipherSuites = supportedCipherSuites; + this.clientName = clientName; + this.rawSocketCreator = rawSocketCreator; + this.connectTimerSuccess = dialogueClientMetrics + .connectionConnect() + .clientName(clientName) + .result(ConnectionConnect_Result.SUCCESS) + .build(); + this.connectTimerFailure = dialogueClientMetrics + .connectionConnect() + .clientName(clientName) + .result(ConnectionConnect_Result.FAILURE) + .build(); + } + + @Override + public Socket createSocket(HttpContext _context) { + return rawSocketCreator.get(); + } + + @Override + public Socket connectSocket( + Socket socket, + HttpHost host, + InetSocketAddress remoteAddress, + InetSocketAddress localAddress, + Timeout connectTimeout, + Object attachment, + HttpContext context) + throws IOException { + Preconditions.checkNotNull(host, "host is required"); + Preconditions.checkNotNull(remoteAddress, "remoteAddress is required"); + Socket sock = socket != null ? socket : createSocket(context); + if (localAddress != null) { + sock.bind(localAddress); + } + try { + if (log.isDebugEnabled()) { + log.debug( + "Connecting socket to {} ({}) with timeout {}", + SafeArg.of("clientName", clientName), + UnsafeArg.of("remoteAddress", remoteAddress), + SafeArg.of("connectTimeout", connectTimeout)); + } + // Run this under a doPrivileged to support lib users that run under a SecurityManager this allows granting + // connect permissions only to this library + try { + AccessController.doPrivileged((PrivilegedExceptionAction) () -> { + doConnect( + sock, + remoteAddress, + Timeout.defaultsToDisabled(connectTimeout).toMillisecondsIntBound()); + return null; + }); + } catch (PrivilegedActionException e) { + Throwable cause = e.getCause(); + if (cause instanceof IOException) { + throw (IOException) cause; + } + throw new SafeIoException("Failed to connect", e, SafeArg.of("clientName", clientName)); + } + } catch (IOException ex) { + Closer.closeQuietly(sock); + throw ex; + } + // Setup SSL layering if necessary + if (sock instanceof SSLSocket) { + SSLSocket sslsock = (SSLSocket) sock; + executeHandshake(sslsock, host.getHostName(), attachment); + return sock; + } + return createLayeredSocket(sock, host.getHostName(), remoteAddress.getPort(), attachment, context); + } + + private void doConnect(Socket sock, InetSocketAddress remoteAddress, int connectTimeoutMillis) throws IOException { + boolean success = false; + long startNanos = System.nanoTime(); + try { + sock.connect(remoteAddress, connectTimeoutMillis); + success = true; + } finally { + long durationNanos = System.nanoTime() - startNanos; + Timer timer = success ? connectTimerSuccess : connectTimerFailure; + timer.update(durationNanos, TimeUnit.NANOSECONDS); + } + } + + private void executeHandshake(SSLSocket sslSocket, String target, Object attachment) throws IOException { + TlsConfig tlsConfig = attachment instanceof TlsConfig ? (TlsConfig) attachment : TlsConfig.DEFAULT; + if (supportedProtocols != null) { + sslSocket.setEnabledProtocols(supportedProtocols); + } else { + sslSocket.setEnabledProtocols(TLS.excludeWeak(sslSocket.getEnabledProtocols())); + } + if (supportedCipherSuites != null) { + sslSocket.setEnabledCipherSuites(supportedCipherSuites); + } else { + sslSocket.setEnabledCipherSuites(TlsCiphers.excludeWeak(sslSocket.getEnabledCipherSuites())); + } + Timeout handshakeTimeout = tlsConfig.getHandshakeTimeout(); + if (handshakeTimeout != null) { + sslSocket.setSoTimeout(handshakeTimeout.toMillisecondsIntBound()); + } + + prepareSocket(sslSocket); + + sslSocket.startHandshake(); + verifyHostname(sslSocket, target); + } + + private void verifyHostname(SSLSocket sslsock, String hostname) throws IOException { + try { + SSLSession session = sslsock.getSession(); + if (session == null) { + throw new SSLHandshakeException("SSL session not available"); + } + verifySession(hostname, session); + } catch (IOException iox) { + // close the socket before re-throwing the exception + Closer.closeQuietly(sslsock); + throw iox; + } + } +} diff --git a/dialogue-apache-hc5-client/src/main/metrics/dialogue-apache-client-metrics.yml b/dialogue-apache-hc5-client/src/main/metrics/dialogue-apache-client-metrics.yml index 7534c2d67..cfe8a375f 100644 --- a/dialogue-apache-hc5-client/src/main/metrics/dialogue-apache-client-metrics.yml +++ b/dialogue-apache-hc5-client/src/main/metrics/dialogue-apache-client-metrics.yml @@ -60,6 +60,17 @@ namespaces: docs: Describes whether or not a connection was successfully established. docs: Reports the time spent creating a new connection. This includes both connecting the socket and the full TLS handshake. + connection.connect: + type: timer + tags: + - name: client-name + - name: client-type + values: [ apache-hc5 ] + - name: result + values: [ success, failure ] + docs: Describes whether or not a connection was successfully established. + docs: Reports the time spent within `socket.connect`. This does not include TLS. + connection.closed.partially-consumed-response: type: meter tags: diff --git a/dialogue-apache-hc5-client/src/test/java/com/palantir/dialogue/hc5/ApacheHttpClientChannelsTest.java b/dialogue-apache-hc5-client/src/test/java/com/palantir/dialogue/hc5/ApacheHttpClientChannelsTest.java index 34c457b44..bcd8472b6 100644 --- a/dialogue-apache-hc5-client/src/test/java/com/palantir/dialogue/hc5/ApacheHttpClientChannelsTest.java +++ b/dialogue-apache-hc5-client/src/test/java/com/palantir/dialogue/hc5/ApacheHttpClientChannelsTest.java @@ -22,6 +22,7 @@ import com.codahale.metrics.Gauge; import com.codahale.metrics.Meter; import com.codahale.metrics.Metric; +import com.codahale.metrics.Timer; import com.google.common.collect.Lists; import com.google.common.collect.MoreCollectors; import com.google.common.net.HttpHeaders; @@ -37,6 +38,7 @@ import com.palantir.dialogue.Response; import com.palantir.dialogue.TestConfigurations; import com.palantir.dialogue.TestEndpoint; +import com.palantir.dialogue.hc5.DialogueClientMetrics.ConnectionCreate_Result; import com.palantir.logsafe.Arg; import com.palantir.logsafe.SafeLoggable; import com.palantir.tritium.metrics.registry.TaggedMetricRegistry; @@ -162,16 +164,23 @@ public void countsConnectErrors() throws Exception { .connectTimeout(Duration.ofMillis(1)) .build(); + String clientName = "testClient"; + try (ApacheHttpClientChannels.CloseableClient client = - ApacheHttpClientChannels.createCloseableHttpClient(conf, "testClient")) { + ApacheHttpClientChannels.createCloseableHttpClient(conf, clientName)) { - Meter connectionCreateError = DialogueClientMetrics.of(conf.taggedMetricRegistry()) - .connectionCreateError() - .clientName("testClient") + DialogueClientMetrics metrics = DialogueClientMetrics.of(conf.taggedMetricRegistry()); + Meter connectionCreateError = metrics.connectionCreateError() + .clientName(clientName) .cause("ConnectTimeoutException") .build(); + Timer connectionFailed = metrics.connectionCreate() + .clientName(clientName) + .result(ConnectionCreate_Result.FAILURE) + .build(); assertThat(connectionCreateError.getCount()).isZero(); + assertThat(connectionFailed.getCount()).isZero(); // 203.0.113.0/24 is a test network that should never exist Channel channel = ApacheHttpClientChannels.createSingleUri("http://203.0.113.23", client); @@ -185,6 +194,7 @@ public void countsConnectErrors() throws Exception { } assertThat(connectionCreateError.getCount()).isEqualTo(1L); + assertThat(connectionFailed.getCount()).isEqualTo(1L); } } diff --git a/dialogue-clients/metrics.md b/dialogue-clients/metrics.md index 72d957bf6..e640531c0 100644 --- a/dialogue-clients/metrics.md +++ b/dialogue-clients/metrics.md @@ -24,6 +24,10 @@ Dialogue client response metrics provided by the Apache client channel. - `client-name` - `client-type` values (`apache-hc5`) - `result` values (`success`,`failure`): Describes whether or not a connection was successfully established. +- `dialogue.client.connection.connect` (timer): Reports the time spent within `socket.connect`. This does not include TLS. + - `client-name` + - `client-type` values (`apache-hc5`) + - `result` values (`success`,`failure`): Describes whether or not a connection was successfully established. - `dialogue.client.connection.closed.partially-consumed-response` (meter): Reports the rate that connections are closed due to response closure prior to response data being fully exhausted. When this occurs, subsequent requests must create new handshakes, incurring latency and CPU overhead due to handshakes. - `client-name` - `client-type` values (`apache-hc5`)