![JAR search and dependency download from the Maven repository](/logo.png)
com.sshtools.client.jdk16.UnixDomainSocketRemoteForwardRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-synergy-jdk16-client Show documentation
Show all versions of maverick-synergy-jdk16-client Show documentation
The components required for Maverick Synergy Client for using JDK16 (and above) support for Unix Domain Socket forwarding
package com.sshtools.client.jdk16;
/*-
* #%L
* Client implementation Unix Domain Socket forwarding
* %%
* Copyright (C) 2002 - 2024 JADAPTIVE Limited
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.io.IOException;
import java.nio.file.Paths;
import com.sshtools.client.SshClientContext;
import com.sshtools.common.logger.Log;
import com.sshtools.common.ssh.GlobalRequest;
import com.sshtools.common.ssh.SshException;
import com.sshtools.common.util.ByteArrayWriter;
import com.sshtools.synergy.jdk16.UnixDomainSockets;
import com.sshtools.synergy.ssh.ConnectionProtocol;
import com.sshtools.synergy.ssh.RemoteForwardRequestHandler;
public class UnixDomainSocketRemoteForwardRequestHandler implements RemoteForwardRequestHandler {
@Override
public boolean isHandled(String hostToBind, int portToBind, String destinationHost, int destinationPort, ConnectionProtocol conn) {
/* Unix domain sockets will always have both ports zero */
if(portToBind != 0 || destinationPort == 0)
return false;
/* Both hosts will actually be absolute paths */
return Paths.get(hostToBind).isAbsolute() && Paths.get(hostToBind).isAbsolute();
}
@Override
public int startRemoteForward(String hostToBind, int portToBind, String destinationHost, int destinationPort, ConnectionProtocol conn) throws SshException {
try(var msg = new ByteArrayWriter()) {
msg.writeString(hostToBind);
msg.writeString(""); // Reserved
var request = new GlobalRequest(UnixDomainSockets.STREAM_LOCAL_FORWARD_REQUEST, conn.getConnection(), msg.toByteArray());
conn.sendGlobalRequest(request, true);
request.waitForever();
if(request.isSuccess()) {
if(Log.isInfoEnabled()) {
Log.info("Remote domain socket forwarding is now active on remote interface " + hostToBind
+ " forwarding to " + destinationHost);
}
return 0;
} else {
throw new SshException("Remote domain socket forwarding on interface "
+ hostToBind + ":" + portToBind + " failed", SshException.FORWARDING_ERROR);
}
} catch (IOException e) {
throw new SshException(SshException.INTERNAL_ERROR, e);
}
}
@Override
public void stopRemoteForward(String hostToBind, int portToBind, String destinationHost, int destinationPort,
ConnectionProtocol conn) throws SshException {
try(var msg = new ByteArrayWriter()) {
msg.writeString(hostToBind);
var request = new GlobalRequest(UnixDomainSockets.CANCEL_STREAM_LOCAL_FORWARD_REQUEST, conn.getConnection(), msg.toByteArray());
conn.sendGlobalRequest(request, true);
request.waitForever();
if (request.isSuccess()) {
if (Log.isInfoEnabled()) {
Log.info("Remote domain socket forwarding cancelled on remote interface " + hostToBind);
}
} else {
throw new SshException(
"Cancel remote domain socket forwarding on interface " + hostToBind + " failed",
SshException.FORWARDING_ERROR);
}
} catch (IOException e) {
throw new SshException(SshException.INTERNAL_ERROR, e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy