Remove path from gdb.python/py-pp-integral.exp "source" test.
[deliverable/binutils-gdb.git] / binutils / dlltool.c
CommitLineData
252b5132 1/* dlltool.c -- tool to generate stuff for PE style DLLs
9210d879 2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
1651e569 3 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2014 Free Software Foundation, Inc.
252b5132
RH
4
5 This file is part of GNU Binutils.
6
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
32866df7 9 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
10 (at your option) any later version.
11
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.
16
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
b43b5d5f
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
252b5132
RH
21
22
c9e38879 23/* This program allows you to build the files necessary to create
252b5132
RH
24 DLLs to run on a system which understands PE format image files.
25 (eg, Windows NT)
26
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.
31
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.
35
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.
40
41 A DEF file contains any number of the following commands:
42
43
44 NAME <name> [ , <base> ]
45 The result is going to be <name>.EXE
46
47 LIBRARY <name> [ , <base> ]
48 The result is going to be <name>.DLL
49
04847a4d
CF
50 EXPORTS ( ( ( <name1> [ = <name2> ] )
51 | ( <name1> = <module-name> . <external-name>))
7aa52b1f 52 [ @ <integer> ] [ NONAME ] [CONSTANT] [DATA] [PRIVATE] ) *
252b5132 53 Declares name1 as an exported symbol from the
04847a4d
CF
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>.
252b5132
RH
57
58 IMPORTS ( ( <internal-name> = <module-name> . <integer> )
59 | ( [ <internal-name> = ] <module-name> . <external-name> )) *
c7de9216 60 Declares that <external-name> or the exported function whose ordinal number
252b5132
RH
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
50c2245b 63 function will be refereed to in the body of the DLL.
252b5132
RH
64
65 DESCRIPTION <string>
66 Puts <string> into output .exp file in the .rdata section
67
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.
72
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.
79
80
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.
84
85
86
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.
90
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.
94
95
96
97 Example:
98
99 file1.c:
100 asm (".section .drectve");
101 asm (".ascii \"-export:adef\"");
102
103 void adef (char * s)
104 {
105 printf ("hello from the dll %s\n", s);
106 }
107
108 void bdef (char * s)
109 {
110 printf ("hello from the dll and the other entry point %s\n", s);
111 }
112
113 file2.c:
114 asm (".section .drectve");
115 asm (".ascii \"-export:cdef\"");
116 asm (".ascii \"-export:ddef\"");
26044998 117
252b5132
RH
118 void cdef (char * s)
119 {
120 printf ("hello from the dll %s\n", s);
121 }
122
123 void ddef (char * s)
124 {
125 printf ("hello from the dll and the other entry point %s\n", s);
126 }
127
661016bb 128 int printf (void)
252b5132
RH
129 {
130 return 9;
131 }
132
661016bb
NC
133 themain.c:
134 int main (void)
252b5132 135 {
661016bb
NC
136 cdef ();
137 return 0;
252b5132
RH
138 }
139
140 thedll.def
141
142 LIBRARY thedll
143 HEAPSIZE 0x40000, 0x2000
144 EXPORTS bdef @ 20
145 cdef @ 30 NONAME
146
147 SECTIONS donkey READ WRITE
148 aardvark EXECUTE
149
6e7d8205 150 # Compile up the parts of the dll and the program
252b5132 151
6e7d8205 152 gcc -c file1.c file2.c themain.c
252b5132 153
6e7d8205
NC
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)
252b5132
RH
157
158 ar qcv thedll.in file1.o file2.o
159 ranlib thedll.in
160
6e7d8205
NC
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).
26044998 164
aff05906 165 dlltool --def thedll.def --output-exp thedll.o --output-lib thedll.a
252b5132 166
aff05906 167 # Build the dll with the library and the export table
26044998 168
252b5132
RH
169 ld -o thedll.dll thedll.o thedll.in
170
6e7d8205 171 # Link the executable with the import library
26044998 172
661016bb 173 gcc -o themain.exe themain.o thedll.a
252b5132 174
aff05906
NC
175 This example can be extended if relocations are needed in the DLL:
176
177 # Compile up the parts of the dll and the program
178
179 gcc -c file1.c file2.c themain.c
180
181 # Run this tool over the DLL's .def file and generate an imports file.
26044998 182
aff05906
NC
183 dlltool --def thedll.def --output-lib thedll.lib
184
185 # Link the executable with the import library and generate a base file
186 # at the same time
26044998 187
aff05906
NC
188 gcc -o themain.exe themain.o thedll.lib -Wl,--base-file -Wl,themain.base
189
190 # Run this tool over the DLL's .def file and generate an exports file
191 # which includes the relocations from the base file.
26044998 192
aff05906
NC
193 dlltool --def thedll.def --base-file themain.base --output-exp thedll.exp
194
195 # Build the dll with file1.o, file2.o and the export table
26044998 196
c9e38879 197 ld -o thedll.dll thedll.exp file1.o file2.o */
252b5132
RH
198
199/* .idata section description
200
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.
204
205 .idata$2 = Import Directory Table
206 = array of IMAGE_IMPORT_DESCRIPTOR's.
207
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
213
214 .idata$3 = null terminating entry for .idata$2.
215
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.
220
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.
228
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.
232
c9e38879 233 .idata$7 = dll name (eg: "kernel32.dll"). (.idata$6 for ppc). */
252b5132 234
3db64b00 235#include "sysdep.h"
252b5132
RH
236#include "bfd.h"
237#include "libiberty.h"
252b5132
RH
238#include "getopt.h"
239#include "demangle.h"
bb0cb4db 240#include "dyn-string.h"
3db64b00 241#include "bucomm.h"
252b5132 242#include "dlltool.h"
3882b010 243#include "safe-ctype.h"
252b5132 244
252b5132 245#include <time.h>
0fd555c4
NC
246#include <assert.h>
247
252b5132
RH
248#ifdef DLLTOOL_ARM
249#include "coff/arm.h"
250#include "coff/internal.h"
251#endif
e05da72d 252#ifdef DLLTOOL_DEFAULT_MX86_64
99ad8390
NC
253#include "coff/x86_64.h"
254#endif
e05da72d
NC
255#ifdef DLLTOOL_DEFAULT_I386
256#include "coff/i386.h"
257#endif
258
259#ifndef COFF_PAGE_SIZE
260#define COFF_PAGE_SIZE ((bfd_vma) 4096)
261#endif
262
263#ifndef PAGE_MASK
264#define PAGE_MASK ((bfd_vma) (- COFF_PAGE_SIZE))
265#endif
252b5132 266
e05da72d 267/* Get current BFD error message. */
dec87289
NC
268#define bfd_get_errmsg() (bfd_errmsg (bfd_get_error ()))
269
49e315b1 270/* Forward references. */
2da42df6
AJ
271static char *look_for_prog (const char *, const char *, int);
272static char *deduce_name (const char *);
49e315b1
NC
273
274#ifdef DLLTOOL_MCORE_ELF
fd64a958 275static void mcore_elf_cache_filename (const char *);
2da42df6 276static void mcore_elf_gen_out_file (void);
49e315b1 277#endif
26044998 278
252b5132
RH
279#ifdef HAVE_SYS_WAIT_H
280#include <sys/wait.h>
281#else /* ! HAVE_SYS_WAIT_H */
282#if ! defined (_WIN32) || defined (__CYGWIN32__)
283#ifndef WIFEXITED
c9e38879 284#define WIFEXITED(w) (((w) & 0377) == 0)
252b5132
RH
285#endif
286#ifndef WIFSIGNALED
c9e38879 287#define WIFSIGNALED(w) (((w) & 0377) != 0177 && ((w) & ~0377) == 0)
252b5132
RH
288#endif
289#ifndef WTERMSIG
290#define WTERMSIG(w) ((w) & 0177)
291#endif
292#ifndef WEXITSTATUS
293#define WEXITSTATUS(w) (((w) >> 8) & 0377)
294#endif
295#else /* defined (_WIN32) && ! defined (__CYGWIN32__) */
296#ifndef WIFEXITED
297#define WIFEXITED(w) (((w) & 0xff) == 0)
298#endif
299#ifndef WIFSIGNALED
300#define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
301#endif
302#ifndef WTERMSIG
303#define WTERMSIG(w) ((w) & 0x7f)
304#endif
305#ifndef WEXITSTATUS
306#define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
307#endif
308#endif /* defined (_WIN32) && ! defined (__CYGWIN32__) */
309#endif /* ! HAVE_SYS_WAIT_H */
310
dbb7c441
AM
311#define show_allnames 0
312
252b5132
RH
313/* ifunc and ihead data structures: ttk@cygnus.com 1997
314
315 When IMPORT declarations are encountered in a .def file the
316 function import information is stored in a structure referenced by
317 the global variable IMPORT_LIST. The structure is a linked list
318 containing the names of the dll files each function is imported
319 from and a linked list of functions being imported from that dll
320 file. This roughly parallels the structure of the .idata section
321 in the PE object file.
322
323 The contents of .def file are interpreted from within the
324 process_def_file function. Every time an IMPORT declaration is
325 encountered, it is broken up into its component parts and passed to
326 def_import. IMPORT_LIST is initialized to NULL in function main. */
327
328typedef struct ifunct
329{
c9e38879 330 char * name; /* Name of function being imported. */
bf201fdd 331 char * its_name; /* Optional import table symbol name. */
c9e38879 332 int ord; /* Two-byte ordinal value associated with function. */
252b5132
RH
333 struct ifunct *next;
334} ifunctype;
335
336typedef struct iheadt
337{
dec87289 338 char * dllname; /* Name of dll file imported from. */
c9e38879
NC
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. */
252b5132
RH
343} iheadtype;
344
345/* Structure containing all import information as defined in .def file
346 (qv "ihead structure"). */
347
348static iheadtype *import_list = NULL;
49e315b1 349static char *as_name = NULL;
252b5132 350static char * as_flags = "";
bf7a6389 351static char *tmp_prefix;
252b5132
RH
352static int no_idata4;
353static int no_idata5;
354static char *exp_name;
355static char *imp_name;
10e636d2 356static char *delayimp_name;
d4732f7c 357static char *identify_imp_name;
71c57c16
NC
358static bfd_boolean identify_strict;
359
25893672
NC
360/* Types used to implement a linked list of dllnames associated
361 with the specified import lib. Used by the identify_* code.
362 The head entry is acts as a sentinal node and is always empty
363 (head->dllname is NULL). */
364typedef struct dll_name_list_node_t
365{
366 char * dllname;
367 struct dll_name_list_node_t * next;
368} dll_name_list_node_type;
dec87289 369
71c57c16
NC
370typedef struct dll_name_list_t
371{
25893672
NC
372 dll_name_list_node_type * head;
373 dll_name_list_node_type * tail;
374} dll_name_list_type;
375
376/* Types used to pass data to iterator functions. */
377typedef struct symname_search_data_t
378{
379 const char * symname;
380 bfd_boolean found;
381} symname_search_data_type;
dec87289 382
25893672
NC
383typedef struct identify_data_t
384{
385 dll_name_list_type * list;
386 bfd_boolean ms_style_implib;
387} identify_data_type;
71c57c16 388
71c57c16 389
252b5132
RH
390static char *head_label;
391static char *imp_name_lab;
392static char *dll_name;
04276a0c 393static int dll_name_set_by_exp_name;
252b5132
RH
394static int add_indirect = 0;
395static int add_underscore = 0;
14288fdc 396static int add_stdcall_underscore = 0;
36d21de5
KT
397/* This variable can hold three different values. The value
398 -1 (default) means that default underscoring should be used,
399 zero means that no underscoring should be done, and one
400 indicates that underscoring should be done. */
401static int leading_underscore = -1;
252b5132
RH
402static int dontdeltemps = 0;
403
b34976b6 404/* TRUE if we should export all symbols. Otherwise, we only export
252b5132 405 symbols listed in .drectve sections or in the def file. */
b34976b6 406static bfd_boolean export_all_symbols;
252b5132 407
b34976b6 408/* TRUE if we should exclude the symbols in DEFAULT_EXCLUDES when
252b5132 409 exporting all symbols. */
b34976b6 410static bfd_boolean do_default_excludes = TRUE;
252b5132 411
e77b97d4
KT
412static bfd_boolean use_nul_prefixed_import_tables = FALSE;
413
252b5132
RH
414/* Default symbols to exclude when exporting all the symbols. */
415static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr";
416
b34976b6 417/* TRUE if we should add __imp_<SYMBOL> to import libraries for backward
5f0f29c3 418 compatibility to old Cygwin releases. */
b34976b6 419static bfd_boolean create_compat_implib;
5f0f29c3 420
2ea2f3c6
KT
421/* TRUE if we have to write PE+ import libraries. */
422static bfd_boolean create_for_pep;
423
252b5132
RH
424static char *def_file;
425
426extern char * program_name;
427
428static int machine;
429static int killat;
430static int add_stdcall_alias;
607dea97 431static const char *ext_prefix_alias;
252b5132
RH
432static int verbose;
433static FILE *output_def;
434static FILE *base_file;
435
7aad4c3d 436#ifdef DLLTOOL_DEFAULT_ARM
252b5132
RH
437static const char *mname = "arm";
438#endif
7aad4c3d
L
439
440#ifdef DLLTOOL_DEFAULT_ARM_EPOC
441static const char *mname = "arm-epoc";
442#endif
443
444#ifdef DLLTOOL_DEFAULT_ARM_WINCE
445static const char *mname = "arm-wince";
a8c548cb 446#endif
252b5132 447
7aad4c3d 448#ifdef DLLTOOL_DEFAULT_I386
252b5132
RH
449static const char *mname = "i386";
450#endif
451
7aad4c3d 452#ifdef DLLTOOL_DEFAULT_MX86_64
99ad8390
NC
453static const char *mname = "i386:x86-64";
454#endif
455
7aad4c3d 456#ifdef DLLTOOL_DEFAULT_PPC
252b5132
RH
457static const char *mname = "ppc";
458#endif
459
7aad4c3d 460#ifdef DLLTOOL_DEFAULT_SH
8a0e0f38
NC
461static const char *mname = "sh";
462#endif
463
7aad4c3d 464#ifdef DLLTOOL_DEFAULT_MIPS
8a0e0f38
NC
465static const char *mname = "mips";
466#endif
467
7aad4c3d 468#ifdef DLLTOOL_DEFAULT_MCORE
7e301c9c 469static const char * mname = "mcore-le";
661016bb
NC
470#endif
471
7aad4c3d 472#ifdef DLLTOOL_DEFAULT_MCORE_ELF
661016bb 473static const char * mname = "mcore-elf";
49e315b1
NC
474static char * mcore_elf_out_file = NULL;
475static char * mcore_elf_linker = NULL;
476static char * mcore_elf_linker_flags = NULL;
477
661016bb
NC
478#define DRECTVE_SECTION_NAME ((machine == MMCORE_ELF || machine == MMCORE_ELF_LE) ? ".exports" : ".drectve")
479#endif
480
481#ifndef DRECTVE_SECTION_NAME
482#define DRECTVE_SECTION_NAME ".drectve"
483#endif
484
0fd555c4
NC
485/* What's the right name for this ? */
486#define PATHMAX 250
487
488/* External name alias numbering starts here. */
489#define PREFIX_ALIAS_BASE 20000
252b5132 490
0e11a9e9
CF
491char *tmp_asm_buf;
492char *tmp_head_s_buf;
493char *tmp_head_o_buf;
494char *tmp_tail_s_buf;
495char *tmp_tail_o_buf;
496char *tmp_stub_buf;
497
bf7a6389
CF
498#define TMP_ASM dlltmp (&tmp_asm_buf, "%sc.s")
499#define TMP_HEAD_S dlltmp (&tmp_head_s_buf, "%sh.s")
500#define TMP_HEAD_O dlltmp (&tmp_head_o_buf, "%sh.o")
501#define TMP_TAIL_S dlltmp (&tmp_tail_s_buf, "%st.s")
502#define TMP_TAIL_O dlltmp (&tmp_tail_o_buf, "%st.o")
503#define TMP_STUB dlltmp (&tmp_stub_buf, "%ss")
252b5132 504
50c2245b 505/* This bit of assembly does jmp * .... */
252b5132
RH
506static const unsigned char i386_jtab[] =
507{
508 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90
509};
510
10e636d2
DK
511static const unsigned char i386_dljtab[] =
512{
513 0xFF, 0x25, 0x00, 0x00, 0x00, 0x00, /* jmp __imp__function */
514 0xB8, 0x00, 0x00, 0x00, 0x00, /* mov eax, offset __imp__function */
515 0xE9, 0x00, 0x00, 0x00, 0x00 /* jmp __tailMerge__dllname */
516};
517
9a30f236
KT
518static const unsigned char i386_x64_dljtab[] =
519{
520 0xFF, 0x25, 0x00, 0x00, 0x00, 0x00, /* jmp __imp__function */
521 0x48, 0x8d, 0x05, /* leaq rax, (__imp__function) */
522 0x00, 0x00, 0x00, 0x00,
523 0xE9, 0x00, 0x00, 0x00, 0x00 /* jmp __tailMerge__dllname */
524};
525
252b5132
RH
526static const unsigned char arm_jtab[] =
527{
b890a735
CM
528 0x00, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
529 0x00, 0xf0, 0x9c, 0xe5, /* ldr pc, [ip] */
530 0, 0, 0, 0
531};
532
533static const unsigned char arm_interwork_jtab[] =
534{
535 0x04, 0xc0, 0x9f, 0xe5, /* ldr ip, [pc] */
536 0x00, 0xc0, 0x9c, 0xe5, /* ldr ip, [ip] */
537 0x1c, 0xff, 0x2f, 0xe1, /* bx ip */
252b5132
RH
538 0, 0, 0, 0
539};
540
541static const unsigned char thumb_jtab[] =
542{
b890a735
CM
543 0x40, 0xb4, /* push {r6} */
544 0x02, 0x4e, /* ldr r6, [pc, #8] */
545 0x36, 0x68, /* ldr r6, [r6] */
546 0xb4, 0x46, /* mov ip, r6 */
547 0x40, 0xbc, /* pop {r6} */
548 0x60, 0x47, /* bx ip */
252b5132
RH
549 0, 0, 0, 0
550};
551
661016bb
NC
552static const unsigned char mcore_be_jtab[] =
553{
ba8c44fc 554 0x71, 0x02, /* lrw r1,2 */
26044998 555 0x81, 0x01, /* ld.w r1,(r1,0) */
ba8c44fc
NC
556 0x00, 0xC1, /* jmp r1 */
557 0x12, 0x00, /* nop */
26044998 558 0x00, 0x00, 0x00, 0x00 /* <address> */
661016bb
NC
559};
560
561static const unsigned char mcore_le_jtab[] =
562{
ba8c44fc 563 0x02, 0x71, /* lrw r1,2 */
26044998 564 0x01, 0x81, /* ld.w r1,(r1,0) */
ba8c44fc
NC
565 0xC1, 0x00, /* jmp r1 */
566 0x00, 0x12, /* nop */
26044998 567 0x00, 0x00, 0x00, 0x00 /* <address> */
661016bb
NC
568};
569
c9e38879
NC
570/* This is the glue sequence for PowerPC PE. There is a
571 tocrel16-tocdefn reloc against the first instruction.
572 We also need a IMGLUE reloc against the glue function
573 to restore the toc saved by the third instruction in
574 the glue. */
252b5132
RH
575static const unsigned char ppc_jtab[] =
576{
577 0x00, 0x00, 0x62, 0x81, /* lwz r11,0(r2) */
578 /* Reloc TOCREL16 __imp_xxx */
579 0x00, 0x00, 0x8B, 0x81, /* lwz r12,0(r11) */
580 0x04, 0x00, 0x41, 0x90, /* stw r2,4(r1) */
581 0xA6, 0x03, 0x89, 0x7D, /* mtctr r12 */
582 0x04, 0x00, 0x4B, 0x80, /* lwz r2,4(r11) */
583 0x20, 0x04, 0x80, 0x4E /* bctr */
584};
585
586#ifdef DLLTOOL_PPC
c9e38879
NC
587/* The glue instruction, picks up the toc from the stw in
588 the above code: "lwz r2,4(r1)". */
252b5132
RH
589static bfd_vma ppc_glue_insn = 0x80410004;
590#endif
591
10e636d2
DK
592static const char i386_trampoline[] =
593 "\tpushl %%ecx\n"
594 "\tpushl %%edx\n"
595 "\tpushl %%eax\n"
596 "\tpushl $__DELAY_IMPORT_DESCRIPTOR_%s\n"
597 "\tcall ___delayLoadHelper2@8\n"
598 "\tpopl %%edx\n"
599 "\tpopl %%ecx\n"
600 "\tjmp *%%eax\n";
601
9a30f236
KT
602static const char i386_x64_trampoline[] =
603 "\tpushq %%rcx\n"
604 "\tpushq %%rdx\n"
605 "\tpushq %%r8\n"
606 "\tpushq %%r9\n"
607 "\tsubq $40, %%rsp\n"
608 "\tmovq %%rax, %%rdx\n"
609 "\tleaq __DELAY_IMPORT_DESCRIPTOR_%s(%%rip), %%rcx\n"
610 "\tcall __delayLoadHelper2\n"
611 "\taddq $40, %%rsp\n"
612 "\tpopq %%r9\n"
613 "\tpopq %%r8\n"
614 "\tpopq %%rdx\n"
615 "\tpopq %%rcx\n"
616 "\tjmp *%%rax\n";
617
252b5132 618struct mac
dec87289
NC
619{
620 const char *type;
621 const char *how_byte;
622 const char *how_short;
623 const char *how_long;
624 const char *how_asciz;
625 const char *how_comment;
626 const char *how_jump;
627 const char *how_global;
628 const char *how_space;
629 const char *how_align_short;
630 const char *how_align_long;
631 const char *how_default_as_switches;
632 const char *how_bfd_target;
633 enum bfd_architecture how_bfd_arch;
634 const unsigned char *how_jtab;
635 int how_jtab_size; /* Size of the jtab entry. */
636 int how_jtab_roff; /* Offset into it for the ind 32 reloc into idata 5. */
637 const unsigned char *how_dljtab;
638 int how_dljtab_size; /* Size of the dljtab entry. */
639 int how_dljtab_roff1; /* Offset for the ind 32 reloc into idata 5. */
640 int how_dljtab_roff2; /* Offset for the ind 32 reloc into idata 5. */
641 int how_dljtab_roff3; /* Offset for the ind 32 reloc into idata 5. */
642 const char *trampoline;
643};
252b5132
RH
644
645static const struct mac
646mtable[] =
647{
648 {
649#define MARM 0
650 "arm", ".byte", ".short", ".long", ".asciz", "@",
651 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
eaeaa15c 652 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
49c24507 653 "pe-arm-little", bfd_arch_arm,
10e636d2
DK
654 arm_jtab, sizeof (arm_jtab), 8,
655 0, 0, 0, 0, 0, 0
252b5132
RH
656 }
657 ,
658 {
659#define M386 1
49c24507
NC
660 "i386", ".byte", ".short", ".long", ".asciz", "#",
661 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
662 "pe-i386",bfd_arch_i386,
10e636d2
DK
663 i386_jtab, sizeof (i386_jtab), 2,
664 i386_dljtab, sizeof (i386_dljtab), 2, 7, 12, i386_trampoline
252b5132
RH
665 }
666 ,
667 {
668#define MPPC 2
49c24507
NC
669 "ppc", ".byte", ".short", ".long", ".asciz", "#",
670 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
671 "pe-powerpcle",bfd_arch_powerpc,
10e636d2
DK
672 ppc_jtab, sizeof (ppc_jtab), 0,
673 0, 0, 0, 0, 0, 0
252b5132
RH
674 }
675 ,
676 {
677#define MTHUMB 3
678 "thumb", ".byte", ".short", ".long", ".asciz", "@",
b890a735 679 "push\t{r6}\n\tldr\tr6, [pc, #8]\n\tldr\tr6, [r6]\n\tmov\tip, r6\n\tpop\t{r6}\n\tbx\tip",
a2186dfe 680 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
49c24507 681 "pe-arm-little", bfd_arch_arm,
10e636d2
DK
682 thumb_jtab, sizeof (thumb_jtab), 12,
683 0, 0, 0, 0, 0, 0
252b5132
RH
684 }
685 ,
b890a735
CM
686#define MARM_INTERWORK 4
687 {
688 "arm_interwork", ".byte", ".short", ".long", ".asciz", "@",
689 "ldr\tip,[pc]\n\tldr\tip,[ip]\n\tbx\tip\n\t.long",
49c24507
NC
690 ".global", ".space", ".align\t2",".align\t4", "-mthumb-interwork",
691 "pe-arm-little", bfd_arch_arm,
10e636d2
DK
692 arm_interwork_jtab, sizeof (arm_interwork_jtab), 12,
693 0, 0, 0, 0, 0, 0
b890a735
CM
694 }
695 ,
661016bb
NC
696 {
697#define MMCORE_BE 5
7e301c9c 698 "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 699 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
700 ".global", ".space", ".align\t2",".align\t4", "",
701 "pe-mcore-big", bfd_arch_mcore,
10e636d2
DK
702 mcore_be_jtab, sizeof (mcore_be_jtab), 8,
703 0, 0, 0, 0, 0, 0
661016bb
NC
704 }
705 ,
706 {
707#define MMCORE_LE 6
708 "mcore-le", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 709 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
710 ".global", ".space", ".align\t2",".align\t4", "-EL",
711 "pe-mcore-little", bfd_arch_mcore,
10e636d2
DK
712 mcore_le_jtab, sizeof (mcore_le_jtab), 8,
713 0, 0, 0, 0, 0, 0
661016bb
NC
714 }
715 ,
716 {
717#define MMCORE_ELF 7
7e301c9c 718 "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 719 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
720 ".global", ".space", ".align\t2",".align\t4", "",
721 "elf32-mcore-big", bfd_arch_mcore,
10e636d2
DK
722 mcore_be_jtab, sizeof (mcore_be_jtab), 8,
723 0, 0, 0, 0, 0, 0
661016bb
NC
724 }
725 ,
726 {
727#define MMCORE_ELF_LE 8
728 "mcore-elf-le", ".byte", ".short", ".long", ".asciz", "//",
ba8c44fc 729 "lrw r1,[1f]\n\tld.w r1,(r1,0)\n\tjmp r1\n\tnop\n1:.long",
49c24507
NC
730 ".global", ".space", ".align\t2",".align\t4", "-EL",
731 "elf32-mcore-little", bfd_arch_mcore,
10e636d2
DK
732 mcore_le_jtab, sizeof (mcore_le_jtab), 8,
733 0, 0, 0, 0, 0, 0
661016bb
NC
734 }
735 ,
a2186dfe
NC
736 {
737#define MARM_EPOC 9
a8c548cb 738 "arm-epoc", ".byte", ".short", ".long", ".asciz", "@",
a2186dfe
NC
739 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
740 ".global", ".space", ".align\t2",".align\t4", "",
741 "epoc-pe-arm-little", bfd_arch_arm,
10e636d2
DK
742 arm_jtab, sizeof (arm_jtab), 8,
743 0, 0, 0, 0, 0, 0
a2186dfe
NC
744 }
745 ,
7148cc28
NC
746 {
747#define MARM_WINCE 10
748 "arm-wince", ".byte", ".short", ".long", ".asciz", "@",
749 "ldr\tip,[pc]\n\tldr\tpc,[ip]\n\t.long",
750 ".global", ".space", ".align\t2",".align\t4", "-mapcs-32",
751 "pe-arm-wince-little", bfd_arch_arm,
10e636d2
DK
752 arm_jtab, sizeof (arm_jtab), 8,
753 0, 0, 0, 0, 0, 0
7148cc28
NC
754 }
755 ,
99ad8390
NC
756 {
757#define MX86 11
758 "i386:x86-64", ".byte", ".short", ".long", ".asciz", "#",
759 "jmp *", ".global", ".space", ".align\t2",".align\t4", "",
760 "pe-x86-64",bfd_arch_i386,
10e636d2 761 i386_jtab, sizeof (i386_jtab), 2,
9a30f236 762 i386_x64_dljtab, sizeof (i386_x64_dljtab), 2, 9, 14, i386_x64_trampoline
99ad8390
NC
763 }
764 ,
10e636d2 765 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
252b5132
RH
766};
767
768typedef struct dlist
769{
770 char *text;
771 struct dlist *next;
772}
773dlist_type;
774
775typedef struct export
dec87289
NC
776{
777 const char *name;
778 const char *internal_name;
779 const char *import_name;
bf201fdd 780 const char *its_name;
dec87289
NC
781 int ordinal;
782 int constant;
783 int noname; /* Don't put name in image file. */
784 int private; /* Don't put reference in import lib. */
785 int data;
786 int hint;
787 int forward; /* Number of forward label, 0 means no forward. */
788 struct export *next;
789}
252b5132
RH
790export_type;
791
792/* A list of symbols which we should not export. */
26044998 793
252b5132
RH
794struct string_list
795{
796 struct string_list *next;
797 char *string;
798};
799
800static struct string_list *excludes;
801
2da42df6
AJ
802static const char *rvaafter (int);
803static const char *rvabefore (int);
2758961a 804static const char *asm_prefix (int, const char *);
2da42df6
AJ
805static void process_def_file (const char *);
806static void new_directive (char *);
bf201fdd 807static void append_import (const char *, const char *, int, const char *);
2da42df6
AJ
808static void run (const char *, char *);
809static void scan_drectve_symbols (bfd *);
810static void scan_filtered_symbols (bfd *, void *, long, unsigned int);
811static void add_excludes (const char *);
812static bfd_boolean match_exclude (const char *);
813static void set_default_excludes (void);
814static long filter_symbols (bfd *, void *, long, unsigned int);
815static void scan_all_symbols (bfd *);
816static void scan_open_obj_file (bfd *);
817static void scan_obj_file (const char *);
818static void dump_def_info (FILE *);
819static int sfunc (const void *, const void *);
d078078d 820static void flush_page (FILE *, bfd_vma *, bfd_vma, int);
2da42df6
AJ
821static void gen_def_file (void);
822static void generate_idata_ofile (FILE *);
823static void assemble_file (const char *, const char *);
824static void gen_exp_file (void);
825static const char *xlate (const char *);
2da42df6
AJ
826static char *make_label (const char *, const char *);
827static char *make_imp_label (const char *, const char *);
10e636d2 828static bfd *make_one_lib_file (export_type *, int, int);
2da42df6
AJ
829static bfd *make_head (void);
830static bfd *make_tail (void);
10e636d2
DK
831static bfd *make_delay_head (void);
832static void gen_lib_file (int);
25893672
NC
833static void dll_name_list_append (dll_name_list_type *, bfd_byte *);
834static int dll_name_list_count (dll_name_list_type *);
835static void dll_name_list_print (dll_name_list_type *);
836static void dll_name_list_free_contents (dll_name_list_node_type *);
837static void dll_name_list_free (dll_name_list_type *);
838static dll_name_list_type * dll_name_list_create (void);
d4732f7c 839static void identify_dll_for_implib (void);
71c57c16
NC
840static void identify_search_archive
841 (bfd *, void (*) (bfd *, bfd *, void *), void *);
842static void identify_search_member (bfd *, bfd *, void *);
25893672 843static bfd_boolean identify_process_section_p (asection *, bfd_boolean);
d4732f7c 844static void identify_search_section (bfd *, asection *, void *);
71c57c16
NC
845static void identify_member_contains_symname (bfd *, bfd *, void *);
846
2da42df6
AJ
847static int pfunc (const void *, const void *);
848static int nfunc (const void *, const void *);
849static void remove_null_names (export_type **);
2da42df6
AJ
850static void process_duplicates (export_type **);
851static void fill_ordinals (export_type **);
2da42df6
AJ
852static void mangle_defs (void);
853static void usage (FILE *, int);
0fd3a477 854static void inform (const char *, ...) ATTRIBUTE_PRINTF_1;
2fe50fe3 855static void set_dll_name_from_def (const char *name, char is_dll);
252b5132 856
0e11a9e9 857static char *
739fea7b 858prefix_encode (char *start, unsigned code)
bf7a6389 859{
ff6b6222 860 static char alpha[26] = "abcdefghijklmnopqrstuvwxyz";
bf7a6389
CF
861 static char buf[32];
862 char *p;
739fea7b 863 strcpy (buf, start);
bf7a6389
CF
864 p = strchr (buf, '\0');
865 do
866 *p++ = alpha[code % sizeof (alpha)];
867 while ((code /= sizeof (alpha)) != 0);
868 *p = '\0';
0e11a9e9
CF
869 return buf;
870}
252b5132 871
bf7a6389 872static char *
739fea7b 873dlltmp (char **buf, const char *fmt)
bf7a6389
CF
874{
875 if (!*buf)
876 {
739fea7b 877 *buf = malloc (strlen (tmp_prefix) + 64);
bf7a6389
CF
878 sprintf (*buf, fmt, tmp_prefix);
879 }
880 return *buf;
881}
882
252b5132 883static void
1651e569 884inform (const char * message, ...)
252b5132 885{
1651e569
TT
886 va_list args;
887
888 va_start (args, message);
e80ff7de 889
252b5132
RH
890 if (!verbose)
891 return;
892
37cc8ec1 893 report (message, args);
e80ff7de 894
1651e569 895 va_end (args);
252b5132
RH
896}
897
252b5132 898static const char *
91d6fa6a 899rvaafter (int mach)
252b5132 900{
91d6fa6a 901 switch (mach)
252b5132
RH
902 {
903 case MARM:
904 case M386:
99ad8390 905 case MX86:
252b5132
RH
906 case MPPC:
907 case MTHUMB:
b890a735 908 case MARM_INTERWORK:
661016bb
NC
909 case MMCORE_BE:
910 case MMCORE_LE:
911 case MMCORE_ELF:
912 case MMCORE_ELF_LE:
a8c548cb 913 case MARM_EPOC:
7148cc28 914 case MARM_WINCE:
252b5132
RH
915 break;
916 default:
917 /* xgettext:c-format */
91d6fa6a 918 fatal (_("Internal error: Unknown machine type: %d"), mach);
252b5132
RH
919 break;
920 }
921 return "";
922}
923
924static const char *
91d6fa6a 925rvabefore (int mach)
252b5132 926{
91d6fa6a 927 switch (mach)
252b5132
RH
928 {
929 case MARM:
930 case M386:
99ad8390 931 case MX86:
252b5132
RH
932 case MPPC:
933 case MTHUMB:
b890a735 934 case MARM_INTERWORK:
661016bb
NC
935 case MMCORE_BE:
936 case MMCORE_LE:
937 case MMCORE_ELF:
938 case MMCORE_ELF_LE:
a8c548cb 939 case MARM_EPOC:
7148cc28 940 case MARM_WINCE:
252b5132
RH
941 return ".rva\t";
942 default:
943 /* xgettext:c-format */
91d6fa6a 944 fatal (_("Internal error: Unknown machine type: %d"), mach);
252b5132
RH
945 break;
946 }
947 return "";
948}
949
950static const char *
91d6fa6a 951asm_prefix (int mach, const char *name)
252b5132 952{
91d6fa6a 953 switch (mach)
252b5132
RH
954 {
955 case MARM:
956 case MPPC:
957 case MTHUMB:
b890a735 958 case MARM_INTERWORK:
661016bb
NC
959 case MMCORE_BE:
960 case MMCORE_LE:
961 case MMCORE_ELF:
962 case MMCORE_ELF_LE:
a8c548cb 963 case MARM_EPOC:
7148cc28 964 case MARM_WINCE:
252b5132
RH
965 break;
966 case M386:
99ad8390 967 case MX86:
2758961a 968 /* Symbol names starting with ? do not have a leading underscore. */
36d21de5 969 if ((name && *name == '?') || leading_underscore == 0)
2758961a
NC
970 break;
971 else
972 return "_";
252b5132
RH
973 default:
974 /* xgettext:c-format */
91d6fa6a 975 fatal (_("Internal error: Unknown machine type: %d"), mach);
252b5132
RH
976 break;
977 }
978 return "";
979}
980
2758961a
NC
981#define ASM_BYTE mtable[machine].how_byte
982#define ASM_SHORT mtable[machine].how_short
983#define ASM_LONG mtable[machine].how_long
984#define ASM_TEXT mtable[machine].how_asciz
985#define ASM_C mtable[machine].how_comment
986#define ASM_JUMP mtable[machine].how_jump
987#define ASM_GLOBAL mtable[machine].how_global
988#define ASM_SPACE mtable[machine].how_space
989#define ASM_ALIGN_SHORT mtable[machine].how_align_short
990#define ASM_RVA_BEFORE rvabefore (machine)
991#define ASM_RVA_AFTER rvaafter (machine)
992#define ASM_PREFIX(NAME) asm_prefix (machine, (NAME))
993#define ASM_ALIGN_LONG mtable[machine].how_align_long
994#define HOW_BFD_READ_TARGET 0 /* Always default. */
995#define HOW_BFD_WRITE_TARGET mtable[machine].how_bfd_target
996#define HOW_BFD_ARCH mtable[machine].how_bfd_arch
10e636d2
DK
997#define HOW_JTAB (delay ? mtable[machine].how_dljtab \
998 : mtable[machine].how_jtab)
999#define HOW_JTAB_SIZE (delay ? mtable[machine].how_dljtab_size \
1000 : mtable[machine].how_jtab_size)
1001#define HOW_JTAB_ROFF (delay ? mtable[machine].how_dljtab_roff1 \
1002 : mtable[machine].how_jtab_roff)
1003#define HOW_JTAB_ROFF2 (delay ? mtable[machine].how_dljtab_roff2 : 0)
1004#define HOW_JTAB_ROFF3 (delay ? mtable[machine].how_dljtab_roff3 : 0)
2758961a 1005#define ASM_SWITCHES mtable[machine].how_default_as_switches
49c24507 1006
252b5132
RH
1007static char **oav;
1008
e80ff7de 1009static void
2da42df6 1010process_def_file (const char *name)
252b5132
RH
1011{
1012 FILE *f = fopen (name, FOPEN_RT);
26044998 1013
252b5132
RH
1014 if (!f)
1015 /* xgettext:c-format */
1016 fatal (_("Can't open def file: %s"), name);
1017
1018 yyin = f;
1019
1020 /* xgettext:c-format */
1021 inform (_("Processing def file: %s"), name);
26044998 1022
252b5132
RH
1023 yyparse ();
1024
1025 inform (_("Processed def file"));
1026}
1027
1028/**********************************************************************/
1029
c9e38879 1030/* Communications with the parser. */
252b5132 1031
c9e38879
NC
1032static int d_nfuncs; /* Number of functions exported. */
1033static int d_named_nfuncs; /* Number of named functions exported. */
1034static int d_low_ord; /* Lowest ordinal index. */
1035static int d_high_ord; /* Highest ordinal index. */
1036static export_type *d_exports; /* List of exported functions. */
1037static export_type **d_exports_lexically; /* Vector of exported functions in alpha order. */
1038static dlist_type *d_list; /* Descriptions. */
1039static dlist_type *a_list; /* Stuff to go in directives. */
1040static int d_nforwards = 0; /* Number of forwarded exports. */
252b5132
RH
1041
1042static int d_is_dll;
1043static int d_is_exe;
1044
1045int
2da42df6 1046yyerror (const char * err ATTRIBUTE_UNUSED)
252b5132
RH
1047{
1048 /* xgettext:c-format */
37cc8ec1 1049 non_fatal (_("Syntax error in def file %s:%d"), def_file, linenumber);
26044998 1050
252b5132
RH
1051 return 0;
1052}
1053
1054void
2da42df6 1055def_exports (const char *name, const char *internal_name, int ordinal,
bf201fdd
KT
1056 int noname, int constant, int data, int private,
1057 const char *its_name)
252b5132
RH
1058{
1059 struct export *p = (struct export *) xmalloc (sizeof (*p));
1060
1061 p->name = name;
1062 p->internal_name = internal_name ? internal_name : name;
bf201fdd 1063 p->its_name = its_name;
0fd555c4 1064 p->import_name = name;
252b5132
RH
1065 p->ordinal = ordinal;
1066 p->constant = constant;
1067 p->noname = noname;
7aa52b1f 1068 p->private = private;
252b5132
RH
1069 p->data = data;
1070 p->next = d_exports;
1071 d_exports = p;
1072 d_nfuncs++;
26044998
KH
1073
1074 if ((internal_name != NULL)
04847a4d
CF
1075 && (strchr (internal_name, '.') != NULL))
1076 p->forward = ++d_nforwards;
1077 else
1078 p->forward = 0; /* no forward */
252b5132
RH
1079}
1080
a0ce7f12 1081static void
2fe50fe3 1082set_dll_name_from_def (const char *name, char is_dll)
a0ce7f12 1083{
2fe50fe3 1084 const char *image_basename = lbasename (name);
a0ce7f12
DS
1085 if (image_basename != name)
1086 non_fatal (_("%s: Path components stripped from image name, '%s'."),
1087 def_file, name);
2fe50fe3
DK
1088 /* Append the default suffix, if none specified. */
1089 if (strchr (image_basename, '.') == 0)
1090 {
1091 const char * suffix = is_dll ? ".dll" : ".exe";
1092
1093 dll_name = xmalloc (strlen (image_basename) + strlen (suffix) + 1);
1094 sprintf (dll_name, "%s%s", image_basename, suffix);
1095 }
1096 else
1097 dll_name = xstrdup (image_basename);
a0ce7f12
DS
1098}
1099
252b5132 1100void
2da42df6 1101def_name (const char *name, int base)
252b5132
RH
1102{
1103 /* xgettext:c-format */
1104 inform (_("NAME: %s base: %x"), name, base);
26044998 1105
252b5132 1106 if (d_is_dll)
37cc8ec1 1107 non_fatal (_("Can't have LIBRARY and NAME"));
26044998 1108
04276a0c
KT
1109 if (dll_name_set_by_exp_name && name && *name != 0)
1110 {
1111 dll_name = NULL;
1112 dll_name_set_by_exp_name = 0;
1113 }
c9e38879
NC
1114 /* If --dllname not provided, use the one in the DEF file.
1115 FIXME: Is this appropriate for executables? */
2fe50fe3
DK
1116 if (!dll_name)
1117 set_dll_name_from_def (name, 0);
252b5132
RH
1118 d_is_exe = 1;
1119}
1120
1121void
2da42df6 1122def_library (const char *name, int base)
252b5132
RH
1123{
1124 /* xgettext:c-format */
1125 inform (_("LIBRARY: %s base: %x"), name, base);
26044998 1126
252b5132 1127 if (d_is_exe)
37cc8ec1 1128 non_fatal (_("Can't have LIBRARY and NAME"));
26044998 1129
04276a0c
KT
1130 if (dll_name_set_by_exp_name && name && *name != 0)
1131 {
1132 dll_name = NULL;
1133 dll_name_set_by_exp_name = 0;
1134 }
1135
c9e38879 1136 /* If --dllname not provided, use the one in the DEF file. */
2fe50fe3
DK
1137 if (!dll_name)
1138 set_dll_name_from_def (name, 1);
252b5132
RH
1139 d_is_dll = 1;
1140}
1141
1142void
2da42df6 1143def_description (const char *desc)
252b5132
RH
1144{
1145 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
1146 d->text = xstrdup (desc);
1147 d->next = d_list;
1148 d_list = d;
1149}
1150
e80ff7de 1151static void
2da42df6 1152new_directive (char *dir)
252b5132
RH
1153{
1154 dlist_type *d = (dlist_type *) xmalloc (sizeof (dlist_type));
1155 d->text = xstrdup (dir);
1156 d->next = a_list;
1157 a_list = d;
1158}
1159
1160void
2da42df6 1161def_heapsize (int reserve, int commit)
252b5132
RH
1162{
1163 char b[200];
1164 if (commit > 0)
1165 sprintf (b, "-heap 0x%x,0x%x ", reserve, commit);
1166 else
1167 sprintf (b, "-heap 0x%x ", reserve);
1168 new_directive (xstrdup (b));
1169}
1170
1171void
2da42df6 1172def_stacksize (int reserve, int commit)
252b5132
RH
1173{
1174 char b[200];
1175 if (commit > 0)
1176 sprintf (b, "-stack 0x%x,0x%x ", reserve, commit);
1177 else
1178 sprintf (b, "-stack 0x%x ", reserve);
1179 new_directive (xstrdup (b));
1180}
1181
1182/* append_import simply adds the given import definition to the global
1183 import_list. It is used by def_import. */
1184
1185static void
91d6fa6a 1186append_import (const char *symbol_name, const char *dllname, int func_ordinal,
bf201fdd 1187 const char *its_name)
252b5132
RH
1188{
1189 iheadtype **pq;
1190 iheadtype *q;
1191
1192 for (pq = &import_list; *pq != NULL; pq = &(*pq)->next)
1193 {
91d6fa6a 1194 if (strcmp ((*pq)->dllname, dllname) == 0)
252b5132
RH
1195 {
1196 q = *pq;
1197 q->functail->next = xmalloc (sizeof (ifunctype));
1198 q->functail = q->functail->next;
1199 q->functail->ord = func_ordinal;
1200 q->functail->name = xstrdup (symbol_name);
bf201fdd 1201 q->functail->its_name = (its_name ? xstrdup (its_name) : NULL);
252b5132
RH
1202 q->functail->next = NULL;
1203 q->nfuncs++;
1204 return;
1205 }
1206 }
1207
1208 q = xmalloc (sizeof (iheadtype));
91d6fa6a 1209 q->dllname = xstrdup (dllname);
252b5132
RH
1210 q->nfuncs = 1;
1211 q->funchead = xmalloc (sizeof (ifunctype));
1212 q->functail = q->funchead;
1213 q->next = NULL;
1214 q->functail->name = xstrdup (symbol_name);
bf201fdd 1215 q->functail->its_name = (its_name ? xstrdup (its_name) : NULL);
252b5132
RH
1216 q->functail->ord = func_ordinal;
1217 q->functail->next = NULL;
1218
1219 *pq = q;
1220}
1221
1222/* def_import is called from within defparse.y when an IMPORT
1223 declaration is encountered. Depending on the form of the
1224 declaration, the module name may or may not need ".dll" to be
1225 appended to it, the name of the function may be stored in internal
1226 or entry, and there may or may not be an ordinal value associated
1227 with it. */
1228
1229/* A note regarding the parse modes:
1230 In defparse.y we have to accept import declarations which follow
1231 any one of the following forms:
1232 <func_name_in_app> = <dll_name>.<func_name_in_dll>
1233 <func_name_in_app> = <dll_name>.<number>
1234 <dll_name>.<func_name_in_dll>
1235 <dll_name>.<number>
1236 Furthermore, the dll's name may or may not end with ".dll", which
1237 complicates the parsing a little. Normally the dll's name is
1238 passed to def_import() in the "module" parameter, but when it ends
1239 with ".dll" it gets passed in "module" sans ".dll" and that needs
1240 to be reappended.
1241
1242 def_import gets five parameters:
1243 APP_NAME - the name of the function in the application, if
1244 present, or NULL if not present.
1245 MODULE - the name of the dll, possibly sans extension (ie, '.dll').
1246 DLLEXT - the extension of the dll, if present, NULL if not present.
1247 ENTRY - the name of the function in the dll, if present, or NULL.
1248 ORD_VAL - the numerical tag of the function in the dll, if present,
1249 or NULL. Exactly one of <entry> or <ord_val> must be
1250 present (i.e., not NULL). */
1251
1252void
2da42df6 1253def_import (const char *app_name, const char *module, const char *dllext,
bf201fdd 1254 const char *entry, int ord_val, const char *its_name)
252b5132
RH
1255{
1256 const char *application_name;
1257 char *buf;
1258
1259 if (entry != NULL)
1260 application_name = entry;
1261 else
1262 {
1263 if (app_name != NULL)
1264 application_name = app_name;
1265 else
1266 application_name = "";
1267 }
26044998 1268
252b5132
RH
1269 if (dllext != NULL)
1270 {
1271 buf = (char *) alloca (strlen (module) + strlen (dllext) + 2);
1272 sprintf (buf, "%s.%s", module, dllext);
1273 module = buf;
1274 }
1275
bf201fdd 1276 append_import (application_name, module, ord_val, its_name);
252b5132
RH
1277}
1278
1279void
2da42df6 1280def_version (int major, int minor)
252b5132 1281{
9cf03b7e 1282 printf (_("VERSION %d.%d\n"), major, minor);
252b5132
RH
1283}
1284
1285void
2da42df6 1286def_section (const char *name, int attr)
252b5132
RH
1287{
1288 char buf[200];
1289 char atts[5];
1290 char *d = atts;
1291 if (attr & 1)
1292 *d++ = 'R';
1293
1294 if (attr & 2)
1295 *d++ = 'W';
1296 if (attr & 4)
1297 *d++ = 'X';
1298 if (attr & 8)
1299 *d++ = 'S';
1300 *d++ = 0;
1301 sprintf (buf, "-attr %s %s", name, atts);
1302 new_directive (xstrdup (buf));
1303}
1304
1305void
2da42df6 1306def_code (int attr)
252b5132
RH
1307{
1308
1309 def_section ("CODE", attr);
1310}
1311
1312void
2da42df6 1313def_data (int attr)
252b5132
RH
1314{
1315 def_section ("DATA", attr);
1316}
1317
1318/**********************************************************************/
1319
1320static void
2da42df6 1321run (const char *what, char *args)
252b5132
RH
1322{
1323 char *s;
1324 int pid, wait_status;
1325 int i;
1326 const char **argv;
1327 char *errmsg_fmt, *errmsg_arg;
1328 char *temp_base = choose_temp_base ();
1329
9cf03b7e 1330 inform (_("run: %s %s"), what, args);
252b5132
RH
1331
1332 /* Count the args */
1333 i = 0;
1334 for (s = args; *s; s++)
1335 if (*s == ' ')
1336 i++;
1337 i++;
1338 argv = alloca (sizeof (char *) * (i + 3));
1339 i = 0;
1340 argv[i++] = what;
1341 s = args;
1342 while (1)
1343 {
1344 while (*s == ' ')
1345 ++s;
1346 argv[i++] = s;
1347 while (*s != ' ' && *s != 0)
1348 s++;
1349 if (*s == 0)
1350 break;
1351 *s++ = 0;
1352 }
1353 argv[i++] = NULL;
1354
1355 pid = pexecute (argv[0], (char * const *) argv, program_name, temp_base,
1356 &errmsg_fmt, &errmsg_arg, PEXECUTE_ONE | PEXECUTE_SEARCH);
1357
1358 if (pid == -1)
1359 {
20359e08 1360 inform ("%s", strerror (errno));
26044998 1361
252b5132
RH
1362 fatal (errmsg_fmt, errmsg_arg);
1363 }
1364
1365 pid = pwait (pid, & wait_status, 0);
26044998 1366
252b5132
RH
1367 if (pid == -1)
1368 {
1369 /* xgettext:c-format */
1370 fatal (_("wait: %s"), strerror (errno));
1371 }
1372 else if (WIFSIGNALED (wait_status))
1373 {
1374 /* xgettext:c-format */
1375 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
1376 }
1377 else if (WIFEXITED (wait_status))
1378 {
1379 if (WEXITSTATUS (wait_status) != 0)
1380 /* xgettext:c-format */
37cc8ec1
AM
1381 non_fatal (_("%s exited with status %d"),
1382 what, WEXITSTATUS (wait_status));
252b5132
RH
1383 }
1384 else
1385 abort ();
1386}
1387
1388/* Look for a list of symbols to export in the .drectve section of
1389 ABFD. Pass each one to def_exports. */
1390
1391static void
2da42df6 1392scan_drectve_symbols (bfd *abfd)
252b5132
RH
1393{
1394 asection * s;
1395 int size;
1396 char * buf;
1397 char * p;
1398 char * e;
661016bb 1399
252b5132 1400 /* Look for .drectve's */
661016bb 1401 s = bfd_get_section_by_name (abfd, DRECTVE_SECTION_NAME);
26044998 1402
252b5132
RH
1403 if (s == NULL)
1404 return;
26044998 1405
135dfb4a 1406 size = bfd_get_section_size (s);
252b5132
RH
1407 buf = xmalloc (size);
1408
1409 bfd_get_section_contents (abfd, s, buf, 0, size);
26044998 1410
252b5132 1411 /* xgettext:c-format */
37cc8ec1 1412 inform (_("Sucking in info from %s section in %s"),
661016bb 1413 DRECTVE_SECTION_NAME, bfd_get_filename (abfd));
252b5132 1414
ce195b42
DD
1415 /* Search for -export: strings. The exported symbols can optionally
1416 have type tags (eg., -export:foo,data), so handle those as well.
5f0f29c3 1417 Currently only data tag is supported. */
252b5132
RH
1418 p = buf;
1419 e = buf + size;
1420 while (p < e)
1421 {
1422 if (p[0] == '-'
0112cd26 1423 && CONST_STRNEQ (p, "-export:"))
252b5132
RH
1424 {
1425 char * name;
1426 char * c;
ce195b42 1427 flagword flags = BSF_FUNCTION;
26044998 1428
252b5132 1429 p += 8;
290c52bd
KT
1430 /* Do we have a quoted export? */
1431 if (*p == '"')
1432 {
1433 p++;
1434 name = p;
1435 while (p < e && *p != '"')
1436 ++p;
1437 }
1438 else
1439 {
1440 name = p;
1441 while (p < e && *p != ',' && *p != ' ' && *p != '-')
1442 p++;
1443 }
252b5132
RH
1444 c = xmalloc (p - name + 1);
1445 memcpy (c, name, p - name);
1446 c[p - name] = 0;
290c52bd
KT
1447 /* Advance over trailing quote. */
1448 if (p < e && *p == '"')
1449 ++p;
26044998 1450 if (p < e && *p == ',') /* found type tag. */
ce195b42
DD
1451 {
1452 char *tag_start = ++p;
1453 while (p < e && *p != ' ' && *p != '-')
1454 p++;
0112cd26 1455 if (CONST_STRNEQ (tag_start, "data"))
ce195b42
DD
1456 flags &= ~BSF_FUNCTION;
1457 }
1458
252b5132
RH
1459 /* FIXME: The 5th arg is for the `constant' field.
1460 What should it be? Not that it matters since it's not
1461 currently useful. */
bf201fdd 1462 def_exports (c, 0, -1, 0, 0, ! (flags & BSF_FUNCTION), 0, NULL);
252b5132
RH
1463
1464 if (add_stdcall_alias && strchr (c, '@'))
1465 {
b34976b6 1466 int lead_at = (*c == '@') ;
c9e38879 1467 char *exported_name = xstrdup (c + lead_at);
252b5132
RH
1468 char *atsym = strchr (exported_name, '@');
1469 *atsym = '\0';
5f0f29c3 1470 /* Note: stdcall alias symbols can never be data. */
bf201fdd 1471 def_exports (exported_name, xstrdup (c), -1, 0, 0, 0, 0, NULL);
252b5132
RH
1472 }
1473 }
1474 else
1475 p++;
1476 }
1477 free (buf);
1478}
1479
1480/* Look through the symbols in MINISYMS, and add each one to list of
1481 symbols to export. */
1482
1483static void
2da42df6
AJ
1484scan_filtered_symbols (bfd *abfd, void *minisyms, long symcount,
1485 unsigned int size)
252b5132
RH
1486{
1487 asymbol *store;
1488 bfd_byte *from, *fromend;
1489
1490 store = bfd_make_empty_symbol (abfd);
1491 if (store == NULL)
1492 bfd_fatal (bfd_get_filename (abfd));
1493
1494 from = (bfd_byte *) minisyms;
1495 fromend = from + symcount * size;
1496 for (; from < fromend; from += size)
1497 {
1498 asymbol *sym;
1499 const char *symbol_name;
1500
b34976b6 1501 sym = bfd_minisymbol_to_symbol (abfd, FALSE, from, store);
252b5132
RH
1502 if (sym == NULL)
1503 bfd_fatal (bfd_get_filename (abfd));
1504
1505 symbol_name = bfd_asymbol_name (sym);
1506 if (bfd_get_symbol_leading_char (abfd) == symbol_name[0])
1507 ++symbol_name;
1508
ce195b42 1509 def_exports (xstrdup (symbol_name) , 0, -1, 0, 0,
bf201fdd 1510 ! (sym->flags & BSF_FUNCTION), 0, NULL);
252b5132
RH
1511
1512 if (add_stdcall_alias && strchr (symbol_name, '@'))
1513 {
c9e38879
NC
1514 int lead_at = (*symbol_name == '@');
1515 char *exported_name = xstrdup (symbol_name + lead_at);
252b5132
RH
1516 char *atsym = strchr (exported_name, '@');
1517 *atsym = '\0';
26044998 1518 /* Note: stdcall alias symbols can never be data. */
bf201fdd 1519 def_exports (exported_name, xstrdup (symbol_name), -1, 0, 0, 0, 0, NULL);
252b5132
RH
1520 }
1521 }
1522}
1523
1524/* Add a list of symbols to exclude. */
1525
1526static void
2da42df6 1527add_excludes (const char *new_excludes)
252b5132
RH
1528{
1529 char *local_copy;
1530 char *exclude_string;
1531
1532 local_copy = xstrdup (new_excludes);
1533
1534 exclude_string = strtok (local_copy, ",:");
1535 for (; exclude_string; exclude_string = strtok (NULL, ",:"))
1536 {
1537 struct string_list *new_exclude;
26044998 1538
252b5132
RH
1539 new_exclude = ((struct string_list *)
1540 xmalloc (sizeof (struct string_list)));
1541 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2);
c9e38879
NC
1542 /* Don't add a leading underscore for fastcall symbols. */
1543 if (*exclude_string == '@')
1544 sprintf (new_exclude->string, "%s", exclude_string);
1545 else
36d21de5
KT
1546 sprintf (new_exclude->string, "%s%s", (!leading_underscore ? "" : "_"),
1547 exclude_string);
252b5132
RH
1548 new_exclude->next = excludes;
1549 excludes = new_exclude;
1550
1551 /* xgettext:c-format */
37cc8ec1 1552 inform (_("Excluding symbol: %s"), exclude_string);
252b5132
RH
1553 }
1554
1555 free (local_copy);
1556}
1557
1558/* See if STRING is on the list of symbols to exclude. */
1559
b34976b6 1560static bfd_boolean
2da42df6 1561match_exclude (const char *string)
252b5132
RH
1562{
1563 struct string_list *excl_item;
1564
1565 for (excl_item = excludes; excl_item; excl_item = excl_item->next)
1566 if (strcmp (string, excl_item->string) == 0)
b34976b6
AM
1567 return TRUE;
1568 return FALSE;
252b5132
RH
1569}
1570
1571/* Add the default list of symbols to exclude. */
1572
1573static void
1574set_default_excludes (void)
1575{
1576 add_excludes (default_excludes);
1577}
1578
1579/* Choose which symbols to export. */
1580
1581static long
2da42df6 1582filter_symbols (bfd *abfd, void *minisyms, long symcount, unsigned int size)
252b5132
RH
1583{
1584 bfd_byte *from, *fromend, *to;
1585 asymbol *store;
1586
1587 store = bfd_make_empty_symbol (abfd);
1588 if (store == NULL)
1589 bfd_fatal (bfd_get_filename (abfd));
1590
1591 from = (bfd_byte *) minisyms;
1592 fromend = from + symcount * size;
1593 to = (bfd_byte *) minisyms;
1594
1595 for (; from < fromend; from += size)
1596 {
1597 int keep = 0;
1598 asymbol *sym;
1599
2da42df6 1600 sym = bfd_minisymbol_to_symbol (abfd, FALSE, (const void *) from, store);
252b5132
RH
1601 if (sym == NULL)
1602 bfd_fatal (bfd_get_filename (abfd));
1603
1604 /* Check for external and defined only symbols. */
1605 keep = (((sym->flags & BSF_GLOBAL) != 0
1606 || (sym->flags & BSF_WEAK) != 0
1607 || bfd_is_com_section (sym->section))
1608 && ! bfd_is_und_section (sym->section));
26044998 1609
252b5132
RH
1610 keep = keep && ! match_exclude (sym->name);
1611
1612 if (keep)
1613 {
1614 memcpy (to, from, size);
1615 to += size;
1616 }
1617 }
1618
1619 return (to - (bfd_byte *) minisyms) / size;
1620}
1621
1622/* Export all symbols in ABFD, except for ones we were told not to
1623 export. */
1624
1625static void
2da42df6 1626scan_all_symbols (bfd *abfd)
252b5132
RH
1627{
1628 long symcount;
2da42df6 1629 void *minisyms;
252b5132
RH
1630 unsigned int size;
1631
1632 /* Ignore bfds with an import descriptor table. We assume that any
1633 such BFD contains symbols which are exported from another DLL,
1634 and we don't want to reexport them from here. */
1635 if (bfd_get_section_by_name (abfd, ".idata$4"))
1636 return;
1637
1638 if (! (bfd_get_file_flags (abfd) & HAS_SYMS))
1639 {
1640 /* xgettext:c-format */
37cc8ec1 1641 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
252b5132
RH
1642 return;
1643 }
1644
b34976b6 1645 symcount = bfd_read_minisymbols (abfd, FALSE, &minisyms, &size);
252b5132
RH
1646 if (symcount < 0)
1647 bfd_fatal (bfd_get_filename (abfd));
1648
1649 if (symcount == 0)
1650 {
1651 /* xgettext:c-format */
37cc8ec1 1652 non_fatal (_("%s: no symbols"), bfd_get_filename (abfd));
252b5132
RH
1653 return;
1654 }
1655
1656 /* Discard the symbols we don't want to export. It's OK to do this
1657 in place; we'll free the storage anyway. */
1658
1659 symcount = filter_symbols (abfd, minisyms, symcount, size);
1660 scan_filtered_symbols (abfd, minisyms, symcount, size);
1661
1662 free (minisyms);
1663}
1664
1665/* Look at the object file to decide which symbols to export. */
1666
1667static void
2da42df6 1668scan_open_obj_file (bfd *abfd)
252b5132
RH
1669{
1670 if (export_all_symbols)
1671 scan_all_symbols (abfd);
1672 else
1673 scan_drectve_symbols (abfd);
26044998 1674
c9e38879 1675 /* FIXME: we ought to read in and block out the base relocations. */
252b5132
RH
1676
1677 /* xgettext:c-format */
37cc8ec1 1678 inform (_("Done reading %s"), bfd_get_filename (abfd));
252b5132
RH
1679}
1680
1681static void
2da42df6 1682scan_obj_file (const char *filename)
252b5132
RH
1683{
1684 bfd * f = bfd_openr (filename, 0);
1685
1686 if (!f)
1687 /* xgettext:c-format */
dec87289 1688 fatal (_("Unable to open object file: %s: %s"), filename, bfd_get_errmsg ());
252b5132
RH
1689
1690 /* xgettext:c-format */
1691 inform (_("Scanning object file %s"), filename);
26044998 1692
252b5132
RH
1693 if (bfd_check_format (f, bfd_archive))
1694 {
1695 bfd *arfile = bfd_openr_next_archived_file (f, 0);
1696 while (arfile)
1697 {
a442b35f 1698 bfd *next;
252b5132
RH
1699 if (bfd_check_format (arfile, bfd_object))
1700 scan_open_obj_file (arfile);
a442b35f 1701 next = bfd_openr_next_archived_file (f, arfile);
252b5132 1702 bfd_close (arfile);
a442b35f 1703 arfile = next;
252b5132 1704 }
26044998 1705
49e315b1
NC
1706#ifdef DLLTOOL_MCORE_ELF
1707 if (mcore_elf_out_file)
1708 inform (_("Cannot produce mcore-elf dll from archive file: %s"), filename);
1709#endif
252b5132
RH
1710 }
1711 else if (bfd_check_format (f, bfd_object))
1712 {
1713 scan_open_obj_file (f);
49e315b1
NC
1714
1715#ifdef DLLTOOL_MCORE_ELF
1716 if (mcore_elf_out_file)
fd64a958 1717 mcore_elf_cache_filename (filename);
49e315b1 1718#endif
252b5132
RH
1719 }
1720
1721 bfd_close (f);
1722}
1723
dec87289 1724\f
252b5132
RH
1725
1726static void
2da42df6 1727dump_def_info (FILE *f)
252b5132
RH
1728{
1729 int i;
1730 export_type *exp;
1731 fprintf (f, "%s ", ASM_C);
1732 for (i = 0; oav[i]; i++)
1733 fprintf (f, "%s ", oav[i]);
1734 fprintf (f, "\n");
1735 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1736 {
bf201fdd 1737 fprintf (f, "%s %d = %s %s @ %d %s%s%s%s%s%s\n",
252b5132
RH
1738 ASM_C,
1739 i,
1740 exp->name,
1741 exp->internal_name,
1742 exp->ordinal,
1743 exp->noname ? "NONAME " : "",
7aa52b1f 1744 exp->private ? "PRIVATE " : "",
252b5132 1745 exp->constant ? "CONSTANT" : "",
bf201fdd
KT
1746 exp->data ? "DATA" : "",
1747 exp->its_name ? " ==" : "",
1748 exp->its_name ? exp->its_name : "");
252b5132
RH
1749 }
1750}
1751
c9e38879 1752/* Generate the .exp file. */
252b5132
RH
1753
1754static int
2da42df6 1755sfunc (const void *a, const void *b)
252b5132 1756{
d078078d
KT
1757 if (*(const bfd_vma *) a == *(const bfd_vma *) b)
1758 return 0;
1759
1760 return ((*(const bfd_vma *) a > *(const bfd_vma *) b) ? 1 : -1);
252b5132
RH
1761}
1762
1763static void
d078078d 1764flush_page (FILE *f, bfd_vma *need, bfd_vma page_addr, int on_page)
252b5132
RH
1765{
1766 int i;
1767
c9e38879 1768 /* Flush this page. */
252b5132
RH
1769 fprintf (f, "\t%s\t0x%08x\t%s Starting RVA for chunk\n",
1770 ASM_LONG,
d078078d 1771 (int) page_addr,
252b5132
RH
1772 ASM_C);
1773 fprintf (f, "\t%s\t0x%x\t%s Size of block\n",
1774 ASM_LONG,
1775 (on_page * 2) + (on_page & 1) * 2 + 8,
1776 ASM_C);
26044998 1777
252b5132 1778 for (i = 0; i < on_page; i++)
a2186dfe 1779 {
d078078d 1780 bfd_vma needed = need[i];
26044998 1781
a2186dfe 1782 if (needed)
d078078d 1783 {
2ea2f3c6
KT
1784 if (!create_for_pep)
1785 {
1786 /* Relocation via HIGHLOW. */
1787 needed = ((needed - page_addr) | 0x3000) & 0xffff;
1788 }
1789 else
1790 {
1791 /* Relocation via DIR64. */
1792 needed = ((needed - page_addr) | 0xa000) & 0xffff;
1793 }
d078078d 1794 }
26044998 1795
d078078d 1796 fprintf (f, "\t%s\t0x%lx\n", ASM_SHORT, (long) needed);
a2186dfe 1797 }
26044998 1798
252b5132
RH
1799 /* And padding */
1800 if (on_page & 1)
1801 fprintf (f, "\t%s\t0x%x\n", ASM_SHORT, 0 | 0x0000);
1802}
1803
1804static void
2da42df6 1805gen_def_file (void)
252b5132
RH
1806{
1807 int i;
1808 export_type *exp;
1809
1810 inform (_("Adding exports to output file"));
26044998 1811
252b5132
RH
1812 fprintf (output_def, ";");
1813 for (i = 0; oav[i]; i++)
1814 fprintf (output_def, " %s", oav[i]);
1815
1816 fprintf (output_def, "\nEXPORTS\n");
1817
1818 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
1819 {
1820 char *quote = strchr (exp->name, '.') ? "\"" : "";
1821 char *res = cplus_demangle (exp->internal_name, DMGL_ANSI | DMGL_PARAMS);
1822
2630b4ca
DS
1823 if (res)
1824 {
2da42df6 1825 fprintf (output_def,";\t%s\n", res);
2630b4ca
DS
1826 free (res);
1827 }
1828
252b5132 1829 if (strcmp (exp->name, exp->internal_name) == 0)
26044998 1830 {
bf201fdd 1831 fprintf (output_def, "\t%s%s%s @ %d%s%s%s%s%s\n",
252b5132
RH
1832 quote,
1833 exp->name,
1834 quote,
1835 exp->ordinal,
1836 exp->noname ? " NONAME" : "",
7aa52b1f 1837 exp->private ? "PRIVATE " : "",
bf201fdd
KT
1838 exp->data ? " DATA" : "",
1839 exp->its_name ? " ==" : "",
1840 exp->its_name ? exp->its_name : "");
252b5132 1841 }
26044998
KH
1842 else
1843 {
7aa52b1f 1844 char * quote1 = strchr (exp->internal_name, '.') ? "\"" : "";
252b5132 1845 /* char *alias = */
bf201fdd 1846 fprintf (output_def, "\t%s%s%s = %s%s%s @ %d%s%s%s%s%s\n",
252b5132
RH
1847 quote,
1848 exp->name,
1849 quote,
1850 quote1,
1851 exp->internal_name,
1852 quote1,
1853 exp->ordinal,
1854 exp->noname ? " NONAME" : "",
7aa52b1f 1855 exp->private ? "PRIVATE " : "",
bf201fdd
KT
1856 exp->data ? " DATA" : "",
1857 exp->its_name ? " ==" : "",
1858 exp->its_name ? exp->its_name : "");
252b5132 1859 }
252b5132 1860 }
26044998 1861
252b5132
RH
1862 inform (_("Added exports to output file"));
1863}
1864
1865/* generate_idata_ofile generates the portable assembly source code
1866 for the idata sections. It appends the source code to the end of
1867 the file. */
1868
1869static void
2da42df6 1870generate_idata_ofile (FILE *filvar)
252b5132
RH
1871{
1872 iheadtype *headptr;
1873 ifunctype *funcptr;
1874 int headindex;
1875 int funcindex;
1876 int nheads;
1877
1878 if (import_list == NULL)
1879 return;
1880
1881 fprintf (filvar, "%s Import data sections\n", ASM_C);
1882 fprintf (filvar, "\n\t.section\t.idata$2\n");
1883 fprintf (filvar, "\t%s\tdoi_idata\n", ASM_GLOBAL);
1884 fprintf (filvar, "doi_idata:\n");
1885
1886 nheads = 0;
1887 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1888 {
1889 fprintf (filvar, "\t%slistone%d%s\t%s %s\n",
1890 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER,
1891 ASM_C, headptr->dllname);
1892 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1893 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1894 fprintf (filvar, "\t%sdllname%d%s\n",
1895 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER);
1896 fprintf (filvar, "\t%slisttwo%d%s\n\n",
1897 ASM_RVA_BEFORE, nheads, ASM_RVA_AFTER);
1898 nheads++;
1899 }
1900
1901 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* NULL record at */
1902 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* end of idata$2 */
1903 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* section */
1904 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1905 fprintf (filvar, "\t%s\t0\n", ASM_LONG);
1906
1907 fprintf (filvar, "\n\t.section\t.idata$4\n");
1908 headindex = 0;
1909 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1910 {
1911 fprintf (filvar, "listone%d:\n", headindex);
99ad8390 1912 for (funcindex = 0; funcindex < headptr->nfuncs; funcindex++)
2ea2f3c6
KT
1913 {
1914 if (create_for_pep)
1915 fprintf (filvar, "\t%sfuncptr%d_%d%s\n%s\t0\n",
1916 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER,
1917 ASM_LONG);
1918 else
1919 fprintf (filvar, "\t%sfuncptr%d_%d%s\n",
1920 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER);
1921 }
1922 if (create_for_pep)
1923 fprintf (filvar, "\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
1924 else
1925 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* NULL terminating list. */
252b5132
RH
1926 headindex++;
1927 }
1928
1929 fprintf (filvar, "\n\t.section\t.idata$5\n");
1930 headindex = 0;
1931 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1932 {
1933 fprintf (filvar, "listtwo%d:\n", headindex);
99ad8390 1934 for (funcindex = 0; funcindex < headptr->nfuncs; funcindex++)
2ea2f3c6
KT
1935 {
1936 if (create_for_pep)
1937 fprintf (filvar, "\t%sfuncptr%d_%d%s\n%s\t0\n",
1938 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER,
1939 ASM_LONG);
1940 else
1941 fprintf (filvar, "\t%sfuncptr%d_%d%s\n",
1942 ASM_RVA_BEFORE, headindex, funcindex, ASM_RVA_AFTER);
1943 }
1944 if (create_for_pep)
1945 fprintf (filvar, "\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
1946 else
1947 fprintf (filvar, "\t%s\t0\n", ASM_LONG); /* NULL terminating list. */
252b5132
RH
1948 headindex++;
1949 }
1950
1951 fprintf (filvar, "\n\t.section\t.idata$6\n");
1952 headindex = 0;
1953 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1954 {
1955 funcindex = 0;
1956 for (funcptr = headptr->funchead; funcptr != NULL;
1957 funcptr = funcptr->next)
1958 {
1959 fprintf (filvar,"funcptr%d_%d:\n", headindex, funcindex);
1960 fprintf (filvar,"\t%s\t%d\n", ASM_SHORT,
1961 ((funcptr->ord) & 0xFFFF));
bf201fdd
KT
1962 fprintf (filvar,"\t%s\t\"%s\"\n", ASM_TEXT,
1963 (funcptr->its_name ? funcptr->its_name : funcptr->name));
252b5132
RH
1964 fprintf (filvar,"\t%s\t0\n", ASM_BYTE);
1965 funcindex++;
1966 }
1967 headindex++;
1968 }
1969
1970 fprintf (filvar, "\n\t.section\t.idata$7\n");
1971 headindex = 0;
1972 for (headptr = import_list; headptr != NULL; headptr = headptr->next)
1973 {
1974 fprintf (filvar,"dllname%d:\n", headindex);
1975 fprintf (filvar,"\t%s\t\"%s\"\n", ASM_TEXT, headptr->dllname);
1976 fprintf (filvar,"\t%s\t0\n", ASM_BYTE);
1977 headindex++;
1978 }
1979}
1980
26044998 1981/* Assemble the specified file. */
49c24507 1982static void
2da42df6 1983assemble_file (const char * source, const char * dest)
49c24507
NC
1984{
1985 char * cmd;
26044998 1986
49c24507 1987 cmd = (char *) alloca (strlen (ASM_SWITCHES) + strlen (as_flags)
96925346 1988 + strlen (source) + strlen (dest) + 50);
49c24507
NC
1989
1990 sprintf (cmd, "%s %s -o %s %s", ASM_SWITCHES, as_flags, dest, source);
1991
1992 run (as_name, cmd);
1993}
1994
252b5132 1995static void
2da42df6 1996gen_exp_file (void)
252b5132
RH
1997{
1998 FILE *f;
1999 int i;
2000 export_type *exp;
2001 dlist_type *dl;
2002
2003 /* xgettext:c-format */
37cc8ec1 2004 inform (_("Generating export file: %s"), exp_name);
26044998 2005
252b5132
RH
2006 f = fopen (TMP_ASM, FOPEN_WT);
2007 if (!f)
2008 /* xgettext:c-format */
2009 fatal (_("Unable to open temporary assembler file: %s"), TMP_ASM);
26044998 2010
252b5132
RH
2011 /* xgettext:c-format */
2012 inform (_("Opened temporary file: %s"), TMP_ASM);
2013
2014 dump_def_info (f);
26044998 2015
252b5132
RH
2016 if (d_exports)
2017 {
2018 fprintf (f, "\t.section .edata\n\n");
2019 fprintf (f, "\t%s 0 %s Allways 0\n", ASM_LONG, ASM_C);
0af1713e
AM
2020 fprintf (f, "\t%s 0x%lx %s Time and date\n", ASM_LONG,
2021 (unsigned long) time(0), ASM_C);
252b5132
RH
2022 fprintf (f, "\t%s 0 %s Major and Minor version\n", ASM_LONG, ASM_C);
2023 fprintf (f, "\t%sname%s %s Ptr to name of dll\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2024 fprintf (f, "\t%s %d %s Starting ordinal of exports\n", ASM_LONG, d_low_ord, ASM_C);
2025
2026
2027 fprintf (f, "\t%s %d %s Number of functions\n", ASM_LONG, d_high_ord - d_low_ord + 1, ASM_C);
2028 fprintf(f,"\t%s named funcs %d, low ord %d, high ord %d\n",
2029 ASM_C,
2030 d_named_nfuncs, d_low_ord, d_high_ord);
2031 fprintf (f, "\t%s %d %s Number of names\n", ASM_LONG,
2032 show_allnames ? d_high_ord - d_low_ord + 1 : d_named_nfuncs, ASM_C);
2033 fprintf (f, "\t%safuncs%s %s Address of functions\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2034
2035 fprintf (f, "\t%sanames%s %s Address of Name Pointer Table\n",
2036 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2037
2038 fprintf (f, "\t%sanords%s %s Address of ordinals\n", ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2039
2040 fprintf (f, "name: %s \"%s\"\n", ASM_TEXT, dll_name);
2041
2042
2043 fprintf(f,"%s Export address Table\n", ASM_C);
2044 fprintf(f,"\t%s\n", ASM_ALIGN_LONG);
2045 fprintf (f, "afuncs:\n");
2046 i = d_low_ord;
2047
2048 for (exp = d_exports; exp; exp = exp->next)
2049 {
2050 if (exp->ordinal != i)
2051 {
252b5132
RH
2052 while (i < exp->ordinal)
2053 {
2054 fprintf(f,"\t%s\t0\n", ASM_LONG);
2055 i++;
2056 }
2057 }
04847a4d
CF
2058
2059 if (exp->forward == 0)
c9e38879
NC
2060 {
2061 if (exp->internal_name[0] == '@')
2062 fprintf (f, "\t%s%s%s\t%s %d\n", ASM_RVA_BEFORE,
2063 exp->internal_name, ASM_RVA_AFTER, ASM_C, exp->ordinal);
2064 else
2065 fprintf (f, "\t%s%s%s%s\t%s %d\n", ASM_RVA_BEFORE,
2758961a 2066 ASM_PREFIX (exp->internal_name),
c9e38879
NC
2067 exp->internal_name, ASM_RVA_AFTER, ASM_C, exp->ordinal);
2068 }
04847a4d
CF
2069 else
2070 fprintf (f, "\t%sf%d%s\t%s %d\n", ASM_RVA_BEFORE,
2071 exp->forward, ASM_RVA_AFTER, ASM_C, exp->ordinal);
252b5132
RH
2072 i++;
2073 }
2074
2075 fprintf (f,"%s Export Name Pointer Table\n", ASM_C);
2076 fprintf (f, "anames:\n");
2077
2078 for (i = 0; (exp = d_exports_lexically[i]); i++)
2079 {
2080 if (!exp->noname || show_allnames)
2081 fprintf (f, "\t%sn%d%s\n",
2082 ASM_RVA_BEFORE, exp->ordinal, ASM_RVA_AFTER);
2083 }
2084
ea6e992c 2085 fprintf (f,"%s Export Ordinal Table\n", ASM_C);
252b5132
RH
2086 fprintf (f, "anords:\n");
2087 for (i = 0; (exp = d_exports_lexically[i]); i++)
2088 {
2089 if (!exp->noname || show_allnames)
2090 fprintf (f, "\t%s %d\n", ASM_SHORT, exp->ordinal - d_low_ord);
2091 }
2092
2093 fprintf(f,"%s Export Name Table\n", ASM_C);
2094 for (i = 0; (exp = d_exports_lexically[i]); i++)
eff21b8e
CF
2095 {
2096 if (!exp->noname || show_allnames)
04847a4d 2097 fprintf (f, "n%d: %s \"%s\"\n",
bf201fdd
KT
2098 exp->ordinal, ASM_TEXT,
2099 (exp->its_name ? exp->its_name : xlate (exp->name)));
eff21b8e
CF
2100 if (exp->forward != 0)
2101 fprintf (f, "f%d: %s \"%s\"\n",
2102 exp->forward, ASM_TEXT, exp->internal_name);
2103 }
252b5132
RH
2104
2105 if (a_list)
2106 {
661016bb 2107 fprintf (f, "\t.section %s\n", DRECTVE_SECTION_NAME);
252b5132
RH
2108 for (dl = a_list; dl; dl = dl->next)
2109 {
2110 fprintf (f, "\t%s\t\"%s\"\n", ASM_TEXT, dl->text);
2111 }
2112 }
26044998 2113
252b5132
RH
2114 if (d_list)
2115 {
2116 fprintf (f, "\t.section .rdata\n");
2117 for (dl = d_list; dl; dl = dl->next)
2118 {
2119 char *p;
2120 int l;
26044998 2121
5f0f29c3
NC
2122 /* We don't output as ascii because there can
2123 be quote characters in the string. */
252b5132
RH
2124 l = 0;
2125 for (p = dl->text; *p; p++)
2126 {
2127 if (l == 0)
2128 fprintf (f, "\t%s\t", ASM_BYTE);
2129 else
2130 fprintf (f, ",");
2131 fprintf (f, "%d", *p);
2132 if (p[1] == 0)
2133 {
2134 fprintf (f, ",0\n");
2135 break;
2136 }
2137 if (++l == 10)
2138 {
2139 fprintf (f, "\n");
2140 l = 0;
2141 }
2142 }
2143 }
2144 }
2145 }
2146
2147
2148 /* Add to the output file a way of getting to the exported names
5f0f29c3 2149 without using the import library. */
252b5132
RH
2150 if (add_indirect)
2151 {
2152 fprintf (f, "\t.section\t.rdata\n");
2153 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
2154 if (!exp->noname || show_allnames)
2155 {
2156 /* We use a single underscore for MS compatibility, and a
2157 double underscore for backward compatibility with old
2158 cygwin releases. */
5f0f29c3
NC
2159 if (create_compat_implib)
2160 fprintf (f, "\t%s\t__imp_%s\n", ASM_GLOBAL, exp->name);
36d21de5
KT
2161 fprintf (f, "\t%s\t_imp_%s%s\n", ASM_GLOBAL,
2162 (!leading_underscore ? "" : "_"), exp->name);
5f0f29c3
NC
2163 if (create_compat_implib)
2164 fprintf (f, "__imp_%s:\n", exp->name);
36d21de5 2165 fprintf (f, "_imp_%s%s:\n", (!leading_underscore ? "" : "_"), exp->name);
252b5132
RH
2166 fprintf (f, "\t%s\t%s\n", ASM_LONG, exp->name);
2167 }
2168 }
2169
c9e38879 2170 /* Dump the reloc section if a base file is provided. */
252b5132
RH
2171 if (base_file)
2172 {
d078078d 2173 bfd_vma addr;
e05da72d 2174 bfd_vma need[COFF_PAGE_SIZE];
d078078d 2175 bfd_vma page_addr;
20359e08 2176 bfd_size_type numbytes;
252b5132 2177 int num_entries;
d078078d 2178 bfd_vma *copy;
252b5132
RH
2179 int j;
2180 int on_page;
2181 fprintf (f, "\t.section\t.init\n");
2182 fprintf (f, "lab:\n");
2183
2184 fseek (base_file, 0, SEEK_END);
2185 numbytes = ftell (base_file);
2186 fseek (base_file, 0, SEEK_SET);
2187 copy = xmalloc (numbytes);
20359e08
NC
2188 if (fread (copy, 1, numbytes, base_file) < numbytes)
2189 fatal (_("failed to read the number of entries from base file"));
d078078d 2190 num_entries = numbytes / sizeof (bfd_vma);
252b5132
RH
2191
2192
2193 fprintf (f, "\t.section\t.reloc\n");
2194 if (num_entries)
2195 {
2196 int src;
2197 int dst = 0;
d078078d
KT
2198 bfd_vma last = (bfd_vma) -1;
2199 qsort (copy, num_entries, sizeof (bfd_vma), sfunc);
50c2245b 2200 /* Delete duplicates */
252b5132
RH
2201 for (src = 0; src < num_entries; src++)
2202 {
2203 if (last != copy[src])
2204 last = copy[dst++] = copy[src];
2205 }
2206 num_entries = dst;
2207 addr = copy[0];
2208 page_addr = addr & PAGE_MASK; /* work out the page addr */
2209 on_page = 0;
2210 for (j = 0; j < num_entries; j++)
2211 {
252b5132
RH
2212 addr = copy[j];
2213 if ((addr & PAGE_MASK) != page_addr)
2214 {
252b5132
RH
2215 flush_page (f, need, page_addr, on_page);
2216 on_page = 0;
2217 page_addr = addr & PAGE_MASK;
2218 }
2219 need[on_page++] = addr;
2220 }
252b5132
RH
2221 flush_page (f, need, page_addr, on_page);
2222
d8bcc1ac 2223/* fprintf (f, "\t%s\t0,0\t%s End\n", ASM_LONG, ASM_C);*/
252b5132
RH
2224 }
2225 }
2226
2227 generate_idata_ofile (f);
2228
2229 fclose (f);
2230
c9e38879 2231 /* Assemble the file. */
49c24507 2232 assemble_file (TMP_ASM, exp_name);
bb0cb4db 2233
252b5132
RH
2234 if (dontdeltemps == 0)
2235 unlink (TMP_ASM);
26044998 2236
252b5132
RH
2237 inform (_("Generated exports file"));
2238}
2239
2240static const char *
2da42df6 2241xlate (const char *name)
252b5132 2242{
c9e38879 2243 int lead_at = (*name == '@');
36d21de5 2244 int is_stdcall = (!lead_at && strchr (name, '@') != NULL);
c9e38879 2245
14288fdc 2246 if (!lead_at && (add_underscore
36d21de5 2247 || (add_stdcall_underscore && is_stdcall)))
252b5132
RH
2248 {
2249 char *copy = xmalloc (strlen (name) + 2);
c9e38879 2250
252b5132
RH
2251 copy[0] = '_';
2252 strcpy (copy + 1, name);
2253 name = copy;
2254 }
2255
2256 if (killat)
2257 {
2258 char *p;
c9e38879
NC
2259
2260 name += lead_at;
2c2ce03f
NC
2261 /* PR 9766: Look for the last @ sign in the name. */
2262 p = strrchr (name, '@');
2263 if (p && ISDIGIT (p[1]))
252b5132
RH
2264 *p = 0;
2265 }
2266 return name;
2267}
2268
252b5132
RH
2269typedef struct
2270{
2271 int id;
2272 const char *name;
2273 int flags;
2274 int align;
2275 asection *sec;
2276 asymbol *sym;
2277 asymbol **sympp;
2278 int size;
c9e38879 2279 unsigned char *data;
252b5132
RH
2280} sinfo;
2281
ce23608f
AM
2282#define INIT_SEC_DATA(id, name, flags, align) \
2283 { id, name, flags, align, NULL, NULL, NULL, 0, NULL }
2284
252b5132
RH
2285#ifndef DLLTOOL_PPC
2286
2287#define TEXT 0
2288#define DATA 1
2289#define BSS 2
2290#define IDATA7 3
2291#define IDATA5 4
2292#define IDATA4 5
2293#define IDATA6 6
2294
2295#define NSECS 7
2296
bee72332
DD
2297#define TEXT_SEC_FLAGS \
2298 (SEC_ALLOC | SEC_LOAD | SEC_CODE | SEC_READONLY | SEC_HAS_CONTENTS)
2299#define DATA_SEC_FLAGS (SEC_ALLOC | SEC_LOAD | SEC_DATA)
2300#define BSS_SEC_FLAGS SEC_ALLOC
2301
252b5132
RH
2302static sinfo secdata[NSECS] =
2303{
bee72332
DD
2304 INIT_SEC_DATA (TEXT, ".text", TEXT_SEC_FLAGS, 2),
2305 INIT_SEC_DATA (DATA, ".data", DATA_SEC_FLAGS, 2),
2306 INIT_SEC_DATA (BSS, ".bss", BSS_SEC_FLAGS, 2),
2307 INIT_SEC_DATA (IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2),
2308 INIT_SEC_DATA (IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2),
2309 INIT_SEC_DATA (IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2),
2310 INIT_SEC_DATA (IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1)
252b5132
RH
2311};
2312
2313#else
2314
c9e38879
NC
2315/* Sections numbered to make the order the same as other PowerPC NT
2316 compilers. This also keeps funny alignment thingies from happening. */
252b5132
RH
2317#define TEXT 0
2318#define PDATA 1
2319#define RDATA 2
2320#define IDATA5 3
2321#define IDATA4 4
2322#define IDATA6 5
2323#define IDATA7 6
2324#define DATA 7
2325#define BSS 8
2326
2327#define NSECS 9
2328
2329static sinfo secdata[NSECS] =
2330{
ce23608f
AM
2331 INIT_SEC_DATA (TEXT, ".text", SEC_CODE | SEC_HAS_CONTENTS, 3),
2332 INIT_SEC_DATA (PDATA, ".pdata", SEC_HAS_CONTENTS, 2),
2333 INIT_SEC_DATA (RDATA, ".reldata", SEC_HAS_CONTENTS, 2),
2334 INIT_SEC_DATA (IDATA5, ".idata$5", SEC_HAS_CONTENTS, 2),
2335 INIT_SEC_DATA (IDATA4, ".idata$4", SEC_HAS_CONTENTS, 2),
2336 INIT_SEC_DATA (IDATA6, ".idata$6", SEC_HAS_CONTENTS, 1),
2337 INIT_SEC_DATA (IDATA7, ".idata$7", SEC_HAS_CONTENTS, 2),
2338 INIT_SEC_DATA (DATA, ".data", SEC_DATA, 2),
2339 INIT_SEC_DATA (BSS, ".bss", 0, 2)
252b5132
RH
2340};
2341
2342#endif
2343
c9e38879
NC
2344/* This is what we're trying to make. We generate the imp symbols with
2345 both single and double underscores, for compatibility.
252b5132
RH
2346
2347 .text
2348 .global _GetFileVersionInfoSizeW@8
2349 .global __imp_GetFileVersionInfoSizeW@8
2350_GetFileVersionInfoSizeW@8:
2351 jmp * __imp_GetFileVersionInfoSizeW@8
2352 .section .idata$7 # To force loading of head
2353 .long __version_a_head
2354# Import Address Table
2355 .section .idata$5
2356__imp_GetFileVersionInfoSizeW@8:
2357 .rva ID2
2358
2359# Import Lookup Table
2360 .section .idata$4
2361 .rva ID2
2362# Hint/Name table
2363 .section .idata$6
2364ID2: .short 2
2365 .asciz "GetFileVersionInfoSizeW"
2366
2367
c9e38879 2368 For the PowerPC, here's the variation on the above scheme:
252b5132
RH
2369
2370# Rather than a simple "jmp *", the code to get to the dll function
2371# looks like:
2372 .text
2373 lwz r11,[tocv]__imp_function_name(r2)
2374# RELOC: 00000000 TOCREL16,TOCDEFN __imp_function_name
2375 lwz r12,0(r11)
2376 stw r2,4(r1)
2377 mtctr r12
2378 lwz r2,4(r11)
c9e38879 2379 bctr */
252b5132
RH
2380
2381static char *
2da42df6 2382make_label (const char *prefix, const char *name)
252b5132 2383{
2758961a
NC
2384 int len = strlen (ASM_PREFIX (name)) + strlen (prefix) + strlen (name);
2385 char *copy = xmalloc (len + 1);
c9e38879 2386
2758961a 2387 strcpy (copy, ASM_PREFIX (name));
252b5132
RH
2388 strcat (copy, prefix);
2389 strcat (copy, name);
2390 return copy;
2391}
2392
c9e38879 2393static char *
2da42df6 2394make_imp_label (const char *prefix, const char *name)
c9e38879
NC
2395{
2396 int len;
2397 char *copy;
2398
2399 if (name[0] == '@')
2400 {
2401 len = strlen (prefix) + strlen (name);
2402 copy = xmalloc (len + 1);
2403 strcpy (copy, prefix);
2404 strcat (copy, name);
2405 }
2406 else
2407 {
2758961a 2408 len = strlen (ASM_PREFIX (name)) + strlen (prefix) + strlen (name);
c9e38879
NC
2409 copy = xmalloc (len + 1);
2410 strcpy (copy, prefix);
2758961a 2411 strcat (copy, ASM_PREFIX (name));
c9e38879
NC
2412 strcat (copy, name);
2413 }
2414 return copy;
2415}
2416
252b5132 2417static bfd *
10e636d2 2418make_one_lib_file (export_type *exp, int i, int delay)
252b5132 2419{
84e43642
BE
2420 bfd * abfd;
2421 asymbol * exp_label;
2422 asymbol * iname = 0;
2423 asymbol * iname2;
2424 asymbol * iname_lab;
2425 asymbol ** iname_lab_pp;
2426 asymbol ** iname_pp;
252b5132 2427#ifdef DLLTOOL_PPC
84e43642
BE
2428 asymbol ** fn_pp;
2429 asymbol ** toc_pp;
252b5132
RH
2430#define EXTRA 2
2431#endif
2432#ifndef EXTRA
2433#define EXTRA 0
2434#endif
84e43642
BE
2435 asymbol * ptrs[NSECS + 4 + EXTRA + 1];
2436 flagword applicable;
2437 char * outname = xmalloc (strlen (TMP_STUB) + 10);
2438 int oidx = 0;
252b5132 2439
26044998 2440
84e43642 2441 sprintf (outname, "%s%05d.o", TMP_STUB, i);
26044998 2442
84e43642 2443 abfd = bfd_openw (outname, HOW_BFD_WRITE_TARGET);
26044998 2444
84e43642
BE
2445 if (!abfd)
2446 /* xgettext:c-format */
dec87289
NC
2447 fatal (_("bfd_open failed open stub file: %s: %s"),
2448 outname, bfd_get_errmsg ());
252b5132 2449
84e43642
BE
2450 /* xgettext:c-format */
2451 inform (_("Creating stub file: %s"), outname);
26044998 2452
84e43642
BE
2453 bfd_set_format (abfd, bfd_object);
2454 bfd_set_arch_mach (abfd, HOW_BFD_ARCH, 0);
252b5132
RH
2455
2456#ifdef DLLTOOL_ARM
84e43642
BE
2457 if (machine == MARM_INTERWORK || machine == MTHUMB)
2458 bfd_set_private_flags (abfd, F_INTERWORK);
252b5132 2459#endif
26044998 2460
84e43642 2461 applicable = bfd_applicable_section_flags (abfd);
26044998 2462
84e43642
BE
2463 /* First make symbols for the sections. */
2464 for (i = 0; i < NSECS; i++)
2465 {
2466 sinfo *si = secdata + i;
2467
2468 if (si->id != i)
dec87289 2469 abort ();
84e43642
BE
2470 si->sec = bfd_make_section_old_way (abfd, si->name);
2471 bfd_set_section_flags (abfd,
2472 si->sec,
2473 si->flags & applicable);
2474
2475 bfd_set_section_alignment(abfd, si->sec, si->align);
2476 si->sec->output_section = si->sec;
2477 si->sym = bfd_make_empty_symbol(abfd);
2478 si->sym->name = si->sec->name;
2479 si->sym->section = si->sec;
2480 si->sym->flags = BSF_LOCAL;
2481 si->sym->value = 0;
2482 ptrs[oidx] = si->sym;
2483 si->sympp = ptrs + oidx;
2484 si->size = 0;
2485 si->data = NULL;
2486
2487 oidx++;
2488 }
252b5132 2489
84e43642
BE
2490 if (! exp->data)
2491 {
2492 exp_label = bfd_make_empty_symbol (abfd);
2493 exp_label->name = make_imp_label ("", exp->name);
252b5132 2494
84e43642
BE
2495 /* On PowerPC, the function name points to a descriptor in
2496 the rdata section, the first element of which is a
2497 pointer to the code (..function_name), and the second
2498 points to the .toc. */
252b5132 2499#ifdef DLLTOOL_PPC
84e43642
BE
2500 if (machine == MPPC)
2501 exp_label->section = secdata[RDATA].sec;
2502 else
252b5132 2503#endif
84e43642 2504 exp_label->section = secdata[TEXT].sec;
252b5132 2505
84e43642
BE
2506 exp_label->flags = BSF_GLOBAL;
2507 exp_label->value = 0;
252b5132
RH
2508
2509#ifdef DLLTOOL_ARM
84e43642
BE
2510 if (machine == MTHUMB)
2511 bfd_coff_set_symbol_class (abfd, exp_label, C_THUMBEXTFUNC);
252b5132 2512#endif
84e43642
BE
2513 ptrs[oidx++] = exp_label;
2514 }
252b5132 2515
84e43642
BE
2516 /* Generate imp symbols with one underscore for Microsoft
2517 compatibility, and with two underscores for backward
2518 compatibility with old versions of cygwin. */
2519 if (create_compat_implib)
2520 {
2521 iname = bfd_make_empty_symbol (abfd);
2522 iname->name = make_imp_label ("___imp", exp->name);
2523 iname->section = secdata[IDATA5].sec;
2524 iname->flags = BSF_GLOBAL;
2525 iname->value = 0;
2526 }
252b5132 2527
84e43642
BE
2528 iname2 = bfd_make_empty_symbol (abfd);
2529 iname2->name = make_imp_label ("__imp_", exp->name);
2530 iname2->section = secdata[IDATA5].sec;
2531 iname2->flags = BSF_GLOBAL;
2532 iname2->value = 0;
252b5132 2533
84e43642 2534 iname_lab = bfd_make_empty_symbol (abfd);
252b5132 2535
84e43642 2536 iname_lab->name = head_label;
45dfa85a 2537 iname_lab->section = bfd_und_section_ptr;
84e43642
BE
2538 iname_lab->flags = 0;
2539 iname_lab->value = 0;
252b5132 2540
84e43642
BE
2541 iname_pp = ptrs + oidx;
2542 if (create_compat_implib)
2543 ptrs[oidx++] = iname;
2544 ptrs[oidx++] = iname2;
252b5132 2545
84e43642
BE
2546 iname_lab_pp = ptrs + oidx;
2547 ptrs[oidx++] = iname_lab;
252b5132
RH
2548
2549#ifdef DLLTOOL_PPC
84e43642
BE
2550 /* The symbol referring to the code (.text). */
2551 {
2552 asymbol *function_name;
252b5132 2553
84e43642
BE
2554 function_name = bfd_make_empty_symbol(abfd);
2555 function_name->name = make_label ("..", exp->name);
2556 function_name->section = secdata[TEXT].sec;
2557 function_name->flags = BSF_GLOBAL;
2558 function_name->value = 0;
252b5132 2559
84e43642
BE
2560 fn_pp = ptrs + oidx;
2561 ptrs[oidx++] = function_name;
2562 }
252b5132 2563
84e43642
BE
2564 /* The .toc symbol. */
2565 {
2566 asymbol *toc_symbol;
252b5132 2567
84e43642
BE
2568 toc_symbol = bfd_make_empty_symbol (abfd);
2569 toc_symbol->name = make_label (".", "toc");
45dfa85a 2570 toc_symbol->section = bfd_und_section_ptr;
84e43642
BE
2571 toc_symbol->flags = BSF_GLOBAL;
2572 toc_symbol->value = 0;
252b5132 2573
84e43642
BE
2574 toc_pp = ptrs + oidx;
2575 ptrs[oidx++] = toc_symbol;
2576 }
252b5132 2577#endif
26044998 2578
84e43642 2579 ptrs[oidx] = 0;
252b5132 2580
84e43642
BE
2581 for (i = 0; i < NSECS; i++)
2582 {
2583 sinfo *si = secdata + i;
2584 asection *sec = si->sec;
10e636d2 2585 arelent *rel, *rel2 = 0, *rel3 = 0;
84e43642 2586 arelent **rpp;
252b5132 2587
84e43642
BE
2588 switch (i)
2589 {
2590 case TEXT:
2591 if (! exp->data)
252b5132 2592 {
84e43642
BE
2593 si->size = HOW_JTAB_SIZE;
2594 si->data = xmalloc (HOW_JTAB_SIZE);
2595 memcpy (si->data, HOW_JTAB, HOW_JTAB_SIZE);
26044998 2596
99ad8390 2597 /* Add the reloc into idata$5. */
84e43642 2598 rel = xmalloc (sizeof (arelent));
252b5132 2599
10e636d2 2600 rpp = xmalloc (sizeof (arelent *) * (delay ? 4 : 2));
84e43642
BE
2601 rpp[0] = rel;
2602 rpp[1] = 0;
252b5132 2603
84e43642
BE
2604 rel->address = HOW_JTAB_ROFF;
2605 rel->addend = 0;
252b5132 2606
10e636d2
DK
2607 if (delay)
2608 {
2609 rel2 = xmalloc (sizeof (arelent));
2610 rpp[1] = rel2;
2611 rel2->address = HOW_JTAB_ROFF2;
2612 rel2->addend = 0;
2613 rel3 = xmalloc (sizeof (arelent));
2614 rpp[2] = rel3;
2615 rel3->address = HOW_JTAB_ROFF3;
2616 rel3->addend = 0;
2617 rpp[3] = 0;
2618 }
2619
84e43642 2620 if (machine == MPPC)
252b5132 2621 {
84e43642
BE
2622 rel->howto = bfd_reloc_type_lookup (abfd,
2623 BFD_RELOC_16_GOTOFF);
2624 rel->sym_ptr_ptr = iname_pp;
591a748a
NC
2625 }
2626 else if (machine == MX86)
2627 {
2628 rel->howto = bfd_reloc_type_lookup (abfd,
2629 BFD_RELOC_32_PCREL);
2630 rel->sym_ptr_ptr = iname_pp;
252b5132
RH
2631 }
2632 else
2633 {
84e43642
BE
2634 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2635 rel->sym_ptr_ptr = secdata[IDATA5].sympp;
252b5132 2636 }
10e636d2
DK
2637
2638 if (delay)
2639 {
9a30f236
KT
2640 if (machine == MX86)
2641 rel2->howto = bfd_reloc_type_lookup (abfd,
2642 BFD_RELOC_32_PCREL);
2643 else
2644 rel2->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
10e636d2 2645 rel2->sym_ptr_ptr = rel->sym_ptr_ptr;
9a30f236
KT
2646 rel3->howto = bfd_reloc_type_lookup (abfd,
2647 BFD_RELOC_32_PCREL);
10e636d2
DK
2648 rel3->sym_ptr_ptr = iname_lab_pp;
2649 }
2650
84e43642 2651 sec->orelocation = rpp;
10e636d2 2652 sec->reloc_count = delay ? 3 : 1;
84e43642
BE
2653 }
2654 break;
10e636d2 2655
84e43642 2656 case IDATA5:
10e636d2
DK
2657 if (delay)
2658 {
9a30f236
KT
2659 si->size = create_for_pep ? 8 : 4;
2660 si->data = xmalloc (si->size);
10e636d2
DK
2661 sec->reloc_count = 1;
2662 memset (si->data, 0, si->size);
9a30f236 2663 /* Point after jmp [__imp_...] instruction. */
10e636d2
DK
2664 si->data[0] = 6;
2665 rel = xmalloc (sizeof (arelent));
2666 rpp = xmalloc (sizeof (arelent *) * 2);
2667 rpp[0] = rel;
2668 rpp[1] = 0;
2669 rel->address = 0;
2670 rel->addend = 0;
9a30f236
KT
2671 if (create_for_pep)
2672 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_64);
2673 else
2674 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
10e636d2
DK
2675 rel->sym_ptr_ptr = secdata[TEXT].sympp;
2676 sec->orelocation = rpp;
2677 break;
2678 }
2679 /* else fall through */
2680 case IDATA4:
84e43642
BE
2681 /* An idata$4 or idata$5 is one word long, and has an
2682 rva to idata$6. */
252b5132 2683
2ea2f3c6 2684 if (create_for_pep)
84e43642 2685 {
2ea2f3c6
KT
2686 si->data = xmalloc (8);
2687 si->size = 8;
2688 if (exp->noname)
2689 {
2690 si->data[0] = exp->ordinal ;
2691 si->data[1] = exp->ordinal >> 8;
2692 si->data[2] = exp->ordinal >> 16;
2693 si->data[3] = exp->ordinal >> 24;
2694 si->data[4] = 0;
2695 si->data[5] = 0;
2696 si->data[6] = 0;
2697 si->data[7] = 0x80;
2698 }
2699 else
2700 {
2701 sec->reloc_count = 1;
2702 memset (si->data, 0, si->size);
2703 rel = xmalloc (sizeof (arelent));
2704 rpp = xmalloc (sizeof (arelent *) * 2);
2705 rpp[0] = rel;
2706 rpp[1] = 0;
2707 rel->address = 0;
2708 rel->addend = 0;
2709 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2710 rel->sym_ptr_ptr = secdata[IDATA6].sympp;
2711 sec->orelocation = rpp;
2712 }
84e43642
BE
2713 }
2714 else
2715 {
2ea2f3c6
KT
2716 si->data = xmalloc (4);
2717 si->size = 4;
2718
2719 if (exp->noname)
2720 {
2721 si->data[0] = exp->ordinal ;
2722 si->data[1] = exp->ordinal >> 8;
2723 si->data[2] = exp->ordinal >> 16;
2724 si->data[3] = 0x80;
2725 }
2726 else
2727 {
2728 sec->reloc_count = 1;
2729 memset (si->data, 0, si->size);
2730 rel = xmalloc (sizeof (arelent));
2731 rpp = xmalloc (sizeof (arelent *) * 2);
2732 rpp[0] = rel;
2733 rpp[1] = 0;
2734 rel->address = 0;
2735 rel->addend = 0;
2736 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2737 rel->sym_ptr_ptr = secdata[IDATA6].sympp;
2738 sec->orelocation = rpp;
2739 }
84e43642 2740 }
84e43642 2741 break;
252b5132 2742
84e43642
BE
2743 case IDATA6:
2744 if (!exp->noname)
2745 {
2746 /* This used to add 1 to exp->hint. I don't know
2747 why it did that, and it does not match what I see
2748 in programs compiled with the MS tools. */
2749 int idx = exp->hint;
bf201fdd
KT
2750 if (exp->its_name)
2751 si->size = strlen (exp->its_name) + 3;
2752 else
2753 si->size = strlen (xlate (exp->import_name)) + 3;
84e43642
BE
2754 si->data = xmalloc (si->size);
2755 si->data[0] = idx & 0xff;
2756 si->data[1] = idx >> 8;
bf201fdd
KT
2757 if (exp->its_name)
2758 strcpy ((char *) si->data + 2, exp->its_name);
2759 else
2760 strcpy ((char *) si->data + 2, xlate (exp->import_name));
84e43642
BE
2761 }
2762 break;
2763 case IDATA7:
10e636d2
DK
2764 if (delay)
2765 break;
84e43642
BE
2766 si->size = 4;
2767 si->data = xmalloc (4);
2768 memset (si->data, 0, si->size);
2769 rel = xmalloc (sizeof (arelent));
2770 rpp = xmalloc (sizeof (arelent *) * 2);
2771 rpp[0] = rel;
2772 rel->address = 0;
2773 rel->addend = 0;
2774 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_RVA);
2775 rel->sym_ptr_ptr = iname_lab_pp;
2776 sec->orelocation = rpp;
2777 sec->reloc_count = 1;
2778 break;
252b5132 2779
84e43642
BE
2780#ifdef DLLTOOL_PPC
2781 case PDATA:
2782 {
2783 /* The .pdata section is 5 words long.
2784 Think of it as:
2785 struct
2786 {
2787 bfd_vma BeginAddress, [0x00]
2788 EndAddress, [0x04]
2789 ExceptionHandler, [0x08]
2790 HandlerData, [0x0c]
2791 PrologEndAddress; [0x10]
2792 }; */
2793
2794 /* So this pdata section setups up this as a glue linkage to
2795 a dll routine. There are a number of house keeping things
2796 we need to do:
2797
2798 1. In the name of glue trickery, the ADDR32 relocs for 0,
2799 4, and 0x10 are set to point to the same place:
2800 "..function_name".
2801 2. There is one more reloc needed in the pdata section.
2802 The actual glue instruction to restore the toc on
2803 return is saved as the offset in an IMGLUE reloc.
2804 So we need a total of four relocs for this section.
2805
2806 3. Lastly, the HandlerData field is set to 0x03, to indicate
2807 that this is a glue routine. */
2808 arelent *imglue, *ba_rel, *ea_rel, *pea_rel;
2809
2810 /* Alignment must be set to 2**2 or you get extra stuff. */
2811 bfd_set_section_alignment(abfd, sec, 2);
2812
2813 si->size = 4 * 5;
2814 si->data = xmalloc (si->size);
2815 memset (si->data, 0, si->size);
2816 rpp = xmalloc (sizeof (arelent *) * 5);
2817 rpp[0] = imglue = xmalloc (sizeof (arelent));
2818 rpp[1] = ba_rel = xmalloc (sizeof (arelent));
2819 rpp[2] = ea_rel = xmalloc (sizeof (arelent));
2820 rpp[3] = pea_rel = xmalloc (sizeof (arelent));
2821 rpp[4] = 0;
2822
2823 /* Stick the toc reload instruction in the glue reloc. */
2824 bfd_put_32(abfd, ppc_glue_insn, (char *) &imglue->address);
2825
2826 imglue->addend = 0;
2827 imglue->howto = bfd_reloc_type_lookup (abfd,
2828 BFD_RELOC_32_GOTOFF);
2829 imglue->sym_ptr_ptr = fn_pp;
2830
2831 ba_rel->address = 0;
2832 ba_rel->addend = 0;
2833 ba_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2834 ba_rel->sym_ptr_ptr = fn_pp;
2835
2836 bfd_put_32 (abfd, 0x18, si->data + 0x04);
2837 ea_rel->address = 4;
2838 ea_rel->addend = 0;
2839 ea_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2840 ea_rel->sym_ptr_ptr = fn_pp;
2841
2842 /* Mark it as glue. */
2843 bfd_put_32 (abfd, 0x03, si->data + 0x0c);
2844
2845 /* Mark the prolog end address. */
2846 bfd_put_32 (abfd, 0x0D, si->data + 0x10);
2847 pea_rel->address = 0x10;
2848 pea_rel->addend = 0;
2849 pea_rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2850 pea_rel->sym_ptr_ptr = fn_pp;
2851
2852 sec->orelocation = rpp;
2853 sec->reloc_count = 4;
2854 break;
2855 }
2856 case RDATA:
2857 /* Each external function in a PowerPC PE file has a two word
2858 descriptor consisting of:
2859 1. The address of the code.
2860 2. The address of the appropriate .toc
2861 We use relocs to build this. */
2862 si->size = 8;
2863 si->data = xmalloc (8);
2864 memset (si->data, 0, si->size);
2865
2866 rpp = xmalloc (sizeof (arelent *) * 3);
2867 rpp[0] = rel = xmalloc (sizeof (arelent));
2868 rpp[1] = xmalloc (sizeof (arelent));
2869 rpp[2] = 0;
2870
2871 rel->address = 0;
2872 rel->addend = 0;
2873 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2874 rel->sym_ptr_ptr = fn_pp;
2875
2876 rel = rpp[1];
2877
2878 rel->address = 4;
2879 rel->addend = 0;
2880 rel->howto = bfd_reloc_type_lookup (abfd, BFD_RELOC_32);
2881 rel->sym_ptr_ptr = toc_pp;
2882
2883 sec->orelocation = rpp;
2884 sec->reloc_count = 2;
2885 break;
252b5132 2886#endif /* DLLTOOL_PPC */
252b5132 2887 }
84e43642 2888 }
252b5132 2889
84e43642
BE
2890 {
2891 bfd_vma vma = 0;
2892 /* Size up all the sections. */
2893 for (i = 0; i < NSECS; i++)
252b5132 2894 {
84e43642 2895 sinfo *si = secdata + i;
252b5132 2896
84e43642
BE
2897 bfd_set_section_size (abfd, si->sec, si->size);
2898 bfd_set_section_vma (abfd, si->sec, vma);
252b5132 2899 }
84e43642
BE
2900 }
2901 /* Write them out. */
2902 for (i = 0; i < NSECS; i++)
2903 {
2904 sinfo *si = secdata + i;
252b5132 2905
84e43642
BE
2906 if (i == IDATA5 && no_idata5)
2907 continue;
252b5132 2908
84e43642
BE
2909 if (i == IDATA4 && no_idata4)
2910 continue;
252b5132 2911
84e43642
BE
2912 bfd_set_section_contents (abfd, si->sec,
2913 si->data, 0,
2914 si->size);
252b5132 2915 }
84e43642
BE
2916
2917 bfd_set_symtab (abfd, ptrs, oidx);
2918 bfd_close (abfd);
2919 abfd = bfd_openr (outname, HOW_BFD_READ_TARGET);
dec87289
NC
2920 if (!abfd)
2921 /* xgettext:c-format */
2922 fatal (_("bfd_open failed reopen stub file: %s: %s"),
2923 outname, bfd_get_errmsg ());
2924
84e43642 2925 return abfd;
252b5132
RH
2926}
2927
2928static bfd *
2da42df6 2929make_head (void)
252b5132 2930{
bb0cb4db 2931 FILE *f = fopen (TMP_HEAD_S, FOPEN_WT);
dec87289 2932 bfd *abfd;
252b5132 2933
661016bb
NC
2934 if (f == NULL)
2935 {
2936 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S);
2937 return NULL;
2938 }
26044998 2939
252b5132 2940 fprintf (f, "%s IMAGE_IMPORT_DESCRIPTOR\n", ASM_C);
10e636d2 2941 fprintf (f, "\t.section\t.idata$2\n");
252b5132 2942
10e636d2 2943 fprintf (f,"\t%s\t%s\n", ASM_GLOBAL, head_label);
252b5132
RH
2944
2945 fprintf (f, "%s:\n", head_label);
2946
2947 fprintf (f, "\t%shname%s\t%sPtr to image import by name list\n",
2948 ASM_RVA_BEFORE, ASM_RVA_AFTER, ASM_C);
2949
2950 fprintf (f, "\t%sthis should be the timestamp, but NT sometimes\n", ASM_C);
2951 fprintf (f, "\t%sdoesn't load DLLs when this is set.\n", ASM_C);
2952 fprintf (f, "\t%s\t0\t%s loaded time\n", ASM_LONG, ASM_C);
2953 fprintf (f, "\t%s\t0\t%s Forwarder chain\n", ASM_LONG, ASM_C);
2954 fprintf (f, "\t%s__%s_iname%s\t%s imported dll's name\n",
2955 ASM_RVA_BEFORE,
2956 imp_name_lab,
2957 ASM_RVA_AFTER,
2958 ASM_C);
2959 fprintf (f, "\t%sfthunk%s\t%s pointer to firstthunk\n",
2960 ASM_RVA_BEFORE,
2961 ASM_RVA_AFTER, ASM_C);
2962
2963 fprintf (f, "%sStuff for compatibility\n", ASM_C);
2964
2965 if (!no_idata5)
2966 {
2967 fprintf (f, "\t.section\t.idata$5\n");
e77b97d4
KT
2968 if (use_nul_prefixed_import_tables)
2969 {
2ea2f3c6
KT
2970 if (create_for_pep)
2971 fprintf (f,"\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
2972 else
2973 fprintf (f,"\t%s\t0\n", ASM_LONG);
e77b97d4 2974 }
252b5132
RH
2975 fprintf (f, "fthunk:\n");
2976 }
26044998 2977
252b5132
RH
2978 if (!no_idata4)
2979 {
2980 fprintf (f, "\t.section\t.idata$4\n");
e77b97d4
KT
2981 if (use_nul_prefixed_import_tables)
2982 {
2ea2f3c6
KT
2983 if (create_for_pep)
2984 fprintf (f,"\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
2985 else
2986 fprintf (f,"\t%s\t0\n", ASM_LONG);
e77b97d4 2987 }
252b5132
RH
2988 fprintf (f, "hname:\n");
2989 }
26044998 2990
252b5132
RH
2991 fclose (f);
2992
49c24507 2993 assemble_file (TMP_HEAD_S, TMP_HEAD_O);
252b5132 2994
dec87289
NC
2995 abfd = bfd_openr (TMP_HEAD_O, HOW_BFD_READ_TARGET);
2996 if (abfd == NULL)
2997 /* xgettext:c-format */
2998 fatal (_("failed to open temporary head file: %s: %s"),
2999 TMP_HEAD_O, bfd_get_errmsg ());
3000
3001 return abfd;
252b5132
RH
3002}
3003
10e636d2
DK
3004bfd *
3005make_delay_head (void)
3006{
3007 FILE *f = fopen (TMP_HEAD_S, FOPEN_WT);
dec87289 3008 bfd *abfd;
10e636d2
DK
3009
3010 if (f == NULL)
3011 {
3012 fatal (_("failed to open temporary head file: %s"), TMP_HEAD_S);
3013 return NULL;
3014 }
3015
3016 /* Output the __tailMerge__xxx function */
3017 fprintf (f, "%s Import trampoline\n", ASM_C);
3018 fprintf (f, "\t.section\t.text\n");
3019 fprintf(f,"\t%s\t%s\n", ASM_GLOBAL, head_label);
3020 fprintf (f, "%s:\n", head_label);
3021 fprintf (f, mtable[machine].trampoline, imp_name_lab);
3022
3023 /* Output the delay import descriptor */
3024 fprintf (f, "\n%s DELAY_IMPORT_DESCRIPTOR\n", ASM_C);
3025 fprintf (f, ".section\t.text$2\n");
3026 fprintf (f,"%s __DELAY_IMPORT_DESCRIPTOR_%s\n", ASM_GLOBAL,imp_name_lab);
3027 fprintf (f, "__DELAY_IMPORT_DESCRIPTOR_%s:\n", imp_name_lab);
3028 fprintf (f, "\t%s 1\t%s grAttrs\n", ASM_LONG, ASM_C);
3029 fprintf (f, "\t%s__%s_iname%s\t%s rvaDLLName\n",
3030 ASM_RVA_BEFORE, imp_name_lab, ASM_RVA_AFTER, ASM_C);
3031 fprintf (f, "\t%s__DLL_HANDLE_%s%s\t%s rvaHmod\n",
3032 ASM_RVA_BEFORE, imp_name_lab, ASM_RVA_AFTER, ASM_C);
3033 fprintf (f, "\t%s__IAT_%s%s\t%s rvaIAT\n",
3034 ASM_RVA_BEFORE, imp_name_lab, ASM_RVA_AFTER, ASM_C);
3035 fprintf (f, "\t%s__INT_%s%s\t%s rvaINT\n",
3036 ASM_RVA_BEFORE, imp_name_lab, ASM_RVA_AFTER, ASM_C);
3037 fprintf (f, "\t%s\t0\t%s rvaBoundIAT\n", ASM_LONG, ASM_C);
3038 fprintf (f, "\t%s\t0\t%s rvaUnloadIAT\n", ASM_LONG, ASM_C);
3039 fprintf (f, "\t%s\t0\t%s dwTimeStamp\n", ASM_LONG, ASM_C);
3040
3041 /* Output the dll_handle */
3042 fprintf (f, "\n.section .data\n");
3043 fprintf (f, "__DLL_HANDLE_%s:\n", imp_name_lab);
3044 fprintf (f, "\t%s\t0\t%s Handle\n", ASM_LONG, ASM_C);
9a30f236
KT
3045 if (create_for_pep)
3046 fprintf (f, "\t%s\t0\n", ASM_LONG);
10e636d2
DK
3047 fprintf (f, "\n");
3048
3049 fprintf (f, "%sStuff for compatibility\n", ASM_C);
3050
3051 if (!no_idata5)
3052 {
bf201fdd 3053 fprintf (f, "\t.section\t.idata$5\n");
10e636d2 3054 /* NULL terminating list. */
9a30f236
KT
3055 if (create_for_pep)
3056 fprintf (f,"\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
3057 else
3058 fprintf (f,"\t%s\t0\n", ASM_LONG);
10e636d2
DK
3059 fprintf (f, "__IAT_%s:\n", imp_name_lab);
3060 }
3061
3062 if (!no_idata4)
3063 {
3064 fprintf (f, "\t.section\t.idata$4\n");
3065 fprintf (f, "\t%s\t0\n", ASM_LONG);
9a30f236
KT
3066 if (create_for_pep)
3067 fprintf (f, "\t%s\t0\n", ASM_LONG);
10e636d2
DK
3068 fprintf (f, "\t.section\t.idata$4\n");
3069 fprintf (f, "__INT_%s:\n", imp_name_lab);
3070 }
3071
3072 fprintf (f, "\t.section\t.idata$2\n");
3073
3074 fclose (f);
3075
3076 assemble_file (TMP_HEAD_S, TMP_HEAD_O);
3077
dec87289
NC
3078 abfd = bfd_openr (TMP_HEAD_O, HOW_BFD_READ_TARGET);
3079 if (abfd == NULL)
3080 /* xgettext:c-format */
3081 fatal (_("failed to open temporary head file: %s: %s"),
3082 TMP_HEAD_O, bfd_get_errmsg ());
3083
3084 return abfd;
10e636d2
DK
3085}
3086
252b5132 3087static bfd *
2da42df6 3088make_tail (void)
252b5132 3089{
bb0cb4db 3090 FILE *f = fopen (TMP_TAIL_S, FOPEN_WT);
dec87289 3091 bfd *abfd;
252b5132 3092
661016bb
NC
3093 if (f == NULL)
3094 {
3095 fatal (_("failed to open temporary tail file: %s"), TMP_TAIL_S);
3096 return NULL;
3097 }
26044998 3098
252b5132
RH
3099 if (!no_idata4)
3100 {
10e636d2 3101 fprintf (f, "\t.section\t.idata$4\n");
2ea2f3c6
KT
3102 if (create_for_pep)
3103 fprintf (f,"\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
3104 else
3105 fprintf (f,"\t%s\t0\n", ASM_LONG); /* NULL terminating list. */
252b5132 3106 }
26044998 3107
252b5132
RH
3108 if (!no_idata5)
3109 {
10e636d2 3110 fprintf (f, "\t.section\t.idata$5\n");
2ea2f3c6
KT
3111 if (create_for_pep)
3112 fprintf (f,"\t%s\t0\n\t%s\t0\n", ASM_LONG, ASM_LONG);
3113 else
3114 fprintf (f,"\t%s\t0\n", ASM_LONG); /* NULL terminating list. */
252b5132
RH
3115 }
3116
3117#ifdef DLLTOOL_PPC
3118 /* Normally, we need to see a null descriptor built in idata$3 to
3119 act as the terminator for the list. The ideal way, I suppose,
3120 would be to mark this section as a comdat type 2 section, so
3121 only one would appear in the final .exe (if our linker supported
3122 comdat, that is) or cause it to be inserted by something else (say
c9e38879 3123 crt0). */
252b5132 3124
10e636d2 3125 fprintf (f, "\t.section\t.idata$3\n");
252b5132
RH
3126 fprintf (f, "\t%s\t0\n", ASM_LONG);
3127 fprintf (f, "\t%s\t0\n", ASM_LONG);
3128 fprintf (f, "\t%s\t0\n", ASM_LONG);
3129 fprintf (f, "\t%s\t0\n", ASM_LONG);
3130 fprintf (f, "\t%s\t0\n", ASM_LONG);
3131#endif
3132
3133#ifdef DLLTOOL_PPC
3134 /* Other PowerPC NT compilers use idata$6 for the dllname, so I
c9e38879 3135 do too. Original, huh? */
10e636d2 3136 fprintf (f, "\t.section\t.idata$6\n");
252b5132 3137#else
10e636d2 3138 fprintf (f, "\t.section\t.idata$7\n");
252b5132
RH
3139#endif
3140
3141 fprintf (f, "\t%s\t__%s_iname\n", ASM_GLOBAL, imp_name_lab);
3142 fprintf (f, "__%s_iname:\t%s\t\"%s\"\n",
3143 imp_name_lab, ASM_TEXT, dll_name);
3144
3145 fclose (f);
3146
49c24507 3147 assemble_file (TMP_TAIL_S, TMP_TAIL_O);
26044998 3148
dec87289
NC
3149 abfd = bfd_openr (TMP_TAIL_O, HOW_BFD_READ_TARGET);
3150 if (abfd == NULL)
3151 /* xgettext:c-format */
3152 fatal (_("failed to open temporary tail file: %s: %s"),
3153 TMP_TAIL_O, bfd_get_errmsg ());
3154
3155 return abfd;
252b5132
RH
3156}
3157
3158static void
10e636d2 3159gen_lib_file (int delay)
252b5132
RH
3160{
3161 int i;
3162 export_type *exp;
3163 bfd *ar_head;
3164 bfd *ar_tail;
3165 bfd *outarch;
3166 bfd * head = 0;
3167
3168 unlink (imp_name);
3169
49c24507 3170 outarch = bfd_openw (imp_name, HOW_BFD_WRITE_TARGET);
252b5132
RH
3171
3172 if (!outarch)
3173 /* xgettext:c-format */
dec87289
NC
3174 fatal (_("Can't create .lib file: %s: %s"),
3175 imp_name, bfd_get_errmsg ());
252b5132
RH
3176
3177 /* xgettext:c-format */
37cc8ec1 3178 inform (_("Creating library file: %s"), imp_name);
26044998 3179
252b5132
RH
3180 bfd_set_format (outarch, bfd_archive);
3181 outarch->has_armap = 1;
a8da6403 3182 outarch->is_thin_archive = 0;
252b5132 3183
26044998 3184 /* Work out a reasonable size of things to put onto one line. */
10e636d2
DK
3185 if (delay)
3186 {
3187 ar_head = make_delay_head ();
3188 }
3189 else
3190 {
3191 ar_head = make_head ();
3192 }
252b5132
RH
3193 ar_tail = make_tail();
3194
3195 if (ar_head == NULL || ar_tail == NULL)
3196 return;
26044998 3197
252b5132
RH
3198 for (i = 0; (exp = d_exports_lexically[i]); i++)
3199 {
7aa52b1f
NC
3200 bfd *n;
3201 /* Don't add PRIVATE entries to import lib. */
3202 if (exp->private)
3203 continue;
10e636d2 3204 n = make_one_lib_file (exp, i, delay);
cc481421 3205 n->archive_next = head;
252b5132 3206 head = n;
0fd555c4
NC
3207 if (ext_prefix_alias)
3208 {
3209 export_type alias_exp;
3210
3211 assert (i < PREFIX_ALIAS_BASE);
3212 alias_exp.name = make_imp_label (ext_prefix_alias, exp->name);
3213 alias_exp.internal_name = exp->internal_name;
bf201fdd 3214 alias_exp.its_name = exp->its_name;
0fd555c4
NC
3215 alias_exp.import_name = exp->name;
3216 alias_exp.ordinal = exp->ordinal;
3217 alias_exp.constant = exp->constant;
3218 alias_exp.noname = exp->noname;
3219 alias_exp.private = exp->private;
3220 alias_exp.data = exp->data;
3221 alias_exp.hint = exp->hint;
3222 alias_exp.forward = exp->forward;
3223 alias_exp.next = exp->next;
10e636d2 3224 n = make_one_lib_file (&alias_exp, i + PREFIX_ALIAS_BASE, delay);
cc481421 3225 n->archive_next = head;
0fd555c4
NC
3226 head = n;
3227 }
252b5132
RH
3228 }
3229
c9e38879 3230 /* Now stick them all into the archive. */
cc481421
AM
3231 ar_head->archive_next = head;
3232 ar_tail->archive_next = ar_head;
252b5132
RH
3233 head = ar_tail;
3234
3235 if (! bfd_set_archive_head (outarch, head))
3236 bfd_fatal ("bfd_set_archive_head");
26044998 3237
252b5132
RH
3238 if (! bfd_close (outarch))
3239 bfd_fatal (imp_name);
3240
3241 while (head != NULL)
3242 {
cc481421 3243 bfd *n = head->archive_next;
252b5132
RH
3244 bfd_close (head);
3245 head = n;
3246 }
3247
c9e38879 3248 /* Delete all the temp files. */
252b5132
RH
3249 if (dontdeltemps == 0)
3250 {
3251 unlink (TMP_HEAD_O);
3252 unlink (TMP_HEAD_S);
3253 unlink (TMP_TAIL_O);
3254 unlink (TMP_TAIL_S);
3255 }
3256
3257 if (dontdeltemps < 2)
3258 {
bb0cb4db
ILT
3259 char *name;
3260
bf7a6389 3261 name = (char *) alloca (strlen (TMP_STUB) + 10);
7aa52b1f 3262 for (i = 0; (exp = d_exports_lexically[i]); i++)
252b5132 3263 {
7aa52b1f
NC
3264 /* Don't delete non-existent stubs for PRIVATE entries. */
3265 if (exp->private)
3266 continue;
bb0cb4db
ILT
3267 sprintf (name, "%s%05d.o", TMP_STUB, i);
3268 if (unlink (name) < 0)
252b5132 3269 /* xgettext:c-format */
37cc8ec1 3270 non_fatal (_("cannot delete %s: %s"), name, strerror (errno));
0fd555c4
NC
3271 if (ext_prefix_alias)
3272 {
3273 sprintf (name, "%s%05d.o", TMP_STUB, i + PREFIX_ALIAS_BASE);
3274 if (unlink (name) < 0)
3275 /* xgettext:c-format */
3276 non_fatal (_("cannot delete %s: %s"), name, strerror (errno));
3277 }
252b5132
RH
3278 }
3279 }
26044998 3280
252b5132
RH
3281 inform (_("Created lib file"));
3282}
3283
25893672 3284/* Append a copy of data (cast to char *) to list. */
71c57c16
NC
3285
3286static void
25893672 3287dll_name_list_append (dll_name_list_type * list, bfd_byte * data)
71c57c16 3288{
dabf2221
AM
3289 dll_name_list_node_type * entry;
3290
25893672
NC
3291 /* Error checking. */
3292 if (! list || ! list->tail)
3293 return;
3294
71c57c16 3295 /* Allocate new node. */
dabf2221
AM
3296 entry = ((dll_name_list_node_type *)
3297 xmalloc (sizeof (dll_name_list_node_type)));
71c57c16
NC
3298
3299 /* Initialize its values. */
3300 entry->dllname = xstrdup ((char *) data);
3301 entry->next = NULL;
3302
3303 /* Add to tail, and move tail. */
25893672
NC
3304 list->tail->next = entry;
3305 list->tail = entry;
71c57c16
NC
3306}
3307
25893672
NC
3308/* Count the number of entries in list. */
3309
71c57c16 3310static int
25893672 3311dll_name_list_count (dll_name_list_type * list)
71c57c16 3312{
dabf2221
AM
3313 dll_name_list_node_type * p;
3314 int count = 0;
3315
25893672
NC
3316 /* Error checking. */
3317 if (! list || ! list->head)
3318 return 0;
3319
dabf2221 3320 p = list->head;
71c57c16
NC
3321
3322 while (p && p->next)
3323 {
3324 count++;
3325 p = p->next;
3326 }
3327 return count;
3328}
3329
25893672
NC
3330/* Print each entry in list to stdout. */
3331
71c57c16 3332static void
25893672 3333dll_name_list_print (dll_name_list_type * list)
71c57c16 3334{
dabf2221
AM
3335 dll_name_list_node_type * p;
3336
25893672
NC
3337 /* Error checking. */
3338 if (! list || ! list->head)
3339 return;
3340
dabf2221 3341 p = list->head;
71c57c16
NC
3342
3343 while (p && p->next && p->next->dllname && *(p->next->dllname))
3344 {
3345 printf ("%s\n", p->next->dllname);
3346 p = p->next;
3347 }
3348}
3349
25893672
NC
3350/* Free all entries in list, and list itself. */
3351
3352static void
3353dll_name_list_free (dll_name_list_type * list)
3354{
3355 if (list)
3356 {
3357 dll_name_list_free_contents (list->head);
3358 list->head = NULL;
3359 list->tail = NULL;
3360 free (list);
3361 }
3362}
3363
3364/* Recursive function to free all nodes entry->next->next...
3365 as well as entry itself. */
3366
71c57c16 3367static void
25893672 3368dll_name_list_free_contents (dll_name_list_node_type * entry)
71c57c16
NC
3369{
3370 if (entry)
3371 {
3372 if (entry->next)
3373 {
25893672 3374 dll_name_list_free_contents (entry->next);
71c57c16
NC
3375 entry->next = NULL;
3376 }
3377 if (entry->dllname)
3378 {
3379 free (entry->dllname);
3380 entry->dllname = NULL;
3381 }
3382 free (entry);
3383 }
3384}
3385
25893672
NC
3386/* Allocate and initialize a dll_name_list_type object,
3387 including its sentinel node. Caller is responsible
3388 for calling dll_name_list_free when finished with
3389 the list. */
3390
3391static dll_name_list_type *
3392dll_name_list_create (void)
3393{
3394 /* Allocate list. */
3395 dll_name_list_type * list = xmalloc (sizeof (dll_name_list_type));
3396
3397 /* Allocate and initialize sentinel node. */
3398 list->head = xmalloc (sizeof (dll_name_list_node_type));
3399 list->head->dllname = NULL;
3400 list->head->next = NULL;
3401
3402 /* Bookkeeping for empty list. */
3403 list->tail = list->head;
3404
3405 return list;
3406}
3407
71c57c16
NC
3408/* Search the symbol table of the suppled BFD for a symbol whose name matches
3409 OBJ (where obj is cast to const char *). If found, set global variable
3410 identify_member_contains_symname_result TRUE. It is the caller's
3411 responsibility to set the result variable FALSE before iterating with
3412 this function. */
3413
3414static void
3415identify_member_contains_symname (bfd * abfd,
3416 bfd * archive_bfd ATTRIBUTE_UNUSED,
3417 void * obj)
3418{
3419 long storage_needed;
3420 asymbol ** symbol_table;
3421 long number_of_symbols;
3422 long i;
25893672 3423 symname_search_data_type * search_data = (symname_search_data_type *) obj;
71c57c16
NC
3424
3425 /* If we already found the symbol in a different member,
3426 short circuit. */
25893672 3427 if (search_data->found)
71c57c16
NC
3428 return;
3429
3430 storage_needed = bfd_get_symtab_upper_bound (abfd);
3431 if (storage_needed <= 0)
3432 return;
3433
3434 symbol_table = xmalloc (storage_needed);
3435 number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table);
3436 if (number_of_symbols < 0)
3437 {
3438 free (symbol_table);
3439 return;
3440 }
3441
3442 for (i = 0; i < number_of_symbols; i++)
3443 {
25893672
NC
3444 if (strncmp (symbol_table[i]->name,
3445 search_data->symname,
3446 strlen (search_data->symname)) == 0)
71c57c16 3447 {
25893672 3448 search_data->found = TRUE;
71c57c16
NC
3449 break;
3450 }
3451 }
3452 free (symbol_table);
3453}
3454
3455/* This is the main implementation for the --identify option.
3456 Given the name of an import library in identify_imp_name, first determine
3457 if the import library is a GNU binutils-style one (where the DLL name is
3458 stored in an .idata$7 (.idata$6 on PPC) section, or if it is a MS-style
3459 one (where the DLL name, along with much other data, is stored in the
3460 .idata$6 section). We determine the style of import library by searching
3461 for the DLL-structure symbol inserted by MS tools:
3462 __NULL_IMPORT_DESCRIPTOR.
3463
3464 Once we know which section to search, evaluate each section for the
3465 appropriate properties that indicate it may contain the name of the
3466 associated DLL (this differs depending on the style). Add the contents
3467 of all sections which meet the criteria to a linked list of dll names.
d4732f7c 3468
71c57c16
NC
3469 Finally, print them all to stdout. (If --identify-strict, an error is
3470 reported if more than one match was found). */
d4732f7c 3471
d4732f7c
CW
3472static void
3473identify_dll_for_implib (void)
3474{
71c57c16
NC
3475 bfd * abfd = NULL;
3476 int count = 0;
25893672
NC
3477 identify_data_type identify_data;
3478 symname_search_data_type search_data;
71c57c16 3479
25893672
NC
3480 /* Initialize identify_data. */
3481 identify_data.list = dll_name_list_create ();
3482 identify_data.ms_style_implib = FALSE;
3483
3484 /* Initialize search_data. */
3485 search_data.symname = "__NULL_IMPORT_DESCRIPTOR";
3486 search_data.found = FALSE;
d4732f7c
CW
3487
3488 bfd_init ();
3489
3490 abfd = bfd_openr (identify_imp_name, 0);
3491 if (abfd == NULL)
dec87289
NC
3492 /* xgettext:c-format */
3493 fatal (_("Can't open .lib file: %s: %s"),
3494 identify_imp_name, bfd_get_errmsg ());
71c57c16
NC
3495
3496 if (! bfd_check_format (abfd, bfd_archive))
d4732f7c 3497 {
71c57c16
NC
3498 if (! bfd_close (abfd))
3499 bfd_fatal (identify_imp_name);
3500
3501 fatal (_("%s is not a library"), identify_imp_name);
d4732f7c 3502 }
71c57c16
NC
3503
3504 /* Detect if this a Microsoft import library. */
25893672
NC
3505 identify_search_archive (abfd,
3506 identify_member_contains_symname,
3507 (void *)(& search_data));
3508 if (search_data.found)
3509 identify_data.ms_style_implib = TRUE;
71c57c16
NC
3510
3511 /* Rewind the bfd. */
3512 if (! bfd_close (abfd))
3513 bfd_fatal (identify_imp_name);
3514 abfd = bfd_openr (identify_imp_name, 0);
3515 if (abfd == NULL)
3516 bfd_fatal (identify_imp_name);
3517
d4732f7c
CW
3518 if (!bfd_check_format (abfd, bfd_archive))
3519 {
3520 if (!bfd_close (abfd))
3521 bfd_fatal (identify_imp_name);
3522
71c57c16 3523 fatal (_("%s is not a library"), identify_imp_name);
d4732f7c 3524 }
71c57c16
NC
3525
3526 /* Now search for the dll name. */
25893672
NC
3527 identify_search_archive (abfd,
3528 identify_search_member,
3529 (void *)(& identify_data));
d4732f7c 3530
71c57c16 3531 if (! bfd_close (abfd))
d4732f7c
CW
3532 bfd_fatal (identify_imp_name);
3533
25893672 3534 count = dll_name_list_count (identify_data.list);
71c57c16 3535 if (count > 0)
d4732f7c 3536 {
71c57c16
NC
3537 if (identify_strict && count > 1)
3538 {
25893672
NC
3539 dll_name_list_free (identify_data.list);
3540 identify_data.list = NULL;
71c57c16
NC
3541 fatal (_("Import library `%s' specifies two or more dlls"),
3542 identify_imp_name);
3543 }
25893672
NC
3544 dll_name_list_print (identify_data.list);
3545 dll_name_list_free (identify_data.list);
3546 identify_data.list = NULL;
d4732f7c
CW
3547 }
3548 else
3549 {
25893672
NC
3550 dll_name_list_free (identify_data.list);
3551 identify_data.list = NULL;
71c57c16
NC
3552 fatal (_("Unable to determine dll name for `%s' (not an import library?)"),
3553 identify_imp_name);
d4732f7c
CW
3554 }
3555}
3556
71c57c16
NC
3557/* Loop over all members of the archive, applying the supplied function to
3558 each member that is a bfd_object. The function will be called as if:
3559 func (member_bfd, abfd, user_storage) */
d4732f7c 3560
d4732f7c 3561static void
71c57c16
NC
3562identify_search_archive (bfd * abfd,
3563 void (* operation) (bfd *, bfd *, void *),
3564 void * user_storage)
d4732f7c 3565{
71c57c16
NC
3566 bfd * arfile = NULL;
3567 bfd * last_arfile = NULL;
3568 char ** matching;
d4732f7c
CW
3569
3570 while (1)
3571 {
3572 arfile = bfd_openr_next_archived_file (abfd, arfile);
3573
3574 if (arfile == NULL)
3575 {
3576 if (bfd_get_error () != bfd_error_no_more_archived_files)
3577 bfd_fatal (bfd_get_filename (abfd));
3578 break;
3579 }
71c57c16 3580
d4732f7c 3581 if (bfd_check_format_matches (arfile, bfd_object, &matching))
71c57c16 3582 (*operation) (arfile, abfd, user_storage);
d4732f7c
CW
3583 else
3584 {
3585 bfd_nonfatal (bfd_get_filename (arfile));
3586 free (matching);
3587 }
71c57c16 3588
d4732f7c 3589 if (last_arfile != NULL)
71c57c16
NC
3590 bfd_close (last_arfile);
3591
d4732f7c
CW
3592 last_arfile = arfile;
3593 }
3594
3595 if (last_arfile != NULL)
3596 {
3597 bfd_close (last_arfile);
3598 }
3599}
3600
71c57c16
NC
3601/* Call the identify_search_section() function for each section of this
3602 archive member. */
d4732f7c 3603
d4732f7c 3604static void
71c57c16
NC
3605identify_search_member (bfd *abfd,
3606 bfd *archive_bfd ATTRIBUTE_UNUSED,
3607 void *obj)
d4732f7c 3608{
71c57c16 3609 bfd_map_over_sections (abfd, identify_search_section, obj);
d4732f7c
CW
3610}
3611
71c57c16 3612/* This predicate returns true if section->name matches the desired value.
25893672
NC
3613 By default, this is .idata$7 (.idata$6 on PPC, or if the import
3614 library is ms-style). */
d4732f7c 3615
d4732f7c 3616static bfd_boolean
25893672 3617identify_process_section_p (asection * section, bfd_boolean ms_style_implib)
d4732f7c
CW
3618{
3619 static const char * SECTION_NAME =
3620#ifdef DLLTOOL_PPC
3621 /* dllname is stored in idata$6 on PPC */
3622 ".idata$6";
3623#else
3624 ".idata$7";
3625#endif
71c57c16 3626 static const char * MS_SECTION_NAME = ".idata$6";
25893672 3627
71c57c16 3628 const char * section_name =
25893672 3629 (ms_style_implib ? MS_SECTION_NAME : SECTION_NAME);
71c57c16
NC
3630
3631 if (strcmp (section_name, section->name) == 0)
d4732f7c
CW
3632 return TRUE;
3633 return FALSE;
3634}
3635
71c57c16
NC
3636/* If *section has contents and its name is .idata$7 (.data$6 on PPC or if
3637 import lib ms-generated) -- and it satisfies several other constraints
25893672 3638 -- then add the contents of the section to obj->list. */
d4732f7c 3639
d4732f7c 3640static void
25893672 3641identify_search_section (bfd * abfd, asection * section, void * obj)
d4732f7c
CW
3642{
3643 bfd_byte *data = 0;
3644 bfd_size_type datasize;
25893672
NC
3645 identify_data_type * identify_data = (identify_data_type *)obj;
3646 bfd_boolean ms_style = identify_data->ms_style_implib;
d4732f7c
CW
3647
3648 if ((section->flags & SEC_HAS_CONTENTS) == 0)
3649 return;
3650
25893672 3651 if (! identify_process_section_p (section, ms_style))
d4732f7c
CW
3652 return;
3653
71c57c16
NC
3654 /* Binutils import libs seem distinguish the .idata$7 section that contains
3655 the DLL name from other .idata$7 sections by the absence of the
3656 SEC_RELOC flag. */
25893672 3657 if (!ms_style && ((section->flags & SEC_RELOC) == SEC_RELOC))
71c57c16
NC
3658 return;
3659
3660 /* MS import libs seem to distinguish the .idata$6 section
3661 that contains the DLL name from other .idata$6 sections
3662 by the presence of the SEC_DATA flag. */
25893672 3663 if (ms_style && ((section->flags & SEC_DATA) == 0))
71c57c16
NC
3664 return;
3665
d4732f7c
CW
3666 if ((datasize = bfd_section_size (abfd, section)) == 0)
3667 return;
3668
71c57c16 3669 data = (bfd_byte *) xmalloc (datasize + 1);
d4732f7c
CW
3670 data[0] = '\0';
3671
3672 bfd_get_section_contents (abfd, section, data, 0, datasize);
3673 data[datasize] = '\0';
3674
71c57c16
NC
3675 /* Use a heuristic to determine if data is a dll name.
3676 Possible to defeat this if (a) the library has MANY
3677 (more than 0x302f) imports, (b) it is an ms-style
3678 import library, but (c) it is buggy, in that the SEC_DATA
3679 flag is set on the "wrong" sections. This heuristic might
25893672
NC
3680 also fail to record a valid dll name if the dllname uses
3681 a multibyte or unicode character set (is that valid?).
71c57c16
NC
3682
3683 This heuristic is based on the fact that symbols names in
3684 the chosen section -- as opposed to the dll name -- begin
3685 at offset 2 in the data. The first two bytes are a 16bit
3686 little-endian count, and start at 0x0000. However, the dll
3687 name begins at offset 0 in the data. We assume that the
3688 dll name does not contain unprintable characters. */
3689 if (data[0] != '\0' && ISPRINT (data[0])
3690 && ((datasize < 2) || ISPRINT (data[1])))
25893672 3691 dll_name_list_append (identify_data->list, data);
d4732f7c
CW
3692
3693 free (data);
3694}
3695
252b5132 3696/* Run through the information gathered from the .o files and the
c9e38879 3697 .def file and work out the best stuff. */
7aa52b1f 3698
252b5132 3699static int
2da42df6 3700pfunc (const void *a, const void *b)
252b5132
RH
3701{
3702 export_type *ap = *(export_type **) a;
3703 export_type *bp = *(export_type **) b;
71c57c16 3704
252b5132
RH
3705 if (ap->ordinal == bp->ordinal)
3706 return 0;
3707
c9e38879 3708 /* Unset ordinals go to the bottom. */
252b5132
RH
3709 if (ap->ordinal == -1)
3710 return 1;
3711 if (bp->ordinal == -1)
3712 return -1;
3713 return (ap->ordinal - bp->ordinal);
3714}
3715
3716static int
2da42df6 3717nfunc (const void *a, const void *b)
252b5132
RH
3718{
3719 export_type *ap = *(export_type **) a;
3720 export_type *bp = *(export_type **) b;
c6972290
NC
3721 const char *an = ap->name;
3722 const char *bn = bp->name;
bf201fdd
KT
3723 if (ap->its_name)
3724 an = ap->its_name;
3725 if (bp->its_name)
3726 an = bp->its_name;
c6972290
NC
3727 if (killat)
3728 {
3729 an = (an[0] == '@') ? an + 1 : an;
3730 bn = (bn[0] == '@') ? bn + 1 : bn;
3731 }
3732
3733 return (strcmp (an, bn));
252b5132
RH
3734}
3735
3736static void
2da42df6 3737remove_null_names (export_type **ptr)
252b5132
RH
3738{
3739 int src;
3740 int dst;
c9e38879 3741
252b5132
RH
3742 for (dst = src = 0; src < d_nfuncs; src++)
3743 {
3744 if (ptr[src])
3745 {
3746 ptr[dst] = ptr[src];
3747 dst++;
3748 }
3749 }
3750 d_nfuncs = dst;
3751}
3752
252b5132 3753static void
2da42df6 3754process_duplicates (export_type **d_export_vec)
252b5132
RH
3755{
3756 int more = 1;
3757 int i;
c9e38879 3758
252b5132
RH
3759 while (more)
3760 {
252b5132 3761 more = 0;
c9e38879 3762 /* Remove duplicates. */
252b5132
RH
3763 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), nfunc);
3764
252b5132
RH
3765 for (i = 0; i < d_nfuncs - 1; i++)
3766 {
3767 if (strcmp (d_export_vec[i]->name,
3768 d_export_vec[i + 1]->name) == 0)
3769 {
252b5132
RH
3770 export_type *a = d_export_vec[i];
3771 export_type *b = d_export_vec[i + 1];
3772
3773 more = 1;
26044998 3774
252b5132 3775 /* xgettext:c-format */
37cc8ec1 3776 inform (_("Warning, ignoring duplicate EXPORT %s %d,%d"),
252b5132 3777 a->name, a->ordinal, b->ordinal);
26044998 3778
252b5132
RH
3779 if (a->ordinal != -1
3780 && b->ordinal != -1)
3781 /* xgettext:c-format */
ea6e992c 3782 fatal (_("Error, duplicate EXPORT with ordinals: %s"),
252b5132
RH
3783 a->name);
3784
c9e38879 3785 /* Merge attributes. */
252b5132
RH
3786 b->ordinal = a->ordinal > 0 ? a->ordinal : b->ordinal;
3787 b->constant |= a->constant;
3788 b->noname |= a->noname;
3789 b->data |= a->data;
3790 d_export_vec[i] = 0;
3791 }
3792
252b5132 3793 remove_null_names (d_export_vec);
252b5132
RH
3794 }
3795 }
3796
c9e38879 3797 /* Count the names. */
252b5132 3798 for (i = 0; i < d_nfuncs; i++)
7aa52b1f
NC
3799 if (!d_export_vec[i]->noname)
3800 d_named_nfuncs++;
252b5132
RH
3801}
3802
3803static void
2da42df6 3804fill_ordinals (export_type **d_export_vec)
252b5132
RH
3805{
3806 int lowest = -1;
3807 int i;
3808 char *ptr;
3809 int size = 65536;
3810
3811 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3812
c9e38879 3813 /* Fill in the unset ordinals with ones from our range. */
252b5132
RH
3814 ptr = (char *) xmalloc (size);
3815
3816 memset (ptr, 0, size);
3817
c9e38879 3818 /* Mark in our large vector all the numbers that are taken. */
252b5132
RH
3819 for (i = 0; i < d_nfuncs; i++)
3820 {
3821 if (d_export_vec[i]->ordinal != -1)
3822 {
3823 ptr[d_export_vec[i]->ordinal] = 1;
c9e38879 3824
252b5132 3825 if (lowest == -1 || d_export_vec[i]->ordinal < lowest)
c9e38879 3826 lowest = d_export_vec[i]->ordinal;
252b5132
RH
3827 }
3828 }
3829
3830 /* Start at 1 for compatibility with MS toolchain. */
3831 if (lowest == -1)
3832 lowest = 1;
3833
26044998 3834 /* Now fill in ordinals where the user wants us to choose. */
252b5132
RH
3835 for (i = 0; i < d_nfuncs; i++)
3836 {
3837 if (d_export_vec[i]->ordinal == -1)
3838 {
7aa52b1f 3839 int j;
252b5132 3840
26044998 3841 /* First try within or after any user supplied range. */
252b5132
RH
3842 for (j = lowest; j < size; j++)
3843 if (ptr[j] == 0)
3844 {
3845 ptr[j] = 1;
3846 d_export_vec[i]->ordinal = j;
3847 goto done;
3848 }
3849
26044998 3850 /* Then try before the range. */
252b5132
RH
3851 for (j = lowest; j >0; j--)
3852 if (ptr[j] == 0)
3853 {
3854 ptr[j] = 1;
3855 d_export_vec[i]->ordinal = j;
3856 goto done;
3857 }
3858 done:;
3859 }
3860 }
3861
3862 free (ptr);
3863
c9e38879 3864 /* And resort. */
252b5132
RH
3865 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc);
3866
3867 /* Work out the lowest and highest ordinal numbers. */
3868 if (d_nfuncs)
3869 {
3870 if (d_export_vec[0])
3871 d_low_ord = d_export_vec[0]->ordinal;
3872 if (d_export_vec[d_nfuncs-1])
3873 d_high_ord = d_export_vec[d_nfuncs-1]->ordinal;
3874 }
3875}
3876
252b5132 3877static void
2da42df6 3878mangle_defs (void)
252b5132 3879{
c9e38879 3880 /* First work out the minimum ordinal chosen. */
252b5132
RH
3881 export_type *exp;
3882
3883 int i;
3884 int hint = 0;
7aa52b1f 3885 export_type **d_export_vec = xmalloc (sizeof (export_type *) * d_nfuncs);
252b5132
RH
3886
3887 inform (_("Processing definitions"));
26044998 3888
252b5132 3889 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
c9e38879 3890 d_export_vec[i] = exp;
252b5132
RH
3891
3892 process_duplicates (d_export_vec);
3893 fill_ordinals (d_export_vec);
3894
c9e38879 3895 /* Put back the list in the new order. */
252b5132
RH
3896 d_exports = 0;
3897 for (i = d_nfuncs - 1; i >= 0; i--)
3898 {
3899 d_export_vec[i]->next = d_exports;
3900 d_exports = d_export_vec[i];
3901 }
3902
c9e38879 3903 /* Build list in alpha order. */
252b5132
RH
3904 d_exports_lexically = (export_type **)
3905 xmalloc (sizeof (export_type *) * (d_nfuncs + 1));
3906
3907 for (i = 0, exp = d_exports; exp; i++, exp = exp->next)
c9e38879
NC
3908 d_exports_lexically[i] = exp;
3909
252b5132
RH
3910 d_exports_lexically[i] = 0;
3911
c6972290 3912 qsort (d_exports_lexically, i, sizeof (export_type *), nfunc);
252b5132 3913
c9e38879 3914 /* Fill exp entries with their hint values. */
252b5132 3915 for (i = 0; i < d_nfuncs; i++)
c9e38879
NC
3916 if (!d_exports_lexically[i]->noname || show_allnames)
3917 d_exports_lexically[i]->hint = hint++;
26044998 3918
252b5132
RH
3919 inform (_("Processed definitions"));
3920}
3921
252b5132 3922static void
2da42df6 3923usage (FILE *file, int status)
252b5132
RH
3924{
3925 /* xgetext:c-format */
8b53311e 3926 fprintf (file, _("Usage %s <option(s)> <object-file(s)>\n"), program_name);
252b5132 3927 /* xgetext:c-format */
661016bb 3928 fprintf (file, _(" -m --machine <machine> Create as DLL for <machine>. [default: %s]\n"), mname);
7e301c9c 3929 fprintf (file, _(" possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
252b5132
RH
3930 fprintf (file, _(" -e --output-exp <outname> Generate an export file.\n"));
3931 fprintf (file, _(" -l --output-lib <outname> Generate an interface library.\n"));
10e636d2 3932 fprintf (file, _(" -y --output-delaylib <outname> Create a delay-import library.\n"));
252b5132
RH
3933 fprintf (file, _(" -a --add-indirect Add dll indirects to export file.\n"));
3934 fprintf (file, _(" -D --dllname <name> Name of input dll to put into interface lib.\n"));
3935 fprintf (file, _(" -d --input-def <deffile> Name of .def file to be read in.\n"));
3936 fprintf (file, _(" -z --output-def <deffile> Name of .def file to be created.\n"));
661016bb
NC
3937 fprintf (file, _(" --export-all-symbols Export all symbols to .def\n"));
3938 fprintf (file, _(" --no-export-all-symbols Only export listed symbols\n"));
3939 fprintf (file, _(" --exclude-symbols <list> Don't export <list>\n"));
3940 fprintf (file, _(" --no-default-excludes Clear default exclude symbols\n"));
252b5132
RH
3941 fprintf (file, _(" -b --base-file <basefile> Read linker generated base file.\n"));
3942 fprintf (file, _(" -x --no-idata4 Don't generate idata$4 section.\n"));
3943 fprintf (file, _(" -c --no-idata5 Don't generate idata$5 section.\n"));
e77b97d4 3944 fprintf (file, _(" --use-nul-prefixed-import-tables Use zero prefixed idata$4 and idata$5.\n"));
14288fdc
DS
3945 fprintf (file, _(" -U --add-underscore Add underscores to all symbols in interface library.\n"));
3946 fprintf (file, _(" --add-stdcall-underscore Add underscores to stdcall symbols in interface library.\n"));
36d21de5
KT
3947 fprintf (file, _(" --no-leading-underscore All symbols shouldn't be prefixed by an underscore.\n"));
3948 fprintf (file, _(" --leading-underscore All symbols should be prefixed by an underscore.\n"));
252b5132
RH
3949 fprintf (file, _(" -k --kill-at Kill @<n> from exported names.\n"));
3950 fprintf (file, _(" -A --add-stdcall-alias Add aliases without @<n>.\n"));
607dea97 3951 fprintf (file, _(" -p --ext-prefix-alias <prefix> Add aliases with <prefix>.\n"));
252b5132
RH
3952 fprintf (file, _(" -S --as <name> Use <name> for assembler.\n"));
3953 fprintf (file, _(" -f --as-flags <flags> Pass <flags> to the assembler.\n"));
5f0f29c3 3954 fprintf (file, _(" -C --compat-implib Create backward compatible import library.\n"));
252b5132 3955 fprintf (file, _(" -n --no-delete Keep temp files (repeat for extra preservation).\n"));
f9346411 3956 fprintf (file, _(" -t --temp-prefix <prefix> Use <prefix> to construct temp file names.\n"));
d4732f7c 3957 fprintf (file, _(" -I --identify <implib> Report the name of the DLL associated with <implib>.\n"));
71c57c16 3958 fprintf (file, _(" --identify-strict Causes --identify to report error when multiple DLLs.\n"));
252b5132
RH
3959 fprintf (file, _(" -v --verbose Be verbose.\n"));
3960 fprintf (file, _(" -V --version Display the program version.\n"));
3961 fprintf (file, _(" -h --help Display this information.\n"));
07012eee 3962 fprintf (file, _(" @<file> Read options from <file>.\n"));
49e315b1
NC
3963#ifdef DLLTOOL_MCORE_ELF
3964 fprintf (file, _(" -M --mcore-elf <outname> Process mcore-elf object files into <outname>.\n"));
3965 fprintf (file, _(" -L --linker <name> Use <name> as the linker.\n"));
3966 fprintf (file, _(" -F --linker-flags <flags> Pass <flags> to the linker.\n"));
3967#endif
92f01d61
JM
3968 if (REPORT_BUGS_TO[0] && status == 0)
3969 fprintf (file, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132
RH
3970 exit (status);
3971}
3972
3973#define OPTION_EXPORT_ALL_SYMS 150
3974#define OPTION_NO_EXPORT_ALL_SYMS (OPTION_EXPORT_ALL_SYMS + 1)
3975#define OPTION_EXCLUDE_SYMS (OPTION_NO_EXPORT_ALL_SYMS + 1)
3976#define OPTION_NO_DEFAULT_EXCLUDES (OPTION_EXCLUDE_SYMS + 1)
14288fdc 3977#define OPTION_ADD_STDCALL_UNDERSCORE (OPTION_NO_DEFAULT_EXCLUDES + 1)
e77b97d4
KT
3978#define OPTION_USE_NUL_PREFIXED_IMPORT_TABLES \
3979 (OPTION_ADD_STDCALL_UNDERSCORE + 1)
71c57c16 3980#define OPTION_IDENTIFY_STRICT (OPTION_USE_NUL_PREFIXED_IMPORT_TABLES + 1)
36d21de5
KT
3981#define OPTION_NO_LEADING_UNDERSCORE (OPTION_IDENTIFY_STRICT + 1)
3982#define OPTION_LEADING_UNDERSCORE (OPTION_NO_LEADING_UNDERSCORE + 1)
252b5132
RH
3983
3984static const struct option long_options[] =
3985{
3986 {"no-delete", no_argument, NULL, 'n'},
3987 {"dllname", required_argument, NULL, 'D'},
49e315b1
NC
3988 {"no-idata4", no_argument, NULL, 'x'},
3989 {"no-idata5", no_argument, NULL, 'c'},
e77b97d4
KT
3990 {"use-nul-prefixed-import-tables", no_argument, NULL,
3991 OPTION_USE_NUL_PREFIXED_IMPORT_TABLES},
252b5132
RH
3992 {"output-exp", required_argument, NULL, 'e'},
3993 {"output-def", required_argument, NULL, 'z'},
3994 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL_SYMS},
3995 {"no-export-all-symbols", no_argument, NULL, OPTION_NO_EXPORT_ALL_SYMS},
3996 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMS},
3997 {"no-default-excludes", no_argument, NULL, OPTION_NO_DEFAULT_EXCLUDES},
3998 {"output-lib", required_argument, NULL, 'l'},
50c2245b 3999 {"def", required_argument, NULL, 'd'}, /* for compatibility with older versions */
252b5132
RH
4000 {"input-def", required_argument, NULL, 'd'},
4001 {"add-underscore", no_argument, NULL, 'U'},
14288fdc 4002 {"add-stdcall-underscore", no_argument, NULL, OPTION_ADD_STDCALL_UNDERSCORE},
36d21de5
KT
4003 {"no-leading-underscore", no_argument, NULL, OPTION_NO_LEADING_UNDERSCORE},
4004 {"leading-underscore", no_argument, NULL, OPTION_LEADING_UNDERSCORE},
252b5132
RH
4005 {"kill-at", no_argument, NULL, 'k'},
4006 {"add-stdcall-alias", no_argument, NULL, 'A'},
607dea97 4007 {"ext-prefix-alias", required_argument, NULL, 'p'},
d4732f7c 4008 {"identify", required_argument, NULL, 'I'},
71c57c16 4009 {"identify-strict", no_argument, NULL, OPTION_IDENTIFY_STRICT},
252b5132
RH
4010 {"verbose", no_argument, NULL, 'v'},
4011 {"version", no_argument, NULL, 'V'},
4012 {"help", no_argument, NULL, 'h'},
4013 {"machine", required_argument, NULL, 'm'},
4014 {"add-indirect", no_argument, NULL, 'a'},
4015 {"base-file", required_argument, NULL, 'b'},
4016 {"as", required_argument, NULL, 'S'},
4017 {"as-flags", required_argument, NULL, 'f'},
49e315b1 4018 {"mcore-elf", required_argument, NULL, 'M'},
5f0f29c3 4019 {"compat-implib", no_argument, NULL, 'C'},
0e11a9e9 4020 {"temp-prefix", required_argument, NULL, 't'},
10e636d2 4021 {"output-delaylib", required_argument, NULL, 'y'},
5ea695ed 4022 {NULL,0,NULL,0}
252b5132
RH
4023};
4024
2da42df6 4025int main (int, char **);
e80ff7de 4026
252b5132 4027int
2da42df6 4028main (int ac, char **av)
252b5132
RH
4029{
4030 int c;
4031 int i;
4032 char *firstarg = 0;
4033 program_name = av[0];
4034 oav = av;
4035
4036#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
4037 setlocale (LC_MESSAGES, "");
3882b010
L
4038#endif
4039#if defined (HAVE_SETLOCALE)
4040 setlocale (LC_CTYPE, "");
252b5132
RH
4041#endif
4042 bindtextdomain (PACKAGE, LOCALEDIR);
4043 textdomain (PACKAGE);
4044
c843b1bb 4045 expandargv (&ac, &av);
869b9d07 4046
49e315b1 4047 while ((c = getopt_long (ac, av,
26044998 4048#ifdef DLLTOOL_MCORE_ELF
d4732f7c 4049 "m:e:l:aD:d:z:b:xp:cCuUkAS:f:nI:vVHhM:L:F:",
49e315b1 4050#else
10e636d2 4051 "m:e:l:y:aD:d:z:b:xp:cCuUkAS:f:nI:vVHh",
49e315b1 4052#endif
252b5132
RH
4053 long_options, 0))
4054 != EOF)
4055 {
4056 switch (c)
4057 {
252b5132 4058 case OPTION_EXPORT_ALL_SYMS:
b34976b6 4059 export_all_symbols = TRUE;
252b5132
RH
4060 break;
4061 case OPTION_NO_EXPORT_ALL_SYMS:
b34976b6 4062 export_all_symbols = FALSE;
252b5132
RH
4063 break;
4064 case OPTION_EXCLUDE_SYMS:
4065 add_excludes (optarg);
4066 break;
4067 case OPTION_NO_DEFAULT_EXCLUDES:
b34976b6 4068 do_default_excludes = FALSE;
252b5132 4069 break;
e77b97d4
KT
4070 case OPTION_USE_NUL_PREFIXED_IMPORT_TABLES:
4071 use_nul_prefixed_import_tables = TRUE;
4072 break;
14288fdc
DS
4073 case OPTION_ADD_STDCALL_UNDERSCORE:
4074 add_stdcall_underscore = 1;
4075 break;
36d21de5
KT
4076 case OPTION_NO_LEADING_UNDERSCORE:
4077 leading_underscore = 0;
4078 break;
4079 case OPTION_LEADING_UNDERSCORE:
4080 leading_underscore = 1;
4081 break;
71c57c16
NC
4082 case OPTION_IDENTIFY_STRICT:
4083 identify_strict = 1;
4084 break;
49e315b1
NC
4085 case 'x':
4086 no_idata4 = 1;
4087 break;
4088 case 'c':
4089 no_idata5 = 1;
4090 break;
252b5132
RH
4091 case 'S':
4092 as_name = optarg;
4093 break;
0e11a9e9
CF
4094 case 't':
4095 tmp_prefix = optarg;
4096 break;
252b5132
RH
4097 case 'f':
4098 as_flags = optarg;
4099 break;
4100
7aa52b1f 4101 /* Ignored for compatibility. */
252b5132
RH
4102 case 'u':
4103 break;
4104 case 'a':
4105 add_indirect = 1;
4106 break;
4107 case 'z':
4108 output_def = fopen (optarg, FOPEN_WT);
4109 break;
4110 case 'D':
a0ce7f12
DS
4111 dll_name = (char*) lbasename (optarg);
4112 if (dll_name != optarg)
4113 non_fatal (_("Path components stripped from dllname, '%s'."),
4114 optarg);
252b5132
RH
4115 break;
4116 case 'l':
4117 imp_name = optarg;
4118 break;
4119 case 'e':
4120 exp_name = optarg;
4121 break;
8b53311e 4122 case 'H':
252b5132
RH
4123 case 'h':
4124 usage (stdout, 0);
4125 break;
4126 case 'm':
4127 mname = optarg;
4128 break;
d4732f7c
CW
4129 case 'I':
4130 identify_imp_name = optarg;
4131 break;
252b5132
RH
4132 case 'v':
4133 verbose = 1;
4134 break;
4135 case 'V':
4136 print_version (program_name);
4137 break;
252b5132
RH
4138 case 'U':
4139 add_underscore = 1;
4140 break;
4141 case 'k':
4142 killat = 1;
4143 break;
4144 case 'A':
4145 add_stdcall_alias = 1;
4146 break;
607dea97
NC
4147 case 'p':
4148 ext_prefix_alias = optarg;
4149 break;
252b5132
RH
4150 case 'd':
4151 def_file = optarg;
4152 break;
4153 case 'n':
4154 dontdeltemps++;
4155 break;
4156 case 'b':
4157 base_file = fopen (optarg, FOPEN_RB);
26044998 4158
252b5132
RH
4159 if (!base_file)
4160 /* xgettext:c-format */
4161 fatal (_("Unable to open base-file: %s"), optarg);
4162
4163 break;
49e315b1
NC
4164#ifdef DLLTOOL_MCORE_ELF
4165 case 'M':
4166 mcore_elf_out_file = optarg;
4167 break;
4168 case 'L':
4169 mcore_elf_linker = optarg;
4170 break;
4171 case 'F':
4172 mcore_elf_linker_flags = optarg;
4173 break;
4174#endif
5f0f29c3
NC
4175 case 'C':
4176 create_compat_implib = 1;
4177 break;
10e636d2
DK
4178 case 'y':
4179 delayimp_name = optarg;
4180 break;
252b5132
RH
4181 default:
4182 usage (stderr, 1);
4183 break;
4184 }
4185 }
4186
bf7a6389
CF
4187 if (!tmp_prefix)
4188 tmp_prefix = prefix_encode ("d", getpid ());
4189
252b5132 4190 for (i = 0; mtable[i].type; i++)
762100ed
NC
4191 if (strcmp (mtable[i].type, mname) == 0)
4192 break;
252b5132
RH
4193
4194 if (!mtable[i].type)
4195 /* xgettext:c-format */
4196 fatal (_("Machine '%s' not supported"), mname);
4197
4198 machine = i;
4199
2ea2f3c6
KT
4200 /* Check if we generated PE+. */
4201 create_for_pep = strcmp (mname, "i386:x86-64") == 0;
4202
1d2ca237
KT
4203 {
4204 /* Check the default underscore */
4205 int u = leading_underscore; /* Underscoring mode. -1 for use default. */
4206 if (u == -1)
4207 bfd_get_target_info (mtable[machine].how_bfd_target, NULL,
4208 NULL, &u, NULL);
4209 if (u != -1)
4210 leading_underscore = (u != 0 ? TRUE : FALSE);
4211 }
4212
252b5132
RH
4213 if (!dll_name && exp_name)
4214 {
a0ce7f12
DS
4215 /* If we are inferring dll_name from exp_name,
4216 strip off any path components, without emitting
4217 a warning. */
4218 const char* exp_basename = lbasename (exp_name);
4219 const int len = strlen (exp_basename) + 5;
252b5132 4220 dll_name = xmalloc (len);
a0ce7f12 4221 strcpy (dll_name, exp_basename);
252b5132 4222 strcat (dll_name, ".dll");
04276a0c 4223 dll_name_set_by_exp_name = 1;
252b5132
RH
4224 }
4225
49e315b1
NC
4226 if (as_name == NULL)
4227 as_name = deduce_name ("as");
26044998 4228
252b5132
RH
4229 /* Don't use the default exclude list if we're reading only the
4230 symbols in the .drectve section. The default excludes are meant
4231 to avoid exporting DLL entry point and Cygwin32 impure_ptr. */
4232 if (! export_all_symbols)
b34976b6 4233 do_default_excludes = FALSE;
26044998 4234
252b5132
RH
4235 if (do_default_excludes)
4236 set_default_excludes ();
4237
4238 if (def_file)
4239 process_def_file (def_file);
4240
4241 while (optind < ac)
4242 {
4243 if (!firstarg)
4244 firstarg = av[optind];
4245 scan_obj_file (av[optind]);
4246 optind++;
4247 }
4248
4249 mangle_defs ();
4250
4251 if (exp_name)
4252 gen_exp_file ();
26044998 4253
252b5132
RH
4254 if (imp_name)
4255 {
26044998 4256 /* Make imp_name safe for use as a label. */
252b5132
RH
4257 char *p;
4258
4259 imp_name_lab = xstrdup (imp_name);
4260 for (p = imp_name_lab; *p; p++)
4261 {
3882b010 4262 if (!ISALNUM (*p))
252b5132
RH
4263 *p = '_';
4264 }
4265 head_label = make_label("_head_", imp_name_lab);
10e636d2
DK
4266 gen_lib_file (0);
4267 }
4268
4269 if (delayimp_name)
4270 {
4271 /* Make delayimp_name safe for use as a label. */
4272 char *p;
4273
4274 if (mtable[machine].how_dljtab == 0)
4275 {
bf201fdd 4276 inform (_("Warning, machine type (%d) not supported for "
10e636d2
DK
4277 "delayimport."), machine);
4278 }
4279 else
4280 {
4281 killat = 1;
4282 imp_name = delayimp_name;
4283 imp_name_lab = xstrdup (imp_name);
4284 for (p = imp_name_lab; *p; p++)
4285 {
4286 if (!ISALNUM (*p))
4287 *p = '_';
4288 }
4289 head_label = make_label("__tailMerge_", imp_name_lab);
4290 gen_lib_file (1);
4291 }
252b5132 4292 }
26044998 4293
252b5132
RH
4294 if (output_def)
4295 gen_def_file ();
26044998 4296
d4732f7c
CW
4297 if (identify_imp_name)
4298 {
4299 identify_dll_for_implib ();
4300 }
4301
49e315b1
NC
4302#ifdef DLLTOOL_MCORE_ELF
4303 if (mcore_elf_out_file)
4304 mcore_elf_gen_out_file ();
4305#endif
26044998 4306
252b5132
RH
4307 return 0;
4308}
49e315b1 4309
bb0cb4db
ILT
4310/* Look for the program formed by concatenating PROG_NAME and the
4311 string running from PREFIX to END_PREFIX. If the concatenated
4312 string contains a '/', try appending EXECUTABLE_SUFFIX if it is
2481e6a2 4313 appropriate. */
bb0cb4db
ILT
4314
4315static char *
2da42df6 4316look_for_prog (const char *prog_name, const char *prefix, int end_prefix)
bb0cb4db
ILT
4317{
4318 struct stat s;
4319 char *cmd;
4320
26044998
KH
4321 cmd = xmalloc (strlen (prefix)
4322 + strlen (prog_name)
2481e6a2 4323#ifdef HAVE_EXECUTABLE_SUFFIX
26044998 4324 + strlen (EXECUTABLE_SUFFIX)
bb0cb4db
ILT
4325#endif
4326 + 10);
4327 strcpy (cmd, prefix);
4328
4329 sprintf (cmd + end_prefix, "%s", prog_name);
4330
4331 if (strchr (cmd, '/') != NULL)
4332 {
4333 int found;
4334
4335 found = (stat (cmd, &s) == 0
2481e6a2 4336#ifdef HAVE_EXECUTABLE_SUFFIX
26044998 4337 || stat (strcat (cmd, EXECUTABLE_SUFFIX), &s) == 0
bb0cb4db
ILT
4338#endif
4339 );
4340
4341 if (! found)
26044998 4342 {
bb0cb4db
ILT
4343 /* xgettext:c-format */
4344 inform (_("Tried file: %s"), cmd);
4345 free (cmd);
4346 return NULL;
4347 }
4348 }
4349
4350 /* xgettext:c-format */
4351 inform (_("Using file: %s"), cmd);
4352
4353 return cmd;
4354}
4355
49e315b1
NC
4356/* Deduce the name of the program we are want to invoke.
4357 PROG_NAME is the basic name of the program we want to run,
4358 eg "as" or "ld". The catch is that we might want actually
26044998 4359 run "i386-pe-as" or "ppc-pe-ld".
bb0cb4db
ILT
4360
4361 If argv[0] contains the full path, then try to find the program
4362 in the same place, with and then without a target-like prefix.
4363
4364 Given, argv[0] = /usr/local/bin/i586-cygwin32-dlltool,
26044998 4365 deduce_name("as") uses the following search order:
bb0cb4db
ILT
4366
4367 /usr/local/bin/i586-cygwin32-as
4368 /usr/local/bin/as
4369 as
26044998 4370
bb0cb4db
ILT
4371 If there's an EXECUTABLE_SUFFIX, it'll use that as well; for each
4372 name, it'll try without and then with EXECUTABLE_SUFFIX.
4373
4374 Given, argv[0] = i586-cygwin32-dlltool, it will not even try "as"
4375 as the fallback, but rather return i586-cygwin32-as.
26044998 4376
bb0cb4db
ILT
4377 Oh, and given, argv[0] = dlltool, it'll return "as".
4378
4379 Returns a dynamically allocated string. */
4380
49e315b1 4381static char *
2da42df6 4382deduce_name (const char *prog_name)
49e315b1 4383{
bb0cb4db
ILT
4384 char *cmd;
4385 char *dash, *slash, *cp;
49e315b1 4386
bb0cb4db
ILT
4387 dash = NULL;
4388 slash = NULL;
4389 for (cp = program_name; *cp != '\0'; ++cp)
4390 {
4391 if (*cp == '-')
4392 dash = cp;
4393 if (
4394#if defined(__DJGPP__) || defined (__CYGWIN__) || defined(__WIN32__)
4395 *cp == ':' || *cp == '\\' ||
4396#endif
4397 *cp == '/')
4398 {
4399 slash = cp;
4400 dash = NULL;
4401 }
4402 }
49e315b1 4403
bb0cb4db 4404 cmd = NULL;
49e315b1 4405
bb0cb4db
ILT
4406 if (dash != NULL)
4407 {
4408 /* First, try looking for a prefixed PROG_NAME in the
4409 PROGRAM_NAME directory, with the same prefix as PROGRAM_NAME. */
4410 cmd = look_for_prog (prog_name, program_name, dash - program_name + 1);
4411 }
49e315b1 4412
bb0cb4db
ILT
4413 if (slash != NULL && cmd == NULL)
4414 {
4415 /* Next, try looking for a PROG_NAME in the same directory as
4416 that of this program. */
4417 cmd = look_for_prog (prog_name, program_name, slash - program_name + 1);
4418 }
4419
4420 if (cmd == NULL)
4421 {
4422 /* Just return PROG_NAME as is. */
4423 cmd = xstrdup (prog_name);
4424 }
4425
4426 return cmd;
49e315b1
NC
4427}
4428
4429#ifdef DLLTOOL_MCORE_ELF
4430typedef struct fname_cache
4431{
fd64a958 4432 const char * filename;
49e315b1
NC
4433 struct fname_cache * next;
4434}
4435fname_cache;
4436
4437static fname_cache fnames;
4438
4439static void
fd64a958 4440mcore_elf_cache_filename (const char * filename)
49e315b1
NC
4441{
4442 fname_cache * ptr;
4443
4444 ptr = & fnames;
4445
4446 while (ptr->next != NULL)
4447 ptr = ptr->next;
4448
4449 ptr->filename = filename;
4450 ptr->next = (fname_cache *) malloc (sizeof (fname_cache));
4451 if (ptr->next != NULL)
4452 ptr->next->next = NULL;
4453}
4454
762100ed
NC
4455#define MCORE_ELF_TMP_OBJ "mcoreelf.o"
4456#define MCORE_ELF_TMP_EXP "mcoreelf.exp"
4457#define MCORE_ELF_TMP_LIB "mcoreelf.lib"
4458
49e315b1
NC
4459static void
4460mcore_elf_gen_out_file (void)
4461{
4462 fname_cache * ptr;
bb0cb4db 4463 dyn_string_t ds;
49e315b1
NC
4464
4465 /* Step one. Run 'ld -r' on the input object files in order to resolve
4466 any internal references and to generate a single .exports section. */
4467 ptr = & fnames;
4468
bb0cb4db 4469 ds = dyn_string_new (100);
55b9cdf1 4470 dyn_string_append_cstr (ds, "-r ");
49e315b1
NC
4471
4472 if (mcore_elf_linker_flags != NULL)
55b9cdf1 4473 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
26044998 4474
49e315b1
NC
4475 while (ptr->next != NULL)
4476 {
55b9cdf1
AM
4477 dyn_string_append_cstr (ds, ptr->filename);
4478 dyn_string_append_cstr (ds, " ");
49e315b1
NC
4479
4480 ptr = ptr->next;
4481 }
4482
55b9cdf1
AM
4483 dyn_string_append_cstr (ds, "-o ");
4484 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
49e315b1
NC
4485
4486 if (mcore_elf_linker == NULL)
4487 mcore_elf_linker = deduce_name ("ld");
26044998 4488
bb0cb4db
ILT
4489 run (mcore_elf_linker, ds->s);
4490
4491 dyn_string_delete (ds);
49e315b1 4492
26044998 4493 /* Step two. Create a .exp file and a .lib file from the temporary file.
c9e38879 4494 Do this by recursively invoking dlltool... */
bb0cb4db
ILT
4495 ds = dyn_string_new (100);
4496
55b9cdf1
AM
4497 dyn_string_append_cstr (ds, "-S ");
4498 dyn_string_append_cstr (ds, as_name);
26044998 4499
55b9cdf1
AM
4500 dyn_string_append_cstr (ds, " -e ");
4501 dyn_string_append_cstr (ds, MCORE_ELF_TMP_EXP);
4502 dyn_string_append_cstr (ds, " -l ");
4503 dyn_string_append_cstr (ds, MCORE_ELF_TMP_LIB);
4504 dyn_string_append_cstr (ds, " " );
4505 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
49e315b1
NC
4506
4507 if (verbose)
55b9cdf1 4508 dyn_string_append_cstr (ds, " -v");
26044998 4509
49e315b1 4510 if (dontdeltemps)
762100ed 4511 {
55b9cdf1 4512 dyn_string_append_cstr (ds, " -n");
26044998 4513
762100ed 4514 if (dontdeltemps > 1)
55b9cdf1 4515 dyn_string_append_cstr (ds, " -n");
762100ed 4516 }
49e315b1
NC
4517
4518 /* XXX - FIME: ought to check/copy other command line options as well. */
bb0cb4db
ILT
4519 run (program_name, ds->s);
4520
4521 dyn_string_delete (ds);
49e315b1 4522
74479bd3 4523 /* Step four. Feed the .exp and object files to ld -shared to create the dll. */
bb0cb4db
ILT
4524 ds = dyn_string_new (100);
4525
55b9cdf1 4526 dyn_string_append_cstr (ds, "-shared ");
49e315b1
NC
4527
4528 if (mcore_elf_linker_flags)
55b9cdf1
AM
4529 dyn_string_append_cstr (ds, mcore_elf_linker_flags);
4530
4531 dyn_string_append_cstr (ds, " ");
4532 dyn_string_append_cstr (ds, MCORE_ELF_TMP_EXP);
4533 dyn_string_append_cstr (ds, " ");
4534 dyn_string_append_cstr (ds, MCORE_ELF_TMP_OBJ);
4535 dyn_string_append_cstr (ds, " -o ");
4536 dyn_string_append_cstr (ds, mcore_elf_out_file);
49e315b1 4537
bb0cb4db 4538 run (mcore_elf_linker, ds->s);
49e315b1 4539
bb0cb4db 4540 dyn_string_delete (ds);
762100ed
NC
4541
4542 if (dontdeltemps == 0)
74479bd3 4543 unlink (MCORE_ELF_TMP_EXP);
762100ed
NC
4544
4545 if (dontdeltemps < 2)
4546 unlink (MCORE_ELF_TMP_OBJ);
49e315b1
NC
4547}
4548#endif /* DLLTOOL_MCORE_ELF */
This page took 0.801427 seconds and 4 git commands to generate.