src/java.base/share/classes/java/net/SocksSocketImpl.java
author michaelm
Thu, 24 Jan 2019 15:48:05 +0000
changeset 53473 9366628d727b
parent 52499 768b1c612100
child 54155 b5a73f22b2bd
child 57112 d7b54daf5e1a
permissions -rw-r--r--
8216986: Remove unused code from SocksSocketImpl Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31529
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
     2
 * Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5147
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.BufferedOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.AccessController;
50817
fa1e04811ff6 8066709: Make some JDK system properties read only
rriggs
parents: 47478
diff changeset
    31
fa1e04811ff6 8066709: Make some JDK system properties read only
rriggs
parents: 47478
diff changeset
    32
import jdk.internal.util.StaticProperty;
7982
65f5328a67a2 6964547: Impossible to set useV4 in SocksSocketImpl
chegar
parents: 7668
diff changeset
    33
import sun.net.SocksProxy;
31529
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    34
import sun.net.spi.DefaultProxySelector;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.net.www.ParseUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * SOCKS (V4 & V5) TCP socket implementation (RFC 1928).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * This is a subclass of PlainSocketImpl.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Note this class should <b>NOT</b> be public.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
class SocksSocketImpl extends PlainSocketImpl implements SocksConsts {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    private String server = null;
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
    45
    private int serverPort = DEFAULT_PORT;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private InetSocketAddress external_address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private boolean useV4 = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private Socket cmdsock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private InputStream cmdIn = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private OutputStream cmdOut = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    SocksSocketImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        // Nothing needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    SocksSocketImpl(Proxy proxy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        SocketAddress a = proxy.address();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        if (a instanceof InetSocketAddress) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            InetSocketAddress ad = (InetSocketAddress) a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            // Use getHostString() to avoid reverse lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            server = ad.getHostString();
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
    62
            serverPort = ad.getPort();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        }
31529
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    64
        useV4 = useV4(proxy);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
