summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-05-21 16:13:15 -0700
committerGitHub <noreply@github.com>2024-05-21 16:13:15 -0700
commit772e57234c3cba9bdc6432d42017f7c22b3f6e56 (patch)
tree0541b0e405c2555edd732e247ca80bb37bea4305 /src/wasm-interpreter.h
parent326bfcd7d9f6927e28d106a6cd6e9c408a0f6a0d (diff)
downloadbinaryen-772e57234c3cba9bdc6432d42017f7c22b3f6e56.tar.gz
binaryen-772e57234c3cba9bdc6432d42017f7c22b3f6e56.tar.bz2
binaryen-772e57234c3cba9bdc6432d42017f7c22b3f6e56.zip
Fix TableFill bounds checking (#6621)
The offsets are unsigned.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index f9b7e8c50..c12f9cc33 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -3137,21 +3137,16 @@ public:
}
auto info = getTableInstanceInfo(curr->table);
- auto* table = self()->wasm.getTable(info.name);
- Index dest = table->indexType == Type::i64
- ? destFlow.getSingleValue().geti64()
- : destFlow.getSingleValue().geti32();
+ auto dest = destFlow.getSingleValue().getUnsigned();
Literal value = valueFlow.getSingleValue();
- Index size = table->indexType == Type::i64
- ? sizeFlow.getSingleValue().geti64()
- : sizeFlow.getSingleValue().geti32();
+ auto size = sizeFlow.getSingleValue().getUnsigned();
- Index tableSize = info.interface()->tableSize(info.name);
+ auto tableSize = info.interface()->tableSize(info.name);
if (dest + size > tableSize) {
trap("out of bounds table access");
}
- for (Index i = 0; i < size; ++i) {
+ for (uint64_t i = 0; i < size; i++) {
info.interface()->tableStore(info.name, dest + i, value);
}
return Flow();