Opened on 08/30/2017 at 03:22:39 PM

Closed on 10/18/2017 at 12:08:52 AM

#5599 closed defect (fixed)

[webextension] Error in include.postload.js

Reported by: hfiguiere Assignee: mjethani
Priority: P2 Milestone: Adblock-Plus-3.0-for-Firefox
Module: Platform Keywords:
Cc: sebastian, trev, kzar, mjethani, greiner Blocked By:
Blocking: Platform: Firefox
Ready: no Confidential: no
Tester: Unknown Verified working: no
Review URL(s):

https://codereview.adblockplus.org/29531677/
https://codereview.adblockplus.org/29581892/

Description

Environment

Firefox Nightly
Adblock Plus web-extension master for Firefox

How to reproduce

  1. Load the add-on
  2. Debug the add-on using the add-on debugging support in Firefox
  3. Look at the console in the debugger.

Observed behaviour

ReferenceError: ext is not defined include.postload.js:609:3

Expected behaviour

No error

Note

Doesn't happen in Chrome.

Attachments (3)

example.xpi (1.2 KB) - added by mjethani on 08/30/2017 at 04:26:34 PM.
An example extension
example2.xpi (1.1 KB) - added by trev on 08/31/2017 at 08:32:41 AM.
Minimal extension
example3.xpi (1.4 KB) - added by trev on 08/31/2017 at 08:37:08 AM.
Minimal extension

Download all attachments as: .zip

Change History (37)

comment:1 Changed on 08/30/2017 at 03:30:20 PM by kzar

  • Cc sebastian trev kzar mjethani added
  • Priority changed from Unknown to P2
  • Summary changed from Error in include.postload.js to [webextension] Error in include.postload.js

comment:2 Changed on 08/30/2017 at 03:36:32 PM by hfiguiere

  • Review URL(s) modified (diff)
  • Status changed from new to reviewing

comment:3 Changed on 08/30/2017 at 03:47:24 PM by mjethani

I'm pretty sure that both the scripts run in the same context, so if it's defined in the preload script it should be defined in the postload script as well.

Are you trying this out on master?

ext can be undefined if there is some other error during initialization. Are you seeing any other errors in the background page's console? What about the console of the web page?

comment:4 Changed on 08/30/2017 at 04:09:25 PM by hfiguiere

This is master. Revision 3c423eeb5b89.

The first error in the console when reloading the add-on is the one mentioned. It is repeated 14 times in my case.

Indeed MDN says:

There is only one global scope per frame per extension, so variables from one content script can directly be accessed by another content script, regardless of how the content script was loaded.

comment:5 Changed on 08/30/2017 at 04:11:39 PM by mjethani

I see, this is interesting. I added a couple of log statements to see what's going on. Firefox sometimes runs the postload script before the preload script. This appears to happen only on installation. It also doesn't happen always.

There is already a bug about Firefox's behavior of running the content scripts before loading the background page. We should report another one.

The workaround may be to check for a variable declared in the preload script and exit if it is undefined. At the end of include.preload.js we could set window.preloadCompleted = true and check for this in the postload script; if it is not true, skip the postload stuff.

Last edited on 08/30/2017 at 04:15:52 PM by mjethani

comment:6 follow-ups: Changed on 08/30/2017 at 04:23:00 PM by kzar

Note this could be a security issue since if the page contains an element with the id of ext then typeof ext will no longer be undefined. We've always assumed the preload scripts will run before the postload ones. See this great writeup.

Changed on 08/30/2017 at 04:26:34 PM by mjethani

An example extension

comment:7 follow-up: Changed on 08/30/2017 at 04:27:30 PM by mjethani

I've attached a standalone extension where you can see this problem. Let's report this to Mozilla. Hubert, will you do it? I can do it otherwise.

comment:8 in reply to: ↑ 6 Changed on 08/30/2017 at 04:37:36 PM by mjethani

Replying to kzar:

Note this could be a security issue since if the page contains an element with the id of ext then typeof ext will no longer be undefined. We've always assumed the preload scripts will run before the postload ones. See this great writeup.

That's a very good point.

Hmm ... it should be sufficient to check for window.preloadCompleted === true (strict equality).

Last edited on 08/30/2017 at 04:53:02 PM by mjethani

comment:9 Changed on 08/30/2017 at 05:16:03 PM by hfiguiere

After the error about ext I get a lot of

Error: Could not establish connection. Receiving end does not exist. (unknown)

Like described at https://bugzilla.mozilla.org/show_bug.cgi?id=1369841#c2 (the Mozilla bug mentioned above).

comment:10 in reply to: ↑ 7 ; follow-up: Changed on 08/30/2017 at 05:39:57 PM by hfiguiere

Replying to mjethani:

I've attached a standalone extension where you can see this problem. Let's report this to Mozilla. Hubert, will you do it? I can do it otherwise.

