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

Side by Side Diff: lib/csp.js

Issue 29394585: Issue 5027 - Use updated webRequest API for WebSocket blocking (Closed)
Patch Set: addresses bad comments, and actually fixes requestBlocker logic Created March 28, 2017, 7:18 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/ext/background.js ('k') | lib/requestBlocker.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 const {defaultMatcher} = require("matcher"); 20 // Versions of Chrome < 58 the webRequest API does not intercept WebSocket
Sebastian Noack 2017/03/28 19:32:29 This seems grammatically wrong. This should rather
Jon Sonesen 2017/03/28 20:10:29 Done.
21 const {BlockingFilter, RegExpFilter} = require("filterClasses"); 21 // connections see: https://crbug.com/129353
22 const {getDecodedHostname} = require("url"); 22 //
23 const {checkWhitelisted} = require("whitelisting"); 23 // Hence we inject CSP headers, below, as a workaround.
Sebastian Noack 2017/03/28 19:32:29 IMHO, this shouldn't be a new paragraph, as we eve
Jon Sonesen 2017/03/28 20:10:29 Done.
24 if (!("WEBSOCKET" in chrome.webRequest.ResourceType))
25 {
26 const {defaultMatcher} = require("matcher");
27 const {BlockingFilter, RegExpFilter} = require("filterClasses");
28 const {getDecodedHostname} = require("url");
29 const {checkWhitelisted} = require("whitelisting");
24 30
25 chrome.webRequest.onHeadersReceived.addListener(details => 31 chrome.webRequest.onHeadersReceived.addListener(details =>
26 {
27 let hostname = getDecodedHostname(new URL(details.url));
28 let match = defaultMatcher.matchesAny("", RegExpFilter.typeMap.WEBSOCKET,
29 hostname, false, null, true);
30 if (match instanceof BlockingFilter &&
31 !checkWhitelisted(new ext.Page({id: details.tabId}),
32 ext.getFrame(details.tabId, details.frameId)))
33 { 32 {
34 details.responseHeaders.push({ 33 let hostname = getDecodedHostname(new URL(details.url));
35 name: "Content-Security-Policy", 34 let match = defaultMatcher.matchesAny("", RegExpFilter.typeMap.WEBSOCKET,
36 // We're blocking WebSockets here by adding a connect-src restriction 35 hostname, false, null, true);
37 // since the Chrome extension API does not allow us to intercept them. 36 if (match instanceof BlockingFilter &&
38 // https://bugs.chromium.org/p/chromium/issues/detail?id=129353 37 !checkWhitelisted(new ext.Page({id: details.tabId}),
39 // 38 ext.getFrame(details.tabId, details.frameId)))
40 // We also need the frame-src and object-src restrictions since CSPs are 39 {
41 // not inherited from the parent for documents with data: and blob: URLs. 40 details.responseHeaders.push({
42 // https://bugs.chromium.org/p/chromium/issues/detail?id=513860 41 name: "Content-Security-Policy",
43 // 42 // We're blocking WebSockets here by adding a connect-src restriction
44 // We must use the deprecated child-src directive instead of worker-src 43 // since the Chrome extension API does not allow us to intercept them.
45 // since that's not supported yet (as of Chrome 56.) 44 // https://bugs.chromium.org/p/chromium/issues/detail?id=129353
46 // 45 //
47 // "http:" also includes "https:" implictly. 46 // We also need the frame-src and object-src restrictions since CSPs are
Sebastian Noack 2017/03/28 19:32:29 This line still seems too long.
Jon Sonesen 2017/03/28 20:10:29 Done.
48 // https://www.chromestatus.com/feature/6653486812889088 47 // not inherited from the parent for documents with data and blob URLs.
Sebastian Noack 2017/03/28 19:32:29 As I explained before, please don't remove the col
Jon Sonesen 2017/03/28 20:10:29 Done.
49 value: "connect-src http:; child-src http:; frame-src http:; object-src ht tp:" 48 // https://bugs.chromium.org/p/chromium/issues/detail?id=513860
50 }); 49 //
51 return {responseHeaders: details.responseHeaders}; 50 // We must use the deprecated child-src directive instead of worker-src
52 } 51 // since that's not supported yet (as of Chrome 56.)
53 }, { 52 //
54 urls: ["http://*/*", "https://*/*"], 53 // "http:" also includes "https:" implictly.
55 // We must also intercept script requests since otherwise Web Workers can 54 // https://www.chromestatus.com/feature/6653486812889088
56 // be abused to execute scripts for which our Content Security Policy 55 value: "connect-src http:; child-src http:; frame-src http:; object-src http:"
57 // won't be injected. 56 });
58 // https://github.com/gorhill/uBO-Extra/issues/19 57 return {responseHeaders: details.responseHeaders};
59 types: ["main_frame", "sub_frame", "script"] 58 }
60 }, ["blocking", "responseHeaders"]); 59 }, {
60 urls: ["http://*/*", "https://*/*"],
61 // We must also intercept script requests since otherwise Web Workers can
62 // be abused to execute scripts for which our Content Security Policy
63 // won't be injected.
64 // https://github.com/gorhill/uBO-Extra/issues/19
65 types: ["main_frame", "sub_frame", "script"]
66 }, ["blocking", "responseHeaders"]);
67 }
OLDNEW
« no previous file with comments | « chrome/ext/background.js ('k') | lib/requestBlocker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld