1 /* BFD back-end for WebAssembly modules.
2 Copyright (C) 2017-2020 Free Software Foundation, Inc.
4 Based on srec.c, mmo.c, and binary.c
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
23 /* The WebAssembly module format is a simple object file format
24 including up to 11 numbered sections, plus any number of named
25 "custom" sections. It is described at:
26 https://github.com/WebAssembly/design/blob/master/BinaryEncoding.md. */
29 #include "alloca-conf.h"
32 #include "libiberty.h"
34 #include "wasm-module.h"
39 bfd_size_type symcount
;
42 static const char * const wasm_numbered_sections
[] =
44 NULL
, /* Custom section, different layout. */
45 WASM_SECTION ( 1, "type"),
46 WASM_SECTION ( 2, "import"),
47 WASM_SECTION ( 3, "function"),
48 WASM_SECTION ( 4, "table"),
49 WASM_SECTION ( 5, "memory"),
50 WASM_SECTION ( 6, "global"),
51 WASM_SECTION ( 7, "export"),
52 WASM_SECTION ( 8, "start"),
53 WASM_SECTION ( 9, "element"),
54 WASM_SECTION (10, "code"),
55 WASM_SECTION (11, "data"),
58 #define WASM_NUMBERED_SECTIONS ARRAY_SIZE (wasm_numbered_sections)
60 /* Resolve SECTION_CODE to a section name if there is one, NULL
64 wasm_section_code_to_name (bfd_byte section_code
)
66 if (section_code
< WASM_NUMBERED_SECTIONS
)
67 return wasm_numbered_sections
[section_code
];
72 /* Translate section name NAME to a section code, or 0 if it's a
76 wasm_section_name_to_code (const char *name
)
80 for (i
= 1; i
< WASM_NUMBERED_SECTIONS
; i
++)
81 if (strcmp (name
, wasm_numbered_sections
[i
]) == 0)
87 /* WebAssembly LEB128 integers are sufficiently like DWARF LEB128
88 integers that we use _bfd_safe_read_leb128, but there are two
91 - WebAssembly requires a 32-bit value to be encoded in at most 5
93 - _bfd_safe_read_leb128 accepts incomplete LEB128 encodings at the
94 end of the buffer, while these are invalid in WebAssembly.
96 Those differences mean that we will accept some files that are
97 invalid WebAssembly. */
99 /* Read an LEB128-encoded integer from ABFD's I/O stream, reading one
100 byte at a time. Set ERROR_RETURN if no complete integer could be
101 read, LENGTH_RETURN to the number of bytes read (including bytes in
102 incomplete numbers). SIGN means interpret the number as SLEB128. */
105 wasm_read_leb128 (bfd
* abfd
,
106 bfd_boolean
* error_return
,
107 unsigned int * length_return
,
111 unsigned int num_read
= 0;
112 unsigned int shift
= 0;
113 unsigned char byte
= 0;
116 while (bfd_bread (&byte
, 1, abfd
) == 1)
120 if (shift
< sizeof (result
) * 8)
122 result
|= ((bfd_vma
) (byte
& 0x7f)) << shift
;
123 if ((result
>> shift
) != (byte
& 0x7f))
128 else if ((byte
& 0x7f) != 0)
131 if ((byte
& 0x80) == 0)
134 if (sign
&& (shift
< 8 * sizeof (result
)) && (byte
& 0x40))
135 result
|= -((bfd_vma
) 1 << shift
);
140 if (length_return
!= NULL
)
141 *length_return
= num_read
;
142 if (error_return
!= NULL
)
143 *error_return
= status
!= 0;
148 /* Encode an integer V as LEB128 and write it to ABFD, return TRUE on
152 wasm_write_uleb128 (bfd
*abfd
, bfd_vma v
)
156 bfd_byte c
= v
& 0x7f;
162 if (bfd_bwrite (&c
, 1, abfd
) != 1)
170 /* Read the LEB128 integer at P, saving it to X; at end of buffer,
171 jump to error_return. */
172 #define READ_LEB128(x, p, end) \
175 unsigned int length_read; \
176 (x) = _bfd_safe_read_leb128 (abfd, (p), &length_read, \
178 (p) += length_read; \
179 if (length_read == 0) \
184 /* Verify the magic number at the beginning of a WebAssembly module
185 ABFD, setting ERRORPTR if there's a mismatch. */
188 wasm_read_magic (bfd
*abfd
, bfd_boolean
*errorptr
)
190 bfd_byte magic_const
[SIZEOF_WASM_MAGIC
] = WASM_MAGIC
;
191 bfd_byte magic
[SIZEOF_WASM_MAGIC
];
193 if (bfd_bread (magic
, sizeof (magic
), abfd
) == sizeof (magic
)
194 && memcmp (magic
, magic_const
, sizeof (magic
)) == 0)
201 /* Read the version number from ABFD, returning TRUE if it's a supported
202 version. Set ERRORPTR otherwise. */
205 wasm_read_version (bfd
*abfd
, bfd_boolean
*errorptr
)
207 bfd_byte vers_const
[SIZEOF_WASM_VERSION
] = WASM_VERSION
;
208 bfd_byte vers
[SIZEOF_WASM_VERSION
];
210 if (bfd_bread (vers
, sizeof (vers
), abfd
) == sizeof (vers
)
211 /* Don't attempt to parse newer versions, which are likely to
212 require code changes. */
213 && memcmp (vers
, vers_const
, sizeof (vers
)) == 0)
220 /* Read the WebAssembly header (magic number plus version number) from
221 ABFD, setting ERRORPTR to TRUE if there is a mismatch. */
224 wasm_read_header (bfd
*abfd
, bfd_boolean
*errorptr
)
226 if (! wasm_read_magic (abfd
, errorptr
))
229 if (! wasm_read_version (abfd
, errorptr
))
235 /* Scan the "function" subsection of the "name" section ASECT in the
236 wasm module ABFD. Create symbols. Return TRUE on success. */
239 wasm_scan_name_function_section (bfd
*abfd
, sec_ptr asect
)
243 bfd_vma payload_size
;
244 bfd_vma symcount
= 0;
245 tdata_type
*tdata
= abfd
->tdata
.any
;
246 asymbol
*symbols
= NULL
;
247 sec_ptr space_function_index
;
251 end
= asect
->contents
+ asect
->size
;
258 bfd_byte subsection_code
= *p
++;
259 if (subsection_code
== WASM_FUNCTION_SUBSECTION
)
262 /* subsection_code is documented to be a varuint7, meaning that
263 it has to be a single byte in the 0 - 127 range. If it isn't,
264 the spec must have changed underneath us, so give up. */
265 if (subsection_code
& 0x80)
268 READ_LEB128 (payload_size
, p
, end
);
270 if (payload_size
> (size_t) (end
- p
))
279 READ_LEB128 (payload_size
, p
, end
);
281 if (payload_size
> (size_t) (end
- p
))
284 end
= p
+ payload_size
;
286 READ_LEB128 (symcount
, p
, end
);
288 /* Sanity check: each symbol has at least two bytes. */
289 if (symcount
> payload_size
/ 2)
292 tdata
->symcount
= symcount
;
295 = bfd_make_section_with_flags (abfd
, WASM_SECTION_FUNCTION_INDEX
,
296 SEC_READONLY
| SEC_CODE
);
298 if (!space_function_index
)
300 = bfd_get_section_by_name (abfd
, WASM_SECTION_FUNCTION_INDEX
);
302 if (!space_function_index
)
305 if (_bfd_mul_overflow (tdata
->symcount
, sizeof (asymbol
), &amt
))
307 bfd_set_error (bfd_error_file_too_big
);
310 symbols
= bfd_alloc (abfd
, amt
);
314 for (symcount
= 0; p
< end
&& symcount
< tdata
->symcount
; symcount
++)
321 READ_LEB128 (idx
, p
, end
);
322 READ_LEB128 (len
, p
, end
);
324 if (len
> (size_t) (end
- p
))
327 name
= bfd_alloc (abfd
, len
+ 1);
331 memcpy (name
, p
, len
);
335 sym
= &symbols
[symcount
];
339 sym
->flags
= BSF_GLOBAL
| BSF_FUNCTION
;
340 sym
->section
= space_function_index
;
344 if (symcount
< tdata
->symcount
)
347 tdata
->symbols
= symbols
;
348 abfd
->symcount
= symcount
;
353 bfd_release (abfd
, symbols
);
357 /* Read a byte from ABFD and return it, or EOF for EOF or error.
358 Set ERRORPTR on non-EOF error. */
361 wasm_read_byte (bfd
*abfd
, bfd_boolean
*errorptr
)
365 if (bfd_bread (&byte
, (bfd_size_type
) 1, abfd
) != 1)
367 if (bfd_get_error () != bfd_error_file_truncated
)
375 /* Scan the wasm module ABFD, creating sections and symbols.
376 Return TRUE on success. */
379 wasm_scan (bfd
*abfd
)
381 bfd_boolean error
= FALSE
;
382 /* Fake VMAs for now. Choose 0x80000000 as base to avoid clashes
383 with actual data addresses. */
384 bfd_vma vma
= 0x80000000;
386 unsigned int bytes_read
;
389 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0)
392 if (!wasm_read_header (abfd
, &error
))
395 while ((section_code
= wasm_read_byte (abfd
, &error
)) != EOF
)
397 if (section_code
!= 0)
399 const char *sname
= wasm_section_code_to_name (section_code
);
404 bfdsec
= bfd_make_section_anyway_with_flags (abfd
, sname
,
409 bfdsec
->size
= wasm_read_leb128 (abfd
, &error
, &bytes_read
, FALSE
);
418 char *prefix
= WASM_SECTION_PREFIX
;
419 size_t prefixlen
= strlen (prefix
);
422 payload_len
= wasm_read_leb128 (abfd
, &error
, &bytes_read
, FALSE
);
425 namelen
= wasm_read_leb128 (abfd
, &error
, &bytes_read
, FALSE
);
426 if (error
|| bytes_read
> payload_len
427 || namelen
> payload_len
- bytes_read
)
429 payload_len
-= namelen
+ bytes_read
;
430 filesize
= bfd_get_file_size (abfd
);
431 if (filesize
!= 0 && namelen
> filesize
)
433 bfd_set_error (bfd_error_file_truncated
);
436 name
= bfd_alloc (abfd
, namelen
+ prefixlen
+ 1);
439 memcpy (name
, prefix
, prefixlen
);
440 if (bfd_bread (name
+ prefixlen
, namelen
, abfd
) != namelen
)
442 name
[prefixlen
+ namelen
] = 0;
444 bfdsec
= bfd_make_section_anyway_with_flags (abfd
, name
,
449 bfdsec
->size
= payload_len
;
454 bfdsec
->alignment_power
= 0;
455 bfdsec
->filepos
= bfd_tell (abfd
);
456 if (bfdsec
->size
!= 0)
458 bfdsec
->contents
= _bfd_alloc_and_read (abfd
, bfdsec
->size
,
460 if (!bfdsec
->contents
)
467 /* Make sure we're at actual EOF. There's no indication in the
468 WebAssembly format of how long the file is supposed to be. */
478 /* Put a numbered section ASECT of ABFD into the table of numbered
479 sections pointed to by FSARG. */
482 wasm_register_section (bfd
*abfd ATTRIBUTE_UNUSED
,
486 sec_ptr
*numbered_sections
= fsarg
;
487 int idx
= wasm_section_name_to_code (asect
->name
);
492 numbered_sections
[idx
] = asect
;
495 struct compute_section_arg
501 /* Compute the file position of ABFD's section ASECT. FSARG is a
502 pointer to the current file position.
504 We allow section names of the form .wasm.id to encode the numbered
505 section with ID id, if it exists; otherwise, a custom section with
506 ID "id" is produced. Arbitrary section names are for sections that
507 are assumed already to contain a section header; those are appended
508 to the WebAssembly module verbatim. */
511 wasm_compute_custom_section_file_position (bfd
*abfd
,
515 struct compute_section_arg
*fs
= fsarg
;
521 idx
= wasm_section_name_to_code (asect
->name
);
526 if (CONST_STRNEQ (asect
->name
, WASM_SECTION_PREFIX
))
528 const char *name
= asect
->name
+ strlen (WASM_SECTION_PREFIX
);
529 bfd_size_type payload_len
= asect
->size
;
530 bfd_size_type name_len
= strlen (name
);
531 bfd_size_type nl
= name_len
;
533 payload_len
+= name_len
;
542 bfd_seek (abfd
, fs
->pos
, SEEK_SET
);
543 if (! wasm_write_uleb128 (abfd
, 0)
544 || ! wasm_write_uleb128 (abfd
, payload_len
)
545 || ! wasm_write_uleb128 (abfd
, name_len
)
546 || bfd_bwrite (name
, name_len
, abfd
) != name_len
)
548 fs
->pos
= asect
->filepos
= bfd_tell (abfd
);
552 asect
->filepos
= fs
->pos
;
556 fs
->pos
+= asect
->size
;
563 /* Compute the file positions for the sections of ABFD. Currently,
564 this writes all numbered sections first, in order, then all custom
565 sections, in section order.
567 The spec says that the numbered sections must appear in order of
568 their ids, but custom sections can appear in any position and any
569 order, and more than once. FIXME: support that. */
572 wasm_compute_section_file_positions (bfd
*abfd
)
574 bfd_byte magic
[SIZEOF_WASM_MAGIC
] = WASM_MAGIC
;
575 bfd_byte vers
[SIZEOF_WASM_VERSION
] = WASM_VERSION
;
576 sec_ptr numbered_sections
[WASM_NUMBERED_SECTIONS
];
577 struct compute_section_arg fs
;
580 bfd_seek (abfd
, (bfd_vma
) 0, SEEK_SET
);
582 if (bfd_bwrite (magic
, sizeof (magic
), abfd
) != (sizeof magic
)
583 || bfd_bwrite (vers
, sizeof (vers
), abfd
) != sizeof (vers
))
586 for (i
= 0; i
< WASM_NUMBERED_SECTIONS
; i
++)
587 numbered_sections
[i
] = NULL
;
589 bfd_map_over_sections (abfd
, wasm_register_section
, numbered_sections
);
591 fs
.pos
= bfd_tell (abfd
);
592 for (i
= 0; i
< WASM_NUMBERED_SECTIONS
; i
++)
594 sec_ptr sec
= numbered_sections
[i
];
600 if (bfd_seek (abfd
, fs
.pos
, SEEK_SET
) != 0)
602 if (! wasm_write_uleb128 (abfd
, i
)
603 || ! wasm_write_uleb128 (abfd
, size
))
605 fs
.pos
= sec
->filepos
= bfd_tell (abfd
);
611 bfd_map_over_sections (abfd
, wasm_compute_custom_section_file_position
, &fs
);
616 abfd
->output_has_begun
= TRUE
;
622 wasm_set_section_contents (bfd
*abfd
,
624 const void *location
,
631 if (! abfd
->output_has_begun
632 && ! wasm_compute_section_file_positions (abfd
))
635 if (bfd_seek (abfd
, section
->filepos
+ offset
, SEEK_SET
) != 0
636 || bfd_bwrite (location
, count
, abfd
) != count
)
643 wasm_write_object_contents (bfd
* abfd
)
645 bfd_byte magic
[] = WASM_MAGIC
;
646 bfd_byte vers
[] = WASM_VERSION
;
648 if (bfd_seek (abfd
, 0, SEEK_SET
) != 0)
651 if (bfd_bwrite (magic
, sizeof (magic
), abfd
) != sizeof (magic
)
652 || bfd_bwrite (vers
, sizeof (vers
), abfd
) != sizeof (vers
))
659 wasm_mkobject (bfd
*abfd
)
661 tdata_type
*tdata
= (tdata_type
*) bfd_alloc (abfd
, sizeof (tdata_type
));
666 tdata
->symbols
= NULL
;
669 abfd
->tdata
.any
= tdata
;
675 wasm_get_symtab_upper_bound (bfd
*abfd
)
677 tdata_type
*tdata
= abfd
->tdata
.any
;
679 return (tdata
->symcount
+ 1) * (sizeof (asymbol
*));
683 wasm_canonicalize_symtab (bfd
*abfd
, asymbol
**alocation
)
685 tdata_type
*tdata
= abfd
->tdata
.any
;
688 for (i
= 0; i
< tdata
->symcount
; i
++)
689 alocation
[i
] = &tdata
->symbols
[i
];
692 return tdata
->symcount
;
696 wasm_make_empty_symbol (bfd
*abfd
)
698 size_t amt
= sizeof (asymbol
);
699 asymbol
*new_symbol
= (asymbol
*) bfd_zalloc (abfd
, amt
);
703 new_symbol
->the_bfd
= abfd
;
708 wasm_print_symbol (bfd
*abfd
,
711 bfd_print_symbol_type how
)
713 FILE *file
= (FILE *) filep
;
717 case bfd_print_symbol_name
:
718 fprintf (file
, "%s", symbol
->name
);
722 bfd_print_symbol_vandf (abfd
, filep
, symbol
);
723 fprintf (file
, " %-5s %s", symbol
->section
->name
, symbol
->name
);
728 wasm_get_symbol_info (bfd
*abfd ATTRIBUTE_UNUSED
,
732 bfd_symbol_info (symbol
, ret
);
735 /* Check whether ABFD is a WebAssembly module; if so, scan it. */
738 wasm_object_p (bfd
*abfd
)
743 if (bfd_seek (abfd
, (file_ptr
) 0, SEEK_SET
) != 0)
746 if (!wasm_read_header (abfd
, &error
))
748 bfd_set_error (bfd_error_wrong_format
);
752 if (!wasm_mkobject (abfd
))
755 if (!wasm_scan (abfd
)
756 || !bfd_default_set_arch_mach (abfd
, bfd_arch_wasm32
, 0))
758 bfd_release (abfd
, abfd
->tdata
.any
);
759 abfd
->tdata
.any
= NULL
;
763 s
= bfd_get_section_by_name (abfd
, WASM_NAME_SECTION
);
764 if (s
!= NULL
&& wasm_scan_name_function_section (abfd
, s
))
765 abfd
->flags
|= HAS_SYMS
;
767 return _bfd_no_cleanup
;
770 /* BFD_JUMP_TABLE_WRITE */
771 #define wasm_set_arch_mach _bfd_generic_set_arch_mach
773 /* BFD_JUMP_TABLE_SYMBOLS */
774 #define wasm_get_symbol_version_string _bfd_nosymbols_get_symbol_version_string
775 #define wasm_bfd_is_local_label_name bfd_generic_is_local_label_name
776 #define wasm_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
777 #define wasm_get_lineno _bfd_nosymbols_get_lineno
778 #define wasm_find_nearest_line _bfd_nosymbols_find_nearest_line
779 #define wasm_find_line _bfd_nosymbols_find_line
780 #define wasm_find_inliner_info _bfd_nosymbols_find_inliner_info
781 #define wasm_bfd_make_debug_symbol _bfd_nosymbols_bfd_make_debug_symbol
782 #define wasm_read_minisymbols _bfd_generic_read_minisymbols
783 #define wasm_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
785 const bfd_target wasm_vec
=
788 bfd_target_unknown_flavour
,
791 (HAS_SYMS
| WP_TEXT
), /* Object flags. */
792 (SEC_CODE
| SEC_DATA
| SEC_HAS_CONTENTS
), /* Section flags. */
793 0, /* Leading underscore. */
794 ' ', /* AR_pad_char. */
795 255, /* AR_max_namelen. */
796 0, /* Match priority. */
797 /* Routines to byte-swap various sized integers from the data sections. */
798 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
799 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
800 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
,
802 /* Routines to byte-swap various sized integers from the file headers. */
803 bfd_getl64
, bfd_getl_signed_64
, bfd_putl64
,
804 bfd_getl32
, bfd_getl_signed_32
, bfd_putl32
,
805 bfd_getl16
, bfd_getl_signed_16
, bfd_putl16
,
809 wasm_object_p
, /* bfd_check_format. */
814 _bfd_bool_bfd_false_error
,
816 _bfd_generic_mkarchive
,
817 _bfd_bool_bfd_false_error
,
819 { /* bfd_write_contents. */
820 _bfd_bool_bfd_false_error
,
821 wasm_write_object_contents
,
822 _bfd_write_archive_contents
,
823 _bfd_bool_bfd_false_error
,
826 BFD_JUMP_TABLE_GENERIC (_bfd_generic
),
827 BFD_JUMP_TABLE_COPY (_bfd_generic
),
828 BFD_JUMP_TABLE_CORE (_bfd_nocore
),
829 BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive
),
830 BFD_JUMP_TABLE_SYMBOLS (wasm
),
831 BFD_JUMP_TABLE_RELOCS (_bfd_norelocs
),
832 BFD_JUMP_TABLE_WRITE (wasm
),
833 BFD_JUMP_TABLE_LINK (_bfd_nolink
),
834 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic
),