Bug 23006 - Many Loader::Host member functions are not safe to use reentrantly
Summary: Many Loader::Host member functions are not safe to use reentrantly
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Page Loading (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Cameron Zwarich (cpst)
URL:
Keywords: InRadar, Regression
Depends on:
Blocks:
 
Reported: 2008-12-28 04:12 PST by Cameron Zwarich (cpst)
Modified: 2008-12-28 13:51 PST (History)
2 users (show)

See Also:


Attachments
Proposed patch (6.08 KB, patch)
2008-12-28 04:31 PST, Cameron Zwarich (cpst)
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Cameron Zwarich (cpst) 2008-12-28 04:12:50 PST
Many Loader::Host member functions set m_processingResource to true when they begin processing a resource and set it to false when they are done. Thanks to JavaScript and the web inspector, almost anything can happen during the processing of a resource, including these functions being called reentrantly, which is unsafe due to this way of using m_processingResource. Since m_processingResource is used to determine whether a Host is deleted in Loader::servePendingRequests(), this is presumedly the cause behind memory corruption bugs like <rdar://problem/6216106>.
Comment 1 Cameron Zwarich (cpst) 2008-12-28 04:13:03 PST
<rdar://problem/6216106>
Comment 2 Cameron Zwarich (cpst) 2008-12-28 04:31:52 PST
Created attachment 26275 [details]
Proposed patch

I am looking for a lot of review comments on this one. If anything comes to mind, don't assume that I thought about it and did it right. ;-)
Comment 3 Darin Adler 2008-12-28 11:05:52 PST
Comment on attachment 26275 [details]
Proposed patch

This patch is fine. We could also instead have ProcessingResource save and restore the m_processingResource boolean, which would use more stack space but less space in the object. It's really just fine as is. I'm going to say r=me

I don't understand your comment "There are no occurrences of crashes caused by this bug that are reproducible by multiple people". Who ran into this? How did you diagnose it?
Comment 4 Cameron Zwarich (cpst) 2008-12-28 12:54:56 PST
I diagnosed the problem in the Radar because people were saying that it happens a lot when they are using the debugger in the inspector, which I verified causes this bad reentrancy after breaking in GDB and noticing that the JS debugger reenters the event loop. I couldn't get it to actually delete one of the Hosts that it flagged as being safe for deletion. Other people had test cases they claimed were reproducible for them at various times, but I could never make any of them work for me. Dan Bernstein was in GDB for a particular occurrence of the bug, and said that it seemed that control was being returned to Loader::Host::didFinishLoading() with a freed Loader::Host(). I just guessed that this might be the problem from all the information given.
Comment 5 Darin Adler 2008-12-28 12:59:18 PST
OK.
Comment 6 Cameron Zwarich (cpst) 2008-12-28 13:51:06 PST
Landed in r39494.