WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
214624
Disallow VM entry when doing a VMInquiry.
https://bugs.webkit.org/show_bug.cgi?id=214624
Summary
Disallow VM entry when doing a VMInquiry.
Mark Lam
Reported
2020-07-21 19:14:35 PDT
We can now use the DisallowVMEntry scope to enforce this.
Attachments
proposed patch.
(46.44 KB, patch)
2020-07-21 19:48 PDT
,
Mark Lam
no flags
Details
Formatted Diff
Diff
proposed patch.
(63.55 KB, patch)
2020-07-21 23:19 PDT
,
Mark Lam
no flags
Details
Formatted Diff
Diff
proposed patch.
(67.20 KB, patch)
2020-07-21 23:28 PDT
,
Mark Lam
saam
: review+
Details
Formatted Diff
Diff
patch for landing.
(65.33 KB, patch)
2020-07-22 15:25 PDT
,
Mark Lam
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2020-07-21 19:16:45 PDT
<
rdar://problem/65915314
>
Mark Lam
Comment 2
2020-07-21 19:48:18 PDT
Created
attachment 404892
[details]
proposed patch.
Mark Lam
Comment 3
2020-07-21 23:19:21 PDT
Created
attachment 404901
[details]
proposed patch.
Mark Lam
Comment 4
2020-07-21 23:28:16 PDT
Created
attachment 404902
[details]
proposed patch.
Saam Barati
Comment 5
2020-07-22 11:36:38 PDT
Comment on
attachment 404902
[details]
proposed patch. View in context:
https://bugs.webkit.org/attachment.cgi?id=404902&action=review
r=me
> Source/JavaScriptCore/ChangeLog:27 > + do entail entering the VM. In such cases, we need to reset the PropertySlot's
do entail => entails
> Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetterAndSetter.cpp:310 > + PropertySlot slot { thisObject, PropertySlot::InternalMethodType::VMInquiry, &lexicalGlobalObject->vm() }; > + bool found = JSObject::getOwnPropertySlot(thisObject, lexicalGlobalObject, propertyName, slot); > + slot.disallowVMEntry.reset();
for a lot of these that just require the bool result of calling getOwnPropertySlot, if you just passed the slot in as a constructed thing in the function call, you wouldn't need the reset dance, since it's destroyed post call. (I haven't vetted all call sites, but a lot could do this, and would be cleaner for it)
Mark Lam
Comment 6
2020-07-22 13:06:54 PDT
Comment on
attachment 404902
[details]
proposed patch. View in context:
https://bugs.webkit.org/attachment.cgi?id=404902&action=review
>> Source/WebCore/bindings/scripts/test/JS/JSTestNamedSetterWithIndexedGetterAndSetter.cpp:310 >> + slot.disallowVMEntry.reset(); > > for a lot of these that just require the bool result of calling getOwnPropertySlot, if you just passed the slot in as a constructed thing in the function call, you wouldn't need the reset dance, since it's destroyed post call. > > (I haven't vetted all call sites, but a lot could do this, and would be cleaner for it)
I'll add a helper in JSObject to handle this.
Mark Lam
Comment 7
2020-07-22 15:25:47 PDT
Created
attachment 404984
[details]
patch for landing.
Mark Lam
Comment 8
2020-07-22 16:57:55 PDT
Comment on
attachment 404984
[details]
patch for landing. After thinking about this more, I'm going to opt for not adding the helper functions. The reason is because it is not possible to use the helpers in all places. For example, 1. some places needs to use the PropertySlot after the call to "get". 2. some places want to call "get" via the methodTable. Hence, the helpers will not be helpful there as they only dispatch to the JSObject methods. Adopting the helpers will therefore result in having more than one way to do VMInquiries, and can make the code more confusing. So, I'm going to forego the helpers in the interest of keeping the interface consistent. Instantiating the PropertySlot directly as the argument for the "get" function is also not an option. This is because this "get" functions require a PropertySlot&. C++ does not let us pass a reference to this unnamed instantiated PropertySlot. I'll land the original patch with the ChangeLog typo fix. Thanks.
Mark Lam
Comment 9
2020-07-22 17:09:57 PDT
Thanks for the review. Landed in
r264736
: <
http://trac.webkit.org/r264736
>.
Michael Catanzaro
Comment 10
2020-07-26 12:06:14 PDT
GCC found a problem:
bug #214809
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug