Convert to C90
[binutils.git] / binutils / dlltool.c
blob81b6b92246e42ae1c62abea967d653f430ebce44
1 /* dlltool.c -- tool to generate stuff for PE style DLLs
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 /* This program allows you to build the files necessary to create
24 DLLs to run on a system which understands PE format image files.
25 (eg, Windows NT)
27 See "Peering Inside the PE: A Tour of the Win32 Portable Executable
28 File Format", MSJ 1994, Volume 9 for more information.
29 Also see "Microsoft Portable Executable and Common Object File Format,
30 Specification 4.1" for more information.
32 A DLL contains an export table which contains the information
33 which the runtime loader needs to tie up references from a
34 referencing program.
36 The export table is generated by this program by reading
37 in a .DEF file or scanning the .a and .o files which will be in the
38 DLL. A .o file can contain information in special ".drectve" sections
39 with export information.
41 A DEF file contains any number of the following commands:
44 NAME <name> [ , <base> ]
45 The result is going to be <name>.EXE
47 LIBRARY <name> [ , <base> ]
48 The result is going to be <name>.DLL
50 EXPORTS ( ( ( <name1> [ = <name2> ] )
51 | ( <name1> = <module-name> . <external-name>))
52 [ @ <integer> ] [ NONAME ] [CONSTANT] [DATA] ) *
53 Declares name1 as an exported symbol from the
54 DLL, with optional ordinal number <integer>.
55 Or declares name1 as an alias (forward) of the function <external-name>
56 in the DLL <module-name>.
58 IMPORTS ( ( <internal-name> = <module-name> . <integer> )
59 | ( [ <internal-name> = ] <module-name> . <external-name> )) *
60 Declares that <external-name> or the exported function whoes ordinal number
61 is <integer> is to be imported from the file <module-name>. If
62 <internal-name> is specified then this is the name that the imported
63 function will be refered to in the body of the DLL.
65 DESCRIPTION <string>
66 Puts <string> into output .exp file in the .rdata section
68 [STACKSIZE|HEAPSIZE] <number-reserve> [ , <number-commit> ]
69 Generates --stack|--heap <number-reserve>,<number-commit>
70 in the output .drectve section. The linker will
71 see this and act upon it.
73 [CODE|DATA] <attr>+
74 SECTIONS ( <sectionname> <attr>+ )*
75 <attr> = READ | WRITE | EXECUTE | SHARED
76 Generates --attr <sectionname> <attr> in the output
77 .drectve section. The linker will see this and act
78 upon it.
81 A -export:<name> in a .drectve section in an input .o or .a
82 file to this program is equivalent to a EXPORTS <name>
83 in a .DEF file.
87 The program generates output files with the prefix supplied
88 on the command line, or in the def file, or taken from the first
89 supplied argument.
91 The .exp.s file contains the information necessary to export
92 the routines in the DLL. The .lib.s file contains the information
93 necessary to use the DLL's routines from a referencing program.
97 Example:
99 file1.c:
100 asm (".section .drectve");
101 asm (".ascii \"-export:adef\"");
103 void adef (char * s)
105 printf ("hello from the dll %s\n", s);
108 void bdef (char * s)
110 printf ("hello from the dll and the other entry point %s\n", s);
113 file2.c:
114 asm (".section .drectve");
115 asm (".ascii \"-export:cdef\"");
116 asm (".ascii \"-export:ddef\"");
118 void cdef (char * s)
120 printf ("hello from the dll %s\n", s);
123 void ddef (char * s)
125 printf ("hello from the dll and the other entry point %s\n", s);
128 int printf (void)
130 return 9;
133 themain.c:
134 int main (void)
136 cdef ();
137 return 0;
140 thedll.def
142 LIBRARY thedll
143 HEAPSIZE 0x40000, 0x2000
144 EXPORTS bdef @ 20
145 cdef @ 30 NONAME
147 SECTIONS donkey READ WRITE
148 aardvark EXECUTE
150 # Compile up the parts of the dll and the program
152 gcc -c file1.c file2.c themain.c
154 # Optional: put the dll objects into a library
155 # (you don't have to, you could name all the object
156 # files on the dlltool line)
158 ar qcv thedll.in file1.o file2.o
159 ranlib thedll.in
161 # Run this tool over the DLL's .def file and generate an exports
162 # file (thedll.o) and an imports file (thedll.a).
163 # (You may have to use -S to tell dlltool where to find the assembler).
165 dlltool --def thedll.def --output-exp thedll.o --output-lib thedll.a
167 # Build the dll with the library and the export table
169 ld -o thedll.dll thedll.o thedll.in
171 # Link the executable with the import library
173 gcc -o themain.exe themain.o thedll.a
175 This example can be extended if relocations are needed in the DLL:
177 # Compile up the parts of the dll and the program
179 gcc -c file1.c file2.c themain.c
181 # Run this tool over the DLL's .def file and generate an imports file.
183 dlltool --def thedll.def --output-lib thedll.lib
185 # Link the executable with the import library and generate a base file
186 # at the same time
188 gcc -o themain.exe themain.o thedll.lib -Wl,--base-file -Wl,themain.base
190 # Run this tool over the DLL's .def file and generate an exports file
191 # which includes the relocations from the base file.
193 dlltool --def thedll.def --base-file themain.base --output-exp thedll.exp
195 # Build the dll with file1.o, file2.o and the export table
197 ld -o thedll.dll thedll.exp file1.o file2.o */
199 /* .idata section description
201 The .idata section is the import table. It is a collection of several
202 subsections used to keep the pieces for each dll together: .idata$[234567].
203 IE: Each dll's .idata$2's are catenated together, each .idata$3's, etc.
205 .idata$2 = Import Directory Table
206 = array of IMAGE_IMPORT_DESCRIPTOR's.
208 DWORD Import Lookup Table; - pointer to .idata$4
209 DWORD TimeDateStamp; - currently always 0
210 DWORD ForwarderChain; - currently always 0
211 DWORD Name; - pointer to dll's name
212 PIMAGE_THUNK_DATA FirstThunk; - pointer to .idata$5
214 .idata$3 = null terminating entry for .idata$2.
216 .idata$4 = Import Lookup Table
217 = array of array of pointers to hint name table.
218 There is one for each dll being imported from, and each dll's set is
219 terminated by a trailing NULL.
221 .idata$5 = Import Address Table
222 = array of array of pointers to hint name table.
223 There is one for each dll being imported from, and each dll's set is
224 terminated by a trailing NULL.
225 Initially, this table is identical to the Import Lookup Table. However,
226 at load time, the loader overwrites the entries with the address of the
227 function.
229 .idata$6 = Hint Name Table
230 = Array of { short, asciz } entries, one for each imported function.
231 The `short' is the function's ordinal number.
233 .idata$7 = dll name (eg: "kernel32.dll"). (.idata$6 for ppc). */
235 /* AIX requires this to be the first thing in the file. */
236 #ifndef __GNUC__
237 # ifdef _AIX
238 #pragma alloca
239 #endif
240 #endif
242 #define show_allnames 0
244 #define PAGE_SIZE 4096
245 #define PAGE_MASK (-PAGE_SIZE)
246 #include "bfd.h"
247 #include "libiberty.h"
248 #include "bucomm.h"
249 #include "getopt.h"
250 #include "demangle.h"
251 #include "dyn-string.h"
252 #include "dlltool.h"
253 #include "safe-ctype.h"
255 #include <time.h>
256 #include <sys/stat.h>
258 #ifdef ANSI_PROTOTYPES
259 #include <stdarg.h>
260 #else
261 #include <varargs.h>
262 #endif
264 #ifdef DLLTOOL_ARM
265 #include "coff/arm.h"
266 #include "coff/internal.h"
267 #endif
269 /* Forward references. */
270 static char *look_for_prog
271 PARAMS ((const char *, const char *, int));
272 static char *deduce_name
273 PARAMS ((const char *));
275 #ifdef DLLTOOL_MCORE_ELF
276 static void mcore_elf_cache_filename
277 PARAMS ((char *));
278 static void mcore_elf_gen_out_file
279 PARAMS ((void));
280 #endif
282 #ifdef HAVE_SYS_WAIT_H
283 #include <sys/wait.h>
284 #else /* ! HAVE_SYS_WAIT_H */
285 #if ! defined (_WIN32) || defined (__CYGWIN32__)
286 #ifndef WIFEXITED
287 #define WIFEXITED(w) (((w) & 0377) == 0)
288 #endif
289 #ifndef WIFSIGNALED
290 #define WIFSIGNALED(w) (((w) & 0377) != 0177 && ((w) & ~0377) == 0)
291 #endif
292 #ifndef WTERMSIG
293 #define WTERMSIG(w) ((w) & 0177)
294 #endif
295 #ifndef WEXITSTATUS
296 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
297 #endif
298 #else /* defined (_WIN32) && ! defined (__CYGWIN32__) */
299 #ifndef WIFEXITED
300 #define WIFEXITED(w) (((w) & 0xff) == 0)
301 #endif
302 #ifndef WIFSIGNALED
303 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
304 #endif
305 #ifndef WTERMSIG
306 #define WTERMSIG(w) ((w) & 0x7f)
307 #endif
308 #ifndef WEXITSTATUS
309 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
310 #endif
311 #endif /* defined (_WIN32) && ! defined (__CYGWIN32__) */
312 #endif /* ! HAVE_SYS_WAIT_H */
314 /* ifunc and ihead data structures: ttk@cygnus.com 1997
316 When IMPORT declarations are encountered in a .def file the
317 function import information is stored in a structure referenced by
318 the global variable IMPORT_LIST. The structure is a linked list
319 containing the names of the dll files each function is imported
320 from and a linked list of functions being imported from that dll
321 file. This roughly parallels the structure of the .idata section
322 in the PE object file.
324 The contents of .def file are interpreted from within the
325 process_def_file function. Every time an IMPORT declaration is
326 encountered, it is broken up into its component parts and passed to
327 def_import. IMPORT_LIST is initialized to NULL in function main. */
329 typedef struct ifunct
331 char * name; /* Name of function being imported. */
332 int ord; /* Two-byte ordinal value associated with function. */
333 struct ifunct *next;
334 } ifunctype;
336 typedef struct iheadt
338 char *dllname; /* Name of dll file imported from. */
339 long nfuncs; /* Number of functions in list. */
340 struct ifunct *funchead; /* First function in list. */
341 struct ifunct *functail; /* Last function in list. */
342 struct iheadt *next; /* Next dll file in list. */
343 } iheadtype;
345 /* Structure containing all import information as defined in .def file
346 (qv "ihead structure"). */
348 static iheadtype *import_list = NULL;
350 static char *as_name = NULL;
351 static char * as_flags = "";
353 static char *tmp_prefix = "d";
355 static int no_idata4;
356 static int no_idata5;
357 static char *exp_name;
358 static char *imp_name;
359 static char *head_label;
360 static char *imp_name_lab;
361 static char *dll_name;
363 static int add_indirect = 0;
364 static int add_underscore = 0;
365 static int dontdeltemps = 0;
367 /* TRUE if we should export all symbols. Otherwise, we only export
368 symbols listed in .drectve sections or in the def file. */
369 static bfd_boolean export_all_symbols;
371 /* TRUE if we should exclude the symbols in DEFAULT_EXCLUDES when
372 exporting all symbols. */
373 static bfd_boolean do_default_excludes = TRUE;
375 /* Default symbols to exclude when exporting all the symbols. */
376 static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr";
378 /* TRUE if we should add __imp_<SYMBOL> to import libraries for backward
379 compatibility to old Cygwin releases. */
380 static bfd_boolean create_compat_implib;
382 static char *def_file;
384 extern char * program_name;
386 static int machine;
387 static int killat;
388 static int add_stdcall_alias;
389 static int verbose;
390 static FILE *output_def;
391 static FILE *base_file;
393 #ifdef DLLTOOL_ARM
394 #ifdef DLLTOOL_ARM_EPOC
395 static const char *mname = "arm-epoc";
396 #else
397 static const char *mname = "arm";
398 #endif
399 #endif
401 #ifdef DLLTOOL_I386
402 static const char *mname = "i386";
403 #endif
405 #ifdef DLLTOOL_PPC
406 static const char *mname = "ppc";
407 #endif
409 #ifdef DLLTOOL_SH
410 static const char *mname = "sh";
411 #endif
413 #ifdef DLLTOOL_MIPS
414 static const char *mname = "mips";
415 #endif
417 #ifdef DLLTOOL_MCORE
418 static const char * mname = "mcore-le";
419 #endif
421 #ifdef DLLTOOL_MCORE_ELF
422 static const char * mname = "mcore-elf";
423 static char * mcore_elf_out_file = NULL;
424 static char * mcore_elf_linker = NULL;
425 static char * mcore_elf_linker_flags = NULL;
427 #define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
428 #endif
430 #ifndef DRECTVE_SECTION_NAME
431 #define DRECTVE_SECTION_NAME ".drectve"
432 #endif
434 #define PATHMAX 250 /* What's the right name for this ? */
436 char *tmp_asm_buf;
437 char *tmp_head_s_buf;
438 char *tmp_head_o_buf;
439 char *tmp_tail_s_buf;
440 char *tmp_tail_o_buf;
441 char *tmp_stub_buf;
443 #define TMP_ASM dlltmp (tmp_asm_buf, "%sc.s")
444 #define TMP_HEAD_S dlltmp (tmp_head_s_buf, "%sh.s")
445 #define TMP_HEAD_O dlltmp (tmp_head_o_buf, "%sh.o")
446 #define TMP_TAIL_S dlltmp (tmp_tail_s_buf, "%st.s")
447 #define TMP_TAIL_O dlltmp (tmp_tail_o_buf, "%st.o")
448 #define TMP_STUB dlltmp (tmp_stub_buf, "%ss")
450 /* This bit of assemly does jmp * .... */
451 static const unsigned char i386_jtab[] =
453 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
456 static const unsigned char arm_jtab[] =
458 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
459 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
460 0, 0, 0, 0
463 static const unsigned char arm_interwork_jtab[] =
465 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
466 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
467 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
468 0, 0, 0, 0
471 static const unsigned char thumb_jtab[] =
473 0x40, 0xb4, /* push {r6} */
474 0x02, 0x4e, /* ldr r6, [pc, #8] */
475 0x36, 0x68, /* ldr r6, [r6] */
476 0xb4, 0x46, /* mov ip, r6 */
477 0x40, 0xbc, /* pop {r6} */
478 0x60, 0x47, /* bx ip */
479 0, 0, 0, 0
482 static const unsigned char mcore_be_jtab[] =
484 0x71, 0x02, /* lrw r1,2 */
485 0x81, 0x01, /* ld.w r1,(r1,0) */
486 0x00, 0xC1, /* jmp r1 */
487 0x12, 0x00, /* nop */
488 0x00, 0x00, 0x00, 0x00 /* <address> */
491 static const unsigned char mcore_le_jtab[] =
493 0x02, 0x71, /* lrw r1,2 */
494 0x01, 0x81, /* ld.w r1,(r1,0) */
495 0xC1, 0x00, /* jmp r1 */
496 0x00, 0x12, /* nop */
497 0x00, 0x00, 0x00, 0x00 /* <address> */
500 /* This is the glue sequence for PowerPC PE. There is a
501 tocrel16-tocdefn reloc against the first instruction.
502 We also need a IMGLUE reloc against the glue function
503 to restore the toc saved by the third instruction in
504 the glue. */
505 static const unsigned char ppc_jtab[] =
507 0x00, 0x00, 0x62, 0x81, /* lwz r11,0(r2) */
508 /* Reloc TOCREL16 __imp_xxx */
509 0x00, 0x00, 0x8B, 0x81, /* lwz r12,0(r11) */
510 0x04, 0x00, 0x41, 0x90, /* stw r2,4(r1) */
511 0xA6, 0x03, 0x89, 0x7D, /* mtctr r12 */
512 0x04, 0x00, 0x4B, 0x80, /* lwz r2,4(r11) */
513 0x20, 0x04, 0x80, 0x4E /* bctr */
516 #ifdef DLLTOOL_PPC
517 /* The glue instruction, picks up the toc from the stw in
518 the above code: "lwz r2,4(r1)". */
519 static bfd_vma ppc_glue_insn = 0x80410004;
520 #endif
522 struct mac
524 const char *type;
525 const char *how_byte;
526 const char *how_short;
527 const char *how_long;
528 const char *how_asciz;
529 const char *how_comment;
530 const char *how_jump;
531 const char *how_global;
532 const char *how_space;
533 const char *how_align_short;
534 const char *how_align_long;
535 const char *how_default_as_switches;
536 const char *how_bfd_target;
537 enum bfd_architecture how_bfd_arch;
538 const unsigned char *how_jtab;
539 int how_jtab_size; /* Size of the jtab entry. */
540 int how_jtab_roff; /* Offset into it for the ind 32 reloc into idata 5. */
543 static const struct mac
544 mtable[] =
547 #define MARM 0
548 "arm", ".byte", ".short", ".long", ".asciz", "@",
549 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
550 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
551 "pe-arm-little", bfd_arch_arm,
552 arm_jtab, sizeof (arm_jtab), 8
556 #define M386 1
557 "i386", ".byte", ".short", ".long", ".asciz", "#",
558 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
559 "pe-i386",bfd_arch_i386,
560 i386_jtab, sizeof (i386_jtab), 2
564 #define MPPC 2
565 "ppc", ".byte", ".short", ".long", ".asciz", "#",
566 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
567 "pe-powerpcle",bfd_arch_powerpc,
568 ppc_jtab, sizeof (ppc_jtab), 0
572 #define MTHUMB 3
573 "thumb", ".byte", ".short", ".long", ".asciz", "@",
574 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
575 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
576 "pe-arm-little", bfd_arch_arm,
577 thumb_jtab, sizeof (thumb_jtab), 12
580 #define MARM_INTERWORK 4
582 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
583 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
584 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
585 "pe-arm-little", bfd_arch_arm,
586 arm_interwork_jtab, sizeof (arm_interwork_jtab), 12
590 #define MMCORE_BE 5
591 "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
592 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
593 ".global", ".space", ".align\t2",".align\t4", "",
594 "pe-mcore-big", bfd_arch_mcore,
595 mcore_be_jtab, sizeof (mcore_be_jtab), 8
599 #define MMCORE_LE 6
600 "mcore-le", ".byte", ".short", ".long", ".asciz", "//",
601 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
602 ".global", ".space", ".align\t2",".align\t4", "-EL",
603 "pe-mcore-little", bfd_arch_mcore,
604 mcore_le_jtab, sizeof (mcore_le_jtab), 8
608 #define MMCORE_ELF 7
609 "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
610 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
611 ".global", ".space", ".align\t2",".align\t4", "",
612 "elf32-mcore-big", bfd_arch_mcore,
613 mcore_be_jtab, sizeof (mcore_be_jtab), 8
617 #define MMCORE_ELF_LE 8
618 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
619 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
620 ".global", ".space", ".align\t2",".align\t4", "-EL",
621 "elf32-mcore-little", bfd_arch_mcore,
622 mcore_le_jtab, sizeof (mcore_le_jtab), 8
626 #define MARM_EPOC 9
627 "arm-epoc", ".byte", ".short", ".long", ".asciz", "@",
628 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
629 ".global", ".space", ".align\t2",".align\t4", "",
630 "epoc-pe-arm-little", bfd_arch_arm,
631 arm_jtab, sizeof (arm_jtab), 8
634 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
637 typedef struct dlist
639 char *text;
640 struct dlist *next;
642 dlist_type;
644 typedef struct export
646 const char *name;
647 const char *internal_name;
648 int ordinal;
649 int constant;
650 int noname;
651 int data;
652 int hint;
653 int forward; /* Number of forward label, 0 means no forward. */
654 struct export *next;
656 export_type;
658 /* A list of symbols which we should not export. */
660 struct string_list
662 struct string_list *next;
663 char *string;
666 static struct string_list *excludes;
668 static const char *rvaafter
669 PARAMS ((int));
670 static const char *rvabefore
671 PARAMS ((int));
672 static const char *asm_prefix
673 PARAMS ((int));
674 static void process_def_file
675 PARAMS ((const char *));
676 static void new_directive
677 PARAMS ((char *));
678 static void append_import
679 PARAMS ((const char *, const char *, int));
680 static void run
681 PARAMS ((const char *, char *));
682 static void scan_drectve_symbols
683 PARAMS ((bfd *));
684 static void scan_filtered_symbols
685 PARAMS ((bfd *, PTR, long, unsigned int));
686 static void add_excludes
687 PARAMS ((const char *));
688 static bfd_boolean match_exclude
689 PARAMS ((const char *));
690 static void set_default_excludes
691 PARAMS ((void));
692 static long filter_symbols
693 PARAMS ((bfd *, PTR, long, unsigned int));
694 static void scan_all_symbols
695 PARAMS ((bfd *));
696 static void scan_open_obj_file
697 PARAMS ((bfd *));
698 static void scan_obj_file
699 PARAMS ((const char *));
700 static void dump_def_info
701 PARAMS ((FILE *));
702 static int sfunc
703 PARAMS ((const void *, const void *));
704 static void flush_page
705 PARAMS ((FILE *, long *, int, int));
706 static void gen_def_file
707 PARAMS ((void));
708 static void generate_idata_ofile
709 PARAMS ((FILE *));
710 static void assemble_file
711 PARAMS ((const char *, const char *));
712 static void gen_exp_file
713 PARAMS ((void));
714 static const char *xlate
715 PARAMS ((const char *));
716 #if 0
717 static void dump_iat
718 PARAMS ((FILE *, export_type *));
719 #endif
720 static char *make_label
721 PARAMS ((const char *, const char *));
722 static char *make_imp_label
723 PARAMS ((const char *, const char *));
724 static bfd *make_one_lib_file
725 PARAMS ((export_type *, int));
726 static bfd *make_head
727 PARAMS ((void));
728 static bfd *make_tail
729 PARAMS ((void));
730 static void gen_lib_file
731 PARAMS ((void));
732 static int pfunc
733 PARAMS ((const void *, const void *));
734 static int nfunc
735 PARAMS ((const void *, const void *));
736 static void remove_null_names
737 PARAMS ((export_type **));
738 static void dtab
739 PARAMS ((export_type **));
740 static void process_duplicates
741 PARAMS ((export_type **));
742 static void fill_ordinals
743 PARAMS ((export_type **));
744 static int alphafunc
745 PARAMS ((const void *, const void *));
746 static void mangle_defs
747 PARAMS ((void));
748 static void usage
749 PARAMS ((FILE *, int));
750 static void inform
751 PARAMS ((const char *, ...));
753 static char *
754 dlltmp PARAMS ((char *buf, const char *fmt))
756 if (!buf)
757 buf = malloc (strlen (tmp_prefix) + 17);
758 sprintf (buf, fmt, tmp_prefix);
759 return buf;
762 static void
763 inform VPARAMS ((const char * message, ...))
765 VA_OPEN (args, message);
766 VA_FIXEDARG (args, const char *, message);
768 if (!verbose)
769 return;
771 report (message, args);
773 VA_CLOSE (args);
776 static const char *
777 rvaafter (machine)
778 int machine;
780 switch (machine)
782 case MARM:
783 case M386:
784 case MPPC:
785 case MTHUMB:
786 case MARM_INTERWORK:
787 case MMCORE_BE:
788 case MMCORE_LE:
789 case MMCORE_ELF:
790 case MMCORE_ELF_LE:
791 case MARM_EPOC:
792 break;
793 default:
794 /* xgettext:c-format */
795 fatal (_("Internal error: Unknown machine type: %d"), machine);
796 break;
798 return "";
801 static const char *
802 rvabefore (machine)
803 int machine;
805 switch (machine)
807 case MARM:
808 case M386:
809 case MPPC:
810 case MTHUMB:
811 case MARM_INTERWORK:
812 case MMCORE_BE:
813 case MMCORE_LE:
814 case MMCORE_ELF:
815 case MMCORE_ELF_LE:
816 case MARM_EPOC:
817 return ".rva\t";
818 default:
819 /* xgettext:c-format */
820 fatal (_("Internal error: Unknown machine type: %d"), machine);
821 break;
823 return "";
826 static const char *
827 asm_prefix (machine)
828 int machine;
830 switch (machine)
832 case MARM:
833 case MPPC:
834 case MTHUMB:
835 case MARM_INTERWORK:
836 case MMCORE_BE:
837 case MMCORE_LE:
838 case MMCORE_ELF:
839 case MMCORE_ELF_LE:
840 case MARM_EPOC:
841 break;
842 case M386:
843 return "_";
844 default:
845 /* xgettext:c-format */
846 fatal (_("Internal error: Unknown machine type: %d"), machine);
847 break;
849 return "";
852 #define ASM_BYTE mtable[machine].how_byte
853 #define ASM_SHORT mtable[machine].how_short
854 #define ASM_LONG mtable[machine].how_long
855 #define ASM_TEXT mtable[machine].how_asciz
856 #define ASM_C mtable[machine].how_comment
857 #define ASM_JUMP mtable[machine].how_jump
858 #define ASM_GLOBAL mtable[machine].how_global
859 #define ASM_SPACE mtable[machine].how_space
860 #define ASM_ALIGN_SHORT mtable[machine].how_align_short
861 #define ASM_RVA_BEFORE rvabefore(machine)
862 #define ASM_RVA_AFTER rvaafter(machine)
863 #define ASM_PREFIX asm_prefix(machine)
864 #define ASM_ALIGN_LONG mtable[machine].how_align_long
865 #define HOW_BFD_READ_TARGET 0 /* always default*/
866 #define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
867 #define HOW_BFD_ARCH mtable[machine].how_bfd_arch
868 #define HOW_JTAB mtable[machine].how_jtab
869 #define HOW_JTAB_SIZE mtable[machine].how_jtab_size
870 #define HOW_JTAB_ROFF mtable[machine].how_jtab_roff
871 #define ASM_SWITCHES mtable[machine].how_default_as_switches
873 static char **oav;
875 static void
876 process_def_file (name)
877 const char *name;
879 FILE *f = fopen (name, FOPEN_RT);
881 if (!f)
882 /* xgettext:c-format */
883 fatal (_("Can't open def file: %s"), name);
885 yyin = f;
887 /* xgettext:c-format */
888 inform (_("Processing def file: %s"), name);
890 yyparse ();
892 inform (_("Processed def file"));
895 /**********************************************************************/
897 /* Communications with the parser. */
899 static const char *d_name; /* Arg to NAME or LIBRARY. */
900 static int d_nfuncs; /* Number of functions exported. */
901 static int d_named_nfuncs; /* Number of named functions exported. */
902 static int d_low_ord; /* Lowest ordinal index. */
903 static int d_high_ord; /* Highest ordinal index. */
904 static export_type *d_exports; /* List of exported functions. */
905 static export_type **d_exports_lexically; /* Vector of exported functions in alpha order. */
906 static dlist_type *d_list; /* Descriptions. */
907 static dlist_type *a_list; /* Stuff to go in directives. */
908 static int d_nforwards = 0; /* Number of forwarded exports. */
910 static int d_is_dll;
911 static int d_is_exe;
914 yyerror (err)
915 const char * err ATTRIBUTE_UNUSED;
917 /* xgettext:c-format */
918 non_fatal (_("Syntax error in def file %s:%d"), def_file, linenumber);
920 return 0;
923 void
924 def_exports (name, internal_name, ordinal, noname, constant, data)
925 const char *name;
926 const char *internal_name;
927 int ordinal;
928 int noname;
929 int constant;
930 int data;
932 struct export *p = (struct export *) xmalloc (sizeof (*p));
934 p->name = name;
935 p->internal_name = internal_name ? internal_name : name;
936 p->ordinal = ordinal;
937 p->constant = constant;
938 p->noname = noname;
939 p->data = data;
940 p->next = d_exports;
941 d_exports = p;
942 d_nfuncs++;
944 if ((internal_name != NULL)
945 && (strchr (internal_name, '.') != NULL))
946 p->forward = ++d_nforwards;
947 else
948 p->forward = 0; /* no forward */
951 void
952 def_name (name, base)
953 const char *name;
954 int base;
956 /* xgettext:c-format */
957 inform (_("NAME: %s base: %x"), name, base);
959 if (d_is_dll)
960 non_fatal (_("Can't have LIBRARY and NAME"));
962 d_name = name;
963 /* If --dllname not provided, use the one in the DEF file.
964 FIXME: Is this appropriate for executables? */
965 if (! dll_name)
966 dll_name = xstrdup (name);
967 d_is_exe = 1;
970 void
971 def_library (name, base)
972 const char *name;
973 int base;
975 /* xgettext:c-format */
976 inform (_("LIBRARY: %s base: %x"), name, base);
978 if (d_is_exe)
979 non_fatal (_("Can't have LIBRARY and NAME"));
981 d_name = name;
982 /* If --dllname not provided, use the one in the DEF file. */
983 if (! dll_name)
984 dll_name = xstrdup (name);
985 d_is_dll = 1;
988 void
989 def_description (desc)
990 const char *desc;
992 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
993 d->text = xstrdup (desc);
994 d->next = d_list;
995 d_list = d;
998 static void
999 new_directive (dir)
1000 char *dir;
1002 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
1003 d->text = xstrdup (dir);
1004 d->next = a_list;
1005 a_list = d;
1008 void
1009 def_heapsize (reserve, commit)
1010 int reserve;
1011 int commit;
1013 char b[200];
1014 if (commit > 0)
1015 sprintf (b, "-heap 0x%x,0x%x ", reserve, commit);
1016 else
1017 sprintf (b, "-heap 0x%x ", reserve);
1018 new_directive (xstrdup (b));
1021 void
1022 def_stacksize (reserve, commit)
1023 int reserve;
1024 int commit;
1026 char b[200];
1027 if (commit > 0)
1028 sprintf (b, "-stack 0x%x,0x%x ", reserve, commit);
1029 else
1030 sprintf (b, "-stack 0x%x ", reserve);
1031 new_directive (xstrdup (b));
1034 /* append_import simply adds the given import definition to the global
1035 import_list. It is used by def_import. */
1037 static void
1038 append_import (symbol_name, dll_name, func_ordinal)
1039 const char *symbol_name;
1040 const char *dll_name;
1041 int func_ordinal;
1043 iheadtype **pq;
1044 iheadtype *q;
1046 for (pq = &import_list; *pq != NULL; pq = &(*pq)->next)
1048 if (strcmp ((*pq)->dllname, dll_name) == 0)
1050 q = *pq;
1051 q->functail->next = xmalloc (sizeof (ifunctype));
1052 q->functail = q->functail->next;
1053 q->functail->ord = func_ordinal;
1054 q->functail->name = xstrdup (symbol_name);
1055 q->functail->next = NULL;
1056 q->nfuncs++;
1057 return;
1061 q = xmalloc (sizeof (iheadtype));
1062 q->dllname = xstrdup (dll_name);
1063 q->nfuncs = 1;
1064 q->funchead = xmalloc (sizeof (ifunctype));
1065 q->functail = q->funchead;
1066 q->next = NULL;
1067 q->functail->name = xstrdup (symbol_name);
1068 q->functail->ord = func_ordinal;
1069 q->functail->next = NULL;
1071 *pq = q;
1074 /* def_import is called from within defparse.y when an IMPORT
1075 declaration is encountered. Depending on the form of the
1076 declaration, the module name may or may not need ".dll" to be
1077 appended to it, the name of the function may be stored in internal
1078 or entry, and there may or may not be an ordinal value associated
1079 with it. */
1081 /* A note regarding the parse modes:
1082 In defparse.y we have to accept import declarations which follow
1083 any one of the following forms:
1084 <func_name_in_app> = <dll_name>.<func_name_in_dll>
1085 <func_name_in_app> = <dll_name>.<number>
1086 <dll_name>.<func_name_in_dll>
1087 <dll_name>.<number>
1088 Furthermore, the dll's name may or may not end with ".dll", which
1089 complicates the parsing a little. Normally the dll's name is
1090 passed to def_import() in the "module" parameter, but when it ends
1091 with ".dll" it gets passed in "module" sans ".dll" and that needs
1092 to be reappended.
1094 def_import gets five parameters:
1095 APP_NAME - the name of the function in the application, if
1096 present, or NULL if not present.
1097 MODULE - the name of the dll, possibly sans extension (ie, '.dll').
1098 DLLEXT - the extension of the dll, if present, NULL if not present.
1099 ENTRY - the name of the function in the dll, if present, or NULL.
1100 ORD_VAL - the numerical tag of the function in the dll, if present,
1101 or NULL. Exactly one of <entry> or <ord_val> must be
1102 present (i.e., not NULL). */
1104 void
1105 def_import (app_name, module, dllext, entry, ord_val)
1106 const char *app_name;
1107 const char *module;
1108 const char *dllext;
1109 const char *entry;
1110 int ord_val;
1112 const char *application_name;
1113 char *buf;
1115 if (entry != NULL)
1116 application_name = entry;
1117 else
1119 if (app_name != NULL)
1120 application_name = app_name;
1121 else
1122 application_name = "";
1125 if (dllext != NULL)
1127 buf = (char *) alloca (strlen (module) + strlen (dllext) + 2);
1128 sprintf (buf, "%s.%s", module, dllext);
1129 module = buf;
1132 append_import (application_name, module, ord_val);
1135 void
1136 def_version (major, minor)
1137 int major;
1138 int minor;
1140 printf ("VERSION %d.%d\n", major, minor);
1143 void
1144 def_section (name, attr)
1145 const char *name;
1146 int attr;
1148 char buf[200];
1149 char atts[5];
1150 char *d = atts;
1151 if (attr & 1)
1152 *d++ = 'R';
1154 if (attr & 2)
1155 *d++ = 'W';
1156 if (attr & 4)
1157 *d++ = 'X';
1158 if (attr & 8)
1159 *d++ = 'S';
1160 *d++ = 0;
1161 sprintf (buf, "-attr %s %s", name, atts);
1162 new_directive (xstrdup (buf));
1165 void
1166 def_code (attr)
1167 int attr;
1170 def_section ("CODE", attr);
1173 void
1174 def_data (attr)
1175 int attr;
1177 def_section ("DATA", attr);
1180 /**********************************************************************/
1182 static void
1183 run (what, args)
1184 const char *what;
1185 char *args;
1187 char *s;
1188 int pid, wait_status;
1189 int i;
1190 const char **argv;
1191 char *errmsg_fmt, *errmsg_arg;
1192 char *temp_base = choose_temp_base ();
1194 inform ("run: %s %s", what, args);
1196 /* Count the args */
1197 i = 0;
1198 for (s = args; *s; s++)
1199 if (*s == ' ')
1200 i++;
1201 i++;
1202 argv = alloca (sizeof (char *) * (i + 3));
1203 i = 0;
1204 argv[i++] = what;
1205 s = args;
1206 while (1)
1208 while (*s == ' ')
1209 ++s;
1210 argv[i++] = s;
1211 while (*s != ' ' && *s != 0)
1212 s++;
1213 if (*s == 0)
1214 break;
1215 *s++ = 0;
1217 argv[i++] = NULL;
1219 pid = pexecute (argv[0], (char * const *) argv, program_name, temp_base,
1220 &errmsg_fmt, &errmsg_arg, PEXECUTE_ONE | PEXECUTE_SEARCH);
1222 if (pid == -1)
1224 inform (strerror (errno));
1226 fatal (errmsg_fmt, errmsg_arg);
1229 pid = pwait (pid, & wait_status, 0);
1231 if (pid == -1)
1233 /* xgettext:c-format */
1234 fatal (_("wait: %s"), strerror (errno));
1236 else if (WIFSIGNALED (wait_status))
1238 /* xgettext:c-format */
1239 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
1241 else if (WIFEXITED (wait_status))
1243 if (WEXITSTATUS (wait_status) != 0)
1244 /* xgettext:c-format */
1245 non_fatal (_("%s exited with status %d"),
1246 what, WEXITSTATUS (wait_status));
1248 else
1249 abort ();
1252 /* Look for a list of symbols to export in the .drectve section of
1253 ABFD. Pass each one to def_exports. */
1255 static void
1256 scan_drectve_symbols (abfd)
1257 bfd *abfd;
1259 asection * s;
1260 int size;
1261 char * buf;
1262 char * p;
1263 char * e;
1265 /* Look for .drectve's */
1266 s = bfd_get_section_by_name (abfd, DRECTVE_SECTION_NAME);
1268 if (s == NULL)
1269 return;
1271 size = bfd_get_section_size_before_reloc (s);
1272 buf = xmalloc (size);
1274 bfd_get_section_contents (abfd, s, buf, 0, size);
1276 /* xgettext:c-format */
1277 inform (_("Sucking in info from %s section in %s"),
1278 DRECTVE_SECTION_NAME, bfd_get_filename (abfd));
1280 /* Search for -export: strings. The exported symbols can optionally
1281 have type tags (eg., -export:foo,data), so handle those as well.
1282 Currently only data tag is supported. */
1283 p = buf;
1284 e = buf + size;
1285 while (p < e)
1287 if (p[0] == '-'
1288 && strncmp (p, "-export:", 8) == 0)
1290 char * name;
1291 char * c;
1292 flagword flags = BSF_FUNCTION;
1294 p += 8;
1295 name = p;
1296 while (p < e && *p != ',' && *p != ' ' && *p != '-')
1297 p++;
1298 c = xmalloc (p - name + 1);
1299 memcpy (c, name, p - name);
1300 c[p - name] = 0;
1301 if (p < e && *p == ',') /* found type tag. */
1303 char *tag_start = ++p;
1304 while (p < e && *p != ' ' && *p != '-')
1305 p++;
1306 if (strncmp (tag_start, "data", 4) == 0)
1307 flags &= ~BSF_FUNCTION;
1310 /* FIXME: The 5th arg is for the `constant' field.
1311 What should it be? Not that it matters since it's not
1312 currently useful. */
1313 def_exports (c, 0, -1, 0, 0, ! (flags & BSF_FUNCTION));
1315 if (add_stdcall_alias && strchr (c, '@'))
1317 int lead_at = (*c == '@') ;
1318 char *exported_name = xstrdup (c + lead_at);
1319 char *atsym = strchr (exported_name, '@');
1320 *atsym = '\0';
1321 /* Note: stdcall alias symbols can never be data. */
1322 def_exports (exported_name, xstrdup (c), -1, 0, 0, 0);
1325 else
1326 p++;
1328 free (buf);
1331 /* Look through the symbols in MINISYMS, and add each one to list of
1332 symbols to export. */
1334 static void
1335 scan_filtered_symbols (abfd, minisyms, symcount, size)
1336 bfd *abfd;
1337 PTR minisyms;
1338 long symcount;
1339 unsigned int size;
1341 asymbol *store;
1342 bfd_byte *from, *fromend;
1344 store = bfd_make_empty_symbol (abfd);
1345 if (store == NULL)
1346 bfd_fatal (bfd_get_filename (abfd));
1348 from = (bfd_byte *) minisyms;
1349 fromend = from + symcount * size;
1350 for (; from < fromend; from += size)
1352 asymbol *sym;
1353 const char *symbol_name;
1355 sym = bfd_minisymbol_to_symbol (abfd, FALSE, from, store);
1356 if (sym == NULL)
1357 bfd_fatal (bfd_get_filename (abfd));
1359 symbol_name = bfd_asymbol_name (sym);
1360 if (bfd_get_symbol_leading_char (abfd) == symbol_name[0])
1361 ++symbol_name;
1363 def_exports (xstrdup (symbol_name) , 0, -1, 0, 0,
1364 ! (sym->flags & BSF_FUNCTION));
1366 if (add_stdcall_alias && strchr (symbol_name, '@'))
1368 int lead_at = (*symbol_name == '@');
1369 char *exported_name = xstrdup (symbol_name + lead_at);
1370 char *atsym = strchr (exported_name, '@');
1371 *atsym = '\0';
1372 /* Note: stdcall alias symbols can never be data. */
1373 def_exports (exported_name, xstrdup (symbol_name), -1, 0, 0, 0);
1378 /* Add a list of symbols to exclude. */
1380 static void
1381 add_excludes (new_excludes)
1382 const char *new_excludes;
1384 char *local_copy;
1385 char *exclude_string;
1387 local_copy = xstrdup (new_excludes);
1389 exclude_string = strtok (local_copy, ",:");
1390 for (; exclude_string; exclude_string = strtok (NULL, ",:"))
1392 struct string_list *new_exclude;
1394 new_exclude = ((struct string_list *)
1395 xmalloc (sizeof (struct string_list)));
1396 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2);
1397 /* Don't add a leading underscore for fastcall symbols. */
1398 if (*exclude_string == '@')
1399 sprintf (new_exclude->string, "%s", exclude_string);
1400 else
1401 sprintf (new_exclude->string, "_%s", exclude_string);
1402 new_exclude->next = excludes;
1403 excludes = new_exclude;
1405 /* xgettext:c-format */
1406 inform (_("Excluding symbol: %s"), exclude_string);
1409 free (local_copy);
1412 /* See if STRING is on the list of symbols to exclude. */
1414 static bfd_boolean
1415 match_exclude (string)
1416 const char *string;
1418 struct string_list *excl_item;
1420 for (excl_item = excludes; excl_item; excl_item = excl_item->next)
1421 if (strcmp (string, excl_item->string) == 0)
1422 return TRUE;
1423 return FALSE;
1426 /* Add the default list of symbols to exclude. */
1428 static void
1429 set_default_excludes (void)
1431 add_excludes (default_excludes);
1434 /* Choose which symbols to export. */
1436 static long
1437 filter_symbols (abfd, minisyms, symcount, size)
1438 bfd *abfd;
1439 PTR minisyms;
1440 long symcount;
1441 unsigned int size;
1443 bfd_byte *from, *fromend, *to;
1444 asymbol *store;
1446 store = bfd_make_empty_symbol (abfd);
1447 if (store == NULL)
1448 bfd_fatal (bfd_get_filename (abfd));
1450 from = (bfd_byte *) minisyms;
1451 fromend = from + symcount * size;
1452 to = (bfd_byte *) minisyms;
1454 for (; from < fromend; from += size)
1456 int keep = 0;
1457 asymbol *sym;
1459 sym = bfd_minisymbol_to_symbol (abfd, FALSE, (const PTR) from, store);
1460 if (sym == NULL)
1461 bfd_fatal (bfd_get_filename (abfd));
1463 /* Check for external and defined only symbols. */
1464 keep = (((sym->flags & BSF_GLOBAL) != 0
1465 || (sym->flags & BSF_WEAK) != 0
1466 || bfd_is_com_section (sym->section))
1467 && ! bfd_is_und_section (sym->section));
1469 keep = keep && ! match_exclude (sym->name);
1471 if (keep)
1473 memcpy (to, from, size);
1474 to += size;
1478 return (to - (bfd_byte *) minisyms) / size;
1481 /* Export all symbols in ABFD, except for ones we were told not to
1482 export. */
1484 static void
1485 scan_all_symbols (abfd)
1486 bfd *abfd;
1488 long symcount;
1489 PTR minisyms;
1490 unsigned int size;
1492 /* Ignore bfds with an import descriptor table. We assume that any
1493 such BFD contains symbols which are exported from another DLL,
1494 and we don't want to reexport them from here. */
1495 if (bfd_get_section_by_name (abfd, ".idata$4"))
1496 return;
1498 if (! (bfd_get_file_flags (abfd) & HAS_SYMS))
1500 /* xgettext:c-format */
1501 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
1502 return;
1505 symcount = bfd_read_minisymbols (abfd, FALSE, &minisyms, &size);
1506 if (symcount < 0)
1507 bfd_fatal (bfd_get_filename (abfd));
1509 if (symcount == 0)
1511 /* xgettext:c-format */
1512 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
1513 return;
1516 /* Discard the symbols we don't want to export. It's OK to do this
1517 in place; we'll free the storage anyway. */
1519 symcount = filter_symbols (abfd, minisyms, symcount, size);
1520 scan_filtered_symbols (abfd, minisyms, symcount, size);
1522 free (minisyms);
1525 /* Look at the object file to decide which symbols to export. */
1527 static void
1528 scan_open_obj_file (abfd)
1529 bfd *abfd;
1531 if (export_all_symbols)
1532 scan_all_symbols (abfd);
1533 else
1534 scan_drectve_symbols (abfd);
1536 /* FIXME: we ought to read in and block out the base relocations. */
1538 /* xgettext:c-format */
1539 inform (_("Done reading %s"), bfd_get_filename (abfd));
1542 static void
1543 scan_obj_file (filename)
1544 const char *filename;
1546 bfd * f = bfd_openr (filename, 0);
1548 if (!f)
1549 /* xgettext:c-format */
1550 fatal (_("Unable to open object file: %s"), filename);
1552 /* xgettext:c-format */
1553 inform (_("Scanning object file %s"), filename);
1555 if (bfd_check_format (f, bfd_archive))
1557 bfd *arfile = bfd_openr_next_archived_file (f, 0);
1558 while (arfile)
1560 if (bfd_check_format (arfile, bfd_object))
1561 scan_open_obj_file (arfile);
1562 bfd_close (arfile);
1563 arfile = bfd_openr_next_archived_file (f, arfile);
1566 #ifdef DLLTOOL_MCORE_ELF
1567 if (mcore_elf_out_file)
1568 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename);
1569 #endif
1571 else if (bfd_check_format (f, bfd_object))
1573 scan_open_obj_file (f);
1575 #ifdef DLLTOOL_MCORE_ELF
1576 if (mcore_elf_out_file)
1577 mcore_elf_cache_filename ((char *) filename);
1578 #endif
1581 bfd_close (f);
1584 /**********************************************************************/
1586 static void
1587 dump_def_info (f)
1588 FILE *f;
1590 int i;
1591 export_type *exp;
1592 fprintf (f, "%s ", ASM_C);
1593 for (i = 0; oav[i]; i++)
1594 fprintf (f, "%s ", oav[i]);
1595 fprintf (f, "\n");
1596 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1598 fprintf (f, "%s %d = %s %s @ %d %s%s%s\n",
1599 ASM_C,
1601 exp->name,
1602 exp->internal_name,
1603 exp->ordinal,
1604 exp->noname ? "NONAME " : "",
1605 exp->constant ? "CONSTANT" : "",
1606 exp->data ? "DATA" : "");
1610 /* Generate the .exp file. */
1612 static int
1613 sfunc (a, b)
1614 const void *a;
1615 const void *b;
1617 return *(const long *) a - *(const long *) b;
1620 static void
1621 flush_page (f, need, page_addr, on_page)
1622 FILE *f;
1623 long *need;
1624 int page_addr;
1625 int on_page;
1627 int i;
1629 /* Flush this page. */
1630 fprintf (f, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1631 ASM_LONG,
1632 page_addr,
1633 ASM_C);
1634 fprintf (f, "\t%s\t0x%x\t%s Size of block\n",
1635 ASM_LONG,
1636 (on_page * 2) + (on_page & 1) * 2 + 8,
1637 ASM_C);
1639 for (i = 0; i < on_page; i++)
1641 long needed = need[i];
1643 if (needed)
1644 needed = ((needed - page_addr) | 0x3000) & 0xffff;
1646 fprintf (f, "\t%s\t0x%lx\n", ASM_SHORT, needed);
1649 /* And padding */
1650 if (on_page & 1)
1651 fprintf (f, "\t%s\t0x%x\n", ASM_SHORT, 0 | 0x0000);
1654 static void
1655 gen_def_file ()
1657 int i;
1658 export_type *exp;
1660 inform (_("Adding exports to output file"));
1662 fprintf (output_def, ";");
1663 for (i = 0; oav[i]; i++)
1664 fprintf (output_def, " %s", oav[i]);
1666 fprintf (output_def, "\nEXPORTS\n");
1668 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1670 char *quote = strchr (exp->name, '.') ? "\"" : "";
1671 char *res = cplus_demangle (exp->internal_name, DMGL_ANSI | DMGL_PARAMS);
1673 if (res)
1675 fprintf (output_def,";\t%s\n", res);
1676 free (res);
1679 if (strcmp (exp->name, exp->internal_name) == 0)
1682 fprintf (output_def, "\t%s%s%s @ %d%s%s\n",
1683 quote,
1684 exp->name,
1685 quote,
1686 exp->ordinal,
1687 exp->noname ? " NONAME" : "",
1688 exp->data ? " DATA" : "");
1690 else
1692 char *quote1 = strchr (exp->internal_name, '.') ? "\"" : "";
1693 /* char *alias = */
1694 fprintf (output_def, "\t%s%s%s = %s%s%s @ %d%s%s\n",
1695 quote,
1696 exp->name,
1697 quote,
1698 quote1,
1699 exp->internal_name,
1700 quote1,
1701 exp->ordinal,
1702 exp->noname ? " NONAME" : "",
1703 exp->data ? " DATA" : "");
1707 inform (_("Added exports to output file"));
1710 /* generate_idata_ofile generates the portable assembly source code
1711 for the idata sections. It appends the source code to the end of
1712 the file. */
1714 static void
1715 generate_idata_ofile (filvar)
1716 FILE *filvar;
1718 iheadtype *headptr;
1719 ifunctype *funcptr;
1720 int headindex;
1721 int funcindex;
1722 int nheads;
1724 if (import_list == NULL)
1725 return;
1727 fprintf (filvar, "%s Import data sections\n", ASM_C);
1728 fprintf (filvar, "\n\t.section\t.idata$2\n");
1729 fprintf (filvar, "\t%s\tdoi_idata\n", ASM_GLOBAL);
1730 fprintf (filvar, "doi_idata:\n");
1732 nheads = 0;
1733 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1735 fprintf (filvar, "\t%slistone%d%s\t%s %s\n",
1736 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER,
1737 ASM_C, headptr->dllname);
1738 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1739 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1740 fprintf (filvar, "\t%sdllname%d%s\n",
1741 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER);
1742 fprintf (filvar, "\t%slisttwo%d%s\n\n",
1743 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER);
1744 nheads++;
1747 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* NULL record at */
1748 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* end of idata$2 */
1749 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* section */
1750 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1751 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1753 fprintf (filvar, "\n\t.section\t.idata$4\n");
1754 headindex = 0;
1755 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1757 fprintf (filvar, "listone%d:\n", headindex);
1758 for ( funcindex = 0; funcindex < headptr->nfuncs; funcindex++ )
1759 fprintf (filvar, "\t%sfuncptr%d_%d%s\n",
1760 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER);
1761 fprintf (filvar,"\t%s\t0\n", ASM_LONG); /* NULL terminating list */
1762 headindex++;
1765 fprintf (filvar, "\n\t.section\t.idata$5\n");
1766 headindex = 0;
1767 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1769 fprintf (filvar, "listtwo%d:\n", headindex);
1770 for ( funcindex = 0; funcindex < headptr->nfuncs; funcindex++ )
1771 fprintf (filvar, "\t%sfuncptr%d_%d%s\n",
1772 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER);
1773 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* NULL terminating list */
1774 headindex++;
1777 fprintf (filvar, "\n\t.section\t.idata$6\n");
1778 headindex = 0;
1779 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1781 funcindex = 0;
1782 for (funcptr = headptr->funchead; funcptr != NULL;
1783 funcptr = funcptr->next)
1785 fprintf (filvar,"funcptr%d_%d:\n", headindex, funcindex);
1786 fprintf (filvar,"\t%s\t%d\n", ASM_SHORT,
1787 ((funcptr->ord) & 0xFFFF));
1788 fprintf (filvar,"\t%s\t\"%s\"\n", ASM_TEXT, funcptr->name);
1789 fprintf (filvar,"\t%s\t0\n", ASM_BYTE);
1790 funcindex++;
1792 headindex++;
1795 fprintf (filvar, "\n\t.section\t.idata$7\n");
1796 headindex = 0;
1797 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1799 fprintf (filvar,"dllname%d:\n", headindex);
1800 fprintf (filvar,"\t%s\t\"%s\"\n", ASM_TEXT, headptr->dllname);
1801 fprintf (filvar,"\t%s\t0\n", ASM_BYTE);
1802 headindex++;
1806 /* Assemble the specified file. */
1807 static void
1808 assemble_file (source, dest)
1809 const char * source;
1810 const char * dest;
1812 char * cmd;
1814 cmd = (char *) alloca (strlen (ASM_SWITCHES) + strlen (as_flags)
1815 + strlen (source) + strlen (dest) + 50);
1817 sprintf (cmd, "%s %s -o %s %s", ASM_SWITCHES, as_flags, dest, source);
1819 run (as_name, cmd);
1822 static void
1823 gen_exp_file ()
1825 FILE *f;
1826 int i;
1827 export_type *exp;
1828 dlist_type *dl;
1830 /* xgettext:c-format */
1831 inform (_("Generating export file: %s"), exp_name);
1833 f = fopen (TMP_ASM, FOPEN_WT);
1834 if (!f)
1835 /* xgettext:c-format */
1836 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM);
1838 /* xgettext:c-format */
1839 inform (_("Opened temporary file: %s"), TMP_ASM);
1841 dump_def_info (f);
1843 if (d_exports)
1845 fprintf (f, "\t.section .edata\n\n");
1846 fprintf (f, "\t%s 0 %s Allways 0\n", ASM_LONG, ASM_C);
1847 fprintf (f, "\t%s 0x%lx %s Time and date\n", ASM_LONG, (long) time(0),
1848 ASM_C);
1849 fprintf (f, "\t%s 0 %s Major and Minor version\n", ASM_LONG, ASM_C);
1850 fprintf (f, "\t%sname%s %s Ptr to name of dll\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1851 fprintf (f, "\t%s %d %s Starting ordinal of exports\n", ASM_LONG, d_low_ord, ASM_C);
1854 fprintf (f, "\t%s %d %s Number of functions\n", ASM_LONG, d_high_ord - d_low_ord + 1, ASM_C);
1855 fprintf(f,"\t%s named funcs %d, low ord %d, high ord %d\n",
1856 ASM_C,
1857 d_named_nfuncs, d_low_ord, d_high_ord);
1858 fprintf (f, "\t%s %d %s Number of names\n", ASM_LONG,
1859 show_allnames ? d_high_ord - d_low_ord + 1 : d_named_nfuncs, ASM_C);
1860 fprintf (f, "\t%safuncs%s %s Address of functions\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1862 fprintf (f, "\t%sanames%s %s Address of Name Pointer Table\n",
1863 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1865 fprintf (f, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
1867 fprintf (f, "name: %s \"%s\"\n", ASM_TEXT, dll_name);
1870 fprintf(f,"%s Export address Table\n", ASM_C);
1871 fprintf(f,"\t%s\n", ASM_ALIGN_LONG);
1872 fprintf (f, "afuncs:\n");
1873 i = d_low_ord;
1875 for (exp = d_exports; exp; exp = exp->next)
1877 if (exp->ordinal != i)
1879 #if 0
1880 fprintf (f, "\t%s\t%d\t%s %d..%d missing\n",
1881 ASM_SPACE,
1882 (exp->ordinal - i) * 4,
1883 ASM_C,
1884 i, exp->ordinal - 1);
1885 i = exp->ordinal;
1886 #endif
1887 while (i < exp->ordinal)
1889 fprintf(f,"\t%s\t0\n", ASM_LONG);
1890 i++;
1894 if (exp->forward == 0)
1896 if (exp->internal_name[0] == '@')
1897 fprintf (f, "\t%s%s%s\t%s %d\n", ASM_RVA_BEFORE,
1898 exp->internal_name, ASM_RVA_AFTER, ASM_C, exp->ordinal);
1899 else
1900 fprintf (f, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE,
1901 ASM_PREFIX,
1902 exp->internal_name, ASM_RVA_AFTER, ASM_C, exp->ordinal);
1904 else
1905 fprintf (f, "\t%sf%d%s\t%s %d\n", ASM_RVA_BEFORE,
1906 exp->forward, ASM_RVA_AFTER, ASM_C, exp->ordinal);
1907 i++;
1910 fprintf (f,"%s Export Name Pointer Table\n", ASM_C);
1911 fprintf (f, "anames:\n");
1913 for (i = 0; (exp = d_exports_lexically[i]); i++)
1915 if (!exp->noname || show_allnames)
1916 fprintf (f, "\t%sn%d%s\n",
1917 ASM_RVA_BEFORE, exp->ordinal, ASM_RVA_AFTER);
1920 fprintf (f,"%s Export Oridinal Table\n", ASM_C);
1921 fprintf (f, "anords:\n");
1922 for (i = 0; (exp = d_exports_lexically[i]); i++)
1924 if (!exp->noname || show_allnames)
1925 fprintf (f, "\t%s %d\n", ASM_SHORT, exp->ordinal - d_low_ord);
1928 fprintf(f,"%s Export Name Table\n", ASM_C);
1929 for (i = 0; (exp = d_exports_lexically[i]); i++)
1930 if (!exp->noname || show_allnames)
1932 fprintf (f, "n%d: %s \"%s\"\n",
1933 exp->ordinal, ASM_TEXT, xlate (exp->name));
1934 if (exp->forward != 0)
1935 fprintf (f, "f%d: %s \"%s\"\n",
1936 exp->forward, ASM_TEXT, exp->internal_name);
1939 if (a_list)
1941 fprintf (f, "\t.section %s\n", DRECTVE_SECTION_NAME);
1942 for (dl = a_list; dl; dl = dl->next)
1944 fprintf (f, "\t%s\t\"%s\"\n", ASM_TEXT, dl->text);
1948 if (d_list)
1950 fprintf (f, "\t.section .rdata\n");
1951 for (dl = d_list; dl; dl = dl->next)
1953 char *p;
1954 int l;
1956 /* We don't output as ascii because there can
1957 be quote characters in the string. */
1958 l = 0;
1959 for (p = dl->text; *p; p++)
1961 if (l == 0)
1962 fprintf (f, "\t%s\t", ASM_BYTE);
1963 else
1964 fprintf (f, ",");
1965 fprintf (f, "%d", *p);
1966 if (p[1] == 0)
1968 fprintf (f, ",0\n");
1969 break;
1971 if (++l == 10)
1973 fprintf (f, "\n");
1974 l = 0;
1982 /* Add to the output file a way of getting to the exported names
1983 without using the import library. */
1984 if (add_indirect)
1986 fprintf (f, "\t.section\t.rdata\n");
1987 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1988 if (!exp->noname || show_allnames)
1990 /* We use a single underscore for MS compatibility, and a
1991 double underscore for backward compatibility with old
1992 cygwin releases. */
1993 if (create_compat_implib)
1994 fprintf (f, "\t%s\t__imp_%s\n", ASM_GLOBAL, exp->name);
1995 fprintf (f, "\t%s\t_imp__%s\n", ASM_GLOBAL, exp->name);
1996 if (create_compat_implib)
1997 fprintf (f, "__imp_%s:\n", exp->name);
1998 fprintf (f, "_imp__%s:\n", exp->name);
1999 fprintf (f, "\t%s\t%s\n", ASM_LONG, exp->name);
2003 /* Dump the reloc section if a base file is provided. */
2004 if (base_file)
2006 int addr;
2007 long need[PAGE_SIZE];
2008 long page_addr;
2009 int numbytes;
2010 int num_entries;
2011 long *copy;
2012 int j;
2013 int on_page;
2014 fprintf (f, "\t.section\t.init\n");
2015 fprintf (f, "lab:\n");
2017 fseek (base_file, 0, SEEK_END);
2018 numbytes = ftell (base_file);
2019 fseek (base_file, 0, SEEK_SET);
2020 copy = xmalloc (numbytes);
2021 fread (copy, 1, numbytes, base_file);
2022 num_entries = numbytes / sizeof (long);
2025 fprintf (f, "\t.section\t.reloc\n");
2026 if (num_entries)
2028 int src;
2029 int dst = 0;
2030 int last = -1;
2031 qsort (copy, num_entries, sizeof (long), sfunc);
2032 /* Delete duplcates */
2033 for (src = 0; src < num_entries; src++)
2035 if (last != copy[src])
2036 last = copy[dst++] = copy[src];
2038 num_entries = dst;
2039 addr = copy[0];
2040 page_addr = addr & PAGE_MASK; /* work out the page addr */
2041 on_page = 0;
2042 for (j = 0; j < num_entries; j++)
2044 addr = copy[j];
2045 if ((addr & PAGE_MASK) != page_addr)
2047 flush_page (f, need, page_addr, on_page);
2048 on_page = 0;
2049 page_addr = addr & PAGE_MASK;
2051 need[on_page++] = addr;
2053 flush_page (f, need, page_addr, on_page);
2055 /* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
2059 generate_idata_ofile (f);
2061 fclose (f);
2063 /* Assemble the file. */
2064 assemble_file (TMP_ASM, exp_name);
2066 if (dontdeltemps == 0)
2067 unlink (TMP_ASM);
2069 inform (_("Generated exports file"));
2072 static const char *
2073 xlate (name)
2074 const char *name;
2076 int lead_at = (*name == '@');
2078 if (add_underscore && !lead_at)
2080 char *copy = xmalloc (strlen (name) + 2);
2082 copy[0] = '_';
2083 strcpy (copy + 1, name);
2084 name = copy;
2087 if (killat)
2089 char *p;
2091 name += lead_at;
2092 p = strchr (name, '@');
2093 if (p)
2094 *p = 0;
2096 return name;
2099 /**********************************************************************/
2101 #if 0
2103 static void
2104 dump_iat (f, exp)
2105 FILE *f;
2106 export_type *exp;
2108 if (exp->noname && !show_allnames )
2110 fprintf (f, "\t%s\t0x%08x\n",
2111 ASM_LONG,
2112 exp->ordinal | 0x80000000); /* hint or orindal ?? */
2114 else
2116 fprintf (f, "\t%sID%d%s\n", ASM_RVA_BEFORE,
2117 exp->ordinal,
2118 ASM_RVA_AFTER);
2122 #endif
2124 typedef struct
2126 int id;
2127 const char *name;
2128 int flags;
2129 int align;
2130 asection *sec;
2131 asymbol *sym;
2132 asymbol **sympp;
2133 int size;
2134 unsigned char *data;
2135 } sinfo;
2137 #ifndef DLLTOOL_PPC
2139 #define TEXT 0
2140 #define DATA 1
2141 #define BSS 2
2142 #define IDATA7 3
2143 #define IDATA5 4
2144 #define IDATA4 5
2145 #define IDATA6 6
2147 #define NSECS 7
2149 #define TEXT_SEC_FLAGS \
2150 (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS)
2151 #define DATA_SEC_FLAGS (SEC_ALLOC | SEC_LOAD | SEC_DATA)
2152 #define BSS_SEC_FLAGS SEC_ALLOC
2154 #define INIT_SEC_DATA(id, name, flags, align) \
2155 { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
2156 static sinfo secdata[NSECS] =
2158 INIT_SEC_DATA (TEXT, ".text", TEXT_SEC_FLAGS, 2),
2159 INIT_SEC_DATA (DATA, ".data", DATA_SEC_FLAGS, 2),
2160 INIT_SEC_DATA (BSS, ".bss", BSS_SEC_FLAGS, 2),
2161 INIT_SEC_DATA (IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2),
2162 INIT_SEC_DATA (IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2),
2163 INIT_SEC_DATA (IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2),
2164 INIT_SEC_DATA (IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1)
2167 #else
2169 /* Sections numbered to make the order the same as other PowerPC NT
2170 compilers. This also keeps funny alignment thingies from happening. */
2171 #define TEXT 0
2172 #define PDATA 1
2173 #define RDATA 2
2174 #define IDATA5 3
2175 #define IDATA4 4
2176 #define IDATA6 5
2177 #define IDATA7 6
2178 #define DATA 7
2179 #define BSS 8
2181 #define NSECS 9
2183 static sinfo secdata[NSECS] =
2185 { TEXT, ".text", SEC_CODE | SEC_HAS_CONTENTS, 3},
2186 { PDATA, ".pdata", SEC_HAS_CONTENTS, 2},
2187 { RDATA, ".reldata", SEC_HAS_CONTENTS, 2},
2188 { IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2},
2189 { IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2},
2190 { IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1},
2191 { IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2},
2192 { DATA, ".data", SEC_DATA, 2},
2193 { BSS, ".bss", 0, 2}
2196 #endif
2198 /* This is what we're trying to make. We generate the imp symbols with
2199 both single and double underscores, for compatibility.
2201 .text
2202 .global _GetFileVersionInfoSizeW@8
2203 .global __imp_GetFileVersionInfoSizeW@8
2204 _GetFileVersionInfoSizeW@8:
2205 jmp * __imp_GetFileVersionInfoSizeW@8
2206 .section .idata$7 # To force loading of head
2207 .long __version_a_head
2208 # Import Address Table
2209 .section .idata$5
2210 __imp_GetFileVersionInfoSizeW@8:
2211 .rva ID2
2213 # Import Lookup Table
2214 .section .idata$4
2215 .rva ID2
2216 # Hint/Name table
2217 .section .idata$6
2218 ID2: .short 2
2219 .asciz "GetFileVersionInfoSizeW"
2222 For the PowerPC, here's the variation on the above scheme:
2224 # Rather than a simple "jmp *", the code to get to the dll function
2225 # looks like:
2226 .text
2227 lwz r11,[tocv]__imp_function_name(r2)
2228 # RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2229 lwz r12,0(r11)
2230 stw r2,4(r1)
2231 mtctr r12
2232 lwz r2,4(r11)
2233 bctr */
2235 static char *
2236 make_label (prefix, name)
2237 const char *prefix;
2238 const char *name;
2240 int len = strlen (ASM_PREFIX) + strlen (prefix) + strlen (name);
2241 char *copy = xmalloc (len +1 );
2243 strcpy (copy, ASM_PREFIX);
2244 strcat (copy, prefix);
2245 strcat (copy, name);
2246 return copy;
2249 static char *
2250 make_imp_label (prefix, name)
2251 const char *prefix;
2252 const char *name;
2254 int len;
2255 char *copy;
2257 if (name[0] == '@')
2259 len = strlen (prefix) + strlen (name);
2260 copy = xmalloc (len + 1);
2261 strcpy (copy, prefix);
2262 strcat (copy, name);
2264 else
2266 len = strlen (ASM_PREFIX) + strlen (prefix) + strlen (name);
2267 copy = xmalloc (len + 1);
2268 strcpy (copy, prefix);
2269 strcat (copy, ASM_PREFIX);
2270 strcat (copy, name);
2272 return copy;
2275 static bfd *
2276 make_one_lib_file (exp, i)
2277 export_type *exp;
2278 int i;
2280 #if 0
2282 char *name;
2283 FILE *f;
2284 const char *prefix = "d";
2285 char *dest;
2287 name = (char *) alloca (strlen (prefix) + 10);
2288 sprintf (name, "%ss%05d.s", prefix, i);
2289 f = fopen (name, FOPEN_WT);
2290 fprintf (f, "\t.text\n");
2291 fprintf (f, "\t%s\t%s%s\n", ASM_GLOBAL, ASM_PREFIX, exp->name);
2292 if (create_compat_implib)
2293 fprintf (f, "\t%s\t__imp_%s\n", ASM_GLOBAL, exp->name);
2294 fprintf (f, "\t%s\t_imp__%s\n", ASM_GLOBAL, exp->name);
2295 if (create_compat_implib)
2296 fprintf (f, "%s%s:\n\t%s\t__imp_%s\n", ASM_PREFIX,
2297 exp->name, ASM_JUMP, exp->name);
2299 fprintf (f, "\t.section\t.idata$7\t%s To force loading of head\n", ASM_C);
2300 fprintf (f, "\t%s\t%s\n", ASM_LONG, head_label);
2303 fprintf (f,"%s Import Address Table\n", ASM_C);
2305 fprintf (f, "\t.section .idata$5\n");
2306 if (create_compat_implib)
2307 fprintf (f, "__imp_%s:\n", exp->name);
2308 fprintf (f, "_imp__%s:\n", exp->name);
2310 dump_iat (f, exp);
2312 fprintf (f, "\n%s Import Lookup Table\n", ASM_C);
2313 fprintf (f, "\t.section .idata$4\n");
2315 dump_iat (f, exp);
2317 if(!exp->noname || show_allnames)
2319 fprintf (f, "%s Hint/Name table\n", ASM_C);
2320 fprintf (f, "\t.section .idata$6\n");
2321 fprintf (f, "ID%d:\t%s\t%d\n", exp->ordinal, ASM_SHORT, exp->hint);
2322 fprintf (f, "\t%s\t\"%s\"\n", ASM_TEXT, xlate (exp->name));
2325 fclose (f);
2327 dest = (char *) alloca (strlen (prefix) + 10);
2328 sprintf (dest, "%ss%05d.o", prefix, i);
2329 assemble_file (name, dest);
2331 #else /* if 0 */
2333 bfd * abfd;
2334 asymbol * exp_label;
2335 asymbol * iname = 0;
2336 asymbol * iname2;
2337 asymbol * iname_lab;
2338 asymbol ** iname_lab_pp;
2339 asymbol ** iname_pp;
2340 #ifdef DLLTOOL_PPC
2341 asymbol ** fn_pp;
2342 asymbol ** toc_pp;
2343 #define EXTRA 2
2344 #endif
2345 #ifndef EXTRA
2346 #define EXTRA 0
2347 #endif
2348 asymbol * ptrs[NSECS + 4 + EXTRA + 1];
2349 flagword applicable;
2351 char * outname = xmalloc (10);
2352 int oidx = 0;
2355 sprintf (outname, "%s%05d.o", TMP_STUB, i);
2357 abfd = bfd_openw (outname, HOW_BFD_WRITE_TARGET);
2359 if (!abfd)
2360 /* xgettext:c-format */
2361 fatal (_("bfd_open failed open stub file: %s"), outname);
2363 /* xgettext:c-format */
2364 inform (_("Creating stub file: %s"), outname);
2366 bfd_set_format (abfd, bfd_object);
2367 bfd_set_arch_mach (abfd, HOW_BFD_ARCH, 0);
2369 #ifdef DLLTOOL_ARM
2370 if (machine == MARM_INTERWORK || machine == MTHUMB)
2371 bfd_set_private_flags (abfd, F_INTERWORK);
2372 #endif
2374 applicable = bfd_applicable_section_flags (abfd);
2376 /* First make symbols for the sections. */
2377 for (i = 0; i < NSECS; i++)
2379 sinfo *si = secdata + i;
2380 if (si->id != i)
2381 abort();
2382 si->sec = bfd_make_section_old_way (abfd, si->name);
2383 bfd_set_section_flags (abfd,
2384 si->sec,
2385 si->flags & applicable);
2387 bfd_set_section_alignment(abfd, si->sec, si->align);
2388 si->sec->output_section = si->sec;
2389 si->sym = bfd_make_empty_symbol(abfd);
2390 si->sym->name = si->sec->name;
2391 si->sym->section = si->sec;
2392 si->sym->flags = BSF_LOCAL;
2393 si->sym->value = 0;
2394 ptrs[oidx] = si->sym;
2395 si->sympp = ptrs + oidx;
2396 si->size = 0;
2397 si->data = NULL;
2399 oidx++;
2402 if (! exp->data)
2404 exp_label = bfd_make_empty_symbol (abfd);
2405 exp_label->name = make_imp_label ("", exp->name);
2407 /* On PowerPC, the function name points to a descriptor in
2408 the rdata section, the first element of which is a
2409 pointer to the code (..function_name), and the second
2410 points to the .toc. */
2411 #ifdef DLLTOOL_PPC
2412 if (machine == MPPC)
2413 exp_label->section = secdata[RDATA].sec;
2414 else
2415 #endif
2416 exp_label->section = secdata[TEXT].sec;
2418 exp_label->flags = BSF_GLOBAL;
2419 exp_label->value = 0;
2421 #ifdef DLLTOOL_ARM
2422 if (machine == MTHUMB)
2423 bfd_coff_set_symbol_class (abfd, exp_label, C_THUMBEXTFUNC);
2424 #endif
2425 ptrs[oidx++] = exp_label;
2428 /* Generate imp symbols with one underscore for Microsoft
2429 compatibility, and with two underscores for backward
2430 compatibility with old versions of cygwin. */
2431 if (create_compat_implib)
2433 iname = bfd_make_empty_symbol (abfd);
2434 iname->name = make_imp_label ("___imp", exp->name);
2435 iname->section = secdata[IDATA5].sec;
2436 iname->flags = BSF_GLOBAL;
2437 iname->value = 0;
2440 iname2 = bfd_make_empty_symbol (abfd);
2441 iname2->name = make_imp_label ("__imp_", exp->name);
2442 iname2->section = secdata[IDATA5].sec;
2443 iname2->flags = BSF_GLOBAL;
2444 iname2->value = 0;
2446 iname_lab = bfd_make_empty_symbol(abfd);
2448 iname_lab->name = head_label;
2449 iname_lab->section = (asection *)&bfd_und_section;
2450 iname_lab->flags = 0;
2451 iname_lab->value = 0;
2453 iname_pp = ptrs + oidx;
2454 if (create_compat_implib)
2455 ptrs[oidx++] = iname;
2456 ptrs[oidx++] = iname2;
2458 iname_lab_pp = ptrs + oidx;
2459 ptrs[oidx++] = iname_lab;
2461 #ifdef DLLTOOL_PPC
2462 /* The symbol refering to the code (.text). */
2464 asymbol *function_name;
2466 function_name = bfd_make_empty_symbol(abfd);
2467 function_name->name = make_label ("..", exp->name);
2468 function_name->section = secdata[TEXT].sec;
2469 function_name->flags = BSF_GLOBAL;
2470 function_name->value = 0;
2472 fn_pp = ptrs + oidx;
2473 ptrs[oidx++] = function_name;
2476 /* The .toc symbol. */
2478 asymbol *toc_symbol;
2480 toc_symbol = bfd_make_empty_symbol (abfd);
2481 toc_symbol->name = make_label (".", "toc");
2482 toc_symbol->section = (asection *)&bfd_und_section;
2483 toc_symbol->flags = BSF_GLOBAL;
2484 toc_symbol->value = 0;
2486 toc_pp = ptrs + oidx;
2487 ptrs[oidx++] = toc_symbol;
2489 #endif
2491 ptrs[oidx] = 0;
2493 for (i = 0; i < NSECS; i++)
2495 sinfo *si = secdata + i;
2496 asection *sec = si->sec;
2497 arelent *rel;
2498 arelent **rpp;
2500 switch (i)
2502 case TEXT:
2503 if (! exp->data)
2505 si->size = HOW_JTAB_SIZE;
2506 si->data = xmalloc (HOW_JTAB_SIZE);
2507 memcpy (si->data, HOW_JTAB, HOW_JTAB_SIZE);
2509 /* add the reloc into idata$5 */
2510 rel = xmalloc (sizeof (arelent));
2512 rpp = xmalloc (sizeof (arelent *) * 2);
2513 rpp[0] = rel;
2514 rpp[1] = 0;
2516 rel->address = HOW_JTAB_ROFF;
2517 rel->addend = 0;
2519 if (machine == MPPC)
2521 rel->howto = bfd_reloc_type_lookup (abfd,
2522 BFD_RELOC_16_GOTOFF);
2523 rel->sym_ptr_ptr = iname_pp;
2525 else
2527 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2528 rel->sym_ptr_ptr = secdata[IDATA5].sympp;
2530 sec->orelocation = rpp;
2531 sec->reloc_count = 1;
2533 break;
2534 case IDATA4:
2535 case IDATA5:
2536 /* An idata$4 or idata$5 is one word long, and has an
2537 rva to idata$6. */
2539 si->data = xmalloc (4);
2540 si->size = 4;
2542 if (exp->noname)
2544 si->data[0] = exp->ordinal ;
2545 si->data[1] = exp->ordinal >> 8;
2546 si->data[2] = exp->ordinal >> 16;
2547 si->data[3] = 0x80;
2549 else
2551 sec->reloc_count = 1;
2552 memset (si->data, 0, si->size);
2553 rel = xmalloc (sizeof (arelent));
2554 rpp = xmalloc (sizeof (arelent *) * 2);
2555 rpp[0] = rel;
2556 rpp[1] = 0;
2557 rel->address = 0;
2558 rel->addend = 0;
2559 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2560 rel->sym_ptr_ptr = secdata[IDATA6].sympp;
2561 sec->orelocation = rpp;
2564 break;
2566 case IDATA6:
2567 if (!exp->noname)
2569 /* This used to add 1 to exp->hint. I don't know
2570 why it did that, and it does not match what I see
2571 in programs compiled with the MS tools. */
2572 int idx = exp->hint;
2573 si->size = strlen (xlate (exp->name)) + 3;
2574 si->data = xmalloc (si->size);
2575 si->data[0] = idx & 0xff;
2576 si->data[1] = idx >> 8;
2577 strcpy (si->data + 2, xlate (exp->name));
2579 break;
2580 case IDATA7:
2581 si->size = 4;
2582 si->data =xmalloc (4);
2583 memset (si->data, 0, si->size);
2584 rel = xmalloc (sizeof (arelent));
2585 rpp = xmalloc (sizeof (arelent *) * 2);
2586 rpp[0] = rel;
2587 rel->address = 0;
2588 rel->addend = 0;
2589 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2590 rel->sym_ptr_ptr = iname_lab_pp;
2591 sec->orelocation = rpp;
2592 sec->reloc_count = 1;
2593 break;
2595 #ifdef DLLTOOL_PPC
2596 case PDATA:
2598 /* The .pdata section is 5 words long.
2599 Think of it as:
2600 struct
2602 bfd_vma BeginAddress, [0x00]
2603 EndAddress, [0x04]
2604 ExceptionHandler, [0x08]
2605 HandlerData, [0x0c]
2606 PrologEndAddress; [0x10]
2607 }; */
2609 /* So this pdata section setups up this as a glue linkage to
2610 a dll routine. There are a number of house keeping things
2611 we need to do:
2613 1. In the name of glue trickery, the ADDR32 relocs for 0,
2614 4, and 0x10 are set to point to the same place:
2615 "..function_name".
2616 2. There is one more reloc needed in the pdata section.
2617 The actual glue instruction to restore the toc on
2618 return is saved as the offset in an IMGLUE reloc.
2619 So we need a total of four relocs for this section.
2621 3. Lastly, the HandlerData field is set to 0x03, to indicate
2622 that this is a glue routine. */
2623 arelent *imglue, *ba_rel, *ea_rel, *pea_rel;
2625 /* Alignment must be set to 2**2 or you get extra stuff. */
2626 bfd_set_section_alignment(abfd, sec, 2);
2628 si->size = 4 * 5;
2629 si->data = xmalloc (si->size);
2630 memset (si->data, 0, si->size);
2631 rpp = xmalloc (sizeof (arelent *) * 5);
2632 rpp[0] = imglue = xmalloc (sizeof (arelent));
2633 rpp[1] = ba_rel = xmalloc (sizeof (arelent));
2634 rpp[2] = ea_rel = xmalloc (sizeof (arelent));
2635 rpp[3] = pea_rel = xmalloc (sizeof (arelent));
2636 rpp[4] = 0;
2638 /* Stick the toc reload instruction in the glue reloc. */
2639 bfd_put_32(abfd, ppc_glue_insn, (char *) &imglue->address);
2641 imglue->addend = 0;
2642 imglue->howto = bfd_reloc_type_lookup (abfd,
2643 BFD_RELOC_32_GOTOFF);
2644 imglue->sym_ptr_ptr = fn_pp;
2646 ba_rel->address = 0;
2647 ba_rel->addend = 0;
2648 ba_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2649 ba_rel->sym_ptr_ptr = fn_pp;
2651 bfd_put_32 (abfd, 0x18, si->data + 0x04);
2652 ea_rel->address = 4;
2653 ea_rel->addend = 0;
2654 ea_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2655 ea_rel->sym_ptr_ptr = fn_pp;
2657 /* Mark it as glue. */
2658 bfd_put_32 (abfd, 0x03, si->data + 0x0c);
2660 /* Mark the prolog end address. */
2661 bfd_put_32 (abfd, 0x0D, si->data + 0x10);
2662 pea_rel->address = 0x10;
2663 pea_rel->addend = 0;
2664 pea_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2665 pea_rel->sym_ptr_ptr = fn_pp;
2667 sec->orelocation = rpp;
2668 sec->reloc_count = 4;
2669 break;
2671 case RDATA:
2672 /* Each external function in a PowerPC PE file has a two word
2673 descriptor consisting of:
2674 1. The address of the code.
2675 2. The address of the appropriate .toc
2676 We use relocs to build this. */
2677 si->size = 8;
2678 si->data = xmalloc (8);
2679 memset (si->data, 0, si->size);
2681 rpp = xmalloc (sizeof (arelent *) * 3);
2682 rpp[0] = rel = xmalloc (sizeof (arelent));
2683 rpp[1] = xmalloc (sizeof (arelent));
2684 rpp[2] = 0;
2686 rel->address = 0;
2687 rel->addend = 0;
2688 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2689 rel->sym_ptr_ptr = fn_pp;
2691 rel = rpp[1];
2693 rel->address = 4;
2694 rel->addend = 0;
2695 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2696 rel->sym_ptr_ptr = toc_pp;
2698 sec->orelocation = rpp;
2699 sec->reloc_count = 2;
2700 break;
2701 #endif /* DLLTOOL_PPC */
2706 bfd_vma vma = 0;
2707 /* Size up all the sections. */
2708 for (i = 0; i < NSECS; i++)
2710 sinfo *si = secdata + i;
2712 bfd_set_section_size (abfd, si->sec, si->size);
2713 bfd_set_section_vma (abfd, si->sec, vma);
2715 /* vma += si->size;*/
2718 /* Write them out. */
2719 for (i = 0; i < NSECS; i++)
2721 sinfo *si = secdata + i;
2723 if (i == IDATA5 && no_idata5)
2724 continue;
2726 if (i == IDATA4 && no_idata4)
2727 continue;
2729 bfd_set_section_contents (abfd, si->sec,
2730 si->data, 0,
2731 si->size);
2734 bfd_set_symtab (abfd, ptrs, oidx);
2735 bfd_close (abfd);
2736 abfd = bfd_openr (outname, HOW_BFD_READ_TARGET);
2737 return abfd;
2739 #endif
2742 static bfd *
2743 make_head ()
2745 FILE *f = fopen (TMP_HEAD_S, FOPEN_WT);
2747 if (f == NULL)
2749 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S);
2750 return NULL;
2753 fprintf (f, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C);
2754 fprintf (f, "\t.section .idata$2\n");
2756 fprintf(f,"\t%s\t%s\n", ASM_GLOBAL,head_label);
2758 fprintf (f, "%s:\n", head_label);
2760 fprintf (f, "\t%shname%s\t%sPtr to image import by name list\n",
2761 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2763 fprintf (f, "\t%sthis should be the timestamp, but NT sometimes\n", ASM_C);
2764 fprintf (f, "\t%sdoesn't load DLLs when this is set.\n", ASM_C);
2765 fprintf (f, "\t%s\t0\t%s loaded time\n", ASM_LONG, ASM_C);
2766 fprintf (f, "\t%s\t0\t%s Forwarder chain\n", ASM_LONG, ASM_C);
2767 fprintf (f, "\t%s__%s_iname%s\t%s imported dll's name\n",
2768 ASM_RVA_BEFORE,
2769 imp_name_lab,
2770 ASM_RVA_AFTER,
2771 ASM_C);
2772 fprintf (f, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2773 ASM_RVA_BEFORE,
2774 ASM_RVA_AFTER, ASM_C);
2776 fprintf (f, "%sStuff for compatibility\n", ASM_C);
2778 if (!no_idata5)
2780 fprintf (f, "\t.section\t.idata$5\n");
2781 fprintf (f, "\t%s\t0\n", ASM_LONG);
2782 fprintf (f, "fthunk:\n");
2785 if (!no_idata4)
2787 fprintf (f, "\t.section\t.idata$4\n");
2789 fprintf (f, "\t%s\t0\n", ASM_LONG);
2790 fprintf (f, "\t.section .idata$4\n");
2791 fprintf (f, "hname:\n");
2794 fclose (f);
2796 assemble_file (TMP_HEAD_S, TMP_HEAD_O);
2798 return bfd_openr (TMP_HEAD_O, HOW_BFD_READ_TARGET);
2801 static bfd *
2802 make_tail ()
2804 FILE *f = fopen (TMP_TAIL_S, FOPEN_WT);
2806 if (f == NULL)
2808 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S);
2809 return NULL;
2812 if (!no_idata4)
2814 fprintf (f, "\t.section .idata$4\n");
2815 fprintf (f, "\t%s\t0\n", ASM_LONG);
2818 if (!no_idata5)
2820 fprintf (f, "\t.section .idata$5\n");
2821 fprintf (f, "\t%s\t0\n", ASM_LONG);
2824 #ifdef DLLTOOL_PPC
2825 /* Normally, we need to see a null descriptor built in idata$3 to
2826 act as the terminator for the list. The ideal way, I suppose,
2827 would be to mark this section as a comdat type 2 section, so
2828 only one would appear in the final .exe (if our linker supported
2829 comdat, that is) or cause it to be inserted by something else (say
2830 crt0). */
2832 fprintf (f, "\t.section .idata$3\n");
2833 fprintf (f, "\t%s\t0\n", ASM_LONG);
2834 fprintf (f, "\t%s\t0\n", ASM_LONG);
2835 fprintf (f, "\t%s\t0\n", ASM_LONG);
2836 fprintf (f, "\t%s\t0\n", ASM_LONG);
2837 fprintf (f, "\t%s\t0\n", ASM_LONG);
2838 #endif
2840 #ifdef DLLTOOL_PPC
2841 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
2842 do too. Original, huh? */
2843 fprintf (f, "\t.section .idata$6\n");
2844 #else
2845 fprintf (f, "\t.section .idata$7\n");
2846 #endif
2848 fprintf (f, "\t%s\t__%s_iname\n", ASM_GLOBAL, imp_name_lab);
2849 fprintf (f, "__%s_iname:\t%s\t\"%s\"\n",
2850 imp_name_lab, ASM_TEXT, dll_name);
2852 fclose (f);
2854 assemble_file (TMP_TAIL_S, TMP_TAIL_O);
2856 return bfd_openr (TMP_TAIL_O, HOW_BFD_READ_TARGET);
2859 static void
2860 gen_lib_file ()
2862 int i;
2863 export_type *exp;
2864 bfd *ar_head;
2865 bfd *ar_tail;
2866 bfd *outarch;
2867 bfd * head = 0;
2869 unlink (imp_name);
2871 outarch = bfd_openw (imp_name, HOW_BFD_WRITE_TARGET);
2873 if (!outarch)
2874 /* xgettext:c-format */
2875 fatal (_("Can't open .lib file: %s"), imp_name);
2877 /* xgettext:c-format */
2878 inform (_("Creating library file: %s"), imp_name);
2880 bfd_set_format (outarch, bfd_archive);
2881 outarch->has_armap = 1;
2883 /* Work out a reasonable size of things to put onto one line. */
2884 ar_head = make_head ();
2885 ar_tail = make_tail();
2887 if (ar_head == NULL || ar_tail == NULL)
2888 return;
2890 for (i = 0; (exp = d_exports_lexically[i]); i++)
2892 bfd *n = make_one_lib_file (exp, i);
2893 n->next = head;
2894 head = n;
2897 /* Now stick them all into the archive. */
2898 ar_head->next = head;
2899 ar_tail->next = ar_head;
2900 head = ar_tail;
2902 if (! bfd_set_archive_head (outarch, head))
2903 bfd_fatal ("bfd_set_archive_head");
2905 if (! bfd_close (outarch))
2906 bfd_fatal (imp_name);
2908 while (head != NULL)
2910 bfd *n = head->next;
2911 bfd_close (head);
2912 head = n;
2915 /* Delete all the temp files. */
2916 if (dontdeltemps == 0)
2918 unlink (TMP_HEAD_O);
2919 unlink (TMP_HEAD_S);
2920 unlink (TMP_TAIL_O);
2921 unlink (TMP_TAIL_S);
2924 if (dontdeltemps < 2)
2926 char *name;
2928 name = (char *) alloca (sizeof TMP_STUB + 10);
2929 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
2931 sprintf (name, "%s%05d.o", TMP_STUB, i);
2932 if (unlink (name) < 0)
2933 /* xgettext:c-format */
2934 non_fatal (_("cannot delete %s: %s"), name, strerror (errno));
2938 inform (_("Created lib file"));
2941 /**********************************************************************/
2943 /* Run through the information gathered from the .o files and the
2944 .def file and work out the best stuff. */
2945 static int
2946 pfunc (a, b)
2947 const void *a;
2948 const void *b;
2950 export_type *ap = *(export_type **) a;
2951 export_type *bp = *(export_type **) b;
2952 if (ap->ordinal == bp->ordinal)
2953 return 0;
2955 /* Unset ordinals go to the bottom. */
2956 if (ap->ordinal == -1)
2957 return 1;
2958 if (bp->ordinal == -1)
2959 return -1;
2960 return (ap->ordinal - bp->ordinal);
2963 static int
2964 nfunc (a, b)
2965 const void *a;
2966 const void *b;
2968 export_type *ap = *(export_type **) a;
2969 export_type *bp = *(export_type **) b;
2971 return (strcmp (ap->name, bp->name));
2974 static void
2975 remove_null_names (ptr)
2976 export_type **ptr;
2978 int src;
2979 int dst;
2981 for (dst = src = 0; src < d_nfuncs; src++)
2983 if (ptr[src])
2985 ptr[dst] = ptr[src];
2986 dst++;
2989 d_nfuncs = dst;
2992 static void
2993 dtab (ptr)
2994 export_type ** ptr
2995 #ifndef SACDEBUG
2996 ATTRIBUTE_UNUSED
2997 #endif
3000 #ifdef SACDEBUG
3001 int i;
3002 for (i = 0; i < d_nfuncs; i++)
3004 if (ptr[i])
3006 printf ("%d %s @ %d %s%s%s\n",
3007 i, ptr[i]->name, ptr[i]->ordinal,
3008 ptr[i]->noname ? "NONAME " : "",
3009 ptr[i]->constant ? "CONSTANT" : "",
3010 ptr[i]->data ? "DATA" : "");
3012 else
3013 printf ("empty\n");
3015 #endif
3018 static void
3019 process_duplicates (d_export_vec)
3020 export_type **d_export_vec;
3022 int more = 1;
3023 int i;
3025 while (more)
3028 more = 0;
3029 /* Remove duplicates. */
3030 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), nfunc);
3032 dtab (d_export_vec);
3033 for (i = 0; i < d_nfuncs - 1; i++)
3035 if (strcmp (d_export_vec[i]->name,
3036 d_export_vec[i + 1]->name) == 0)
3039 export_type *a = d_export_vec[i];
3040 export_type *b = d_export_vec[i + 1];
3042 more = 1;
3044 /* xgettext:c-format */
3045 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
3046 a->name, a->ordinal, b->ordinal);
3048 if (a->ordinal != -1
3049 && b->ordinal != -1)
3050 /* xgettext:c-format */
3051 fatal (_("Error, duplicate EXPORT with oridinals: %s"),
3052 a->name);
3054 /* Merge attributes. */
3055 b->ordinal = a->ordinal > 0 ? a->ordinal : b->ordinal;
3056 b->constant |= a->constant;
3057 b->noname |= a->noname;
3058 b->data |= a->data;
3059 d_export_vec[i] = 0;
3062 dtab (d_export_vec);
3063 remove_null_names (d_export_vec);
3064 dtab (d_export_vec);
3069 /* Count the names. */
3070 for (i = 0; i < d_nfuncs; i++)
3072 if (!d_export_vec[i]->noname)
3073 d_named_nfuncs++;
3077 static void
3078 fill_ordinals (d_export_vec)
3079 export_type **d_export_vec;
3081 int lowest = -1;
3082 int i;
3083 char *ptr;
3084 int size = 65536;
3086 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3088 /* Fill in the unset ordinals with ones from our range. */
3089 ptr = (char *) xmalloc (size);
3091 memset (ptr, 0, size);
3093 /* Mark in our large vector all the numbers that are taken. */
3094 for (i = 0; i < d_nfuncs; i++)
3096 if (d_export_vec[i]->ordinal != -1)
3098 ptr[d_export_vec[i]->ordinal] = 1;
3100 if (lowest == -1 || d_export_vec[i]->ordinal < lowest)
3101 lowest = d_export_vec[i]->ordinal;
3105 /* Start at 1 for compatibility with MS toolchain. */
3106 if (lowest == -1)
3107 lowest = 1;
3109 /* Now fill in ordinals where the user wants us to choose. */
3110 for (i = 0; i < d_nfuncs; i++)
3112 if (d_export_vec[i]->ordinal == -1)
3114 register int j;
3116 /* First try within or after any user supplied range. */
3117 for (j = lowest; j < size; j++)
3118 if (ptr[j] == 0)
3120 ptr[j] = 1;
3121 d_export_vec[i]->ordinal = j;
3122 goto done;
3125 /* Then try before the range. */
3126 for (j = lowest; j >0; j--)
3127 if (ptr[j] == 0)
3129 ptr[j] = 1;
3130 d_export_vec[i]->ordinal = j;
3131 goto done;
3133 done:;
3137 free (ptr);
3139 /* And resort. */
3140 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3142 /* Work out the lowest and highest ordinal numbers. */
3143 if (d_nfuncs)
3145 if (d_export_vec[0])
3146 d_low_ord = d_export_vec[0]->ordinal;
3147 if (d_export_vec[d_nfuncs-1])
3148 d_high_ord = d_export_vec[d_nfuncs-1]->ordinal;
3152 static int
3153 alphafunc (av,bv)
3154 const void *av;
3155 const void *bv;
3157 const export_type **a = (const export_type **) av;
3158 const export_type **b = (const export_type **) bv;
3160 return strcmp ((*a)->name, (*b)->name);
3163 static void
3164 mangle_defs ()
3166 /* First work out the minimum ordinal chosen. */
3167 export_type *exp;
3169 int i;
3170 int hint = 0;
3171 export_type **d_export_vec
3172 = (export_type **) xmalloc (sizeof (export_type *) * d_nfuncs);
3174 inform (_("Processing definitions"));
3176 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
3177 d_export_vec[i] = exp;
3179 process_duplicates (d_export_vec);
3180 fill_ordinals (d_export_vec);
3182 /* Put back the list in the new order. */
3183 d_exports = 0;
3184 for (i = d_nfuncs - 1; i >= 0; i--)
3186 d_export_vec[i]->next = d_exports;
3187 d_exports = d_export_vec[i];
3190 /* Build list in alpha order. */
3191 d_exports_lexically = (export_type **)
3192 xmalloc (sizeof (export_type *) * (d_nfuncs + 1));
3194 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
3195 d_exports_lexically[i] = exp;
3197 d_exports_lexically[i] = 0;
3199 qsort (d_exports_lexically, i, sizeof (export_type *), alphafunc);
3201 /* Fill exp entries with their hint values. */
3202 for (i = 0; i < d_nfuncs; i++)
3203 if (!d_exports_lexically[i]->noname || show_allnames)
3204 d_exports_lexically[i]->hint = hint++;
3206 inform (_("Processed definitions"));
3209 /**********************************************************************/
3211 static void
3212 usage (file, status)
3213 FILE *file;
3214 int status;
3216 /* xgetext:c-format */
3217 fprintf (file, _("Usage %s <option(s)> <object-file(s)>\n"), program_name);
3218 /* xgetext:c-format */
3219 fprintf (file, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname);
3220 fprintf (file, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
3221 fprintf (file, _(" -e --output-exp <outname> Generate an export file.\n"));
3222 fprintf (file, _(" -l --output-lib <outname> Generate an interface library.\n"));
3223 fprintf (file, _(" -a --add-indirect Add dll indirects to export file.\n"));
3224 fprintf (file, _(" -D --dllname <name> Name of input dll to put into interface lib.\n"));
3225 fprintf (file, _(" -d --input-def <deffile> Name of .def file to be read in.\n"));
3226 fprintf (file, _(" -z --output-def <deffile> Name of .def file to be created.\n"));
3227 fprintf (file, _(" --export-all-symbols Export all symbols to .def\n"));
3228 fprintf (file, _(" --no-export-all-symbols Only export listed symbols\n"));
3229 fprintf (file, _(" --exclude-symbols <list> Don't export <list>\n"));
3230 fprintf (file, _(" --no-default-excludes Clear default exclude symbols\n"));
3231 fprintf (file, _(" -b --base-file <basefile> Read linker generated base file.\n"));
3232 fprintf (file, _(" -x --no-idata4 Don't generate idata$4 section.\n"));
3233 fprintf (file, _(" -c --no-idata5 Don't generate idata$5 section.\n"));
3234 fprintf (file, _(" -U --add-underscore Add underscores to symbols in interface library.\n"));
3235 fprintf (file, _(" -k --kill-at Kill @<n> from exported names.\n"));
3236 fprintf (file, _(" -A --add-stdcall-alias Add aliases without @<n>.\n"));
3237 fprintf (file, _(" -S --as <name> Use <name> for assembler.\n"));
3238 fprintf (file, _(" -f --as-flags <flags> Pass <flags> to the assembler.\n"));
3239 fprintf (file, _(" -C --compat-implib Create backward compatible import library.\n"));
3240 fprintf (file, _(" -n --no-delete Keep temp files (repeat for extra preservation).\n"));
3241 fprintf (file, _(" -v --verbose Be verbose.\n"));
3242 fprintf (file, _(" -V --version Display the program version.\n"));
3243 fprintf (file, _(" -h --help Display this information.\n"));
3244 #ifdef DLLTOOL_MCORE_ELF
3245 fprintf (file, _(" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n"));
3246 fprintf (file, _(" -L --linker <name> Use <name> as the linker.\n"));
3247 fprintf (file, _(" -F --linker-flags <flags> Pass <flags> to the linker.\n"));
3248 #endif
3249 exit (status);
3252 #define OPTION_EXPORT_ALL_SYMS 150
3253 #define OPTION_NO_EXPORT_ALL_SYMS (OPTION_EXPORT_ALL_SYMS + 1)
3254 #define OPTION_EXCLUDE_SYMS (OPTION_NO_EXPORT_ALL_SYMS + 1)
3255 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_EXCLUDE_SYMS + 1)
3257 static const struct option long_options[] =
3259 {"no-delete", no_argument, NULL, 'n'},
3260 {"dllname", required_argument, NULL, 'D'},
3261 {"no-idata4", no_argument, NULL, 'x'},
3262 {"no-idata5", no_argument, NULL, 'c'},
3263 {"output-exp", required_argument, NULL, 'e'},
3264 {"output-def", required_argument, NULL, 'z'},
3265 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL_SYMS},
3266 {"no-export-all-symbols", no_argument, NULL, OPTION_NO_EXPORT_ALL_SYMS},
3267 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMS},
3268 {"no-default-excludes", no_argument, NULL, OPTION_NO_DEFAULT_EXCLUDES},
3269 {"output-lib", required_argument, NULL, 'l'},
3270 {"def", required_argument, NULL, 'd'}, /* for compatiblity with older versions */
3271 {"input-def", required_argument, NULL, 'd'},
3272 {"add-underscore", no_argument, NULL, 'U'},
3273 {"kill-at", no_argument, NULL, 'k'},
3274 {"add-stdcall-alias", no_argument, NULL, 'A'},
3275 {"verbose", no_argument, NULL, 'v'},
3276 {"version", no_argument, NULL, 'V'},
3277 {"help", no_argument, NULL, 'h'},
3278 {"machine", required_argument, NULL, 'm'},
3279 {"add-indirect", no_argument, NULL, 'a'},
3280 {"base-file", required_argument, NULL, 'b'},
3281 {"as", required_argument, NULL, 'S'},
3282 {"as-flags", required_argument, NULL, 'f'},
3283 {"mcore-elf", required_argument, NULL, 'M'},
3284 {"compat-implib", no_argument, NULL, 'C'},
3285 {"temp-prefix", required_argument, NULL, 't'},
3286 {NULL,0,NULL,0}
3289 int main PARAMS ((int, char **));
3292 main (ac, av)
3293 int ac;
3294 char **av;
3296 int c;
3297 int i;
3298 char *firstarg = 0;
3299 program_name = av[0];
3300 oav = av;
3302 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
3303 setlocale (LC_MESSAGES, "");
3304 #endif
3305 #if defined (HAVE_SETLOCALE)
3306 setlocale (LC_CTYPE, "");
3307 #endif
3308 bindtextdomain (PACKAGE, LOCALEDIR);
3309 textdomain (PACKAGE);
3311 while ((c = getopt_long (ac, av,
3312 #ifdef DLLTOOL_MCORE_ELF
3313 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHhM:L:F:",
3314 #else
3315 "m:e:l:aD:d:z:b:xcCuUkAS:f:nvVHh",
3316 #endif
3317 long_options, 0))
3318 != EOF)
3320 switch (c)
3322 case OPTION_EXPORT_ALL_SYMS:
3323 export_all_symbols = TRUE;
3324 break;
3325 case OPTION_NO_EXPORT_ALL_SYMS:
3326 export_all_symbols = FALSE;
3327 break;
3328 case OPTION_EXCLUDE_SYMS:
3329 add_excludes (optarg);
3330 break;
3331 case OPTION_NO_DEFAULT_EXCLUDES:
3332 do_default_excludes = FALSE;
3333 break;
3334 case 'x':
3335 no_idata4 = 1;
3336 break;
3337 case 'c':
3338 no_idata5 = 1;
3339 break;
3340 case 'S':
3341 as_name = optarg;
3342 break;
3343 case 't':
3344 tmp_prefix = optarg;
3345 break;
3346 case 'f':
3347 as_flags = optarg;
3348 break;
3350 /* ignored for compatibility */
3351 case 'u':
3352 break;
3353 case 'a':
3354 add_indirect = 1;
3355 break;
3356 case 'z':
3357 output_def = fopen (optarg, FOPEN_WT);
3358 break;
3359 case 'D':
3360 dll_name = optarg;
3361 break;
3362 case 'l':
3363 imp_name = optarg;
3364 break;
3365 case 'e':
3366 exp_name = optarg;
3367 break;
3368 case 'H':
3369 case 'h':
3370 usage (stdout, 0);
3371 break;
3372 case 'm':
3373 mname = optarg;
3374 break;
3375 case 'v':
3376 verbose = 1;
3377 break;
3378 case 'V':
3379 print_version (program_name);
3380 break;
3381 case 'U':
3382 add_underscore = 1;
3383 break;
3384 case 'k':
3385 killat = 1;
3386 break;
3387 case 'A':
3388 add_stdcall_alias = 1;
3389 break;
3390 case 'd':
3391 def_file = optarg;
3392 break;
3393 case 'n':
3394 dontdeltemps++;
3395 break;
3396 case 'b':
3397 base_file = fopen (optarg, FOPEN_RB);
3399 if (!base_file)
3400 /* xgettext:c-format */
3401 fatal (_("Unable to open base-file: %s"), optarg);
3403 break;
3404 #ifdef DLLTOOL_MCORE_ELF
3405 case 'M':
3406 mcore_elf_out_file = optarg;
3407 break;
3408 case 'L':
3409 mcore_elf_linker = optarg;
3410 break;
3411 case 'F':
3412 mcore_elf_linker_flags = optarg;
3413 break;
3414 #endif
3415 case 'C':
3416 create_compat_implib = 1;
3417 break;
3418 default:
3419 usage (stderr, 1);
3420 break;
3424 for (i = 0; mtable[i].type; i++)
3425 if (strcmp (mtable[i].type, mname) == 0)
3426 break;
3428 if (!mtable[i].type)
3429 /* xgettext:c-format */
3430 fatal (_("Machine '%s' not supported"), mname);
3432 machine = i;
3434 if (!dll_name && exp_name)
3436 int len = strlen (exp_name) + 5;
3437 dll_name = xmalloc (len);
3438 strcpy (dll_name, exp_name);
3439 strcat (dll_name, ".dll");
3442 if (as_name == NULL)
3443 as_name = deduce_name ("as");
3445 /* Don't use the default exclude list if we're reading only the
3446 symbols in the .drectve section. The default excludes are meant
3447 to avoid exporting DLL entry point and Cygwin32 impure_ptr. */
3448 if (! export_all_symbols)
3449 do_default_excludes = FALSE;
3451 if (do_default_excludes)
3452 set_default_excludes ();
3454 if (def_file)
3455 process_def_file (def_file);
3457 while (optind < ac)
3459 if (!firstarg)
3460 firstarg = av[optind];
3461 scan_obj_file (av[optind]);
3462 optind++;
3465 mangle_defs ();
3467 if (exp_name)
3468 gen_exp_file ();
3470 if (imp_name)
3472 /* Make imp_name safe for use as a label. */
3473 char *p;
3475 imp_name_lab = xstrdup (imp_name);
3476 for (p = imp_name_lab; *p; p++)
3478 if (!ISALNUM (*p))
3479 *p = '_';
3481 head_label = make_label("_head_", imp_name_lab);
3482 gen_lib_file ();
3485 if (output_def)
3486 gen_def_file ();
3488 #ifdef DLLTOOL_MCORE_ELF
3489 if (mcore_elf_out_file)
3490 mcore_elf_gen_out_file ();
3491 #endif
3493 return 0;
3496 /* Look for the program formed by concatenating PROG_NAME and the
3497 string running from PREFIX to END_PREFIX. If the concatenated
3498 string contains a '/', try appending EXECUTABLE_SUFFIX if it is
3499 appropriate. */
3501 static char *
3502 look_for_prog (prog_name, prefix, end_prefix)
3503 const char *prog_name;
3504 const char *prefix;
3505 int end_prefix;
3507 struct stat s;
3508 char *cmd;
3510 cmd = xmalloc (strlen (prefix)
3511 + strlen (prog_name)
3512 #ifdef HAVE_EXECUTABLE_SUFFIX
3513 + strlen (EXECUTABLE_SUFFIX)
3514 #endif
3515 + 10);
3516 strcpy (cmd, prefix);
3518 sprintf (cmd + end_prefix, "%s", prog_name);
3520 if (strchr (cmd, '/') != NULL)
3522 int found;
3524 found = (stat (cmd, &s) == 0
3525 #ifdef HAVE_EXECUTABLE_SUFFIX
3526 || stat (strcat (cmd, EXECUTABLE_SUFFIX), &s) == 0
3527 #endif
3530 if (! found)
3532 /* xgettext:c-format */
3533 inform (_("Tried file: %s"), cmd);
3534 free (cmd);
3535 return NULL;
3539 /* xgettext:c-format */
3540 inform (_("Using file: %s"), cmd);
3542 return cmd;
3545 /* Deduce the name of the program we are want to invoke.
3546 PROG_NAME is the basic name of the program we want to run,
3547 eg "as" or "ld". The catch is that we might want actually
3548 run "i386-pe-as" or "ppc-pe-ld".
3550 If argv[0] contains the full path, then try to find the program
3551 in the same place, with and then without a target-like prefix.
3553 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
3554 deduce_name("as") uses the following search order:
3556 /usr/local/bin/i586-cygwin32-as
3557 /usr/local/bin/as
3560 If there's an EXECUTABLE_SUFFIX, it'll use that as well; for each
3561 name, it'll try without and then with EXECUTABLE_SUFFIX.
3563 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
3564 as the fallback, but rather return i586-cygwin32-as.
3566 Oh, and given, argv[0] = dlltool, it'll return "as".
3568 Returns a dynamically allocated string. */
3570 static char *
3571 deduce_name (prog_name)
3572 const char *prog_name;
3574 char *cmd;
3575 char *dash, *slash, *cp;
3577 dash = NULL;
3578 slash = NULL;
3579 for (cp = program_name; *cp != '\0'; ++cp)
3581 if (*cp == '-')
3582 dash = cp;
3583 if (
3584 #if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
3585 *cp == ':' || *cp == '\\' ||
3586 #endif
3587 *cp == '/')
3589 slash = cp;
3590 dash = NULL;
3594 cmd = NULL;
3596 if (dash != NULL)
3598 /* First, try looking for a prefixed PROG_NAME in the
3599 PROGRAM_NAME directory, with the same prefix as PROGRAM_NAME. */
3600 cmd = look_for_prog (prog_name, program_name, dash - program_name + 1);
3603 if (slash != NULL && cmd == NULL)
3605 /* Next, try looking for a PROG_NAME in the same directory as
3606 that of this program. */
3607 cmd = look_for_prog (prog_name, program_name, slash - program_name + 1);
3610 if (cmd == NULL)
3612 /* Just return PROG_NAME as is. */
3613 cmd = xstrdup (prog_name);
3616 return cmd;
3619 #ifdef DLLTOOL_MCORE_ELF
3620 typedef struct fname_cache
3622 char * filename;
3623 struct fname_cache * next;
3625 fname_cache;
3627 static fname_cache fnames;
3629 static void
3630 mcore_elf_cache_filename (char * filename)
3632 fname_cache * ptr;
3634 ptr = & fnames;
3636 while (ptr->next != NULL)
3637 ptr = ptr->next;
3639 ptr->filename = filename;
3640 ptr->next = (fname_cache *) malloc (sizeof (fname_cache));
3641 if (ptr->next != NULL)
3642 ptr->next->next = NULL;
3645 #define MCORE_ELF_TMP_OBJ "mcoreelf.o"
3646 #define MCORE_ELF_TMP_EXP "mcoreelf.exp"
3647 #define MCORE_ELF_TMP_LIB "mcoreelf.lib"
3649 static void
3650 mcore_elf_gen_out_file (void)
3652 fname_cache * ptr;
3653 dyn_string_t ds;
3655 /* Step one. Run 'ld -r' on the input object files in order to resolve
3656 any internal references and to generate a single .exports section. */
3657 ptr = & fnames;
3659 ds = dyn_string_new (100);
3660 dyn_string_append_cstr (ds, "-r ");
3662 if (mcore_elf_linker_flags != NULL)
3663 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
3665 while (ptr->next != NULL)
3667 dyn_string_append_cstr (ds, ptr->filename);
3668 dyn_string_append_cstr (ds, " ");
3670 ptr = ptr->next;
3673 dyn_string_append_cstr (ds, "-o ");
3674 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
3676 if (mcore_elf_linker == NULL)
3677 mcore_elf_linker = deduce_name ("ld");
3679 run (mcore_elf_linker, ds->s);
3681 dyn_string_delete (ds);
3683 /* Step two. Create a .exp file and a .lib file from the temporary file.
3684 Do this by recursively invoking dlltool... */
3685 ds = dyn_string_new (100);
3687 dyn_string_append_cstr (ds, "-S ");
3688 dyn_string_append_cstr (ds, as_name);
3690 dyn_string_append_cstr (ds, " -e ");
3691 dyn_string_append_cstr (ds, MCORE_ELF_TMP_EXP);
3692 dyn_string_append_cstr (ds, " -l ");
3693 dyn_string_append_cstr (ds, MCORE_ELF_TMP_LIB);
3694 dyn_string_append_cstr (ds, " " );
3695 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
3697 if (verbose)
3698 dyn_string_append_cstr (ds, " -v");
3700 if (dontdeltemps)
3702 dyn_string_append_cstr (ds, " -n");
3704 if (dontdeltemps > 1)
3705 dyn_string_append_cstr (ds, " -n");
3708 /* XXX - FIME: ought to check/copy other command line options as well. */
3709 run (program_name, ds->s);
3711 dyn_string_delete (ds);
3713 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
3714 ds = dyn_string_new (100);
3716 dyn_string_append_cstr (ds, "-shared ");
3718 if (mcore_elf_linker_flags)
3719 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
3721 dyn_string_append_cstr (ds, " ");
3722 dyn_string_append_cstr (ds, MCORE_ELF_TMP_EXP);
3723 dyn_string_append_cstr (ds, " ");
3724 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
3725 dyn_string_append_cstr (ds, " -o ");
3726 dyn_string_append_cstr (ds, mcore_elf_out_file);
3728 run (mcore_elf_linker, ds->s);
3730 dyn_string_delete (ds);
3732 if (dontdeltemps == 0)
3733 unlink (MCORE_ELF_TMP_EXP);
3735 if (dontdeltemps < 2)
3736 unlink (MCORE_ELF_TMP_OBJ);
3738 #endif /* DLLTOOL_MCORE_ELF */