summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2022-11-03 10:10:01 -0700
committerGitHub <noreply@github.com>2022-11-03 10:10:01 -0700
commitbf1782368dc6fee2d5fb9f4dd0cada2ca04ccb30 (patch)
tree34f685293dd0773bf43e832f95d88609bb3dcbdb
parentdaeac1e0735452d54c8b16b51cac88165d0d4eab (diff)
downloadbinaryen-bf1782368dc6fee2d5fb9f4dd0cada2ca04ccb30.tar.gz
binaryen-bf1782368dc6fee2d5fb9f4dd0cada2ca04ccb30.tar.bz2
binaryen-bf1782368dc6fee2d5fb9f4dd0cada2ca04ccb30.zip
Fix binary parsing of data segment memory (#5208)
The binary parser was eagerly getting the name of memories to set the `memory` field of data segments, but that meant that when the memory names were updated later while parsing the names section, the data segment memory fields would become out of date. Update the issue by deferring setting the `memory` fields like we do for other parts of IR that reference memories. Also fix a segfault in the validator that was triggered by the reproducer for this bug before the bug was fixed. Fixes #5204.
-rw-r--r--src/wasm/wasm-binary.cpp3
-rw-r--r--src/wasm/wasm-validator.cpp8
-rw-r--r--test/lit/parse-named-memory.wast14
3 files changed, 20 insertions, 5 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp
index 54c904459..d023a56c6 100644
--- a/src/wasm/wasm-binary.cpp
+++ b/src/wasm/wasm-binary.cpp
@@ -3126,8 +3126,7 @@ void WasmBinaryBuilder::readDataSegments() {
if (flags & BinaryConsts::HasIndex) {
memIdx = getU32LEB();
}
- auto* memory = getMemory(memIdx);
- curr->memory = memory->name;
+ memoryRefs[memIdx].push_back(&curr->memory);
if (!curr->isPassive) {
curr->offset = readExpression();
}
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp
index 44ecbe9c9..cb3841197 100644
--- a/src/wasm/wasm-validator.cpp
+++ b/src/wasm/wasm-validator.cpp
@@ -3208,9 +3208,11 @@ static void validateDataSegments(Module& module, ValidationInfo& info) {
"passive segment should not have an offset");
} else {
auto memory = module.getMemoryOrNull(segment->memory);
- info.shouldBeTrue(memory != nullptr,
- "segment",
- "active segment must have a valid memory name");
+ if (!info.shouldBeTrue(memory != nullptr,
+ "segment",
+ "active segment must have a valid memory name")) {
+ continue;
+ }
if (memory->is64()) {
if (!info.shouldBeEqual(segment->offset->type,
Type(Type::i64),
diff --git a/test/lit/parse-named-memory.wast b/test/lit/parse-named-memory.wast
new file mode 100644
index 000000000..3573376a6
--- /dev/null
+++ b/test/lit/parse-named-memory.wast
@@ -0,0 +1,14 @@
+;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
+
+;; Regression test for a binary parser bug in which memory names on data
+;; segments were not properly updated to use memory names from the name section.
+
+;; RUN: wasm-as %s -g -o %t.wasm
+;; RUN: wasm-opt %t.wasm -S -o - | filecheck %s
+
+(module
+ ;; CHECK: (memory $mem0 100)
+ (memory $mem0 100)
+ (data (offset (i32.const 0)) "")
+)
+;; CHECK: (data (i32.const 0) "")