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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/spdy/spdy_http_utils.h"
#include <string>
#include <string_view>
#include <vector>
#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/strings/strcat.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/string_view_util.h"
#include "base/types/expected.h"
#include "base/types/expected_macros.h"
#include "net/base/features.h"
#include "net/base/url_util.h"
#include "net/http/http_request_headers.h"
#include "net/http/http_request_info.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_response_info.h"
#include "net/http/http_util.h"
#include "net/quic/quic_http_utils.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_stream_priority.h"
namespace net {
const char* const kHttp2PriorityHeader = "priority";
namespace {
// The number of bytes to reserve for the raw headers string to avoid having to
// do reallocations most of the time. Equal to the 99th percentile of header
// sizes in ricea@'s cache on 3 Aug 2023.
constexpr size_t kExpectedRawHeaderSize = 4035;
// Add header `name` with `value` to `headers`. `name` must not already exist in
// `headers`.
void AddUniqueSpdyHeader(std::string_view name,
std::string_view value,
quiche::HttpHeaderBlock* headers) {
auto insert_result = headers->insert({name, value});
CHECK_EQ(insert_result, quiche::HttpHeaderBlock::InsertResult::kInserted);
}
// Convert `headers` to an HttpResponseHeaders object based on the features
// enabled at runtime.
base::expected<scoped_refptr<HttpResponseHeaders>, int>
SpdyHeadersToHttpResponseHeadersUsingFeatures(
const quiche::HttpHeaderBlock& headers) {
if (base::FeatureList::IsEnabled(
features::kSpdyHeadersToHttpResponseUseBuilder)) {
return SpdyHeadersToHttpResponseHeadersUsingBuilder(headers);
} else {
return SpdyHeadersToHttpResponseHeadersUsingRawString(headers);
}
}
} // namespace
int SpdyHeadersToHttpResponse(const quiche::HttpHeaderBlock& headers,
HttpResponseInfo* response) {
ASSIGN_OR_RETURN(response->headers,
SpdyHeadersToHttpResponseHeadersUsingFeatures(headers));
response->was_fetched_via_spdy = true;
return OK;
}
NET_EXPORT_PRIVATE base::expected<scoped_refptr<HttpResponseHeaders>, int>
SpdyHeadersToHttpResponseHeadersUsingRawString(
const quiche::HttpHeaderBlock& headers) {
// The ":status" header is required.
quiche::HttpHeaderBlock::const_iterator it =
headers.find(spdy::kHttp2StatusHeader);
if (it == headers.end()) {
return base::unexpected(ERR_INCOMPLETE_HTTP2_HEADERS);
}
const auto status = it->second;
std::string raw_headers = base::StrCat(
{"HTTP/1.1 ", status, base::MakeStringViewWithNulChars("\0")});
raw_headers.reserve(kExpectedRawHeaderSize);
for (const auto& [name, value] : headers) {
DCHECK_GT(name.size(), 0u);
if (name[0] == ':') {
// https://tools.ietf.org/html/rfc7540#section-8.1.2.4
// Skip pseudo headers.
continue;
}
// For each value, if the server sends a NUL-separated
// list of values, we separate that back out into
// individual headers for each value in the list.
// e.g.
// Set-Cookie "foo\0bar"
// becomes
// Set-Cookie: foo\0
// Set-Cookie: bar\0
size_t start = 0;
size_t end = 0;
do {
end = value.find('\0', start);
std::string_view tval;
if (end != value.npos) {
tval = value.substr(start, (end - start));
} else {
tval = value.substr(start);
}
base::StrAppend(&raw_headers, {name, ":", tval,
base::MakeStringViewWithNulChars("\0")});
start = end + 1;
} while (end != value.npos);
}
auto response_headers =
base::MakeRefCounted<HttpResponseHeaders>(raw_headers);
// When there are multiple location headers the response is a potential
// response smuggling attack.
if (HttpUtil::HeadersContainMultipleCopiesOfField(*response_headers,
"location")) {
return base::unexpected(ERR_RESPONSE_HEADERS_MULTIPLE_LOCATION);
}
return response_headers;
}
NET_EXPORT_PRIVATE base::expected<scoped_refptr<HttpResponseHeaders>, int>
SpdyHeadersToHttpResponseHeadersUsingBuilder(
const quiche::HttpHeaderBlock& headers) {
// The ":status" header is required.
// TODO(ricea): The ":status" header should always come first. Skip this hash
// lookup after we no longer need to be compatible with the old
// implementation.
quiche::HttpHeaderBlock::const_iterator it =
headers.find(spdy::kHttp2StatusHeader);
if (it == headers.end()) {
return base::unexpected(ERR_INCOMPLETE_HTTP2_HEADERS);
}
const auto status = it->second;
HttpResponseHeaders::Builder builder({1, 1}, status);
for (const auto& [name, value] : headers) {
DCHECK_GT(name.size(), 0u);
if (name[0] == ':') {
// https://tools.ietf.org/html/rfc7540#section-8.1.2.4
// Skip pseudo headers.
continue;
}
// For each value, if the server sends a NUL-separated
// list of values, we separate that back out into
// individual headers for each value in the list.
// e.g.
// Set-Cookie "foo\0bar"
// becomes
// Set-Cookie: foo\0
// Set-Cookie: bar\0
size_t start = 0;
size_t end = 0;
std::optional<std::string_view> location_value;
do {
end = value.find('\0', start);
std::string_view tval;
if (end != value.npos) {
tval = value.substr(start, (end - start));
// TODO(ricea): Make this comparison case-sensitive when we are no
// longer maintaining compatibility with the old version of the
// function.
if (base::EqualsCaseInsensitiveASCII(name, "location") &&
!location_value.has_value()) {
location_value = HttpUtil::TrimLWS(tval);
}
} else {
tval = value.substr(start);
}
if (location_value.has_value() && start > 0) {
DCHECK(base::EqualsCaseInsensitiveASCII(name, "location"));
std::string_view trimmed_value = HttpUtil::TrimLWS(tval);
if (trimmed_value != location_value.value()) {
return base::unexpected(ERR_RESPONSE_HEADERS_MULTIPLE_LOCATION);
}
}
builder.AddHeader(name, tval);
start = end + 1;
} while (end != value.npos);
}
return builder.Build();
}
void CreateSpdyHeadersFromHttpRequest(const HttpRequestInfo& info,
std::optional<RequestPriority> priority,
const HttpRequestHeaders& request_headers,
quiche::HttpHeaderBlock* headers) {
headers->insert({spdy::kHttp2MethodHeader, info.method});
if (info.method == "CONNECT") {
headers->insert({spdy::kHttp2AuthorityHeader, GetHostAndPort(info.url)});
} else {
headers->insert(
{spdy::kHttp2AuthorityHeader, GetHostAndOptionalPort(info.url)});
headers->insert({spdy::kHttp2SchemeHeader, info.url.scheme()});
headers->insert({spdy::kHttp2PathHeader, info.url.PathForRequest()});
}
HttpRequestHeaders::Iterator it(request_headers);
while (it.GetNext()) {
std::string name = base::ToLowerASCII(it.name());
if (name.empty() || name[0] == ':' || name == "connection" ||
name == "proxy-connection" || name == "transfer-encoding" ||
name == "host") {
continue;
}
AddUniqueSpdyHeader(name, it.value(), headers);
}
// Add the priority header if there is not already one set. This uses the
// quic helpers but the header values for HTTP extensible priorities are
// independent of quic.
if (priority &&
headers->find(kHttp2PriorityHeader) == headers->end()) {
uint8_t urgency = ConvertRequestPriorityToQuicPriority(priority.value());
bool incremental = info.priority_incremental;
quic::HttpStreamPriority quic_priority{urgency, incremental};
std::string serialized_priority =
quic::SerializePriorityFieldValue(quic_priority);
if (!serialized_priority.empty()) {
AddUniqueSpdyHeader(kHttp2PriorityHeader, serialized_priority, headers);
}
}
}
void CreateSpdyHeadersFromHttpRequestForExtendedConnect(
const HttpRequestInfo& info,
std::optional<RequestPriority> priority,
const std::string& ext_connect_protocol,
const HttpRequestHeaders& request_headers,
quiche::HttpHeaderBlock* headers) {
CHECK_EQ(info.method, "CONNECT");
// Extended CONNECT, unlike CONNECT, requires scheme and path, and uses the
// default port in the authority header.
headers->insert({spdy::kHttp2SchemeHeader, info.url.scheme()});
headers->insert({spdy::kHttp2PathHeader, info.url.PathForRequest()});
headers->insert({spdy::kHttp2ProtocolHeader, ext_connect_protocol});
CreateSpdyHeadersFromHttpRequest(info, priority, request_headers, headers);
// Replace the existing `:authority` header. This will still be ordered
// correctly, since the header was first added before any regular headers.
headers->insert(
{spdy::kHttp2AuthorityHeader, GetHostAndOptionalPort(info.url)});
}
void CreateSpdyHeadersFromHttpRequestForWebSocket(
const GURL& url,
const HttpRequestHeaders& request_headers,
quiche::HttpHeaderBlock* headers) {
headers->insert({spdy::kHttp2MethodHeader, "CONNECT"});
headers->insert({spdy::kHttp2AuthorityHeader, GetHostAndOptionalPort(url)});
headers->insert({spdy::kHttp2SchemeHeader, "https"});
headers->insert({spdy::kHttp2PathHeader, url.PathForRequest()});
headers->insert({spdy::kHttp2ProtocolHeader, "websocket"});
HttpRequestHeaders::Iterator it(request_headers);
while (it.GetNext()) {
std::string name = base::ToLowerASCII(it.name());
if (name.empty() || name[0] == ':' || name == "upgrade" ||
name == "connection" || name == "proxy-connection" ||
name == "transfer-encoding" || name == "host") {
continue;
}
AddUniqueSpdyHeader(name, it.value(), headers);
}
}
static_assert(HIGHEST - LOWEST < 4 && HIGHEST - MINIMUM_PRIORITY < 6,
"request priority incompatible with spdy");
spdy::SpdyPriority ConvertRequestPriorityToSpdyPriority(
const RequestPriority priority) {
DCHECK_GE(priority, MINIMUM_PRIORITY);
DCHECK_LE(priority, MAXIMUM_PRIORITY);
return static_cast<spdy::SpdyPriority>(MAXIMUM_PRIORITY - priority +
spdy::kV3HighestPriority);
}
NET_EXPORT_PRIVATE RequestPriority
ConvertSpdyPriorityToRequestPriority(spdy::SpdyPriority priority) {
// Handle invalid values gracefully.
return ((priority - spdy::kV3HighestPriority) >
(MAXIMUM_PRIORITY - MINIMUM_PRIORITY))
? IDLE
: static_cast<RequestPriority>(
MAXIMUM_PRIORITY - (priority - spdy::kV3HighestPriority));
}
} // namespace net
|