Closed Bug 872394 Opened 11 years ago Closed 11 years ago

WebAudio use-after-free [@mozilla::dom::SelfCountedReference<mozilla::dom::ScriptProcessorNode>::ForceDrop]

Categories

(Core :: Web Audio, defect)

x86_64
macOS
defect
Not set
critical

Tracking

()

RESOLVED WORKSFORME
Tracking Status
firefox22 --- disabled
firefox23 - disabled
firefox24 + disabled
firefox-esr17 --- unaffected
b2g18 --- unaffected

People

(Reporter: posidron, Unassigned)

References

Details

(Keywords: crash, csectype-uaf, sec-critical)

Attachments

(1 file)

Attached file callstack —
alloc & free: js/src/jsscript.cpp:1106,1112

/* Adjust the amount of memory this script source uses for source data,
   reallocating if needed. */
bool
ScriptSource::adjustDataSize(size_t nbytes)
{
    // Allocating 0 bytes has undefined behavior, so special-case it.
    if (nbytes == 0) {
        if (data.compressed != emptySource)
*           js_free(data.compressed);
        data.compressed = const_cast<unsigned char *>(emptySource);
        return true;
    }

    // |data.compressed| can be NULL.
*   void *buf = js_realloc(data.compressed, nbytes);
    if (!buf && data.compressed != emptySource)
        js_free(data.compressed);
    data.compressed = static_cast<unsigned char *>(buf);
    return !!data.compressed;
}

re-use: content/media/webaudio/AudioNode.h:88
  void ForceDrop(T* t)
  {
*   if (mRefCnt > 0) {
      mRefCnt = 0;
      t->Release();
    }
  }


Note: this happened till now only one time and am till now not able to reproduce that issue with a testcase.


Tested with m-i changeset: 131837:3a56d9a0b092
Hit it now twice - only the stack for the re-use is constant.

It only happens with large testcases (each testcase has 200 calls of WebAudio functions) and a page reload after every 100th testcase.
I'm changing this code slightly in bug 836599.  Would be interesting to retest after that lands.
Depends on: 836599
Group: dom-core-security
(In reply to :Ehsan Akhgari (needinfo? me!) from comment #2)
> I'm changing this code slightly in bug 836599.  Would be interesting to
> retest after that lands.

Can you please retest?
Flags: needinfo?(cdiehl)
I am not seeing it anymore in my latest runs.
Flags: needinfo?(cdiehl)
\o/
Ehsan want to close fixed via bug 836599?
Assignee: nobody → ehsan
Flags: needinfo?(ehsan)
I believe this got fixed in bug 873335. The testcase produced the same stack.
Bug 836599 was only landed in 24, so even if this is fixed by something else, 23 remains affected.  Are we going leave it enabled on 22?  Does this affect 22 otherwise?
(In reply to Christoph Diehl [:cdiehl] from comment #6)
> I believe this got fixed in bug 873335. The testcase produced the same stack.

Thanks for the update.
Depends on: 873335
(In reply to Andrew McCreight [:mccr8] from comment #7)
> Bug 836599 was only landed in 24, so even if this is fixed by something
> else, 23 remains affected.  Are we going leave it enabled on 22?  Does this
> affect 22 otherwise?

Web Audio is disabled on 22 and will be disabled on 23 once it gets to beta too.

And we probably need to uplift bug 836599 for 23 anyway.
Status: NEW → RESOLVED
Closed: 11 years ago
Flags: needinfo?(ehsan)
Resolution: --- → FIXED
Whiteboard: [fixed by bug 836599]
Hit it again.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
(In reply to Christoph Diehl [:cdiehl] from comment #10)
> Hit it again.

On which test case?
still, no specific testcase.
Assignee: ehsan → nobody
Keywords: testcase-wanted
Whiteboard: [fixed by bug 836599]
Does this still happen?
Flags: needinfo?(cdiehl)
Haven't seen it anymore lately - testing against m-i changeset: 133183:1c67a51e0fe5
Flags: needinfo?(cdiehl)
Cool, marking as FIXED.
Status: REOPENED → RESOLVED
Closed: 11 years ago11 years ago
Resolution: --- → FIXED
Mass moving Web Audio bugs to the Web Audio component.  Filter on duckityduck.
Component: Video/Audio → Web Audio
Group: media-core-security
Not tracking since we're not shipping web audio in ff23
Sorry Kyle, but this bug is not actionable without a test case.  Assigning it to somebody is not going to change that situation.
Assignee: ehsan → nobody
The bug is fixed ... I was just doing bookkeeping ...
Resolution: FIXED → WORKSFORME
Well yeah.  We don't know if it's actually fixed yet, we just can't reproduce it.
Group: core-security → core-security-release
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: