Coverage Report

Created: 2026-08-13 06:09

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/WasmEdge/lib/loader/ast/component/component.cpp
Line
Count
Source
1
// SPDX-License-Identifier: Apache-2.0
2
// SPDX-FileCopyrightText: Copyright The WasmEdge Authors
3
4
#include "loader/loader.h"
5
6
using namespace std::literals;
7
8
namespace WasmEdge {
9
namespace Loader {
10
11
33.7k
Expect<std::pair<std::vector<Byte>, std::vector<Byte>>> Loader::loadPreamble() {
12
  // component ::= <preamble> s*:<section>* => (component flatten(s*))
13
  // preamble  ::= <magic> <version> <layer>
14
  // magic     ::= 0x00 0x61 0x73 0x6D
15
  // version   ::= 0x0a 0x00
16
  // layer     ::= 0x01 0x00
17
18
  // The combination of version and layer corresponds to the version of core
19
  // wasm.
20
  // The core module has the same magic but a different version:
21
  // 0x01 0x00 0x00 0x00
22
33.7k
  auto Magic = FMgr.readBytes(4);
23
33.7k
  if (!Magic) {
24
87
    return logLoadError(Magic.error(), FMgr.getLastOffset(),
25
87
                        ASTNodeAttr::Module);
26
87
  }
27
33.7k
  std::vector<Byte> WasmMagic = {0x00, 0x61, 0x73, 0x6D};
28
33.7k
  if (*Magic != WasmMagic) {
29
118
    auto M = *Magic;
30
118
    spdlog::error("Might an invalid wasm file, magic expected, but got 0x{:X} "
31
118
                  "0x{:X} 0x{:X} 0x{:X}"sv,
32
118
                  M[0], M[1], M[2], M[3]);
33
118
    return logLoadError(ErrCode::Value::MalformedMagic, FMgr.getLastOffset(),
34
118
                        ASTNodeAttr::Module);
35
118
  }
36
33.5k
  auto Ver = FMgr.readBytes(4);
37
33.5k
  if (!Ver) {
38
3
    return logLoadError(Ver.error(), FMgr.getLastOffset(), ASTNodeAttr::Module);
39
3
  }
40
33.5k
  return std::make_pair(*Magic, *Ver);
41
33.5k
}
42
43
Expect<void> Loader::loadComponent(AST::Component::Component &Comp,
44
11.8k
                                   std::optional<uint64_t> Bound) {
45
11.8k
  ComponentNestGuard NestGuard(ComponentNestLevel);
46
11.8k
  if (unlikely(ComponentNestLevel > MaxComponentNestLevel)) {
47
1
    return logLoadError(ErrCode::Value::ComponentNestLevelExceeded,
48
1
                        FMgr.getLastOffset(), ASTNodeAttr::Component);
49
1
  }
50
11.8k
  auto ReportError = [](auto E) {
51
3.93k
    spdlog::error(ErrInfo::InfoAST(ASTNodeAttr::Component));
52
3.93k
    return E;
53
3.93k
  };
54
  // component ::= <preamble> s*:<section>*           => (component flatten(s*))
55
  // section   ::=    section_0(<core:custom>)        => ϵ
56
  //             | m: section_1(<core:module>)        => [core-prefix(m)]
57
  //             | i*:section_2(vec(<core:instance>)) => core-prefix(i)*
58
  //             | t*:section_3(vec(<core:type>))     => core-prefix(t)*
59
  //             | c: section_4(<component>)          => [c]
60
  //             | i*:section_5(vec(<instance>))      => i*
61
  //             | a*:section_6(vec(<alias>))         => a*
62
  //             | t*:section_7(vec(<type>))          => t*
63
  //             | c*:section_8(vec(<canon>))         => c*
64
  //             | s: section_9(<start>)              => [s]
65
  //             | i*:section_10(vec(<import>))       => i*
66
  //             | e*:section_11(vec(<export>))       => e*
67
  //             | v*:section_12(vec(<value>))        => v* 🪙
68
11.8k
  uint64_t StartOffset = FMgr.getOffset();
69
11.8k
  uint64_t Offset = FMgr.getOffset();
70
11.8k
  Expect<Byte> ResSecId;
71
72
3.04M
  while ((!Bound.has_value() || *Bound > Offset - StartOffset) &&
73
3.03M
         (ResSecId = FMgr.readByte())) {
74
3.03M
    if (!ResSecId) {
75
0
      return logLoadError(ResSecId.error(), FMgr.getLastOffset(),
76
0
                          ASTNodeAttr::Component);
77
0
    }
78
    // keep going only if we have new section ID
79
3.03M
    uint8_t NewSectionId = *ResSecId;
80
3.03M
    Comp.getSections().emplace_back();
81
3.03M
    auto &Sec = Comp.getSections().back();
82
83
3.03M
    switch (NewSectionId) {
84
1.33M
    case 0x00:
85
1.33M
      EXPECTED_TRY(loadSection(Sec.emplace<AST::CustomSection>())
86
1.33M
                       .map_error(ReportError));
87
1.33M
      break;
88
1.33M
    case 0x01:
89
5.14k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CoreModuleSection>())
90
5.02k
                       .map_error(ReportError));
91
5.02k
      break;
92
7.37k
    case 0x02:
93
7.37k
      EXPECTED_TRY(
94
7.13k
          loadSection(Sec.emplace<AST::Component::CoreInstanceSection>())
95
7.13k
              .map_error(ReportError));
96
7.13k
      break;
97
320k
    case 0x03:
98
320k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CoreTypeSection>())
99
320k
                       .map_error(ReportError));
100
320k
      break;
101
320k
    case 0x04:
102
5.29k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ComponentSection>())
103
4.30k
                       .map_error(ReportError));
104
4.30k
      break;
105
85.3k
    case 0x05:
106
85.3k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::InstanceSection>())
107
85.1k
                       .map_error(ReportError));
108
85.1k
      break;
109
85.1k
    case 0x06:
110
6.67k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::AliasSection>())
111
6.56k
                       .map_error(ReportError));
112
6.56k
      break;
113
1.21M
    case 0x07:
114
1.21M
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::TypeSection>())
115
1.21M
                       .map_error(ReportError));
116
1.21M
      break;
117
1.21M
    case 0x08:
118
26.8k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CanonSection>())
119
26.3k
                       .map_error(ReportError));
120
26.3k
      break;
121
26.3k
    case 0x09:
122
1.63k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::StartSection>())
123
1.53k
                       .map_error(ReportError));
124
1.53k
      break;
125
17.0k
    case 0x0A:
126
17.0k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ImportSection>())
127
16.9k
                       .map_error(ReportError));
128
16.9k
      break;
129
16.9k
    case 0x0B:
130
5.68k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ExportSection>())
131
5.59k
                       .map_error(ReportError));
132
5.59k
      break;
133
5.59k
    default:
134
46
      return logLoadError(ErrCode::Value::MalformedSection,
135
46
                          FMgr.getLastOffset(), ASTNodeAttr::Component);
136
3.03M
    }
137
3.02M
    Offset = FMgr.getOffset();
138
3.02M
  }
139
7.89k
  return {};
140
11.8k
}
141
142
} // namespace Loader
143
} // namespace WasmEdge