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