2007-08-16 00:43:12 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-08-04 01:22:55 +00:00
|
|
|
|
|
|
|
/* 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/. */
|
2007-08-16 00:43:12 +00:00
|
|
|
|
2011-07-19 20:16:35 +00:00
|
|
|
"use strict";
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
|
2007-08-25 06:12:05 +00:00
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
2010-04-26 18:45:22 +00:00
|
|
|
Components.utils.import("resource://gre/modules/AddonManager.jsm");
|
2010-12-20 22:01:12 +00:00
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
2007-08-25 06:12:05 +00:00
|
|
|
|
2012-05-10 02:28:45 +00:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "FileUtils",
|
|
|
|
"resource://gre/modules/FileUtils.jsm");
|
2012-09-10 16:54:41 +00:00
|
|
|
XPCOMUtils.defineLazyModuleGetter(this, "UpdateChannel",
|
|
|
|
"resource://gre/modules/UpdateChannel.jsm");
|
2012-05-10 02:28:45 +00:00
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
const TOOLKIT_ID = "toolkit@mozilla.org"
|
|
|
|
const KEY_PROFILEDIR = "ProfD";
|
2008-03-19 22:35:03 +00:00
|
|
|
const KEY_APPDIR = "XCurProcD";
|
2007-08-16 00:43:12 +00:00
|
|
|
const FILE_BLOCKLIST = "blocklist.xml";
|
2011-01-14 21:29:27 +00:00
|
|
|
const PREF_BLOCKLIST_LASTUPDATETIME = "app.update.lastUpdateTime.blocklist-background-update-timer";
|
2007-08-16 00:43:12 +00:00
|
|
|
const PREF_BLOCKLIST_URL = "extensions.blocklist.url";
|
2011-05-25 21:31:56 +00:00
|
|
|
const PREF_BLOCKLIST_ITEM_URL = "extensions.blocklist.itemURL";
|
2007-08-16 00:43:12 +00:00
|
|
|
const PREF_BLOCKLIST_ENABLED = "extensions.blocklist.enabled";
|
|
|
|
const PREF_BLOCKLIST_INTERVAL = "extensions.blocklist.interval";
|
2008-11-02 12:13:48 +00:00
|
|
|
const PREF_BLOCKLIST_LEVEL = "extensions.blocklist.level";
|
2011-02-24 11:20:02 +00:00
|
|
|
const PREF_BLOCKLIST_PINGCOUNTTOTAL = "extensions.blocklist.pingCountTotal";
|
|
|
|
const PREF_BLOCKLIST_PINGCOUNTVERSION = "extensions.blocklist.pingCountVersion";
|
2009-10-02 11:26:04 +00:00
|
|
|
const PREF_PLUGINS_NOTIFYUSER = "plugins.update.notifyUser";
|
2008-04-25 17:10:02 +00:00
|
|
|
const PREF_GENERAL_USERAGENT_LOCALE = "general.useragent.locale";
|
|
|
|
const PREF_APP_DISTRIBUTION = "distribution.id";
|
|
|
|
const PREF_APP_DISTRIBUTION_VERSION = "distribution.version";
|
2007-08-16 00:43:12 +00:00
|
|
|
const PREF_EM_LOGGING_ENABLED = "extensions.logging.enabled";
|
|
|
|
const XMLURI_BLOCKLIST = "http://www.mozilla.org/2006/addons-blocklist";
|
|
|
|
const XMLURI_PARSE_ERROR = "http://www.mozilla.org/newlayout/xml/parsererror.xml"
|
2008-04-25 17:10:02 +00:00
|
|
|
const UNKNOWN_XPCOM_ABI = "unknownABI";
|
2008-11-02 12:13:48 +00:00
|
|
|
const URI_BLOCKLIST_DIALOG = "chrome://mozapps/content/extensions/blocklist.xul"
|
|
|
|
const DEFAULT_SEVERITY = 3;
|
|
|
|
const DEFAULT_LEVEL = 2;
|
|
|
|
const MAX_BLOCK_LEVEL = 3;
|
2009-10-02 11:26:04 +00:00
|
|
|
const SEVERITY_OUTDATED = 0;
|
2012-07-11 15:56:34 +00:00
|
|
|
const VULNERABILITYSTATUS_NONE = 0;
|
|
|
|
const VULNERABILITYSTATUS_UPDATE_AVAILABLE = 1;
|
|
|
|
const VULNERABILITYSTATUS_NO_UPDATE = 2;
|
2007-08-16 00:43:12 +00:00
|
|
|
|
|
|
|
var gLoggingEnabled = null;
|
2008-11-02 12:13:48 +00:00
|
|
|
var gBlocklistEnabled = true;
|
|
|
|
var gBlocklistLevel = DEFAULT_LEVEL;
|
2007-08-16 00:43:12 +00:00
|
|
|
|
2009-12-03 23:30:50 +00:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "gConsole",
|
|
|
|
"@mozilla.org/consoleservice;1",
|
|
|
|
"nsIConsoleService");
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "gVersionChecker",
|
|
|
|
"@mozilla.org/xpcom/version-comparator;1",
|
|
|
|
"nsIVersionComparator");
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "gPref", function bls_gPref() {
|
|
|
|
return Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService).
|
2012-01-17 01:18:29 +00:00
|
|
|
QueryInterface(Ci.nsIPrefBranch);
|
2009-12-03 23:30:50 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "gApp", function bls_gApp() {
|
|
|
|
return Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo).
|
|
|
|
QueryInterface(Ci.nsIXULRuntime);
|
|
|
|
});
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "gABI", function bls_gABI() {
|
|
|
|
let abi = null;
|
|
|
|
try {
|
|
|
|
abi = gApp.XPCOMABI;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
LOG("BlockList Global gABI: XPCOM ABI unknown.");
|
|
|
|
}
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
// Mac universal build should report a different ABI than either macppc
|
|
|
|
// or mactel.
|
|
|
|
let macutils = Cc["@mozilla.org/xpcom/mac-utils;1"].
|
|
|
|
getService(Ci.nsIMacUtils);
|
|
|
|
|
|
|
|
if (macutils.isUniversalBinary)
|
2010-09-21 04:41:19 +00:00
|
|
|
abi += "-u-" + macutils.architecturesInBinary;
|
2009-12-03 23:30:50 +00:00
|
|
|
#endif
|
|
|
|
return abi;
|
|
|
|
});
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "gOSVersion", function bls_gOSVersion() {
|
|
|
|
let osVersion;
|
|
|
|
let sysInfo = Cc["@mozilla.org/system-info;1"].
|
|
|
|
getService(Ci.nsIPropertyBag2);
|
|
|
|
try {
|
|
|
|
osVersion = sysInfo.getProperty("name") + " " + sysInfo.getProperty("version");
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
LOG("BlockList Global gOSVersion: OS Version unknown.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (osVersion) {
|
|
|
|
try {
|
|
|
|
osVersion += " (" + sysInfo.getProperty("secondaryLibrary") + ")";
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
// Not all platforms have a secondary widget library, so an error is nothing to worry about.
|
|
|
|
}
|
|
|
|
osVersion = encodeURIComponent(osVersion);
|
|
|
|
}
|
|
|
|
return osVersion;
|
|
|
|
});
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
// shared code for suppressing bad cert dialogs
|
2009-12-03 23:30:50 +00:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "gCertUtils", function bls_gCertUtils() {
|
2009-10-13 19:45:20 +00:00
|
|
|
let temp = { };
|
|
|
|
Components.utils.import("resource://gre/modules/CertUtils.jsm", temp);
|
|
|
|
return temp;
|
|
|
|
});
|
2007-08-16 00:43:12 +00:00
|
|
|
|
2009-12-03 23:30:50 +00:00
|
|
|
function getObserverService() {
|
|
|
|
return Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
|
|
|
|
}
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
/**
|
|
|
|
* Logs a string to the error console.
|
|
|
|
* @param string
|
|
|
|
* The string to write to the error console..
|
|
|
|
*/
|
|
|
|
function LOG(string) {
|
|
|
|
if (gLoggingEnabled) {
|
|
|
|
dump("*** " + string + "\n");
|
2009-12-03 23:30:50 +00:00
|
|
|
gConsole.logStringMessage(string);
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a preference value, handling the case where there is no default.
|
|
|
|
* @param func
|
|
|
|
* The name of the preference function to call, on nsIPrefBranch
|
|
|
|
* @param preference
|
|
|
|
* The name of the preference
|
|
|
|
* @param defaultValue
|
|
|
|
* The default value to return in the event the preference has
|
|
|
|
* no setting
|
|
|
|
* @returns The value of the preference, or undefined if there was no
|
|
|
|
* user or default value.
|
|
|
|
*/
|
|
|
|
function getPref(func, preference, defaultValue) {
|
|
|
|
try {
|
|
|
|
return gPref[func](preference);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
return defaultValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a URI to a spec.
|
|
|
|
* @param spec
|
|
|
|
* The spec to construct a URI to
|
|
|
|
* @returns The nsIURI constructed.
|
|
|
|
*/
|
|
|
|
function newURI(spec) {
|
|
|
|
var ioServ = Cc["@mozilla.org/network/io-service;1"].
|
|
|
|
getService(Ci.nsIIOService);
|
|
|
|
return ioServ.newURI(spec, null, null);
|
|
|
|
}
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
// Restarts the application checking in with observers first
|
|
|
|
function restartApp() {
|
|
|
|
// Notify all windows that an application quit has been requested.
|
|
|
|
var os = Cc["@mozilla.org/observer-service;1"].
|
|
|
|
getService(Ci.nsIObserverService);
|
|
|
|
var cancelQuit = Cc["@mozilla.org/supports-PRBool;1"].
|
|
|
|
createInstance(Ci.nsISupportsPRBool);
|
|
|
|
os.notifyObservers(cancelQuit, "quit-application-requested", null);
|
|
|
|
|
2011-01-14 21:29:27 +00:00
|
|
|
// Something aborted the quit process.
|
2008-11-02 12:13:48 +00:00
|
|
|
if (cancelQuit.data)
|
|
|
|
return;
|
|
|
|
|
|
|
|
var as = Cc["@mozilla.org/toolkit/app-startup;1"].
|
|
|
|
getService(Ci.nsIAppStartup);
|
|
|
|
as.quit(Ci.nsIAppStartup.eRestart | Ci.nsIAppStartup.eAttemptQuit);
|
|
|
|
}
|
|
|
|
|
2007-11-07 08:56:29 +00:00
|
|
|
/**
|
|
|
|
* Checks whether this blocklist element is valid for the current OS and ABI.
|
|
|
|
* If the element has an "os" attribute then the current OS must appear in
|
2008-10-02 06:49:45 +00:00
|
|
|
* its comma separated list for the element to be valid. Similarly for the
|
2007-11-07 08:56:29 +00:00
|
|
|
* xpcomabi attribute.
|
|
|
|
*/
|
|
|
|
function matchesOSABI(blocklistElement) {
|
|
|
|
if (blocklistElement.hasAttribute("os")) {
|
|
|
|
var choices = blocklistElement.getAttribute("os").split(",");
|
|
|
|
if (choices.length > 0 && choices.indexOf(gApp.OS) < 0)
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-14 21:29:27 +00:00
|
|
|
|
2007-11-07 08:56:29 +00:00
|
|
|
if (blocklistElement.hasAttribute("xpcomabi")) {
|
|
|
|
choices = blocklistElement.getAttribute("xpcomabi").split(",");
|
|
|
|
if (choices.length > 0 && choices.indexOf(gApp.XPCOMABI) < 0)
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-14 21:29:27 +00:00
|
|
|
|
2007-11-07 08:56:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-25 17:10:02 +00:00
|
|
|
/**
|
|
|
|
* Gets the current value of the locale. It's possible for this preference to
|
|
|
|
* be localized, so we have to do a little extra work here. Similar code
|
|
|
|
* exists in nsHttpHandler.cpp when building the UA string.
|
|
|
|
*/
|
|
|
|
function getLocale() {
|
|
|
|
try {
|
|
|
|
// Get the default branch
|
2008-11-02 12:13:48 +00:00
|
|
|
var defaultPrefs = gPref.getDefaultBranch(null);
|
2011-05-17 04:12:40 +00:00
|
|
|
return defaultPrefs.getComplexValue(PREF_GENERAL_USERAGENT_LOCALE,
|
|
|
|
Ci.nsIPrefLocalizedString).data;
|
2008-04-25 17:10:02 +00:00
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
return gPref.getCharPref(PREF_GENERAL_USERAGENT_LOCALE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the distribution pref values, from defaults only */
|
|
|
|
function getDistributionPrefValue(aPrefName) {
|
|
|
|
var prefValue = "default";
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
var defaults = gPref.getDefaultBranch(null);
|
2008-04-25 17:10:02 +00:00
|
|
|
try {
|
|
|
|
prefValue = defaults.getCharPref(aPrefName);
|
|
|
|
} catch (e) {
|
|
|
|
// use default when pref not found
|
|
|
|
}
|
|
|
|
|
|
|
|
return prefValue;
|
|
|
|
}
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
/**
|
|
|
|
* Manages the Blocklist. The Blocklist is a representation of the contents of
|
|
|
|
* blocklist.xml and allows us to remotely disable / re-enable blocklisted
|
|
|
|
* items managed by the Extension Manager with an item's appDisabled property.
|
|
|
|
* It also blocklists plugins with data from blocklist.xml.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Blocklist() {
|
2009-12-03 23:30:50 +00:00
|
|
|
let os = getObserverService();
|
|
|
|
os.addObserver(this, "xpcom-shutdown", false);
|
|
|
|
gLoggingEnabled = getPref("getBoolPref", PREF_EM_LOGGING_ENABLED, false);
|
|
|
|
gBlocklistEnabled = getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true);
|
|
|
|
gBlocklistLevel = Math.min(getPref("getIntPref", PREF_BLOCKLIST_LEVEL, DEFAULT_LEVEL),
|
|
|
|
MAX_BLOCK_LEVEL);
|
|
|
|
gPref.addObserver("extensions.blocklist.", this, false);
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Blocklist.prototype = {
|
|
|
|
/**
|
|
|
|
* Extension ID -> array of Version Ranges
|
|
|
|
* Each value in the version range array is a JS Object that has the
|
|
|
|
* following properties:
|
|
|
|
* "minVersion" The minimum version in a version range (default = 0)
|
|
|
|
* "maxVersion" The maximum version in a version range (default = *)
|
|
|
|
* "targetApps" Application ID -> array of Version Ranges
|
|
|
|
* (default = current application ID)
|
|
|
|
* Each value in the version range array is a JS Object that
|
|
|
|
* has the following properties:
|
|
|
|
* "minVersion" The minimum version in a version range
|
|
|
|
* (default = 0)
|
|
|
|
* "maxVersion" The maximum version in a version range
|
|
|
|
* (default = *)
|
|
|
|
*/
|
|
|
|
_addonEntries: null,
|
|
|
|
_pluginEntries: null,
|
|
|
|
|
2009-12-03 23:30:50 +00:00
|
|
|
observe: function(aSubject, aTopic, aData) {
|
2007-08-16 00:43:12 +00:00
|
|
|
switch (aTopic) {
|
|
|
|
case "xpcom-shutdown":
|
2009-12-03 23:30:50 +00:00
|
|
|
let os = getObserverService();
|
|
|
|
os.removeObserver(this, "xpcom-shutdown");
|
2008-11-28 20:49:48 +00:00
|
|
|
gPref.removeObserver("extensions.blocklist.", this);
|
2007-08-16 00:43:12 +00:00
|
|
|
break;
|
2008-11-02 12:13:48 +00:00
|
|
|
case "nsPref:changed":
|
|
|
|
switch (aData) {
|
|
|
|
case PREF_BLOCKLIST_ENABLED:
|
|
|
|
gBlocklistEnabled = getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true);
|
|
|
|
this._loadBlocklist();
|
|
|
|
this._blocklistUpdated(null, null);
|
|
|
|
break;
|
|
|
|
case PREF_BLOCKLIST_LEVEL:
|
|
|
|
gBlocklistLevel = Math.min(getPref("getIntPref", PREF_BLOCKLIST_LEVEL, DEFAULT_LEVEL),
|
|
|
|
MAX_BLOCK_LEVEL);
|
|
|
|
this._blocklistUpdated(null, null);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
/* See nsIBlocklistService */
|
2007-08-16 00:43:12 +00:00
|
|
|
isAddonBlocklisted: function(id, version, appVersion, toolkitVersion) {
|
2008-11-02 12:13:48 +00:00
|
|
|
return this.getAddonBlocklistState(id, version, appVersion, toolkitVersion) ==
|
|
|
|
Ci.nsIBlocklistService.STATE_BLOCKED;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* See nsIBlocklistService */
|
|
|
|
getAddonBlocklistState: function(id, version, appVersion, toolkitVersion) {
|
2007-08-16 00:43:12 +00:00
|
|
|
if (!this._addonEntries)
|
2008-03-19 22:35:03 +00:00
|
|
|
this._loadBlocklist();
|
2008-11-02 12:13:48 +00:00
|
|
|
return this._getAddonBlocklistState(id, version, this._addonEntries,
|
|
|
|
appVersion, toolkitVersion);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Private version of getAddonBlocklistState that allows the caller to pass in
|
|
|
|
* the add-on blocklist entries to compare against.
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* The ID of the item to get the blocklist state for.
|
|
|
|
* @param version
|
|
|
|
* The version of the item to get the blocklist state for.
|
|
|
|
* @param addonEntries
|
|
|
|
* The add-on blocklist entries to compare against.
|
|
|
|
* @param appVersion
|
|
|
|
* The application version to compare to, will use the current
|
|
|
|
* version if null.
|
|
|
|
* @param toolkitVersion
|
|
|
|
* The toolkit version to compare to, will use the current version if
|
|
|
|
* null.
|
|
|
|
* @returns The blocklist state for the item, one of the STATE constants as
|
|
|
|
* defined in nsIBlocklistService.
|
|
|
|
*/
|
|
|
|
_getAddonBlocklistState: function(id, version, addonEntries, appVersion, toolkitVersion) {
|
|
|
|
if (!gBlocklistEnabled)
|
|
|
|
return Ci.nsIBlocklistService.STATE_NOT_BLOCKED;
|
|
|
|
|
2008-02-29 19:06:29 +00:00
|
|
|
if (!appVersion)
|
2007-08-16 00:43:12 +00:00
|
|
|
appVersion = gApp.version;
|
2008-02-29 19:06:29 +00:00
|
|
|
if (!toolkitVersion)
|
2007-08-16 00:43:12 +00:00
|
|
|
toolkitVersion = gApp.platformVersion;
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
var blItem = addonEntries[id];
|
2007-08-16 00:43:12 +00:00
|
|
|
if (!blItem)
|
2008-11-02 12:13:48 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_NOT_BLOCKED;
|
2007-08-16 00:43:12 +00:00
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let currentblItem of blItem) {
|
|
|
|
if (currentblItem.includesItem(version, appVersion, toolkitVersion))
|
|
|
|
return currentblItem.severity >= gBlocklistLevel ? Ci.nsIBlocklistService.STATE_BLOCKED :
|
2008-11-02 12:13:48 +00:00
|
|
|
Ci.nsIBlocklistService.STATE_SOFTBLOCKED;
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
2008-11-02 12:13:48 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_NOT_BLOCKED;
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
/* See nsIBlocklistService */
|
|
|
|
getAddonBlocklistURL: function(id, version, appVersion, toolkitVersion) {
|
|
|
|
if (!gBlocklistEnabled)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
if (!this._addonEntries)
|
|
|
|
this._loadBlocklist();
|
|
|
|
|
|
|
|
let blItem = this._addonEntries[id];
|
|
|
|
if (!blItem || !blItem.blockID)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return this._createBlocklistURL(blItem.blockID);
|
|
|
|
},
|
|
|
|
|
|
|
|
_createBlocklistURL: function(id) {
|
|
|
|
let url = Services.urlFormatter.formatURLPref(PREF_BLOCKLIST_ITEM_URL);
|
|
|
|
url = url.replace(/%blockID%/g, id);
|
|
|
|
|
|
|
|
return url;
|
|
|
|
},
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
notify: function(aTimer) {
|
2008-11-02 12:13:48 +00:00
|
|
|
if (!gBlocklistEnabled)
|
2007-08-16 00:43:12 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
try {
|
|
|
|
var dsURI = gPref.getCharPref(PREF_BLOCKLIST_URL);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2007-08-29 08:16:15 +00:00
|
|
|
LOG("Blocklist::notify: The " + PREF_BLOCKLIST_URL + " preference" +
|
2007-08-16 00:43:12 +00:00
|
|
|
" is missing!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-24 11:20:02 +00:00
|
|
|
var pingCountVersion = getPref("getIntPref", PREF_BLOCKLIST_PINGCOUNTVERSION, 0);
|
|
|
|
var pingCountTotal = getPref("getIntPref", PREF_BLOCKLIST_PINGCOUNTTOTAL, 1);
|
|
|
|
var daysSinceLastPing = 0;
|
2011-04-07 17:41:00 +00:00
|
|
|
if (pingCountVersion == 0) {
|
|
|
|
daysSinceLastPing = "new";
|
2010-09-21 04:41:19 +00:00
|
|
|
}
|
2011-01-14 21:29:27 +00:00
|
|
|
else {
|
|
|
|
// Seconds in one day is used because nsIUpdateTimerManager stores the
|
|
|
|
// last update time in seconds.
|
|
|
|
let secondsInDay = 60 * 60 * 24;
|
|
|
|
let lastUpdateTime = getPref("getIntPref", PREF_BLOCKLIST_LASTUPDATETIME, 0);
|
2011-02-24 11:20:02 +00:00
|
|
|
if (lastUpdateTime == 0) {
|
|
|
|
daysSinceLastPing = "invalid";
|
|
|
|
}
|
|
|
|
else {
|
2011-01-14 21:29:27 +00:00
|
|
|
let now = Math.round(Date.now() / 1000);
|
|
|
|
daysSinceLastPing = Math.floor((now - lastUpdateTime) / secondsInDay);
|
|
|
|
}
|
2011-02-24 11:20:02 +00:00
|
|
|
|
|
|
|
if (daysSinceLastPing == 0 || daysSinceLastPing == "invalid") {
|
|
|
|
pingCountVersion = pingCountTotal = "invalid";
|
2011-01-14 21:29:27 +00:00
|
|
|
}
|
2010-09-21 04:41:19 +00:00
|
|
|
}
|
|
|
|
|
2011-04-07 17:41:00 +00:00
|
|
|
if (pingCountVersion < 1)
|
|
|
|
pingCountVersion = 1;
|
|
|
|
if (pingCountTotal < 1)
|
|
|
|
pingCountTotal = 1;
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
dsURI = dsURI.replace(/%APP_ID%/g, gApp.ID);
|
|
|
|
dsURI = dsURI.replace(/%APP_VERSION%/g, gApp.version);
|
2008-04-25 17:10:02 +00:00
|
|
|
dsURI = dsURI.replace(/%PRODUCT%/g, gApp.name);
|
|
|
|
dsURI = dsURI.replace(/%VERSION%/g, gApp.version);
|
|
|
|
dsURI = dsURI.replace(/%BUILD_ID%/g, gApp.appBuildID);
|
|
|
|
dsURI = dsURI.replace(/%BUILD_TARGET%/g, gApp.OS + "_" + gABI);
|
|
|
|
dsURI = dsURI.replace(/%OS_VERSION%/g, gOSVersion);
|
|
|
|
dsURI = dsURI.replace(/%LOCALE%/g, getLocale());
|
2012-09-10 16:54:41 +00:00
|
|
|
dsURI = dsURI.replace(/%CHANNEL%/g, UpdateChannel.get());
|
2008-04-25 17:10:02 +00:00
|
|
|
dsURI = dsURI.replace(/%PLATFORM_VERSION%/g, gApp.platformVersion);
|
|
|
|
dsURI = dsURI.replace(/%DISTRIBUTION%/g,
|
|
|
|
getDistributionPrefValue(PREF_APP_DISTRIBUTION));
|
|
|
|
dsURI = dsURI.replace(/%DISTRIBUTION_VERSION%/g,
|
|
|
|
getDistributionPrefValue(PREF_APP_DISTRIBUTION_VERSION));
|
2011-02-24 11:20:02 +00:00
|
|
|
dsURI = dsURI.replace(/%PING_COUNT%/g, pingCountVersion);
|
|
|
|
dsURI = dsURI.replace(/%TOTAL_PING_COUNT%/g, pingCountTotal);
|
2011-01-14 21:29:27 +00:00
|
|
|
dsURI = dsURI.replace(/%DAYS_SINCE_LAST_PING%/g, daysSinceLastPing);
|
2008-04-25 17:10:02 +00:00
|
|
|
dsURI = dsURI.replace(/\+/g, "%2B");
|
|
|
|
|
2011-01-14 21:29:27 +00:00
|
|
|
// Under normal operations it will take around 5,883,516 years before the
|
2011-02-24 11:20:02 +00:00
|
|
|
// preferences used to store pingCountVersion and pingCountTotal will rollover
|
2011-01-14 21:29:27 +00:00
|
|
|
// so this code doesn't bother trying to do the "right thing" here.
|
2011-02-24 11:20:02 +00:00
|
|
|
if (pingCountVersion != "invalid") {
|
|
|
|
pingCountVersion++;
|
|
|
|
if (pingCountVersion > 2147483647) {
|
|
|
|
// Rollover to -1 if the value is greater than what is support by an
|
|
|
|
// integer preference. The -1 indicates that the counter has been reset.
|
|
|
|
pingCountVersion = -1;
|
|
|
|
}
|
|
|
|
gPref.setIntPref(PREF_BLOCKLIST_PINGCOUNTVERSION, pingCountVersion);
|
2010-09-21 04:41:19 +00:00
|
|
|
}
|
|
|
|
|
2011-02-24 11:20:02 +00:00
|
|
|
if (pingCountTotal != "invalid") {
|
|
|
|
pingCountTotal++;
|
|
|
|
if (pingCountTotal > 2147483647) {
|
|
|
|
// Rollover to 1 if the value is greater than what is support by an
|
|
|
|
// integer preference.
|
|
|
|
pingCountTotal = -1;
|
|
|
|
}
|
|
|
|
gPref.setIntPref(PREF_BLOCKLIST_PINGCOUNTTOTAL, pingCountTotal);
|
2011-01-14 21:29:27 +00:00
|
|
|
}
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
// Verify that the URI is valid
|
|
|
|
try {
|
|
|
|
var uri = newURI(dsURI);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2007-08-29 08:16:15 +00:00
|
|
|
LOG("Blocklist::notify: There was an error creating the blocklist URI\r\n" +
|
2007-08-16 00:43:12 +00:00
|
|
|
"for: " + dsURI + ", error: " + e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-19 18:04:44 +00:00
|
|
|
LOG("Blocklist::notify: Requesting " + uri.spec);
|
2007-08-16 00:43:12 +00:00
|
|
|
var request = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"].
|
|
|
|
createInstance(Ci.nsIXMLHttpRequest);
|
|
|
|
request.open("GET", uri.spec, true);
|
2009-10-13 19:45:20 +00:00
|
|
|
request.channel.notificationCallbacks = new gCertUtils.BadCertHandler();
|
2007-08-16 00:43:12 +00:00
|
|
|
request.overrideMimeType("text/xml");
|
|
|
|
request.setRequestHeader("Cache-Control", "no-cache");
|
|
|
|
request.QueryInterface(Components.interfaces.nsIJSXMLHttpRequest);
|
|
|
|
|
|
|
|
var self = this;
|
2011-09-29 16:06:36 +00:00
|
|
|
request.addEventListener("error", function(event) { self.onXMLError(event); }, false);
|
|
|
|
request.addEventListener("load", function(event) { self.onXMLLoad(event); }, false);
|
2007-08-16 00:43:12 +00:00
|
|
|
request.send(null);
|
2008-11-02 12:13:48 +00:00
|
|
|
|
|
|
|
// When the blocklist loads we need to compare it to the current copy so
|
|
|
|
// make sure we have loaded it.
|
|
|
|
if (!this._addonEntries)
|
|
|
|
this._loadBlocklist();
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onXMLLoad: function(aEvent) {
|
|
|
|
var request = aEvent.target;
|
|
|
|
try {
|
2009-10-13 19:45:20 +00:00
|
|
|
gCertUtils.checkCert(request.channel);
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
LOG("Blocklist::onXMLLoad: " + e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var responseXML = request.responseXML;
|
|
|
|
if (!responseXML || responseXML.documentElement.namespaceURI == XMLURI_PARSE_ERROR ||
|
|
|
|
(request.status != 200 && request.status != 0)) {
|
|
|
|
LOG("Blocklist::onXMLLoad: there was an error during load");
|
|
|
|
return;
|
|
|
|
}
|
2009-10-23 19:42:48 +00:00
|
|
|
var blocklistFile = FileUtils.getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
|
2007-08-16 00:43:12 +00:00
|
|
|
if (blocklistFile.exists())
|
|
|
|
blocklistFile.remove(false);
|
2009-10-23 19:42:48 +00:00
|
|
|
var fos = FileUtils.openSafeFileOutputStream(blocklistFile);
|
2007-08-16 00:43:12 +00:00
|
|
|
fos.write(request.responseText, request.responseText.length);
|
2009-10-23 19:42:48 +00:00
|
|
|
FileUtils.closeSafeFileOutputStream(fos);
|
2008-11-02 12:13:48 +00:00
|
|
|
|
|
|
|
var oldAddonEntries = this._addonEntries;
|
|
|
|
var oldPluginEntries = this._pluginEntries;
|
|
|
|
this._addonEntries = { };
|
|
|
|
this._pluginEntries = { };
|
2009-10-23 19:42:48 +00:00
|
|
|
this._loadBlocklistFromFile(FileUtils.getFile(KEY_PROFILEDIR,
|
|
|
|
[FILE_BLOCKLIST]));
|
2008-11-02 12:13:48 +00:00
|
|
|
|
|
|
|
this._blocklistUpdated(oldAddonEntries, oldPluginEntries);
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
onXMLError: function(aEvent) {
|
|
|
|
try {
|
|
|
|
var request = aEvent.target;
|
|
|
|
// the following may throw (e.g. a local file or timeout)
|
|
|
|
var status = request.status;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
request = aEvent.target.channel.QueryInterface(Ci.nsIRequest);
|
|
|
|
status = request.status;
|
|
|
|
}
|
2011-02-16 13:14:16 +00:00
|
|
|
var statusText = "nsIXMLHttpRequest channel unavailable";
|
2007-08-16 00:43:12 +00:00
|
|
|
// When status is 0 we don't have a valid channel.
|
2011-02-16 13:14:16 +00:00
|
|
|
if (status != 0) {
|
|
|
|
try {
|
|
|
|
statusText = request.statusText;
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
2007-08-16 00:43:12 +00:00
|
|
|
LOG("Blocklist:onError: There was an error loading the blocklist file\r\n" +
|
|
|
|
statusText);
|
|
|
|
},
|
|
|
|
|
2008-03-19 22:35:03 +00:00
|
|
|
/**
|
|
|
|
* Finds the newest blocklist file from the application and the profile and
|
|
|
|
* load it or does nothing if neither exist.
|
|
|
|
*/
|
|
|
|
_loadBlocklist: function() {
|
2008-03-20 06:31:20 +00:00
|
|
|
this._addonEntries = { };
|
|
|
|
this._pluginEntries = { };
|
2009-10-23 19:42:48 +00:00
|
|
|
var profFile = FileUtils.getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
|
2008-03-19 22:35:03 +00:00
|
|
|
if (profFile.exists()) {
|
|
|
|
this._loadBlocklistFromFile(profFile);
|
|
|
|
return;
|
|
|
|
}
|
2009-10-23 19:42:48 +00:00
|
|
|
var appFile = FileUtils.getFile(KEY_APPDIR, [FILE_BLOCKLIST]);
|
2008-03-20 06:31:20 +00:00
|
|
|
if (appFile.exists()) {
|
2008-03-19 22:35:03 +00:00
|
|
|
this._loadBlocklistFromFile(appFile);
|
2008-03-20 06:31:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
LOG("Blocklist::_loadBlocklist: no XML File found");
|
2008-03-19 22:35:03 +00:00
|
|
|
},
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
/**
|
2007-08-16 21:17:45 +00:00
|
|
|
# The blocklist XML file looks something like this:
|
|
|
|
#
|
|
|
|
# <blocklist xmlns="http://www.mozilla.org/2006/addons-blocklist">
|
|
|
|
# <emItems>
|
2011-05-25 21:31:56 +00:00
|
|
|
# <emItem id="item_1@domain" blockID="i1">
|
2007-08-16 21:17:45 +00:00
|
|
|
# <versionRange minVersion="1.0" maxVersion="2.0.*">
|
|
|
|
# <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
|
|
|
|
# <versionRange minVersion="1.5" maxVersion="1.5.*"/>
|
|
|
|
# <versionRange minVersion="1.7" maxVersion="1.7.*"/>
|
|
|
|
# </targetApplication>
|
|
|
|
# <targetApplication id="toolkit@mozilla.org">
|
2007-08-29 08:16:15 +00:00
|
|
|
# <versionRange minVersion="1.9" maxVersion="1.9.*"/>
|
2007-08-16 21:17:45 +00:00
|
|
|
# </targetApplication>
|
|
|
|
# </versionRange>
|
|
|
|
# <versionRange minVersion="3.0" maxVersion="3.0.*">
|
|
|
|
# <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
|
|
|
|
# <versionRange minVersion="1.5" maxVersion="1.5.*"/>
|
|
|
|
# </targetApplication>
|
|
|
|
# <targetApplication id="toolkit@mozilla.org">
|
2007-08-29 08:16:15 +00:00
|
|
|
# <versionRange minVersion="1.9" maxVersion="1.9.*"/>
|
2007-08-16 21:17:45 +00:00
|
|
|
# </targetApplication>
|
|
|
|
# </versionRange>
|
|
|
|
# </emItem>
|
2011-05-25 21:31:56 +00:00
|
|
|
# <emItem id="item_2@domain" blockID="i2">
|
2007-08-16 21:17:45 +00:00
|
|
|
# <versionRange minVersion="3.1" maxVersion="4.*"/>
|
|
|
|
# </emItem>
|
|
|
|
# <emItem id="item_3@domain">
|
|
|
|
# <versionRange>
|
|
|
|
# <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
|
|
|
|
# <versionRange minVersion="1.5" maxVersion="1.5.*"/>
|
|
|
|
# </targetApplication>
|
|
|
|
# </versionRange>
|
|
|
|
# </emItem>
|
2011-05-25 21:31:56 +00:00
|
|
|
# <emItem id="item_4@domain" blockID="i3">
|
2007-08-16 21:17:45 +00:00
|
|
|
# <versionRange>
|
|
|
|
# <targetApplication>
|
|
|
|
# <versionRange minVersion="1.5" maxVersion="1.5.*"/>
|
|
|
|
# </targetApplication>
|
|
|
|
# </versionRange>
|
|
|
|
# <emItem id="item_5@domain"/>
|
|
|
|
# </emItems>
|
|
|
|
# <pluginItems>
|
2011-05-25 21:31:56 +00:00
|
|
|
# <pluginItem blockID="i4">
|
2007-08-16 21:17:45 +00:00
|
|
|
# <!-- All match tags must match a plugin to blocklist a plugin -->
|
|
|
|
# <match name="name" exp="some plugin"/>
|
|
|
|
# <match name="description" exp="1[.]2[.]3"/>
|
|
|
|
# </pluginItem>
|
|
|
|
# </pluginItems>
|
2007-08-29 08:16:15 +00:00
|
|
|
# </blocklist>
|
2007-08-16 00:43:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
_loadBlocklistFromFile: function(file) {
|
2008-11-02 12:13:48 +00:00
|
|
|
if (!gBlocklistEnabled) {
|
2007-08-16 00:43:12 +00:00
|
|
|
LOG("Blocklist::_loadBlocklistFromFile: blocklist is disabled");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
LOG("Blocklist::_loadBlocklistFromFile: XML File does not exist");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
|
|
|
|
.createInstance(Components.interfaces.nsIFileInputStream);
|
2009-10-23 19:42:48 +00:00
|
|
|
fileStream.init(file, FileUtils.MODE_RDONLY, FileUtils.PERMS_FILE, 0);
|
2007-08-16 00:43:12 +00:00
|
|
|
try {
|
|
|
|
var parser = Cc["@mozilla.org/xmlextras/domparser;1"].
|
|
|
|
createInstance(Ci.nsIDOMParser);
|
|
|
|
var doc = parser.parseFromStream(fileStream, "UTF-8", file.fileSize, "text/xml");
|
|
|
|
if (doc.documentElement.namespaceURI != XMLURI_BLOCKLIST) {
|
|
|
|
LOG("Blocklist::_loadBlocklistFromFile: aborting due to incorrect " +
|
|
|
|
"XML Namespace.\r\nExpected: " + XMLURI_BLOCKLIST + "\r\n" +
|
|
|
|
"Received: " + doc.documentElement.namespaceURI);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var childNodes = doc.documentElement.childNodes;
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let element of childNodes) {
|
2010-12-20 22:01:12 +00:00
|
|
|
if (!(element instanceof Ci.nsIDOMElement))
|
|
|
|
continue;
|
|
|
|
switch (element.localName) {
|
|
|
|
case "emItems":
|
2010-12-20 23:01:39 +00:00
|
|
|
this._addonEntries = this._processItemNodes(element.childNodes, "em",
|
|
|
|
this._handleEmItemNode);
|
2010-12-20 22:01:12 +00:00
|
|
|
break;
|
|
|
|
case "pluginItems":
|
2010-12-20 23:01:39 +00:00
|
|
|
this._pluginEntries = this._processItemNodes(element.childNodes, "plugin",
|
|
|
|
this._handlePluginItemNode);
|
2010-12-20 22:01:12 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Services.obs.notifyObservers(element,
|
|
|
|
"blocklist-data-" + element.localName,
|
|
|
|
null);
|
|
|
|
}
|
|
|
|
}
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
LOG("Blocklist::_loadBlocklistFromFile: Error constructing blocklist " + e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fileStream.close();
|
|
|
|
},
|
|
|
|
|
2010-12-20 22:01:12 +00:00
|
|
|
_processItemNodes: function(itemNodes, prefix, handler) {
|
2007-08-16 00:43:12 +00:00
|
|
|
var result = [];
|
|
|
|
var itemName = prefix + "Item";
|
|
|
|
for (var i = 0; i < itemNodes.length; ++i) {
|
2007-11-07 08:57:19 +00:00
|
|
|
var blocklistElement = itemNodes.item(i);
|
|
|
|
if (!(blocklistElement instanceof Ci.nsIDOMElement) ||
|
2007-08-16 00:43:12 +00:00
|
|
|
blocklistElement.localName != itemName)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
handler(blocklistElement, result);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
|
|
|
|
_handleEmItemNode: function(blocklistElement, result) {
|
2007-11-07 08:56:29 +00:00
|
|
|
if (!matchesOSABI(blocklistElement))
|
|
|
|
return;
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
var versionNodes = blocklistElement.childNodes;
|
|
|
|
var id = blocklistElement.getAttribute("id");
|
|
|
|
result[id] = [];
|
|
|
|
for (var x = 0; x < versionNodes.length; ++x) {
|
2007-11-07 08:57:19 +00:00
|
|
|
var versionRangeElement = versionNodes.item(x);
|
|
|
|
if (!(versionRangeElement instanceof Ci.nsIDOMElement) ||
|
2007-08-16 00:43:12 +00:00
|
|
|
versionRangeElement.localName != "versionRange")
|
|
|
|
continue;
|
|
|
|
|
|
|
|
result[id].push(new BlocklistItemData(versionRangeElement));
|
|
|
|
}
|
|
|
|
// if only the extension ID is specified block all versions of the
|
|
|
|
// extension for the current application.
|
|
|
|
if (result[id].length == 0)
|
|
|
|
result[id].push(new BlocklistItemData(null));
|
2011-05-25 21:31:56 +00:00
|
|
|
|
|
|
|
result[id].blockID = blocklistElement.getAttribute("blockID");
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_handlePluginItemNode: function(blocklistElement, result) {
|
2007-11-07 08:56:29 +00:00
|
|
|
if (!matchesOSABI(blocklistElement))
|
|
|
|
return;
|
|
|
|
|
2007-08-16 00:43:12 +00:00
|
|
|
var matchNodes = blocklistElement.childNodes;
|
2008-09-02 11:53:34 +00:00
|
|
|
var blockEntry = {
|
|
|
|
matches: {},
|
2011-05-25 21:31:56 +00:00
|
|
|
versions: [],
|
|
|
|
blockID: null,
|
2008-09-02 11:53:34 +00:00
|
|
|
};
|
2009-08-21 15:52:57 +00:00
|
|
|
var hasMatch = false;
|
2007-08-16 00:43:12 +00:00
|
|
|
for (var x = 0; x < matchNodes.length; ++x) {
|
2007-11-07 08:57:19 +00:00
|
|
|
var matchElement = matchNodes.item(x);
|
2008-09-02 11:53:34 +00:00
|
|
|
if (!(matchElement instanceof Ci.nsIDOMElement))
|
2007-08-16 00:43:12 +00:00
|
|
|
continue;
|
2008-09-02 11:53:34 +00:00
|
|
|
if (matchElement.localName == "match") {
|
|
|
|
var name = matchElement.getAttribute("name");
|
|
|
|
var exp = matchElement.getAttribute("exp");
|
2009-08-21 15:52:57 +00:00
|
|
|
try {
|
|
|
|
blockEntry.matches[name] = new RegExp(exp, "m");
|
|
|
|
hasMatch = true;
|
|
|
|
} catch (e) {
|
|
|
|
// Ignore invalid regular expressions
|
|
|
|
}
|
2008-09-02 11:53:34 +00:00
|
|
|
}
|
|
|
|
if (matchElement.localName == "versionRange")
|
|
|
|
blockEntry.versions.push(new BlocklistItemData(matchElement));
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
2009-08-21 15:52:57 +00:00
|
|
|
// Plugin entries require *something* to match to an actual plugin
|
|
|
|
if (!hasMatch)
|
|
|
|
return;
|
2008-11-02 12:13:48 +00:00
|
|
|
// Add a default versionRange if there wasn't one specified
|
|
|
|
if (blockEntry.versions.length == 0)
|
|
|
|
blockEntry.versions.push(new BlocklistItemData(null));
|
2011-05-25 21:31:56 +00:00
|
|
|
|
|
|
|
blockEntry.blockID = blocklistElement.getAttribute("blockID");
|
|
|
|
|
2008-09-02 11:53:34 +00:00
|
|
|
result.push(blockEntry);
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
/* See nsIBlocklistService */
|
|
|
|
getPluginBlocklistState: function(plugin, appVersion, toolkitVersion) {
|
|
|
|
if (!this._pluginEntries)
|
|
|
|
this._loadBlocklist();
|
|
|
|
return this._getPluginBlocklistState(plugin, this._pluginEntries,
|
|
|
|
appVersion, toolkitVersion);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Private version of getPluginBlocklistState that allows the caller to pass in
|
|
|
|
* the plugin blocklist entries.
|
|
|
|
*
|
|
|
|
* @param plugin
|
|
|
|
* The nsIPluginTag to get the blocklist state for.
|
|
|
|
* @param pluginEntries
|
|
|
|
* The plugin blocklist entries to compare against.
|
|
|
|
* @param appVersion
|
|
|
|
* The application version to compare to, will use the current
|
|
|
|
* version if null.
|
|
|
|
* @param toolkitVersion
|
|
|
|
* The toolkit version to compare to, will use the current version if
|
|
|
|
* null.
|
|
|
|
* @returns The blocklist state for the item, one of the STATE constants as
|
|
|
|
* defined in nsIBlocklistService.
|
|
|
|
*/
|
|
|
|
_getPluginBlocklistState: function(plugin, pluginEntries, appVersion, toolkitVersion) {
|
|
|
|
if (!gBlocklistEnabled)
|
|
|
|
return Ci.nsIBlocklistService.STATE_NOT_BLOCKED;
|
|
|
|
|
|
|
|
if (!appVersion)
|
|
|
|
appVersion = gApp.version;
|
|
|
|
if (!toolkitVersion)
|
|
|
|
toolkitVersion = gApp.platformVersion;
|
|
|
|
|
|
|
|
for each (var blockEntry in pluginEntries) {
|
2007-08-16 00:43:12 +00:00
|
|
|
var matchFailed = false;
|
2008-09-02 11:53:34 +00:00
|
|
|
for (var name in blockEntry.matches) {
|
|
|
|
if (!(name in plugin) ||
|
|
|
|
typeof(plugin[name]) != "string" ||
|
|
|
|
!blockEntry.matches[name].test(plugin[name])) {
|
2007-08-16 00:43:12 +00:00
|
|
|
matchFailed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-02 11:53:34 +00:00
|
|
|
if (matchFailed)
|
|
|
|
continue;
|
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let blockEntryVersion of blockEntry.versions) {
|
|
|
|
if (blockEntryVersion.includesItem(plugin.version, appVersion,
|
2009-10-02 11:26:04 +00:00
|
|
|
toolkitVersion)) {
|
2012-05-27 12:21:48 +00:00
|
|
|
if (blockEntryVersion.severity >= gBlocklistLevel)
|
2009-10-02 11:26:04 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_BLOCKED;
|
2012-07-11 15:56:34 +00:00
|
|
|
if (blockEntryVersion.severity == SEVERITY_OUTDATED) {
|
|
|
|
let vulnerabilityStatus = blockEntryVersion.vulnerabilityStatus;
|
|
|
|
if (vulnerabilityStatus == VULNERABILITYSTATUS_UPDATE_AVAILABLE)
|
|
|
|
return Ci.nsIBlocklistService.STATE_VULNERABLE_UPDATE_AVAILABLE;
|
|
|
|
if (vulnerabilityStatus == VULNERABILITYSTATUS_NO_UPDATE)
|
|
|
|
return Ci.nsIBlocklistService.STATE_VULNERABLE_NO_UPDATE;
|
2009-10-02 11:26:04 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_OUTDATED;
|
2012-07-11 15:56:34 +00:00
|
|
|
}
|
2009-10-02 11:26:04 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_SOFTBLOCKED;
|
|
|
|
}
|
2007-08-16 00:43:12 +00:00
|
|
|
}
|
|
|
|
}
|
2008-09-02 11:53:34 +00:00
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
return Ci.nsIBlocklistService.STATE_NOT_BLOCKED;
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
/* See nsIBlocklistService */
|
|
|
|
getPluginBlocklistURL: function(plugin) {
|
|
|
|
if (!gBlocklistEnabled)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
if (!this._pluginEntries)
|
|
|
|
this._loadBlocklist();
|
|
|
|
|
|
|
|
for each (let blockEntry in this._pluginEntries) {
|
|
|
|
let matchFailed = false;
|
|
|
|
for (let name in blockEntry.matches) {
|
|
|
|
if (!(name in plugin) ||
|
|
|
|
typeof(plugin[name]) != "string" ||
|
|
|
|
!blockEntry.matches[name].test(plugin[name])) {
|
|
|
|
matchFailed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!matchFailed) {
|
|
|
|
if(!blockEntry.blockID)
|
|
|
|
return null;
|
|
|
|
else
|
|
|
|
return this._createBlocklistURL(blockEntry.blockID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-11-02 12:13:48 +00:00
|
|
|
_blocklistUpdated: function(oldAddonEntries, oldPluginEntries) {
|
|
|
|
var addonList = [];
|
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
var self = this;
|
2011-10-06 19:06:18 +00:00
|
|
|
AddonManager.getAddonsByTypes(["extension", "theme", "locale", "dictionary"], function(addons) {
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let addon of addons) {
|
2010-04-26 18:45:22 +00:00
|
|
|
let oldState = Ci.nsIBlocklistService.STATE_NOTBLOCKED;
|
|
|
|
if (oldAddonEntries)
|
2012-05-27 12:21:48 +00:00
|
|
|
oldState = self._getAddonBlocklistState(addon.id, addon.version,
|
2010-04-26 18:45:22 +00:00
|
|
|
oldAddonEntries);
|
2012-05-27 12:21:48 +00:00
|
|
|
let state = self.getAddonBlocklistState(addon.id, addon.version);
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
LOG("Blocklist state for " + addon.id + " changed from " +
|
2010-05-06 19:57:58 +00:00
|
|
|
oldState + " to " + state);
|
2010-04-26 18:45:22 +00:00
|
|
|
|
|
|
|
// We don't want to re-warn about add-ons
|
|
|
|
if (state == oldState)
|
|
|
|
continue;
|
|
|
|
|
2011-05-19 18:04:44 +00:00
|
|
|
// Ensure that softDisabled is false if the add-on is not soft blocked
|
|
|
|
if (state != Ci.nsIBlocklistService.STATE_SOFTBLOCKED)
|
2012-05-27 12:21:48 +00:00
|
|
|
addon.softDisabled = false;
|
2011-05-19 18:04:44 +00:00
|
|
|
|
|
|
|
// Don't warn about add-ons becoming unblocked.
|
|
|
|
if (state == Ci.nsIBlocklistService.STATE_NOT_BLOCKED)
|
|
|
|
continue;
|
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
// If an add-on has dropped from hard to soft blocked just mark it as
|
2011-05-19 18:04:44 +00:00
|
|
|
// soft disabled and don't warn about it.
|
2010-04-26 18:45:22 +00:00
|
|
|
if (state == Ci.nsIBlocklistService.STATE_SOFTBLOCKED &&
|
|
|
|
oldState == Ci.nsIBlocklistService.STATE_BLOCKED) {
|
2012-05-27 12:21:48 +00:00
|
|
|
addon.softDisabled = true;
|
2010-04-26 18:45:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
2008-11-02 12:13:48 +00:00
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
// If the add-on is already disabled for some reason then don't warn
|
|
|
|
// about it
|
2012-05-27 12:21:48 +00:00
|
|
|
if (!addon.isActive)
|
2010-04-26 18:45:22 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
addonList.push({
|
2012-05-27 12:21:48 +00:00
|
|
|
name: addon.name,
|
|
|
|
version: addon.version,
|
|
|
|
icon: addon.iconURL,
|
2010-04-26 18:45:22 +00:00
|
|
|
disable: false,
|
|
|
|
blocked: state == Ci.nsIBlocklistService.STATE_BLOCKED,
|
2012-05-27 12:21:48 +00:00
|
|
|
item: addon,
|
|
|
|
url: self.getAddonBlocklistURL(addon.id),
|
2010-04-26 18:45:22 +00:00
|
|
|
});
|
|
|
|
}
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
AddonManagerPrivate.updateAddonAppDisabledStates();
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
var phs = Cc["@mozilla.org/plugin/host;1"].
|
|
|
|
getService(Ci.nsIPluginHost);
|
|
|
|
var plugins = phs.getPluginTags();
|
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let plugin of plugins) {
|
2010-04-26 18:45:22 +00:00
|
|
|
let oldState = -1;
|
|
|
|
if (oldPluginEntries)
|
2012-05-27 12:21:48 +00:00
|
|
|
oldState = self._getPluginBlocklistState(plugin, oldPluginEntries);
|
|
|
|
let state = self.getPluginBlocklistState(plugin);
|
|
|
|
LOG("Blocklist state for " + plugin.name + " changed from " +
|
2010-05-06 19:57:58 +00:00
|
|
|
oldState + " to " + state);
|
2010-04-26 18:45:22 +00:00
|
|
|
// We don't want to re-warn about items
|
|
|
|
if (state == oldState)
|
|
|
|
continue;
|
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
if (plugin.blocklisted) {
|
2010-04-26 18:45:22 +00:00
|
|
|
if (state == Ci.nsIBlocklistService.STATE_SOFTBLOCKED)
|
2012-05-27 12:21:48 +00:00
|
|
|
plugin.disabled = true;
|
2009-10-02 11:26:04 +00:00
|
|
|
}
|
2012-05-27 12:21:48 +00:00
|
|
|
else if (!plugin.disabled && state != Ci.nsIBlocklistService.STATE_NOT_BLOCKED) {
|
2010-04-26 18:45:22 +00:00
|
|
|
if (state == Ci.nsIBlocklistService.STATE_OUTDATED) {
|
|
|
|
gPref.setBoolPref(PREF_PLUGINS_NOTIFYUSER, true);
|
|
|
|
}
|
2012-07-11 15:56:34 +00:00
|
|
|
else if (state != Ci.nsIBlocklistService.STATE_VULNERABLE_UPDATE_AVAILABLE &&
|
|
|
|
state != Ci.nsIBlocklistService.STATE_VULNERABLE_NO_UPDATE) {
|
2010-04-26 18:45:22 +00:00
|
|
|
addonList.push({
|
2012-05-27 12:21:48 +00:00
|
|
|
name: plugin.name,
|
|
|
|
version: plugin.version,
|
2010-04-26 18:45:22 +00:00
|
|
|
icon: "chrome://mozapps/skin/plugins/pluginGeneric.png",
|
|
|
|
disable: false,
|
|
|
|
blocked: state == Ci.nsIBlocklistService.STATE_BLOCKED,
|
2012-05-27 12:21:48 +00:00
|
|
|
item: plugin,
|
|
|
|
url: self.getPluginBlocklistURL(plugin),
|
2010-04-26 18:45:22 +00:00
|
|
|
});
|
|
|
|
}
|
2009-10-02 11:26:04 +00:00
|
|
|
}
|
2012-05-27 12:21:48 +00:00
|
|
|
plugin.blocklisted = state == Ci.nsIBlocklistService.STATE_BLOCKED;
|
2012-07-11 15:56:34 +00:00
|
|
|
if (state == Ci.nsIBlocklistService.STATE_VULNERABLE_UPDATE_AVAILABLE ||
|
|
|
|
state == Ci.nsIBlocklistService.STATE_VULNERABLE_NO_UPDATE)
|
|
|
|
plugin.clicktoplay = true;
|
2012-09-07 23:55:19 +00:00
|
|
|
// turn off clicktoplay if it was previously set by the blocklist
|
|
|
|
else if (oldState == Ci.nsIBlocklistService.STATE_VULNERABLE_UPDATE_AVAILABLE ||
|
|
|
|
oldState == Ci.nsIBlocklistService.STATE_VULNERABLE_NO_UPDATE)
|
|
|
|
plugin.clicktoplay = false;
|
2008-11-02 12:13:48 +00:00
|
|
|
}
|
|
|
|
|
2011-05-19 18:04:44 +00:00
|
|
|
if (addonList.length == 0) {
|
|
|
|
Services.obs.notifyObservers(self, "blocklist-updated", "");
|
2010-04-26 18:45:22 +00:00
|
|
|
return;
|
2011-05-19 18:04:44 +00:00
|
|
|
}
|
2010-05-01 18:04:44 +00:00
|
|
|
|
2010-09-02 01:35:06 +00:00
|
|
|
if ("@mozilla.org/addons/blocklist-prompt;1" in Cc) {
|
|
|
|
try {
|
|
|
|
let blockedPrompter = Cc["@mozilla.org/addons/blocklist-prompt;1"]
|
|
|
|
.getService(Ci.nsIBlocklistPrompt);
|
|
|
|
blockedPrompter.prompt(addonList);
|
|
|
|
} catch (e) {
|
|
|
|
LOG(e);
|
|
|
|
}
|
2011-05-19 18:04:44 +00:00
|
|
|
Services.obs.notifyObservers(self, "blocklist-updated", "");
|
2010-09-02 01:35:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-04-26 18:45:22 +00:00
|
|
|
var args = {
|
|
|
|
restart: false,
|
|
|
|
list: addonList
|
|
|
|
};
|
|
|
|
// This lets the dialog get the raw js object
|
|
|
|
args.wrappedJSObject = args;
|
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
/*
|
|
|
|
Some tests run without UI, so the async code listens to a message
|
|
|
|
that can be sent programatically
|
|
|
|
*/
|
|
|
|
let applyBlocklistChanges = function() {
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let addon of addonList) {
|
|
|
|
if (!addon.disable)
|
2011-05-25 21:31:56 +00:00
|
|
|
continue;
|
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
if (addon.item instanceof Ci.nsIPluginTag)
|
|
|
|
addon.item.disabled = true;
|
2011-05-25 21:31:56 +00:00
|
|
|
else
|
2012-05-27 12:21:48 +00:00
|
|
|
addon.item.softDisabled = true;
|
2011-05-25 21:31:56 +00:00
|
|
|
}
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
if (args.restart)
|
|
|
|
restartApp();
|
2010-04-26 18:45:22 +00:00
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
Services.obs.notifyObservers(self, "blocklist-updated", "");
|
2011-07-19 20:16:35 +00:00
|
|
|
Services.obs.removeObserver(applyBlocklistChanges, "addon-blocklist-closed");
|
2010-04-26 18:45:22 +00:00
|
|
|
}
|
2008-11-02 12:13:48 +00:00
|
|
|
|
2011-05-25 21:31:56 +00:00
|
|
|
Services.obs.addObserver(applyBlocklistChanges, "addon-blocklist-closed", false)
|
2011-05-19 18:04:44 +00:00
|
|
|
|
2011-07-19 20:16:35 +00:00
|
|
|
function blocklistUnloadHandler(event) {
|
|
|
|
if (event.target.location == URI_BLOCKLIST_DIALOG) {
|
2011-07-22 02:20:21 +00:00
|
|
|
applyBlocklistChanges();
|
2011-07-19 20:16:35 +00:00
|
|
|
blocklistWindow.removeEventListener("unload", blocklistUnloadHandler);
|
2011-07-22 02:20:21 +00:00
|
|
|
}
|
2011-07-19 20:16:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let blocklistWindow = Services.ww.openWindow(null, URI_BLOCKLIST_DIALOG, "",
|
|
|
|
"chrome,centerscreen,dialog,titlebar", args);
|
|
|
|
blocklistWindow.addEventListener("unload", blocklistUnloadHandler, false);
|
2010-04-26 18:45:22 +00:00
|
|
|
});
|
2007-08-16 00:43:12 +00:00
|
|
|
},
|
|
|
|
|
2007-08-25 06:12:05 +00:00
|
|
|
classID: Components.ID("{66354bc9-7ed1-4692-ae1d-8da97d6b205e}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver,
|
|
|
|
Ci.nsIBlocklistService,
|
|
|
|
Ci.nsITimerCallback]),
|
2007-08-16 00:43:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper for constructing a blocklist.
|
|
|
|
*/
|
|
|
|
function BlocklistItemData(versionRangeElement) {
|
|
|
|
var versionRange = this.getBlocklistVersionRange(versionRangeElement);
|
|
|
|
this.minVersion = versionRange.minVersion;
|
|
|
|
this.maxVersion = versionRange.maxVersion;
|
2008-11-02 12:13:48 +00:00
|
|
|
if (versionRangeElement && versionRangeElement.hasAttribute("severity"))
|
|
|
|
this.severity = versionRangeElement.getAttribute("severity");
|
|
|
|
else
|
|
|
|
this.severity = DEFAULT_SEVERITY;
|
2012-07-11 15:56:34 +00:00
|
|
|
if (versionRangeElement && versionRangeElement.hasAttribute("vulnerabilitystatus")) {
|
|
|
|
this.vulnerabilityStatus = versionRangeElement.getAttribute("vulnerabilitystatus");
|
|
|
|
} else {
|
|
|
|
this.vulnerabilityStatus = VULNERABILITYSTATUS_NONE;
|
|
|
|
}
|
2007-08-16 00:43:12 +00:00
|
|
|
this.targetApps = { };
|
|
|
|
var found = false;
|
|
|
|
|
|
|
|
if (versionRangeElement) {
|
|
|
|
for (var i = 0; i < versionRangeElement.childNodes.length; ++i) {
|
2007-11-07 08:57:19 +00:00
|
|
|
var targetAppElement = versionRangeElement.childNodes.item(i);
|
|
|
|
if (!(targetAppElement instanceof Ci.nsIDOMElement) ||
|
2007-08-16 00:43:12 +00:00
|
|
|
targetAppElement.localName != "targetApplication")
|
|
|
|
continue;
|
|
|
|
found = true;
|
|
|
|
// default to the current application if id is not provided.
|
|
|
|
var appID = targetAppElement.hasAttribute("id") ? targetAppElement.getAttribute("id") : gApp.ID;
|
|
|
|
this.targetApps[appID] = this.getBlocklistAppVersions(targetAppElement);
|
|
|
|
}
|
|
|
|
}
|
2008-09-02 11:53:34 +00:00
|
|
|
// Default to all versions of the current application when no targetApplication
|
|
|
|
// elements were found
|
2007-08-16 00:43:12 +00:00
|
|
|
if (!found)
|
|
|
|
this.targetApps[gApp.ID] = this.getBlocklistAppVersions(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
BlocklistItemData.prototype = {
|
2008-09-02 11:53:34 +00:00
|
|
|
/**
|
|
|
|
* Tests if a version of an item is included in the version range and target
|
|
|
|
* application information represented by this BlocklistItemData using the
|
|
|
|
* provided application and toolkit versions.
|
|
|
|
* @param version
|
|
|
|
* The version of the item being tested.
|
|
|
|
* @param appVersion
|
|
|
|
* The application version to test with.
|
|
|
|
* @param toolkitVersion
|
|
|
|
* The toolkit version to test with.
|
|
|
|
* @returns True if the version range covers the item version and application
|
|
|
|
* or toolkit version.
|
|
|
|
*/
|
|
|
|
includesItem: function(version, appVersion, toolkitVersion) {
|
|
|
|
// Some platforms have no version for plugins, these don't match if there
|
|
|
|
// was a min/maxVersion provided
|
|
|
|
if (!version && (this.minVersion || this.maxVersion))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check if the item version matches
|
|
|
|
if (!this.matchesRange(version, this.minVersion, this.maxVersion))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check if the application version matches
|
|
|
|
if (this.matchesTargetRange(gApp.ID, appVersion))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check if the toolkit version matches
|
|
|
|
return this.matchesTargetRange(TOOLKIT_ID, toolkitVersion);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a version is higher than or equal to the minVersion (if provided)
|
|
|
|
* and lower than or equal to the maxVersion (if provided).
|
|
|
|
* @param version
|
|
|
|
* The version to test.
|
|
|
|
* @param minVersion
|
|
|
|
* The minimum version. If null it is assumed that version is always
|
|
|
|
* larger.
|
|
|
|
* @param maxVersion
|
|
|
|
* The maximum version. If null it is assumed that version is always
|
|
|
|
* smaller.
|
|
|
|
*/
|
|
|
|
matchesRange: function(version, minVersion, maxVersion) {
|
|
|
|
if (minVersion && gVersionChecker.compare(version, minVersion) < 0)
|
|
|
|
return false;
|
|
|
|
if (maxVersion && gVersionChecker.compare(version, maxVersion) > 0)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if there is a matching range for the given target application id and
|
|
|
|
* version.
|
|
|
|
* @param appID
|
|
|
|
* The application ID to test for, may be for an application or toolkit
|
|
|
|
* @param appVersion
|
|
|
|
* The version of the application to test for.
|
|
|
|
* @returns True if this version range covers the application version given.
|
|
|
|
*/
|
|
|
|
matchesTargetRange: function(appID, appVersion) {
|
|
|
|
var blTargetApp = this.targetApps[appID];
|
|
|
|
if (!blTargetApp)
|
|
|
|
return false;
|
|
|
|
|
2012-05-27 12:21:48 +00:00
|
|
|
for (let app of blTargetApp) {
|
|
|
|
if (this.matchesRange(appVersion, app.minVersion, app.maxVersion))
|
2008-09-02 11:53:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves a version range (e.g. minVersion and maxVersion) for a
|
|
|
|
* blocklist item's targetApplication element.
|
|
|
|
* @param targetAppElement
|
|
|
|
* A targetApplication blocklist element.
|
|
|
|
* @returns An array of JS objects with the following properties:
|
|
|
|
* "minVersion" The minimum version in a version range (default = null).
|
|
|
|
* "maxVersion" The maximum version in a version range (default = null).
|
|
|
|
*/
|
2007-08-16 00:43:12 +00:00
|
|
|
getBlocklistAppVersions: function(targetAppElement) {
|
|
|
|
var appVersions = [ ];
|
|
|
|
|
|
|
|
if (targetAppElement) {
|
|
|
|
for (var i = 0; i < targetAppElement.childNodes.length; ++i) {
|
2007-11-07 08:57:19 +00:00
|
|
|
var versionRangeElement = targetAppElement.childNodes.item(i);
|
|
|
|
if (!(versionRangeElement instanceof Ci.nsIDOMElement) ||
|
2007-08-16 00:43:12 +00:00
|
|
|
versionRangeElement.localName != "versionRange")
|
|
|
|
continue;
|
|
|
|
appVersions.push(this.getBlocklistVersionRange(versionRangeElement));
|
|
|
|
}
|
|
|
|
}
|
2008-09-02 11:53:34 +00:00
|
|
|
// return minVersion = null and maxVersion = null if no specific versionRange
|
|
|
|
// elements were found
|
|
|
|
if (appVersions.length == 0)
|
|
|
|
appVersions.push(this.getBlocklistVersionRange(null));
|
2007-08-16 00:43:12 +00:00
|
|
|
return appVersions;
|
|
|
|
},
|
|
|
|
|
2008-09-02 11:53:34 +00:00
|
|
|
/**
|
|
|
|
* Retrieves a version range (e.g. minVersion and maxVersion) for a blocklist
|
|
|
|
* versionRange element.
|
|
|
|
* @param versionRangeElement
|
|
|
|
* The versionRange blocklist element.
|
|
|
|
* @returns A JS object with the following properties:
|
|
|
|
* "minVersion" The minimum version in a version range (default = null).
|
|
|
|
* "maxVersion" The maximum version in a version range (default = null).
|
|
|
|
*/
|
2007-08-16 00:43:12 +00:00
|
|
|
getBlocklistVersionRange: function(versionRangeElement) {
|
2008-09-02 11:53:34 +00:00
|
|
|
var minVersion = null;
|
|
|
|
var maxVersion = null;
|
2007-08-16 00:43:12 +00:00
|
|
|
if (!versionRangeElement)
|
|
|
|
return { minVersion: minVersion, maxVersion: maxVersion };
|
|
|
|
|
|
|
|
if (versionRangeElement.hasAttribute("minVersion"))
|
|
|
|
minVersion = versionRangeElement.getAttribute("minVersion");
|
|
|
|
if (versionRangeElement.hasAttribute("maxVersion"))
|
|
|
|
maxVersion = versionRangeElement.getAttribute("maxVersion");
|
|
|
|
|
|
|
|
return { minVersion: minVersion, maxVersion: maxVersion };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-06-22 16:59:15 +00:00
|
|
|
var NSGetFactory = XPCOMUtils.generateNSGetFactory([Blocklist]);
|