2022-09-16 21:56:35 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
|
|
Copyright (C) 2022-present Raymond Hill
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* jshint esversion:11 */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
import { browser, dnr } from './ext.js';
|
|
|
|
import { fetchJSON } from './fetch.js';
|
2022-09-27 13:46:24 +02:00
|
|
|
import { getAllTrustedSiteDirectives } from './trusted-sites.js';
|
2022-09-20 14:24:01 +02:00
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
import * as ut from './utils.js';
|
2022-09-16 21:56:35 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-18 15:31:44 +02:00
|
|
|
let scriptingDetailsPromise;
|
2022-09-16 21:56:35 +02:00
|
|
|
|
2022-09-18 15:31:44 +02:00
|
|
|
function getScriptingDetails() {
|
|
|
|
if ( scriptingDetailsPromise !== undefined ) {
|
|
|
|
return scriptingDetailsPromise;
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
2022-09-18 15:31:44 +02:00
|
|
|
scriptingDetailsPromise = fetchJSON('/rulesets/scripting-details').then(entries => {
|
|
|
|
const out = new Map(entries);
|
|
|
|
for ( const details of out.values() ) {
|
|
|
|
details.matches = new Map(details.matches);
|
|
|
|
details.excludeMatches = new Map(details.excludeMatches);
|
|
|
|
}
|
|
|
|
return out;
|
2022-09-16 21:56:35 +02:00
|
|
|
});
|
2022-09-18 15:31:44 +02:00
|
|
|
return scriptingDetailsPromise;
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-17 17:22:25 +02:00
|
|
|
const arrayEq = (a, b) => {
|
|
|
|
if ( a === undefined ) { return b === undefined; }
|
|
|
|
if ( b === undefined ) { return false; }
|
|
|
|
if ( a.length !== b.length ) { return false; }
|
|
|
|
for ( const i of a ) {
|
|
|
|
if ( b.includes(i) === false ) { return false; }
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2022-09-16 21:56:35 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
const toRegisterable = (fname, entry) => {
|
|
|
|
const directive = {
|
|
|
|
id: fname,
|
|
|
|
};
|
2022-09-18 15:31:44 +02:00
|
|
|
if ( entry.matches ) {
|
2022-09-28 01:51:38 +02:00
|
|
|
directive.matches = ut.matchesFromHostnames(entry.matches);
|
2022-09-16 21:56:35 +02:00
|
|
|
} else {
|
2022-09-28 01:51:38 +02:00
|
|
|
directive.matches = [ '<all_urls>' ];
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
2022-09-18 15:31:44 +02:00
|
|
|
if ( entry.excludeMatches ) {
|
2022-09-28 01:51:38 +02:00
|
|
|
directive.excludeMatches = ut.matchesFromHostnames(entry.excludeMatches);
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
2022-09-20 14:24:01 +02:00
|
|
|
directive.js = [ `/rulesets/js/${fname.slice(0,2)}/${fname.slice(2)}.js` ];
|
2022-09-28 01:51:38 +02:00
|
|
|
if ( (ut.fidFromFileName(fname) & RUN_AT_BIT) !== 0 ) {
|
2022-09-24 17:33:04 +02:00
|
|
|
directive.runAt = 'document_end';
|
|
|
|
} else {
|
|
|
|
directive.runAt = 'document_start';
|
|
|
|
}
|
2022-09-28 01:51:38 +02:00
|
|
|
if ( (ut.fidFromFileName(fname) & MAIN_WORLD_BIT) !== 0 ) {
|
2022-09-16 21:56:35 +02:00
|
|
|
directive.world = 'MAIN';
|
|
|
|
}
|
|
|
|
return directive;
|
|
|
|
};
|
|
|
|
|
2022-09-24 17:33:04 +02:00
|
|
|
const RUN_AT_BIT = 0b10;
|
|
|
|
const MAIN_WORLD_BIT = 0b01;
|
2022-09-20 02:19:55 +02:00
|
|
|
|
2022-09-19 14:55:45 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
const shouldUpdate = (registered, candidate) => {
|
2022-09-18 15:31:44 +02:00
|
|
|
const matches = candidate.matches &&
|
2022-09-28 01:51:38 +02:00
|
|
|
ut.matchesFromHostnames(candidate.matches);
|
2022-09-17 17:22:25 +02:00
|
|
|
if ( arrayEq(registered.matches, matches) === false ) {
|
2022-09-19 14:55:45 +02:00
|
|
|
return true;
|
2022-09-17 17:22:25 +02:00
|
|
|
}
|
2022-09-18 15:31:44 +02:00
|
|
|
const excludeMatches = candidate.excludeMatches &&
|
2022-09-28 01:51:38 +02:00
|
|
|
ut.matchesFromHostnames(candidate.excludeMatches);
|
2022-09-17 17:22:25 +02:00
|
|
|
if ( arrayEq(registered.excludeMatches, excludeMatches) === false ) {
|
2022-09-19 14:55:45 +02:00
|
|
|
return true;
|
2022-09-17 17:22:25 +02:00
|
|
|
}
|
2022-09-19 14:55:45 +02:00
|
|
|
return false;
|
2022-09-17 17:22:25 +02:00
|
|
|
};
|
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
const isTrustedHostname = (trustedSites, hn) => {
|
|
|
|
if ( trustedSites.size === 0 ) { return false; }
|
|
|
|
while ( hn ) {
|
|
|
|
if ( trustedSites.has(hn) ) { return true; }
|
|
|
|
hn = ut.toBroaderHostname(hn);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2022-09-16 21:56:35 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-17 14:26:41 +02:00
|
|
|
async function getInjectableCount(origin) {
|
2022-09-28 01:51:38 +02:00
|
|
|
const url = ut.parsedURLromOrigin(origin);
|
2022-09-17 14:26:41 +02:00
|
|
|
if ( url === undefined ) { return 0; }
|
2022-09-16 21:56:35 +02:00
|
|
|
|
|
|
|
const [
|
|
|
|
rulesetIds,
|
2022-09-18 15:31:44 +02:00
|
|
|
scriptingDetails,
|
2022-09-16 21:56:35 +02:00
|
|
|
] = await Promise.all([
|
|
|
|
dnr.getEnabledRulesets(),
|
2022-09-18 15:31:44 +02:00
|
|
|
getScriptingDetails(),
|
2022-09-16 21:56:35 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
let total = 0;
|
|
|
|
|
|
|
|
for ( const rulesetId of rulesetIds ) {
|
2022-09-18 15:31:44 +02:00
|
|
|
if ( scriptingDetails.has(rulesetId) === false ) { continue; }
|
|
|
|
const details = scriptingDetails.get(rulesetId);
|
|
|
|
let hn = url.hostname;
|
|
|
|
while ( hn !== '' ) {
|
2022-09-20 14:24:01 +02:00
|
|
|
const fids = details.matches?.get(hn);
|
|
|
|
if ( typeof fids === 'number' ) {
|
|
|
|
total += 1;
|
|
|
|
} else if ( Array.isArray(fids) ) {
|
|
|
|
total += fids.length;
|
|
|
|
}
|
2022-09-28 01:51:38 +02:00
|
|
|
hn = ut.toBroaderHostname(hn);
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
function registerSomeInjectables(args) {
|
|
|
|
const {
|
|
|
|
hostnamesSet,
|
2022-09-27 13:46:24 +02:00
|
|
|
trustedSites,
|
2022-09-16 21:56:35 +02:00
|
|
|
rulesetIds,
|
2022-09-18 15:31:44 +02:00
|
|
|
scriptingDetails,
|
2022-09-28 01:51:38 +02:00
|
|
|
} = args;
|
2022-09-16 21:56:35 +02:00
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
const toRegisterMap = new Map();
|
2022-09-27 13:46:24 +02:00
|
|
|
|
2022-09-20 14:24:01 +02:00
|
|
|
const checkMatches = (details, hn) => {
|
|
|
|
let fids = details.matches?.get(hn);
|
2022-09-20 02:19:55 +02:00
|
|
|
if ( fids === undefined ) { return; }
|
2022-09-20 14:24:01 +02:00
|
|
|
if ( typeof fids === 'number' ) { fids = [ fids ]; }
|
2022-09-20 02:19:55 +02:00
|
|
|
for ( const fid of fids ) {
|
2022-09-28 01:51:38 +02:00
|
|
|
const fname = ut.fnameFromFileId(fid);
|
|
|
|
const existing = toRegisterMap.get(fname);
|
2022-09-18 15:31:44 +02:00
|
|
|
if ( existing ) {
|
2022-09-20 14:24:01 +02:00
|
|
|
existing.matches.push(hn);
|
|
|
|
} else {
|
2022-09-28 01:51:38 +02:00
|
|
|
toRegisterMap.set(fname, { matches: [ hn ] });
|
2022-09-20 14:24:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for ( const rulesetId of rulesetIds ) {
|
|
|
|
const details = scriptingDetails.get(rulesetId);
|
|
|
|
if ( details === undefined ) { continue; }
|
2022-09-28 01:51:38 +02:00
|
|
|
for ( let hn of hostnamesSet ) {
|
|
|
|
if ( isTrustedHostname(trustedSites, hn) ) { continue; }
|
2022-09-27 13:46:24 +02:00
|
|
|
while ( hn ) {
|
2022-09-20 14:24:01 +02:00
|
|
|
checkMatches(details, hn);
|
2022-09-28 01:51:38 +02:00
|
|
|
hn = ut.toBroaderHostname(hn);
|
2022-09-20 14:24:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
return toRegisterMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
function registerAllInjectables(args) {
|
|
|
|
const {
|
|
|
|
trustedSites,
|
|
|
|
rulesetIds,
|
|
|
|
scriptingDetails,
|
|
|
|
} = args;
|
|
|
|
|
|
|
|
const toRegisterMap = new Map();
|
2022-09-17 14:26:41 +02:00
|
|
|
|
2022-09-16 21:56:35 +02:00
|
|
|
for ( const rulesetId of rulesetIds ) {
|
2022-09-18 15:31:44 +02:00
|
|
|
const details = scriptingDetails.get(rulesetId);
|
|
|
|
if ( details === undefined ) { continue; }
|
2022-09-28 01:51:38 +02:00
|
|
|
for ( let [ hn, fids ] of details.matches ) {
|
|
|
|
if ( isTrustedHostname(trustedSites, hn) ) { continue; }
|
|
|
|
if ( typeof fids === 'number' ) { fids = [ fids ]; }
|
|
|
|
for ( const fid of fids ) {
|
|
|
|
const fname = ut.fnameFromFileId(fid);
|
|
|
|
const existing = toRegisterMap.get(fname);
|
|
|
|
if ( existing ) {
|
|
|
|
existing.matches.push(hn);
|
|
|
|
} else {
|
|
|
|
toRegisterMap.set(fname, { matches: [ hn ] });
|
|
|
|
}
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-28 01:51:38 +02:00
|
|
|
return toRegisterMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
async function registerInjectables(origins) {
|
|
|
|
void origins;
|
|
|
|
|
|
|
|
if ( browser.scripting === undefined ) { return false; }
|
|
|
|
|
|
|
|
const [
|
|
|
|
hostnamesSet,
|
|
|
|
trustedSites,
|
|
|
|
rulesetIds,
|
|
|
|
scriptingDetails,
|
|
|
|
registered,
|
|
|
|
] = await Promise.all([
|
|
|
|
browser.permissions.getAll(),
|
|
|
|
getAllTrustedSiteDirectives(),
|
|
|
|
dnr.getEnabledRulesets(),
|
|
|
|
getScriptingDetails(),
|
|
|
|
browser.scripting.getRegisteredContentScripts(),
|
|
|
|
]).then(results => {
|
|
|
|
results[0] = new Set(ut.hostnamesFromMatches(results[0].origins));
|
|
|
|
results[1] = new Set(results[1]);
|
|
|
|
return results;
|
|
|
|
});
|
|
|
|
|
|
|
|
const toRegisterMap = hostnamesSet.has('*')
|
|
|
|
? registerAllInjectables({
|
|
|
|
trustedSites,
|
|
|
|
rulesetIds,
|
|
|
|
scriptingDetails,
|
|
|
|
})
|
|
|
|
: registerSomeInjectables({
|
|
|
|
hostnamesSet,
|
|
|
|
trustedSites,
|
|
|
|
rulesetIds,
|
|
|
|
scriptingDetails,
|
|
|
|
});
|
|
|
|
|
2022-09-17 17:22:25 +02:00
|
|
|
const before = new Map(registered.map(entry => [ entry.id, entry ]));
|
|
|
|
|
2022-09-16 21:56:35 +02:00
|
|
|
const toAdd = [];
|
2022-09-17 17:22:25 +02:00
|
|
|
const toUpdate = [];
|
2022-09-28 01:51:38 +02:00
|
|
|
for ( const [ fname, entry ] of toRegisterMap ) {
|
2022-09-17 17:22:25 +02:00
|
|
|
if ( before.has(fname) === false ) {
|
|
|
|
toAdd.push(toRegisterable(fname, entry));
|
|
|
|
continue;
|
|
|
|
}
|
2022-09-19 14:55:45 +02:00
|
|
|
if ( shouldUpdate(before.get(fname), entry) ) {
|
|
|
|
toUpdate.push(toRegisterable(fname, entry));
|
2022-09-17 17:22:25 +02:00
|
|
|
}
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
2022-09-17 17:22:25 +02:00
|
|
|
|
2022-09-16 21:56:35 +02:00
|
|
|
const toRemove = [];
|
2022-09-17 17:22:25 +02:00
|
|
|
for ( const fname of before.keys() ) {
|
2022-09-28 01:51:38 +02:00
|
|
|
if ( toRegisterMap.has(fname) ) { continue; }
|
2022-09-16 21:56:35 +02:00
|
|
|
toRemove.push(fname);
|
|
|
|
}
|
|
|
|
|
|
|
|
const todo = [];
|
|
|
|
if ( toRemove.length !== 0 ) {
|
2022-09-17 17:22:25 +02:00
|
|
|
todo.push(browser.scripting.unregisterContentScripts({ ids: toRemove }));
|
|
|
|
console.info(`Unregistered ${toRemove} content (css/js)`);
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
|
|
|
if ( toAdd.length !== 0 ) {
|
|
|
|
todo.push(browser.scripting.registerContentScripts(toAdd));
|
2022-09-17 17:22:25 +02:00
|
|
|
console.info(`Registered ${toAdd.map(v => v.id)} content (css/js)`);
|
|
|
|
}
|
|
|
|
if ( toUpdate.length !== 0 ) {
|
|
|
|
todo.push(browser.scripting.updateContentScripts(toUpdate));
|
|
|
|
console.info(`Updated ${toUpdate.map(v => v.id)} content (css/js)`);
|
2022-09-16 21:56:35 +02:00
|
|
|
}
|
|
|
|
if ( todo.length === 0 ) { return; }
|
|
|
|
|
|
|
|
return Promise.all(todo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
export {
|
|
|
|
getInjectableCount,
|
2022-09-28 01:51:38 +02:00
|
|
|
registerInjectables
|
2022-09-16 21:56:35 +02:00
|
|
|
};
|