ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
141 lines
3.9 KiB
C++
141 lines
3.9 KiB
C++
/*
|
|
* nghttp2 - HTTP/2 C Library
|
|
*
|
|
* Copyright (c) 2021 Tatsuhiro Tsujikawa
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
#include "http3.h"
|
|
|
|
namespace nghttp2 {
|
|
|
|
namespace http3 {
|
|
|
|
namespace {
|
|
void copy_headers_to_nva_internal(std::vector<nghttp3_nv> &nva,
|
|
const HeaderRefs &headers, uint8_t nv_flags,
|
|
uint32_t flags) {
|
|
auto it_forwarded = std::end(headers);
|
|
auto it_xff = std::end(headers);
|
|
auto it_xfp = std::end(headers);
|
|
auto it_via = std::end(headers);
|
|
|
|
for (auto it = std::begin(headers); it != std::end(headers); ++it) {
|
|
auto kv = &(*it);
|
|
if (kv->name.empty() || kv->name[0] == ':') {
|
|
continue;
|
|
}
|
|
switch (kv->token) {
|
|
case http2::HD_COOKIE:
|
|
case http2::HD_CONNECTION:
|
|
case http2::HD_HOST:
|
|
case http2::HD_HTTP2_SETTINGS:
|
|
case http2::HD_KEEP_ALIVE:
|
|
case http2::HD_PROXY_CONNECTION:
|
|
case http2::HD_SERVER:
|
|
case http2::HD_TE:
|
|
case http2::HD_TRANSFER_ENCODING:
|
|
case http2::HD_UPGRADE:
|
|
continue;
|
|
case http2::HD_EARLY_DATA:
|
|
if (flags & http2::HDOP_STRIP_EARLY_DATA) {
|
|
continue;
|
|
}
|
|
break;
|
|
case http2::HD_SEC_WEBSOCKET_ACCEPT:
|
|
if (flags & http2::HDOP_STRIP_SEC_WEBSOCKET_ACCEPT) {
|
|
continue;
|
|
}
|
|
break;
|
|
case http2::HD_SEC_WEBSOCKET_KEY:
|
|
if (flags & http2::HDOP_STRIP_SEC_WEBSOCKET_KEY) {
|
|
continue;
|
|
}
|
|
break;
|
|
case http2::HD_FORWARDED:
|
|
if (flags & http2::HDOP_STRIP_FORWARDED) {
|
|
continue;
|
|
}
|
|
|
|
if (it_forwarded == std::end(headers)) {
|
|
it_forwarded = it;
|
|
continue;
|
|
}
|
|
|
|
kv = &(*it_forwarded);
|
|
it_forwarded = it;
|
|
break;
|
|
case http2::HD_X_FORWARDED_FOR:
|
|
if (flags & http2::HDOP_STRIP_X_FORWARDED_FOR) {
|
|
continue;
|
|
}
|
|
|
|
if (it_xff == std::end(headers)) {
|
|
it_xff = it;
|
|
continue;
|
|
}
|
|
|
|
kv = &(*it_xff);
|
|
it_xff = it;
|
|
break;
|
|
case http2::HD_X_FORWARDED_PROTO:
|
|
if (flags & http2::HDOP_STRIP_X_FORWARDED_PROTO) {
|
|
continue;
|
|
}
|
|
|
|
if (it_xfp == std::end(headers)) {
|
|
it_xfp = it;
|
|
continue;
|
|
}
|
|
|
|
kv = &(*it_xfp);
|
|
it_xfp = it;
|
|
break;
|
|
case http2::HD_VIA:
|
|
if (flags & http2::HDOP_STRIP_VIA) {
|
|
continue;
|
|
}
|
|
|
|
if (it_via == std::end(headers)) {
|
|
it_via = it;
|
|
continue;
|
|
}
|
|
|
|
kv = &(*it_via);
|
|
it_via = it;
|
|
break;
|
|
}
|
|
nva.push_back(make_field_flags(kv->name, kv->value,
|
|
nv_flags | never_index(kv->no_index)));
|
|
}
|
|
}
|
|
} // namespace
|
|
|
|
void copy_headers_to_nva_nocopy(std::vector<nghttp3_nv> &nva,
|
|
const HeaderRefs &headers, uint32_t flags) {
|
|
copy_headers_to_nva_internal(
|
|
nva, headers, NGHTTP3_NV_FLAG_NO_COPY_NAME | NGHTTP3_NV_FLAG_NO_COPY_VALUE,
|
|
flags);
|
|
}
|
|
|
|
} // namespace http3
|
|
|
|
} // namespace nghttp2
|