-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partial fix for #864 - report property attributes from sandbox object #885
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -387,11 +387,15 @@ class ContextifyContext { | |
Local<Object> proxy_global = PersistentToLocal(isolate, | ||
ctx->proxy_global_); | ||
|
||
bool in_sandbox = sandbox->GetRealNamedProperty(property).IsEmpty(); | ||
bool in_sandbox = !(sandbox->GetRealNamedProperty(property).IsEmpty()); | ||
bool in_proxy_global = | ||
proxy_global->GetRealNamedProperty(property).IsEmpty(); | ||
if (!in_sandbox || !in_proxy_global) { | ||
args.GetReturnValue().Set(None); | ||
!(proxy_global->GetRealNamedProperty(property).IsEmpty()); | ||
if (in_sandbox || in_proxy_global) { | ||
v8::PropertyAttribute attr = None; | ||
if (in_sandbox) { | ||
attr = sandbox->GetPropertyAttributes(property); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't we also add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried that. It caused infinite recursion on proxy_global. I think @bnoordhuis has a patch into v8 to add a new api to support this. That's why this change is "partial fix" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got it. Also given that per #855 I want to at least attempt to rip out proxy global entirely that might end up being unnecessary. Probably want to leave a TODO(smikes) in the source code though for later. |
||
args.GetReturnValue().Set(attr); | ||
} | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
var common = require('../common'); | ||
var assert = require('assert'); | ||
|
||
var vm = require('vm'); | ||
|
||
var code = 'Object.getOwnPropertyDescriptor(this, "prop")'; | ||
|
||
var x = {}; | ||
Object.defineProperty(x, "prop", { | ||
configurable: false, | ||
enumerable: false, | ||
writable: false, | ||
value: "val" | ||
}); | ||
var o = vm.createContext(x); | ||
|
||
var res = vm.runInContext(code, o, 'test'); | ||
|
||
assert(res); | ||
assert.equal(typeof res, 'object'); | ||
assert.equal(res.value, "val"); | ||
assert.equal(res.configurable, false, "should not be configurable"); | ||
assert.equal(res.enumerable, false, "should not be enumerable"); | ||
assert.equal(res.writable, false, "should not be writable"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not HasRealNamedProperty ?