Closed Bug 1599043 Opened 5 years ago Closed 4 years ago

Changing the propagation of the OnContentBlockingEvent

Categories

(Core :: Privacy: Anti-Tracking, task, P1)

task

Tracking

()

RESOLVED FIXED
mozilla74
Tracking Status
firefox74 --- fixed

People

(Reporter: dimi, Assigned: timhuang)

References

Details

Attachments

(10 files)

47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review
47 bytes, text/x-phabricator-request
Details | Review

To support fission, we plan to move the OnContentBlockingEvent entirely to the parent.

Content blocking events are now propagated in the following call sites:

  1. UrlClassifierCommon::SetBlockedContent
  2. UrlClassifierCommon::AnnotateChannel
  3. AntiTrackingCommon::NotifyBlockingDecision
  4. AntiTrackingCommon::AddFirstPartyStorageAccessGrantedFor

The plan is to move the OnContentBlockingEvent into the parent process while maintaining two copies of the ContentBlockingLog in both the parent and content process and gradually move the use cases of OnContentBlockingEvent in the child process to the parent process(Bug 1599046).

This allows us to land patch piece by piece instead of landing a giant patch to complete all the tasks.

Priority: -- → P1
Assignee: nobody → tihuang
Status: NEW → ASSIGNED

This adds a ContentBlockingLog into the WindowGlobalParent. This
ContentBlockingLog is bascially a copy of the log in the content
process. This log in parent is needed for the OnContentBlockingEvent in
parent process since we need an overview of the content blocking events
for OnContentBlockingEvent. And the ContentBlockingLog exits in the
content process in this stage, so we need to maintain a copy of it to
get the overview of the blocking events in parent.

Blocks: 1600878
Blocks: 1600896

This patch makes the WindowGlobalParent to be able to send the
OnContentBlockingEvent in the parent process.

Depends on D54929

This patch moves the propatation of the onContentBlockingEvent in the
content processes. After this, the
nsGlobalWindowOuter::NotifyContentBlockingEvent will only update the
ContentBlockingLog.

Depends on D55645

We make the OnContentBlockingEvent to be notified in the parent procees
for UrlClassifierCommon. There are two place would trigger this,
UrlClassifierCommon::SetBlockedContent and
UrlClassifierCommon::AnnotateChannel. But we still send to the child
process to notify the content blocking since we need to update the log
in the content process in this stage.

Depends on D55646

This patch adds an IPC message which allows content process to notify
the OnContentBlockingEvent in the parent process. This is needed because
there are some situations that the content blocking happens in content
processes, so we need to tell the parent process to notify it. Such as,
AntiTrackingCommon::AntiTrackingCommon::AddFirstPartyStorageAccessGrantedFor().

Depends on D55647

There are two places in the AntiTrackingCommon that it would notify the
content blocking event, NotifyBlockingDecision() and
AddFirstPartyStorageAccessGrantedFor(). We make these two places to
send a IPC to parent to issue parent to notify the event.

Depends on D55648

There are three major issues that we need to fix for tests if we move the
OnContentBlockingEvent to the parent process. First, we notify the event
in the idle queue in the parent process. For some reasons, the test
script could outrun the callbacks of the OnContentBlockingEvent. So, it
could happen that the UI hasn't got updated while we check its state. To
fix this, we make the test script to wait the UI to be updated
explicitly.

Second, the tracking UI tests would access the ContentblockingLog in the
content in order to get the hosts of different blocking categories. And
the log in the content may not be updated when we open the subview. And
there is no explicit way to know whether the log is updated or not. So,
we use SetTimeout to temporary fix this issue. Once we finish the work
that moving the ContentBlockingLog into the parent (Bug1599046), we can
remove this work-around.

Third, there is one test that it waits OnContentBlockingEvent in the
content. We make it to listen the event in the parent to fix it.

Depends on D55649

The OnContentBlockingEvent is no longer needed once we make the
OnContentBlockingEvent parent only.

Blocks: 1601310
Blocks: 1601660
Blocks: 1603053

This patch makes the matched info also set into the channels in the
parent process. This info is neeced for the ContentBlocking telemetry
and GeckoView also relies on it.

Depends on D55788

The GeckoView is listening OnContentBlockingEvent in the content process.
As we move the event into the parent process, we have to change it to
listen the event in the parent process.

This patch also adds a workaround in the test
ContentBlockingControllerTest#getLog(). This workaround adds a 500ms
delays before we check the ContentBlockingLog. This is needed because there
is a delay between the notification of OnContentBlockingEven in the parent
process and the actual recording of the log in the content process. This
workaround will be no longer needed once we move the log entirely to the
parent process (Bug 1599046).

Depends on D56748

