mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 1ca1abed8c9a (bug 872981) for xpcshell crashes.
CLOSED TREE
This commit is contained in:
parent
1b3941c1b0
commit
151313bdcd
@ -29,12 +29,8 @@
|
||||
#include "nsICrashReporter.h"
|
||||
#endif
|
||||
|
||||
#include "nsIConsoleService.h"
|
||||
|
||||
// 1 MB should be enough for everyone.
|
||||
static const uint32_t MAX_PREF_LENGTH = 1 * 1024 * 1024;
|
||||
// Actually, 4kb should be enough for everyone.
|
||||
static const uint32_t MAX_ADVISABLE_PREF_LENGTH = 4 * 1024;
|
||||
|
||||
// Definitions
|
||||
struct EnumerateData {
|
||||
@ -172,16 +168,6 @@ NS_IMETHODIMP nsPrefBranch::GetCharPref(const char *aPrefName, char **_retval)
|
||||
}
|
||||
|
||||
NS_IMETHODIMP nsPrefBranch::SetCharPref(const char *aPrefName, const char *aValue)
|
||||
{
|
||||
nsresult rv = CheckSanityOfStringLength(aPrefName, aValue);
|
||||
if (NS_FAILED(rv)) {
|
||||
return rv;
|
||||
}
|
||||
return SetCharPrefInternal(aPrefName, aValue);
|
||||
}
|
||||
|
||||
nsresult nsPrefBranch::SetCharPrefInternal(const char *aPrefName, const char *aValue)
|
||||
|
||||
{
|
||||
if (GetContentChild()) {
|
||||
NS_ERROR("cannot set pref from content process");
|
||||
@ -356,37 +342,6 @@ NS_IMETHODIMP nsPrefBranch::GetComplexValue(const char *aPrefName, const nsIID &
|
||||
return NS_NOINTERFACE;
|
||||
}
|
||||
|
||||
nsresult nsPrefBranch::CheckSanityOfStringLength(const char* aPrefName, const char* aValue) {
|
||||
return CheckSanityOfStringLength(aPrefName, strlen(aValue));
|
||||
}
|
||||
|
||||
nsresult nsPrefBranch::CheckSanityOfStringLength(const char* aPrefName, const nsAString& aValue) {
|
||||
return CheckSanityOfStringLength(aPrefName, aValue.Length());
|
||||
}
|
||||
|
||||
nsresult nsPrefBranch::CheckSanityOfStringLength(const char* aPrefName, const uint32_t aLength) {
|
||||
if (aLength > MAX_PREF_LENGTH) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
if (aLength <= MAX_ADVISABLE_PREF_LENGTH) {
|
||||
return NS_OK;
|
||||
}
|
||||
nsresult rv;
|
||||
nsCOMPtr<nsIConsoleService> console = do_GetService("@mozilla.org/consoleservice;1", &rv);
|
||||
if (NS_FAILED(rv)) {
|
||||
return rv;
|
||||
}
|
||||
nsAutoCString message(nsPrintfCString("Warning: attempting to write %d bytes to preference %s. This is bad for general performance and memory usage. Such an amount of data should rather be written to an external file.",
|
||||
aLength,
|
||||
aPrefName));
|
||||
rv = console->LogStringMessage(NS_ConvertUTF8toUTF16(message).get());
|
||||
if (NS_FAILED(rv)) {
|
||||
return rv;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID & aType, nsISupports *aValue)
|
||||
{
|
||||
if (GetContentChild()) {
|
||||
@ -407,7 +362,7 @@ NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID &
|
||||
|
||||
rv = file->GetPersistentDescriptor(descriptorString);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
rv = SetCharPrefInternal(aPrefName, descriptorString.get());
|
||||
rv = SetCharPref(aPrefName, descriptorString.get());
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
@ -416,7 +371,7 @@ NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID &
|
||||
nsCOMPtr<nsIRelativeFilePref> relFilePref = do_QueryInterface(aValue);
|
||||
if (!relFilePref)
|
||||
return NS_NOINTERFACE;
|
||||
|
||||
|
||||
nsCOMPtr<nsIFile> file;
|
||||
relFilePref->GetFile(getter_AddRefs(file));
|
||||
if (!file)
|
||||
@ -436,13 +391,13 @@ NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID &
|
||||
rv = file->GetRelativeDescriptor(relativeToFile, relDescriptor);
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
|
||||
|
||||
nsAutoCString descriptorString;
|
||||
descriptorString.Append('[');
|
||||
descriptorString.Append(relativeToKey);
|
||||
descriptorString.Append(']');
|
||||
descriptorString.Append(relDescriptor);
|
||||
return SetCharPrefInternal(aPrefName, descriptorString.get());
|
||||
return SetCharPref(aPrefName, descriptorString.get());
|
||||
}
|
||||
|
||||
if (aType.Equals(NS_GET_IID(nsISupportsString))) {
|
||||
@ -453,12 +408,10 @@ NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID &
|
||||
|
||||
rv = theString->GetData(wideString);
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
// Check sanity of string length before any lengthy conversion
|
||||
rv = CheckSanityOfStringLength(aPrefName, wideString);
|
||||
if (NS_FAILED(rv)) {
|
||||
return rv;
|
||||
if (wideString.Length() > MAX_PREF_LENGTH) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
rv = SetCharPrefInternal(aPrefName, NS_ConvertUTF16toUTF8(wideString).get());
|
||||
rv = SetCharPref(aPrefName, NS_ConvertUTF16toUTF8(wideString).get());
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
@ -472,12 +425,10 @@ NS_IMETHODIMP nsPrefBranch::SetComplexValue(const char *aPrefName, const nsIID &
|
||||
|
||||
rv = theString->GetData(getter_Copies(wideString));
|
||||
if (NS_SUCCEEDED(rv)) {
|
||||
// Check sanity of string length before any lengthy conversion
|
||||
rv = CheckSanityOfStringLength(aPrefName, wideString);
|
||||
if (NS_FAILED(rv)) {
|
||||
return rv;
|
||||
if (wideString.Length() > MAX_PREF_LENGTH) {
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
}
|
||||
rv = SetCharPrefInternal(aPrefName, NS_ConvertUTF16toUTF8(wideString).get());
|
||||
rv = SetCharPref(aPrefName, NS_ConvertUTF16toUTF8(wideString).get());
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
|
@ -194,12 +194,6 @@ protected:
|
||||
{ }
|
||||
|
||||
nsresult GetDefaultFromPropertiesFile(const char *aPrefName, PRUnichar **return_buf);
|
||||
// As SetCharPref, but without any check on the length of |aValue|
|
||||
nsresult SetCharPrefInternal(const char *aPrefName, const char *aValue);
|
||||
// Reject strings that are more than 1Mb, warn if strings are more than 16kb
|
||||
nsresult CheckSanityOfStringLength(const char* aPrefName, const nsAString& aValue);
|
||||
nsresult CheckSanityOfStringLength(const char* aPrefName, const char* aValue);
|
||||
nsresult CheckSanityOfStringLength(const char* aPrefName, const uint32_t aLength);
|
||||
void RemoveExpiredCallback(PrefCallback *aCallback);
|
||||
const char *getPrefName(const char *aPrefName);
|
||||
void freeObserverList(void);
|
||||
|
@ -7,7 +7,6 @@ const NS_APP_USER_PROFILE_50_DIR = "ProfD";
|
||||
const Ci = Components.interfaces;
|
||||
const Cc = Components.classes;
|
||||
const Cr = Components.results;
|
||||
const Cu = Components.utils;
|
||||
|
||||
function do_check_throws(f, result, stack)
|
||||
{
|
||||
|
@ -1,89 +0,0 @@
|
||||
/* 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/. */
|
||||
|
||||
Cu.import("resource://gre/modules/commonjs/sdk/core/promise.js");
|
||||
|
||||
let cs = Cc["@mozilla.org/consoleservice;1"].
|
||||
getService(Ci.nsIConsoleService);
|
||||
let ps = Cc["@mozilla.org/preferences-service;1"].
|
||||
getService(Ci.nsIPrefService);
|
||||
|
||||
function makeBuffer(length) {
|
||||
let string = "x";
|
||||
while (string.length < length) {
|
||||
string = string + string;
|
||||
}
|
||||
if (string.length > length) {
|
||||
string = string.substring(length - string.length);
|
||||
}
|
||||
return string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @resolves |true| if execution proceeded without warning,
|
||||
* |false| if there was a warning.
|
||||
*/
|
||||
function checkWarning(pref, buffer) {
|
||||
let deferred = Promise.defer();
|
||||
let complete = false;
|
||||
let listener = {
|
||||
observe: function(event) {
|
||||
let message = event.message;
|
||||
if (!(message.startsWith("Warning: attempting to write")
|
||||
&& message.contains(pref))) {
|
||||
return;
|
||||
}
|
||||
if (complete) {
|
||||
return;
|
||||
}
|
||||
complete = true;
|
||||
do_print("Warning while setting " + pref);
|
||||
cs.unregisterListener(listener);
|
||||
deferred.resolve(true);
|
||||
}
|
||||
};
|
||||
do_timeout(1000, function() {
|
||||
if (complete) {
|
||||
return;
|
||||
}
|
||||
complete = true;
|
||||
do_print("No warning while setting " + pref);
|
||||
cs.unregisterListener(listener);
|
||||
deferred.resolve(false);
|
||||
});
|
||||
cs.registerListener(listener);
|
||||
ps.setCharPref(pref, buffer);
|
||||
return deferred.promise;
|
||||
}
|
||||
|
||||
function run_test() {
|
||||
run_next_test();
|
||||
}
|
||||
|
||||
add_task(function() {
|
||||
// Very large change, should fail
|
||||
try {
|
||||
ps.setCharPref("string.fail", makeBuffer(16 * 1024 * 1024));
|
||||
do_print("Writing to string.fail should have failed");
|
||||
do_check_true(false); // We should have failed
|
||||
} catch (ex if ex.result == Cr.NS_ERROR_OUT_OF_MEMORY) {
|
||||
do_print("Writing to string.fail failed for the right reasons");
|
||||
do_check_true(true); // Failed for the right reason
|
||||
} catch (ex) {
|
||||
do_print("Writing to string.fail failed for bad reasons");
|
||||
do_check_true(false); // Failed for the wrong reason
|
||||
}
|
||||
|
||||
// Simple change, shouldn't cause a warning
|
||||
do_print("Checking that a simple change doesn't cause a warning");
|
||||
let buf = makeBuffer(100);
|
||||
let warned = yield checkWarning("string.accept", buf);
|
||||
do_check_false(warned);
|
||||
|
||||
// Large change, should cause a warning
|
||||
do_print("Checking that a large change causes a warning");
|
||||
buf = makeBuffer(32 * 1024);
|
||||
warned = yield checkWarning("string.warn", buf);
|
||||
do_check_true(warned);
|
||||
});
|
@ -2,7 +2,6 @@
|
||||
head = head_libPrefs.js
|
||||
tail =
|
||||
|
||||
[test_warnings.js]
|
||||
[test_bug345529.js]
|
||||
[test_bug506224.js]
|
||||
[test_bug577950.js]
|
||||
|
Loading…
Reference in New Issue
Block a user