mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
Bug 1325501 - Adds ServiceRequest as a drop-in replacement for XHR, which uses conservative TLS settings r=mossop
MozReview-Commit-ID: 5937m90Q948 --HG-- extra : rebase_source : a5c107e486ef1dc646c8d730e658e9693a535883
This commit is contained in:
parent
92a8f642ee
commit
505a86593c
49
toolkit/modules/ServiceRequest.jsm
Normal file
49
toolkit/modules/ServiceRequest.jsm
Normal file
@ -0,0 +1,49 @@
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
"use strict";
|
||||
|
||||
const { classes: Cc, interfaces: Ci, results: Cr, utils: Cu } = Components;
|
||||
|
||||
/**
|
||||
* This module consolidates various code and data update requests, so flags
|
||||
* can be set, Telemetry collected, etc. in a central place.
|
||||
*/
|
||||
|
||||
Cu.import("resource://gre/modules/Log.jsm");
|
||||
Cu.importGlobalProperties(["XMLHttpRequest"]);
|
||||
|
||||
this.EXPORTED_SYMBOLS = [ "ServiceRequest" ];
|
||||
|
||||
const logger = Log.repository.getLogger("ServiceRequest");
|
||||
logger.level = Log.Level.Debug;
|
||||
logger.addAppender(new Log.ConsoleAppender(new Log.BasicFormatter()));
|
||||
|
||||
/**
|
||||
* ServiceRequest is intended to be a drop-in replacement for current users
|
||||
* of XMLHttpRequest.
|
||||
*
|
||||
* @param {Object} options - Options for underlying XHR, e.g. { mozAnon: bool }
|
||||
*/
|
||||
class ServiceRequest extends XMLHttpRequest {
|
||||
constructor(options) {
|
||||
super(options);
|
||||
}
|
||||
/**
|
||||
* Opens an XMLHttpRequest, and sets the NSS "beConservative" flag.
|
||||
* Requests are always async.
|
||||
*
|
||||
* @param {String} method - HTTP method to use, e.g. "GET".
|
||||
* @param {String} url - URL to open.
|
||||
* @param {Object} options - Additional options (reserved for future use).
|
||||
*/
|
||||
open(method, url, options) {
|
||||
super.open(method, url, true);
|
||||
|
||||
// Disable cutting edge features, like TLS 1.3, where middleboxes might brick us
|
||||
if (super.channel instanceof Ci.nsIHttpChannelInternal) {
|
||||
super.channel.QueryInterface(Ci.nsIHttpChannelInternal).beConservative = true;
|
||||
}
|
||||
}
|
||||
}
|
@ -82,6 +82,7 @@ EXTRA_JS_MODULES += [
|
||||
'secondscreen/SimpleServiceDiscovery.jsm',
|
||||
'SelectContentHelper.jsm',
|
||||
'SelectParentHelper.jsm',
|
||||
'ServiceRequest.jsm',
|
||||
'Services.jsm',
|
||||
'SessionRecorder.jsm',
|
||||
'sessionstore/FormData.jsm',
|
||||
|
25
toolkit/modules/tests/xpcshell/test_servicerequest_xhr.js
Normal file
25
toolkit/modules/tests/xpcshell/test_servicerequest_xhr.js
Normal file
@ -0,0 +1,25 @@
|
||||
/* Any copyright is dedicated to the Public Domain.
|
||||
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
var {classes: Cc, interfaces: Ci, utils: Cu} = Components;
|
||||
|
||||
Cu.import("resource://gre/modules/ServiceRequest.jsm");
|
||||
|
||||
add_task(function* test_tls_conservative() {
|
||||
const request = new ServiceRequest();
|
||||
request.open("GET", "http://example.com", false);
|
||||
|
||||
const sr_channel = request.channel.QueryInterface(Ci.nsIHttpChannelInternal);
|
||||
ok(("beConservative" in sr_channel), "TLS setting is present in SR channel");
|
||||
ok(sr_channel.beConservative, "TLS setting in request channel is set to conservative for SR");
|
||||
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", "http://example.com", false);
|
||||
|
||||
const xhr_channel = xhr.channel.QueryInterface(Ci.nsIHttpChannelInternal);
|
||||
ok(("beConservative" in xhr_channel), "TLS setting is present in XHR channel");
|
||||
ok(!xhr_channel.beConservative, "TLS setting in request channel is not set to conservative for XHR");
|
||||
|
||||
});
|
@ -74,3 +74,4 @@ reason = LOCALE is not defined without MOZ_UPDATER
|
||||
[test_ZipUtils.js]
|
||||
skip-if = toolkit == 'android'
|
||||
[test_Log_stackTrace.js]
|
||||
[test_servicerequest_xhr.js]
|
||||
|
Loading…
Reference in New Issue
Block a user