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