1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00
uBlock/platform/chromium/vapi-client.js

572 lines
19 KiB
JavaScript
Raw Normal View History

/*******************************************************************************
2016-03-06 16:51:06 +01:00
uBlock Origin - a browser extension to block requests.
Copyright (C) 2014-2016 The µBlock authors
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 HTMLDocument, XMLDocument */
// For non background pages
/******************************************************************************/
(function(self) {
'use strict';
2016-03-06 16:51:06 +01:00
/******************************************************************************/
/******************************************************************************/
// https://github.com/chrisaljoudi/uBlock/issues/464
if ( document instanceof HTMLDocument === false ) {
// https://github.com/chrisaljoudi/uBlock/issues/1528
// A XMLDocument can be a valid HTML document.
if (
document instanceof XMLDocument === false ||
document.createElement('div') instanceof HTMLDivElement === false
) {
return;
}
}
2016-01-03 01:33:32 +01:00
// https://github.com/gorhill/uBlock/issues/1124
// Looks like `contentType` is on track to be standardized:
// https://dom.spec.whatwg.org/#concept-document-content-type
2016-01-11 07:38:29 +01:00
if ( (document.contentType || '').lastIndexOf('image/', 0) === 0 ) {
2016-01-03 01:33:32 +01:00
return;
}
/******************************************************************************/
2015-01-14 23:45:55 +01:00
var vAPI = self.vAPI = self.vAPI || {};
2015-01-02 03:14:53 +01:00
var chrome = self.chrome;
2015-04-07 03:26:05 +02:00
// https://github.com/chrisaljoudi/uBlock/issues/456
// Already injected?
if ( vAPI.sessionId ) {
return;
}
2014-11-24 23:20:21 +01:00
2015-07-07 17:03:26 +02:00
vAPI.sessionId = String.fromCharCode(Date.now() % 26 + 97) +
Math.random().toString(36).slice(2);
2014-11-24 23:20:21 +01:00
vAPI.chrome = true;
/******************************************************************************/
vAPI.setTimeout = vAPI.setTimeout || self.setTimeout.bind(self);
/******************************************************************************/
2015-04-08 01:34:22 +02:00
vAPI.shutdown = (function() {
var jobs = [];
var add = function(job) {
jobs.push(job);
};
var exec = function() {
var job;
2016-01-03 01:33:32 +01:00
while ( (job = jobs.pop()) ) {
2015-04-08 01:34:22 +02:00
job();
}
};
return {
add: add,
exec: exec
};
})();
2016-03-06 16:51:06 +01:00
/******************************************************************************/
2015-04-08 01:34:22 +02:00
/******************************************************************************/
vAPI.messaging = {
port: null,
2016-03-06 16:51:06 +01:00
portTimer: null,
portTimerDelay: 10000,
channels: Object.create(null),
channelCount: 0,
pending: Object.create(null),
2015-07-07 17:03:26 +02:00
pendingCount: 0,
auxProcessId: 1,
2016-03-06 16:51:06 +01:00
shuttingDown: false,
shutdown: function() {
this.shuttingDown = true;
this.destroyPort();
},
2015-06-26 06:08:41 +02:00
2016-03-06 16:51:06 +01:00
disconnectListener: function() {
this.port = null;
vAPI.shutdown.exec();
},
2016-03-06 16:51:06 +01:00
disconnectListenerCallback: null,
2016-03-06 16:51:06 +01:00
messageListener: function(details) {
if ( !details ) {
return;
2015-07-07 17:03:26 +02:00
}
2016-03-06 16:51:06 +01:00
// Sent to all channels
if ( details.broadcast === true && !details.channelName ) {
for ( var channelName in this.channels ) {
this.sendToChannelListeners(channelName, details.msg);
}
return;
}
// Response to specific message previously sent
if ( details.auxProcessId ) {
var listener = this.pending[details.auxProcessId];
delete this.pending[details.auxProcessId];
delete details.auxProcessId; // TODO: why?
if ( listener ) {
this.pendingCount -= 1;
listener(details.msg);
return;
}
}
// Sent to a specific channel
var response = this.sendToChannelListeners(details.channelName, details.msg);
// Respond back if required
if ( details.mainProcessId === undefined ) {
return;
}
var port = this.connect();
if ( port !== null ) {
port.postMessage({
mainProcessId: details.mainProcessId,
msg: response
});
2015-07-07 17:03:26 +02:00
}
},
2016-03-06 16:51:06 +01:00
messageListenerCallback: null,
portPoller: function() {
this.portTimer = null;
if ( this.port !== null ) {
if ( this.channelCount !== 0 || this.pendingCount !== 0 ) {
this.portTimer = vAPI.setTimeout(this.portPollerCallback, this.portTimerDelay);
2016-03-09 17:24:21 +01:00
this.portTimerDelay = Math.min(this.portTimerDelay * 2, 60 * 60 * 1000);
2016-03-06 16:51:06 +01:00
return;
}
}
this.destroyPort();
},
portPollerCallback: null,
2015-06-26 06:08:41 +02:00
2016-03-06 16:51:06 +01:00
destroyPort: function() {
if ( this.portTimer !== null ) {
clearTimeout(this.portTimer);
this.portTimer = null;
}
2015-07-07 17:03:26 +02:00
var port = this.port;
if ( port !== null ) {
port.disconnect();
2016-03-06 16:51:06 +01:00
port.onMessage.removeListener(this.messageListenerCallback);
port.onDisconnect.removeListener(this.disconnectListenerCallback);
this.port = null;
}
2016-03-06 16:51:06 +01:00
if ( this.channelCount !== 0 ) {
this.channels = Object.create(null);
this.channelCount = 0;
}
2015-07-07 17:03:26 +02:00
// service pending callbacks
2016-03-06 16:51:06 +01:00
if ( this.pendingCount !== 0 ) {
var pending = this.pending, callback;
this.pending = Object.create(null);
this.pendingCount = 0;
for ( var auxId in pending ) {
callback = pending[auxId];
if ( typeof callback === 'function' ) {
callback(null);
2015-07-07 17:03:26 +02:00
}
}
}
},
2015-06-28 23:42:08 +02:00
2016-03-06 16:51:06 +01:00
createPort: function() {
if ( this.shuttingDown ) {
return null;
}
2016-03-06 16:51:06 +01:00
if ( this.messageListenerCallback === null ) {
this.messageListenerCallback = this.messageListener.bind(this);
this.disconnectListenerCallback = this.disconnectListener.bind(this);
this.portPollerCallback = this.portPoller.bind(this);
}
2016-03-06 16:51:06 +01:00
try {
2016-03-15 16:17:56 +01:00
this.port = chrome.runtime.connect({name: vAPI.sessionId}) || null;
2016-03-06 16:51:06 +01:00
} catch (ex) {
2016-03-15 16:17:56 +01:00
this.port = null;
}
if ( this.port !== null ) {
this.port.onMessage.addListener(this.messageListenerCallback);
this.port.onDisconnect.addListener(this.disconnectListenerCallback);
}
2016-03-09 17:24:21 +01:00
this.portTimerDelay = 10000;
2016-03-06 16:51:06 +01:00
if ( this.portTimer === null ) {
this.portTimer = vAPI.setTimeout(this.portPollerCallback, this.portTimerDelay);
2015-06-26 06:08:41 +02:00
}
2016-03-15 16:17:56 +01:00
return this.port;
2016-03-06 16:51:06 +01:00
},
2016-03-06 16:51:06 +01:00
connect: function() {
return this.port !== null ? this.port : this.createPort();
},
2015-06-26 06:08:41 +02:00
2016-03-06 16:51:06 +01:00
send: function(channelName, message, callback) {
this.sendTo(channelName, message, undefined, undefined, callback);
},
2015-06-26 06:08:41 +02:00
2016-03-06 16:51:06 +01:00
sendTo: function(channelName, message, toTabId, toChannel, callback) {
// Too large a gap between the last request and the last response means
// the main process is no longer reachable: memory leaks and bad
// performance become a risk -- especially for long-lived, dynamic
// pages. Guard against this.
if ( this.pendingCount > 25 ) {
vAPI.shutdown.exec();
2015-06-26 06:08:41 +02:00
}
2016-03-06 16:51:06 +01:00
var port = this.connect();
if ( port === null ) {
2015-07-07 17:03:26 +02:00
if ( typeof callback === 'function' ) {
callback();
}
return;
}
2016-03-06 16:51:06 +01:00
var auxProcessId;
if ( callback ) {
auxProcessId = this.auxProcessId++;
this.pending[auxProcessId] = callback;
this.pendingCount += 1;
}
port.postMessage({
channelName: channelName,
auxProcessId: auxProcessId,
toTabId: toTabId,
toChannel: toChannel,
msg: message
});
},
2016-03-06 16:51:06 +01:00
addChannelListener: function(channelName, callback) {
if ( typeof callback !== 'function' ) {
return;
}
var listeners = this.channels[channelName];
if ( listeners !== undefined && listeners.indexOf(callback) !== -1 ) {
console.error('Duplicate listener on channel "%s"', channelName);
return;
}
if ( listeners === undefined ) {
this.channels[channelName] = [callback];
this.channelCount += 1;
} else {
listeners.push(callback);
}
this.connect();
},
2016-03-06 16:51:06 +01:00
removeChannelListener: function(channelName, callback) {
if ( typeof callback !== 'function' ) {
return;
}
var listeners = this.channels[channelName];
if ( listeners === undefined ) {
return;
}
var pos = this.listeners.indexOf(callback);
if ( pos === -1 ) {
console.error('Listener not found on channel "%s"', channelName);
return;
}
listeners.splice(pos, 1);
if ( listeners.length === 0 ) {
delete this.channels[channelName];
this.channelCount -= 1;
}
},
2016-03-06 16:51:06 +01:00
removeAllChannelListeners: function(channelName) {
var listeners = this.channels[channelName];
if ( listeners === undefined ) {
return;
}
delete this.channels[channelName];
this.channelCount -= 1;
},
2015-06-28 23:42:08 +02:00
2016-03-06 16:51:06 +01:00
sendToChannelListeners: function(channelName, msg) {
var listeners = this.channels[channelName];
if ( listeners === undefined ) {
return;
}
var response;
for ( var i = 0, n = listeners.length; i < n; i++ ) {
response = listeners[i](msg);
if ( response !== undefined ) {
break;
}
2015-06-26 06:08:41 +02:00
}
2016-03-06 16:51:06 +01:00
return response;
}
};
2016-03-06 16:51:06 +01:00
/******************************************************************************/
vAPI.shutdown.add(function() {
vAPI.messaging.shutdown();
2016-03-15 16:17:56 +01:00
delete window.vAPI;
2016-03-06 16:51:06 +01:00
});
// https://www.youtube.com/watch?v=rT5zCHn0tsg
// https://www.youtube.com/watch?v=E-jS4e3zacI
2016-04-20 19:57:31 +02:00
/******************************************************************************/
// https://bugs.chromium.org/p/chromium/issues/detail?id=129353
2016-04-21 18:26:08 +02:00
// https://github.com/gorhill/uBlock/issues/956
2016-04-20 19:57:31 +02:00
// https://github.com/gorhill/uBlock/issues/1497
// Trap calls to WebSocket constructor, and expose websocket-based network
// requests to uBO's filtering engine, logger, etc.
// Counterpart of following block of code is found in "vapi-background.js" --
// search for "https://github.com/gorhill/uBlock/issues/1497".
(function() {
2016-04-21 18:48:07 +02:00
// Fix won't be applied on older versions of Chromium.
if (
window.WebSocket instanceof Function === false ||
window.WeakMap instanceof Function === false
) {
2016-04-21 06:03:29 +02:00
return;
}
2016-04-20 19:57:31 +02:00
// Only for http/https documents.
if ( /^https?:/.test(window.location.protocol) !== true ) {
return;
}
var doc = document;
var parent = doc.head || doc.documentElement;
if ( parent === null ) {
return;
}
2016-04-21 06:03:29 +02:00
// WebSocket reference: https://html.spec.whatwg.org/multipage/comms.html
2016-04-20 19:57:31 +02:00
// The script tag will remove itself from the DOM once it completes
// execution.
2016-04-21 18:26:08 +02:00
// Ideally, the `js/websocket.js` script would be declared as a
// `web_accessible_resources` in the manifest, but this unfortunately would
// open the door for web pages to identify *directly* that one is using
// uBlock Origin. Consequently, I have to inject the code as a literal
// string below :(
// For code review, the stringified code below is found in
// `js/websocket.js` (comments were stripped).
2016-04-20 19:57:31 +02:00
var script = doc.createElement('script');
script.id = 'ubofix-f41665f3028c7fd10eecf573336216d3';
2016-04-21 06:03:29 +02:00
script.textContent = [
2016-04-21 18:26:08 +02:00
"(function() {",
" 'use strict';",
"",
2016-04-22 17:45:20 +02:00
" var Wrapped = window.WebSocket;",
2016-04-21 18:26:08 +02:00
" var toWrapped = new WeakMap();",
"",
2016-04-22 17:45:20 +02:00
" var onResponseReceived = function(wrapper, ok) {",
" this.onload = this.onerror = null;",
" var bag = toWrapped.get(wrapper);",
" if ( !ok ) {",
" if ( bag.properties.onerror ) {",
" bag.properties.onerror(new window.ErrorEvent('error'));",
" }",
2016-04-21 18:26:08 +02:00
" return;",
" }",
2016-04-22 17:45:20 +02:00
" var wrapped = new Wrapped(bag.args.url, bag.args.protocols);",
" for ( var prop in bag.properties ) {",
" wrapped[prop] = bag.properties[prop];",
2016-04-21 18:26:08 +02:00
" }",
2016-04-22 17:45:20 +02:00
" toWrapped.set(wrapper, wrapped);",
2016-04-21 18:26:08 +02:00
" };",
"",
2016-04-22 17:45:20 +02:00
" var noopfn = function() {",
" };",
"",
" var fallthruGet = function(wrapper, prop, value) {",
" var wrapped = toWrapped.get(wrapper);",
2016-04-21 18:26:08 +02:00
" if ( !wrapped ) {",
2016-04-22 17:45:20 +02:00
" return value;",
2016-04-21 18:26:08 +02:00
" }",
2016-04-22 17:45:20 +02:00
" if ( wrapped instanceof Wrapped ) {",
" return wrapped[prop];",
2016-04-21 18:26:08 +02:00
" }",
2016-04-22 17:45:20 +02:00
" return wrapped.properties.hasOwnProperty(prop) ?",
" wrapped.properties[prop] :",
" value;",
2016-04-21 18:26:08 +02:00
" };",
"",
2016-04-22 17:45:20 +02:00
" var fallthruSet = function(wrapper, prop, value) {",
" if ( value instanceof Function ) {",
" value = value.bind(wrapper);",
2016-04-21 18:26:08 +02:00
" }",
2016-04-22 17:45:20 +02:00
" var wrapped = toWrapped.get(wrapper);",
2016-04-21 18:26:08 +02:00
" if ( !wrapped ) {",
" return;",
" }",
2016-04-22 17:45:20 +02:00
" if ( wrapped instanceof Wrapped ) {",
" wrapped[prop] = value;",
" } else {",
" wrapped.properties[prop] = value;",
2016-04-21 18:26:08 +02:00
" }",
" };",
"",
2016-04-22 17:45:20 +02:00
" var WebSocket = function(url, protocols) {",
" if ( window.location.protocol === 'https:' && /^ws:/.test(url) ) {",
" var ws = new Wrapped(url, protocols);",
" if ( ws ) {",
" ws.close();",
" }",
2016-04-21 18:26:08 +02:00
" }",
"",
2016-04-22 17:45:20 +02:00
" Object.defineProperties(this, {",
" 'binaryType': {",
" get: function() {",
" return fallthruGet(this, 'binaryType', '');",
" },",
" set: function(value) {",
" fallthruSet(this, 'binaryType', value);",
" }",
" },",
" 'bufferedAmount': {",
" get: function() {",
" return fallthruGet(this, 'bufferedAmount', 0);",
" },",
" set: noopfn",
" },",
" 'extensions': {",
" get: function() {",
" return fallthruGet(this, 'extensions', '');",
" },",
" set: noopfn",
" },",
" 'onclose': {",
" get: function() {",
" return fallthruGet(this, 'onclose', null);",
" },",
" set: function(value) {",
" fallthruSet(this, 'onclose', value);",
" }",
" },",
" 'onerror': {",
" get: function() {",
" return fallthruGet(this, 'onerror', null);",
" },",
" set: function(value) {",
" fallthruSet(this, 'onerror', value);",
" }",
" },",
" 'onmessage': {",
" get: function() {",
" return fallthruGet(this, 'onmessage', null);",
" },",
" set: function(value) {",
" fallthruSet(this, 'onmessage', value);",
" }",
" },",
" 'onopen': {",
" get: function() {",
" return fallthruGet(this, 'onopen', null);",
" },",
" set: function(value) {",
" fallthruSet(this, 'onopen', value);",
" }",
" },",
" 'protocol': {",
" get: function() {",
" return fallthruGet(this, 'protocol', '');",
" },",
" set: noopfn",
" },",
" 'readyState': {",
" get: function() {",
" return fallthruGet(this, 'readyState', 0);",
" },",
" set: noopfn",
" },",
" 'url': {",
" get: function() {",
" return fallthruGet(this, 'url', '');",
" },",
" set: noopfn",
" }",
" });",
2016-04-21 18:26:08 +02:00
"",
2016-04-22 17:45:20 +02:00
" toWrapped.set(this, {",
" args: { url: url, protocols: protocols },",
" properties: {}",
" });",
2016-04-21 18:26:08 +02:00
"",
" var img = new Image();",
" img.src = ",
" window.location.origin",
" + '?url=' + encodeURIComponent(url)",
" + '&ubofix=f41665f3028c7fd10eecf573336216d3';",
2016-04-22 17:45:20 +02:00
" img.onload = onResponseReceived.bind(img, this, true);",
" img.onerror = onResponseReceived.bind(img, this, false);",
2016-04-21 18:26:08 +02:00
" };",
"",
2016-04-22 17:45:20 +02:00
" WebSocket.prototype.CONNECTING = 0;",
" WebSocket.prototype.OPEN = 1;",
" WebSocket.prototype.CLOSING = 2;",
" WebSocket.prototype.CLOSED = 3;",
"",
2016-04-21 18:26:08 +02:00
" WebSocket.prototype.close = function(code, reason) {",
" var wrapped = toWrapped.get(this);",
2016-04-22 17:45:20 +02:00
" if ( wrapped instanceof Wrapped ) {",
" wrapped.close(code, reason);",
2016-04-21 18:26:08 +02:00
" }",
" };",
"",
" WebSocket.prototype.send = function(data) {",
" var wrapped = toWrapped.get(this);",
2016-04-22 17:45:20 +02:00
" if ( wrapped instanceof Wrapped ) {",
" wrapped.send(data);",
2016-04-21 18:26:08 +02:00
" }",
" };",
"",
" window.WebSocket = WebSocket;",
"",
" var me = document.getElementById('ubofix-f41665f3028c7fd10eecf573336216d3');",
" if ( me !== null && me.parentNode !== null ) {",
" me.parentNode.removeChild(me);",
" }",
"})();",
].join('\n');
2016-04-21 06:03:29 +02:00
2016-04-20 19:57:31 +02:00
try {
parent.appendChild(script);
} catch (ex) {
}
})();
/******************************************************************************/
/******************************************************************************/
})(this);
/******************************************************************************/