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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/core/frame/dom_window.h"
#include <algorithm>
#include <memory>
#include "base/containers/fixed_flat_map.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
#include "base/trace_event/trace_event.h"
#include "services/network/public/mojom/web_sandbox_flags.mojom-blink.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/mojom/frame/frame.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/capture_source_location.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/post_message_helper.h"
#include "third_party/blink/renderer/bindings/core/v8/to_v8_traits.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_window.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_window_post_message_options.h"
#include "third_party/blink/renderer/bindings/core/v8/window_proxy_manager.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/event_target_names.h"
#include "third_party/blink/renderer/core/events/message_event.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/core/frame/coop_access_violation_report_body.h"
#include "third_party/blink/renderer/core/frame/csp/content_security_policy.h"
#include "third_party/blink/renderer/core/frame/frame.h"
#include "third_party/blink/renderer/core/frame/frame_client.h"
#include "third_party/blink/renderer/core/frame/frame_console.h"
#include "third_party/blink/renderer/core/frame/frame_owner.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/location.h"
#include "third_party/blink/renderer/core/frame/picture_in_picture_controller.h"
#include "third_party/blink/renderer/core/frame/report.h"
#include "third_party/blink/renderer/core/frame/reporting_context.h"
#include "third_party/blink/renderer/core/frame/settings.h"
#include "third_party/blink/renderer/core/frame/user_activation.h"
#include "third_party/blink/renderer/core/input/input_device_capabilities.h"
#include "third_party/blink/renderer/core/inspector/console_message.h"
#include "third_party/blink/renderer/core/page/chrome_client.h"
#include "third_party/blink/renderer/core/page/focus_controller.h"
#include "third_party/blink/renderer/core/page/page.h"
#include "third_party/blink/renderer/core/probe/core_probes.h"
#include "third_party/blink/renderer/platform/bindings/source_location.h"
#include "third_party/blink/renderer/platform/bindings/v8_dom_wrapper.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
#include "third_party/blink/renderer/platform/wtf/text/strcat.h"
namespace blink {
namespace {
struct WindowProxyAccessCounters {
// `property_access` is optional as most methods are measured through
// the idl itself, and only anonymous getters cannot use that attribute.
std::optional<WebFeature> property_access;
WebFeature cross_origin_property_access;
WebFeature cross_origin_property_access_from_other_page;
};
inline constexpr auto kWindowProxyAccessTypeToCounters = base::MakeFixedFlatMap<
mojom::blink::WindowProxyAccessType,
WindowProxyAccessCounters>({
{
mojom::blink::WindowProxyAccessType::kLocation,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessLocation,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageLocation,
},
},
{
mojom::blink::WindowProxyAccessType::kClosed,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessClosed,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageClosed,
},
},
{
mojom::blink::WindowProxyAccessType::kLength,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessLength,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageLength,
},
},
{
mojom::blink::WindowProxyAccessType::kSelf,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessSelf,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageSelf,
},
},
{
mojom::blink::WindowProxyAccessType::kWindow,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessWindow,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageWindow,
},
},
{
mojom::blink::WindowProxyAccessType::kFrames,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessFrames,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageFrames,
},
},
{
mojom::blink::WindowProxyAccessType::kOpener,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessOpener,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageOpener,
},
},
{
mojom::blink::WindowProxyAccessType::kParent,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessParent,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageParent,
},
},
{
mojom::blink::WindowProxyAccessType::kTop,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessTop,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageTop,
},
},
{
mojom::blink::WindowProxyAccessType::kPostMessage,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessPostMessage,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPagePostMessage,
},
},
{
mojom::blink::WindowProxyAccessType::kAnonymousIndexedGetter,
{
WebFeature::kWindowProxyIndexedGetter,
WebFeature::kWindowProxyCrossOriginAccessIndexedGetter,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageIndexedGetter,
},
},
{
mojom::blink::WindowProxyAccessType::kClose,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessClose,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageClose,
},
},
{
mojom::blink::WindowProxyAccessType::kFocus,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessFocus,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageFocus,
},
},
{
mojom::blink::WindowProxyAccessType::kBlur,
{
std::nullopt,
WebFeature::kWindowProxyCrossOriginAccessBlur,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageBlur,
},
},
{
mojom::blink::WindowProxyAccessType::kAnonymousNamedGetter,
{
WebFeature::kWindowProxyNamedGetter,
WebFeature::kWindowProxyCrossOriginAccessNamedGetter,
WebFeature::kWindowProxyCrossOriginAccessFromOtherPageNamedGetter,
},
},
});
// Any new WindowProxy method UMA should garner UKM and vice-versa.
static_assert(
kWindowProxyAccessTypeToCounters.size() ==
static_cast<int64_t>(mojom::blink::WindowProxyAccessType::kMaxValue) + 1u);
String CoopReportOnlyErrorMessage(const String& property_name) {
String call;
if (property_name == "named") {
call = "window[\"name\"]";
} else if (property_name == "indexed") {
call = "window[i]";
} else {
call = "window." + property_name;
}
return "Cross-Origin-Opener-Policy policy would block the " + call + " call.";
}
} // namespace
DOMWindow::DOMWindow(Frame& frame)
: frame_(frame),
window_proxy_manager_(frame.GetWindowProxyManager()),
window_is_closing_(false) {}
DOMWindow::~DOMWindow() {
// The frame must be disconnected before finalization.
DCHECK(!frame_);
}
v8::Local<v8::Value> DOMWindow::Wrap(ScriptState* script_state) {
// TODO(yukishiino): Get understanding of why it's possible to initialize
// the context after the frame is detached. And then, remove the following
// lines. See also https://crbug.com/712638 .
Frame* frame = GetFrame();
if (!frame)
return v8::Null(script_state->GetIsolate());
auto& world = script_state->World();
v8::Local<v8::Object> proxy =
window_proxy_manager_->GetWindowProxy(world)->GetGlobalProxy();
CHECK(!proxy.IsEmpty());
return proxy;
}
v8::Local<v8::Object> DOMWindow::AssociateWithWrapper(
v8::Isolate*,
const WrapperTypeInfo*,
v8::Local<v8::Object> wrapper) {
NOTREACHED();
}
v8::Local<v8::Object> DOMWindow::AssociateWithWrapper(
v8::Isolate* isolate,
DOMWrapperWorld* world,
const WrapperTypeInfo* wrapper_type_info,
v8::Local<v8::Object> wrapper) {
// Using the world directly avoids fetching it from a potentially
// half-initialized context.
if (world->DomDataStore().Set</*entered_context=*/false>(
isolate, this, wrapper_type_info, wrapper)) {
V8DOMWrapper::SetNativeInfo(isolate, wrapper, this);
DCHECK(V8DOMWrapper::HasInternalFieldsSet(isolate, wrapper));
}
return wrapper;
}
const AtomicString& DOMWindow::InterfaceName() const {
return event_target_names::kWindow;
}
const DOMWindow* DOMWindow::ToDOMWindow() const {
return this;
}
bool DOMWindow::IsWindowOrWorkerGlobalScope() const {
return true;
}
Location* DOMWindow::location() const {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kLocation);
if (!location_)
location_ = MakeGarbageCollected<Location>(const_cast<DOMWindow*>(this));
return location_.Get();
}
bool DOMWindow::closed() const {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kClosed);
return window_is_closing_ || !GetFrame() || !GetFrame()->GetPage();
}
unsigned DOMWindow::length() const {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kLength);
return GetFrame() ? GetFrame()->Tree().ScopedChildCount() : 0;
}
DOMWindow* DOMWindow::self() const {
if (!GetFrame())
return nullptr;
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kSelf);
return GetFrame()->DomWindow();
}
DOMWindow* DOMWindow::window() const {
if (!GetFrame())
return nullptr;
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kWindow);
return GetFrame()->DomWindow();
}
DOMWindow* DOMWindow::frames() const {
if (!GetFrame())
return nullptr;
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kFrames);
return GetFrame()->DomWindow();
}
ScriptValue DOMWindow::openerForBindings(v8::Isolate* isolate) const {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kOpener);
ScriptState* script_state = ScriptState::ForCurrentRealm(isolate);
return ScriptValue(isolate, ToV8Traits<IDLNullable<DOMWindow>>::ToV8(
script_state, opener()));
}
DOMWindow* DOMWindow::opener() const {
// FIXME: Use FrameTree to get opener as well, to simplify logic here.
if (!GetFrame() || !GetFrame()->Client())
return nullptr;
Frame* opener = GetFrame()->Opener();
return opener ? opener->DomWindow() : nullptr;
}
void DOMWindow::setOpenerForBindings(v8::Isolate* isolate,
ScriptValue opener,
ExceptionState& exception_state) {
ReportCoopAccess("opener");
if (!GetFrame()) {
return;
}
// https://html.spec.whatwg.org/C/#dom-opener
// 7.1.2.1. Navigating related browsing contexts in the DOM
// The opener attribute's setter must run these steps:
// step 1. If the given value is null and this Window object's browsing
// context is non-null, then set this Window object's browsing context's
// disowned to true.
//
// Opener can be shadowed if it is in the same domain.
// Have a special handling of null value to behave
// like Firefox. See bug http://b/1224887 & http://b/791706.
if (opener.IsNull()) {
To<LocalFrame>(GetFrame())->SetOpener(nullptr);
}
// step 2. If the given value is non-null, then return
// ? OrdinaryDefineOwnProperty(this Window object, "opener",
// { [[Value]]: the given value, [[Writable]]: true,
// [[Enumerable]]: true, [[Configurable]]: true }).
v8::Local<v8::Context> context = isolate->GetCurrentContext();
v8::Local<v8::Object> this_wrapper =
ToV8Traits<DOMWindow>::ToV8(ScriptState::From(isolate, context), this)
.As<v8::Object>();
v8::PropertyDescriptor desc(opener.V8Value(), /*writable=*/true);
desc.set_enumerable(true);
desc.set_configurable(true);
bool result = false;
if (!this_wrapper
->DefineProperty(context, V8AtomicString(isolate, "opener"), desc)
.To(&result)) {
return;
}
if (!result) {
exception_state.ThrowTypeError("Cannot redefine the property.");
}
}
DOMWindow* DOMWindow::parent() const {
if (!GetFrame())
return nullptr;
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kParent);
Frame* parent = GetFrame()->Tree().Parent();
return parent ? parent->DomWindow() : GetFrame()->DomWindow();
}
DOMWindow* DOMWindow::top() const {
if (!GetFrame())
return nullptr;
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kTop);
return GetFrame()->Tree().Top().DomWindow();
}
void DOMWindow::postMessage(v8::Isolate* isolate,
const ScriptValue& message,
const String& target_origin,
HeapVector<ScriptObject> transfer,
ExceptionState& exception_state) {
WindowPostMessageOptions* options = WindowPostMessageOptions::Create();
options->setTargetOrigin(target_origin);
if (!transfer.empty())
options->setTransfer(std::move(transfer));
postMessage(isolate, message, options, exception_state);
}
void DOMWindow::postMessage(v8::Isolate* isolate,
const ScriptValue& message,
const WindowPostMessageOptions* options,
ExceptionState& exception_state) {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kPostMessage);
LocalDOMWindow* incumbent_window = IncumbentDOMWindow(isolate);
UseCounter::Count(incumbent_window->document(),
WebFeature::kWindowPostMessage);
Transferables transferables;
scoped_refptr<SerializedScriptValue> serialized_message =
PostMessageHelper::SerializeMessageByMove(isolate, message, options,
transferables, exception_state);
if (exception_state.HadException())
return;
DCHECK(serialized_message);
DoPostMessage(std::move(serialized_message), transferables.message_ports,
options, incumbent_window, exception_state);
}
DOMWindow* DOMWindow::AnonymousIndexedGetter(uint32_t index) {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kAnonymousIndexedGetter);
ReportCoopAccess("indexed");
if (!GetFrame())
return nullptr;
Frame* child = GetFrame()->Tree().ScopedChild(index);
return child ? child->DomWindow() : nullptr;
}
bool DOMWindow::IsCurrentlyDisplayedInFrame() const {
if (GetFrame())
SECURITY_CHECK(GetFrame()->DomWindow() == this);
return GetFrame() && GetFrame()->GetPage();
}
// FIXME: Once we're throwing exceptions for cross-origin access violations, we
// will always sanitize the target frame details, so we can safely combine
// 'crossDomainAccessErrorMessage' with this method after considering exactly
// which details may be exposed to JavaScript.
//
// http://crbug.com/17325
String DOMWindow::SanitizedCrossDomainAccessErrorMessage(
const LocalDOMWindow* accessing_window,
CrossDocumentAccessPolicy cross_document_access) const {
if (!accessing_window || !GetFrame())
return String();
const KURL& accessing_window_url = accessing_window->Url();
if (accessing_window_url.IsNull())
return String();
const SecurityOrigin* active_origin = accessing_window->GetSecurityOrigin();
String message;
if (cross_document_access == CrossDocumentAccessPolicy::kDisallowed) {
message = WTF::StrCat({"Blocked a restricted frame with origin \"",
active_origin->ToString(),
"\" from accessing another frame."});
} else {
message = WTF::StrCat({"Blocked a frame with origin \"",
active_origin->ToString(),
"\" from accessing a cross-origin frame."});
}
// FIXME: Evaluate which details from 'crossDomainAccessErrorMessage' may
// safely be reported to JavaScript.
return message;
}
String DOMWindow::CrossDomainAccessErrorMessage(
const LocalDOMWindow* accessing_window,
CrossDocumentAccessPolicy cross_document_access) const {
if (!accessing_window || !GetFrame())
return String();
const KURL& accessing_window_url = accessing_window->Url();
if (accessing_window_url.IsNull())
return String();
const SecurityOrigin* active_origin = accessing_window->GetSecurityOrigin();
const SecurityOrigin* target_origin =
GetFrame()->GetSecurityContext()->GetSecurityOrigin();
auto* local_dom_window = DynamicTo<LocalDOMWindow>(this);
// It's possible for a remote frame to be same origin with respect to a
// local frame, but it must still be treated as a disallowed cross-domain
// access. See https://crbug.com/601629.
DCHECK(GetFrame()->IsRemoteFrame() ||
!active_origin->CanAccess(target_origin) ||
(local_dom_window &&
accessing_window->GetAgent() != local_dom_window->GetAgent()));
String message =
WTF::StrCat({"Blocked a frame with origin \"", active_origin->ToString(),
"\" from accessing a frame with origin \"",
target_origin->ToString(), "\". "});
// Sandbox errors: Use the origin of the frames' location, rather than their
// actual origin (since we know that at least one will be "null").
KURL active_url = accessing_window->Url();
// TODO(alexmos): RemoteFrames do not have a document, and their URLs
// aren't replicated. For now, construct the URL using the replicated
// origin for RemoteFrames. If the target frame is remote and sandboxed,
// there isn't anything else to show other than "null" for its origin.
KURL target_url = local_dom_window
? local_dom_window->Url()
: KURL(NullURL(), target_origin->ToString());
using SandboxFlags = network::mojom::blink::WebSandboxFlags;
if (GetFrame()->GetSecurityContext()->IsSandboxed(SandboxFlags::kOrigin) ||
accessing_window->IsSandboxed(SandboxFlags::kOrigin)) {
message =
WTF::StrCat({"Blocked a frame at \"",
SecurityOrigin::Create(active_url)->ToString(),
"\" from accessing a frame at \"",
SecurityOrigin::Create(target_url)->ToString(), "\". "});
if (GetFrame()->GetSecurityContext()->IsSandboxed(SandboxFlags::kOrigin) &&
accessing_window->IsSandboxed(SandboxFlags::kOrigin)) {
return WTF::StrCat({"Sandbox access violation: ", message,
" Both frames are sandboxed and lack the "
"\"allow-same-origin\" flag."});
}
if (GetFrame()->GetSecurityContext()->IsSandboxed(SandboxFlags::kOrigin)) {
return WTF::StrCat({"Sandbox access violation: ", message,
" The frame being accessed is sandboxed and lacks "
"the \"allow-same-origin\" flag."});
}
return WTF::StrCat({"Sandbox access violation: ", message,
" The frame requesting access is sandboxed and lacks "
"the \"allow-same-origin\" flag."});
}
// Protocol errors: Use the URL's protocol rather than the origin's protocol
// so that we get a useful message for non-heirarchal URLs like 'data:'.
if (target_origin->Protocol() != active_origin->Protocol()) {
return WTF::StrCat({message,
" The frame requesting access has a protocol of \"",
active_url.Protocol(),
"\", the frame being accessed has a protocol of \"",
target_url.Protocol(), "\". Protocols must match."});
}
// 'document.domain' errors.
if (target_origin->DomainWasSetInDOM() &&
active_origin->DomainWasSetInDOM()) {
return WTF::StrCat(
{message, "The frame requesting access set \"document.domain\" to \"",
active_origin->Domain(), "\", the frame being accessed set it to \"",
target_origin->Domain(),
"\". Both must set \"document.domain\" to the same value to allow "
"access."});
}
if (active_origin->DomainWasSetInDOM()) {
return WTF::StrCat(
{message, "The frame requesting access set \"document.domain\" to \"",
active_origin->Domain(),
"\", but the frame being accessed did not. Both must set "
"\"document.domain\" to the same value to allow access."});
}
if (target_origin->DomainWasSetInDOM()) {
return WTF::StrCat(
{message, "The frame being accessed set \"document.domain\" to \"",
target_origin->Domain(),
"\", but the frame requesting access did not. Both must set "
"\"document.domain\" to the same value to allow access."});
}
if (cross_document_access == CrossDocumentAccessPolicy::kDisallowed) {
return WTF::StrCat({message, "The document-access policy denied access."});
}
// Default.
return WTF::StrCat({message, "Protocols, domains, and ports must match."});
}
void DOMWindow::close(v8::Isolate* isolate) {
LocalDOMWindow* incumbent_window = IncumbentDOMWindow(isolate);
Close(incumbent_window);
}
void DOMWindow::Close(LocalDOMWindow* incumbent_window) {
DCHECK(incumbent_window);
if (!GetFrame() || !GetFrame()->IsOutermostMainFrame())
return;
Page* page = GetFrame()->GetPage();
if (!page)
return;
Document* active_document = incumbent_window->document();
if (!(active_document && active_document->GetFrame() &&
active_document->GetFrame()->CanNavigate(*GetFrame()))) {
return;
}
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kClose);
Settings* settings = GetFrame()->GetSettings();
bool allow_scripts_to_close_windows =
settings && settings->GetAllowScriptsToCloseWindows();
if (!page->OpenedByDOM() && !allow_scripts_to_close_windows) {
if (GetFrame()->Client()->BackForwardLength() > 1) {
active_document->domWindow()->GetFrameConsole()->AddMessage(
MakeGarbageCollected<ConsoleMessage>(
mojom::blink::ConsoleMessageSource::kJavaScript,
mojom::blink::ConsoleMessageLevel::kWarning,
"Scripts may close only the windows that were opened by them."));
return;
} else {
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#script-closable
// allows a window to be closed if its history length is 1, even if it was
// not opened by script.
UseCounter::Count(active_document,
WebFeature::kWindowCloseHistoryLengthOne);
}
}
if (!GetFrame()->ShouldClose())
return;
ExecutionContext* execution_context = nullptr;
if (auto* local_dom_window = DynamicTo<LocalDOMWindow>(this)) {
execution_context = local_dom_window->GetExecutionContext();
}
probe::BreakableLocation(execution_context, "DOMWindow.close");
page->CloseSoon();
// So as to make window.closed return the expected result
// after window.close(), separately record the to-be-closed
// state of this window. Scripts may access window.closed
// before the deferred close operation has gone ahead.
window_is_closing_ = true;
}
void DOMWindow::focus(v8::Isolate* isolate) {
Frame* frame = GetFrame();
if (!frame)
return;
Page* page = frame->GetPage();
// TODO(dcheng): This null check is probably not needed.
if (!page)
return;
bool allow_focus_without_user_activation =
frame->AllowFocusWithoutUserActivation();
if (!allow_focus_without_user_activation &&
!frame->HasTransientUserActivation()) {
// Disallow script focus that crosses a fenced frame boundary on a
// frame that doesn't have transient user activation. Note: all calls to
// DOMWindow::focus come from JavaScript calls in the web platform
return;
}
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kFocus);
// HTML standard doesn't require to check the incumbent realm, but Blink
// historically checks it for some reasons, maybe the same reason as |close|.
// (|close| checks whether the incumbent realm is eligible to close the window
// in order to prevent a (cross origin) window from abusing |close| to close
// pages randomly or with a malicious intent.)
// https://html.spec.whatwg.org/C/#dom-window-focus
// https://html.spec.whatwg.org/C/#focusing-steps
LocalDOMWindow* incumbent_window = IncumbentDOMWindow(isolate);
LocalFrame* originating_frame = incumbent_window->GetFrame();
// TODO(mustaq): Use of |allow_focus| and consuming the activation here seems
// suspicious (https://crbug.com/959815).
bool allow_focus = incumbent_window->IsWindowInteractionAllowed();
bool is_focused_from_pip_window = false;
if (allow_focus) {
incumbent_window->ConsumeWindowInteraction();
} else {
DCHECK(IsMainThread());
// Allow focus if the request is coming from our opener window.
allow_focus = opener() && opener() != this && incumbent_window == opener();
// Also allow focus from a user activation on a document picture-in-picture
// window opened by this window. In this case, we determine the originating
// frame to be the picture-in-picture window regardless of whether or not
// it's also the incumbent frame. `frame` will also always be an outermost
// main frame in this case since only outermost main frames can open a
// document picture-in-picture window.
auto* local_dom_window = DynamicTo<LocalDOMWindow>(this);
if (local_dom_window) {
Document* document = local_dom_window->document();
LocalDOMWindow* pip_window =
document
? PictureInPictureController::GetDocumentPictureInPictureWindow(
*document)
: nullptr;
if (pip_window &&
LocalFrame::HasTransientUserActivation(pip_window->GetFrame())) {
allow_focus = true;
is_focused_from_pip_window = true;
originating_frame = pip_window->GetFrame();
}
}
}
// If we're a top level window, bring the window to the front.
if (frame->IsOutermostMainFrame() && allow_focus) {
frame->FocusPage(originating_frame);
} else if (auto* local_frame = DynamicTo<LocalFrame>(frame)) {
// We are depending on user activation twice since IsFocusAllowed() will
// check for activation. This should be addressed in
// https://crbug.com/959815.
if (!local_frame->GetDocument()->IsFocusAllowed(FocusTrigger::kScript)) {
return;
}
}
page->GetFocusController().FocusDocumentView(GetFrame(),
true /* notifyEmbedder */);
// TODO(crbug.com/1458985) Remove the IsInFencedFrameTree condition once
// fenced frames are enabled by default.
if (!allow_focus_without_user_activation && frame->IsInFencedFrameTree()) {
// Fenced frames should consume user activation when attempting to pull
// focus across a fenced boundary into itself.
LocalFrame::ConsumeTransientUserActivation(DynamicTo<LocalFrame>(frame));
}
// When the focus comes from the document picture-in-picture frame, we consume
// a user gesture from the picture-in-picture frame.
if (is_focused_from_pip_window) {
LocalFrame::ConsumeTransientUserActivation(originating_frame);
}
}
void DOMWindow::blur() {
RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType::kBlur);
}
InputDeviceCapabilitiesConstants* DOMWindow::GetInputDeviceCapabilities() {
if (!input_capabilities_) {
input_capabilities_ =
MakeGarbageCollected<InputDeviceCapabilitiesConstants>();
}
return input_capabilities_.Get();
}
void DOMWindow::PostMessageForTesting(
scoped_refptr<SerializedScriptValue> message,
const MessagePortArray& ports,
const String& target_origin,
LocalDOMWindow* source,
ExceptionState& exception_state) {
WindowPostMessageOptions* options = WindowPostMessageOptions::Create();
options->setTargetOrigin(target_origin);
DoPostMessage(std::move(message), ports, options, source, exception_state);
}
void DOMWindow::InstallCoopAccessMonitor(
LocalFrame* accessing_frame,
network::mojom::blink::CrossOriginOpenerPolicyReporterParamsPtr
coop_reporter_params) {
ExecutionContext* execution_context =
accessing_frame->DomWindow()->GetExecutionContext();
CoopAccessMonitor* monitor =
MakeGarbageCollected<CoopAccessMonitor>(execution_context);
DCHECK(accessing_frame->IsMainFrame());
DCHECK(!accessing_frame->IsInFencedFrameTree());
monitor->report_type = coop_reporter_params->report_type;
monitor->accessing_main_frame = accessing_frame->GetLocalFrameToken();
monitor->endpoint_defined = coop_reporter_params->endpoint_defined;
monitor->reported_window_url =
std::move(coop_reporter_params->reported_window_url);
// `task_runner` is used for handling disconnect, and it uses
// `TaskType::kInternalDefault` to match the main frame receiver.
scoped_refptr<base::SingleThreadTaskRunner> task_runner =
execution_context->GetTaskRunner(TaskType::kInternalDefault);
monitor->reporter.Bind(std::move(coop_reporter_params->reporter),
std::move(task_runner));
// CoopAccessMonitor are cleared when their reporter are gone. This avoids
// accumulation. However it would have been interesting continuing reporting
// accesses past this point, at least for the ReportingObserver and Devtool.
// TODO(arthursonzogni): Consider observing |accessing_main_frame| deletion
// instead.
monitor->reporter.set_disconnect_handler(
WTF::BindOnce(&DOMWindow::DisconnectCoopAccessMonitor,
WrapWeakPersistent(this), monitor->accessing_main_frame));
// As long as RenderDocument isn't shipped, it can exist a CoopAccessMonitor
// for the same |accessing_main_frame|, because it might now host a different
// Document. Same is true for |this| DOMWindow, it might refer to a window
// hosting a different document.
// The new documents will still be part of a different virtual browsing
// context group, however the new COOPAccessMonitor might now contain updated
// URLs.
//
// There are up to 2 CoopAccessMonitor for the same access, because it can be
// reported to the accessing and the accessed window at the same time.
for (Member<CoopAccessMonitor>& old : coop_access_monitor_) {
if (old->accessing_main_frame == monitor->accessing_main_frame &&
network::IsAccessFromCoopPage(old->report_type) ==
network::IsAccessFromCoopPage(monitor->report_type)) {
// Eagerly reset the connection to prevent the disconnect handler from
// running, which could remove this new entry.
old->reporter.reset();
old = monitor;
return;
}
}
coop_access_monitor_.push_back(monitor);
// Any attempts to access |this| window from |accessing_main_frame| will now
// trigger reports (network, ReportingObserver, Devtool).
}
// Check if the accessing context would be able to access this window if COOP
// was enforced. If this isn't a report is sent.
void DOMWindow::ReportCoopAccess(const char* property_name) {
if (coop_access_monitor_.empty()) // Fast early return. Very likely true.
return;
v8::Isolate* isolate = window_proxy_manager_->GetIsolate();
LocalDOMWindow* accessing_window = IncumbentDOMWindow(isolate);
LocalFrame* accessing_frame = accessing_window->GetFrame();
// A frame might be destroyed, but its context can still be able to execute
// some code. Those accesses are ignored. See https://crbug.com/1108256.
if (!accessing_frame)
return;
// Iframes are allowed to trigger reports, only when they are same-origin with
// their top-level document.
if (accessing_frame->IsCrossOriginToOutermostMainFrame())
return;
// We returned early if accessing_frame->IsCrossOriginToOutermostMainFrame()
// was true. This means we are not in a fenced frame and that the nearest main
// frame is same-origin. This generally implies accessing_frame->Tree().Top()
// to be a LocalFrame. On rare occasions same-origin frames in a page might
// not share a process. This block speculatively returns early to avoid
// crashing.
// TODO(https://crbug.com/1183571): Check if crashes are still happening and
// remove this block.
if (!accessing_frame->Tree().Top().IsLocalFrame()) {
DUMP_WILL_BE_NOTREACHED();
return;
}
LocalFrame& accessing_main_frame =
To<LocalFrame>(accessing_frame->Tree().Top());
const LocalFrameToken accessing_main_frame_token =
accessing_main_frame.GetLocalFrameToken();
WTF::EraseIf(
coop_access_monitor_, [&](const Member<CoopAccessMonitor>& monitor) {
if (monitor->accessing_main_frame != accessing_main_frame_token) {
return false;
}
String property_name_as_string = property_name;
// TODO(arthursonzogni): Send the blocked-window-url.
auto location = CaptureSourceLocation(
ExecutionContext::From(isolate->GetCurrentContext()));
// TODO(crbug.com/349583610): Update to use SourceLocation typemap.
auto source_location = network::mojom::blink::SourceLocation::New(
location->Url() ? location->Url() : "", location->LineNumber(),
location->ColumnNumber());
accessing_window->GetFrameConsole()->AddMessage(
MakeGarbageCollected<ConsoleMessage>(
mojom::blink::ConsoleMessageSource::kJavaScript,
mojom::blink::ConsoleMessageLevel::kError,
CoopReportOnlyErrorMessage(property_name), location->Clone()));
// If the reporting document hasn't specified any network report
// endpoint(s), then it is likely not interested in receiving
// ReportingObserver's reports.
//
// TODO(arthursonzogni): Reconsider this decision later, developers
// might be interested.
if (monitor->endpoint_defined) {
if (monitor->reporter.is_bound()) {
monitor->reporter->QueueAccessReport(
monitor->report_type, property_name, std::move(source_location),
std::move(monitor->reported_window_url));
}
// Send a coop-access-violation report.
if (network::IsAccessFromCoopPage(monitor->report_type)) {
ReportingContext::From(accessing_main_frame.DomWindow())
->QueueReport(MakeGarbageCollected<Report>(
ReportType::kCoopAccessViolation,
accessing_main_frame.GetDocument()->Url().GetString(),
MakeGarbageCollected<CoopAccessViolationReportBody>(
std::move(location), monitor->report_type,
String(property_name), monitor->reported_window_url)));
}
}
// CoopAccessMonitor are used once and destroyed. This avoids sending
// multiple reports for the same access.
monitor->reporter.reset();
return true;
});
}
void DOMWindow::DoPostMessage(scoped_refptr<SerializedScriptValue> message,
const MessagePortArray& ports,
const WindowPostMessageOptions* options,
LocalDOMWindow* source,
ExceptionState& exception_state) {
TRACE_EVENT0("blink", "DOMWindow::DoPostMessage");
auto* source_frame = source->GetFrame();
bool unload_event_in_progress =
source_frame && source_frame->GetDocument() &&
source_frame->GetDocument()->UnloadEventInProgress();
if (!unload_event_in_progress && source_frame && source_frame->GetPage() &&
source_frame->GetPage()->DispatchedPagehideAndStillHidden()) {
}
if (!IsCurrentlyDisplayedInFrame())
return;
// Compute the target origin. We need to do this synchronously in order
// to generate the SyntaxError exception correctly.
scoped_refptr<const SecurityOrigin> target =
PostMessageHelper::GetTargetOrigin(options, *source, exception_state);
if (exception_state.HadException())
return;
if (!target) {
UseCounter::Count(source, WebFeature::kUnspecifiedTargetOriginPostMessage);
}
auto channels = MessagePort::DisentanglePorts(GetExecutionContext(), ports,
exception_state);
if (exception_state.HadException())
return;
const SecurityOrigin* target_security_origin =
GetFrame()->GetSecurityContext()->GetSecurityOrigin();
const SecurityOrigin* source_security_origin = source->GetSecurityOrigin();
bool is_source_secure = source_security_origin->IsPotentiallyTrustworthy();
bool is_target_secure = target_security_origin->IsPotentiallyTrustworthy();
if (is_target_secure) {
if (is_source_secure) {
UseCounter::Count(source, WebFeature::kPostMessageFromSecureToSecure);
} else {
UseCounter::Count(source, WebFeature::kPostMessageFromInsecureToSecure);
if (!GetFrame()
->Tree()
.Top()
.GetSecurityContext()
->GetSecurityOrigin()
->IsPotentiallyTrustworthy()) {
UseCounter::Count(source,
WebFeature::kPostMessageFromInsecureToSecureToplevel);
}
}
} else {
if (is_source_secure) {
UseCounter::Count(source, WebFeature::kPostMessageFromSecureToInsecure);
} else {
UseCounter::Count(source, WebFeature::kPostMessageFromInsecureToInsecure);
}
}
if (source->GetFrame() &&
source->GetFrame()->Tree().Top() != GetFrame()->Tree().Top()) {
if ((!target_security_origin->RegistrableDomain() &&
target_security_origin->Host() == source_security_origin->Host()) ||
(target_security_origin->RegistrableDomain() &&
target_security_origin->RegistrableDomain() ==
source_security_origin->RegistrableDomain())) {
if (target_security_origin->Protocol() ==
source_security_origin->Protocol()) {
UseCounter::Count(source, WebFeature::kSchemefulSameSitePostMessage);
} else {
UseCounter::Count(source, WebFeature::kSchemelesslySameSitePostMessage);
if (is_source_secure && !is_target_secure) {
UseCounter::Count(
source,
WebFeature::kSchemelesslySameSitePostMessageSecureToInsecure);
} else if (!is_source_secure && is_target_secure) {
UseCounter::Count(
source,
WebFeature::kSchemelesslySameSitePostMessageInsecureToSecure);
}
}
} else {
UseCounter::Count(source, WebFeature::kCrossSitePostMessage);
}
}
auto* local_dom_window = DynamicTo<LocalDOMWindow>(this);
KURL target_url = local_dom_window
? local_dom_window->Url()
: KURL(NullURL(), target_security_origin->ToString());
if (!source->GetContentSecurityPolicy()->AllowConnectToSource(
target_url, target_url, RedirectStatus::kNoRedirect,
ReportingDisposition::kSuppressReporting)) {
UseCounter::Count(
source, WebFeature::kPostMessageOutgoingWouldBeBlockedByConnectSrc);
}
UserActivation* user_activation = nullptr;
if (options->includeUserActivation())
user_activation = UserActivation::CreateSnapshot(source);
// Capability Delegation permits a script to delegate its ability to call a
// restricted API to another browsing context it trusts. User activation is
// currently consumed when a supported capability is specified, to prevent
// potentially abusive repeated delegation attempts.
// https://wicg.github.io/capability-delegation/spec.html
// TODO(mustaq): Explore use cases for delegating multiple capabilities.
mojom::blink::DelegatedCapability delegated_capability =
mojom::blink::DelegatedCapability::kNone;
if (options->hasDelegate()) {
Vector<String> capability_list;
options->delegate().Split(' ', capability_list);
if (capability_list.Contains("payment")) {
delegated_capability = mojom::blink::DelegatedCapability::kPaymentRequest;
} else if (capability_list.Contains("fullscreen")) {
delegated_capability =
mojom::blink::DelegatedCapability::kFullscreenRequest;
} else if (capability_list.Contains("display-capture")) {
delegated_capability =
mojom::blink::DelegatedCapability::kDisplayCaptureRequest;
} else {
exception_state.ThrowDOMException(
DOMExceptionCode::kNotSupportedError,
WTF::StrCat({"Delegation of \'", options->delegate(),
"\' is not supported."}));
return;
}
// TODO(mustaq): Add checks for allowed-to-use policy as proposed here:
// https://wicg.github.io/capability-delegation/spec.html#monkey-patch-to-html-initiating-delegation
if (!target) {
exception_state.ThrowDOMException(
DOMExceptionCode::kNotAllowedError,
"Delegation to target origin '*' is not allowed.");
return;
}
if (!LocalFrame::HasTransientUserActivation(source_frame)) {
exception_state.ThrowDOMException(
DOMExceptionCode::kNotAllowedError,
"Delegation is not allowed without transient user activation.");
return;
}
LocalFrame::ConsumeTransientUserActivation(source_frame);
}
PostedMessage* posted_message = MakeGarbageCollected<PostedMessage>();
posted_message->source_origin = source->GetSecurityOrigin();
posted_message->target_origin = std::move(target);
posted_message->data = std::move(message);
posted_message->channels = std::move(channels);
posted_message->source = source;
posted_message->user_activation = user_activation;
posted_message->delegated_capability = delegated_capability;
SchedulePostMessage(posted_message);
}
void DOMWindow::RecordWindowProxyAccessMetrics(
mojom::blink::WindowProxyAccessType access_type) const {
const auto& counter_it = kWindowProxyAccessTypeToCounters.find(access_type);
CHECK(counter_it != kWindowProxyAccessTypeToCounters.end());
if (!GetFrame())
return;
v8::Isolate* isolate = window_proxy_manager_->GetIsolate();
if (!isolate)
return;
LocalDOMWindow* accessing_window = CurrentDOMWindow(isolate);
if (!accessing_window)
return;
LocalFrame* accessing_frame = accessing_window->GetFrame();
if (!accessing_frame)
return;
// We don't log instances of a frame accessing itself. This would cause
// unacceptable lag (via mojom) and rate-limiting on the UKM.
if (GetFrame() != accessing_frame) {
// This sends a message to the browser process to record metrics. As of
// 2024, these metrics are heavily downsampled in the browser process,
// through the UKM downsampling mechanism. Perform the downsampling here, to
// save on the IPC cost. The sampling ratio is based on observed
// browser-side downsampling rates.
if (!base::FeatureList::IsEnabled(
features::kSubSampleWindowProxyUsageMetrics) ||
metrics_sub_sampler_.ShouldSample(0.0001)) {
accessing_frame->GetLocalFrameHostRemote().RecordWindowProxyUsageMetrics(
GetFrame()->GetFrameToken(), access_type);
}
}
if (counter_it->second.property_access) {
UseCounter::Count(accessing_window, *counter_it->second.property_access);
}
// Note that SecurityOrigin can be null in unit tests.
if (!GetFrame()->GetSecurityContext()->GetSecurityOrigin() ||
!accessing_frame->GetSecurityContext()->GetSecurityOrigin() ||
accessing_frame->GetSecurityContext()
->GetSecurityOrigin()
->IsSameOriginWith(
GetFrame()->GetSecurityContext()->GetSecurityOrigin())) {
return;
}
UseCounter::Count(accessing_window->document(),
counter_it->second.cross_origin_property_access);
if (accessing_frame->GetPage() != GetFrame()->GetPage()) {
UseCounter::Count(
accessing_window,
counter_it->second.cross_origin_property_access_from_other_page);
}
}
std::optional<DOMWindow::ProxyAccessBlockedReason>
DOMWindow::GetProxyAccessBlockedReason(v8::Isolate* isolate) const {
if (!GetFrame()) {
// Proxy is disconnected so we cannot take any action anyway.
return std::nullopt;
}
LocalDOMWindow* accessing_window = CurrentDOMWindow(isolate);
CHECK(accessing_window);
LocalFrame* accessing_frame = accessing_window->GetFrame();
if (!accessing_frame) {
// Context is disconnected so we cannot take any action anyway.
return std::nullopt;
}
// Returns an exception message if this window proxy or the window accessing
// are not in the same page and one is in a partitioned popin. We check this
// case first as it overlaps with the COOP:RP case below.
// See https://explainers-by-googlers.github.io/partitioned-popins/
if (GetFrame()->GetPage() != accessing_frame->GetPage() &&
(accessing_frame->GetPage()->IsPartitionedPopin() ||
GetFrame()->GetPage()->IsPartitionedPopin())) {
return DOMWindow::ProxyAccessBlockedReason::kPartitionedPopins;
}
// Our fallback allows access.
return std::nullopt;
}
// static
String DOMWindow::GetProxyAccessBlockedExceptionMessage(
DOMWindow::ProxyAccessBlockedReason reason) {
switch (reason) {
case ProxyAccessBlockedReason::kCoopRp:
return "Cross-Origin-Opener-Policy: 'restrict-properties' blocked the "
"access.";
case ProxyAccessBlockedReason::kPartitionedPopins:
return "Partitioned Popin blocked the access.";
}
}
void DOMWindow::PostedMessage::Trace(Visitor* visitor) const {
visitor->Trace(source);
visitor->Trace(user_activation);
}
BlinkTransferableMessage
DOMWindow::PostedMessage::ToBlinkTransferableMessage() && {
BlinkTransferableMessage result;
result.message = std::move(data);
result.sender_agent_cluster_id = source->GetAgentClusterID();
result.locked_to_sender_agent_cluster =
result.message->IsLockedToAgentCluster();
result.ports = std::move(channels);
if (user_activation) {
result.user_activation = mojom::blink::UserActivationSnapshot::New(
user_activation->hasBeenActive(), user_activation->isActive());
}
result.delegated_capability = delegated_capability;
return result;
}
void DOMWindow::Trace(Visitor* visitor) const {
visitor->Trace(frame_);
visitor->Trace(window_proxy_manager_);
visitor->Trace(input_capabilities_);
visitor->Trace(location_);
visitor->Trace(coop_access_monitor_);
EventTarget::Trace(visitor);
}
void DOMWindow::DisconnectCoopAccessMonitor(
const LocalFrameToken& accessing_main_frame) {
WTF::EraseIf(
coop_access_monitor_,
[&accessing_main_frame](const Member<CoopAccessMonitor>& monitor) {
return monitor->accessing_main_frame == accessing_main_frame;
});
}
} // namespace blink
|