Compare commits

...

2 Commits

Author SHA1 Message Date
Renáta Hodován
6600f59539
Merge 99882ef128b923262748ef80784fc1c22c3b7519 into 20d2b404af65edc5d66ee6f11a59f930ea3d1b88 2025-08-29 18:06:19 +08:00
Renata Hodovan
99882ef128 Ensure that workers in fuzzers can create their own context
Inspired by qjs, a new helper method was added to create the JS
context, that can be reused to create context in workers, too.
2024-07-23 20:04:13 +02:00
4 changed files with 20 additions and 4 deletions

View File

@ -28,6 +28,22 @@ void reset_nbinterrupts() {
nbinterrupts = 0;
}
JSContext *JS_NewCustomContext(JSRuntime *rt)
{
JSContext *ctx = JS_NewContext(rt);
if (!ctx)
return NULL;
JS_AddIntrinsicBigFloat(ctx);
JS_AddIntrinsicBigDecimal(ctx);
JS_AddIntrinsicOperators(ctx);
JS_EnableBignumExt(ctx, 1);
js_init_module_std(ctx, "std");
js_init_module_os(ctx, "os");
return ctx;
}
void test_one_input_init(JSRuntime *rt, JSContext *ctx) {
// 64 Mo
JS_SetMemoryLimit(rt, 0x4000000);
@ -36,12 +52,11 @@ void test_one_input_init(JSRuntime *rt, JSContext *ctx) {
JS_SetModuleLoaderFunc(rt, NULL, js_module_loader, NULL);
JS_SetInterruptHandler(JS_GetRuntime(ctx), interrupt_handler, NULL);
js_std_set_worker_new_context_func(JS_NewCustomContext);
js_std_add_helpers(ctx, 0, NULL);
// Load os and std
js_std_init_handlers(rt);
js_init_module_std(ctx, "std");
js_init_module_os(ctx, "os");
const char *str = "import * as std from 'std';\n"
"import * as os from 'os';\n"
"globalThis.std = std;\n"

View File

@ -18,5 +18,6 @@
static int nbinterrupts = 0;
JSContext *JS_NewCustomContext(JSRuntime *rt);
void reset_nbinterrupts();
void test_one_input_init(JSRuntime *rt, JSContext *ctx);

View File

@ -27,7 +27,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
return 0;
JSRuntime *rt = JS_NewRuntime();
JSContext *ctx = JS_NewContext(rt);
JSContext *ctx = JS_NewCustomContext(rt);
test_one_input_init(rt, ctx);
uint8_t *null_terminated_data = malloc(size + 1);

View File

@ -26,7 +26,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
return 0;
JSRuntime *rt = JS_NewRuntime();
JSContext *ctx = JS_NewContext(rt);
JSContext *ctx = JS_NewCustomContext(rt);
test_one_input_init(rt, ctx);
uint8_t *null_terminated_data = malloc(size + 1);