2015-06-11 18:12:23 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-07-21 18:22:53 +02:00
|
|
|
Copyright (C) 2015-present Raymond Hill
|
2015-06-11 18:12:23 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global onmessage, postMessage */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-05-25 23:46:59 +02:00
|
|
|
var listEntries = Object.create(null),
|
2017-12-28 19:49:02 +01:00
|
|
|
reBlockStart = /^#block-start-(\d+)\n/gm;
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var extractBlocks = function(content, begId, endId) {
|
|
|
|
reBlockStart.lastIndex = 0;
|
|
|
|
var out = [];
|
|
|
|
var match = reBlockStart.exec(content);
|
|
|
|
while ( match !== null ) {
|
|
|
|
var beg = match.index + match[0].length;
|
|
|
|
var blockId = parseInt(match[1], 10);
|
|
|
|
if ( blockId >= begId && blockId < endId ) {
|
|
|
|
var end = content.indexOf('#block-end-' + match[1], beg);
|
|
|
|
out.push(content.slice(beg, end));
|
|
|
|
reBlockStart.lastIndex = end;
|
|
|
|
}
|
|
|
|
match = reBlockStart.exec(content);
|
|
|
|
}
|
|
|
|
return out.join('\n');
|
|
|
|
};
|
2015-06-11 18:12:23 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-06-13 17:21:55 +02:00
|
|
|
var fromNetFilter = function(details) {
|
2017-05-25 23:46:59 +02:00
|
|
|
var lists = [],
|
2018-07-21 18:22:53 +02:00
|
|
|
compiledFilter = details.compiledFilter;
|
2017-12-28 19:49:02 +01:00
|
|
|
|
2018-07-21 18:22:53 +02:00
|
|
|
for ( let assetKey in listEntries ) {
|
|
|
|
let entry = listEntries[assetKey];
|
2017-05-25 23:46:59 +02:00
|
|
|
if ( entry === undefined ) { continue; }
|
2018-07-21 18:22:53 +02:00
|
|
|
let content = extractBlocks(entry.content, 0, 1000);
|
|
|
|
let pos = 0;
|
2016-07-05 01:42:34 +02:00
|
|
|
for (;;) {
|
|
|
|
pos = content.indexOf(compiledFilter, pos);
|
2017-05-12 16:35:11 +02:00
|
|
|
if ( pos === -1 ) { break; }
|
2016-07-05 01:42:34 +02:00
|
|
|
// We need an exact match.
|
|
|
|
// https://github.com/gorhill/uBlock/issues/1392
|
|
|
|
// https://github.com/gorhill/uBlock/issues/835
|
2018-07-21 18:22:53 +02:00
|
|
|
let notFound = pos !== 0 && content.charCodeAt(pos - 1) !== 0x0A;
|
2017-05-25 23:46:59 +02:00
|
|
|
pos += compiledFilter.length;
|
|
|
|
if (
|
|
|
|
notFound ||
|
|
|
|
pos !== content.length && content.charCodeAt(pos) !== 0x0A
|
|
|
|
) {
|
|
|
|
continue;
|
2016-07-05 01:42:34 +02:00
|
|
|
}
|
2017-05-25 23:46:59 +02:00
|
|
|
lists.push({
|
2018-07-21 18:22:53 +02:00
|
|
|
assetKey: assetKey,
|
2017-05-25 23:46:59 +02:00
|
|
|
title: entry.title,
|
|
|
|
supportURL: entry.supportURL
|
|
|
|
});
|
|
|
|
break;
|
2015-10-16 17:42:45 +02:00
|
|
|
}
|
2015-06-11 18:12:23 +02:00
|
|
|
}
|
|
|
|
|
2018-07-21 18:22:53 +02:00
|
|
|
let response = {};
|
2015-06-13 17:21:55 +02:00
|
|
|
response[details.rawFilter] = lists;
|
|
|
|
|
2015-06-11 18:12:23 +02:00
|
|
|
postMessage({
|
|
|
|
id: details.id,
|
2015-06-13 17:21:55 +02:00
|
|
|
response: response
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
// Looking up filter lists from a cosmetic filter is a bit more complicated
|
|
|
|
// than with network filters:
|
|
|
|
//
|
|
|
|
// The filter is its raw representation, not its compiled version. This is
|
|
|
|
// because the cosmetic filtering engine can't translate a live cosmetic
|
|
|
|
// filter into its compiled version. Reason is I do not want to burden
|
|
|
|
// cosmetic filtering with the resource overhead of being able to re-compile
|
|
|
|
// live cosmetic filters. I want the cosmetic filtering code to be left
|
|
|
|
// completely unaffected by reverse lookup requirements.
|
|
|
|
//
|
|
|
|
// Mainly, given a CSS selector and a hostname as context, we will derive
|
|
|
|
// various versions of compiled filters and see if there are matches. This way
|
|
|
|
// the whole CPU cost is incurred by the reverse lookup code -- in a worker
|
2015-06-13 19:32:14 +02:00
|
|
|
// thread, and the cosmetic filtering engine incurs no cost at all.
|
2015-06-13 17:21:55 +02:00
|
|
|
//
|
|
|
|
// For this though, the reverse lookup code here needs some knowledge of
|
|
|
|
// the inners of the cosmetic filtering engine.
|
|
|
|
// FilterContainer.fromCompiledContent() is our reference code to create
|
|
|
|
// the various compiled versions.
|
|
|
|
|
|
|
|
var fromCosmeticFilter = function(details) {
|
2017-12-28 19:49:02 +01:00
|
|
|
var match = /^#@?#\^?/.exec(details.rawFilter),
|
2017-05-25 23:46:59 +02:00
|
|
|
prefix = match[0],
|
2018-03-01 19:11:17 +01:00
|
|
|
exception = prefix.charAt(1) === '@',
|
2017-10-23 15:01:00 +02:00
|
|
|
selector = details.rawFilter.slice(prefix.length);
|
2017-10-21 19:43:46 +02:00
|
|
|
|
2017-10-23 15:01:00 +02:00
|
|
|
// The longer the needle, the lower the number of false positives.
|
2018-03-01 19:11:17 +01:00
|
|
|
var needle = selector.match(/\w+/g).reduce(function(a, b) {
|
|
|
|
return a.length > b.length ? a : b;
|
2017-10-23 15:01:00 +02:00
|
|
|
});
|
2017-05-25 23:46:59 +02:00
|
|
|
|
|
|
|
var reHostname = new RegExp(
|
|
|
|
'^' +
|
|
|
|
details.hostname.split('.').reduce(
|
|
|
|
function(acc, item) {
|
|
|
|
return acc === ''
|
|
|
|
? item
|
|
|
|
: '(' + acc + '\\.)?' + item;
|
|
|
|
},
|
|
|
|
''
|
|
|
|
) +
|
|
|
|
'$'
|
|
|
|
);
|
|
|
|
|
|
|
|
var reEntity,
|
|
|
|
domain = details.domain,
|
|
|
|
pos = domain.indexOf('.');
|
2015-06-13 17:21:55 +02:00
|
|
|
if ( pos !== -1 ) {
|
2017-05-25 23:46:59 +02:00
|
|
|
reEntity = new RegExp(
|
|
|
|
'^' +
|
|
|
|
domain.slice(0, pos).split('.').reduce(
|
|
|
|
function(acc, item) {
|
|
|
|
return acc === ''
|
|
|
|
? item
|
|
|
|
: '(' + acc + '\\.)?' + item;
|
|
|
|
},
|
|
|
|
''
|
|
|
|
) +
|
|
|
|
'\\.\\*$'
|
2015-06-13 17:21:55 +02:00
|
|
|
);
|
|
|
|
}
|
2017-05-25 23:46:59 +02:00
|
|
|
|
|
|
|
var response = Object.create(null),
|
2017-12-28 19:49:02 +01:00
|
|
|
assetKey, entry, content,
|
|
|
|
found, beg, end,
|
|
|
|
fargs, isProcedural;
|
2015-06-13 17:21:55 +02:00
|
|
|
|
2017-05-25 23:46:59 +02:00
|
|
|
for ( assetKey in listEntries ) {
|
|
|
|
entry = listEntries[assetKey];
|
|
|
|
if ( entry === undefined ) { continue; }
|
2017-12-28 19:49:02 +01:00
|
|
|
content = extractBlocks(entry.content, 1000, 2000);
|
2018-03-01 19:11:17 +01:00
|
|
|
pos = 0;
|
2017-05-25 23:46:59 +02:00
|
|
|
found = undefined;
|
2018-03-01 19:11:17 +01:00
|
|
|
while ( (pos = content.indexOf(needle, pos)) !== -1 ) {
|
|
|
|
beg = content.lastIndexOf('\n', pos);
|
2017-10-23 15:01:00 +02:00
|
|
|
if ( beg === -1 ) { beg = 0; }
|
2018-03-01 19:11:17 +01:00
|
|
|
end = content.indexOf('\n', pos);
|
2017-10-23 15:01:00 +02:00
|
|
|
if ( end === -1 ) { end = content.length; }
|
2018-03-01 19:11:17 +01:00
|
|
|
pos = end;
|
2017-10-23 15:01:00 +02:00
|
|
|
fargs = JSON.parse(content.slice(beg, end));
|
2018-07-22 16:47:02 +02:00
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/2763
|
|
|
|
if ( fargs[0] >= 0 && fargs[0] <= 5 && details.ignoreGeneric ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-05-25 23:46:59 +02:00
|
|
|
switch ( fargs[0] ) {
|
2017-10-21 19:43:46 +02:00
|
|
|
case 0: // id-based
|
2017-10-23 15:01:00 +02:00
|
|
|
if (
|
|
|
|
fargs[1] === selector.slice(1) &&
|
|
|
|
selector.charAt(0) === '#'
|
|
|
|
) {
|
|
|
|
found = prefix + selector;
|
|
|
|
}
|
|
|
|
break;
|
2017-10-21 19:43:46 +02:00
|
|
|
case 2: // class-based
|
2017-10-23 15:01:00 +02:00
|
|
|
if (
|
|
|
|
fargs[1] === selector.slice(1) &&
|
|
|
|
selector.charAt(0) === '.'
|
|
|
|
) {
|
|
|
|
found = prefix + selector;
|
|
|
|
}
|
|
|
|
break;
|
2018-03-07 12:28:26 +01:00
|
|
|
case 1: // id-based
|
|
|
|
case 3: // class-based
|
|
|
|
if ( fargs[2] === selector ) {
|
2017-10-23 15:01:00 +02:00
|
|
|
found = prefix + selector;
|
|
|
|
}
|
2017-10-21 19:43:46 +02:00
|
|
|
break;
|
2017-05-25 23:46:59 +02:00
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
case 7:
|
2017-10-23 15:01:00 +02:00
|
|
|
if ( fargs[1] === selector ) {
|
2017-10-22 18:48:13 +02:00
|
|
|
found = prefix + selector;
|
2017-05-25 23:46:59 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
2018-05-31 16:41:03 +02:00
|
|
|
if ( exception !== ((fargs[1] & 0b01) !== 0) ) { break; }
|
|
|
|
isProcedural = (fargs[1] & 0b10) !== 0;
|
2017-10-23 15:01:00 +02:00
|
|
|
if (
|
2017-12-28 19:49:02 +01:00
|
|
|
isProcedural === false && fargs[3] !== selector ||
|
|
|
|
isProcedural && JSON.parse(fargs[3]).raw !== selector
|
2017-10-23 15:01:00 +02:00
|
|
|
) {
|
|
|
|
break;
|
|
|
|
}
|
2017-05-25 23:46:59 +02:00
|
|
|
if (
|
|
|
|
fargs[2] === '' ||
|
|
|
|
reHostname.test(fargs[2]) === true ||
|
|
|
|
reEntity !== undefined && reEntity.test(fargs[2]) === true
|
|
|
|
) {
|
2017-10-22 18:48:13 +02:00
|
|
|
found = fargs[2] + prefix + selector;
|
2017-05-25 23:46:59 +02:00
|
|
|
}
|
|
|
|
break;
|
2018-05-31 16:41:03 +02:00
|
|
|
case 32:
|
|
|
|
case 64:
|
|
|
|
case 65:
|
|
|
|
if ( exception !== (fargs[1].charAt(0) === '!') ) { break; }
|
|
|
|
if ( fargs[3] !== selector ) { break; }
|
|
|
|
if (
|
|
|
|
fargs[2] === '' ||
|
|
|
|
reHostname.test(fargs[2]) === true ||
|
|
|
|
reEntity !== undefined && reEntity.test(fargs[2]) === true
|
|
|
|
) {
|
|
|
|
found = fargs[2] + prefix + selector;
|
|
|
|
}
|
|
|
|
break;
|
2015-06-13 17:21:55 +02:00
|
|
|
}
|
2017-05-25 23:46:59 +02:00
|
|
|
if ( found !== undefined ) {
|
|
|
|
if ( response[found] === undefined ) {
|
|
|
|
response[found] = [];
|
|
|
|
}
|
|
|
|
response[found].push({
|
2018-07-22 14:14:02 +02:00
|
|
|
assetKey: assetKey,
|
2017-05-25 23:46:59 +02:00
|
|
|
title: entry.title,
|
|
|
|
supportURL: entry.supportURL
|
|
|
|
});
|
|
|
|
break;
|
2015-06-13 17:21:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
postMessage({
|
|
|
|
id: details.id,
|
|
|
|
response: response
|
2015-06-11 18:12:23 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
onmessage = function(e) { // jshint ignore:line
|
2015-06-11 18:12:23 +02:00
|
|
|
var msg = e.data;
|
|
|
|
|
|
|
|
switch ( msg.what ) {
|
|
|
|
case 'resetLists':
|
|
|
|
listEntries = Object.create(null);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'setList':
|
2017-01-18 19:17:47 +01:00
|
|
|
listEntries[msg.details.assetKey] = msg.details;
|
2015-06-11 18:12:23 +02:00
|
|
|
break;
|
|
|
|
|
2015-06-13 17:21:55 +02:00
|
|
|
case 'fromNetFilter':
|
|
|
|
fromNetFilter(msg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'fromCosmeticFilter':
|
|
|
|
fromCosmeticFilter(msg);
|
2015-06-11 18:12:23 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|