uBlock/src/js/tab.js

1048 lines
37 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
uBlock Origin - a browser extension to block requests.
2018-02-26 19:59:16 +01:00
Copyright (C) 2014-2018 Raymond Hill
2014-06-24 00:42:43 +02:00
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
*/
2017-06-21 13:17:44 +02:00
// https://github.com/gorhill/uBlock/issues/2720
2015-01-02 19:42:35 +01:00
/******************************************************************************/
/******************************************************************************/
(function() {
'use strict';
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2015-01-02 19:42:35 +01:00
var µb = µBlock;
2015-04-09 00:46:08 +02:00
// https://github.com/gorhill/httpswitchboard/issues/303
// Some kind of trick going on here:
// Any scheme other than 'http' and 'https' is remapped into a fake
// URL which trick the rest of µBlock into being able to process an
// otherwise unmanageable scheme. µBlock needs web page to have a proper
// hostname to work properly, so just like the 'chromium-behind-the-scene'
// fake domain name, we map unknown schemes into a fake '{scheme}-scheme'
// hostname. This way, for a specific scheme you can create scope with
// rules which will apply only to that scheme.
/******************************************************************************/
/******************************************************************************/
µb.normalizePageURL = function(tabId, pageURL) {
if ( vAPI.isBehindTheSceneTabId(tabId) ) {
return 'http://behind-the-scene/';
}
var uri = this.URI.set(pageURL);
var scheme = uri.scheme;
if ( scheme === 'https' || scheme === 'http' ) {
return uri.normalizedURI();
}
2015-04-27 16:54:13 +02:00
var fakeHostname = scheme + '-scheme';
2015-04-09 00:46:08 +02:00
if ( uri.hostname !== '' ) {
2015-04-27 16:54:13 +02:00
fakeHostname = uri.hostname + '.' + fakeHostname;
} else if ( scheme === 'about' && uri.path !== '' ) {
fakeHostname = uri.path + '.' + fakeHostname;
2015-04-09 00:46:08 +02:00
}
2015-04-27 16:54:13 +02:00
return 'http://' + fakeHostname + '/';
2015-04-09 00:46:08 +02:00
};
/******************************************************************************/
/******************************************************************************
To keep track from which context *exactly* network requests are made. This is
often tricky for various reasons, and the challenge is not specific to one
browser.
The time at which a URL is assigned to a tab and the time when a network
request for a root document is made must be assumed to be unrelated: it's all
asynchronous. There is no guaranteed order in which the two events are fired.
Also, other "anomalies" can occur:
- a network request for a root document is fired without the corresponding
tab being really assigned a new URL
<https://github.com/chrisaljoudi/uBlock/issues/516>
- a network request for a secondary resource is labeled with a tab id for
which no root document was pulled for that tab.
<https://github.com/chrisaljoudi/uBlock/issues/1001>
- a network request for a secondary resource is made without the root
document to which it belongs being formally bound yet to the proper tab id,
causing a bad scope to be used for filtering purpose.
<https://github.com/chrisaljoudi/uBlock/issues/1205>
<https://github.com/chrisaljoudi/uBlock/issues/1140>
So the solution here is to keep a lightweight data structure which only
purpose is to keep track as accurately as possible of which root document
belongs to which tab. That's the only purpose, and because of this, there are
no restrictions for when the URL of a root document can be associated to a tab.
Before, the PageStore object was trying to deal with this, but it had to
enforce some restrictions so as to not descend into one of the above issues, or
other issues. The PageStore object can only be associated with a tab for which
a definitive navigation event occurred, because it collects information about
what occurred in the tab (for example, the number of requests blocked for a
page).
The TabContext objects do not suffer this restriction, and as a result they
offer the most reliable picture of which root document URL is really associated
to which tab. Moreover, the TabObject can undo an association from a root
document, and automatically re-associate with the next most recent. This takes
care of <https://github.com/chrisaljoudi/uBlock/issues/516>.
The PageStore object no longer cache the various information about which
root document it is currently bound. When it needs to find out, it will always
defer to the TabContext object, which will provide the real answer. This takes
case of <https://github.com/chrisaljoudi/uBlock/issues/1205>. In effect, the
master switch and dynamic filtering rules can be evaluated now properly even
in the absence of a PageStore object, this was not the case before.
Also, the TabContext object will try its best to find a good candidate root
document URL for when none exists. This takes care of
<https://github.com/chrisaljoudi/uBlock/issues/1001>.
The TabContext manager is self-contained, and it takes care to properly
housekeep itself.
*/
µb.tabContextManager = (function() {
2018-02-26 19:59:16 +01:00
var tabContexts = new Map();
2015-04-09 00:46:08 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/1001
// This is to be used as last-resort fallback in case a tab is found to not
// be bound while network requests are fired for the tab.
var mostRecentRootDocURL = '';
var mostRecentRootDocURLTimestamp = 0;
var popupCandidates = Object.create(null);
var PopupCandidate = function(targetTabId, openerTabId) {
this.targetTabId = targetTabId;
2017-10-13 15:33:02 +02:00
this.opener = {
tabId: openerTabId,
popunder: false,
trustedURL: openerTabId === µb.mouseEventRegister.tabId ?
µb.mouseEventRegister.url :
''
};
this.selfDestructionTimer = null;
this.launchSelfDestruction();
};
PopupCandidate.prototype.destroy = function() {
if ( this.selfDestructionTimer !== null ) {
clearTimeout(this.selfDestructionTimer);
}
delete popupCandidates[this.targetTabId];
};
PopupCandidate.prototype.launchSelfDestruction = function() {
if ( this.selfDestructionTimer !== null ) {
clearTimeout(this.selfDestructionTimer);
}
this.selfDestructionTimer = vAPI.setTimeout(this.destroy.bind(this), 10000);
};
var popupCandidateTest = function(targetTabId) {
2017-10-13 15:33:02 +02:00
var candidates = popupCandidates,
entry;
for ( var tabId in candidates ) {
entry = candidates[tabId];
2017-10-13 15:33:02 +02:00
if ( targetTabId !== tabId && targetTabId !== entry.opener.tabId ) {
continue;
}
2017-10-13 15:33:02 +02:00
// https://github.com/gorhill/uBlock/issues/3129
// If the trigger is a change in the opener's URL, mark the entry
// as candidate for popunder filtering.
if ( targetTabId === entry.opener.tabId ) {
2017-10-13 15:38:16 +02:00
entry.opener.popunder = true;
2017-10-13 15:33:02 +02:00
}
if ( vAPI.tabs.onPopupUpdated(tabId, entry.opener) === true ) {
entry.destroy();
} else {
entry.launchSelfDestruction();
}
}
};
vAPI.tabs.onPopupCreated = function(targetTabId, openerTabId) {
var popup = popupCandidates[targetTabId];
2017-01-08 20:36:08 +01:00
if ( popup === undefined ) {
popupCandidates[targetTabId] = new PopupCandidate(targetTabId, openerTabId);
}
popupCandidateTest(targetTabId);
};
2015-04-09 00:46:08 +02:00
var gcPeriod = 10 * 60 * 1000;
// A pushed entry is removed from the stack unless it is committed with
// a set time.
var StackEntry = function(url, commit) {
this.url = url;
this.committed = commit;
this.tstamp = Date.now();
};
2015-04-09 00:46:08 +02:00
var TabContext = function(tabId) {
2018-02-26 19:59:16 +01:00
this.tabId = tabId;
2015-04-09 00:46:08 +02:00
this.stack = [];
this.rawURL =
this.normalURL =
this.rootHostname =
this.rootDomain = '';
this.commitTimer = null;
this.gcTimer = null;
this.onGCBarrier = false;
this.netFiltering = true;
this.netFilteringReadTime = 0;
2015-04-09 00:46:08 +02:00
2018-02-26 19:59:16 +01:00
tabContexts.set(tabId, this);
2015-04-09 00:46:08 +02:00
};
TabContext.prototype.destroy = function() {
2018-02-26 19:59:16 +01:00
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) { return; }
if ( this.gcTimer !== null ) {
clearTimeout(this.gcTimer);
this.gcTimer = null;
2015-04-09 00:46:08 +02:00
}
2018-02-26 19:59:16 +01:00
tabContexts.delete(this.tabId);
2015-04-09 00:46:08 +02:00
};
TabContext.prototype.onTab = function(tab) {
if ( tab ) {
this.gcTimer = vAPI.setTimeout(this.onGC.bind(this), gcPeriod);
2015-04-09 00:46:08 +02:00
} else {
this.destroy();
}
};
TabContext.prototype.onGC = function() {
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) {
return;
}
// https://github.com/gorhill/uBlock/issues/1713
// For unknown reasons, Firefox's setTimeout() will sometimes
// causes the callback function to be called immediately, bypassing
// the main event loop. For now this should prevent uBO from crashing
// as a result of the bad setTimeout() behavior.
if ( this.onGCBarrier ) {
return;
}
this.onGCBarrier = true;
this.gcTimer = null;
vAPI.tabs.get(this.tabId, this.onTab.bind(this));
this.onGCBarrier = false;
};
// https://github.com/gorhill/uBlock/issues/248
// Stack entries have to be committed to stick. Non-committed stack
// entries are removed after a set delay.
TabContext.prototype.onCommit = function() {
2015-04-09 00:46:08 +02:00
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) {
return;
}
this.commitTimer = null;
// Remove uncommitted entries at the top of the stack.
var i = this.stack.length;
while ( i-- ) {
if ( this.stack[i].committed ) {
break;
}
}
2015-06-05 19:37:46 +02:00
// https://github.com/gorhill/uBlock/issues/300
// If no committed entry was found, fall back on the bottom-most one
// as being the committed one by default.
if ( i === -1 && this.stack.length !== 0 ) {
this.stack[0].committed = true;
i = 0;
}
i += 1;
if ( i < this.stack.length ) {
this.stack.length = i;
this.update();
}
2015-04-09 00:46:08 +02:00
};
// This takes care of orphanized tab contexts. Can't be started for all
// contexts, as the behind-the-scene context is permanent -- so we do not
2015-07-17 00:15:57 +02:00
// want to flush it.
2015-04-09 00:46:08 +02:00
TabContext.prototype.autodestroy = function() {
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) {
return;
}
this.gcTimer = vAPI.setTimeout(this.onGC.bind(this), gcPeriod);
2015-04-09 00:46:08 +02:00
};
// Update just force all properties to be updated to match the most recent
2015-04-09 00:46:08 +02:00
// root URL.
TabContext.prototype.update = function() {
this.netFilteringReadTime = 0;
2015-04-09 00:46:08 +02:00
if ( this.stack.length === 0 ) {
this.rawURL = this.normalURL = this.rootHostname = this.rootDomain = '';
return;
2015-04-09 00:46:08 +02:00
}
var stackEntry = this.stack[this.stack.length - 1];
this.rawURL = stackEntry.url;
this.normalURL = µb.normalizePageURL(this.tabId, this.rawURL);
this.rootHostname = µb.URI.hostnameFromURI(this.normalURL);
2016-02-22 21:54:07 +01:00
this.rootDomain = µb.URI.domainFromHostname(this.rootHostname) || this.rootHostname;
2015-04-09 00:46:08 +02:00
};
// Called whenever a candidate root URL is spotted for the tab.
TabContext.prototype.push = function(url) {
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) {
return;
}
var count = this.stack.length;
if ( count !== 0 && this.stack[count - 1].url === url ) {
return;
}
this.stack.push(new StackEntry(url));
2015-04-09 00:46:08 +02:00
this.update();
popupCandidateTest(this.tabId);
2015-11-15 14:56:36 +01:00
if ( this.commitTimer !== null ) {
clearTimeout(this.commitTimer);
}
this.commitTimer = vAPI.setTimeout(this.onCommit.bind(this), 500);
2015-04-09 00:46:08 +02:00
};
// This tells that the url is definitely the one to be associated with the
// tab, there is no longer any ambiguity about which root URL is really
// sitting in which tab.
TabContext.prototype.commit = function(url) {
2017-10-24 04:27:39 +02:00
if ( vAPI.isBehindTheSceneTabId(this.tabId) ) { return; }
if ( this.stack.length !== 0 ) {
var top = this.stack[this.stack.length - 1];
if ( top.url === url && top.committed ) {
return false;
}
2015-04-09 00:46:08 +02:00
}
this.stack = [new StackEntry(url, true)];
2015-04-09 00:46:08 +02:00
this.update();
2017-10-24 04:27:39 +02:00
return true;
2015-04-09 00:46:08 +02:00
};
TabContext.prototype.getNetFilteringSwitch = function() {
if ( this.netFilteringReadTime > µb.netWhitelistModifyTime ) {
return this.netFiltering;
}
// https://github.com/chrisaljoudi/uBlock/issues/1078
// Use both the raw and normalized URLs.
this.netFiltering = µb.getNetFilteringSwitch(this.normalURL);
if ( this.netFiltering && this.rawURL !== this.normalURL && this.rawURL !== '' ) {
this.netFiltering = µb.getNetFilteringSwitch(this.rawURL);
}
this.netFilteringReadTime = Date.now();
return this.netFiltering;
};
2015-04-09 00:46:08 +02:00
// These are to be used for the API of the tab context manager.
var push = function(tabId, url) {
2018-02-26 19:59:16 +01:00
var entry = tabContexts.get(tabId);
2015-04-09 00:46:08 +02:00
if ( entry === undefined ) {
entry = new TabContext(tabId);
entry.autodestroy();
}
entry.push(url);
mostRecentRootDocURL = url;
mostRecentRootDocURLTimestamp = Date.now();
return entry;
};
2015-12-02 06:59:51 +01:00
// Find a tab context for a specific tab.
var lookup = function(tabId) {
2018-02-26 19:59:16 +01:00
return tabContexts.get(tabId) || null;
2015-12-02 06:59:51 +01:00
};
2015-04-09 00:46:08 +02:00
// Find a tab context for a specific tab. If none is found, attempt to
// fix this. When all fail, the behind-the-scene context is returned.
2015-12-02 06:59:51 +01:00
var mustLookup = function(tabId) {
2018-02-26 19:59:16 +01:00
var entry = tabContexts.get(tabId);
2015-04-09 00:46:08 +02:00
if ( entry !== undefined ) {
return entry;
}
// https://github.com/chrisaljoudi/uBlock/issues/1025
// Google Hangout popup opens without a root frame. So for now we will
// just discard that best-guess root frame if it is too far in the
// future, at which point it ceases to be a "best guess".
if ( mostRecentRootDocURL !== '' && mostRecentRootDocURLTimestamp + 500 < Date.now() ) {
mostRecentRootDocURL = '';
}
// https://github.com/chrisaljoudi/uBlock/issues/1001
// Not a behind-the-scene request, yet no page store found for the
// tab id: we will thus bind the last-seen root document to the
// unbound tab. It's a guess, but better than ending up filtering
// nothing at all.
if ( mostRecentRootDocURL !== '' ) {
return push(tabId, mostRecentRootDocURL);
}
// If all else fail at finding a page store, re-categorize the
// request as behind-the-scene. At least this ensures that ultimately
// the user can still inspect/filter those net requests which were
// about to fall through the cracks.
// Example: Chromium + case #12 at
// http://raymondhill.net/ublock/popup.html
2018-02-26 19:59:16 +01:00
return tabContexts.get(vAPI.noTabId);
2015-04-09 00:46:08 +02:00
};
2016-09-13 17:25:24 +02:00
// https://github.com/gorhill/uBlock/issues/1735
2016-09-13 17:56:13 +02:00
// Filter for popups if actually committing.
2015-04-09 00:46:08 +02:00
var commit = function(tabId, url) {
2018-02-26 19:59:16 +01:00
var entry = tabContexts.get(tabId);
2015-04-09 00:46:08 +02:00
if ( entry === undefined ) {
entry = push(tabId, url);
2017-10-24 04:27:39 +02:00
} else if ( entry.commit(url) ) {
2016-09-13 17:56:13 +02:00
popupCandidateTest(tabId);
2015-04-09 00:46:08 +02:00
}
return entry;
};
var exists = function(tabId) {
2018-02-26 19:59:16 +01:00
return tabContexts.get(tabId) !== undefined;
2015-04-09 00:46:08 +02:00
};
// Behind-the-scene tab context
(function() {
var entry = new TabContext(vAPI.noTabId);
entry.stack.push(new StackEntry('', true));
2015-04-09 00:46:08 +02:00
entry.rawURL = '';
entry.normalURL = µb.normalizePageURL(entry.tabId);
entry.rootHostname = µb.URI.hostnameFromURI(entry.normalURL);
entry.rootDomain = µb.URI.domainFromHostname(entry.rootHostname);
2018-02-26 19:59:16 +01:00
entry = new TabContext(vAPI.anyTabId);
entry.stack.push(new StackEntry('', true));
2015-04-09 00:46:08 +02:00
})();
// Context object, typically to be used to feed filtering engines.
2016-07-01 04:03:29 +02:00
var contextJunkyard = [];
2015-04-09 00:46:08 +02:00
var Context = function(tabId) {
2016-07-01 04:03:29 +02:00
this.init(tabId);
};
Context.prototype.init = function(tabId) {
2015-04-09 00:46:08 +02:00
var tabContext = lookup(tabId);
this.rootHostname = tabContext.rootHostname;
this.rootDomain = tabContext.rootDomain;
2018-02-26 19:59:16 +01:00
this.pageHostname =
2015-04-09 00:46:08 +02:00
this.pageDomain =
this.requestURL =
this.requestHostname =
this.requestDomain = '';
2016-07-01 04:03:29 +02:00
return this;
};
Context.prototype.dispose = function() {
contextJunkyard.push(this);
2015-04-09 00:46:08 +02:00
};
var createContext = function(tabId) {
2016-07-01 04:03:29 +02:00
if ( contextJunkyard.length ) {
return contextJunkyard.pop().init(tabId);
}
2015-04-09 00:46:08 +02:00
return new Context(tabId);
};
return {
push: push,
commit: commit,
lookup: lookup,
2015-12-02 06:59:51 +01:00
mustLookup: mustLookup,
2015-04-09 00:46:08 +02:00
exists: exists,
createContext: createContext
};
})();
2015-01-02 19:42:35 +01:00
/******************************************************************************/
/******************************************************************************/
// When the DOM content of root frame is loaded, this means the tab
// content has changed.
2015-03-08 16:06:36 +01:00
vAPI.tabs.onNavigation = function(details) {
if ( details.frameId !== 0 ) {
return;
}
2016-10-08 16:15:31 +02:00
µb.tabContextManager.commit(details.tabId, details.url);
var pageStore = µb.bindTabToPageStats(details.tabId, 'tabCommitted');
if ( pageStore ) {
pageStore.journalAddRootFrame('committed', details.url);
2015-01-28 22:19:46 +01:00
}
};
2014-09-08 19:45:03 +02:00
2015-03-08 16:06:36 +01:00
/******************************************************************************/
// It may happen the URL in the tab changes, while the page's document
// stays the same (for instance, Google Maps). Without this listener,
// the extension icon won't be properly refreshed.
2015-03-08 16:06:36 +01:00
vAPI.tabs.onUpdated = function(tabId, changeInfo, tab) {
if ( !tab.url || tab.url === '' ) {
return;
}
if ( !changeInfo.url ) {
return;
}
2015-04-09 00:46:08 +02:00
µb.tabContextManager.commit(tabId, changeInfo.url);
µb.bindTabToPageStats(tabId, 'tabUpdated');
};
2014-06-24 00:42:43 +02:00
2015-03-08 16:06:36 +01:00
/******************************************************************************/
vAPI.tabs.onClosed = function(tabId) {
2015-07-17 00:15:57 +02:00
if ( vAPI.isBehindTheSceneTabId(tabId) ) {
return;
}
2015-01-02 19:42:35 +01:00
µb.unbindTabFromPageStats(tabId);
};
2014-10-15 19:14:25 +02:00
2015-03-08 16:06:36 +01:00
/******************************************************************************/
// https://github.com/gorhill/uBlock/issues/99
// https://github.com/gorhill/uBlock/issues/991
//
// popup:
// Test/close target URL
// popunder:
// Test/close opener URL
//
// popup filter match:
// 0 = false
// 1 = true
//
// opener: 0 0 1 1
// target: 0 1 0 1
// ---- ---- ---- ----
// result: a b c d
//
// a: do nothing
// b: close target
// c: close opener
// d: close target
vAPI.tabs.onPopupUpdated = (function() {
// The same context object will be reused everytime. This also allows to
// remember whether a popup or popunder was matched.
var context = {},
logData;
// https://github.com/gorhill/uBlock/commit/1d448b85b2931412508aa01bf899e0b6f0033626#commitcomment-14944764
2017-11-27 20:48:01 +01:00
// See if two URLs are different, disregarding scheme -- because the
// scheme can be unilaterally changed by the browser.
// https://github.com/gorhill/uBlock/issues/1378
// Maybe no link element was clicked.
2017-11-27 23:09:22 +01:00
// https://github.com/gorhill/uBlock/issues/3287
// Do not bail out if the target URL has no hostname.
var areDifferentURLs = function(a, b) {
2017-09-06 01:49:48 +02:00
if ( b === '' ) { return true; }
2017-11-27 20:48:01 +01:00
if ( b.startsWith('about:') ) { return false; }
var pos = a.indexOf('://');
2017-09-06 01:49:48 +02:00
if ( pos === -1 ) { return false; }
a = a.slice(pos);
pos = b.indexOf('://');
2017-11-27 20:48:01 +01:00
if ( pos !== -1 ) {
b = b.slice(pos);
}
return b !== a;
};
2017-09-06 01:49:48 +02:00
var popupMatch = function(openerURL, targetURL, popupType) {
var openerHostname = µb.URI.hostnameFromURI(openerURL),
openerDomain = µb.URI.domainFromHostname(openerHostname),
result;
context.pageHostname = openerHostname;
context.pageDomain = openerDomain;
context.rootURL = openerURL;
context.rootHostname = openerHostname;
context.rootDomain = openerDomain;
context.requestURL = targetURL;
context.requestHostname = µb.URI.hostnameFromURI(targetURL);
context.requestType = 'popup';
2016-09-13 17:25:24 +02:00
// https://github.com/gorhill/uBlock/issues/1735
// Do not bail out on `data:` URI, they are commonly used for popups.
// https://github.com/uBlockOrigin/uAssets/issues/255
// Do not bail out on `about:blank`: an `about:blank` popup can be
// opened, with the sole purpose to serve as an intermediary in
// a sequence of chained popups.
// https://github.com/uBlockOrigin/uAssets/issues/263#issuecomment-272615772
// Do not bail out, period: the static filtering engine must be
// able to examine all sorts of URLs for popup filtering purpose.
// Dynamic filtering makes sense only when we have a valid opener
// hostname.
// https://github.com/gorhill/uBlock/commit/1d448b85b2931412508aa01bf899e0b6f0033626#commitcomment-14944764
// Ignore bad target URL. On Firefox, an `about:blank` tab may be
// opened for a new tab before it is filled in with the real target
// URL.
if ( openerHostname !== '' && targetURL !== 'about:blank' ) {
// Check per-site switch first
2017-09-27 16:27:29 +02:00
// https://github.com/gorhill/uBlock/issues/3060
// - The no-popups switch must apply only to popups, not to
// popunders.
if (
popupType === 'popup' &&
µb.hnSwitches.evaluateZ('no-popups', openerHostname)
) {
2017-09-06 01:49:48 +02:00
logData = {
2017-10-24 04:39:30 +02:00
raw: 'no-popups: ' + µb.hnSwitches.z + ' true',
result: 1,
source: 'switch'
2017-09-06 01:49:48 +02:00
};
return 1;
}
// https://github.com/gorhill/uBlock/issues/581
2017-09-27 16:27:29 +02:00
// Take into account popup-specific rules in dynamic URL
// filtering, OR generic allow rules.
result = µb.sessionURLFiltering.evaluateZ(
openerHostname,
targetURL,
popupType
);
if (
result === 1 && µb.sessionURLFiltering.type === popupType ||
result === 2
) {
logData = µb.sessionURLFiltering.toLogData();
return result;
}
2015-03-08 16:06:36 +01:00
// https://github.com/gorhill/uBlock/issues/581
2017-09-27 16:27:29 +02:00
// Take into account `allow` rules in dynamic filtering: `block`
// rules are ignored, as block rules are not meant to block
// specific types like `popup` (just like with static filters).
result = µb.sessionFirewall.evaluateCellZY(
openerHostname,
context.requestHostname,
popupType
);
if ( result === 2 ) {
logData = µb.sessionFirewall.toLogData();
return 2;
}
}
2015-03-27 18:00:55 +01:00
// https://github.com/chrisaljoudi/uBlock/issues/323
// https://github.com/chrisaljoudi/uBlock/issues/1142
// Don't block if uBlock is turned off in popup's context
if ( µb.getNetFilteringSwitch(targetURL) ) {
result = µb.staticNetFilteringEngine.matchStringExactType(
context,
targetURL,
popupType
);
if ( result !== 0 ) {
logData = µb.staticNetFilteringEngine.toLogData();
return result;
}
2015-03-27 18:00:55 +01:00
}
return 0;
2015-03-27 19:59:17 +01:00
};
2016-04-28 17:28:08 +02:00
var mapPopunderResult = function(popunderURL, popunderHostname, result) {
if (
logData === undefined ||
logData.source !== 'static' ||
2017-05-19 14:45:19 +02:00
logData.token === µb.staticNetFilteringEngine.noTokenHash
) {
return 0;
}
2017-05-19 14:45:19 +02:00
if ( logData.token === µb.staticNetFilteringEngine.dotTokenHash ) {
return result;
}
var re = new RegExp(logData.regex, 'i'),
matches = re.exec(popunderURL);
if ( matches === null ) { return 0; }
var beg = matches.index,
end = beg + matches[0].length,
2016-04-28 17:28:08 +02:00
pos = popunderURL.indexOf(popunderHostname);
if ( pos === -1 ) { return 0; }
2016-03-12 16:48:31 +01:00
// https://github.com/gorhill/uBlock/issues/1471
2016-08-16 18:12:35 +02:00
// We test whether the opener hostname as at least one character
// within matched portion of URL.
// https://github.com/gorhill/uBlock/issues/1903
// Ignore filters which cause a match before the start of the
// hostname in the URL.
return beg >= pos && beg < pos + popunderHostname.length && end > pos
? result
: 0;
2016-04-28 17:28:08 +02:00
};
var popunderMatch = function(openerURL, targetURL) {
2017-09-26 13:54:06 +02:00
var result = popupMatch(targetURL, openerURL, 'popunder');
if ( result === 1 ) {
2016-04-28 17:28:08 +02:00
return result;
}
// https://github.com/gorhill/uBlock/issues/1010#issuecomment-186824878
// Check the opener tab as if it were the newly opened tab: if there
// is a hit against a popup filter, and if the matching filter is not
// a broad one, we will consider the opener tab to be a popunder tab.
// For now, a "broad" filter is one which does not touch any part of
// the hostname part of the opener URL.
var popunderURL = openerURL,
popunderHostname = µb.URI.hostnameFromURI(popunderURL);
2016-04-28 17:28:08 +02:00
if ( popunderHostname === '' ) {
return 0;
2016-04-28 17:28:08 +02:00
}
result = mapPopunderResult(
popunderURL,
popunderHostname,
2017-09-26 13:54:06 +02:00
popupMatch(targetURL, popunderURL, 'popup')
2016-04-28 17:28:08 +02:00
);
if ( result !== 0 ) {
2016-04-28 17:28:08 +02:00
return result;
}
// https://github.com/gorhill/uBlock/issues/1598
// Try to find a match against origin part of the opener URL.
popunderURL = µb.URI.originFromURI(popunderURL);
if ( popunderURL === '' ) {
return 0;
}
2016-04-28 17:28:08 +02:00
return mapPopunderResult(
popunderURL,
popunderHostname,
2017-09-26 13:54:06 +02:00
popupMatch(targetURL, popunderURL, 'popup')
2016-04-28 17:28:08 +02:00
);
};
2017-10-13 15:33:02 +02:00
return function(targetTabId, openerDetails) {
// Opener details.
2017-10-13 15:33:02 +02:00
var openerTabId = openerDetails.tabId;
var tabContext = µb.tabContextManager.lookup(openerTabId);
2015-12-02 06:59:51 +01:00
if ( tabContext === null ) { return; }
var openerURL = tabContext.rawURL;
if ( openerURL === '' ) { return; }
// Popup details.
tabContext = µb.tabContextManager.lookup(targetTabId);
2015-12-02 06:59:51 +01:00
if ( tabContext === null ) { return; }
var targetURL = tabContext.rawURL;
if ( targetURL === '' ) { return; }
2015-03-27 18:00:55 +01:00
// https://github.com/gorhill/uBlock/issues/341
// Allow popups if uBlock is turned off in opener's context.
if ( µb.getNetFilteringSwitch(openerURL) === false ) {
return;
}
2016-04-05 15:59:23 +02:00
// https://github.com/gorhill/uBlock/issues/1538
if ( µb.getNetFilteringSwitch(µb.normalizePageURL(openerTabId, openerURL)) === false ) {
return;
}
// If the page URL is that of our "blocked page" URL, extract the URL of
// the page which was blocked.
if ( targetURL.startsWith(vAPI.getURL('document-blocked.html')) ) {
var matches = /details=([^&]+)/.exec(targetURL);
if ( matches !== null ) {
targetURL = JSON.parse(atob(matches[1])).url;
}
}
2017-09-26 13:54:06 +02:00
// Popup test.
var popupType = 'popup',
result = 0;
2017-09-06 01:49:48 +02:00
// https://github.com/gorhill/uBlock/issues/2919
2017-09-26 13:54:06 +02:00
// - If the target tab matches a clicked link, assume it's legit.
2017-10-13 15:33:02 +02:00
if ( areDifferentURLs(targetURL, openerDetails.trustedURL) ) {
2017-09-06 01:49:48 +02:00
result = popupMatch(openerURL, targetURL, 'popup');
2017-09-26 13:54:06 +02:00
}
2014-10-15 19:14:25 +02:00
// Popunder test.
2017-10-13 15:33:02 +02:00
if ( result === 0 && openerDetails.popunder ) {
result = popunderMatch(openerURL, targetURL);
if ( result === 1 ) {
popupType = 'popunder';
}
}
// Log only for when there was a hit against an actual filter (allow or block).
2017-07-09 12:58:34 +02:00
// https://github.com/gorhill/uBlock/issues/2776
if ( µb.logger.isEnabled() ) {
µb.logger.writeOne(
popupType === 'popup' ? openerTabId : targetTabId,
'net',
2017-07-09 12:58:34 +02:00
result !== 0 ? logData : undefined,
popupType,
popupType === 'popup' ? targetURL : openerURL,
µb.URI.hostnameFromURI(context.rootURL),
µb.URI.hostnameFromURI(context.rootURL)
);
}
logData = undefined;
2014-10-15 19:14:25 +02:00
// Not blocked
if ( result !== 1 ) {
return;
}
// Only if a popup was blocked do we report it in the dynamic
// filtering pane.
var pageStore = µb.pageStoreFromTabId(openerTabId);
if ( pageStore ) {
2016-10-08 16:15:31 +02:00
pageStore.journalAddRequest(context.requestHostname, result);
2016-01-04 16:48:28 +01:00
pageStore.popupBlockedCount += 1;
}
// Blocked
if ( µb.userSettings.showIconBadge ) {
µb.updateBadgeAsync(openerTabId);
}
// It is a popup, block and remove the tab.
if ( popupType === 'popup' ) {
µb.unbindTabFromPageStats(targetTabId);
vAPI.tabs.remove(targetTabId, false);
} else {
µb.unbindTabFromPageStats(openerTabId);
vAPI.tabs.remove(openerTabId, true);
}
return true;
};
})();
vAPI.tabs.registerListeners();
2014-10-15 19:14:25 +02:00
2014-06-24 00:42:43 +02:00
/******************************************************************************/
/******************************************************************************/
// Create an entry for the tab if it doesn't exist.
2015-04-09 00:46:08 +02:00
µb.bindTabToPageStats = function(tabId, context) {
2015-05-16 16:15:02 +02:00
this.updateBadgeAsync(tabId);
2014-07-07 01:14:32 +02:00
2014-07-14 17:24:59 +02:00
// Do not create a page store for URLs which are of no interests
2015-04-09 00:46:08 +02:00
if ( µb.tabContextManager.exists(tabId) === false ) {
2014-07-14 17:24:59 +02:00
this.unbindTabFromPageStats(tabId);
2014-06-24 00:42:43 +02:00
return null;
}
2015-01-17 13:19:48 +01:00
// Reuse page store if one exists: this allows to guess if a tab is a popup
2018-02-26 19:59:16 +01:00
var pageStore = this.pageStores.get(tabId);
2014-08-02 17:40:27 +02:00
2015-01-17 13:19:48 +01:00
// Tab is not bound
2018-02-26 19:59:16 +01:00
if ( pageStore === undefined ) {
this.updateTitle(tabId);
this.pageStoresToken = Date.now();
2018-02-26 19:59:16 +01:00
pageStore = this.PageStore.factory(tabId, context);
this.pageStores.set(tabId, pageStore);
return pageStore;
2015-01-17 13:19:48 +01:00
}
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/516
2016-10-08 16:15:31 +02:00
// Never rebind behind-the-scene scope.
if ( vAPI.isBehindTheSceneTabId(tabId) ) {
return pageStore;
}
2016-10-08 16:15:31 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/516
// If context is 'beforeRequest', do not rebind, wait for confirmation.
2015-01-17 13:19:48 +01:00
if ( context === 'beforeRequest' ) {
return pageStore;
}
2015-01-24 18:34:36 +01:00
// Rebind according to context. We rebind even if the URL did not change,
// as maybe the tab was force-reloaded, in which case the page stats must
// be all reset.
2015-04-09 00:46:08 +02:00
pageStore.reuse(context);
2014-06-24 00:42:43 +02:00
this.updateTitle(tabId);
this.pageStoresToken = Date.now();
2014-06-24 00:42:43 +02:00
return pageStore;
};
2015-04-09 00:46:08 +02:00
/******************************************************************************/
2015-01-02 19:42:35 +01:00
µb.unbindTabFromPageStats = function(tabId) {
2014-07-16 23:20:11 +02:00
//console.debug('µBlock> unbindTabFromPageStats(%d)', tabId);
2018-02-26 19:59:16 +01:00
var pageStore = this.pageStores.get(tabId);
2014-09-14 22:20:40 +02:00
if ( pageStore !== undefined ) {
pageStore.dispose();
2018-02-26 19:59:16 +01:00
this.pageStores.delete(tabId);
this.pageStoresToken = Date.now();
2014-09-14 22:20:40 +02:00
}
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
2015-01-02 19:42:35 +01:00
µb.pageStoreFromTabId = function(tabId) {
2018-02-26 19:59:16 +01:00
return this.pageStores.get(tabId) || null;
2014-06-24 00:42:43 +02:00
};
2016-03-22 15:19:41 +01:00
µb.mustPageStoreFromTabId = function(tabId) {
2018-02-26 19:59:16 +01:00
return this.pageStores.get(tabId) || this.pageStores.get(vAPI.noTabId);
2016-03-22 15:19:41 +01:00
};
/******************************************************************************/
// Permanent page store for behind-the-scene requests. Must never be removed.
2018-02-26 19:59:16 +01:00
(function() {
var pageStore = µb.PageStore.factory(vAPI.noTabId);
µb.pageStores.set(pageStore.tabId, pageStore);
pageStore.title = vAPI.i18n('logBehindTheScene');
pageStore = µb.PageStore.factory(vAPI.anyTabId);
µb.pageStores.set(pageStore.tabId, pageStore);
pageStore.title = '[Any one of the known tabs]';
})();
2015-01-02 19:42:35 +01:00
/******************************************************************************/
2015-05-16 16:15:02 +02:00
2015-11-29 23:06:58 +01:00
// Update visual of extension icon.
µb.updateBadgeAsync = (function() {
2018-02-26 19:59:16 +01:00
var tabIdToTimer = new Map();
2015-11-29 23:06:58 +01:00
var updateBadge = function(tabId) {
2018-02-26 19:59:16 +01:00
tabIdToTimer.delete(tabId);
2015-11-29 23:06:58 +01:00
var state = false;
var badge = '';
var pageStore = this.pageStoreFromTabId(tabId);
if ( pageStore !== null ) {
state = pageStore.getNetFilteringSwitch();
if ( state && this.userSettings.showIconBadge && pageStore.perLoadBlockedRequestCount ) {
badge = this.formatCount(pageStore.perLoadBlockedRequestCount);
2015-11-29 23:06:58 +01:00
}
}
vAPI.setIcon(tabId, state ? 'on' : 'off', badge);
};
return function(tabId) {
2018-02-26 19:59:16 +01:00
if ( tabIdToTimer.has(tabId) ) { return; }
if ( vAPI.isBehindTheSceneTabId(tabId) ) { return; }
tabIdToTimer.set(
tabId,
vAPI.setTimeout(updateBadge.bind(this, tabId), 701)
);
2015-11-29 23:06:58 +01:00
};
})();
/******************************************************************************/
2015-05-16 16:15:02 +02:00
µb.updateTitle = (function() {
2018-02-26 19:59:16 +01:00
var tabIdToTimer = new Map();
2015-05-16 16:15:02 +02:00
var delay = 499;
2018-02-26 19:59:16 +01:00
var tryAgain = function(entry) {
if ( entry.count === 1 ) { return false; }
entry.count -= 1;
tabIdToTimer.set(
entry.tabId,
vAPI.setTimeout(updateTitle.bind(null, entry), delay)
);
2015-05-16 16:15:02 +02:00
return true;
};
2018-02-26 19:59:16 +01:00
var onTabReady = function(entry, tab) {
if ( !tab ) { return; }
var µb = µBlock;
var pageStore = µb.pageStoreFromTabId(entry.tabId);
if ( pageStore === null ) { return; }
// Firefox needs this: if you detach a tab, the new tab won't have
// its rawURL set. Concretely, this causes the logger to report an
// entry to itself in the logger's tab selector.
// TODO: Investigate for a fix vAPI-side.
pageStore.rawURL = tab.url;
2018-02-26 19:59:16 +01:00
µb.pageStoresToken = Date.now();
if ( !tab.title && tryAgain(entry) ) { return; }
// https://github.com/gorhill/uMatrix/issues/225
// Sometimes title changes while page is loading.
var settled = tab.title && tab.title === pageStore.title;
2015-05-16 16:15:02 +02:00
pageStore.title = tab.title || tab.url || '';
2018-02-26 19:59:16 +01:00
if ( !settled ) {
tryAgain(entry);
}
2015-05-16 16:15:02 +02:00
};
2018-02-26 19:59:16 +01:00
var updateTitle = function(entry) {
tabIdToTimer.delete(entry.tabId);
vAPI.tabs.get(entry.tabId, onTabReady.bind(null, entry));
2015-05-16 16:15:02 +02:00
};
return function(tabId) {
2018-02-26 19:59:16 +01:00
if ( vAPI.isBehindTheSceneTabId(tabId) ) { return; }
var timer = tabIdToTimer.get(tabId);
if ( timer !== undefined ) {
clearTimeout(timer);
2015-05-16 16:15:02 +02:00
}
2018-02-26 19:59:16 +01:00
tabIdToTimer.set(
tabId,
vAPI.setTimeout(
updateTitle.bind(null, { tabId: tabId, count: 5 }),
delay
)
);
2015-05-16 16:15:02 +02:00
};
})();
2015-01-02 19:42:35 +01:00
/******************************************************************************/
// Stale page store entries janitor
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/455
2015-01-02 19:42:35 +01:00
var pageStoreJanitorPeriod = 15 * 60 * 1000;
var pageStoreJanitorSampleAt = 0;
var pageStoreJanitorSampleSize = 10;
var pageStoreJanitor = function() {
var vapiTabs = vAPI.tabs;
2018-02-26 19:59:16 +01:00
var tabIds = Array.from(µb.pageStores.keys()).sort();
2015-01-02 19:42:35 +01:00
var checkTab = function(tabId) {
vapiTabs.get(tabId, function(tab) {
if ( !tab ) {
µb.unbindTabFromPageStats(tabId);
}
});
};
if ( pageStoreJanitorSampleAt >= tabIds.length ) {
pageStoreJanitorSampleAt = 0;
}
var n = Math.min(pageStoreJanitorSampleAt + pageStoreJanitorSampleSize, tabIds.length);
for ( var i = pageStoreJanitorSampleAt; i < n; i++ ) {
2018-02-26 19:59:16 +01:00
var tabId = tabIds[i];
if ( vAPI.isBehindTheSceneTabId(tabId) ) { continue; }
checkTab(tabId);
2015-01-02 19:42:35 +01:00
}
pageStoreJanitorSampleAt = n;
vAPI.setTimeout(pageStoreJanitor, pageStoreJanitorPeriod);
2015-01-02 19:42:35 +01:00
};
vAPI.setTimeout(pageStoreJanitor, pageStoreJanitorPeriod);
2015-01-02 19:42:35 +01:00
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2015-01-02 19:42:35 +01:00
})();
/******************************************************************************/