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 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
|
/*
* Copyright (C) 2011, 2012 Google Inc. All rights reserved.
* Copyright (C) 2013, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of Google Inc. 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 THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
* OWNER OR 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 "core/loader/DocumentThreadableLoader.h"
#include "core/dom/Document.h"
#include "core/dom/TaskRunnerHelper.h"
#include "core/fetch/CrossOriginAccessControl.h"
#include "core/fetch/FetchRequest.h"
#include "core/fetch/FetchUtils.h"
#include "core/fetch/Resource.h"
#include "core/fetch/ResourceFetcher.h"
#include "core/frame/FrameConsole.h"
#include "core/frame/LocalFrame.h"
#include "core/inspector/InspectorInstrumentation.h"
#include "core/inspector/InspectorTraceEvents.h"
#include "core/loader/CrossOriginPreflightResultCache.h"
#include "core/loader/DocumentThreadableLoaderClient.h"
#include "core/loader/FrameLoader.h"
#include "core/loader/FrameLoaderClient.h"
#include "core/loader/ThreadableLoaderClient.h"
#include "core/page/ChromeClient.h"
#include "core/page/Page.h"
#include "platform/SharedBuffer.h"
#include "platform/network/ResourceRequest.h"
#include "platform/weborigin/SchemeRegistry.h"
#include "platform/weborigin/SecurityOrigin.h"
#include "platform/weborigin/SecurityPolicy.h"
#include "public/platform/Platform.h"
#include "public/platform/WebURLRequest.h"
#include "wtf/Assertions.h"
#include "wtf/PtrUtil.h"
#include "wtf/WeakPtr.h"
#include "wtf/debug/Alias.h"
#include <memory>
namespace blink {
namespace {
class EmptyDataHandle final : public WebDataConsumerHandle {
private:
class EmptyDataReader final : public WebDataConsumerHandle::Reader {
public:
explicit EmptyDataReader(WebDataConsumerHandle::Client* client)
: m_factory(this) {
Platform::current()->currentThread()->getWebTaskRunner()->postTask(
BLINK_FROM_HERE,
WTF::bind(&EmptyDataReader::notify, m_factory.createWeakPtr(),
WTF::unretained(client)));
}
private:
Result beginRead(const void** buffer,
WebDataConsumerHandle::Flags,
size_t* available) override {
*available = 0;
*buffer = nullptr;
return Done;
}
Result endRead(size_t) override {
return WebDataConsumerHandle::UnexpectedError;
}
void notify(WebDataConsumerHandle::Client* client) {
client->didGetReadable();
}
WeakPtrFactory<EmptyDataReader> m_factory;
};
std::unique_ptr<Reader> obtainReader(Client* client) override {
return WTF::makeUnique<EmptyDataReader>(client);
}
const char* debugName() const override { return "EmptyDataHandle"; }
};
// No-CORS requests are allowed for all these contexts, and plugin contexts with
// private permission when we set skipServiceWorker flag in PepperURLLoaderHost.
bool IsNoCORSAllowedContext(
WebURLRequest::RequestContext context,
WebURLRequest::SkipServiceWorker skipServiceWorker) {
switch (context) {
case WebURLRequest::RequestContextAudio:
case WebURLRequest::RequestContextVideo:
case WebURLRequest::RequestContextObject:
case WebURLRequest::RequestContextFavicon:
case WebURLRequest::RequestContextImage:
case WebURLRequest::RequestContextScript:
return true;
case WebURLRequest::RequestContextPlugin:
return skipServiceWorker == WebURLRequest::SkipServiceWorker::All;
default:
return false;
}
}
// TODO(yhirano): Remove these when https://crbug.com/667254 is fixed.
void NEVER_INLINE crashWithBlobBytesConsumer() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithEventSource() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithFetchManager() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithFileReaderLoader() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithMainThreadLoaderHolder() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithNotificationImageLoader() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithWebAssociatedURLLoader() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithWorkerScriptLoader() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithXHR() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
void NEVER_INLINE crashWithTesting() {
const char* name = __func__;
WTF::debug::alias(&name);
CRASH();
}
} // namespace
// Max number of CORS redirects handled in DocumentThreadableLoader. Same number
// as net/url_request/url_request.cc, and same number as
// https://fetch.spec.whatwg.org/#concept-http-fetch, Step 4.
// FIXME: currently the number of redirects is counted and limited here and in
// net/url_request/url_request.cc separately.
static const int kMaxCORSRedirects = 20;
void DocumentThreadableLoader::loadResourceSynchronously(
Document& document,
const ResourceRequest& request,
ThreadableLoaderClient& client,
const ThreadableLoaderOptions& options,
const ResourceLoaderOptions& resourceLoaderOptions,
ClientSpec clientSpec) {
(new DocumentThreadableLoader(document, &client, LoadSynchronously, options,
resourceLoaderOptions, clientSpec))
->start(request);
}
DocumentThreadableLoader* DocumentThreadableLoader::create(
Document& document,
ThreadableLoaderClient* client,
const ThreadableLoaderOptions& options,
const ResourceLoaderOptions& resourceLoaderOptions,
ClientSpec clientSpec) {
return new DocumentThreadableLoader(document, client, LoadAsynchronously,
options, resourceLoaderOptions,
clientSpec);
}
DocumentThreadableLoader::DocumentThreadableLoader(
Document& document,
ThreadableLoaderClient* client,
BlockingBehavior blockingBehavior,
const ThreadableLoaderOptions& options,
const ResourceLoaderOptions& resourceLoaderOptions,
ClientSpec clientSpec)
: m_client(client),
m_clientSpec(clientSpec),
m_document(&document),
m_options(options),
m_resourceLoaderOptions(resourceLoaderOptions),
m_forceDoNotAllowStoredCredentials(false),
m_securityOrigin(m_resourceLoaderOptions.securityOrigin),
m_sameOriginRequest(false),
m_isUsingDataConsumerHandle(false),
m_async(blockingBehavior == LoadAsynchronously),
m_requestContext(WebURLRequest::RequestContextUnspecified),
m_timeoutTimer(TaskRunnerHelper::get(TaskType::Networking, &document),
this,
&DocumentThreadableLoader::didTimeout),
m_requestStartedSeconds(0.0),
m_corsRedirectLimit(m_options.crossOriginRequestPolicy == UseAccessControl
? kMaxCORSRedirects
: 0),
m_redirectMode(WebURLRequest::FetchRedirectModeFollow),
m_overrideReferrer(false) {
DCHECK(client);
}
void DocumentThreadableLoader::start(const ResourceRequest& request) {
// Setting an outgoing referer is only supported in the async code path.
DCHECK(m_async || request.httpReferrer().isEmpty());
m_sameOriginRequest =
getSecurityOrigin()->canRequestNoSuborigin(request.url());
m_requestContext = request.requestContext();
m_redirectMode = request.fetchRedirectMode();
if (!m_sameOriginRequest &&
m_options.crossOriginRequestPolicy == DenyCrossOriginRequests) {
InspectorInstrumentation::
documentThreadableLoaderFailedToStartLoadingForClient(m_document,
m_client);
ThreadableLoaderClient* client = m_client;
clear();
client->didFail(ResourceError(errorDomainBlinkInternal, 0,
request.url().getString(),
"Cross origin requests are not supported."));
return;
}
m_requestStartedSeconds = monotonicallyIncreasingTime();
// Save any headers on the request here. If this request redirects
// cross-origin, we cancel the old request create a new one, and copy these
// headers.
m_requestHeaders = request.httpHeaderFields();
// DocumentThreadableLoader is used by all javascript initiated fetch, so we
// use this chance to record non-GET fetch script requests. However, this is
// based on the following assumptions, so please be careful when adding
// similar logic:
// - ThreadableLoader is used as backend for all javascript initiated network
// fetches.
// - Note that ThreadableLoader is also used for non-network fetch such as
// FileReaderLoader. However it emulates GET method so signal is not
// recorded here.
// - ThreadableLoader w/ non-GET request is only created from javascript
// initiated fetch.
// - Some non-script initiated fetches such as WorkerScriptLoader also use
// ThreadableLoader, but they are guaranteed to use GET method.
if (request.httpMethod() != HTTPNames::GET) {
if (Page* page = m_document->page())
page->chromeClient().didObserveNonGetFetchFromScript();
}
ResourceRequest newRequest(request);
if (m_requestContext != WebURLRequest::RequestContextFetch) {
// When the request context is not "fetch", |crossOriginRequestPolicy|
// represents the fetch request mode, and |credentialsRequested| represents
// the fetch credentials mode. So we set those flags here so that we can see
// the correct request mode and credentials mode in the service worker's
// fetch event handler.
switch (m_options.crossOriginRequestPolicy) {
case DenyCrossOriginRequests:
newRequest.setFetchRequestMode(
WebURLRequest::FetchRequestModeSameOrigin);
break;
case UseAccessControl:
if (m_options.preflightPolicy == ForcePreflight) {
newRequest.setFetchRequestMode(
WebURLRequest::FetchRequestModeCORSWithForcedPreflight);
} else {
newRequest.setFetchRequestMode(WebURLRequest::FetchRequestModeCORS);
}
break;
case AllowCrossOriginRequests:
SECURITY_CHECK(IsNoCORSAllowedContext(m_requestContext,
request.skipServiceWorker()));
newRequest.setFetchRequestMode(WebURLRequest::FetchRequestModeNoCORS);
break;
}
if (m_resourceLoaderOptions.allowCredentials == AllowStoredCredentials) {
newRequest.setFetchCredentialsMode(
WebURLRequest::FetchCredentialsModeInclude);
} else {
newRequest.setFetchCredentialsMode(
WebURLRequest::FetchCredentialsModeSameOrigin);
}
}
// We assume that ServiceWorker is skipped for sync requests and unsupported
// protocol requests by content/ code.
if (m_async &&
request.skipServiceWorker() == WebURLRequest::SkipServiceWorker::None &&
SchemeRegistry::shouldTreatURLSchemeAsAllowingServiceWorkers(
request.url().protocol()) &&
m_document->fetcher()->isControlledByServiceWorker()) {
if (newRequest.fetchRequestMode() == WebURLRequest::FetchRequestModeCORS ||
newRequest.fetchRequestMode() ==
WebURLRequest::FetchRequestModeCORSWithForcedPreflight) {
m_fallbackRequestForServiceWorker = ResourceRequest(request);
// m_fallbackRequestForServiceWorker is used when a regular controlling
// service worker doesn't handle a cross origin request. When this happens
// we still want to give foreign fetch a chance to handle the request, so
// only skip the controlling service worker for the fallback request. This
// is currently safe because of http://crbug.com/604084 the
// wasFallbackRequiredByServiceWorker flag is never set when foreign fetch
// handled a request.
m_fallbackRequestForServiceWorker.setSkipServiceWorker(
WebURLRequest::SkipServiceWorker::Controlling);
}
loadRequest(newRequest, m_resourceLoaderOptions);
return;
}
dispatchInitialRequest(newRequest);
}
void DocumentThreadableLoader::dispatchInitialRequest(
const ResourceRequest& request) {
if (!request.isExternalRequest() &&
(m_sameOriginRequest ||
m_options.crossOriginRequestPolicy == AllowCrossOriginRequests)) {
loadRequest(request, m_resourceLoaderOptions);
return;
}
DCHECK(m_options.crossOriginRequestPolicy == UseAccessControl ||
request.isExternalRequest());
makeCrossOriginAccessRequest(request);
}
void DocumentThreadableLoader::prepareCrossOriginRequest(
ResourceRequest& request) {
if (getSecurityOrigin())
request.setHTTPOrigin(getSecurityOrigin());
if (m_overrideReferrer)
request.setHTTPReferrer(m_referrerAfterRedirect);
}
void DocumentThreadableLoader::makeCrossOriginAccessRequest(
const ResourceRequest& request) {
DCHECK(m_options.crossOriginRequestPolicy == UseAccessControl ||
request.isExternalRequest());
DCHECK(m_client);
DCHECK(!resource());
// Cross-origin requests are only allowed certain registered schemes. We would
// catch this when checking response headers later, but there is no reason to
// send a request, preflighted or not, that's guaranteed to be denied.
if (!SchemeRegistry::shouldTreatURLSchemeAsCORSEnabled(
request.url().protocol())) {
InspectorInstrumentation::
documentThreadableLoaderFailedToStartLoadingForClient(m_document,
m_client);
dispatchDidFailAccessControlCheck(ResourceError(
errorDomainBlinkInternal, 0, request.url().getString(),
"Cross origin requests are only supported for protocol schemes: " +
SchemeRegistry::listOfCORSEnabledURLSchemes() + "."));
return;
}
// Non-secure origins may not make "external requests":
// https://mikewest.github.io/cors-rfc1918/#integration-fetch
if (!document().isSecureContext() && request.isExternalRequest()) {
dispatchDidFailAccessControlCheck(
ResourceError(errorDomainBlinkInternal, 0, request.url().getString(),
"Requests to internal network resources are not allowed "
"from non-secure contexts (see https://goo.gl/Y0ZkNV). "
"This is an experimental restriction which is part of "
"'https://mikewest.github.io/cors-rfc1918/'."));
return;
}
ResourceRequest crossOriginRequest(request);
ResourceLoaderOptions crossOriginOptions(m_resourceLoaderOptions);
crossOriginRequest.removeCredentials();
crossOriginRequest.setAllowStoredCredentials(effectiveAllowCredentials() ==
AllowStoredCredentials);
// We update the credentials mode according to effectiveAllowCredentials()
// here for backward compatibility. But this is not correct.
// FIXME: We should set it in the caller of DocumentThreadableLoader.
crossOriginRequest.setFetchCredentialsMode(
effectiveAllowCredentials() == AllowStoredCredentials
? WebURLRequest::FetchCredentialsModeInclude
: WebURLRequest::FetchCredentialsModeOmit);
// We use isSimpleOrForbiddenRequest() here since |request| may have been
// modified in the process of loading (not from the user's input). For
// example, referrer. We need to accept them. For security, we must reject
// forbidden headers/methods at the point we accept user's input. Not here.
if (!request.isExternalRequest() &&
((m_options.preflightPolicy == ConsiderPreflight &&
FetchUtils::isSimpleOrForbiddenRequest(request.httpMethod(),
request.httpHeaderFields())) ||
m_options.preflightPolicy == PreventPreflight)) {
prepareCrossOriginRequest(crossOriginRequest);
loadRequest(crossOriginRequest, crossOriginOptions);
} else {
// Explicitly set the SkipServiceWorker flag here. Although the page is not
// controlled by a SW at this point, a new SW may be controlling the page
// when this request gets sent later. We should not send the actual request
// to the SW. https://crbug.com/604583
// Similarly we don't want any requests that could involve a CORS preflight
// to get intercepted by a foreign fetch service worker, even if we have the
// result of the preflight cached already. https://crbug.com/674370
crossOriginRequest.setSkipServiceWorker(
WebURLRequest::SkipServiceWorker::All);
bool shouldForcePreflight =
request.isExternalRequest() ||
InspectorInstrumentation::shouldForceCORSPreflight(m_document);
bool canSkipPreflight =
CrossOriginPreflightResultCache::shared().canSkipPreflight(
getSecurityOrigin()->toString(), crossOriginRequest.url(),
effectiveAllowCredentials(), crossOriginRequest.httpMethod(),
crossOriginRequest.httpHeaderFields());
if (canSkipPreflight && !shouldForcePreflight) {
prepareCrossOriginRequest(crossOriginRequest);
loadRequest(crossOriginRequest, crossOriginOptions);
} else {
ResourceRequest preflightRequest =
createAccessControlPreflightRequest(crossOriginRequest);
// TODO(tyoshino): Call prepareCrossOriginRequest(preflightRequest) to
// also set the referrer header.
if (getSecurityOrigin())
preflightRequest.setHTTPOrigin(getSecurityOrigin());
// Create a ResourceLoaderOptions for preflight.
ResourceLoaderOptions preflightOptions = crossOriginOptions;
preflightOptions.allowCredentials = DoNotAllowStoredCredentials;
m_actualRequest = crossOriginRequest;
m_actualOptions = crossOriginOptions;
loadRequest(preflightRequest, preflightOptions);
}
}
}
DocumentThreadableLoader::~DocumentThreadableLoader() {
if (m_client) {
auto clientSpec = m_clientSpec;
WTF::debug::alias(&clientSpec);
switch (m_clientSpec) {
case ClientSpec::kBlobBytesConsumer:
crashWithBlobBytesConsumer();
break;
case ClientSpec::kEventSource:
crashWithEventSource();
break;
case ClientSpec::kFetchManager:
crashWithFetchManager();
break;
case ClientSpec::kFileReaderLoader:
crashWithFileReaderLoader();
break;
case ClientSpec::kMainThreadLoaderHolder:
crashWithMainThreadLoaderHolder();
break;
case ClientSpec::kNotificationImageLoader:
crashWithNotificationImageLoader();
break;
case ClientSpec::kWebAssociatedURLLoader:
crashWithWebAssociatedURLLoader();
break;
case ClientSpec::kWorkerScriptLoader:
crashWithWorkerScriptLoader();
break;
case ClientSpec::kXHR:
crashWithXHR();
break;
case ClientSpec::kTesting:
crashWithTesting();
break;
}
}
DCHECK(!m_resource);
}
void DocumentThreadableLoader::overrideTimeout(
unsigned long timeoutMilliseconds) {
DCHECK(m_async);
// |m_requestStartedSeconds| == 0.0 indicates loading is already finished and
// |m_timeoutTimer| is already stopped, and thus we do nothing for such cases.
// See https://crbug.com/551663 for details.
if (m_requestStartedSeconds <= 0.0)
return;
m_timeoutTimer.stop();
// At the time of this method's implementation, it is only ever called by
// XMLHttpRequest, when the timeout attribute is set after sending the
// request.
//
// The XHR request says to resolve the time relative to when the request
// was initially sent, however other uses of this method may need to
// behave differently, in which case this should be re-arranged somehow.
if (timeoutMilliseconds) {
double elapsedTime =
monotonicallyIncreasingTime() - m_requestStartedSeconds;
double nextFire = timeoutMilliseconds / 1000.0;
double resolvedTime = std::max(nextFire - elapsedTime, 0.0);
m_timeoutTimer.startOneShot(resolvedTime, BLINK_FROM_HERE);
}
}
void DocumentThreadableLoader::cancel() {
// Cancel can re-enter, and therefore |resource()| might be null here as a
// result.
if (!m_client || !resource()) {
clear();
return;
}
// FIXME: This error is sent to the client in didFail(), so it should not be
// an internal one. Use FrameLoaderClient::cancelledError() instead.
ResourceError error(errorDomainBlinkInternal, 0, resource()->url(),
"Load cancelled");
error.setIsCancellation(true);
dispatchDidFail(error);
}
void DocumentThreadableLoader::setDefersLoading(bool value) {
if (resource())
resource()->setDefersLoading(value);
}
void DocumentThreadableLoader::clear() {
m_client = nullptr;
m_timeoutTimer.stop();
m_requestStartedSeconds = 0.0;
clearResource();
}
// In this method, we can clear |request| to tell content::WebURLLoaderImpl of
// Chromium not to follow the redirect. This works only when this method is
// called by RawResource::willSendRequest(). If called by
// RawResource::didAddClient(), clearing |request| won't be propagated to
// content::WebURLLoaderImpl. So, this loader must also get detached from the
// resource by calling clearResource().
bool DocumentThreadableLoader::redirectReceived(
Resource* resource,
const ResourceRequest& request,
const ResourceResponse& redirectResponse) {
DCHECK(m_client);
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_checker.redirectReceived();
if (!m_actualRequest.isNull()) {
reportResponseReceived(resource->identifier(), redirectResponse);
handlePreflightFailure(redirectResponse.url().getString(),
"Response for preflight is invalid (redirect)");
return false;
}
if (m_redirectMode == WebURLRequest::FetchRedirectModeManual) {
// We use |m_redirectMode| to check the original redirect mode. |request| is
// a new request for redirect. So we don't set the redirect mode of it in
// WebURLLoaderImpl::Context::OnReceivedRedirect().
DCHECK(request.useStreamOnResponse());
// There is no need to read the body of redirect response because there is
// no way to read the body of opaque-redirect filtered response's internal
// response.
// TODO(horo): If we support any API which expose the internal body, we will
// have to read the body. And also HTTPCache changes will be needed because
// it doesn't store the body of redirect responses.
responseReceived(resource, redirectResponse,
WTF::makeUnique<EmptyDataHandle>());
if (m_client) {
DCHECK(m_actualRequest.isNull());
notifyFinished(resource);
}
return false;
}
if (m_redirectMode == WebURLRequest::FetchRedirectModeError) {
ThreadableLoaderClient* client = m_client;
clear();
client->didFailRedirectCheck();
return false;
}
// Allow same origin requests to continue after allowing clients to audit the
// redirect.
if (isAllowedRedirect(request.url())) {
m_client->didReceiveRedirectTo(request.url());
if (m_client->isDocumentThreadableLoaderClient()) {
return static_cast<DocumentThreadableLoaderClient*>(m_client)
->willFollowRedirect(request, redirectResponse);
}
return true;
}
if (m_corsRedirectLimit <= 0) {
ThreadableLoaderClient* client = m_client;
clear();
client->didFailRedirectCheck();
return false;
}
--m_corsRedirectLimit;
InspectorInstrumentation::didReceiveCORSRedirectResponse(
document().frame(), resource->identifier(),
document().frame()->loader().documentLoader(), redirectResponse,
resource);
String accessControlErrorDescription;
CrossOriginAccessControl::RedirectStatus redirectStatus =
CrossOriginAccessControl::checkRedirectLocation(request.url());
bool allowRedirect =
redirectStatus == CrossOriginAccessControl::kRedirectSuccess;
if (!allowRedirect) {
StringBuilder builder;
builder.append("Redirect from '");
builder.append(redirectResponse.url().getString());
builder.append("' has been blocked by CORS policy: ");
CrossOriginAccessControl::redirectErrorString(builder, redirectStatus,
request.url());
accessControlErrorDescription = builder.toString();
} else if (!m_sameOriginRequest) {
// The redirect response must pass the access control check if the original
// request was not same-origin.
CrossOriginAccessControl::AccessStatus corsStatus =
CrossOriginAccessControl::checkAccess(
redirectResponse, effectiveAllowCredentials(), getSecurityOrigin());
allowRedirect = corsStatus == CrossOriginAccessControl::kAccessAllowed;
if (!allowRedirect) {
StringBuilder builder;
builder.append("Redirect from '");
builder.append(redirectResponse.url().getString());
builder.append("' to '");
builder.append(request.url().getString());
builder.append("' has been blocked by CORS policy: ");
CrossOriginAccessControl::accessControlErrorString(
builder, corsStatus, redirectResponse, getSecurityOrigin(),
m_requestContext);
accessControlErrorDescription = builder.toString();
}
}
if (!allowRedirect) {
dispatchDidFailAccessControlCheck(ResourceError(
errorDomainBlinkInternal, 0, redirectResponse.url().getString(),
accessControlErrorDescription));
return false;
}
m_client->didReceiveRedirectTo(request.url());
// FIXME: consider combining this with CORS redirect handling performed by
// CrossOriginAccessControl::handleRedirect().
clearResource();
// If the original request wasn't same-origin, then if the request URL origin
// is not same origin with the original URL origin, set the source origin to a
// globally unique identifier. (If the original request was same-origin, the
// origin of the new request should be the original URL origin.)
if (!m_sameOriginRequest) {
RefPtr<SecurityOrigin> originalOrigin =
SecurityOrigin::create(redirectResponse.url());
RefPtr<SecurityOrigin> requestOrigin =
SecurityOrigin::create(request.url());
if (!originalOrigin->isSameSchemeHostPort(requestOrigin.get()))
m_securityOrigin = SecurityOrigin::createUnique();
}
// Force any subsequent requests to use these checks.
m_sameOriginRequest = false;
// Since the request is no longer same-origin, if the user didn't request
// credentials in the first place, update our state so we neither request them
// nor expect they must be allowed.
if (m_resourceLoaderOptions.credentialsRequested ==
ClientDidNotRequestCredentials)
m_forceDoNotAllowStoredCredentials = true;
// Save the referrer to use when following the redirect.
m_overrideReferrer = true;
m_referrerAfterRedirect =
Referrer(request.httpReferrer(), request.getReferrerPolicy());
ResourceRequest crossOriginRequest(request);
// Remove any headers that may have been added by the network layer that cause
// access control to fail.
crossOriginRequest.clearHTTPReferrer();
crossOriginRequest.clearHTTPOrigin();
crossOriginRequest.clearHTTPUserAgent();
// Add any request headers which we previously saved from the
// original request.
for (const auto& header : m_requestHeaders)
crossOriginRequest.setHTTPHeaderField(header.key, header.value);
makeCrossOriginAccessRequest(crossOriginRequest);
return false;
}
void DocumentThreadableLoader::redirectBlocked() {
m_checker.redirectBlocked();
// Tells the client that a redirect was received but not followed (for an
// unknown reason).
ThreadableLoaderClient* client = m_client;
clear();
client->didFailRedirectCheck();
}
void DocumentThreadableLoader::dataSent(Resource* resource,
unsigned long long bytesSent,
unsigned long long totalBytesToBeSent) {
DCHECK(m_client);
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_checker.dataSent();
m_client->didSendData(bytesSent, totalBytesToBeSent);
}
void DocumentThreadableLoader::dataDownloaded(Resource* resource,
int dataLength) {
DCHECK(m_client);
DCHECK_EQ(resource, this->resource());
DCHECK(m_actualRequest.isNull());
DCHECK(m_async);
m_checker.dataDownloaded();
m_client->didDownloadData(dataLength);
}
void DocumentThreadableLoader::didReceiveResourceTiming(
Resource* resource,
const ResourceTimingInfo& info) {
DCHECK(m_client);
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_client->didReceiveResourceTiming(info);
}
void DocumentThreadableLoader::responseReceived(
Resource* resource,
const ResourceResponse& response,
std::unique_ptr<WebDataConsumerHandle> handle) {
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_checker.responseReceived();
if (handle)
m_isUsingDataConsumerHandle = true;
handleResponse(resource->identifier(), response, std::move(handle));
}
void DocumentThreadableLoader::handlePreflightResponse(
const ResourceResponse& response) {
String accessControlErrorDescription;
CrossOriginAccessControl::AccessStatus corsStatus =
CrossOriginAccessControl::checkAccess(
response, effectiveAllowCredentials(), getSecurityOrigin());
if (corsStatus != CrossOriginAccessControl::kAccessAllowed) {
StringBuilder builder;
builder.append(
"Response to preflight request doesn't pass access "
"control check: ");
CrossOriginAccessControl::accessControlErrorString(
builder, corsStatus, response, getSecurityOrigin(), m_requestContext);
handlePreflightFailure(response.url().getString(), builder.toString());
return;
}
CrossOriginAccessControl::PreflightStatus preflightStatus =
CrossOriginAccessControl::checkPreflight(response);
if (preflightStatus != CrossOriginAccessControl::kPreflightSuccess) {
StringBuilder builder;
CrossOriginAccessControl::preflightErrorString(builder, preflightStatus,
response);
handlePreflightFailure(response.url().getString(), builder.toString());
return;
}
if (m_actualRequest.isExternalRequest()) {
CrossOriginAccessControl::PreflightStatus externalPreflightStatus =
CrossOriginAccessControl::checkExternalPreflight(response);
if (externalPreflightStatus !=
CrossOriginAccessControl::kPreflightSuccess) {
StringBuilder builder;
CrossOriginAccessControl::preflightErrorString(
builder, externalPreflightStatus, response);
handlePreflightFailure(response.url().getString(), builder.toString());
return;
}
}
std::unique_ptr<CrossOriginPreflightResultCacheItem> preflightResult =
WTF::wrapUnique(
new CrossOriginPreflightResultCacheItem(effectiveAllowCredentials()));
if (!preflightResult->parse(response, accessControlErrorDescription) ||
!preflightResult->allowsCrossOriginMethod(
m_actualRequest.httpMethod(), accessControlErrorDescription) ||
!preflightResult->allowsCrossOriginHeaders(
m_actualRequest.httpHeaderFields(), accessControlErrorDescription)) {
handlePreflightFailure(response.url().getString(),
accessControlErrorDescription);
return;
}
CrossOriginPreflightResultCache::shared().appendEntry(
getSecurityOrigin()->toString(), m_actualRequest.url(),
std::move(preflightResult));
}
void DocumentThreadableLoader::reportResponseReceived(
unsigned long identifier,
const ResourceResponse& response) {
LocalFrame* frame = document().frame();
// We are seeing crashes caused by nullptr (crbug.com/578849). But the frame
// must be set here. TODO(horo): Find the root cause of the unset frame.
DCHECK(frame);
if (!frame)
return;
TRACE_EVENT1(
"devtools.timeline", "ResourceReceiveResponse", "data",
InspectorReceiveResponseEvent::data(identifier, frame, response));
DocumentLoader* loader = frame->loader().documentLoader();
InspectorInstrumentation::didReceiveResourceResponse(
frame, identifier, loader, response, resource());
frame->console().reportResourceResponseReceived(loader, identifier, response);
}
void DocumentThreadableLoader::handleResponse(
unsigned long identifier,
const ResourceResponse& response,
std::unique_ptr<WebDataConsumerHandle> handle) {
DCHECK(m_client);
if (!m_actualRequest.isNull()) {
reportResponseReceived(identifier, response);
handlePreflightResponse(response);
return;
}
if (response.wasFetchedViaServiceWorker()) {
if (response.wasFetchedViaForeignFetch())
UseCounter::count(m_document, UseCounter::ForeignFetchInterception);
if (response.wasFallbackRequiredByServiceWorker()) {
// At this point we must have m_fallbackRequestForServiceWorker. (For
// SharedWorker the request won't be CORS or CORS-with-preflight,
// therefore fallback-to-network is handled in the browser process when
// the ServiceWorker does not call respondWith().)
DCHECK(!m_fallbackRequestForServiceWorker.isNull());
reportResponseReceived(identifier, response);
loadFallbackRequestForServiceWorker();
return;
}
m_fallbackRequestForServiceWorker = ResourceRequest();
m_client->didReceiveResponse(identifier, response, std::move(handle));
return;
}
// Even if the request met the conditions to get handled by a Service Worker
// in the constructor of this class (and therefore
// |m_fallbackRequestForServiceWorker| is set), the Service Worker may skip
// processing the request. Only if the request is same origin, the skipped
// response may come here (wasFetchedViaServiceWorker() returns false) since
// such a request doesn't have to go through the CORS algorithm by calling
// loadFallbackRequestForServiceWorker().
// FIXME: We should use |m_sameOriginRequest| when we will support Suborigins
// (crbug.com/336894) for Service Worker.
DCHECK(
m_fallbackRequestForServiceWorker.isNull() ||
getSecurityOrigin()->canRequest(m_fallbackRequestForServiceWorker.url()));
m_fallbackRequestForServiceWorker = ResourceRequest();
if (!m_sameOriginRequest &&
m_options.crossOriginRequestPolicy == UseAccessControl) {
CrossOriginAccessControl::AccessStatus corsStatus =
CrossOriginAccessControl::checkAccess(
response, effectiveAllowCredentials(), getSecurityOrigin());
if (corsStatus != CrossOriginAccessControl::kAccessAllowed) {
reportResponseReceived(identifier, response);
StringBuilder builder;
CrossOriginAccessControl::accessControlErrorString(
builder, corsStatus, response, getSecurityOrigin(), m_requestContext);
dispatchDidFailAccessControlCheck(
ResourceError(errorDomainBlinkInternal, 0, response.url().getString(),
builder.toString()));
return;
}
}
m_client->didReceiveResponse(identifier, response, std::move(handle));
}
void DocumentThreadableLoader::setSerializedCachedMetadata(Resource*,
const char* data,
size_t size) {
m_checker.setSerializedCachedMetadata();
if (!m_actualRequest.isNull())
return;
m_client->didReceiveCachedMetadata(data, size);
}
void DocumentThreadableLoader::dataReceived(Resource* resource,
const char* data,
size_t dataLength) {
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_checker.dataReceived();
if (m_isUsingDataConsumerHandle)
return;
// TODO(junov): Fix the ThreadableLoader ecosystem to use size_t. Until then,
// we use safeCast to trap potential overflows.
handleReceivedData(data, safeCast<unsigned>(dataLength));
}
void DocumentThreadableLoader::handleReceivedData(const char* data,
size_t dataLength) {
DCHECK(m_client);
// Preflight data should be invisible to clients.
if (!m_actualRequest.isNull())
return;
DCHECK(m_fallbackRequestForServiceWorker.isNull());
m_client->didReceiveData(data, dataLength);
}
void DocumentThreadableLoader::notifyFinished(Resource* resource) {
DCHECK(m_client);
DCHECK_EQ(resource, this->resource());
DCHECK(m_async);
m_checker.notifyFinished(resource);
if (resource->errorOccurred()) {
dispatchDidFail(resource->resourceError());
} else {
handleSuccessfulFinish(resource->identifier(), resource->loadFinishTime());
}
}
void DocumentThreadableLoader::handleSuccessfulFinish(unsigned long identifier,
double finishTime) {
DCHECK(m_fallbackRequestForServiceWorker.isNull());
if (!m_actualRequest.isNull()) {
// FIXME: Timeout should be applied to whole fetch, not for each of
// preflight and actual request.
m_timeoutTimer.stop();
DCHECK(!m_sameOriginRequest);
DCHECK_EQ(m_options.crossOriginRequestPolicy, UseAccessControl);
loadActualRequest();
return;
}
ThreadableLoaderClient* client = m_client;
// Protect the resource in |didFinishLoading| in order not to release the
// downloaded file.
Persistent<Resource> protect = resource();
clear();
client->didFinishLoading(identifier, finishTime);
}
void DocumentThreadableLoader::didTimeout(TimerBase* timer) {
DCHECK(m_async);
DCHECK_EQ(timer, &m_timeoutTimer);
// clearResource() may be called in clear() and some other places. clear()
// calls stop() on |m_timeoutTimer|. In the other places, the resource is set
// again. If the creation fails, clear() is called. So, here, resource() is
// always non-nullptr.
DCHECK(resource());
// When |m_client| is set to nullptr only in clear() where |m_timeoutTimer|
// is stopped. So, |m_client| is always non-nullptr here.
DCHECK(m_client);
// Using values from net/base/net_error_list.h ERR_TIMED_OUT, Same as existing
// FIXME above - this error should be coming from FrameLoaderClient to be
// identifiable.
static const int timeoutError = -7;
ResourceError error("net", timeoutError, resource()->url(), String());
error.setIsTimeout(true);
dispatchDidFail(error);
}
void DocumentThreadableLoader::loadFallbackRequestForServiceWorker() {
clearResource();
ResourceRequest fallbackRequest(m_fallbackRequestForServiceWorker);
m_fallbackRequestForServiceWorker = ResourceRequest();
dispatchInitialRequest(fallbackRequest);
}
void DocumentThreadableLoader::loadActualRequest() {
ResourceRequest actualRequest = m_actualRequest;
ResourceLoaderOptions actualOptions = m_actualOptions;
m_actualRequest = ResourceRequest();
m_actualOptions = ResourceLoaderOptions();
clearResource();
prepareCrossOriginRequest(actualRequest);
loadRequest(actualRequest, actualOptions);
}
void DocumentThreadableLoader::handlePreflightFailure(
const String& url,
const String& errorDescription) {
ResourceError error(errorDomainBlinkInternal, 0, url, errorDescription);
// Prevent handleSuccessfulFinish() from bypassing access check.
m_actualRequest = ResourceRequest();
dispatchDidFailAccessControlCheck(error);
}
void DocumentThreadableLoader::dispatchDidFailAccessControlCheck(
const ResourceError& error) {
ThreadableLoaderClient* client = m_client;
clear();
client->didFailAccessControlCheck(error);
}
void DocumentThreadableLoader::dispatchDidFail(const ResourceError& error) {
ThreadableLoaderClient* client = m_client;
clear();
client->didFail(error);
}
void DocumentThreadableLoader::loadRequestAsync(
const ResourceRequest& request,
ResourceLoaderOptions resourceLoaderOptions) {
if (!m_actualRequest.isNull())
resourceLoaderOptions.dataBufferingPolicy = BufferData;
if (m_options.timeoutMilliseconds > 0) {
m_timeoutTimer.startOneShot(m_options.timeoutMilliseconds / 1000.0,
BLINK_FROM_HERE);
}
FetchRequest newRequest(request, m_options.initiator, resourceLoaderOptions);
if (m_options.crossOriginRequestPolicy == AllowCrossOriginRequests)
newRequest.setOriginRestriction(FetchRequest::NoOriginRestriction);
DCHECK(!resource());
if (request.requestContext() == WebURLRequest::RequestContextVideo ||
request.requestContext() == WebURLRequest::RequestContextAudio)
setResource(RawResource::fetchMedia(newRequest, document().fetcher()));
else if (request.requestContext() == WebURLRequest::RequestContextManifest)
setResource(RawResource::fetchManifest(newRequest, document().fetcher()));
else
setResource(RawResource::fetch(newRequest, document().fetcher()));
if (!resource()) {
InspectorInstrumentation::
documentThreadableLoaderFailedToStartLoadingForClient(m_document,
m_client);
ThreadableLoaderClient* client = m_client;
clear();
// setResource() might call notifyFinished() and thus clear()
// synchronously, and in such cases ThreadableLoaderClient is already
// notified and |client| is null.
if (!client)
return;
client->didFail(ResourceError(errorDomainBlinkInternal, 0,
request.url().getString(),
"Failed to start loading."));
return;
}
if (resource()->isLoading()) {
unsigned long identifier = resource()->identifier();
InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(
m_document, identifier, m_client);
} else {
InspectorInstrumentation::
documentThreadableLoaderFailedToStartLoadingForClient(m_document,
m_client);
}
}
void DocumentThreadableLoader::loadRequestSync(
const ResourceRequest& request,
ResourceLoaderOptions resourceLoaderOptions) {
FetchRequest fetchRequest(request, m_options.initiator,
resourceLoaderOptions);
if (m_options.crossOriginRequestPolicy == AllowCrossOriginRequests)
fetchRequest.setOriginRestriction(FetchRequest::NoOriginRestriction);
Resource* resource =
RawResource::fetchSynchronously(fetchRequest, document().fetcher());
ResourceResponse response =
resource ? resource->response() : ResourceResponse();
unsigned long identifier = resource
? resource->identifier()
: std::numeric_limits<unsigned long>::max();
ResourceError error = resource ? resource->resourceError() : ResourceError();
InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(
m_document, identifier, m_client);
ThreadableLoaderClient* client = m_client;
if (!resource) {
m_client = nullptr;
client->didFail(error);
return;
}
const KURL& requestURL = request.url();
// No exception for file:/// resources, see <rdar://problem/4962298>. Also, if
// we have an HTTP response, then it wasn't a network error in fact.
if (!error.isNull() && !requestURL.isLocalFile() &&
response.httpStatusCode() <= 0) {
m_client = nullptr;
client->didFail(error);
return;
}
// FIXME: A synchronous request does not tell us whether a redirect happened
// or not, so we guess by comparing the request and response URLs. This isn't
// a perfect test though, since a server can serve a redirect to the same URL
// that was requested. Also comparing the request and response URLs as strings
// will fail if the requestURL still has its credentials.
if (requestURL != response.url() && !isAllowedRedirect(response.url())) {
m_client = nullptr;
client->didFailRedirectCheck();
return;
}
handleResponse(identifier, response, nullptr);
// handleResponse() may detect an error. In such a case (check |m_client| as
// it gets reset by clear() call), skip the rest.
//
// |this| is alive here since loadResourceSynchronously() keeps it alive until
// the end of the function.
if (!m_client)
return;
RefPtr<const SharedBuffer> data = resource->resourceBuffer();
if (data)
handleReceivedData(data->data(), data->size());
// The client may cancel this loader in handleReceivedData(). In such a case,
// skip the rest.
if (!m_client)
return;
handleSuccessfulFinish(identifier, 0.0);
}
void DocumentThreadableLoader::loadRequest(
const ResourceRequest& request,
ResourceLoaderOptions resourceLoaderOptions) {
// Any credential should have been removed from the cross-site requests.
const KURL& requestURL = request.url();
DCHECK(m_sameOriginRequest || requestURL.user().isEmpty());
DCHECK(m_sameOriginRequest || requestURL.pass().isEmpty());
// Update resourceLoaderOptions with enforced values.
if (m_forceDoNotAllowStoredCredentials)
resourceLoaderOptions.allowCredentials = DoNotAllowStoredCredentials;
resourceLoaderOptions.securityOrigin = m_securityOrigin;
if (m_async)
loadRequestAsync(request, resourceLoaderOptions);
else
loadRequestSync(request, resourceLoaderOptions);
}
bool DocumentThreadableLoader::isAllowedRedirect(const KURL& url) const {
if (m_options.crossOriginRequestPolicy == AllowCrossOriginRequests)
return true;
return m_sameOriginRequest && getSecurityOrigin()->canRequest(url);
}
StoredCredentials DocumentThreadableLoader::effectiveAllowCredentials() const {
if (m_forceDoNotAllowStoredCredentials)
return DoNotAllowStoredCredentials;
return m_resourceLoaderOptions.allowCredentials;
}
const SecurityOrigin* DocumentThreadableLoader::getSecurityOrigin() const {
return m_securityOrigin ? m_securityOrigin.get()
: document().getSecurityOrigin();
}
Document& DocumentThreadableLoader::document() const {
DCHECK(m_document);
return *m_document;
}
DEFINE_TRACE(DocumentThreadableLoader) {
visitor->trace(m_resource);
visitor->trace(m_document);
ThreadableLoader::trace(visitor);
RawResourceClient::trace(visitor);
}
} // namespace blink
|