Skip to content

Commit

Permalink
Revert "alloca" implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
XuJiandong committed Oct 18, 2023
1 parent 10ce40e commit 3d5b3a9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 14 deletions.
1 change: 0 additions & 1 deletion docs/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ With following modifications in `quickjs` folder:
1. header file including
2. A lot of binding functions are removed
3. Macros for other platforms
4. Replace `alloca` function

3. The following files are removed from original QuickJS:
- quickjs-libc.c
Expand Down
1 change: 1 addition & 0 deletions include/c-stdlib/my_stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ int atoi(const char *);
int abs(int);
void exit(int);
void abort(void);
#define alloca __builtin_alloca

#endif /* C_STDLIB_STDLIB_H_ */
3 changes: 1 addition & 2 deletions quickjs/libregexp.c
Original file line number Diff line number Diff line change
Expand Up @@ -2531,8 +2531,7 @@ int lre_exec(uint8_t **capture,
for(i = 0; i < s->capture_count * 2; i++)
capture[i] = NULL;
alloca_size = s->stack_size_max * sizeof(stack_buf[0]);
uint8_t temp[alloca_size];
stack_buf = (StackInt *)temp;
stack_buf = alloca(alloca_size);
ret = lre_exec_backtrack(s, capture, stack_buf, 0, bc_buf + RE_HEADER_LEN,
cbuf + (cindex << cbuf_type), FALSE);
lre_realloc(s->opaque, s->state_stack, 0);
Expand Down
13 changes: 4 additions & 9 deletions quickjs/quickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -5094,11 +5094,10 @@ static JSValue js_c_function_data_call(JSContext *ctx, JSValueConst func_obj,
JSCFunctionDataRecord *s = JS_GetOpaque(func_obj, JS_CLASS_C_FUNCTION_DATA);
JSValueConst *arg_buf;
int i;
uint8_t temp[sizeof(arg_buf[0]) * s->length];

/* XXX: could add the function on the stack for debug */
if (unlikely(argc < s->length)) {
arg_buf = (JSValueConst *)temp;
arg_buf = alloca(sizeof(arg_buf[0]) * s->length);
for(i = 0; i < argc; i++)
arg_buf[i] = argv[i];
for(i = argc; i < s->length; i++)
Expand Down Expand Up @@ -16043,11 +16042,10 @@ static JSValue js_call_c_function(JSContext *ctx, JSValueConst func_obj,
sf->cur_func = (JSValue)func_obj;
sf->arg_count = argc;
arg_buf = argv;
uint8_t temp[sizeof(arg_buf[0]) * arg_count];

if (unlikely(argc < arg_count)) {
/* ensure that at least argc_count arguments are readable */
arg_buf = (JSValueConst *)temp;
arg_buf = alloca(sizeof(arg_buf[0]) * arg_count);
for(i = 0; i < argc; i++)
arg_buf[i] = argv[i];
for(i = argc; i < arg_count; i++)
Expand Down Expand Up @@ -16158,8 +16156,7 @@ static JSValue js_call_bound_function(JSContext *ctx, JSValueConst func_obj,
arg_count = bf->argc + argc;
if (js_check_stack_overflow(ctx->rt, sizeof(JSValue) * arg_count))
return JS_ThrowStackOverflow(ctx);
uint8_t temp[sizeof(JSValue) * arg_count];
arg_buf = (JSValueConst *)temp;
arg_buf = alloca(sizeof(JSValue) * arg_count);
for(i = 0; i < bf->argc; i++) {
arg_buf[i] = bf->argv[i];
}
Expand Down Expand Up @@ -16290,9 +16287,7 @@ static JSValue JS_CallInternal(JSContext *caller_ctx, JSValueConst func_obj,
init_list_head(&sf->var_ref_list);
var_refs = p->u.func.var_refs;

// TODO: fix it
uint8_t temp[1024*10];
local_buf = (JSValue *)temp;
local_buf = alloca(alloca_size);
if (unlikely(arg_allocated_size)) {
int n = min_int(argc, b->arg_count);
arg_buf = local_buf;
Expand Down
2 changes: 1 addition & 1 deletion tests/ckb_js_tests/test_data/fs_module/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
import { fib } from "./fib_module.js";

console.log("Hello World");
console.log("fib(10)=", fib(10));
console.log(`fib(10)=${fib(10)}`);
2 changes: 1 addition & 1 deletion tests/ckb_js_tests/test_data/fs_module_mount/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ckb.mount(2, ckb.SOURCE_CELL_DEP)

import('./fib_module.js')
.then((module) => {
console.log("fib(10)=", module.fib(10))
console.log(`fib(10)=${module.fib(10)}`)
})
.catch((err) => {
console.log(err)
Expand Down

0 comments on commit 3d5b3a9

Please sign in to comment.