Change rights 644 to 755
[nasm/github.git] / output / outelf32.c
blobc1c8b82f5c0403221ed39f037ec1bdfb07c32ee9
1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2013 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
9 * conditions are met:
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 * outelf32.c output routines for the Netwide Assembler to produce
36 * ELF32 (i386 of course) object file format
39 #include "compiler.h"
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <ctype.h>
45 #include <inttypes.h>
46 #include <limits.h>
48 #include "nasm.h"
49 #include "nasmlib.h"
50 #include "saa.h"
51 #include "raa.h"
52 #include "stdscan.h"
53 #include "eval.h"
54 #include "output/outform.h"
55 #include "output/outlib.h"
56 #include "rbtree.h"
58 #include "output/dwarf.h"
59 #include "output/stabs.h"
60 #include "output/outelf.h"
62 #ifdef OF_ELF32
64 #define SECT_DELTA 32
65 static struct elf_section **sects;
66 static int nsects, sectlen;
68 #define SHSTR_DELTA 256
69 static char *shstrtab;
70 static int shstrtablen, shstrtabsize;
72 static struct SAA *syms;
73 static uint32_t nlocals, nglobs, ndebugs; /* Symbol counts */
75 static int32_t def_seg;
77 static struct RAA *bsym;
79 static struct SAA *strs;
80 static uint32_t strslen;
82 static struct elf_symbol *fwds;
84 static char elf_module[FILENAME_MAX];
86 extern struct ofmt of_elf32;
88 static struct ELF_SECTDATA {
89 void *data;
90 int32_t len;
91 bool is_saa;
92 } *elf_sects;
93 static int elf_nsect, nsections;
94 static int32_t elf_foffs;
96 static void elf_write(void);
97 static void elf_sect_write(struct elf_section *, const uint8_t *,
98 uint32_t);
99 static void elf_section_header(int, int, int, void *, bool, int32_t, int, int,
100 int, int);
101 static void elf_write_sections(void);
102 static struct SAA *elf_build_symtab(int32_t *, int32_t *);
103 static struct SAA *elf_build_reltab(uint64_t *, struct elf_reloc *);
104 static void add_sectname(char *, char *);
106 struct erel {
107 int offset, info;
110 struct symlininfo {
111 int offset;
112 int section; /* section index */
113 char *name; /* shallow-copied pointer of section name */
116 struct linelist {
117 struct linelist *next;
118 struct linelist *last;
119 struct symlininfo info;
120 char *filename;
121 int line;
124 struct sectlist {
125 struct SAA *psaa;
126 int section;
127 int line;
128 int offset;
129 int file;
130 struct sectlist *next;
131 struct sectlist *last;
134 /* common debug variables */
135 static int currentline = 1;
136 static int debug_immcall = 0;
138 /* stabs debug variables */
139 static struct linelist *stabslines = 0;
140 static int numlinestabs = 0;
141 static char *stabs_filename = 0;
142 static uint8_t *stabbuf = 0, *stabstrbuf = 0, *stabrelbuf = 0;
143 static int stablen, stabstrlen, stabrellen;
145 /* dwarf debug variables */
146 static struct linelist *dwarf_flist = 0, *dwarf_clist = 0, *dwarf_elist = 0;
147 static struct sectlist *dwarf_fsect = 0, *dwarf_csect = 0, *dwarf_esect = 0;
148 static int dwarf_numfiles = 0, dwarf_nsections;
149 static uint8_t *arangesbuf = 0, *arangesrelbuf = 0, *pubnamesbuf = 0, *infobuf = 0, *inforelbuf = 0,
150 *abbrevbuf = 0, *linebuf = 0, *linerelbuf = 0, *framebuf = 0, *locbuf = 0;
151 static int8_t line_base = -5, line_range = 14, opcode_base = 13;
152 static int arangeslen, arangesrellen, pubnameslen, infolen, inforellen,
153 abbrevlen, linelen, linerellen, framelen, loclen;
154 static int32_t dwarf_infosym, dwarf_abbrevsym, dwarf_linesym;
156 static struct dfmt df_dwarf;
157 static struct dfmt df_stabs;
158 static struct elf_symbol *lastsym;
160 /* common debugging routines */
161 static void debug32_typevalue(int32_t);
162 static void debug32_deflabel(char *, int32_t, int64_t, int, char *);
163 static void debug32_directive(const char *, const char *);
165 /* stabs debugging routines */
166 static void stabs32_linenum(const char *filename, int32_t linenumber, int32_t);
167 static void stabs32_output(int, void *);
168 static void stabs32_generate(void);
169 static void stabs32_cleanup(void);
171 /* dwarf debugging routines */
172 static void dwarf32_init(void);
173 static void dwarf32_linenum(const char *filename, int32_t linenumber, int32_t);
174 static void dwarf32_output(int, void *);
175 static void dwarf32_generate(void);
176 static void dwarf32_cleanup(void);
177 static void dwarf32_findfile(const char *);
178 static void dwarf32_findsect(const int);
181 * Special NASM section numbers which are used to define ELF special
182 * symbols, which can be used with WRT to provide PIC and TLS
183 * relocation types.
185 static int32_t elf_gotpc_sect, elf_gotoff_sect;
186 static int32_t elf_got_sect, elf_plt_sect;
187 static int32_t elf_sym_sect, elf_tlsie_sect;
189 static void elf_init(void)
191 sects = NULL;
192 nsects = sectlen = 0;
193 syms = saa_init((int32_t)sizeof(struct elf_symbol));
194 nlocals = nglobs = ndebugs = 0;
195 bsym = raa_init();
196 strs = saa_init(1L);
197 saa_wbytes(strs, "\0", 1L);
198 saa_wbytes(strs, elf_module, strlen(elf_module)+1);
199 strslen = 2 + strlen(elf_module);
200 shstrtab = NULL;
201 shstrtablen = shstrtabsize = 0;;
202 add_sectname("", "");
204 fwds = NULL;
206 elf_gotpc_sect = seg_alloc();
207 define_label("..gotpc", elf_gotpc_sect + 1, 0L, NULL, false, false);
208 elf_gotoff_sect = seg_alloc();
209 define_label("..gotoff", elf_gotoff_sect + 1, 0L, NULL, false, false);
210 elf_got_sect = seg_alloc();
211 define_label("..got", elf_got_sect + 1, 0L, NULL, false, false);
212 elf_plt_sect = seg_alloc();
213 define_label("..plt", elf_plt_sect + 1, 0L, NULL, false, false);
214 elf_sym_sect = seg_alloc();
215 define_label("..sym", elf_sym_sect + 1, 0L, NULL, false, false);
216 elf_tlsie_sect = seg_alloc();
217 define_label("..tlsie", elf_tlsie_sect + 1, 0L, NULL, false, false);
219 def_seg = seg_alloc();
222 static void elf_cleanup(int debuginfo)
224 struct elf_reloc *r;
225 int i;
227 (void)debuginfo;
229 elf_write();
230 for (i = 0; i < nsects; i++) {
231 if (sects[i]->type != SHT_NOBITS)
232 saa_free(sects[i]->data);
233 if (sects[i]->head)
234 saa_free(sects[i]->rel);
235 while (sects[i]->head) {
236 r = sects[i]->head;
237 sects[i]->head = sects[i]->head->next;
238 nasm_free(r);
241 nasm_free(sects);
242 saa_free(syms);
243 raa_free(bsym);
244 saa_free(strs);
245 if (of_elf32.current_dfmt) {
246 of_elf32.current_dfmt->cleanup();
250 static void add_sectname(char *firsthalf, char *secondhalf)
252 int len = strlen(firsthalf) + strlen(secondhalf);
253 while (shstrtablen + len + 1 > shstrtabsize)
254 shstrtab = nasm_realloc(shstrtab, (shstrtabsize += SHSTR_DELTA));
255 strcpy(shstrtab + shstrtablen, firsthalf);
256 strcat(shstrtab + shstrtablen, secondhalf);
257 shstrtablen += len + 1;
260 static int elf_make_section(char *name, int type, int flags, int align)
262 struct elf_section *s;
264 s = nasm_zalloc(sizeof(*s));
266 if (type != SHT_NOBITS)
267 s->data = saa_init(1L);
268 s->tail = &s->head;
269 if (!strcmp(name, ".text"))
270 s->index = def_seg;
271 else
272 s->index = seg_alloc();
273 add_sectname("", name);
275 s->name = nasm_strdup(name);
276 s->type = type;
277 s->flags = flags;
278 s->align = align;
280 if (nsects >= sectlen)
281 sects = nasm_realloc(sects, (sectlen += SECT_DELTA) * sizeof(*sects));
282 sects[nsects++] = s;
284 return nsects - 1;
287 static int32_t elf_section_names(char *name, int pass, int *bits)
289 char *p;
290 uint32_t flags, flags_and, flags_or;
291 uint64_t align;
292 int type, i;
295 * Default is 32 bits.
297 if (!name) {
298 *bits = 32;
299 return def_seg;
302 p = nasm_skip_word(name);
303 if (*p)
304 *p++ = '\0';
305 flags_and = flags_or = type = align = 0;
307 elf_section_attrib(name, p, pass, &flags_and,
308 &flags_or, &align, &type);
310 if (!strcmp(name, ".shstrtab") ||
311 !strcmp(name, ".symtab") ||
312 !strcmp(name, ".strtab")) {
313 nasm_error(ERR_NONFATAL, "attempt to redefine reserved section"
314 "name `%s'", name);
315 return NO_SEG;
318 for (i = 0; i < nsects; i++)
319 if (!strcmp(name, sects[i]->name))
320 break;
321 if (i == nsects) {
322 const struct elf_known_section *ks = elf_known_sections;
324 while (ks->name) {
325 if (!strcmp(name, ks->name))
326 break;
327 ks++;
330 type = type ? type : ks->type;
331 align = align ? align : ks->align;
332 flags = (ks->flags & ~flags_and) | flags_or;
334 i = elf_make_section(name, type, flags, align);
335 } else if (pass == 1) {
336 if ((type && sects[i]->type != type)
337 || (align && sects[i]->align != align)
338 || (flags_and && ((sects[i]->flags & flags_and) != flags_or)))
339 nasm_error(ERR_WARNING, "incompatible section attributes ignored on"
340 " redeclaration of section `%s'", name);
343 return sects[i]->index;
346 static void elf_deflabel(char *name, int32_t segment, int64_t offset,
347 int is_global, char *special)
349 int pos = strslen;
350 struct elf_symbol *sym;
351 bool special_used = false;
353 #if defined(DEBUG) && DEBUG>2
354 nasm_error(ERR_DEBUG,
355 " elf_deflabel: %s, seg=%"PRIx32", off=%"PRIx64", is_global=%d, %s\n",
356 name, segment, offset, is_global, special);
357 #endif
358 if (name[0] == '.' && name[1] == '.' && name[2] != '@') {
360 * This is a NASM special symbol. We never allow it into
361 * the ELF symbol table, even if it's a valid one. If it
362 * _isn't_ a valid one, we should barf immediately.
364 if (strcmp(name, "..gotpc") && strcmp(name, "..gotoff") &&
365 strcmp(name, "..got") && strcmp(name, "..plt") &&
366 strcmp(name, "..sym") && strcmp(name, "..tlsie"))
367 nasm_error(ERR_NONFATAL, "unrecognised special symbol `%s'", name);
368 return;
371 if (is_global == 3) {
372 struct elf_symbol **s;
374 * Fix up a forward-reference symbol size from the first
375 * pass.
377 for (s = &fwds; *s; s = &(*s)->nextfwd)
378 if (!strcmp((*s)->name, name)) {
379 struct tokenval tokval;
380 expr *e;
381 char *p = nasm_skip_spaces(nasm_skip_word(special));
383 stdscan_reset();
384 stdscan_set(p);
385 tokval.t_type = TOKEN_INVALID;
386 e = evaluate(stdscan, NULL, &tokval, NULL, 1, nasm_error, NULL);
387 if (e) {
388 if (!is_simple(e))
389 nasm_error(ERR_NONFATAL, "cannot use relocatable"
390 " expression as symbol size");
391 else
392 (*s)->size = reloc_value(e);
396 * Remove it from the list of unresolved sizes.
398 nasm_free((*s)->name);
399 *s = (*s)->nextfwd;
400 return;
402 return; /* it wasn't an important one */
405 saa_wbytes(strs, name, (int32_t)(1 + strlen(name)));
406 strslen += 1 + strlen(name);
408 lastsym = sym = saa_wstruct(syms);
410 memset(&sym->symv, 0, sizeof(struct rbtree));
412 sym->strpos = pos;
413 sym->type = is_global ? SYM_GLOBAL : SYM_LOCAL;
414 sym->other = STV_DEFAULT;
415 sym->size = 0;
416 if (segment == NO_SEG)
417 sym->section = SHN_ABS;
418 else {
419 int i;
420 sym->section = SHN_UNDEF;
421 if (segment == def_seg) {
422 /* we have to be sure at least text section is there */
423 int tempint;
424 if (segment != elf_section_names(".text", 2, &tempint))
425 nasm_error(ERR_PANIC, "strange segment conditions in ELF driver");
427 for (i = 0; i < nsects; i++) {
428 if (segment == sects[i]->index) {
429 sym->section = i + 1;
430 break;
435 if (is_global == 2) {
436 sym->size = offset;
437 sym->symv.key = 0;
438 sym->section = SHN_COMMON;
440 * We have a common variable. Check the special text to see
441 * if it's a valid number and power of two; if so, store it
442 * as the alignment for the common variable.
444 if (special) {
445 bool err;
446 sym->symv.key = readnum(special, &err);
447 if (err)
448 nasm_error(ERR_NONFATAL, "alignment constraint `%s' is not a"
449 " valid number", special);
450 else if ((sym->symv.key | (sym->symv.key - 1)) != 2 * sym->symv.key - 1)
451 nasm_error(ERR_NONFATAL, "alignment constraint `%s' is not a"
452 " power of two", special);
454 special_used = true;
455 } else
456 sym->symv.key = (sym->section == SHN_UNDEF ? 0 : offset);
458 if (sym->type == SYM_GLOBAL) {
460 * If sym->section == SHN_ABS, then the first line of the
461 * else section would cause a core dump, because its a reference
462 * beyond the end of the section array.
463 * This behaviour is exhibited by this code:
464 * GLOBAL crash_nasm
465 * crash_nasm equ 0
466 * To avoid such a crash, such requests are silently discarded.
467 * This may not be the best solution.
469 if (sym->section == SHN_UNDEF || sym->section == SHN_COMMON) {
470 bsym = raa_write(bsym, segment, nglobs);
471 } else if (sym->section != SHN_ABS) {
473 * This is a global symbol; so we must add it to the rbtree
474 * of global symbols in its section.
476 * In addition, we check the special text for symbol
477 * type and size information.
479 sects[sym->section-1]->gsyms =
480 rb_insert(sects[sym->section-1]->gsyms, &sym->symv);
482 if (special) {
483 int n = strcspn(special, " \t");
485 if (!nasm_strnicmp(special, "function", n))
486 sym->type |= STT_FUNC;
487 else if (!nasm_strnicmp(special, "data", n) ||
488 !nasm_strnicmp(special, "object", n))
489 sym->type |= STT_OBJECT;
490 else if (!nasm_strnicmp(special, "notype", n))
491 sym->type |= STT_NOTYPE;
492 else
493 nasm_error(ERR_NONFATAL, "unrecognised symbol type `%.*s'",
494 n, special);
495 special += n;
497 special = nasm_skip_spaces(special);
498 if (*special) {
499 n = strcspn(special, " \t");
500 if (!nasm_strnicmp(special, "default", n))
501 sym->other = STV_DEFAULT;
502 else if (!nasm_strnicmp(special, "internal", n))
503 sym->other = STV_INTERNAL;
504 else if (!nasm_strnicmp(special, "hidden", n))
505 sym->other = STV_HIDDEN;
506 else if (!nasm_strnicmp(special, "protected", n))
507 sym->other = STV_PROTECTED;
508 else
509 n = 0;
510 special += n;
513 if (*special) {
514 struct tokenval tokval;
515 expr *e;
516 int fwd = 0;
517 char *saveme = stdscan_get();
519 while (special[n] && nasm_isspace(special[n]))
520 n++;
522 * We have a size expression; attempt to
523 * evaluate it.
525 stdscan_reset();
526 stdscan_set(special + n);
527 tokval.t_type = TOKEN_INVALID;
528 e = evaluate(stdscan, NULL, &tokval, &fwd, 0, nasm_error,
529 NULL);
530 if (fwd) {
531 sym->nextfwd = fwds;
532 fwds = sym;
533 sym->name = nasm_strdup(name);
534 } else if (e) {
535 if (!is_simple(e))
536 nasm_error(ERR_NONFATAL, "cannot use relocatable"
537 " expression as symbol size");
538 else
539 sym->size = reloc_value(e);
541 stdscan_set(saveme);
543 special_used = true;
546 * If TLS segment, mark symbol accordingly.
548 if (sects[sym->section - 1]->flags & SHF_TLS) {
549 sym->type &= 0xf0;
550 sym->type |= STT_TLS;
553 sym->globnum = nglobs;
554 nglobs++;
555 } else
556 nlocals++;
558 if (special && !special_used)
559 nasm_error(ERR_NONFATAL, "no special symbol features supported here");
562 static void elf_add_reloc(struct elf_section *sect, int32_t segment, int type)
564 struct elf_reloc *r;
566 r = *sect->tail = nasm_zalloc(sizeof(struct elf_reloc));
567 sect->tail = &r->next;
569 r->address = sect->len;
570 if (segment != NO_SEG) {
571 int i;
572 for (i = 0; i < nsects; i++)
573 if (segment == sects[i]->index)
574 r->symbol = i + 2;
575 if (!r->symbol)
576 r->symbol = GLOBAL_TEMP_BASE + raa_read(bsym, segment);
578 r->type = type;
580 sect->nrelocs++;
584 * This routine deals with ..got and ..sym relocations: the more
585 * complicated kinds. In shared-library writing, some relocations
586 * with respect to global symbols must refer to the precise symbol
587 * rather than referring to an offset from the base of the section
588 * _containing_ the symbol. Such relocations call to this routine,
589 * which searches the symbol list for the symbol in question.
591 * R_386_GOT32 references require the _exact_ symbol address to be
592 * used; R_386_32 references can be at an offset from the symbol.
593 * The boolean argument `exact' tells us this.
595 * Return value is the adjusted value of `addr', having become an
596 * offset from the symbol rather than the section. Should always be
597 * zero when returning from an exact call.
599 * Limitation: if you define two symbols at the same place,
600 * confusion will occur.
602 * Inefficiency: we search, currently, using a linked list which
603 * isn't even necessarily sorted.
605 static int32_t elf_add_gsym_reloc(struct elf_section *sect,
606 int32_t segment, uint32_t offset,
607 int type, bool exact)
609 struct elf_reloc *r;
610 struct elf_section *s;
611 struct elf_symbol *sym;
612 struct rbtree *srb;
613 int i;
616 * First look up the segment/offset pair and find a global
617 * symbol corresponding to it. If it's not one of our segments,
618 * then it must be an external symbol, in which case we're fine
619 * doing a normal elf_add_reloc after first sanity-checking
620 * that the offset from the symbol is zero.
622 s = NULL;
623 for (i = 0; i < nsects; i++)
624 if (segment == sects[i]->index) {
625 s = sects[i];
626 break;
629 if (!s) {
630 if (exact && offset)
631 nasm_error(ERR_NONFATAL, "unable to find a suitable global symbol"
632 " for this reference");
633 else
634 elf_add_reloc(sect, segment, type);
635 return offset;
638 srb = rb_search(s->gsyms, offset);
639 if (!srb || (exact && srb->key != offset)) {
640 nasm_error(ERR_NONFATAL, "unable to find a suitable global symbol"
641 " for this reference");
642 return 0;
644 sym = container_of(srb, struct elf_symbol, symv);
646 r = *sect->tail = nasm_malloc(sizeof(struct elf_reloc));
647 sect->tail = &r->next;
649 r->next = NULL;
650 r->address = sect->len;
651 r->symbol = GLOBAL_TEMP_BASE + sym->globnum;
652 r->type = type;
654 sect->nrelocs++;
656 return offset - sym->symv.key;
659 static void elf_out(int32_t segto, const void *data,
660 enum out_type type, uint64_t size,
661 int32_t segment, int32_t wrt)
663 struct elf_section *s;
664 int32_t addr;
665 uint8_t mydata[8], *p;
666 int reltype, bytes;
667 int i;
668 static struct symlininfo sinfo;
671 * handle absolute-assembly (structure definitions)
673 if (segto == NO_SEG) {
674 if (type != OUT_RESERVE)
675 nasm_error(ERR_NONFATAL, "attempt to assemble code in [ABSOLUTE]"
676 " space");
677 return;
680 s = NULL;
681 for (i = 0; i < nsects; i++)
682 if (segto == sects[i]->index) {
683 s = sects[i];
684 break;
686 if (!s) {
687 int tempint; /* ignored */
688 if (segto != elf_section_names(".text", 2, &tempint))
689 nasm_error(ERR_PANIC, "strange segment conditions in ELF driver");
690 else {
691 s = sects[nsects - 1];
692 i = nsects - 1;
696 /* again some stabs debugging stuff */
697 if (of_elf32.current_dfmt) {
698 sinfo.offset = s->len;
699 sinfo.section = i;
700 sinfo.name = s->name;
701 of_elf32.current_dfmt->debug_output(TY_STABSSYMLIN, &sinfo);
703 /* end of debugging stuff */
705 if (s->type == SHT_NOBITS && type != OUT_RESERVE) {
706 nasm_error(ERR_WARNING, "attempt to initialize memory in"
707 " BSS section `%s': ignored", s->name);
708 s->len += realsize(type, size);
709 return;
712 switch (type) {
713 case OUT_RESERVE:
714 if (s->type == SHT_PROGBITS) {
715 nasm_error(ERR_WARNING, "uninitialized space declared in"
716 " non-BSS section `%s': zeroing", s->name);
717 elf_sect_write(s, NULL, size);
718 } else
719 s->len += size;
720 break;
722 case OUT_RAWDATA:
723 if (segment != NO_SEG)
724 nasm_error(ERR_PANIC, "OUT_RAWDATA with other than NO_SEG");
725 elf_sect_write(s, data, size);
726 break;
728 case OUT_ADDRESS:
730 bool gnu16 = false;
731 int asize = abs(size);
732 addr = *(int64_t *)data;
733 if (segment != NO_SEG) {
734 if (segment % 2) {
735 nasm_error(ERR_NONFATAL, "ELF format does not support"
736 " segment base references");
737 } else {
738 if (wrt == NO_SEG) {
740 * The if() is a hack to deal with compilers which
741 * don't handle switch() statements with 64-bit
742 * expressions.
744 switch (asize) {
745 case 1:
746 gnu16 = true;
747 elf_add_reloc(s, segment, R_386_8);
748 break;
749 case 2:
750 gnu16 = true;
751 elf_add_reloc(s, segment, R_386_16);
752 break;
753 case 4:
754 elf_add_reloc(s, segment, R_386_32);
755 break;
756 default: /* Error issued further down */
757 break;
759 } else if (wrt == elf_gotpc_sect + 1) {
761 * The user will supply GOT relative to $$. ELF
762 * will let us have GOT relative to $. So we
763 * need to fix up the data item by $-$$.
765 addr += s->len;
766 elf_add_reloc(s, segment, R_386_GOTPC);
767 } else if (wrt == elf_gotoff_sect + 1) {
768 elf_add_reloc(s, segment, R_386_GOTOFF);
769 } else if (wrt == elf_tlsie_sect + 1) {
770 addr = elf_add_gsym_reloc(s, segment, addr,
771 R_386_TLS_IE, true);
772 } else if (wrt == elf_got_sect + 1) {
773 addr = elf_add_gsym_reloc(s, segment, addr,
774 R_386_GOT32, true);
775 } else if (wrt == elf_sym_sect + 1) {
776 switch (asize) {
777 case 1:
778 gnu16 = true;
779 addr = elf_add_gsym_reloc(s, segment, addr,
780 R_386_8, false);
781 break;
782 case 2:
783 gnu16 = true;
784 addr = elf_add_gsym_reloc(s, segment, addr,
785 R_386_16, false);
786 break;
787 case 4:
788 addr = elf_add_gsym_reloc(s, segment, addr,
789 R_386_32, false);
790 break;
791 default:
792 break;
794 } else if (wrt == elf_plt_sect + 1) {
795 nasm_error(ERR_NONFATAL, "ELF format cannot produce non-PC-"
796 "relative PLT references");
797 } else {
798 nasm_error(ERR_NONFATAL, "ELF format does not support this"
799 " use of WRT");
800 wrt = NO_SEG; /* we can at least _try_ to continue */
804 p = mydata;
805 if (gnu16) {
806 nasm_error(ERR_WARNING | ERR_WARN_GNUELF,
807 "8- or 16-bit relocations in ELF32 is a GNU extension");
808 } else if (asize != 4 && segment != NO_SEG) {
809 nasm_error(ERR_NONFATAL, "Unsupported non-32-bit ELF relocation");
811 WRITEADDR(p, addr, asize);
812 elf_sect_write(s, mydata, asize);
813 break;
816 case OUT_REL1ADR:
817 bytes = 1;
818 reltype = R_386_PC8;
819 goto rel12adr;
820 case OUT_REL2ADR:
821 bytes = 2;
822 reltype = R_386_PC16;
823 goto rel12adr;
825 rel12adr:
826 nasm_assert(segment != segto);
827 if (segment != NO_SEG && segment % 2) {
828 nasm_error(ERR_NONFATAL, "ELF format does not support"
829 " segment base references");
830 } else {
831 if (wrt == NO_SEG) {
832 nasm_error(ERR_WARNING | ERR_WARN_GNUELF,
833 "8- or 16-bit relocations in ELF is a GNU extension");
834 elf_add_reloc(s, segment, reltype);
835 } else {
836 nasm_error(ERR_NONFATAL,
837 "Unsupported non-32-bit ELF relocation");
840 p = mydata;
841 WRITESHORT(p, *(int64_t *)data - size);
842 elf_sect_write(s, mydata, bytes);
843 break;
845 case OUT_REL4ADR:
846 if (segment == segto)
847 nasm_error(ERR_PANIC, "intra-segment OUT_REL4ADR");
848 if (segment != NO_SEG && segment % 2) {
849 nasm_error(ERR_NONFATAL, "ELF format does not support"
850 " segment base references");
851 } else {
852 if (wrt == NO_SEG) {
853 elf_add_reloc(s, segment, R_386_PC32);
854 } else if (wrt == elf_plt_sect + 1) {
855 elf_add_reloc(s, segment, R_386_PLT32);
856 } else if (wrt == elf_gotpc_sect + 1 ||
857 wrt == elf_gotoff_sect + 1 ||
858 wrt == elf_got_sect + 1) {
859 nasm_error(ERR_NONFATAL, "ELF format cannot produce PC-"
860 "relative GOT references");
861 } else {
862 nasm_error(ERR_NONFATAL, "ELF format does not support this"
863 " use of WRT");
864 wrt = NO_SEG; /* we can at least _try_ to continue */
867 p = mydata;
868 WRITELONG(p, *(int64_t *)data - size);
869 elf_sect_write(s, mydata, 4L);
870 break;
872 case OUT_REL8ADR:
873 nasm_error(ERR_NONFATAL,
874 "32-bit ELF format does not support 64-bit relocations");
875 p = mydata;
876 WRITEDLONG(p, 0);
877 elf_sect_write(s, mydata, 8L);
878 break;
882 static void elf_write(void)
884 int align;
885 char *p;
886 int i;
888 struct SAA *symtab;
889 int32_t symtablen, symtablocal;
892 * Work out how many sections we will have. We have SHN_UNDEF,
893 * then the flexible user sections, then the fixed sections
894 * `.shstrtab', `.symtab' and `.strtab', then optionally
895 * relocation sections for the user sections.
897 nsections = sec_numspecial + 1;
898 if (of_elf32.current_dfmt == &df_stabs)
899 nsections += 3;
900 else if (of_elf32.current_dfmt == &df_dwarf)
901 nsections += 10;
903 add_sectname("", ".shstrtab");
904 add_sectname("", ".symtab");
905 add_sectname("", ".strtab");
906 for (i = 0; i < nsects; i++) {
907 nsections++; /* for the section itself */
908 if (sects[i]->head) {
909 nsections++; /* for its relocations */
910 add_sectname(".rel", sects[i]->name);
914 if (of_elf32.current_dfmt == &df_stabs) {
915 /* in case the debug information is wanted, just add these three sections... */
916 add_sectname("", ".stab");
917 add_sectname("", ".stabstr");
918 add_sectname(".rel", ".stab");
919 } else if (of_elf32.current_dfmt == &df_dwarf) {
920 /* the dwarf debug standard specifies the following ten sections,
921 not all of which are currently implemented,
922 although all of them are defined. */
923 add_sectname("", ".debug_aranges");
924 add_sectname(".rela", ".debug_aranges");
925 add_sectname("", ".debug_pubnames");
926 add_sectname("", ".debug_info");
927 add_sectname(".rela", ".debug_info");
928 add_sectname("", ".debug_abbrev");
929 add_sectname("", ".debug_line");
930 add_sectname(".rela", ".debug_line");
931 add_sectname("", ".debug_frame");
932 add_sectname("", ".debug_loc");
936 * Output the ELF header.
938 nasm_write("\177ELF\1\1\1", 7, ofile);
939 fputc(elf_osabi, ofile);
940 fputc(elf_abiver, ofile);
941 fwritezero(7, ofile);
942 fwriteint16_t(1, ofile); /* ET_REL relocatable file */
943 fwriteint16_t(3, ofile); /* EM_386 processor ID */
944 fwriteint32_t(1L, ofile); /* EV_CURRENT file format version */
945 fwriteint32_t(0L, ofile); /* no entry point */
946 fwriteint32_t(0L, ofile); /* no program header table */
947 fwriteint32_t(0x40L, ofile); /* section headers straight after
948 * ELF header plus alignment */
949 fwriteint32_t(0L, ofile); /* 386 defines no special flags */
950 fwriteint16_t(0x34, ofile); /* size of ELF header */
951 fwriteint16_t(0, ofile); /* no program header table, again */
952 fwriteint16_t(0, ofile); /* still no program header table */
953 fwriteint16_t(0x28, ofile); /* size of section header */
954 fwriteint16_t(nsections, ofile); /* number of sections */
955 fwriteint16_t(sec_shstrtab, ofile); /* string table section index for
956 * section header table */
957 fwriteint32_t(0L, ofile); /* align to 0x40 bytes */
958 fwriteint32_t(0L, ofile);
959 fwriteint32_t(0L, ofile);
962 * Build the symbol table and relocation tables.
964 symtab = elf_build_symtab(&symtablen, &symtablocal);
965 for (i = 0; i < nsects; i++)
966 if (sects[i]->head)
967 sects[i]->rel = elf_build_reltab(&sects[i]->rellen,
968 sects[i]->head);
971 * Now output the section header table.
974 elf_foffs = 0x40 + 0x28 * nsections;
975 align = ALIGN(elf_foffs, SEC_FILEALIGN) - elf_foffs;
976 elf_foffs += align;
977 elf_nsect = 0;
978 elf_sects = nasm_malloc(sizeof(*elf_sects) * nsections);
980 /* SHN_UNDEF */
981 elf_section_header(0, SHT_NULL, 0, NULL, false, 0, SHN_UNDEF, 0, 0, 0);
982 p = shstrtab + 1;
984 /* The normal sections */
985 for (i = 0; i < nsects; i++) {
986 elf_section_header(p - shstrtab, sects[i]->type, sects[i]->flags,
987 (sects[i]->type == SHT_PROGBITS ?
988 sects[i]->data : NULL), true,
989 sects[i]->len, 0, 0, sects[i]->align, 0);
990 p += strlen(p) + 1;
993 /* .shstrtab */
994 elf_section_header(p - shstrtab, SHT_STRTAB, 0, shstrtab, false,
995 shstrtablen, 0, 0, 1, 0);
996 p += strlen(p) + 1;
998 /* .symtab */
999 elf_section_header(p - shstrtab, SHT_SYMTAB, 0, symtab, true,
1000 symtablen, sec_strtab, symtablocal, 4, 16);
1001 p += strlen(p) + 1;
1003 /* .strtab */
1004 elf_section_header(p - shstrtab, SHT_STRTAB, 0, strs, true,
1005 strslen, 0, 0, 1, 0);
1006 p += strlen(p) + 1;
1008 /* The relocation sections */
1009 for (i = 0; i < nsects; i++)
1010 if (sects[i]->head) {
1011 elf_section_header(p - shstrtab, SHT_REL, 0, sects[i]->rel, true,
1012 sects[i]->rellen, sec_symtab, i + 1, 4, 8);
1013 p += strlen(p) + 1;
1016 if (of_elf32.current_dfmt == &df_stabs) {
1017 /* for debugging information, create the last three sections
1018 which are the .stab , .stabstr and .rel.stab sections respectively */
1020 /* this function call creates the stab sections in memory */
1021 stabs32_generate();
1023 if (stabbuf && stabstrbuf && stabrelbuf) {
1024 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, stabbuf, false,
1025 stablen, sec_stabstr, 0, 4, 12);
1026 p += strlen(p) + 1;
1028 elf_section_header(p - shstrtab, SHT_STRTAB, 0, stabstrbuf, false,
1029 stabstrlen, 0, 0, 4, 0);
1030 p += strlen(p) + 1;
1032 /* link -> symtable info -> section to refer to */
1033 elf_section_header(p - shstrtab, SHT_REL, 0, stabrelbuf, false,
1034 stabrellen, sec_symtab, sec_stab, 4, 8);
1035 p += strlen(p) + 1;
1037 } else if (of_elf32.current_dfmt == &df_dwarf) {
1038 /* for dwarf debugging information, create the ten dwarf sections */
1040 /* this function call creates the dwarf sections in memory */
1041 if (dwarf_fsect)
1042 dwarf32_generate();
1044 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, arangesbuf, false,
1045 arangeslen, 0, 0, 1, 0);
1046 p += strlen(p) + 1;
1048 elf_section_header(p - shstrtab, SHT_RELA, 0, arangesrelbuf, false,
1049 arangesrellen, sec_symtab, sec_debug_aranges,
1050 1, 12);
1051 p += strlen(p) + 1;
1053 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, pubnamesbuf,
1054 false, pubnameslen, 0, 0, 1, 0);
1055 p += strlen(p) + 1;
1057 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, infobuf, false,
1058 infolen, 0, 0, 1, 0);
1059 p += strlen(p) + 1;
1061 elf_section_header(p - shstrtab, SHT_RELA, 0, inforelbuf, false,
1062 inforellen, sec_symtab, sec_debug_info, 1, 12);
1063 p += strlen(p) + 1;
1065 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, abbrevbuf, false,
1066 abbrevlen, 0, 0, 1, 0);
1067 p += strlen(p) + 1;
1069 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, linebuf, false,
1070 linelen, 0, 0, 1, 0);
1071 p += strlen(p) + 1;
1073 elf_section_header(p - shstrtab, SHT_RELA, 0, linerelbuf, false,
1074 linerellen, sec_symtab, sec_debug_line, 1, 12);
1075 p += strlen(p) + 1;
1077 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, framebuf, false,
1078 framelen, 0, 0, 8, 0);
1079 p += strlen(p) + 1;
1081 elf_section_header(p - shstrtab, SHT_PROGBITS, 0, locbuf, false,
1082 loclen, 0, 0, 1, 0);
1083 p += strlen(p) + 1;
1085 fwritezero(align, ofile);
1088 * Now output the sections.
1090 elf_write_sections();
1092 nasm_free(elf_sects);
1093 saa_free(symtab);
1096 static struct SAA *elf_build_symtab(int32_t *len, int32_t *local)
1098 struct SAA *s = saa_init(1L);
1099 struct elf_symbol *sym;
1100 uint8_t entry[16], *p;
1101 int i;
1103 *len = *local = 0;
1106 * First, an all-zeros entry, required by the ELF spec.
1108 saa_wbytes(s, NULL, 16L); /* null symbol table entry */
1109 *len += 16;
1110 (*local)++;
1113 * Next, an entry for the file name.
1115 p = entry;
1116 WRITELONG(p, 1); /* we know it's 1st entry in strtab */
1117 WRITELONG(p, 0); /* no value */
1118 WRITELONG(p, 0); /* no size either */
1119 WRITESHORT(p, STT_FILE); /* type FILE */
1120 WRITESHORT(p, SHN_ABS);
1121 saa_wbytes(s, entry, 16L);
1122 *len += 16;
1123 (*local)++;
1126 * Now some standard symbols defining the segments, for relocation
1127 * purposes.
1129 for (i = 1; i <= nsects; i++) {
1130 p = entry;
1131 WRITELONG(p, 0); /* no symbol name */
1132 WRITELONG(p, 0); /* offset zero */
1133 WRITELONG(p, 0); /* size zero */
1134 WRITESHORT(p, STT_SECTION); /* type, binding, and visibility */
1135 WRITESHORT(p, i); /* section id */
1136 saa_wbytes(s, entry, 16L);
1137 *len += 16;
1138 (*local)++;
1142 * Now the other local symbols.
1144 saa_rewind(syms);
1145 while ((sym = saa_rstruct(syms))) {
1146 if (sym->type & SYM_GLOBAL)
1147 continue;
1148 p = entry;
1149 WRITELONG(p, sym->strpos);
1150 WRITELONG(p, sym->symv.key);
1151 WRITELONG(p, sym->size);
1152 WRITECHAR(p, sym->type); /* type and binding */
1153 WRITECHAR(p, sym->other); /* visibility */
1154 WRITESHORT(p, sym->section);
1155 saa_wbytes(s, entry, 16L);
1156 *len += 16;
1157 (*local)++;
1160 * dwarf needs symbols for debug sections
1161 * which are relocation targets.
1163 //*** fix for 32 bit
1164 if (of_elf32.current_dfmt == &df_dwarf) {
1165 dwarf_infosym = *local;
1166 p = entry;
1167 WRITELONG(p, 0); /* no symbol name */
1168 WRITELONG(p, (uint32_t) 0); /* offset zero */
1169 WRITELONG(p, (uint32_t) 0); /* size zero */
1170 WRITESHORT(p, STT_SECTION); /* type, binding, and visibility */
1171 WRITESHORT(p, sec_debug_info); /* section id */
1172 saa_wbytes(s, entry, 16L);
1173 *len += 16;
1174 (*local)++;
1175 dwarf_abbrevsym = *local;
1176 p = entry;
1177 WRITELONG(p, 0); /* no symbol name */
1178 WRITELONG(p, (uint32_t) 0); /* offset zero */
1179 WRITELONG(p, (uint32_t) 0); /* size zero */
1180 WRITESHORT(p, STT_SECTION); /* type, binding, and visibility */
1181 WRITESHORT(p, sec_debug_abbrev); /* section id */
1182 saa_wbytes(s, entry, 16L);
1183 *len += 16;
1184 (*local)++;
1185 dwarf_linesym = *local;
1186 p = entry;
1187 WRITELONG(p, 0); /* no symbol name */
1188 WRITELONG(p, (uint32_t) 0); /* offset zero */
1189 WRITELONG(p, (uint32_t) 0); /* size zero */
1190 WRITESHORT(p, STT_SECTION); /* type, binding, and visibility */
1191 WRITESHORT(p, sec_debug_line); /* section id */
1192 saa_wbytes(s, entry, 16L);
1193 *len += 16;
1194 (*local)++;
1198 * Now the global symbols.
1200 saa_rewind(syms);
1201 while ((sym = saa_rstruct(syms))) {
1202 if (!(sym->type & SYM_GLOBAL))
1203 continue;
1204 p = entry;
1205 WRITELONG(p, sym->strpos);
1206 WRITELONG(p, sym->symv.key);
1207 WRITELONG(p, sym->size);
1208 WRITECHAR(p, sym->type); /* type and binding */
1209 WRITECHAR(p, sym->other); /* visibility */
1210 WRITESHORT(p, sym->section);
1211 saa_wbytes(s, entry, 16L);
1212 *len += 16;
1215 return s;
1218 static struct SAA *elf_build_reltab(uint64_t *len, struct elf_reloc *r)
1220 struct SAA *s;
1221 uint8_t *p, entry[8];
1222 int32_t global_offset;
1224 if (!r)
1225 return NULL;
1227 s = saa_init(1L);
1228 *len = 0;
1231 * How to onvert from a global placeholder to a real symbol index;
1232 * the +2 refers to the two special entries, the null entry and
1233 * the filename entry.
1235 global_offset = -GLOBAL_TEMP_BASE + nsects + nlocals + ndebugs + 2;
1237 while (r) {
1238 int32_t sym = r->symbol;
1240 if (sym >= GLOBAL_TEMP_BASE)
1241 sym += global_offset;
1243 p = entry;
1244 WRITELONG(p, r->address);
1245 WRITELONG(p, (sym << 8) + r->type);
1246 saa_wbytes(s, entry, 8L);
1247 *len += 8;
1249 r = r->next;
1252 return s;
1255 static void elf_section_header(int name, int type, int flags,
1256 void *data, bool is_saa, int32_t datalen,
1257 int link, int info, int align, int eltsize)
1259 elf_sects[elf_nsect].data = data;
1260 elf_sects[elf_nsect].len = datalen;
1261 elf_sects[elf_nsect].is_saa = is_saa;
1262 elf_nsect++;
1264 fwriteint32_t((int32_t)name, ofile);
1265 fwriteint32_t((int32_t)type, ofile);
1266 fwriteint32_t((int32_t)flags, ofile);
1267 fwriteint32_t(0L, ofile); /* no address, ever, in object files */
1268 fwriteint32_t(type == 0 ? 0L : elf_foffs, ofile);
1269 fwriteint32_t(datalen, ofile);
1270 if (data)
1271 elf_foffs += ALIGN(datalen, SEC_FILEALIGN);
1272 fwriteint32_t((int32_t)link, ofile);
1273 fwriteint32_t((int32_t)info, ofile);
1274 fwriteint32_t((int32_t)align, ofile);
1275 fwriteint32_t((int32_t)eltsize, ofile);
1278 static void elf_write_sections(void)
1280 int i;
1281 for (i = 0; i < elf_nsect; i++)
1282 if (elf_sects[i].data) {
1283 int32_t len = elf_sects[i].len;
1284 int32_t reallen = ALIGN(len, SEC_FILEALIGN);
1285 int32_t align = reallen - len;
1286 if (elf_sects[i].is_saa)
1287 saa_fpwrite(elf_sects[i].data, ofile);
1288 else
1289 nasm_write(elf_sects[i].data, len, ofile);
1290 fwritezero(align, ofile);
1294 static void elf_sect_write(struct elf_section *sect,
1295 const uint8_t *data, uint32_t len)
1297 saa_wbytes(sect->data, data, len);
1298 sect->len += len;
1301 static void elf_sectalign(int32_t seg, unsigned int value)
1303 struct elf_section *s = NULL;
1304 int i;
1306 for (i = 0; i < nsects; i++) {
1307 if (sects[i]->index == seg) {
1308 s = sects[i];
1309 break;
1312 if (!s || !is_power2(value))
1313 return;
1315 if (value > s->align)
1316 s->align = value;
1319 static int32_t elf_segbase(int32_t segment)
1321 return segment;
1324 static void elf_filename(char *inname, char *outname)
1326 strcpy(elf_module, inname);
1327 standard_extension(inname, outname, ".o");
1330 extern macros_t elf_stdmac[];
1332 static int elf_set_info(enum geninfo type, char **val)
1334 (void)type;
1335 (void)val;
1336 return 0;
1338 static struct dfmt df_dwarf = {
1339 "ELF32 (i386) dwarf debug format for Linux/Unix",
1340 "dwarf",
1341 dwarf32_init,
1342 dwarf32_linenum,
1343 debug32_deflabel,
1344 debug32_directive,
1345 debug32_typevalue,
1346 dwarf32_output,
1347 dwarf32_cleanup
1349 static struct dfmt df_stabs = {
1350 "ELF32 (i386) stabs debug format for Linux/Unix",
1351 "stabs",
1352 null_debug_init,
1353 stabs32_linenum,
1354 debug32_deflabel,
1355 debug32_directive,
1356 debug32_typevalue,
1357 stabs32_output,
1358 stabs32_cleanup
1361 struct dfmt *elf32_debugs_arr[3] = { &df_dwarf, &df_stabs, NULL };
1363 struct ofmt of_elf32 = {
1364 "ELF32 (i386) object files (e.g. Linux)",
1365 "elf32",
1367 elf32_debugs_arr,
1368 &df_stabs,
1369 elf_stdmac,
1370 elf_init,
1371 elf_set_info,
1372 elf_out,
1373 elf_deflabel,
1374 elf_section_names,
1375 elf_sectalign,
1376 elf_segbase,
1377 elf_directive,
1378 elf_filename,
1379 elf_cleanup
1382 /* again, the stabs debugging stuff (code) */
1384 static void stabs32_linenum(const char *filename, int32_t linenumber,
1385 int32_t segto)
1387 (void)segto;
1389 if (!stabs_filename) {
1390 stabs_filename = (char *)nasm_malloc(strlen(filename) + 1);
1391 strcpy(stabs_filename, filename);
1392 } else {
1393 if (strcmp(stabs_filename, filename)) {
1395 * yep, a memory leak...this program is one-shot anyway, so who cares...
1396 * in fact, this leak comes in quite handy to maintain a list of files
1397 * encountered so far in the symbol lines...
1400 /* why not nasm_free(stabs_filename); we're done with the old one */
1402 stabs_filename = (char *)nasm_malloc(strlen(filename) + 1);
1403 strcpy(stabs_filename, filename);
1406 debug_immcall = 1;
1407 currentline = linenumber;
1410 static void debug32_deflabel(char *name, int32_t segment, int64_t offset, int is_global,
1411 char *special)
1413 (void)name;
1414 (void)segment;
1415 (void)offset;
1416 (void)is_global;
1417 (void)special;
1420 static void debug32_directive(const char *directive, const char *params)
1422 (void)directive;
1423 (void)params;
1426 static void debug32_typevalue(int32_t type)
1428 int32_t stype, ssize;
1429 switch (TYM_TYPE(type)) {
1430 case TY_LABEL:
1431 ssize = 0;
1432 stype = STT_NOTYPE;
1433 break;
1434 case TY_BYTE:
1435 ssize = 1;
1436 stype = STT_OBJECT;
1437 break;
1438 case TY_WORD:
1439 ssize = 2;
1440 stype = STT_OBJECT;
1441 break;
1442 case TY_DWORD:
1443 ssize = 4;
1444 stype = STT_OBJECT;
1445 break;
1446 case TY_FLOAT:
1447 ssize = 4;
1448 stype = STT_OBJECT;
1449 break;
1450 case TY_QWORD:
1451 ssize = 8;
1452 stype = STT_OBJECT;
1453 break;
1454 case TY_TBYTE:
1455 ssize = 10;
1456 stype = STT_OBJECT;
1457 break;
1458 case TY_OWORD:
1459 ssize = 16;
1460 stype = STT_OBJECT;
1461 break;
1462 case TY_YWORD:
1463 ssize = 32;
1464 stype = STT_OBJECT;
1465 break;
1466 case TY_COMMON:
1467 ssize = 0;
1468 stype = STT_COMMON;
1469 break;
1470 case TY_SEG:
1471 ssize = 0;
1472 stype = STT_SECTION;
1473 break;
1474 case TY_EXTERN:
1475 ssize = 0;
1476 stype = STT_NOTYPE;
1477 break;
1478 case TY_EQU:
1479 ssize = 0;
1480 stype = STT_NOTYPE;
1481 break;
1482 default:
1483 ssize = 0;
1484 stype = STT_NOTYPE;
1485 break;
1487 if (stype == STT_OBJECT && lastsym && !lastsym->type) {
1488 lastsym->size = ssize;
1489 lastsym->type = stype;
1493 static void stabs32_output(int type, void *param)
1495 struct symlininfo *s;
1496 struct linelist *el;
1497 if (type == TY_STABSSYMLIN) {
1498 if (debug_immcall) {
1499 s = (struct symlininfo *)param;
1500 if (!(sects[s->section]->flags & SHF_EXECINSTR))
1501 return; /* line info is only collected for executable sections */
1502 numlinestabs++;
1503 el = (struct linelist *)nasm_malloc(sizeof(struct linelist));
1504 el->info.offset = s->offset;
1505 el->info.section = s->section;
1506 el->info.name = s->name;
1507 el->line = currentline;
1508 el->filename = stabs_filename;
1509 el->next = 0;
1510 if (stabslines) {
1511 stabslines->last->next = el;
1512 stabslines->last = el;
1513 } else {
1514 stabslines = el;
1515 stabslines->last = el;
1519 debug_immcall = 0;
1522 /* for creating the .stab , .stabstr and .rel.stab sections in memory */
1524 static void stabs32_generate(void)
1526 int i, numfiles, strsize, numstabs = 0, currfile, mainfileindex;
1527 uint8_t *sbuf, *ssbuf, *rbuf, *sptr, *rptr;
1528 char **allfiles;
1529 int *fileidx;
1531 struct linelist *ptr;
1533 ptr = stabslines;
1535 allfiles = (char **)nasm_malloc(numlinestabs * sizeof(char *));
1536 for (i = 0; i < numlinestabs; i++)
1537 allfiles[i] = 0;
1538 numfiles = 0;
1539 while (ptr) {
1540 if (numfiles == 0) {
1541 allfiles[0] = ptr->filename;
1542 numfiles++;
1543 } else {
1544 for (i = 0; i < numfiles; i++) {
1545 if (!strcmp(allfiles[i], ptr->filename))
1546 break;
1548 if (i >= numfiles) {
1549 allfiles[i] = ptr->filename;
1550 numfiles++;
1553 ptr = ptr->next;
1555 strsize = 1;
1556 fileidx = (int *)nasm_malloc(numfiles * sizeof(int));
1557 for (i = 0; i < numfiles; i++) {
1558 fileidx[i] = strsize;
1559 strsize += strlen(allfiles[i]) + 1;
1561 mainfileindex = 0;
1562 for (i = 0; i < numfiles; i++) {
1563 if (!strcmp(allfiles[i], elf_module)) {
1564 mainfileindex = i;
1565 break;
1570 * worst case size of the stab buffer would be:
1571 * the sourcefiles changes each line, which would mean 1 SOL, 1 SYMLIN per line
1572 * plus one "ending" entry
1574 sbuf = (uint8_t *)nasm_malloc((numlinestabs * 2 + 4) *
1575 sizeof(struct stabentry));
1576 ssbuf = (uint8_t *)nasm_malloc(strsize);
1577 rbuf = (uint8_t *)nasm_malloc(numlinestabs * 8 * (2 + 3));
1578 rptr = rbuf;
1580 for (i = 0; i < numfiles; i++)
1581 strcpy((char *)ssbuf + fileidx[i], allfiles[i]);
1582 ssbuf[0] = 0;
1584 stabstrlen = strsize; /* set global variable for length of stab strings */
1586 sptr = sbuf;
1587 ptr = stabslines;
1588 numstabs = 0;
1590 if (ptr) {
1592 * this is the first stab, its strx points to the filename of the
1593 * the source-file, the n_desc field should be set to the number
1594 * of remaining stabs
1596 WRITE_STAB(sptr, fileidx[0], 0, 0, 0, strlen(allfiles[0] + 12));
1598 /* this is the stab for the main source file */
1599 WRITE_STAB(sptr, fileidx[mainfileindex], N_SO, 0, 0, 0);
1601 /* relocation table entry */
1604 * Since the symbol table has two entries before
1605 * the section symbols, the index in the info.section
1606 * member must be adjusted by adding 2
1609 WRITELONG(rptr, (sptr - sbuf) - 4);
1610 WRITELONG(rptr, ((ptr->info.section + 2) << 8) | R_386_32);
1612 numstabs++;
1613 currfile = mainfileindex;
1616 while (ptr) {
1617 if (strcmp(allfiles[currfile], ptr->filename)) {
1618 /* oops file has changed... */
1619 for (i = 0; i < numfiles; i++)
1620 if (!strcmp(allfiles[i], ptr->filename))
1621 break;
1622 currfile = i;
1623 WRITE_STAB(sptr, fileidx[currfile], N_SOL, 0, 0,
1624 ptr->info.offset);
1625 numstabs++;
1627 /* relocation table entry */
1628 WRITELONG(rptr, (sptr - sbuf) - 4);
1629 WRITELONG(rptr, ((ptr->info.section + 2) << 8) | R_386_32);
1632 WRITE_STAB(sptr, 0, N_SLINE, 0, ptr->line, ptr->info.offset);
1633 numstabs++;
1635 /* relocation table entry */
1637 WRITELONG(rptr, (sptr - sbuf) - 4);
1638 WRITELONG(rptr, ((ptr->info.section + 2) << 8) | R_386_32);
1640 ptr = ptr->next;
1644 /* this is an "ending" token */
1645 WRITE_STAB(sptr, 0, N_SO, 0, 0, 0);
1646 numstabs++;
1648 ((struct stabentry *)sbuf)->n_desc = numstabs;
1650 nasm_free(allfiles);
1651 nasm_free(fileidx);
1653 stablen = (sptr - sbuf);
1654 stabrellen = (rptr - rbuf);
1655 stabrelbuf = rbuf;
1656 stabbuf = sbuf;
1657 stabstrbuf = ssbuf;
1660 static void stabs32_cleanup(void)
1662 struct linelist *ptr, *del;
1663 if (!stabslines)
1664 return;
1666 ptr = stabslines;
1667 while (ptr) {
1668 del = ptr;
1669 ptr = ptr->next;
1670 nasm_free(del);
1673 nasm_free(stabbuf);
1674 nasm_free(stabrelbuf);
1675 nasm_free(stabstrbuf);
1678 /* dwarf routines */
1680 static void dwarf32_init(void)
1682 ndebugs = 3; /* 3 debug symbols */
1685 static void dwarf32_linenum(const char *filename, int32_t linenumber,
1686 int32_t segto)
1688 (void)segto;
1689 dwarf32_findfile(filename);
1690 debug_immcall = 1;
1691 currentline = linenumber;
1694 /* called from elf_out with type == TY_DEBUGSYMLIN */
1695 static void dwarf32_output(int type, void *param)
1697 int ln, aa, inx, maxln, soc;
1698 struct symlininfo *s;
1699 struct SAA *plinep;
1701 (void)type;
1703 s = (struct symlininfo *)param;
1705 /* line number info is only gathered for executable sections */
1706 if (!(sects[s->section]->flags & SHF_EXECINSTR))
1707 return;
1709 /* Check if section index has changed */
1710 if (!(dwarf_csect && (dwarf_csect->section) == (s->section)))
1711 dwarf32_findsect(s->section);
1713 /* do nothing unless line or file has changed */
1714 if (!debug_immcall)
1715 return;
1717 ln = currentline - dwarf_csect->line;
1718 aa = s->offset - dwarf_csect->offset;
1719 inx = dwarf_clist->line;
1720 plinep = dwarf_csect->psaa;
1721 /* check for file change */
1722 if (!(inx == dwarf_csect->file)) {
1723 saa_write8(plinep,DW_LNS_set_file);
1724 saa_write8(plinep,inx);
1725 dwarf_csect->file = inx;
1727 /* check for line change */
1728 if (ln) {
1729 /* test if in range of special op code */
1730 maxln = line_base + line_range;
1731 soc = (ln - line_base) + (line_range * aa) + opcode_base;
1732 if (ln >= line_base && ln < maxln && soc < 256) {
1733 saa_write8(plinep,soc);
1734 } else {
1735 saa_write8(plinep,DW_LNS_advance_line);
1736 saa_wleb128s(plinep,ln);
1737 if (aa) {
1738 saa_write8(plinep,DW_LNS_advance_pc);
1739 saa_wleb128u(plinep,aa);
1742 dwarf_csect->line = currentline;
1743 dwarf_csect->offset = s->offset;
1746 /* show change handled */
1747 debug_immcall = 0;
1751 static void dwarf32_generate(void)
1753 uint8_t *pbuf;
1754 int indx;
1755 struct linelist *ftentry;
1756 struct SAA *paranges, *ppubnames, *pinfo, *pabbrev, *plines, *plinep;
1757 struct SAA *parangesrel, *plinesrel, *pinforel;
1758 struct sectlist *psect;
1759 size_t saalen, linepoff, totlen, highaddr;
1761 /* write epilogues for each line program range */
1762 /* and build aranges section */
1763 paranges = saa_init(1L);
1764 parangesrel = saa_init(1L);
1765 saa_write16(paranges,2); /* dwarf version */
1766 saa_write32(parangesrel, paranges->datalen+4);
1767 saa_write32(parangesrel, (dwarf_infosym << 8) + R_386_32); /* reloc to info */
1768 saa_write32(parangesrel, 0);
1769 saa_write32(paranges,0); /* offset into info */
1770 saa_write8(paranges,4); /* pointer size */
1771 saa_write8(paranges,0); /* not segmented */
1772 saa_write32(paranges,0); /* padding */
1773 /* iterate though sectlist entries */
1774 psect = dwarf_fsect;
1775 totlen = 0;
1776 highaddr = 0;
1777 for (indx = 0; indx < dwarf_nsections; indx++) {
1778 plinep = psect->psaa;
1779 /* Line Number Program Epilogue */
1780 saa_write8(plinep,2); /* std op 2 */
1781 saa_write8(plinep,(sects[psect->section]->len)-psect->offset);
1782 saa_write8(plinep,DW_LNS_extended_op);
1783 saa_write8(plinep,1); /* operand length */
1784 saa_write8(plinep,DW_LNE_end_sequence);
1785 totlen += plinep->datalen;
1786 /* range table relocation entry */
1787 saa_write32(parangesrel, paranges->datalen + 4);
1788 saa_write32(parangesrel, ((uint32_t) (psect->section + 2) << 8) + R_386_32);
1789 saa_write32(parangesrel, (uint32_t) 0);
1790 /* range table entry */
1791 saa_write32(paranges,0x0000); /* range start */
1792 saa_write32(paranges,sects[psect->section]->len); /* range length */
1793 highaddr += sects[psect->section]->len;
1794 /* done with this entry */
1795 psect = psect->next;
1797 saa_write32(paranges,0); /* null address */
1798 saa_write32(paranges,0); /* null length */
1799 saalen = paranges->datalen;
1800 arangeslen = saalen + 4;
1801 arangesbuf = pbuf = nasm_malloc(arangeslen);
1802 WRITELONG(pbuf,saalen); /* initial length */
1803 saa_rnbytes(paranges, pbuf, saalen);
1804 saa_free(paranges);
1806 /* build rela.aranges section */
1807 arangesrellen = saalen = parangesrel->datalen;
1808 arangesrelbuf = pbuf = nasm_malloc(arangesrellen);
1809 saa_rnbytes(parangesrel, pbuf, saalen);
1810 saa_free(parangesrel);
1812 /* build pubnames section */
1813 ppubnames = saa_init(1L);
1814 saa_write16(ppubnames,3); /* dwarf version */
1815 saa_write32(ppubnames,0); /* offset into info */
1816 saa_write32(ppubnames,0); /* space used in info */
1817 saa_write32(ppubnames,0); /* end of list */
1818 saalen = ppubnames->datalen;
1819 pubnameslen = saalen + 4;
1820 pubnamesbuf = pbuf = nasm_malloc(pubnameslen);
1821 WRITELONG(pbuf,saalen); /* initial length */
1822 saa_rnbytes(ppubnames, pbuf, saalen);
1823 saa_free(ppubnames);
1825 /* build info section */
1826 pinfo = saa_init(1L);
1827 pinforel = saa_init(1L);
1828 saa_write16(pinfo,2); /* dwarf version */
1829 saa_write32(pinforel, pinfo->datalen + 4);
1830 saa_write32(pinforel, (dwarf_abbrevsym << 8) + R_386_32); /* reloc to abbrev */
1831 saa_write32(pinforel, 0);
1832 saa_write32(pinfo,0); /* offset into abbrev */
1833 saa_write8(pinfo,4); /* pointer size */
1834 saa_write8(pinfo,1); /* abbrviation number LEB128u */
1835 saa_write32(pinforel, pinfo->datalen + 4);
1836 saa_write32(pinforel, ((dwarf_fsect->section + 2) << 8) + R_386_32);
1837 saa_write32(pinforel, 0);
1838 saa_write32(pinfo,0); /* DW_AT_low_pc */
1839 saa_write32(pinforel, pinfo->datalen + 4);
1840 saa_write32(pinforel, ((dwarf_fsect->section + 2) << 8) + R_386_32);
1841 saa_write32(pinforel, 0);
1842 saa_write32(pinfo,highaddr); /* DW_AT_high_pc */
1843 saa_write32(pinforel, pinfo->datalen + 4);
1844 saa_write32(pinforel, (dwarf_linesym << 8) + R_386_32); /* reloc to line */
1845 saa_write32(pinforel, 0);
1846 saa_write32(pinfo,0); /* DW_AT_stmt_list */
1847 saa_wbytes(pinfo, elf_module, strlen(elf_module)+1);
1848 saa_wbytes(pinfo, nasm_signature, strlen(nasm_signature)+1);
1849 saa_write16(pinfo,DW_LANG_Mips_Assembler);
1850 saa_write8(pinfo,2); /* abbrviation number LEB128u */
1851 saa_write32(pinforel, pinfo->datalen + 4);
1852 saa_write32(pinforel, ((dwarf_fsect->section + 2) << 8) + R_386_32);
1853 saa_write32(pinforel, 0);
1854 saa_write32(pinfo,0); /* DW_AT_low_pc */
1855 saa_write32(pinfo,0); /* DW_AT_frame_base */
1856 saa_write8(pinfo,0); /* end of entries */
1857 saalen = pinfo->datalen;
1858 infolen = saalen + 4;
1859 infobuf = pbuf = nasm_malloc(infolen);
1860 WRITELONG(pbuf,saalen); /* initial length */
1861 saa_rnbytes(pinfo, pbuf, saalen);
1862 saa_free(pinfo);
1864 /* build rela.info section */
1865 inforellen = saalen = pinforel->datalen;
1866 inforelbuf = pbuf = nasm_malloc(inforellen);
1867 saa_rnbytes(pinforel, pbuf, saalen);
1868 saa_free(pinforel);
1870 /* build abbrev section */
1871 pabbrev = saa_init(1L);
1872 saa_write8(pabbrev,1); /* entry number LEB128u */
1873 saa_write8(pabbrev,DW_TAG_compile_unit); /* tag LEB128u */
1874 saa_write8(pabbrev,1); /* has children */
1875 /* the following attributes and forms are all LEB128u values */
1876 saa_write8(pabbrev,DW_AT_low_pc);
1877 saa_write8(pabbrev,DW_FORM_addr);
1878 saa_write8(pabbrev,DW_AT_high_pc);
1879 saa_write8(pabbrev,DW_FORM_addr);
1880 saa_write8(pabbrev,DW_AT_stmt_list);
1881 saa_write8(pabbrev,DW_FORM_data4);
1882 saa_write8(pabbrev,DW_AT_name);
1883 saa_write8(pabbrev,DW_FORM_string);
1884 saa_write8(pabbrev,DW_AT_producer);
1885 saa_write8(pabbrev,DW_FORM_string);
1886 saa_write8(pabbrev,DW_AT_language);
1887 saa_write8(pabbrev,DW_FORM_data2);
1888 saa_write16(pabbrev,0); /* end of entry */
1889 /* LEB128u usage same as above */
1890 saa_write8(pabbrev,2); /* entry number */
1891 saa_write8(pabbrev,DW_TAG_subprogram);
1892 saa_write8(pabbrev,0); /* no children */
1893 saa_write8(pabbrev,DW_AT_low_pc);
1894 saa_write8(pabbrev,DW_FORM_addr);
1895 saa_write8(pabbrev,DW_AT_frame_base);
1896 saa_write8(pabbrev,DW_FORM_data4);
1897 saa_write16(pabbrev,0); /* end of entry */
1898 abbrevlen = saalen = pabbrev->datalen;
1899 abbrevbuf = pbuf = nasm_malloc(saalen);
1900 saa_rnbytes(pabbrev, pbuf, saalen);
1901 saa_free(pabbrev);
1903 /* build line section */
1904 /* prolog */
1905 plines = saa_init(1L);
1906 saa_write8(plines,1); /* Minimum Instruction Length */
1907 saa_write8(plines,1); /* Initial value of 'is_stmt' */
1908 saa_write8(plines,line_base); /* Line Base */
1909 saa_write8(plines,line_range); /* Line Range */
1910 saa_write8(plines,opcode_base); /* Opcode Base */
1911 /* standard opcode lengths (# of LEB128u operands) */
1912 saa_write8(plines,0); /* Std opcode 1 length */
1913 saa_write8(plines,1); /* Std opcode 2 length */
1914 saa_write8(plines,1); /* Std opcode 3 length */
1915 saa_write8(plines,1); /* Std opcode 4 length */
1916 saa_write8(plines,1); /* Std opcode 5 length */
1917 saa_write8(plines,0); /* Std opcode 6 length */
1918 saa_write8(plines,0); /* Std opcode 7 length */
1919 saa_write8(plines,0); /* Std opcode 8 length */
1920 saa_write8(plines,1); /* Std opcode 9 length */
1921 saa_write8(plines,0); /* Std opcode 10 length */
1922 saa_write8(plines,0); /* Std opcode 11 length */
1923 saa_write8(plines,1); /* Std opcode 12 length */
1924 /* Directory Table */
1925 saa_write8(plines,0); /* End of table */
1926 /* File Name Table */
1927 ftentry = dwarf_flist;
1928 for (indx = 0; indx < dwarf_numfiles; indx++) {
1929 saa_wbytes(plines, ftentry->filename, (int32_t)(strlen(ftentry->filename) + 1));
1930 saa_write8(plines,0); /* directory LEB128u */
1931 saa_write8(plines,0); /* time LEB128u */
1932 saa_write8(plines,0); /* size LEB128u */
1933 ftentry = ftentry->next;
1935 saa_write8(plines,0); /* End of table */
1936 linepoff = plines->datalen;
1937 linelen = linepoff + totlen + 10;
1938 linebuf = pbuf = nasm_malloc(linelen);
1939 WRITELONG(pbuf,linelen-4); /* initial length */
1940 WRITESHORT(pbuf,3); /* dwarf version */
1941 WRITELONG(pbuf,linepoff); /* offset to line number program */
1942 /* write line header */
1943 saalen = linepoff;
1944 saa_rnbytes(plines, pbuf, saalen); /* read a given no. of bytes */
1945 pbuf += linepoff;
1946 saa_free(plines);
1947 /* concatonate line program ranges */
1948 linepoff += 13;
1949 plinesrel = saa_init(1L);
1950 psect = dwarf_fsect;
1951 for (indx = 0; indx < dwarf_nsections; indx++) {
1952 saa_write32(plinesrel, linepoff);
1953 saa_write32(plinesrel, ((uint32_t) (psect->section + 2) << 8) + R_386_32);
1954 saa_write32(plinesrel, (uint32_t) 0);
1955 plinep = psect->psaa;
1956 saalen = plinep->datalen;
1957 saa_rnbytes(plinep, pbuf, saalen);
1958 pbuf += saalen;
1959 linepoff += saalen;
1960 saa_free(plinep);
1961 /* done with this entry */
1962 psect = psect->next;
1966 /* build rela.lines section */
1967 linerellen =saalen = plinesrel->datalen;
1968 linerelbuf = pbuf = nasm_malloc(linerellen);
1969 saa_rnbytes(plinesrel, pbuf, saalen);
1970 saa_free(plinesrel);
1972 /* build frame section */
1973 framelen = 4;
1974 framebuf = pbuf = nasm_malloc(framelen);
1975 WRITELONG(pbuf,framelen-4); /* initial length */
1977 /* build loc section */
1978 loclen = 16;
1979 locbuf = pbuf = nasm_malloc(loclen);
1980 WRITELONG(pbuf,0); /* null beginning offset */
1981 WRITELONG(pbuf,0); /* null ending offset */
1984 static void dwarf32_cleanup(void)
1986 nasm_free(arangesbuf);
1987 nasm_free(arangesrelbuf);
1988 nasm_free(pubnamesbuf);
1989 nasm_free(infobuf);
1990 nasm_free(inforelbuf);
1991 nasm_free(abbrevbuf);
1992 nasm_free(linebuf);
1993 nasm_free(linerelbuf);
1994 nasm_free(framebuf);
1995 nasm_free(locbuf);
1998 static void dwarf32_findfile(const char * fname)
2000 int finx;
2001 struct linelist *match;
2003 /* return if fname is current file name */
2004 if (dwarf_clist && !(strcmp(fname, dwarf_clist->filename)))
2005 return;
2007 /* search for match */
2008 match = 0;
2009 if (dwarf_flist) {
2010 match = dwarf_flist;
2011 for (finx = 0; finx < dwarf_numfiles; finx++) {
2012 if (!(strcmp(fname, match->filename))) {
2013 dwarf_clist = match;
2014 return;
2019 /* add file name to end of list */
2020 dwarf_clist = (struct linelist *)nasm_malloc(sizeof(struct linelist));
2021 dwarf_numfiles++;
2022 dwarf_clist->line = dwarf_numfiles;
2023 dwarf_clist->filename = nasm_malloc(strlen(fname) + 1);
2024 strcpy(dwarf_clist->filename,fname);
2025 dwarf_clist->next = 0;
2026 if (!dwarf_flist) { /* if first entry */
2027 dwarf_flist = dwarf_elist = dwarf_clist;
2028 dwarf_clist->last = 0;
2029 } else { /* chain to previous entry */
2030 dwarf_elist->next = dwarf_clist;
2031 dwarf_elist = dwarf_clist;
2035 static void dwarf32_findsect(const int index)
2037 int sinx;
2038 struct sectlist *match;
2039 struct SAA *plinep;
2041 /* return if index is current section index */
2042 if (dwarf_csect && (dwarf_csect->section == index))
2043 return;
2045 /* search for match */
2046 match = 0;
2047 if (dwarf_fsect) {
2048 match = dwarf_fsect;
2049 for (sinx = 0; sinx < dwarf_nsections; sinx++) {
2050 if (match->section == index) {
2051 dwarf_csect = match;
2052 return;
2054 match = match->next;
2058 /* add entry to end of list */
2059 dwarf_csect = (struct sectlist *)nasm_malloc(sizeof(struct sectlist));
2060 dwarf_nsections++;
2061 dwarf_csect->psaa = plinep = saa_init(1L);
2062 dwarf_csect->line = 1;
2063 dwarf_csect->offset = 0;
2064 dwarf_csect->file = 1;
2065 dwarf_csect->section = index;
2066 dwarf_csect->next = 0;
2067 /* set relocatable address at start of line program */
2068 saa_write8(plinep,DW_LNS_extended_op);
2069 saa_write8(plinep,5); /* operand length */
2070 saa_write8(plinep,DW_LNE_set_address);
2071 saa_write32(plinep,0); /* Start Address */
2073 if (!dwarf_fsect) { /* if first entry */
2074 dwarf_fsect = dwarf_esect = dwarf_csect;
2075 dwarf_csect->last = 0;
2076 } else { /* chain to previous entry */
2077 dwarf_esect->next = dwarf_csect;
2078 dwarf_esect = dwarf_csect;
2082 #endif /* OF_ELF */