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 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
/*
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4720715
* @summary FTP with user and password doesn't work through proxy
*/
import java.io.*;
import java.net.*;
import java.util.regex.*;
/*
* The goal here is to simulate a simplified (a lot) HTTP proxy server to see
* what kind of URL is passed down the line by the URLConnection.
* In particular, we want to make sure no information is lost (like username
* and password).
*/
public class ProxyTest {
/*
* Proxy server as an innerclass. Has to run in a separate thread
*/
private class HttpProxyServer extends Thread {
private ServerSocket server;
private int port;
private volatile boolean done = false;
private String askedUrl;
/**
* This Inner class will handle ONE client at a time.
* That's where 99% of the protocol handling is done.
*/
private class HttpProxyHandler extends Thread {
BufferedReader in;
PrintWriter out;
Socket client;
public HttpProxyHandler(Socket cl) {
client = cl;
}
public void run() {
boolean done = false;
try {
in = new BufferedReader(new InputStreamReader(client.getInputStream()));
out = new PrintWriter(client.getOutputStream(), true);
} catch (Exception ex) {
return;
}
/*
* Look for the actual GET request and extract the URL
* A regex should do the trick.
*/
Pattern p = Pattern.compile("^GET (.*) HTTP/1\\.1");
while (!done) {
try {
String str = in.readLine();
Matcher m = p.matcher(str);
if (m.find())
askedUrl = m.group(1);
if ("".equals(str))
done = true;
} catch (IOException ioe) {
ioe.printStackTrace();
try {
out.close();
} catch (Exception ex2) {
}
done = true;
}
}
/*
* sends back a 'dummy' document for completness sake.
*/
out.println("HTTP/1.0 200 OK");
out.println("Server: Squid/2.4.STABLE6");
out.println("Mime-Version: 1.0");
out.println("Date: Fri, 26 Jul 2002 17:56:00 GMT");
out.println("Content-Type: text/html");
out.println("Last-Modified: Fri, 26 Jul 2002 01:49:57 GMT");
out.println("Age: 168");
out.println("X-Cache: HIT from javinator");
out.println("Proxy-Connection: close");
out.println();
out.println("<!doctype html public \"-//w3c//dtd html 4.0 transitional//en\">");
out.println("<html>");
out.println("<head>");
out.println("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
out.println("<TITLE>Hoth Downloads</TITLE>");
out.println("</head>");
out.println("<body background=\"/images/background.gif\">");
out.println("<center>");
out.println("<h1>");
out.println("<b>Hoth Downloads</b></h1></center>");
out.println("</body>");
out.println("</html>");
out.flush();
out.close();
}
}
public HttpProxyServer() throws IOException {
server = new ServerSocket(0);
}
public int getPort() {
if (server != null)
return server.getLocalPort();
return 0;
}
public String getURL() {
return askedUrl;
}
/**
* A way to tell the server that it can stop.
*/
synchronized public void terminate() {
done = true;
try { server.close(); } catch (IOException unused) {}
}
public void run() {
try {
Socket client;
while (!done) {
client = server.accept();
(new HttpProxyHandler(client)).start();
}
} catch (Exception e) {
} finally {
try { server.close(); } catch (IOException unused) {}
}
}
}
private static boolean hasFtp() {
try {
return new java.net.URL("ftp://") != null;
} catch (java.net.MalformedURLException x) {
System.out.println("FTP not supported by this runtime.");
return false;
}
}
public static void main(String[] args) throws Exception {
if (hasFtp())
new ProxyTest();
}
public ProxyTest() throws Exception {
BufferedReader in = null;
String testURL = "ftp://anonymous:password@myhost.mydomain/index.html";
HttpProxyServer server = new HttpProxyServer();
try {
server.start();
int port = server.getPort();
Proxy ftpProxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("localhost", port));
URL url = new URL(testURL);
InputStream ins = (url.openConnection(ftpProxy)).getInputStream();
in = new BufferedReader(new InputStreamReader(ins));
String line;
do {
line = in.readLine();
} while (line != null);
in.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
server.terminate();
try { in.close(); } catch (IOException unused) {}
}
/*
* If the URLs don't match, we've got a bug!
*/
if (!testURL.equals(server.getURL())) {
throw new RuntimeException(server.getURL() + " != " + testURL);
}
}
}
|