1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * outelf64.c output routines for the Netwide Assembler to produce
36 * ELF64 (x86_64 of course) object file format
53 #include "output/outform.h"
54 #include "output/outlib.h"
57 #include "output/dwarf.h"
58 #include "output/elf.h"
59 #include "output/outelf.h"
63 #define SOC(ln,aa) ln - line_base + (line_range * aa) + opcode_base
67 int64_t address
; /* relative to _start_ of section */
68 int64_t symbol
; /* symbol index */
69 int64_t offset
; /* symbol addend */
70 int type
; /* type of relocation */
74 struct rbtree symv
; /* symbol value and rbtree of globals */
75 int32_t strpos
; /* string table position of name */
76 int32_t section
; /* section ID of the symbol */
77 int type
; /* symbol type */
78 int other
; /* symbol visibility */
79 int32_t size
; /* size of symbol */
80 int32_t globnum
; /* symbol table offset if global */
81 struct Symbol
*nextfwd
; /* list of unresolved-size symbols */
82 char *name
; /* used temporarily if in above list */
89 int32_t index
; /* index into sects array */
90 int type
; /* SHT_PROGBITS or SHT_NOBITS */
91 uint64_t align
; /* alignment: power of two */
92 uint64_t flags
; /* section flags */
96 struct Reloc
*head
, **tail
;
97 struct rbtree
*gsyms
; /* global symbols in section */
100 #define SECT_DELTA 32
101 static struct Section
**sects
;
102 static int nsects
, sectlen
;
104 #define SHSTR_DELTA 256
105 static char *shstrtab
;
106 static int shstrtablen
, shstrtabsize
;
108 static struct SAA
*syms
;
109 static uint32_t nlocals
, nglobs
, ndebugs
;
111 static int32_t def_seg
;
113 static struct RAA
*bsym
;
115 static struct SAA
*strs
;
116 static uint32_t strslen
;
118 static struct Symbol
*fwds
;
120 static char elf_module
[FILENAME_MAX
];
122 static uint8_t elf_osabi
= 0; /* Default OSABI = 0 (System V or Linux) */
123 static uint8_t elf_abiver
= 0; /* Current ABI version */
125 extern struct ofmt of_elf64
;
127 static struct ELF_SECTDATA
{
132 static int elf_nsect
, nsections
;
133 static int64_t elf_foffs
;
135 static void elf_write(void);
136 static void elf_sect_write(struct Section
*, const void *, size_t);
137 static void elf_sect_writeaddr(struct Section
*, int64_t, size_t);
138 static void elf_section_header(int, int, uint64_t, void *, bool, uint64_t, int, int,
140 static void elf_write_sections(void);
141 static struct SAA
*elf_build_symtab(int32_t *, int32_t *);
142 static struct SAA
*elf_build_reltab(uint64_t *, struct Reloc
*);
143 static void add_sectname(char *, char *);
145 /* type values for stabs debugging sections */
146 #define N_SO 0x64 /* ID for main source file */
147 #define N_SOL 0x84 /* ID for sub-source file */
148 #define N_BINCL 0x82 /* not currently used */
149 #define N_EINCL 0xA2 /* not currently used */
166 int section
; /* index into sects[] */
167 int segto
; /* internal section number */
168 char *name
; /* shallow-copied pointer of section name */
172 struct symlininfo info
;
175 struct linelist
*next
;
176 struct linelist
*last
;
185 struct sectlist
*next
;
186 struct sectlist
*last
;
189 /* common debug variables */
190 static int currentline
= 1;
191 static int debug_immcall
= 0;
193 /* stabs debug variables */
194 static struct linelist
*stabslines
= 0;
195 static int numlinestabs
= 0;
196 static char *stabs_filename
= 0;
197 static int symtabsection
;
198 static uint8_t *stabbuf
= 0, *stabstrbuf
= 0, *stabrelbuf
= 0;
199 static int stablen
, stabstrlen
, stabrellen
;
201 /* dwarf debug variables */
202 static struct linelist
*dwarf_flist
= 0, *dwarf_clist
= 0, *dwarf_elist
= 0;
203 static struct sectlist
*dwarf_fsect
= 0, *dwarf_csect
= 0, *dwarf_esect
= 0;
204 static int dwarf_numfiles
= 0, dwarf_nsections
;
205 static uint8_t *arangesbuf
= 0, *arangesrelbuf
= 0, *pubnamesbuf
= 0, *infobuf
= 0, *inforelbuf
= 0,
206 *abbrevbuf
= 0, *linebuf
= 0, *linerelbuf
= 0, *framebuf
= 0, *locbuf
= 0;
207 static int8_t line_base
= -5, line_range
= 14, opcode_base
= 13;
208 static int arangeslen
, arangesrellen
, pubnameslen
, infolen
, inforellen
,
209 abbrevlen
, linelen
, linerellen
, framelen
, loclen
;
210 static int64_t dwarf_infosym
, dwarf_abbrevsym
, dwarf_linesym
;
213 static struct dfmt df_dwarf
;
214 static struct dfmt df_stabs
;
215 static struct Symbol
*lastsym
;
217 /* common debugging routines */
218 static void debug64_typevalue(int32_t);
219 static void debug64_deflabel(char *, int32_t, int64_t, int, char *);
220 static void debug64_directive(const char *, const char *);
222 /* stabs debugging routines */
223 static void stabs64_linenum(const char *filename
, int32_t linenumber
, int32_t);
224 static void stabs64_output(int, void *);
225 static void stabs64_generate(void);
226 static void stabs64_cleanup(void);
228 /* dwarf debugging routines */
229 static void dwarf64_init(void);
230 static void dwarf64_linenum(const char *filename
, int32_t linenumber
, int32_t);
231 static void dwarf64_output(int, void *);
232 static void dwarf64_generate(void);
233 static void dwarf64_cleanup(void);
234 static void dwarf64_findfile(const char *);
235 static void dwarf64_findsect(const int);
238 * Special section numbers which are used to define ELF special
239 * symbols, which can be used with WRT to provide PIC relocation
242 static int32_t elf_gotpc_sect
, elf_gotoff_sect
;
243 static int32_t elf_got_sect
, elf_plt_sect
;
244 static int32_t elf_sym_sect
;
245 static int32_t elf_gottpoff_sect
;
247 static void elf_init(void)
251 nsects
= sectlen
= 0;
252 syms
= saa_init((int32_t)sizeof(struct Symbol
));
253 nlocals
= nglobs
= ndebugs
= 0;
256 saa_wbytes(strs
, "\0", 1L);
257 saa_wbytes(strs
, elf_module
, (int32_t)(strlen(elf_module
) + 1));
258 strslen
= 2 + strlen(elf_module
);
260 shstrtablen
= shstrtabsize
= 0;;
261 add_sectname("", "");
265 elf_gotpc_sect
= seg_alloc();
266 define_label("..gotpc", elf_gotpc_sect
+ 1, 0L, NULL
, false, false);
267 elf_gotoff_sect
= seg_alloc();
268 define_label("..gotoff", elf_gotoff_sect
+ 1, 0L, NULL
, false, false);
269 elf_got_sect
= seg_alloc();
270 define_label("..got", elf_got_sect
+ 1, 0L, NULL
, false, false);
271 elf_plt_sect
= seg_alloc();
272 define_label("..plt", elf_plt_sect
+ 1, 0L, NULL
, false, false);
273 elf_sym_sect
= seg_alloc();
274 define_label("..sym", elf_sym_sect
+ 1, 0L, NULL
, false, false);
275 elf_gottpoff_sect
= seg_alloc();
276 define_label("..gottpoff", elf_gottpoff_sect
+ 1, 0L, NULL
, false, false);
278 def_seg
= seg_alloc();
282 static void elf_cleanup(int debuginfo
)
290 for (i
= 0; i
< nsects
; i
++) {
291 if (sects
[i
]->type
!= SHT_NOBITS
)
292 saa_free(sects
[i
]->data
);
294 saa_free(sects
[i
]->rel
);
295 while (sects
[i
]->head
) {
297 sects
[i
]->head
= sects
[i
]->head
->next
;
305 if (of_elf64
.current_dfmt
) {
306 of_elf64
.current_dfmt
->cleanup();
309 /* add entry to the elf .shstrtab section */
310 static void add_sectname(char *firsthalf
, char *secondhalf
)
312 int len
= strlen(firsthalf
) + strlen(secondhalf
);
313 while (shstrtablen
+ len
+ 1 > shstrtabsize
)
314 shstrtab
= nasm_realloc(shstrtab
, (shstrtabsize
+= SHSTR_DELTA
));
315 strcpy(shstrtab
+ shstrtablen
, firsthalf
);
316 strcat(shstrtab
+ shstrtablen
, secondhalf
);
317 shstrtablen
+= len
+ 1;
320 static int elf_make_section(char *name
, int type
, int flags
, int align
)
324 s
= nasm_malloc(sizeof(*s
));
326 if (type
!= SHT_NOBITS
)
327 s
->data
= saa_init(1L);
330 s
->len
= s
->size
= 0;
332 if (!strcmp(name
, ".text"))
335 s
->index
= seg_alloc();
336 add_sectname("", name
);
337 s
->name
= nasm_malloc(1 + strlen(name
));
338 strcpy(s
->name
, name
);
344 if (nsects
>= sectlen
)
345 sects
= nasm_realloc(sects
, (sectlen
+= SECT_DELTA
) * sizeof(*sects
));
351 static int32_t elf_section_names(char *name
, int pass
, int *bits
)
354 uint32_t flags
, flags_and
, flags_or
;
359 * Default is 64 bits.
366 p
= nasm_skip_word(name
);
369 flags_and
= flags_or
= type
= align
= 0;
371 p
= nasm_skip_spaces(p
);
374 p
= nasm_skip_word(p
);
377 p
= nasm_skip_spaces(p
);
379 if (!nasm_strnicmp(q
, "align=", 6)) {
383 if ((align
- 1) & align
) { /* means it's not a power of two */
384 nasm_error(ERR_NONFATAL
, "section alignment %"PRId64
" is not"
385 " a power of two", align
);
388 } else if (!nasm_stricmp(q
, "alloc")) {
389 flags_and
|= SHF_ALLOC
;
390 flags_or
|= SHF_ALLOC
;
391 } else if (!nasm_stricmp(q
, "noalloc")) {
392 flags_and
|= SHF_ALLOC
;
393 flags_or
&= ~SHF_ALLOC
;
394 } else if (!nasm_stricmp(q
, "exec")) {
395 flags_and
|= SHF_EXECINSTR
;
396 flags_or
|= SHF_EXECINSTR
;
397 } else if (!nasm_stricmp(q
, "noexec")) {
398 flags_and
|= SHF_EXECINSTR
;
399 flags_or
&= ~SHF_EXECINSTR
;
400 } else if (!nasm_stricmp(q
, "write")) {
401 flags_and
|= SHF_WRITE
;
402 flags_or
|= SHF_WRITE
;
403 } else if (!nasm_stricmp(q
, "tls")) {
404 flags_and
|= SHF_TLS
;
406 } else if (!nasm_stricmp(q
, "nowrite")) {
407 flags_and
|= SHF_WRITE
;
408 flags_or
&= ~SHF_WRITE
;
409 } else if (!nasm_stricmp(q
, "progbits")) {
411 } else if (!nasm_stricmp(q
, "nobits")) {
413 } else if (pass
== 1) {
414 nasm_error(ERR_WARNING
, "Unknown section attribute '%s' ignored on"
415 " declaration of section `%s'", q
, name
);
419 if (!strcmp(name
, ".shstrtab") ||
420 !strcmp(name
, ".symtab") ||
421 !strcmp(name
, ".strtab")) {
422 nasm_error(ERR_NONFATAL
, "attempt to redefine reserved section"
427 for (i
= 0; i
< nsects
; i
++)
428 if (!strcmp(name
, sects
[i
]->name
))
431 const struct elf_known_section
*ks
= elf_known_sections
;
434 if (!strcmp(name
, ks
->name
))
439 type
= type
? type
: ks
->type
;
440 align
= align
? align
: ks
->align
;
441 flags
= (ks
->flags
& ~flags_and
) | flags_or
;
443 i
= elf_make_section(name
, type
, flags
, align
);
444 } else if (pass
== 1) {
445 if ((type
&& sects
[i
]->type
!= type
)
446 || (align
&& sects
[i
]->align
!= align
)
447 || (flags_and
&& ((sects
[i
]->flags
& flags_and
) != flags_or
)))
448 nasm_error(ERR_WARNING
, "incompatible section attributes ignored on"
449 " redeclaration of section `%s'", name
);
452 return sects
[i
]->index
;
455 static void elf_deflabel(char *name
, int32_t segment
, int64_t offset
,
456 int is_global
, char *special
)
460 bool special_used
= false;
462 #if defined(DEBUG) && DEBUG>2
463 nasm_error(ERR_DEBUG
,
464 " elf_deflabel: %s, seg=%"PRIx32
", off=%"PRIx64
", is_global=%d, %s\n",
465 name
, segment
, offset
, is_global
, special
);
467 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
469 * This is a NASM special symbol. We never allow it into
470 * the ELF symbol table, even if it's a valid one. If it
471 * _isn't_ a valid one, we should barf immediately.
473 if (strcmp(name
, "..gotpc") && strcmp(name
, "..gotoff") &&
474 strcmp(name
, "..got") && strcmp(name
, "..plt") &&
475 strcmp(name
, "..sym") && strcmp(name
, "..gottpoff"))
476 nasm_error(ERR_NONFATAL
, "unrecognised special symbol `%s'", name
);
480 if (is_global
== 3) {
483 * Fix up a forward-reference symbol size from the first
486 for (s
= &fwds
; *s
; s
= &(*s
)->nextfwd
)
487 if (!strcmp((*s
)->name
, name
)) {
488 struct tokenval tokval
;
490 char *p
= nasm_skip_spaces(nasm_skip_word(special
));
494 tokval
.t_type
= TOKEN_INVALID
;
495 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, nasm_error
, NULL
);
498 nasm_error(ERR_NONFATAL
, "cannot use relocatable"
499 " expression as symbol size");
501 (*s
)->size
= reloc_value(e
);
505 * Remove it from the list of unresolved sizes.
507 nasm_free((*s
)->name
);
511 return; /* it wasn't an important one */
514 saa_wbytes(strs
, name
, (int32_t)(1 + strlen(name
)));
515 strslen
+= 1 + strlen(name
);
517 lastsym
= sym
= saa_wstruct(syms
);
519 memset(&sym
->symv
, 0, sizeof(struct rbtree
));
522 sym
->type
= is_global
? SYM_GLOBAL
: 0;
523 sym
->other
= STV_DEFAULT
;
525 if (segment
== NO_SEG
)
526 sym
->section
= SHN_ABS
;
529 sym
->section
= SHN_UNDEF
;
530 if (nsects
== 0 && segment
== def_seg
) {
532 if (segment
!= elf_section_names(".text", 2, &tempint
))
533 nasm_error(ERR_PANIC
,
534 "strange segment conditions in ELF driver");
535 sym
->section
= nsects
;
537 for (i
= 0; i
< nsects
; i
++)
538 if (segment
== sects
[i
]->index
) {
539 sym
->section
= i
+ 1;
545 if (is_global
== 2) {
548 sym
->section
= SHN_COMMON
;
550 * We have a common variable. Check the special text to see
551 * if it's a valid number and power of two; if so, store it
552 * as the alignment for the common variable.
556 sym
->symv
.key
= readnum(special
, &err
);
558 nasm_error(ERR_NONFATAL
, "alignment constraint `%s' is not a"
559 " valid number", special
);
560 else if ((sym
->symv
.key
| (sym
->symv
.key
- 1))
561 != 2 * sym
->symv
.key
- 1)
562 nasm_error(ERR_NONFATAL
, "alignment constraint `%s' is not a"
563 " power of two", special
);
567 sym
->symv
.key
= (sym
->section
== SHN_UNDEF
? 0 : offset
);
569 if (sym
->type
== SYM_GLOBAL
) {
571 * If sym->section == SHN_ABS, then the first line of the
572 * else section would cause a core dump, because its a reference
573 * beyond the end of the section array.
574 * This behaviour is exhibited by this code:
577 * To avoid such a crash, such requests are silently discarded.
578 * This may not be the best solution.
580 if (sym
->section
== SHN_UNDEF
|| sym
->section
== SHN_COMMON
) {
581 bsym
= raa_write(bsym
, segment
, nglobs
);
582 } else if (sym
->section
!= SHN_ABS
) {
584 * This is a global symbol; so we must add it to the rbtree
585 * of global symbols in its section.
587 * In addition, we check the special text for symbol
588 * type and size information.
590 sects
[sym
->section
-1]->gsyms
=
591 rb_insert(sects
[sym
->section
-1]->gsyms
, &sym
->symv
);
594 int n
= strcspn(special
, " \t");
596 if (!nasm_strnicmp(special
, "function", n
))
597 sym
->type
|= STT_FUNC
;
598 else if (!nasm_strnicmp(special
, "data", n
) ||
599 !nasm_strnicmp(special
, "object", n
))
600 sym
->type
|= STT_OBJECT
;
601 else if (!nasm_strnicmp(special
, "notype", n
))
602 sym
->type
|= STT_NOTYPE
;
604 nasm_error(ERR_NONFATAL
, "unrecognised symbol type `%.*s'",
608 special
= nasm_skip_spaces(special
);
610 n
= strcspn(special
, " \t");
611 if (!nasm_strnicmp(special
, "default", n
))
612 sym
->other
= STV_DEFAULT
;
613 else if (!nasm_strnicmp(special
, "internal", n
))
614 sym
->other
= STV_INTERNAL
;
615 else if (!nasm_strnicmp(special
, "hidden", n
))
616 sym
->other
= STV_HIDDEN
;
617 else if (!nasm_strnicmp(special
, "protected", n
))
618 sym
->other
= STV_PROTECTED
;
625 struct tokenval tokval
;
628 char *saveme
= stdscan_get();
630 while (special
[n
] && nasm_isspace(special
[n
]))
633 * We have a size expression; attempt to
637 stdscan_set(special
+ n
);
638 tokval
.t_type
= TOKEN_INVALID
;
639 e
= evaluate(stdscan
, NULL
, &tokval
, &fwd
, 0, nasm_error
,
644 sym
->name
= nasm_strdup(name
);
647 nasm_error(ERR_NONFATAL
, "cannot use relocatable"
648 " expression as symbol size");
650 sym
->size
= reloc_value(e
);
657 * If TLS segment, mark symbol accordingly.
659 if (sects
[sym
->section
- 1]->flags
& SHF_TLS
) {
661 sym
->type
|= STT_TLS
;
664 sym
->globnum
= nglobs
;
669 if (special
&& !special_used
)
670 nasm_error(ERR_NONFATAL
, "no special symbol features supported here");
673 static void elf_add_reloc(struct Section
*sect
, int32_t segment
,
674 int64_t offset
, int type
)
677 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
678 sect
->tail
= &r
->next
;
681 r
->address
= sect
->len
;
683 if (segment
== NO_SEG
)
688 for (i
= 0; i
< nsects
; i
++)
689 if (segment
== sects
[i
]->index
)
692 r
->symbol
= GLOBAL_TEMP_BASE
+ raa_read(bsym
, segment
);
700 * This routine deals with ..got and ..sym relocations: the more
701 * complicated kinds. In shared-library writing, some relocations
702 * with respect to global symbols must refer to the precise symbol
703 * rather than referring to an offset from the base of the section
704 * _containing_ the symbol. Such relocations call to this routine,
705 * which searches the symbol list for the symbol in question.
707 * R_386_GOT32 references require the _exact_ symbol address to be
708 * used; R_386_32 references can be at an offset from the symbol.
709 * The boolean argument `exact' tells us this.
711 * Return value is the adjusted value of `addr', having become an
712 * offset from the symbol rather than the section. Should always be
713 * zero when returning from an exact call.
715 * Limitation: if you define two symbols at the same place,
716 * confusion will occur.
718 * Inefficiency: we search, currently, using a linked list which
719 * isn't even necessarily sorted.
721 static void elf_add_gsym_reloc(struct Section
*sect
,
722 int32_t segment
, uint64_t offset
, int64_t pcrel
,
723 int type
, bool exact
)
732 * First look up the segment/offset pair and find a global
733 * symbol corresponding to it. If it's not one of our segments,
734 * then it must be an external symbol, in which case we're fine
735 * doing a normal elf_add_reloc after first sanity-checking
736 * that the offset from the symbol is zero.
739 for (i
= 0; i
< nsects
; i
++)
740 if (segment
== sects
[i
]->index
) {
747 nasm_error(ERR_NONFATAL
, "invalid access to an external symbol");
749 elf_add_reloc(sect
, segment
, offset
- pcrel
, type
);
753 srb
= rb_search(s
->gsyms
, offset
);
754 if (!srb
|| (exact
&& srb
->key
!= offset
)) {
755 nasm_error(ERR_NONFATAL
, "unable to find a suitable global symbol"
756 " for this reference");
759 sym
= container_of(srb
, struct Symbol
, symv
);
761 r
= *sect
->tail
= nasm_malloc(sizeof(struct Reloc
));
762 sect
->tail
= &r
->next
;
765 r
->address
= sect
->len
;
766 r
->offset
= offset
- pcrel
- sym
->symv
.key
;
767 r
->symbol
= GLOBAL_TEMP_BASE
+ sym
->globnum
;
773 static void elf_out(int32_t segto
, const void *data
,
774 enum out_type type
, uint64_t size
,
775 int32_t segment
, int32_t wrt
)
780 static struct symlininfo sinfo
;
784 #if defined(DEBUG) && DEBUG>2
786 nasm_error(ERR_DEBUG
,
787 " elf_out line: %d type: %x seg: %"PRIx32
" segto: %"PRIx32
" bytes: %"PRIx64
" data: %"PRIx64
"\n",
788 currentline
, type
, segment
, segto
, size
, *(int64_t *)data
);
790 nasm_error(ERR_DEBUG
,
791 " elf_out line: %d type: %x seg: %"PRIx32
" segto: %"PRIx32
" bytes: %"PRIx64
"\n",
792 currentline
, type
, segment
, segto
, size
);
796 * handle absolute-assembly (structure definitions)
798 if (segto
== NO_SEG
) {
799 if (type
!= OUT_RESERVE
)
800 nasm_error(ERR_NONFATAL
, "attempt to assemble code in [ABSOLUTE]"
806 for (i
= 0; i
< nsects
; i
++)
807 if (segto
== sects
[i
]->index
) {
812 int tempint
; /* ignored */
813 if (segto
!= elf_section_names(".text", 2, &tempint
))
814 nasm_error(ERR_PANIC
, "strange segment conditions in ELF driver");
816 s
= sects
[nsects
- 1];
820 /* invoke current debug_output routine */
821 if (of_elf64
.current_dfmt
) {
822 sinfo
.offset
= s
->len
;
825 sinfo
.name
= s
->name
;
826 of_elf64
.current_dfmt
->debug_output(TY_DEBUGSYMLIN
, &sinfo
);
828 /* end of debugging stuff */
830 if (s
->type
== SHT_NOBITS
&& type
!= OUT_RESERVE
) {
831 nasm_error(ERR_WARNING
, "attempt to initialize memory in"
832 " BSS section `%s': ignored", s
->name
);
833 s
->len
+= realsize(type
, size
);
837 if (type
== OUT_RESERVE
) {
838 if (s
->type
== SHT_PROGBITS
) {
839 nasm_error(ERR_WARNING
, "uninitialized space declared in"
840 " non-BSS section `%s': zeroing", s
->name
);
841 elf_sect_write(s
, NULL
, size
);
844 } else if (type
== OUT_RAWDATA
) {
845 if (segment
!= NO_SEG
)
846 nasm_error(ERR_PANIC
, "OUT_RAWDATA with other than NO_SEG");
847 elf_sect_write(s
, data
, size
);
848 } else if (type
== OUT_ADDRESS
) {
849 addr
= *(int64_t *)data
;
850 if (segment
== NO_SEG
) {
852 } else if (segment
% 2) {
853 nasm_error(ERR_NONFATAL
, "ELF format does not support"
854 " segment base references");
859 elf_add_reloc(s
, segment
, addr
, R_X86_64_8
);
862 elf_add_reloc(s
, segment
, addr
, R_X86_64_16
);
865 elf_add_reloc(s
, segment
, addr
, R_X86_64_32
);
868 elf_add_reloc(s
, segment
, addr
, R_X86_64_64
);
871 nasm_error(ERR_PANIC
, "internal error elf64-hpa-871");
875 } else if (wrt
== elf_gotpc_sect
+ 1) {
877 * The user will supply GOT relative to $$. ELF
878 * will let us have GOT relative to $. So we
879 * need to fix up the data item by $-$$.
882 elf_add_reloc(s
, segment
, addr
, R_X86_64_GOTPC32
);
884 } else if (wrt
== elf_gotoff_sect
+ 1) {
886 nasm_error(ERR_NONFATAL
, "ELF64 requires ..gotoff "
887 "references to be qword");
889 elf_add_reloc(s
, segment
, addr
, R_X86_64_GOTOFF64
);
892 } else if (wrt
== elf_got_sect
+ 1) {
895 elf_add_gsym_reloc(s
, segment
, addr
, 0,
896 R_X86_64_GOT32
, true);
900 elf_add_gsym_reloc(s
, segment
, addr
, 0,
901 R_X86_64_GOT64
, true);
905 nasm_error(ERR_NONFATAL
, "invalid ..got reference");
908 } else if (wrt
== elf_sym_sect
+ 1) {
911 elf_add_gsym_reloc(s
, segment
, addr
, 0,
916 elf_add_gsym_reloc(s
, segment
, addr
, 0,
921 elf_add_gsym_reloc(s
, segment
, addr
, 0,
926 elf_add_gsym_reloc(s
, segment
, addr
, 0,
931 nasm_error(ERR_PANIC
, "internal error elf64-hpa-903");
934 } else if (wrt
== elf_plt_sect
+ 1) {
935 nasm_error(ERR_NONFATAL
, "ELF format cannot produce non-PC-"
936 "relative PLT references");
938 nasm_error(ERR_NONFATAL
, "ELF format does not support this"
942 elf_sect_writeaddr(s
, addr
, size
);
943 } else if (type
== OUT_REL2ADR
) {
944 addr
= *(int64_t *)data
- size
;
945 if (segment
== segto
)
946 nasm_error(ERR_PANIC
, "intra-segment OUT_REL2ADR");
947 if (segment
== NO_SEG
) {
949 } else if (segment
% 2) {
950 nasm_error(ERR_NONFATAL
, "ELF format does not support"
951 " segment base references");
954 elf_add_reloc(s
, segment
, addr
, R_X86_64_PC16
);
957 nasm_error(ERR_NONFATAL
,
958 "Unsupported non-32-bit ELF relocation [2]");
961 elf_sect_writeaddr(s
, addr
, 2);
962 } else if (type
== OUT_REL4ADR
) {
963 addr
= *(int64_t *)data
- size
;
964 if (segment
== segto
)
965 nasm_error(ERR_PANIC
, "intra-segment OUT_REL4ADR");
966 if (segment
== NO_SEG
) {
968 } else if (segment
% 2) {
969 nasm_error(ERR_NONFATAL
, "ELF64 format does not support"
970 " segment base references");
973 elf_add_reloc(s
, segment
, addr
, R_X86_64_PC32
);
975 } else if (wrt
== elf_plt_sect
+ 1) {
976 elf_add_gsym_reloc(s
, segment
, addr
+size
, size
,
977 R_X86_64_PLT32
, true);
979 } else if (wrt
== elf_gotpc_sect
+ 1 ||
980 wrt
== elf_got_sect
+ 1) {
981 elf_add_gsym_reloc(s
, segment
, addr
+size
, size
,
982 R_X86_64_GOTPCREL
, true);
984 } else if (wrt
== elf_gotoff_sect
+ 1 ||
985 wrt
== elf_got_sect
+ 1) {
986 nasm_error(ERR_NONFATAL
, "ELF64 requires ..gotoff references to be "
988 } else if (wrt
== elf_gottpoff_sect
+ 1) {
989 elf_add_gsym_reloc(s
, segment
, addr
+size
, size
,
990 R_X86_64_GOTTPOFF
, true);
993 nasm_error(ERR_NONFATAL
, "ELF64 format does not support this"
997 elf_sect_writeaddr(s
, addr
, 4);
998 } else if (type
== OUT_REL8ADR
) {
999 addr
= *(int64_t *)data
- size
;
1000 if (segment
== segto
)
1001 nasm_error(ERR_PANIC
, "intra-segment OUT_REL8ADR");
1002 if (segment
== NO_SEG
) {
1004 } else if (segment
% 2) {
1005 nasm_error(ERR_NONFATAL
, "ELF64 format does not support"
1006 " segment base references");
1008 if (wrt
== NO_SEG
) {
1009 elf_add_reloc(s
, segment
, addr
, R_X86_64_PC64
);
1011 } else if (wrt
== elf_gotpc_sect
+ 1 ||
1012 wrt
== elf_got_sect
+ 1) {
1013 elf_add_gsym_reloc(s
, segment
, addr
+size
, size
,
1014 R_X86_64_GOTPCREL64
, true);
1016 } else if (wrt
== elf_gotoff_sect
+ 1 ||
1017 wrt
== elf_got_sect
+ 1) {
1018 nasm_error(ERR_NONFATAL
, "ELF64 requires ..gotoff references to be "
1020 } else if (wrt
== elf_gottpoff_sect
+ 1) {
1021 nasm_error(ERR_NONFATAL
, "ELF64 requires ..gottpoff references to be "
1024 nasm_error(ERR_NONFATAL
, "ELF64 format does not support this"
1028 elf_sect_writeaddr(s
, addr
, 8);
1032 static void elf_write(void)
1039 int32_t symtablen
, symtablocal
;
1042 * Work out how many sections we will have. We have SHN_UNDEF,
1043 * then the flexible user sections, then the fixed sections
1044 * `.shstrtab', `.symtab' and `.strtab', then optionally
1045 * relocation sections for the user sections.
1047 nsections
= sec_numspecial
+ 1;
1048 if (of_elf64
.current_dfmt
== &df_stabs
)
1050 else if (of_elf64
.current_dfmt
== &df_dwarf
)
1053 add_sectname("", ".shstrtab");
1054 add_sectname("", ".symtab");
1055 add_sectname("", ".strtab");
1056 for (i
= 0; i
< nsects
; i
++) {
1057 nsections
++; /* for the section itself */
1058 if (sects
[i
]->head
) {
1059 nsections
++; /* for its relocations */
1060 add_sectname(".rela", sects
[i
]->name
);
1064 if (of_elf64
.current_dfmt
== &df_stabs
) {
1065 /* in case the debug information is wanted, just add these three sections... */
1066 add_sectname("", ".stab");
1067 add_sectname("", ".stabstr");
1068 add_sectname(".rel", ".stab");
1071 else if (of_elf64
.current_dfmt
== &df_dwarf
) {
1072 /* the dwarf debug standard specifies the following ten sections,
1073 not all of which are currently implemented,
1074 although all of them are defined. */
1075 #define debug_aranges (int64_t) (nsections-10)
1076 #define debug_info (int64_t) (nsections-7)
1077 #define debug_abbrev (int64_t) (nsections-5)
1078 #define debug_line (int64_t) (nsections-4)
1079 add_sectname("", ".debug_aranges");
1080 add_sectname(".rela", ".debug_aranges");
1081 add_sectname("", ".debug_pubnames");
1082 add_sectname("", ".debug_info");
1083 add_sectname(".rela", ".debug_info");
1084 add_sectname("", ".debug_abbrev");
1085 add_sectname("", ".debug_line");
1086 add_sectname(".rela", ".debug_line");
1087 add_sectname("", ".debug_frame");
1088 add_sectname("", ".debug_loc");
1092 * Output the ELF header.
1094 fwrite("\177ELF\2\1\1", 7, 1, ofile
);
1095 fputc(elf_osabi
, ofile
);
1096 fputc(elf_abiver
, ofile
);
1097 fwritezero(7, ofile
);
1098 fwriteint16_t(ET_REL
, ofile
); /* relocatable file */
1099 fwriteint16_t(EM_X86_64
, ofile
); /* processor ID */
1100 fwriteint32_t(1L, ofile
); /* EV_CURRENT file format version */
1101 fwriteint64_t(0L, ofile
); /* no entry point */
1102 fwriteint64_t(0L, ofile
); /* no program header table */
1103 fwriteint64_t(0x40L
, ofile
); /* section headers straight after
1104 * ELF header plus alignment */
1105 fwriteint32_t(0L, ofile
); /* 386 defines no special flags */
1106 fwriteint16_t(0x40, ofile
); /* size of ELF header */
1107 fwriteint16_t(0, ofile
); /* no program header table, again */
1108 fwriteint16_t(0, ofile
); /* still no program header table */
1109 fwriteint16_t(sizeof(Elf64_Shdr
), ofile
); /* size of section header */
1110 fwriteint16_t(nsections
, ofile
); /* number of sections */
1111 fwriteint16_t(sec_shstrtab
, ofile
); /* string table section index for
1112 * section header table */
1115 * Build the symbol table and relocation tables.
1117 symtab
= elf_build_symtab(&symtablen
, &symtablocal
);
1118 for (i
= 0; i
< nsects
; i
++)
1120 sects
[i
]->rel
= elf_build_reltab(§s
[i
]->rellen
,
1124 * Now output the section header table.
1127 elf_foffs
= 0x40 + sizeof(Elf64_Shdr
) * nsections
;
1128 align
= ((elf_foffs
+ SEG_ALIGN_1
) & ~SEG_ALIGN_1
) - elf_foffs
;
1131 elf_sects
= nasm_malloc(sizeof(*elf_sects
) * nsections
);
1134 elf_section_header(0, SHT_NULL
, 0, NULL
, false, 0, SHN_UNDEF
, 0, 0, 0);
1137 /* The normal sections */
1138 for (i
= 0; i
< nsects
; i
++) {
1139 elf_section_header(p
- shstrtab
, sects
[i
]->type
, sects
[i
]->flags
,
1140 (sects
[i
]->type
== SHT_PROGBITS
?
1141 sects
[i
]->data
: NULL
), true,
1142 sects
[i
]->len
, 0, 0, sects
[i
]->align
, 0);
1147 elf_section_header(p
- shstrtab
, SHT_STRTAB
, 0, shstrtab
, false,
1148 shstrtablen
, 0, 0, 1, 0);
1152 elf_section_header(p
- shstrtab
, SHT_SYMTAB
, 0, symtab
, true,
1153 symtablen
, sec_strtab
, symtablocal
, 4, 24);
1157 elf_section_header(p
- shstrtab
, SHT_STRTAB
, 0, strs
, true,
1158 strslen
, 0, 0, 1, 0);
1161 /* The relocation sections */
1162 for (i
= 0; i
< nsects
; i
++)
1163 if (sects
[i
]->head
) {
1164 elf_section_header(p
- shstrtab
, SHT_RELA
, 0, sects
[i
]->rel
, true,
1165 sects
[i
]->rellen
, sec_symtab
, i
+ 1, 4, 24);
1169 if (of_elf64
.current_dfmt
== &df_stabs
) {
1170 /* for debugging information, create the last three sections
1171 which are the .stab , .stabstr and .rel.stab sections respectively */
1173 /* this function call creates the stab sections in memory */
1176 if (stabbuf
&& stabstrbuf
&& stabrelbuf
) {
1177 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, stabbuf
, false,
1178 stablen
, sec_stabstr
, 0, 4, 12);
1181 elf_section_header(p
- shstrtab
, SHT_STRTAB
, 0, stabstrbuf
, false,
1182 stabstrlen
, 0, 0, 4, 0);
1185 /* link -> symtable info -> section to refer to */
1186 elf_section_header(p
- shstrtab
, SHT_REL
, 0, stabrelbuf
, false,
1187 stabrellen
, symtabsection
, sec_stab
, 4, 16);
1191 else if (of_elf64
.current_dfmt
== &df_dwarf
) {
1192 /* for dwarf debugging information, create the ten dwarf sections */
1194 /* this function call creates the dwarf sections in memory */
1198 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, arangesbuf
, false,
1199 arangeslen
, 0, 0, 1, 0);
1202 elf_section_header(p
- shstrtab
, SHT_RELA
, 0, arangesrelbuf
, false,
1203 arangesrellen
, symtabsection
, debug_aranges
, 1, 24);
1206 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, pubnamesbuf
, false,
1207 pubnameslen
, 0, 0, 1, 0);
1210 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, infobuf
, false,
1211 infolen
, 0, 0, 1, 0);
1214 elf_section_header(p
- shstrtab
, SHT_RELA
, 0, inforelbuf
, false,
1215 inforellen
, symtabsection
, debug_info
, 1, 24);
1218 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, abbrevbuf
, false,
1219 abbrevlen
, 0, 0, 1, 0);
1222 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, linebuf
, false,
1223 linelen
, 0, 0, 1, 0);
1226 elf_section_header(p
- shstrtab
, SHT_RELA
, 0, linerelbuf
, false,
1227 linerellen
, symtabsection
, debug_line
, 1, 24);
1230 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, framebuf
, false,
1231 framelen
, 0, 0, 8, 0);
1234 elf_section_header(p
- shstrtab
, SHT_PROGBITS
, 0, locbuf
, false,
1235 loclen
, 0, 0, 1, 0);
1238 fwritezero(align
, ofile
);
1241 * Now output the sections.
1243 elf_write_sections();
1245 nasm_free(elf_sects
);
1249 static struct SAA
*elf_build_symtab(int32_t *len
, int32_t *local
)
1251 struct SAA
*s
= saa_init(1L);
1253 uint8_t entry
[24], *p
;
1259 * First, an all-zeros entry, required by the ELF spec.
1261 saa_wbytes(s
, NULL
, 24L); /* null symbol table entry */
1266 * Next, an entry for the file name.
1269 WRITELONG(p
, 1); /* we know it's 1st entry in strtab */
1270 WRITESHORT(p
, STT_FILE
); /* type FILE */
1271 WRITESHORT(p
, SHN_ABS
);
1272 WRITEDLONG(p
, (uint64_t) 0); /* no value */
1273 WRITEDLONG(p
, (uint64_t) 0); /* no size either */
1274 saa_wbytes(s
, entry
, 24L);
1279 * Now some standard symbols defining the segments, for relocation
1282 for (i
= 1; i
<= nsects
; i
++) {
1284 WRITELONG(p
, 0); /* no symbol name */
1285 WRITESHORT(p
, STT_SECTION
); /* type, binding, and visibility */
1286 WRITESHORT(p
, i
); /* section id */
1287 WRITEDLONG(p
, (uint64_t) 0); /* offset zero */
1288 WRITEDLONG(p
, (uint64_t) 0); /* size zero */
1289 saa_wbytes(s
, entry
, 24L);
1296 * Now the other local symbols.
1299 while ((sym
= saa_rstruct(syms
))) {
1300 if (sym
->type
& SYM_GLOBAL
)
1303 WRITELONG(p
, sym
->strpos
); /* index into symbol string table */
1304 WRITECHAR(p
, sym
->type
); /* type and binding */
1305 WRITECHAR(p
, sym
->other
); /* visibility */
1306 WRITESHORT(p
, sym
->section
); /* index into section header table */
1307 WRITEDLONG(p
, (int64_t)sym
->symv
.key
); /* value of symbol */
1308 WRITEDLONG(p
, (int64_t)sym
->size
); /* size of symbol */
1309 saa_wbytes(s
, entry
, 24L);
1314 * dwarf needs symbols for debug sections
1315 * which are relocation targets.
1317 if (of_elf64
.current_dfmt
== &df_dwarf
) {
1318 dwarf_infosym
= *local
;
1320 WRITELONG(p
, 0); /* no symbol name */
1321 WRITESHORT(p
, STT_SECTION
); /* type, binding, and visibility */
1322 WRITESHORT(p
, debug_info
); /* section id */
1323 WRITEDLONG(p
, (uint64_t) 0); /* offset zero */
1324 WRITEDLONG(p
, (uint64_t) 0); /* size zero */
1325 saa_wbytes(s
, entry
, 24L);
1328 dwarf_abbrevsym
= *local
;
1330 WRITELONG(p
, 0); /* no symbol name */
1331 WRITESHORT(p
, STT_SECTION
); /* type, binding, and visibility */
1332 WRITESHORT(p
, debug_abbrev
); /* section id */
1333 WRITEDLONG(p
, (uint64_t) 0); /* offset zero */
1334 WRITEDLONG(p
, (uint64_t) 0); /* size zero */
1335 saa_wbytes(s
, entry
, 24L);
1338 dwarf_linesym
= *local
;
1340 WRITELONG(p
, 0); /* no symbol name */
1341 WRITESHORT(p
, STT_SECTION
); /* type, binding, and visibility */
1342 WRITESHORT(p
, debug_line
); /* section id */
1343 WRITEDLONG(p
, (uint64_t) 0); /* offset zero */
1344 WRITEDLONG(p
, (uint64_t) 0); /* size zero */
1345 saa_wbytes(s
, entry
, 24L);
1351 * Now the global symbols.
1354 while ((sym
= saa_rstruct(syms
))) {
1355 if (!(sym
->type
& SYM_GLOBAL
))
1358 WRITELONG(p
, sym
->strpos
);
1359 WRITECHAR(p
, sym
->type
); /* type and binding */
1360 WRITECHAR(p
, sym
->other
); /* visibility */
1361 WRITESHORT(p
, sym
->section
);
1362 WRITEDLONG(p
, (int64_t)sym
->symv
.key
);
1363 WRITEDLONG(p
, (int64_t)sym
->size
);
1364 saa_wbytes(s
, entry
, 24L);
1371 static struct SAA
*elf_build_reltab(uint64_t *len
, struct Reloc
*r
)
1374 uint8_t *p
, entry
[24];
1375 int32_t global_offset
;
1384 * How to onvert from a global placeholder to a real symbol index;
1385 * the +2 refers to the two special entries, the null entry and
1386 * the filename entry.
1388 global_offset
= -GLOBAL_TEMP_BASE
+ nsects
+ nlocals
+ ndebugs
+ 2;
1391 int32_t sym
= r
->symbol
;
1393 if (sym
>= GLOBAL_TEMP_BASE
)
1394 sym
+= global_offset
;
1397 WRITEDLONG(p
, r
->address
);
1398 WRITELONG(p
, r
->type
);
1400 WRITEDLONG(p
, r
->offset
);
1401 saa_wbytes(s
, entry
, 24L);
1410 static void elf_section_header(int name
, int type
, uint64_t flags
,
1411 void *data
, bool is_saa
, uint64_t datalen
,
1412 int link
, int info
, int align
, int eltsize
)
1414 elf_sects
[elf_nsect
].data
= data
;
1415 elf_sects
[elf_nsect
].len
= datalen
;
1416 elf_sects
[elf_nsect
].is_saa
= is_saa
;
1419 fwriteint32_t((int32_t)name
, ofile
);
1420 fwriteint32_t((int32_t)type
, ofile
);
1421 fwriteint64_t((int64_t)flags
, ofile
);
1422 fwriteint64_t(0L, ofile
); /* no address, ever, in object files */
1423 fwriteint64_t(type
== 0 ? 0L : elf_foffs
, ofile
);
1424 fwriteint64_t(datalen
, ofile
);
1426 elf_foffs
+= (datalen
+ SEG_ALIGN_1
) & ~SEG_ALIGN_1
;
1427 fwriteint32_t((int32_t)link
, ofile
);
1428 fwriteint32_t((int32_t)info
, ofile
);
1429 fwriteint64_t((int64_t)align
, ofile
);
1430 fwriteint64_t((int64_t)eltsize
, ofile
);
1433 static void elf_write_sections(void)
1436 for (i
= 0; i
< elf_nsect
; i
++)
1437 if (elf_sects
[i
].data
) {
1438 int32_t len
= elf_sects
[i
].len
;
1439 int32_t reallen
= (len
+ SEG_ALIGN_1
) & ~SEG_ALIGN_1
;
1440 int32_t align
= reallen
- len
;
1441 if (elf_sects
[i
].is_saa
)
1442 saa_fpwrite(elf_sects
[i
].data
, ofile
);
1444 fwrite(elf_sects
[i
].data
, len
, 1, ofile
);
1445 fwritezero(align
, ofile
);
1449 static void elf_sect_write(struct Section
*sect
, const void *data
, size_t len
)
1451 saa_wbytes(sect
->data
, data
, len
);
1454 static void elf_sect_writeaddr(struct Section
*sect
, int64_t data
, size_t len
)
1456 saa_writeaddr(sect
->data
, data
, len
);
1460 static int32_t elf_segbase(int32_t segment
)
1465 static int elf_directive(enum directives directive
, char *value
, int pass
)
1471 switch (directive
) {
1474 return 1; /* ignore in pass 2 */
1476 n
= readnum(value
, &err
);
1478 nasm_error(ERR_NONFATAL
, "`osabi' directive requires a parameter");
1481 if (n
< 0 || n
> 255) {
1482 nasm_error(ERR_NONFATAL
, "valid osabi numbers are 0 to 255");
1488 if ((p
= strchr(value
,',')) == NULL
)
1491 n
= readnum(p
+1, &err
);
1492 if (err
|| n
< 0 || n
> 255) {
1493 nasm_error(ERR_NONFATAL
, "invalid ABI version number (valid: 0 to 255)");
1505 static void elf_filename(char *inname
, char *outname
)
1507 strcpy(elf_module
, inname
);
1508 standard_extension(inname
, outname
, ".o");
1511 extern macros_t elf_stdmac
[];
1513 static int elf_set_info(enum geninfo type
, char **val
)
1519 static struct dfmt df_dwarf
= {
1520 "ELF64 (x86-64) dwarf debug format for Linux/Unix",
1530 static struct dfmt df_stabs
= {
1531 "ELF64 (x86-64) stabs debug format for Linux/Unix",
1542 struct dfmt
*elf64_debugs_arr
[3] = { &df_dwarf
, &df_stabs
, NULL
};
1544 struct ofmt of_elf64
= {
1545 "ELF64 (x86_64) object files (e.g. Linux)",
1562 /* common debugging routines */
1563 static void debug64_deflabel(char *name
, int32_t segment
, int64_t offset
,
1564 int is_global
, char *special
)
1573 static void debug64_directive(const char *directive
, const char *params
)
1579 static void debug64_typevalue(int32_t type
)
1581 int32_t stype
, ssize
;
1582 switch (TYM_TYPE(type
)) {
1625 stype
= STT_SECTION
;
1640 if (stype
== STT_OBJECT
&& lastsym
&& !lastsym
->type
) {
1641 lastsym
->size
= ssize
;
1642 lastsym
->type
= stype
;
1646 /* stabs debugging routines */
1648 static void stabs64_linenum(const char *filename
, int32_t linenumber
, int32_t segto
)
1651 if (!stabs_filename
) {
1652 stabs_filename
= (char *)nasm_malloc(strlen(filename
) + 1);
1653 strcpy(stabs_filename
, filename
);
1655 if (strcmp(stabs_filename
, filename
)) {
1656 /* yep, a memory leak...this program is one-shot anyway, so who cares...
1657 in fact, this leak comes in quite handy to maintain a list of files
1658 encountered so far in the symbol lines... */
1660 /* why not nasm_free(stabs_filename); we're done with the old one */
1662 stabs_filename
= (char *)nasm_malloc(strlen(filename
) + 1);
1663 strcpy(stabs_filename
, filename
);
1667 currentline
= linenumber
;
1671 static void stabs64_output(int type
, void *param
)
1673 struct symlininfo
*s
;
1674 struct linelist
*el
;
1675 if (type
== TY_DEBUGSYMLIN
) {
1676 if (debug_immcall
) {
1677 s
= (struct symlininfo
*)param
;
1678 if (!(sects
[s
->section
]->flags
& SHF_EXECINSTR
))
1679 return; /* line info is only collected for executable sections */
1681 el
= (struct linelist
*)nasm_malloc(sizeof(struct linelist
));
1682 el
->info
.offset
= s
->offset
;
1683 el
->info
.section
= s
->section
;
1684 el
->info
.name
= s
->name
;
1685 el
->line
= currentline
;
1686 el
->filename
= stabs_filename
;
1689 stabslines
->last
->next
= el
;
1690 stabslines
->last
= el
;
1693 stabslines
->last
= el
;
1700 #define WRITE_STAB(p,n_strx,n_type,n_other,n_desc,n_value) \
1702 WRITELONG(p,n_strx); \
1703 WRITECHAR(p,n_type); \
1704 WRITECHAR(p,n_other); \
1705 WRITESHORT(p,n_desc); \
1706 WRITELONG(p,n_value); \
1709 /* for creating the .stab , .stabstr and .rel.stab sections in memory */
1711 static void stabs64_generate(void)
1713 int i
, numfiles
, strsize
, numstabs
= 0, currfile
, mainfileindex
;
1714 uint8_t *sbuf
, *ssbuf
, *rbuf
, *sptr
, *rptr
;
1718 struct linelist
*ptr
;
1722 allfiles
= (char **)nasm_malloc(numlinestabs
* sizeof(char *));
1723 for (i
= 0; i
< numlinestabs
; i
++)
1727 if (numfiles
== 0) {
1728 allfiles
[0] = ptr
->filename
;
1731 for (i
= 0; i
< numfiles
; i
++) {
1732 if (!strcmp(allfiles
[i
], ptr
->filename
))
1735 if (i
>= numfiles
) {
1736 allfiles
[i
] = ptr
->filename
;
1743 fileidx
= (int *)nasm_malloc(numfiles
* sizeof(int));
1744 for (i
= 0; i
< numfiles
; i
++) {
1745 fileidx
[i
] = strsize
;
1746 strsize
+= strlen(allfiles
[i
]) + 1;
1749 for (i
= 0; i
< numfiles
; i
++) {
1750 if (!strcmp(allfiles
[i
], elf_module
)) {
1757 * worst case size of the stab buffer would be:
1758 * the sourcefiles changes each line, which would mean 1 SOL, 1 SYMLIN per line
1759 * plus one "ending" entry
1761 sbuf
= (uint8_t *)nasm_malloc((numlinestabs
* 2 + 4) *
1762 sizeof(struct stabentry
));
1763 ssbuf
= (uint8_t *)nasm_malloc(strsize
);
1764 rbuf
= (uint8_t *)nasm_malloc(numlinestabs
* 16 * (2 + 3));
1767 for (i
= 0; i
< numfiles
; i
++)
1768 strcpy((char *)ssbuf
+ fileidx
[i
], allfiles
[i
]);
1771 stabstrlen
= strsize
; /* set global variable for length of stab strings */
1779 * this is the first stab, its strx points to the filename of the
1780 * the source-file, the n_desc field should be set to the number
1781 * of remaining stabs
1783 WRITE_STAB(sptr
, fileidx
[0], 0, 0, 0, strlen(allfiles
[0] + 12));
1785 /* this is the stab for the main source file */
1786 WRITE_STAB(sptr
, fileidx
[mainfileindex
], N_SO
, 0, 0, 0);
1788 /* relocation table entry */
1791 * Since the symbol table has two entries before
1792 * the section symbols, the index in the info.section
1793 * member must be adjusted by adding 2
1796 WRITEDLONG(rptr
, (int64_t)(sptr
- sbuf
) - 4);
1797 WRITELONG(rptr
, R_X86_64_32
);
1798 WRITELONG(rptr
, ptr
->info
.section
+ 2);
1801 currfile
= mainfileindex
;
1805 if (strcmp(allfiles
[currfile
], ptr
->filename
)) {
1806 /* oops file has changed... */
1807 for (i
= 0; i
< numfiles
; i
++)
1808 if (!strcmp(allfiles
[i
], ptr
->filename
))
1811 WRITE_STAB(sptr
, fileidx
[currfile
], N_SOL
, 0, 0,
1815 /* relocation table entry */
1817 WRITEDLONG(rptr
, (int64_t)(sptr
- sbuf
) - 4);
1818 WRITELONG(rptr
, R_X86_64_32
);
1819 WRITELONG(rptr
, ptr
->info
.section
+ 2);
1822 WRITE_STAB(sptr
, 0, N_SLINE
, 0, ptr
->line
, ptr
->info
.offset
);
1825 /* relocation table entry */
1827 WRITEDLONG(rptr
, (int64_t)(sptr
- sbuf
) - 4);
1828 WRITELONG(rptr
, R_X86_64_32
);
1829 WRITELONG(rptr
, ptr
->info
.section
+ 2);
1835 /* this is an "ending" token */
1836 WRITE_STAB(sptr
, 0, N_SO
, 0, 0, 0);
1839 ((struct stabentry
*)sbuf
)->n_desc
= numstabs
;
1841 nasm_free(allfiles
);
1844 stablen
= (sptr
- sbuf
);
1845 stabrellen
= (rptr
- rbuf
);
1851 static void stabs64_cleanup(void)
1853 struct linelist
*ptr
, *del
;
1865 nasm_free(stabrelbuf
);
1866 nasm_free(stabstrbuf
);
1869 /* dwarf routines */
1871 static void dwarf64_init(void)
1873 ndebugs
= 3; /* 3 debug symbols */
1876 static void dwarf64_linenum(const char *filename
, int32_t linenumber
,
1880 dwarf64_findfile(filename
);
1882 currentline
= linenumber
;
1885 /* called from elf_out with type == TY_DEBUGSYMLIN */
1886 static void dwarf64_output(int type
, void *param
)
1888 int ln
, aa
, inx
, maxln
, soc
;
1889 struct symlininfo
*s
;
1894 s
= (struct symlininfo
*)param
;
1896 /* line number info is only gathered for executable sections */
1897 if (!(sects
[s
->section
]->flags
& SHF_EXECINSTR
))
1900 /* Check if section index has changed */
1901 if (!(dwarf_csect
&& (dwarf_csect
->section
) == (s
->section
)))
1902 dwarf64_findsect(s
->section
);
1904 /* do nothing unless line or file has changed */
1908 ln
= currentline
- dwarf_csect
->line
;
1909 aa
= s
->offset
- dwarf_csect
->offset
;
1910 inx
= dwarf_clist
->line
;
1911 plinep
= dwarf_csect
->psaa
;
1912 /* check for file change */
1913 if (!(inx
== dwarf_csect
->file
)) {
1914 saa_write8(plinep
,DW_LNS_set_file
);
1915 saa_write8(plinep
,inx
);
1916 dwarf_csect
->file
= inx
;
1918 /* check for line change */
1920 /* test if in range of special op code */
1921 maxln
= line_base
+ line_range
;
1922 soc
= (ln
- line_base
) + (line_range
* aa
) + opcode_base
;
1923 if (ln
>= line_base
&& ln
< maxln
&& soc
< 256) {
1924 saa_write8(plinep
,soc
);
1926 saa_write8(plinep
,DW_LNS_advance_line
);
1927 saa_wleb128s(plinep
,ln
);
1929 saa_write8(plinep
,DW_LNS_advance_pc
);
1930 saa_wleb128u(plinep
,aa
);
1933 dwarf_csect
->line
= currentline
;
1934 dwarf_csect
->offset
= s
->offset
;
1937 /* show change handled */
1942 static void dwarf64_generate(void)
1946 struct linelist
*ftentry
;
1947 struct SAA
*paranges
, *ppubnames
, *pinfo
, *pabbrev
, *plines
, *plinep
;
1948 struct SAA
*parangesrel
, *plinesrel
, *pinforel
;
1949 struct sectlist
*psect
;
1950 size_t saalen
, linepoff
, totlen
, highaddr
;
1952 /* write epilogues for each line program range */
1953 /* and build aranges section */
1954 paranges
= saa_init(1L);
1955 parangesrel
= saa_init(1L);
1956 saa_write16(paranges
,3); /* dwarf version */
1957 saa_write64(parangesrel
, paranges
->datalen
+4);
1958 saa_write64(parangesrel
, (dwarf_infosym
<< 32) + R_X86_64_32
); /* reloc to info */
1959 saa_write64(parangesrel
, 0);
1960 saa_write32(paranges
,0); /* offset into info */
1961 saa_write8(paranges
,8); /* pointer size */
1962 saa_write8(paranges
,0); /* not segmented */
1963 saa_write32(paranges
,0); /* padding */
1964 /* iterate though sectlist entries */
1965 psect
= dwarf_fsect
;
1968 for (indx
= 0; indx
< dwarf_nsections
; indx
++)
1970 plinep
= psect
->psaa
;
1971 /* Line Number Program Epilogue */
1972 saa_write8(plinep
,2); /* std op 2 */
1973 saa_write8(plinep
,(sects
[psect
->section
]->len
)-psect
->offset
);
1974 saa_write8(plinep
,DW_LNS_extended_op
);
1975 saa_write8(plinep
,1); /* operand length */
1976 saa_write8(plinep
,DW_LNE_end_sequence
);
1977 totlen
+= plinep
->datalen
;
1978 /* range table relocation entry */
1979 saa_write64(parangesrel
, paranges
->datalen
+ 4);
1980 saa_write64(parangesrel
, ((uint64_t) (psect
->section
+ 2) << 32) + R_X86_64_64
);
1981 saa_write64(parangesrel
, (uint64_t) 0);
1982 /* range table entry */
1983 saa_write64(paranges
,0x0000); /* range start */
1984 saa_write64(paranges
,sects
[psect
->section
]->len
); /* range length */
1985 highaddr
+= sects
[psect
->section
]->len
;
1986 /* done with this entry */
1987 psect
= psect
->next
;
1989 saa_write64(paranges
,0); /* null address */
1990 saa_write64(paranges
,0); /* null length */
1991 saalen
= paranges
->datalen
;
1992 arangeslen
= saalen
+ 4;
1993 arangesbuf
= pbuf
= nasm_malloc(arangeslen
);
1994 WRITELONG(pbuf
,saalen
); /* initial length */
1995 saa_rnbytes(paranges
, pbuf
, saalen
);
1998 /* build rela.aranges section */
1999 arangesrellen
= saalen
= parangesrel
->datalen
;
2000 arangesrelbuf
= pbuf
= nasm_malloc(arangesrellen
);
2001 saa_rnbytes(parangesrel
, pbuf
, saalen
);
2002 saa_free(parangesrel
);
2004 /* build pubnames section */
2005 ppubnames
= saa_init(1L);
2006 saa_write16(ppubnames
,3); /* dwarf version */
2007 saa_write32(ppubnames
,0); /* offset into info */
2008 saa_write32(ppubnames
,0); /* space used in info */
2009 saa_write32(ppubnames
,0); /* end of list */
2010 saalen
= ppubnames
->datalen
;
2011 pubnameslen
= saalen
+ 4;
2012 pubnamesbuf
= pbuf
= nasm_malloc(pubnameslen
);
2013 WRITELONG(pbuf
,saalen
); /* initial length */
2014 saa_rnbytes(ppubnames
, pbuf
, saalen
);
2015 saa_free(ppubnames
);
2017 /* build info section */
2018 pinfo
= saa_init(1L);
2019 pinforel
= saa_init(1L);
2020 saa_write16(pinfo
,3); /* dwarf version */
2021 saa_write64(pinforel
, pinfo
->datalen
+ 4);
2022 saa_write64(pinforel
, (dwarf_abbrevsym
<< 32) + R_X86_64_32
); /* reloc to abbrev */
2023 saa_write64(pinforel
, 0);
2024 saa_write32(pinfo
,0); /* offset into abbrev */
2025 saa_write8(pinfo
,8); /* pointer size */
2026 saa_write8(pinfo
,1); /* abbrviation number LEB128u */
2027 saa_write64(pinforel
, pinfo
->datalen
+ 4);
2028 saa_write64(pinforel
, ((uint64_t)(dwarf_fsect
->section
+ 2) << 32) + R_X86_64_64
);
2029 saa_write64(pinforel
, 0);
2030 saa_write64(pinfo
,0); /* DW_AT_low_pc */
2031 saa_write64(pinforel
, pinfo
->datalen
+ 4);
2032 saa_write64(pinforel
, ((uint64_t)(dwarf_fsect
->section
+ 2) << 32) + R_X86_64_64
);
2033 saa_write64(pinforel
, 0);
2034 saa_write64(pinfo
,highaddr
); /* DW_AT_high_pc */
2035 saa_write64(pinforel
, pinfo
->datalen
+ 4);
2036 saa_write64(pinforel
, (dwarf_linesym
<< 32) + R_X86_64_32
); /* reloc to line */
2037 saa_write64(pinforel
, 0);
2038 saa_write32(pinfo
,0); /* DW_AT_stmt_list */
2039 saa_wbytes(pinfo
, elf_module
, strlen(elf_module
)+1);
2040 saa_wbytes(pinfo
, nasm_signature
, strlen(nasm_signature
)+1);
2041 saa_write16(pinfo
,DW_LANG_Mips_Assembler
);
2042 saa_write8(pinfo
,2); /* abbrviation number LEB128u */
2043 saa_write64(pinforel
, pinfo
->datalen
+ 4);
2044 saa_write64(pinforel
, ((uint64_t)(dwarf_fsect
->section
+ 2) << 32) + R_X86_64_64
);
2045 saa_write64(pinforel
, 0);
2046 saa_write64(pinfo
,0); /* DW_AT_low_pc */
2047 saa_write64(pinfo
,0); /* DW_AT_frame_base */
2048 saa_write8(pinfo
,0); /* end of entries */
2049 saalen
= pinfo
->datalen
;
2050 infolen
= saalen
+ 4;
2051 infobuf
= pbuf
= nasm_malloc(infolen
);
2052 WRITELONG(pbuf
,saalen
); /* initial length */
2053 saa_rnbytes(pinfo
, pbuf
, saalen
);
2056 /* build rela.info section */
2057 inforellen
= saalen
= pinforel
->datalen
;
2058 inforelbuf
= pbuf
= nasm_malloc(inforellen
);
2059 saa_rnbytes(pinforel
, pbuf
, saalen
);
2062 /* build abbrev section */
2063 pabbrev
= saa_init(1L);
2064 saa_write8(pabbrev
,1); /* entry number LEB128u */
2065 saa_write8(pabbrev
,DW_TAG_compile_unit
); /* tag LEB128u */
2066 saa_write8(pabbrev
,1); /* has children */
2067 /* the following attributes and forms are all LEB128u values */
2068 saa_write8(pabbrev
,DW_AT_low_pc
);
2069 saa_write8(pabbrev
,DW_FORM_addr
);
2070 saa_write8(pabbrev
,DW_AT_high_pc
);
2071 saa_write8(pabbrev
,DW_FORM_addr
);
2072 saa_write8(pabbrev
,DW_AT_stmt_list
);
2073 saa_write8(pabbrev
,DW_FORM_data4
);
2074 saa_write8(pabbrev
,DW_AT_name
);
2075 saa_write8(pabbrev
,DW_FORM_string
);
2076 saa_write8(pabbrev
,DW_AT_producer
);
2077 saa_write8(pabbrev
,DW_FORM_string
);
2078 saa_write8(pabbrev
,DW_AT_language
);
2079 saa_write8(pabbrev
,DW_FORM_data2
);
2080 saa_write16(pabbrev
,0); /* end of entry */
2081 /* LEB128u usage same as above */
2082 saa_write8(pabbrev
,2); /* entry number */
2083 saa_write8(pabbrev
,DW_TAG_subprogram
);
2084 saa_write8(pabbrev
,0); /* no children */
2085 saa_write8(pabbrev
,DW_AT_low_pc
);
2086 saa_write8(pabbrev
,DW_FORM_addr
);
2087 saa_write8(pabbrev
,DW_AT_frame_base
);
2088 saa_write8(pabbrev
,DW_FORM_data4
);
2089 saa_write16(pabbrev
,0); /* end of entry */
2090 abbrevlen
= saalen
= pabbrev
->datalen
;
2091 abbrevbuf
= pbuf
= nasm_malloc(saalen
);
2092 saa_rnbytes(pabbrev
, pbuf
, saalen
);
2095 /* build line section */
2097 plines
= saa_init(1L);
2098 saa_write8(plines
,1); /* Minimum Instruction Length */
2099 saa_write8(plines
,1); /* Initial value of 'is_stmt' */
2100 saa_write8(plines
,line_base
); /* Line Base */
2101 saa_write8(plines
,line_range
); /* Line Range */
2102 saa_write8(plines
,opcode_base
); /* Opcode Base */
2103 /* standard opcode lengths (# of LEB128u operands) */
2104 saa_write8(plines
,0); /* Std opcode 1 length */
2105 saa_write8(plines
,1); /* Std opcode 2 length */
2106 saa_write8(plines
,1); /* Std opcode 3 length */
2107 saa_write8(plines
,1); /* Std opcode 4 length */
2108 saa_write8(plines
,1); /* Std opcode 5 length */
2109 saa_write8(plines
,0); /* Std opcode 6 length */
2110 saa_write8(plines
,0); /* Std opcode 7 length */
2111 saa_write8(plines
,0); /* Std opcode 8 length */
2112 saa_write8(plines
,1); /* Std opcode 9 length */
2113 saa_write8(plines
,0); /* Std opcode 10 length */
2114 saa_write8(plines
,0); /* Std opcode 11 length */
2115 saa_write8(plines
,1); /* Std opcode 12 length */
2116 /* Directory Table */
2117 saa_write8(plines
,0); /* End of table */
2118 /* File Name Table */
2119 ftentry
= dwarf_flist
;
2120 for (indx
= 0;indx
<dwarf_numfiles
;indx
++)
2122 saa_wbytes(plines
, ftentry
->filename
, (int32_t)(strlen(ftentry
->filename
) + 1));
2123 saa_write8(plines
,0); /* directory LEB128u */
2124 saa_write8(plines
,0); /* time LEB128u */
2125 saa_write8(plines
,0); /* size LEB128u */
2126 ftentry
= ftentry
->next
;
2128 saa_write8(plines
,0); /* End of table */
2129 linepoff
= plines
->datalen
;
2130 linelen
= linepoff
+ totlen
+ 10;
2131 linebuf
= pbuf
= nasm_malloc(linelen
);
2132 WRITELONG(pbuf
,linelen
-4); /* initial length */
2133 WRITESHORT(pbuf
,3); /* dwarf version */
2134 WRITELONG(pbuf
,linepoff
); /* offset to line number program */
2135 /* write line header */
2137 saa_rnbytes(plines
, pbuf
, saalen
); /* read a given no. of bytes */
2140 /* concatonate line program ranges */
2142 plinesrel
= saa_init(1L);
2143 psect
= dwarf_fsect
;
2144 for (indx
= 0; indx
< dwarf_nsections
; indx
++) {
2145 saa_write64(plinesrel
, linepoff
);
2146 saa_write64(plinesrel
, ((uint64_t) (psect
->section
+ 2) << 32) + R_X86_64_64
);
2147 saa_write64(plinesrel
, (uint64_t) 0);
2148 plinep
= psect
->psaa
;
2149 saalen
= plinep
->datalen
;
2150 saa_rnbytes(plinep
, pbuf
, saalen
);
2154 /* done with this entry */
2155 psect
= psect
->next
;
2159 /* build rela.lines section */
2160 linerellen
=saalen
= plinesrel
->datalen
;
2161 linerelbuf
= pbuf
= nasm_malloc(linerellen
);
2162 saa_rnbytes(plinesrel
, pbuf
, saalen
);
2163 saa_free(plinesrel
);
2165 /* build frame section */
2167 framebuf
= pbuf
= nasm_malloc(framelen
);
2168 WRITELONG(pbuf
,framelen
-4); /* initial length */
2170 /* build loc section */
2172 locbuf
= pbuf
= nasm_malloc(loclen
);
2173 WRITEDLONG(pbuf
,0); /* null beginning offset */
2174 WRITEDLONG(pbuf
,0); /* null ending offset */
2177 static void dwarf64_cleanup(void)
2179 nasm_free(arangesbuf
);
2180 nasm_free(arangesrelbuf
);
2181 nasm_free(pubnamesbuf
);
2183 nasm_free(inforelbuf
);
2184 nasm_free(abbrevbuf
);
2186 nasm_free(linerelbuf
);
2187 nasm_free(framebuf
);
2191 static void dwarf64_findfile(const char * fname
)
2194 struct linelist
*match
;
2196 /* return if fname is current file name */
2197 if (dwarf_clist
&& !(strcmp(fname
, dwarf_clist
->filename
)))
2200 /* search for match */
2203 match
= dwarf_flist
;
2204 for (finx
= 0; finx
< dwarf_numfiles
; finx
++) {
2205 if (!(strcmp(fname
, match
->filename
))) {
2206 dwarf_clist
= match
;
2212 /* add file name to end of list */
2213 dwarf_clist
= (struct linelist
*)nasm_malloc(sizeof(struct linelist
));
2215 dwarf_clist
->line
= dwarf_numfiles
;
2216 dwarf_clist
->filename
= nasm_malloc(strlen(fname
) + 1);
2217 strcpy(dwarf_clist
->filename
,fname
);
2218 dwarf_clist
->next
= 0;
2219 if (!dwarf_flist
) { /* if first entry */
2220 dwarf_flist
= dwarf_elist
= dwarf_clist
;
2221 dwarf_clist
->last
= 0;
2222 } else { /* chain to previous entry */
2223 dwarf_elist
->next
= dwarf_clist
;
2224 dwarf_elist
= dwarf_clist
;
2228 static void dwarf64_findsect(const int index
)
2231 struct sectlist
*match
;
2234 /* return if index is current section index */
2235 if (dwarf_csect
&& (dwarf_csect
->section
== index
))
2238 /* search for match */
2241 match
= dwarf_fsect
;
2242 for (sinx
= 0; sinx
< dwarf_nsections
; sinx
++) {
2243 if ((match
->section
== index
)) {
2244 dwarf_csect
= match
;
2247 match
= match
->next
;
2251 /* add entry to end of list */
2252 dwarf_csect
= (struct sectlist
*)nasm_malloc(sizeof(struct sectlist
));
2254 dwarf_csect
->psaa
= plinep
= saa_init(1L);
2255 dwarf_csect
->line
= 1;
2256 dwarf_csect
->offset
= 0;
2257 dwarf_csect
->file
= 1;
2258 dwarf_csect
->section
= index
;
2259 dwarf_csect
->next
= 0;
2260 /* set relocatable address at start of line program */
2261 saa_write8(plinep
,DW_LNS_extended_op
);
2262 saa_write8(plinep
,9); /* operand length */
2263 saa_write8(plinep
,DW_LNE_set_address
);
2264 saa_write64(plinep
,0); /* Start Address */
2266 if (!dwarf_fsect
) { /* if first entry */
2267 dwarf_fsect
= dwarf_esect
= dwarf_csect
;
2268 dwarf_csect
->last
= 0;
2269 } else { /* chain to previous entry */
2270 dwarf_esect
->next
= dwarf_csect
;
2271 dwarf_esect
= dwarf_csect
;