1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package IceInternal;
public final class SOCKSNetworkProxy implements NetworkProxy
{
public SOCKSNetworkProxy(String host, int port)
{
_host = host;
_port = port;
}
private SOCKSNetworkProxy(java.net.InetSocketAddress address)
{
_address = address;
}
@Override
public void beginWrite(java.net.InetSocketAddress endpoint, Buffer buf)
{
final java.net.InetAddress addr = endpoint.getAddress();
if(addr == null)
{
throw new Ice.FeatureNotSupportedException("SOCKS4 does not support domain names");
}
else if(!(addr instanceof java.net.Inet4Address))
{
throw new Ice.FeatureNotSupportedException("SOCKS4 only supports IPv4 addresses");
}
//
// SOCKS connect request
//
buf.resize(9, false);
final java.nio.ByteOrder order = buf.b.order();
buf.b.order(java.nio.ByteOrder.BIG_ENDIAN); // Network byte order.
buf.b.position(0);
buf.b.put((byte)0x04); // SOCKS version 4.
buf.b.put((byte)0x01); // Command, establish a TCP/IP stream connection
buf.b.putShort((short)endpoint.getPort()); // Port
buf.b.put(addr.getAddress()); // IPv4 address
buf.b.put((byte)0x00); // User ID.
buf.b.position(0);
buf.b.limit(buf.size());
buf.b.order(order);
}
@Override
public int endWrite(Buffer buf)
{
// Once the request is sent, read the response
return buf.b.hasRemaining() ? SocketOperation.Write : SocketOperation.Read;
}
@Override
public void beginRead(Buffer buf)
{
//
// Read the SOCKS4 response whose size is 8 bytes.
//
if(!buf.b.hasRemaining())
{
buf.resize(8, true);
buf.b.position(0);
}
}
@Override
public int endRead(Buffer buf)
{
// We're done once we read the response
return buf.b.hasRemaining() ? SocketOperation.Read : SocketOperation.None;
}
@Override
public void finish(Buffer readBuffer, Buffer writeBuffer)
{
readBuffer.b.position(0);
byte b1 = readBuffer.b.get();
byte b2 = readBuffer.b.get();
if(b1 != 0x00 || b2 != 0x5a)
{
throw new Ice.ConnectFailedException();
}
}
@Override
public NetworkProxy resolveHost(int protocolSupport)
{
assert(_host != null);
return new SOCKSNetworkProxy(Network.getAddresses(_host,
_port,
protocolSupport,
Ice.EndpointSelectionType.Random,
false,
true).get(0));
}
@Override
public java.net.InetSocketAddress getAddress()
{
assert(_address != null); // Host must be resolved.
return _address;
}
@Override
public String getName()
{
return "SOCKS";
}
@Override
public int getProtocolSupport()
{
return Network.EnableIPv4;
}
private String _host;
private int _port;
private java.net.InetSocketAddress _address;
}
|