Pushed by tihuang@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/68219c132efc
Part 1: Add a ContentBlockingLog into the WindowGlobalParent r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/0ad30634e416
Part 2: Allow the WindowGlobalParent to send OnContentBlockingEvent in parent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/aaf83f7806b4
Part 3: Stop propagation of the OnContentBlockingEvent in content processes. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/c8ed9c52508c
Part 4: Notify the OnContentBlockingEvent in the parent process in UrlClassifierCommon. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/a68bd2acf5d6
Part 5: Add an IPC message to allow content process to notify the OnContentBlockingEvent in the parent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/6b97581c33b6
Part 6: Make the AntiTrackingCommon to send IPC to parent to notify the OnContentBlockingEvent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/e4ea0d47136b
Part 7: Update tests to adapt the change of the OnContentBlockingEvent. r=dimi,johannh
https://hg.mozilla.org/integration/autoland/rev/1eadd9f5b50e
Part 8: Remove the unnecessary OnContentBlockingEvent event in PBrowser. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/7c3f0a58cc6c
Part 9: Set channel matched info in channels in parent process. r=dimi
https://hg.mozilla.org/integration/autoland/rev/463b815557e4
Part 10: Make GeckoView to listen OnContentBlockingEvent on the parent process. r=geckoview-reviewers,agi
Flags: needinfo?(tihuang)
Attachment #9113189 - Attachment description: Bug 1599043 - Part 4: Notify the OnContentBlockingEvent in the parent process in UrlClassifierCommon. r?dimi → Bug 1599043 - Part 4: Notify the OnContentBlockingEvent in the parent process in UrlClassifierCommon. r=dimi,Ehsan
Attachment #9113191 - Attachment description: Bug 1599043 - Part 6: Make the AntiTrackingCommon to send IPC to parent to notify the OnContentBlockingEvent. r?dimi → Bug 1599043 - Part 6: Make the AntiTrackingCommon to send IPC to parent to notify the OnContentBlockingEvent. r=dimi,Ehsan
Attachment #9113192 - Attachment description: Bug 1599043 - Part 7: Update tests to adapt the change of the OnContentBlockingEvent. r?dimi → Bug 1599043 - Part 7: Update tests to adapt the change of the OnContentBlockingEvent. r=dimi,johannh
Attachment #9113428 - Attachment description: Bug 1599043 - Part 8: Remove the unnecessary OnContentBlockingEvent event in PBrowser. r?dimi → Bug 1599043 - Part 8: Remove the unnecessary OnContentBlockingEvent event in PBrowser. r=dimi,Ehsan
Attachment #9115200 - Attachment description: Bug 1599043 - Part 9: Set channel matched info in channels in parent process. r?dimi! → Bug 1599043 - Part 9: Set channel matched info in channels in parent process. r=dimi

There are some r+ patches which didn't land and no activity in this bug for 2 weeks.
:timhuang, could you have a look please?
For more information, please visit auto_nag documentation.

Flags: needinfo?(tihuang)

We planed to land this patch in Nightly 74. I will land this when the soft code freeze ends.

Flags: needinfo?(tihuang)
Pushed by tihuang@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/2c4f84b0e661
Part 1: Add a ContentBlockingLog into the WindowGlobalParent r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/7316a18109f9
Part 2: Allow the WindowGlobalParent to send OnContentBlockingEvent in parent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/c4c58db85479
Part 3: Stop propagation of the OnContentBlockingEvent in content processes. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/3de15e4fce42
Part 4: Notify the OnContentBlockingEvent in the parent process in UrlClassifierCommon. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/88500327ad55
Part 5: Add an IPC message to allow content process to notify the OnContentBlockingEvent in the parent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/ec18a6d2b59b
Part 6: Make the AntiTrackingCommon to send IPC to parent to notify the OnContentBlockingEvent. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/26f6cebb90ac
Part 7: Update tests to adapt the change of the OnContentBlockingEvent. r=dimi,johannh
https://hg.mozilla.org/integration/autoland/rev/462cef293a45
Part 8: Remove the unnecessary OnContentBlockingEvent event in PBrowser. r=dimi,Ehsan
https://hg.mozilla.org/integration/autoland/rev/578070e7b439
Part 9: Set channel matched info in channels in parent process. r=dimi
https://hg.mozilla.org/integration/autoland/rev/3a266fb44ba4
Part 10: Make GeckoView to listen OnContentBlockingEvent on the parent process. r=geckoview-reviewers,agi
Pushed by archaeopteryx@coole-files.de:
https://hg.mozilla.org/integration/autoland/rev/b2de33dc3f66
Part 11: Set browser_protections_UI.js as expected to pass to fix unexpected pass. CLOSED TREE
Regressions: 1609144
Regressions: 1609753
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: