1 //===- WasmObjectFile.cpp - Wasm object file implementation ---------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/ADT/ArrayRef.h"
10 #include "llvm/ADT/DenseSet.h"
11 #include "llvm/ADT/STLExtras.h"
12 #include "llvm/ADT/SmallSet.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/ADT/StringSet.h"
15 #include "llvm/ADT/Triple.h"
16 #include "llvm/BinaryFormat/Wasm.h"
17 #include "llvm/MC/SubtargetFeature.h"
18 #include "llvm/Object/Binary.h"
19 #include "llvm/Object/Error.h"
20 #include "llvm/Object/ObjectFile.h"
21 #include "llvm/Object/SymbolicFile.h"
22 #include "llvm/Object/Wasm.h"
23 #include "llvm/Support/Endian.h"
24 #include "llvm/Support/Error.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/LEB128.h"
27 #include "llvm/Support/ScopedPrinter.h"
32 #include <system_error>
34 #define DEBUG_TYPE "wasm-object"
37 using namespace object
;
39 void WasmSymbol::print(raw_ostream
&Out
) const {
40 Out
<< "Name=" << Info
.Name
41 << ", Kind=" << toString(wasm::WasmSymbolType(Info
.Kind
))
42 << ", Flags=" << Info
.Flags
;
44 Out
<< ", ElemIndex=" << Info
.ElementIndex
;
45 } else if (isDefined()) {
46 Out
<< ", Segment=" << Info
.DataRef
.Segment
;
47 Out
<< ", Offset=" << Info
.DataRef
.Offset
;
48 Out
<< ", Size=" << Info
.DataRef
.Size
;
52 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
53 LLVM_DUMP_METHOD
void WasmSymbol::dump() const { print(dbgs()); }
56 Expected
<std::unique_ptr
<WasmObjectFile
>>
57 ObjectFile::createWasmObjectFile(MemoryBufferRef Buffer
) {
58 Error Err
= Error::success();
59 auto ObjectFile
= std::make_unique
<WasmObjectFile
>(Buffer
, Err
);
61 return std::move(Err
);
63 return std::move(ObjectFile
);
66 #define VARINT7_MAX ((1 << 7) - 1)
67 #define VARINT7_MIN (-(1 << 7))
68 #define VARUINT7_MAX (1 << 7)
69 #define VARUINT1_MAX (1)
71 static uint8_t readUint8(WasmObjectFile::ReadContext
&Ctx
) {
72 if (Ctx
.Ptr
== Ctx
.End
)
73 report_fatal_error("EOF while reading uint8");
77 static uint32_t readUint32(WasmObjectFile::ReadContext
&Ctx
) {
78 if (Ctx
.Ptr
+ 4 > Ctx
.End
)
79 report_fatal_error("EOF while reading uint32");
80 uint32_t Result
= support::endian::read32le(Ctx
.Ptr
);
85 static int32_t readFloat32(WasmObjectFile::ReadContext
&Ctx
) {
86 if (Ctx
.Ptr
+ 4 > Ctx
.End
)
87 report_fatal_error("EOF while reading float64");
89 memcpy(&Result
, Ctx
.Ptr
, sizeof(Result
));
90 Ctx
.Ptr
+= sizeof(Result
);
94 static int64_t readFloat64(WasmObjectFile::ReadContext
&Ctx
) {
95 if (Ctx
.Ptr
+ 8 > Ctx
.End
)
96 report_fatal_error("EOF while reading float64");
98 memcpy(&Result
, Ctx
.Ptr
, sizeof(Result
));
99 Ctx
.Ptr
+= sizeof(Result
);
103 static uint64_t readULEB128(WasmObjectFile::ReadContext
&Ctx
) {
105 const char *Error
= nullptr;
106 uint64_t Result
= decodeULEB128(Ctx
.Ptr
, &Count
, Ctx
.End
, &Error
);
108 report_fatal_error(Error
);
113 static StringRef
readString(WasmObjectFile::ReadContext
&Ctx
) {
114 uint32_t StringLen
= readULEB128(Ctx
);
115 if (Ctx
.Ptr
+ StringLen
> Ctx
.End
)
116 report_fatal_error("EOF while reading string");
118 StringRef(reinterpret_cast<const char *>(Ctx
.Ptr
), StringLen
);
119 Ctx
.Ptr
+= StringLen
;
123 static int64_t readLEB128(WasmObjectFile::ReadContext
&Ctx
) {
125 const char *Error
= nullptr;
126 uint64_t Result
= decodeSLEB128(Ctx
.Ptr
, &Count
, Ctx
.End
, &Error
);
128 report_fatal_error(Error
);
133 static uint8_t readVaruint1(WasmObjectFile::ReadContext
&Ctx
) {
134 int64_t Result
= readLEB128(Ctx
);
135 if (Result
> VARUINT1_MAX
|| Result
< 0)
136 report_fatal_error("LEB is outside Varuint1 range");
140 static int32_t readVarint32(WasmObjectFile::ReadContext
&Ctx
) {
141 int64_t Result
= readLEB128(Ctx
);
142 if (Result
> INT32_MAX
|| Result
< INT32_MIN
)
143 report_fatal_error("LEB is outside Varint32 range");
147 static uint32_t readVaruint32(WasmObjectFile::ReadContext
&Ctx
) {
148 uint64_t Result
= readULEB128(Ctx
);
149 if (Result
> UINT32_MAX
)
150 report_fatal_error("LEB is outside Varuint32 range");
154 static int64_t readVarint64(WasmObjectFile::ReadContext
&Ctx
) {
155 return readLEB128(Ctx
);
158 static uint8_t readOpcode(WasmObjectFile::ReadContext
&Ctx
) {
159 return readUint8(Ctx
);
162 static Error
readInitExpr(wasm::WasmInitExpr
&Expr
,
163 WasmObjectFile::ReadContext
&Ctx
) {
164 Expr
.Opcode
= readOpcode(Ctx
);
166 switch (Expr
.Opcode
) {
167 case wasm::WASM_OPCODE_I32_CONST
:
168 Expr
.Value
.Int32
= readVarint32(Ctx
);
170 case wasm::WASM_OPCODE_I64_CONST
:
171 Expr
.Value
.Int64
= readVarint64(Ctx
);
173 case wasm::WASM_OPCODE_F32_CONST
:
174 Expr
.Value
.Float32
= readFloat32(Ctx
);
176 case wasm::WASM_OPCODE_F64_CONST
:
177 Expr
.Value
.Float64
= readFloat64(Ctx
);
179 case wasm::WASM_OPCODE_GLOBAL_GET
:
180 Expr
.Value
.Global
= readULEB128(Ctx
);
183 return make_error
<GenericBinaryError
>("Invalid opcode in init_expr",
184 object_error::parse_failed
);
187 uint8_t EndOpcode
= readOpcode(Ctx
);
188 if (EndOpcode
!= wasm::WASM_OPCODE_END
) {
189 return make_error
<GenericBinaryError
>("Invalid init_expr",
190 object_error::parse_failed
);
192 return Error::success();
195 static wasm::WasmLimits
readLimits(WasmObjectFile::ReadContext
&Ctx
) {
196 wasm::WasmLimits Result
;
197 Result
.Flags
= readVaruint32(Ctx
);
198 Result
.Initial
= readVaruint32(Ctx
);
199 if (Result
.Flags
& wasm::WASM_LIMITS_FLAG_HAS_MAX
)
200 Result
.Maximum
= readVaruint32(Ctx
);
204 static wasm::WasmTable
readTable(WasmObjectFile::ReadContext
&Ctx
) {
205 wasm::WasmTable Table
;
206 Table
.ElemType
= readUint8(Ctx
);
207 Table
.Limits
= readLimits(Ctx
);
211 static Error
readSection(WasmSection
&Section
, WasmObjectFile::ReadContext
&Ctx
,
212 WasmSectionOrderChecker
&Checker
) {
213 Section
.Offset
= Ctx
.Ptr
- Ctx
.Start
;
214 Section
.Type
= readUint8(Ctx
);
215 LLVM_DEBUG(dbgs() << "readSection type=" << Section
.Type
<< "\n");
216 uint32_t Size
= readVaruint32(Ctx
);
218 return make_error
<StringError
>("Zero length section",
219 object_error::parse_failed
);
220 if (Ctx
.Ptr
+ Size
> Ctx
.End
)
221 return make_error
<StringError
>("Section too large",
222 object_error::parse_failed
);
223 if (Section
.Type
== wasm::WASM_SEC_CUSTOM
) {
224 WasmObjectFile::ReadContext SectionCtx
;
225 SectionCtx
.Start
= Ctx
.Ptr
;
226 SectionCtx
.Ptr
= Ctx
.Ptr
;
227 SectionCtx
.End
= Ctx
.Ptr
+ Size
;
229 Section
.Name
= readString(SectionCtx
);
231 uint32_t SectionNameSize
= SectionCtx
.Ptr
- SectionCtx
.Start
;
232 Ctx
.Ptr
+= SectionNameSize
;
233 Size
-= SectionNameSize
;
236 if (!Checker
.isValidSectionOrder(Section
.Type
, Section
.Name
)) {
237 return make_error
<StringError
>("Out of order section type: " +
238 llvm::to_string(Section
.Type
),
239 object_error::parse_failed
);
242 Section
.Content
= ArrayRef
<uint8_t>(Ctx
.Ptr
, Size
);
244 return Error::success();
247 WasmObjectFile::WasmObjectFile(MemoryBufferRef Buffer
, Error
&Err
)
248 : ObjectFile(Binary::ID_Wasm
, Buffer
) {
249 ErrorAsOutParameter
ErrAsOutParam(&Err
);
250 Header
.Magic
= getData().substr(0, 4);
251 if (Header
.Magic
!= StringRef("\0asm", 4)) {
253 make_error
<StringError
>("Bad magic number", object_error::parse_failed
);
258 Ctx
.Start
= getData().bytes_begin();
259 Ctx
.Ptr
= Ctx
.Start
+ 4;
260 Ctx
.End
= Ctx
.Start
+ getData().size();
262 if (Ctx
.Ptr
+ 4 > Ctx
.End
) {
263 Err
= make_error
<StringError
>("Missing version number",
264 object_error::parse_failed
);
268 Header
.Version
= readUint32(Ctx
);
269 if (Header
.Version
!= wasm::WasmVersion
) {
270 Err
= make_error
<StringError
>("Bad version number",
271 object_error::parse_failed
);
276 WasmSectionOrderChecker Checker
;
277 while (Ctx
.Ptr
< Ctx
.End
) {
278 if ((Err
= readSection(Sec
, Ctx
, Checker
)))
280 if ((Err
= parseSection(Sec
)))
283 Sections
.push_back(Sec
);
287 Error
WasmObjectFile::parseSection(WasmSection
&Sec
) {
289 Ctx
.Start
= Sec
.Content
.data();
290 Ctx
.End
= Ctx
.Start
+ Sec
.Content
.size();
293 case wasm::WASM_SEC_CUSTOM
:
294 return parseCustomSection(Sec
, Ctx
);
295 case wasm::WASM_SEC_TYPE
:
296 return parseTypeSection(Ctx
);
297 case wasm::WASM_SEC_IMPORT
:
298 return parseImportSection(Ctx
);
299 case wasm::WASM_SEC_FUNCTION
:
300 return parseFunctionSection(Ctx
);
301 case wasm::WASM_SEC_TABLE
:
302 return parseTableSection(Ctx
);
303 case wasm::WASM_SEC_MEMORY
:
304 return parseMemorySection(Ctx
);
305 case wasm::WASM_SEC_GLOBAL
:
306 return parseGlobalSection(Ctx
);
307 case wasm::WASM_SEC_EVENT
:
308 return parseEventSection(Ctx
);
309 case wasm::WASM_SEC_EXPORT
:
310 return parseExportSection(Ctx
);
311 case wasm::WASM_SEC_START
:
312 return parseStartSection(Ctx
);
313 case wasm::WASM_SEC_ELEM
:
314 return parseElemSection(Ctx
);
315 case wasm::WASM_SEC_CODE
:
316 return parseCodeSection(Ctx
);
317 case wasm::WASM_SEC_DATA
:
318 return parseDataSection(Ctx
);
319 case wasm::WASM_SEC_DATACOUNT
:
320 return parseDataCountSection(Ctx
);
322 return make_error
<GenericBinaryError
>(
323 "Invalid section type: " + Twine(Sec
.Type
), object_error::parse_failed
);
327 Error
WasmObjectFile::parseDylinkSection(ReadContext
&Ctx
) {
328 // See https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
329 HasDylinkSection
= true;
330 DylinkInfo
.MemorySize
= readVaruint32(Ctx
);
331 DylinkInfo
.MemoryAlignment
= readVaruint32(Ctx
);
332 DylinkInfo
.TableSize
= readVaruint32(Ctx
);
333 DylinkInfo
.TableAlignment
= readVaruint32(Ctx
);
334 uint32_t Count
= readVaruint32(Ctx
);
336 DylinkInfo
.Needed
.push_back(readString(Ctx
));
338 if (Ctx
.Ptr
!= Ctx
.End
)
339 return make_error
<GenericBinaryError
>("dylink section ended prematurely",
340 object_error::parse_failed
);
341 return Error::success();
344 Error
WasmObjectFile::parseNameSection(ReadContext
&Ctx
) {
345 llvm::DenseSet
<uint64_t> Seen
;
346 if (Functions
.size() != FunctionTypes
.size()) {
347 return make_error
<GenericBinaryError
>("Names must come after code section",
348 object_error::parse_failed
);
351 while (Ctx
.Ptr
< Ctx
.End
) {
352 uint8_t Type
= readUint8(Ctx
);
353 uint32_t Size
= readVaruint32(Ctx
);
354 const uint8_t *SubSectionEnd
= Ctx
.Ptr
+ Size
;
356 case wasm::WASM_NAMES_FUNCTION
: {
357 uint32_t Count
= readVaruint32(Ctx
);
359 uint32_t Index
= readVaruint32(Ctx
);
360 if (!Seen
.insert(Index
).second
)
361 return make_error
<GenericBinaryError
>("Function named more than once",
362 object_error::parse_failed
);
363 StringRef Name
= readString(Ctx
);
364 if (!isValidFunctionIndex(Index
) || Name
.empty())
365 return make_error
<GenericBinaryError
>("Invalid name entry",
366 object_error::parse_failed
);
367 DebugNames
.push_back(wasm::WasmFunctionName
{Index
, Name
});
368 if (isDefinedFunctionIndex(Index
))
369 getDefinedFunction(Index
).DebugName
= Name
;
373 // Ignore local names for now
374 case wasm::WASM_NAMES_LOCAL
:
379 if (Ctx
.Ptr
!= SubSectionEnd
)
380 return make_error
<GenericBinaryError
>(
381 "Name sub-section ended prematurely", object_error::parse_failed
);
384 if (Ctx
.Ptr
!= Ctx
.End
)
385 return make_error
<GenericBinaryError
>("Name section ended prematurely",
386 object_error::parse_failed
);
387 return Error::success();
390 Error
WasmObjectFile::parseLinkingSection(ReadContext
&Ctx
) {
391 HasLinkingSection
= true;
392 if (Functions
.size() != FunctionTypes
.size()) {
393 return make_error
<GenericBinaryError
>(
394 "Linking data must come after code section",
395 object_error::parse_failed
);
398 LinkingData
.Version
= readVaruint32(Ctx
);
399 if (LinkingData
.Version
!= wasm::WasmMetadataVersion
) {
400 return make_error
<GenericBinaryError
>(
401 "Unexpected metadata version: " + Twine(LinkingData
.Version
) +
402 " (Expected: " + Twine(wasm::WasmMetadataVersion
) + ")",
403 object_error::parse_failed
);
406 const uint8_t *OrigEnd
= Ctx
.End
;
407 while (Ctx
.Ptr
< OrigEnd
) {
409 uint8_t Type
= readUint8(Ctx
);
410 uint32_t Size
= readVaruint32(Ctx
);
411 LLVM_DEBUG(dbgs() << "readSubsection type=" << int(Type
) << " size=" << Size
413 Ctx
.End
= Ctx
.Ptr
+ Size
;
415 case wasm::WASM_SYMBOL_TABLE
:
416 if (Error Err
= parseLinkingSectionSymtab(Ctx
))
419 case wasm::WASM_SEGMENT_INFO
: {
420 uint32_t Count
= readVaruint32(Ctx
);
421 if (Count
> DataSegments
.size())
422 return make_error
<GenericBinaryError
>("Too many segment names",
423 object_error::parse_failed
);
424 for (uint32_t I
= 0; I
< Count
; I
++) {
425 DataSegments
[I
].Data
.Name
= readString(Ctx
);
426 DataSegments
[I
].Data
.Alignment
= readVaruint32(Ctx
);
427 DataSegments
[I
].Data
.LinkerFlags
= readVaruint32(Ctx
);
431 case wasm::WASM_INIT_FUNCS
: {
432 uint32_t Count
= readVaruint32(Ctx
);
433 LinkingData
.InitFunctions
.reserve(Count
);
434 for (uint32_t I
= 0; I
< Count
; I
++) {
435 wasm::WasmInitFunc Init
;
436 Init
.Priority
= readVaruint32(Ctx
);
437 Init
.Symbol
= readVaruint32(Ctx
);
438 if (!isValidFunctionSymbol(Init
.Symbol
))
439 return make_error
<GenericBinaryError
>("Invalid function symbol: " +
441 object_error::parse_failed
);
442 LinkingData
.InitFunctions
.emplace_back(Init
);
446 case wasm::WASM_COMDAT_INFO
:
447 if (Error Err
= parseLinkingSectionComdat(Ctx
))
454 if (Ctx
.Ptr
!= Ctx
.End
)
455 return make_error
<GenericBinaryError
>(
456 "Linking sub-section ended prematurely", object_error::parse_failed
);
458 if (Ctx
.Ptr
!= OrigEnd
)
459 return make_error
<GenericBinaryError
>("Linking section ended prematurely",
460 object_error::parse_failed
);
461 return Error::success();
464 Error
WasmObjectFile::parseLinkingSectionSymtab(ReadContext
&Ctx
) {
465 uint32_t Count
= readVaruint32(Ctx
);
466 LinkingData
.SymbolTable
.reserve(Count
);
467 Symbols
.reserve(Count
);
468 StringSet
<> SymbolNames
;
470 std::vector
<wasm::WasmImport
*> ImportedGlobals
;
471 std::vector
<wasm::WasmImport
*> ImportedFunctions
;
472 std::vector
<wasm::WasmImport
*> ImportedEvents
;
473 ImportedGlobals
.reserve(Imports
.size());
474 ImportedFunctions
.reserve(Imports
.size());
475 ImportedEvents
.reserve(Imports
.size());
476 for (auto &I
: Imports
) {
477 if (I
.Kind
== wasm::WASM_EXTERNAL_FUNCTION
)
478 ImportedFunctions
.emplace_back(&I
);
479 else if (I
.Kind
== wasm::WASM_EXTERNAL_GLOBAL
)
480 ImportedGlobals
.emplace_back(&I
);
481 else if (I
.Kind
== wasm::WASM_EXTERNAL_EVENT
)
482 ImportedEvents
.emplace_back(&I
);
486 wasm::WasmSymbolInfo Info
;
487 const wasm::WasmSignature
*Signature
= nullptr;
488 const wasm::WasmGlobalType
*GlobalType
= nullptr;
489 const wasm::WasmEventType
*EventType
= nullptr;
491 Info
.Kind
= readUint8(Ctx
);
492 Info
.Flags
= readVaruint32(Ctx
);
493 bool IsDefined
= (Info
.Flags
& wasm::WASM_SYMBOL_UNDEFINED
) == 0;
496 case wasm::WASM_SYMBOL_TYPE_FUNCTION
:
497 Info
.ElementIndex
= readVaruint32(Ctx
);
498 if (!isValidFunctionIndex(Info
.ElementIndex
) ||
499 IsDefined
!= isDefinedFunctionIndex(Info
.ElementIndex
))
500 return make_error
<GenericBinaryError
>("invalid function symbol index",
501 object_error::parse_failed
);
503 Info
.Name
= readString(Ctx
);
504 unsigned FuncIndex
= Info
.ElementIndex
- NumImportedFunctions
;
505 Signature
= &Signatures
[FunctionTypes
[FuncIndex
]];
506 wasm::WasmFunction
&Function
= Functions
[FuncIndex
];
507 if (Function
.SymbolName
.empty())
508 Function
.SymbolName
= Info
.Name
;
510 wasm::WasmImport
&Import
= *ImportedFunctions
[Info
.ElementIndex
];
511 if ((Info
.Flags
& wasm::WASM_SYMBOL_EXPLICIT_NAME
) != 0)
512 Info
.Name
= readString(Ctx
);
514 Info
.Name
= Import
.Field
;
515 Signature
= &Signatures
[Import
.SigIndex
];
516 Info
.ImportName
= Import
.Field
;
517 Info
.ImportModule
= Import
.Module
;
521 case wasm::WASM_SYMBOL_TYPE_GLOBAL
:
522 Info
.ElementIndex
= readVaruint32(Ctx
);
523 if (!isValidGlobalIndex(Info
.ElementIndex
) ||
524 IsDefined
!= isDefinedGlobalIndex(Info
.ElementIndex
))
525 return make_error
<GenericBinaryError
>("invalid global symbol index",
526 object_error::parse_failed
);
527 if (!IsDefined
&& (Info
.Flags
& wasm::WASM_SYMBOL_BINDING_MASK
) ==
528 wasm::WASM_SYMBOL_BINDING_WEAK
)
529 return make_error
<GenericBinaryError
>("undefined weak global symbol",
530 object_error::parse_failed
);
532 Info
.Name
= readString(Ctx
);
533 unsigned GlobalIndex
= Info
.ElementIndex
- NumImportedGlobals
;
534 wasm::WasmGlobal
&Global
= Globals
[GlobalIndex
];
535 GlobalType
= &Global
.Type
;
536 if (Global
.SymbolName
.empty())
537 Global
.SymbolName
= Info
.Name
;
539 wasm::WasmImport
&Import
= *ImportedGlobals
[Info
.ElementIndex
];
540 if ((Info
.Flags
& wasm::WASM_SYMBOL_EXPLICIT_NAME
) != 0)
541 Info
.Name
= readString(Ctx
);
543 Info
.Name
= Import
.Field
;
544 GlobalType
= &Import
.Global
;
545 Info
.ImportName
= Import
.Field
;
546 Info
.ImportModule
= Import
.Module
;
550 case wasm::WASM_SYMBOL_TYPE_DATA
:
551 Info
.Name
= readString(Ctx
);
553 uint32_t Index
= readVaruint32(Ctx
);
554 if (Index
>= DataSegments
.size())
555 return make_error
<GenericBinaryError
>("invalid data symbol index",
556 object_error::parse_failed
);
557 uint32_t Offset
= readVaruint32(Ctx
);
558 uint32_t Size
= readVaruint32(Ctx
);
559 if (Offset
+ Size
> DataSegments
[Index
].Data
.Content
.size())
560 return make_error
<GenericBinaryError
>("invalid data symbol offset",
561 object_error::parse_failed
);
562 Info
.DataRef
= wasm::WasmDataReference
{Index
, Offset
, Size
};
566 case wasm::WASM_SYMBOL_TYPE_SECTION
: {
567 if ((Info
.Flags
& wasm::WASM_SYMBOL_BINDING_MASK
) !=
568 wasm::WASM_SYMBOL_BINDING_LOCAL
)
569 return make_error
<GenericBinaryError
>(
570 "Section symbols must have local binding",
571 object_error::parse_failed
);
572 Info
.ElementIndex
= readVaruint32(Ctx
);
573 // Use somewhat unique section name as symbol name.
574 StringRef SectionName
= Sections
[Info
.ElementIndex
].Name
;
575 Info
.Name
= SectionName
;
579 case wasm::WASM_SYMBOL_TYPE_EVENT
: {
580 Info
.ElementIndex
= readVaruint32(Ctx
);
581 if (!isValidEventIndex(Info
.ElementIndex
) ||
582 IsDefined
!= isDefinedEventIndex(Info
.ElementIndex
))
583 return make_error
<GenericBinaryError
>("invalid event symbol index",
584 object_error::parse_failed
);
585 if (!IsDefined
&& (Info
.Flags
& wasm::WASM_SYMBOL_BINDING_MASK
) ==
586 wasm::WASM_SYMBOL_BINDING_WEAK
)
587 return make_error
<GenericBinaryError
>("undefined weak global symbol",
588 object_error::parse_failed
);
590 Info
.Name
= readString(Ctx
);
591 unsigned EventIndex
= Info
.ElementIndex
- NumImportedEvents
;
592 wasm::WasmEvent
&Event
= Events
[EventIndex
];
593 Signature
= &Signatures
[Event
.Type
.SigIndex
];
594 EventType
= &Event
.Type
;
595 if (Event
.SymbolName
.empty())
596 Event
.SymbolName
= Info
.Name
;
599 wasm::WasmImport
&Import
= *ImportedEvents
[Info
.ElementIndex
];
600 if ((Info
.Flags
& wasm::WASM_SYMBOL_EXPLICIT_NAME
) != 0)
601 Info
.Name
= readString(Ctx
);
603 Info
.Name
= Import
.Field
;
604 EventType
= &Import
.Event
;
605 Signature
= &Signatures
[EventType
->SigIndex
];
606 Info
.ImportName
= Import
.Field
;
607 Info
.ImportModule
= Import
.Module
;
613 return make_error
<GenericBinaryError
>("Invalid symbol type",
614 object_error::parse_failed
);
617 if ((Info
.Flags
& wasm::WASM_SYMBOL_BINDING_MASK
) !=
618 wasm::WASM_SYMBOL_BINDING_LOCAL
&&
619 !SymbolNames
.insert(Info
.Name
).second
)
620 return make_error
<GenericBinaryError
>("Duplicate symbol name " +
622 object_error::parse_failed
);
623 LinkingData
.SymbolTable
.emplace_back(Info
);
624 Symbols
.emplace_back(LinkingData
.SymbolTable
.back(), GlobalType
, EventType
,
626 LLVM_DEBUG(dbgs() << "Adding symbol: " << Symbols
.back() << "\n");
629 return Error::success();
632 Error
WasmObjectFile::parseLinkingSectionComdat(ReadContext
&Ctx
) {
633 uint32_t ComdatCount
= readVaruint32(Ctx
);
634 StringSet
<> ComdatSet
;
635 for (unsigned ComdatIndex
= 0; ComdatIndex
< ComdatCount
; ++ComdatIndex
) {
636 StringRef Name
= readString(Ctx
);
637 if (Name
.empty() || !ComdatSet
.insert(Name
).second
)
638 return make_error
<GenericBinaryError
>("Bad/duplicate COMDAT name " +
640 object_error::parse_failed
);
641 LinkingData
.Comdats
.emplace_back(Name
);
642 uint32_t Flags
= readVaruint32(Ctx
);
644 return make_error
<GenericBinaryError
>("Unsupported COMDAT flags",
645 object_error::parse_failed
);
647 uint32_t EntryCount
= readVaruint32(Ctx
);
648 while (EntryCount
--) {
649 unsigned Kind
= readVaruint32(Ctx
);
650 unsigned Index
= readVaruint32(Ctx
);
653 return make_error
<GenericBinaryError
>("Invalid COMDAT entry type",
654 object_error::parse_failed
);
655 case wasm::WASM_COMDAT_DATA
:
656 if (Index
>= DataSegments
.size())
657 return make_error
<GenericBinaryError
>(
658 "COMDAT data index out of range", object_error::parse_failed
);
659 if (DataSegments
[Index
].Data
.Comdat
!= UINT32_MAX
)
660 return make_error
<GenericBinaryError
>("Data segment in two COMDATs",
661 object_error::parse_failed
);
662 DataSegments
[Index
].Data
.Comdat
= ComdatIndex
;
664 case wasm::WASM_COMDAT_FUNCTION
:
665 if (!isDefinedFunctionIndex(Index
))
666 return make_error
<GenericBinaryError
>(
667 "COMDAT function index out of range", object_error::parse_failed
);
668 if (getDefinedFunction(Index
).Comdat
!= UINT32_MAX
)
669 return make_error
<GenericBinaryError
>("Function in two COMDATs",
670 object_error::parse_failed
);
671 getDefinedFunction(Index
).Comdat
= ComdatIndex
;
676 return Error::success();
679 Error
WasmObjectFile::parseProducersSection(ReadContext
&Ctx
) {
680 llvm::SmallSet
<StringRef
, 3> FieldsSeen
;
681 uint32_t Fields
= readVaruint32(Ctx
);
682 for (size_t I
= 0; I
< Fields
; ++I
) {
683 StringRef FieldName
= readString(Ctx
);
684 if (!FieldsSeen
.insert(FieldName
).second
)
685 return make_error
<GenericBinaryError
>(
686 "Producers section does not have unique fields",
687 object_error::parse_failed
);
688 std::vector
<std::pair
<std::string
, std::string
>> *ProducerVec
= nullptr;
689 if (FieldName
== "language") {
690 ProducerVec
= &ProducerInfo
.Languages
;
691 } else if (FieldName
== "processed-by") {
692 ProducerVec
= &ProducerInfo
.Tools
;
693 } else if (FieldName
== "sdk") {
694 ProducerVec
= &ProducerInfo
.SDKs
;
696 return make_error
<GenericBinaryError
>(
697 "Producers section field is not named one of language, processed-by, "
699 object_error::parse_failed
);
701 uint32_t ValueCount
= readVaruint32(Ctx
);
702 llvm::SmallSet
<StringRef
, 8> ProducersSeen
;
703 for (size_t J
= 0; J
< ValueCount
; ++J
) {
704 StringRef Name
= readString(Ctx
);
705 StringRef Version
= readString(Ctx
);
706 if (!ProducersSeen
.insert(Name
).second
) {
707 return make_error
<GenericBinaryError
>(
708 "Producers section contains repeated producer",
709 object_error::parse_failed
);
711 ProducerVec
->emplace_back(Name
, Version
);
714 if (Ctx
.Ptr
!= Ctx
.End
)
715 return make_error
<GenericBinaryError
>("Producers section ended prematurely",
716 object_error::parse_failed
);
717 return Error::success();
720 Error
WasmObjectFile::parseTargetFeaturesSection(ReadContext
&Ctx
) {
721 llvm::SmallSet
<std::string
, 8> FeaturesSeen
;
722 uint32_t FeatureCount
= readVaruint32(Ctx
);
723 for (size_t I
= 0; I
< FeatureCount
; ++I
) {
724 wasm::WasmFeatureEntry Feature
;
725 Feature
.Prefix
= readUint8(Ctx
);
726 switch (Feature
.Prefix
) {
727 case wasm::WASM_FEATURE_PREFIX_USED
:
728 case wasm::WASM_FEATURE_PREFIX_REQUIRED
:
729 case wasm::WASM_FEATURE_PREFIX_DISALLOWED
:
732 return make_error
<GenericBinaryError
>("Unknown feature policy prefix",
733 object_error::parse_failed
);
735 Feature
.Name
= readString(Ctx
);
736 if (!FeaturesSeen
.insert(Feature
.Name
).second
)
737 return make_error
<GenericBinaryError
>(
738 "Target features section contains repeated feature \"" +
740 object_error::parse_failed
);
741 TargetFeatures
.push_back(Feature
);
743 if (Ctx
.Ptr
!= Ctx
.End
)
744 return make_error
<GenericBinaryError
>(
745 "Target features section ended prematurely",
746 object_error::parse_failed
);
747 return Error::success();
750 Error
WasmObjectFile::parseRelocSection(StringRef Name
, ReadContext
&Ctx
) {
751 uint32_t SectionIndex
= readVaruint32(Ctx
);
752 if (SectionIndex
>= Sections
.size())
753 return make_error
<GenericBinaryError
>("Invalid section index",
754 object_error::parse_failed
);
755 WasmSection
&Section
= Sections
[SectionIndex
];
756 uint32_t RelocCount
= readVaruint32(Ctx
);
757 uint32_t EndOffset
= Section
.Content
.size();
758 uint32_t PreviousOffset
= 0;
759 while (RelocCount
--) {
760 wasm::WasmRelocation Reloc
= {};
761 Reloc
.Type
= readVaruint32(Ctx
);
762 Reloc
.Offset
= readVaruint32(Ctx
);
763 if (Reloc
.Offset
< PreviousOffset
)
764 return make_error
<GenericBinaryError
>("Relocations not in offset order",
765 object_error::parse_failed
);
766 PreviousOffset
= Reloc
.Offset
;
767 Reloc
.Index
= readVaruint32(Ctx
);
768 switch (Reloc
.Type
) {
769 case wasm::R_WASM_FUNCTION_INDEX_LEB
:
770 case wasm::R_WASM_TABLE_INDEX_SLEB
:
771 case wasm::R_WASM_TABLE_INDEX_I32
:
772 case wasm::R_WASM_TABLE_INDEX_REL_SLEB
:
773 if (!isValidFunctionSymbol(Reloc
.Index
))
774 return make_error
<GenericBinaryError
>("Bad relocation function index",
775 object_error::parse_failed
);
777 case wasm::R_WASM_TYPE_INDEX_LEB
:
778 if (Reloc
.Index
>= Signatures
.size())
779 return make_error
<GenericBinaryError
>("Bad relocation type index",
780 object_error::parse_failed
);
782 case wasm::R_WASM_GLOBAL_INDEX_LEB
:
783 // R_WASM_GLOBAL_INDEX_LEB are can be used against function and data
784 // symbols to refer to their GOT entries.
785 if (!isValidGlobalSymbol(Reloc
.Index
) &&
786 !isValidDataSymbol(Reloc
.Index
) &&
787 !isValidFunctionSymbol(Reloc
.Index
))
788 return make_error
<GenericBinaryError
>("Bad relocation global index",
789 object_error::parse_failed
);
791 case wasm::R_WASM_EVENT_INDEX_LEB
:
792 if (!isValidEventSymbol(Reloc
.Index
))
793 return make_error
<GenericBinaryError
>("Bad relocation event index",
794 object_error::parse_failed
);
796 case wasm::R_WASM_MEMORY_ADDR_LEB
:
797 case wasm::R_WASM_MEMORY_ADDR_SLEB
:
798 case wasm::R_WASM_MEMORY_ADDR_I32
:
799 case wasm::R_WASM_MEMORY_ADDR_REL_SLEB
:
800 if (!isValidDataSymbol(Reloc
.Index
))
801 return make_error
<GenericBinaryError
>("Bad relocation data index",
802 object_error::parse_failed
);
803 Reloc
.Addend
= readVarint32(Ctx
);
805 case wasm::R_WASM_FUNCTION_OFFSET_I32
:
806 if (!isValidFunctionSymbol(Reloc
.Index
))
807 return make_error
<GenericBinaryError
>("Bad relocation function index",
808 object_error::parse_failed
);
809 Reloc
.Addend
= readVarint32(Ctx
);
811 case wasm::R_WASM_SECTION_OFFSET_I32
:
812 if (!isValidSectionSymbol(Reloc
.Index
))
813 return make_error
<GenericBinaryError
>("Bad relocation section index",
814 object_error::parse_failed
);
815 Reloc
.Addend
= readVarint32(Ctx
);
818 return make_error
<GenericBinaryError
>("Bad relocation type: " +
820 object_error::parse_failed
);
823 // Relocations must fit inside the section, and must appear in order. They
824 // also shouldn't overlap a function/element boundary, but we don't bother
827 if (Reloc
.Type
== wasm::R_WASM_TABLE_INDEX_I32
||
828 Reloc
.Type
== wasm::R_WASM_MEMORY_ADDR_I32
||
829 Reloc
.Type
== wasm::R_WASM_SECTION_OFFSET_I32
||
830 Reloc
.Type
== wasm::R_WASM_FUNCTION_OFFSET_I32
)
832 if (Reloc
.Offset
+ Size
> EndOffset
)
833 return make_error
<GenericBinaryError
>("Bad relocation offset",
834 object_error::parse_failed
);
836 Section
.Relocations
.push_back(Reloc
);
838 if (Ctx
.Ptr
!= Ctx
.End
)
839 return make_error
<GenericBinaryError
>("Reloc section ended prematurely",
840 object_error::parse_failed
);
841 return Error::success();
844 Error
WasmObjectFile::parseCustomSection(WasmSection
&Sec
, ReadContext
&Ctx
) {
845 if (Sec
.Name
== "dylink") {
846 if (Error Err
= parseDylinkSection(Ctx
))
848 } else if (Sec
.Name
== "name") {
849 if (Error Err
= parseNameSection(Ctx
))
851 } else if (Sec
.Name
== "linking") {
852 if (Error Err
= parseLinkingSection(Ctx
))
854 } else if (Sec
.Name
== "producers") {
855 if (Error Err
= parseProducersSection(Ctx
))
857 } else if (Sec
.Name
== "target_features") {
858 if (Error Err
= parseTargetFeaturesSection(Ctx
))
860 } else if (Sec
.Name
.startswith("reloc.")) {
861 if (Error Err
= parseRelocSection(Sec
.Name
, Ctx
))
864 return Error::success();
867 Error
WasmObjectFile::parseTypeSection(ReadContext
&Ctx
) {
868 uint32_t Count
= readVaruint32(Ctx
);
869 Signatures
.reserve(Count
);
871 wasm::WasmSignature Sig
;
872 uint8_t Form
= readUint8(Ctx
);
873 if (Form
!= wasm::WASM_TYPE_FUNC
) {
874 return make_error
<GenericBinaryError
>("Invalid signature type",
875 object_error::parse_failed
);
877 uint32_t ParamCount
= readVaruint32(Ctx
);
878 Sig
.Params
.reserve(ParamCount
);
879 while (ParamCount
--) {
880 uint32_t ParamType
= readUint8(Ctx
);
881 Sig
.Params
.push_back(wasm::ValType(ParamType
));
883 uint32_t ReturnCount
= readVaruint32(Ctx
);
885 if (ReturnCount
!= 1) {
886 return make_error
<GenericBinaryError
>(
887 "Multiple return types not supported", object_error::parse_failed
);
889 Sig
.Returns
.push_back(wasm::ValType(readUint8(Ctx
)));
891 Signatures
.push_back(std::move(Sig
));
893 if (Ctx
.Ptr
!= Ctx
.End
)
894 return make_error
<GenericBinaryError
>("Type section ended prematurely",
895 object_error::parse_failed
);
896 return Error::success();
899 Error
WasmObjectFile::parseImportSection(ReadContext
&Ctx
) {
900 uint32_t Count
= readVaruint32(Ctx
);
901 Imports
.reserve(Count
);
902 for (uint32_t I
= 0; I
< Count
; I
++) {
904 Im
.Module
= readString(Ctx
);
905 Im
.Field
= readString(Ctx
);
906 Im
.Kind
= readUint8(Ctx
);
908 case wasm::WASM_EXTERNAL_FUNCTION
:
909 NumImportedFunctions
++;
910 Im
.SigIndex
= readVaruint32(Ctx
);
912 case wasm::WASM_EXTERNAL_GLOBAL
:
913 NumImportedGlobals
++;
914 Im
.Global
.Type
= readUint8(Ctx
);
915 Im
.Global
.Mutable
= readVaruint1(Ctx
);
917 case wasm::WASM_EXTERNAL_MEMORY
:
918 Im
.Memory
= readLimits(Ctx
);
920 case wasm::WASM_EXTERNAL_TABLE
:
921 Im
.Table
= readTable(Ctx
);
922 if (Im
.Table
.ElemType
!= wasm::WASM_TYPE_FUNCREF
)
923 return make_error
<GenericBinaryError
>("Invalid table element type",
924 object_error::parse_failed
);
926 case wasm::WASM_EXTERNAL_EVENT
:
928 Im
.Event
.Attribute
= readVarint32(Ctx
);
929 Im
.Event
.SigIndex
= readVarint32(Ctx
);
932 return make_error
<GenericBinaryError
>("Unexpected import kind",
933 object_error::parse_failed
);
935 Imports
.push_back(Im
);
937 if (Ctx
.Ptr
!= Ctx
.End
)
938 return make_error
<GenericBinaryError
>("Import section ended prematurely",
939 object_error::parse_failed
);
940 return Error::success();
943 Error
WasmObjectFile::parseFunctionSection(ReadContext
&Ctx
) {
944 uint32_t Count
= readVaruint32(Ctx
);
945 FunctionTypes
.reserve(Count
);
946 uint32_t NumTypes
= Signatures
.size();
948 uint32_t Type
= readVaruint32(Ctx
);
949 if (Type
>= NumTypes
)
950 return make_error
<GenericBinaryError
>("Invalid function type",
951 object_error::parse_failed
);
952 FunctionTypes
.push_back(Type
);
954 if (Ctx
.Ptr
!= Ctx
.End
)
955 return make_error
<GenericBinaryError
>("Function section ended prematurely",
956 object_error::parse_failed
);
957 return Error::success();
960 Error
WasmObjectFile::parseTableSection(ReadContext
&Ctx
) {
961 uint32_t Count
= readVaruint32(Ctx
);
962 Tables
.reserve(Count
);
964 Tables
.push_back(readTable(Ctx
));
965 if (Tables
.back().ElemType
!= wasm::WASM_TYPE_FUNCREF
) {
966 return make_error
<GenericBinaryError
>("Invalid table element type",
967 object_error::parse_failed
);
970 if (Ctx
.Ptr
!= Ctx
.End
)
971 return make_error
<GenericBinaryError
>("Table section ended prematurely",
972 object_error::parse_failed
);
973 return Error::success();
976 Error
WasmObjectFile::parseMemorySection(ReadContext
&Ctx
) {
977 uint32_t Count
= readVaruint32(Ctx
);
978 Memories
.reserve(Count
);
980 Memories
.push_back(readLimits(Ctx
));
982 if (Ctx
.Ptr
!= Ctx
.End
)
983 return make_error
<GenericBinaryError
>("Memory section ended prematurely",
984 object_error::parse_failed
);
985 return Error::success();
988 Error
WasmObjectFile::parseGlobalSection(ReadContext
&Ctx
) {
989 GlobalSection
= Sections
.size();
990 uint32_t Count
= readVaruint32(Ctx
);
991 Globals
.reserve(Count
);
993 wasm::WasmGlobal Global
;
994 Global
.Index
= NumImportedGlobals
+ Globals
.size();
995 Global
.Type
.Type
= readUint8(Ctx
);
996 Global
.Type
.Mutable
= readVaruint1(Ctx
);
997 if (Error Err
= readInitExpr(Global
.InitExpr
, Ctx
))
999 Globals
.push_back(Global
);
1001 if (Ctx
.Ptr
!= Ctx
.End
)
1002 return make_error
<GenericBinaryError
>("Global section ended prematurely",
1003 object_error::parse_failed
);
1004 return Error::success();
1007 Error
WasmObjectFile::parseEventSection(ReadContext
&Ctx
) {
1008 EventSection
= Sections
.size();
1009 uint32_t Count
= readVarint32(Ctx
);
1010 Events
.reserve(Count
);
1012 wasm::WasmEvent Event
;
1013 Event
.Index
= NumImportedEvents
+ Events
.size();
1014 Event
.Type
.Attribute
= readVaruint32(Ctx
);
1015 Event
.Type
.SigIndex
= readVarint32(Ctx
);
1016 Events
.push_back(Event
);
1019 if (Ctx
.Ptr
!= Ctx
.End
)
1020 return make_error
<GenericBinaryError
>("Event section ended prematurely",
1021 object_error::parse_failed
);
1022 return Error::success();
1025 Error
WasmObjectFile::parseExportSection(ReadContext
&Ctx
) {
1026 uint32_t Count
= readVaruint32(Ctx
);
1027 Exports
.reserve(Count
);
1028 for (uint32_t I
= 0; I
< Count
; I
++) {
1029 wasm::WasmExport Ex
;
1030 Ex
.Name
= readString(Ctx
);
1031 Ex
.Kind
= readUint8(Ctx
);
1032 Ex
.Index
= readVaruint32(Ctx
);
1034 case wasm::WASM_EXTERNAL_FUNCTION
:
1035 if (!isValidFunctionIndex(Ex
.Index
))
1036 return make_error
<GenericBinaryError
>("Invalid function export",
1037 object_error::parse_failed
);
1039 case wasm::WASM_EXTERNAL_GLOBAL
:
1040 if (!isValidGlobalIndex(Ex
.Index
))
1041 return make_error
<GenericBinaryError
>("Invalid global export",
1042 object_error::parse_failed
);
1044 case wasm::WASM_EXTERNAL_EVENT
:
1045 if (!isValidEventIndex(Ex
.Index
))
1046 return make_error
<GenericBinaryError
>("Invalid event export",
1047 object_error::parse_failed
);
1049 case wasm::WASM_EXTERNAL_MEMORY
:
1050 case wasm::WASM_EXTERNAL_TABLE
:
1053 return make_error
<GenericBinaryError
>("Unexpected export kind",
1054 object_error::parse_failed
);
1056 Exports
.push_back(Ex
);
1058 if (Ctx
.Ptr
!= Ctx
.End
)
1059 return make_error
<GenericBinaryError
>("Export section ended prematurely",
1060 object_error::parse_failed
);
1061 return Error::success();
1064 bool WasmObjectFile::isValidFunctionIndex(uint32_t Index
) const {
1065 return Index
< NumImportedFunctions
+ FunctionTypes
.size();
1068 bool WasmObjectFile::isDefinedFunctionIndex(uint32_t Index
) const {
1069 return Index
>= NumImportedFunctions
&& isValidFunctionIndex(Index
);
1072 bool WasmObjectFile::isValidGlobalIndex(uint32_t Index
) const {
1073 return Index
< NumImportedGlobals
+ Globals
.size();
1076 bool WasmObjectFile::isDefinedGlobalIndex(uint32_t Index
) const {
1077 return Index
>= NumImportedGlobals
&& isValidGlobalIndex(Index
);
1080 bool WasmObjectFile::isValidEventIndex(uint32_t Index
) const {
1081 return Index
< NumImportedEvents
+ Events
.size();
1084 bool WasmObjectFile::isDefinedEventIndex(uint32_t Index
) const {
1085 return Index
>= NumImportedEvents
&& isValidEventIndex(Index
);
1088 bool WasmObjectFile::isValidFunctionSymbol(uint32_t Index
) const {
1089 return Index
< Symbols
.size() && Symbols
[Index
].isTypeFunction();
1092 bool WasmObjectFile::isValidGlobalSymbol(uint32_t Index
) const {
1093 return Index
< Symbols
.size() && Symbols
[Index
].isTypeGlobal();
1096 bool WasmObjectFile::isValidEventSymbol(uint32_t Index
) const {
1097 return Index
< Symbols
.size() && Symbols
[Index
].isTypeEvent();
1100 bool WasmObjectFile::isValidDataSymbol(uint32_t Index
) const {
1101 return Index
< Symbols
.size() && Symbols
[Index
].isTypeData();
1104 bool WasmObjectFile::isValidSectionSymbol(uint32_t Index
) const {
1105 return Index
< Symbols
.size() && Symbols
[Index
].isTypeSection();
1108 wasm::WasmFunction
&WasmObjectFile::getDefinedFunction(uint32_t Index
) {
1109 assert(isDefinedFunctionIndex(Index
));
1110 return Functions
[Index
- NumImportedFunctions
];
1113 const wasm::WasmFunction
&
1114 WasmObjectFile::getDefinedFunction(uint32_t Index
) const {
1115 assert(isDefinedFunctionIndex(Index
));
1116 return Functions
[Index
- NumImportedFunctions
];
1119 wasm::WasmGlobal
&WasmObjectFile::getDefinedGlobal(uint32_t Index
) {
1120 assert(isDefinedGlobalIndex(Index
));
1121 return Globals
[Index
- NumImportedGlobals
];
1124 wasm::WasmEvent
&WasmObjectFile::getDefinedEvent(uint32_t Index
) {
1125 assert(isDefinedEventIndex(Index
));
1126 return Events
[Index
- NumImportedEvents
];
1129 Error
WasmObjectFile::parseStartSection(ReadContext
&Ctx
) {
1130 StartFunction
= readVaruint32(Ctx
);
1131 if (!isValidFunctionIndex(StartFunction
))
1132 return make_error
<GenericBinaryError
>("Invalid start function",
1133 object_error::parse_failed
);
1134 return Error::success();
1137 Error
WasmObjectFile::parseCodeSection(ReadContext
&Ctx
) {
1138 CodeSection
= Sections
.size();
1139 uint32_t FunctionCount
= readVaruint32(Ctx
);
1140 if (FunctionCount
!= FunctionTypes
.size()) {
1141 return make_error
<GenericBinaryError
>("Invalid function count",
1142 object_error::parse_failed
);
1145 while (FunctionCount
--) {
1146 wasm::WasmFunction Function
;
1147 const uint8_t *FunctionStart
= Ctx
.Ptr
;
1148 uint32_t Size
= readVaruint32(Ctx
);
1149 const uint8_t *FunctionEnd
= Ctx
.Ptr
+ Size
;
1151 Function
.CodeOffset
= Ctx
.Ptr
- FunctionStart
;
1152 Function
.Index
= NumImportedFunctions
+ Functions
.size();
1153 Function
.CodeSectionOffset
= FunctionStart
- Ctx
.Start
;
1154 Function
.Size
= FunctionEnd
- FunctionStart
;
1156 uint32_t NumLocalDecls
= readVaruint32(Ctx
);
1157 Function
.Locals
.reserve(NumLocalDecls
);
1158 while (NumLocalDecls
--) {
1159 wasm::WasmLocalDecl Decl
;
1160 Decl
.Count
= readVaruint32(Ctx
);
1161 Decl
.Type
= readUint8(Ctx
);
1162 Function
.Locals
.push_back(Decl
);
1165 uint32_t BodySize
= FunctionEnd
- Ctx
.Ptr
;
1166 Function
.Body
= ArrayRef
<uint8_t>(Ctx
.Ptr
, BodySize
);
1167 // This will be set later when reading in the linking metadata section.
1168 Function
.Comdat
= UINT32_MAX
;
1169 Ctx
.Ptr
+= BodySize
;
1170 assert(Ctx
.Ptr
== FunctionEnd
);
1171 Functions
.push_back(Function
);
1173 if (Ctx
.Ptr
!= Ctx
.End
)
1174 return make_error
<GenericBinaryError
>("Code section ended prematurely",
1175 object_error::parse_failed
);
1176 return Error::success();
1179 Error
WasmObjectFile::parseElemSection(ReadContext
&Ctx
) {
1180 uint32_t Count
= readVaruint32(Ctx
);
1181 ElemSegments
.reserve(Count
);
1183 wasm::WasmElemSegment Segment
;
1184 Segment
.TableIndex
= readVaruint32(Ctx
);
1185 if (Segment
.TableIndex
!= 0) {
1186 return make_error
<GenericBinaryError
>("Invalid TableIndex",
1187 object_error::parse_failed
);
1189 if (Error Err
= readInitExpr(Segment
.Offset
, Ctx
))
1191 uint32_t NumElems
= readVaruint32(Ctx
);
1192 while (NumElems
--) {
1193 Segment
.Functions
.push_back(readVaruint32(Ctx
));
1195 ElemSegments
.push_back(Segment
);
1197 if (Ctx
.Ptr
!= Ctx
.End
)
1198 return make_error
<GenericBinaryError
>("Elem section ended prematurely",
1199 object_error::parse_failed
);
1200 return Error::success();
1203 Error
WasmObjectFile::parseDataSection(ReadContext
&Ctx
) {
1204 DataSection
= Sections
.size();
1205 uint32_t Count
= readVaruint32(Ctx
);
1206 if (DataCount
&& Count
!= DataCount
.getValue())
1207 return make_error
<GenericBinaryError
>(
1208 "Number of data segments does not match DataCount section");
1209 DataSegments
.reserve(Count
);
1211 WasmSegment Segment
;
1212 Segment
.Data
.InitFlags
= readVaruint32(Ctx
);
1213 Segment
.Data
.MemoryIndex
= (Segment
.Data
.InitFlags
& wasm::WASM_SEGMENT_HAS_MEMINDEX
)
1214 ? readVaruint32(Ctx
) : 0;
1215 if ((Segment
.Data
.InitFlags
& wasm::WASM_SEGMENT_IS_PASSIVE
) == 0) {
1216 if (Error Err
= readInitExpr(Segment
.Data
.Offset
, Ctx
))
1219 Segment
.Data
.Offset
.Opcode
= wasm::WASM_OPCODE_I32_CONST
;
1220 Segment
.Data
.Offset
.Value
.Int32
= 0;
1222 uint32_t Size
= readVaruint32(Ctx
);
1223 if (Size
> (size_t)(Ctx
.End
- Ctx
.Ptr
))
1224 return make_error
<GenericBinaryError
>("Invalid segment size",
1225 object_error::parse_failed
);
1226 Segment
.Data
.Content
= ArrayRef
<uint8_t>(Ctx
.Ptr
, Size
);
1227 // The rest of these Data fields are set later, when reading in the linking
1228 // metadata section.
1229 Segment
.Data
.Alignment
= 0;
1230 Segment
.Data
.LinkerFlags
= 0;
1231 Segment
.Data
.Comdat
= UINT32_MAX
;
1232 Segment
.SectionOffset
= Ctx
.Ptr
- Ctx
.Start
;
1234 DataSegments
.push_back(Segment
);
1236 if (Ctx
.Ptr
!= Ctx
.End
)
1237 return make_error
<GenericBinaryError
>("Data section ended prematurely",
1238 object_error::parse_failed
);
1239 return Error::success();
1242 Error
WasmObjectFile::parseDataCountSection(ReadContext
&Ctx
) {
1243 DataCount
= readVaruint32(Ctx
);
1244 return Error::success();
1247 const wasm::WasmObjectHeader
&WasmObjectFile::getHeader() const {
1251 void WasmObjectFile::moveSymbolNext(DataRefImpl
&Symb
) const { Symb
.d
.b
++; }
1253 uint32_t WasmObjectFile::getSymbolFlags(DataRefImpl Symb
) const {
1254 uint32_t Result
= SymbolRef::SF_None
;
1255 const WasmSymbol
&Sym
= getWasmSymbol(Symb
);
1257 LLVM_DEBUG(dbgs() << "getSymbolFlags: ptr=" << &Sym
<< " " << Sym
<< "\n");
1258 if (Sym
.isBindingWeak())
1259 Result
|= SymbolRef::SF_Weak
;
1260 if (!Sym
.isBindingLocal())
1261 Result
|= SymbolRef::SF_Global
;
1263 Result
|= SymbolRef::SF_Hidden
;
1264 if (!Sym
.isDefined())
1265 Result
|= SymbolRef::SF_Undefined
;
1266 if (Sym
.isTypeFunction())
1267 Result
|= SymbolRef::SF_Executable
;
1271 basic_symbol_iterator
WasmObjectFile::symbol_begin() const {
1273 Ref
.d
.a
= 1; // Arbitrary non-zero value so that Ref.p is non-null
1274 Ref
.d
.b
= 0; // Symbol index
1275 return BasicSymbolRef(Ref
, this);
1278 basic_symbol_iterator
WasmObjectFile::symbol_end() const {
1280 Ref
.d
.a
= 1; // Arbitrary non-zero value so that Ref.p is non-null
1281 Ref
.d
.b
= Symbols
.size(); // Symbol index
1282 return BasicSymbolRef(Ref
, this);
1285 const WasmSymbol
&WasmObjectFile::getWasmSymbol(const DataRefImpl
&Symb
) const {
1286 return Symbols
[Symb
.d
.b
];
1289 const WasmSymbol
&WasmObjectFile::getWasmSymbol(const SymbolRef
&Symb
) const {
1290 return getWasmSymbol(Symb
.getRawDataRefImpl());
1293 Expected
<StringRef
> WasmObjectFile::getSymbolName(DataRefImpl Symb
) const {
1294 return getWasmSymbol(Symb
).Info
.Name
;
1297 Expected
<uint64_t> WasmObjectFile::getSymbolAddress(DataRefImpl Symb
) const {
1298 auto &Sym
= getWasmSymbol(Symb
);
1299 if (Sym
.Info
.Kind
== wasm::WASM_SYMBOL_TYPE_FUNCTION
&&
1300 isDefinedFunctionIndex(Sym
.Info
.ElementIndex
))
1301 return getDefinedFunction(Sym
.Info
.ElementIndex
).CodeSectionOffset
;
1303 return getSymbolValue(Symb
);
1306 uint64_t WasmObjectFile::getWasmSymbolValue(const WasmSymbol
&Sym
) const {
1307 switch (Sym
.Info
.Kind
) {
1308 case wasm::WASM_SYMBOL_TYPE_FUNCTION
:
1309 case wasm::WASM_SYMBOL_TYPE_GLOBAL
:
1310 case wasm::WASM_SYMBOL_TYPE_EVENT
:
1311 return Sym
.Info
.ElementIndex
;
1312 case wasm::WASM_SYMBOL_TYPE_DATA
: {
1313 // The value of a data symbol is the segment offset, plus the symbol
1314 // offset within the segment.
1315 uint32_t SegmentIndex
= Sym
.Info
.DataRef
.Segment
;
1316 const wasm::WasmDataSegment
&Segment
= DataSegments
[SegmentIndex
].Data
;
1317 assert(Segment
.Offset
.Opcode
== wasm::WASM_OPCODE_I32_CONST
);
1318 return Segment
.Offset
.Value
.Int32
+ Sym
.Info
.DataRef
.Offset
;
1320 case wasm::WASM_SYMBOL_TYPE_SECTION
:
1323 llvm_unreachable("invalid symbol type");
1326 uint64_t WasmObjectFile::getSymbolValueImpl(DataRefImpl Symb
) const {
1327 return getWasmSymbolValue(getWasmSymbol(Symb
));
1330 uint32_t WasmObjectFile::getSymbolAlignment(DataRefImpl Symb
) const {
1331 llvm_unreachable("not yet implemented");
1335 uint64_t WasmObjectFile::getCommonSymbolSizeImpl(DataRefImpl Symb
) const {
1336 llvm_unreachable("not yet implemented");
1340 Expected
<SymbolRef::Type
>
1341 WasmObjectFile::getSymbolType(DataRefImpl Symb
) const {
1342 const WasmSymbol
&Sym
= getWasmSymbol(Symb
);
1344 switch (Sym
.Info
.Kind
) {
1345 case wasm::WASM_SYMBOL_TYPE_FUNCTION
:
1346 return SymbolRef::ST_Function
;
1347 case wasm::WASM_SYMBOL_TYPE_GLOBAL
:
1348 return SymbolRef::ST_Other
;
1349 case wasm::WASM_SYMBOL_TYPE_DATA
:
1350 return SymbolRef::ST_Data
;
1351 case wasm::WASM_SYMBOL_TYPE_SECTION
:
1352 return SymbolRef::ST_Debug
;
1353 case wasm::WASM_SYMBOL_TYPE_EVENT
:
1354 return SymbolRef::ST_Other
;
1357 llvm_unreachable("Unknown WasmSymbol::SymbolType");
1358 return SymbolRef::ST_Other
;
1361 Expected
<section_iterator
>
1362 WasmObjectFile::getSymbolSection(DataRefImpl Symb
) const {
1363 const WasmSymbol
&Sym
= getWasmSymbol(Symb
);
1364 if (Sym
.isUndefined())
1365 return section_end();
1368 switch (Sym
.Info
.Kind
) {
1369 case wasm::WASM_SYMBOL_TYPE_FUNCTION
:
1370 Ref
.d
.a
= CodeSection
;
1372 case wasm::WASM_SYMBOL_TYPE_GLOBAL
:
1373 Ref
.d
.a
= GlobalSection
;
1375 case wasm::WASM_SYMBOL_TYPE_DATA
:
1376 Ref
.d
.a
= DataSection
;
1378 case wasm::WASM_SYMBOL_TYPE_SECTION
:
1379 Ref
.d
.a
= Sym
.Info
.ElementIndex
;
1381 case wasm::WASM_SYMBOL_TYPE_EVENT
:
1382 Ref
.d
.a
= EventSection
;
1385 llvm_unreachable("Unknown WasmSymbol::SymbolType");
1387 return section_iterator(SectionRef(Ref
, this));
1390 void WasmObjectFile::moveSectionNext(DataRefImpl
&Sec
) const { Sec
.d
.a
++; }
1392 Expected
<StringRef
> WasmObjectFile::getSectionName(DataRefImpl Sec
) const {
1393 const WasmSection
&S
= Sections
[Sec
.d
.a
];
1395 case wasm::WASM_SEC_##X: \
1411 case wasm::WASM_SEC_CUSTOM
:
1414 return createStringError(object_error::invalid_section_index
, "");
1419 uint64_t WasmObjectFile::getSectionAddress(DataRefImpl Sec
) const { return 0; }
1421 uint64_t WasmObjectFile::getSectionIndex(DataRefImpl Sec
) const {
1425 uint64_t WasmObjectFile::getSectionSize(DataRefImpl Sec
) const {
1426 const WasmSection
&S
= Sections
[Sec
.d
.a
];
1427 return S
.Content
.size();
1430 Expected
<ArrayRef
<uint8_t>>
1431 WasmObjectFile::getSectionContents(DataRefImpl Sec
) const {
1432 const WasmSection
&S
= Sections
[Sec
.d
.a
];
1433 // This will never fail since wasm sections can never be empty (user-sections
1434 // must have a name and non-user sections each have a defined structure).
1438 uint64_t WasmObjectFile::getSectionAlignment(DataRefImpl Sec
) const {
1442 bool WasmObjectFile::isSectionCompressed(DataRefImpl Sec
) const {
1446 bool WasmObjectFile::isSectionText(DataRefImpl Sec
) const {
1447 return getWasmSection(Sec
).Type
== wasm::WASM_SEC_CODE
;
1450 bool WasmObjectFile::isSectionData(DataRefImpl Sec
) const {
1451 return getWasmSection(Sec
).Type
== wasm::WASM_SEC_DATA
;
1454 bool WasmObjectFile::isSectionBSS(DataRefImpl Sec
) const { return false; }
1456 bool WasmObjectFile::isSectionVirtual(DataRefImpl Sec
) const { return false; }
1458 bool WasmObjectFile::isSectionBitcode(DataRefImpl Sec
) const { return false; }
1460 relocation_iterator
WasmObjectFile::section_rel_begin(DataRefImpl Ref
) const {
1461 DataRefImpl RelocRef
;
1462 RelocRef
.d
.a
= Ref
.d
.a
;
1464 return relocation_iterator(RelocationRef(RelocRef
, this));
1467 relocation_iterator
WasmObjectFile::section_rel_end(DataRefImpl Ref
) const {
1468 const WasmSection
&Sec
= getWasmSection(Ref
);
1469 DataRefImpl RelocRef
;
1470 RelocRef
.d
.a
= Ref
.d
.a
;
1471 RelocRef
.d
.b
= Sec
.Relocations
.size();
1472 return relocation_iterator(RelocationRef(RelocRef
, this));
1475 void WasmObjectFile::moveRelocationNext(DataRefImpl
&Rel
) const { Rel
.d
.b
++; }
1477 uint64_t WasmObjectFile::getRelocationOffset(DataRefImpl Ref
) const {
1478 const wasm::WasmRelocation
&Rel
= getWasmRelocation(Ref
);
1482 symbol_iterator
WasmObjectFile::getRelocationSymbol(DataRefImpl Ref
) const {
1483 const wasm::WasmRelocation
&Rel
= getWasmRelocation(Ref
);
1484 if (Rel
.Type
== wasm::R_WASM_TYPE_INDEX_LEB
)
1485 return symbol_end();
1488 Sym
.d
.b
= Rel
.Index
;
1489 return symbol_iterator(SymbolRef(Sym
, this));
1492 uint64_t WasmObjectFile::getRelocationType(DataRefImpl Ref
) const {
1493 const wasm::WasmRelocation
&Rel
= getWasmRelocation(Ref
);
1497 void WasmObjectFile::getRelocationTypeName(
1498 DataRefImpl Ref
, SmallVectorImpl
<char> &Result
) const {
1499 const wasm::WasmRelocation
&Rel
= getWasmRelocation(Ref
);
1500 StringRef Res
= "Unknown";
1502 #define WASM_RELOC(name, value) \
1508 #include "llvm/BinaryFormat/WasmRelocs.def"
1513 Result
.append(Res
.begin(), Res
.end());
1516 section_iterator
WasmObjectFile::section_begin() const {
1519 return section_iterator(SectionRef(Ref
, this));
1522 section_iterator
WasmObjectFile::section_end() const {
1524 Ref
.d
.a
= Sections
.size();
1525 return section_iterator(SectionRef(Ref
, this));
1528 uint8_t WasmObjectFile::getBytesInAddress() const { return 4; }
1530 StringRef
WasmObjectFile::getFileFormatName() const { return "WASM"; }
1532 Triple::ArchType
WasmObjectFile::getArch() const { return Triple::wasm32
; }
1534 SubtargetFeatures
WasmObjectFile::getFeatures() const {
1535 return SubtargetFeatures();
1538 bool WasmObjectFile::isRelocatableObject() const { return HasLinkingSection
; }
1540 bool WasmObjectFile::isSharedObject() const { return HasDylinkSection
; }
1542 const WasmSection
&WasmObjectFile::getWasmSection(DataRefImpl Ref
) const {
1543 assert(Ref
.d
.a
< Sections
.size());
1544 return Sections
[Ref
.d
.a
];
1548 WasmObjectFile::getWasmSection(const SectionRef
&Section
) const {
1549 return getWasmSection(Section
.getRawDataRefImpl());
1552 const wasm::WasmRelocation
&
1553 WasmObjectFile::getWasmRelocation(const RelocationRef
&Ref
) const {
1554 return getWasmRelocation(Ref
.getRawDataRefImpl());
1557 const wasm::WasmRelocation
&
1558 WasmObjectFile::getWasmRelocation(DataRefImpl Ref
) const {
1559 assert(Ref
.d
.a
< Sections
.size());
1560 const WasmSection
&Sec
= Sections
[Ref
.d
.a
];
1561 assert(Ref
.d
.b
< Sec
.Relocations
.size());
1562 return Sec
.Relocations
[Ref
.d
.b
];
1565 int WasmSectionOrderChecker::getSectionOrder(unsigned ID
,
1566 StringRef CustomSectionName
) {
1568 case wasm::WASM_SEC_CUSTOM
:
1569 return StringSwitch
<unsigned>(CustomSectionName
)
1570 .Case("dylink", WASM_SEC_ORDER_DYLINK
)
1571 .Case("linking", WASM_SEC_ORDER_LINKING
)
1572 .StartsWith("reloc.", WASM_SEC_ORDER_RELOC
)
1573 .Case("name", WASM_SEC_ORDER_NAME
)
1574 .Case("producers", WASM_SEC_ORDER_PRODUCERS
)
1575 .Case("target_features", WASM_SEC_ORDER_TARGET_FEATURES
)
1576 .Default(WASM_SEC_ORDER_NONE
);
1577 case wasm::WASM_SEC_TYPE
:
1578 return WASM_SEC_ORDER_TYPE
;
1579 case wasm::WASM_SEC_IMPORT
:
1580 return WASM_SEC_ORDER_IMPORT
;
1581 case wasm::WASM_SEC_FUNCTION
:
1582 return WASM_SEC_ORDER_FUNCTION
;
1583 case wasm::WASM_SEC_TABLE
:
1584 return WASM_SEC_ORDER_TABLE
;
1585 case wasm::WASM_SEC_MEMORY
:
1586 return WASM_SEC_ORDER_MEMORY
;
1587 case wasm::WASM_SEC_GLOBAL
:
1588 return WASM_SEC_ORDER_GLOBAL
;
1589 case wasm::WASM_SEC_EXPORT
:
1590 return WASM_SEC_ORDER_EXPORT
;
1591 case wasm::WASM_SEC_START
:
1592 return WASM_SEC_ORDER_START
;
1593 case wasm::WASM_SEC_ELEM
:
1594 return WASM_SEC_ORDER_ELEM
;
1595 case wasm::WASM_SEC_CODE
:
1596 return WASM_SEC_ORDER_CODE
;
1597 case wasm::WASM_SEC_DATA
:
1598 return WASM_SEC_ORDER_DATA
;
1599 case wasm::WASM_SEC_DATACOUNT
:
1600 return WASM_SEC_ORDER_DATACOUNT
;
1601 case wasm::WASM_SEC_EVENT
:
1602 return WASM_SEC_ORDER_EVENT
;
1604 return WASM_SEC_ORDER_NONE
;
1608 // Represents the edges in a directed graph where any node B reachable from node
1609 // A is not allowed to appear before A in the section ordering, but may appear
1611 int WasmSectionOrderChecker::DisallowedPredecessors
[WASM_NUM_SEC_ORDERS
][WASM_NUM_SEC_ORDERS
] = {
1612 {}, // WASM_SEC_ORDER_NONE
1613 {WASM_SEC_ORDER_TYPE
, WASM_SEC_ORDER_IMPORT
}, // WASM_SEC_ORDER_TYPE,
1614 {WASM_SEC_ORDER_IMPORT
, WASM_SEC_ORDER_FUNCTION
}, // WASM_SEC_ORDER_IMPORT,
1615 {WASM_SEC_ORDER_FUNCTION
, WASM_SEC_ORDER_TABLE
}, // WASM_SEC_ORDER_FUNCTION,
1616 {WASM_SEC_ORDER_TABLE
, WASM_SEC_ORDER_MEMORY
}, // WASM_SEC_ORDER_TABLE,
1617 {WASM_SEC_ORDER_MEMORY
, WASM_SEC_ORDER_GLOBAL
}, // WASM_SEC_ORDER_MEMORY,
1618 {WASM_SEC_ORDER_GLOBAL
, WASM_SEC_ORDER_EVENT
}, // WASM_SEC_ORDER_GLOBAL,
1619 {WASM_SEC_ORDER_EVENT
, WASM_SEC_ORDER_EXPORT
}, // WASM_SEC_ORDER_EVENT,
1620 {WASM_SEC_ORDER_EXPORT
, WASM_SEC_ORDER_START
}, // WASM_SEC_ORDER_EXPORT,
1621 {WASM_SEC_ORDER_START
, WASM_SEC_ORDER_ELEM
}, // WASM_SEC_ORDER_START,
1622 {WASM_SEC_ORDER_ELEM
, WASM_SEC_ORDER_DATACOUNT
}, // WASM_SEC_ORDER_ELEM,
1623 {WASM_SEC_ORDER_DATACOUNT
, WASM_SEC_ORDER_CODE
}, // WASM_SEC_ORDER_DATACOUNT,
1624 {WASM_SEC_ORDER_CODE
, WASM_SEC_ORDER_DATA
}, // WASM_SEC_ORDER_CODE,
1625 {WASM_SEC_ORDER_DATA
, WASM_SEC_ORDER_LINKING
}, // WASM_SEC_ORDER_DATA,
1628 {WASM_SEC_ORDER_DYLINK
, WASM_SEC_ORDER_TYPE
}, // WASM_SEC_ORDER_DYLINK,
1629 {WASM_SEC_ORDER_LINKING
, WASM_SEC_ORDER_RELOC
, WASM_SEC_ORDER_NAME
}, // WASM_SEC_ORDER_LINKING,
1630 {}, // WASM_SEC_ORDER_RELOC (can be repeated),
1631 {WASM_SEC_ORDER_NAME
, WASM_SEC_ORDER_PRODUCERS
}, // WASM_SEC_ORDER_NAME,
1632 {WASM_SEC_ORDER_PRODUCERS
, WASM_SEC_ORDER_TARGET_FEATURES
}, // WASM_SEC_ORDER_PRODUCERS,
1633 {WASM_SEC_ORDER_TARGET_FEATURES
} // WASM_SEC_ORDER_TARGET_FEATURES
1636 bool WasmSectionOrderChecker::isValidSectionOrder(unsigned ID
,
1637 StringRef CustomSectionName
) {
1638 int Order
= getSectionOrder(ID
, CustomSectionName
);
1639 if (Order
== WASM_SEC_ORDER_NONE
)
1642 // Disallowed predecessors we need to check for
1643 SmallVector
<int, WASM_NUM_SEC_ORDERS
> WorkList
;
1645 // Keep track of completed checks to avoid repeating work
1646 bool Checked
[WASM_NUM_SEC_ORDERS
] = {};
1650 // Add new disallowed predecessors to work list
1651 for (size_t I
= 0;; ++I
) {
1652 int Next
= DisallowedPredecessors
[Curr
][I
];
1653 if (Next
== WASM_SEC_ORDER_NONE
)
1657 WorkList
.push_back(Next
);
1658 Checked
[Next
] = true;
1661 if (WorkList
.empty())
1664 // Consider next disallowed predecessor
1665 Curr
= WorkList
.pop_back_val();
1670 // Have not seen any disallowed predecessors