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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
|
/*
* Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
* Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
* Copyright (C) 2009 Google Inc. All rights reserved.
* Copyright (C) 2011 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "third_party/blink/renderer/platform/network/http_parsers.h"
#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <utility>
#include "base/containers/flat_map.h"
#include "base/feature_list.h"
#include "base/time/time.h"
#include "net/http/http_content_disposition.h"
#include "net/http/http_response_headers.h"
#include "net/http/http_util.h"
#include "services/network/public/cpp/content_security_policy/content_security_policy.h"
#include "services/network/public/cpp/no_vary_search_header_parser.h"
#include "services/network/public/cpp/parsed_headers.h"
#include "services/network/public/cpp/sri_message_signatures.h"
#include "services/network/public/cpp/timing_allow_origin_parser.h"
#include "services/network/public/mojom/integrity_policy.mojom-blink.h"
#include "services/network/public/mojom/no_vary_search.mojom-blink-forward.h"
#include "services/network/public/mojom/no_vary_search.mojom-blink.h"
#include "services/network/public/mojom/parsed_headers.mojom-blink.h"
#include "services/network/public/mojom/sri_message_signature.mojom-blink.h"
#include "services/network/public/mojom/supports_loading_mode.mojom-blink.h"
#include "services/network/public/mojom/timing_allow_origin.mojom-blink.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/mime_util/mime_util.h"
#include "third_party/blink/public/mojom/use_counter/metrics/web_feature.mojom-blink.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/loader/fetch/resource_response.h"
#include "third_party/blink/renderer/platform/network/header_field_tokenizer.h"
#include "third_party/blink/renderer/platform/network/http_names.h"
#include "third_party/blink/renderer/platform/runtime_enabled_features.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/wtf/date_math.h"
#include "third_party/blink/renderer/platform/wtf/math_extras.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
#include "third_party/blink/renderer/platform/wtf/text/character_names.h"
#include "third_party/blink/renderer/platform/wtf/text/parsing_utilities.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/text/string_utf8_adaptor.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/wtf.h"
// We would like finding a way to convert from/to blink type automatically.
// The following attempt has been withdrawn:
// https://chromium-review.googlesource.com/c/chromium/src/+/2126933/7
//
// Note: nesting these helpers inside network::mojom bypasses warnings from
// audit_non_blink_style.py, as well as saving a bunch of typing to qualify the
// types below.
namespace network {
namespace mojom {
// When adding a new conversion, define a new `ConvertToBlink` overload to map
// the non-Blink type (passing by value for primitive types or passing by const
// reference otherwise). The generic converters for container types relies on
// the presence of `ConvertToBlink` overloads to determine the correct return
// type.
// ===== Identity converters =====
// Converts where the input type and output type are identical(-ish).
uint8_t ConvertToBlink(uint8_t in) {
return in;
}
// Note: for identity enum conversions, there should be `static_assert`s that
// the input enumerator and the output enumerator define matching values.
blink::CSPDirectiveName ConvertToBlink(CSPDirectiveName name) {
return static_cast<blink::CSPDirectiveName>(name);
}
// `in` is a Mojo enum type, which is type aliased to the same underlying type
// by both the non-Blink Mojo variant and the Blink Mojo variant.
blink::WebClientHintsType ConvertToBlink(WebClientHintsType in) {
return in;
}
blink::LoadingMode ConvertToBlink(LoadingMode in) {
return static_cast<blink::LoadingMode>(in);
}
// ===== Converters for other basic Blink types =====
String ConvertToBlink(const std::string& in) {
return String::FromUTF8(in);
}
String ConvertToBlink(const std::optional<std::string>& in) {
return in ? String::FromUTF8(*in) : String();
}
::blink::KURL ConvertToBlink(const GURL& in) {
return ::blink::KURL(in);
}
scoped_refptr<const ::blink::SecurityOrigin> ConvertToBlink(
const url::Origin& in) {
return ::blink::SecurityOrigin::CreateFromUrlOrigin(in);
}
// ====== Generic container converters =====
template <
typename InElement,
typename OutElement = decltype(ConvertToBlink(std::declval<InElement>()))>
Vector<OutElement> ConvertToBlink(const std::vector<InElement>& in) {
Vector<OutElement> out;
out.reserve(base::checked_cast<wtf_size_t>(in.size()));
for (const auto& element : in) {
out.push_back(ConvertToBlink(element));
}
return out;
}
template <typename InKey,
typename InValue,
typename OutKey = decltype(ConvertToBlink(std::declval<InKey>())),
typename OutValue = decltype(ConvertToBlink(std::declval<InValue>()))>
HashMap<OutKey, OutValue> ConvertToBlink(
const base::flat_map<InKey, InValue>& in) {
HashMap<OutKey, OutValue> out;
for (const auto& element : in) {
out.insert(ConvertToBlink(element.first), ConvertToBlink(element.second));
}
return out;
}
// ===== Converters from non-Blink to Blink variant of Mojo structs =====
blink::CSPSourcePtr ConvertToBlink(const CSPSourcePtr& in) {
CHECK(in);
return blink::CSPSource::New(
ConvertToBlink(in->scheme), ConvertToBlink(in->host), in->port,
ConvertToBlink(in->path), in->is_host_wildcard, in->is_port_wildcard);
}
blink::IntegrityPolicy::Destination ConvertToBlink(
const IntegrityPolicy::Destination& in) {
return blink::IntegrityPolicy::Destination(in);
}
blink::IntegrityPolicy::Source ConvertToBlink(
const IntegrityPolicy::Source& in) {
return blink::IntegrityPolicy::Source(in);
}
blink::CSPHashSourcePtr ConvertToBlink(const CSPHashSourcePtr& in) {
CHECK(in);
Vector<uint8_t> hash_value = ConvertToBlink(in->value);
return blink::CSPHashSource::New(in->algorithm, std::move(hash_value));
}
blink::CSPSourceListPtr ConvertToBlink(const CSPSourceListPtr& source_list) {
CHECK(source_list);
Vector<blink::CSPSourcePtr> sources = ConvertToBlink(source_list->sources);
Vector<String> nonces = ConvertToBlink(source_list->nonces);
Vector<blink::CSPHashSourcePtr> hashes = ConvertToBlink(source_list->hashes);
Vector<blink::CSPHashSourcePtr> url_hashes =
ConvertToBlink(source_list->url_hashes);
Vector<blink::CSPHashSourcePtr> eval_hashes =
ConvertToBlink(source_list->eval_hashes);
return blink::CSPSourceList::New(
std::move(sources), std::move(nonces), std::move(hashes),
std::move(url_hashes), std::move(eval_hashes), source_list->allow_self,
source_list->allow_star, source_list->allow_inline,
source_list->allow_inline_speculation_rules, source_list->allow_eval,
source_list->allow_wasm_eval, source_list->allow_wasm_unsafe_eval,
source_list->allow_dynamic, source_list->allow_unsafe_hashes,
source_list->report_sample, source_list->report_hash_algorithm);
}
blink::ContentSecurityPolicyHeaderPtr ConvertToBlink(
const ContentSecurityPolicyHeaderPtr& in) {
CHECK(in);
return blink::ContentSecurityPolicyHeader::New(
ConvertToBlink(in->header_value), in->type, in->source);
}
blink::IntegrityPolicyPtr ConvertToBlink(const IntegrityPolicyPtr& in) {
Vector<blink::IntegrityPolicy::Destination> blocked_destinations =
ConvertToBlink(in->blocked_destinations);
return blink::IntegrityPolicy::New(
std::move(blocked_destinations), ConvertToBlink(in->sources),
ConvertToBlink(in->endpoints), ConvertToBlink(in->parsing_errors));
}
blink::CSPTrustedTypesPtr ConvertToBlink(const CSPTrustedTypesPtr& in) {
if (!in)
return nullptr;
return blink::CSPTrustedTypes::New(ConvertToBlink(in->list), in->allow_any,
in->allow_duplicates);
}
blink::ContentSecurityPolicyPtr ConvertToBlink(
const ContentSecurityPolicyPtr& in) {
CHECK(in);
return blink::ContentSecurityPolicy::New(
ConvertToBlink(in->self_origin), ConvertToBlink(in->raw_directives),
ConvertToBlink(in->directives), in->upgrade_insecure_requests,
in->treat_as_public_address, in->block_all_mixed_content, in->sandbox,
ConvertToBlink(in->header), in->use_reporting_api,
ConvertToBlink(in->report_endpoints), in->require_trusted_types_for,
ConvertToBlink(in->trusted_types), ConvertToBlink(in->parsing_errors));
}
blink::AllowCSPFromHeaderValuePtr ConvertToBlink(
const AllowCSPFromHeaderValuePtr& allow_csp_from) {
if (!allow_csp_from)
return nullptr;
switch (allow_csp_from->which()) {
case AllowCSPFromHeaderValue::Tag::kAllowStar:
return blink::AllowCSPFromHeaderValue::NewAllowStar(
allow_csp_from->get_allow_star());
case AllowCSPFromHeaderValue::Tag::kOrigin:
return blink::AllowCSPFromHeaderValue::NewOrigin(
ConvertToBlink(allow_csp_from->get_origin()));
case AllowCSPFromHeaderValue::Tag::kErrorMessage:
return blink::AllowCSPFromHeaderValue::NewErrorMessage(
ConvertToBlink(allow_csp_from->get_error_message()));
}
}
blink::LinkHeaderPtr ConvertToBlink(const LinkHeaderPtr& in) {
CHECK(in);
return blink::LinkHeader::New(
ConvertToBlink(in->href),
// TODO(dcheng): Make these use ConvertToBlink
static_cast<blink::LinkRelAttribute>(in->rel),
static_cast<blink::LinkAsAttribute>(in->as),
static_cast<blink::CrossOriginAttribute>(in->cross_origin),
static_cast<blink::FetchPriorityAttribute>(in->fetch_priority),
ConvertToBlink(in->mime_type));
}
blink::TimingAllowOriginPtr ConvertToBlink(const TimingAllowOriginPtr& in) {
if (!in) {
return nullptr;
}
switch (in->which()) {
case TimingAllowOrigin::Tag::kSerializedOrigins:
return blink::TimingAllowOrigin::NewSerializedOrigins(
ConvertToBlink(in->get_serialized_origins()));
case TimingAllowOrigin::Tag::kAll:
return blink::TimingAllowOrigin::NewAll(/*ignored=*/0);
}
}
blink::NoVarySearchWithParseErrorPtr ConvertToBlink(
const NoVarySearchWithParseErrorPtr& in) {
if (!in)
return nullptr;
if (in->is_parse_error()) {
return blink::NoVarySearchWithParseError::NewParseError(
in->get_parse_error());
}
const NoVarySearchPtr& no_vary_search = in->get_no_vary_search();
CHECK(no_vary_search);
CHECK(no_vary_search->search_variance);
if (no_vary_search->search_variance->is_no_vary_params()) {
return blink::NoVarySearchWithParseError::NewNoVarySearch(
blink::NoVarySearch::New(
blink::SearchParamsVariance::NewNoVaryParams(ConvertToBlink(
no_vary_search->search_variance->get_no_vary_params())),
no_vary_search->vary_on_key_order));
}
CHECK(no_vary_search->search_variance->is_vary_params());
return blink::NoVarySearchWithParseError::NewNoVarySearch(
blink::NoVarySearch::New(
blink::SearchParamsVariance::NewVaryParams(ConvertToBlink(
no_vary_search->search_variance->get_vary_params())),
no_vary_search->vary_on_key_order));
}
// `in` is a Mojo enum type, which is type aliased to the same underlying type
// by both the non-Blink Mojo variant and the Blink Mojo variant.
blink::SRIMessageSignatureComponentParameter::Type ConvertToBlink(
SRIMessageSignatureComponentParameter::Type in) {
return in;
}
// `in` is a Mojo enum type, which is type aliased to the same underlying type
// by both the non-Blink Mojo variant and the Blink Mojo variant.
blink::SRIMessageSignatureError ConvertToBlink(SRIMessageSignatureError in) {
return in;
}
blink::SRIMessageSignatureComponentParameterPtr ConvertToBlink(
const SRIMessageSignatureComponentParameterPtr& in) {
CHECK(in);
return blink::SRIMessageSignatureComponentParameter::New(
ConvertToBlink(in->type), ConvertToBlink(in->value));
}
blink::SRIMessageSignatureIssuePtr ConvertToBlink(
const SRIMessageSignatureIssuePtr& in) {
return blink::SRIMessageSignatureIssue::New(
ConvertToBlink(in->error), ConvertToBlink(in->signature_base),
in->integrity_assertions.has_value()
? std::make_optional(ConvertToBlink(in->integrity_assertions.value()))
: std::nullopt);
}
blink::SRIMessageSignatureComponentPtr ConvertToBlink(
const SRIMessageSignatureComponentPtr& in) {
CHECK(in);
return blink::SRIMessageSignatureComponent::New(ConvertToBlink(in->name),
ConvertToBlink(in->params));
}
blink::SRIMessageSignaturePtr ConvertToBlink(const SRIMessageSignaturePtr& in) {
CHECK(in);
return blink::SRIMessageSignature::New(
ConvertToBlink(in->label), ConvertToBlink(in->signature),
ConvertToBlink(in->components), in->created, in->expires,
ConvertToBlink(in->keyid), ConvertToBlink(in->nonce),
ConvertToBlink(in->tag), ConvertToBlink(in->serialized_signature_params));
}
blink::SRIMessageSignaturesPtr ConvertToBlink(
const SRIMessageSignaturesPtr& in) {
CHECK(in);
return blink::SRIMessageSignatures::New(ConvertToBlink(in->signatures),
ConvertToBlink(in->issues));
}
blink::ParsedHeadersPtr ConvertToBlink(const ParsedHeadersPtr& in) {
CHECK(in);
return blink::ParsedHeaders::New(
ConvertToBlink(in->content_security_policy),
ConvertToBlink(in->allow_csp_from), in->cross_origin_embedder_policy,
in->cross_origin_opener_policy, in->document_isolation_policy,
in->integrity_policy, in->integrity_policy_report_only,
in->origin_agent_cluster,
in->accept_ch.has_value()
? std::make_optional(ConvertToBlink(in->accept_ch.value()))
: std::nullopt,
in->critical_ch.has_value()
? std::make_optional(ConvertToBlink(in->critical_ch.value()))
: std::nullopt,
in->client_hints_ignored_due_to_clear_site_data_header, in->xfo,
ConvertToBlink(in->link_headers), ConvertToBlink(in->timing_allow_origin),
ConvertToBlink(in->supports_loading_mode),
in->reporting_endpoints.has_value()
? std::make_optional(ConvertToBlink(in->reporting_endpoints.value()))
: std::nullopt,
in->cookie_indices.has_value()
? std::make_optional(ConvertToBlink(in->cookie_indices.value()))
: std::nullopt,
in->avail_language.has_value()
? std::make_optional(ConvertToBlink(in->avail_language.value()))
: std::nullopt,
in->content_language.has_value()
? std::make_optional(ConvertToBlink(in->content_language.value()))
: std::nullopt,
ConvertToBlink(in->no_vary_search_with_parse_error),
in->observe_browsing_topics, in->allow_cross_origin_event_reporting);
}
} // namespace mojom
} // namespace network
namespace blink {
namespace {
const Vector<AtomicString>& ReplaceHeaders() {
// The list of response headers that we do not copy from the original
// response when generating a ResourceResponse for a MIME payload.
// Note: this is called only on the main thread.
DEFINE_STATIC_LOCAL(
Vector<AtomicString>, headers,
({http_names::kLowerContentType, http_names::kLowerContentLength,
http_names::kLowerContentDisposition, http_names::kLowerContentRange,
http_names::kLowerRange, http_names::kLowerSetCookie}));
return headers;
}
bool IsWhitespace(UChar chr) {
return (chr == ' ') || (chr == '\t');
}
// true if there is more to parse, after incrementing pos past whitespace.
// Note: Might return pos == str.length()
// if |matcher| is nullptr, isWhitespace() is used.
inline bool SkipWhiteSpace(const String& str,
unsigned& pos,
WTF::CharacterMatchFunctionPtr matcher = nullptr) {
unsigned len = str.length();
if (matcher) {
while (pos < len && matcher(str[pos]))
++pos;
} else {
while (pos < len && IsWhitespace(str[pos]))
++pos;
}
return pos < len;
}
template <typename CharType>
inline bool IsASCIILowerAlphaOrDigit(CharType c) {
return IsASCIILower(c) || IsASCIIDigit(c);
}
template <typename CharType>
inline bool IsASCIILowerAlphaOrDigitOrHyphen(CharType c) {
return IsASCIILowerAlphaOrDigit(c) || c == '-';
}
// Parse a number with ignoring trailing [0-9.].
// Returns false if the source contains invalid characters.
bool ParseRefreshTime(const String& source, base::TimeDelta& delay) {
int full_stop_count = 0;
unsigned number_end = source.length();
for (unsigned i = 0; i < source.length(); ++i) {
UChar ch = source[i];
if (ch == kFullstopCharacter) {
if (++full_stop_count == 2)
number_end = i;
} else if (!IsASCIIDigit(ch)) {
return false;
}
}
bool ok;
double time = source.Left(number_end).ToDouble(&ok);
if (RuntimeEnabledFeatures::MetaRefreshNoFractionalEnabled()) {
time = floor(time);
}
if (!ok)
return false;
delay = base::Seconds(time);
return true;
}
} // namespace
bool IsValidHTTPHeaderValue(const String& name) {
// FIXME: This should really match name against
// field-value in section 4.2 of RFC 2616.
return name.ContainsOnlyLatin1OrEmpty() && !name.Contains('\r') &&
!name.Contains('\n') && !name.Contains('\0');
}
// See RFC 7230, Section 3.2.6.
bool IsValidHTTPToken(const String& characters) {
if (characters.empty())
return false;
for (unsigned i = 0; i < characters.length(); ++i) {
UChar c = characters[i];
if (c > 0x7F || !net::HttpUtil::IsTokenChar(c))
return false;
}
return true;
}
bool IsContentDispositionAttachment(const String& content_disposition) {
return net::HttpContentDisposition(content_disposition.Utf8(), std::string())
.is_attachment();
}
// https://html.spec.whatwg.org/C/#attr-meta-http-equiv-refresh
bool ParseHTTPRefresh(const String& refresh,
WTF::CharacterMatchFunctionPtr matcher,
base::TimeDelta& delay,
String& url) {
unsigned len = refresh.length();
unsigned pos = 0;
matcher = matcher ? matcher : IsWhitespace;
if (!SkipWhiteSpace(refresh, pos, matcher))
return false;
while (pos != len && refresh[pos] != ',' && refresh[pos] != ';' &&
!matcher(refresh[pos]))
++pos;
if (pos == len) { // no URL
url = String();
return ParseRefreshTime(refresh.StripWhiteSpace(), delay);
} else {
if (!ParseRefreshTime(refresh.Left(pos).StripWhiteSpace(), delay))
return false;
SkipWhiteSpace(refresh, pos, matcher);
if (pos < len && (refresh[pos] == ',' || refresh[pos] == ';'))
++pos;
SkipWhiteSpace(refresh, pos, matcher);
unsigned url_start_pos = pos;
if (refresh.FindIgnoringASCIICase("url", url_start_pos) == url_start_pos) {
url_start_pos += 3;
SkipWhiteSpace(refresh, url_start_pos, matcher);
if (refresh[url_start_pos] == '=') {
++url_start_pos;
SkipWhiteSpace(refresh, url_start_pos, matcher);
} else {
url_start_pos = pos; // e.g. "Refresh: 0; url.html"
}
}
unsigned url_end_pos = len;
if (refresh[url_start_pos] == '"' || refresh[url_start_pos] == '\'') {
UChar quotation_mark = refresh[url_start_pos];
url_start_pos++;
while (url_end_pos > url_start_pos) {
url_end_pos--;
if (refresh[url_end_pos] == quotation_mark)
break;
}
// https://bugs.webkit.org/show_bug.cgi?id=27868
// Sometimes there is no closing quote for the end of the URL even though
// there was an opening quote. If we looped over the entire alleged URL
// string back to the opening quote, just go ahead and use everything
// after the opening quote instead.
if (url_end_pos == url_start_pos)
url_end_pos = len;
}
url = refresh.Substring(url_start_pos, url_end_pos - url_start_pos)
.StripWhiteSpace();
return true;
}
}
std::optional<base::Time> ParseDate(const String& value,
UseCounter& use_counter) {
const std::string utf8_value = value.Utf8();
std::optional<base::Time> maybe_parsed_time =
ParseDateFromNullTerminatedCharacters(utf8_value.c_str());
{
// Assumes UTC if timezone isn't specified.
std::optional<base::Time> maybe_parsed_time_fromutcstring;
base::Time parsed_time;
if (base::Time::FromUTCString(utf8_value.c_str(), &parsed_time)) {
maybe_parsed_time_fromutcstring = parsed_time;
}
if (maybe_parsed_time != maybe_parsed_time_fromutcstring) {
use_counter.CountUse(
WebFeature::kHttpParsersParseDateFromUTCStringDifferent);
}
}
{
// Assumes local time if timezone isn't specified.
std::optional<base::Time> maybe_parsed_time_fromstring;
base::Time parsed_time;
if (base::Time::FromString(utf8_value.c_str(), &parsed_time)) {
maybe_parsed_time_fromstring = parsed_time;
}
if (maybe_parsed_time != maybe_parsed_time_fromstring) {
use_counter.CountUse(
WebFeature::kHttpParsersParseDateFromStringDifferent);
}
}
return maybe_parsed_time;
}
AtomicString ExtractMIMETypeFromMediaType(const AtomicString& media_type) {
unsigned length = media_type.length();
unsigned pos = 0;
while (pos < length) {
UChar c = media_type[pos];
if (c != '\t' && c != ' ')
break;
++pos;
}
if (pos == length)
return media_type;
unsigned type_start = pos;
unsigned type_end = pos;
while (pos < length) {
UChar c = media_type[pos];
// While RFC 2616 does not allow it, other browsers allow multiple values in
// the HTTP media type header field, Content-Type. In such cases, the media
// type string passed here may contain the multiple values separated by
// commas. For now, this code ignores text after the first comma, which
// prevents it from simply failing to parse such types altogether. Later
// for better compatibility we could consider using the first or last valid
// MIME type instead.
// See https://bugs.webkit.org/show_bug.cgi?id=25352 for more discussion.
if (c == ',' || c == ';')
break;
if (c != '\t' && c != ' ')
type_end = pos + 1;
++pos;
}
// Use a StringView to create an AtomicString here so we do not allocate an
// intermediate string.
return AtomicString(
StringView(media_type, type_start, type_end - type_start));
}
bool IsHTTPTabOrSpace(UChar c) {
// https://fetch.spec.whatwg.org/#http-tab-or-space
return c == kSpaceCharacter || c == kTabulationCharacter;
}
// https://mimesniff.spec.whatwg.org/#minimize-a-supported-mime-type
// Note that `mime_type` should already have been stripped of parameters by
// `ExtractMIMETypeFromMediaType`.
AtomicString MinimizedMIMEType(const AtomicString& mime_type) {
StringUTF8Adaptor mime_utf8(mime_type);
if (IsSupportedJavascriptMimeType(mime_utf8.AsStringView())) {
return AtomicString("text/javascript");
}
if (IsJSONMimeType(mime_utf8.AsStringView())) {
return AtomicString("application/json");
}
if (IsSVGMimeType(mime_utf8.AsStringView())) {
return AtomicString("image/svg+xml");
}
if (IsXMLMimeType(mime_utf8.AsStringView())) {
return AtomicString("application/xml");
}
if (IsSupportedMimeType(mime_utf8.AsStringView())) {
return mime_type;
}
return g_empty_atom;
}
ContentTypeOptionsDisposition ParseContentTypeOptionsHeader(
const String& value) {
// The spec prescribes how to split the header value, and wants to include
// empty entries and to strip only particular type of whitespace.
// Spec: https://fetch.spec.whatwg.org/#x-content-type-options-header
// Test: external/wpt/fetch/nosniff/parsing-nosniff.window.html
if (value.empty())
return kContentTypeOptionsNone;
String decoded_and_split_header_value;
if (base::FeatureList::IsEnabled(
features::kLegacyParsingOfXContentTypeOptions)) {
// Header parsing, as used until M120.
Vector<String> results;
value.Split(",", results);
if (results.size()) {
decoded_and_split_header_value = results[0].StripWhiteSpace();
}
} else {
// Header parsing, as demanded by the spec.
Vector<String> results;
value.Split(",", /* allow_empty_entries */ true, results);
CHECK(results.size()); // allow_empty_entries guarantees >= 1 results.
decoded_and_split_header_value =
results[0].StripWhiteSpace(IsHTTPTabOrSpace);
}
if (EqualIgnoringASCIICase(decoded_and_split_header_value, "nosniff")) {
return kContentTypeOptionsNosniff;
}
return kContentTypeOptionsNone;
}
static bool IsCacheHeaderSeparator(UChar c) {
// See RFC 2616, Section 2.2
switch (c) {
case '(':
case ')':
case '<':
case '>':
case '@':
case ',':
case ';':
case ':':
case '\\':
case '"':
case '/':
case '[':
case ']':
case '?':
case '=':
case '{':
case '}':
case ' ':
case '\t':
return true;
default:
return false;
}
}
static bool IsControlCharacter(UChar c) {
return c < ' ' || c == 127;
}
static inline String TrimToNextSeparator(const String& str) {
return str.Substring(0, str.Find(IsCacheHeaderSeparator));
}
static void ParseCacheHeader(const String& header,
Vector<std::pair<String, String>>& result) {
const String safe_header = header.RemoveCharacters(IsControlCharacter);
wtf_size_t max = safe_header.length();
for (wtf_size_t pos = 0; pos < max; /* pos incremented in loop */) {
wtf_size_t next_comma_position = safe_header.find(',', pos);
wtf_size_t next_equal_sign_position = safe_header.find('=', pos);
if (next_equal_sign_position != kNotFound &&
(next_equal_sign_position < next_comma_position ||
next_comma_position == kNotFound)) {
// Get directive name, parse right hand side of equal sign, then add to
// map
String directive = TrimToNextSeparator(
safe_header.Substring(pos, next_equal_sign_position - pos)
.StripWhiteSpace());
pos += next_equal_sign_position - pos + 1;
String value = safe_header.Substring(pos, max - pos).StripWhiteSpace();
if (value[0] == '"') {
// The value is a quoted string
wtf_size_t next_double_quote_position = value.find('"', 1);
if (next_double_quote_position != kNotFound) {
// Store the value as a quoted string without quotes
result.push_back(std::pair<String, String>(
directive, value.Substring(1, next_double_quote_position - 1)
.StripWhiteSpace()));
pos += (safe_header.find('"', pos) - pos) +
next_double_quote_position + 1;
// Move past next comma, if there is one
wtf_size_t next_comma_position2 = safe_header.find(',', pos);
if (next_comma_position2 != kNotFound)
pos += next_comma_position2 - pos + 1;
else
return; // Parse error if there is anything left with no comma
} else {
// Parse error; just use the rest as the value
result.push_back(std::pair<String, String>(
directive,
TrimToNextSeparator(
value.Substring(1, value.length() - 1).StripWhiteSpace())));
return;
}
} else {
// The value is a token until the next comma
wtf_size_t next_comma_position2 = value.find(',');
if (next_comma_position2 != kNotFound) {
// The value is delimited by the next comma
result.push_back(std::pair<String, String>(
directive,
TrimToNextSeparator(
value.Substring(0, next_comma_position2).StripWhiteSpace())));
pos += (safe_header.find(',', pos) - pos) + 1;
} else {
// The rest is the value; no change to value needed
result.push_back(
std::pair<String, String>(directive, TrimToNextSeparator(value)));
return;
}
}
} else if (next_comma_position != kNotFound &&
(next_comma_position < next_equal_sign_position ||
next_equal_sign_position == kNotFound)) {
// Add directive to map with empty string as value
result.push_back(std::pair<String, String>(
TrimToNextSeparator(
safe_header.Substring(pos, next_comma_position - pos)
.StripWhiteSpace()),
""));
pos += next_comma_position - pos + 1;
} else {
// Add last directive to map with empty string as value
result.push_back(std::pair<String, String>(
TrimToNextSeparator(
safe_header.Substring(pos, max - pos).StripWhiteSpace()),
""));
return;
}
}
}
CacheControlHeader ParseCacheControlDirectives(
const AtomicString& cache_control_value,
const AtomicString& pragma_value) {
CacheControlHeader cache_control_header;
cache_control_header.parsed = true;
cache_control_header.max_age = std::nullopt;
cache_control_header.stale_while_revalidate = std::nullopt;
static const char kNoCacheDirective[] = "no-cache";
static const char kNoStoreDirective[] = "no-store";
static const char kMustRevalidateDirective[] = "must-revalidate";
static const char kMaxAgeDirective[] = "max-age";
static const char kStaleWhileRevalidateDirective[] = "stale-while-revalidate";
if (!cache_control_value.empty()) {
Vector<std::pair<String, String>> directives;
ParseCacheHeader(cache_control_value, directives);
wtf_size_t directives_size = directives.size();
for (wtf_size_t i = 0; i < directives_size; ++i) {
// RFC2616 14.9.1: A no-cache directive with a value is only meaningful
// for proxy caches. It should be ignored by a browser level cache.
if (EqualIgnoringASCIICase(directives[i].first, kNoCacheDirective) &&
directives[i].second.empty()) {
cache_control_header.contains_no_cache = true;
} else if (EqualIgnoringASCIICase(directives[i].first,
kNoStoreDirective)) {
cache_control_header.contains_no_store = true;
} else if (EqualIgnoringASCIICase(directives[i].first,
kMustRevalidateDirective)) {
cache_control_header.contains_must_revalidate = true;
} else if (EqualIgnoringASCIICase(directives[i].first,
kMaxAgeDirective)) {
if (cache_control_header.max_age) {
// First max-age directive wins if there are multiple ones.
continue;
}
bool ok;
double max_age = directives[i].second.ToDouble(&ok);
if (ok)
cache_control_header.max_age = base::Seconds(max_age);
} else if (EqualIgnoringASCIICase(directives[i].first,
kStaleWhileRevalidateDirective)) {
if (cache_control_header.stale_while_revalidate) {
// First stale-while-revalidate directive wins if there are multiple
// ones.
continue;
}
bool ok;
double stale_while_revalidate = directives[i].second.ToDouble(&ok);
if (ok) {
cache_control_header.stale_while_revalidate =
base::Seconds(stale_while_revalidate);
}
}
}
}
if (!cache_control_header.contains_no_cache) {
// Handle Pragma: no-cache
// This is deprecated and equivalent to Cache-control: no-cache
// Don't bother tokenizing the value, it is not important
cache_control_header.contains_no_cache =
pragma_value.LowerASCII().Contains(kNoCacheDirective);
}
return cache_control_header;
}
void ParseCommaDelimitedHeader(const String& header_value,
CommaDelimitedHeaderSet& header_set) {
Vector<String> results;
header_value.Split(",", results);
for (auto& value : results)
header_set.insert(value.StripWhiteSpace(IsWhitespace));
}
bool ParseMultipartHeadersFromBody(base::span<const uint8_t> bytes,
ResourceResponse* response,
wtf_size_t* end) {
DCHECK(IsMainThread());
size_t headers_end_pos =
net::HttpUtil::LocateEndOfAdditionalHeaders(bytes, 0);
if (headers_end_pos == std::string::npos)
return false;
*end = static_cast<wtf_size_t>(headers_end_pos);
// Eat headers and prepend a status line as is required by
// HttpResponseHeaders.
std::string headers("HTTP/1.1 200 OK\r\n");
headers.append(base::as_string_view(bytes.first(headers_end_pos)));
auto response_headers = base::MakeRefCounted<net::HttpResponseHeaders>(
net::HttpUtil::AssembleRawHeaders(headers));
std::string mime_type, charset;
response_headers->GetMimeTypeAndCharset(&mime_type, &charset);
response->SetMimeType(WebString::FromUTF8(mime_type));
response->SetTextEncodingName(WebString::FromUTF8(charset));
// Copy headers listed in replaceHeaders to the response.
for (const AtomicString& header : ReplaceHeaders()) {
std::string value;
StringUTF8Adaptor adaptor(header);
std::string_view header_string_piece(adaptor.AsStringView());
size_t iterator = 0;
response->ClearHttpHeaderField(header);
Vector<AtomicString> values;
while (response_headers->EnumerateHeader(&iterator, header_string_piece,
&value)) {
const AtomicString atomic_value = WebString::FromLatin1(value);
values.push_back(atomic_value);
}
response->AddHttpHeaderFieldWithMultipleValues(header, values);
}
return true;
}
bool ParseMultipartFormHeadersFromBody(base::span<const uint8_t> bytes,
HTTPHeaderMap* header_fields,
wtf_size_t* end) {
DCHECK_EQ(0u, header_fields->size());
size_t headers_end_pos =
net::HttpUtil::LocateEndOfAdditionalHeaders(bytes, 0);
if (headers_end_pos == std::string::npos)
return false;
*end = static_cast<wtf_size_t>(headers_end_pos);
// Eat headers and prepend a status line as is required by
// HttpResponseHeaders.
std::string headers("HTTP/1.1 200 OK\r\n");
headers.append(base::as_string_view(bytes.first(headers_end_pos)));
auto responseHeaders = base::MakeRefCounted<net::HttpResponseHeaders>(
net::HttpUtil::AssembleRawHeaders(headers));
// Copy selected header fields.
const AtomicString* const headerNamePointers[] = {
&http_names::kContentDisposition, &http_names::kContentType};
for (const AtomicString* headerNamePointer : headerNamePointers) {
StringUTF8Adaptor adaptor(*headerNamePointer);
size_t iterator = 0;
std::string_view headerNameStringPiece = adaptor.AsStringView();
std::string value;
while (responseHeaders->EnumerateHeader(&iterator, headerNameStringPiece,
&value)) {
header_fields->Add(*headerNamePointer, WebString::FromUTF8(value));
}
}
return true;
}
bool ParseContentRangeHeaderFor206(const String& content_range,
int64_t* first_byte_position,
int64_t* last_byte_position,
int64_t* instance_length) {
return net::HttpUtil::ParseContentRangeHeaderFor206(
StringUTF8Adaptor(content_range).AsStringView(), first_byte_position,
last_byte_position, instance_length);
}
std::unique_ptr<ServerTimingHeaderVector> ParseServerTimingHeader(
const String& headerValue) {
std::unique_ptr<ServerTimingHeaderVector> headers =
std::make_unique<ServerTimingHeaderVector>();
if (!headerValue.IsNull()) {
DCHECK(headerValue.Is8Bit());
HeaderFieldTokenizer tokenizer(headerValue);
while (!tokenizer.IsConsumed()) {
StringView name;
if (!tokenizer.ConsumeToken(ParsedContentType::Mode::kNormal, name)) {
break;
}
ServerTimingHeader header(name.ToString());
tokenizer.ConsumeBeforeAnyCharMatch({',', ';'});
while (tokenizer.Consume(';')) {
StringView parameter_name;
if (!tokenizer.ConsumeToken(ParsedContentType::Mode::kNormal,
parameter_name)) {
break;
}
String value = "";
if (tokenizer.Consume('=')) {
tokenizer.ConsumeTokenOrQuotedString(ParsedContentType::Mode::kNormal,
value);
tokenizer.ConsumeBeforeAnyCharMatch({',', ';'});
}
header.SetParameter(parameter_name, value);
}
headers->push_back(std::make_unique<ServerTimingHeader>(header));
if (!tokenizer.Consume(',')) {
break;
}
}
}
return headers;
}
// This function is simply calling network::ParseHeaders and convert from/to
// blink types. It is used for navigation requests served by a ServiceWorker. It
// is tested by FetchResponseDataTest.ContentSecurityPolicy.
network::mojom::blink::ParsedHeadersPtr ParseHeaders(const String& raw_headers,
const KURL& url) {
auto headers = base::MakeRefCounted<net::HttpResponseHeaders>(
net::HttpUtil::AssembleRawHeaders(raw_headers.Latin1()));
return network::mojom::ConvertToBlink(
network::PopulateParsedHeaders(headers.get(), GURL(url)));
}
// This function is simply calling network::ParseContentSecurityPolicies and
// converting from/to blink types.
Vector<network::mojom::blink::ContentSecurityPolicyPtr>
ParseContentSecurityPolicies(
const String& raw_policies,
network::mojom::blink::ContentSecurityPolicyType type,
network::mojom::blink::ContentSecurityPolicySource source,
const KURL& base_url) {
return network::mojom::ConvertToBlink(network::ParseContentSecurityPolicies(
raw_policies.Utf8(), type, source, GURL(base_url)));
}
// This function is simply calling network::ParseContentSecurityPolicies and
// converting from/to blink types.
Vector<network::mojom::blink::ContentSecurityPolicyPtr>
ParseContentSecurityPolicies(
const String& raw_policies,
network::mojom::blink::ContentSecurityPolicyType type,
network::mojom::blink::ContentSecurityPolicySource source,
const SecurityOrigin& self_origin) {
const SecurityOrigin* precursor_origin =
self_origin.GetOriginOrPrecursorOriginIfOpaque();
KURL base_url;
base_url.SetProtocol(precursor_origin->Protocol());
base_url.SetHost(precursor_origin->Host());
base_url.SetPort(precursor_origin->Port());
return ParseContentSecurityPolicies(raw_policies, type, source, base_url);
}
Vector<network::mojom::blink::ContentSecurityPolicyPtr>
ParseContentSecurityPolicyHeaders(
const ContentSecurityPolicyResponseHeaders& headers) {
Vector<network::mojom::blink::ContentSecurityPolicyPtr> parsed_csps =
ParseContentSecurityPolicies(
headers.ContentSecurityPolicy(),
network::mojom::blink::ContentSecurityPolicyType::kEnforce,
network::mojom::blink::ContentSecurityPolicySource::kHTTP,
headers.ResponseUrl());
Vector<network::mojom::blink::ContentSecurityPolicyPtr> report_only_csps =
ParseContentSecurityPolicies(
headers.ContentSecurityPolicyReportOnly(),
network::mojom::blink::ContentSecurityPolicyType::kReport,
network::mojom::blink::ContentSecurityPolicySource::kHTTP,
headers.ResponseUrl());
parsed_csps.AppendRange(std::make_move_iterator(report_only_csps.begin()),
std::make_move_iterator(report_only_csps.end()));
return parsed_csps;
}
network::mojom::blink::SRIMessageSignaturesPtr
ParseSRIMessageSignaturesFromHeaders(const String& raw_headers) {
auto headers = base::MakeRefCounted<net::HttpResponseHeaders>(
net::HttpUtil::AssembleRawHeaders(raw_headers.Latin1()));
return network::mojom::ConvertToBlink(
network::ParseSRIMessageSignaturesFromHeaders(*headers));
}
network::mojom::blink::TimingAllowOriginPtr ParseTimingAllowOrigin(
const String& header_value) {
return network::mojom::ConvertToBlink(
network::ParseTimingAllowOrigin(header_value.Latin1()));
}
network::mojom::blink::NoVarySearchWithParseErrorPtr ParseNoVarySearch(
const String& header_value) {
// Parse the No-Vary-Search hint value by making a header in order to
// reuse existing code.
auto headers =
base::MakeRefCounted<net::HttpResponseHeaders>("HTTP/1.1 200 OK\n");
headers->AddHeader("No-Vary-Search", header_value.Utf8());
auto parsed_nvs_with_error =
ConvertToBlink(network::ParseNoVarySearch(*headers));
// `parsed_nvs_with_error` cannot be null here. Because we know the header is
// available, we will get a parse error or a No-Vary-Search.
CHECK(parsed_nvs_with_error);
return parsed_nvs_with_error;
}
String GetNoVarySearchHintConsoleMessage(
const network::mojom::NoVarySearchParseError& error) {
return network::mojom::ConvertToBlink(
network::GetNoVarySearchHintConsoleMessage(error));
}
} // namespace blink
|