Closed
Bug 452786
Opened 16 years ago
Closed 16 years ago
Crash due to insufficient class checking in Date class
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
People
(Reporter: joachim.kuebart, Assigned: igor)
References
()
Details
(Keywords: regression, verified1.9.0.4, Whiteboard: [sg:critical?] post 1.8 branch)
Attachments
(3 files)
4.29 KB,
patch
|
mrbkap
:
review+
dveditz
:
approval1.9.0.4+
|
Details | Diff | Splinter Review |
260 bytes,
text/html
|
Details | |
4.54 KB,
patch
|
igor
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1
Build Identifier:
This bug crashes the browser without any possibility for user intervention. This is exploitable in the browser. Do *not* click the given link if you want to keep anything in your current Firefox session.
Reproducible: Always
Steps to Reproduce:
(new Date()).getMonth.call(new Function())
Actual Results:
jsshell (or Firefox) crash.
Expected Results:
Exception.
The built-in Date class doesn't check the class of its "this" object sufficiently. Affected methods are getYear(), getMonth(), getDate() and so on.
This affects all of Date's methods that internally call GetLocalTime() (in jsdate.c) which doesn't check the class of object passed in (compare with JS_InstanceOf() call in GetUTCTime()). The object passed in needs to have at least 2 private slots, like
a) the global object
b) Function objects
c) Iterator objects
The value from the private slot is passed to JSVAL_TO_DOUBLE() without further checks in GetLocalTime(), leading to bogus pointer dereference for objects not of class Date.
In addition to adding this to the test suite, this sort of thing could be added to jsparsefuzz.js (i.e. the fuzzer should be modified to use <method>.call() with random arguments if it's not already doing this).
I don't have time right now to check out a current tree and post a patch and will not get around to it until some time next week.
Assignee | ||
Updated•16 years ago
|
Assignee: general → igor
Assignee | ||
Comment 1•16 years ago
|
||
The essence of the fix is the addition of the missing instanceof check for GetAndCacheLocalTime. I also took an opportunity in the patch to replace heavy JS_(Get|Set)ReservvedSlot calls with direct slot access for simpler code.
Attachment #336054 -
Flags: review?(mrbkap)
Reporter | ||
Comment 2•16 years ago
|
||
Igor's patch should fix the issue AFAICS. If needed I can report back next week when I get a chance to build trunk and verify.
Comment 3•16 years ago
|
||
Preserving a copy of the testcase in Bugzilla.
Updated•16 years ago
|
Attachment #336054 -
Flags: review?(mrbkap) → review+
Comment 4•16 years ago
|
||
Much nicer -- thanks, Igor.
/be
Assignee | ||
Comment 5•16 years ago
|
||
landed on trunk - http://hg.mozilla.org/mozilla-central/rev/42b53b1f04e6
Assignee | ||
Updated•16 years ago
|
Status: NEW → RESOLVED
Closed: 16 years ago
Flags: blocking1.9.0.2?
Flags: blocking1.8.1.18?
Resolution: --- → FIXED
Assignee | ||
Updated•16 years ago
|
Attachment #336054 -
Flags: approval1.9.0.2?
Assignee | ||
Comment 6•16 years ago
|
||
Comment on attachment 336054 [details] [diff] [review]
fix v1
The patch applies to 1.9.0 branch as-is.
Assignee | ||
Comment 7•16 years ago
|
||
The bug only exists on 1.9.0 and later and is an regression from the bug 340992.
Blocks: 340992
Flags: blocking1.8.1.18?
Comment 8•16 years ago
|
||
Is it worth doing a version of the patch that only has the fix and not the cleanup, for risk reduction on 1.9.0.x?
Comment 9•16 years ago
|
||
(In reply to comment #8)
> Is it worth doing a version of the patch that only has the fix and not the
> cleanup, for risk reduction on 1.9.0.x?
There's no risk reduction in messing with a reviewed patch that cuts out overhead and doubt about reserved slot complexities that do not affect fslots' dimension or lifetime. Making more variation between trees adds tiny risk too, probably more than any risk in sticking this patch in as-is. But it's too tiny to estimate or measure, or to be worth arguing much about.
/be
Comment 10•16 years ago
|
||
1.9.0.2 is in release testing, this will have to sail with the next ship.
Flags: wanted1.8.1.x-
Flags: blocking1.9.0.3+
Flags: blocking1.9.0.2?
Keywords: regression
Whiteboard: [sg:critical?] post 1.8 branch
Updated•16 years ago
|
Attachment #336054 -
Flags: approval1.9.0.2? → approval1.9.0.3?
Comment 11•16 years ago
|
||
Comment on attachment 336054 [details] [diff] [review]
fix v1
Approved for 1.9.0.3, a=dveditz for release-drivers
Attachment #336054 -
Flags: approval1.9.0.3? → approval1.9.0.3+
Assignee | ||
Comment 12•16 years ago
|
||
It turned out the patch required a trivial change for 1.9.0. It applies as-is, but the trunk version uses const to define constant names. But that does not work with in C sources as in C such constants are not real constant expressions. So I replaced constants with the preprocessor macros.
Here is the plain diff between the trunk and the branch patches:
diff /home/igor/s/fix_date.patch /home/igor/s/fix_date.1.9.0.patch
7c7
< +++ jsdate.c 27 Oct 2008 17:22:47 -0000
---
> +++ jsdate.c 27 Oct 2008 17:21:59 -0000
19,20c19,20
< +const uint32 JSSLOT_UTC_TIME = JSSLOT_PRIVATE;
< +const uint32 JSSLOT_LOCAL_TIME = JSSLOT_PRIVATE + 1;
---
> +#define JSSLOT_UTC_TIME JSSLOT_PRIVATE
> +#define JSSLOT_LOCAL_TIME (JSSLOT_PRIVATE + 1)
22c22
< +const uint32 DATE_RESERVED_SLOTS = 2;
---
> +#define DATE_RESERVED_SLOTS 2
Attachment #344937 -
Flags: review+
Assignee | ||
Comment 13•16 years ago
|
||
I landed the patch from the comment 12 on 1.9.0 branch:
Checking in jsdate.c;
/cvsroot/mozilla/js/src/jsdate.c,v <-- jsdate.c
new revision: 3.112; previous revision: 3.111
done
Keywords: fixed1.9.0.4
Comment 14•16 years ago
|
||
We now get the exception "TypeError on line 1: Date.prototype.getMonth called on incompatible Function"
Verified for 1.9.0.4 with Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.4pre) Gecko/2008102804 GranParadiso/3.0.4pre.
Same behavior in Trunk as well with Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b2pre) Gecko/20081028 Minefield/3.1b2pre.
Status: RESOLVED → VERIFIED
Keywords: fixed1.9.0.4 → verified1.9.0.4
Updated•16 years ago
|
Group: core-security
Comment 15•16 years ago
|
||
Checking in ecma_3/Date/regress-452786.js;
/cvsroot/mozilla/js/tests/ecma_3/Date/regress-452786.js,v <-- regress-452786.js
initial revision: 1.1
done
Flags: in-testsuite+
Flags: in-litmus-
Comment 16•16 years ago
|
||
Updated•16 years ago
|
Flags: wanted1.8.0.x-
You need to log in
before you can comment on or make changes to this bug.
Description
•