As I am filing a bug for Mozilla, and I can't reproduce the problem with your sample extension. :-/

comment:11 in reply to: ↑ 10 Changed on 08/30/2017 at 06:03:47 PM by mjethani

Replying to hfiguiere:

Replying to mjethani:

I've attached a standalone extension where you can see this problem. Let's report this to Mozilla. Hubert, will you do it? I can do it otherwise.

As I am filing a bug for Mozilla, and I can't reproduce the problem with your sample extension. :-/

I found that it doesn't happen all the time. You have to try a few times to reproduce it. In the web page console you should see the error message.

Yeah, you have to keep one web page open in the browser so it runs the content scripts on installation.

comment:12 Changed on 08/30/2017 at 07:33:25 PM by trev

It's best to clean up manifest.json in this example extension before filing the bug, it has lots of unnecessary details - ideally, it should really be a minimal extension.

comment:13 Changed on 08/30/2017 at 08:48:47 PM by hfiguiere

I filed this Mozilla issue https://bugzilla.mozilla.org/show_bug.cgi?id=1395287

Haven't attached the reproducible test case yet.

Changed on 08/31/2017 at 08:32:41 AM by trev

Minimal extension

comment:14 Changed on 08/31/2017 at 08:34:17 AM by trev

I attached the extension with minimized manifest. However, I am also unable to reproduce this issue, neither in Nightly nor in Firefox 55. Tried reloading the extension ten times, content scripts always load in correct order.

Changed on 08/31/2017 at 08:37:08 AM by trev

Minimal extension

comment:15 Changed on 08/31/2017 at 08:39:05 AM by trev

It seems that I guessed correctly and the issue is I/O delay here. In example3.xpi I made content.js very large (added padding comments) and now I can reproduce the issue reliably.

comment:16 Changed on 08/31/2017 at 08:49:52 AM by trev

I attached the extension to https://bugzilla.mozilla.org/show_bug.cgi?id=1395287 and added steps to reproduce.

comment:17 Changed on 08/31/2017 at 09:03:56 AM by trev

