Closed
Bug 827882
Opened 12 years ago
Closed 12 years ago
IonMonkey: Crash [@ js::ToBooleanSlow] or "Assertion failure: !val.isMagic(),"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 827821
Tracking | Status | |
---|---|---|
firefox18 | --- | unaffected |
firefox19 | --- | unaffected |
firefox20 | - | affected |
firefox21 | - | affected |
firefox-esr10 | --- | unaffected |
firefox-esr17 | --- | unaffected |
b2g18 | --- | unaffected |
People
(Reporter: decoder, Unassigned)
References
Details
(4 keywords, Whiteboard: [jsbugmon:update])
Crash Data
Attachments
(1 file, 1 obsolete file)
12.75 KB,
text/plain
|
Details |
The following testcase asserts on mozilla-central revision 795632f0e4fe (run with --ion-eager):
function TestCase(n, d, e, a) {}
function reportCompare (expected, actual, description) {
var testcase = new TestCase();
}
eval("(function() { \
var summary = 'Do not hang/crash |for each| over object with getter set to map';\
var actual = 'No Crash';\
var expect = 'No Crash';\
reportCompare(expect, actual, summary);\
})();");
eval("(function() { TestCase = Object.prototype.toString; })();");
eval("gc(); reportCompare();");
Reporter | ||
Comment 1•12 years ago
|
||
S-s due to gc being involved.
Blocks: IonFuzz
Whiteboard: [jsbugmon:update,bisect]
Reporter | ||
Updated•12 years ago
|
Whiteboard: [jsbugmon:update,bisect] → [jsbugmon:update]
Reporter | ||
Comment 2•12 years ago
|
||
JSBugMon: Bisection requested, result:
autoBisect shows this is probably related to the following changeset:
The first bad revision is:
changeset: 117618:67e44e98555c
user: Hannes Verschore
date: Fri Jan 04 17:11:32 2013 +0100
summary: Bug 825705: Creating this on caller-side shouldn't query prototype for unknown objects, r=jandem
This iteration took 0.502 seconds to run.
Reporter | ||
Comment 3•12 years ago
|
||
Needinfo from Hannes, based on comment 2 :) Possibly dup to bug 827821, as it has the same regressor.
Flags: needinfo?(hv1989)
Comment 4•12 years ago
|
||
Partially reduced testcase that crashes 32-bit opt shell at js::ToBooleanSlow (likely a null deref?) with --no-jm and asserts similarly.
I'll continue to try reducing this testcase.
Updated•12 years ago
|
Blocks: 825705
Crash Signature: [@ js::ToBooleanSlow]
Keywords: regression
Summary: IonMonkey: Assertion failure: !val.isMagic(), at jsobj.cpp:4229 → IonMonkey: Crash [@ js::ToBooleanSlow] or "Assertion failure: !val.isMagic(),"
Comment 5•12 years ago
|
||
s = newGlobal('');
function f(code) {
try {
evalcx(code, s)
} catch (e) {}
}
f("\
options('strict');\
var x;\
y='';\
Object.preventExtensions(this);\
y=new String;\
y.toString=(function(){x=new Iterator});\
");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("var z;");
f("\
Iterator=String.prototype.toUpperCase;\
v=(function(){});\
Object.defineProperty(Function,0,({enumerable:x}));\
")
Reduced version of the testcase in comment 4. Thanks nbp for helping out with reduction.
(gdb) x/i $pc
=> 0x80867ae <js::ToBooleanSlow(JS::Value const&)+30>: mov (%edx),%ecx
(gdb) x/b $edx
0xa: Cannot access memory at address 0xa
(gdb) x/b $ecx
0xffffff84: Cannot access memory at address 0xffffff84
(gdb)
Seems highly likely to be sec-critical since 0xffffff84 is being accessed.
status-b2g18:
--- → unaffected
status-firefox-esr10:
--- → unaffected
status-firefox18:
--- → unaffected
status-firefox19:
--- → unaffected
status-firefox20:
--- → affected
status-firefox21:
--- → affected
status-firefox-esr17:
--- → unaffected
tracking-firefox20:
--- → ?
tracking-firefox21:
--- → ?
Keywords: sec-critical
Comment 6•12 years ago
|
||
Attachment #700153 -
Attachment is obsolete: true
Comment 7•12 years ago
|
||
Testcase in comment 5 requires --no-jm and also crashes on 64-bit js shells. It seems to go away with --ion-eager.
Hardware: x86 → All
Updated•12 years ago
|
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Flags: needinfo?(hv1989)
Resolution: --- → DUPLICATE
Updated•9 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•