1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2014 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 * outcoff.c output routines for the Netwide Assembler to produce
36 * COFF object files (for DJGPP and Win32)
57 #if defined(OF_COFF) || defined(OF_WIN32) || defined(OF_WIN64)
62 * (0) When I say `standard COFF' below, I mean `COFF as output and
63 * used by DJGPP'. I assume DJGPP gets it right.
65 * (1) Win32 appears to interpret the term `relative relocation'
66 * differently from standard COFF. Standard COFF understands a
67 * relative relocation to mean that during relocation you add the
68 * address of the symbol you're referencing, and subtract the base
69 * address of the section you're in. Win32 COFF, by contrast, seems
70 * to add the address of the symbol and then subtract the address
71 * of THE BYTE AFTER THE RELOCATED DWORD. Hence the two formats are
72 * subtly incompatible.
74 * (2) Win32 doesn't bother putting any flags in the header flags
75 * field (at offset 0x12 into the file).
77 * (3) Win32 uses some extra flags into the section header table:
78 * it defines flags 0x80000000 (writable), 0x40000000 (readable)
79 * and 0x20000000 (executable), and uses them in the expected
80 * combinations. It also defines 0x00100000 through 0x00700000 for
81 * section alignments of 1 through 64 bytes.
83 * (4) Both standard COFF and Win32 COFF seem to use the DWORD
84 * field directly after the section name in the section header
85 * table for something strange: they store what the address of the
86 * section start point _would_ be, if you laid all the sections end
87 * to end starting at zero. Dunno why. Microsoft's documentation
88 * lists this field as "Virtual Size of Section", which doesn't
89 * seem to fit at all. In fact, Win32 even includes non-linked
90 * sections such as .drectve in this calculation.
92 * Newer versions of MASM seem to have changed this to be zero, and
93 * that apparently matches the COFF spec, so go with that.
95 * (5) Standard COFF does something very strange to common
96 * variables: the relocation point for a common variable is as far
97 * _before_ the variable as its size stretches out _after_ it. So
98 * we must fix up common variable references. Win32 seems to be
99 * sensible on this one.
102 /* Flag which version of COFF we are currently outputting. */
105 static int32_t imagebase_sect
;
106 #define WRT_IMAGEBASE "..imagebase"
108 char coff_infile
[FILENAME_MAX
];
109 char coff_outfile
[FILENAME_MAX
];
112 * Some common section flags by default
114 #define TEXT_FLAGS_WIN \
115 (IMAGE_SCN_CNT_CODE | \
116 IMAGE_SCN_ALIGN_16BYTES | \
117 IMAGE_SCN_MEM_EXECUTE | \
119 #define TEXT_FLAGS_DOS \
122 #define DATA_FLAGS_WIN \
123 (IMAGE_SCN_CNT_INITIALIZED_DATA | \
124 IMAGE_SCN_ALIGN_4BYTES | \
125 IMAGE_SCN_MEM_READ | \
127 #define DATA_FLAGS_DOS \
128 (IMAGE_SCN_CNT_INITIALIZED_DATA)
130 #define BSS_FLAGS_WIN \
131 (IMAGE_SCN_CNT_UNINITIALIZED_DATA | \
132 IMAGE_SCN_ALIGN_4BYTES | \
133 IMAGE_SCN_MEM_READ | \
135 #define BSS_FLAGS_DOS \
136 (IMAGE_SCN_CNT_UNINITIALIZED_DATA)
138 #define RDATA_FLAGS_WIN \
139 (IMAGE_SCN_CNT_INITIALIZED_DATA | \
140 IMAGE_SCN_ALIGN_8BYTES | \
143 #define RDATA_FLAGS_DOS \
144 (IMAGE_SCN_CNT_INITIALIZED_DATA)
146 #define PDATA_FLAGS \
147 (IMAGE_SCN_CNT_INITIALIZED_DATA | \
148 IMAGE_SCN_ALIGN_4BYTES | \
151 #define XDATA_FLAGS \
152 (IMAGE_SCN_CNT_INITIALIZED_DATA | \
153 IMAGE_SCN_ALIGN_8BYTES | \
157 (IMAGE_SCN_ALIGN_1BYTES | \
158 IMAGE_SCN_LNK_INFO | \
159 IMAGE_SCN_LNK_REMOVE)
161 #define TEXT_FLAGS ((win32 | win64) ? TEXT_FLAGS_WIN : TEXT_FLAGS_DOS)
162 #define DATA_FLAGS ((win32 | win64) ? DATA_FLAGS_WIN : DATA_FLAGS_DOS)
163 #define BSS_FLAGS ((win32 | win64) ? BSS_FLAGS_WIN : BSS_FLAGS_DOS)
164 #define RDATA_FLAGS ((win32 | win64) ? RDATA_FLAGS_WIN : RDATA_FLAGS_DOS)
166 #define SECT_DELTA 32
167 struct coff_Section
**coff_sects
;
171 struct SAA
*coff_syms
;
174 static int32_t def_seg
;
178 static struct RAA
*bsym
, *symval
;
180 struct SAA
*coff_strs
;
181 static uint32_t strslen
;
183 static void coff_gen_init(void);
184 static void coff_sect_write(struct coff_Section
*, const uint8_t *, uint32_t);
185 static void coff_write(void);
186 static void coff_section_header(char *, int32_t, int32_t, int32_t, int32_t, int32_t, int, int32_t);
187 static void coff_write_relocs(struct coff_Section
*);
188 static void coff_write_symbols(void);
190 static void coff_win32_init(void)
197 static void coff_win64_init(void)
202 imagebase_sect
= seg_alloc()+1;
203 define_label(WRT_IMAGEBASE
, imagebase_sect
, 0, NULL
, false, false);
206 static void coff_std_init(void)
208 win32
= win64
= false;
212 static void coff_gen_init(void)
216 coff_nsects
= sectlen
= 0;
217 coff_syms
= saa_init(sizeof(struct coff_Symbol
));
221 coff_strs
= saa_init(1);
223 def_seg
= seg_alloc();
226 static void coff_cleanup(void)
228 struct coff_Reloc
*r
;
234 for (i
= 0; i
< coff_nsects
; i
++) {
235 if (coff_sects
[i
]->data
)
236 saa_free(coff_sects
[i
]->data
);
237 while (coff_sects
[i
]->head
) {
238 r
= coff_sects
[i
]->head
;
239 coff_sects
[i
]->head
= coff_sects
[i
]->head
->next
;
242 nasm_free(coff_sects
[i
]->name
);
243 nasm_free(coff_sects
[i
]);
245 nasm_free(coff_sects
);
252 int coff_make_section(char *name
, uint32_t flags
)
254 struct coff_Section
*s
;
257 s
= nasm_zalloc(sizeof(*s
));
259 if (flags
!= BSS_FLAGS
)
260 s
->data
= saa_init(1);
262 if (!strcmp(name
, ".text"))
265 s
->index
= seg_alloc();
267 namelen
= strlen(name
);
269 if (win32
|| win64
) {
270 s
->namepos
= strslen
+ 4;
271 saa_wbytes(coff_strs
, name
, namelen
+ 1);
272 strslen
+= namelen
+ 1;
277 s
->name
= nasm_malloc(namelen
+ 1);
278 strncpy(s
->name
, name
, namelen
);
279 s
->name
[namelen
] = '\0';
282 if (coff_nsects
>= sectlen
) {
283 sectlen
+= SECT_DELTA
;
284 coff_sects
= nasm_realloc(coff_sects
, sectlen
* sizeof(*coff_sects
));
286 coff_sects
[coff_nsects
++] = s
;
288 return coff_nsects
- 1;
291 static inline int32_t coff_sectalign_flags(unsigned int align
)
293 return (ilog2_32(align
) + 1) << 20;
296 static int32_t coff_section_names(char *name
, int pass
, int *bits
)
299 uint32_t flags
, align_and
= ~0L, align_or
= 0L;
315 while (*p
&& !nasm_isspace(*p
))
319 if (strlen(name
) > 8) {
320 if (!win32
&& !win64
) {
321 nasm_error(ERR_WARNING
,
322 "COFF section names limited to 8 characters: truncating");
328 while (*p
&& nasm_isspace(*p
))
332 while (*p
&& !nasm_isspace(*p
))
336 while (*p
&& nasm_isspace(*p
))
339 if (!nasm_stricmp(q
, "code") || !nasm_stricmp(q
, "text")) {
341 } else if (!nasm_stricmp(q
, "data")) {
343 } else if (!nasm_stricmp(q
, "rdata")) {
347 flags
= DATA_FLAGS
; /* gotta do something */
348 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
349 " read-only data sections");
351 } else if (!nasm_stricmp(q
, "bss")) {
353 } else if (!nasm_stricmp(q
, "info")) {
357 flags
= DATA_FLAGS
; /* gotta do something */
358 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
359 " informational sections");
361 } else if (!nasm_strnicmp(q
, "align=", 6)) {
362 if (!(win32
| win64
))
363 nasm_error(ERR_NONFATAL
, "standard COFF does not support"
364 " section alignment specification");
366 if (q
[6 + strspn(q
+ 6, "0123456789")])
367 nasm_error(ERR_NONFATAL
,
368 "argument to `align' is not numeric");
370 unsigned int align
= atoi(q
+ 6);
371 if (!align
|| ((align
- 1) & align
))
372 nasm_error(ERR_NONFATAL
, "argument to `align' is not a"
375 nasm_error(ERR_NONFATAL
, "Win32 cannot align sections"
376 " to better than 64-byte boundaries");
378 align_and
= ~0x00F00000L
;
379 align_or
= coff_sectalign_flags(align
);
386 for (i
= 0; i
< coff_nsects
; i
++)
387 if (!strcmp(name
, coff_sects
[i
]->name
))
389 if (i
== coff_nsects
) {
391 if (!strcmp(name
, ".data"))
393 else if (!strcmp(name
, ".rdata"))
395 else if (!strcmp(name
, ".bss"))
397 else if (win64
&& !strcmp(name
, ".pdata"))
399 else if (win64
&& !strcmp(name
, ".xdata"))
404 i
= coff_make_section(name
, flags
);
406 coff_sects
[i
]->flags
= flags
;
407 coff_sects
[i
]->flags
&= align_and
;
408 coff_sects
[i
]->flags
|= align_or
;
409 } else if (pass
== 1) {
410 /* Check if any flags are specified */
412 unsigned int align_flags
= flags
& IMAGE_SCN_ALIGN_MASK
;
414 /* Warn if non-alignment flags differ */
415 if ((flags
^ coff_sects
[i
]->flags
) & ~IMAGE_SCN_ALIGN_MASK
) {
416 nasm_error(ERR_WARNING
, "section attributes ignored on"
417 " redeclaration of section `%s'", name
);
419 /* Check if alignment might be needed */
420 if (align_flags
> IMAGE_SCN_ALIGN_1BYTES
) {
421 unsigned int sect_align_flags
= coff_sects
[i
]->flags
& IMAGE_SCN_ALIGN_MASK
;
423 /* Compute the actual alignment */
424 unsigned int align
= 1u << ((align_flags
- IMAGE_SCN_ALIGN_1BYTES
) >> 20);
426 /* Update section header as needed */
427 if (align_flags
> sect_align_flags
) {
428 coff_sects
[i
]->flags
= (coff_sects
[i
]->flags
& ~IMAGE_SCN_ALIGN_MASK
) | align_flags
;
430 /* Check if not already aligned */
431 if (coff_sects
[i
]->len
% align
) {
432 unsigned int padding
= (align
- coff_sects
[i
]->len
) % align
;
433 /* We need to write at most 8095 bytes */
435 if (coff_sects
[i
]->flags
& IMAGE_SCN_CNT_CODE
) {
436 /* Fill with INT 3 instructions */
437 memset(buffer
, 0xCC, padding
);
439 memset(buffer
, 0x00, padding
);
441 saa_wbytes(coff_sects
[i
]->data
, buffer
, padding
);
442 coff_sects
[i
]->len
+= padding
;
448 return coff_sects
[i
]->index
;
451 static void coff_deflabel(char *name
, int32_t segment
, int64_t offset
,
452 int is_global
, char *special
)
454 int pos
= strslen
+ 4;
455 struct coff_Symbol
*sym
;
458 nasm_error(ERR_NONFATAL
, "COFF format does not support any"
459 " special symbol types");
461 if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@') {
462 if (strcmp(name
,WRT_IMAGEBASE
))
463 nasm_error(ERR_NONFATAL
, "unrecognized special symbol `%s'", name
);
467 if (strlen(name
) > 8) {
468 size_t nlen
= strlen(name
)+1;
469 saa_wbytes(coff_strs
, name
, nlen
);
474 sym
= saa_wstruct(coff_syms
);
477 sym
->namlen
= strlen(name
);
479 strcpy(sym
->name
, name
);
480 sym
->is_global
= !!is_global
;
481 sym
->type
= 0; /* Default to T_NULL (no type) */
482 if (segment
== NO_SEG
)
483 sym
->section
= -1; /* absolute symbol */
487 for (i
= 0; i
< coff_nsects
; i
++)
488 if (segment
== coff_sects
[i
]->index
) {
489 sym
->section
= i
+ 1;
493 sym
->is_global
= true;
498 sym
->value
= (sym
->section
== 0 ? 0 : offset
);
501 * define the references from external-symbol segment numbers
502 * to these symbol records.
504 if (sym
->section
== 0)
505 bsym
= raa_write(bsym
, segment
, coff_nsyms
);
507 if (segment
!= NO_SEG
)
508 symval
= raa_write(symval
, segment
, sym
->section
? 0 : sym
->value
);
513 static int32_t coff_add_reloc(struct coff_Section
*sect
, int32_t segment
,
516 struct coff_Reloc
*r
;
518 r
= *sect
->tail
= nasm_malloc(sizeof(struct coff_Reloc
));
519 sect
->tail
= &r
->next
;
522 r
->address
= sect
->len
;
523 if (segment
== NO_SEG
) {
524 r
->symbol
= 0, r
->symbase
= ABS_SYMBOL
;
527 r
->symbase
= REAL_SYMBOLS
;
528 for (i
= 0; i
< coff_nsects
; i
++) {
529 if (segment
== coff_sects
[i
]->index
) {
531 r
->symbase
= SECT_SYMBOLS
;
535 if (r
->symbase
== REAL_SYMBOLS
)
536 r
->symbol
= raa_read(bsym
, segment
);
543 * Return the fixup for standard COFF common variables.
545 if (r
->symbase
== REAL_SYMBOLS
&& !(win32
| win64
))
546 return raa_read(symval
, segment
);
551 static void coff_out(int32_t segto
, const void *data
,
552 enum out_type type
, uint64_t size
,
553 int32_t segment
, int32_t wrt
)
555 struct coff_Section
*s
;
556 uint8_t mydata
[8], *p
;
559 if (wrt
!= NO_SEG
&& !win64
) {
560 wrt
= NO_SEG
; /* continue to do _something_ */
561 nasm_error(ERR_NONFATAL
, "WRT not supported by COFF output formats");
565 * handle absolute-assembly (structure definitions)
567 if (segto
== NO_SEG
) {
568 if (type
!= OUT_RESERVE
)
569 nasm_error(ERR_NONFATAL
, "attempt to assemble code in [ABSOLUTE]"
575 for (i
= 0; i
< coff_nsects
; i
++) {
576 if (segto
== coff_sects
[i
]->index
) {
582 int tempint
; /* ignored */
583 if (segto
!= coff_section_names(".text", 2, &tempint
))
584 nasm_panic(0, "strange segment conditions in COFF driver");
586 s
= coff_sects
[coff_nsects
- 1];
589 /* magically default to 'wrt ..imagebase' in .pdata and .xdata */
590 if (win64
&& wrt
== NO_SEG
) {
591 if (!strcmp(s
->name
,".pdata") || !strcmp(s
->name
,".xdata"))
592 wrt
= imagebase_sect
;
595 if (!s
->data
&& type
!= OUT_RESERVE
) {
596 nasm_error(ERR_WARNING
, "attempt to initialize memory in"
597 " BSS section `%s': ignored", s
->name
);
598 s
->len
+= realsize(type
, size
);
602 memset(mydata
, 0, sizeof(mydata
));
604 if (dfmt
&& dfmt
->debug_output
) {
605 struct coff_DebugInfo dinfo
;
610 if (type
== OUT_ADDRESS
)
611 dinfo
.size
= abs((int)size
);
613 dinfo
.size
= realsize(type
, size
);
615 dfmt
->debug_output(type
, &dinfo
);
618 if (type
== OUT_RESERVE
) {
620 nasm_error(ERR_WARNING
, "uninitialised space declared in"
621 " non-BSS section `%s': zeroing", s
->name
);
622 coff_sect_write(s
, NULL
, size
);
625 } else if (type
== OUT_RAWDATA
) {
626 if (segment
!= NO_SEG
)
627 nasm_panic(0, "OUT_RAWDATA with other than NO_SEG");
628 coff_sect_write(s
, data
, size
);
629 } else if (type
== OUT_ADDRESS
) {
630 int asize
= abs((int)size
);
632 if (asize
!= 4 && (segment
!= NO_SEG
|| wrt
!= NO_SEG
)) {
633 nasm_error(ERR_NONFATAL
, "COFF format does not support non-32-bit"
637 if (segment
!= NO_SEG
|| wrt
!= NO_SEG
) {
639 nasm_error(ERR_NONFATAL
, "COFF format does not support"
641 } else if (segment
% 2) {
642 nasm_error(ERR_NONFATAL
, "COFF format does not support"
643 " segment base references");
645 fix
= coff_add_reloc(s
, segment
, IMAGE_REL_I386_DIR32
);
648 WRITELONG(p
, *(int64_t *)data
+ fix
);
649 coff_sect_write(s
, mydata
, asize
);
655 if (wrt
== imagebase_sect
) {
656 nasm_error(ERR_NONFATAL
, "operand size mismatch: 'wrt "
657 WRT_IMAGEBASE
"' is a 32-bit operand");
659 fix
= coff_add_reloc(s
, segment
, IMAGE_REL_AMD64_ADDR64
);
660 WRITEDLONG(p
, *(int64_t *)data
+ fix
);
661 coff_sect_write(s
, mydata
, asize
);
663 fix
= coff_add_reloc(s
, segment
,
664 wrt
== imagebase_sect
? IMAGE_REL_AMD64_ADDR32NB
:
665 IMAGE_REL_AMD64_ADDR32
);
666 WRITELONG(p
, *(int64_t *)data
+ fix
);
667 coff_sect_write(s
, mydata
, asize
);
670 } else if (type
== OUT_REL2ADR
) {
671 nasm_error(ERR_NONFATAL
, "COFF format does not support 16-bit"
673 } else if (type
== OUT_REL4ADR
) {
674 if (segment
== segto
&& !(win64
)) /* Acceptable for RIP-relative */
675 nasm_panic(0, "intra-segment OUT_REL4ADR");
676 else if (segment
== NO_SEG
&& win32
)
677 nasm_error(ERR_NONFATAL
, "Win32 COFF does not correctly support"
678 " relative references to absolute addresses");
681 if (segment
!= NO_SEG
&& segment
% 2) {
682 nasm_error(ERR_NONFATAL
, "COFF format does not support"
683 " segment base references");
685 fix
= coff_add_reloc(s
, segment
,
686 win64
? IMAGE_REL_AMD64_REL32
: IMAGE_REL_I386_REL32
);
689 WRITELONG(p
, *(int64_t *)data
+ 4 - size
+ fix
);
691 WRITELONG(p
, *(int64_t *)data
- (size
+ s
->len
) + fix
);
693 coff_sect_write(s
, mydata
, 4L);
699 static void coff_sect_write(struct coff_Section
*sect
,
700 const uint8_t *data
, uint32_t len
)
702 saa_wbytes(sect
->data
, data
, len
);
706 typedef struct tagString
{
707 struct tagString
*next
;
712 #define EXPORT_SECTION_NAME ".drectve"
713 #define EXPORT_SECTION_FLAGS INFO_FLAGS
715 * #define EXPORT_SECTION_NAME ".text"
716 * #define EXPORT_SECTION_FLAGS TEXT_FLAGS
719 static STRING
*Exports
= NULL
;
720 static struct coff_Section
*directive_sec
;
721 static void AddExport(char *name
)
723 STRING
*rvp
= Exports
, *newS
;
725 newS
= (STRING
*) nasm_malloc(sizeof(STRING
));
726 newS
->len
= strlen(name
);
728 newS
->String
= (char *)nasm_malloc(newS
->len
+ 1);
729 strcpy(newS
->String
, name
);
733 for (i
= 0; i
< coff_nsects
; i
++) {
734 if (!strcmp(EXPORT_SECTION_NAME
, coff_sects
[i
]->name
))
738 if (i
== coff_nsects
)
739 i
= coff_make_section(EXPORT_SECTION_NAME
, EXPORT_SECTION_FLAGS
);
741 directive_sec
= coff_sects
[i
];
745 if (!strcmp(rvp
->String
, name
))
753 static void BuildExportTable(STRING
**rvp
)
760 list_for_each_safe(p
, t
, *rvp
) {
761 coff_sect_write(directive_sec
, (uint8_t *)"-export:", 8);
762 coff_sect_write(directive_sec
, (uint8_t *)p
->String
, p
->len
);
763 coff_sect_write(directive_sec
, (uint8_t *)" ", 1);
764 nasm_free(p
->String
);
771 static enum directive_result
772 coff_directives(enum directive directive
, char *value
, int pass
)
780 return DIRR_OK
; /* ignore in pass two */
782 while (*q
&& !nasm_isspace(*q
))
784 if (nasm_isspace(*q
)) {
786 while (*q
&& nasm_isspace(*q
))
791 nasm_error(ERR_NONFATAL
, "`export' directive requires export name");
795 nasm_error(ERR_NONFATAL
, "unrecognized export qualifier `%s'", q
);
806 if (!win32
) /* Only applicable for -f win32 */
810 for (i
= 0; i
< coff_nsects
; i
++)
811 if (!strcmp(".sxdata",coff_sects
[i
]->name
))
813 if (i
== coff_nsects
)
814 sxseg
= coff_make_section(".sxdata", IMAGE_SCN_LNK_INFO
);
819 * pass0 == 2 is the only time when the full set of symbols are
820 * guaranteed to be present; it is the final output pass.
824 saa_rewind(coff_syms
);
825 for (n
= 0; n
< coff_nsyms
; n
++) {
826 struct coff_Symbol
*sym
= saa_rstruct(coff_syms
);
830 * sym->strpos is biased by 4, because symbol
831 * table is prefixed with table length
833 if (sym
->strpos
>=4) {
834 char *name
= nasm_malloc(sym
->namlen
+1);
835 saa_fread(coff_strs
, sym
->strpos
-4, name
, sym
->namlen
);
836 name
[sym
->namlen
] = '\0';
837 equals
= !strcmp(value
,name
);
840 equals
= !strcmp(value
,sym
->name
);
845 * this value arithmetics effectively reflects
846 * initsym in coff_write(): 2 for file, 1 for
847 * .absolute and two per each section
849 unsigned char value
[4],*p
=value
;
850 WRITELONG(p
,n
+ 2 + 1 + coff_nsects
*2);
851 coff_sect_write(coff_sects
[sxseg
],value
,4);
856 if (n
== coff_nsyms
) {
857 nasm_error(ERR_NONFATAL
,
858 "`safeseh' directive requires valid symbol");
869 /* handle relocations storm, valid for win32/64 only */
870 static inline void coff_adjust_relocs(struct coff_Section
*s
)
872 if (s
->nrelocs
< IMAGE_SCN_MAX_RELOC
)
877 if (ofmt
== &of_coff
)
879 "Too many relocations (%d) for section `%s'",
880 s
->nrelocs
, s
->name
);
884 s
->flags
|= IMAGE_SCN_LNK_NRELOC_OVFL
;
888 static void coff_write(void)
890 int32_t pos
, sympos
, vsize
;
893 /* fill in the .drectve section with -export's */
894 BuildExportTable(&Exports
);
897 /* add default value for @feat.00, this allows to 'link /safeseh' */
900 saa_rewind(coff_syms
);
901 for (n
= 0; n
< coff_nsyms
; n
++) {
902 struct coff_Symbol
*sym
= saa_rstruct(coff_syms
);
903 if (sym
->strpos
== -1 && !strcmp("@feat.00",sym
->name
))
907 coff_deflabel("@feat.00", NO_SEG
, 1, 0, NULL
);
911 * Work out how big the file will get.
912 * Calculate the start of the `real' symbols at the same time.
913 * Check for massive relocations.
915 pos
= 0x14 + 0x28 * coff_nsects
;
916 initsym
= 3; /* two for the file, one absolute */
917 for (i
= 0; i
< coff_nsects
; i
++) {
918 if (coff_sects
[i
]->data
) {
919 coff_adjust_relocs(coff_sects
[i
]);
920 coff_sects
[i
]->pos
= pos
;
921 pos
+= coff_sects
[i
]->len
;
922 coff_sects
[i
]->relpos
= pos
;
923 pos
+= 10 * coff_sects
[i
]->nrelocs
;
925 coff_sects
[i
]->pos
= coff_sects
[i
]->relpos
= 0L;
926 initsym
+= 2; /* two for each section */
931 * Output the COFF header.
934 i
= IMAGE_FILE_MACHINE_AMD64
;
936 i
= IMAGE_FILE_MACHINE_I386
;
937 fwriteint16_t(i
, ofile
); /* machine type */
938 fwriteint16_t(coff_nsects
, ofile
); /* number of sections */
939 fwriteint32_t(time(NULL
), ofile
); /* time stamp */
940 fwriteint32_t(sympos
, ofile
);
941 fwriteint32_t(coff_nsyms
+ initsym
, ofile
);
942 fwriteint16_t(0, ofile
); /* no optional header */
943 /* Flags: 32-bit, no line numbers. Win32 doesn't even bother with them. */
944 fwriteint16_t((win32
| win64
) ? 0 : 0x104, ofile
);
947 * Output the section headers.
950 for (i
= 0; i
< coff_nsects
; i
++) {
951 coff_section_header(coff_sects
[i
]->name
, coff_sects
[i
]->namepos
, vsize
, coff_sects
[i
]->len
,
952 coff_sects
[i
]->pos
, coff_sects
[i
]->relpos
,
953 coff_sects
[i
]->nrelocs
, coff_sects
[i
]->flags
);
954 vsize
+= coff_sects
[i
]->len
;
958 * Output the sections and their relocations.
960 for (i
= 0; i
< coff_nsects
; i
++)
961 if (coff_sects
[i
]->data
) {
962 saa_fpwrite(coff_sects
[i
]->data
, ofile
);
963 coff_write_relocs(coff_sects
[i
]);
967 * Output the symbol and string tables.
969 coff_write_symbols();
970 fwriteint32_t(strslen
+ 4, ofile
); /* length includes length count */
971 saa_fpwrite(coff_strs
, ofile
);
974 static void coff_section_header(char *name
, int32_t namepos
, int32_t vsize
,
975 int32_t datalen
, int32_t datapos
,
976 int32_t relpos
, int nrelocs
, int32_t flags
)
983 strncpy(padname
, name
, 8);
984 nasm_write(padname
, 8, ofile
);
987 * If name is longer than 8 bytes, write '/' followed
988 * by offset into the strings table represented as
991 namepos
= namepos
% 100000000;
993 padname
[1] = '0' + (namepos
/ 1000000);
994 namepos
= namepos
% 1000000;
995 padname
[2] = '0' + (namepos
/ 100000);
996 namepos
= namepos
% 100000;
997 padname
[3] = '0' + (namepos
/ 10000);
998 namepos
= namepos
% 10000;
999 padname
[4] = '0' + (namepos
/ 1000);
1000 namepos
= namepos
% 1000;
1001 padname
[5] = '0' + (namepos
/ 100);
1002 namepos
= namepos
% 100;
1003 padname
[6] = '0' + (namepos
/ 10);
1004 namepos
= namepos
% 10;
1005 padname
[7] = '0' + (namepos
);
1006 nasm_write(padname
, 8, ofile
);
1009 fwriteint32_t(0, ofile
); /* Virtual size field - set to 0 or vsize */
1010 fwriteint32_t(0L, ofile
); /* RVA/offset - we ignore */
1011 fwriteint32_t(datalen
, ofile
);
1012 fwriteint32_t(datapos
, ofile
);
1013 fwriteint32_t(relpos
, ofile
);
1014 fwriteint32_t(0L, ofile
); /* no line numbers - we don't do 'em */
1017 * a special case -- if there are too many relocs
1018 * we have to put IMAGE_SCN_MAX_RELOC here and write
1019 * the real relocs number into VirtualAddress of first
1022 if (flags
& IMAGE_SCN_LNK_NRELOC_OVFL
)
1023 fwriteint16_t(IMAGE_SCN_MAX_RELOC
, ofile
);
1025 fwriteint16_t(nrelocs
, ofile
);
1027 fwriteint16_t(0, ofile
); /* again, no line numbers */
1028 fwriteint32_t(flags
, ofile
);
1031 static void coff_write_relocs(struct coff_Section
*s
)
1033 struct coff_Reloc
*r
;
1035 /* a real number of relocations if needed */
1036 if (s
->flags
& IMAGE_SCN_LNK_NRELOC_OVFL
) {
1037 fwriteint32_t(s
->nrelocs
, ofile
);
1038 fwriteint32_t(0, ofile
);
1039 fwriteint16_t(0, ofile
);
1042 for (r
= s
->head
; r
; r
= r
->next
) {
1043 fwriteint32_t(r
->address
, ofile
);
1044 fwriteint32_t(r
->symbol
+ (r
->symbase
== REAL_SYMBOLS
? initsym
:
1045 r
->symbase
== ABS_SYMBOL
? initsym
- 1 :
1046 r
->symbase
== SECT_SYMBOLS
? 2 : 0),
1048 fwriteint16_t(r
->type
, ofile
);
1052 static void coff_symbol(char *name
, int32_t strpos
, int32_t value
,
1053 int section
, int type
, int storageclass
, int aux
)
1058 strncpy(padname
, name
, 8);
1059 nasm_write(padname
, 8, ofile
);
1061 fwriteint32_t(0, ofile
);
1062 fwriteint32_t(strpos
, ofile
);
1065 fwriteint32_t(value
, ofile
);
1066 fwriteint16_t(section
, ofile
);
1067 fwriteint16_t(type
, ofile
);
1069 fputc(storageclass
, ofile
);
1073 static void coff_write_symbols(void)
1079 * The `.file' record, and the file name auxiliary record.
1081 coff_symbol(".file", 0L, 0L, -2, 0, 0x67, 1);
1082 strncpy(filename
, coff_infile
, 18);
1083 nasm_write(filename
, 18, ofile
);
1086 * The section records, with their auxiliaries.
1088 memset(filename
, 0, 18); /* useful zeroed buffer */
1090 for (i
= 0; i
< (uint32_t) coff_nsects
; i
++) {
1091 coff_symbol(coff_sects
[i
]->name
, 0L, 0L, i
+ 1, 0, 3, 1);
1092 fwriteint32_t(coff_sects
[i
]->len
, ofile
);
1093 fwriteint16_t(coff_sects
[i
]->nrelocs
,ofile
);
1094 nasm_write(filename
, 12, ofile
);
1098 * The absolute symbol, for relative-to-absolute relocations.
1100 coff_symbol(".absolut", 0L, 0L, -1, 0, 3, 0);
1105 saa_rewind(coff_syms
);
1106 for (i
= 0; i
< coff_nsyms
; i
++) {
1107 struct coff_Symbol
*sym
= saa_rstruct(coff_syms
);
1108 coff_symbol(sym
->strpos
== -1 ? sym
->name
: NULL
,
1109 sym
->strpos
, sym
->value
, sym
->section
,
1110 sym
->type
, sym
->is_global
? 2 : 3, 0);
1114 static void coff_sectalign(int32_t seg
, unsigned int value
)
1116 struct coff_Section
*s
= NULL
;
1120 for (i
= 0; i
< coff_nsects
; i
++) {
1121 if (coff_sects
[i
]->index
== seg
) {
1127 if (!s
|| !is_power2(value
))
1130 /* DOS has limitation on 64 bytes */
1131 if (!(win32
| win64
) && value
> 64)
1134 align
= (s
->flags
& IMAGE_SCN_ALIGN_MASK
);
1135 value
= coff_sectalign_flags(value
);
1137 s
->flags
= (s
->flags
& ~IMAGE_SCN_ALIGN_MASK
) | value
;
1140 static int32_t coff_segbase(int32_t segment
)
1145 static void coff_std_filename(char *inname
, char *outname
)
1147 strcpy(coff_infile
, inname
);
1148 standard_extension(inname
, outname
, ".o");
1149 strcpy(coff_outfile
, outname
);
1152 static void coff_win32_filename(char *inname
, char *outname
)
1154 strcpy(coff_infile
, inname
);
1155 standard_extension(inname
, outname
, ".obj");
1156 strcpy(coff_outfile
, outname
);
1159 extern macros_t coff_stdmac
[];
1161 #endif /* defined(OF_COFF) || defined(OF_WIN32) */
1165 const struct ofmt of_coff
= {
1166 "COFF (i386) object files (e.g. DJGPP for DOS)",
1174 nasm_do_legacy_output
,
1183 NULL
/* pragma list */
1188 extern const struct dfmt df_cv8
;
1192 static const struct dfmt
* const win32_debug_arr
[2] = { &df_cv8
, NULL
};
1194 const struct ofmt of_win32
= {
1195 "Microsoft Win32 (i386) object files",
1203 nasm_do_legacy_output
,
1210 coff_win32_filename
,
1212 NULL
/* pragma list */
1219 static const struct dfmt
* const win64_debug_arr
[2] = { &df_cv8
, NULL
};
1221 const struct ofmt of_win64
= {
1222 "Microsoft Win64 (x86-64) object files",
1230 nasm_do_legacy_output
,
1237 coff_win32_filename
,
1239 NULL
/* pragma list */