Clarify the remote type for cross origin/site iframe if both COOP and COEP headers are set
Categories
(Core :: DOM: Core & HTML, task, P1)
Tracking
()
Tracking | Status | |
---|---|---|
firefox78 | --- | fixed |
People
(Reporter: tt, Assigned: tt)
References
Details
Attachments
(3 files, 2 obsolete files)
The original question:
Foo.com
- Boo.com
If both COOP and COEP are set, which remote type of the process for Boo.com should be?
I guess maybe it's a question about:
Foo.com
- [iframe] Boo.com
- [Nested iframe] Boo.com
Can we allow iframe Boo.com to postMessage SAB to its nested iframe Boo.com?
Assignee | ||
Comment 1•5 years ago
|
||
Comment 2•5 years ago
|
||
Comment on attachment 9117190 [details]
Disable a wpt test and figure out the solution on Bug 1605176;
Revision D57945 was moved to bug 1594748. Setting attachment 9117190 [details] to obsolete.
Assignee | ||
Comment 3•5 years ago
|
||
Serialize SAB on BrowsingContext::PostMessageMoz was not allowed. And, this
patch fixes that. Now, SAB is able to be serialized if the callerWindow passes
the check for CrossOriginIsolated. Note that the deserialization for this case
is still not allowed because the caller window and target windows are assumed
to be in the two different agent cluster and thus the message event should
throw on the target window.
Comment 4•5 years ago
|
||
If Foo.com nests Boo.com they are cross-site so cannot have shared memory. In the future we might even put them in different processes, but that's not required today.
If Foo.com nests Boo.com and that nests Boo.com, then Foo.com is one agent that the two instances of Boo.com are another. The two instances of Boo.com will be able to share memory. The two agents in this setup (Foo.com and Boo.com) might end up in different processes, but that's not required today, nor the plan.
Does that help?
Assignee | ||
Comment 5•5 years ago
|
||
(In reply to Anne (:annevk) from comment #4)
If Foo.com nests Boo.com and that nests Boo.com, then Foo.com is one agent that the two instances of Boo.com are another. The two instances of Boo.com will be able to share memory. The two agents in this setup (Foo.com and Boo.com) might end up in different processes, but that's not required today, nor the plan.
Does that help?
Yeah, that helps. Thanks for clarification!
So we have already ensured that Foo.com and Boo.com be not able to share memory, but the first nested Boo.com cannot share memory with its nested Boo.com.
I found this while attaching the patch in this bug (I hit the assertion for ensure the process remote type of the inner-most Boo.com iframe be the webCOOP+COEP). I was thinking the assertion is correct and thus the inner-most iframe should live in the webCOOP+COEP process so that it could share its memory with its parent iframe (another Boo.com iframe).
However, if I read your reply correctly, it's not required (through two instances of Boo.com should be able to share memory) so I would just probably change the the assertion to ignore the cases like this.
Comment 6•5 years ago
|
||
Are you saying that with Fission, when there's multiple content processes for a single browsing context group, we use a COOP+COEP process for the parent document, but a different process type for the child? I think that would be a bug. With out-of-process iframes we should still use COOP+COEP processes for them.
Assignee | ||
Comment 7•5 years ago
|
||
(In reply to Anne (:annevk) from comment #6)
Are you saying that with Fission, when there's multiple content processes for a single browsing context group, we use a COOP+COEP process for the parent document, but a different process type for the child? I think that would be a bug. With out-of-process iframes we should still use COOP+COEP processes for them.
Yes, to avoid confusion, I list what I found below:
// Assuming all headers are set
Window A (foo.com) // top-level window
- Window B (foo.com)
Window A and window B are in the same COOP+COEP process and that is expected.
However, for the case like this:
// Assuming all headers are set
Window A (foo.com) // top-level window
- Window B (boo.com)
- Window C (boo.com)
Either window B or window C are not in the COOP+COEP process. (To be more clear, Window A is in the COOP+COEP process) The assertion I mentioned caught the issue. If we only bypass that assertion, Window B and Window C cannot share memory.
Comment 8•5 years ago
|
||
Thanks for the clarification. For the A/B/C case 1) B and C have to be in the same process as they can access each other synchronously through script. 2) They have to be in a COOP+COEP process. That could be a distinct process instance from A though.
Pre-Fission and on systems were it is not feasible it's acceptable for B and C to share a process with A and that's our shipping plan, but it's not ideal and long term they should have distinct processes.
Assignee | ||
Comment 9•5 years ago
|
||
(I will get back to this once I finished bug 1601594)
Updated•5 years ago
|
Assignee | ||
Updated•4 years ago
|
Assignee | ||
Comment 11•4 years ago
|
||
So, now for the testing/web-platform/tests/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/window-failure.https.html
- When the fission is not enabled this test would timeout (I changed expectation in bug 1594748)
What I got while running the test was:
0:45.29 pid:23753 [Child 23989, Main Thread] WARNING: Failed to clone data.: file /home/shes050117/Work/mozilla-central/dom/base/StructuredCloneHolder.cpp, line 154
0:45.29 pid:23753 [Child 23989, Main Thread] WARNING: 'rv.Failed()', file /home/shes050117/Work/mozilla-central/dom/base/PostMessageEvent.cpp, line 196
After talking with Anne, I wonder if we want to remove only passing isSharedMemoryAllowed when the agentclusters are matching while serailizing. (Because it would cause serailizing fail when the agent cluster mismatch). And removing that is fine because :baku added clonePolicy.allowIntraClusterClonableSharedObjects();
to prevent reading the content while deserailizing.
:baku does this change sound reasonable to you?
- When the fission is enabled the test would fail because in the iframe the
window.crossOriginIsolated
is false.
I will figure out why, but I guess it's either because it's running in a wrong process or just getting a wrong value for COOP and COEP
Assignee | ||
Comment 12•4 years ago
|
||
Sorry for the noise. I found the expection is for fission. Please ignore my comment for the case that fission is not enabled
Assignee | ||
Comment 13•4 years ago
|
||
We get the remote type DocumentLoadListener::MaybeTriggerProcessSwitch().
In e10sUtils->GetRemoteTypeForPrincipal, a remote type is prepended with
the webCOOP+COEP prefix if a frame has the same value for site origin as the
current (parent window's) remote type.
However, this wpt tests that a cross site iframe that set valid COEP and
postMessage a SharedArrayBuffer back to its parnet that running in COOP+COEP
environment. It fails because the iframe is not running in the process with the
web_COOP+COEP prefix.
To fix this, this patch assumes that the iframe doesn't have an wrong COOP and
COEP values. (Otherwise, it should fail while checking these values in the http
channel.) And thus, if the prefer remote type has been prepended with the
prefix, we set the same prefix for the frame as well.
Assignee | ||
Comment 14•4 years ago
|
||
(In reply to Tom Tung [:tt, :ttung] from comment #11)
- When the fission is enabled the test would fail because in the iframe the
window.crossOriginIsolated
is false.I will figure out why, but I guess it's either because it's running in a wrong process or just getting a wrong value for COOP and COEP
It's because of here
For the non-same-origin iframe: the remote type will be changed
For the same-origin iframe, the remote type will be the same
Assignee | ||
Comment 15•4 years ago
|
||
Updated•4 years ago
|
Assignee | ||
Comment 16•4 years ago
|
||
Assignee | ||
Comment 17•4 years ago
|
||
Depends on D75035
Assignee | ||
Comment 18•4 years ago
|
||
Updated•4 years ago
|
Updated•4 years ago
|
Assignee | ||
Comment 19•4 years ago
|
||
Updated•4 years ago
|
Comment 20•4 years ago
|
||
Updated•4 years ago
|
Comment 21•4 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/bf1aa383a8fe
https://hg.mozilla.org/mozilla-central/rev/9aa5ee2e3931
https://hg.mozilla.org/mozilla-central/rev/61141a5f9c11
Description
•