diff options
author | Keith Winstein <keithw@cs.stanford.edu> | 2023-06-12 12:37:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 19:37:13 +0000 |
commit | 5edb24126ed5183d35b317478fc5a7f8ca831ac9 (patch) | |
tree | 2aa2afeb559a575bdc2b83760a51d809b6907895 /src/interp/binary-reader-interp.cc | |
parent | 4247346029a7c4697df884590c6385561e772b97 (diff) | |
download | wabt-5edb24126ed5183d35b317478fc5a7f8ca831ac9.tar.gz wabt-5edb24126ed5183d35b317478fc5a7f8ca831ac9.tar.bz2 wabt-5edb24126ed5183d35b317478fc5a7f8ca831ac9.zip |
memory64: when enabled, check offset range at validation-time (#2253)
* memory64: when enabled, offset range check is at validation-time
Before memory64, the "offset" in a load/store expression was
a u32, and we enforced this in the WastParser and BinaryReader.
After memory64, the "offset" becomes a u64 syntactically, and the
validator checks that it's <= UINT32_MAX for i32 memories.
We hadn't been correctly allowing these very large offsets
in the text format (even when memory64 was enabled and the memory
was i64).
(This change also eliminates the "memories" member in the
BinaryReader. The BinaryReader no longer needs to keep track
of the memories and their types to check well-formedness.)
Diffstat (limited to 'src/interp/binary-reader-interp.cc')
-rw-r--r-- | src/interp/binary-reader-interp.cc | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/interp/binary-reader-interp.cc b/src/interp/binary-reader-interp.cc index 42f4c013..d8426d30 100644 --- a/src/interp/binary-reader-interp.cc +++ b/src/interp/binary-reader-interp.cc @@ -907,9 +907,9 @@ Result BinaryReaderInterp::OnSimdLoadLaneExpr(Opcode opcode, Address alignment_log2, Address offset, uint64_t value) { - CHECK_RESULT(validator_.OnSimdLoadLane(GetLocation(), opcode, - Var(memidx, GetLocation()), - GetAlignment(alignment_log2), value)); + CHECK_RESULT(validator_.OnSimdLoadLane( + GetLocation(), opcode, Var(memidx, GetLocation()), + GetAlignment(alignment_log2), offset, value)); istream_.Emit(opcode, memidx, offset, static_cast<u8>(value)); return Result::Ok; } @@ -919,9 +919,9 @@ Result BinaryReaderInterp::OnSimdStoreLaneExpr(Opcode opcode, Address alignment_log2, Address offset, uint64_t value) { - CHECK_RESULT(validator_.OnSimdStoreLane(GetLocation(), opcode, - Var(memidx, GetLocation()), - GetAlignment(alignment_log2), value)); + CHECK_RESULT(validator_.OnSimdStoreLane( + GetLocation(), opcode, Var(memidx, GetLocation()), + GetAlignment(alignment_log2), offset, value)); istream_.Emit(opcode, memidx, offset, static_cast<u8>(value)); return Result::Ok; } @@ -938,7 +938,7 @@ Result BinaryReaderInterp::OnLoadSplatExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnLoadSplat(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -949,7 +949,7 @@ Result BinaryReaderInterp::OnLoadZeroExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnLoadZero(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -960,7 +960,7 @@ Result BinaryReaderInterp::OnAtomicLoadExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicLoad(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -971,7 +971,7 @@ Result BinaryReaderInterp::OnAtomicStoreExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicStore(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -982,7 +982,7 @@ Result BinaryReaderInterp::OnAtomicRmwExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicRmw(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -993,7 +993,7 @@ Result BinaryReaderInterp::OnAtomicRmwCmpxchgExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicRmwCmpxchg(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -1294,7 +1294,7 @@ Result BinaryReaderInterp::OnLoadExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnLoad(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -1305,7 +1305,7 @@ Result BinaryReaderInterp::OnStoreExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnStore(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -1400,7 +1400,7 @@ Result BinaryReaderInterp::OnAtomicWaitExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicWait(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } @@ -1417,7 +1417,7 @@ Result BinaryReaderInterp::OnAtomicNotifyExpr(Opcode opcode, Address offset) { CHECK_RESULT(validator_.OnAtomicNotify(GetLocation(), opcode, Var(memidx, GetLocation()), - GetAlignment(align_log2))); + GetAlignment(align_log2), offset)); istream_.Emit(opcode, memidx, offset); return Result::Ok; } |