forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathProxyObject.cpp
More file actions
1313 lines (1105 loc) · 53.2 KB
/
ProxyObject.cpp
File metadata and controls
1313 lines (1105 loc) · 53.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2016-2021 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ProxyObject.h"
#include "GetterSetter.h"
#include "JSCInlines.h"
#include "JSInternalFieldObjectImplInlines.h"
#include "ObjectConstructor.h"
#include "VMInlines.h"
#include <algorithm>
#include <wtf/NoTailCalls.h>
#include <wtf/text/MakeString.h>
// Note that we use NO_TAIL_CALLS() throughout this file because we rely on the machine stack
// growing larger for throwing OOM errors for when we have an effectively cyclic prototype chain.
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(ProxyObject);
const ClassInfo ProxyObject::s_info = { "ProxyObject"_s, &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(ProxyObject) };
static JSC_DECLARE_HOST_FUNCTION(performProxyCall);
static JSC_DECLARE_HOST_FUNCTION(performProxyConstruct);
static constexpr PropertyOffset emptyHandlerTrapCache = INT_MIN;
ProxyObject::ProxyObject(VM& vm, Structure* structure)
: Base(vm, structure)
{
clearHandlerTrapsOffsetsCache();
}
Structure* ProxyObject::structureForTarget(JSGlobalObject* globalObject, JSValue target)
{
return target.isCallable() ? globalObject->callableProxyObjectStructure() : globalObject->proxyObjectStructure();
}
void ProxyObject::finishCreation(VM& vm, JSGlobalObject* globalObject, JSValue target, JSValue handler)
{
auto scope = DECLARE_THROW_SCOPE(vm);
Base::finishCreation(vm);
ASSERT(type() == ProxyObjectType);
if (!target.isObject()) {
throwTypeError(globalObject, scope, "A Proxy's 'target' should be an Object"_s);
return;
}
if (!handler.isObject()) {
throwTypeError(globalObject, scope, "A Proxy's 'handler' should be an Object"_s);
return;
}
JSObject* targetAsObject = jsCast<JSObject*>(target);
m_isCallable = targetAsObject->isCallable();
if (m_isCallable) {
TypeInfo info = structure()->typeInfo();
RELEASE_ASSERT(info.implementsHasInstance() && info.implementsDefaultHasInstance());
}
m_isConstructible = targetAsObject->isConstructor();
internalField(Field::Target).set(vm, this, targetAsObject);
internalField(Field::Handler).set(vm, this, handler);
}
JSObject* ProxyObject::getHandlerTrap(JSGlobalObject* globalObject, JSObject* handler, CallData& callData, const Identifier& ident, HandlerTrap trap)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
auto ensureIsCallable = [&](JSValue value) -> JSObject* {
if (value.isUndefinedOrNull())
return nullptr;
callData = JSC::getCallData(value);
if (callData.type == CallData::Type::None) {
throwTypeError(globalObject, scope, makeString('\'', String(ident.impl()), "' property of a Proxy's handler should be callable"_s));
return nullptr;
}
return asObject(value);
};
if (isHandlerTrapsCacheValid(handler)) {
PropertyOffset offset = m_handlerTrapsOffsetsCache[static_cast<uint8_t>(trap)];
if (offset == invalidOffset)
return nullptr;
if (offset != emptyHandlerTrapCache)
return ensureIsCallable(handler->getDirect(offset));
} else if (m_handlerStructureID)
clearHandlerTrapsOffsetsCache();
PropertySlot slot(handler, PropertySlot::InternalMethodType::Get);
bool hasProperty = handler->getPropertySlot(globalObject, ident, slot);
RETURN_IF_EXCEPTION(scope, { });
bool isSlotCacheable = slot.isUnset() || (slot.isCacheableValue() && slot.slotBase() == handler);
if (isSlotCacheable) {
JSValue handlerPrototype = handler->getPrototypeDirect();
bool isHandlerPrototypeChainCacheable = handler->type() == FinalObjectType && !handler->structure()->isDictionary()
&& handlerPrototype.inherits<ObjectPrototype>() && !asObject(handlerPrototype)->structure()->isDictionary();
if (isHandlerPrototypeChainCacheable) {
ASSERT(slot.cachedOffset() != emptyHandlerTrapCache);
m_handlerTrapsOffsetsCache[static_cast<uint8_t>(trap)] = slot.cachedOffset();
m_handlerStructureID.set(vm, this, handler->structure());
m_handlerPrototypeStructureID.set(vm, this, asObject(handlerPrototype)->structure());
}
}
if (hasProperty) {
JSValue trapValue = slot.getValue(globalObject, ident);
RETURN_IF_EXCEPTION(scope, { });
return ensureIsCallable(trapValue);
}
return nullptr;
}
void ProxyObject::clearHandlerTrapsOffsetsCache()
{
std::fill_n(m_handlerTrapsOffsetsCache, numberOfCachedHandlerTrapsOffsets, emptyHandlerTrapCache);
}
static const ASCIILiteral s_proxyAlreadyRevokedErrorMessage { "Proxy has already been revoked. No more operations are allowed to be performed on it"_s };
static JSValue performProxyGet(JSGlobalObject* globalObject, ProxyObject* proxyObject, JSValue receiver, PropertyName propertyName)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return { };
}
JSObject* target = proxyObject->target();
auto performDefaultGet = [&] {
scope.release();
PropertySlot slot(receiver, PropertySlot::InternalMethodType::Get);
bool hasProperty = target->getPropertySlot(globalObject, propertyName, slot);
EXCEPTION_ASSERT(!scope.exception() || !hasProperty);
if (hasProperty)
RELEASE_AND_RETURN(scope, slot.getValue(globalObject, propertyName));
return jsUndefined();
};
if (propertyName.isPrivateName())
return jsUndefined();
JSValue handlerValue = proxyObject->handler();
if (handlerValue.isNull())
return throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSObject* getHandler = proxyObject->getHandlerTrap(globalObject, handler, callData, vm.propertyNames->get, ProxyObject::HandlerTrap::Get);
RETURN_IF_EXCEPTION(scope, { });
if (!getHandler)
return performDefaultGet();
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
arguments.append(receiver.toThis(globalObject, ECMAMode::strict()));
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, getHandler, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, { });
if (target->structure()->hasNonConfigurableReadOnlyOrGetterSetterProperties()) {
ProxyObject::validateGetTrapResult(globalObject, trapResult, target, propertyName);
RETURN_IF_EXCEPTION(scope, { });
}
return trapResult;
}
void ProxyObject::validateGetTrapResult(JSGlobalObject* globalObject, JSValue trapResult, JSObject* target, PropertyName propertyName)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
PropertyDescriptor descriptor;
bool hasProperty = target->getOwnPropertyDescriptor(globalObject, propertyName, descriptor);
RETURN_IF_EXCEPTION(scope, void());
if (hasProperty && !descriptor.configurable()) {
if (descriptor.isDataDescriptor() && !descriptor.writable()) {
bool isSame = sameValue(globalObject, descriptor.value(), trapResult);
RETURN_IF_EXCEPTION(scope, void());
if (!isSame) {
throwTypeError(globalObject, scope, "Proxy handler's 'get' result of a non-configurable and non-writable property should be the same value as the target's property"_s);
return;
}
} else if (descriptor.isAccessorDescriptor() && descriptor.getter().isUndefined()) {
if (!trapResult.isUndefined()) {
throwTypeError(globalObject, scope, "Proxy handler's 'get' result of a non-configurable accessor property without a getter should be undefined"_s);
return;
}
}
}
}
bool ProxyObject::performGet(JSGlobalObject* globalObject, PropertyName propertyName, PropertySlot& slot)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSValue result = performProxyGet(globalObject, this, slot.thisValue(), propertyName);
RETURN_IF_EXCEPTION(scope, false);
unsigned ignoredAttributes = 0;
slot.setValue(this, ignoredAttributes, result);
return true;
}
// https://tc39.es/ecma262/#sec-completepropertydescriptor
static void completePropertyDescriptor(PropertyDescriptor& desc)
{
if (desc.isAccessorDescriptor()) {
if (!desc.getter())
desc.setGetter(jsUndefined());
if (!desc.setter())
desc.setSetter(jsUndefined());
} else {
if (!desc.value())
desc.setValue(jsUndefined());
if (!desc.writablePresent())
desc.setWritable(false);
}
if (!desc.enumerablePresent())
desc.setEnumerable(false);
if (!desc.configurablePresent())
desc.setConfigurable(false);
}
bool ProxyObject::performInternalMethodGetOwnProperty(JSGlobalObject* globalObject, PropertyName propertyName, PropertySlot& slot)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
JSObject* target = this->target();
auto performDefaultGetOwnProperty = [&] {
return target->methodTable()->getOwnPropertySlot(target, globalObject, propertyName, slot);
};
if (propertyName.isPrivateName())
return false;
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSObject* getOwnPropertyDescriptorMethod = getHandlerTrap(globalObject, handler, callData, vm.propertyNames->getOwnPropertyDescriptor, HandlerTrap::GetOwnPropertyDescriptor);
RETURN_IF_EXCEPTION(scope, false);
if (!getOwnPropertyDescriptorMethod)
RELEASE_AND_RETURN(scope, performDefaultGetOwnProperty());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, getOwnPropertyDescriptorMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
if (trapResult.isUndefined() && !target->structure()->isNonExtensibleOrHasNonConfigurableProperties())
return false;
if (!trapResult.isUndefined() && !trapResult.isObject()) {
throwTypeError(globalObject, scope, "result of 'getOwnPropertyDescriptor' call should either be an Object or undefined"_s);
return false;
}
PropertyDescriptor targetPropertyDescriptor;
bool isTargetPropertyDescriptorDefined = target->getOwnPropertyDescriptor(globalObject, propertyName, targetPropertyDescriptor);
RETURN_IF_EXCEPTION(scope, false);
if (trapResult.isUndefined()) {
if (!isTargetPropertyDescriptorDefined)
return false;
if (!targetPropertyDescriptor.configurable()) {
throwTypeError(globalObject, scope, "When the result of 'getOwnPropertyDescriptor' is undefined the target must be configurable"_s);
return false;
}
bool isExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!isExtensible) {
throwTypeError(globalObject, scope, "When 'getOwnPropertyDescriptor' returns undefined, the 'target' of a Proxy should be extensible"_s);
return false;
}
return false;
}
bool isExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
PropertyDescriptor trapResultAsDescriptor;
toPropertyDescriptor(globalObject, trapResult, trapResultAsDescriptor);
RETURN_IF_EXCEPTION(scope, false);
completePropertyDescriptor(trapResultAsDescriptor);
bool throwException = false;
bool valid = validateAndApplyPropertyDescriptor(globalObject, nullptr, propertyName, isExtensible,
trapResultAsDescriptor, isTargetPropertyDescriptorDefined, targetPropertyDescriptor, throwException);
RETURN_IF_EXCEPTION(scope, false);
if (!valid) {
throwTypeError(globalObject, scope, "Result from 'getOwnPropertyDescriptor' fails the IsCompatiblePropertyDescriptor test"_s);
return false;
}
if (!trapResultAsDescriptor.configurable()) {
if (!isTargetPropertyDescriptorDefined || targetPropertyDescriptor.configurable()) {
throwTypeError(globalObject, scope, "Result from 'getOwnPropertyDescriptor' can't be non-configurable when the 'target' doesn't have it as an own property or if it is a configurable own property on 'target'"_s);
return false;
}
if (trapResultAsDescriptor.writablePresent() && !trapResultAsDescriptor.writable() && targetPropertyDescriptor.writable()) {
throwTypeError(globalObject, scope, "Result from 'getOwnPropertyDescriptor' can't be non-configurable and non-writable when the target's property is writable"_s);
return false;
}
}
if (trapResultAsDescriptor.isAccessorDescriptor()) {
GetterSetter* getterSetter = trapResultAsDescriptor.slowGetterSetter(globalObject);
RETURN_IF_EXCEPTION(scope, false);
slot.setGetterSlot(this, trapResultAsDescriptor.attributes(), getterSetter);
} else if (trapResultAsDescriptor.isDataDescriptor() && !trapResultAsDescriptor.value().isEmpty())
slot.setValue(this, trapResultAsDescriptor.attributes(), trapResultAsDescriptor.value());
else
slot.setValue(this, trapResultAsDescriptor.attributes(), jsUndefined()); // We use undefined because it's the default value in object properties.
return true;
}
bool ProxyObject::performHasProperty(JSGlobalObject* globalObject, PropertyName propertyName, PropertySlot& slot)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
JSObject* target = this->target();
slot.setValue(this, static_cast<unsigned>(PropertyAttribute::None), jsUndefined()); // Nobody should rely on our value, but be safe and protect against any bad actors reading our value.
auto performDefaultHasProperty = [&] {
return target->getPropertySlot(globalObject, propertyName, slot);
};
if (propertyName.isPrivateName())
return false;
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSObject* hasMethod = getHandlerTrap(globalObject, handler, callData, vm.propertyNames->has, HandlerTrap::Has);
RETURN_IF_EXCEPTION(scope, false);
if (!hasMethod)
RELEASE_AND_RETURN(scope, performDefaultHasProperty());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, hasMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (trapResultAsBool)
return true;
if (target->structure()->isNonExtensibleOrHasNonConfigurableProperties()) {
validateNegativeHasTrapResult(globalObject, target, propertyName);
RETURN_IF_EXCEPTION(scope, false);
}
return false;
}
void ProxyObject::validateNegativeHasTrapResult(JSGlobalObject* globalObject, JSObject* target, PropertyName propertyName)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
PropertyDescriptor descriptor;
bool isPropertyDescriptorDefined = target->getOwnPropertyDescriptor(globalObject, propertyName, descriptor);
RETURN_IF_EXCEPTION(scope, void());
if (isPropertyDescriptorDefined) {
if (!descriptor.configurable()) {
throwTypeError(globalObject, scope, "Proxy 'has' must return 'true' for non-configurable properties"_s);
return;
}
bool isExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, void());
if (!isExtensible) {
throwTypeError(globalObject, scope, "Proxy 'has' must return 'true' for a non-extensible 'target' object with a configurable property"_s);
return;
}
}
}
bool ProxyObject::getOwnPropertySlotCommon(JSGlobalObject* globalObject, PropertyName propertyName, PropertySlot& slot)
{
slot.disableCaching();
slot.setIsTaintedByOpaqueObject();
if (slot.isVMInquiry()) {
slot.setValue(this, static_cast<unsigned>(JSC::PropertyAttribute::None), jsUndefined());
return false;
}
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
switch (slot.internalMethodType()) {
case PropertySlot::InternalMethodType::Get:
RELEASE_AND_RETURN(scope, performGet(globalObject, propertyName, slot));
case PropertySlot::InternalMethodType::GetOwnProperty:
RELEASE_AND_RETURN(scope, performInternalMethodGetOwnProperty(globalObject, propertyName, slot));
case PropertySlot::InternalMethodType::HasProperty:
RELEASE_AND_RETURN(scope, performHasProperty(globalObject, propertyName, slot));
default:
return false;
}
RELEASE_ASSERT_NOT_REACHED();
return false;
}
bool ProxyObject::getOwnPropertySlot(JSObject* object, JSGlobalObject* globalObject, PropertyName propertyName, PropertySlot& slot)
{
ProxyObject* thisObject = jsCast<ProxyObject*>(object);
return thisObject->getOwnPropertySlotCommon(globalObject, propertyName, slot);
}
bool ProxyObject::getOwnPropertySlotByIndex(JSObject* object, JSGlobalObject* globalObject, unsigned propertyName, PropertySlot& slot)
{
VM& vm = globalObject->vm();
ProxyObject* thisObject = jsCast<ProxyObject*>(object);
Identifier ident = Identifier::from(vm, propertyName);
return thisObject->getOwnPropertySlotCommon(globalObject, ident.impl(), slot);
}
template <typename PerformDefaultPutFunction>
bool ProxyObject::performPut(JSGlobalObject* globalObject, JSValue putValue, JSValue thisValue, PropertyName propertyName, PerformDefaultPutFunction performDefaultPut, bool shouldThrow)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
if (propertyName.isPrivateName())
return false;
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSObject* setMethod = getHandlerTrap(globalObject, handler, callData, vm.propertyNames->set, HandlerTrap::Set);
RETURN_IF_EXCEPTION(scope, false);
JSObject* target = this->target();
if (!setMethod)
RELEASE_AND_RETURN(scope, performDefaultPut());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
arguments.append(putValue);
arguments.append(thisValue.toThis(globalObject, ECMAMode::strict()));
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, setMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!trapResultAsBool) {
if (shouldThrow)
throwTypeError(globalObject, scope, makeString("Proxy object's 'set' trap returned falsy value for property '"_s, StringView(propertyName.uid()), '\''));
return false;
}
if (target->structure()->hasNonConfigurableReadOnlyOrGetterSetterProperties()) {
validatePositiveSetTrapResult(globalObject, target, propertyName, putValue);
RETURN_IF_EXCEPTION(scope, false);
}
return true;
}
void ProxyObject::validatePositiveSetTrapResult(JSGlobalObject* globalObject, JSObject* target, PropertyName propertyName, JSValue putValue)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
PropertyDescriptor descriptor;
bool hasProperty = target->getOwnPropertyDescriptor(globalObject, propertyName, descriptor);
EXCEPTION_ASSERT(!scope.exception() || !hasProperty);
if (hasProperty && !descriptor.configurable()) {
if (descriptor.isDataDescriptor() && !descriptor.writable()) {
bool isSame = sameValue(globalObject, descriptor.value(), putValue);
RETURN_IF_EXCEPTION(scope, void());
if (!isSame) {
throwTypeError(globalObject, scope, "Proxy handler's 'set' on a non-configurable and non-writable property on 'target' should either return false or be the same value already on the 'target'"_s);
return;
}
} else if (descriptor.isAccessorDescriptor() && descriptor.setter().isUndefined()) {
throwTypeError(globalObject, scope, "Proxy handler's 'set' method on a non-configurable accessor property without a setter should return false"_s);
return;
}
}
}
bool ProxyObject::put(JSCell* cell, JSGlobalObject* globalObject, PropertyName propertyName, JSValue value, PutPropertySlot& slot)
{
slot.disableCaching();
slot.setIsTaintedByOpaqueObject();
ProxyObject* thisObject = jsCast<ProxyObject*>(cell);
auto performDefaultPut = [&] () {
JSObject* target = jsCast<JSObject*>(thisObject->target());
return target->methodTable()->put(target, globalObject, propertyName, value, slot);
};
return thisObject->performPut(globalObject, value, slot.thisValue(), propertyName, performDefaultPut, slot.isStrictMode());
}
bool ProxyObject::putByIndexCommon(JSGlobalObject* globalObject, JSValue thisValue, unsigned propertyName, JSValue putValue, bool shouldThrow)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
Identifier ident = Identifier::from(vm, propertyName);
RETURN_IF_EXCEPTION(scope, false);
auto performDefaultPut = [&] () {
JSObject* target = this->target();
bool isStrictMode = shouldThrow;
PutPropertySlot slot(thisValue, isStrictMode); // We must preserve the "this" target of the putByIndex.
return target->methodTable()->put(target, globalObject, ident.impl(), putValue, slot);
};
RELEASE_AND_RETURN(scope, performPut(globalObject, putValue, thisValue, ident.impl(), performDefaultPut, shouldThrow));
}
bool ProxyObject::putByIndex(JSCell* cell, JSGlobalObject* globalObject, unsigned propertyName, JSValue value, bool shouldThrow)
{
ProxyObject* thisObject = jsCast<ProxyObject*>(cell);
return thisObject->putByIndexCommon(globalObject, thisObject, propertyName, value, shouldThrow);
}
JSC_DEFINE_HOST_FUNCTION(performProxyCall, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return encodedJSValue();
}
ProxyObject* proxy = jsCast<ProxyObject*>(callFrame->jsCallee());
JSValue handlerValue = proxy->handler();
if (handlerValue.isNull())
return throwVMTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue applyMethod = handler->getMethod(globalObject, callData, makeIdentifier(vm, "apply"_s), "'apply' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
JSObject* target = proxy->target();
if (applyMethod.isUndefined()) {
auto callData = JSC::getCallData(target);
RELEASE_ASSERT(callData.type != CallData::Type::None);
RELEASE_AND_RETURN(scope, JSValue::encode(call(globalObject, target, callData, callFrame->thisValue(), ArgList(callFrame))));
}
JSArray* argArray = constructArray(globalObject, static_cast<ArrayAllocationProfile*>(nullptr), ArgList(callFrame));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(callFrame->thisValue().toThis(globalObject, ECMAMode::strict()));
arguments.append(argArray);
ASSERT(!arguments.hasOverflowed());
RELEASE_AND_RETURN(scope, JSValue::encode(call(globalObject, applyMethod, callData, handler, arguments)));
}
CallData ProxyObject::getCallData(JSCell* cell)
{
CallData callData;
ProxyObject* proxy = jsCast<ProxyObject*>(cell);
if (proxy->m_isCallable) {
callData.type = CallData::Type::Native;
callData.native.function = performProxyCall;
callData.native.isBoundFunction = false;
callData.native.isWasm = false;
}
return callData;
}
JSC_DEFINE_HOST_FUNCTION(performProxyConstruct, (JSGlobalObject* globalObject, CallFrame* callFrame))
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return encodedJSValue();
}
ProxyObject* proxy = jsCast<ProxyObject*>(callFrame->jsCallee());
JSValue handlerValue = proxy->handler();
if (handlerValue.isNull())
return throwVMTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue constructMethod = handler->getMethod(globalObject, callData, makeIdentifier(vm, "construct"_s), "'construct' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
JSObject* target = proxy->target();
if (constructMethod.isUndefined()) {
auto constructData = JSC::getConstructData(target);
RELEASE_ASSERT(constructData.type != CallData::Type::None);
RELEASE_AND_RETURN(scope, JSValue::encode(construct(globalObject, target, constructData, ArgList(callFrame), callFrame->newTarget())));
}
JSArray* argArray = constructArray(globalObject, static_cast<ArrayAllocationProfile*>(nullptr), ArgList(callFrame));
RETURN_IF_EXCEPTION(scope, encodedJSValue());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(argArray);
arguments.append(callFrame->newTarget());
ASSERT(!arguments.hasOverflowed());
JSValue result = call(globalObject, constructMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, encodedJSValue());
if (!result.isObject())
return throwVMTypeError(globalObject, scope, "Result from Proxy handler's 'construct' method should be an object"_s);
return JSValue::encode(result);
}
CallData ProxyObject::getConstructData(JSCell* cell)
{
CallData constructData;
ProxyObject* proxy = jsCast<ProxyObject*>(cell);
if (proxy->m_isConstructible) {
constructData.type = CallData::Type::Native;
constructData.native.function = performProxyConstruct;
constructData.native.isBoundFunction = false;
constructData.native.isWasm = false;
}
return constructData;
}
template <typename DefaultDeleteFunction>
bool ProxyObject::performDelete(JSGlobalObject* globalObject, PropertyName propertyName, DefaultDeleteFunction performDefaultDelete)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
if (propertyName.isPrivateName())
return false;
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue deletePropertyMethod = handler->getMethod(globalObject, callData, makeIdentifier(vm, "deleteProperty"_s), "'deleteProperty' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, false);
JSObject* target = this->target();
if (deletePropertyMethod.isUndefined())
RELEASE_AND_RETURN(scope, performDefaultDelete());
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, deletePropertyMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!trapResultAsBool)
return false;
if (!target->structure()->isNonExtensibleOrHasNonConfigurableProperties())
return true;
PropertyDescriptor descriptor;
bool result = target->getOwnPropertyDescriptor(globalObject, propertyName, descriptor);
EXCEPTION_ASSERT(!scope.exception() || !result);
if (result) {
if (!descriptor.configurable()) {
throwTypeError(globalObject, scope, "Proxy handler's 'deleteProperty' method should return false when the target's property is not configurable"_s);
return false;
}
bool targetIsExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!targetIsExtensible) {
throwTypeError(globalObject, scope, "Proxy handler's 'deleteProperty' method should return false when the target has property and is not extensible"_s);
return false;
}
}
RETURN_IF_EXCEPTION(scope, false);
return true;
}
bool ProxyObject::deleteProperty(JSCell* cell, JSGlobalObject* globalObject, PropertyName propertyName, DeletePropertySlot& slot)
{
ProxyObject* thisObject = jsCast<ProxyObject*>(cell);
auto performDefaultDelete = [&] () -> bool {
JSObject* target = thisObject->target();
return target->methodTable()->deleteProperty(target, globalObject, propertyName, slot);
};
return thisObject->performDelete(globalObject, propertyName, performDefaultDelete);
}
bool ProxyObject::deletePropertyByIndex(JSCell* cell, JSGlobalObject* globalObject, unsigned propertyName)
{
VM& vm = globalObject->vm();
ProxyObject* thisObject = jsCast<ProxyObject*>(cell);
Identifier ident = Identifier::from(vm, propertyName);
auto performDefaultDelete = [&] () -> bool {
JSObject* target = thisObject->target();
return target->methodTable()->deletePropertyByIndex(target, globalObject, propertyName);
};
return thisObject->performDelete(globalObject, ident.impl(), performDefaultDelete);
}
bool ProxyObject::performPreventExtensions(JSGlobalObject* globalObject)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue preventExtensionsMethod = handler->getMethod(globalObject, callData, makeIdentifier(vm, "preventExtensions"_s), "'preventExtensions' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, false);
JSObject* target = this->target();
if (preventExtensionsMethod.isUndefined())
RELEASE_AND_RETURN(scope, target->methodTable()->preventExtensions(target, globalObject));
MarkedArgumentBuffer arguments;
arguments.append(target);
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, preventExtensionsMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (trapResultAsBool) {
bool targetIsExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (targetIsExtensible) {
throwTypeError(globalObject, scope, "Proxy's 'preventExtensions' trap returned true even though its target is extensible. It should have returned false"_s);
return false;
}
}
return trapResultAsBool;
}
bool ProxyObject::preventExtensions(JSObject* object, JSGlobalObject* globalObject)
{
return jsCast<ProxyObject*>(object)->performPreventExtensions(globalObject);
}
bool ProxyObject::performIsExtensible(JSGlobalObject* globalObject)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue isExtensibleMethod = handler->getMethod(globalObject, callData, makeIdentifier(vm, "isExtensible"_s), "'isExtensible' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, false);
JSObject* target = this->target();
if (isExtensibleMethod.isUndefined())
RELEASE_AND_RETURN(scope, target->isExtensible(globalObject));
MarkedArgumentBuffer arguments;
arguments.append(target);
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, isExtensibleMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
bool isTargetExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (trapResultAsBool != isTargetExtensible) {
if (isTargetExtensible) {
ASSERT(!trapResultAsBool);
throwTypeError(globalObject, scope, "Proxy object's 'isExtensible' trap returned false when the target is extensible. It should have returned true"_s);
} else {
ASSERT(!isTargetExtensible);
ASSERT(trapResultAsBool);
throwTypeError(globalObject, scope, "Proxy object's 'isExtensible' trap returned true when the target is non-extensible. It should have returned false"_s);
}
}
return trapResultAsBool;
}
bool ProxyObject::isExtensible(JSObject* object, JSGlobalObject* globalObject)
{
return jsCast<ProxyObject*>(object)->performIsExtensible(globalObject);
}
bool ProxyObject::performDefineOwnProperty(JSGlobalObject* globalObject, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow)
{
NO_TAIL_CALLS();
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!vm.isSafeToRecurseSoft()) [[unlikely]] {
throwStackOverflowError(globalObject, scope);
return false;
}
JSObject* target = this->target();
auto performDefaultDefineOwnProperty = [&] {
RELEASE_AND_RETURN(scope, target->methodTable()->defineOwnProperty(target, globalObject, propertyName, descriptor, shouldThrow));
};
if (propertyName.isPrivateName())
return false;
JSValue handlerValue = this->handler();
if (handlerValue.isNull()) {
throwTypeError(globalObject, scope, s_proxyAlreadyRevokedErrorMessage);
return false;
}
JSObject* handler = jsCast<JSObject*>(handlerValue);
CallData callData;
JSValue definePropertyMethod = handler->getMethod(globalObject, callData, vm.propertyNames->defineProperty, "'defineProperty' property of a Proxy's handler should be callable"_s);
RETURN_IF_EXCEPTION(scope, false);
if (definePropertyMethod.isUndefined())
return performDefaultDefineOwnProperty();
JSObject* descriptorObject = constructObjectFromPropertyDescriptor(globalObject, descriptor);
scope.assertNoException();
ASSERT(descriptorObject);
MarkedArgumentBuffer arguments;
arguments.append(target);
arguments.append(identifierToSafePublicJSValue(vm, Identifier::fromUid(vm, propertyName.uid())));
arguments.append(descriptorObject);
ASSERT(!arguments.hasOverflowed());
JSValue trapResult = call(globalObject, definePropertyMethod, callData, handler, arguments);
RETURN_IF_EXCEPTION(scope, false);
bool trapResultAsBool = trapResult.toBoolean(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!trapResultAsBool) {
if (shouldThrow)
throwTypeError(globalObject, scope, makeString("Proxy's 'defineProperty' trap returned falsy value for property '"_s, StringView(propertyName.uid()), '\''));
return false;
}
bool settingConfigurableToFalse = descriptor.configurablePresent() && !descriptor.configurable();
if (!settingConfigurableToFalse && !target->structure()->isNonExtensibleOrHasNonConfigurableProperties())
return true;
PropertyDescriptor targetDescriptor;
bool isTargetDescriptorDefined = target->getOwnPropertyDescriptor(globalObject, propertyName, targetDescriptor);
RETURN_IF_EXCEPTION(scope, false);
bool targetIsExtensible = target->isExtensible(globalObject);
RETURN_IF_EXCEPTION(scope, false);
if (!isTargetDescriptorDefined) {
if (!targetIsExtensible) {
throwTypeError(globalObject, scope, "Proxy's 'defineProperty' trap returned true even though getOwnPropertyDescriptor of the Proxy's target returned undefined and the target is non-extensible"_s);
return false;
}
if (settingConfigurableToFalse) {
throwTypeError(globalObject, scope, "Proxy's 'defineProperty' trap returned true for a non-configurable field even though getOwnPropertyDescriptor of the Proxy's target returned undefined"_s);
return false;
}
return true;
}
ASSERT(isTargetDescriptorDefined);
bool isCurrentDefined = isTargetDescriptorDefined;
const PropertyDescriptor& current = targetDescriptor;
bool throwException = false;
bool isCompatibleDescriptor = validateAndApplyPropertyDescriptor(globalObject, nullptr, propertyName, targetIsExtensible, descriptor, isCurrentDefined, current, throwException);
RETURN_IF_EXCEPTION(scope, false);
if (!isCompatibleDescriptor) {
throwTypeError(globalObject, scope, "Proxy's 'defineProperty' trap did not define a property on its target that is compatible with the trap's input descriptor"_s);
return false;
}
if (settingConfigurableToFalse && targetDescriptor.configurable()) {
throwTypeError(globalObject, scope, "Proxy's 'defineProperty' trap did not define a non-configurable property on its target even though the input descriptor to the trap said it must do so"_s);
return false;
}
if (targetDescriptor.isDataDescriptor() && !targetDescriptor.configurable() && targetDescriptor.writable()) {
if (descriptor.writablePresent() && !descriptor.writable()) {
throwTypeError(globalObject, scope, "Proxy's 'defineProperty' trap returned true for a non-writable input descriptor when the target's property is non-configurable and writable"_s);
return false;
}
}
return true;
}