As to what we can do about this, I see two options:

  1. Make the content scripts self-contained. This probably means turning them and their dependencies (ext in particular) into modules that are compiled together via webpack (there will be two collections of modules executing in the same scope, our current approach doesn't support that). This will mean some code duplication of course, but it is only 3 kB already, less if we reduce the ext part as we plan to do anyway.
  2. In composer.postload.js, check whether "ext" is defined (make sure to consider the scenario mentioned in comment:6). If it isn't, delay initialization.

While I think that the former is the proper solution, we probably want to implement the latter as a short-term solution.

comment:18 in reply to: ↑ 6 Changed on 08/31/2017 at 09:09:10 AM by trev

Replying to kzar:

Note this could be a security issue since if the page contains an element with the id of ext then typeof ext will no longer be undefined.

We should be able to avoid hitting this by adding var ext; (not let ext;) to composer.postload.js. If the variable is defined, the fallback won't be triggered. And if ext is already defined, this statement will have not effect

comment:19 Changed on 08/31/2017 at 03:30:41 PM by sebastian

Note that it is not only ext but also some functions/variables from include.preload.js which include.postload.js relies on. Having the document_end script load and run all of that code again seems like a bad idea to me, as this will add up to the memory overhead per docunment, not to mention side effects if any of the shared logic relies on a global state.

comment:20 follow-up: Changed on 08/31/2017 at 04:10:42 PM by mjethani

It seems to me that at_document_end is for content scripts that are independent of content scripts executed at at_document_start. Even if that is not the case, as of now it seems we have a problem assuming that they'll run in sequence. How about running all the stuff in include.postload.js after the document has been loaded, i.e. in the document's load handler? Then we'll have only one set of scripts executed at at_document_start, and they'll set up their event handlers as necessary. It certainly reduces the reliance on browsers doing the right thing.

comment:21 in reply to: ↑ 20 ; follow-up: Changed on 08/31/2017 at 05:46:49 PM by sebastian

Replying to mjethani:

It seems to me that at_document_end is for content scripts that are independent of content scripts executed at at_document_start.

That is not the case. document_start is for content scripts that are required to run early (i.e. before the browser switches to the new document and/or before any of the page's scripts run). document_end is for content scripts that require the DOM to be complete or are just not urgent enough to block the renderer while the document is still loading. Naturally extensions can have different features that have different requirements, and naturally there might be some shared code. If Firefox isn't guaranteeing the order of content scripts, its obviously a bug on their end.

Even if that is not the case, as of now it seems we have a problem assuming that they'll run in sequence. How about running all the stuff in include.postload.js after the document has been loaded, i.e. in the document's load handler? Then we'll have only one set of scripts executed at at_document_start, and they'll set up their event handlers as necessary. It certainly reduces the reliance on browsers doing the right thing.

For the code we have in include.preload.js and inject.preload.js, document_end is too late. Some of the code in there has to run before any of the page's scripts run, in order to avoid circumvention. Furthermore, deferring element hiding until the DOM is complete, would cause ads to be visible while the page is still loading.

However, the other way around, running all scripts at document_start would be possible (when adding some DOMContentReady listeners). However, the downside with that approach would be that it will potentially slow down page load a bit, as there will be more code to load/run early. But if we can limit this workaround to the Firefox builds, this might be acceptable.

comment:22 in reply to: ↑ 21 Changed on 08/31/2017 at 06:00:37 PM by mjethani

Replying to sebastian:

However, the other way around, running all scripts at document_start would be possible (when adding some DOMContentReady listeners). However, the downside with that approach would be that it will potentially slow down page load a bit, as there will be more code to load/run early. But if we can limit this workaround to the Firefox builds, this might be acceptable.

Yes, this is what I meant, but instead of DOMContentReady we should use load. The latter is dispatched after everything else, including images, stylesheets, and so on have been loaded. This should not slow down the page load then.

comment:23 Changed on 08/31/2017 at 07:16:51 PM by sebastian

Sorry, in fact, this is essentially what you were suggesting.

But I'm not sure about using the load event. A website can potentially remain in "interactive" state for a rather long time, possibly forever, with abp:subscribe links and the composer not working then.

I suppose some performance degradation could still occur, by loading/parsing more lines/files of code in a hot spot, even if most execution won't happen before DOMContentReady. Also it seems like a hack using document_start+DOMContentReady if there is document_end. However, we could limit that workaround by having our buildtools convert document_end scripts to document_start scripts wrapped into a DOMContentReady listener only for the gecko-webext build target.

comment:24 Changed on 09/01/2017 at 08:45:24 PM by hfiguiere

I have updated the patch. I have opted to not have a different code for Chrome and Firefox (Gecko) for the sake of simplicity.

It is my understanding that DOMContentReady is about the same time as the document_end content script would be run.

comment:25 follow-up: Changed on 09/02/2017 at 09:28:56 AM by mjethani

OK, let's put this in perspective a little bit.

First of all, Firefox needs to get it together. If Chrome is able to avoid this problem, Firefox should too. These are clearly bugs in Firefox, and we can expect them to be fixed eventually, which means we can use a short-term solution/hack until such time.

Secondly, this is not the only error that occurs on installation; since the background page is unreachable from the content script, there are a number of errors.

Third, this only happens on installation of the extension and on browser startup. It's not as severe as it may seem.

We should probably just go for the simple solution of checking for the value of ext and not running that code if it's undefined.

We also have to do a similar hack for Mozilla bug #1369841: we're getting "response is undefined" in the elemhide.getSelectors handler, so we'll just have to check for that condition and exit from that function early.

comment:26 in reply to: ↑ 25 ; follow-up: Changed on 09/05/2017 at 11:03:56 AM by kzar

  • Cc greiner added

Replying to mjethani:

We should probably just go for the simple solution of checking for the value of ext and not running that code if it's undefined.

Yea, a quick check along with a comment linking the Mozilla bug sounds good to me. I wonder if we should also display an alert message informing the user that they should restart Firefox?

comment:27 in reply to: ↑ 26 Changed on 09/05/2017 at 01:41:15 PM by mjethani

Replying to kzar:

Replying to mjethani:

We should probably just go for the simple solution of checking for the value of ext and not running that code if it's undefined.

Yea, a quick check along with a comment linking the Mozilla bug sounds good to me. I wonder if we should also display an alert message informing the user that they should restart Firefox?

They don't have to restart Firefox unless there's an error in the background page, which is not the case here at least.

comment:28 Changed on 09/05/2017 at 01:59:49 PM by kzar

Ah cool, nevermind then.

comment:29 Changed on 09/11/2017 at 12:35:23 PM by hfiguiere

comment:30 Changed on 09/11/2017 at 04:08:26 PM by sebastian

Note that we still support Firefox >= 50. So we might still want to implement the workaround suggested in comment:25. On the other hand, if all this bug is causing is an error logged to the web page's console, sometimes, after the extension loaded, perhaps this isn't worth to be addressed if it is already fixed in newer Firefox versions.

comment:31 Changed on 10/11/2017 at 06:52:20 PM by hfiguiere

  • Owner hfiguiere deleted

comment:32 Changed on 10/17/2017 at 04:43:44 PM by mjethani

  • Owner set to mjethani
  • Review URL(s) modified (diff)

comment:33 Changed on 10/18/2017 at 12:07:58 AM by abpbot

comment:34 Changed on 10/18/2017 at 12:08:52 AM by mjethani

  • Milestone set to Adblock-Plus-for-Chrome-Opera-Firefox-next
  • Resolution set to fixed
  • Status changed from reviewing to closed

Add Comment

Modify Ticket

Change Properties
Action
as closed .
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from mjethani.
 
Note: See TracTickets for help on using tickets.