uBlock/src/js/cosmetic-filtering.js

2211 lines
73 KiB
JavaScript
Raw Normal View History

2014-06-24 00:42:43 +02:00
/*******************************************************************************
uBlock Origin - a browser extension to block requests.
2017-03-13 18:03:51 +01:00
Copyright (C) 2014-2017 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
*/
/* jshint bitwise: false */
/* global punycode */
'use strict';
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-09-08 23:46:58 +02:00
µBlock.cosmeticFilteringEngine = (function(){
2014-06-24 00:42:43 +02:00
/******************************************************************************/
var µb = µBlock;
2014-09-08 23:46:58 +02:00
/******************************************************************************/
var isValidCSSSelector = (function() {
var div = document.createElement('div'),
matchesFn;
// Keep in mind:
// https://github.com/gorhill/uBlock/issues/693
// https://github.com/gorhill/uBlock/issues/1955
if ( div.matches instanceof Function ) {
matchesFn = div.matches.bind(div);
} else if ( div.mozMatchesSelector instanceof Function ) {
matchesFn = div.mozMatchesSelector.bind(div);
} else if ( div.webkitMatchesSelector instanceof Function ) {
matchesFn = div.webkitMatchesSelector.bind(div);
} else if ( div.msMatchesSelector instanceof Function ) {
matchesFn = div.msMatchesSelector.bind(div);
} else {
matchesFn = div.querySelector.bind(div);
}
2017-10-09 05:47:23 +02:00
// https://github.com/gorhill/uBlock/issues/3111
// Workaround until https://bugzilla.mozilla.org/show_bug.cgi?id=1406817
// is fixed.
try {
matchesFn(':scope');
} catch (ex) {
matchesFn = div.querySelector.bind(div);
}
return function(s) {
try {
matchesFn(s + ', ' + s + ':not(#foo)');
} catch (ex) {
return false;
}
return true;
};
})();
var reIsRegexLiteral = /^\/.+\/$/;
2015-10-26 16:23:56 +01:00
var isBadRegex = function(s) {
try {
void new RegExp(s);
} catch (ex) {
isBadRegex.message = ex.toString();
return true;
}
return false;
};
var cosmeticSurveyingMissCountMax = parseInt(vAPI.localStorage.getItem('cosmeticSurveyingMissCountMax'), 10) || 15;
2014-06-24 00:42:43 +02:00
/******************************************************************************/
/*
var histogram = function(label, buckets) {
var h = [],
bucket;
for ( var k in buckets ) {
if ( buckets.hasOwnProperty(k) === false ) {
continue;
}
bucket = buckets[k];
h.push({
k: k,
n: bucket instanceof FilterBucket ? bucket.filters.length : 1
});
}
console.log('Histogram %s', label);
var total = h.length;
h.sort(function(a, b) { return b.n - a.n; });
// Find indices of entries of interest
var target = 3;
for ( var i = 0; i < total; i++ ) {
if ( h[i].n === target ) {
console.log('\tEntries with only %d filter(s) start at index %s (key = "%s")', target, i, h[i].k);
target -= 1;
}
}
h = h.slice(0, 50);
h.forEach(function(v) {
console.log('\tkey="%s" count=%d', v.k, v.n);
});
console.log('\tTotal buckets count: %d', total);
};
*/
/*******************************************************************************
2014-06-24 00:42:43 +02:00
Each filter class will register itself in the map.
2014-06-24 00:42:43 +02:00
IMPORTANT: any change which modifies the mapping will have to be
reflected with µBlock.systemSettings.compiledMagic.
2014-06-24 00:42:43 +02:00
**/
2014-06-24 00:42:43 +02:00
var filterClasses = [];
2014-09-08 23:46:58 +02:00
var registerFilterClass = function(ctor) {
filterClasses[ctor.prototype.fid] = ctor;
2014-09-08 23:46:58 +02:00
};
var filterFromCompiledData = function(args) {
return filterClasses[args[0]].load(args);
2014-09-08 23:46:58 +02:00
};
/******************************************************************************/
2014-06-24 00:42:43 +02:00
// Any selector specific to a hostname
// Examples:
// search.snapdo.com###ABottomD
// facebook.com##.-cx-PRIVATE-fbAdUnit__root
// sltrib.com###BLContainer + div[style="height:90px;"]
// myps3.com.au##.Boxer[style="height: 250px;"]
// lindaikeji.blogspot.com##a > img[height="600"]
// japantimes.co.jp##table[align="right"][width="250"]
// mobilephonetalk.com##[align="center"] > b > a[href^="http://tinyurl.com/"]
var FilterHostname = function(s, hostname) {
this.s = s;
this.hostname = hostname;
};
FilterHostname.prototype.fid = 8;
2014-07-13 08:36:38 +02:00
FilterHostname.prototype.retrieve = function(hostname, out) {
if ( hostname.endsWith(this.hostname) ) {
2017-10-21 19:43:46 +02:00
out.add(this.s);
2014-07-13 08:36:38 +02:00
}
};
FilterHostname.prototype.compile = function() {
return [ this.fid, this.s, this.hostname ];
2014-09-08 23:46:58 +02:00
};
FilterHostname.load = function(data) {
return new FilterHostname(data[1], data[2]);
2014-09-08 23:46:58 +02:00
};
registerFilterClass(FilterHostname);
/******************************************************************************/
var FilterBucket = function(a, b) {
this.f = null;
this.filters = [];
if ( a !== undefined ) {
this.filters[0] = a;
this.filters[1] = b;
}
};
FilterBucket.prototype.fid = 10;
FilterBucket.prototype.add = function(a) {
this.filters.push(a);
};
FilterBucket.prototype.retrieve = function(s, out) {
var i = this.filters.length;
while ( i-- ) {
this.filters[i].retrieve(s, out);
}
};
FilterBucket.prototype.compile = function() {
var out = [],
filters = this.filters;
for ( var i = 0, n = filters.length; i < n; i++ ) {
out[i] = filters[i].compile();
}
return [ this.fid, out ];
};
FilterBucket.load = function(data) {
var bucket = new FilterBucket(),
entries = data[1];
for ( var i = 0, n = entries.length; i < n; i++ ) {
bucket.filters[i] = filterFromCompiledData(entries[i]);
}
return bucket;
};
registerFilterClass(FilterBucket);
2014-06-24 00:42:43 +02:00
/******************************************************************************/
/******************************************************************************/
var FilterParser = function() {
this.prefix = this.suffix = '';
this.unhide = 0;
2014-06-24 00:42:43 +02:00
this.hostnames = [];
this.invalid = false;
2015-03-16 19:58:35 +01:00
this.cosmetic = true;
2017-09-28 18:53:05 +02:00
this.reNeedHostname = /^(?:script:contains|script:inject|.+?:-abp-contains|.+?:-abp-has|.+?:contains|.+?:has|.+?:has-text|.+?:if|.+?:if-not|.+?:matches-css(?:-before|-after)?|.*?:xpath)\(.+\)$/;
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
FilterParser.prototype.reset = function() {
this.raw = '';
this.prefix = this.suffix = '';
this.unhide = 0;
this.hostnames.length = 0;
2014-06-24 00:42:43 +02:00
this.invalid = false;
2015-03-16 19:58:35 +01:00
this.cosmetic = true;
2014-06-24 00:42:43 +02:00
return this;
};
/******************************************************************************/
2015-10-26 16:23:56 +01:00
FilterParser.prototype.parse = function(raw) {
2014-06-24 00:42:43 +02:00
// important!
this.reset();
this.raw = raw;
// Find the bounds of the anchor.
var lpos = raw.indexOf('#');
if ( lpos === -1 ) {
this.cosmetic = false;
return this;
}
var rpos = raw.indexOf('#', lpos + 1);
if ( rpos === -1 ) {
this.cosmetic = false;
return this;
}
// Coarse-check that the anchor is valid.
// `##`: l = 1
2017-09-28 18:53:05 +02:00
// `#@#`, `#$#`, `#%#`, `#?#`: l = 2
// `#@$#`, `#@%#`, `#@?#`: l = 3
if ( (rpos - lpos) > 3 ) {
this.cosmetic = false;
return this;
}
// Find out type of cosmetic filter.
// Exception filter?
if ( raw.charCodeAt(lpos + 1) === 0x40 /* '@' */ ) {
this.unhide = 1;
}
// https://github.com/gorhill/uBlock/issues/952
// Find out whether we are dealing with an Adguard-specific cosmetic
// filter, and if so, translate it if supported, or discard it if not
// supported.
var cCode = raw.charCodeAt(rpos - 1);
if ( cCode !== 0x23 /* '#' */ && cCode !== 0x40 /* '@' */ ) {
2017-09-28 18:53:05 +02:00
// We have an Adguard/ABP cosmetic filter if and only if the character
// is `$`, `%` or `?`, otherwise it's not a cosmetic filter.
if (
cCode !== 0x24 /* '$' */ &&
cCode !== 0x25 /* '%' */ &&
cCode !== 0x3F /* '?' */
) {
this.cosmetic = false;
return this;
}
2017-09-28 18:53:05 +02:00
// Adguard's scriptlet injection: not supported.
if ( cCode === 0x25 /* '%' */ ) {
this.invalid = true;
return this;
}
2017-09-28 18:53:05 +02:00
// Adguard's style injection: supported, but translate to uBO's format.
if ( cCode === 0x24 /* '$' */ ) {
raw = this.translateAdguardCSSInjectionFilter(raw);
if ( raw === '' ) {
this.invalid = true;
return this;
}
}
rpos = raw.indexOf('#', lpos + 1);
}
// Extract the hostname(s).
if ( lpos !== 0 ) {
this.prefix = raw.slice(0, lpos);
}
// Extract the selector.
this.suffix = raw.slice(rpos + 1).trim();
if ( this.suffix.length === 0 ) {
2015-03-16 19:58:35 +01:00
this.cosmetic = false;
2014-06-24 00:42:43 +02:00
return this;
}
2014-06-24 00:42:43 +02:00
// 2014-05-23:
// https://github.com/gorhill/httpswitchboard/issues/260
// Any sequence of `#` longer than one means the line is not a valid
// cosmetic filter.
if ( this.suffix.indexOf('##') !== -1 ) {
2015-03-16 19:58:35 +01:00
this.cosmetic = false;
2014-06-24 00:42:43 +02:00
return this;
}
// Normalize high-medium selectors: `href` is assumed to imply `a` tag. We
// need to do this here in order to correctly avoid duplicates. The test
// is designed to minimize overhead -- this is a low occurrence filter.
if ( this.suffix.startsWith('[href^="', 1) ) {
this.suffix = this.suffix.slice(1);
}
if ( this.prefix !== '' ) {
this.hostnames = this.prefix.split(/\s*,\s*/);
}
// For some selectors, it is mandatory to have a hostname or entity:
// ##script:contains(...)
// ##script:inject(...)
2017-09-28 18:53:05 +02:00
// ##.foo:-abp-contains(...)
// ##.foo:-abp-has(...)
// ##.foo:contains(...)
// ##.foo:has(...)
// ##.foo:has-text(...)
// ##.foo:if(...)
// ##.foo:if-not(...)
// ##.foo:matches-css(...)
// ##.foo:matches-css-after(...)
// ##.foo:matches-css-before(...)
// ##:xpath(...)
if (
this.hostnames.length === 0 &&
this.unhide === 0 &&
this.reNeedHostname.test(this.suffix)
) {
this.invalid = true;
return this;
}
return this;
};
/******************************************************************************/
// Reference: https://adguard.com/en/filterrules.html#cssInjection
FilterParser.prototype.translateAdguardCSSInjectionFilter = function(raw) {
var matches = /^([^#]*)#(@?)\$#([^{]+)\{([^}]+)\}$/.exec(raw);
if ( matches === null ) {
return '';
}
// For now we do not allow generic CSS injections (prolly never).
if ( matches[1] === '' && matches[2] !== '@' ) {
return '';
}
return matches[1] +
'#' + matches[2] + '#' +
matches[3].trim() +
':style(' + matches[4].trim() + ')';
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
/******************************************************************************/
2014-08-14 02:03:55 +02:00
var SelectorCacheEntry = function() {
2014-12-26 21:26:44 +01:00
this.reset();
};
/******************************************************************************/
SelectorCacheEntry.junkyard = [];
SelectorCacheEntry.factory = function() {
var entry = SelectorCacheEntry.junkyard.pop();
if ( entry ) {
return entry.reset();
}
return new SelectorCacheEntry();
};
/******************************************************************************/
2017-10-22 14:59:29 +02:00
var netSelectorCacheLowWaterMark = 20;
var netSelectorCacheHighWaterMark = 30;
2014-12-26 21:26:44 +01:00
/******************************************************************************/
SelectorCacheEntry.prototype.reset = function() {
2017-10-21 19:43:46 +02:00
this.cosmetic = new Set();
this.cosmeticSurveyingMissCount = 0;
2017-10-21 19:43:46 +02:00
this.net = new Map();
2014-08-14 02:03:55 +02:00
this.lastAccessTime = Date.now();
2014-12-26 21:26:44 +01:00
return this;
2014-08-14 02:03:55 +02:00
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
SelectorCacheEntry.prototype.dispose = function() {
this.cosmetic = this.net = null;
if ( SelectorCacheEntry.junkyard.length < 25 ) {
SelectorCacheEntry.junkyard.push(this);
}
};
/******************************************************************************/
SelectorCacheEntry.prototype.addCosmetic = function(details) {
var selectors = details.selectors,
i = selectors.length || 0;
// https://github.com/gorhill/uBlock/issues/2011
// Avoiding seemingly pointless surveys only if they appear costly.
if ( details.first && i === 0 ) {
if ( (details.cost || 0) >= 80 ) {
this.cosmeticSurveyingMissCount += 1;
}
return;
}
this.cosmeticSurveyingMissCount = 0;
while ( i-- ) {
2017-10-21 19:43:46 +02:00
this.cosmetic.add(selectors[i]);
}
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
2017-10-22 14:59:29 +02:00
SelectorCacheEntry.prototype.addNet = function(selectors) {
2014-08-15 16:34:13 +02:00
if ( typeof selectors === 'string' ) {
this.addNetOne(selectors, Date.now());
} else {
this.addNetMany(selectors, Date.now());
}
// Net request-derived selectors: I limit the number of cached selectors,
// as I expect cases where the blocked net-requests are never the
// exact same URL.
2017-10-21 19:43:46 +02:00
if ( this.net.size < netSelectorCacheHighWaterMark ) { return; }
2014-08-15 16:34:13 +02:00
var dict = this.net;
2017-10-21 19:43:46 +02:00
var keys = µb.arrayFrom(dict.keys()).sort(function(a, b) {
return dict.get(b) - dict.get(a);
}).slice(netSelectorCacheLowWaterMark);
2014-08-15 16:34:13 +02:00
var i = keys.length;
while ( i-- ) {
2017-10-21 19:43:46 +02:00
dict.delete(keys[i]);
2014-08-15 16:34:13 +02:00
}
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
2014-08-15 16:34:13 +02:00
SelectorCacheEntry.prototype.addNetOne = function(selector, now) {
2017-10-21 19:43:46 +02:00
this.net.set(selector, now);
2014-08-15 16:34:13 +02:00
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
2014-08-15 16:34:13 +02:00
SelectorCacheEntry.prototype.addNetMany = function(selectors, now) {
var i = selectors.length || 0;
while ( i-- ) {
2017-10-21 19:43:46 +02:00
this.net.set(selectors[i], now);
}
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
SelectorCacheEntry.prototype.add = function(details) {
2014-08-14 02:03:55 +02:00
this.lastAccessTime = Date.now();
if ( details.type === 'cosmetic' ) {
this.addCosmetic(details);
} else {
this.addNet(details.selectors);
}
2014-08-14 02:03:55 +02:00
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/420
2014-12-17 16:32:50 +01:00
SelectorCacheEntry.prototype.remove = function(type) {
this.lastAccessTime = Date.now();
2015-02-11 23:28:19 +01:00
if ( type === undefined || type === 'cosmetic' ) {
2017-10-21 19:43:46 +02:00
this.cosmetic.clear();
this.cosmeticSurveyingMissCount = 0;
2015-02-11 23:28:19 +01:00
}
if ( type === undefined || type === 'net' ) {
2017-10-21 19:43:46 +02:00
this.net.clear();
2014-12-17 16:32:50 +01:00
}
};
2014-12-26 21:26:44 +01:00
/******************************************************************************/
2017-10-22 14:59:29 +02:00
SelectorCacheEntry.prototype.retrieveToArray = function(iterator, out) {
for ( var selector of iterator ) {
out.push(selector);
}
};
SelectorCacheEntry.prototype.retrieveToSet = function(iterator, out) {
for ( var selector of iterator ) {
out.add(selector);
}
};
SelectorCacheEntry.prototype.retrieve = function(type, out) {
2014-08-14 02:03:55 +02:00
this.lastAccessTime = Date.now();
2017-10-22 14:59:29 +02:00
var iterator = type === 'cosmetic' ? this.cosmetic : this.net.keys();
if ( Array.isArray(out) ) {
this.retrieveToArray(iterator, out);
} else {
this.retrieveToSet(iterator, out);
2014-08-14 02:03:55 +02:00
}
};
/******************************************************************************/
/******************************************************************************/
// Two Unicode characters:
// T0HHHHHHH HHHHHHHHH
// | | |
// | | |
// | | |
// | | +-- bit 8-0 of FNV
// | |
// | +-- bit 15-9 of FNV
// |
// +-- filter type (0=hide 1=unhide)
//
2014-06-24 00:42:43 +02:00
var makeHash = function(token) {
// Ref: Given a URL, returns a unique 4-character long hash string
// Based on: FNV32a
// http://www.isthe.com/chongo/tech/comp/fnv/index.html#FNV-reference-source
// The rest is custom, suited for uBlock.
var i1 = token.length;
var i2 = i1 >> 1;
var i4 = i1 >> 2;
var i8 = i1 >> 3;
var hval = (0x811c9dc5 ^ token.charCodeAt(0)) >>> 0;
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i8);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i4);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i4+i8);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i2);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i2+i8);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i2+i4);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval ^= token.charCodeAt(i1-1);
hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24);
hval >>>= 0;
hval &= 0x0FFF; // 12 bits
2015-02-24 00:31:29 +01:00
return hval.toString(36);
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
/******************************************************************************/
// Cosmetic filter family tree:
//
// Generic
// Low generic simple: class or id only
// Low generic complex: class or id + extra stuff after
// High generic:
// High-low generic: [alt="..."],[title="..."]
// High-medium generic: [href^="..."]
// High-high generic: everything else
// Specific
// Specfic hostname
// Specific entity
// Generic filters can only be enforced once the main document is loaded.
// Specific filers can be enforced before the main document is loaded.
2014-06-24 00:42:43 +02:00
var FilterContainer = function() {
this.noDomainHash = '-';
2014-08-21 16:56:36 +02:00
this.parser = new FilterParser();
this.reHasUnicode = /[^\x00-\x7F]/;
2016-10-30 20:19:58 +01:00
this.rePlainSelector = /^[#.][\w\\-]+/;
this.rePlainSelectorEscaped = /^[#.](?:\\[0-9A-Fa-f]+ |\\.|\w|-)+/;
2017-10-21 19:43:46 +02:00
this.rePlainSelectorEx = /^[^#.\[(]+([#.][\w-]+)|([#.][\w-]+)$/;
2016-10-30 20:19:58 +01:00
this.reEscapeSequence = /\\([0-9A-Fa-f]+ |.)/g;
2017-10-21 19:43:46 +02:00
this.reSimpleHighGeneric1 = /^[a-z]*\[[^[]+]$/;
this.reHighMedium = /^\[href\^="https?:\/\/([^"]{8})[^"]*"\]$/;
this.reScriptSelector = /^script:(contains|inject)\((.+)\)$/;
this.punycode = punycode;
2017-10-21 19:43:46 +02:00
this.selectorCache = new Map();
this.selectorCachePruneDelay = 10 * 60 * 1000; // 10 minutes
this.selectorCacheAgeMax = 120 * 60 * 1000; // 120 minutes
this.selectorCacheCountMin = 25;
this.netSelectorCacheCountMax = netSelectorCacheHighWaterMark;
this.selectorCacheTimer = null;
this.supportsUserStylesheets = vAPI.supportsUserStylesheets;
2017-10-21 19:43:46 +02:00
// generic exception filters
this.genericDonthideSet = new Set();
// hostname, entity-based filters
this.specificFilters = new Map();
this.proceduralFilters = new Map();
// low generic cosmetic filters, organized by id/class then simple/complex.
this.lowlyGeneric = Object.create(null);
this.lowlyGeneric.id = {
canonical: 'ids',
prefix: '#',
simple: new Set(),
complex: new Map()
};
this.lowlyGeneric.cl = {
canonical: 'classes',
prefix: '.',
simple: new Set(),
complex: new Map()
};
// highly generic selectors sets
this.highlyGenericSimpleHideSet = new Set();
this.highlyGenericComplexHideSet = new Set();
this.mruHighlyGenericHideStrings = new µb.MRUCache(8);
this.userScripts = new Map();
// Short-lived: content is valid only during one function call. These
// is to prevent repeated allocation/deallocation overheads -- the
// constructors/destructors of javascript Set/Map is assumed to be costlier
// than just calling clear() on these.
this.setRegister0 = new Set();
this.setRegister1 = new Set();
this.setRegister2 = new Set();
this.reset();
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
// Reset all, thus reducing to a minimum memory footprint of the context.
FilterContainer.prototype.reset = function() {
2014-08-21 16:56:36 +02:00
this.parser.reset();
2015-02-24 00:31:29 +01:00
this.µburi = µb.URI;
2014-07-20 21:00:26 +02:00
this.frozen = false;
2014-06-24 00:42:43 +02:00
this.acceptedCount = 0;
2016-03-17 18:56:21 +01:00
this.discardedCount = 0;
this.duplicateBuster = new Set();
2017-10-21 19:43:46 +02:00
this.selectorCache.clear();
if ( this.selectorCacheTimer !== null ) {
clearTimeout(this.selectorCacheTimer);
this.selectorCacheTimer = null;
}
2014-08-14 02:03:55 +02:00
2016-08-13 22:42:58 +02:00
// generic filters
this.hasGenericHide = false;
2017-10-21 19:43:46 +02:00
// generic exception filters
this.genericDonthideSet.clear();
2017-10-21 19:43:46 +02:00
// hostname, entity-based filters
this.specificFilters.clear();
this.proceduralFilters.clear();
2017-10-21 19:43:46 +02:00
// low generic cosmetic filters, organized by id/class then simple/complex.
this.lowlyGeneric.id.simple.clear();
this.lowlyGeneric.id.complex.clear();
this.lowlyGeneric.cl.simple.clear();
this.lowlyGeneric.cl.complex.clear();
2017-10-21 19:43:46 +02:00
// highly generic selectors sets
this.highlyGenericSimpleHideSet.clear();
this.highlyGenericComplexHideSet.clear();
this.mruHighlyGenericHideStrings.reset();
2015-03-13 18:01:46 +01:00
this.scriptTagFilters = {};
this.scriptTagFilterCount = 0;
2017-10-21 19:43:46 +02:00
this.userScripts.clear();
this.userScriptCount = 0;
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
2016-08-13 22:42:58 +02:00
FilterContainer.prototype.freeze = function() {
this.duplicateBuster = new Set();
2016-08-13 22:42:58 +02:00
2017-10-21 19:43:46 +02:00
this.hasGenericHide =
this.lowlyGeneric.id.simple.size !== 0 ||
this.lowlyGeneric.id.complex.size !== 0 ||
this.lowlyGeneric.cl.simple.size !== 0 ||
this.lowlyGeneric.cl.complex.size !== 0 ||
this.highlyGenericSimpleHideSet.size !== 0 ||
this.highlyGenericComplexHideSet.size !== 0;
if ( this.genericDonthideSet.size !== 0 ) {
for ( var selector of this.genericDonthideSet ) {
var type = selector.charCodeAt(0);
if ( type === 0x23 /* '#' */ ) {
this.lowlyGeneric.id.simple.delete(selector.slice(1));
} else if ( type === 0x2E /* '.' */ ) {
this.lowlyGeneric.cl.simple.delete(selector.slice(1));
}
// TODO:
// this.lowlyGeneric.id.complex.delete(selector);
// this.lowlyGeneric.cl.complex.delete(selector);
this.highlyGenericSimpleHideSet.delete(selector);
this.highlyGenericComplexHideSet.delete(selector);
}
2016-08-13 22:42:58 +02:00
}
this.parser.reset();
this.compileSelector.reset();
this.compileProceduralSelector.reset();
2016-08-13 22:42:58 +02:00
this.frozen = true;
};
/******************************************************************************/
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/1004
// Detect and report invalid CSS selectors.
// Discard new ABP's `-abp-properties` directive until it is
// implemented (if ever). Unlikely, see:
// https://github.com/gorhill/uBlock/issues/1752
2017-05-20 21:35:19 +02:00
// https://github.com/gorhill/uBlock/issues/2624
// Convert Adguard's `-ext-has='...'` into uBO's `:has(...)`.
FilterContainer.prototype.compileSelector = (function() {
2017-03-13 18:03:51 +01:00
var reAfterBeforeSelector = /^(.+?)(::?after|::?before)$/,
reStyleSelector = /^(.+?):style\((.+?)\)$/,
reStyleBad = /url\([^)]+\)/,
reScriptSelector = /^script:(contains|inject)\((.+)\)$/,
2017-05-20 21:35:19 +02:00
reExtendedSyntax = /\[-(?:abp|ext)-[a-z-]+=(['"])(?:.+?)(?:\1)\]/,
reExtendedSyntaxParser = /\[-(?:abp|ext)-([a-z-]+)=(['"])(.+?)\2\]/,
div = document.createElement('div');
var normalizedExtendedSyntaxOperators = new Map([
[ 'contains', ':has-text' ],
[ 'has', ':if' ],
[ 'matches-css', ':matches-css' ],
[ 'matches-css-after', ':matches-css-after' ],
[ 'matches-css-before', ':matches-css-before' ],
]);
var isValidStyleProperty = function(cssText) {
if ( reStyleBad.test(cssText) ) { return false; }
div.style.cssText = cssText;
if ( div.style.cssText === '' ) { return false; }
div.style.cssText = '';
return true;
};
var entryPoint = function(raw) {
var extendedSyntax = reExtendedSyntax.test(raw);
if ( isValidCSSSelector(raw) && extendedSyntax === false ) {
return raw;
}
2017-05-20 21:35:19 +02:00
// We rarely reach this point -- majority of selectors are plain
// CSS selectors.
var matches, operator;
2017-05-20 21:35:19 +02:00
// Supported Adguard/ABP advanced selector syntax: will translate into
2017-05-20 21:35:19 +02:00
// uBO's syntax before further processing.
// Mind unsupported advanced selector syntax, such as ABP's
// `-abp-properties`.
// Note: extended selector syntax has been deprecated in ABP, in favor
// of the procedural one (i.e. `:operator(...)`). See
// https://issues.adblockplus.org/ticket/5287
if ( extendedSyntax ) {
while ( (matches = reExtendedSyntaxParser.exec(raw)) !== null ) {
operator = normalizedExtendedSyntaxOperators.get(matches[1]);
if ( operator === undefined ) { return; }
raw = raw.slice(0, matches.index) +
operator + '(' + matches[3] + ')' +
raw.slice(matches.index + matches[0].length);
}
return this.compileSelector(raw);
2017-05-20 21:35:19 +02:00
}
var selector = raw,
pseudoclass, style;
// `:style` selector?
2017-03-13 18:03:51 +01:00
if ( (matches = reStyleSelector.exec(selector)) !== null ) {
selector = matches[1];
style = matches[2];
}
// https://github.com/gorhill/uBlock/issues/2448
// :after- or :before-based selector?
if ( (matches = reAfterBeforeSelector.exec(selector)) ) {
selector = matches[1];
pseudoclass = matches[2];
}
if ( style !== undefined || pseudoclass !== undefined ) {
if ( isValidCSSSelector(selector) === false ) {
return;
}
if ( pseudoclass !== undefined ) {
selector += pseudoclass;
}
if ( style !== undefined ) {
2017-10-21 19:43:46 +02:00
if ( isValidStyleProperty(style) === false ) { return; }
2017-03-13 18:03:51 +01:00
return JSON.stringify({
raw: raw,
2017-10-21 19:43:46 +02:00
style: [ selector, style ]
2017-03-13 18:03:51 +01:00
});
}
return JSON.stringify({
raw: raw,
2017-03-13 18:03:51 +01:00
pseudoclass: true
});
}
// `script:` filter?
if ( (matches = reScriptSelector.exec(raw)) !== null ) {
// :inject
if ( matches[1] === 'inject' ) {
return raw;
}
// :contains
2017-09-28 18:53:05 +02:00
if (
reIsRegexLiteral.test(matches[2]) === false ||
isBadRegex(matches[2].slice(1, -1)) === false
) {
return raw;
}
}
// Procedural selector?
var compiled;
if ( (compiled = this.compileProceduralSelector(raw)) ) {
return compiled;
}
µb.logger.writeOne('', 'error', 'Cosmetic filtering invalid filter: ' + raw);
};
entryPoint.reset = function() {
};
return entryPoint;
})();
/******************************************************************************/
FilterContainer.prototype.compileProceduralSelector = (function() {
2017-09-28 18:53:05 +02:00
var reOperatorParser = /(:(?:-abp-contains|-abp-has|contains|has|has-text|if|if-not|matches-css|matches-css-after|matches-css-before|xpath))\(.+\)$/,
reFirstParentheses = /^\(*/,
reLastParentheses = /\)*$/,
2017-05-20 21:35:19 +02:00
reEscapeRegex = /[.*+?^${}()|[\]\\]/g,
reNeedScope = /^\s*[+>~]/;
var lastProceduralSelector = '',
lastProceduralSelectorCompiled,
regexToRawValue = new Map();
var compileCSSSelector = function(s) {
2017-05-20 21:35:19 +02:00
// https://github.com/AdguardTeam/ExtendedCss/issues/31#issuecomment-302391277
// Prepend `:scope ` if needed.
if ( reNeedScope.test(s) ) {
s = ':scope ' + s;
}
if ( isValidCSSSelector(s) ) {
return s;
}
};
var compileText = function(s) {
var reText;
if ( reIsRegexLiteral.test(s) ) {
reText = s.slice(1, -1);
if ( isBadRegex(reText) ) { return; }
} else {
reText = s.replace(reEscapeRegex, '\\$&');
regexToRawValue.set(reText, s);
}
return reText;
};
var compileCSSDeclaration = function(s) {
var name, value, reText,
pos = s.indexOf(':');
if ( pos === -1 ) { return; }
name = s.slice(0, pos).trim();
value = s.slice(pos + 1).trim();
if ( reIsRegexLiteral.test(value) ) {
reText = value.slice(1, -1);
if ( isBadRegex(reText) ) { return; }
} else {
reText = '^' + value.replace(reEscapeRegex, '\\$&') + '$';
regexToRawValue.set(reText, value);
}
return { name: name, value: reText };
};
var compileConditionalSelector = function(s) {
2017-05-20 21:35:19 +02:00
// https://github.com/AdguardTeam/ExtendedCss/issues/31#issuecomment-302391277
// Prepend `:scope ` if needed.
if ( reNeedScope.test(s) ) {
s = ':scope ' + s;
}
return compile(s);
};
var compileXpathExpression = function(s) {
var dummy;
try {
dummy = document.createExpression(s, null) instanceof XPathExpression;
} catch (e) {
return;
}
return s;
};
2017-09-28 18:53:05 +02:00
// https://github.com/gorhill/uBlock/issues/2793
var normalizedOperators = new Map([
[ ':-abp-contains', ':has-text' ],
[ ':-abp-has', ':if' ],
[ ':contains', ':has-text' ]
]);
var compileArgument = new Map([
[ ':has', compileCSSSelector ],
[ ':has-text', compileText ],
[ ':if', compileConditionalSelector ],
[ ':if-not', compileConditionalSelector ],
[ ':matches-css', compileCSSDeclaration ],
[ ':matches-css-after', compileCSSDeclaration ],
[ ':matches-css-before', compileCSSDeclaration ],
[ ':xpath', compileXpathExpression ]
]);
// https://github.com/gorhill/uBlock/issues/2793#issuecomment-333269387
// - Normalize (somewhat) the stringified version of procedural cosmetic
// filters -- this increase the likelihood of detecting duplicates given
// that uBO is able to understand syntax specific to other blockers.
// The normalized string version is what is reported in the logger, by
// design.
var decompile = function(compiled) {
var raw = [ compiled.selector ],
tasks = compiled.tasks,
value;
if ( Array.isArray(tasks) ) {
for ( var i = 0, n = tasks.length, task; i < n; i++ ) {
task = tasks[i];
switch ( task[0] ) {
case ':has':
case ':xpath':
raw.push(task[0], '(', task[1], ')');
break;
case ':has-text':
value = regexToRawValue.get(task[1]);
2017-10-05 14:38:34 +02:00
if ( value === undefined ) {
value = '/' + task[1] + '/';
}
raw.push(task[0], '(', value, ')');
break;
case ':matches-css':
case ':matches-css-after':
case ':matches-css-before':
value = regexToRawValue.get(task[1].value);
2017-10-05 14:38:34 +02:00
if ( value === undefined ) {
value = '/' + task[1].value + '/';
}
raw.push(task[0], '(', task[1].name, ': ', value, ')');
break;
case ':if':
case ':if-not':
raw.push(task[0], '(', decompile(task[1]), ')');
break;
}
}
}
return raw.join('');
};
var compile = function(raw) {
var matches = reOperatorParser.exec(raw);
if ( matches === null ) {
if ( isValidCSSSelector(raw) ) { return { selector: raw }; }
return;
}
var tasks = [],
firstOperand = raw.slice(0, matches.index),
currentOperator = matches[1],
selector = raw.slice(matches.index + currentOperator.length),
currentArgument = '', nextOperand, nextOperator,
depth = 0, opening, closing;
if ( firstOperand !== '' && isValidCSSSelector(firstOperand) === false ) { return; }
for (;;) {
matches = reOperatorParser.exec(selector);
if ( matches !== null ) {
nextOperand = selector.slice(0, matches.index);
nextOperator = matches[1];
} else {
nextOperand = selector;
nextOperator = '';
}
opening = reFirstParentheses.exec(nextOperand)[0].length;
closing = reLastParentheses.exec(nextOperand)[0].length;
if ( opening > closing ) {
if ( depth === 0 ) { currentArgument = ''; }
depth += 1;
} else if ( closing > opening && depth > 0 ) {
depth -= 1;
if ( depth === 0 ) { nextOperand = currentArgument + nextOperand; }
}
if ( depth !== 0 ) {
currentArgument += nextOperand + nextOperator;
} else {
2017-09-28 18:53:05 +02:00
currentOperator = normalizedOperators.get(currentOperator) || currentOperator;
currentArgument = compileArgument.get(currentOperator)(nextOperand.slice(1, -1));
if ( currentArgument === undefined ) { return; }
tasks.push([ currentOperator, currentArgument ]);
currentOperator = nextOperator;
}
if ( nextOperator === '' ) { break; }
selector = selector.slice(matches.index + nextOperator.length);
}
if ( tasks.length === 0 || depth !== 0 ) { return; }
return { selector: firstOperand, tasks: tasks };
};
var entryPoint = function(raw) {
if ( raw === lastProceduralSelector ) {
return lastProceduralSelectorCompiled;
}
lastProceduralSelector = raw;
var compiled = compile(raw);
if ( compiled !== undefined ) {
compiled.raw = decompile(compiled);
compiled = JSON.stringify(compiled);
}
lastProceduralSelectorCompiled = compiled;
return compiled;
};
entryPoint.reset = function() {
regexToRawValue = new Map();
lastProceduralSelector = '';
lastProceduralSelectorCompiled = undefined;
};
return entryPoint;
2015-09-08 14:45:22 +02:00
})();
/******************************************************************************/
2016-10-30 20:19:58 +01:00
// https://github.com/gorhill/uBlock/issues/1668
// The key must be literal: unescape escaped CSS before extracting key.
// It's an uncommon case, so it's best to unescape only when needed.
FilterContainer.prototype.keyFromSelector = function(selector) {
var matches = this.rePlainSelector.exec(selector);
if ( matches === null ) { return; }
var key = matches[0];
if ( key.indexOf('\\') === -1 ) {
return key;
}
key = '';
matches = this.rePlainSelectorEscaped.exec(selector);
if ( matches === null ) { return; }
var escaped = matches[0],
beg = 0;
this.reEscapeSequence.lastIndex = 0;
for (;;) {
matches = this.reEscapeSequence.exec(escaped);
if ( matches === null ) {
return key + escaped.slice(beg);
}
key += escaped.slice(beg, matches.index);
beg = this.reEscapeSequence.lastIndex;
if ( matches[1].length === 1 ) {
key += matches[1];
} else {
key += String.fromCharCode(parseInt(matches[1], 16));
}
}
};
/******************************************************************************/
FilterContainer.prototype.compile = function(s, writer) {
2014-08-21 16:56:36 +02:00
var parsed = this.parser.parse(s);
2015-03-16 19:58:35 +01:00
if ( parsed.cosmetic === false ) {
2014-06-24 00:42:43 +02:00
return false;
}
2015-03-16 19:58:35 +01:00
if ( parsed.invalid ) {
return true;
}
2014-06-24 00:42:43 +02:00
var hostnames = parsed.hostnames;
var i = hostnames.length;
if ( i === 0 ) {
this.compileGenericSelector(parsed, writer);
2015-02-24 05:25:14 +01:00
return true;
}
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/151
2015-02-24 05:25:14 +01:00
// Negated hostname means the filter applies to all non-negated hostnames
// of same filter OR globally if there is no non-negated hostnames.
var applyGlobally = true;
var hostname;
while ( i-- ) {
hostname = hostnames[i];
if ( hostname.startsWith('~') === false ) {
2015-02-24 05:25:14 +01:00
applyGlobally = false;
}
this.compileHostnameSelector(hostname, parsed, writer);
2014-08-13 02:25:11 +02:00
}
2015-02-24 05:25:14 +01:00
if ( applyGlobally ) {
this.compileGenericSelector(parsed, writer);
2015-02-24 05:25:14 +01:00
}
2015-02-24 00:31:29 +01:00
return true;
};
2014-06-24 00:42:43 +02:00
/******************************************************************************/
2014-06-24 00:42:43 +02:00
FilterContainer.prototype.compileGenericSelector = function(parsed, writer) {
if ( parsed.unhide === 0 ) {
this.compileGenericHideSelector(parsed, writer);
} else {
this.compileGenericUnhideSelector(parsed, writer);
2015-03-13 17:26:54 +01:00
}
};
/******************************************************************************/
2015-03-13 17:26:54 +01:00
FilterContainer.prototype.compileGenericHideSelector = function(parsed, writer) {
var selector = parsed.suffix,
2017-10-21 19:43:46 +02:00
type = selector.charCodeAt(0),
key;
2015-02-24 00:31:29 +01:00
2017-10-21 19:43:46 +02:00
if ( type === 0x23 /* '#' */ ) {
2016-10-30 20:19:58 +01:00
key = this.keyFromSelector(selector);
if ( key === undefined ) { return; }
2017-10-21 19:43:46 +02:00
// Simple selector-based CSS rule: no need to test for whether the
// selector is valid, the regex took care of this. Most generic
// selector falls into that category.
2016-10-30 20:19:58 +01:00
if ( key === selector ) {
2017-10-21 19:43:46 +02:00
writer.push([ 0 /* lg */, key.slice(1) ]);
return;
}
2017-10-21 19:43:46 +02:00
// Complex selector-based CSS rule.
2017-05-20 21:35:19 +02:00
if ( this.compileSelector(selector) !== undefined ) {
2017-10-21 19:43:46 +02:00
writer.push([ 1 /* lg+ */, key.slice(1), selector ]);
}
return;
}
if ( type === 0x2E /* '.' */ ) {
key = this.keyFromSelector(selector);
if ( key === undefined ) { return; }
// Simple selector-based CSS rule: no need to test for whether the
// selector is valid, the regex took care of this. Most generic
// selector falls into that category.
if ( key === selector ) {
writer.push([ 2 /* lg */, key.slice(1) ]);
return;
}
// Complex selector-based CSS rule.
if ( this.compileSelector(selector) !== undefined ) {
writer.push([ 3 /* lg+ */, key.slice(1), selector ]);
}
2015-02-24 00:31:29 +01:00
return;
}
2015-02-24 00:31:29 +01:00
var compiled = this.compileSelector(selector);
if ( compiled === undefined ) { return; }
// TODO: Detect and error on procedural cosmetic filters.
2015-11-19 15:36:15 +01:00
2017-10-21 19:43:46 +02:00
// https://github.com/gorhill/uBlock/issues/909
// Anything which contains a plain id/class selector can be classified
// as a low generic cosmetic filter.
var matches = this.rePlainSelectorEx.exec(selector);
if ( matches !== null ) {
key = matches[1] || matches[2];
type = key.charCodeAt(0);
writer.push([
type === 0x23 ? 1 : 3 /* lg+ */,
key.slice(1),
selector
]);
2015-02-24 00:31:29 +01:00
return;
}
2017-10-21 19:43:46 +02:00
// Pass this point, we are dealing with highly-generic cosmetic filters.
//
// For efficiency purpose, we will distinguish between simple and complex
// selectors.
2015-02-24 00:31:29 +01:00
2017-10-21 19:43:46 +02:00
if ( this.reSimpleHighGeneric1.test(selector) ) {
writer.push([ 4 /* simple */, selector ]);
2015-11-19 15:36:15 +01:00
return;
}
2015-11-19 15:36:15 +01:00
if ( selector.indexOf(' ') === -1 ) {
2017-10-21 19:43:46 +02:00
writer.push([ 4 /* simple */, selector ]);
} else {
2017-10-21 19:43:46 +02:00
writer.push([ 5 /* complex */, selector ]);
}
};
2014-08-06 17:34:59 +02:00
/******************************************************************************/
FilterContainer.prototype.compileGenericUnhideSelector = function(parsed, writer) {
var selector = parsed.suffix;
// script:contains(...)
// script:inject(...)
if ( this.reScriptSelector.test(selector) ) {
writer.push([ 6 /* js */, '!', '', selector ]);
return;
}
// Procedural cosmetic filters are acceptable as generic exception filters.
var compiled = this.compileSelector(selector);
if ( compiled === undefined ) { return; }
// https://github.com/chrisaljoudi/uBlock/issues/497
// All generic exception filters are put in the same bucket: they are
// expected to be very rare.
writer.push([ 7 /* g1 */, compiled ]);
};
2015-02-24 00:31:29 +01:00
/******************************************************************************/
FilterContainer.prototype.compileHostnameSelector = function(hostname, parsed, writer) {
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/145
var unhide = parsed.unhide;
if ( hostname.startsWith('~') ) {
hostname = hostname.slice(1);
unhide ^= 1;
2014-06-24 00:42:43 +02:00
}
// punycode if needed
if ( this.reHasUnicode.test(hostname) ) {
hostname = this.punycode.toASCII(hostname);
}
var selector = parsed.suffix,
domain = this.µburi.domainFromHostname(hostname),
hash;
// script:contains(...)
// script:inject(...)
if ( this.reScriptSelector.test(selector) ) {
hash = domain !== '' ? domain : this.noDomainHash;
if ( unhide ) {
hash = '!' + hash;
}
writer.push([ 6 /* js */, hash, hostname, selector ]);
return;
}
var compiled = this.compileSelector(selector);
if ( compiled === undefined ) { return; }
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/188
2015-02-24 00:31:29 +01:00
// If not a real domain as per PSL, assign a synthetic one
if ( hostname.endsWith('.*') === false ) {
hash = domain !== '' ? makeHash(domain) : this.noDomainHash;
} else {
hash = makeHash(hostname);
}
if ( unhide ) {
hash = '!' + hash;
}
// h, hash, example.com, .promoted-tweet
// h, hash, example.*, .promoted-tweet
2017-10-21 19:43:46 +02:00
// 8 = declarative, 9 = procedural
writer.push([
compiled.charCodeAt(0) !== 0x7B /* '{' */ ? 8 : 9,
hash,
hostname,
compiled
]);
};
/******************************************************************************/
FilterContainer.prototype.fromCompiledContent = function(
reader,
skipGenericCosmetic,
skipCosmetic
) {
2016-08-13 22:42:58 +02:00
if ( skipCosmetic ) {
this.skipCompiledContent(reader);
2016-08-13 22:42:58 +02:00
return;
}
if ( skipGenericCosmetic ) {
this.skipGenericCompiledContent(reader);
2016-08-13 22:42:58 +02:00
return;
}
2017-10-21 19:43:46 +02:00
var fingerprint, args, db, filter, bucket;
2014-08-06 17:34:59 +02:00
while ( reader.next() === true ) {
2015-02-24 00:31:29 +01:00
this.acceptedCount += 1;
fingerprint = reader.fingerprint();
if ( this.duplicateBuster.has(fingerprint) ) {
2016-03-17 18:56:21 +01:00
this.discardedCount += 1;
continue;
}
this.duplicateBuster.add(fingerprint);
2014-07-04 22:47:34 +02:00
args = reader.args();
switch ( args[0] ) {
2017-10-21 19:43:46 +02:00
// low generic, simple
case 0: // #AdBanner
case 2: // .largeAd
db = args[0] === 0 ? this.lowlyGeneric.id : this.lowlyGeneric.cl;
bucket = db.complex.get(args[1]);
2015-02-24 00:31:29 +01:00
if ( bucket === undefined ) {
2017-10-21 19:43:46 +02:00
db.simple.add(args[1]);
} else if ( Array.isArray(bucket) ) {
bucket.push(args[1]);
2015-02-24 00:31:29 +01:00
} else {
2017-10-21 19:43:46 +02:00
db.complex.set(args[1], [ bucket, args[1] ]);
2015-02-24 00:31:29 +01:00
}
break;
2014-09-25 21:44:58 +02:00
2017-10-21 19:43:46 +02:00
// low generic, complex
case 1: // #tads + div + .c
case 3: // .Mpopup + #Mad > #MadZone
db = args[0] === 0 ? this.lowlyGeneric.id : this.lowlyGeneric.cl;
bucket = db.complex.get(args[1]);
2015-02-24 00:31:29 +01:00
if ( bucket === undefined ) {
2017-10-21 19:43:46 +02:00
if ( db.simple.has(args[1]) ) {
db.complex.set(args[1], [ args[1], args[2] ]);
} else {
2017-10-21 19:43:46 +02:00
db.complex.set(args[1], args[2]);
db.simple.add(args[1]);
}
} else if ( Array.isArray(bucket) ) {
bucket.push(args[2]);
2015-02-24 00:31:29 +01:00
} else {
2017-10-21 19:43:46 +02:00
db.complex.set(args[1], [ bucket, args[2] ]);
2015-02-24 00:31:29 +01:00
}
break;
2015-02-24 00:31:29 +01:00
// High-high generic hide/simple selectors
// div[id^="allo"]
case 4:
2017-10-21 19:43:46 +02:00
this.highlyGenericSimpleHideSet.add(args[1]);
break;
// High-high generic hide/complex selectors
// div[id^="allo"] > span
case 5:
2017-10-21 19:43:46 +02:00
this.highlyGenericComplexHideSet.add(args[1]);
break;
2015-02-24 00:31:29 +01:00
// js, hash, example.com, script:contains(...)
// js, hash, example.com, script:inject(...)
case 6:
this.createScriptFilter(args[1], args[2], args[3]);
break;
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/497
2015-03-13 17:26:54 +01:00
// Generic exception filters: expected to be a rare occurrence.
// #@#.tweet
case 7:
2017-10-21 19:43:46 +02:00
this.genericDonthideSet.add(args[1]);
break;
2016-08-13 22:42:58 +02:00
// h, hash, example.com, .promoted-tweet
// h, hash, example.*, .promoted-tweet
case 8:
2017-10-21 19:43:46 +02:00
case 9:
db = args[0] === 8 ? this.specificFilters : this.proceduralFilters;
filter = new FilterHostname(args[3], args[2]);
2017-10-21 19:43:46 +02:00
bucket = db.get(args[1]);
if ( bucket === undefined ) {
2017-10-21 19:43:46 +02:00
db.set(args[1], filter);
} else if ( bucket instanceof FilterBucket ) {
bucket.add(filter);
} else {
2017-10-21 19:43:46 +02:00
db.set(args[1], new FilterBucket(bucket, filter));
}
break;
default:
this.discardedCount += 1;
break;
}
2014-06-24 00:42:43 +02:00
}
2015-02-24 00:31:29 +01:00
};
/******************************************************************************/
2014-09-25 21:44:58 +02:00
FilterContainer.prototype.skipGenericCompiledContent = function(reader) {
2017-10-21 19:43:46 +02:00
var fingerprint, args, db, filter, bucket;
2016-08-13 22:42:58 +02:00
while ( reader.next() === true ) {
2016-08-13 22:42:58 +02:00
this.acceptedCount += 1;
fingerprint = reader.fingerprint();
if ( this.duplicateBuster.has(fingerprint) ) {
2016-08-13 22:42:58 +02:00
this.discardedCount += 1;
continue;
}
args = reader.args();
switch ( args[0] ) {
// js, hash, example.com, script:contains(...)
// js, hash, example.com, script:inject(...)
case 6:
this.duplicateBuster.add(fingerprint);
this.createScriptFilter(args[1], args[2], args[3]);
break;
// https://github.com/chrisaljoudi/uBlock/issues/497
// Generic exception filters: expected to be a rare occurrence.
case 7:
this.duplicateBuster.add(fingerprint);
2017-10-21 19:43:46 +02:00
this.genericDonthideSet.add(args[1]);
break;
// h, hash, example.com, .promoted-tweet
// h, hash, example.*, .promoted-tweet
case 8:
2017-10-21 19:43:46 +02:00
case 9:
db = args[0] === 8 ? this.specificFilters : this.proceduralFilters;
this.duplicateBuster.add(fingerprint);
filter = new FilterHostname(args[3], args[2]);
2017-10-21 19:43:46 +02:00
bucket = db.get(args[1]);
2016-08-13 22:42:58 +02:00
if ( bucket === undefined ) {
2017-10-21 19:43:46 +02:00
db.set(args[1], filter);
2016-08-13 22:42:58 +02:00
} else if ( bucket instanceof FilterBucket ) {
bucket.add(filter);
} else {
2017-10-21 19:43:46 +02:00
db.set(args[1], new FilterBucket(bucket, filter));
2016-08-13 22:42:58 +02:00
}
break;
2014-09-25 21:44:58 +02:00
default:
this.discardedCount += 1;
break;
2015-02-24 00:31:29 +01:00
}
2016-08-13 22:42:58 +02:00
}
};
/******************************************************************************/
FilterContainer.prototype.skipCompiledContent = function(reader) {
var fingerprint, args;
2016-08-13 22:42:58 +02:00
while ( reader.next() === true ) {
2016-03-17 18:56:21 +01:00
this.acceptedCount += 1;
2016-08-13 22:42:58 +02:00
args = reader.args();
2016-08-13 22:42:58 +02:00
// js, hash, example.com, script:contains(...)
// js, hash, example.com, script:inject(...)
if ( args[0] === 6 ) {
fingerprint = reader.fingerprint();
if ( this.duplicateBuster.has(fingerprint) === false ) {
this.duplicateBuster.add(fingerprint);
this.createScriptFilter(args[1], args[2], args[3]);
}
2016-08-13 22:42:58 +02:00
continue;
}
2016-03-17 18:56:21 +01:00
this.discardedCount += 1;
2015-02-24 00:31:29 +01:00
}
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
FilterContainer.prototype.createScriptFilter = function(hash, hostname, selector) {
if ( selector.startsWith('script:contains') ) {
return this.createScriptTagFilter(hash, hostname, selector);
}
if ( selector.startsWith('script:inject') ) {
return this.createUserScriptRule(hash, hostname, selector);
}
};
/******************************************************************************/
// 0123456789012345678901
// script:contains(token)
// ^ ^
// 16 -1
FilterContainer.prototype.createScriptTagFilter = function(hash, hostname, selector) {
var token = selector.slice(16, -1);
token = token.startsWith('/') && token.endsWith('/')
? token.slice(1, -1)
: token.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
if ( this.scriptTagFilters.hasOwnProperty(hostname) ) {
this.scriptTagFilters[hostname] += '|' + token;
} else {
this.scriptTagFilters[hostname] = token;
}
this.scriptTagFilterCount += 1;
};
/******************************************************************************/
2016-09-24 20:36:08 +02:00
FilterContainer.prototype.retrieveScriptTagHostnames = function() {
return Object.keys(this.scriptTagFilters);
};
/******************************************************************************/
FilterContainer.prototype.retrieveScriptTagRegex = function(domain, hostname) {
if ( this.scriptTagFilterCount === 0 ) {
return;
}
var out = [], hn = hostname, pos;
// Hostname-based
for (;;) {
if ( this.scriptTagFilters.hasOwnProperty(hn) ) {
out.push(this.scriptTagFilters[hn]);
}
if ( hn === domain ) {
break;
}
pos = hn.indexOf('.');
if ( pos === -1 ) {
break;
}
hn = hn.slice(pos + 1);
}
// Entity-based
pos = domain.indexOf('.');
if ( pos !== -1 ) {
hn = domain.slice(0, pos) + '.*';
if ( this.scriptTagFilters.hasOwnProperty(hn) ) {
out.push(this.scriptTagFilters[hn]);
}
}
if ( out.length !== 0 ) {
return out.join('|');
}
};
/******************************************************************************/
// userScripts{hash} => FilterHostname | FilterBucket
FilterContainer.prototype.createUserScriptRule = function(hash, hostname, selector) {
var filter = new FilterHostname(selector, hostname);
var bucket = this.userScripts.get(hash);
if ( bucket === undefined ) {
this.userScripts.set(hash, filter);
} else if ( bucket instanceof FilterBucket ) {
bucket.add(filter);
} else {
this.userScripts.set(hash, new FilterBucket(bucket, filter));
}
this.userScriptCount += 1;
};
/******************************************************************************/
// https://github.com/gorhill/uBlock/issues/1954
// 01234567890123456789
2016-11-08 21:53:08 +01:00
// script:inject(token[, arg[, ...]])
// ^ ^
// 14 -1
FilterContainer.prototype.retrieveUserScripts = function(domain, hostname) {
if ( this.userScriptCount === 0 ) { return; }
if ( µb.hiddenSettings.ignoreScriptInjectFilters === true ) { return; }
var reng = µb.redirectEngine;
if ( !reng ) { return; }
var out = [],
scripts = new Map(),
pos = domain.indexOf('.'),
entity = pos !== -1 ? domain.slice(0, pos) + '.*' : '';
// Implicit
var hn = hostname;
for (;;) {
this._lookupUserScript(scripts, hn + '.js', reng, out);
if ( hn === domain ) { break; }
pos = hn.indexOf('.');
if ( pos === -1 ) { break; }
hn = hn.slice(pos + 1);
}
if ( entity !== '' ) {
this._lookupUserScript(scripts, entity + '.js', reng, out);
}
// Explicit (hash is domain).
2017-10-21 19:43:46 +02:00
var selectors = new Set(),
bucket;
if ( (bucket = this.userScripts.get(domain)) ) {
bucket.retrieve(hostname, selectors);
}
if ( entity !== '' && (bucket = this.userScripts.get(entity)) ) {
bucket.retrieve(entity, selectors);
}
2017-10-21 19:43:46 +02:00
for ( var selector of selectors ) {
this._lookupUserScript(scripts, selector.slice(14, -1).trim(), reng, out);
}
if ( out.length === 0 ) {
return;
}
2017-07-31 23:03:09 +02:00
// https://github.com/gorhill/uBlock/issues/2835
// Do not inject scriptlets if the site is under an `allow` rule.
if (
µb.userSettings.advancedUserEnabled === true &&
µb.sessionFirewall.evaluateCellZY(hostname, hostname, '*') === 2
) {
return;
}
// Exceptions should be rare, so we check for exception only if there are
// scriptlets returned.
2017-10-21 19:43:46 +02:00
var exceptions = new Set(),
j, token;
if ( (bucket = this.userScripts.get('!' + domain)) ) {
bucket.retrieve(hostname, exceptions);
}
if ( entity !== '' && (bucket = this.userScripts.get('!' + entity)) ) {
bucket.retrieve(hostname, exceptions);
}
2017-10-21 19:43:46 +02:00
for ( var exception of exceptions ) {
token = exception.slice(14, -1);
if ( (j = scripts.get(token)) !== undefined ) {
out[j] = '// User script "' + token + '" excepted.\n';
}
}
return out.join('\n');
};
2016-11-08 21:53:08 +01:00
FilterContainer.prototype._lookupUserScript = function(dict, raw, reng, out) {
if ( dict.has(raw) ) { return; }
var token, args,
pos = raw.indexOf(',');
if ( pos === -1 ) {
token = raw;
} else {
token = raw.slice(0, pos).trim();
args = raw.slice(pos + 1).trim();
}
var content = reng.resourceContentFromName(token, 'application/javascript');
2016-11-08 21:53:08 +01:00
if ( !content ) { return; }
if ( args ) {
2016-11-09 15:47:44 +01:00
content = this._fillupUserScript(content, args);
if ( !content ) { return; }
}
2016-11-08 21:53:08 +01:00
dict.set(raw, out.length);
out.push(content);
};
2016-11-09 15:47:44 +01:00
// Fill template placeholders. Return falsy if:
// - At least one argument contains anything else than /\w/ and `.`
FilterContainer.prototype._fillupUserScript = function(content, args) {
var i = 1,
pos, arg;
while ( args !== '' ) {
pos = args.indexOf(',');
if ( pos === -1 ) { pos = args.length; }
arg = args.slice(0, pos).trim().replace(this._reEscapeScriptArg, '\\$&');
2016-11-09 15:47:44 +01:00
content = content.replace('{{' + i + '}}', arg);
args = args.slice(pos + 1).trim();
i++;
}
return content;
};
FilterContainer.prototype._reEscapeScriptArg = /[\\'"]/g;
2016-11-08 22:31:04 +01:00
/******************************************************************************/
2014-09-08 23:46:58 +02:00
FilterContainer.prototype.toSelfie = function() {
var selfieFromMap = function(map) {
var selfie = [];
// Note: destructuring assignment not supported before Chromium 49.
for ( var entry of map ) {
selfie.push([ entry[0], entry[1].compile() ]);
2014-09-08 23:46:58 +02:00
}
return JSON.stringify(selfie);
2014-09-08 23:46:58 +02:00
};
return {
acceptedCount: this.acceptedCount,
2016-03-17 18:56:21 +01:00
discardedCount: this.discardedCount,
specificFilters: selfieFromMap(this.specificFilters),
2017-10-21 19:43:46 +02:00
proceduralFilters: selfieFromMap(this.proceduralFilters),
2016-08-13 22:42:58 +02:00
hasGenericHide: this.hasGenericHide,
2017-10-21 19:43:46 +02:00
lowlyGenericSID: µb.arrayFrom(this.lowlyGeneric.id.simple),
lowlyGenericCID: µb.arrayFrom(this.lowlyGeneric.id.complex),
lowlyGenericSCL: µb.arrayFrom(this.lowlyGeneric.cl.simple),
lowlyGenericCCL: µb.arrayFrom(this.lowlyGeneric.cl.complex),
highSimpleGenericHideArray: µb.arrayFrom(this.highlyGenericSimpleHideSet),
highComplexGenericHideArray: µb.arrayFrom(this.highlyGenericComplexHideSet),
genericDonthideArray: µb.arrayFrom(this.genericDonthideSet),
scriptTagFilters: this.scriptTagFilters,
scriptTagFilterCount: this.scriptTagFilterCount,
userScripts: selfieFromMap(this.userScripts),
userScriptCount: this.userScriptCount
2014-09-08 23:46:58 +02:00
};
};
/******************************************************************************/
FilterContainer.prototype.fromSelfie = function(selfie) {
var mapFromSelfie = function(selfie) {
var entries = JSON.parse(selfie),
out = new Map(),
entry;
for ( var i = 0, n = entries.length; i < n; i++ ) {
entry = entries[i];
out.set(entry[0], filterFromCompiledData(entry[1]));
}
return out;
2014-09-08 23:46:58 +02:00
};
this.acceptedCount = selfie.acceptedCount;
2016-03-17 18:56:21 +01:00
this.discardedCount = selfie.discardedCount;
this.specificFilters = mapFromSelfie(selfie.specificFilters);
2017-10-21 19:43:46 +02:00
this.proceduralFilters = mapFromSelfie(selfie.proceduralFilters);
2016-08-13 22:42:58 +02:00
this.hasGenericHide = selfie.hasGenericHide;
2017-10-21 19:43:46 +02:00
this.lowlyGeneric.id.simple = new Set(selfie.lowlyGenericSID);
this.lowlyGeneric.id.complex = new Map(selfie.lowlyGenericCID);
this.lowlyGeneric.cl.simple = new Set(selfie.lowlyGenericSCL);
this.lowlyGeneric.cl.complex = new Map(selfie.lowlyGenericCCL);
this.highlyGenericSimpleHideSet = new Set(selfie.highSimpleGenericHideArray);
this.highlyGenericComplexHideSet = new Set(selfie.highComplexGenericHideArray);
this.genericDonthideSet = new Set(selfie.genericDonthideArray);
this.scriptTagFilters = selfie.scriptTagFilters;
this.scriptTagFilterCount = selfie.scriptTagFilterCount;
this.userScripts = mapFromSelfie(selfie.userScripts);
this.userScriptCount = selfie.userScriptCount;
2015-01-23 21:02:47 +01:00
this.frozen = true;
2014-09-08 23:46:58 +02:00
};
/******************************************************************************/
2014-12-26 21:26:44 +01:00
FilterContainer.prototype.triggerSelectorCachePruner = function() {
// Of interest: http://fitzgeraldnick.com/weblog/40/
// http://googlecode.blogspot.ca/2009/07/gmail-for-mobile-html5-series-using.html
2017-10-21 19:43:46 +02:00
if ( this.selectorCacheTimer === null ) {
this.selectorCacheTimer = vAPI.setTimeout(
this.pruneSelectorCacheAsync.bind(this),
this.selectorCachePruneDelay
);
}
2014-12-26 21:26:44 +01:00
};
/******************************************************************************/
FilterContainer.prototype.addToSelectorCache = function(details) {
var hostname = details.hostname;
2017-10-21 19:43:46 +02:00
if ( typeof hostname !== 'string' || hostname === '' ) { return; }
var selectors = details.selectors;
2017-10-21 19:43:46 +02:00
if ( Array.isArray(selectors) === false ) { return; }
var entry = this.selectorCache.get(hostname);
2014-08-14 02:03:55 +02:00
if ( entry === undefined ) {
2017-10-21 19:43:46 +02:00
entry = SelectorCacheEntry.factory();
this.selectorCache.set(hostname, entry);
if ( this.selectorCache.size > this.selectorCacheCountMin ) {
this.triggerSelectorCachePruner();
}
2014-08-14 02:03:55 +02:00
}
entry.add(details);
2014-08-14 02:03:55 +02:00
};
/******************************************************************************/
2017-10-21 19:43:46 +02:00
FilterContainer.prototype.removeFromSelectorCache = function(
targetHostname,
type
) {
var targetHostnameLength = targetHostname.length,
hostname, item;
for ( var entry of this.selectorCache ) {
hostname = entry[0];
item = entry[1];
if ( targetHostname !== '*' ) {
2017-10-21 19:43:46 +02:00
if ( hostname.endsWith(targetHostname) === false ) { continue; }
if (
hostname.length !== targetHostnameLength &&
hostname.charAt(hostname.length - targetHostnameLength - 1) !== '.'
) {
continue;
}
}
2017-10-21 19:43:46 +02:00
item.remove(type);
2014-12-17 16:32:50 +01:00
}
};
/******************************************************************************/
2017-10-21 19:43:46 +02:00
FilterContainer.prototype.retrieveFromSelectorCache = function(
hostname,
type,
out
) {
var entry = this.selectorCache.get(hostname);
if ( entry !== undefined ) {
entry.retrieve(type, out);
2014-08-14 02:03:55 +02:00
}
};
/******************************************************************************/
2014-12-26 21:26:44 +01:00
FilterContainer.prototype.pruneSelectorCacheAsync = function() {
this.selectorCacheTimer = null;
2017-10-21 19:43:46 +02:00
if ( this.selectorCache.size <= this.selectorCacheCountMin ) { return; }
2014-08-14 02:03:55 +02:00
var cache = this.selectorCache;
2014-12-26 21:26:44 +01:00
// Sorted from most-recently-used to least-recently-used, because
// we loop beginning at the end below.
// We can't avoid sorting because we have to keep a minimum number of
// entries, and these entries should always be the most-recently-used.
2017-10-21 19:43:46 +02:00
var hostnames = µb.arrayFrom(cache.keys())
.sort(function(a, b) {
return cache.get(b).lastAccessTime -
cache.get(a).lastAccessTime;
})
.slice(this.selectorCacheCountMin);
var obsolete = Date.now() - this.selectorCacheAgeMax,
hostname, entry,
i = hostnames.length;
2014-08-14 02:03:55 +02:00
while ( i-- ) {
2014-12-26 21:26:44 +01:00
hostname = hostnames[i];
2017-10-21 19:43:46 +02:00
entry = cache.get(hostname);
if ( entry.lastAccessTime > obsolete ) { break; }
2014-12-26 21:26:44 +01:00
// console.debug('pruneSelectorCacheAsync: flushing "%s"', hostname);
entry.dispose();
2017-10-21 19:43:46 +02:00
cache.delete(hostname);
}
if ( cache.size > this.selectorCacheCountMin ) {
this.triggerSelectorCachePruner();
2014-08-14 02:03:55 +02:00
}
};
/******************************************************************************/
2014-08-02 17:40:27 +02:00
FilterContainer.prototype.retrieveGenericSelectors = function(request) {
2017-10-21 19:43:46 +02:00
if ( this.acceptedCount === 0 ) { return; }
if ( !request.ids && !request.classes ) { return; }
console.time('cosmeticFilteringEngine.retrieveGenericSelectors');
var simpleSelectors = this.setRegister0,
complexSelectors = this.setRegister1;
var entry, selectors,
strEnd, sliceBeg, sliceEnd,
selector, bucket, item;
for ( var type in this.lowlyGeneric ) {
entry = this.lowlyGeneric[type];
selectors = request[entry.canonical];
if ( typeof selectors !== 'string' ) { continue; }
strEnd = selectors.length;
sliceBeg = 0;
do {
sliceEnd = selectors.indexOf('\n', sliceBeg);
if ( sliceEnd === -1 ) { sliceEnd = strEnd; }
selector = selectors.slice(sliceBeg, sliceEnd);
sliceBeg = sliceEnd + 1;
if ( entry.simple.has(selector) === false ) { continue; }
if ( (bucket = entry.complex.get(selector)) !== undefined ) {
if ( Array.isArray(bucket) ) {
for ( item of bucket ) {
complexSelectors.add(item);
}
} else {
complexSelectors.add(bucket);
}
} else {
simpleSelectors.add(entry.prefix + selector);
}
} while ( sliceBeg < strEnd );
2014-06-24 00:42:43 +02:00
}
2017-10-21 19:43:46 +02:00
// Apply exceptions: it is the responsibility of the caller to provide
// the exceptions to be applied.
if ( Array.isArray(request.exceptions) ) {
for ( var exception of request.exceptions ) {
simpleSelectors.delete(exception);
complexSelectors.delete(exception);
}
}
2014-06-24 00:42:43 +02:00
2017-10-21 19:43:46 +02:00
var out = {
simple: µb.arrayFrom(simpleSelectors),
complex: µb.arrayFrom(complexSelectors)
2014-06-24 00:42:43 +02:00
};
2017-10-21 19:43:46 +02:00
// Cache looked-up low generic cosmetic filters.
if (
(simpleSelectors.size !== 0 || complexSelectors.size !== 0) &&
(typeof request.frameURL === 'string')
) {
var hostname = µb.URI.hostnameFromURI(request.frameURL);
if ( hostname !== '' ) {
this.addToSelectorCache({
selectors: out.simple.concat(out.complex),
type: 'cosmetic',
hostname: hostname,
cost: request.surveyCost || 0,
});
2014-06-24 00:42:43 +02:00
}
}
2017-10-21 19:43:46 +02:00
// Important: always clear used registers before leaving.
this.setRegister0.clear();
this.setRegister1.clear();
2014-06-24 00:42:43 +02:00
2017-10-21 19:43:46 +02:00
console.timeEnd('cosmeticFilteringEngine.retrieveGenericSelectors');
return out;
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
FilterContainer.prototype.injectHideRules = function(
tabId,
frameId,
selectors,
runAt
) {
var details = {
code: '',
cssOrigin: 'user',
frameId: frameId,
runAt: runAt
};
for ( var selector of selectors ) {
details.code = selector + '\n{display:none!important;}';
vAPI.insertCSS(tabId, details);
}
};
/******************************************************************************/
2017-10-21 19:43:46 +02:00
FilterContainer.prototype.retrieveDomainSelectors = function(
request,
sender,
options
) {
if ( !request.locationURL ) { return; }
2014-06-24 00:42:43 +02:00
2017-10-21 19:43:46 +02:00
console.time('cosmeticFilteringEngine.retrieveDomainSelectors');
2014-06-24 00:42:43 +02:00
// TODO: consider using MRUCache to quickly lookup all the previously
// looked-up data.
var hostname = this.µburi.hostnameFromURI(request.locationURL),
domain = this.µburi.domainFromHostname(hostname) || hostname,
pos = domain.indexOf('.'),
2017-10-22 14:59:29 +02:00
entity = pos === -1 ? '' : domain.slice(0, pos - domain.length) + '.*',
cacheEntry = this.selectorCache.get(hostname);
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/587
2015-01-23 21:02:47 +01:00
// r.ready will tell the content script the cosmetic filtering engine is
// up and ready.
// https://github.com/chrisaljoudi/uBlock/issues/497
// Generic exception filters are to be applied on all pages.
2014-06-24 00:42:43 +02:00
var r = {
2015-01-23 21:02:47 +01:00
ready: this.frozen,
domain: domain,
entity: entity,
2016-08-13 22:42:58 +02:00
noDOMSurveying: this.hasGenericHide === false,
2017-10-21 19:43:46 +02:00
declarativeFilters: [],
exceptionFilters: [],
highGenericSimple: '',
highGenericComplex: '',
2017-10-22 14:59:29 +02:00
netFilters: '',
2017-10-21 19:43:46 +02:00
proceduralFilters: [],
2017-10-22 14:59:29 +02:00
scripts: undefined,
rulesInjected: false
2014-06-24 00:42:43 +02:00
};
2014-06-24 01:23:36 +02:00
2017-10-21 19:43:46 +02:00
if ( options.noCosmeticFiltering !== true ) {
var domainHash = makeHash(domain),
entityHash = entity !== '' ? makeHash(entity) : undefined,
exception, bucket;
2017-10-21 19:43:46 +02:00
// Exception cosmetic filters: prime with generic exception filters.
var exceptionSet = this.setRegister0;
// Genetic exceptions (should be extremely rare).
for ( exception of this.genericDonthideSet ) {
exceptionSet.add(exception);
}
// Specific exception cosmetic filters.
2017-10-21 19:43:46 +02:00
if ( (bucket = this.specificFilters.get('!' + domainHash)) ) {
bucket.retrieve(hostname, exceptionSet);
}
// Specific entity-based exception cosmetic filters.
if ( entityHash !== undefined ) {
if ( (bucket = this.specificFilters.get('!' + entityHash)) ) {
bucket.retrieve(entity, exceptionSet);
}
}
// Special bucket for those filters without a valid
// domain name as per PSL.
if ( (bucket = this.specificFilters.get('!' + this.noDomainHash)) ) {
bucket.retrieve(hostname, exceptionSet);
}
// Specific exception procedural cosmetic filters.
if ( (bucket = this.proceduralFilters.get('!' + domainHash)) ) {
bucket.retrieve(hostname, exceptionSet);
}
// Specific entity-based exception procedural cosmetic filters.
if ( entityHash !== undefined ) {
if ( (bucket = this.proceduralFilters.get('!' + entityHash)) ) {
bucket.retrieve(entity, exceptionSet);
}
}
// Special bucket for those filters without a valid
// domain name as per PSL.
if ( (bucket = this.proceduralFilters.get('!' + this.noDomainHash)) ) {
bucket.retrieve(hostname, exceptionSet);
}
2017-10-21 19:43:46 +02:00
if ( exceptionSet.size !== 0 ) {
r.exceptionFilters = µb.arrayFrom(exceptionSet);
}
2017-10-21 19:43:46 +02:00
// Declarative cosmetic filters.
// TODO: Should I go one step further and store specific simple and
// specific complex in different collections? This could simplify
// slightly content script code.
var specificSet = this.setRegister1;
// Specific cosmetic filters.
if ( (bucket = this.specificFilters.get(domainHash)) ) {
bucket.retrieve(hostname, specificSet);
}
// Specific entity-based cosmetic filters.
2017-10-21 19:43:46 +02:00
if ( entityHash !== undefined ) {
if ( (bucket = this.specificFilters.get(entityHash)) ) {
bucket.retrieve(entity, specificSet);
}
}
// https://github.com/chrisaljoudi/uBlock/issues/188
// Special bucket for those filters without a valid domain name as per PSL
if ( (bucket = this.specificFilters.get(this.noDomainHash)) ) {
2017-10-21 19:43:46 +02:00
bucket.retrieve(hostname, specificSet);
}
2017-10-21 19:43:46 +02:00
// Cached cosmetic filters: these are always declarative.
if ( cacheEntry !== undefined ) {
cacheEntry.retrieve('cosmetic', specificSet);
if ( r.noDOMSurveying === false ) {
r.noDOMSurveying = cacheEntry.cosmeticSurveyingMissCount >
cosmeticSurveyingMissCountMax;
}
}
2015-02-24 00:31:29 +01:00
2017-10-21 19:43:46 +02:00
// Procedural cosmetic filters.
var proceduralSet = this.setRegister2;
// Specific cosmetic filters.
if ( (bucket = this.proceduralFilters.get(domainHash)) ) {
bucket.retrieve(hostname, proceduralSet);
}
// Specific entity-based cosmetic filters.
if ( entityHash !== undefined ) {
if ( (bucket = this.proceduralFilters.get(entityHash)) ) {
bucket.retrieve(entity, proceduralSet);
2016-08-13 22:42:58 +02:00
}
}
2017-10-21 19:43:46 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/188
// Special bucket for those filters without a valid domain name as per PSL
if ( (bucket = this.proceduralFilters.get(this.noDomainHash)) ) {
bucket.retrieve(hostname, proceduralSet);
}
// Apply exceptions.
for ( exception of exceptionSet ) {
specificSet.delete(exception);
proceduralSet.delete(exception);
}
if ( specificSet.size !== 0 ) {
r.declarativeFilters = µb.arrayFrom(specificSet);
}
if ( proceduralSet.size !== 0 ) {
r.proceduralFilters = µb.arrayFrom(proceduralSet);
}
// Highly generic cosmetic filters: sent once along with specific ones.
if ( options.noGenericCosmeticFiltering !== true ) {
var exceptionHash = r.exceptionFilters.join(),
entry = this.mruHighlyGenericHideStrings.lookup(exceptionHash);
if ( entry === undefined ) {
var simpleSet = new Set(this.highlyGenericSimpleHideSet),
complexSet = new Set(this.highlyGenericComplexHideSet);
for ( exception of exceptionSet ) {
simpleSet.delete(exception);
complexSet.delete(exception);
}
entry = {
simple: µb.arrayFrom(simpleSet).join(',\n'),
complex: µb.arrayFrom(complexSet).join(',\n')
};
this.mruHighlyGenericHideStrings.add(exceptionHash, entry);
}
r.highGenericHideSimple = entry.simple;
r.highGenericHideComplex = entry.complex;
}
// Important: always clear used registers before leaving.
this.setRegister0.clear();
this.setRegister1.clear();
this.setRegister2.clear();
2014-08-27 19:50:18 +02:00
}
2014-06-24 00:42:43 +02:00
// Scriptlet injection.
r.scripts = this.retrieveUserScripts(domain, hostname);
2017-10-22 14:59:29 +02:00
if ( cacheEntry ) {
var netFilters = [];
cacheEntry.retrieve('net', netFilters);
r.netFilters = netFilters.join(',\n');
}
2014-08-14 02:03:55 +02:00
if (
this.supportsUserStylesheets &&
sender instanceof Object &&
sender.tab instanceof Object &&
typeof sender.frameId === 'number'
) {
this.injectHideRules(
sender.tab.id,
sender.frameId,
[ r.declarativeFilters.join(',\n'), r.netFilters ],
'document_start'
);
this.injectHideRules(
sender.tab.id,
sender.frameId,
[ r.highGenericHideSimple, r.highGenericHideComplex ],
'document_end'
);
r.rulesInjected = true;
}
2017-10-21 19:43:46 +02:00
console.timeEnd('cosmeticFilteringEngine.retrieveDomainSelectors');
2014-06-24 00:42:43 +02:00
return r;
};
/******************************************************************************/
FilterContainer.prototype.getFilterCount = function() {
2016-03-17 18:56:21 +01:00
return this.acceptedCount - this.discardedCount;
2014-06-24 00:42:43 +02:00
};
/******************************************************************************/
return new FilterContainer();
/******************************************************************************/
})();
/******************************************************************************/