matsbror opened issue #6695:
Test Case
Steps to Reproduce
- Unzip the example
- run heapsort with
wasmtime heapsort.wasm
To rebuild the program:
- Run Make (assumes clang installed and with WASI_SYSROOT set to the location of the wasi sysroot (or located at
/opt/wasi-sdk/share/wasi-sysroot
Expected Results
I would expect wasmtime to run the program without any errors. It runs well using other runtimes such as iwasm (WAMR). However, wasmer has a similar issue.
Actual Results
$ wasmtime heapsort.wasm Error: failed to run main module `heapsort.wasm` Caused by: 0: failed to invoke command default 1: error while executing at wasm backtrace: 0: 0x28c - <unknown>!__original_main 1: 0x17b - <unknown>!_start 2: memory fault at wasm address 0x20000 in linear memory of size 0x20000 3: wasm trap: out of bounds memory access
Versions and Environment
Wasmtime version or commit:
wasmtime-cli 9.0.3
Operating system: WSL2 Ubuntu-2204, kernel 5.15.90
Architecture: x86-64
Extra Info
Anything else you'd like to add?
If I compile with emscripten instead of regular clang (or the clang included in wasi-sdk), then the resulting webassembly module runs fine also with wasmtime.
matsbror labeled issue #6695:
Test Case
Steps to Reproduce
- Unzip the example
- run heapsort with
wasmtime heapsort.wasm
To rebuild the program:
- Run Make (assumes clang installed and with WASI_SYSROOT set to the location of the wasi sysroot (or located at
/opt/wasi-sdk/share/wasi-sysroot
Expected Results
I would expect wasmtime to run the program without any errors. It runs well using other runtimes such as iwasm (WAMR). However, wasmer has a similar issue.
Actual Results
$ wasmtime heapsort.wasm Error: failed to run main module `heapsort.wasm` Caused by: 0: failed to invoke command default 1: error while executing at wasm backtrace: 0: 0x28c - <unknown>!__original_main 1: 0x17b - <unknown>!_start 2: memory fault at wasm address 0x20000 in linear memory of size 0x20000 3: wasm trap: out of bounds memory access
Versions and Environment
Wasmtime version or commit:
wasmtime-cli 9.0.3
Operating system: WSL2 Ubuntu-2204, kernel 5.15.90
Architecture: x86-64
Extra Info
Anything else you'd like to add?
If I compile with emscripten instead of regular clang (or the clang included in wasi-sdk), then the resulting webassembly module runs fine also with wasmtime.
alexcrichton commented on issue #6695:
Can you clarify more why you think this program should work? The program itself appears to exhibit undefined behavior at the C level as you're allocating an array
double*
elements but storingdouble
elements into it meaning that your allocation is half as large as it needs to be (pointers are 4 bytes anddouble
is 8 bytes). I can additionally reproduce the out-of-bounds behavior innode
as well.Given the debugging I'm doing it appears that iwasm or WAMR may not be executing this wasm correctly because it's indeed attempting a store at address 0x20000 which is out-of-bounds for this wasm instance. I'm not sure why WAMR would not be reporting the out-of-bounds.
matsbror commented on issue #6695:
Thanks @alexcrichton , changing that line to allocate
sizeof(double)
instead clearly corrected the issue.The reason why I thought the program should work is because it is part of sightglass and when running it there it seems to work with wasmtime, albeit called in a different way than with the cli.
The error is in sightglass https://github.com/bytecodealliance/sightglass/blob/04546548e60dcce4b6691f8ddb75442c4d251ad9/benchmarks/shootout-heapsort/benchmark.c#L62 so I should make a pull request to fix it there.
matsbror closed issue #6695:
Test Case
Steps to Reproduce
- Unzip the example
- run heapsort with
wasmtime heapsort.wasm
To rebuild the program:
- Run Make (assumes clang installed and with WASI_SYSROOT set to the location of the wasi sysroot (or located at
/opt/wasi-sdk/share/wasi-sysroot
Expected Results
I would expect wasmtime to run the program without any errors. It runs well using other runtimes such as iwasm (WAMR). However, wasmer has a similar issue.
Actual Results
$ wasmtime heapsort.wasm Error: failed to run main module `heapsort.wasm` Caused by: 0: failed to invoke command default 1: error while executing at wasm backtrace: 0: 0x28c - <unknown>!__original_main 1: 0x17b - <unknown>!_start 2: memory fault at wasm address 0x20000 in linear memory of size 0x20000 3: wasm trap: out of bounds memory access
Versions and Environment
Wasmtime version or commit:
wasmtime-cli 9.0.3
Operating system: WSL2 Ubuntu-2204, kernel 5.15.90
Architecture: x86-64
Extra Info
Anything else you'd like to add?
If I compile with emscripten instead of regular clang (or the clang included in wasi-sdk), then the resulting webassembly module runs fine also with wasmtime.
alexcrichton commented on issue #6695:
Ah ok, in that case it seems like this may be compiler differences. Using emcc seems to create a linear memory with an initial and maximum size of 256, but using
clang
natively seems to create a linear memory of initial size 2 and no maximum size. This means that the UB is papered over since the end of the array still fits in linear memory with emscripten, but it's detected when memory is more minimally fit.
abrown commented on issue #6695:
@matsbror, just a heads up: I also ran into this issue when I was working on https://github.com/bytecodealliance/sightglass/pull/260 and ended up fixing it in https://github.com/bytecodealliance/sightglass/pull/260/commits/8b9855bc77e8e8245a8d3d139f20cca09702e037. Once that PR is merged this should be fixed.
Last updated: Nov 22 2024 at 16:03 UTC