31529
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    67
    private static boolean useV4(Proxy proxy) {
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    68
        if (proxy instanceof SocksProxy
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    69
            && ((SocksProxy)proxy).protocolVersion() == 4) {
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    70
            return true;
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    71
        }
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    72
        return DefaultProxySelector.socksProxyVersion() == 4;
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    73
    }
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
    74
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private synchronized void privilegedConnect(final String host,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                                              final int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                              final int timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
         throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29112
diff changeset
    82
                new java.security.PrivilegedExceptionAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
    83
                    public Void run() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                              superConnectServer(host, port, timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                              cmdIn = getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                              cmdOut = getOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                              return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                      });
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        } catch (java.security.PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw (IOException) pae.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    private void superConnectServer(String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                                    int timeout) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        super.connect(new InetSocketAddress(host, port), timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   100
    private static int remainingMillis(long deadlineMillis) throws IOException {
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   101
        if (deadlineMillis == 0L)
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   102
            return 0;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   103
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   104
        final long remaining = deadlineMillis - System.currentTimeMillis();
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   105
        if (remaining > 0)
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   106
            return (int) remaining;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   107
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   108
        throw new SocketTimeoutException();
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   109
    }
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   110
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   111
    private int readSocksReply(InputStream in, byte[] data, long deadlineMillis) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        int len = data.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        int received = 0;
22276
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   114
        while (received < len) {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   115
            int count;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   116
            try {
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   117
                count = ((SocketInputStream)in).read(data, received, len - received, remainingMillis(deadlineMillis));
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   118
            } catch (SocketTimeoutException e) {
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   119
                throw new SocketTimeoutException("Connect timed out");
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   120
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            if (count < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                throw new SocketException("Malformed reply from SOCKS server");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            received += count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        return received;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   128
    private boolean authenticate(byte method, InputStream in,
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   129
                                 BufferedOutputStream out,
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   130
                                 long deadlineMillis) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        // No Authentication required. We're done then!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        if (method == NO_AUTH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            return true;
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 50817
diff changeset
   134
        /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
         * User/Password authentication. Try, in that order :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
         * - The application provided Authenticator, if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
         * - the user.name & no password (backward compatibility behavior).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        if (method == USER_PASSW) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            String userName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            String password = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            final InetAddress addr = InetAddress.getByName(server);
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   143
            PasswordAuthentication pw =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29112
diff changeset
   145
                    new java.security.PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   146
                        public PasswordAuthentication run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                                return Authenticator.requestPasswordAuthentication(
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   148
                                       server, addr, serverPort, "SOCKS5", "SOCKS authentication", null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            if (pw != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                userName = pw.getUserName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                password = new String(pw.getPassword());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            } else {
50817
fa1e04811ff6 8066709: Make some JDK system properties read only
rriggs
parents: 47478
diff changeset
   155
                userName = StaticProperty.userName();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            if (userName == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            out.write(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            out.write(userName.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                out.write(userName.getBytes("ISO-8859-1"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            } catch (java.io.UnsupportedEncodingException uee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            if (password != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                out.write(password.length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                    out.write(password.getBytes("ISO-8859-1"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                } catch (java.io.UnsupportedEncodingException uee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                    assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                out.write(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            out.flush();
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   176
            byte[] data = new byte[2];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   177
            int i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            if (i != 2 || data[1] != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                /* RFC 1929 specifies that the connection MUST be closed if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                   authentication fails */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                out.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            /* Authentication succeeded */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    private void connectV4(InputStream in, OutputStream out,
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   192
                           InetSocketAddress endpoint,
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   193
                           long deadlineMillis) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (!(endpoint.getAddress() instanceof Inet4Address)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            throw new SocketException("SOCKS V4 requires IPv4 only addresses");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        out.write(PROTO_VERS4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        out.write(CONNECT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        out.write((endpoint.getPort() >> 8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        out.write((endpoint.getPort() >> 0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        out.write(endpoint.getAddress().getAddress());
3450
2f08a8bb9b83 6801071: Remote sites can compromise user privacy and possibly hijack web sessions
chegar
parents: 715
diff changeset
   202
        String userName = getUserName();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            out.write(userName.getBytes("ISO-8859-1"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        } catch (java.io.UnsupportedEncodingException uee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        out.write(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        byte[] data = new byte[8];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   211
        int n = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (n != 8)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            throw new SocketException("Reply from SOCKS server has bad length: " + n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        if (data[0] != 0 && data[0] != 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            throw new SocketException("Reply from SOCKS server has bad version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        SocketException ex = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        switch (data[1]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        case 90:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            // Success!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            external_address = endpoint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        case 91:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            ex = new SocketException("SOCKS request rejected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        case 92:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            ex = new SocketException("SOCKS server couldn't reach destination");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        case 93:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            ex = new SocketException("SOCKS authentication failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            ex = new SocketException("Reply from SOCKS server contains bad status");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (ex != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            out.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            throw ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * Connects the Socks Socket to the specified endpoint. It will first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * connect to the SOCKS proxy and negotiate the access. If the proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * grants the connections, then the connect is successful and all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * further traffic will go to the "real" endpoint.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18212
diff changeset
   248
     * @param   endpoint        the {@code SocketAddress} to connect to.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @param   timeout         the timeout value in milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @throws  IOException     if the connection can't be established.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @throws  SecurityException if there is a security manager and it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     *                          doesn't allow the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @throws  IllegalArgumentException if endpoint is null or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *          SocketAddress subclass not supported by this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   256
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    protected void connect(SocketAddress endpoint, int timeout) throws IOException {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   258
        final long deadlineMillis;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   259
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   260
        if (timeout == 0) {
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   261
            deadlineMillis = 0L;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   262
        } else {
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   263
            long finish = System.currentTimeMillis() + timeout;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   264
            deadlineMillis = finish < 0 ? Long.MAX_VALUE : finish;
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   265
        }
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   266
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        if (endpoint == null || !(endpoint instanceof InetSocketAddress))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            throw new IllegalArgumentException("Unsupported address type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        InetSocketAddress epoint = (InetSocketAddress) endpoint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
            if (epoint.isUnresolved())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                security.checkConnect(epoint.getHostName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                                      epoint.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                security.checkConnect(epoint.getAddress().getHostAddress(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                                      epoint.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        if (server == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            // This is the general case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            // server is not null only when the socket was created with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            // specified proxy in which case it does bypass the ProxySelector
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   283
            ProxySelector sel = java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29112
diff changeset
   284
                new java.security.PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   285
                    public ProxySelector run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                            return ProxySelector.getDefault();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            if (sel == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                 * No default proxySelector --> direct connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                 */
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   293
                super.connect(epoint, remainingMillis(deadlineMillis));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            }
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   296
            URI uri;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            // Use getHostString() to avoid reverse lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            String host = epoint.getHostString();
52499
768b1c612100 8213490: Networking area typos and inconsistencies cleanup
prappo
parents: 50817
diff changeset
   299
            // IPv6 literal?
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            if (epoint.getAddress() instanceof Inet6Address &&
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 22276
diff changeset
   301
                (!host.startsWith("[")) && (host.indexOf(':') >= 0)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                host = "[" + host + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                uri = new URI("socket://" + ParseUtil.encodePath(host) + ":"+ epoint.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            } catch (URISyntaxException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                // This shouldn't happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                assert false : e;
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   309
                uri = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            Proxy p = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            IOException savedExc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            java.util.Iterator<Proxy> iProxy = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            iProxy = sel.select(uri).iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            if (iProxy == null || !(iProxy.hasNext())) {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   316
                super.connect(epoint, remainingMillis(deadlineMillis));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            while (iProxy.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                p = iProxy.next();
29112
df7e4edb6566 7178362: Socket impls should ignore unsupported proxy types rather than throwing
coffeys
parents: 25859
diff changeset
   321
                if (p == null || p.type() != Proxy.Type.SOCKS) {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   322
                    super.connect(epoint, remainingMillis(deadlineMillis));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                }
29112
df7e4edb6566 7178362: Socket impls should ignore unsupported proxy types rather than throwing
coffeys
parents: 25859
diff changeset
   325
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                if (!(p.address() instanceof InetSocketAddress))
29112
df7e4edb6566 7178362: Socket impls should ignore unsupported proxy types rather than throwing
coffeys
parents: 25859
diff changeset
   327
                    throw new SocketException("Unknown address type for proxy: " + p);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                // Use getHostString() to avoid reverse lookups
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                server = ((InetSocketAddress) p.address()).getHostString();
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   330
                serverPort = ((InetSocketAddress) p.address()).getPort();
31529
31d7d82b39ff 8129444: socksProxyVersion system property ignored for Socket(Proxy)
asmotrak
parents: 29986
diff changeset
   331
                useV4 = useV4(p);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                // Connects to the SOCKS server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                try {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   335
                    privilegedConnect(server, serverPort, remainingMillis(deadlineMillis));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                    // Worked, let's get outta here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    // Ooops, let's notify the ProxySelector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    sel.connectFailed(uri,p.address(),e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                    server = null;
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   342
                    serverPort = -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                    savedExc = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    // Will continue the while loop and try the next proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
             * If server is still null at this point, none of the proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
             * worked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            if (server == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                throw new SocketException("Can't connect to SOCKS proxy:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                                          + savedExc.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            // Connects to the SOCKS server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            try {
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   359
                privilegedConnect(server, serverPort, remainingMillis(deadlineMillis));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                throw new SocketException(e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 19069
diff changeset
   365
        // cmdIn & cmdOut were initialized during the privilegedConnect() call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        BufferedOutputStream out = new BufferedOutputStream(cmdOut, 512);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        InputStream in = cmdIn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        if (useV4) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
            // SOCKS Protocol version 4 doesn't know how to deal with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            // DOMAIN type of addresses (unresolved addresses here)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            if (epoint.isUnresolved())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                throw new UnknownHostException(epoint.toString());
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   374
            connectV4(in, out, epoint, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        // This is SOCKS V5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        out.write(PROTO_VERS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        out.write(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        out.write(NO_AUTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        out.write(USER_PASSW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        byte[] data = new byte[2];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   385
        int i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        if (i != 2 || ((int)data[0]) != PROTO_VERS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            // Maybe it's not a V5 sever after all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            // Let's try V4 before we give up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            // SOCKS Protocol version 4 doesn't know how to deal with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
            // DOMAIN type of addresses (unresolved addresses here)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            if (epoint.isUnresolved())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                throw new UnknownHostException(epoint.toString());
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   393
            connectV4(in, out, epoint, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        if (((int)data[1]) == NO_METHODS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            throw new SocketException("SOCKS : No acceptable methods");
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   398
        if (!authenticate(data[1], in, out, deadlineMillis)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            throw new SocketException("SOCKS : authentication failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        out.write(PROTO_VERS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        out.write(CONNECT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        out.write(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        /* Test for IPV4/IPV6/Unresolved */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        if (epoint.isUnresolved()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            out.write(DOMAIN_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            out.write(epoint.getHostName().length());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                out.write(epoint.getHostName().getBytes("ISO-8859-1"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            } catch (java.io.UnsupportedEncodingException uee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            out.write((epoint.getPort() >> 8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            out.write((epoint.getPort() >> 0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        } else if (epoint.getAddress() instanceof Inet6Address) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            out.write(IPV6);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            out.write(epoint.getAddress().getAddress());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
            out.write((epoint.getPort() >> 8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            out.write((epoint.getPort() >> 0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            out.write(IPV4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            out.write(epoint.getAddress().getAddress());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            out.write((epoint.getPort() >> 8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            out.write((epoint.getPort() >> 0) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        out.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        data = new byte[4];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   428
        i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        if (i != 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            throw new SocketException("Reply from SOCKS server has bad length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        SocketException ex = null;
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   432
        int len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        byte[] addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        switch (data[1]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        case REQUEST_OK:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            // success!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
            switch(data[3]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            case IPV4:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
                addr = new byte[4];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   440
                i = readSocksReply(in, addr, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                if (i != 4)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                data = new byte[2];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   444
                i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                if (i != 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            case DOMAIN_NAME:
22276
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   449
                byte[] lenByte = new byte[1];
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   450
                i = readSocksReply(in, lenByte, deadlineMillis);
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   451
                if (i != 1)
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   452
                    throw new SocketException("Reply from SOCKS server badly formatted");
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   453
                len = lenByte[0] & 0xFF;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
                byte[] host = new byte[len];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   455
                i = readSocksReply(in, host, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                if (i != len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                data = new byte[2];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   459
                i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                if (i != 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            case IPV6:
22276
7fc4c8b08e49 7100957: SOCKS proxying does not work with IPv6 connections
chegar
parents: 21278
diff changeset
   464
                len = 16;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                addr = new byte[len];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   466
                i = readSocksReply(in, addr, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                if (i != len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                data = new byte[2];
5147
96642e83ad41 6223635: Code hangs at connect call even when Timeout is specified when using a socks proxy
chegar
parents: 3464
diff changeset
   470
                i = readSocksReply(in, data, deadlineMillis);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                if (i != 2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                    throw new SocketException("Reply from SOCKS server badly formatted");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                ex = new SocketException("Reply from SOCKS server contains wrong code");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        case GENERAL_FAILURE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            ex = new SocketException("SOCKS server general failure");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        case NOT_ALLOWED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
            ex = new SocketException("SOCKS: Connection not allowed by ruleset");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        case NET_UNREACHABLE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            ex = new SocketException("SOCKS: Network unreachable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        case HOST_UNREACHABLE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            ex = new SocketException("SOCKS: Host unreachable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        case CONN_REFUSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            ex = new SocketException("SOCKS: Connection refused");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        case TTL_EXPIRED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            ex =  new SocketException("SOCKS: TTL expired");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        case CMD_NOT_SUPPORTED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            ex = new SocketException("SOCKS: Command not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        case ADDR_TYPE_NOT_SUP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            ex = new SocketException("SOCKS: address type not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        if (ex != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            out.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            throw ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        external_address = epoint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18212
diff changeset
   515
     * Returns the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18212
diff changeset
   517
     * @return  the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @see     java.net.SocketImpl#address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     */
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   520
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    protected InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        if (external_address != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            return external_address.getAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            return super.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18212
diff changeset
   529
     * Returns the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18212
diff changeset
   531
     * @return  the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * @see     java.net.SocketImpl#port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     */
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   534
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    protected int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        if (external_address != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            return external_address.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            return super.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
3051
9481bd560a57 6852108: Remove Preferences dependance from SocksSocketImpl
jccollet
parents: 715
diff changeset
   542
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    protected void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        if (cmdsock != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
            cmdsock.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        cmdsock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        super.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
3450
2f08a8bb9b83 6801071: Remote sites can compromise user privacy and possibly hijack web sessions
chegar
parents: 715
diff changeset
   550
    private String getUserName() {
53473
9366628d727b 8216986: Remove unused code from SocksSocketImpl
michaelm
parents: 52499
diff changeset
   551
        return StaticProperty.userName();
3450
2f08a8bb9b83 6801071: Remote sites can compromise user privacy and possibly hijack web sessions
chegar
parents: 715
diff changeset
   552
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
}