1 /* outbin.c output routines for the Netwide Assembler to produce
2 * flat-form binary files
4 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 * Julian Hall. All rights reserved. The software is
6 * redistributable under the licence given in the file "Licence"
7 * distributed in the NASM archive.
10 /* This is the extended version of NASM's original binary output
11 * format. It is backward compatible with the original BIN format,
12 * and contains support for multiple sections and advanced section
17 * - Users can create an arbitrary number of sections; they are not
18 * limited to just ".text", ".data", and ".bss".
20 * - Sections can be either progbits or nobits type.
22 * - You can specify that they be aligned at a certian boundary
23 * following the previous section ("align="), or positioned at an
24 * arbitrary byte-granular location ("start=").
26 * - You can specify a "virtual" start address for a section, which
27 * will be used for the calculation for all address references
28 * with respect to that section ("vstart=").
30 * - The ORG directive, as well as the section/segment directive
31 * arguments ("align=", "start=", "vstart="), can take a critical
32 * expression as their value. For example: "align=(1 << 12)".
34 * - You can generate map files using the 'map' directive.
38 /* Uncomment the following define if you want sections to adapt
39 * their progbits/nobits state depending on what type of
40 * instructions are issued, rather than defaulting to progbits.
41 * Note that this behavior violates the specification.
43 #define ABIN_SMART_ADAPT
64 struct ofmt
*bin_get_ofmt(); /* Prototype goes here since no header file. */
66 static FILE *fp
, *rf
= NULL
;
69 /* Section flags keep track of which attributes the user has defined. */
70 #define START_DEFINED 0x001
71 #define ALIGN_DEFINED 0x002
72 #define FOLLOWS_DEFINED 0x004
73 #define VSTART_DEFINED 0x008
74 #define VALIGN_DEFINED 0x010
75 #define VFOLLOWS_DEFINED 0x020
76 #define TYPE_DEFINED 0x040
77 #define TYPE_PROGBITS 0x080
78 #define TYPE_NOBITS 0x100
80 /* This struct is used to keep track of symbols for map-file generation. */
81 static struct bin_label
{
83 struct bin_label
*next
;
84 } *no_seg_labels
, **nsl_tail
;
86 static struct Section
{
89 int64_t length
; /* section length in bytes */
91 /* Section attributes */
92 int flags
; /* see flag definitions above */
93 uint64_t align
; /* section alignment */
94 uint64_t valign
; /* notional section alignment */
95 uint64_t start
; /* section start address */
96 uint64_t vstart
; /* section virtual start address */
97 char *follows
; /* the section that this one will follow */
98 char *vfollows
; /* the section that this one will notionally follow */
99 int32_t start_index
; /* NASM section id for non-relocated version */
100 int32_t vstart_index
; /* the NASM section id */
102 struct bin_label
*labels
; /* linked-list of label handles for map output. */
103 struct bin_label
**labels_end
; /* Holds address of end of labels list. */
104 struct Section
*ifollows
; /* Points to previous section (implicit follows). */
105 struct Section
*next
; /* This links sections with a defined start address. */
107 /* The extended bin format allows for sections to have a "virtual"
108 * start address. This is accomplished by creating two sections:
109 * one beginning at the Load Memory Address and the other beginning
110 * at the Virtual Memory Address. The LMA section is only used to
111 * define the section.<section_name>.start label, but there isn't
112 * any other good way for us to handle that label.
115 } *sections
, *last_section
;
117 static struct Reloc
{
123 struct Section
*target
;
124 } *relocs
, **reloctail
;
126 extern char *stdscan_bufptr
;
128 static uint8_t format_mode
; /* 0 = original bin, 1 = extended bin */
129 static int32_t current_section
; /* only really needed if format_mode = 0 */
130 static uint64_t origin
;
131 static int origin_defined
;
133 /* Stuff we need for map-file generation. */
135 #define MAP_SUMMARY 2
136 #define MAP_SECTIONS 4
137 #define MAP_SYMBOLS 8
138 static int map_control
= 0;
139 static char *infile
, *outfile
;
141 static const char *bin_stdmac
[] = {
142 "%define __SECT__ [section .text]",
143 "%imacro org 1+.nolist",
146 "%macro __NASM_CDecl__ 1",
151 static void add_reloc(struct Section
*s
, int32_t bytes
, int32_t secref
,
156 r
= *reloctail
= nasm_malloc(sizeof(struct Reloc
));
157 reloctail
= &r
->next
;
166 static struct Section
*find_section_by_name(const char *name
)
170 for (s
= sections
; s
; s
= s
->next
)
171 if (!strcmp(s
->name
, name
))
176 static struct Section
*find_section_by_index(int32_t index
)
180 for (s
= sections
; s
; s
= s
->next
)
181 if ((index
== s
->vstart_index
) || (index
== s
->start_index
))
186 static struct Section
*create_section(char *name
)
187 { /* Create a new section. */
188 last_section
->next
= nasm_malloc(sizeof(struct Section
));
189 last_section
->next
->ifollows
= last_section
;
190 last_section
= last_section
->next
;
191 last_section
->labels
= NULL
;
192 last_section
->labels_end
= &(last_section
->labels
);
194 /* Initialize section attributes. */
195 last_section
->name
= nasm_strdup(name
);
196 last_section
->contents
= saa_init(1L);
197 last_section
->follows
= last_section
->vfollows
= 0;
198 last_section
->length
= 0;
199 last_section
->flags
= 0;
200 last_section
->next
= NULL
;
202 /* Register our sections with NASM. */
203 last_section
->vstart_index
= seg_alloc();
204 last_section
->start_index
= seg_alloc();
208 static void bin_cleanup(int debuginfo
)
210 struct Section
*g
, **gp
;
211 struct Section
*gs
= NULL
, **gsp
;
212 struct Section
*s
, **sp
;
213 struct Section
*nobits
= NULL
, **nt
;
214 struct Section
*last_progbits
;
220 (void)debuginfo
; /* placate optimizers */
224 "bin_cleanup: Sections were initially referenced in this order:\n");
225 for (h
= 0, s
= sections
; s
; h
++, s
= s
->next
)
226 fprintf(stdout
, "%i. %s\n", h
, s
->name
);
229 /* Assembly has completed, so now we need to generate the output file.
230 * Step 1: Separate progbits and nobits sections into separate lists.
231 * Step 2: Sort the progbits sections into their output order.
232 * Step 3: Compute start addresses for all progbits sections.
233 * Step 4: Compute vstart addresses for all sections.
234 * Step 5: Apply relocations.
235 * Step 6: Write the sections' data to the output file.
236 * Step 7: Generate the map file.
237 * Step 8: Release all allocated memory.
240 /* To do: Smart section-type adaptation could leave some empty sections
241 * without a defined type (progbits/nobits). Won't fix now since this
242 * feature will be disabled. */
244 /* Step 1: Split progbits and nobits sections into separate lists. */
247 /* Move nobits sections into a separate list. Also pre-process nobits
248 * sections' attributes. */
249 for (sp
= §ions
->next
, s
= sections
->next
; s
; s
= *sp
) { /* Skip progbits sections. */
250 if (s
->flags
& TYPE_PROGBITS
) {
254 /* Do some special pre-processing on nobits sections' attributes. */
255 if (s
->flags
& (START_DEFINED
| ALIGN_DEFINED
| FOLLOWS_DEFINED
)) { /* Check for a mixture of real and virtual section attributes. */
257 flags
& (VSTART_DEFINED
| VALIGN_DEFINED
|
260 "cannot mix real and virtual attributes"
261 " in nobits section (%s)", s
->name
);
262 /* Real and virtual attributes mean the same thing for nobits sections. */
263 if (s
->flags
& START_DEFINED
) {
264 s
->vstart
= s
->start
;
265 s
->flags
|= VSTART_DEFINED
;
267 if (s
->flags
& ALIGN_DEFINED
) {
268 s
->valign
= s
->align
;
269 s
->flags
|= VALIGN_DEFINED
;
271 if (s
->flags
& FOLLOWS_DEFINED
) {
272 s
->vfollows
= s
->follows
;
273 s
->flags
|= VFOLLOWS_DEFINED
;
274 s
->flags
&= ~FOLLOWS_DEFINED
;
277 /* Every section must have a start address. */
278 if (s
->flags
& VSTART_DEFINED
) {
279 s
->start
= s
->vstart
;
280 s
->flags
|= START_DEFINED
;
282 /* Move the section into the nobits list. */
289 /* Step 2: Sort the progbits sections into their output order. */
291 /* In Step 2 we move around sections in groups. A group
292 * begins with a section (group leader) that has a user-
293 * defined start address or follows section. The remainder
294 * of the group is made up of the sections that implicitly
295 * follow the group leader (i.e., they were defined after
296 * the group leader and were not given an explicit start
297 * address or follows section by the user). */
299 /* For anyone attempting to read this code:
300 * g (group) points to a group of sections, the first one of which has
301 * a user-defined start address or follows section.
302 * gp (g previous) holds the location of the pointer to g.
303 * gs (g scan) is a temp variable that we use to scan to the end of the group.
304 * gsp (gs previous) holds the location of the pointer to gs.
305 * nt (nobits tail) points to the nobits section-list tail.
308 /* Link all 'follows' groups to their proper position. To do
309 * this we need to know three things: the start of the group
310 * to relocate (g), the section it is following (s), and the
311 * end of the group we're relocating (gs). */
312 for (gp
= §ions
, g
= sections
; g
; g
= gs
) { /* Find the next follows group that is out of place (g). */
313 if (!(g
->flags
& FOLLOWS_DEFINED
)) {
315 if ((g
->next
->flags
& FOLLOWS_DEFINED
) &&
316 strcmp(g
->name
, g
->next
->follows
))
325 /* Find the section that this group follows (s). */
326 for (sp
= §ions
, s
= sections
;
327 s
&& strcmp(s
->name
, g
->follows
);
328 sp
= &s
->next
, s
= s
->next
) ;
330 error(ERR_FATAL
, "section %s follows an invalid or"
331 " unknown section (%s)", g
->name
, g
->follows
);
332 if (s
->next
&& (s
->next
->flags
& FOLLOWS_DEFINED
) &&
333 !strcmp(s
->name
, s
->next
->follows
))
334 error(ERR_FATAL
, "sections %s and %s can't both follow"
335 " section %s", g
->name
, s
->next
->name
, s
->name
);
336 /* Find the end of the current follows group (gs). */
337 for (gsp
= &g
->next
, gs
= g
->next
;
338 gs
&& (gs
!= s
) && !(gs
->flags
& START_DEFINED
);
339 gsp
= &gs
->next
, gs
= gs
->next
) {
340 if (gs
->next
&& (gs
->next
->flags
& FOLLOWS_DEFINED
) &&
341 strcmp(gs
->name
, gs
->next
->follows
)) {
347 /* Re-link the group after its follows section. */
353 /* Link all 'start' groups to their proper position. Once
354 * again we need to know g, s, and gs (see above). The main
355 * difference is we already know g since we sort by moving
356 * groups from the 'unsorted' list into a 'sorted' list (g
357 * will always be the first section in the unsorted list). */
358 for (g
= sections
, sections
= NULL
; g
; g
= gs
) { /* Find the section that we will insert this group before (s). */
359 for (sp
= §ions
, s
= sections
; s
; sp
= &s
->next
, s
= s
->next
)
360 if ((s
->flags
& START_DEFINED
) && (g
->start
< s
->start
))
362 /* Find the end of the group (gs). */
363 for (gs
= g
->next
, gsp
= &g
->next
;
364 gs
&& !(gs
->flags
& START_DEFINED
);
365 gsp
= &gs
->next
, gs
= gs
->next
) ;
366 /* Re-link the group before the target section. */
371 /* Step 3: Compute start addresses for all progbits sections. */
373 /* Make sure we have an origin and a start address for the first section. */
375 switch (sections
->flags
& (START_DEFINED
| ALIGN_DEFINED
)) {
376 case START_DEFINED
| ALIGN_DEFINED
:
378 /* Make sure this section doesn't begin before the origin. */
379 if (sections
->start
< origin
)
380 error(ERR_FATAL
, "section %s begins"
381 " before program origin", sections
->name
);
384 sections
->start
= ((origin
+ sections
->align
- 1) &
385 ~(sections
->align
- 1));
388 sections
->start
= origin
;
390 if (!(sections
->flags
& START_DEFINED
))
392 origin
= sections
->start
;
394 sections
->flags
|= START_DEFINED
;
396 /* Make sure each section has an explicit start address. If it
397 * doesn't, then compute one based its alignment and the end of
398 * the previous section. */
399 for (pend
= sections
->start
, g
= s
= sections
; g
; g
= g
->next
) { /* Find the next section that could cause an overlap situation
400 * (has a defined start address, and is not zero length). */
403 s
&& ((s
->length
== 0) || !(s
->flags
& START_DEFINED
));
405 /* Compute the start address of this section, if necessary. */
406 if (!(g
->flags
& START_DEFINED
)) { /* Default to an alignment of 4 if unspecified. */
407 if (!(g
->flags
& ALIGN_DEFINED
)) {
409 g
->flags
|= ALIGN_DEFINED
;
411 /* Set the section start address. */
412 g
->start
= (pend
+ g
->align
- 1) & ~(g
->align
- 1);
413 g
->flags
|= START_DEFINED
;
415 /* Ugly special case for progbits sections' virtual attributes:
416 * If there is a defined valign, but no vstart and no vfollows, then
417 * we valign after the previous progbits section. This case doesn't
418 * really make much sense for progbits sections with a defined start
419 * address, but it is possible and we must do *something*.
420 * Not-so-ugly special case:
421 * If a progbits section has no virtual attributes, we set the
422 * vstart equal to the start address. */
423 if (!(g
->flags
& (VSTART_DEFINED
| VFOLLOWS_DEFINED
))) {
424 if (g
->flags
& VALIGN_DEFINED
)
425 g
->vstart
= (pend
+ g
->valign
- 1) & ~(g
->valign
- 1);
427 g
->vstart
= g
->start
;
428 g
->flags
|= VSTART_DEFINED
;
430 /* Ignore zero-length sections. */
433 /* Compute the span of this section. */
434 pend
= g
->start
+ g
->length
;
435 /* Check for section overlap. */
437 if (g
->start
> s
->start
)
438 error(ERR_FATAL
, "sections %s ~ %s and %s overlap!",
439 gs
->name
, g
->name
, s
->name
);
441 error(ERR_FATAL
, "sections %s and %s overlap!",
444 /* Remember this section as the latest >0 length section. */
448 /* Step 4: Compute vstart addresses for all sections. */
450 /* Attach the nobits sections to the end of the progbits sections. */
451 for (s
= sections
; s
->next
; s
= s
->next
) ;
454 /* Scan for sections that don't have a vstart address. If we find one we'll
455 * attempt to compute its vstart. If we can't compute the vstart, we leave
456 * it alone and come back to it in a subsequent scan. We continue scanning
457 * and re-scanning until we've gone one full cycle without computing any
459 do { /* Do one full scan of the sections list. */
460 for (h
= 0, g
= sections
; g
; g
= g
->next
) {
461 if (g
->flags
& VSTART_DEFINED
)
463 /* Find the section that this one virtually follows. */
464 if (g
->flags
& VFOLLOWS_DEFINED
) {
465 for (s
= sections
; s
&& strcmp(g
->vfollows
, s
->name
);
469 "section %s vfollows unknown section (%s)",
470 g
->name
, g
->vfollows
);
471 } else if (g
->ifollows
!= NULL
)
472 for (s
= sections
; s
&& (s
!= g
->ifollows
); s
= s
->next
) ;
473 /* The .bss section is the only one with ifollows = NULL. In this case we
474 * implicitly follow the last progbits section. */
478 /* If the section we're following has a vstart, we can proceed. */
479 if (s
->flags
& VSTART_DEFINED
) { /* Default to virtual alignment of four. */
480 if (!(g
->flags
& VALIGN_DEFINED
)) {
482 g
->flags
|= VALIGN_DEFINED
;
484 /* Compute the vstart address. */
486 (s
->vstart
+ s
->length
+ g
->valign
- 1) & ~(g
->valign
-
488 g
->flags
|= VSTART_DEFINED
;
490 /* Start and vstart mean the same thing for nobits sections. */
491 if (g
->flags
& TYPE_NOBITS
)
492 g
->start
= g
->vstart
;
497 /* Now check for any circular vfollows references, which will manifest
498 * themselves as sections without a defined vstart. */
499 for (h
= 0, s
= sections
; s
; s
= s
->next
) {
500 if (!(s
->flags
& VSTART_DEFINED
)) { /* Non-fatal errors after assembly has completed are generally a
501 * no-no, but we'll throw a fatal one eventually so it's ok. */
502 error(ERR_NONFATAL
, "cannot compute vstart for section %s",
508 error(ERR_FATAL
, "circular vfollows path detected");
512 "bin_cleanup: Confirm final section order for output file:\n");
513 for (h
= 0, s
= sections
; s
&& (s
->flags
& TYPE_PROGBITS
);
515 fprintf(stdout
, "%i. %s\n", h
, s
->name
);
518 /* Step 5: Apply relocations. */
520 /* Prepare the sections for relocating. */
521 for (s
= sections
; s
; s
= s
->next
)
522 saa_rewind(s
->contents
);
523 /* Apply relocations. */
524 for (r
= relocs
; r
; r
= r
->next
) {
525 uint8_t *p
, *q
, mydata
[8];
528 saa_fread(r
->target
->contents
, r
->posn
, mydata
, r
->bytes
);
533 l
+= ((int64_t)*p
++) << 8;
535 l
+= ((int64_t)*p
++) << 16;
536 l
+= ((int64_t)*p
++) << 24;
539 l
+= ((int64_t)*p
++) << 32;
540 l
+= ((int64_t)*p
++) << 40;
541 l
+= ((int64_t)*p
++) << 48;
542 l
+= ((int64_t)*p
++) << 56;
546 s
= find_section_by_index(r
->secref
);
548 if (r
->secref
== s
->start_index
)
553 s
= find_section_by_index(r
->secrel
);
555 if (r
->secrel
== s
->start_index
)
563 else if (r
->bytes
== 2)
566 *q
++ = (uint8_t)(l
& 0xFF);
567 saa_fwrite(r
->target
->contents
, r
->posn
, mydata
, r
->bytes
);
570 /* Step 6: Write the section data to the output file. */
572 /* Write the progbits sections to the output file. */
573 for (pend
= origin
, s
= sections
; s
&& (s
->flags
& TYPE_PROGBITS
); s
= s
->next
) { /* Skip zero-length sections. */
576 /* Pad the space between sections. */
577 for (h
= s
->start
- pend
; h
; h
--)
579 /* Write the section to the output file. */
581 saa_fpwrite(s
->contents
, fp
);
582 pend
= s
->start
+ s
->length
;
584 /* Done writing the file, so close it. */
587 /* Step 7: Generate the map file. */
590 const char *not_defined
= { "not defined" };
592 /* Display input and output file names. */
593 fprintf(rf
, "\n- NASM Map file ");
596 fprintf(rf
, "\n\nSource file: %s\nOutput file: %s\n\n",
599 if (map_control
& MAP_ORIGIN
) { /* Display program origin. */
600 fprintf(rf
, "-- Program origin ");
603 fprintf(rf
, "\n\n%08"PRIX64
"\n\n", origin
);
605 /* Display sections summary. */
606 if (map_control
& MAP_SUMMARY
) {
607 fprintf(rf
, "-- Sections (summary) ");
610 fprintf(rf
, "\n\nVstart Start Stop "
611 "Length Class Name\n");
612 for (s
= sections
; s
; s
= s
->next
) {
613 fprintf(rf
, "%16"PRIX64
" %16"PRIX64
" %16"PRIX64
" %08"PRIX64
" ",
614 s
->vstart
, s
->start
, s
->start
+ s
->length
,
616 if (s
->flags
& TYPE_PROGBITS
)
617 fprintf(rf
, "progbits ");
619 fprintf(rf
, "nobits ");
620 fprintf(rf
, "%s\n", s
->name
);
624 /* Display detailed section information. */
625 if (map_control
& MAP_SECTIONS
) {
626 fprintf(rf
, "-- Sections (detailed) ");
630 for (s
= sections
; s
; s
= s
->next
) {
631 fprintf(rf
, "---- Section %s ", s
->name
);
632 for (h
= 65 - strlen(s
->name
); h
; h
--)
634 fprintf(rf
, "\n\nclass: ");
635 if (s
->flags
& TYPE_PROGBITS
)
636 fprintf(rf
, "progbits");
638 fprintf(rf
, "nobits");
639 fprintf(rf
, "\nlength: %16"PRIX64
"\nstart: %16"PRIX64
""
640 "\nalign: ", s
->length
, s
->start
);
641 if (s
->flags
& ALIGN_DEFINED
)
642 fprintf(rf
, "%16"PRIX64
"", s
->align
);
644 fprintf(rf
, not_defined
);
645 fprintf(rf
, "\nfollows: ");
646 if (s
->flags
& FOLLOWS_DEFINED
)
647 fprintf(rf
, "%s", s
->follows
);
649 fprintf(rf
, not_defined
);
650 fprintf(rf
, "\nvstart: %16"PRIX64
"\nvalign: ", s
->vstart
);
651 if (s
->flags
& VALIGN_DEFINED
)
652 fprintf(rf
, "%16"PRIX64
"", s
->valign
);
654 fprintf(rf
, not_defined
);
655 fprintf(rf
, "\nvfollows: ");
656 if (s
->flags
& VFOLLOWS_DEFINED
)
657 fprintf(rf
, "%s", s
->vfollows
);
659 fprintf(rf
, not_defined
);
663 /* Display symbols information. */
664 if (map_control
& MAP_SYMBOLS
) {
665 int32_t segment
, offset
;
667 fprintf(rf
, "-- Symbols ");
672 fprintf(rf
, "---- No Section ");
675 fprintf(rf
, "\n\nValue Name\n");
676 for (l
= no_seg_labels
; l
; l
= l
->next
) {
677 lookup_label(l
->name
, &segment
, &offset
);
678 fprintf(rf
, "%08"PRIX32
" %s\n", offset
, l
->name
);
682 for (s
= sections
; s
; s
= s
->next
) {
684 fprintf(rf
, "---- Section %s ", s
->name
);
685 for (h
= 65 - strlen(s
->name
); h
; h
--)
687 fprintf(rf
, "\n\nReal Virtual Name\n");
688 for (l
= s
->labels
; l
; l
= l
->next
) {
689 lookup_label(l
->name
, &segment
, &offset
);
690 fprintf(rf
, "%16"PRIX64
" %16"PRIX64
" %s\n",
691 s
->start
+ offset
, s
->vstart
+ offset
,
700 /* Close the report file. */
701 if (map_control
&& (rf
!= stdout
) && (rf
!= stderr
))
704 /* Step 8: Release all allocated memory. */
706 /* Free sections, label pointer structs, etc.. */
710 saa_free(s
->contents
);
712 if (s
->flags
& FOLLOWS_DEFINED
)
713 nasm_free(s
->follows
);
714 if (s
->flags
& VFOLLOWS_DEFINED
)
715 nasm_free(s
->vfollows
);
724 /* Free no-section labels. */
725 while (no_seg_labels
) {
727 no_seg_labels
= l
->next
;
731 /* Free relocation structures. */
739 static void bin_out(int32_t segto
, const void *data
, uint32_t type
,
740 int32_t segment
, int32_t wrt
)
742 uint8_t *p
, mydata
[8];
748 wrt
= NO_SEG
; /* continue to do _something_ */
749 error(ERR_NONFATAL
, "WRT not supported by binary output format");
752 /* Handle absolute-assembly (structure definitions). */
753 if (segto
== NO_SEG
) {
754 if ((type
& OUT_TYPMASK
) != OUT_RESERVE
)
755 error(ERR_NONFATAL
, "attempt to assemble code in"
756 " [ABSOLUTE] space");
760 /* Find the segment we are targeting. */
761 s
= find_section_by_index(segto
);
763 error(ERR_PANIC
, "code directed to nonexistent segment?");
765 /* "Smart" section-type adaptation code. */
766 if (!(s
->flags
& TYPE_DEFINED
)) {
767 if ((type
& OUT_TYPMASK
) == OUT_RESERVE
)
768 s
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
770 s
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
773 if ((s
->flags
& TYPE_NOBITS
) && ((type
& OUT_TYPMASK
) != OUT_RESERVE
))
774 error(ERR_WARNING
, "attempt to initialize memory in a"
775 " nobits section: ignored");
777 if ((type
& OUT_TYPMASK
) == OUT_ADDRESS
) {
778 if (segment
!= NO_SEG
&& !find_section_by_index(segment
)) {
780 error(ERR_NONFATAL
, "binary output format does not support"
781 " segment base references");
783 error(ERR_NONFATAL
, "binary output format does not support"
784 " external references");
787 if (s
->flags
& TYPE_PROGBITS
) {
788 if (segment
!= NO_SEG
)
789 add_reloc(s
, type
& OUT_SIZMASK
, segment
, -1L);
791 if ((type
& OUT_SIZMASK
) == 4)
792 WRITELONG(p
, *(int32_t *)data
);
793 else if ((type
& OUT_SIZMASK
) == 8)
794 WRITEDLONG(p
, *(int64_t *)data
);
796 WRITESHORT(p
, *(int32_t *)data
);
797 saa_wbytes(s
->contents
, mydata
, type
& OUT_SIZMASK
);
799 s
->length
+= type
& OUT_SIZMASK
;
800 } else if ((type
& OUT_TYPMASK
) == OUT_RAWDATA
) {
802 if (s
->flags
& TYPE_PROGBITS
)
803 saa_wbytes(s
->contents
, data
, type
);
805 } else if ((type
& OUT_TYPMASK
) == OUT_RESERVE
) {
807 if (s
->flags
& TYPE_PROGBITS
) {
808 error(ERR_WARNING
, "uninitialized space declared in"
809 " %s section: zeroing", s
->name
);
810 saa_wbytes(s
->contents
, NULL
, type
);
813 } else if ((type
& OUT_TYPMASK
) == OUT_REL2ADR
||
814 (type
& OUT_TYPMASK
) == OUT_REL4ADR
) {
815 realbytes
= (type
& OUT_TYPMASK
);
816 if (realbytes
== OUT_REL2ADR
)
820 if (segment
!= NO_SEG
&& !find_section_by_index(segment
)) {
822 error(ERR_NONFATAL
, "binary output format does not support"
823 " segment base references");
825 error(ERR_NONFATAL
, "binary output format does not support"
826 " external references");
829 if (s
->flags
& TYPE_PROGBITS
) {
830 add_reloc(s
, realbytes
, segment
, segto
);
833 WRITELONG(p
, *(int32_t *)data
- realbytes
- s
->length
);
835 WRITESHORT(p
, *(int32_t *)data
- realbytes
- s
->length
);
836 saa_wbytes(s
->contents
, mydata
, realbytes
);
838 s
->length
+= realbytes
;
842 static void bin_deflabel(char *name
, int32_t segment
, int32_t offset
,
843 int is_global
, char *special
)
845 (void)segment
; /* Don't warn that this parameter is unused */
846 (void)offset
; /* Don't warn that this parameter is unused */
849 error(ERR_NONFATAL
, "binary format does not support any"
850 " special symbol types");
851 else if (name
[0] == '.' && name
[1] == '.' && name
[2] != '@')
852 error(ERR_NONFATAL
, "unrecognised special symbol `%s'", name
);
853 else if (is_global
== 2)
854 error(ERR_NONFATAL
, "binary output format does not support common"
858 struct bin_label
***ltp
;
860 /* Remember label definition so we can look it up later when
861 * creating the map file. */
862 s
= find_section_by_index(segment
);
864 ltp
= &(s
->labels_end
);
867 (**ltp
) = nasm_malloc(sizeof(struct bin_label
));
868 (**ltp
)->name
= name
;
869 (**ltp
)->next
= NULL
;
870 *ltp
= &((**ltp
)->next
);
875 /* These constants and the following function are used
876 * by bin_secname() to parse attribute assignments. */
878 enum { ATTRIB_START
, ATTRIB_ALIGN
, ATTRIB_FOLLOWS
,
879 ATTRIB_VSTART
, ATTRIB_VALIGN
, ATTRIB_VFOLLOWS
,
880 ATTRIB_NOBITS
, ATTRIB_PROGBITS
883 static int bin_read_attribute(char **line
, int *attribute
,
887 int attrib_name_size
;
888 struct tokenval tokval
;
891 /* Skip whitespace. */
892 while (**line
&& isspace(**line
))
897 /* Figure out what attribute we're reading. */
898 if (!nasm_strnicmp(*line
, "align=", 6)) {
899 *attribute
= ATTRIB_ALIGN
;
900 attrib_name_size
= 6;
901 } else if (format_mode
) {
902 if (!nasm_strnicmp(*line
, "start=", 6)) {
903 *attribute
= ATTRIB_START
;
904 attrib_name_size
= 6;
905 } else if (!nasm_strnicmp(*line
, "follows=", 8)) {
906 *attribute
= ATTRIB_FOLLOWS
;
909 } else if (!nasm_strnicmp(*line
, "vstart=", 7)) {
910 *attribute
= ATTRIB_VSTART
;
911 attrib_name_size
= 7;
912 } else if (!nasm_strnicmp(*line
, "valign=", 7)) {
913 *attribute
= ATTRIB_VALIGN
;
914 attrib_name_size
= 7;
915 } else if (!nasm_strnicmp(*line
, "vfollows=", 9)) {
916 *attribute
= ATTRIB_VFOLLOWS
;
919 } else if (!nasm_strnicmp(*line
, "nobits", 6) &&
920 (isspace((*line
)[6]) || ((*line
)[6] == '\0'))) {
921 *attribute
= ATTRIB_NOBITS
;
924 } else if (!nasm_strnicmp(*line
, "progbits", 8) &&
925 (isspace((*line
)[8]) || ((*line
)[8] == '\0'))) {
926 *attribute
= ATTRIB_PROGBITS
;
934 /* Find the end of the expression. */
935 if ((*line
)[attrib_name_size
] != '(') {
936 /* Single term (no parenthesis). */
937 exp
= *line
+= attrib_name_size
;
938 while (**line
&& !isspace(**line
))
948 /* Full expression (delimited by parenthesis) */
949 exp
= *line
+= attrib_name_size
+ 1;
951 (*line
) += strcspn(*line
, "()'\"");
962 if ((**line
== '"') || (**line
== '\'')) {
971 "invalid syntax in `section' directive");
977 error(ERR_NONFATAL
, "expecting `)'");
981 *(*line
- 1) = '\0'; /* Terminate the expression. */
984 /* Check for no value given. */
986 error(ERR_WARNING
, "No value given to attribute in"
987 " `section' directive");
991 /* Read and evaluate the expression. */
993 stdscan_bufptr
= exp
;
994 tokval
.t_type
= TOKEN_INVALID
;
995 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, error
, NULL
);
997 if (!is_really_simple(e
)) {
998 error(ERR_NONFATAL
, "section attribute value must be"
999 " a critical expression");
1003 error(ERR_NONFATAL
, "Invalid attribute value"
1004 " specified in `section' directive.");
1007 *value
= (uint64_t)reloc_value(e
);
1011 static void bin_assign_attributes(struct Section
*sec
, char *astring
)
1013 int attribute
, check
;
1017 while (1) { /* Get the next attribute. */
1018 check
= bin_read_attribute(&astring
, &attribute
, &value
);
1019 /* Skip bad attribute. */
1022 /* Unknown section attribute, so skip it and warn the user. */
1025 break; /* End of line. */
1028 while (*astring
&& !isspace(*astring
))
1034 error(ERR_WARNING
, "ignoring unknown section attribute:"
1040 switch (attribute
) { /* Handle nobits attribute. */
1042 if ((sec
->flags
& TYPE_DEFINED
)
1043 && (sec
->flags
& TYPE_PROGBITS
))
1045 "attempt to change section type"
1046 " from progbits to nobits");
1048 sec
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
1051 /* Handle progbits attribute. */
1052 case ATTRIB_PROGBITS
:
1053 if ((sec
->flags
& TYPE_DEFINED
) && (sec
->flags
& TYPE_NOBITS
))
1054 error(ERR_NONFATAL
, "attempt to change section type"
1055 " from nobits to progbits");
1057 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1060 /* Handle align attribute. */
1062 if (!format_mode
&& (!strcmp(sec
->name
, ".text")))
1063 error(ERR_NONFATAL
, "cannot specify an alignment"
1064 " to the .text section");
1066 if (!value
|| ((value
- 1) & value
))
1067 error(ERR_NONFATAL
, "argument to `align' is not a"
1069 else { /* Alignment is already satisfied if the previous
1070 * align value is greater. */
1071 if ((sec
->flags
& ALIGN_DEFINED
)
1072 && (value
< sec
->align
))
1075 /* Don't allow a conflicting align value. */
1076 if ((sec
->flags
& START_DEFINED
)
1077 && (sec
->start
& (value
- 1)))
1079 "`align' value conflicts "
1080 "with section start address");
1083 sec
->flags
|= ALIGN_DEFINED
;
1089 /* Handle valign attribute. */
1091 if (!value
|| ((value
- 1) & value
))
1092 error(ERR_NONFATAL
, "argument to `valign' is not a"
1094 else { /* Alignment is already satisfied if the previous
1095 * align value is greater. */
1096 if ((sec
->flags
& VALIGN_DEFINED
) && (value
< sec
->valign
))
1097 value
= sec
->valign
;
1099 /* Don't allow a conflicting valign value. */
1100 if ((sec
->flags
& VSTART_DEFINED
)
1101 && (sec
->vstart
& (value
- 1)))
1103 "`valign' value conflicts "
1104 "with `vstart' address");
1106 sec
->valign
= value
;
1107 sec
->flags
|= VALIGN_DEFINED
;
1112 /* Handle start attribute. */
1114 if (sec
->flags
& FOLLOWS_DEFINED
)
1115 error(ERR_NONFATAL
, "cannot combine `start' and `follows'"
1116 " section attributes");
1117 else if ((sec
->flags
& START_DEFINED
) && (value
!= sec
->start
))
1118 error(ERR_NONFATAL
, "section start address redefined");
1121 sec
->flags
|= START_DEFINED
;
1122 if (sec
->flags
& ALIGN_DEFINED
) {
1123 if (sec
->start
& (sec
->align
- 1))
1124 error(ERR_NONFATAL
, "`start' address conflicts"
1125 " with section alignment");
1126 sec
->flags
^= ALIGN_DEFINED
;
1131 /* Handle vstart attribute. */
1133 if (sec
->flags
& VFOLLOWS_DEFINED
)
1135 "cannot combine `vstart' and `vfollows'"
1136 " section attributes");
1137 else if ((sec
->flags
& VSTART_DEFINED
)
1138 && (value
!= sec
->vstart
))
1140 "section virtual start address"
1141 " (vstart) redefined");
1143 sec
->vstart
= value
;
1144 sec
->flags
|= VSTART_DEFINED
;
1145 if (sec
->flags
& VALIGN_DEFINED
) {
1146 if (sec
->vstart
& (sec
->valign
- 1))
1147 error(ERR_NONFATAL
, "`vstart' address conflicts"
1148 " with `valign' value");
1149 sec
->flags
^= VALIGN_DEFINED
;
1154 /* Handle follows attribute. */
1155 case ATTRIB_FOLLOWS
:
1157 astring
+= strcspn(astring
, " \t");
1159 error(ERR_NONFATAL
, "expecting section name for `follows'"
1162 *(astring
++) = '\0';
1163 if (sec
->flags
& START_DEFINED
)
1165 "cannot combine `start' and `follows'"
1166 " section attributes");
1167 sec
->follows
= nasm_strdup(p
);
1168 sec
->flags
|= FOLLOWS_DEFINED
;
1172 /* Handle vfollows attribute. */
1173 case ATTRIB_VFOLLOWS
:
1174 if (sec
->flags
& VSTART_DEFINED
)
1176 "cannot combine `vstart' and `vfollows'"
1177 " section attributes");
1180 astring
+= strcspn(astring
, " \t");
1183 "expecting section name for `vfollows'"
1186 *(astring
++) = '\0';
1187 sec
->vfollows
= nasm_strdup(p
);
1188 sec
->flags
|= VFOLLOWS_DEFINED
;
1196 static void bin_define_section_labels(void)
1198 static int labels_defined
= 0;
1199 struct Section
*sec
;
1205 for (sec
= sections
; sec
; sec
= sec
->next
) {
1206 base_len
= strlen(sec
->name
) + 8;
1207 label_name
= nasm_malloc(base_len
+ 8);
1208 strcpy(label_name
, "section.");
1209 strcpy(label_name
+ 8, sec
->name
);
1211 /* section.<name>.start */
1212 strcpy(label_name
+ base_len
, ".start");
1213 define_label(label_name
, sec
->start_index
, 0L,
1214 NULL
, 0, 0, bin_get_ofmt(), error
);
1216 /* section.<name>.vstart */
1217 strcpy(label_name
+ base_len
, ".vstart");
1218 define_label(label_name
, sec
->vstart_index
, 0L,
1219 NULL
, 0, 0, bin_get_ofmt(), error
);
1221 nasm_free(label_name
);
1226 static int32_t bin_secname(char *name
, int pass
, int *bits
)
1229 struct Section
*sec
;
1231 /* bin_secname is called with *name = NULL at the start of each
1232 * pass. Use this opportunity to establish the default section
1233 * (default is BITS-16 ".text" segment).
1235 if (!name
) { /* Reset ORG and section attributes at the start of each pass. */
1237 for (sec
= sections
; sec
; sec
= sec
->next
)
1238 sec
->flags
&= ~(START_DEFINED
| VSTART_DEFINED
|
1239 ALIGN_DEFINED
| VALIGN_DEFINED
);
1241 /* Define section start and vstart labels. */
1242 if (format_mode
&& (pass
!= 1))
1243 bin_define_section_labels();
1245 /* Establish the default (.text) section. */
1247 sec
= find_section_by_name(".text");
1248 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1249 current_section
= sec
->vstart_index
;
1250 return current_section
;
1253 /* Attempt to find the requested section. If it does not
1254 * exist, create it. */
1256 while (*p
&& !isspace(*p
))
1260 sec
= find_section_by_name(name
);
1262 sec
= create_section(name
);
1263 if (!strcmp(name
, ".data"))
1264 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1265 else if (!strcmp(name
, ".bss")) {
1266 sec
->flags
|= TYPE_DEFINED
| TYPE_NOBITS
;
1267 sec
->ifollows
= NULL
;
1268 } else if (!format_mode
) {
1269 error(ERR_NONFATAL
, "section name must be "
1270 ".text, .data, or .bss");
1271 return current_section
;
1275 /* Handle attribute assignments. */
1277 bin_assign_attributes(sec
, p
);
1279 #ifndef ABIN_SMART_ADAPT
1280 /* The following line disables smart adaptation of
1281 * PROGBITS/NOBITS section types (it forces sections to
1282 * default to PROGBITS). */
1283 if ((pass
!= 1) && !(sec
->flags
& TYPE_DEFINED
))
1284 sec
->flags
|= TYPE_DEFINED
| TYPE_PROGBITS
;
1287 /* Set the current section and return. */
1288 current_section
= sec
->vstart_index
;
1289 return current_section
;
1292 static int bin_directive(char *directive
, char *args
, int pass
)
1294 /* Handle ORG directive */
1295 if (!nasm_stricmp(directive
, "org")) {
1296 struct tokenval tokval
;
1301 stdscan_bufptr
= args
;
1302 tokval
.t_type
= TOKEN_INVALID
;
1303 e
= evaluate(stdscan
, NULL
, &tokval
, NULL
, 1, error
, NULL
);
1305 if (!is_really_simple(e
))
1306 error(ERR_NONFATAL
, "org value must be a critical"
1309 value
= reloc_value(e
);
1310 /* Check for ORG redefinition. */
1311 if (origin_defined
&& (value
!= origin
))
1312 error(ERR_NONFATAL
, "program origin redefined");
1319 error(ERR_NONFATAL
, "No or invalid offset specified"
1320 " in ORG directive.");
1324 /* The 'map' directive allows the user to generate section
1325 * and symbol information to stdout, stderr, or to a file. */
1326 else if (format_mode
&& !nasm_stricmp(directive
, "map")) {
1331 args
+= strspn(args
, " \t");
1334 args
+= strcspn(args
, " \t");
1337 if (!nasm_stricmp(p
, "all"))
1339 MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
| MAP_SYMBOLS
;
1340 else if (!nasm_stricmp(p
, "brief"))
1341 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
;
1342 else if (!nasm_stricmp(p
, "sections"))
1343 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
;
1344 else if (!nasm_stricmp(p
, "segments"))
1345 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
| MAP_SECTIONS
;
1346 else if (!nasm_stricmp(p
, "symbols"))
1347 map_control
|= MAP_SYMBOLS
;
1349 if (!nasm_stricmp(p
, "stdout"))
1351 else if (!nasm_stricmp(p
, "stderr"))
1353 else { /* Must be a filename. */
1354 rf
= fopen(p
, "wt");
1356 error(ERR_WARNING
, "unable to open map file `%s'",
1363 error(ERR_WARNING
, "map file already specified");
1365 if (map_control
== 0)
1366 map_control
|= MAP_ORIGIN
| MAP_SUMMARY
;
1374 static void bin_filename(char *inname
, char *outname
, efunc error
)
1376 standard_extension(inname
, outname
, "", error
);
1381 static int32_t bin_segbase(int32_t segment
)
1386 static int bin_set_info(enum geninfo type
, char **val
)
1393 static void bin_init(FILE * afp
, efunc errfunc
, ldfunc ldef
, evalfunc eval
)
1398 (void)eval
; /* Don't warn that this parameter is unused. */
1399 (void)ldef
; /* Placate optimizers. */
1401 maxbits
= 64; /* Support 64-bit Segments */
1403 reloctail
= &relocs
;
1405 no_seg_labels
= NULL
;
1406 nsl_tail
= &no_seg_labels
;
1407 format_mode
= 1; /* Extended bin format
1408 * (set this to zero for old bin format). */
1410 /* Create default section (.text). */
1411 sections
= last_section
= nasm_malloc(sizeof(struct Section
));
1412 last_section
->next
= NULL
;
1413 last_section
->name
= nasm_strdup(".text");
1414 last_section
->contents
= saa_init(1L);
1415 last_section
->follows
= last_section
->vfollows
= 0;
1416 last_section
->ifollows
= NULL
;
1417 last_section
->length
= 0;
1418 last_section
->flags
= TYPE_DEFINED
| TYPE_PROGBITS
;
1419 last_section
->labels
= NULL
;
1420 last_section
->labels_end
= &(last_section
->labels
);
1421 last_section
->start_index
= seg_alloc();
1422 last_section
->vstart_index
= current_section
= seg_alloc();
1425 struct ofmt of_bin
= {
1426 "flat-form binary files (e.g. DOS .COM, .SYS)",
1443 /* This is needed for bin_define_section_labels() */
1444 struct ofmt
*bin_get_ofmt(void)
1449 #endif /* #ifdef OF_BIN */