Random improvements to samples/native-stack-overflow (#3353)

This commit is contained in:
YAMAMOTO Takashi
2024-04-25 12:22:08 +09:00
committed by GitHub
parent 9d6d3466ff
commit a36c7d5aa9
7 changed files with 124 additions and 28 deletions

View File

@ -20,6 +20,34 @@ static NativeSymbol native_symbols[] = {
{ "host_consume_stack", host_consume_stack, "(i)i", NULL },
};
void *
canary_addr()
{
uint8_t *p = os_thread_get_stack_boundary();
#if defined(OS_ENABLE_HW_BOUND_CHECK) && WASM_DISABLE_STACK_HW_BOUND_CHECK == 0
uint32_t page_size = os_getpagesize();
uint32_t guard_page_count = STACK_OVERFLOW_CHECK_GUARD_PAGE_COUNT;
return p + page_size * guard_page_count;
#else
return p;
#endif
}
void
canary_init(void)
{
uint32_t *canary = canary_addr();
*canary = 0xaabbccdd;
}
bool
canary_check(void)
{
/* assume an overflow if the first uint32_t on the stack was modified */
const uint32_t *canary = (void *)canary_addr();
return *canary == 0xaabbccdd;
}
struct record {
bool failed;
bool leaked;
@ -40,10 +68,11 @@ main(int argc, char **argv)
char *buffer;
char error_buf[128];
if (argc != 2) {
if (argc != 3) {
return 2;
}
char *module_path = argv[1];
const char *module_path = argv[1];
const char *funcname = argv[2];
wasm_module_t module = NULL;
uint32 buf_size;
@ -101,6 +130,7 @@ main(int argc, char **argv)
const char *exception = NULL;
nest = 0;
canary_init();
module_inst = wasm_runtime_instantiate(module, stack_size, heap_size,
error_buf, sizeof(error_buf));
if (!module_inst) {
@ -114,7 +144,6 @@ main(int argc, char **argv)
goto fail2;
}
const char *funcname = "test";
wasm_function_inst_t func =
wasm_runtime_lookup_function(module_inst, funcname);
if (!func) {
@ -124,8 +153,8 @@ main(int argc, char **argv)
/* note: the function type is (ii)i */
uint32_t wasm_argv[] = {
stack,
30,
stack, /* native_stack */
30, /* recurse_count */
};
uint32_t wasm_argc = 2;
if (!wasm_runtime_call_wasm(exec_env, func, wasm_argc, wasm_argv)) {
@ -134,6 +163,11 @@ main(int argc, char **argv)
}
failed = false;
fail2:
if (!canary_check()) {
printf("stack overurn detected for stack=%u\n", stack);
abort();
}
/*
* note: non-zero "nest" here demonstrates resource leak on longjmp
* from signal handler.

View File

@ -3,8 +3,15 @@
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*/
#define __STDC_WANT_LIB_EXT1__ 1
#include <inttypes.h>
#include <stdio.h>
#include <string.h>
#if defined(__APPLE__)
#include <Availability.h>
#endif
#include "wasm_export.h"
#include "bh_platform.h"
@ -38,6 +45,11 @@ host_consume_stack_and_call_indirect(wasm_exec_env_t exec_env, uint32_t funcidx,
void *boundary = os_thread_get_stack_boundary();
void *fp = __builtin_frame_address(0);
ptrdiff_t diff = fp - boundary;
if ((unsigned char *)fp < (unsigned char *)boundary + 1024 * 5) {
wasm_runtime_set_exception(wasm_runtime_get_module_inst(exec_env),
"native stack overflow 2");
return 0;
}
if (diff > stack) {
prev_diff = diff;
nest++;
@ -49,14 +61,29 @@ host_consume_stack_and_call_indirect(wasm_exec_env_t exec_env, uint32_t funcidx,
return call_indirect(exec_env, funcidx, x);
}
static uint32_t
__attribute__((noinline)) static uint32_t
consume_stack1(wasm_exec_env_t exec_env, void *base, uint32_t stack)
__attribute__((disable_tail_calls))
{
void *fp = __builtin_frame_address(0);
ptrdiff_t diff = (unsigned char *)base - (unsigned char *)fp;
assert(diff > 0);
char buf[16];
/*
* note: we prefer to use memset_s here because, unlike memset,
* memset_s is not allowed to be optimized away.
*
* memset_s is available for macOS 10.13+ according to:
* https://developer.apple.com/documentation/kernel/2876438-memset_s
*/
#if defined(__STDC_LIB_EXT1__) \
|| (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) \
&& __MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
memset_s(buf, sizeof(buf), 0, sizeof(buf));
#else
#warning memset_s is not available
memset(buf, 0, sizeof(buf));
#endif
if (diff > stack) {
return diff;
}