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
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 * outmac64.c output routines for the Netwide Assembler to produce
36 * NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (x86_64) object files
39 /* Most of this file is, like Mach-O itself, based on a.out. For more
40 * guidelines see outaout.c. */
54 #include "output/outform.h"
55 #include "output/outlib.h"
57 #if defined(OF_MACHO64)
59 /* Mach-O in-file header structure sizes */
60 #define MACHO_HEADER64_SIZE (32)
61 #define MACHO_SEGCMD64_SIZE (72)
62 #define MACHO_SECTCMD64_SIZE (80)
63 #define MACHO_SYMCMD_SIZE (24)
64 #define MACHO_NLIST64_SIZE (16)
65 #define MACHO_RELINFO64_SIZE (8)
67 /* Mach-O file header values */
68 #define MH_MAGIC_64 (0xfeedfacf)
69 #define CPU_TYPE_X86_64 (0x01000007) /* x86-64 platform */
70 #define CPU_SUBTYPE_I386_ALL (3) /* all-x86 compatible */
71 #define MH_OBJECT (0x1) /* object file */
73 #define LC_SEGMENT_64 (0x19) /* segment load command */
74 #define LC_SYMTAB (0x2) /* symbol table load command */
76 #define VM_PROT_NONE (0x00)
77 #define VM_PROT_READ (0x01)
78 #define VM_PROT_WRITE (0x02)
79 #define VM_PROT_EXECUTE (0x04)
81 #define VM_PROT_DEFAULT (VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE)
82 #define VM_PROT_ALL (VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE)
85 /* nasm internal data */
92 /* data that goes into the file */
93 char sectname
[16]; /* what this section is called */
94 char segname
[16]; /* segment this section will be in */
95 uint64_t addr
; /* in-memory address (subject to alignment) */
96 uint64_t size
; /* in-memory and -file size */
97 uint32_t nreloc
; /* relocation entry count */
98 uint32_t flags
; /* type and attributes (masked) */
99 uint32_t extreloc
; /* external relocations */
102 #define SECTION_TYPE 0x000000ff /* section type mask */
104 #define S_REGULAR (0x0) /* standard section */
105 #define S_ZEROFILL (0x1) /* zerofill, in-memory only */
107 #define SECTION_ATTRIBUTES_SYS 0x00ffff00 /* system setable attributes */
108 #define S_ATTR_SOME_INSTRUCTIONS 0x00000400 /* section contains some
109 machine instructions */
110 #define S_ATTR_EXT_RELOC 0x00000200 /* section has external
111 relocation entries */
112 #define S_ATTR_LOC_RELOC 0x00000100 /* section has local
113 relocation entries */
114 #define S_ATTR_PURE_INSTRUCTIONS 0x80000000 /* section uses pure
115 machine instructions */
117 static struct sectmap
{
118 const char *nasmsect
;
120 const char *sectname
;
123 {".text", "__TEXT", "__text", S_REGULAR
|S_ATTR_SOME_INSTRUCTIONS
|S_ATTR_PURE_INSTRUCTIONS
},
124 {".data", "__DATA", "__data", S_REGULAR
},
125 {".rodata", "__DATA", "__const", S_REGULAR
},
126 {".bss", "__DATA", "__bss", S_ZEROFILL
},
127 {NULL
, NULL
, NULL
, 0}
131 /* nasm internal data */
134 /* data that goes into the file */
135 int32_t addr
; /* op's offset in section */
136 uint32_t snum
:24, /* contains symbol index if
137 ** ext otherwise in-file
139 pcrel
:1, /* relative relocation */
140 length
:2, /* 0=byte, 1=word, 2=int32_t, 3=int64_t */
141 ext
:1, /* external symbol referenced */
142 type
:4; /* reloc type */
145 #define R_ABS 0 /* absolute relocation */
146 #define R_SCATTERED 0x80000000 /* reloc entry is scattered if
147 ** highest bit == 1 */
150 /* nasm internal data */
151 struct symbol
*next
; /* next symbol in the list */
152 char *name
; /* name of this symbol */
153 int32_t initial_snum
; /* symbol number used above in
155 int32_t snum
; /* true snum for reloc */
157 /* data that goes into the file */
158 uint32_t strx
; /* string table index */
159 uint8_t type
; /* symbol type */
160 uint8_t sect
; /* NO_SECT or section number */
161 uint16_t desc
; /* for stab debugging, 0 for us */
162 uint64_t value
; /* offset of symbol in section */
165 /* symbol type bits */
166 #define N_EXT 0x01 /* global or external symbol */
168 #define N_UNDF 0x0 /* undefined symbol | n_sect == */
169 #define N_ABS 0x2 /* absolute symbol | NO_SECT */
170 #define N_SECT 0xe /* defined symbol, n_sect holds
173 #define N_TYPE 0x0e /* type bit mask */
175 #define DEFAULT_SECTION_ALIGNMENT 0 /* byte (i.e. no) alignment */
177 /* special section number values */
178 #define NO_SECT 0 /* no section, invalid */
179 #define MAX_SECT 255 /* maximum number of sections */
181 static struct section
*sects
, **sectstail
;
182 static struct symbol
*syms
, **symstail
;
183 static uint32_t nsyms
;
185 /* These variables are set by macho_layout_symbols() to organize
186 the symbol table and string table in order the dynamic linker
187 expects. They are then used in macho_write() to put out the
188 symbols and strings in that order.
190 The order of the symbol table is:
192 defined external symbols (sorted by name)
193 undefined external symbols (sorted by name)
195 The order of the string table is:
196 strings for external symbols
197 strings for local symbols
199 static uint32_t ilocalsym
= 0;
200 static uint32_t iextdefsym
= 0;
201 static uint32_t iundefsym
= 0;
202 static uint32_t nlocalsym
;
203 static uint32_t nextdefsym
;
204 static uint32_t nundefsym
;
205 static struct symbol
**extdefsyms
= NULL
;
206 static struct symbol
**undefsyms
= NULL
;
208 static struct RAA
*extsyms
;
209 static struct SAA
*strs
;
210 static uint32_t strslen
;
212 extern struct ofmt of_macho64
;
214 /* Global file information. This should be cleaned up into either
215 a structure or as function arguments. */
216 uint32_t head_ncmds64
= 0;
217 uint32_t head_sizeofcmds64
= 0;
218 uint64_t seg_filesize64
= 0;
219 uint64_t seg_vmsize64
= 0;
220 uint32_t seg_nsects64
= 0;
221 uint64_t rel_padcnt64
= 0;
224 #define xstrncpy(xdst, xsrc) \
225 memset(xdst, '\0', sizeof(xdst)); /* zero out whole buffer */ \
226 strncpy(xdst, xsrc, sizeof(xdst)); /* copy over string */ \
227 xdst[sizeof(xdst) - 1] = '\0'; /* proper null-termination */
229 #define alignint32_t(x) \
230 ALIGN(x, sizeof(int32_t)) /* align x to int32_t boundary */
232 #define alignint64_t(x) \
233 ALIGN(x, sizeof(int64_t)) /* align x to int64_t boundary */
235 static void debug_reloc (struct reloc
*);
236 static void debug_section_relocs (struct section
*) _unused
;
238 static struct section
*get_section_by_name(const char *segname
,
239 const char *sectname
)
243 for (s
= sects
; s
!= NULL
; s
= s
->next
)
244 if (!strcmp(s
->segname
, segname
) && !strcmp(s
->sectname
, sectname
))
250 static struct section
*get_section_by_index(const int32_t index
)
254 for (s
= sects
; s
!= NULL
; s
= s
->next
)
255 if (index
== s
->index
)
261 static int32_t get_section_index_by_name(const char *segname
,
262 const char *sectname
)
266 for (s
= sects
; s
!= NULL
; s
= s
->next
)
267 if (!strcmp(s
->segname
, segname
) && !strcmp(s
->sectname
, sectname
))
273 static char *get_section_name_by_index(const int32_t index
)
277 for (s
= sects
; s
!= NULL
; s
= s
->next
)
278 if (index
== s
->index
)
284 static uint8_t get_section_fileindex_by_index(const int32_t index
)
289 for (s
= sects
; s
!= NULL
&& i
< MAX_SECT
; s
= s
->next
, ++i
)
290 if (index
== s
->index
)
294 nasm_error(ERR_WARNING
,
295 "too many sections (>255) - clipped by fileindex");
300 static struct symbol
*get_closest_section_symbol_by_offset(uint8_t fileindex
, int64_t offset
)
302 struct symbol
*nearest
= NULL
;
305 for (sym
= syms
; sym
; sym
= sym
->next
) {
306 if ((sym
->sect
!= NO_SECT
) && (sym
->sect
== fileindex
)) {
307 if ((int64_t)sym
->value
> offset
)
317 * Special section numbers which are used to define Mach-O special
318 * symbols, which can be used with WRT to provide PIC relocation
321 static int32_t macho_gotpcrel_sect
;
323 static void macho_init(void)
339 extsyms
= raa_init();
342 /* string table starts with a zero byte - don't ask why */
343 saa_wbytes(strs
, &zero
, sizeof(char));
346 /* add special symbol for ..gotpcrel */
347 macho_gotpcrel_sect
= seg_alloc();
348 macho_gotpcrel_sect
++;
349 define_label("..gotpcrel", macho_gotpcrel_sect
, 0L, NULL
, false, false);
352 static void sect_write(struct section
*sect
,
353 const uint8_t *data
, uint32_t len
)
355 saa_wbytes(sect
->data
, data
, len
);
359 static int32_t add_reloc(struct section
*sect
, int32_t section
,
360 int pcrel
, int bytes
, int64_t reloff
)
365 int32_t adjustment
= 0;
367 /* NeXT as puts relocs in reversed order (address-wise) into the
368 ** files, so we do the same, doesn't seem to make much of a
369 ** difference either way */
370 r
= nasm_malloc(sizeof(struct reloc
));
371 r
->next
= sect
->relocs
;
374 /* the current end of the section will be the symbol's address for
375 ** now, might have to be fixed by macho_fixup_relocs() later on. make
376 ** sure we don't make the symbol scattered by setting the highest
377 ** bit by accident */
378 r
->addr
= sect
->size
& ~R_SCATTERED
;
380 r
->pcrel
= (pcrel
? 1 : 0);
382 /* match byte count 1, 2, 4, 8 to length codes 0, 1, 2, 3 respectively */
400 /* set default relocation values */
401 r
->type
= 0; // X86_64_RELOC_UNSIGNED
402 r
->snum
= R_ABS
; // Absolute Symbol (indicates no relocation)
404 /* absolute relocation */
408 if (section
== NO_SEG
) {
409 // r->snum = R_ABS; // Set above
413 fi
= get_section_fileindex_by_index(section
);
417 r
->snum
= raa_read(extsyms
, section
);
421 sym
= get_closest_section_symbol_by_offset(fi
, reloff
);
422 r
->snum
= sym
->initial_snum
;
423 adjustment
= sym
->value
;
427 /* relative relocation */
428 } else if (pcrel
== 1) {
431 if (section
== NO_SEG
) {
432 r
->type
= 1; // X86_64_RELOC_SIGNED
436 r
->type
= 2; // X86_64_RELOC_BRANCH
437 fi
= get_section_fileindex_by_index(section
);
442 r
->snum
= raa_read(extsyms
, section
);
446 sym
= get_closest_section_symbol_by_offset(fi
, reloff
);
447 r
->snum
= sym
->initial_snum
;
448 adjustment
= sym
->value
;
453 } else if (pcrel
== 2) {
455 r
->type
= 5; // X86_64_RELOC_SUBTRACTOR
458 } else if (pcrel
== 3) {
459 r
->type
= 4; // X86_64_RELOC_GOT
460 r
->snum
= macho_gotpcrel_sect
;
462 /* gotpcrel MOVQ load */
463 } else if (pcrel
== 4) {
464 r
->type
= 3; // X86_64_RELOC_GOT_LOAD
465 r
->snum
= macho_gotpcrel_sect
;
473 static void macho_output(int32_t secto
, const void *data
,
474 enum out_type type
, uint64_t size
,
475 int32_t section
, int32_t wrt
)
477 struct section
*s
, *sbss
;
479 uint8_t mydata
[16], *p
, gotload
;
481 if (secto
== NO_SEG
) {
482 if (type
!= OUT_RESERVE
)
483 nasm_error(ERR_NONFATAL
, "attempt to assemble code in "
489 s
= get_section_by_index(secto
);
492 nasm_error(ERR_WARNING
, "attempt to assemble code in"
493 " section %d: defaulting to `.text'", secto
);
494 s
= get_section_by_name("__TEXT", "__text");
496 /* should never happen */
498 nasm_error(ERR_PANIC
, "text section not found");
501 sbss
= get_section_by_name("__DATA", "__bss");
503 if (s
== sbss
&& type
!= OUT_RESERVE
) {
504 nasm_error(ERR_WARNING
, "attempt to initialize memory in the"
505 " BSS section: ignored");
506 s
->size
+= realsize(type
, size
);
513 nasm_error(ERR_WARNING
, "uninitialized space declared in"
514 " %s section: zeroing",
515 get_section_name_by_index(secto
));
517 sect_write(s
, NULL
, size
);
524 if (section
!= NO_SEG
)
525 nasm_error(ERR_PANIC
, "OUT_RAWDATA with other than NO_SEG");
527 sect_write(s
, data
, size
);
532 int asize
= abs(size
);
534 addr
= *(int64_t *)data
;
535 if (section
!= NO_SEG
) {
537 nasm_error(ERR_NONFATAL
, "Mach-O format does not support"
538 " section base references");
542 nasm_error(ERR_NONFATAL
, "Mach-O 64-bit format does not support"
543 " 32-bit absolute addresses");
545 Seemingly, Mach-O's X86_64_RELOC_SUBTRACTOR would require
546 pre-determined knowledge of where the image base would be,
547 making it impractical for use in intermediate object files
550 addr
-= add_reloc(s
, section
, 0, asize
, addr
); // X86_64_RELOC_UNSIGNED
553 nasm_error(ERR_NONFATAL
, "Mach-O format does not support"
560 WRITEADDR(p
, addr
, asize
);
561 sect_write(s
, mydata
, asize
);
567 WRITESHORT(p
, *(int64_t *)data
);
569 if (section
== secto
)
570 nasm_error(ERR_PANIC
, "intra-section OUT_REL2ADR");
572 if (section
== NO_SEG
) {
574 } else if (section
% 2) {
575 nasm_error(ERR_NONFATAL
, "Mach-O format does not support"
576 " section base references");
578 nasm_error(ERR_NONFATAL
, "Unsupported non-32-bit"
579 " Macho-O relocation [2]");
582 sect_write(s
, mydata
, 2L);
587 WRITELONG(p
, *(int64_t *)data
+ 4 - size
);
589 if (section
== secto
)
590 nasm_error(ERR_PANIC
, "intra-section OUT_REL4ADR");
592 if (section
!= NO_SEG
&& section
% 2) {
593 nasm_error(ERR_NONFATAL
, "Mach-O format does not support"
594 " section base references");
597 *mydata
-= add_reloc(s
, section
, 1, 4, (int64_t)*mydata
); // X86_64_RELOC_SIGNED/BRANCH
598 } else if (wrt
== macho_gotpcrel_sect
) {
599 if (s
->data
->datalen
> 1) {
600 saa_fread(s
->data
, s
->data
->datalen
-2, &gotload
, 1); // Retrieve Instruction Opcode
604 if (gotload
== 0x8B) { // Check for MOVQ Opcode
605 *mydata
-= add_reloc(s
, section
, 4, 4, (int64_t)*mydata
); // X86_64_GOT_LOAD (MOVQ load)
607 *mydata
-= add_reloc(s
, section
, 3, 4, (int64_t)*mydata
); // X86_64_GOT
610 nasm_error(ERR_NONFATAL
, "Mach-O format does not support"
612 wrt
= NO_SEG
; /* we can at least _try_ to continue */
616 sect_write(s
, mydata
, 4L);
620 nasm_error(ERR_PANIC
, "unknown output type?");
625 static int32_t macho_section(char *name
, int pass
, int *bits
)
627 int32_t index
, originalIndex
;
628 char *sectionAttributes
;
634 /* Default to 64 bits. */
638 sectionAttributes
= NULL
;
640 sectionAttributes
= name
;
641 name
= nasm_strsep(§ionAttributes
, " \t");
644 for (sm
= sectmap
; sm
->nasmsect
!= NULL
; ++sm
) {
645 /* make lookup into section name translation table */
646 if (!strcmp(name
, sm
->nasmsect
)) {
647 char *currentAttribute
;
649 /* try to find section with that name */
650 originalIndex
= index
= get_section_index_by_name(sm
->segname
,
653 /* create it if it doesn't exist yet */
655 s
= *sectstail
= nasm_malloc(sizeof(struct section
));
657 sectstail
= &s
->next
;
659 s
->data
= saa_init(1L);
660 s
->index
= seg_alloc();
664 xstrncpy(s
->segname
, sm
->segname
);
665 xstrncpy(s
->sectname
, sm
->sectname
);
668 s
->flags
= sm
->flags
;
672 s
= get_section_by_index(index
);
675 while ((NULL
!= sectionAttributes
)
676 && (currentAttribute
= nasm_strsep(§ionAttributes
, " \t"))) {
677 if (0 != *currentAttribute
) {
678 if (!nasm_strnicmp("align=", currentAttribute
, 6)) {
680 int newAlignment
, value
;
682 value
= strtoul(currentAttribute
+ 6, (char**)&end
, 0);
683 newAlignment
= alignlog2_32(value
);
686 nasm_error(ERR_PANIC
,
687 "unknown or missing alignment value \"%s\" "
688 "specified for section \"%s\"",
689 currentAttribute
+ 6,
692 } else if (0 > newAlignment
) {
693 nasm_error(ERR_PANIC
,
694 "alignment of %d (for section \"%s\") is not "
701 if ((-1 != originalIndex
)
702 && (s
->align
!= newAlignment
)
703 && (s
->align
!= -1)) {
704 nasm_error(ERR_PANIC
,
705 "section \"%s\" has already been specified "
706 "with alignment %d, conflicts with new "
714 s
->align
= newAlignment
;
715 } else if (!nasm_stricmp("data", currentAttribute
)) {
716 /* Do nothing; 'data' is implicit */
718 nasm_error(ERR_PANIC
,
719 "unknown section attribute %s for section %s",
731 nasm_error(ERR_PANIC
, "invalid section name %s", name
);
735 static void macho_symdef(char *name
, int32_t section
, int64_t offset
,
736 int is_global
, char *special
)
741 nasm_error(ERR_NONFATAL
, "The Mach-O output format does "
742 "not support any special symbol types");
746 if (is_global
== 3) {
747 nasm_error(ERR_NONFATAL
, "The Mach-O format does not "
748 "(yet) support forward reference fixups.");
752 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
754 * This is a NASM special symbol. We never allow it into
755 * the Macho-O symbol table, even if it's a valid one. If it
756 * _isn't_ a valid one, we should barf immediately.
758 if (strcmp(name
, "..gotpcrel"))
759 nasm_error(ERR_NONFATAL
, "unrecognized special symbol `%s'", name
);
763 sym
= *symstail
= nasm_malloc(sizeof(struct symbol
));
765 symstail
= &sym
->next
;
772 sym
->initial_snum
= -1;
774 /* external and common symbols get N_EXT */
775 if (is_global
!= 0) {
779 if (section
== NO_SEG
) {
780 /* symbols in no section get absolute */
786 /* get the in-file index of the section the symbol was defined in */
787 sym
->sect
= get_section_fileindex_by_index(section
);
789 /* track the initially allocated symbol number for use in future fix-ups */
790 sym
->initial_snum
= nsyms
;
792 if (sym
->sect
== NO_SECT
) {
794 /* remember symbol number of references to external
795 ** symbols, this works because every external symbol gets
796 ** its own section number allocated internally by nasm and
797 ** can so be used as a key */
798 extsyms
= raa_write(extsyms
, section
, nsyms
);
803 /* there isn't actually a difference between global
804 ** and common symbols, both even have their size in
810 /* give an error on unfound section if it's not an
811 ** external or common symbol (assemble_file() does a
812 ** seg_alloc() on every call for them) */
813 nasm_error(ERR_PANIC
, "in-file index for section %d not found",
821 static void macho_sectalign(int32_t seg
, unsigned int value
)
825 list_for_each(s
, sects
) {
830 if (!s
|| !is_power2(value
))
833 value
= alignlog2_32(value
);
834 if (s
->align
< (int)value
)
838 static int32_t macho_segbase(int32_t section
)
843 static void macho_filename(char *inname
, char *outname
)
845 standard_extension(inname
, outname
, ".o");
848 extern macros_t macho_stdmac
[];
850 /* Comparison function for qsort symbol layout. */
851 static int layout_compare (const struct symbol
**s1
,
852 const struct symbol
**s2
)
854 return (strcmp ((*s1
)->name
, (*s2
)->name
));
857 /* The native assembler does a few things in a similar function
859 * Remove temporary labels
860 * Sort symbols according to local, external, undefined (by name)
861 * Order the string table
863 We do not remove temporary labels right now.
865 numsyms is the total number of symbols we have. strtabsize is the
866 number entries in the string table. */
868 static void macho_layout_symbols (uint32_t *numsyms
,
869 uint32_t *strtabsize
)
871 struct symbol
*sym
, **symp
;
875 *strtabsize
= sizeof (char);
879 while ((sym
= *symp
)) {
880 /* Undefined symbols are now external. */
881 if (sym
->type
== N_UNDF
)
884 if ((sym
->type
& N_EXT
) == 0) {
885 sym
->snum
= *numsyms
;
886 *numsyms
= *numsyms
+ 1;
890 if ((sym
->type
& N_TYPE
) != N_UNDF
) {
896 /* If we handle debug info we'll want
897 to check for it here instead of just
898 adding the symbol to the string table. */
899 sym
->strx
= *strtabsize
;
900 saa_wbytes (strs
, sym
->name
, (int32_t)(strlen(sym
->name
) + 1));
901 *strtabsize
+= strlen(sym
->name
) + 1;
906 /* Next, sort the symbols. Most of this code is a direct translation from
907 the Apple cctools symbol layout. We need to keep compatibility with that. */
908 /* Set the indexes for symbol groups into the symbol table */
910 iextdefsym
= nlocalsym
;
911 iundefsym
= nlocalsym
+ nextdefsym
;
913 /* allocate arrays for sorting externals by name */
914 extdefsyms
= nasm_malloc(nextdefsym
* sizeof(struct symbol
*));
915 undefsyms
= nasm_malloc(nundefsym
* sizeof(struct symbol
*));
922 while ((sym
= *symp
)) {
924 if((sym
->type
& N_EXT
) == 0) {
925 sym
->strx
= *strtabsize
;
926 saa_wbytes (strs
, sym
->name
, (int32_t)(strlen (sym
->name
) + 1));
927 *strtabsize
+= strlen(sym
->name
) + 1;
930 if((sym
->type
& N_TYPE
) != N_UNDF
) {
931 extdefsyms
[i
++] = sym
;
933 undefsyms
[j
++] = sym
;
939 qsort(extdefsyms
, nextdefsym
, sizeof(struct symbol
*),
940 (int (*)(const void *, const void *))layout_compare
);
941 qsort(undefsyms
, nundefsym
, sizeof(struct symbol
*),
942 (int (*)(const void *, const void *))layout_compare
);
944 for(i
= 0; i
< nextdefsym
; i
++) {
945 extdefsyms
[i
]->snum
= *numsyms
;
948 for(j
= 0; j
< nundefsym
; j
++) {
949 undefsyms
[j
]->snum
= *numsyms
;
954 /* Calculate some values we'll need for writing later. */
956 static void macho_calculate_sizes (void)
960 /* count sections and calculate in-memory and in-file offsets */
961 for (s
= sects
; s
!= NULL
; s
= s
->next
) {
964 /* zerofill sections aren't actually written to the file */
965 if ((s
->flags
& SECTION_TYPE
) != S_ZEROFILL
)
966 seg_filesize64
+= s
->size
;
968 /* recalculate segment address based on alignment and vm size */
969 s
->addr
= seg_vmsize64
;
970 /* we need section alignment to calculate final section address */
972 s
->align
= DEFAULT_SECTION_ALIGNMENT
;
974 uint64_t newaddr
= ALIGN(s
->addr
, 1 << s
->align
);
975 pad
= newaddr
- s
->addr
;
979 seg_vmsize64
+= s
->size
+ pad
;
983 /* calculate size of all headers, load commands and sections to
984 ** get a pointer to the start of all the raw data */
985 if (seg_nsects64
> 0) {
988 MACHO_SEGCMD64_SIZE
+ seg_nsects64
* MACHO_SECTCMD64_SIZE
;
993 head_sizeofcmds64
+= MACHO_SYMCMD_SIZE
;
997 /* Write out the header information for the file. */
999 static void macho_write_header (void)
1001 fwriteint32_t(MH_MAGIC_64
, ofile
); /* magic */
1002 fwriteint32_t(CPU_TYPE_X86_64
, ofile
); /* CPU type */
1003 fwriteint32_t(CPU_SUBTYPE_I386_ALL
, ofile
); /* CPU subtype */
1004 fwriteint32_t(MH_OBJECT
, ofile
); /* Mach-O file type */
1005 fwriteint32_t(head_ncmds64
, ofile
); /* number of load commands */
1006 fwriteint32_t(head_sizeofcmds64
, ofile
); /* size of load commands */
1007 fwriteint32_t(0, ofile
); /* no flags */
1008 fwriteint32_t(0, ofile
); /* reserved for future use */
1011 /* Write out the segment load command at offset. */
1013 static uint32_t macho_write_segment (uint64_t offset
)
1015 uint64_t rel_base
= alignint64_t (offset
+ seg_filesize64
);
1016 uint32_t s_reloff
= 0;
1019 fwriteint32_t(LC_SEGMENT_64
, ofile
); /* cmd == LC_SEGMENT_64 */
1021 /* size of load command including section load commands */
1022 fwriteint32_t(MACHO_SEGCMD64_SIZE
+ seg_nsects64
*
1023 MACHO_SECTCMD64_SIZE
, ofile
);
1025 /* in an MH_OBJECT file all sections are in one unnamed (name
1026 ** all zeros) segment */
1027 fwritezero(16, ofile
);
1028 fwriteint64_t(0, ofile
); /* in-memory offset */
1029 fwriteint64_t(seg_vmsize64
, ofile
); /* in-memory size */
1030 fwriteint64_t(offset
, ofile
); /* in-file offset to data */
1031 fwriteint64_t(seg_filesize64
, ofile
); /* in-file size */
1032 fwriteint32_t(VM_PROT_DEFAULT
, ofile
); /* maximum vm protection */
1033 fwriteint32_t(VM_PROT_DEFAULT
, ofile
); /* initial vm protection */
1034 fwriteint32_t(seg_nsects64
, ofile
); /* number of sections */
1035 fwriteint32_t(0, ofile
); /* no flags */
1037 /* emit section headers */
1038 for (s
= sects
; s
!= NULL
; s
= s
->next
) {
1039 nasm_write(s
->sectname
, sizeof(s
->sectname
), ofile
);
1040 nasm_write(s
->segname
, sizeof(s
->segname
), ofile
);
1041 fwriteint64_t(s
->addr
, ofile
);
1042 fwriteint64_t(s
->size
, ofile
);
1044 /* dummy data for zerofill sections or proper values */
1045 if ((s
->flags
& SECTION_TYPE
) != S_ZEROFILL
) {
1046 fwriteint32_t(offset
, ofile
);
1047 /* Write out section alignment, as a power of two.
1048 e.g. 32-bit word alignment would be 2 (2^2 = 4). */
1050 s
->align
= DEFAULT_SECTION_ALIGNMENT
;
1051 fwriteint32_t(s
->align
, ofile
);
1052 /* To be compatible with cctools as we emit
1053 a zero reloff if we have no relocations. */
1054 fwriteint32_t(s
->nreloc
? rel_base
+ s_reloff
: 0, ofile
);
1055 fwriteint32_t(s
->nreloc
, ofile
);
1058 s_reloff
+= s
->nreloc
* MACHO_RELINFO64_SIZE
;
1060 fwriteint32_t(0, ofile
);
1061 fwriteint32_t(0, ofile
);
1062 fwriteint32_t(0, ofile
);
1063 fwriteint32_t(0, ofile
);
1067 s
->flags
|= S_ATTR_LOC_RELOC
;
1069 s
->flags
|= S_ATTR_EXT_RELOC
;
1072 fwriteint32_t(s
->flags
, ofile
); /* flags */
1073 fwriteint32_t(0, ofile
); /* reserved */
1074 fwriteint32_t(0, ofile
); /* reserved */
1076 fwriteint32_t(0, ofile
); /* align */
1079 rel_padcnt64
= rel_base
- offset
;
1080 offset
= rel_base
+ s_reloff
;
1085 /* For a given chain of relocs r, write out the entire relocation
1086 chain to the object file. */
1088 static void macho_write_relocs (struct reloc
*r
)
1093 fwriteint32_t(r
->addr
, ofile
); /* reloc offset */
1096 word2
|= r
->pcrel
<< 24;
1097 word2
|= r
->length
<< 25;
1098 word2
|= r
->ext
<< 27;
1099 word2
|= r
->type
<< 28;
1100 fwriteint32_t(word2
, ofile
); /* reloc data */
1105 /* Write out the section data. */
1106 static void macho_write_section (void)
1108 struct section
*s
, *s2
;
1110 uint8_t fi
, *p
, *q
, blk
[8];
1114 for (s
= sects
; s
!= NULL
; s
= s
->next
) {
1115 if ((s
->flags
& SECTION_TYPE
) == S_ZEROFILL
)
1118 /* no padding needs to be done to the sections */
1120 /* Like a.out Mach-O references things in the data or bss
1121 * sections by addresses which are actually relative to the
1122 * start of the _text_ section, in the _file_. See outaout.c
1123 * for more information. */
1124 saa_rewind(s
->data
);
1125 for (r
= s
->relocs
; r
!= NULL
; r
= r
->next
) {
1126 len
= (int32_t)r
->length
<< 1;
1127 if(len
> 4) len
= 8;
1128 saa_fread(s
->data
, r
->addr
, blk
, len
);
1132 /* get offset based on relocation type */
1133 if (r
->length
> 0) {
1134 l
+= ((int64_t)*p
++) << 8;
1136 if (r
->length
> 1) {
1137 l
+= ((int64_t)*p
++) << 16;
1138 l
+= ((int64_t)*p
++) << 24;
1141 if (r
->length
> 2) {
1142 l
+= ((int64_t)*p
++) << 32;
1143 l
+= ((int64_t)*p
++) << 40;
1144 l
+= ((int64_t)*p
++) << 48;
1145 l
+= ((int64_t)*p
++) << 56;
1151 /* If the relocation is internal add to the current section
1152 offset. Otherwise the only value we need is the symbol
1153 offset which we already have. The linker takes care
1154 of the rest of the address. */
1156 /* generate final address by section address and offset */
1157 for (s2
= sects
, fi
= 1;
1158 s2
!= NULL
; s2
= s2
->next
, fi
++) {
1159 if (fi
== r
->snum
) {
1166 /* write new offset back */
1169 else if (r
->length
== 2)
1171 else if (r
->length
== 1)
1176 saa_fwrite(s
->data
, r
->addr
, blk
, len
);
1179 /* dump the section data to file */
1180 saa_fpwrite(s
->data
, ofile
);
1183 /* pad last section up to reloc entries on int64_t boundary */
1184 fwritezero(rel_padcnt64
, ofile
);
1186 /* emit relocation entries */
1187 for (s
= sects
; s
!= NULL
; s
= s
->next
)
1188 macho_write_relocs (s
->relocs
);
1191 /* Write out the symbol table. We should already have sorted this
1193 static void macho_write_symtab (void)
1200 /* we don't need to pad here since MACHO_RELINFO_SIZE == 8 */
1202 for (sym
= syms
; sym
!= NULL
; sym
= sym
->next
) {
1203 if ((sym
->type
& N_EXT
) == 0) {
1204 fwriteint32_t(sym
->strx
, ofile
); /* string table entry number */
1205 nasm_write(&sym
->type
, 1, ofile
); /* symbol type */
1206 nasm_write(&sym
->sect
, 1, ofile
); /* section */
1207 fwriteint16_t(sym
->desc
, ofile
); /* description */
1209 /* Fix up the symbol value now that we know the final section
1211 if (((sym
->type
& N_TYPE
) == N_SECT
) && (sym
->sect
!= NO_SECT
)) {
1212 for (s
= sects
, fi
= 1; s
!= NULL
; s
= s
->next
, fi
++) {
1213 if (fi
== sym
->sect
) {
1214 sym
->value
+= s
->addr
;
1220 fwriteint64_t(sym
->value
, ofile
); /* value (i.e. offset) */
1224 for (i
= 0; i
< nextdefsym
; i
++) {
1225 sym
= extdefsyms
[i
];
1226 fwriteint32_t(sym
->strx
, ofile
);
1227 nasm_write(&sym
->type
, 1, ofile
); /* symbol type */
1228 nasm_write(&sym
->sect
, 1, ofile
); /* section */
1229 fwriteint16_t(sym
->desc
, ofile
); /* description */
1231 /* Fix up the symbol value now that we know the final section
1233 if (((sym
->type
& N_TYPE
) == N_SECT
) && (sym
->sect
!= NO_SECT
)) {
1234 for (s
= sects
, fi
= 1;
1235 s
!= NULL
&& fi
< sym
->sect
; s
= s
->next
, ++fi
)
1236 sym
->value
+= s
->size
;
1239 fwriteint64_t(sym
->value
, ofile
); /* value (i.e. offset) */
1242 for (i
= 0; i
< nundefsym
; i
++) {
1244 fwriteint32_t(sym
->strx
, ofile
);
1245 nasm_write(&sym
->type
, 1, ofile
); /* symbol type */
1246 nasm_write(&sym
->sect
, 1, ofile
); /* section */
1247 fwriteint16_t(sym
->desc
, ofile
); /* description */
1249 // Fix up the symbol value now that we know the final section sizes.
1250 if (((sym
->type
& N_TYPE
) == N_SECT
) && (sym
->sect
!= NO_SECT
)) {
1251 for (s
= sects
, fi
= 1;
1252 s
!= NULL
&& fi
< sym
->sect
; s
= s
->next
, ++fi
)
1253 sym
->value
+= s
->size
;
1256 fwriteint64_t(sym
->value
, ofile
); // value (i.e. offset)
1261 /* Fixup the snum in the relocation entries, we should be
1262 doing this only for externally referenced symbols. */
1263 static void macho_fixup_relocs (struct reloc
*r
)
1269 for (sym
= syms
; sym
!= NULL
; sym
= sym
->next
) {
1270 if (sym
->initial_snum
== r
->snum
) {
1271 r
->snum
= sym
->snum
;
1280 /* Write out the object file. */
1282 static void macho_write (void)
1284 uint64_t offset
= 0;
1286 /* mach-o object file structure:
1292 ** uint32_t mach file type
1293 ** uint32_t number of load commands
1294 ** uint32_t size of all load commands
1295 ** (includes section struct size of segment command)
1299 ** uint32_t command type == LC_SEGMENT_64
1300 ** uint32_t size of load command
1301 ** (including section load commands)
1302 ** char[16] segment name
1303 ** uint64_t in-memory offset
1304 ** uint64_t in-memory size
1305 ** uint64_t in-file offset to data area
1306 ** uint64_t in-file size
1307 ** (in-memory size excluding zerofill sections)
1308 ** int maximum vm protection
1309 ** int initial vm protection
1310 ** uint32_t number of sections
1314 ** char[16] section name
1315 ** char[16] segment name
1316 ** uint64_t in-memory offset
1317 ** uint64_t in-memory size
1318 ** uint32_t in-file offset
1319 ** uint32_t alignment
1320 ** (irrelevant in MH_OBJECT)
1321 ** uint32_t in-file offset of relocation entires
1322 ** uint32_t number of relocations
1324 ** uint32_t reserved
1325 ** uint32_t reserved
1327 ** symbol table command
1328 ** uint32_t command type == LC_SYMTAB
1329 ** uint32_t size of load command
1330 ** uint32_t symbol table offset
1331 ** uint32_t number of symbol table entries
1332 ** uint32_t string table offset
1333 ** uint32_t string table size
1337 ** padding to int64_t boundary
1339 ** relocation data (struct reloc)
1341 ** uint data (symbolnum, pcrel, length, extern, type)
1343 ** symbol table data (struct nlist)
1344 ** int32_t string table entry number
1346 ** (extern, absolute, defined in section)
1348 ** (0 for global symbols, section number of definition (>= 1, <=
1349 ** 254) for local symbols, size of variable for common symbols
1350 ** [type == extern])
1351 ** int16_t description
1352 ** (for stab debugging format)
1353 ** uint64_t value (i.e. file offset) of symbol or stab offset
1355 ** string table data
1356 ** list of null-terminated strings
1359 /* Emit the Mach-O header. */
1360 macho_write_header();
1362 offset
= MACHO_HEADER64_SIZE
+ head_sizeofcmds64
;
1364 /* emit the segment load command */
1365 if (seg_nsects64
> 0)
1366 offset
= macho_write_segment (offset
);
1368 nasm_error(ERR_WARNING
, "no sections?");
1371 /* write out symbol command */
1372 fwriteint32_t(LC_SYMTAB
, ofile
); /* cmd == LC_SYMTAB */
1373 fwriteint32_t(MACHO_SYMCMD_SIZE
, ofile
); /* size of load command */
1374 fwriteint32_t(offset
, ofile
); /* symbol table offset */
1375 fwriteint32_t(nsyms
, ofile
); /* number of symbol
1378 offset
+= nsyms
* MACHO_NLIST64_SIZE
;
1379 fwriteint32_t(offset
, ofile
); /* string table offset */
1380 fwriteint32_t(strslen
, ofile
); /* string table size */
1383 /* emit section data */
1384 if (seg_nsects64
> 0)
1385 macho_write_section ();
1387 /* emit symbol table if we have symbols */
1389 macho_write_symtab ();
1391 /* we don't need to pad here since MACHO_NLIST64_SIZE == 16 */
1393 /* emit string table */
1394 saa_fpwrite(strs
, ofile
);
1396 /* We do quite a bit here, starting with finalizing all of the data
1397 for the object file, writing, and then freeing all of the data from
1400 static void macho_cleanup(int debuginfo
)
1408 /* Sort all symbols. */
1409 macho_layout_symbols (&nsyms
, &strslen
);
1411 /* Fixup relocation entries */
1412 for (s
= sects
; s
!= NULL
; s
= s
->next
) {
1413 macho_fixup_relocs (s
->relocs
);
1416 /* First calculate and finalize needed values. */
1417 macho_calculate_sizes();
1420 /* free up everything */
1421 while (sects
->next
) {
1423 sects
= sects
->next
;
1426 while (s
->relocs
!= NULL
) {
1428 s
->relocs
= s
->relocs
->next
;
1439 while (syms
->next
) {
1448 /* Debugging routines. */
1449 static void debug_reloc (struct reloc
*r
)
1451 fprintf (stdout
, "reloc:\n");
1452 fprintf (stdout
, "\taddr: %"PRId32
"\n", r
->addr
);
1453 fprintf (stdout
, "\tsnum: %d\n", r
->snum
);
1454 fprintf (stdout
, "\tpcrel: %d\n", r
->pcrel
);
1455 fprintf (stdout
, "\tlength: %d\n", r
->length
);
1456 fprintf (stdout
, "\text: %d\n", r
->ext
);
1457 fprintf (stdout
, "\ttype: %d\n", r
->type
);
1460 static void debug_section_relocs (struct section
*s
)
1462 struct reloc
*r
= s
->relocs
;
1464 fprintf (stdout
, "relocs for section %s:\n\n", s
->sectname
);
1472 struct ofmt of_macho64
= {
1473 "NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (x86_64) object files",