Skip to content

Commit

Permalink
Random improvements to samples/native-stack-overflow (#3353)
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Apr 25, 2024
1 parent 9d6d346 commit a36c7d5
Show file tree
Hide file tree
Showing 7 changed files with 124 additions and 28 deletions.
9 changes: 8 additions & 1 deletion samples/native-stack-overflow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ else()
project (native-stack-overflow C ASM)
endif()

set(CMAKE_C_STANDARD 11)
set(CMAKE_C_EXTENSIONS YES)

################ runtime settings ################
string (TOLOWER ${CMAKE_HOST_SYSTEM_NAME} WAMR_BUILD_PLATFORM)
if (APPLE)
Expand Down Expand Up @@ -43,7 +46,7 @@ if (NOT DEFINED WAMR_BUILD_TARGET)
endif ()

if (NOT CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Debug)
set (CMAKE_BUILD_TYPE Release)
endif ()

set (WAMR_BUILD_INTERP 1)
Expand All @@ -65,6 +68,10 @@ if (NOT MSVC)
endif ()
endif ()

if (CMAKE_C_COMPILER_ID MATCHES "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER 13.0.0)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fstack-usage")
endif ()

# build out vmlib
set (WAMR_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../..)
include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake)
Expand Down
4 changes: 2 additions & 2 deletions samples/native-stack-overflow/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#! /bin/sh

#
# Copyright (C) 2019 Intel Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#

#!/bin/bash

CURR_DIR=$PWD
WAMR_DIR=${PWD}/../..
OUT_DIR=${PWD}/out
Expand Down
2 changes: 1 addition & 1 deletion samples/native-stack-overflow/clean.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rm -r cmake_build cmake_build_disable_hw_bound out
rm -rf cmake_build cmake_build_disable_hw_bound out
22 changes: 15 additions & 7 deletions samples/native-stack-overflow/run.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
#!/bin/bash
#! /bin/sh

echo "====== Interpreter"
out/native-stack-overflow out/wasm-apps/testapp.wasm
set -e

NAME=${1:-test1}

echo "====== Interpreter ${NAME}"
out/native-stack-overflow out/wasm-apps/testapp.wasm ${NAME}

echo
echo "====== Interpreter WAMR_DISABLE_HW_BOUND_CHECK=1 ${NAME}"
out/native-stack-overflow.WAMR_DISABLE_HW_BOUND_CHECK out/wasm-apps/testapp.wasm ${NAME}

echo
echo "====== AOT"
out/native-stack-overflow out/wasm-apps/testapp.wasm.aot
echo "====== AOT ${NAME}"
out/native-stack-overflow out/wasm-apps/testapp.wasm.aot ${NAME}

echo
echo "====== AOT WAMR_DISABLE_HW_BOUND_CHECK=1"
out/native-stack-overflow.WAMR_DISABLE_HW_BOUND_CHECK out/wasm-apps/testapp.wasm.aot.bounds-checks
echo "====== AOT WAMR_DISABLE_HW_BOUND_CHECK=1 ${NAME}"
out/native-stack-overflow.WAMR_DISABLE_HW_BOUND_CHECK out/wasm-apps/testapp.wasm.aot.bounds-checks ${NAME}
44 changes: 39 additions & 5 deletions samples/native-stack-overflow/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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) {
Expand All @@ -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) {
Expand All @@ -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)) {
Expand All @@ -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.
Expand Down
29 changes: 28 additions & 1 deletion samples/native-stack-overflow/src/native_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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++;
Expand All @@ -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;
}
Expand Down
42 changes: 31 additions & 11 deletions samples/native-stack-overflow/wasm-apps/testapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cb(int x)
}

int
consume_stack_cb(int x)
consume_stack_cb(int x) __attribute__((disable_tail_calls))
{
/*
* intentions:
Expand All @@ -39,16 +39,36 @@ host_consume_stack_cb(int x)
return host_consume_stack(x);
}

__attribute__((export_name("test"))) uint32_t
test(uint32_t native_stack, uint32_t recurse_count)
__attribute__((export_name("test1"))) uint32_t
test1(uint32_t native_stack, uint32_t recurse_count)
{
uint32_t ret;
ret = host_consume_stack_and_call_indirect(cb, 321, native_stack);
ret = host_consume_stack_and_call_indirect(consume_stack_cb, recurse_count,
native_stack);
#if 0 /* notyet */
ret = host_consume_stack_and_call_indirect(host_consume_stack_cb, 1000000,
native_stack);
#endif
/*
* ------ os_thread_get_stack_boundary
* ^
* |
* | "native_stack" bytes of stack left by
* | host_consume_stack_and_call_indirect
* |
* | ^
* | |
* | | consume_stack_cb (interpreter or aot)
* v |
* ^
* |
* | host_consume_stack_and_call_indirect
* |
*
*
*/
uint32_t ret = host_consume_stack_and_call_indirect(
consume_stack_cb, recurse_count, native_stack);
return 42;
}

__attribute__((export_name("test2"))) uint32_t
test2(uint32_t native_stack, uint32_t recurse_count)
{
uint32_t ret = host_consume_stack_and_call_indirect(host_consume_stack_cb,
6000, native_stack);
return 42;
}

0 comments on commit a36c7d5

Please sign in to comment.