We should revisit #31740 (closed) for ESR78. In a first inspection I could see requests to url-classifier-skip-urls, which the current patch should have removed.
We could also use the opportunity to simplify the patch a bit, for example trying to make all the changes in a single place (e.g. something like a blacklist of bucket/collection somewhere in the RemoteSettings client code).
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
We could also use this to think whether it's ok for some cases (e.g. like in #30682 (closed)) to allow them and just disable the syncing part, but still use the dumps that the browser ships (e.g. services/settings/dumps/security-state/intermediates.json). At the time of writing this, the dump for 78.0.1esr is the same as the remote state.
Making RemoteSettings instances work with just the local JSON dumps seems not so simple, as these are only loaded on first time, so even if in later releases we update these JSON dumps the local DBs will not keep up to date with them. Of course we can patch the implementation to change this, but I'm not sure if it's worth the effort. Given that we need at least some of the instances (e.g. blocklists), the privacy gain of avoiding some collections to be kept up to date with remote is not so big (we still have to ping Firefox servers every 24 hours, but we can avoid one additional request per RemoteSettings instance that we do not need). This was already mentioned in #31740 (closed).
This keeps a list of sites with breaches, and displays a doorhanger warning if the user visits that site. In principle I would think this can be good for users, but it does use the "Firefox Monitor" brand and points to monitor.firefox.com, so I'm not sure if we should keep it. But I guess is more about deciding whether to remove the whole feature rather than just remove the RemoteSettings instance. Maybe create a ticket for this?
The first callsite is already addressed in the current patch. The second one is new, apparently resets the homepage url if the value is in a blocklist: https://bugzilla.mozilla.org/show_bug.cgi?id=1535049. I'm not sure this is highly important, so I would also patch.
cert-revocations is new, crlite. I think we should check the value of security.remote_settings.crlite_filters.enabled and not create the RemoteSettings instance if this is false. And similarly with security-state/intermediates.
The other two, pinning/pins and security-state/onecrl were already in 68, so we can keep them.
Ok, I looked a bit more exhaustively and I was missing some instances. There's no easy way of finding out this list, since many of these instances are created lazily some time after the browser has started.
That said, I made a patch that (apart from removing a couple more instances):
Clears the remote-settings indexeddb taking advantage of the v2 -> v3 migration (for a fresh start).
Stops packaging some JSON dumps for collections we should not need.
I did this because for collections in the "main" bucket, even if there's not explicit RemoteSettings(collection) call, they will still be updated/persisted if there is a JSON dump for them or there's data already stored in the local DB. With this and #40048 (closed), #40073 (closed), #30682 (closed) fixed (in principle) in ESR78 these should be the only active/updated/persisted RemoteSettings instances:
main/search-default-override-allowlist
main/language-dictionaries
main/hijack-blocklists (I think we can actually keep this one, given that the use case is similar to blocklists/addons)
blocklists/addons
blocklists/gfx
blocklists/plugins
security-state/onecrl
pinning/pins
These would be active if it was not for the reason mentioned in each one: