* emultempl/pe.em (gld_${EMULATION_NAME}_after_open): Simplify
[deliverable/binutils-gdb.git] / ld / emultempl / pe.em
1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 if [ -z "$MACHINE" ]; then
4 OUTPUT_ARCH=${ARCH}
5 else
6 OUTPUT_ARCH=${ARCH}:${MACHINE}
7 fi
8 rm -f e${EMULATION_NAME}.c
9 (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
10 cat >>e${EMULATION_NAME}.c <<EOF
11 /* This file is part of GLD, the Gnu Linker.
12 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
13 Free Software Foundation, Inc.
14
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or
18 (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
28
29 /* For WINDOWS_NT */
30 /* The original file generated returned different default scripts depending
31 on whether certain switches were set, but these switches pertain to the
32 Linux system and that particular version of coff. In the NT case, we
33 only determine if the subsystem is console or windows in order to select
34 the correct entry point by default. */
35
36 #define TARGET_IS_${EMULATION_NAME}
37
38 /* Do this before including bfd.h, so we prototype the right functions. */
39 #ifdef TARGET_IS_arm_epoc_pe
40 #define bfd_arm_pe_allocate_interworking_sections \
41 bfd_arm_epoc_pe_allocate_interworking_sections
42 #define bfd_arm_pe_get_bfd_for_interworking \
43 bfd_arm_epoc_pe_get_bfd_for_interworking
44 #define bfd_arm_pe_process_before_allocation \
45 bfd_arm_epoc_pe_process_before_allocation
46 #endif
47
48 #include "bfd.h"
49 #include "sysdep.h"
50 #include "bfdlink.h"
51 #include "getopt.h"
52 #include "libiberty.h"
53 #include "ld.h"
54 #include "ldmain.h"
55 #include "ldexp.h"
56 #include "ldlang.h"
57 #include "ldfile.h"
58 #include "ldemul.h"
59 #include <ldgram.h>
60 #include "ldlex.h"
61 #include "ldmisc.h"
62 #include "ldctor.h"
63 #include "coff/internal.h"
64
65 /* FIXME: See bfd/peXXigen.c for why we include an architecture specific
66 header in generic PE code. */
67 #include "coff/i386.h"
68 #include "coff/pe.h"
69
70 /* FIXME: This is a BFD internal header file, and we should not be
71 using it here. */
72 #include "../bfd/libcoff.h"
73
74 #include "deffile.h"
75 #include "pe-dll.h"
76 #include "safe-ctype.h"
77
78 /* Permit the emulation parameters to override the default section
79 alignment by setting OVERRIDE_SECTION_ALIGNMENT. FIXME: This makes
80 it seem that include/coff/internal.h should not define
81 PE_DEF_SECTION_ALIGNMENT. */
82 #if PE_DEF_SECTION_ALIGNMENT != ${OVERRIDE_SECTION_ALIGNMENT:-PE_DEF_SECTION_ALIGNMENT}
83 #undef PE_DEF_SECTION_ALIGNMENT
84 #define PE_DEF_SECTION_ALIGNMENT ${OVERRIDE_SECTION_ALIGNMENT}
85 #endif
86
87 #if defined(TARGET_IS_i386pe)
88 #define DLL_SUPPORT
89 #endif
90 #if defined(TARGET_IS_shpe) || defined(TARGET_IS_mipspe) || defined(TARGET_IS_armpe)
91 #define DLL_SUPPORT
92 #endif
93
94 #if defined(TARGET_IS_i386pe) || ! defined(DLL_SUPPORT)
95 #define PE_DEF_SUBSYSTEM 3
96 #else
97 #undef NT_EXE_IMAGE_BASE
98 #undef PE_DEF_SECTION_ALIGNMENT
99 #undef PE_DEF_FILE_ALIGNMENT
100 #define NT_EXE_IMAGE_BASE 0x00010000
101 #ifdef TARGET_IS_armpe
102 #define PE_DEF_SECTION_ALIGNMENT 0x00001000
103 #define PE_DEF_SUBSYSTEM 9
104 #else
105 #define PE_DEF_SECTION_ALIGNMENT 0x00000400
106 #define PE_DEF_SUBSYSTEM 2
107 #endif
108 #define PE_DEF_FILE_ALIGNMENT 0x00000200
109 #endif
110
111
112 static struct internal_extra_pe_aouthdr pe;
113 static int dll;
114 static flagword real_flags = 0;
115 static int support_old_code = 0;
116 static char * thumb_entry_symbol = NULL;
117 static lang_assignment_statement_type *image_base_statement = 0;
118
119 #ifdef DLL_SUPPORT
120 static int pe_enable_stdcall_fixup = -1; /* 0=disable 1=enable. */
121 static char *pe_out_def_filename = NULL;
122 static char *pe_implib_filename = NULL;
123 static int pe_enable_auto_image_base = 0;
124 static char *pe_dll_search_prefix = NULL;
125 #endif
126
127 extern const char *output_filename;
128
129 static void
130 gld_${EMULATION_NAME}_before_parse (void)
131 {
132 ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`);
133 output_filename = "${EXECUTABLE_NAME:-a.exe}";
134 #ifdef DLL_SUPPORT
135 config.dynamic_link = TRUE;
136 config.has_shared = 1;
137 link_info.pei386_auto_import = -1;
138 link_info.pei386_runtime_pseudo_reloc = FALSE;
139
140 #if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2)
141 #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
142 lang_add_entry ("WinMainCRTStartup", FALSE);
143 #else
144 lang_add_entry ("_WinMainCRTStartup", FALSE);
145 #endif
146 #endif
147 #endif
148 }
149 \f
150 /* PE format extra command line options. */
151
152 /* Used for setting flags in the PE header. */
153 #define OPTION_BASE_FILE (300 + 1)
154 #define OPTION_DLL (OPTION_BASE_FILE + 1)
155 #define OPTION_FILE_ALIGNMENT (OPTION_DLL + 1)
156 #define OPTION_IMAGE_BASE (OPTION_FILE_ALIGNMENT + 1)
157 #define OPTION_MAJOR_IMAGE_VERSION (OPTION_IMAGE_BASE + 1)
158 #define OPTION_MAJOR_OS_VERSION (OPTION_MAJOR_IMAGE_VERSION + 1)
159 #define OPTION_MAJOR_SUBSYSTEM_VERSION (OPTION_MAJOR_OS_VERSION + 1)
160 #define OPTION_MINOR_IMAGE_VERSION (OPTION_MAJOR_SUBSYSTEM_VERSION + 1)
161 #define OPTION_MINOR_OS_VERSION (OPTION_MINOR_IMAGE_VERSION + 1)
162 #define OPTION_MINOR_SUBSYSTEM_VERSION (OPTION_MINOR_OS_VERSION + 1)
163 #define OPTION_SECTION_ALIGNMENT (OPTION_MINOR_SUBSYSTEM_VERSION + 1)
164 #define OPTION_STACK (OPTION_SECTION_ALIGNMENT + 1)
165 #define OPTION_SUBSYSTEM (OPTION_STACK + 1)
166 #define OPTION_HEAP (OPTION_SUBSYSTEM + 1)
167 #define OPTION_SUPPORT_OLD_CODE (OPTION_HEAP + 1)
168 #define OPTION_OUT_DEF (OPTION_SUPPORT_OLD_CODE + 1)
169 #define OPTION_EXPORT_ALL (OPTION_OUT_DEF + 1)
170 #define OPTION_EXCLUDE_SYMBOLS (OPTION_EXPORT_ALL + 1)
171 #define OPTION_KILL_ATS (OPTION_EXCLUDE_SYMBOLS + 1)
172 #define OPTION_STDCALL_ALIASES (OPTION_KILL_ATS + 1)
173 #define OPTION_ENABLE_STDCALL_FIXUP (OPTION_STDCALL_ALIASES + 1)
174 #define OPTION_DISABLE_STDCALL_FIXUP (OPTION_ENABLE_STDCALL_FIXUP + 1)
175 #define OPTION_IMPLIB_FILENAME (OPTION_DISABLE_STDCALL_FIXUP + 1)
176 #define OPTION_THUMB_ENTRY (OPTION_IMPLIB_FILENAME + 1)
177 #define OPTION_WARN_DUPLICATE_EXPORTS (OPTION_THUMB_ENTRY + 1)
178 #define OPTION_IMP_COMPAT (OPTION_WARN_DUPLICATE_EXPORTS + 1)
179 #define OPTION_ENABLE_AUTO_IMAGE_BASE (OPTION_IMP_COMPAT + 1)
180 #define OPTION_DISABLE_AUTO_IMAGE_BASE (OPTION_ENABLE_AUTO_IMAGE_BASE + 1)
181 #define OPTION_DLL_SEARCH_PREFIX (OPTION_DISABLE_AUTO_IMAGE_BASE + 1)
182 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_DLL_SEARCH_PREFIX + 1)
183 #define OPTION_DLL_ENABLE_AUTO_IMPORT (OPTION_NO_DEFAULT_EXCLUDES + 1)
184 #define OPTION_DLL_DISABLE_AUTO_IMPORT (OPTION_DLL_ENABLE_AUTO_IMPORT + 1)
185 #define OPTION_ENABLE_EXTRA_PE_DEBUG (OPTION_DLL_DISABLE_AUTO_IMPORT + 1)
186 #define OPTION_EXCLUDE_LIBS (OPTION_ENABLE_EXTRA_PE_DEBUG + 1)
187 #define OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC \
188 (OPTION_EXCLUDE_LIBS + 1)
189 #define OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC \
190 (OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC + 1)
191 #define OPTION_LARGE_ADDRESS_AWARE \
192 (OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC + 1)
193
194 static void
195 gld${EMULATION_NAME}_add_options
196 (int ns ATTRIBUTE_UNUSED, char **shortopts ATTRIBUTE_UNUSED, int nl,
197 struct option **longopts, int nrl ATTRIBUTE_UNUSED,
198 struct option **really_longopts ATTRIBUTE_UNUSED)
199 {
200 static const struct option xtra_long[] = {
201 /* PE options */
202 {"base-file", required_argument, NULL, OPTION_BASE_FILE},
203 {"dll", no_argument, NULL, OPTION_DLL},
204 {"file-alignment", required_argument, NULL, OPTION_FILE_ALIGNMENT},
205 {"heap", required_argument, NULL, OPTION_HEAP},
206 {"image-base", required_argument, NULL, OPTION_IMAGE_BASE},
207 {"major-image-version", required_argument, NULL, OPTION_MAJOR_IMAGE_VERSION},
208 {"major-os-version", required_argument, NULL, OPTION_MAJOR_OS_VERSION},
209 {"major-subsystem-version", required_argument, NULL, OPTION_MAJOR_SUBSYSTEM_VERSION},
210 {"minor-image-version", required_argument, NULL, OPTION_MINOR_IMAGE_VERSION},
211 {"minor-os-version", required_argument, NULL, OPTION_MINOR_OS_VERSION},
212 {"minor-subsystem-version", required_argument, NULL, OPTION_MINOR_SUBSYSTEM_VERSION},
213 {"section-alignment", required_argument, NULL, OPTION_SECTION_ALIGNMENT},
214 {"stack", required_argument, NULL, OPTION_STACK},
215 {"subsystem", required_argument, NULL, OPTION_SUBSYSTEM},
216 {"support-old-code", no_argument, NULL, OPTION_SUPPORT_OLD_CODE},
217 {"thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
218 #ifdef DLL_SUPPORT
219 /* getopt allows abbreviations, so we do this to stop it from treating -o
220 as an abbreviation for this option */
221 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
222 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
223 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL},
224 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMBOLS},
225 {"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS},
226 {"kill-at", no_argument, NULL, OPTION_KILL_ATS},
227 {"add-stdcall-alias", no_argument, NULL, OPTION_STDCALL_ALIASES},
228 {"enable-stdcall-fixup", no_argument, NULL, OPTION_ENABLE_STDCALL_FIXUP},
229 {"disable-stdcall-fixup", no_argument, NULL, OPTION_DISABLE_STDCALL_FIXUP},
230 {"out-implib", required_argument, NULL, OPTION_IMPLIB_FILENAME},
231 {"warn-duplicate-exports", no_argument, NULL, OPTION_WARN_DUPLICATE_EXPORTS},
232 /* getopt() allows abbreviations, so we do this to stop it from
233 treating -c as an abbreviation for these --compat-implib. */
234 {"compat-implib", no_argument, NULL, OPTION_IMP_COMPAT},
235 {"compat-implib", no_argument, NULL, OPTION_IMP_COMPAT},
236 {"enable-auto-image-base", no_argument, NULL, OPTION_ENABLE_AUTO_IMAGE_BASE},
237 {"disable-auto-image-base", no_argument, NULL, OPTION_DISABLE_AUTO_IMAGE_BASE},
238 {"dll-search-prefix", required_argument, NULL, OPTION_DLL_SEARCH_PREFIX},
239 {"no-default-excludes", no_argument, NULL, OPTION_NO_DEFAULT_EXCLUDES},
240 {"enable-auto-import", no_argument, NULL, OPTION_DLL_ENABLE_AUTO_IMPORT},
241 {"disable-auto-import", no_argument, NULL, OPTION_DLL_DISABLE_AUTO_IMPORT},
242 {"enable-extra-pe-debug", no_argument, NULL, OPTION_ENABLE_EXTRA_PE_DEBUG},
243 {"enable-runtime-pseudo-reloc", no_argument, NULL, OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC},
244 {"disable-runtime-pseudo-reloc", no_argument, NULL, OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC},
245 #endif
246 {"large-address-aware", no_argument, NULL, OPTION_LARGE_ADDRESS_AWARE},
247 {NULL, no_argument, NULL, 0}
248 };
249
250 *longopts = (struct option *)
251 xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
252 memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
253 }
254
255 /* PE/WIN32; added routines to get the subsystem type, heap and/or stack
256 parameters which may be input from the command line. */
257
258 typedef struct
259 {
260 void *ptr;
261 int size;
262 int value;
263 char *symbol;
264 int inited;
265 } definfo;
266
267 #define D(field,symbol,def) {&pe.field,sizeof(pe.field), def, symbol,0}
268
269 static definfo init[] =
270 {
271 /* imagebase must be first */
272 #define IMAGEBASEOFF 0
273 D(ImageBase,"__image_base__", NT_EXE_IMAGE_BASE),
274 #define DLLOFF 1
275 {&dll, sizeof(dll), 0, "__dll__", 0},
276 D(SectionAlignment,"__section_alignment__", PE_DEF_SECTION_ALIGNMENT),
277 D(FileAlignment,"__file_alignment__", PE_DEF_FILE_ALIGNMENT),
278 D(MajorOperatingSystemVersion,"__major_os_version__", 4),
279 D(MinorOperatingSystemVersion,"__minor_os_version__", 0),
280 D(MajorImageVersion,"__major_image_version__", 1),
281 D(MinorImageVersion,"__minor_image_version__", 0),
282 #ifdef TARGET_IS_armpe
283 D(MajorSubsystemVersion,"__major_subsystem_version__", 2),
284 #else
285 D(MajorSubsystemVersion,"__major_subsystem_version__", 4),
286 #endif
287 D(MinorSubsystemVersion,"__minor_subsystem_version__", 0),
288 D(Subsystem,"__subsystem__", ${SUBSYSTEM}),
289 D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x200000),
290 D(SizeOfStackCommit,"__size_of_stack_commit__", 0x1000),
291 D(SizeOfHeapReserve,"__size_of_heap_reserve__", 0x100000),
292 D(SizeOfHeapCommit,"__size_of_heap_commit__", 0x1000),
293 D(LoaderFlags,"__loader_flags__", 0x0),
294 { NULL, 0, 0, NULL, 0 }
295 };
296
297
298 static void
299 gld_${EMULATION_NAME}_list_options (FILE *file)
300 {
301 fprintf (file, _(" --base_file <basefile> Generate a base file for relocatable DLLs\n"));
302 fprintf (file, _(" --dll Set image base to the default for DLLs\n"));
303 fprintf (file, _(" --file-alignment <size> Set file alignment\n"));
304 fprintf (file, _(" --heap <size> Set initial size of the heap\n"));
305 fprintf (file, _(" --image-base <address> Set start address of the executable\n"));
306 fprintf (file, _(" --major-image-version <number> Set version number of the executable\n"));
307 fprintf (file, _(" --major-os-version <number> Set minimum required OS version\n"));
308 fprintf (file, _(" --major-subsystem-version <number> Set minimum required OS subsystem version\n"));
309 fprintf (file, _(" --minor-image-version <number> Set revision number of the executable\n"));
310 fprintf (file, _(" --minor-os-version <number> Set minimum required OS revision\n"));
311 fprintf (file, _(" --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"));
312 fprintf (file, _(" --section-alignment <size> Set section alignment\n"));
313 fprintf (file, _(" --stack <size> Set size of the initial stack\n"));
314 fprintf (file, _(" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"));
315 fprintf (file, _(" --support-old-code Support interworking with old code\n"));
316 fprintf (file, _(" --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"));
317 #ifdef DLL_SUPPORT
318 fprintf (file, _(" --add-stdcall-alias Export symbols with and without @nn\n"));
319 fprintf (file, _(" --disable-stdcall-fixup Don't link _sym to _sym@nn\n"));
320 fprintf (file, _(" --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"));
321 fprintf (file, _(" --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"));
322 fprintf (file, _(" --exclude-libs lib,lib,... Exclude libraries from automatic export\n"));
323 fprintf (file, _(" --export-all-symbols Automatically export all globals to DLL\n"));
324 fprintf (file, _(" --kill-at Remove @nn from exported symbols\n"));
325 fprintf (file, _(" --out-implib <file> Generate import library\n"));
326 fprintf (file, _(" --output-def <file> Generate a .DEF file for the built DLL\n"));
327 fprintf (file, _(" --warn-duplicate-exports Warn about duplicate exports.\n"));
328 fprintf (file, _(" --compat-implib Create backward compatible import libs;\n\
329 create __imp_<SYMBOL> as well.\n"));
330 fprintf (file, _(" --enable-auto-image-base Automatically choose image base for DLLs\n\
331 unless user specifies one\n"));
332 fprintf (file, _(" --disable-auto-image-base Do not auto-choose image base. (default)\n"));
333 fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\
334 an importlib, use <string><basename>.dll\n\
335 in preference to lib<basename>.dll \n"));
336 fprintf (file, _(" --enable-auto-import Do sophistcated linking of _sym to\n\
337 __imp_sym for DATA references\n"));
338 fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n"));
339 fprintf (file, _(" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n\
340 adding pseudo-relocations resolved at\n\
341 runtime.\n"));
342 fprintf (file, _(" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n\
343 auto-imported DATA.\n"));
344 fprintf (file, _(" --enable-extra-pe-debug Enable verbose debug output when building\n\
345 or linking to DLLs (esp. auto-import)\n"));
346 #endif
347 fprintf (file, _(" --large-address-aware Executable supports virtual addresses\n\
348 greater than 2 gigabytes\n"));
349 }
350
351
352 static void
353 set_pe_name (char *name, long val)
354 {
355 int i;
356
357 /* Find the name and set it. */
358 for (i = 0; init[i].ptr; i++)
359 {
360 if (strcmp (name, init[i].symbol) == 0)
361 {
362 init[i].value = val;
363 init[i].inited = 1;
364 return;
365 }
366 }
367 abort ();
368 }
369
370
371 static void
372 set_pe_subsystem (void)
373 {
374 const char *sver;
375 int len;
376 int i;
377 static const struct
378 {
379 const char *name;
380 const int value;
381 const char *entry;
382 }
383 v[] =
384 {
385 { "native", 1, "NtProcessStartup" },
386 #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
387 { "windows", 2, "WinMainCRTStartup" },
388 #else
389 { "windows", 2, "WinMainCRTStartup" },
390 #endif
391 { "console", 3, "mainCRTStartup" },
392 #if 0
393 /* The Microsoft linker does not recognize this. */
394 { "os2", 5, "" },
395 #endif
396 { "posix", 7, "__PosixProcessStartup"},
397 { "wince", 9, "_WinMainCRTStartup" },
398 { 0, 0, 0 }
399 };
400
401 sver = strchr (optarg, ':');
402 if (sver == NULL)
403 len = strlen (optarg);
404 else
405 {
406 char *end;
407
408 len = sver - optarg;
409 set_pe_name ("__major_subsystem_version__",
410 strtoul (sver + 1, &end, 0));
411 if (*end == '.')
412 set_pe_name ("__minor_subsystem_version__",
413 strtoul (end + 1, &end, 0));
414 if (*end != '\0')
415 einfo (_("%P: warning: bad version number in -subsystem option\n"));
416 }
417
418 for (i = 0; v[i].name; i++)
419 {
420 if (strncmp (optarg, v[i].name, len) == 0
421 && v[i].name[len] == '\0')
422 {
423 const char *initial_symbol_char;
424 const char *entry;
425
426 set_pe_name ("__subsystem__", v[i].value);
427
428 initial_symbol_char = ${INITIAL_SYMBOL_CHAR};
429 if (*initial_symbol_char == '\0')
430 entry = v[i].entry;
431 else
432 {
433 char *alc_entry;
434
435 /* lang_add_entry expects its argument to be permanently
436 allocated, so we don't free this string. */
437 alc_entry = xmalloc (strlen (initial_symbol_char)
438 + strlen (v[i].entry)
439 + 1);
440 strcpy (alc_entry, initial_symbol_char);
441 strcat (alc_entry, v[i].entry);
442 entry = alc_entry;
443 }
444
445 lang_add_entry (entry, TRUE);
446
447 return;
448 }
449 }
450
451 einfo (_("%P%F: invalid subsystem type %s\n"), optarg);
452 }
453
454
455 static void
456 set_pe_value (char *name)
457 {
458 char *end;
459
460 set_pe_name (name, strtoul (optarg, &end, 0));
461
462 if (end == optarg)
463 einfo (_("%P%F: invalid hex number for PE parameter '%s'\n"), optarg);
464
465 optarg = end;
466 }
467
468
469 static void
470 set_pe_stack_heap (char *resname, char *comname)
471 {
472 set_pe_value (resname);
473
474 if (*optarg == ',')
475 {
476 optarg++;
477 set_pe_value (comname);
478 }
479 else if (*optarg)
480 einfo (_("%P%F: strange hex info for PE parameter '%s'\n"), optarg);
481 }
482
483
484 static bfd_boolean
485 gld${EMULATION_NAME}_handle_option (int optc)
486 {
487 switch (optc)
488 {
489 default:
490 return FALSE;
491
492 case OPTION_BASE_FILE:
493 link_info.base_file = fopen (optarg, FOPEN_WB);
494 if (link_info.base_file == NULL)
495 {
496 /* xgettext:c-format */
497 fprintf (stderr, _("%s: Can't open base file %s\n"),
498 program_name, optarg);
499 xexit (1);
500 }
501 break;
502
503 /* PE options. */
504 case OPTION_HEAP:
505 set_pe_stack_heap ("__size_of_heap_reserve__", "__size_of_heap_commit__");
506 break;
507 case OPTION_STACK:
508 set_pe_stack_heap ("__size_of_stack_reserve__", "__size_of_stack_commit__");
509 break;
510 case OPTION_SUBSYSTEM:
511 set_pe_subsystem ();
512 break;
513 case OPTION_MAJOR_OS_VERSION:
514 set_pe_value ("__major_os_version__");
515 break;
516 case OPTION_MINOR_OS_VERSION:
517 set_pe_value ("__minor_os_version__");
518 break;
519 case OPTION_MAJOR_SUBSYSTEM_VERSION:
520 set_pe_value ("__major_subsystem_version__");
521 break;
522 case OPTION_MINOR_SUBSYSTEM_VERSION:
523 set_pe_value ("__minor_subsystem_version__");
524 break;
525 case OPTION_MAJOR_IMAGE_VERSION:
526 set_pe_value ("__major_image_version__");
527 break;
528 case OPTION_MINOR_IMAGE_VERSION:
529 set_pe_value ("__minor_image_version__");
530 break;
531 case OPTION_FILE_ALIGNMENT:
532 set_pe_value ("__file_alignment__");
533 break;
534 case OPTION_SECTION_ALIGNMENT:
535 set_pe_value ("__section_alignment__");
536 break;
537 case OPTION_DLL:
538 set_pe_name ("__dll__", 1);
539 break;
540 case OPTION_IMAGE_BASE:
541 set_pe_value ("__image_base__");
542 break;
543 case OPTION_SUPPORT_OLD_CODE:
544 support_old_code = 1;
545 break;
546 case OPTION_THUMB_ENTRY:
547 thumb_entry_symbol = optarg;
548 break;
549 #ifdef DLL_SUPPORT
550 case OPTION_OUT_DEF:
551 pe_out_def_filename = xstrdup (optarg);
552 break;
553 case OPTION_EXPORT_ALL:
554 pe_dll_export_everything = 1;
555 break;
556 case OPTION_EXCLUDE_SYMBOLS:
557 pe_dll_add_excludes (optarg, 0);
558 break;
559 case OPTION_EXCLUDE_LIBS:
560 pe_dll_add_excludes (optarg, 1);
561 break;
562 case OPTION_KILL_ATS:
563 pe_dll_kill_ats = 1;
564 break;
565 case OPTION_STDCALL_ALIASES:
566 pe_dll_stdcall_aliases = 1;
567 break;
568 case OPTION_ENABLE_STDCALL_FIXUP:
569 pe_enable_stdcall_fixup = 1;
570 break;
571 case OPTION_DISABLE_STDCALL_FIXUP:
572 pe_enable_stdcall_fixup = 0;
573 break;
574 case OPTION_IMPLIB_FILENAME:
575 pe_implib_filename = xstrdup (optarg);
576 break;
577 case OPTION_WARN_DUPLICATE_EXPORTS:
578 pe_dll_warn_dup_exports = 1;
579 break;
580 case OPTION_IMP_COMPAT:
581 pe_dll_compat_implib = 1;
582 break;
583 case OPTION_ENABLE_AUTO_IMAGE_BASE:
584 pe_enable_auto_image_base = 1;
585 break;
586 case OPTION_DISABLE_AUTO_IMAGE_BASE:
587 pe_enable_auto_image_base = 0;
588 break;
589 case OPTION_DLL_SEARCH_PREFIX:
590 pe_dll_search_prefix = xstrdup (optarg);
591 break;
592 case OPTION_NO_DEFAULT_EXCLUDES:
593 pe_dll_do_default_excludes = 0;
594 break;
595 case OPTION_DLL_ENABLE_AUTO_IMPORT:
596 link_info.pei386_auto_import = 1;
597 break;
598 case OPTION_DLL_DISABLE_AUTO_IMPORT:
599 link_info.pei386_auto_import = 0;
600 break;
601 case OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC:
602 link_info.pei386_runtime_pseudo_reloc = 1;
603 break;
604 case OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC:
605 link_info.pei386_runtime_pseudo_reloc = 0;
606 break;
607 case OPTION_ENABLE_EXTRA_PE_DEBUG:
608 pe_dll_extra_pe_debug = 1;
609 break;
610 #endif
611 case OPTION_LARGE_ADDRESS_AWARE:
612 real_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
613 break;
614 }
615 return TRUE;
616 }
617 \f
618
619 #ifdef DLL_SUPPORT
620 static unsigned long
621 strhash (const char *str)
622 {
623 const unsigned char *s;
624 unsigned long hash;
625 unsigned int c;
626 unsigned int len;
627
628 hash = 0;
629 len = 0;
630 s = (const unsigned char *) str;
631 while ((c = *s++) != '\0')
632 {
633 hash += c + (c << 17);
634 hash ^= hash >> 2;
635 ++len;
636 }
637 hash += len + (len << 17);
638 hash ^= hash >> 2;
639
640 return hash;
641 }
642
643 /* Use the output file to create a image base for relocatable DLLs. */
644
645 static unsigned long
646 compute_dll_image_base (const char *ofile)
647 {
648 unsigned long hash = strhash (ofile);
649 return 0x60000000 | ((hash << 16) & 0x0FFC0000);
650 }
651 #endif
652
653 /* Assign values to the special symbols before the linker script is
654 read. */
655
656 static void
657 gld_${EMULATION_NAME}_set_symbols (void)
658 {
659 /* Run through and invent symbols for all the
660 names and insert the defaults. */
661 int j;
662 lang_statement_list_type *save;
663
664 if (!init[IMAGEBASEOFF].inited)
665 {
666 if (link_info.relocatable)
667 init[IMAGEBASEOFF].value = 0;
668 else if (init[DLLOFF].value || (link_info.shared && !link_info.pie))
669 #ifdef DLL_SUPPORT
670 init[IMAGEBASEOFF].value = (pe_enable_auto_image_base) ?
671 compute_dll_image_base (output_filename) : NT_DLL_IMAGE_BASE;
672 #else
673 init[IMAGEBASEOFF].value = NT_DLL_IMAGE_BASE;
674 #endif
675 else
676 init[IMAGEBASEOFF].value = NT_EXE_IMAGE_BASE;
677 }
678
679 /* Don't do any symbol assignments if this is a relocatable link. */
680 if (link_info.relocatable)
681 return;
682
683 /* Glue the assignments into the abs section. */
684 save = stat_ptr;
685
686 stat_ptr = &(abs_output_section->children);
687
688 for (j = 0; init[j].ptr; j++)
689 {
690 long val = init[j].value;
691 lang_assignment_statement_type *rv;
692 rv = lang_add_assignment (exp_assop ('=', init[j].symbol,
693 exp_intop (val)));
694 if (init[j].size == sizeof (short))
695 *(short *) init[j].ptr = val;
696 else if (init[j].size == sizeof (int))
697 *(int *) init[j].ptr = val;
698 else if (init[j].size == sizeof (long))
699 *(long *) init[j].ptr = val;
700 /* This might be a long long or other special type. */
701 else if (init[j].size == sizeof (bfd_vma))
702 *(bfd_vma *) init[j].ptr = val;
703 else abort ();
704 if (j == IMAGEBASEOFF)
705 image_base_statement = rv;
706 }
707 /* Restore the pointer. */
708 stat_ptr = save;
709
710 if (pe.FileAlignment >
711 pe.SectionAlignment)
712 {
713 einfo (_("%P: warning, file alignment > section alignment.\n"));
714 }
715 }
716
717 /* This is called after the linker script and the command line options
718 have been read. */
719
720 static void
721 gld_${EMULATION_NAME}_after_parse (void)
722 {
723 /* The Windows libraries are designed for the linker to treat the
724 entry point as an undefined symbol. Otherwise, the .obj that
725 defines mainCRTStartup is brought in because it is the first
726 encountered in libc.lib and it has other symbols in it which will
727 be pulled in by the link process. To avoid this, we act as
728 though the user specified -u with the entry point symbol.
729
730 This function is called after the linker script and command line
731 options have been read, so at this point we know the right entry
732 point. This function is called before the input files are
733 opened, so registering the symbol as undefined will make a
734 difference. */
735
736 if (! link_info.relocatable && entry_symbol.name != NULL)
737 ldlang_add_undef (entry_symbol.name);
738 }
739
740 /* pe-dll.c directly accesses pe_data_import_dll,
741 so it must be defined outside of #ifdef DLL_SUPPORT.
742 Note - this variable is deliberately not initialised.
743 This allows it to be treated as a common varaible, and only
744 exist in one incarnation in a multiple target enabled linker. */
745 char * pe_data_import_dll;
746
747 #ifdef DLL_SUPPORT
748 static struct bfd_link_hash_entry *pe_undef_found_sym;
749
750 static bfd_boolean
751 pe_undef_cdecl_match (struct bfd_link_hash_entry *h, void *inf)
752 {
753 int sl;
754 char *string = inf;
755
756 sl = strlen (string);
757 if (h->type == bfd_link_hash_defined
758 && strncmp (h->root.string, string, sl) == 0
759 && h->root.string[sl] == '@')
760 {
761 pe_undef_found_sym = h;
762 return FALSE;
763 }
764 return TRUE;
765 }
766
767 static void
768 pe_fixup_stdcalls (void)
769 {
770 static int gave_warning_message = 0;
771 struct bfd_link_hash_entry *undef, *sym;
772
773 if (pe_dll_extra_pe_debug)
774 printf ("%s\n", __FUNCTION__);
775
776 for (undef = link_info.hash->undefs; undef; undef=undef->u.undef.next)
777 if (undef->type == bfd_link_hash_undefined)
778 {
779 char* at = strchr (undef->root.string, '@');
780 int lead_at = (*undef->root.string == '@');
781 /* For now, don't try to fixup fastcall symbols. */
782
783 if (at && !lead_at)
784 {
785 /* The symbol is a stdcall symbol, so let's look for a
786 cdecl symbol with the same name and resolve to that. */
787 char *cname = xstrdup (undef->root.string /* + lead_at */);
788 at = strchr (cname, '@');
789 *at = 0;
790 sym = bfd_link_hash_lookup (link_info.hash, cname, 0, 0, 1);
791
792 if (sym && sym->type == bfd_link_hash_defined)
793 {
794 undef->type = bfd_link_hash_defined;
795 undef->u.def.value = sym->u.def.value;
796 undef->u.def.section = sym->u.def.section;
797
798 if (pe_enable_stdcall_fixup == -1)
799 {
800 einfo (_("Warning: resolving %s by linking to %s\n"),
801 undef->root.string, cname);
802 if (! gave_warning_message)
803 {
804 gave_warning_message = 1;
805 einfo (_("Use --enable-stdcall-fixup to disable these warnings\n"));
806 einfo (_("Use --disable-stdcall-fixup to disable these fixups\n"));
807 }
808 }
809 }
810 }
811 else
812 {
813 /* The symbol is a cdecl symbol, so we look for stdcall
814 symbols - which means scanning the whole symbol table. */
815 pe_undef_found_sym = 0;
816 bfd_link_hash_traverse (link_info.hash, pe_undef_cdecl_match,
817 (char *) undef->root.string);
818 sym = pe_undef_found_sym;
819 if (sym)
820 {
821 undef->type = bfd_link_hash_defined;
822 undef->u.def.value = sym->u.def.value;
823 undef->u.def.section = sym->u.def.section;
824
825 if (pe_enable_stdcall_fixup == -1)
826 {
827 einfo (_("Warning: resolving %s by linking to %s\n"),
828 undef->root.string, sym->root.string);
829 if (! gave_warning_message)
830 {
831 gave_warning_message = 1;
832 einfo (_("Use --enable-stdcall-fixup to disable these warnings\n"));
833 einfo (_("Use --disable-stdcall-fixup to disable these fixups\n"));
834 }
835 }
836 }
837 }
838 }
839 }
840
841 static int
842 make_import_fixup (arelent *rel, asection *s)
843 {
844 struct bfd_symbol *sym = *rel->sym_ptr_ptr;
845 char addend[4];
846
847 if (pe_dll_extra_pe_debug)
848 printf ("arelent: %s@%#lx: add=%li\n", sym->name,
849 (long) rel->address, (long) rel->addend);
850
851 if (! bfd_get_section_contents (s->owner, s, addend, rel->address, sizeof (addend)))
852 einfo (_("%C: Cannot get section contents - auto-import exception\n"),
853 s->owner, s, rel->address);
854
855 pe_create_import_fixup (rel, s, bfd_get_32 (s->owner, addend));
856
857 return 1;
858 }
859
860 static void
861 pe_find_data_imports (void)
862 {
863 struct bfd_link_hash_entry *undef, *sym;
864
865 if (link_info.pei386_auto_import == 0)
866 return;
867
868 for (undef = link_info.hash->undefs; undef; undef=undef->u.undef.next)
869 {
870 if (undef->type == bfd_link_hash_undefined)
871 {
872 /* C++ symbols are *long*. */
873 char buf[4096];
874
875 if (pe_dll_extra_pe_debug)
876 printf ("%s:%s\n", __FUNCTION__, undef->root.string);
877
878 sprintf (buf, "__imp_%s", undef->root.string);
879
880 sym = bfd_link_hash_lookup (link_info.hash, buf, 0, 0, 1);
881
882 if (sym && sym->type == bfd_link_hash_defined)
883 {
884 bfd *b = sym->u.def.section->owner;
885 asymbol **symbols;
886 int nsyms, symsize, i;
887
888 if (link_info.pei386_auto_import == -1)
889 info_msg (_("Info: resolving %s by linking to %s (auto-import)\n"),
890 undef->root.string, buf);
891
892 symsize = bfd_get_symtab_upper_bound (b);
893 symbols = (asymbol **) xmalloc (symsize);
894 nsyms = bfd_canonicalize_symtab (b, symbols);
895
896 for (i = 0; i < nsyms; i++)
897 {
898 if (memcmp (symbols[i]->name, "__head_",
899 sizeof ("__head_") - 1))
900 continue;
901
902 if (pe_dll_extra_pe_debug)
903 printf ("->%s\n", symbols[i]->name);
904
905 pe_data_import_dll = (char*) (symbols[i]->name +
906 sizeof ("__head_") - 1);
907 break;
908 }
909
910 pe_walk_relocs_of_symbol (&link_info, undef->root.string,
911 make_import_fixup);
912
913 /* Let's differentiate it somehow from defined. */
914 undef->type = bfd_link_hash_defweak;
915 /* We replace original name with __imp_ prefixed, this
916 1) may trash memory 2) leads to duplicate symbol generation.
917 Still, IMHO it's better than having name poluted. */
918 undef->root.string = sym->root.string;
919 undef->u.def.value = sym->u.def.value;
920 undef->u.def.section = sym->u.def.section;
921 }
922 }
923 }
924 }
925
926 static bfd_boolean
927 pr_sym (struct bfd_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
928 {
929 if (pe_dll_extra_pe_debug)
930 printf ("+%s\n", h->string);
931
932 return TRUE;
933 }
934 #endif /* DLL_SUPPORT */
935
936
937 static void
938 gld_${EMULATION_NAME}_after_open (void)
939 {
940 #ifdef DLL_SUPPORT
941 if (pe_dll_extra_pe_debug)
942 {
943 bfd *a;
944 struct bfd_link_hash_entry *sym;
945
946 printf ("%s()\n", __FUNCTION__);
947
948 for (sym = link_info.hash->undefs; sym; sym=sym->u.undef.next)
949 printf ("-%s\n", sym->root.string);
950 bfd_hash_traverse (&link_info.hash->table, pr_sym, NULL);
951
952 for (a = link_info.input_bfds; a; a = a->link_next)
953 printf ("*%s\n",a->filename);
954 }
955 #endif
956
957 /* Pass the wacky PE command line options into the output bfd.
958 FIXME: This should be done via a function, rather than by
959 including an internal BFD header. */
960
961 if (coff_data (output_bfd) == NULL || coff_data (output_bfd)->pe == 0)
962 einfo (_("%F%P: PE operations on non PE file.\n"));
963
964 pe_data (output_bfd)->pe_opthdr = pe;
965 pe_data (output_bfd)->dll = init[DLLOFF].value;
966 pe_data (output_bfd)->real_flags |= real_flags;
967
968 #ifdef DLL_SUPPORT
969 if (pe_enable_stdcall_fixup) /* -1=warn or 1=disable */
970 pe_fixup_stdcalls ();
971
972 pe_process_import_defs (output_bfd, & link_info);
973
974 pe_find_data_imports ();
975
976 #if ! (defined (TARGET_IS_i386pe) || defined (TARGET_IS_armpe))
977 if (link_info.shared)
978 #else
979 if (!link_info.relocatable)
980 #endif
981 pe_dll_build_sections (output_bfd, &link_info);
982
983 #ifndef TARGET_IS_i386pe
984 #ifndef TARGET_IS_armpe
985 else
986 pe_exe_build_sections (output_bfd, &link_info);
987 #endif
988 #endif
989 #endif
990
991 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
992 if (strstr (bfd_get_target (output_bfd), "arm") == NULL)
993 {
994 /* The arm backend needs special fields in the output hash structure.
995 These will only be created if the output format is an arm format,
996 hence we do not support linking and changing output formats at the
997 same time. Use a link followed by objcopy to change output formats. */
998 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
999 return;
1000 }
1001 {
1002 /* Find a BFD that can hold the interworking stubs. */
1003 LANG_FOR_EACH_INPUT_STATEMENT (is)
1004 {
1005 if (bfd_arm_pe_get_bfd_for_interworking (is->the_bfd, & link_info))
1006 break;
1007 }
1008 }
1009 #endif
1010
1011 {
1012 /* This next chunk of code tries to detect the case where you have
1013 two import libraries for the same DLL (specifically,
1014 symbolically linking libm.a and libc.a in cygwin to
1015 libcygwin.a). In those cases, it's possible for function
1016 thunks from the second implib to be used but without the
1017 head/tail objects, causing an improper import table. We detect
1018 those cases and rename the "other" import libraries to match
1019 the one the head/tail come from, so that the linker will sort
1020 things nicely and produce a valid import table. */
1021
1022 LANG_FOR_EACH_INPUT_STATEMENT (is)
1023 {
1024 if (is->the_bfd->my_archive)
1025 {
1026 int idata2 = 0, reloc_count=0, is_imp = 0;
1027 asection *sec;
1028
1029 /* See if this is an import library thunk. */
1030 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1031 {
1032 if (strcmp (sec->name, ".idata\$2") == 0)
1033 idata2 = 1;
1034 if (strncmp (sec->name, ".idata\$", 7) == 0)
1035 is_imp = 1;
1036 reloc_count += sec->reloc_count;
1037 }
1038
1039 if (is_imp && !idata2 && reloc_count)
1040 {
1041 /* It is, look for the reference to head and see if it's
1042 from our own library. */
1043 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1044 {
1045 int i;
1046 long symsize;
1047 long relsize;
1048 asymbol **symbols;
1049 arelent **relocs;
1050 int nrelocs;
1051
1052 symsize = bfd_get_symtab_upper_bound (is->the_bfd);
1053 if (symsize < 1)
1054 break;
1055 relsize = bfd_get_reloc_upper_bound (is->the_bfd, sec);
1056 if (relsize < 1)
1057 break;
1058
1059 symbols = (asymbol **) xmalloc (symsize);
1060 symsize = bfd_canonicalize_symtab (is->the_bfd, symbols);
1061 if (symsize < 0)
1062 {
1063 einfo ("%X%P: unable to process symbols: %E");
1064 return;
1065 }
1066
1067 relocs = (arelent **) xmalloc ((size_t) relsize);
1068 nrelocs = bfd_canonicalize_reloc (is->the_bfd, sec,
1069 relocs, symbols);
1070 if (nrelocs < 0)
1071 {
1072 free (relocs);
1073 einfo ("%X%P: unable to process relocs: %E");
1074 return;
1075 }
1076
1077 for (i = 0; i < nrelocs; i++)
1078 {
1079 struct bfd_symbol *s;
1080 struct bfd_link_hash_entry * blhe;
1081 char *other_bfd_filename;
1082 char *n;
1083
1084 s = (relocs[i]->sym_ptr_ptr)[0];
1085
1086 if (s->flags & BSF_LOCAL)
1087 continue;
1088
1089 /* Thunk section with reloc to another bfd. */
1090 blhe = bfd_link_hash_lookup (link_info.hash,
1091 s->name,
1092 FALSE, FALSE, TRUE);
1093
1094 if (blhe == NULL
1095 || blhe->type != bfd_link_hash_defined)
1096 continue;
1097
1098 other_bfd_filename
1099 = blhe->u.def.section->owner->my_archive
1100 ? bfd_get_filename (blhe->u.def.section->owner->my_archive)
1101 : bfd_get_filename (blhe->u.def.section->owner);
1102
1103 if (strcmp (bfd_get_filename (is->the_bfd->my_archive),
1104 other_bfd_filename) == 0)
1105 continue;
1106
1107 /* Rename this implib to match the other one. */
1108 n = xmalloc (strlen (other_bfd_filename) + 1);
1109 strcpy (n, other_bfd_filename);
1110 is->the_bfd->my_archive->filename = n;
1111 }
1112
1113 free (relocs);
1114 /* Note - we do not free the symbols,
1115 they are now cached in the BFD. */
1116 }
1117 }
1118 }
1119 }
1120 }
1121
1122 {
1123 int is_ms_arch = 0;
1124 bfd *cur_arch = 0;
1125 lang_input_statement_type *is2;
1126 lang_input_statement_type *is3;
1127
1128 /* Careful - this is a shell script. Watch those dollar signs! */
1129 /* Microsoft import libraries have every member named the same,
1130 and not in the right order for us to link them correctly. We
1131 must detect these and rename the members so that they'll link
1132 correctly. There are three types of objects: the head, the
1133 thunks, and the sentinel(s). The head is easy; it's the one
1134 with idata2. We assume that the sentinels won't have relocs,
1135 and the thunks will. It's easier than checking the symbol
1136 table for external references. */
1137 LANG_FOR_EACH_INPUT_STATEMENT (is)
1138 {
1139 if (is->the_bfd->my_archive)
1140 {
1141 char *pnt;
1142 bfd *arch = is->the_bfd->my_archive;
1143
1144 if (cur_arch != arch)
1145 {
1146 cur_arch = arch;
1147 is_ms_arch = 1;
1148
1149 for (is3 = is;
1150 is3 && is3->the_bfd->my_archive == arch;
1151 is3 = (lang_input_statement_type *) is3->next)
1152 {
1153 /* A MS dynamic import library can also contain static
1154 members, so look for the first element with a .dll
1155 extension, and use that for the remainder of the
1156 comparisons. */
1157 pnt = strrchr (is3->the_bfd->filename, '.');
1158 if (pnt != NULL && strcmp (pnt, ".dll") == 0)
1159 break;
1160 }
1161
1162 if (is3 == NULL)
1163 is_ms_arch = 0;
1164 else
1165 {
1166 /* OK, found one. Now look to see if the remaining
1167 (dynamic import) members use the same name. */
1168 for (is2 = is;
1169 is2 && is2->the_bfd->my_archive == arch;
1170 is2 = (lang_input_statement_type *) is2->next)
1171 {
1172 /* Skip static members, ie anything with a .obj
1173 extension. */
1174 pnt = strrchr (is2->the_bfd->filename, '.');
1175 if (pnt != NULL && strcmp (pnt, ".obj") == 0)
1176 continue;
1177
1178 if (strcmp (is3->the_bfd->filename,
1179 is2->the_bfd->filename))
1180 {
1181 is_ms_arch = 0;
1182 break;
1183 }
1184 }
1185 }
1186 }
1187
1188 /* This fragment might have come from an .obj file in a Microsoft
1189 import, and not an actual import record. If this is the case,
1190 then leave the filename alone. */
1191 pnt = strrchr (is->the_bfd->filename, '.');
1192
1193 if (is_ms_arch && (strcmp (pnt, ".dll") == 0))
1194 {
1195 int idata2 = 0, reloc_count=0;
1196 asection *sec;
1197 char *new_name, seq;
1198
1199 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1200 {
1201 if (strcmp (sec->name, ".idata\$2") == 0)
1202 idata2 = 1;
1203 reloc_count += sec->reloc_count;
1204 }
1205
1206 if (idata2) /* .idata2 is the TOC */
1207 seq = 'a';
1208 else if (reloc_count > 0) /* thunks */
1209 seq = 'b';
1210 else /* sentinel */
1211 seq = 'c';
1212
1213 new_name = xmalloc (strlen (is->the_bfd->filename) + 3);
1214 sprintf (new_name, "%s.%c", is->the_bfd->filename, seq);
1215 is->the_bfd->filename = new_name;
1216
1217 new_name = xmalloc (strlen (is->filename) + 3);
1218 sprintf (new_name, "%s.%c", is->filename, seq);
1219 is->filename = new_name;
1220 }
1221 }
1222 }
1223 }
1224 }
1225 \f
1226 static void
1227 gld_${EMULATION_NAME}_before_allocation (void)
1228 {
1229 #ifdef TARGET_IS_ppcpe
1230 /* Here we rummage through the found bfds to collect toc information. */
1231 {
1232 LANG_FOR_EACH_INPUT_STATEMENT (is)
1233 {
1234 if (!ppc_process_before_allocation (is->the_bfd, &link_info))
1235 {
1236 /* xgettext:c-format */
1237 einfo (_("Errors encountered processing file %s\n"), is->filename);
1238 }
1239 }
1240 }
1241
1242 /* We have seen it all. Allocate it, and carry on. */
1243 ppc_allocate_toc_section (&link_info);
1244 #endif /* TARGET_IS_ppcpe */
1245
1246 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
1247 /* FIXME: we should be able to set the size of the interworking stub
1248 section.
1249
1250 Here we rummage through the found bfds to collect glue
1251 information. FIXME: should this be based on a command line
1252 option? krk@cygnus.com. */
1253 {
1254 LANG_FOR_EACH_INPUT_STATEMENT (is)
1255 {
1256 if (! bfd_arm_pe_process_before_allocation
1257 (is->the_bfd, & link_info, support_old_code))
1258 {
1259 /* xgettext:c-format */
1260 einfo (_("Errors encountered processing file %s for interworking"),
1261 is->filename);
1262 }
1263 }
1264 }
1265
1266 /* We have seen it all. Allocate it, and carry on. */
1267 bfd_arm_pe_allocate_interworking_sections (& link_info);
1268 #endif /* TARGET_IS_armpe */
1269 }
1270 \f
1271 #ifdef DLL_SUPPORT
1272 /* This is called when an input file isn't recognized as a BFD. We
1273 check here for .DEF files and pull them in automatically. */
1274
1275 static int
1276 saw_option (char *option)
1277 {
1278 int i;
1279
1280 for (i = 0; init[i].ptr; i++)
1281 if (strcmp (init[i].symbol, option) == 0)
1282 return init[i].inited;
1283 return 0;
1284 }
1285 #endif /* DLL_SUPPORT */
1286
1287 static bfd_boolean
1288 gld_${EMULATION_NAME}_unrecognized_file (lang_input_statement_type *entry ATTRIBUTE_UNUSED)
1289 {
1290 #ifdef DLL_SUPPORT
1291 const char *ext = entry->filename + strlen (entry->filename) - 4;
1292
1293 if (strcmp (ext, ".def") == 0 || strcmp (ext, ".DEF") == 0)
1294 {
1295 pe_def_file = def_file_parse (entry->filename, pe_def_file);
1296
1297 if (pe_def_file)
1298 {
1299 int i, buflen=0, len;
1300 char *buf;
1301
1302 for (i = 0; i < pe_def_file->num_exports; i++)
1303 {
1304 len = strlen (pe_def_file->exports[i].internal_name);
1305 if (buflen < len + 2)
1306 buflen = len + 2;
1307 }
1308
1309 buf = (char *) xmalloc (buflen);
1310
1311 for (i = 0; i < pe_def_file->num_exports; i++)
1312 {
1313 struct bfd_link_hash_entry *h;
1314
1315 sprintf (buf, "_%s", pe_def_file->exports[i].internal_name);
1316
1317 h = bfd_link_hash_lookup (link_info.hash, buf, TRUE, TRUE, TRUE);
1318 if (h == (struct bfd_link_hash_entry *) NULL)
1319 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1320 if (h->type == bfd_link_hash_new)
1321 {
1322 h->type = bfd_link_hash_undefined;
1323 h->u.undef.abfd = NULL;
1324 bfd_link_add_undef (link_info.hash, h);
1325 }
1326 }
1327 free (buf);
1328
1329 /* def_file_print (stdout, pe_def_file); */
1330 if (pe_def_file->is_dll == 1)
1331 link_info.shared = 1;
1332
1333 if (pe_def_file->base_address != (bfd_vma)(-1))
1334 {
1335 pe.ImageBase =
1336 pe_data (output_bfd)->pe_opthdr.ImageBase =
1337 init[IMAGEBASEOFF].value = pe_def_file->base_address;
1338 init[IMAGEBASEOFF].inited = 1;
1339 if (image_base_statement)
1340 image_base_statement->exp =
1341 exp_assop ('=', "__image_base__", exp_intop (pe.ImageBase));
1342 }
1343
1344 #if 0
1345 /* Not sure if these *should* be set. */
1346 if (pe_def_file->version_major != -1)
1347 {
1348 pe.MajorImageVersion = pe_def_file->version_major;
1349 pe.MinorImageVersion = pe_def_file->version_minor;
1350 }
1351 #endif
1352 if (pe_def_file->stack_reserve != -1
1353 && ! saw_option ("__size_of_stack_reserve__"))
1354 {
1355 pe.SizeOfStackReserve = pe_def_file->stack_reserve;
1356 if (pe_def_file->stack_commit != -1)
1357 pe.SizeOfStackCommit = pe_def_file->stack_commit;
1358 }
1359 if (pe_def_file->heap_reserve != -1
1360 && ! saw_option ("__size_of_heap_reserve__"))
1361 {
1362 pe.SizeOfHeapReserve = pe_def_file->heap_reserve;
1363 if (pe_def_file->heap_commit != -1)
1364 pe.SizeOfHeapCommit = pe_def_file->heap_commit;
1365 }
1366 return TRUE;
1367 }
1368 }
1369 #endif
1370 return FALSE;
1371 }
1372
1373 static bfd_boolean
1374 gld_${EMULATION_NAME}_recognized_file (lang_input_statement_type *entry ATTRIBUTE_UNUSED)
1375 {
1376 #ifdef DLL_SUPPORT
1377 #ifdef TARGET_IS_i386pe
1378 pe_dll_id_target ("pei-i386");
1379 #endif
1380 #ifdef TARGET_IS_shpe
1381 pe_dll_id_target ("pei-shl");
1382 #endif
1383 #ifdef TARGET_IS_mipspe
1384 pe_dll_id_target ("pei-mips");
1385 #endif
1386 #ifdef TARGET_IS_armpe
1387 pe_dll_id_target ("pei-arm-little");
1388 #endif
1389 if (bfd_get_format (entry->the_bfd) == bfd_object)
1390 {
1391 char fbuf[LD_PATHMAX + 1];
1392 const char *ext;
1393
1394 if (REALPATH (entry->filename, fbuf) == NULL)
1395 strncpy (fbuf, entry->filename, sizeof (fbuf));
1396
1397 ext = fbuf + strlen (fbuf) - 4;
1398
1399 if (strcmp (ext, ".dll") == 0 || strcmp (ext, ".DLL") == 0)
1400 return pe_implied_import_dll (fbuf);
1401 }
1402 #endif
1403 return FALSE;
1404 }
1405
1406 static void
1407 gld_${EMULATION_NAME}_finish (void)
1408 {
1409 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
1410 struct bfd_link_hash_entry * h;
1411
1412 if (thumb_entry_symbol != NULL)
1413 {
1414 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
1415 FALSE, FALSE, TRUE);
1416
1417 if (h != (struct bfd_link_hash_entry *) NULL
1418 && (h->type == bfd_link_hash_defined
1419 || h->type == bfd_link_hash_defweak)
1420 && h->u.def.section->output_section != NULL)
1421 {
1422 static char buffer[32];
1423 bfd_vma val;
1424
1425 /* Special procesing is required for a Thumb entry symbol. The
1426 bottom bit of its address must be set. */
1427 val = (h->u.def.value
1428 + bfd_get_section_vma (output_bfd,
1429 h->u.def.section->output_section)
1430 + h->u.def.section->output_offset);
1431
1432 val |= 1;
1433
1434 /* Now convert this value into a string and store it in entry_symbol
1435 where the lang_finish() function will pick it up. */
1436 buffer[0] = '0';
1437 buffer[1] = 'x';
1438
1439 sprintf_vma (buffer + 2, val);
1440
1441 if (entry_symbol.name != NULL && entry_from_cmdline)
1442 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
1443 thumb_entry_symbol, entry_symbol.name);
1444 entry_symbol.name = buffer;
1445 }
1446 else
1447 einfo (_("%P: warning: connot find thumb start symbol %s\n"), thumb_entry_symbol);
1448 }
1449 #endif /* defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) */
1450
1451 #ifdef DLL_SUPPORT
1452 if (link_info.shared
1453 #if !defined(TARGET_IS_shpe) && !defined(TARGET_IS_mipspe)
1454 || (!link_info.relocatable && pe_def_file->num_exports != 0)
1455 #endif
1456 )
1457 {
1458 pe_dll_fill_sections (output_bfd, &link_info);
1459 if (pe_implib_filename)
1460 pe_dll_generate_implib (pe_def_file, pe_implib_filename);
1461 }
1462 #if defined(TARGET_IS_shpe) || defined(TARGET_IS_mipspe)
1463 /* ARM doesn't need relocs. */
1464 else
1465 {
1466 pe_exe_fill_sections (output_bfd, &link_info);
1467 }
1468 #endif
1469
1470 if (pe_out_def_filename)
1471 pe_dll_generate_def_file (pe_out_def_filename);
1472 #endif /* DLL_SUPPORT */
1473
1474 /* I don't know where .idata gets set as code, but it shouldn't be. */
1475 {
1476 asection *asec = bfd_get_section_by_name (output_bfd, ".idata");
1477
1478 if (asec)
1479 {
1480 asec->flags &= ~SEC_CODE;
1481 asec->flags |= SEC_DATA;
1482 }
1483 }
1484 }
1485
1486 \f
1487 /* Place an orphan section.
1488
1489 We use this to put sections in a reasonable place in the file, and
1490 to ensure that they are aligned as required.
1491
1492 We handle grouped sections here as well. A section named .foo$nn
1493 goes into the output section .foo. All grouped sections are sorted
1494 by name.
1495
1496 Grouped sections for the default sections are handled by the
1497 default linker script using wildcards, and are sorted by
1498 sort_sections. */
1499
1500 static bfd_boolean
1501 gld_${EMULATION_NAME}_place_orphan (lang_input_statement_type *file, asection *s)
1502 {
1503 const char *secname;
1504 const char *orig_secname;
1505 char *dollar = NULL;
1506 lang_output_section_statement_type *os;
1507 lang_statement_list_type add_child;
1508
1509 secname = bfd_get_section_name (s->owner, s);
1510
1511 /* Look through the script to see where to place this section. */
1512 orig_secname = secname;
1513 if (!link_info.relocatable
1514 && (dollar = strchr (secname, '$')) != NULL)
1515 {
1516 size_t len = dollar - orig_secname;
1517 char *newname = xmalloc (len + 1);
1518 memcpy (newname, orig_secname, len);
1519 newname[len] = '\0';
1520 secname = newname;
1521 }
1522
1523 os = lang_output_section_find (secname);
1524
1525 lang_list_init (&add_child);
1526
1527 if (os != NULL
1528 && (os->bfd_section == NULL
1529 || os->bfd_section->flags == 0
1530 || ((s->flags ^ os->bfd_section->flags)
1531 & (SEC_LOAD | SEC_ALLOC)) == 0))
1532 {
1533 /* We already have an output section statement with this
1534 name, and its bfd section, if any, has compatible flags.
1535 If the section already exists but does not have any flags set,
1536 then it has been created by the linker, probably as a result of
1537 a --section-start command line switch. */
1538 lang_add_section (&add_child, s, os, file);
1539 }
1540 else
1541 {
1542 static struct orphan_save hold[] =
1543 {
1544 { ".text",
1545 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1546 0, 0, 0, 0 },
1547 { ".rdata",
1548 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1549 0, 0, 0, 0 },
1550 { ".data",
1551 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1552 0, 0, 0, 0 },
1553 { ".bss",
1554 SEC_ALLOC,
1555 0, 0, 0, 0 }
1556 };
1557 enum orphan_save_index
1558 {
1559 orphan_text = 0,
1560 orphan_rodata,
1561 orphan_data,
1562 orphan_bss
1563 };
1564 static int orphan_init_done = 0;
1565 struct orphan_save *place;
1566 lang_output_section_statement_type *after;
1567 etree_type *address;
1568
1569 if (!orphan_init_done)
1570 {
1571 struct orphan_save *ho;
1572 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
1573 if (ho->name != NULL)
1574 {
1575 ho->os = lang_output_section_find (ho->name);
1576 if (ho->os != NULL && ho->os->flags == 0)
1577 ho->os->flags = ho->flags;
1578 }
1579 orphan_init_done = 1;
1580 }
1581
1582 /* Try to put the new output section in a reasonable place based
1583 on the section name and section flags. */
1584
1585 place = NULL;
1586 if ((s->flags & SEC_ALLOC) == 0)
1587 ;
1588 else if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
1589 place = &hold[orphan_bss];
1590 else if ((s->flags & SEC_READONLY) == 0)
1591 place = &hold[orphan_data];
1592 else if ((s->flags & SEC_CODE) == 0)
1593 place = &hold[orphan_rodata];
1594 else
1595 place = &hold[orphan_text];
1596
1597 after = NULL;
1598 if (place != NULL)
1599 {
1600 if (place->os == NULL)
1601 place->os = lang_output_section_find (place->name);
1602 after = place->os;
1603 if (after == NULL)
1604 after = lang_output_section_find_by_flags (s, &place->os);
1605 if (after == NULL)
1606 /* *ABS* is always the first output section statement. */
1607 after = (&lang_output_section_statement.head
1608 ->output_section_statement);
1609 }
1610
1611 /* Choose a unique name for the section. This will be needed if the
1612 same section name appears in the input file with different
1613 loadable or allocatable characteristics. */
1614 if (bfd_get_section_by_name (output_bfd, secname) != NULL)
1615 {
1616 static int count = 1;
1617 secname = bfd_get_unique_section_name (output_bfd, secname, &count);
1618 if (secname == NULL)
1619 einfo ("%F%P: place_orphan failed: %E\n");
1620 }
1621
1622 /* All sections in an executable must be aligned to a page boundary. */
1623 address = exp_unop (ALIGN_K, exp_nameop (NAME, "__section_alignment__"));
1624 os = lang_insert_orphan (file, s, secname, after, place, address,
1625 &add_child);
1626 }
1627
1628 {
1629 lang_statement_union_type **pl = &os->children.head;
1630
1631 if (dollar != NULL)
1632 {
1633 bfd_boolean found_dollar;
1634
1635 /* The section name has a '$'. Sort it with the other '$'
1636 sections. */
1637 found_dollar = FALSE;
1638 for ( ; *pl != NULL; pl = &(*pl)->header.next)
1639 {
1640 lang_input_section_type *ls;
1641 const char *lname;
1642
1643 if ((*pl)->header.type != lang_input_section_enum)
1644 continue;
1645
1646 ls = &(*pl)->input_section;
1647
1648 lname = bfd_get_section_name (ls->ifile->the_bfd, ls->section);
1649 if (strchr (lname, '$') == NULL)
1650 {
1651 if (found_dollar)
1652 break;
1653 }
1654 else
1655 {
1656 found_dollar = TRUE;
1657 if (strcmp (orig_secname, lname) < 0)
1658 break;
1659 }
1660 }
1661 }
1662
1663 if (add_child.head != NULL)
1664 {
1665 add_child.head->header.next = *pl;
1666 *pl = add_child.head;
1667 }
1668 }
1669
1670 return TRUE;
1671 }
1672
1673 static bfd_boolean
1674 gld_${EMULATION_NAME}_open_dynamic_archive
1675 (const char *arch ATTRIBUTE_UNUSED, search_dirs_type *search,
1676 lang_input_statement_type *entry)
1677 {
1678 const char * filename;
1679 char * string;
1680
1681 if (! entry->is_archive)
1682 return FALSE;
1683
1684 filename = entry->filename;
1685
1686 string = (char *) xmalloc (strlen (search->name)
1687 + strlen (filename)
1688 + sizeof "/lib.a.dll"
1689 #ifdef DLL_SUPPORT
1690 + (pe_dll_search_prefix ? strlen (pe_dll_search_prefix) : 0)
1691 #endif
1692 + 1);
1693
1694 /* Try "libfoo.dll.a" first (preferred explicit import library for dll's. */
1695 sprintf (string, "%s/lib%s.dll.a", search->name, filename);
1696
1697 if (! ldfile_try_open_bfd (string, entry))
1698 {
1699 /* Try "foo.dll.a" next (alternate explicit import library for dll's. */
1700 sprintf (string, "%s/%s.dll.a", search->name, filename);
1701 if (! ldfile_try_open_bfd (string, entry))
1702 {
1703 /* Try libfoo.a next. Normally, this would be interpreted as a static
1704 library, but it *could* be an import library. For backwards compatibility,
1705 libfoo.a needs to ==precede== libfoo.dll and foo.dll in the search,
1706 or sometimes errors occur when building legacy packages.
1707
1708 Putting libfoo.a here means that in a failure case (i.e. the library
1709 -lfoo is not found) we will search for libfoo.a twice before
1710 giving up -- once here, and once when searching for a "static" lib.
1711 for a "static" lib. */
1712 /* Try "libfoo.a" (import lib, or static lib, but must
1713 take precedence over dll's). */
1714 sprintf (string, "%s/lib%s.a", search->name, filename);
1715 if (! ldfile_try_open_bfd (string, entry))
1716 {
1717 #ifdef DLL_SUPPORT
1718 if (pe_dll_search_prefix)
1719 {
1720 /* Try "<prefix>foo.dll" (preferred dll name, if specified). */
1721 sprintf (string, "%s/%s%s.dll", search->name, pe_dll_search_prefix, filename);
1722 if (! ldfile_try_open_bfd (string, entry))
1723 {
1724 /* Try "libfoo.dll" (default preferred dll name). */
1725 sprintf (string, "%s/lib%s.dll", search->name, filename);
1726 if (! ldfile_try_open_bfd (string, entry))
1727 {
1728 /* Finally, try "foo.dll" (alternate dll name). */
1729 sprintf (string, "%s/%s.dll", search->name, filename);
1730 if (! ldfile_try_open_bfd (string, entry))
1731 {
1732 free (string);
1733 return FALSE;
1734 }
1735 }
1736 }
1737 }
1738 else /* pe_dll_search_prefix not specified. */
1739 #endif
1740 {
1741 /* Try "libfoo.dll" (preferred dll name). */
1742 sprintf (string, "%s/lib%s.dll", search->name, filename);
1743 if (! ldfile_try_open_bfd (string, entry))
1744 {
1745 /* Finally, try "foo.dll" (alternate dll name). */
1746 sprintf (string, "%s/%s.dll", search->name, filename);
1747 if (! ldfile_try_open_bfd (string, entry))
1748 {
1749 free (string);
1750 return FALSE;
1751 }
1752 }
1753 }
1754 }
1755 }
1756 }
1757
1758 entry->filename = string;
1759
1760 return TRUE;
1761 }
1762
1763 static int
1764 gld_${EMULATION_NAME}_find_potential_libraries
1765 (char *name, lang_input_statement_type *entry)
1766 {
1767 return ldfile_open_file_search (name, entry, "", ".lib");
1768 }
1769 \f
1770 static char *
1771 gld_${EMULATION_NAME}_get_script (int *isfile)
1772 EOF
1773 # Scripts compiled in.
1774 # sed commands to quote an ld script as a C string.
1775 sc="-f stringify.sed"
1776
1777 cat >>e${EMULATION_NAME}.c <<EOF
1778 {
1779 *isfile = 0;
1780
1781 if (link_info.relocatable && config.build_constructors)
1782 return
1783 EOF
1784 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
1785 echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c
1786 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
1787 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
1788 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
1789 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
1790 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
1791 echo ' ; else return' >> e${EMULATION_NAME}.c
1792 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
1793 echo '; }' >> e${EMULATION_NAME}.c
1794
1795 cat >>e${EMULATION_NAME}.c <<EOF
1796
1797
1798 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
1799 {
1800 gld_${EMULATION_NAME}_before_parse,
1801 syslib_default,
1802 hll_default,
1803 gld_${EMULATION_NAME}_after_parse,
1804 gld_${EMULATION_NAME}_after_open,
1805 after_allocation_default,
1806 set_output_arch_default,
1807 ldemul_default_target,
1808 gld_${EMULATION_NAME}_before_allocation,
1809 gld_${EMULATION_NAME}_get_script,
1810 "${EMULATION_NAME}",
1811 "${OUTPUT_FORMAT}",
1812 gld_${EMULATION_NAME}_finish,
1813 NULL, /* Create output section statements. */
1814 gld_${EMULATION_NAME}_open_dynamic_archive,
1815 gld_${EMULATION_NAME}_place_orphan,
1816 gld_${EMULATION_NAME}_set_symbols,
1817 NULL, /* parse_args */
1818 gld${EMULATION_NAME}_add_options,
1819 gld${EMULATION_NAME}_handle_option,
1820 gld_${EMULATION_NAME}_unrecognized_file,
1821 gld_${EMULATION_NAME}_list_options,
1822 gld_${EMULATION_NAME}_recognized_file,
1823 gld_${EMULATION_NAME}_find_potential_libraries,
1824 NULL /* new_vers_pattern. */
1825 };
1826 EOF
This page took 0.077085 seconds and 5 git commands to generate.