| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 const {Filter, RegExpFilter, BlockingFilter} = require("filterClasses"); | 22 const {Filter, RegExpFilter, BlockingFilter} = require("filterClasses"); |
| 23 const {Subscription} = require("subscriptionClasses"); | 23 const {Subscription} = require("subscriptionClasses"); |
| 24 const {defaultMatcher} = require("matcher"); | 24 const {defaultMatcher} = require("matcher"); |
| 25 const {FilterNotifier} = require("filterNotifier"); | 25 const {FilterNotifier} = require("filterNotifier"); |
| 26 const {Prefs} = require("prefs"); | 26 const {Prefs} = require("prefs"); |
| 27 const {checkWhitelisted, getKey} = require("whitelisting"); | 27 const {checkWhitelisted, getKey} = require("whitelisting"); |
| 28 const {stringifyURL, extractHostFromFrame, isThirdParty} = require("url"); | 28 const {stringifyURL, extractHostFromFrame, isThirdParty} = require("url"); |
| 29 const {port} = require("messaging"); | 29 const {port} = require("messaging"); |
| 30 const devtools = require("devtools"); | 30 const devtools = require("devtools"); |
| 31 | 31 |
| 32 const extensionProtocol = new URL(browser.extension.getURL("")).protocol; |
| 33 |
| 32 // Chrome can't distinguish between OBJECT_SUBREQUEST and OBJECT requests. | 34 // Chrome can't distinguish between OBJECT_SUBREQUEST and OBJECT requests. |
| 33 if (!browser.webRequest.ResourceType || | 35 if (!browser.webRequest.ResourceType || |
| 34 !("OBJECT_SUBREQUEST" in browser.webRequest.ResourceType)) | 36 !("OBJECT_SUBREQUEST" in browser.webRequest.ResourceType)) |
| 35 { | 37 { |
| 36 RegExpFilter.typeMap.OBJECT_SUBREQUEST = RegExpFilter.typeMap.OBJECT; | 38 RegExpFilter.typeMap.OBJECT_SUBREQUEST = RegExpFilter.typeMap.OBJECT; |
| 37 } | 39 } |
| 38 | 40 |
| 39 // Map of content types reported by the browser to the respecitve content types | 41 // Map of content types reported by the browser to the respecitve content types |
| 40 // used by Adblock Plus. Other content types are simply mapped to OTHER. | 42 // used by Adblock Plus. Other content types are simply mapped to OTHER. |
| 41 let resourceTypes = new Map(function*() | 43 let resourceTypes = new Map(function*() |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 // Filter out requests from non web protocols. Ideally, we'd explicitly | 123 // Filter out requests from non web protocols. Ideally, we'd explicitly |
| 122 // specify the protocols we are interested in (i.e. http://, https://, | 124 // specify the protocols we are interested in (i.e. http://, https://, |
| 123 // ws:// and wss://) with the url patterns, given below, when adding this | 125 // ws:// and wss://) with the url patterns, given below, when adding this |
| 124 // listener. But unfortunately, Chrome <=57 doesn't support the WebSocket | 126 // listener. But unfortunately, Chrome <=57 doesn't support the WebSocket |
| 125 // protocol and is causing an error if it is given. | 127 // protocol and is causing an error if it is given. |
| 126 let url = new URL(details.url); | 128 let url = new URL(details.url); |
| 127 if (url.protocol != "http:" && url.protocol != "https:" && | 129 if (url.protocol != "http:" && url.protocol != "https:" && |
| 128 url.protocol != "ws:" && url.protocol != "wss:") | 130 url.protocol != "ws:" && url.protocol != "wss:") |
| 129 return; | 131 return; |
| 130 | 132 |
| 131 let originUrl = null; | 133 // Firefox provides us with the full origin URL, while Chromium (>=63) |
| 132 if (details.originUrl) | 134 // provides only the protocol + host of the (top-level) document which |
| 133 { | 135 // the request originates from through the "initiator" property. |
| 134 originUrl = new URL(details.originUrl); | 136 let originUrl = details.originUrl ? new URL(details.originUrl) : |
| 137 details.initiator ? new URL(details.initiator) : null; |
| 135 | 138 |
| 136 // Firefox (only) allows to intercept requests sent by the browser | 139 // Firefox allows to intercept requests sent by all extensions or |
| 137 // and other extensions. We don't want to block these. | 140 // the browser, while Chromium only allows interecepting of requests |
| 138 if (originUrl.protocol == "chrome:" || | 141 // sent by this extension. We don't want to block any of these. |
| 139 originUrl.protocol == "moz-extension:") | 142 if (originUrl && (originUrl.protocol == extensionProtocol || |
| 140 return; | 143 originUrl.protocol == "chrome:")) |
| 141 } | 144 return; |
| 142 // Fallback to "initiator" on Chrome >=63. It doesn't include the | |
| 143 // path (unlike "originUrl" on Firefox), but is still good enough | |
| 144 // (in case the tab/frame is unknown) for the $domain filter option | |
| 145 // and most document exception rules which only match the domain part. | |
| 146 else if (details.initiator) | |
| 147 originUrl = new URL(details.initiator); | |
| 148 | 145 |
| 149 let page = null; | 146 let page = null; |
| 150 let frame = null; | 147 let frame = null; |
| 151 if (details.tabId != -1) | 148 if (details.tabId != -1) |
| 152 { | 149 { |
| 153 page = new ext.Page({id: details.tabId}); | 150 page = new ext.Page({id: details.tabId}); |
| 154 frame = ext.getFrame( | 151 frame = ext.getFrame( |
| 155 details.tabId, | 152 details.tabId, |
| 156 // We are looking for the frame that contains the element which | 153 // We are looking for the frame that contains the element which |
| 157 // has triggered this request. For most requests (e.g. images) we | 154 // has triggered this request. For most requests (e.g. images) we |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 261 |
| 265 port.on("request.blockedByRTCWrapper", (msg, sender) => | 262 port.on("request.blockedByRTCWrapper", (msg, sender) => |
| 266 { | 263 { |
| 267 return ext.webRequest.onBeforeRequest._dispatch( | 264 return ext.webRequest.onBeforeRequest._dispatch( |
| 268 new URL(msg.url), | 265 new URL(msg.url), |
| 269 "webrtc", | 266 "webrtc", |
| 270 sender.page, | 267 sender.page, |
| 271 sender.frame | 268 sender.frame |
| 272 ).includes(false); | 269 ).includes(false); |
| 273 }); | 270 }); |
| OLD | NEW |