diff options
author | Dan Gohman <dev@sunfishcode.online> | 2024-12-05 16:02:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-06 00:02:40 +0000 |
commit | 4e7d7efe6e9a786370848e669041bdc237730a8b (patch) | |
tree | 59915d25d4b8644610c170819b647b35750166ad /src | |
parent | c6a4f637bf1dd9b1c4e2f75249a82af9d5b7e71e (diff) | |
download | wabt-4e7d7efe6e9a786370848e669041bdc237730a8b.tar.gz wabt-4e7d7efe6e9a786370848e669041bdc237730a8b.tar.bz2 wabt-4e7d7efe6e9a786370848e669041bdc237730a8b.zip |
Issue a nicer error message on wasm components. (#2515)
Decode just enough of the component binary format to recognize when the
input is a component, and issue a dedicated error message for it.
Before:
0000008: error: bad wasm file version: 0x1000d (expected 0x1)
After:
0000008: error: wasm components are not yet supported in this tool
Diffstat (limited to 'src')
-rw-r--r-- | src/binary-reader.cc | 45 |
1 files changed, 34 insertions, 11 deletions
diff --git a/src/binary-reader.cc b/src/binary-reader.cc index 7b0b4187..e1859a1c 100644 --- a/src/binary-reader.cc +++ b/src/binary-reader.cc @@ -37,12 +37,17 @@ #include <alloca.h> #endif -#define ERROR_IF(expr, ...) \ - do { \ - if (expr) { \ - PrintError(__VA_ARGS__); \ - return Result::Error; \ - } \ +#define ERROR(...) \ + do { \ + PrintError(__VA_ARGS__); \ + return Result::Error; \ + } while (0) + +#define ERROR_IF(expr, ...) \ + do { \ + if (expr) { \ + ERROR(__VA_ARGS__); \ + } \ } while (0) #define ERROR_UNLESS(expr, ...) ERROR_IF(!(expr), __VA_ARGS__) @@ -100,6 +105,7 @@ class BinaryReader { const char* type_name, const char* desc); [[nodiscard]] Result ReadU8(uint8_t* out_value, const char* desc); + [[nodiscard]] Result ReadU16(uint16_t* out_value, const char* desc); [[nodiscard]] Result ReadU32(uint32_t* out_value, const char* desc); [[nodiscard]] Result ReadF32(uint32_t* out_value, const char* desc); [[nodiscard]] Result ReadF64(uint64_t* out_value, const char* desc); @@ -300,6 +306,10 @@ Result BinaryReader::ReadU8(uint8_t* out_value, const char* desc) { return ReadT(out_value, "uint8_t", desc); } +Result BinaryReader::ReadU16(uint16_t* out_value, const char* desc) { + return ReadT(out_value, "uint16_t", desc); +} + Result BinaryReader::ReadU32(uint32_t* out_value, const char* desc) { return ReadT(out_value, "uint32_t", desc); } @@ -3086,11 +3096,24 @@ Result BinaryReader::ReadModule(const ReadModuleOptions& options) { uint32_t magic = 0; CHECK_RESULT(ReadU32(&magic, "magic")); ERROR_UNLESS(magic == WABT_BINARY_MAGIC, "bad magic value"); - uint32_t version = 0; - CHECK_RESULT(ReadU32(&version, "version")); - ERROR_UNLESS(version == WABT_BINARY_VERSION, - "bad wasm file version: %#x (expected %#x)", version, - WABT_BINARY_VERSION); + + uint16_t version = 0, layer = 0; + CHECK_RESULT(ReadU16(&version, "version")); + CHECK_RESULT(ReadU16(&layer, "layer")); + + switch (layer) { + case WABT_BINARY_LAYER_MODULE: + ERROR_UNLESS(version == WABT_BINARY_VERSION, + "bad wasm file version: %#x (expected %#x)", version, + WABT_BINARY_VERSION); + break; + case WABT_BINARY_LAYER_COMPONENT: + ERROR("wasm components are not yet supported in this tool"); + break; + default: + ERROR("unsupported wasm layer: %#x", layer); + break; + } CALLBACK(BeginModule, version); CHECK_RESULT(ReadSections(ReadSectionsOptions{options.stop_on_first_error})); |