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

Delta Between Two Patch Sets: lib/requestBlocker.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 | « lib/csp.js ('k') | metadata.chrome » ('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
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 FilterNotifier.on("subscription.added", onFilterChange); 146 FilterNotifier.on("subscription.added", onFilterChange);
147 FilterNotifier.on("subscription.removed", onFilterChange); 147 FilterNotifier.on("subscription.removed", onFilterChange);
148 FilterNotifier.on("subscription.updated", onFilterChange); 148 FilterNotifier.on("subscription.updated", onFilterChange);
149 FilterNotifier.on("subscription.disabled", arg => onFilterChange(arg, true)); 149 FilterNotifier.on("subscription.disabled", arg => onFilterChange(arg, true));
150 FilterNotifier.on("filter.added", onFilterChange); 150 FilterNotifier.on("filter.added", onFilterChange);
151 FilterNotifier.on("filter.removed", onFilterChange); 151 FilterNotifier.on("filter.removed", onFilterChange);
152 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true)); 152 FilterNotifier.on("filter.disabled", arg => onFilterChange(arg, true));
153 FilterNotifier.on("load", onFilterChange); 153 FilterNotifier.on("load", onFilterChange);
154 154
155 155 // Before Chrome 58, the webRequest API didn't intercept WebSocket connections,
156 // Versions of Chrome < 58 do not support WebSockets since the release of 156 // (see https://crbug.com/129353). Hence we patched the WebSocket object as a
Sebastian Noack 2017/03/28 13:48:08 On Chrome <58, the webRequest API doesn't intercep
Jon Sonesen 2017/03/28 19:18:30 Sorry, thank you for clarifying the comments here.
157 // the 58 beta we are using this check to disable the CSP injection workaround. 157 // workaround. WebSocket connections detected by this workaround are handled
158 // 158 // below.
159 // SharedWorkers will not be blocked by this workaround being disabled a 159 if (!("WEBSOCKET" in chrome.webRequest.ResourceType))
Sebastian Noack 2017/03/28 13:48:08 WebSocket connections opened by SharedWorkers are
Sebastian Noack 2017/03/28 14:33:44 Nevermind. This paragraph should rather just go aw
Jon Sonesen 2017/03/28 19:18:30 Acknowledged.
160 // fix would be if the browser associated the SharedWorker tabId/frameId with
161 // the document that caused it to be created.
162 //
163 // Chromium ticket has been filed: https://crbug.com/705931
164 if (("WEBSOCKET" in chrome.webRequest.ResourceType))
165 { 160 {
166 port.on("request.websocket", (msg, sender) => 161 port.on("request.websocket", (msg, sender) =>
167 { 162 {
168 return ext.webRequest.onBeforeRequest._dispatch( 163 return ext.webRequest.onBeforeRequest._dispatch(
169 new URL(msg.url), 164 new URL(msg.url),
170 "WEBSOCKET", 165 "WEBSOCKET",
171 sender.page, 166 sender.page,
172 sender.frame 167 sender.frame
173 ).indexOf(false) != -1; 168 ).indexOf(false) != -1;
174 }); 169 });
175 } 170 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld