Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: lib/csp.js

Issue 29394585: Issue 5027 - Use updated webRequest API for WebSocket blocking (Closed)
Left Patch Set: adds comments, change comment to fix lint error from added indentation Created March 28, 2017, 1:04 p.m.
Right Patch Set: change commit message, add chrome version to include.preload.js comments Created March 29, 2017, 12:04 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « include.preload.js ('k') | lib/requestBlocker.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2017 eyeo GmbH 3 * Copyright (C) 2006-2017 eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 "use strict"; 18 "use strict";
19 19
20 // Versions of Chrome < 58 do not support WebSockets since the release of 20 // Before Chrome 58, the webRequest API did not intercept WebSocket
Sebastian Noack 2017/03/28 14:33:44 On Chrome 58, the webRequest API doesn't intercept
Jon Sonesen 2017/03/28 19:18:30 Acknowledged.
21 // the 58 beta we are using this check to disable the CSP injection workaround. 21 // connections (see https://crbug.com/129353). Hence we inject CSP headers,
22 // 22 // below, as a workaround.
23 // SharedWorkers will not be blocked by this workaround being disabled a
24 // fix would be if the browser associated the SharedWorker tabId/frameId with
25 // the document that caused it to be created.
26 //
27 // Chromium ticket has been filed: https://crbug.com/705931
28 if (!("WEBSOCKET" in chrome.webRequest.ResourceType)) 23 if (!("WEBSOCKET" in chrome.webRequest.ResourceType))
29 { 24 {
30 const {defaultMatcher} = require("matcher"); 25 const {defaultMatcher} = require("matcher");
31 const {BlockingFilter, RegExpFilter} = require("filterClasses"); 26 const {BlockingFilter, RegExpFilter} = require("filterClasses");
32 const {getDecodedHostname} = require("url"); 27 const {getDecodedHostname} = require("url");
33 const {checkWhitelisted} = require("whitelisting"); 28 const {checkWhitelisted} = require("whitelisting");
34 29
35 chrome.webRequest.onHeadersReceived.addListener(details => 30 chrome.webRequest.onHeadersReceived.addListener(details =>
36 { 31 {
37 let hostname = getDecodedHostname(new URL(details.url)); 32 let hostname = getDecodedHostname(new URL(details.url));
38 let match = defaultMatcher.matchesAny("", RegExpFilter.typeMap.WEBSOCKET, 33 let match = defaultMatcher.matchesAny("", RegExpFilter.typeMap.WEBSOCKET,
39 hostname, false, null, true); 34 hostname, false, null, true);
40 if (match instanceof BlockingFilter && 35 if (match instanceof BlockingFilter &&
41 !checkWhitelisted(new ext.Page({id: details.tabId}), 36 !checkWhitelisted(new ext.Page({id: details.tabId}),
42 ext.getFrame(details.tabId, details.frameId))) 37 ext.getFrame(details.tabId, details.frameId)))
43 { 38 {
44 details.responseHeaders.push({ 39 details.responseHeaders.push({
45 name: "Content-Security-Policy", 40 name: "Content-Security-Policy",
46 // We're blocking WebSockets here by adding a connect-src restriction 41 // We're blocking WebSockets here by adding a connect-src restriction
47 // since the Chrome extension API does not allow us to intercept them. 42 // since the Chrome extension API does not allow us to intercept them.
48 // https://bugs.chromium.org/p/chromium/issues/detail?id=129353 43 // https://bugs.chromium.org/p/chromium/issues/detail?id=129353
49 // 44 //
50 // We also need the frame-src and object-src restrictions since CSPs are 45 // We also need the frame-src and object-src restrictions since CSPs
51 // not inherited from the parent for documents with data and blob URLs. 46 // are not inherited from the parent for documents with data: and blob:
52 // https://bugs.chromium.org/p/chromium/issues/detail?id=513860 47 // URLs, see https://crbug.com/513860.
53 // 48 //
54 // We must use the deprecated child-src directive instead of worker-src 49 // We must use the deprecated child-src directive instead of worker-src
55 // since that's not supported yet (as of Chrome 56.) 50 // since that's not supported yet (as of Chrome 56.)
56 // 51 //
57 // "http:" also includes "https:" implictly. 52 // "http:" also includes "https:" implictly.
58 // https://www.chromestatus.com/feature/6653486812889088 53 // https://www.chromestatus.com/feature/6653486812889088
59 value: "connect-src http:; child-src http:; frame-src http:; object-src http:" 54 value: "connect-src http:; child-src http:; frame-src http:; object-src http:"
60 }); 55 });
61 return {responseHeaders: details.responseHeaders}; 56 return {responseHeaders: details.responseHeaders};
62 } 57 }
63 }, { 58 }, {
64 urls: ["http://*/*", "https://*/*"], 59 urls: ["http://*/*", "https://*/*"],
65 // We must also intercept script requests since otherwise Web Workers can 60 // We must also intercept script requests since otherwise Web Workers can
66 // be abused to execute scripts for which our Content Security Policy 61 // be abused to execute scripts for which our Content Security Policy
67 // won't be injected. 62 // won't be injected.
68 // https://github.com/gorhill/uBO-Extra/issues/19 63 // https://github.com/gorhill/uBO-Extra/issues/19
69 types: ["main_frame", "sub_frame", "script"] 64 types: ["main_frame", "sub_frame", "script"]
70 }, ["blocking", "responseHeaders"]); 65 }, ["blocking", "responseHeaders"]);
71 } 66 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld