[llvm] c798a5c - [Object][WebAssembly] Fix data segment offsets higher than 2^31 (#125739)

via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 4 14:06:10 PST 2025


Author: Sam Clegg
Date: 2025-02-04T14:06:07-08:00
New Revision: c798a5c4d5c3c8cb21e6001f505d8f44217c2244

URL: https://github.com/llvm/llvm-project/commit/c798a5c4d5c3c8cb21e6001f505d8f44217c2244
DIFF: https://github.com/llvm/llvm-project/commit/c798a5c4d5c3c8cb21e6001f505d8f44217c2244.diff

LOG: [Object][WebAssembly] Fix data segment offsets higher than 2^31 (#125739)

Fixes: #58555

Added: 
    llvm/test/Object/Wasm/data-offsets.yaml
    llvm/test/ObjectYAML/wasm/invalidate_data_offset.yaml

Modified: 
    llvm/include/llvm/BinaryFormat/Wasm.h
    llvm/lib/Object/WasmObjectFile.cpp
    llvm/test/ObjectYAML/wasm/global_section.yaml

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/BinaryFormat/Wasm.h b/llvm/include/llvm/BinaryFormat/Wasm.h
index ede2d692a594916..30271be232ca773 100644
--- a/llvm/include/llvm/BinaryFormat/Wasm.h
+++ b/llvm/include/llvm/BinaryFormat/Wasm.h
@@ -333,8 +333,8 @@ struct WasmTable {
 struct WasmInitExprMVP {
   uint8_t Opcode;
   union {
-    int32_t Int32;
-    int64_t Int64;
+    uint32_t Int32;
+    uint64_t Int64;
     uint32_t Float32;
     uint64_t Float64;
     uint32_t Global;

diff  --git a/llvm/lib/Object/WasmObjectFile.cpp b/llvm/lib/Object/WasmObjectFile.cpp
index 0f6fd5612f9d82a..7815c2670223198 100644
--- a/llvm/lib/Object/WasmObjectFile.cpp
+++ b/llvm/lib/Object/WasmObjectFile.cpp
@@ -201,10 +201,10 @@ static Error readInitExpr(wasm::WasmInitExpr &Expr,
   Expr.Inst.Opcode = readOpcode(Ctx);
   switch (Expr.Inst.Opcode) {
   case wasm::WASM_OPCODE_I32_CONST:
-    Expr.Inst.Value.Int32 = readVarint32(Ctx);
+    Expr.Inst.Value.Int32 = readVaruint32(Ctx);
     break;
   case wasm::WASM_OPCODE_I64_CONST:
-    Expr.Inst.Value.Int64 = readVarint64(Ctx);
+    Expr.Inst.Value.Int64 = readVaruint64(Ctx);
     break;
   case wasm::WASM_OPCODE_F32_CONST:
     Expr.Inst.Value.Float32 = readFloat32(Ctx);

diff  --git a/llvm/test/Object/Wasm/data-offsets.yaml b/llvm/test/Object/Wasm/data-offsets.yaml
new file mode 100644
index 000000000000000..b2e1d00675233e4
--- /dev/null
+++ b/llvm/test/Object/Wasm/data-offsets.yaml
@@ -0,0 +1,22 @@
+# RUN: yaml2obj %s | llvm-objdump -s -
+
+## Tests data offsets above 2**31 for I32_CONST and offset over 2**32 work for I64_CONST
+
+--- !WASM
+FileHeader:
+  Version:         0x00000001
+Sections:
+  - Type:            DATA
+    Segments:
+      - SectionOffset:   0
+        InitFlags:       0
+        Offset:
+          Opcode:          I32_CONST
+          Value:           2147483649
+        Content:         '6401020304'
+      - SectionOffset:   0
+        InitFlags:       0
+        Offset:
+          Opcode:          I64_CONST
+          Value:           4294967297
+        Content:         '6401020304'

diff  --git a/llvm/test/ObjectYAML/wasm/global_section.yaml b/llvm/test/ObjectYAML/wasm/global_section.yaml
index e330b072a726eff..20f4d5440990fe0 100644
--- a/llvm/test/ObjectYAML/wasm/global_section.yaml
+++ b/llvm/test/ObjectYAML/wasm/global_section.yaml
@@ -10,7 +10,7 @@ Sections:
         Mutable:     false
         InitExpr:
           Opcode:          I64_CONST
-          Value:           -5
+          Value:           5
 ...
 # CHECK: --- !WASM
 # CHECK: FileHeader:
@@ -23,5 +23,5 @@ Sections:
 # CHECK:        Mutable:     false
 # CHECK:        InitExpr:
 # CHECK:          Opcode:          I64_CONST
-# CHECK:          Value:           -5
+# CHECK:          Value:           5
 # CHECK: ...

diff  --git a/llvm/test/ObjectYAML/wasm/invalidate_data_offset.yaml b/llvm/test/ObjectYAML/wasm/invalidate_data_offset.yaml
new file mode 100644
index 000000000000000..ac12026379905ba
--- /dev/null
+++ b/llvm/test/ObjectYAML/wasm/invalidate_data_offset.yaml
@@ -0,0 +1,18 @@
+# RUN: not yaml2obj %s 2>&1 | FileCheck %s
+
+## Tests data offsets above 2**32 are not valid for for I32_CONST
+
+--- !WASM
+FileHeader:
+  Version:         0x00000001
+Sections:
+  - Type:            DATA
+    Segments:
+      - SectionOffset:   0
+        InitFlags:       0
+        Offset:
+          Opcode:          I32_CONST
+          Value:           4294967297
+        Content:         '6401020304'
+
+# CHECK: error: out of range number


        


More information about the llvm-commits mailing list