org.gradle.internal.remote.internal.inet.TcpOutgoingConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or 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
*
* 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.gradle.internal.remote.internal.inet;
import org.gradle.internal.UncheckedException;
import org.gradle.internal.remote.Address;
import org.gradle.internal.remote.internal.ConnectCompletion;
import org.gradle.internal.remote.internal.OutgoingConnector;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.net.*;
import java.nio.channels.SocketChannel;
import java.util.List;
public class TcpOutgoingConnector implements OutgoingConnector {
private static final Logger LOGGER = LoggerFactory.getLogger(TcpOutgoingConnector.class);
private static final int CONNECT_TIMEOUT = 10000;
public ConnectCompletion connect(Address destinationAddress) throws org.gradle.internal.remote.internal.ConnectException {
if (!(destinationAddress instanceof InetEndpoint)) {
throw new IllegalArgumentException(String.format("Cannot create a connection to address of unknown type: %s.", destinationAddress));
}
InetEndpoint address = (InetEndpoint) destinationAddress;
LOGGER.debug("Attempting to connect to {}.", address);
// Try each address in turn. Not all of them are necessarily reachable (eg when socket option IPV6_V6ONLY
// is on - the default for debian and others), so we will try each of them until we can connect
List candidateAddresses = address.getCandidates();
// Now try each address
try {
Exception lastFailure = null;
for (InetAddress candidate : candidateAddresses) {
LOGGER.debug("Trying to connect to address {}.", candidate);
SocketChannel socketChannel;
try {
socketChannel = tryConnect(address, candidate);
} catch (SocketException e) {
LOGGER.debug("Cannot connect to address {}, skipping.", candidate);
lastFailure = e;
continue;
} catch (SocketTimeoutException e) {
LOGGER.debug("Timeout connecting to address {}, skipping.", candidate);
lastFailure = e;
continue;
}
LOGGER.debug("Connected to address {}.", socketChannel.socket().getRemoteSocketAddress());
return new SocketConnectCompletion(socketChannel);
}
throw new org.gradle.internal.remote.internal.ConnectException(String.format("Could not connect to server %s. Tried addresses: %s.",
destinationAddress, candidateAddresses), lastFailure);
} catch (org.gradle.internal.remote.internal.ConnectException e) {
throw e;
} catch (Exception e) {
throw new RuntimeException(String.format("Could not connect to server %s. Tried addresses: %s.",
destinationAddress, candidateAddresses), e);
}
}
private SocketChannel tryConnect(InetEndpoint address, InetAddress candidate) throws IOException {
SocketChannel socketChannel = SocketChannel.open();
try {
socketChannel.socket().connect(new InetSocketAddress(candidate, address.getPort()), CONNECT_TIMEOUT);
if (!detectSelfConnect(socketChannel)) {
return socketChannel;
}
socketChannel.close();
} catch (IOException e) {
socketChannel.close();
throw e;
} catch (Throwable e) {
socketChannel.close();
throw UncheckedException.throwAsUncheckedException(e);
}
throw new java.net.ConnectException(String.format("Socket connected to itself on %s port %s.", candidate, address.getPort()));
}
boolean detectSelfConnect(SocketChannel socketChannel) {
Socket socket = socketChannel.socket();
SocketAddress localAddress = socket.getLocalSocketAddress();
SocketAddress remoteAddress = socket.getRemoteSocketAddress();
if (localAddress.equals(remoteAddress)) {
LOGGER.debug("Detected that socket was bound to {} while connecting to {}. This looks like the socket connected to itself.",
localAddress, remoteAddress);
return true;
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy