frameModule.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*******************************************************************************
  2. ηMatrix - a browser extension to black/white list requests.
  3. Copyright (C) 2014-2019 The µBlock authors
  4. Copyright (C) 2019 Alessio Vanni
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see {http://www.gnu.org/licenses/}.
  15. Home: https://libregit.org/heckyel/ematrix
  16. uMatrix Home: https://github.com/gorhill/uMatrix
  17. */
  18. /* global Components */
  19. 'use strict';
  20. /******************************************************************************/
  21. // https://github.com/gorhill/uBlock/issues/800#issuecomment-146580443
  22. this.EXPORTED_SYMBOLS = ['contentObserver', 'LocationChangeListener'];
  23. const {interfaces: Ci, utils: Cu} = Components;
  24. const {Services} = Cu.import('resource://gre/modules/Services.jsm', null);
  25. const {XPCOMUtils} = Cu.import('resource://gre/modules/XPCOMUtils.jsm', null);
  26. const hostName = Services.io.newURI(Components.stack.filename, null, null).host;
  27. // Cu.import('resource://gre/modules/Console.jsm');
  28. /******************************************************************************/
  29. const getMessageManager = function(win) {
  30. let iface = win
  31. .QueryInterface(Ci.nsIInterfaceRequestor)
  32. .getInterface(Ci.nsIDocShell)
  33. .sameTypeRootTreeItem
  34. .QueryInterface(Ci.nsIDocShell)
  35. .QueryInterface(Ci.nsIInterfaceRequestor);
  36. try {
  37. return iface.getInterface(Ci.nsIContentFrameMessageManager);
  38. } catch (ex) {
  39. // This can throw. It appears `shouldLoad` can be called *after* a
  40. // tab has been closed. For example, a case where this happens all
  41. // the time (FF38):
  42. // - Open twitter.com (assuming you have an account and are logged in)
  43. // - Close twitter.com
  44. // There will be an exception raised when `shouldLoad` is called
  45. // to process a XMLHttpRequest with URL `https://twitter.com/i/jot`
  46. // fired from `https://twitter.com/`, *after* the tab is closed.
  47. // In such case, `win` is `about:blank`.
  48. }
  49. return null;
  50. };
  51. /******************************************************************************/
  52. var contentObserver = {
  53. classDescription: 'content-policy for ' + hostName,
  54. classID: Components.ID('{c84283d4-9975-41b7-b1a4-f106af56b51d}'),
  55. contractID: '@' + hostName + '/content-policy;1',
  56. ACCEPT: Ci.nsIContentPolicy.ACCEPT,
  57. MAIN_FRAME: Ci.nsIContentPolicy.TYPE_DOCUMENT,
  58. contentBaseURI: 'chrome://' + hostName + '/content/js/',
  59. cpMessageName: hostName + ':shouldLoad',
  60. uniqueSandboxId: 1,
  61. modernFirefox:
  62. (Services.appinfo.ID === '{ec8030f7-c20a-464f-9b0e-13a3a9e97384}'
  63. || Services.appinfo.ID === '{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}')
  64. && Services.vc.compare(Services.appinfo.version, '44') > 0,
  65. get componentRegistrar() {
  66. return Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
  67. },
  68. get categoryManager() {
  69. return Components.classes['@mozilla.org/categorymanager;1']
  70. .getService(Ci.nsICategoryManager);
  71. },
  72. QueryInterface: XPCOMUtils.generateQI([
  73. Ci.nsIFactory,
  74. Ci.nsIObserver,
  75. Ci.nsIContentPolicy,
  76. Ci.nsISupportsWeakReference
  77. ]),
  78. createInstance: function(outer, iid) {
  79. if ( outer ) {
  80. throw Components.results.NS_ERROR_NO_AGGREGATION;
  81. }
  82. return this.QueryInterface(iid);
  83. },
  84. register: function() {
  85. Services.obs.addObserver(this, 'document-element-inserted', true);
  86. if ( !this.modernFirefox ) {
  87. this.componentRegistrar.registerFactory(
  88. this.classID,
  89. this.classDescription,
  90. this.contractID,
  91. this
  92. );
  93. this.categoryManager.addCategoryEntry(
  94. 'content-policy',
  95. this.contractID,
  96. this.contractID,
  97. false,
  98. true
  99. );
  100. }
  101. },
  102. unregister: function() {
  103. Services.obs.removeObserver(this, 'document-element-inserted');
  104. if ( !this.modernFirefox ) {
  105. this.componentRegistrar.unregisterFactory(
  106. this.classID,
  107. this
  108. );
  109. this.categoryManager.deleteCategoryEntry(
  110. 'content-policy',
  111. this.contractID,
  112. false
  113. );
  114. }
  115. },
  116. // https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIContentPolicy
  117. // https://bugzil.la/612921
  118. shouldLoad: function(type, location, origin, context) {
  119. if ( Services === undefined || !context ) {
  120. return this.ACCEPT;
  121. }
  122. if ( !location.schemeIs('http') && !location.schemeIs('https') ) {
  123. return this.ACCEPT;
  124. }
  125. var contextWindow;
  126. if ( type === this.MAIN_FRAME ) {
  127. contextWindow = context.contentWindow || context;
  128. } else if ( type === this.SUB_FRAME ) {
  129. contextWindow = context.contentWindow;
  130. } else {
  131. contextWindow = (context.ownerDocument || context).defaultView;
  132. }
  133. // https://github.com/gorhill/uMatrix/issues/706
  134. if ( !contextWindow ) {
  135. return this.ACCEPT;
  136. }
  137. // The context for the toolbar popup is an iframe element here,
  138. // so check context.top instead of context
  139. if ( !contextWindow.top || !contextWindow.location ) {
  140. return this.ACCEPT;
  141. }
  142. let messageManager = getMessageManager(contextWindow);
  143. if ( messageManager === null ) {
  144. return this.ACCEPT;
  145. }
  146. let details = {
  147. rawType: type,
  148. url: location.asciiSpec
  149. };
  150. if ( typeof messageManager.sendRpcMessage === 'function' ) {
  151. // https://bugzil.la/1092216
  152. messageManager.sendRpcMessage(this.cpMessageName, details);
  153. } else {
  154. // Compatibility for older versions
  155. messageManager.sendSyncMessage(this.cpMessageName, details);
  156. }
  157. return this.ACCEPT;
  158. },
  159. initContentScripts: function(win, sandbox) {
  160. let messager = getMessageManager(win);
  161. let sandboxId = hostName + ':sb:' + this.uniqueSandboxId++;
  162. if ( sandbox ) {
  163. let sandboxName = [
  164. win.location.href.slice(0, 100),
  165. win.document.title.slice(0, 100)
  166. ].join(' | ');
  167. // https://github.com/gorhill/uMatrix/issues/325
  168. // "Pass sameZoneAs to sandbox constructor to make GCs cheaper"
  169. sandbox = Cu.Sandbox([win], {
  170. sameZoneAs: win.top,
  171. sandboxName: sandboxId + '[' + sandboxName + ']',
  172. sandboxPrototype: win,
  173. wantComponents: false,
  174. wantXHRConstructor: false
  175. });
  176. sandbox.injectScript = function(script) {
  177. Services.scriptloader.loadSubScript(script, sandbox);
  178. };
  179. }
  180. else {
  181. sandbox = win;
  182. }
  183. sandbox._sandboxId_ = sandboxId;
  184. sandbox.sendAsyncMessage = messager.sendAsyncMessage;
  185. sandbox.addMessageListener = function(callback) {
  186. if ( sandbox._messageListener_ ) {
  187. sandbox.removeMessageListener();
  188. }
  189. sandbox._messageListener_ = function(message) {
  190. callback(message.data);
  191. };
  192. messager.addMessageListener(
  193. sandbox._sandboxId_,
  194. sandbox._messageListener_
  195. );
  196. messager.addMessageListener(
  197. hostName + ':broadcast',
  198. sandbox._messageListener_
  199. );
  200. };
  201. sandbox.removeMessageListener = function() {
  202. try {
  203. messager.removeMessageListener(
  204. sandbox._sandboxId_,
  205. sandbox._messageListener_
  206. );
  207. messager.removeMessageListener(
  208. hostName + ':broadcast',
  209. sandbox._messageListener_
  210. );
  211. } catch (ex) {
  212. // It throws sometimes, mostly when the popup closes
  213. }
  214. sandbox._messageListener_ = null;
  215. };
  216. return sandbox;
  217. },
  218. observe: function(doc) {
  219. let win = doc.defaultView;
  220. if ( !win ) {
  221. return;
  222. }
  223. let loc = win.location;
  224. if ( !loc ) {
  225. return;
  226. }
  227. // https://github.com/gorhill/uBlock/issues/260
  228. // TODO: We may have to skip more types, for now let's be
  229. // conservative, i.e. let's not test against `text/html`.
  230. if ( doc.contentType.lastIndexOf('image/', 0) === 0 ) {
  231. return;
  232. }
  233. if ( loc.protocol !== 'http:' && loc.protocol !== 'https:' && loc.protocol !== 'file:' ) {
  234. if ( loc.protocol === 'chrome:' && loc.host === hostName ) {
  235. this.initContentScripts(win);
  236. }
  237. // What about data: and about:blank?
  238. return;
  239. }
  240. let lss = Services.scriptloader.loadSubScript;
  241. let sandbox = this.initContentScripts(win, true);
  242. // Can throw with attempts at injecting into non-HTML document.
  243. // Example: https://a.pomf.se/avonjf.webm
  244. try {
  245. lss(this.contentBaseURI + 'vapi-client.js', sandbox);
  246. lss(this.contentBaseURI + 'contentscript-start.js', sandbox);
  247. } catch (ex) {
  248. return; // don't further try to inject anything
  249. }
  250. let docReady = (e) => {
  251. let doc = e.target;
  252. doc.removeEventListener(e.type, docReady, true);
  253. lss(this.contentBaseURI + 'contentscript.js', sandbox);
  254. };
  255. if ( doc.readyState === 'loading') {
  256. doc.addEventListener('DOMContentLoaded', docReady, true);
  257. } else {
  258. docReady({ target: doc, type: 'DOMContentLoaded' });
  259. }
  260. }
  261. };
  262. /******************************************************************************/
  263. const locationChangedMessageName = hostName + ':locationChanged';
  264. var LocationChangeListener = function(docShell) {
  265. if ( !docShell ) {
  266. return;
  267. }
  268. var requestor = docShell.QueryInterface(Ci.nsIInterfaceRequestor);
  269. var ds = requestor.getInterface(Ci.nsIWebProgress);
  270. var mm = requestor.getInterface(Ci.nsIContentFrameMessageManager);
  271. if ( ds && mm && typeof mm.sendAsyncMessage === 'function' ) {
  272. this.docShell = ds;
  273. this.messageManager = mm;
  274. ds.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_LOCATION);
  275. }
  276. };
  277. LocationChangeListener.prototype.QueryInterface = XPCOMUtils.generateQI([
  278. 'nsIWebProgressListener',
  279. 'nsISupportsWeakReference'
  280. ]);
  281. LocationChangeListener.prototype.onLocationChange = function(webProgress, request, location, flags) {
  282. if ( !webProgress.isTopLevel ) {
  283. return;
  284. }
  285. this.messageManager.sendAsyncMessage(locationChangedMessageName, {
  286. url: location.asciiSpec,
  287. flags: flags,
  288. });
  289. };
  290. /******************************************************************************/
  291. contentObserver.register();
  292. /******************************************************************************/