fune/browser/extensions/asan-reporter/bootstrap.js
Thomas Wisniewski dd793ee47a Bug 792808 - Change asan-reporter bootstrap script to import and instantiate XHRs from global properties rather than using Cc.createInstance(Ci.nsIXMLHttpRequest); r=froydnj
MozReview-Commit-ID: GwciLYuTG3G

--HG--
extra : rebase_source : 7687aeba58c0b035ca0314379e0d199ed35a4ebf
2017-09-19 12:17:39 -04:00

194 lines
6.3 KiB
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* 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/. */
const Cm = Components.manager;
ChromeUtils.import("resource://gre/modules/AppConstants.jsm");
ChromeUtils.import("resource://gre/modules/FileUtils.jsm");
ChromeUtils.import("resource://gre/modules/Log.jsm");
ChromeUtils.import("resource://gre/modules/Preferences.jsm");
ChromeUtils.import("resource://gre/modules/Services.jsm");
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
ChromeUtils.defineModuleGetter(this, "OS", "resource://gre/modules/osfile.jsm");
Cu.importGlobalProperties(["TextDecoder", "XMLHttpRequest"]);
// Define our prefs
const PREF_CLIENT_ID = "asanreporter.clientid";
const PREF_API_URL = "asanreporter.apiurl";
const PREF_AUTH_TOKEN = "asanreporter.authtoken";
const PREF_LOG_LEVEL = "asanreporter.loglevel";
// Setup logging
const LOGGER_NAME = "extensions.asanreporter";
let logger = Log.repository.getLogger(LOGGER_NAME);
logger.addAppender(new Log.ConsoleAppender(new Log.BasicFormatter()));
logger.addAppender(new Log.DumpAppender(new Log.BasicFormatter()));
logger.level = Preferences.get(PREF_LOG_LEVEL, Log.Level.Info);
this.TabCrashObserver = {
init() {
if (this.initialized)
return;
this.initialized = true;
Services.obs.addObserver(this, "ipc:content-shutdown");
},
observe(aSubject, aTopic, aData) {
if (aTopic == "ipc:content-shutdown") {
aSubject.QueryInterface(Ci.nsIPropertyBag2);
if (!aSubject.get("abnormal")) {
return;
}
processDirectory("/tmp");
}
},
};
function install(aData, aReason) {}
function uninstall(aData, aReason) {}
function startup(aData, aReason) {
logger.info("Starting up...");
// Install a handler to observe tab crashes, so we can report those right
// after they happen instead of relying on the user to restart the browser.
TabCrashObserver.init();
// We could use OS.Constants.Path.tmpDir here, but unfortunately there is
// no way in C++ to get the same value *prior* to xpcom initialization.
// Since ASan needs its options, including the "log_path" option already
// at early startup, there is no way to pass this on to ASan.
//
// Instead, we hardcode the /tmp directory here, which should be fine in
// most cases, as long as we are on Linux and Mac (the main targets for
// this addon at the time of writing).
processDirectory("/tmp");
}
function shutdown(aData, aReason) {
logger.info("Shutting down...");
}
function processDirectory(pathString) {
let iterator = new OS.File.DirectoryIterator(pathString);
let results = [];
// Scan the directory for any ASan logs that we haven't
// submitted yet. Store the filenames in an array so we
// can close the iterator early.
iterator.forEach(
(entry) => {
if (entry.name.indexOf("ff_asan_log.") == 0
&& !entry.name.includes("submitted")) {
results.push(entry);
}
}
).then(
() => {
iterator.close();
logger.info("Processing " + results.length + " reports...");
// Sequentially submit all reports that we found. Note that doing this
// with Promise.all would not result in a sequential ordering and would
// cause multiple requests to be sent to the server at once.
let requests = Promise.resolve();
results.forEach(
(result) => {
requests = requests.then(
// We return a promise here that already handles any submit failures
// so our chain is not interrupted if one of the reports couldn't
// be submitted for some reason.
() => submitReport(result.path).then(
() => { logger.info("Successfully submitted " + result.path); },
(e) => { logger.error("Failed to submit " + result.path + ". Reason: " + e); },
)
);
}
);
requests.then(() => logger.info("Done processing reports."));
},
(e) => {
iterator.close();
logger.error("Error while iterating over report files: " + e);
}
);
}
function submitReport(reportFile) {
logger.info("Processing " + reportFile);
return OS.File.read(reportFile).then(submitToServer).then(
() => {
// Mark as submitted only if we successfully submitted it to the server.
return OS.File.move(reportFile, reportFile + ".submitted");
}
);
}
function submitToServer(data) {
return new Promise(function(resolve, reject) {
logger.debug("Setting up XHR request");
let client = Preferences.get(PREF_CLIENT_ID);
let api_url = Preferences.get(PREF_API_URL);
let auth_token = Preferences.get(PREF_AUTH_TOKEN);
let decoder = new TextDecoder();
if (!client) {
client = "unknown";
}
let versionArr = [
Services.appinfo.version,
Services.appinfo.appBuildID,
(AppConstants.SOURCE_REVISION_URL || "unknown")
];
// Concatenate all relevant information as our server only
// has one field available for version information.
let product_version = versionArr.join("-");
let os = AppConstants.platform;
let reportObj = {
rawStdout: "",
rawStderr: "",
rawCrashData: decoder.decode(data),
// Hardcode platform as there is no other reasonable platform for ASan
platform: "x86-64",
product: "mozilla-central-asan-nightly",
product_version,
os,
client,
tool: "asan-nightly-program"
};
var xhr = new XMLHttpRequest();
xhr.open("POST", api_url, true);
xhr.setRequestHeader("Content-Type", "application/json");
// For internal testing purposes, an auth_token can be specified
if (auth_token) {
xhr.setRequestHeader("Authorization", "Token " + auth_token);
}
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == "201") {
logger.debug("XHR: OK");
resolve(xhr);
} else {
logger.debug("XHR: Status: " + xhr.status + " Response: " + xhr.responseText);
reject(xhr);
}
}
};
xhr.send(JSON.stringify(reportObj));
});
}