Bug 60672

Summary: Protect JSC from WebCore executing JS during JS wrapper finalization
Product: WebKit Reporter: Oliver Hunt <oliver>
Component: New BugsAssignee: Oliver Hunt <oliver>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch darin: review+

Oliver Hunt
Reported 2011-05-11 15:52:44 PDT
Protect JSC from WebCore executing JS during JS wrapper finalization
Attachments
Patch (6.93 KB, patch)
2011-05-11 18:06 PDT, Oliver Hunt
darin: review+
Oliver Hunt
Comment 1 2011-05-11 18:06:29 PDT
Darin Adler
Comment 2 2011-05-11 18:12:36 PDT
Comment on attachment 93228 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=93228&action=review It’s clean to forbid this at the JavaScriptCore level, but we’d also like to change WebCore so it doesn’t have the kind of dangerous destructors that could lead to this kind of reentrancy. > Source/JavaScriptCore/heap/Heap.h:83 > - bool isBusy(); // true if an allocation or collection is in progress > + // true if an allocation or collection is in progress > + bool isBusy() > + { > + return m_operationInProgress != NoOperation; > + } You could have put this inline at the end of the file. I often prefer that because I like the class definition to be as clean as possible.
Oliver Hunt
Comment 3 2011-05-11 18:31:31 PDT
Note You need to log in before you can comment on or make changes to this bug.