2006-02-03 20:13:23 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision: $
|
|
|
|
* $Date: $
|
|
|
|
*
|
|
|
|
* Copyright 2003-2006 Jive Software.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2006-02-03 19:44:22 +01:00
|
|
|
package org.jivesoftware.smackx.filetransfer;
|
|
|
|
|
|
|
|
import org.jivesoftware.smack.PacketCollector;
|
|
|
|
import org.jivesoftware.smack.SmackConfiguration;
|
|
|
|
import org.jivesoftware.smack.XMPPConnection;
|
|
|
|
import org.jivesoftware.smack.XMPPException;
|
|
|
|
import org.jivesoftware.smack.filter.AndFilter;
|
|
|
|
import org.jivesoftware.smack.filter.FromMatchesFilter;
|
|
|
|
import org.jivesoftware.smack.filter.PacketFilter;
|
|
|
|
import org.jivesoftware.smack.filter.PacketIDFilter;
|
|
|
|
import org.jivesoftware.smack.packet.IQ;
|
|
|
|
import org.jivesoftware.smack.packet.Packet;
|
2006-02-08 01:31:17 +01:00
|
|
|
import org.jivesoftware.smack.packet.XMPPError;
|
2006-02-03 19:44:22 +01:00
|
|
|
import org.jivesoftware.smack.util.StringUtils;
|
2006-07-05 20:34:11 +02:00
|
|
|
import org.jivesoftware.smack.util.Cache;
|
2006-02-03 19:44:22 +01:00
|
|
|
import org.jivesoftware.smackx.ServiceDiscoveryManager;
|
|
|
|
import org.jivesoftware.smackx.packet.Bytestream;
|
|
|
|
import org.jivesoftware.smackx.packet.Bytestream.StreamHost;
|
|
|
|
import org.jivesoftware.smackx.packet.Bytestream.StreamHostUsed;
|
|
|
|
import org.jivesoftware.smackx.packet.DiscoverInfo;
|
|
|
|
import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
|
|
|
|
import org.jivesoftware.smackx.packet.DiscoverItems;
|
|
|
|
import org.jivesoftware.smackx.packet.DiscoverItems.Item;
|
|
|
|
import org.jivesoftware.smackx.packet.StreamInitiation;
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
import java.net.*;
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A SOCKS5 bytestream is negotiated partly over the XMPP XML stream and partly
|
|
|
|
* over a seperate socket. The actual transfer though takes place over a
|
|
|
|
* seperatly created socket.
|
|
|
|
* <p/>
|
|
|
|
* A SOCKS5 file transfer generally has three parites, the initiator, the
|
|
|
|
* target, and the stream host. The stream host is a specialized SOCKS5 proxy
|
|
|
|
* setup on the server, or, the Initiator can act as the Stream Host if the
|
|
|
|
* proxy is not available.
|
|
|
|
* <p/>
|
|
|
|
* The advantage of having a seperate proxy over directly connecting to
|
|
|
|
* eachother is if the Initator and the Target are not on the same LAN and are
|
|
|
|
* operating behind NAT, the proxy allows for a common location for both parties
|
|
|
|
* to connect to and transfer the file.
|
|
|
|
* <p/>
|
|
|
|
* Smack will attempt to automatically discover any proxies present on your
|
|
|
|
* server. If any are detected they will be forwarded to any user attempting to
|
|
|
|
* recieve files from you.
|
|
|
|
*
|
|
|
|
* @author Alexander Wenckus
|
|
|
|
* @see <a href="http://www.jabber.org/jeps/jep-0065.html">JEP-0065: SOCKS5
|
|
|
|
* Bytestreams</a>
|
|
|
|
*/
|
|
|
|
public class Socks5TransferNegotiator extends StreamNegotiator {
|
|
|
|
|
|
|
|
protected static final String NAMESPACE = "http://jabber.org/protocol/bytestreams";
|
|
|
|
|
2006-07-05 20:34:11 +02:00
|
|
|
/**
|
|
|
|
* The number of connection failures it takes to a streamhost for that particular streamhost
|
|
|
|
* to be blacklisted. When a host is blacklisted no more connection attempts will be made to
|
|
|
|
* it for a period of 2 hours.
|
|
|
|
*/
|
|
|
|
private static final int CONNECT_FAILURE_THRESHOLD = 2;
|
|
|
|
|
|
|
|
private static final long BLACKLIST_LIFETIME = 60 * 1000 * 120;
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
public static boolean isAllowLocalProxyHost = true;
|
|
|
|
|
|
|
|
private final XMPPConnection connection;
|
|
|
|
|
2006-07-20 19:17:19 +02:00
|
|
|
private List<String> proxies;
|
2006-02-03 19:44:22 +01:00
|
|
|
|
2006-07-20 19:17:19 +02:00
|
|
|
private List<String> streamHosts;
|
2006-02-08 19:03:09 +01:00
|
|
|
|
|
|
|
// locks the proxies during their initialization process
|
|
|
|
private final Object proxyLock = new Object();
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
private ProxyProcess proxyProcess;
|
|
|
|
|
2006-02-08 19:03:09 +01:00
|
|
|
// locks on the proxy process during its initiatilization process
|
|
|
|
private final Object processLock = new Object();
|
|
|
|
|
2006-07-05 20:34:11 +02:00
|
|
|
private final Cache addressBlacklist = new Cache(100, BLACKLIST_LIFETIME);
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
public Socks5TransferNegotiator(final XMPPConnection connection) {
|
|
|
|
this.connection = connection;
|
|
|
|
}
|
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
public PacketFilter getInitiationPacketFilter(String from, String sessionID) {
|
|
|
|
return new AndFilter(new FromMatchesFilter(from),
|
|
|
|
new BytestreamSIDFilter(sessionID));
|
|
|
|
}
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
/*
|
|
|
|
* (non-Javadoc)
|
|
|
|
*
|
2006-07-05 19:45:59 +02:00
|
|
|
* @see org.jivesoftware.smackx.filetransfer.StreamNegotiator#initiateDownload(
|
|
|
|
* org.jivesoftware.smackx.packet.StreamInitiation, java.io.File)
|
2006-02-03 19:44:22 +01:00
|
|
|
*/
|
2006-02-08 01:31:17 +01:00
|
|
|
InputStream negotiateIncomingStream(Packet streamInitiation)
|
2006-02-03 19:44:22 +01:00
|
|
|
throws XMPPException {
|
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
Bytestream streamHostsInfo = (Bytestream) streamInitiation;
|
2006-02-03 19:44:22 +01:00
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
if (streamHostsInfo.getType().equals(IQ.Type.ERROR)) {
|
2006-02-03 19:44:22 +01:00
|
|
|
throw new XMPPException(streamHostsInfo.getError());
|
|
|
|
}
|
2006-02-08 01:31:17 +01:00
|
|
|
SelectedHostInfo selectedHost;
|
|
|
|
try {
|
|
|
|
// select appropriate host
|
|
|
|
selectedHost = selectHost(streamHostsInfo);
|
|
|
|
}
|
|
|
|
catch (XMPPException ex) {
|
|
|
|
if (ex.getXMPPError() != null) {
|
|
|
|
IQ errorPacket = super.createError(streamHostsInfo.getTo(),
|
|
|
|
streamHostsInfo.getFrom(), streamHostsInfo.getPacketID(),
|
|
|
|
ex.getXMPPError());
|
|
|
|
connection.sendPacket(errorPacket);
|
|
|
|
}
|
|
|
|
throw(ex);
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
|
|
|
|
// send used-host confirmation
|
|
|
|
Bytestream streamResponse = createUsedHostConfirmation(
|
|
|
|
selectedHost.selectedHost, streamHostsInfo.getFrom(),
|
|
|
|
streamHostsInfo.getTo(), streamHostsInfo.getPacketID());
|
|
|
|
connection.sendPacket(streamResponse);
|
|
|
|
|
|
|
|
try {
|
|
|
|
return selectedHost.establishedSocket.getInputStream();
|
|
|
|
}
|
|
|
|
catch (IOException e) {
|
|
|
|
throw new XMPPException("Error establishing input stream", e);
|
|
|
|
}
|
2006-02-08 01:31:17 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream createIncomingStream(StreamInitiation initiation) throws XMPPException {
|
|
|
|
Packet streamInitiation = initiateIncomingStream(connection, initiation);
|
|
|
|
return negotiateIncomingStream(streamInitiation);
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The used host confirmation is sent to the initiator to indicate to them
|
|
|
|
* which of the hosts they provided has been selected and successfully
|
|
|
|
* connected to.
|
|
|
|
*
|
|
|
|
* @param selectedHost The selected stream host.
|
|
|
|
* @param initiator The initiator of the stream.
|
|
|
|
* @param target The target of the stream.
|
|
|
|
* @param packetID The of the packet being responded to.
|
|
|
|
* @return The packet that was created to send to the initiator.
|
|
|
|
*/
|
|
|
|
private Bytestream createUsedHostConfirmation(StreamHost selectedHost,
|
|
|
|
String initiator, String target, String packetID) {
|
|
|
|
Bytestream streamResponse = new Bytestream();
|
|
|
|
streamResponse.setTo(initiator);
|
|
|
|
streamResponse.setFrom(target);
|
|
|
|
streamResponse.setType(IQ.Type.RESULT);
|
|
|
|
streamResponse.setPacketID(packetID);
|
|
|
|
streamResponse.setUsedHost(selectedHost.getJID());
|
|
|
|
return streamResponse;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-07-05 20:34:11 +02:00
|
|
|
* Selects a host to connect to over which the file will be transmitted.
|
|
|
|
*
|
|
|
|
* @param streamHostsInfo the packet recieved from the initiator containing the available hosts
|
|
|
|
* to transfer the file
|
|
|
|
* @return the selected host and socket that were created.
|
|
|
|
* @throws XMPPException when there is no appropriate host.
|
2006-02-03 19:44:22 +01:00
|
|
|
*/
|
|
|
|
private SelectedHostInfo selectHost(Bytestream streamHostsInfo)
|
2006-07-05 19:45:59 +02:00
|
|
|
throws XMPPException
|
|
|
|
{
|
2006-02-03 19:44:22 +01:00
|
|
|
Iterator it = streamHostsInfo.getStreamHosts().iterator();
|
|
|
|
StreamHost selectedHost = null;
|
|
|
|
Socket socket = null;
|
|
|
|
while (it.hasNext()) {
|
|
|
|
selectedHost = (StreamHost) it.next();
|
2006-07-05 20:34:11 +02:00
|
|
|
String address = selectedHost.getAddress();
|
2006-02-03 19:44:22 +01:00
|
|
|
|
2006-07-05 20:34:11 +02:00
|
|
|
// Check to see if this address has been blacklisted
|
|
|
|
int failures = getConnectionFailures(address);
|
|
|
|
if(failures >= CONNECT_FAILURE_THRESHOLD) {
|
|
|
|
continue;
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
// establish socket
|
|
|
|
try {
|
2006-07-05 20:34:11 +02:00
|
|
|
socket = new Socket(address, selectedHost
|
2006-02-03 19:44:22 +01:00
|
|
|
.getPort());
|
|
|
|
establishSOCKS5ConnectionToProxy(socket, createDigest(
|
|
|
|
streamHostsInfo.getSessionID(), streamHostsInfo
|
|
|
|
.getFrom(), streamHostsInfo.getTo()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
2006-07-05 20:34:11 +02:00
|
|
|
incrementConnectionFailures(address);
|
2006-02-03 19:44:22 +01:00
|
|
|
selectedHost = null;
|
|
|
|
socket = null;
|
|
|
|
}
|
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
if (selectedHost == null || socket == null || !socket.isConnected()) {
|
2006-07-19 21:24:00 +02:00
|
|
|
String errorMessage = "Could not establish socket with any provided host";
|
|
|
|
throw new XMPPException(errorMessage, new XMPPError(
|
|
|
|
XMPPError.Condition.no_acceptable, errorMessage));
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return new SelectedHostInfo(selectedHost, socket);
|
|
|
|
}
|
|
|
|
|
2006-07-05 20:34:11 +02:00
|
|
|
private void incrementConnectionFailures(String address) {
|
|
|
|
Integer count = (Integer) addressBlacklist.get(address);
|
|
|
|
if(count == null) {
|
|
|
|
count = new Integer(1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
count = new Integer(count.intValue() + 1);
|
|
|
|
}
|
|
|
|
addressBlacklist.put(address, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getConnectionFailures(String address) {
|
|
|
|
Integer count = (Integer) addressBlacklist.get(address);
|
|
|
|
return (count != null ? count.intValue() : 0);
|
|
|
|
}
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
/**
|
|
|
|
* Creates the digest needed for a byte stream. It is the SHA1(sessionID +
|
|
|
|
* initiator + target).
|
|
|
|
*
|
|
|
|
* @param sessionID The sessionID of the stream negotiation
|
|
|
|
* @param initiator The inititator of the stream negotiation
|
|
|
|
* @param target The target of the stream negotiation
|
|
|
|
* @return SHA-1 hash of the three parameters
|
|
|
|
*/
|
|
|
|
private String createDigest(final String sessionID, final String initiator,
|
|
|
|
final String target) {
|
|
|
|
return StringUtils.hash(sessionID + StringUtils.parseName(initiator)
|
|
|
|
+ "@" + StringUtils.parseServer(initiator) + "/"
|
|
|
|
+ StringUtils.parseResource(initiator)
|
|
|
|
+ StringUtils.parseName(target) + "@"
|
|
|
|
+ StringUtils.parseServer(target) + "/"
|
|
|
|
+ StringUtils.parseResource(target));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* (non-Javadoc)
|
|
|
|
*
|
|
|
|
* @see org.jivesoftware.smackx.filetransfer.StreamNegotiator#initiateUpload(java.lang.String,
|
|
|
|
* org.jivesoftware.smackx.packet.StreamInitiation, java.io.File)
|
|
|
|
*/
|
2006-02-08 01:31:17 +01:00
|
|
|
public OutputStream createOutgoingStream(String streamID, String initiator,
|
2006-07-05 19:45:59 +02:00
|
|
|
String target) throws XMPPException
|
|
|
|
{
|
2006-02-03 19:44:22 +01:00
|
|
|
Socket socket;
|
|
|
|
try {
|
|
|
|
socket = initBytestreamSocket(streamID, initiator, target);
|
|
|
|
}
|
|
|
|
catch (Exception e) {
|
|
|
|
throw new XMPPException("Error establishing transfer socket", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (socket != null) {
|
|
|
|
try {
|
2006-07-05 19:45:59 +02:00
|
|
|
return new BufferedOutputStream(socket.getOutputStream());
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
catch (IOException e) {
|
|
|
|
throw new XMPPException("Error establishing output stream", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private Socket initBytestreamSocket(final String sessionID,
|
2006-07-05 19:45:59 +02:00
|
|
|
String initiator, String target) throws Exception
|
|
|
|
{
|
2006-02-03 19:44:22 +01:00
|
|
|
ProxyProcess process;
|
|
|
|
try {
|
|
|
|
process = establishListeningSocket();
|
|
|
|
}
|
|
|
|
catch (IOException io) {
|
|
|
|
process = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
String localIP;
|
|
|
|
try {
|
|
|
|
localIP = discoverLocalIP();
|
|
|
|
}
|
|
|
|
catch (UnknownHostException e1) {
|
|
|
|
localIP = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bytestream query = createByteStreamInit(initiator, target, sessionID,
|
|
|
|
localIP, (process != null ? process.getPort() : 0));
|
|
|
|
|
|
|
|
// if the local host is one of the options we need to wait for the
|
|
|
|
// remote connection.
|
|
|
|
Socket conn = waitForUsedHostResponse(sessionID, process, createDigest(
|
|
|
|
sessionID, initiator, target), query).establishedSocket;
|
|
|
|
cleanupListeningSocket();
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Waits for the peer to respond with which host they chose to use.
|
|
|
|
*
|
|
|
|
* @param sessionID The session id of the stream.
|
|
|
|
* @param proxy The server socket which will listen locally for remote
|
|
|
|
* connections.
|
|
|
|
* @param digest
|
|
|
|
* @param query
|
|
|
|
* @return
|
|
|
|
* @throws XMPPException
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
private SelectedHostInfo waitForUsedHostResponse(String sessionID,
|
|
|
|
final ProxyProcess proxy, final String digest,
|
2006-07-05 19:45:59 +02:00
|
|
|
final Bytestream query) throws XMPPException, IOException
|
|
|
|
{
|
2006-02-03 19:44:22 +01:00
|
|
|
SelectedHostInfo info = new SelectedHostInfo();
|
|
|
|
|
|
|
|
PacketCollector collector = connection
|
|
|
|
.createPacketCollector(new PacketIDFilter(query.getPacketID()));
|
|
|
|
connection.sendPacket(query);
|
|
|
|
|
|
|
|
Packet packet = collector.nextResult();
|
|
|
|
collector.cancel();
|
|
|
|
Bytestream response;
|
|
|
|
if (packet instanceof Bytestream) {
|
|
|
|
response = (Bytestream) packet;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
throw new XMPPException("Unexpected response from remote user");
|
|
|
|
}
|
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
// check for an error
|
|
|
|
if (response.getType().equals(IQ.Type.ERROR)) {
|
|
|
|
throw new XMPPException("Remote client returned error, stream hosts expected",
|
|
|
|
response.getError());
|
|
|
|
}
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
StreamHostUsed used = response.getUsedHost();
|
|
|
|
StreamHost usedHost = query.getStreamHost(used.getJID());
|
|
|
|
if (usedHost == null) {
|
|
|
|
throw new XMPPException("Remote user responded with unknown host");
|
|
|
|
}
|
|
|
|
// The local computer is acting as the proxy
|
|
|
|
if (used.getJID().equals(query.getFrom())) {
|
|
|
|
info.establishedSocket = proxy.getSocket(digest);
|
|
|
|
info.selectedHost = usedHost;
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
info.establishedSocket = new Socket(usedHost.getAddress(), usedHost
|
|
|
|
.getPort());
|
|
|
|
establishSOCKS5ConnectionToProxy(info.establishedSocket, digest);
|
|
|
|
|
|
|
|
Bytestream activate = createByteStreamActivate(sessionID, response
|
|
|
|
.getTo(), usedHost.getJID(), response.getFrom());
|
|
|
|
|
|
|
|
collector = connection.createPacketCollector(new PacketIDFilter(
|
|
|
|
activate.getPacketID()));
|
|
|
|
connection.sendPacket(activate);
|
|
|
|
|
2006-07-05 19:45:59 +02:00
|
|
|
IQ serverResponse = (IQ) collector.nextResult(SmackConfiguration
|
|
|
|
.getPacketReplyTimeout());
|
2006-02-03 19:44:22 +01:00
|
|
|
collector.cancel();
|
|
|
|
if (!serverResponse.getType().equals(IQ.Type.RESULT)) {
|
|
|
|
info.establishedSocket.close();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private ProxyProcess establishListeningSocket() throws IOException {
|
2006-02-08 19:03:09 +01:00
|
|
|
synchronized (processLock) {
|
|
|
|
if (proxyProcess == null) {
|
|
|
|
proxyProcess = new ProxyProcess(new ServerSocket(7777));
|
|
|
|
proxyProcess.start();
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
proxyProcess.addTransfer();
|
|
|
|
return proxyProcess;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void cleanupListeningSocket() {
|
|
|
|
if (proxyProcess == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
proxyProcess.removeTransfer();
|
|
|
|
}
|
|
|
|
|
|
|
|
private String discoverLocalIP() throws UnknownHostException {
|
|
|
|
return InetAddress.getLocalHost().getHostAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The bytestream init looks like this:
|
|
|
|
* <p/>
|
|
|
|
* <pre>
|
|
|
|
* <iq type='set'
|
|
|
|
* from='initiator@host1/foo'
|
|
|
|
* to='target@host2/bar'
|
|
|
|
* id='initiate'>
|
|
|
|
* <query xmlns='http://jabber.org/protocol/bytestreams'
|
|
|
|
* sid='mySID'
|
|
|
|
* mode='tcp'>
|
|
|
|
* <streamhost
|
|
|
|
* jid='initiator@host1/foo'
|
|
|
|
* host='192.168.4.1'
|
|
|
|
* port='5086'/>
|
|
|
|
* <streamhost
|
|
|
|
* jid='proxy.host3'
|
|
|
|
* host='24.24.24.1'
|
|
|
|
* zeroconf='_jabber.bytestreams'/>
|
|
|
|
* </query>
|
|
|
|
* </iq>
|
|
|
|
* </pre>
|
|
|
|
*
|
2006-07-05 19:45:59 +02:00
|
|
|
* @param from initiator@host1/foo - the file transfer initiator.
|
|
|
|
* @param to target@host2/bar - the file transfer target.
|
|
|
|
* @param sid 'mySID' - the unique identifier for this file transfer
|
|
|
|
* @param localIP the IP of the local machine if it is being provided, null otherwise.
|
|
|
|
* @param port the port of the local mahine if it is being provided, null otherwise.
|
|
|
|
* @return the created <b><i>Bytestream</b></i> packet
|
2006-02-03 19:44:22 +01:00
|
|
|
*/
|
|
|
|
private Bytestream createByteStreamInit(final String from, final String to,
|
|
|
|
final String sid, final String localIP, final int port) {
|
|
|
|
Bytestream bs = new Bytestream();
|
|
|
|
bs.setTo(to);
|
|
|
|
bs.setFrom(from);
|
|
|
|
bs.setSessionID(sid);
|
|
|
|
bs.setType(IQ.Type.SET);
|
|
|
|
bs.setMode(Bytestream.Mode.TCP);
|
|
|
|
if (localIP != null && port > 0) {
|
|
|
|
bs.addStreamHost(from, localIP, port);
|
|
|
|
}
|
2006-02-08 19:03:09 +01:00
|
|
|
// make sure the proxies have been initialized completely
|
|
|
|
synchronized (proxyLock) {
|
|
|
|
if (proxies == null) {
|
|
|
|
initProxies();
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
if (streamHosts != null) {
|
|
|
|
Iterator it = streamHosts.iterator();
|
|
|
|
while (it.hasNext()) {
|
|
|
|
bs.addStreamHost((StreamHost) it.next());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bs;
|
|
|
|
}
|
|
|
|
|
2006-07-20 19:17:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks the service discovery item returned from a server component to verify if it is
|
|
|
|
* a File Transfer proxy or not.
|
|
|
|
*
|
|
|
|
* @param manager the service discovery manager which will be used to query the component
|
|
|
|
* @param item the discovered item on the server relating
|
|
|
|
* @return returns the JID of the proxy if it is a proxy or null if the item is not a proxy.
|
|
|
|
*/
|
|
|
|
private String checkIsProxy(ServiceDiscoveryManager manager, Item item) {
|
|
|
|
DiscoverInfo info;
|
|
|
|
try {
|
|
|
|
info = manager.discoverInfo(item.getEntityID());
|
|
|
|
}
|
|
|
|
catch (XMPPException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Iterator itx = info.getIdentities();
|
|
|
|
while (itx.hasNext()) {
|
|
|
|
DiscoverInfo.Identity identity = (Identity) itx.next();
|
|
|
|
if ("proxy".equalsIgnoreCase(identity.getCategory())
|
|
|
|
&& "bytestreams".equalsIgnoreCase(
|
|
|
|
identity.getType())) {
|
|
|
|
return info.getFrom();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2006-02-03 19:44:22 +01:00
|
|
|
private void initProxies() {
|
2006-07-20 19:17:19 +02:00
|
|
|
proxies = new ArrayList<String>();
|
2006-02-03 19:44:22 +01:00
|
|
|
ServiceDiscoveryManager manager = ServiceDiscoveryManager
|
|
|
|
.getInstanceFor(connection);
|
|
|
|
try {
|
2006-07-20 19:17:19 +02:00
|
|
|
DiscoverItems discoItems = manager.discoverItems(connection.getServiceName());
|
2006-02-03 19:44:22 +01:00
|
|
|
Iterator it = discoItems.getItems();
|
|
|
|
while (it.hasNext()) {
|
2006-07-20 19:17:19 +02:00
|
|
|
DiscoverItems.Item item = (Item) it.next();
|
|
|
|
String proxy = checkIsProxy(manager, item);
|
|
|
|
if(proxy != null) {
|
|
|
|
proxies.add(proxy);
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (XMPPException e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (proxies.size() > 0) {
|
|
|
|
initStreamHosts();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initStreamHosts() {
|
|
|
|
List streamHosts = new ArrayList();
|
|
|
|
Iterator it = proxies.iterator();
|
|
|
|
IQ query;
|
|
|
|
PacketCollector collector;
|
|
|
|
Bytestream response;
|
|
|
|
while (it.hasNext()) {
|
|
|
|
String jid = it.next().toString();
|
|
|
|
query = new IQ() {
|
|
|
|
public String getChildElementXML() {
|
|
|
|
return "<query xmlns=\"http://jabber.org/protocol/bytestreams\"/>";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
query.setType(IQ.Type.GET);
|
|
|
|
query.setTo(jid);
|
|
|
|
|
|
|
|
collector = connection.createPacketCollector(new PacketIDFilter(
|
|
|
|
query.getPacketID()));
|
|
|
|
connection.sendPacket(query);
|
|
|
|
|
|
|
|
response = (Bytestream) collector.nextResult(SmackConfiguration
|
|
|
|
.getPacketReplyTimeout());
|
|
|
|
if (response != null) {
|
|
|
|
streamHosts.addAll(response.getStreamHosts());
|
|
|
|
}
|
|
|
|
collector.cancel();
|
|
|
|
}
|
|
|
|
this.streamHosts = streamHosts;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the packet to send notification to the stream host to activate
|
|
|
|
* the stream.
|
|
|
|
*
|
2006-07-05 19:45:59 +02:00
|
|
|
* @param sessionID the session ID of the file transfer to activate.
|
2006-02-03 19:44:22 +01:00
|
|
|
* @param from
|
2006-07-05 19:45:59 +02:00
|
|
|
* @param to the JID of the stream host
|
|
|
|
* @param target the JID of the file transfer target.
|
|
|
|
* @return the packet to send notification to the stream host to
|
2006-02-03 19:44:22 +01:00
|
|
|
* activate the stream.
|
|
|
|
*/
|
|
|
|
private static Bytestream createByteStreamActivate(final String sessionID,
|
|
|
|
final String from, final String to, final String target) {
|
|
|
|
Bytestream activate = new Bytestream(sessionID);
|
|
|
|
activate.setMode(null);
|
|
|
|
activate.setToActivate(target);
|
|
|
|
activate.setFrom(from);
|
|
|
|
activate.setTo(to);
|
|
|
|
activate.setType(IQ.Type.SET);
|
|
|
|
return activate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Negotiates the Socks 5 bytestream when the local computer is acting as
|
|
|
|
* the proxy.
|
|
|
|
*
|
2006-07-05 19:45:59 +02:00
|
|
|
* @param connection the socket connection with the peer.
|
|
|
|
* @return the SHA-1 digest that is used to uniquely identify the file
|
2006-02-03 19:44:22 +01:00
|
|
|
* transfer.
|
|
|
|
* @throws XMPPException
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
private String establishSocks5UploadConnection(Socket connection) throws XMPPException, IOException {
|
|
|
|
OutputStream out = new DataOutputStream(connection.getOutputStream());
|
|
|
|
InputStream in = new DataInputStream(connection.getInputStream());
|
|
|
|
|
|
|
|
// first byte is version should be 5
|
|
|
|
int b = in.read();
|
|
|
|
if (b != 5) {
|
|
|
|
throw new XMPPException("Only SOCKS5 supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
// second byte number of authentication methods supported
|
|
|
|
b = in.read();
|
|
|
|
int[] auth = new int[b];
|
|
|
|
for (int i = 0; i < b; i++) {
|
|
|
|
auth[i] = in.read();
|
|
|
|
}
|
|
|
|
|
|
|
|
int authMethod = -1;
|
|
|
|
for (int i = 0; i < auth.length; i++) {
|
|
|
|
authMethod = (auth[i] == 0 ? 0 : -1); // only auth method
|
|
|
|
// 0, no
|
|
|
|
// authentication,
|
|
|
|
// supported
|
|
|
|
if (authMethod == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (authMethod != 0) {
|
|
|
|
throw new XMPPException("Authentication method not supported");
|
|
|
|
}
|
|
|
|
byte[] cmd = new byte[2];
|
|
|
|
cmd[0] = (byte) 0x05;
|
|
|
|
cmd[1] = (byte) 0x00;
|
|
|
|
out.write(cmd);
|
|
|
|
|
|
|
|
String responseDigest = createIncomingSocks5Message(in);
|
|
|
|
cmd = createOutgoingSocks5Message(0, responseDigest);
|
|
|
|
|
|
|
|
if (!connection.isConnected()) {
|
|
|
|
throw new XMPPException("Socket closed by remote user");
|
|
|
|
}
|
|
|
|
out.write(cmd);
|
|
|
|
return responseDigest;
|
|
|
|
}
|
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
public String[] getNamespaces() {
|
|
|
|
return new String[]{NAMESPACE};
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void establishSOCKS5ConnectionToProxy(Socket socket, String digest)
|
|
|
|
throws IOException {
|
|
|
|
|
|
|
|
byte[] cmd = new byte[3];
|
|
|
|
|
|
|
|
cmd[0] = (byte) 0x05;
|
|
|
|
cmd[1] = (byte) 0x01;
|
|
|
|
cmd[2] = (byte) 0x00;
|
|
|
|
|
|
|
|
OutputStream out = new DataOutputStream(socket.getOutputStream());
|
|
|
|
out.write(cmd);
|
|
|
|
|
|
|
|
InputStream in = new DataInputStream(socket.getInputStream());
|
|
|
|
byte[] response = new byte[2];
|
|
|
|
|
|
|
|
in.read(response);
|
|
|
|
|
|
|
|
cmd = createOutgoingSocks5Message(1, digest);
|
|
|
|
out.write(cmd);
|
|
|
|
createIncomingSocks5Message(in);
|
|
|
|
}
|
|
|
|
|
|
|
|
private String createIncomingSocks5Message(InputStream in)
|
|
|
|
throws IOException {
|
|
|
|
byte[] cmd = new byte[5];
|
|
|
|
in.read(cmd, 0, 5);
|
|
|
|
|
|
|
|
byte[] addr = new byte[cmd[4]];
|
|
|
|
in.read(addr, 0, addr.length);
|
|
|
|
String digest = new String(addr);
|
|
|
|
in.read();
|
|
|
|
in.read();
|
|
|
|
|
|
|
|
return digest;
|
|
|
|
}
|
|
|
|
|
|
|
|
private byte[] createOutgoingSocks5Message(int cmd, String digest) {
|
|
|
|
byte addr[] = digest.getBytes();
|
|
|
|
|
|
|
|
byte[] data = new byte[7 + addr.length];
|
|
|
|
data[0] = (byte) 5;
|
|
|
|
data[1] = (byte) cmd;
|
|
|
|
data[2] = (byte) 0;
|
|
|
|
data[3] = (byte) 0x3;
|
|
|
|
data[4] = (byte) addr.length;
|
|
|
|
|
|
|
|
System.arraycopy(addr, 0, data, 5, addr.length);
|
|
|
|
data[data.length - 2] = (byte) 0;
|
|
|
|
data[data.length - 1] = (byte) 0;
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2006-02-08 01:31:17 +01:00
|
|
|
public void cleanup() {
|
2006-07-05 19:45:59 +02:00
|
|
|
synchronized (processLock) {
|
|
|
|
if (proxyProcess != null) {
|
|
|
|
proxyProcess.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void cancel() {
|
2006-02-08 01:31:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private static class SelectedHostInfo {
|
2006-02-03 19:44:22 +01:00
|
|
|
|
|
|
|
protected XMPPException exception;
|
|
|
|
|
|
|
|
protected StreamHost selectedHost;
|
|
|
|
|
|
|
|
protected Socket establishedSocket;
|
|
|
|
|
|
|
|
SelectedHostInfo(StreamHost selectedHost, Socket establishedSocket) {
|
|
|
|
this.selectedHost = selectedHost;
|
|
|
|
this.establishedSocket = establishedSocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
public SelectedHostInfo() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class ProxyProcess implements Runnable {
|
|
|
|
|
2006-07-05 19:45:59 +02:00
|
|
|
private final ServerSocket listeningSocket;
|
2006-02-03 19:44:22 +01:00
|
|
|
|
2006-07-05 19:45:59 +02:00
|
|
|
private final Map connectionMap = new HashMap();
|
2006-02-03 19:44:22 +01:00
|
|
|
|
|
|
|
private boolean done = false;
|
|
|
|
|
|
|
|
private Thread thread;
|
|
|
|
private int transfers;
|
|
|
|
|
|
|
|
public void run() {
|
|
|
|
try {
|
2006-07-05 19:45:59 +02:00
|
|
|
try {
|
|
|
|
listeningSocket.setSoTimeout(10000);
|
|
|
|
}
|
|
|
|
catch (SocketException e) {
|
|
|
|
// There was a TCP error, lets print the stack trace
|
|
|
|
e.printStackTrace();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (!done) {
|
|
|
|
Socket conn = null;
|
|
|
|
synchronized (ProxyProcess.this) {
|
|
|
|
while (transfers <= 0 && !done) {
|
|
|
|
transfers = -1;
|
|
|
|
try {
|
|
|
|
ProxyProcess.this.wait();
|
|
|
|
}
|
|
|
|
catch (InterruptedException e) {
|
|
|
|
/* Do nothing */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(done) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
synchronized (listeningSocket) {
|
|
|
|
conn = listeningSocket.accept();
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
if (conn == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
String digest = establishSocks5UploadConnection(conn);
|
|
|
|
synchronized (connectionMap) {
|
|
|
|
connectionMap.put(digest, conn);
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
catch (SocketTimeoutException e) {
|
|
|
|
/* Do Nothing */
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
catch (IOException e) {
|
|
|
|
/* Do Nothing */
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
catch (XMPPException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
if (conn != null) {
|
|
|
|
try {
|
|
|
|
conn.close();
|
|
|
|
}
|
|
|
|
catch (IOException e1) {
|
|
|
|
/* Do Nothing */
|
|
|
|
}
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
}
|
|
|
|
finally {
|
|
|
|
try {
|
|
|
|
listeningSocket.close();
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
catch (IOException e) {
|
|
|
|
/* Do Nothing */
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void start() {
|
|
|
|
thread.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void stop() {
|
|
|
|
done = true;
|
2006-02-08 19:03:09 +01:00
|
|
|
synchronized (this) {
|
2006-02-08 01:31:17 +01:00
|
|
|
this.notify();
|
|
|
|
}
|
2006-07-05 19:45:59 +02:00
|
|
|
synchronized (listeningSocket) {
|
|
|
|
listeningSocket.notify();
|
|
|
|
}
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getPort() {
|
|
|
|
return listeningSocket.getLocalPort();
|
|
|
|
}
|
|
|
|
|
|
|
|
ProxyProcess(ServerSocket listeningSocket) {
|
|
|
|
thread = new Thread(this, "File Transfer Connection Listener");
|
|
|
|
this.listeningSocket = listeningSocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Socket getSocket(String digest) {
|
|
|
|
synchronized (connectionMap) {
|
|
|
|
return (Socket) connectionMap.get(digest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addTransfer() {
|
|
|
|
synchronized (this) {
|
|
|
|
if (transfers == -1) {
|
|
|
|
transfers = 1;
|
2006-02-08 19:03:09 +01:00
|
|
|
this.notify();
|
2006-02-03 19:44:22 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
transfers++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeTransfer() {
|
|
|
|
synchronized (this) {
|
|
|
|
transfers--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static class BytestreamSIDFilter implements PacketFilter {
|
|
|
|
|
|
|
|
private String sessionID;
|
|
|
|
|
|
|
|
public BytestreamSIDFilter(String sessionID) {
|
|
|
|
if (sessionID == null) {
|
|
|
|
throw new IllegalArgumentException("StreamID cannot be null");
|
|
|
|
}
|
|
|
|
this.sessionID = sessionID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean accept(Packet packet) {
|
|
|
|
if (!Bytestream.class.isInstance(packet)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Bytestream bytestream = (Bytestream) packet;
|
|
|
|
String sessionID = bytestream.getSessionID();
|
|
|
|
|
|
|
|
return (sessionID != null && sessionID.equals(this.sessionID));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|