Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/URLConnection/HttpContinueStackOverflow.java
41149 views
1
/*
2
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/* @test
25
* @bug 4258697
26
* @library /test/lib
27
* @summary Make sure that http CONTINUE status followed by invalid
28
* response doesn't cause HttpClient to recursively loop and
29
* eventually StackOverflow.
30
*
31
*/
32
import java.io.BufferedReader;
33
import java.io.InputStreamReader;
34
import java.io.IOException;
35
import java.io.PrintStream;
36
import java.net.InetAddress;
37
import java.net.ServerSocket;
38
import java.net.Socket;
39
import java.net.URL;
40
import java.net.HttpURLConnection;
41
import jdk.test.lib.net.URIBuilder;
42
import static java.net.Proxy.NO_PROXY;
43
44
public class HttpContinueStackOverflow {
45
46
static class Server implements Runnable {
47
ServerSocket serverSock ;
48
49
Server() throws IOException {
50
serverSock = new ServerSocket(0, 0, InetAddress.getLoopbackAddress());
51
}
52
53
int getLocalPort() {
54
return serverSock.getLocalPort();
55
}
56
57
public void run() {
58
Socket sock = null;
59
try {
60
serverSock.setSoTimeout(10000);
61
sock = serverSock.accept();
62
63
/* setup streams and read http request */
64
BufferedReader in = new BufferedReader(
65
new InputStreamReader(sock.getInputStream()));
66
PrintStream out = new PrintStream( sock.getOutputStream() );
67
in.readLine();
68
69
/* send continue followed by invalid response */
70
out.println("HTTP/1.1 100 Continue\r");
71
out.println("\r");
72
out.println("junk junk junk");
73
out.flush();
74
} catch (Exception e) {
75
e.printStackTrace();
76
} finally {
77
try { serverSock.close(); } catch (IOException unused) {}
78
try { sock.close(); } catch (IOException unused) {}
79
}
80
}
81
}
82
83
HttpContinueStackOverflow() throws Exception {
84
/* create the server */
85
Server s = new Server();
86
(new Thread(s)).start();
87
88
/* connect to server and get response code */
89
URL url = URIBuilder.newBuilder()
90
.scheme("http")
91
.loopback()
92
.port(s.getLocalPort())
93
.path("/anything.html")
94
.toURL();
95
96
HttpURLConnection conn = (HttpURLConnection)url.openConnection(NO_PROXY);
97
conn.getResponseCode();
98
System.out.println("TEST PASSED");
99
}
100
101
public static void main(String args[]) throws Exception {
102
System.out.println("Testing 100-Continue");
103
new HttpContinueStackOverflow();
104
}
105
}
106
107