2014-06-24 00:42:43 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
µBlock - a Chromium browser extension to block requests.
|
|
|
|
Copyright (C) 2014 Raymond Hill
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global chrome, µBlock */
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Start isolation from global scope
|
|
|
|
|
|
|
|
µBlock.webRequest = (function() {
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-07-26 15:55:12 +02:00
|
|
|
// Intercept and filter web requests.
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
var onBeforeRequest = function(details) {
|
|
|
|
//console.debug('onBeforeRequest()> "%s": %o', details.url, details);
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Do not block behind the scene requests.
|
|
|
|
var tabId = details.tabId;
|
|
|
|
if ( tabId < 0 ) {
|
2014-07-14 17:24:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
var µb = µBlock;
|
|
|
|
var requestURL = details.url;
|
2014-10-02 22:45:26 +02:00
|
|
|
var requestType = details.type;
|
2014-07-26 01:29:51 +02:00
|
|
|
|
|
|
|
// Special handling for root document.
|
|
|
|
if ( requestType === 'main_frame' && details.parentFrameId === -1 ) {
|
2014-08-02 17:40:27 +02:00
|
|
|
µb.bindTabToPageStats(tabId, requestURL, 'beforeRequest');
|
2014-07-14 17:24:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-23 17:18:54 +02:00
|
|
|
// Commented out until (and if ever) there is a fix for:
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410382
|
|
|
|
//
|
2014-10-02 22:45:26 +02:00
|
|
|
// Try to transpose generic `other` category into something more meaningful.
|
|
|
|
if ( requestType === 'other' ) {
|
|
|
|
requestType = µb.transposeType('other', µb.URI.set(requestURL).path);
|
|
|
|
// https://github.com/gorhill/uBlock/issues/206
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410382
|
|
|
|
// Work around the issue of Chromium not properly setting the type for
|
|
|
|
// `object` requests. Unclear whether this issue will be fixed, hence
|
|
|
|
// this workaround to prevent torch-and-pitchfork mobs because ads are
|
|
|
|
// no longer blocked in videos.
|
|
|
|
// onBeforeSendHeaders() will handle this for now.
|
|
|
|
if ( requestType === 'other' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Lookup the page store associated with this tab id.
|
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId);
|
|
|
|
if ( !pageStore ) {
|
2014-07-14 20:40:40 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-07-15 13:38:34 +02:00
|
|
|
|
2014-07-30 07:05:35 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
|
|
|
var requestContext = pageStore;
|
|
|
|
|
2014-08-06 01:35:32 +02:00
|
|
|
var frameStore;
|
|
|
|
var frameId = details.frameId;
|
|
|
|
if ( frameId > 0 ) {
|
|
|
|
if ( frameStore = pageStore.getFrame(frameId) ) {
|
|
|
|
requestContext = frameStore;
|
|
|
|
}
|
|
|
|
}
|
2014-07-30 07:05:35 +02:00
|
|
|
|
2014-09-14 22:20:40 +02:00
|
|
|
var result = '';
|
2014-08-02 17:40:27 +02:00
|
|
|
if ( pageStore.getNetFilteringSwitch() ) {
|
2014-09-14 22:20:40 +02:00
|
|
|
result = pageStore.filterRequest(requestContext, requestType, requestURL);
|
2014-07-14 17:24:59 +02:00
|
|
|
}
|
|
|
|
|
2014-09-14 22:20:40 +02:00
|
|
|
// Not blocked
|
|
|
|
if ( pageStore.boolFromResult(result) === false ) {
|
|
|
|
pageStore.perLoadAllowedRequestCount++;
|
|
|
|
µb.localSettings.allowedRequestCount++;
|
2014-07-30 07:05:35 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
2014-08-06 01:35:32 +02:00
|
|
|
if ( frameId > 0 && frameStore === undefined ) {
|
|
|
|
pageStore.addFrame(frameId, requestURL);
|
|
|
|
}
|
2014-09-14 22:20:40 +02:00
|
|
|
|
2014-09-30 21:55:18 +02:00
|
|
|
if ( µb.userSettings.experimentalEnabled ) {
|
2014-10-02 22:45:26 +02:00
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=387198
|
|
|
|
// Not all redirects will succeed, until bug above is fixed.
|
2014-09-30 21:55:18 +02:00
|
|
|
var redirectURL = µb.mirrors.toURL(requestURL, true);
|
|
|
|
if ( redirectURL !== '' ) {
|
2014-10-02 22:45:26 +02:00
|
|
|
pageStore.setRequestFlags(requestURL, 0x01, 0x01);
|
2014-10-02 23:07:12 +02:00
|
|
|
//console.debug('"%s" redirected to "%s..."', requestURL.slice(0, 50), redirectURL.slice(0, 50));
|
2014-09-30 21:55:18 +02:00
|
|
|
return { redirectUrl: redirectURL };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-14 22:20:40 +02:00
|
|
|
//console.debug('µBlock> onBeforeRequest()> ALLOW "%s" (%o)', details.url, details);
|
2014-07-14 17:24:59 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Blocked
|
2014-09-14 22:20:40 +02:00
|
|
|
pageStore.perLoadBlockedRequestCount++;
|
|
|
|
µb.localSettings.blockedRequestCount++;
|
|
|
|
µb.updateBadgeAsync(tabId);
|
2014-07-26 01:29:51 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/18
|
|
|
|
// Do not use redirection, we need to block outright to be sure the request
|
|
|
|
// will not be made. There can be no such guarantee with redirection.
|
2014-07-14 17:24:59 +02:00
|
|
|
|
2014-10-02 22:45:26 +02:00
|
|
|
// console.debug('µBlock> onBeforeRequest()> BLOCK "%s" (%o) because "%s"', details.url, details, result);
|
2014-07-14 17:24:59 +02:00
|
|
|
return { 'cancel': true };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Intercept root frame requests. This is where we identify and block popups.
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-07-14 20:53:06 +02:00
|
|
|
var onBeforeSendHeaders = function(details) {
|
2014-07-26 15:55:12 +02:00
|
|
|
// TODO: I vaguely remember reading that when pre-fetch is enabled,
|
|
|
|
// the tab id could be -1, despite the request not really being a
|
|
|
|
// behind-the-scene request. If true, the test below would prevent
|
|
|
|
// the popup blocker from working. Need to check this.
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
// Do not block behind the scene requests.
|
2014-06-25 03:46:37 +02:00
|
|
|
var tabId = details.tabId;
|
|
|
|
if ( tabId < 0 ) {
|
2014-06-24 00:42:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-23 17:18:54 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/206
|
|
|
|
// https://code.google.com/p/chromium/issues/detail?id=410382
|
|
|
|
// Work around the issue of Chromium not properly setting the type for
|
|
|
|
// `object` requests. Unclear whether this issue will be fixed, hence this
|
|
|
|
// workaround to prevent widespread breakage of the extension.
|
|
|
|
if ( details.type === 'other' ) {
|
|
|
|
return cr410382Workaround(details);
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Only root document.
|
|
|
|
if ( details.parentFrameId !== -1 ) {
|
|
|
|
return;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
var µb = µBlock;
|
2014-06-27 23:06:42 +02:00
|
|
|
var requestURL = details.url;
|
2014-07-26 01:29:51 +02:00
|
|
|
|
|
|
|
// Lookup the page store associated with this tab id.
|
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId);
|
|
|
|
if ( !pageStore ) {
|
|
|
|
console.error('µBlock> onBeforeSendHeaders(): no page store for "%s"', requestURL);
|
2014-06-24 00:42:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Heuristic to determine whether we are dealing with a popup:
|
|
|
|
// - the page store is new (it's not a reused one)
|
|
|
|
// - the referrer is not nil
|
2014-06-25 03:46:37 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// Can't be a popup, the tab was in use previously.
|
|
|
|
if ( pageStore.previousPageURL !== '' ) {
|
|
|
|
return;
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
2014-09-23 17:18:54 +02:00
|
|
|
var referrer = headerValue(details.requestHeaders, 'referer');
|
2014-07-26 01:29:51 +02:00
|
|
|
if ( referrer === '' ) {
|
2014-07-05 18:56:16 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-06-24 00:42:43 +02:00
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// https://github.com/gorhill/uBlock/issues/67
|
|
|
|
// We need to pass the details of the page which opened this popup,
|
|
|
|
// so that the `third-party` option works.
|
|
|
|
var µburi = µb.URI;
|
|
|
|
var referrerHostname = µburi.hostnameFromURI(referrer);
|
|
|
|
var pageDetails = {
|
|
|
|
pageHostname: referrerHostname,
|
|
|
|
pageDomain: µburi.domainFromHostname(referrerHostname)
|
|
|
|
};
|
|
|
|
//console.debug('Referrer="%s"', referrer);
|
|
|
|
|
2014-07-26 15:55:12 +02:00
|
|
|
// TODO: I think I should test the switch of the referrer instead, not the
|
|
|
|
// switch of the popup. If so, that would require being able to lookup
|
|
|
|
// a page store from a URL. Have to keep in mind the same URL can appear
|
|
|
|
// in multiple tabs.
|
2014-09-14 22:20:40 +02:00
|
|
|
var result = '';
|
2014-08-02 17:40:27 +02:00
|
|
|
if ( pageStore.getNetFilteringSwitch() ) {
|
2014-09-14 22:20:40 +02:00
|
|
|
result = µb.netFilteringEngine.matchStringExactType(pageDetails, requestURL, 'popup');
|
2014-06-24 00:42:43 +02:00
|
|
|
}
|
|
|
|
|
2014-06-25 03:46:37 +02:00
|
|
|
// Not blocked?
|
2014-09-14 22:20:40 +02:00
|
|
|
if ( result === '' || result.slice(0, 2) === '@@' ) {
|
2014-06-24 00:42:43 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
// It is a popup, block and remove the tab.
|
|
|
|
µb.unbindTabFromPageStats(tabId);
|
|
|
|
chrome.tabs.remove(tabId);
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
return { 'cancel': true };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-09-23 17:18:54 +02:00
|
|
|
// Work around the issue of Chromium not properly setting the type for
|
|
|
|
// `object` requests. Unclear whether this issue will be fixed, hence this
|
|
|
|
// workaround to prevent widespread breakage of the extension.
|
|
|
|
|
|
|
|
var cr410382Workaround = function(details) {
|
|
|
|
//console.debug('cr410382Workaround()> "%s": %o', details.url, details);
|
|
|
|
|
|
|
|
var µb = µBlock;
|
|
|
|
var requestURL = details.url;
|
|
|
|
var µburi = µb.URI.set(requestURL);
|
2014-10-02 22:45:26 +02:00
|
|
|
|
|
|
|
// If the type can be successfully transposed, this means the request
|
|
|
|
// was processed at onBeforeRequest time.
|
|
|
|
if ( µb.transposeType('other', µburi.path) !== 'other' ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-23 17:18:54 +02:00
|
|
|
|
|
|
|
// Lookup "X-Requested-With" header: this will tell us whether the request
|
|
|
|
// is of type "object".
|
|
|
|
// Reference: https://code.google.com/p/chromium/issues/detail?id=145090
|
|
|
|
var requestedWith = headerValue(details.requestHeaders, 'x-requested-with');
|
|
|
|
|
|
|
|
// Reference: https://codereview.chromium.org/451923002/patch/120001/130008
|
|
|
|
var requestType = requestedWith.indexOf('ShockwaveFlash') !== -1 ?
|
|
|
|
'object' :
|
2014-10-02 22:45:26 +02:00
|
|
|
'other';
|
2014-09-23 17:18:54 +02:00
|
|
|
|
|
|
|
// Lookup the page store associated with this tab id.
|
|
|
|
var pageStore = µb.pageStoreFromTabId(details.tabId);
|
|
|
|
if ( !pageStore ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
|
|
|
var requestContext = pageStore;
|
|
|
|
var frameStore;
|
|
|
|
var frameId = details.frameId;
|
|
|
|
if ( frameId > 0 ) {
|
|
|
|
if ( frameStore = pageStore.getFrame(frameId) ) {
|
|
|
|
requestContext = frameStore;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var result = '';
|
|
|
|
if ( pageStore.getNetFilteringSwitch() ) {
|
|
|
|
result = pageStore.filterRequest(requestContext, requestType, requestURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not blocked
|
|
|
|
if ( pageStore.boolFromResult(result) === false ) {
|
|
|
|
pageStore.perLoadAllowedRequestCount++;
|
|
|
|
µb.localSettings.allowedRequestCount++;
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/114
|
|
|
|
if ( frameId > 0 && frameStore === undefined ) {
|
|
|
|
pageStore.addFrame(frameId, requestURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
//console.debug('µBlock> cr410382Workaround()> ALLOW "%s" (%o)', details.url, details);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Blocked
|
|
|
|
pageStore.perLoadBlockedRequestCount++;
|
|
|
|
µb.localSettings.blockedRequestCount++;
|
|
|
|
µb.updateBadgeAsync(details.tabId);
|
|
|
|
|
|
|
|
//console.debug('µBlock> cr410382Workaround()> BLOCK "%s" (%o) because "%s"', details.url, details, result);
|
|
|
|
return { 'cancel': true };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-09-24 23:38:22 +02:00
|
|
|
// To handle `inline-script`.
|
|
|
|
|
|
|
|
var onHeadersReceived = function(details) {
|
|
|
|
// Only root document.
|
|
|
|
if ( details.parentFrameId !== -1 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not interfere with behind-the-scene requests.
|
|
|
|
var tabId = details.tabId;
|
|
|
|
if ( tabId < 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup the page store associated with this tab id.
|
|
|
|
var µb = µBlock;
|
|
|
|
var pageStore = µb.pageStoreFromTabId(tabId);
|
|
|
|
if ( !pageStore ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var result = '';
|
|
|
|
if ( pageStore.getNetFilteringSwitch() ) {
|
|
|
|
result = µb.netFilteringEngine.matchStringExactType(pageStore, details.url, 'inline-script');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not blocked?
|
|
|
|
if ( result === '' || result.slice(0, 2) === '@@' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-06 20:02:44 +02:00
|
|
|
// Record request
|
|
|
|
if ( result !== '' ) {
|
|
|
|
pageStore.recordResult('script', details.url, result);
|
|
|
|
}
|
|
|
|
|
2014-09-24 23:38:22 +02:00
|
|
|
// Blocked
|
|
|
|
pageStore.perLoadBlockedRequestCount++;
|
|
|
|
µb.localSettings.blockedRequestCount++;
|
|
|
|
µb.updateBadgeAsync(tabId);
|
|
|
|
|
|
|
|
details.responseHeaders.push({
|
|
|
|
'name': 'Content-Security-Policy',
|
2014-10-06 20:02:44 +02:00
|
|
|
'value': "script-src 'unsafe-eval' *"
|
2014-09-24 23:38:22 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return { 'responseHeaders': details.responseHeaders };
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-09-23 17:18:54 +02:00
|
|
|
var headerValue = function(headers, name) {
|
2014-07-14 20:40:40 +02:00
|
|
|
var i = headers.length;
|
|
|
|
while ( i-- ) {
|
2014-09-23 17:18:54 +02:00
|
|
|
if ( headers[i].name.toLowerCase() === name ) {
|
2014-07-14 20:40:40 +02:00
|
|
|
return headers[i].value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-07-26 01:29:51 +02:00
|
|
|
chrome.webRequest.onBeforeRequest.addListener(
|
2014-06-24 00:42:43 +02:00
|
|
|
//function(details) {
|
2014-07-26 01:29:51 +02:00
|
|
|
// quickProfiler.start('onBeforeRequest');
|
|
|
|
// var r = onBeforeRequest(details);
|
2014-06-24 00:42:43 +02:00
|
|
|
// quickProfiler.stop();
|
|
|
|
// return r;
|
|
|
|
//},
|
2014-07-26 01:29:51 +02:00
|
|
|
onBeforeRequest,
|
2014-06-24 00:42:43 +02:00
|
|
|
{
|
|
|
|
"urls": [
|
|
|
|
"http://*/*",
|
2014-09-25 19:33:07 +02:00
|
|
|
"https://*/*"
|
2014-06-24 00:42:43 +02:00
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"main_frame",
|
|
|
|
"sub_frame",
|
|
|
|
'stylesheet',
|
|
|
|
"script",
|
|
|
|
"image",
|
|
|
|
"object",
|
2014-10-02 22:45:26 +02:00
|
|
|
"xmlhttprequest",
|
|
|
|
"other"
|
2014-06-24 00:42:43 +02:00
|
|
|
]
|
|
|
|
},
|
2014-07-26 01:29:51 +02:00
|
|
|
[ "blocking" ]
|
|
|
|
);
|
|
|
|
|
|
|
|
chrome.webRequest.onBeforeSendHeaders.addListener(
|
|
|
|
//function(details) {
|
|
|
|
// quickProfiler.start('onBeforeSendHeaders');
|
|
|
|
// var r = onBeforeSendHeaders(details);
|
|
|
|
// quickProfiler.stop();
|
|
|
|
// return r;
|
|
|
|
//},
|
|
|
|
onBeforeSendHeaders,
|
|
|
|
{
|
|
|
|
"urls": [
|
|
|
|
"http://*/*",
|
2014-09-25 19:33:07 +02:00
|
|
|
"https://*/*"
|
2014-07-26 01:29:51 +02:00
|
|
|
],
|
|
|
|
"types": [
|
2014-09-23 17:18:54 +02:00
|
|
|
"main_frame",
|
|
|
|
"other" // Because cr410382Workaround()
|
2014-07-26 01:29:51 +02:00
|
|
|
]
|
|
|
|
},
|
2014-07-14 20:40:40 +02:00
|
|
|
[ "blocking", "requestHeaders" ]
|
2014-06-24 00:42:43 +02:00
|
|
|
);
|
|
|
|
|
2014-09-24 23:38:22 +02:00
|
|
|
chrome.webRequest.onHeadersReceived.addListener(
|
|
|
|
onHeadersReceived,
|
|
|
|
{
|
|
|
|
"urls": [
|
|
|
|
"http://*/*",
|
2014-09-25 19:33:07 +02:00
|
|
|
"https://*/*"
|
2014-09-24 23:38:22 +02:00
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"main_frame"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
[ "blocking", "responseHeaders" ]
|
|
|
|
);
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
console.log('µBlock> Beginning to intercept net requests at %s', (new Date()).toISOString());
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|