Web requests made by pages and frames before their onCommitted event is fired
Reported by
k...@kzar.co.uk,
Nov 16 2016
|
||||
Issue descriptionUserAgent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.100 Safari/537.36 Steps to reproduce the problem: 1. Create an extension which logs when chrome.webNavigation.onCommitted and chrome.webRequest.onBeforeRequest are fired. 2. Browse the internet for a while. What is the expected behavior? onBeforeRequest events for requests made by pages and frames should never be fired before the onCommitted event was fired. What went wrong? Sometimes onBeforeRequest events for requests made by a page / frame are fired just before the page / frame's onCommitted event. Did this work before? N/A Does this work in other browsers? N/A Chrome version: 54.0.2840.100 Channel: stable OS Version: Debian Stretch Flash Version: Shockwave Flash 23.0 r0 This is troublesome for Adblock Plus since it makes it hard / impossible to reliably know the URL for a page / frame which made a request. See the following issues for a sample of the problems it causes us: https://issues.adblockplus.org/ticket/4598 https://issues.adblockplus.org/ticket/4599 https://issues.adblockplus.org/ticket/4647
,
Nov 16 2016
The documentation warns about this:[1] === start of blockquote === There is no defined ordering between events of the webRequest API and the events of the webNavigation API. It is possible that webRequest events are still received for frames that already started a new navigation, or that a navigation only proceeds after the network resources are already fully loaded. In general, the webNavigation events are closely related to the navigation state that is displayed in the UI, while the webRequest events correspond to the state of the network stack which is generally opaque to the user. === end of blockquote === [1] https://developer.chrome.com/extensions/webNavigation#relation_to_webRequest
,
Nov 16 2016
,
Nov 29 2016
Adding label TE-NeedsTriageHelp for further investigation. Thanks...!!
,
Feb 17 2017
Yes, the current implementation matches the documentation. So it is not a bug per se. However, with these semantics, webNavigation.onComitted is mostly useless, as there is no event that indicates when a tab/frame switches to a new document. This, however, is necessary to reliably determine the context of a request (in Adblock Plus and other extensions). Since we cannot rely on onCommitted because it is fired too late, we now have to evaluate the headers of each document ourselves, simulating Chrome's behavior. This behavior is quite complex, and potentially inconsistent between browsers and browser versions. So this is a rather complicated and error-prone hack, which onCommitted seems to exists for, to avoid, in the first place.
,
Feb 17 2017
>What is the expected behavior? >onBeforeRequest events for requests made by pages and frames should never be fired before the onCommitted event was fired. Why? Prefetching is enabled by default in the browser so the expected behavior is for the requests to fire before onCommitted. >there is no event that indicates when a tab/frame switches to a new document chrome.tabs.onReplaced is fired when a tab is replaced with another tab due to prerendering or instant.
,
Feb 17 2017
This has nothing to do with prefetching. The prefetched document just gets a new tabId, and for that tabId, onComitted ideally would be fired before any onBeforeRequest event. But in the case we discussed so far, prefetching isn't even involved, but still requests are reported before onComitted.
,
Feb 17 2017
>But in the case we discussed so far, prefetching isn't even involved Does it mean you've disabled "Use a prediction service to load pages more quickly" option? >The prefetched document just gets a new tabId, and for that tabId, onComitted ideally would be fired before any onBeforeRequest event. Just to clarify, for prefetched tabs onCommitted can't be fired before webRequest.onBeforeRequest event: 1. A prefetched tab's id initially is -1 2. it starts loading the page so webRequest events like onBeforeRequest are fired 3. webNavigation events aren't yet fired because the hidden tab isn't yet in the tabstrip [1] 4. the browser decides to show the tab (e.g. user confirms the url input in the address bar) 5. the hidden tab is added to the tab strip, gets a new valid id, replaces the currently displayed tab, webNavigation.onBeforeNavigate and tab.onReplaced events are fired [1]: https://cs.chromium.org/chromium/src/chrome/browser/extensions/api/web_navigation/web_navigation_api.cc?l=267&rcl=ad993476e691b6352ae99e62df1ef2f01013d89b
,
Feb 17 2017
Prefetching only occurs when you type a URL into the omnibox, which then gets auto-completed. Chrome doesn't randomly prefetches links or alike. That is why it's not relevant to the observations above. Moreover, prefeteched tabs do have a proper ID, which is used by the webRequest API at least. Otherwise, tab.onReplaced would have no purpose, as it reports that ID along the previous ID of the tab. You might be right though that webNavigation events aren't fired for prefetched/hidden tabs. I didn't check that. But if this the case, this would be yet another (huge) problem. As pointed out above, it's an essential requirement for a wide range of extensions, to associate documents with requests. This requires an event that is fired for each new document (prefetched or not) before any request is sent.
,
Feb 17 2017
Okay, let's look at chrome://tracing while clicking a random link on wikipedia: 1. a link was clicked 2. webNavigation.onBeforeNavigate is fired = navigation is initialized: "StartToCommit" [1] 3. webRequest.onBeforeRequest is fired for the clicked link request: "NotifyBeforeURLRequest" 4. data is received, header and data events are fired accordingly 5. webNavigation.onCommitted is fired in DidNavigate after the URL is checked by the safe web browsing filters and so on: "OnDidCommitProvisionalLoad" So non-prefetched pages have at least one request to the page URL before onCommitted. If I understand the bug report correctly, the problem is not this initial request, but the requests for the stuff inside that page. At this point I could only guess that sometimes the page is parsed so fast by the background html parser (it runs in a different process as you can see on the tracing page) that it manages to initiate new requests before the main process sends onCommitted to an extension. I agree it'd be nice to have an extensions API to prevent that from happening. There are many users that would enable such option in an extension for privacy. [1]: https://cs.chromium.org/chromium/src/content/browser/frame_host/navigation_handle_impl.cc?l=75&rcl=7a4e3a4e6fa17894c3a4cdc0f03ed3380fe468f9
,
Mar 12 2017
> If I understand the bug report correctly, the problem is not this initial request, but the requests for the stuff inside that page. At this point I could only guess that sometimes the page is parsed so fast by the background html parser (it runs in a different process as you can see on the tracing page) that it manages to initiate new requests before the main process sends onCommitted to an extension. Yes, that is the issue. I think cached secondary resources are more likely to load before onCommitted is fired. I also had to deal with it for uBlock Origin: https://github.com/gorhill/uBlock/issues/2053#issuecomment-252241737 The fix was mainly to rely on onBeforeRequest/main_frame to guess that a new top document is being loaded, and using onCommitted only to *confirm* that guess -- which is almost always true.
,
Feb 13 2018
|
||||
►
Sign in to add a comment |
||||
Comment 1 by t...@adblockplus.org
, Nov 16 2016