/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/java.net.http/share/classes/jdk/internal/net/http/Http1HeaderParser.java
370 строк
14 KB
Alexey Bakhtin
8328286: Enhance HTTP client
03 окт 2024, 22:53
03 окт 2024, 22:53
2d393d8
Код
Авторство
О чём код?
/* * Copyright (c) 2017, 2018, 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. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * 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.internal.net.http; import java.io.IOException; import java.net.ProtocolException; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.net.http.HttpHeaders; import jdk.internal.net.http.common.Utils; import static java.lang.String.format; import static java.util.Objects.requireNonNull; import static jdk.internal.net.http.common.Utils.ACCEPT_ALL; class Http1HeaderParser { private static final char CR = '\r'; private static final char LF = '\n'; private static final char HT = '\t'; private static final char SP = ' '; private StringBuilder sb = new StringBuilder(); private String statusLine; private int responseCode; private HttpHeaders headers; private Map<String,List<String>> privateMap = new HashMap<>(); private long size; private static final int K = 1024; private static final int MAX_HTTP_HEADER_SIZE = Utils.getIntegerNetProperty( "jdk.http.maxHeaderSize", Integer.MIN_VALUE, Integer.MAX_VALUE, 384 * K, true); enum State { INITIAL, STATUS_LINE, STATUS_LINE_FOUND_CR, STATUS_LINE_FOUND_LF, STATUS_LINE_END, STATUS_LINE_END_CR, STATUS_LINE_END_LF, HEADER, HEADER_FOUND_CR, HEADER_FOUND_LF, HEADER_FOUND_CR_LF, HEADER_FOUND_CR_LF_CR, FINISHED } private State state = State.INITIAL; /** Returns the status-line. */ String statusLine() { return statusLine; } /** Returns the response code. */ int responseCode() { return responseCode; } /** Returns the headers, possibly empty. */ HttpHeaders headers() { assert state == State.FINISHED : "Unexpected state " + state; return headers; } /** A current-state message suitable for inclusion in an exception detail message. */ public String currentStateMessage() { String stateName = state.name(); String msg; if (stateName.contains("INITIAL")) { return format("HTTP/1.1 header parser received no bytes"); } else if (stateName.contains("STATUS")) { msg = format("parsing HTTP/1.1 status line, receiving [%s]", sb.toString()); } else if (stateName.contains("HEADER")) { String headerName = sb.toString(); if (headerName.indexOf(':') != -1) headerName = headerName.substring(0, headerName.indexOf(':')+1) + "..."; msg = format("parsing HTTP/1.1 header, receiving [%s]", headerName); } else { msg = format("HTTP/1.1 parser receiving [%s]", sb.toString()); } return format("%s, parser state [%s]", msg, state); } /** * Parses HTTP/1.X status-line and headers from the given bytes. Must be * called successive times, with additional data, until returns true. * * All given ByteBuffers will be consumed, until ( possibly ) the last one * ( when true is returned ), which may not be fully consumed. * * @param input the ( partial ) header data * @return true iff the end of the headers block has been reached */ boolean parse(ByteBuffer input) throws ProtocolException { requireNonNull(input, "null input"); while (canContinueParsing(input)) { switch (state) { case INITIAL: state = State.STATUS_LINE; break; case STATUS_LINE: readResumeStatusLine(input); break; // fallthrough case STATUS_LINE_FOUND_CR: case STATUS_LINE_FOUND_LF: readStatusLineFeed(input); break; case STATUS_LINE_END: maybeStartHeaders(input); break; // fallthrough case STATUS_LINE_END_CR: case STATUS_LINE_END_LF: maybeEndHeaders(input); break; case HEADER: readResumeHeader(input); break; // fallthrough case HEADER_FOUND_CR: case HEADER_FOUND_LF: resumeOrLF(input); break; case HEADER_FOUND_CR_LF: resumeOrSecondCR(input); break; case HEADER_FOUND_CR_LF_CR: resumeOrEndHeaders(input); break; default: throw new InternalError( "Unexpected state: " + String.valueOf(state)); } } return state == State.FINISHED; } private boolean canContinueParsing(ByteBuffer buffer) { // some states don't require any input to transition // to the next state. switch (state) { case FINISHED: return false; case STATUS_LINE_FOUND_LF: return true; case STATUS_LINE_END_LF: return true; case HEADER_FOUND_LF: return true; default: return buffer.hasRemaining(); } } private void readResumeStatusLine(ByteBuffer input) throws ProtocolException { final long max = MAX_HTTP_HEADER_SIZE - size - 32 - sb.length(); int count = 0; char c = 0; while (input.hasRemaining() && (c =(char)input.get()) != CR) { if (c == LF) break; sb.append(c); if (++count > max) { checkMaxHeaderSize(sb.length()); } } if (c == CR) { state = State.STATUS_LINE_FOUND_CR; } else if (c == LF) { state = State.STATUS_LINE_FOUND_LF; } } private void readStatusLineFeed(ByteBuffer input) throws ProtocolException { char c = state == State.STATUS_LINE_FOUND_LF ? LF : (char)input.get(); if (c != LF) { throw protocolException("Bad trailing char, \"%s\", when parsing status line, \"%s\"", c, sb.toString()); } statusLine = sb.toString(); size = size + 32 + statusLine.length(); sb = new StringBuilder(); if (!statusLine.startsWith("HTTP/1.")) { throw protocolException("Invalid status line: \"%s\"", statusLine); } if (statusLine.length() < 12) { throw protocolException("Invalid status line: \"%s\"", statusLine); } responseCode = Integer.parseInt(statusLine.substring(9, 12)); state = State.STATUS_LINE_END; } private void checkMaxHeaderSize(int sz) throws ProtocolException { long s = size + sz + 32; if (MAX_HTTP_HEADER_SIZE > 0 && s > MAX_HTTP_HEADER_SIZE) { throw new ProtocolException(String.format("Header size too big: %s > %s", s, MAX_HTTP_HEADER_SIZE)); } } static private long newSize(long size, int name, int value) throws ProtocolException { long newSize = size + name + value + 32; if (MAX_HTTP_HEADER_SIZE > 0 && newSize > MAX_HTTP_HEADER_SIZE) { throw new ProtocolException(String.format("Header size too big: %s > %s", newSize, MAX_HTTP_HEADER_SIZE)); } return newSize; } private void maybeStartHeaders(ByteBuffer input) throws ProtocolException { assert state == State.STATUS_LINE_END; assert sb.length() == 0; char c = (char)input.get(); if (c == CR) { state = State.STATUS_LINE_END_CR; } else if (c == LF) { state = State.STATUS_LINE_END_LF; } else { sb.append(c); checkMaxHeaderSize(sb.length()); state = State.HEADER; } } private void maybeEndHeaders(ByteBuffer input) throws ProtocolException { assert state == State.STATUS_LINE_END_CR || state == State.STATUS_LINE_END_LF; assert sb.length() == 0; char c = state == State.STATUS_LINE_END_LF ? LF : (char)input.get(); if (c == LF) { headers = HttpHeaders.of(privateMap, ACCEPT_ALL); privateMap = null; state = State.FINISHED; // no headers } else { throw protocolException("Unexpected \"%s\", after status line CR", c); } } private void readResumeHeader(ByteBuffer input) throws ProtocolException { assert state == State.HEADER; assert input.hasRemaining(); final long max = MAX_HTTP_HEADER_SIZE - size - 32 - sb.length(); int count = 0; while (input.hasRemaining()) { char c = (char)input.get(); if (c == CR) { state = State.HEADER_FOUND_CR; break; } else if (c == LF) { state = State.HEADER_FOUND_LF; break; } if (c == HT) c = SP; sb.append(c); if (++count > max) { checkMaxHeaderSize(sb.length()); } } } 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).trim(); if (name.isEmpty()) return; String value = headerString.substring(idx + 1, headerString.length()).trim(); size = newSize(size, name.length(), value.length()); privateMap.computeIfAbsent(name.toLowerCase(Locale.US), k -> new ArrayList<>()).add(value); } private void resumeOrLF(ByteBuffer input) throws ProtocolException { assert state == State.HEADER_FOUND_CR || state == State.HEADER_FOUND_LF; char c = state == State.HEADER_FOUND_LF ? LF : (char)input.get(); if (c == LF) { // header value will be flushed by // resumeOrSecondCR if next line does not // begin by SP or HT state = State.HEADER_FOUND_CR_LF; } else if (c == SP || c == HT) { sb.append(SP); // parity with MessageHeaders checkMaxHeaderSize(sb.length()); state = State.HEADER; } else { sb = new StringBuilder(); sb.append(c); checkMaxHeaderSize(1); state = State.HEADER; } } private void resumeOrSecondCR(ByteBuffer input) throws ProtocolException { assert state == State.HEADER_FOUND_CR_LF; char c = (char)input.get(); 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 = State.HEADER_FOUND_CR_LF_CR; } else { state = State.FINISHED; headers = HttpHeaders.of(privateMap, ACCEPT_ALL); privateMap = null; } } else if (c == SP || c == HT) { assert sb.length() != 0; sb.append(SP); // continuation line checkMaxHeaderSize(sb.length()); state = 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); checkMaxHeaderSize(sb.length()); state = State.HEADER; } } private void resumeOrEndHeaders(ByteBuffer input) throws ProtocolException { assert state == State.HEADER_FOUND_CR_LF_CR; char c = (char)input.get(); if (c == LF) { state = State.FINISHED; headers = HttpHeaders.of(privateMap, ACCEPT_ALL); privateMap = null; } else { throw protocolException("Unexpected \"%s\", after CR LF CR", c); } } private ProtocolException protocolException(String format, Object... args) { return new ProtocolException(format(format, args)); } }