Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JDK-8061729 : Update java/net tests to eliminate dependency on sun.net.www.MessageHeader and some other internal APIs #5937

Closed
wants to merge 6 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions test/jdk/sun/net/www/http/HttpClient/ProxyFromCache.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2022, 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
@@ -25,14 +25,22 @@
* @test
* @bug 6498566
* @summary URL.openConnection(Proxy.NO_PROXY) may connect through a proxy.
* @modules java.base/sun.net.www
* @library /test/lib
* @run main/othervm ProxyFromCache
*/

import java.net.*;
import java.io.*;
import sun.net.www.MessageHeader;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.URL;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;

/* Creates a simple proxy and http server that just return 200 OK.
@@ -135,15 +143,12 @@ public void run() {
connectionCount++;
InputStream is = sock.getInputStream();
OutputStream os = sock.getOutputStream();

MessageHeader headers = new MessageHeader (is);
HttpHeaderParser httpHeaderParser = new HttpHeaderParser(is);
os.write(replyOK.getBytes("UTF-8"));

headers = new MessageHeader (is);
httpHeaderParser = new HttpHeaderParser(is);
// If we get here then we received a second request.
connectionCount++;
os.write(replyOK.getBytes("UTF-8"));

sock.close();
} catch (Exception e) {
//e.printStackTrace();
11 changes: 6 additions & 5 deletions test/jdk/sun/net/www/http/HttpClient/RequestURI.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2022, 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
@@ -25,13 +25,14 @@
* @test
* @bug 6469663
* @summary HTTP Request-URI contains fragment when connecting through proxy
* @modules java.base/sun.net.www
* @library /test/lib
* @run main/othervm RequestURI
*/

import java.net.*;
import java.io.*;
import sun.net.www.MessageHeader;

import jdk.test.lib.net.HttpHeaderParser;

