forked from chakra-core/ChakraCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsrtInternal.h
More file actions
438 lines (375 loc) · 14.4 KB
/
JsrtInternal.h
File metadata and controls
438 lines (375 loc) · 14.4 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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#pragma once
#include "JsrtExceptionBase.h"
#include "Exceptions/EvalDisabledException.h"
//A class to ensure that even when exceptions are thrown we update any event recording info we were in the middle of
#if ENABLE_TTD
typedef TTD::TTDJsRTActionResultAutoRecorder TTDRecorder;
#else
typedef struct {} TTDRecorder;
#endif
#ifdef NTBUILD // non-browser
#define JSRT_VERIFY_RUNTIME_STATE
#endif
// JSRT Unsafe mode leaves runtime health-state responsibility to the host
#ifndef JSRT_VERIFY_RUNTIME_STATE
#define JSRT_MAYBE_TRUE false
#else
#define JSRT_MAYBE_TRUE true
#endif
#define PARAM_NOT_NULL(p) \
if (p == nullptr) \
{ \
return JsErrorNullArgument; \
}
#define VALIDATE_JSREF(p) \
if (p == JS_INVALID_REFERENCE) \
{ \
return JsErrorInvalidArgument; \
} \
#define MARSHAL_OBJECT(p, scriptContext) \
Js::RecyclableObject* __obj = Js::VarTo<Js::RecyclableObject>(p); \
if (__obj->GetScriptContext() != scriptContext) \
{ \
if(__obj->GetScriptContext()->GetThreadContext() != scriptContext->GetThreadContext()) \
{ \
return JsErrorWrongRuntime; \
} \
p = Js::CrossSite::MarshalVar(scriptContext, __obj); \
}
#define VALIDATE_INCOMING_RUNTIME_HANDLE(p) \
{ \
if (p == JS_INVALID_RUNTIME_HANDLE) \
{ \
return JsErrorInvalidArgument; \
} \
}
#define VALIDATE_INCOMING_PROPERTYID(p) \
{ \
if (p == JS_INVALID_REFERENCE || \
Js::IsInternalPropertyId(((Js::PropertyRecord *)p)->GetPropertyId())) \
{ \
return JsErrorInvalidArgument; \
} \
}
#define VALIDATE_INCOMING_REFERENCE(p, scriptContext) \
{ \
VALIDATE_JSREF(p); \
if (Js::VarIs<Js::RecyclableObject>(p)) \
{ \
MARSHAL_OBJECT(p, scriptContext) \
} \
}
#define VALIDATE_INCOMING_OBJECT(p, scriptContext) \
{ \
VALIDATE_JSREF(p); \
if (!Js::JavascriptOperators::IsObject(p)) \
{ \
return JsErrorArgumentNotObject; \
} \
MARSHAL_OBJECT(p, scriptContext) \
}
#define VALIDATE_INCOMING_RECYCLABLE(p, scriptContext) \
{ \
VALIDATE_JSREF(p); \
if (!Js::VarIs<Js::RecyclableObject>(p)) \
{ \
return JsErrorInvalidArgument; \
} \
MARSHAL_OBJECT(p, scriptContext) \
}
#define VALIDATE_INCOMING_OBJECT_OR_NULL(p, scriptContext) \
{ \
VALIDATE_JSREF(p); \
if (!Js::JavascriptOperators::IsObjectOrNull(p)) \
{ \
return JsErrorArgumentNotObject; \
} \
MARSHAL_OBJECT(p, scriptContext) \
}
#define VALIDATE_INCOMING_FUNCTION(p, scriptContext) \
{ \
VALIDATE_JSREF(p); \
if (!Js::VarIs<Js::JavascriptFunction>(p)) \
{ \
return JsErrorInvalidArgument; \
} \
MARSHAL_OBJECT(p, scriptContext) \
}
template <class Fn>
JsErrorCode GlobalAPIWrapper_Core(Fn fn)
{
JsErrorCode errCode = JsNoError;
try
{
// For now, treat this like an out of memory; consider if we should do something else here.
AUTO_NESTED_HANDLED_EXCEPTION_TYPE((ExceptionType)(ExceptionType_OutOfMemory | ExceptionType_StackOverflow));
errCode = fn();
// These are error codes that should only be produced by the wrappers and should never
// be produced by the internal calls.
Assert(errCode != JsErrorFatal &&
errCode != JsErrorNoCurrentContext &&
errCode != JsErrorInExceptionState &&
errCode != JsErrorInDisabledState &&
errCode != JsErrorOutOfMemory &&
errCode != JsErrorScriptException &&
errCode != JsErrorScriptTerminated);
}
CATCH_STATIC_JAVASCRIPT_EXCEPTION_OBJECT(errCode)
CATCH_OTHER_EXCEPTIONS(errCode)
return errCode;
}
template <class Fn>
JsErrorCode GlobalAPIWrapper(Fn fn)
{
TTDRecorder _actionEntryPopper;
JsErrorCode errCode = GlobalAPIWrapper_Core([&fn, &_actionEntryPopper]() -> JsErrorCode
{
return fn(_actionEntryPopper);
});
#if ENABLE_TTD
_actionEntryPopper.CompleteWithStatusCode(errCode);
#endif
return errCode;
}
template <class Fn>
JsErrorCode GlobalAPIWrapper_NoRecord(Fn fn)
{
return GlobalAPIWrapper_Core([&fn]() -> JsErrorCode
{
return fn();
});
}
JsErrorCode CheckContext(JsrtContext *currentContext, bool verifyRuntimeState, bool allowInObjectBeforeCollectCallback = false);
template <bool verifyRuntimeState, class Fn>
JsErrorCode ContextAPIWrapper_Core(Fn fn)
{
JsrtContext *currentContext = JsrtContext::GetCurrent();
JsErrorCode errCode = CheckContext(currentContext, verifyRuntimeState);
if(errCode != JsNoError)
{
return errCode;
}
Js::ScriptContext *scriptContext = currentContext->GetScriptContext();
try
{
AUTO_NESTED_HANDLED_EXCEPTION_TYPE((ExceptionType)(ExceptionType_OutOfMemory | ExceptionType_JavascriptException));
// Enter script
BEGIN_ENTER_SCRIPT(scriptContext, true, true, true)
{
errCode = fn(scriptContext);
}
END_ENTER_SCRIPT
// These are error codes that should only be produced by the wrappers and should never
// be produced by the internal calls.
Assert(errCode != JsErrorFatal &&
errCode != JsErrorNoCurrentContext &&
errCode != JsErrorInExceptionState &&
errCode != JsErrorInDisabledState &&
errCode != JsErrorOutOfMemory &&
errCode != JsErrorScriptException &&
errCode != JsErrorScriptTerminated);
}
catch(Js::OutOfMemoryException)
{
errCode = JsErrorOutOfMemory;
}
catch(const Js::JavascriptException& err)
{
scriptContext->GetThreadContext()->SetRecordedException(err.GetAndClear());
errCode = JsErrorScriptException;
}
catch(Js::ScriptAbortException)
{
Assert(scriptContext->GetThreadContext()->GetRecordedException() == nullptr);
scriptContext->GetThreadContext()->SetRecordedException(scriptContext->GetThreadContext()->GetPendingTerminatedErrorObject());
errCode = JsErrorScriptTerminated;
}
catch(Js::EvalDisabledException)
{
errCode = JsErrorScriptEvalDisabled;
}
CATCH_OTHER_EXCEPTIONS(errCode)
return errCode;
}
template <bool verifyRuntimeState, class Fn>
JsErrorCode ContextAPIWrapper(Fn fn)
{
TTDRecorder _actionEntryPopper;
JsErrorCode errCode = ContextAPIWrapper_Core<verifyRuntimeState>([&fn, &_actionEntryPopper](Js::ScriptContext* scriptContext) -> JsErrorCode
{
return fn(scriptContext, _actionEntryPopper);
});
#if ENABLE_TTD
_actionEntryPopper.CompleteWithStatusCode(errCode);
#endif
return errCode;
}
template <bool verifyRuntimeState, class Fn>
JsErrorCode ContextAPIWrapper_NoRecord(Fn fn)
{
return ContextAPIWrapper_Core<verifyRuntimeState>([&fn](Js::ScriptContext* scriptContext) -> JsErrorCode
{
return fn(scriptContext);
});
}
// allowInObjectBeforeCollectCallback only when current API is guaranteed not to do recycler allocation.
template <class Fn>
JsErrorCode ContextAPINoScriptWrapper_Core(Fn fn, bool allowInObjectBeforeCollectCallback = false,
bool scriptExceptionAllowed = false)
{
JsrtContext *currentContext = JsrtContext::GetCurrent();
JsErrorCode errCode = CheckContext(currentContext, /*verifyRuntimeState*/JSRT_MAYBE_TRUE,
allowInObjectBeforeCollectCallback);
if(errCode != JsNoError)
{
return errCode;
}
Js::ScriptContext *scriptContext = currentContext->GetScriptContext();
try
{
// For now, treat this like an out of memory; consider if we should do something else here.
AUTO_NESTED_HANDLED_EXCEPTION_TYPE((ExceptionType)(ExceptionType_OutOfMemory | ExceptionType_StackOverflow));
errCode = fn(scriptContext);
// These are error codes that should only be produced by the wrappers and should never
// be produced by the internal calls.
Assert(errCode != JsErrorFatal &&
errCode != JsErrorNoCurrentContext &&
errCode != JsErrorInExceptionState &&
errCode != JsErrorInDisabledState &&
errCode != JsErrorOutOfMemory &&
(scriptExceptionAllowed || errCode != JsErrorScriptException) &&
errCode != JsErrorScriptTerminated);
}
CATCH_STATIC_JAVASCRIPT_EXCEPTION_OBJECT(errCode)
catch(const Js::JavascriptException& err)
{
AssertMsg(false, "Should never get JavascriptExceptionObject for ContextAPINoScriptWrapper.");
scriptContext->GetThreadContext()->SetRecordedException(err.GetAndClear());
errCode = JsErrorScriptException;
}
catch(Js::ScriptAbortException)
{
Assert(scriptContext->GetThreadContext()->GetRecordedException() == nullptr);
scriptContext->GetThreadContext()->SetRecordedException(scriptContext->GetThreadContext()->GetPendingTerminatedErrorObject());
errCode = JsErrorScriptTerminated;
}
CATCH_OTHER_EXCEPTIONS(errCode)
return errCode;
}
template <class Fn>
JsErrorCode ContextAPINoScriptWrapper(Fn fn, bool allowInObjectBeforeCollectCallback = false, bool scriptExceptionAllowed = false)
{
TTDRecorder _actionEntryPopper;
JsErrorCode errCode = ContextAPINoScriptWrapper_Core([&fn, &_actionEntryPopper](Js::ScriptContext* scriptContext) -> JsErrorCode
{
return fn(scriptContext, _actionEntryPopper);
}, allowInObjectBeforeCollectCallback, scriptExceptionAllowed);
#if ENABLE_TTD
_actionEntryPopper.CompleteWithStatusCode(errCode);
#endif
return errCode;
}
template <class Fn>
JsErrorCode ContextAPINoScriptWrapper_NoRecord(Fn fn, bool allowInObjectBeforeCollectCallback = false, bool scriptExceptionAllowed = false)
{
return ContextAPINoScriptWrapper_Core([&fn](Js::ScriptContext* scriptContext) -> JsErrorCode
{
return fn(scriptContext);
}, allowInObjectBeforeCollectCallback, scriptExceptionAllowed);
}
template <class Fn>
JsErrorCode SetContextAPIWrapper(JsrtContext* newContext, Fn fn)
{
JsrtContext* oldContext = JsrtContext::GetCurrent();
Js::ScriptContext* scriptContext = newContext->GetScriptContext();
JsErrorCode errorCode = JsNoError;
try
{
// For now, treat this like an out of memory; consider if we should do something else here.
AUTO_NESTED_HANDLED_EXCEPTION_TYPE((ExceptionType)(ExceptionType_OutOfMemory | ExceptionType_StackOverflow | ExceptionType_JavascriptException));
if (JsrtContext::TrySetCurrent(newContext))
{
// Enter script
BEGIN_ENTER_SCRIPT(scriptContext, true, true, true)
{
errorCode = fn(scriptContext);
}
END_ENTER_SCRIPT
}
else
{
errorCode = JsErrorWrongThread;
}
// These are error codes that should only be produced by the wrappers and should never
// be produced by the internal calls.
Assert(errorCode != JsErrorFatal &&
errorCode != JsErrorNoCurrentContext &&
errorCode != JsErrorInExceptionState &&
errorCode != JsErrorInDisabledState &&
errorCode != JsErrorOutOfMemory &&
errorCode != JsErrorScriptException &&
errorCode != JsErrorScriptTerminated);
}
catch (Js::OutOfMemoryException)
{
errorCode = JsErrorOutOfMemory;
}
catch (const Js::JavascriptException& err)
{
scriptContext->GetThreadContext()->SetRecordedException(err.GetAndClear());
errorCode = JsErrorScriptException;
}
catch (Js::ScriptAbortException)
{
Assert(scriptContext->GetThreadContext()->GetRecordedException() == nullptr);
scriptContext->GetThreadContext()->SetRecordedException(scriptContext->GetThreadContext()->GetPendingTerminatedErrorObject());
errorCode = JsErrorScriptTerminated;
}
catch (Js::EvalDisabledException)
{
errorCode = JsErrorScriptEvalDisabled;
}
catch (Js::StackOverflowException)
{
return JsErrorOutOfMemory;
}
CATCH_OTHER_EXCEPTIONS(errorCode)
AUTO_NESTED_HANDLED_EXCEPTION_TYPE((ExceptionType)(ExceptionType_OutOfMemory | ExceptionType_StackOverflow));
JsrtContext::TrySetCurrent(oldContext);
return errorCode;
}
void HandleScriptCompileError(Js::ScriptContext * scriptContext, CompileScriptException * se, const WCHAR * sourceUrl = nullptr);
#if DBG
#define _PREPARE_RETURN_NO_EXCEPTION __debugCheckNoException.hasException = false;
#else
#define _PREPARE_RETURN_NO_EXCEPTION
#endif
#define BEGIN_JSRT_NO_EXCEPTION BEGIN_NO_EXCEPTION
#define END_JSRT_NO_EXCEPTION END_NO_EXCEPTION return JsNoError;
#define RETURN_NO_EXCEPTION(x) _PREPARE_RETURN_NO_EXCEPTION return x
////
//Define compact TTD macros for use in the JSRT API's
//A class to ensure that even when exceptions are thrown we update any event recording info we were in the middle of
#if ENABLE_TTD
#define PERFORM_JSRT_TTD_RECORD_ACTION_CHECK(CTX) (CTX)->ShouldPerformRecordAction()
#define PERFORM_JSRT_TTD_RECORD_ACTION(CTX, ACTION_CODE, ...) \
if(PERFORM_JSRT_TTD_RECORD_ACTION_CHECK(CTX)) \
{ \
(CTX)->GetThreadContext()->TTDLog->##ACTION_CODE##(_actionEntryPopper, ##__VA_ARGS__); \
}
#define PERFORM_JSRT_TTD_RECORD_ACTION_RESULT(CTX, RESULT) if(PERFORM_JSRT_TTD_RECORD_ACTION_CHECK(CTX)) \
{ \
_actionEntryPopper.SetResult(RESULT); \
}
//TODO: find and replace all of the occourences of this in jsrt.cpp
#define PERFORM_JSRT_TTD_RECORD_ACTION_NOT_IMPLEMENTED(CTX) if(PERFORM_JSRT_TTD_RECORD_ACTION_CHECK(CTX)) { AssertMsg(false, "Need to implement support here!!!"); }
#else
#define PERFORM_JSRT_TTD_RECORD_ACTION_CHECK(CTX) false
#define PERFORM_JSRT_TTD_RECORD_ACTION(CTX, ACTION_CODE, ...)
#define PERFORM_JSRT_TTD_RECORD_ACTION_RESULT(CTX, RESULT)
#define PERFORM_JSRT_TTD_RECORD_ACTION_NOT_IMPLEMENTED(CTX)
#endif