Closed Bug 1249183 Opened 9 years ago Closed 9 years ago

malloc can GC?

Categories

(Core :: JavaScript: GC, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla47
Tracking Status
firefox44 --- wontfix
firefox45 --- wontfix
firefox46 --- fixed
firefox47 --- fixed

People

(Reporter: sfink, Assigned: sfink)

References

Details

(Keywords: sec-moderate, Whiteboard: [post-critsmash-triage][adv-main46+] requires vulnerable add-on to exploit)

Attachments

(1 file)

Ok, this got ugly. Real ugly.

In trying to figure out why I was getting massive piles of hazards when I fixed the isSuppressConstructor annotation, I eventually got down to this stack:

    void js::ReportOutOfMemory(ExclusiveContext*)
    jscntxt.cpp:void PopulateReportBlame(JSContext*, JSErrorReport*)
    void js::NonBuiltinFrameIter::NonBuiltinFrameIter(JSContext*, JSPrincipals*)
    void js::NonBuiltinFrameIter::NonBuiltinFrameIter(JSContext*, JSPrincipals*)
    void js::NonBuiltinFrameIter::settle()
    js::FrameIter* js::FrameIter::operator++()
    void js::FrameIter::popInterpreterFrame()
    void js::FrameIter::popActivation()
    void js::FrameIter::settleOnActivation()
    IndirectCall: subsumes

I'm not totally sure that subsumes can actually GC, but I thought I tracked it through once and I had a lot of trouble proving that it couldn't. If it did GC, then it would be Bad, because ReportOOM is called by malloc() and it would really really be better if malloc did not GC.

ReportOOM suppresses GC in other areas, so it should suppress on this path too unless we can prove that this is a false positive.

Oh, hm. nsIPrincipal seems to be scriptable, including subsumes(). Oh dear.
It would be nice if you could tell me that this is unnecessary. The existing AutoSuppressGC guards are pretty narrowly scoped, but now that I'm adding it to the last function call of interest that I can see, it seems like we can lift it.
Attachment #8720604 - Flags: review?(terrence)
Assignee: nobody → sphink
Status: NEW → ASSIGNED
Comment on attachment 8720604 [details] [diff] [review]
Suppress GC harder

Review of attachment 8720604 [details] [diff] [review]:
-----------------------------------------------------------------

I think it makes sense to lift it. It's not like we want to allow any of ReportOOM to GC, ever.
Attachment #8720604 - Flags: review?(terrence) → review+
Is it fair to call this "sec-audit", or do you think there's a definite vulnerability here? Web content can't directly do anything with an nsIPrincipal. They could do actions that would cause us to call it though.
Group: core-security → javascript-core-security
Flags: needinfo?(sphink)
https://hg.mozilla.org/mozilla-central/rev/1d5dd700e41e
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla47
(In reply to Daniel Veditz [:dveditz] from comment #3)
> Is it fair to call this "sec-audit", or do you think there's a definite
> vulnerability here? Web content can't directly do anything with an
> nsIPrincipal. They could do actions that would cause us to call it though.

Oops, sorry. In light of this question, I prematurely landed this.

I was guessing that the only way to get a vulnerability out of this would be to have an addon that implemented nsIPrincipal.subsumes with a script that did something that could GC, and that seemed unlikely to me. But given that it is intentionally scriptable, I may be wrong. ni? bz, who made the interface scriptable in the first place.
Flags: needinfo?(sphink) → needinfo?(bzbarsky)
Comment on attachment 8720604 [details] [diff] [review]
Suppress GC harder

Approval Request Comment
[Feature/regressing bug #]: this is going to be pretty ancient

[User impact if declined]: in theory, potential for exploitable OOM handling. Depends somewhat on what bz says, but I think it would require an addon to trigger.

[Describe test coverage new/current, TreeHerder]: it's on mozilla-central now and has been for a day or so, but I doubt the relevant code path is taken much at all if ever during automation.

[Risks and why]: Low risk. This prevents an OOM from triggering a garbage collection during malloc, but only when you have something scripting nsIPrincipal.subsumes. The patch doesn't change non-OOM behavior at all, and normally would only change OOM behavior by incrementing a GC suppression counter on the runtime.

[String/UUID change made/needed]: none

I will hold off on requesting esr approval until we decide whether to make this sec-high.
Attachment #8720604 - Flags: approval-mozilla-beta?
Attachment #8720604 - Flags: approval-mozilla-aurora?
nsIPrincipal is scriptable so that script can call _into_ it.  But it's also marked "builtinclass", which means that it in fact cannot be implemented in JS.

So we only have to consider the implementations we actually have, which are all c++.  Those are, once you unwind down to SubsumesInternal:

1)  nsNullPrincipal::SubsumesInternal -- clearly does not gc.
2)  nsSystemPrincipal::SubsumesInternal -- clearly does not gc
3)  nsExpandedPrincipal::SubsumesInternal -- delegates to Subsumes
                                             calls on its internal principals.
4)  nsPrincipal::SubsumesInternal -- this is the fun one.  It will invoke
                                     OriginAttributes::operator==, which I am
                                     pretty sure cannot GC.  It will then invoke
                                     nsScriptSecurityManager::SecurityCompareURIs
                                     which will call URI accessors.  Which can
                                     totally GC, since URIs _can_ be implemented 
                                     in JS.  That's quite sadmaking.
Flags: needinfo?(bzbarsky)
So yes, according to bz this would require an addon. We don't ship anything that does this. On the other hand, addons that implement URIs are not unheard of. I believe the Yandex toolbar does this, for example?

ni? dveditz to make sure we correctly categorize this bug.
Flags: needinfo?(dveditz)
Group: javascript-core-security → core-security-release
I think we can call this sec-moderate: possibly exploitable under the right, but uncommon, conditions. We don't particularly worry about malicious add-ons wrt bugs like this (it could do much worse to be malicious). Many add-ons do implement their own protocol handlers but it seems unlikely they would write them in a way that triggered GC in all the wrong places unless they were intentionally malicious.
Group: core-security-release → javascript-core-security
Flags: needinfo?(dveditz)
Keywords: sec-moderate
Whiteboard: requires vulnerable add-on to exploit
Group: javascript-core-security → core-security-release
Marking affected/wontfix for current versions.
Comment on attachment 8720604 [details] [diff] [review]
Suppress GC harder

Sec-moderate, risk sounds low, let's uplift this to aurora.
Attachment #8720604 - Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Comment on attachment 8720604 [details] [diff] [review]
Suppress GC harder

Old regression, sec moderate, late in the cycle. Not taking it in 45.
Attachment #8720604 - Flags: approval-mozilla-beta? → approval-mozilla-beta-
Flags: qe-verify-
Whiteboard: requires vulnerable add-on to exploit → [post-critsmash-triage] requires vulnerable add-on to exploit
Whiteboard: [post-critsmash-triage] requires vulnerable add-on to exploit → [post-critsmash-triage][adv-main46+] requires vulnerable add-on to exploit
Group: core-security-release
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: