Coverage Report

Created: 2026-08-08 06:32

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
41.2k
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
41.2k
  auto Magic = FMgr.readBytes(4);
23
41.2k
  if (!Magic) {
24
113
    return logLoadError(Magic.error(), FMgr.getLastOffset(),
25
113
                        ASTNodeAttr::Module);
26
113
  }
27
41.1k
  std::vector<Byte> WasmMagic = {0x00, 0x61, 0x73, 0x6D};
28
41.1k
  if (*Magic != WasmMagic) {
29
128
    auto M = *Magic;
30
128
    spdlog::error("Might an invalid wasm file, magic expected, but got 0x{:X} "
31
128
                  "0x{:X} 0x{:X} 0x{:X}"sv,
32
128
                  M[0], M[1], M[2], M[3]);
33
128
    return logLoadError(ErrCode::Value::MalformedMagic, FMgr.getLastOffset(),
34
128
                        ASTNodeAttr::Module);
35
128
  }
36
41.0k
  auto Ver = FMgr.readBytes(4);
37
41.0k
  if (!Ver) {
38
3
    return logLoadError(Ver.error(), FMgr.getLastOffset(), ASTNodeAttr::Module);
39
3
  }
40
41.0k
  return std::make_pair(*Magic, *Ver);
41
41.0k
}
42
43
Expect<void> Loader::loadComponent(AST::Component::Component &Comp,
44
16.7k
                                   std::optional<uint64_t> Bound) {
45
16.7k
  ComponentNestGuard NestGuard(ComponentNestLevel);
46
16.7k
  if (unlikely(ComponentNestLevel > MaxComponentNestLevel)) {
47
1
    return logLoadError(ErrCode::Value::ComponentNestLevelExceeded,
48
1
                        FMgr.getLastOffset(), ASTNodeAttr::Component);
49
1
  }
50
16.7k
  auto ReportError = [](auto E) {
51
5.83k
    spdlog::error(ErrInfo::InfoAST(ASTNodeAttr::Component));
52
5.83k
    return E;
53
5.83k
  };
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
16.7k
  uint64_t StartOffset = FMgr.getOffset();
69
16.7k
  uint64_t Offset = FMgr.getOffset();
70
16.7k
  Expect<Byte> ResSecId;
71
72
8.23M
  while ((!Bound.has_value() || *Bound > Offset - StartOffset) &&
73
8.22M
         (ResSecId = FMgr.readByte())) {
74
8.22M
    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
8.22M
    uint8_t NewSectionId = *ResSecId;
80
8.22M
    Comp.getSections().emplace_back();
81
8.22M
    auto &Sec = Comp.getSections().back();
82
83
8.22M
    switch (NewSectionId) {
84
3.73M
    case 0x00:
85
3.73M
      EXPECTED_TRY(loadSection(Sec.emplace<AST::CustomSection>())
86
3.73M
                       .map_error(ReportError));
87
3.73M
      break;
88
3.73M
    case 0x01:
89
5.41k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CoreModuleSection>())
90
5.24k
                       .map_error(ReportError));
91
5.24k
      break;
92
32.6k
    case 0x02:
93
32.6k
      EXPECTED_TRY(
94
32.3k
          loadSection(Sec.emplace<AST::Component::CoreInstanceSection>())
95
32.3k
              .map_error(ReportError));
96
32.3k
      break;
97
733k
    case 0x03:
98
733k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CoreTypeSection>())
99
732k
                       .map_error(ReportError));
100
732k
      break;
101
732k
    case 0x04:
102
7.09k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ComponentSection>())
103
5.69k
                       .map_error(ReportError));
104
5.69k
      break;
105
282k
    case 0x05:
106
282k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::InstanceSection>())
107
282k
                       .map_error(ReportError));
108
282k
      break;
109
282k
    case 0x06:
110
15.0k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::AliasSection>())
111
14.8k
                       .map_error(ReportError));
112
14.8k
      break;
113
3.33M
    case 0x07:
114
3.33M
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::TypeSection>())
115
3.33M
                       .map_error(ReportError));
116
3.33M
      break;
117
3.33M
    case 0x08:
118
41.9k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::CanonSection>())
119
41.2k
                       .map_error(ReportError));
120
41.2k
      break;
121
41.2k
    case 0x09:
122
2.04k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::StartSection>())
123
1.90k
                       .map_error(ReportError));
124
1.90k
      break;
125
25.6k
    case 0x0A:
126
25.6k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ImportSection>())
127
25.4k
                       .map_error(ReportError));
128
25.4k
      break;
129
25.4k
    case 0x0B:
130
6.07k
      EXPECTED_TRY(loadSection(Sec.emplace<AST::Component::ExportSection>())
131
5.91k
                       .map_error(ReportError));
132
5.91k
      break;
133
5.91k
    default:
134
63
      return logLoadError(ErrCode::Value::MalformedSection,
135
63
                          FMgr.getLastOffset(), ASTNodeAttr::Component);
136
8.22M
    }
137
8.21M
    Offset = FMgr.getOffset();
138
8.21M
  }
139
10.8k
  return {};
140
16.7k
}
141
142
} // namespace Loader
143
} // namespace WasmEdge