// Create a Server listening on port 5001 to act as the proxy. Requests
// never need to be forwared from it. We are only interested in the
@@ -91,8 +92,8 @@ public void run() {
InputStream is = sock.getInputStream();
OutputStream os = sock.getOutputStream();

MessageHeader headers = new MessageHeader (is);
String requestLine = headers.getValue(0);
HttpHeaderParser headers = new HttpHeaderParser (is);
String requestLine = headers.getRequestDetails();

int first = requestLine.indexOf(' ');
int second = requestLine.lastIndexOf(' ');
32 changes: 22 additions & 10 deletions test/jdk/sun/net/www/protocol/http/CloseOptionHeader.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2004, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2004, 2022, 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
@@ -24,16 +24,23 @@
/**
* @test
* @bug 6189206
* @modules java.base/sun.net.www
* @library /test/lib
* @run main/othervm -Dhttp.keepAlive=false CloseOptionHeader
* @summary HTTP client should set "Connection: close" header in request when keepalive is disabled
*/

import java.net.*;
import java.util.*;
import java.io.*;
import sun.net.www.MessageHeader;
import java.io.BufferedOutputStream;
import java.io.InputStream;
import java.io.PrintStream;
import java.net.HttpURLConnection;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.URL;
import java.util.List;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;

public class CloseOptionHeader implements Runnable {
@@ -49,10 +56,15 @@ public void run() {

/* check the request to find close connection option header */
InputStream is = s.getInputStream ();
MessageHeader mh = new MessageHeader(is);
String connHeader = mh.findValue("Connection");
if (connHeader != null && connHeader.equalsIgnoreCase("close")) {
hasCloseHeader = true;
HttpHeaderParser mh = new HttpHeaderParser(is);
List <String> connHeader = mh.getHeaderValue("Connection");
if (connHeader != null) {
for(String value : connHeader) {
if (value.equalsIgnoreCase("close")) {
hasCloseHeader = true;
break;
}
}
}

PrintStream out = new PrintStream(
498 changes: 498 additions & 0 deletions test/jdk/sun/net/www/protocol/http/HttpHeaderParserTest.java

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions test/jdk/sun/net/www/protocol/http/NTLMTest.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2007, 2022, 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
@@ -24,15 +24,15 @@
/*
* @test
* @bug 6520665 6357133
* @modules java.base/sun.net.www
* @library /test/lib
* @run main/othervm NTLMTest
* @summary 6520665 & 6357133: NTLM authentication issues.
*/

import java.net.*;
import java.io.*;
import sun.net.www.MessageHeader;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;

public class NTLMTest
@@ -160,7 +160,7 @@ static void handleConnection(Socket s, String[] resp, int start, int end) {
OutputStream os = s.getOutputStream();

for (int i=start; i<end; i++) {
MessageHeader header = new MessageHeader (s.getInputStream());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change introduces a subtle behaviour difference in the test that may result in spurious "Connection Reset" exception. I would prefer if the existing logic was kept - and the test continued parsing the request headers before writing to the output.

HttpHeaderParser httpHeaderParser = new HttpHeaderParser(s.getInputStream());
//System.out.println("Input :" + header);
//System.out.println("Output:" + resp[i]);
os.write(resp[i].getBytes("ASCII"));
18 changes: 9 additions & 9 deletions test/jdk/sun/net/www/protocol/http/NoNTLM.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2022, 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
@@ -26,8 +26,7 @@
* @library /test/lib
* @summary Sanity check that NTLM will not be selected by the http protocol
* handler when running on a profile that does not support NTLM
* @modules java.base/sun.net.www
* java.base/sun.net.www.protocol.http:open
* @modules java.base/sun.net.www.protocol.http:open
* @run main/othervm NoNTLM
* @run main/othervm -Djava.net.preferIPv6Addresses=true NoNTLM
*/
@@ -42,8 +41,9 @@
import java.net.ServerSocket;
import java.net.Socket;
import java.net.URL;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;
import sun.net.www.MessageHeader;

public class NoNTLM {

@@ -163,18 +163,18 @@ static void test(String... schemes) throws IOException {
// client ---- GET ---> server
// client <--- 401 ---- server
try (Socket s = ss.accept()) {
new MessageHeader().parseHeader(s.getInputStream());
new HttpHeaderParser().parse(s.getInputStream());
s.getOutputStream().write(reply.getBytes("US-ASCII"));
}

// client ---- GET ---> server
// client <--- 200 ---- server
String auth;
try (Socket s = ss.accept()) {
MessageHeader mh = new MessageHeader();
mh.parseHeader(s.getInputStream());
HttpHeaderParser mh = new HttpHeaderParser();
mh.parse(s.getInputStream());
s.getOutputStream().write(OKAY.getBytes("US-ASCII"));
auth = mh.findValue("Authorization");
auth = mh.getHeaderValue("Authorization").get(0);
}

// check Authorization header
@@ -208,7 +208,7 @@ static void testNTLM() throws Exception {
// client ---- GET ---> server
// client <--- 401 ---- client
try (Socket s = ss.accept()) {
new MessageHeader().parseHeader(s.getInputStream());
new HttpHeaderParser().parse(s.getInputStream());
s.getOutputStream().write(reply.getBytes("US-ASCII"));
}

8 changes: 4 additions & 4 deletions test/jdk/sun/net/www/protocol/http/RetryUponTimeout.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 2022, 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
@@ -26,13 +26,13 @@
* @bug 4772077
* @library /test/lib
* @summary using defaultReadTimeout appear to retry request upon timeout
* @modules java.base/sun.net.www
*/

import java.net.*;
import java.io.*;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;
import sun.net.www.*;

public class RetryUponTimeout implements Runnable {
// run server
@@ -42,7 +42,7 @@ public void run(){
for (int i = 0; i < 2; i++) {
socket = server.accept();
InputStream is = socket.getInputStream ();
MessageHeader header = new MessageHeader (is);
HttpHeaderParser header = new HttpHeaderParser (is);
count++;
}
} catch (Exception ex) {
10 changes: 5 additions & 5 deletions test/jdk/sun/net/www/protocol/http/UserAgent.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 2022, 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
@@ -25,7 +25,6 @@
* @test
* @bug 4512200
* @library /test/lib
* @modules java.base/sun.net.www
* @run main/othervm -Dhttp.agent=foo UserAgent
* @run main/othervm -Dhttp.agent=foo -Djava.net.preferIPv6Addresses=true UserAgent
* @summary HTTP header "User-Agent" format incorrect
@@ -34,8 +33,9 @@
import java.io.*;
import java.util.*;
import java.net.*;

import jdk.test.lib.net.HttpHeaderParser;
import jdk.test.lib.net.URIBuilder;
import sun.net.www.MessageHeader;

class Server extends Thread {
Server (ServerSocket server) {
@@ -46,8 +46,8 @@ public void run () {
String version = System.getProperty ("java.version");
String expected = "foo Java/"+version;
Socket s = server.accept ();
MessageHeader header = new MessageHeader (s.getInputStream());
String v = header.findValue ("User-Agent");
HttpHeaderParser header = new HttpHeaderParser (s.getInputStream());
String v = header.getHeaderValue ("User-Agent").get(0);
if (!expected.equals (v)) {
error ("Got unexpected User-Agent: " + v);
} else {
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2022, 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
@@ -25,7 +25,7 @@
* @test
* @bug 6226610 6973030
* @summary HTTP tunnel connections send user headers to proxy
* @modules java.base/sun.net.www
* @library /test/lib
* @run main/othervm B6226610
*/

@@ -37,7 +37,9 @@

import java.io.*;
import java.net.*;
import sun.net.www.MessageHeader;

import jdk.test.lib.net.HttpHeaderParser;


public class B6226610 {
static HeaderCheckerProxyTunnelServer proxy;
@@ -138,21 +140,21 @@ public int getLocalPort() {
private void processRequests() throws IOException
{
InputStream in = clientSocket.getInputStream();
MessageHeader mheader = new MessageHeader(in);
String statusLine = mheader.getValue(0);
HttpHeaderParser mheader = new HttpHeaderParser(in);
String statusLine = mheader.getRequestDetails();

if (statusLine.startsWith("CONNECT")) {
// retrieve the host and port info from the status-line
retrieveConnectInfo(statusLine);

if (mheader.findValue("X-TestHeader") != null) {
if (mheader.getHeaderValue("X-TestHeader") != null) {
System.out.println("Proxy should not receive user defined headers for tunneled requests");
failed = true;
}

// 6973030
String value;
if ((value = mheader.findValue("Proxy-Connection")) == null ||
if ((value = mheader.getHeaderValue("Proxy-Connection").get(0)) == null ||
!value.equals("keep-alive")) {
System.out.println("Proxy-Connection:keep-alive not being sent");
failed = true;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2022, 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
@@ -45,7 +45,8 @@
import java.util.Iterator;
import java.util.Set;

import sun.net.www.MessageHeader;
import jdk.test.lib.net.HttpHeaderParser;


public class TunnelProxy {

@@ -261,7 +262,7 @@ private boolean read (SocketChannel chan, SelectionKey key) {
try {
InputStream is = new BufferedInputStream (new NioInputStream (chan));
String requestline = readLine (is);
MessageHeader mhead = new MessageHeader (is);
HttpHeaderParser mhead = new HttpHeaderParser (is);
String[] req = requestline.split (" ");
if (req.length < 2) {
/* invalid request line */
390 changes: 390 additions & 0 deletions test/lib/jdk/test/lib/net/HttpHeaderParser.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,390 @@
/*
* Copyright (c) 2022, 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.
*/

package jdk.test.lib.net;

import java.io.IOException;
import java.io.InputStream;
import java.net.ProtocolException;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import static java.util.Objects.requireNonNull;

public class HttpHeaderParser {
private static final char CR = '\r';
private static final char LF = '\n';
private static final char HT = '\t';
private static final char SP = ' ';
// ABNF primitives defined in RFC 7230
private static boolean[] tchar = new boolean[256];
private static boolean[] fieldvchar = new boolean[256];

static {
char[] allowedTokenChars =
("!#$%&'*+-.^_`|~0123456789" +
"abcdefghijklmnopqrstuvwxyz" +
"ABCDEFGHIJKLMNOPQRSTUVWXYZ").toCharArray();
for (char c : allowedTokenChars) {
tchar[c] = true;
}
for (char c = 0x21; c <= 0xFF; c++) {
fieldvchar[c] = true;
}
fieldvchar[0x7F] = false; // a little hole (DEL) in the range
}

private StringBuilder sb = new StringBuilder();

private Map <String, List<String>> headerMap = new LinkedHashMap<>();
private List <String> keyList = new ArrayList<>();
private String requestOrStatusLine;
private int responseCode;
private boolean eof;



enum State { INITIAL,
STATUS_OR_REQUEST_LINE,
STATUS_OR_REQUEST_LINE_FOUND_CR,
STATUS_OR_REQUEST_LINE_FOUND_LF,
STATUS_OR_REQUEST_LINE_END,
STATUS_OR_REQUEST_LINE_END_CR,
STATUS_OR_REQUEST_LINE_END_LF,
HEADER,
HEADER_FOUND_CR,
HEADER_FOUND_LF,
HEADER_FOUND_CR_LF,
HEADER_FOUND_CR_LF_CR,
FINISHED }

private HttpHeaderParser.State state = HttpHeaderParser.State.INITIAL;

public HttpHeaderParser() {
}


public HttpHeaderParser(InputStream is) throws IOException, ProtocolException {
parse(is);
}

public Map<String, List<String>> getHeaderMap() {
return headerMap;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still missing code to handle continuation lines.


public List<String> getHeaderValue(String key) {
if(headerMap.containsKey(key.toLowerCase(Locale.ROOT))) {
return headerMap.get(key.toLowerCase(Locale.ROOT));
}
return null;
}
public List<String> getValue(int id) {
String key = keyList.get(id);
return headerMap.get(key);
}

public String getRequestDetails() {
return requestOrStatusLine;
}

/**
* Parses HTTP/1.X status-line or request-line and headers from the given input stream.
* @param input Containing the input stream of bytes representing request or response header data
* @return true if the end of the headers block has been reached
*/
public boolean parse(InputStream input) throws IOException {
requireNonNull(input, "null input");
while (canContinueParsing()) {
switch (state) {
case INITIAL -> state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE;
case STATUS_OR_REQUEST_LINE -> readResumeStatusLine(input);
case STATUS_OR_REQUEST_LINE_FOUND_CR, STATUS_OR_REQUEST_LINE_FOUND_LF -> readStatusLineFeed(input);
case STATUS_OR_REQUEST_LINE_END -> maybeStartHeaders(input);
case STATUS_OR_REQUEST_LINE_END_CR, STATUS_OR_REQUEST_LINE_END_LF -> maybeEndHeaders(input);
case HEADER -> readResumeHeader(input);
case HEADER_FOUND_CR, HEADER_FOUND_LF -> resumeOrLF(input);
case HEADER_FOUND_CR_LF -> resumeOrSecondCR(input);
case HEADER_FOUND_CR_LF_CR -> resumeOrEndHeaders(input);
default -> throw new InternalError("Unexpected state: " + state);
}
}
return state == HttpHeaderParser.State.FINISHED;
}

private boolean canContinueParsing() {
// some states don't require any input to transition
// to the next state.
return switch (state) {
case FINISHED -> false;
case STATUS_OR_REQUEST_LINE_FOUND_LF, STATUS_OR_REQUEST_LINE_END_LF, HEADER_FOUND_LF -> true;
default -> !eof;
};
}

/**
* Returns a character (char) corresponding to the next byte in the
* input, interpreted as an ISO-8859-1 encoded character.
* <p>
* The ISO-8859-1 encoding is a 8-bit character coding that
* corresponds to the first 256 Unicode characters - from U+0000 to
* U+00FF. UTF-16 is backward compatible with ISO-8859-1 - which
* means each byte in the input should be interpreted as an unsigned
* value from [0, 255] representing the character code.
*
* @param input a {@code InputStream} containing input stream of Bytes.
* @return the next byte in the input, interpreted as an ISO-8859-1
* encoded char
* @throws IOException
* if an I/O error occurs.
*/
private char get(InputStream input) throws IOException {
int c = input.read();
if(c < 0)
eof = true;
return (char)(c & 0xFF);
}

private void readResumeStatusLine(InputStream input) throws IOException {
char c;
while ((c = get(input)) != CR && !eof) {
if (c == LF) break;
sb.append(c);
}
if (c == CR) {
state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_FOUND_CR;
} else if (c == LF) {
state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_FOUND_LF;
}
}

private void readStatusLineFeed(InputStream input) throws IOException {
char c = state == HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_FOUND_LF ? LF : get(input);
if (c != LF) {
throw protocolException("Bad trailing char, \"%s\", when parsing status line, \"%s\"",
c, sb.toString());
}
requestOrStatusLine = sb.toString();
sb = new StringBuilder();
if (!requestOrStatusLine.startsWith("HTTP/1.")) {
if(!requestOrStatusLine.startsWith("GET") && !requestOrStatusLine.startsWith("POST") &&
!requestOrStatusLine.startsWith("PUT") && !requestOrStatusLine.startsWith("DELETE") &&
!requestOrStatusLine.startsWith("OPTIONS") && !requestOrStatusLine.startsWith("HEAD") &&
!requestOrStatusLine.startsWith("PATCH") && !requestOrStatusLine.startsWith("CONNECT")) {
throw protocolException("Invalid request Or Status line: \"%s\"", requestOrStatusLine);
} else { //This is request
System.out.println("Request is :"+requestOrStatusLine);
}
} else { //This is response
if (requestOrStatusLine.length() < 12) {
throw protocolException("Invalid status line: \"%s\"", requestOrStatusLine);
}
try {
responseCode = Integer.parseInt(requestOrStatusLine.substring(9, 12));
} catch (NumberFormatException nfe) {
throw protocolException("Invalid status line: \"%s\"", requestOrStatusLine);
}
// response code expected to be a 3-digit integer (RFC-2616, section 6.1.1)
if (responseCode < 100) {
throw protocolException("Invalid status line: \"%s\"", requestOrStatusLine);
}
}
state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END;
}

private void maybeStartHeaders(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END;
assert sb.length() == 0;
char c = get(input);
if(!eof) {
if (c == CR) {
state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END_CR;
} else if (c == LF) {
state = HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END_LF;
} else {
sb.append(c);
state = HttpHeaderParser.State.HEADER;
}
}
}

private void maybeEndHeaders(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END_CR || state == HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END_LF;
assert sb.length() == 0;
char c = state == HttpHeaderParser.State.STATUS_OR_REQUEST_LINE_END_LF ? LF : get(input);
if (c == LF) {
state = HttpHeaderParser.State.FINISHED; // no headers
} else {
throw protocolException("Unexpected \"%s\", after status line CR", c);
}
}

private void readResumeHeader(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.HEADER;
assert !eof;
char c = get(input);
while (!eof) {
if (c == CR) {
state = HttpHeaderParser.State.HEADER_FOUND_CR;
break;
} else if (c == LF) {
state = HttpHeaderParser.State.HEADER_FOUND_LF;
break;
}
if (c == HT)
c = SP;
sb.append(c);
c = get(input);
}
}

private void addHeaderFromString(String headerString) throws ProtocolException {
assert sb.length() == 0;
int idx = headerString.indexOf(':');
if (idx == -1)
return;
String name = headerString.substring(0, idx);

// compatibility with HttpURLConnection;
if (name.isEmpty()) return;

if (!isValidName(name)) {
throw protocolException("Invalid header name \"%s\"", name);
}
String value = headerString.substring(idx + 1).trim();
if (!isValidValue(value)) {
throw protocolException("Invalid header value \"%s: %s\"", name, value);
}

keyList.add(name);
headerMap.computeIfAbsent(name.toLowerCase(Locale.US),
k -> new ArrayList<>()).add(value);
}

private void resumeOrLF(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.HEADER_FOUND_CR || state == HttpHeaderParser.State.HEADER_FOUND_LF;
char c = state == HttpHeaderParser.State.HEADER_FOUND_LF ? LF : get(input);
if (!eof) {
if (c == LF) {
state = HttpHeaderParser.State.HEADER_FOUND_CR_LF;
} else if (c == SP || c == HT) {
sb.append(SP); // parity with MessageHeaders
state = HttpHeaderParser.State.HEADER;
} else {
sb = new StringBuilder();
sb.append(c);
state = HttpHeaderParser.State.HEADER;
}
}
}

private void resumeOrSecondCR(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.HEADER_FOUND_CR_LF;
char c = get(input);
if (!eof) {
if (c == CR || c == LF) {
if (sb.length() > 0) {
// no continuation line - flush
// previous header value.
String headerString = sb.toString();
sb = new StringBuilder();
addHeaderFromString(headerString);
}
if (c == CR) {
state = HttpHeaderParser.State.HEADER_FOUND_CR_LF_CR;
} else {
state = HttpHeaderParser.State.FINISHED;
}
} else if (c == SP || c == HT) {
assert sb.length() != 0;
sb.append(SP); // continuation line
state = HttpHeaderParser.State.HEADER;
} else {
if (sb.length() > 0) {
// no continuation line - flush
// previous header value.
String headerString = sb.toString();
sb = new StringBuilder();
addHeaderFromString(headerString);
}
sb.append(c);
state = HttpHeaderParser.State.HEADER;
}
}
}

private void resumeOrEndHeaders(InputStream input) throws IOException {
assert state == HttpHeaderParser.State.HEADER_FOUND_CR_LF_CR;
char c = get(input);
if (!eof) {
if (c == LF) {
state = HttpHeaderParser.State.FINISHED;
} else {
throw protocolException("Unexpected \"%s\", after CR LF CR", c);
}
}
}

private ProtocolException protocolException(String format, Object ... args) {
return new ProtocolException(String.format(format, args));
}

/*
* Validates a RFC 7230 field-name.
*/
public boolean isValidName(String token) {
for (int i = 0; i < token.length(); i++) {
char c = token.charAt(i);
if (c > 255 || !tchar[c]) {
return false;
}
}
return !token.isEmpty();
}

/*
* Validates a RFC 7230 field-value.
*
* "Obsolete line folding" rule
*
* obs-fold = CRLF 1*( SP / HTAB )
*
* is not permitted!
*/
public boolean isValidValue(String token) {
for (int i = 0; i < token.length(); i++) {
char c = token.charAt(i);
if (c > 255) {
return false;
}
if (c == ' ' || c == '\t') {
continue;
} else if (!fieldvchar[c]) {
return false; // forbidden byte
}
}
return true;
}
}