* emultempl/pe.em [cygwin]: Do not merge rdata with v2
[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 fragment <<EOF
11 /* Copyright 1995-2013 Free Software Foundation, Inc.
12
13 This file is part of the GNU Binutils.
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
28 MA 02110-1301, USA. */
29
30
31 /* For WINDOWS_NT */
32 /* The original file generated returned different default scripts depending
33 on whether certain switches were set, but these switches pertain to the
34 Linux system and that particular version of coff. In the NT case, we
35 only determine if the subsystem is console or windows in order to select
36 the correct entry point by default. */
37
38 #define TARGET_IS_${EMULATION_NAME}
39
40 /* Do this before including bfd.h, so we prototype the right functions. */
41
42 #if defined(TARGET_IS_armpe) \
43 || defined(TARGET_IS_arm_epoc_pe) \
44 || defined(TARGET_IS_arm_wince_pe)
45 #define bfd_arm_allocate_interworking_sections \
46 bfd_${EMULATION_NAME}_allocate_interworking_sections
47 #define bfd_arm_get_bfd_for_interworking \
48 bfd_${EMULATION_NAME}_get_bfd_for_interworking
49 #define bfd_arm_process_before_allocation \
50 bfd_${EMULATION_NAME}_process_before_allocation
51 #endif
52
53 #include "sysdep.h"
54 #include "bfd.h"
55 #include "bfdlink.h"
56 #include "getopt.h"
57 #include "libiberty.h"
58 #include "filenames.h"
59 #include "ld.h"
60 #include "ldmain.h"
61 #include "ldexp.h"
62 #include "ldlang.h"
63 #include "ldfile.h"
64 #include "ldemul.h"
65 #include <ldgram.h>
66 #include "ldlex.h"
67 #include "ldmisc.h"
68 #include "ldctor.h"
69 #include "coff/internal.h"
70
71 /* FIXME: See bfd/peXXigen.c for why we include an architecture specific
72 header in generic PE code. */
73 #include "coff/i386.h"
74 #include "coff/pe.h"
75
76 /* FIXME: This is a BFD internal header file, and we should not be
77 using it here. */
78 #include "../bfd/libcoff.h"
79
80 #include "deffile.h"
81 #include "pe-dll.h"
82 #include "safe-ctype.h"
83
84 /* Permit the emulation parameters to override the default section
85 alignment by setting OVERRIDE_SECTION_ALIGNMENT. FIXME: This makes
86 it seem that include/coff/internal.h should not define
87 PE_DEF_SECTION_ALIGNMENT. */
88 #if PE_DEF_SECTION_ALIGNMENT != ${OVERRIDE_SECTION_ALIGNMENT:-PE_DEF_SECTION_ALIGNMENT}
89 #undef PE_DEF_SECTION_ALIGNMENT
90 #define PE_DEF_SECTION_ALIGNMENT ${OVERRIDE_SECTION_ALIGNMENT}
91 #endif
92
93 #if defined(TARGET_IS_i386pe) \
94 || defined(TARGET_IS_shpe) \
95 || defined(TARGET_IS_mipspe) \
96 || defined(TARGET_IS_armpe) \
97 || defined(TARGET_IS_arm_epoc_pe) \
98 || defined(TARGET_IS_arm_wince_pe)
99 #define DLL_SUPPORT
100 #endif
101
102 #if defined(TARGET_IS_i386pe)
103 #define DEFAULT_PSEUDO_RELOC_VERSION 2
104 #else
105 #define DEFAULT_PSEUDO_RELOC_VERSION 1
106 #endif
107
108 #if defined(TARGET_IS_i386pe) || ! defined(DLL_SUPPORT)
109 #define PE_DEF_SUBSYSTEM 3
110 #else
111 #undef NT_EXE_IMAGE_BASE
112 #undef PE_DEF_SECTION_ALIGNMENT
113 #undef PE_DEF_FILE_ALIGNMENT
114 #define NT_EXE_IMAGE_BASE 0x00010000
115
116 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_wince_pe)
117 #define PE_DEF_SECTION_ALIGNMENT 0x00001000
118 #define PE_DEF_SUBSYSTEM 9
119 #else
120 #define PE_DEF_SECTION_ALIGNMENT 0x00000400
121 #define PE_DEF_SUBSYSTEM 2
122 #endif
123 #define PE_DEF_FILE_ALIGNMENT 0x00000200
124 #endif
125
126 static struct internal_extra_pe_aouthdr pe;
127 static int dll;
128 static int pe_subsystem = ${SUBSYSTEM};
129 static flagword real_flags = 0;
130 static int support_old_code = 0;
131 static char * thumb_entry_symbol = NULL;
132 static lang_assignment_statement_type *image_base_statement = 0;
133 static unsigned short pe_dll_characteristics = 0;
134
135 #ifdef DLL_SUPPORT
136 static int pe_enable_stdcall_fixup = -1; /* 0=disable 1=enable. */
137 static char *pe_out_def_filename = NULL;
138 static char *pe_implib_filename = NULL;
139 static int pe_enable_auto_image_base = 0;
140 static char *pe_dll_search_prefix = NULL;
141 #endif
142
143 extern const char *output_filename;
144
145 static int is_underscoring (void)
146 {
147 int u = 0;
148 if (pe_leading_underscore != -1)
149 return pe_leading_underscore;
150 if (!bfd_get_target_info ("${OUTPUT_FORMAT}", NULL, NULL, &u, NULL))
151 bfd_get_target_info ("${RELOCATEABLE_OUTPUT_FORMAT}", NULL, NULL, &u, NULL);
152
153 if (u == -1)
154 abort ();
155 pe_leading_underscore = (u != 0 ? 1 : 0);
156 return pe_leading_underscore;
157 }
158
159 static void
160 gld_${EMULATION_NAME}_before_parse (void)
161 {
162 is_underscoring ();
163 ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`);
164 output_filename = "${EXECUTABLE_NAME:-a.exe}";
165 #ifdef DLL_SUPPORT
166 input_flags.dynamic = TRUE;
167 config.has_shared = 1;
168 EOF
169
170 # Cygwin no longer wants these noisy warnings. Other PE
171 # targets might like to consider adding themselves here.
172 # See also the mail thread starting here for the reason why
173 # merge_rdata defaults to 0 for cygwin:
174 # http://cygwin.com/ml/cygwin-apps/2013-04/msg00187.html
175 case ${target} in
176 *-*-cygwin*)
177 default_auto_import=1
178 default_merge_rdata=0
179 ;;
180 i[3-7]86-*-mingw* | x86_64-*-mingw*)
181 default_auto_import=1
182 default_merge_rdata=0
183 ;;
184 *)
185 default_auto_import=-1
186 default_merge_rdata=1
187 ;;
188 esac
189
190 fragment <<EOF
191 link_info.pei386_auto_import = ${default_auto_import};
192 /* Use by default version. */
193 link_info.pei386_runtime_pseudo_reloc = DEFAULT_PSEUDO_RELOC_VERSION;
194 #endif
195 }
196 \f
197 /* Indicates if RDATA shall be merged into DATA when pseudo-relocation
198 version 2 is used and auto-import is enabled. */
199 #define MERGE_RDATA_V2 ${default_merge_rdata}
200
201 /* PE format extra command line options. */
202
203 /* Used for setting flags in the PE header. */
204 #define OPTION_BASE_FILE (300 + 1)
205 #define OPTION_DLL (OPTION_BASE_FILE + 1)
206 #define OPTION_FILE_ALIGNMENT (OPTION_DLL + 1)
207 #define OPTION_IMAGE_BASE (OPTION_FILE_ALIGNMENT + 1)
208 #define OPTION_MAJOR_IMAGE_VERSION (OPTION_IMAGE_BASE + 1)
209 #define OPTION_MAJOR_OS_VERSION (OPTION_MAJOR_IMAGE_VERSION + 1)
210 #define OPTION_MAJOR_SUBSYSTEM_VERSION (OPTION_MAJOR_OS_VERSION + 1)
211 #define OPTION_MINOR_IMAGE_VERSION (OPTION_MAJOR_SUBSYSTEM_VERSION + 1)
212 #define OPTION_MINOR_OS_VERSION (OPTION_MINOR_IMAGE_VERSION + 1)
213 #define OPTION_MINOR_SUBSYSTEM_VERSION (OPTION_MINOR_OS_VERSION + 1)
214 #define OPTION_SECTION_ALIGNMENT (OPTION_MINOR_SUBSYSTEM_VERSION + 1)
215 #define OPTION_STACK (OPTION_SECTION_ALIGNMENT + 1)
216 #define OPTION_SUBSYSTEM (OPTION_STACK + 1)
217 #define OPTION_HEAP (OPTION_SUBSYSTEM + 1)
218 #define OPTION_SUPPORT_OLD_CODE (OPTION_HEAP + 1)
219 #define OPTION_OUT_DEF (OPTION_SUPPORT_OLD_CODE + 1)
220 #define OPTION_EXPORT_ALL (OPTION_OUT_DEF + 1)
221 #define OPTION_EXCLUDE_SYMBOLS (OPTION_EXPORT_ALL + 1)
222 #define OPTION_EXCLUDE_ALL_SYMBOLS (OPTION_EXCLUDE_SYMBOLS + 1)
223 #define OPTION_KILL_ATS (OPTION_EXCLUDE_ALL_SYMBOLS + 1)
224 #define OPTION_STDCALL_ALIASES (OPTION_KILL_ATS + 1)
225 #define OPTION_ENABLE_STDCALL_FIXUP (OPTION_STDCALL_ALIASES + 1)
226 #define OPTION_DISABLE_STDCALL_FIXUP (OPTION_ENABLE_STDCALL_FIXUP + 1)
227 #define OPTION_IMPLIB_FILENAME (OPTION_DISABLE_STDCALL_FIXUP + 1)
228 #define OPTION_THUMB_ENTRY (OPTION_IMPLIB_FILENAME + 1)
229 #define OPTION_WARN_DUPLICATE_EXPORTS (OPTION_THUMB_ENTRY + 1)
230 #define OPTION_IMP_COMPAT (OPTION_WARN_DUPLICATE_EXPORTS + 1)
231 #define OPTION_ENABLE_AUTO_IMAGE_BASE (OPTION_IMP_COMPAT + 1)
232 #define OPTION_DISABLE_AUTO_IMAGE_BASE (OPTION_ENABLE_AUTO_IMAGE_BASE + 1)
233 #define OPTION_DLL_SEARCH_PREFIX (OPTION_DISABLE_AUTO_IMAGE_BASE + 1)
234 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_DLL_SEARCH_PREFIX + 1)
235 #define OPTION_DLL_ENABLE_AUTO_IMPORT (OPTION_NO_DEFAULT_EXCLUDES + 1)
236 #define OPTION_DLL_DISABLE_AUTO_IMPORT (OPTION_DLL_ENABLE_AUTO_IMPORT + 1)
237 #define OPTION_ENABLE_EXTRA_PE_DEBUG (OPTION_DLL_DISABLE_AUTO_IMPORT + 1)
238 #define OPTION_EXCLUDE_LIBS (OPTION_ENABLE_EXTRA_PE_DEBUG + 1)
239 #define OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC \
240 (OPTION_EXCLUDE_LIBS + 1)
241 #define OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC \
242 (OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC + 1)
243 #define OPTION_LARGE_ADDRESS_AWARE \
244 (OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC + 1)
245 #define OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V1 \
246 (OPTION_LARGE_ADDRESS_AWARE + 1)
247 #define OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V2 \
248 (OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V1 + 1)
249 #define OPTION_EXCLUDE_MODULES_FOR_IMPLIB \
250 (OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V2 + 1)
251 #define OPTION_USE_NUL_PREFIXED_IMPORT_TABLES \
252 (OPTION_EXCLUDE_MODULES_FOR_IMPLIB + 1)
253 #define OPTION_NO_LEADING_UNDERSCORE \
254 (OPTION_USE_NUL_PREFIXED_IMPORT_TABLES + 1)
255 #define OPTION_LEADING_UNDERSCORE \
256 (OPTION_NO_LEADING_UNDERSCORE + 1)
257 #define OPTION_ENABLE_LONG_SECTION_NAMES \
258 (OPTION_LEADING_UNDERSCORE + 1)
259 #define OPTION_DISABLE_LONG_SECTION_NAMES \
260 (OPTION_ENABLE_LONG_SECTION_NAMES + 1)
261 /* DLLCharacteristics flags */
262 #define OPTION_DYNAMIC_BASE (OPTION_DISABLE_LONG_SECTION_NAMES + 1)
263 #define OPTION_FORCE_INTEGRITY (OPTION_DYNAMIC_BASE + 1)
264 #define OPTION_NX_COMPAT (OPTION_FORCE_INTEGRITY + 1)
265 #define OPTION_NO_ISOLATION (OPTION_NX_COMPAT + 1)
266 #define OPTION_NO_SEH (OPTION_NO_ISOLATION + 1)
267 #define OPTION_NO_BIND (OPTION_NO_SEH + 1)
268 #define OPTION_WDM_DRIVER (OPTION_NO_BIND + 1)
269 #define OPTION_TERMINAL_SERVER_AWARE (OPTION_WDM_DRIVER + 1)
270
271 static void
272 gld${EMULATION_NAME}_add_options
273 (int ns ATTRIBUTE_UNUSED,
274 char **shortopts ATTRIBUTE_UNUSED,
275 int nl,
276 struct option **longopts,
277 int nrl ATTRIBUTE_UNUSED,
278 struct option **really_longopts ATTRIBUTE_UNUSED)
279 {
280 static const struct option xtra_long[] =
281 {
282 /* PE options. */
283 {"base-file", required_argument, NULL, OPTION_BASE_FILE},
284 {"dll", no_argument, NULL, OPTION_DLL},
285 {"file-alignment", required_argument, NULL, OPTION_FILE_ALIGNMENT},
286 {"heap", required_argument, NULL, OPTION_HEAP},
287 {"image-base", required_argument, NULL, OPTION_IMAGE_BASE},
288 {"major-image-version", required_argument, NULL, OPTION_MAJOR_IMAGE_VERSION},
289 {"major-os-version", required_argument, NULL, OPTION_MAJOR_OS_VERSION},
290 {"major-subsystem-version", required_argument, NULL, OPTION_MAJOR_SUBSYSTEM_VERSION},
291 {"minor-image-version", required_argument, NULL, OPTION_MINOR_IMAGE_VERSION},
292 {"minor-os-version", required_argument, NULL, OPTION_MINOR_OS_VERSION},
293 {"minor-subsystem-version", required_argument, NULL, OPTION_MINOR_SUBSYSTEM_VERSION},
294 {"section-alignment", required_argument, NULL, OPTION_SECTION_ALIGNMENT},
295 {"stack", required_argument, NULL, OPTION_STACK},
296 {"subsystem", required_argument, NULL, OPTION_SUBSYSTEM},
297 {"support-old-code", no_argument, NULL, OPTION_SUPPORT_OLD_CODE},
298 {"thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
299 {"use-nul-prefixed-import-tables", no_argument, NULL,
300 OPTION_USE_NUL_PREFIXED_IMPORT_TABLES},
301 {"no-leading-underscore", no_argument, NULL, OPTION_NO_LEADING_UNDERSCORE},
302 {"leading-underscore", no_argument, NULL, OPTION_LEADING_UNDERSCORE},
303 #ifdef DLL_SUPPORT
304 /* getopt allows abbreviations, so we do this to stop it
305 from treating -o as an abbreviation for this option. */
306 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
307 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
308 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL},
309 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMBOLS},
310 {"exclude-all-symbols", no_argument, NULL, OPTION_EXCLUDE_ALL_SYMBOLS},
311 {"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS},
312 {"exclude-modules-for-implib", required_argument, NULL, OPTION_EXCLUDE_MODULES_FOR_IMPLIB},
313 {"kill-at", no_argument, NULL, OPTION_KILL_ATS},
314 {"add-stdcall-alias", no_argument, NULL, OPTION_STDCALL_ALIASES},
315 {"enable-stdcall-fixup", no_argument, NULL, OPTION_ENABLE_STDCALL_FIXUP},
316 {"disable-stdcall-fixup", no_argument, NULL, OPTION_DISABLE_STDCALL_FIXUP},
317 {"out-implib", required_argument, NULL, OPTION_IMPLIB_FILENAME},
318 {"warn-duplicate-exports", no_argument, NULL, OPTION_WARN_DUPLICATE_EXPORTS},
319 /* getopt() allows abbreviations, so we do this to stop it from
320 treating -c as an abbreviation for these --compat-implib. */
321 {"compat-implib", no_argument, NULL, OPTION_IMP_COMPAT},
322 {"compat-implib", no_argument, NULL, OPTION_IMP_COMPAT},
323 {"enable-auto-image-base", no_argument, NULL, OPTION_ENABLE_AUTO_IMAGE_BASE},
324 {"disable-auto-image-base", no_argument, NULL, OPTION_DISABLE_AUTO_IMAGE_BASE},
325 {"dll-search-prefix", required_argument, NULL, OPTION_DLL_SEARCH_PREFIX},
326 {"no-default-excludes", no_argument, NULL, OPTION_NO_DEFAULT_EXCLUDES},
327 {"enable-auto-import", no_argument, NULL, OPTION_DLL_ENABLE_AUTO_IMPORT},
328 {"disable-auto-import", no_argument, NULL, OPTION_DLL_DISABLE_AUTO_IMPORT},
329 {"enable-extra-pe-debug", no_argument, NULL, OPTION_ENABLE_EXTRA_PE_DEBUG},
330 {"enable-runtime-pseudo-reloc", no_argument, NULL, OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC},
331 {"disable-runtime-pseudo-reloc", no_argument, NULL, OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC},
332 {"enable-runtime-pseudo-reloc-v1", no_argument, NULL, OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V1},
333 {"enable-runtime-pseudo-reloc-v2", no_argument, NULL, OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V2},
334 #endif
335 {"large-address-aware", no_argument, NULL, OPTION_LARGE_ADDRESS_AWARE},
336 {"enable-long-section-names", no_argument, NULL, OPTION_ENABLE_LONG_SECTION_NAMES},
337 {"disable-long-section-names", no_argument, NULL, OPTION_DISABLE_LONG_SECTION_NAMES},
338 {"dynamicbase",no_argument, NULL, OPTION_DYNAMIC_BASE},
339 {"forceinteg", no_argument, NULL, OPTION_FORCE_INTEGRITY},
340 {"nxcompat", no_argument, NULL, OPTION_NX_COMPAT},
341 {"no-isolation", no_argument, NULL, OPTION_NO_ISOLATION},
342 {"no-seh", no_argument, NULL, OPTION_NO_SEH},
343 {"no-bind", no_argument, NULL, OPTION_NO_BIND},
344 {"wdmdriver", no_argument, NULL, OPTION_WDM_DRIVER},
345 {"tsaware", no_argument, NULL, OPTION_TERMINAL_SERVER_AWARE},
346 {NULL, no_argument, NULL, 0}
347 };
348
349 *longopts
350 = xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
351 memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
352 }
353
354 /* PE/WIN32; added routines to get the subsystem type, heap and/or stack
355 parameters which may be input from the command line. */
356
357 typedef struct
358 {
359 void *ptr;
360 int size;
361 int value;
362 char *symbol;
363 int inited;
364 /* FALSE for an assembly level symbol and TRUE for a C visible symbol.
365 C visible symbols can be prefixed by underscore dependent to target's
366 settings. */
367 bfd_boolean is_c_symbol;
368 } definfo;
369
370 /* Get symbol name dependent to kind and C visible state of
371 underscore. */
372 #define GET_INIT_SYMBOL_NAME(IDX) \
373 (init[(IDX)].symbol \
374 + ((init[(IDX)].is_c_symbol == FALSE || (is_underscoring () != 0)) ? 0 : 1))
375
376 /* Decorates the C visible symbol by underscore, if target requires. */
377 #define U(CSTR) \
378 ((is_underscoring () == 0) ? CSTR : "_" CSTR)
379
380 /* Get size of constant string for a possible underscore prefixed
381 C visible symbol. */
382 #define U_SIZE(CSTR) \
383 (sizeof (CSTR) + (is_underscoring () == 0 ? 0 : 1))
384
385 #define D(field,symbol,def,usc) {&pe.field,sizeof(pe.field), def, symbol, 0, usc}
386
387 static definfo init[] =
388 {
389 /* imagebase must be first */
390 #define IMAGEBASEOFF 0
391 D(ImageBase,"__image_base__", NT_EXE_IMAGE_BASE, FALSE),
392 #define DLLOFF 1
393 {&dll, sizeof(dll), 0, "__dll__", 0, FALSE},
394 #define MSIMAGEBASEOFF 2
395 D(ImageBase, "___ImageBase", NT_EXE_IMAGE_BASE, TRUE),
396 D(SectionAlignment,"__section_alignment__", PE_DEF_SECTION_ALIGNMENT, FALSE),
397 D(FileAlignment,"__file_alignment__", PE_DEF_FILE_ALIGNMENT, FALSE),
398 D(MajorOperatingSystemVersion,"__major_os_version__", 4, FALSE),
399 D(MinorOperatingSystemVersion,"__minor_os_version__", 0, FALSE),
400 D(MajorImageVersion,"__major_image_version__", 1, FALSE),
401 D(MinorImageVersion,"__minor_image_version__", 0, FALSE),
402 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_wince_pe)
403 D(MajorSubsystemVersion,"__major_subsystem_version__", 3, FALSE),
404 #else
405 D(MajorSubsystemVersion,"__major_subsystem_version__", 4, FALSE),
406 #endif
407 D(MinorSubsystemVersion,"__minor_subsystem_version__", 0, FALSE),
408 D(Subsystem,"__subsystem__", ${SUBSYSTEM}, FALSE),
409 D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x200000, FALSE),
410 D(SizeOfStackCommit,"__size_of_stack_commit__", 0x1000, FALSE),
411 D(SizeOfHeapReserve,"__size_of_heap_reserve__", 0x100000, FALSE),
412 D(SizeOfHeapCommit,"__size_of_heap_commit__", 0x1000, FALSE),
413 D(LoaderFlags,"__loader_flags__", 0x0, FALSE),
414 D(DllCharacteristics, "__dll_characteristics__", 0x0, FALSE),
415 { NULL, 0, 0, NULL, 0 , FALSE}
416 };
417
418
419 static void
420 gld_${EMULATION_NAME}_list_options (FILE *file)
421 {
422 fprintf (file, _(" --base_file <basefile> Generate a base file for relocatable DLLs\n"));
423 fprintf (file, _(" --dll Set image base to the default for DLLs\n"));
424 fprintf (file, _(" --file-alignment <size> Set file alignment\n"));
425 fprintf (file, _(" --heap <size> Set initial size of the heap\n"));
426 fprintf (file, _(" --image-base <address> Set start address of the executable\n"));
427 fprintf (file, _(" --major-image-version <number> Set version number of the executable\n"));
428 fprintf (file, _(" --major-os-version <number> Set minimum required OS version\n"));
429 fprintf (file, _(" --major-subsystem-version <number> Set minimum required OS subsystem version\n"));
430 fprintf (file, _(" --minor-image-version <number> Set revision number of the executable\n"));
431 fprintf (file, _(" --minor-os-version <number> Set minimum required OS revision\n"));
432 fprintf (file, _(" --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"));
433 fprintf (file, _(" --section-alignment <size> Set section alignment\n"));
434 fprintf (file, _(" --stack <size> Set size of the initial stack\n"));
435 fprintf (file, _(" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"));
436 fprintf (file, _(" --support-old-code Support interworking with old code\n"));
437 fprintf (file, _(" --[no-]leading-underscore Set explicit symbol underscore prefix mode\n"));
438 fprintf (file, _(" --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"));
439 #ifdef DLL_SUPPORT
440 fprintf (file, _(" --add-stdcall-alias Export symbols with and without @nn\n"));
441 fprintf (file, _(" --disable-stdcall-fixup Don't link _sym to _sym@nn\n"));
442 fprintf (file, _(" --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"));
443 fprintf (file, _(" --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"));
444 fprintf (file, _(" --exclude-all-symbols Exclude all symbols from automatic export\n"));
445 fprintf (file, _(" --exclude-libs lib,lib,... Exclude libraries from automatic export\n"));
446 fprintf (file, _(" --exclude-modules-for-implib mod,mod,...\n"));
447 fprintf (file, _(" Exclude objects, archive members from auto\n"));
448 fprintf (file, _(" export, place into import library instead.\n"));
449 fprintf (file, _(" --export-all-symbols Automatically export all globals to DLL\n"));
450 fprintf (file, _(" --kill-at Remove @nn from exported symbols\n"));
451 fprintf (file, _(" --out-implib <file> Generate import library\n"));
452 fprintf (file, _(" --output-def <file> Generate a .DEF file for the built DLL\n"));
453 fprintf (file, _(" --warn-duplicate-exports Warn about duplicate exports.\n"));
454 fprintf (file, _(" --compat-implib Create backward compatible import libs;\n\
455 create __imp_<SYMBOL> as well.\n"));
456 fprintf (file, _(" --enable-auto-image-base Automatically choose image base for DLLs\n\
457 unless user specifies one\n"));
458 fprintf (file, _(" --disable-auto-image-base Do not auto-choose image base. (default)\n"));
459 fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\
460 an importlib, use <string><basename>.dll\n\
461 in preference to lib<basename>.dll \n"));
462 fprintf (file, _(" --enable-auto-import Do sophisticated linking of _sym to\n\
463 __imp_sym for DATA references\n"));
464 fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n"));
465 fprintf (file, _(" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n\
466 adding pseudo-relocations resolved at\n\
467 runtime.\n"));
468 fprintf (file, _(" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations for\n\
469 auto-imported DATA.\n"));
470 fprintf (file, _(" --enable-extra-pe-debug Enable verbose debug output when building\n\
471 or linking to DLLs (esp. auto-import)\n"));
472 #endif
473 fprintf (file, _(" --large-address-aware Executable supports virtual addresses\n\
474 greater than 2 gigabytes\n"));
475 fprintf (file, _(" --enable-long-section-names Use long COFF section names even in\n\
476 executable image files\n"));
477 fprintf (file, _(" --disable-long-section-names Never use long COFF section names, even\n\
478 in object files\n"));
479 fprintf (file, _(" --dynamicbase Image base address may be relocated using\n\
480 address space layout randomization (ASLR)\n"));
481 fprintf (file, _(" --forceinteg Code integrity checks are enforced\n"));
482 fprintf (file, _(" --nxcompat Image is compatible with data execution prevention\n"));
483 fprintf (file, _(" --no-isolation Image understands isolation but do not isolate the image\n"));
484 fprintf (file, _(" --no-seh Image does not use SEH. No SE handler may\n\
485 be called in this image\n"));
486 fprintf (file, _(" --no-bind Do not bind this image\n"));
487 fprintf (file, _(" --wdmdriver Driver uses the WDM model\n"));
488 fprintf (file, _(" --tsaware Image is Terminal Server aware\n"));
489 }
490
491
492 static void
493 set_pe_name (char *name, long val)
494 {
495 int i;
496 is_underscoring ();
497
498 /* Find the name and set it. */
499 for (i = 0; init[i].ptr; i++)
500 {
501 if (strcmp (name, GET_INIT_SYMBOL_NAME (i)) == 0)
502 {
503 init[i].value = val;
504 init[i].inited = 1;
505 if (strcmp (name,"__image_base__") == 0)
506 set_pe_name (U ("__ImageBase"), val);
507 return;
508 }
509 }
510 abort ();
511 }
512
513 static void
514 set_entry_point (void)
515 {
516 const char *entry;
517 const char *initial_symbol_char;
518 int i;
519
520 static const struct
521 {
522 const int value;
523 const char *entry;
524 }
525 v[] =
526 {
527 { 1, "NtProcessStartup" },
528 { 2, "WinMainCRTStartup" },
529 { 3, "mainCRTStartup" },
530 { 7, "__PosixProcessStartup"},
531 { 9, "WinMainCRTStartup" },
532 {14, "mainCRTStartup" },
533 { 0, NULL }
534 };
535
536 /* Entry point name for arbitrary subsystem numbers. */
537 static const char default_entry[] = "mainCRTStartup";
538
539 if (link_info.shared || dll)
540 {
541 #if defined (TARGET_IS_i386pe)
542 entry = "DllMainCRTStartup@12";
543 #else
544 entry = "DllMainCRTStartup";
545 #endif
546 }
547 else
548 {
549
550 for (i = 0; v[i].entry; i++)
551 if (v[i].value == pe_subsystem)
552 break;
553
554 /* If no match, use the default. */
555 if (v[i].entry != NULL)
556 entry = v[i].entry;
557 else
558 entry = default_entry;
559 }
560
561 initial_symbol_char = (is_underscoring () != 0 ? "_" : "");
562
563 if (*initial_symbol_char != '\0')
564 {
565 char *alc_entry;
566
567 /* lang_default_entry expects its argument to be permanently
568 allocated, so we don't free this string. */
569 alc_entry = xmalloc (strlen (initial_symbol_char)
570 + strlen (entry)
571 + 1);
572 strcpy (alc_entry, initial_symbol_char);
573 strcat (alc_entry, entry);
574 entry = alc_entry;
575 }
576
577 lang_default_entry (entry);
578 }
579
580 static void
581 set_pe_subsystem (void)
582 {
583 const char *sver;
584 char *end;
585 int len;
586 int i;
587 unsigned long temp_subsystem;
588 static const struct
589 {
590 const char *name;
591 const int value;
592 }
593 v[] =
594 {
595 { "native", 1},
596 { "windows", 2},
597 { "console", 3},
598 { "posix", 7},
599 { "wince", 9},
600 { "xbox", 14},
601 { NULL, 0 }
602 };
603
604 /* Check for the presence of a version number. */
605 sver = strchr (optarg, ':');
606 if (sver == NULL)
607 len = strlen (optarg);
608 else
609 {
610 len = sver - optarg;
611 set_pe_name ("__major_subsystem_version__",
612 strtoul (sver + 1, &end, 0));
613 if (*end == '.')
614 set_pe_name ("__minor_subsystem_version__",
615 strtoul (end + 1, &end, 0));
616 if (*end != '\0')
617 einfo (_("%P: warning: bad version number in -subsystem option\n"));
618 }
619
620 /* Check for numeric subsystem. */
621 temp_subsystem = strtoul (optarg, & end, 0);
622 if ((*end == ':' || *end == '\0') && (temp_subsystem < 65536))
623 {
624 /* Search list for a numeric match to use its entry point. */
625 for (i = 0; v[i].name; i++)
626 if (v[i].value == (int) temp_subsystem)
627 break;
628
629 /* Use this subsystem. */
630 pe_subsystem = (int) temp_subsystem;
631 }
632 else
633 {
634 /* Search for subsystem by name. */
635 for (i = 0; v[i].name; i++)
636 if (strncmp (optarg, v[i].name, len) == 0
637 && v[i].name[len] == '\0')
638 break;
639
640 if (v[i].name == NULL)
641 {
642 einfo (_("%P%F: invalid subsystem type %s\n"), optarg);
643 return;
644 }
645
646 pe_subsystem = v[i].value;
647 }
648
649 set_pe_name ("__subsystem__", pe_subsystem);
650
651 return;
652 }
653
654
655 static void
656 set_pe_value (char *name)
657 {
658 char *end;
659
660 set_pe_name (name, strtoul (optarg, &end, 0));
661
662 if (end == optarg)
663 einfo (_("%P%F: invalid hex number for PE parameter '%s'\n"), optarg);
664
665 optarg = end;
666 }
667
668
669 static void
670 set_pe_stack_heap (char *resname, char *comname)
671 {
672 set_pe_value (resname);
673
674 if (*optarg == ',')
675 {
676 optarg++;
677 set_pe_value (comname);
678 }
679 else if (*optarg)
680 einfo (_("%P%F: strange hex info for PE parameter '%s'\n"), optarg);
681 }
682
683
684 static bfd_boolean
685 gld${EMULATION_NAME}_handle_option (int optc)
686 {
687 switch (optc)
688 {
689 default:
690 return FALSE;
691
692 case OPTION_BASE_FILE:
693 link_info.base_file = fopen (optarg, FOPEN_WB);
694 if (link_info.base_file == NULL)
695 einfo (_("%F%P: cannot open base file %s\n"), optarg);
696 break;
697
698 /* PE options. */
699 case OPTION_HEAP:
700 set_pe_stack_heap ("__size_of_heap_reserve__", "__size_of_heap_commit__");
701 break;
702 case OPTION_STACK:
703 set_pe_stack_heap ("__size_of_stack_reserve__", "__size_of_stack_commit__");
704 break;
705 case OPTION_SUBSYSTEM:
706 set_pe_subsystem ();
707 break;
708 case OPTION_MAJOR_OS_VERSION:
709 set_pe_value ("__major_os_version__");
710 break;
711 case OPTION_MINOR_OS_VERSION:
712 set_pe_value ("__minor_os_version__");
713 break;
714 case OPTION_MAJOR_SUBSYSTEM_VERSION:
715 set_pe_value ("__major_subsystem_version__");
716 break;
717 case OPTION_MINOR_SUBSYSTEM_VERSION:
718 set_pe_value ("__minor_subsystem_version__");
719 break;
720 case OPTION_MAJOR_IMAGE_VERSION:
721 set_pe_value ("__major_image_version__");
722 break;
723 case OPTION_MINOR_IMAGE_VERSION:
724 set_pe_value ("__minor_image_version__");
725 break;
726 case OPTION_FILE_ALIGNMENT:
727 set_pe_value ("__file_alignment__");
728 break;
729 case OPTION_SECTION_ALIGNMENT:
730 set_pe_value ("__section_alignment__");
731 break;
732 case OPTION_DLL:
733 set_pe_name ("__dll__", 1);
734 break;
735 case OPTION_IMAGE_BASE:
736 set_pe_value ("__image_base__");
737 break;
738 case OPTION_SUPPORT_OLD_CODE:
739 support_old_code = 1;
740 break;
741 case OPTION_THUMB_ENTRY:
742 thumb_entry_symbol = optarg;
743 break;
744 case OPTION_USE_NUL_PREFIXED_IMPORT_TABLES:
745 pe_use_nul_prefixed_import_tables = TRUE;
746 break;
747 case OPTION_NO_LEADING_UNDERSCORE:
748 pe_leading_underscore = 0;
749 break;
750 case OPTION_LEADING_UNDERSCORE:
751 pe_leading_underscore = 1;
752 break;
753 #ifdef DLL_SUPPORT
754 case OPTION_OUT_DEF:
755 pe_out_def_filename = xstrdup (optarg);
756 break;
757 case OPTION_EXPORT_ALL:
758 pe_dll_export_everything = 1;
759 break;
760 case OPTION_EXCLUDE_SYMBOLS:
761 pe_dll_add_excludes (optarg, EXCLUDESYMS);
762 break;
763 case OPTION_EXCLUDE_ALL_SYMBOLS:
764 pe_dll_exclude_all_symbols = 1;
765 break;
766 case OPTION_EXCLUDE_LIBS:
767 pe_dll_add_excludes (optarg, EXCLUDELIBS);
768 break;
769 case OPTION_EXCLUDE_MODULES_FOR_IMPLIB:
770 pe_dll_add_excludes (optarg, EXCLUDEFORIMPLIB);
771 break;
772 case OPTION_KILL_ATS:
773 pe_dll_kill_ats = 1;
774 break;
775 case OPTION_STDCALL_ALIASES:
776 pe_dll_stdcall_aliases = 1;
777 break;
778 case OPTION_ENABLE_STDCALL_FIXUP:
779 pe_enable_stdcall_fixup = 1;
780 break;
781 case OPTION_DISABLE_STDCALL_FIXUP:
782 pe_enable_stdcall_fixup = 0;
783 break;
784 case OPTION_IMPLIB_FILENAME:
785 pe_implib_filename = xstrdup (optarg);
786 break;
787 case OPTION_WARN_DUPLICATE_EXPORTS:
788 pe_dll_warn_dup_exports = 1;
789 break;
790 case OPTION_IMP_COMPAT:
791 pe_dll_compat_implib = 1;
792 break;
793 case OPTION_ENABLE_AUTO_IMAGE_BASE:
794 pe_enable_auto_image_base = 1;
795 break;
796 case OPTION_DISABLE_AUTO_IMAGE_BASE:
797 pe_enable_auto_image_base = 0;
798 break;
799 case OPTION_DLL_SEARCH_PREFIX:
800 pe_dll_search_prefix = xstrdup (optarg);
801 break;
802 case OPTION_NO_DEFAULT_EXCLUDES:
803 pe_dll_do_default_excludes = 0;
804 break;
805 case OPTION_DLL_ENABLE_AUTO_IMPORT:
806 link_info.pei386_auto_import = 1;
807 break;
808 case OPTION_DLL_DISABLE_AUTO_IMPORT:
809 link_info.pei386_auto_import = 0;
810 break;
811 case OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC:
812 link_info.pei386_runtime_pseudo_reloc =
813 DEFAULT_PSEUDO_RELOC_VERSION;
814 break;
815 case OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V1:
816 link_info.pei386_runtime_pseudo_reloc = 1;
817 break;
818 case OPTION_DLL_ENABLE_RUNTIME_PSEUDO_RELOC_V2:
819 link_info.pei386_runtime_pseudo_reloc = 2;
820 break;
821 case OPTION_DLL_DISABLE_RUNTIME_PSEUDO_RELOC:
822 link_info.pei386_runtime_pseudo_reloc = 0;
823 break;
824 case OPTION_ENABLE_EXTRA_PE_DEBUG:
825 pe_dll_extra_pe_debug = 1;
826 break;
827 #endif
828 case OPTION_LARGE_ADDRESS_AWARE:
829 real_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
830 break;
831 case OPTION_ENABLE_LONG_SECTION_NAMES:
832 pe_use_coff_long_section_names = 1;
833 break;
834 case OPTION_DISABLE_LONG_SECTION_NAMES:
835 pe_use_coff_long_section_names = 0;
836 break;
837 /* Get DLLCharacteristics bits */
838 case OPTION_DYNAMIC_BASE:
839 pe_dll_characteristics |= IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE;
840 break;
841 case OPTION_FORCE_INTEGRITY:
842 pe_dll_characteristics |= IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY;
843 break;
844 case OPTION_NX_COMPAT:
845 pe_dll_characteristics |= IMAGE_DLL_CHARACTERISTICS_NX_COMPAT;
846 break;
847 case OPTION_NO_ISOLATION:
848 pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_NO_ISOLATION;
849 break;
850 case OPTION_NO_SEH:
851 pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_NO_SEH;
852 break;
853 case OPTION_NO_BIND:
854 pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_NO_BIND;
855 break;
856 case OPTION_WDM_DRIVER:
857 pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_WDM_DRIVER;
858 break;
859 case OPTION_TERMINAL_SERVER_AWARE:
860 pe_dll_characteristics |= IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE;
861 break;
862 }
863
864 /* Set DLLCharacteristics bits */
865 set_pe_name ("__dll_characteristics__", pe_dll_characteristics);
866
867 return TRUE;
868 }
869 \f
870
871 #ifdef DLL_SUPPORT
872 static unsigned long
873 strhash (const char *str)
874 {
875 const unsigned char *s;
876 unsigned long hash;
877 unsigned int c;
878 unsigned int len;
879
880 hash = 0;
881 len = 0;
882 s = (const unsigned char *) str;
883 while ((c = *s++) != '\0')
884 {
885 hash += c + (c << 17);
886 hash ^= hash >> 2;
887 ++len;
888 }
889 hash += len + (len << 17);
890 hash ^= hash >> 2;
891
892 return hash;
893 }
894
895 /* Use the output file to create a image base for relocatable DLLs. */
896
897 static unsigned long
898 compute_dll_image_base (const char *ofile)
899 {
900 unsigned long hash = strhash (ofile);
901 return 0x61300000 + ((hash << 16) & 0x0FFC0000);
902 }
903 #endif
904
905 /* Assign values to the special symbols before the linker script is
906 read. */
907
908 static void
909 gld_${EMULATION_NAME}_set_symbols (void)
910 {
911 /* Run through and invent symbols for all the
912 names and insert the defaults. */
913 int j;
914
915 is_underscoring ();
916
917 if (!init[IMAGEBASEOFF].inited)
918 {
919 if (link_info.relocatable)
920 init[IMAGEBASEOFF].value = 0;
921 else if (init[DLLOFF].value || (link_info.shared && !link_info.pie))
922 {
923 #ifdef DLL_SUPPORT
924 init[IMAGEBASEOFF].value = (pe_enable_auto_image_base
925 ? compute_dll_image_base (output_filename)
926 : NT_DLL_IMAGE_BASE);
927 #else
928 init[IMAGEBASEOFF].value = NT_DLL_IMAGE_BASE;
929 #endif
930 }
931 else
932 init[IMAGEBASEOFF].value = NT_EXE_IMAGE_BASE;
933 init[MSIMAGEBASEOFF].value = init[IMAGEBASEOFF].value;
934 }
935
936 /* Don't do any symbol assignments if this is a relocatable link. */
937 if (link_info.relocatable)
938 return;
939
940 /* Glue the assignments into the abs section. */
941 push_stat_ptr (&abs_output_section->children);
942
943 for (j = 0; init[j].ptr; j++)
944 {
945 long val = init[j].value;
946 lang_assignment_statement_type *rv;
947
948 rv = lang_add_assignment (exp_assign (GET_INIT_SYMBOL_NAME (j),
949 exp_intop (val), FALSE));
950 if (init[j].size == sizeof (short))
951 *(short *) init[j].ptr = val;
952 else if (init[j].size == sizeof (int))
953 *(int *) init[j].ptr = val;
954 else if (init[j].size == sizeof (long))
955 *(long *) init[j].ptr = val;
956 /* This might be a long long or other special type. */
957 else if (init[j].size == sizeof (bfd_vma))
958 *(bfd_vma *) init[j].ptr = val;
959 else abort ();
960 if (j == IMAGEBASEOFF)
961 image_base_statement = rv;
962 }
963 /* Restore the pointer. */
964 pop_stat_ptr ();
965
966 if (pe.FileAlignment > pe.SectionAlignment)
967 {
968 einfo (_("%P: warning, file alignment > section alignment.\n"));
969 }
970 }
971
972 /* This is called after the linker script and the command line options
973 have been read. */
974
975 static void
976 gld_${EMULATION_NAME}_after_parse (void)
977 {
978 /* PR ld/6744: Warn the user if they have used an ELF-only
979 option hoping it will work on PE. */
980 if (link_info.export_dynamic)
981 einfo (_("%P: warning: --export-dynamic is not supported for PE "
982 "targets, did you mean --export-all-symbols?\n"));
983
984 set_entry_point ();
985
986 after_parse_default ();
987 }
988
989 /* pe-dll.c directly accesses pe_data_import_dll,
990 so it must be defined outside of #ifdef DLL_SUPPORT.
991 Note - this variable is deliberately not initialised.
992 This allows it to be treated as a common varaible, and only
993 exist in one incarnation in a multiple target enabled linker. */
994 char * pe_data_import_dll;
995
996 #ifdef DLL_SUPPORT
997 static struct bfd_link_hash_entry *pe_undef_found_sym;
998
999 static bfd_boolean
1000 pe_undef_cdecl_match (struct bfd_link_hash_entry *h, void *inf)
1001 {
1002 int sl;
1003 char *string = inf;
1004 const char *hs = h->root.string;
1005
1006 sl = strlen (string);
1007 if (h->type == bfd_link_hash_defined
1008 && ((*hs == '@' && *string == '_'
1009 && strncmp (hs + 1, string + 1, sl - 1) == 0)
1010 || strncmp (hs, string, sl) == 0)
1011 && h->root.string[sl] == '@')
1012 {
1013 pe_undef_found_sym = h;
1014 return FALSE;
1015 }
1016 return TRUE;
1017 }
1018
1019 static void
1020 pe_fixup_stdcalls (void)
1021 {
1022 static int gave_warning_message = 0;
1023 struct bfd_link_hash_entry *undef, *sym;
1024
1025 if (pe_dll_extra_pe_debug)
1026 printf ("%s\n", __FUNCTION__);
1027
1028 for (undef = link_info.hash->undefs; undef; undef=undef->u.undef.next)
1029 if (undef->type == bfd_link_hash_undefined)
1030 {
1031 char* at = strchr (undef->root.string, '@');
1032 int lead_at = (*undef->root.string == '@');
1033 if (lead_at)
1034 at = strchr (undef->root.string + 1, '@');
1035
1036 if (at || lead_at)
1037 {
1038 /* The symbol is a stdcall symbol, so let's look for a
1039 cdecl symbol with the same name and resolve to that. */
1040 char *cname = xstrdup (undef->root.string);
1041
1042 if (lead_at)
1043 *cname = '_';
1044 at = strchr (cname, '@');
1045 if (at)
1046 *at = 0;
1047 sym = bfd_link_hash_lookup (link_info.hash, cname, 0, 0, 1);
1048
1049 if (sym && sym->type == bfd_link_hash_defined)
1050 {
1051 undef->type = bfd_link_hash_defined;
1052 undef->u.def.value = sym->u.def.value;
1053 undef->u.def.section = sym->u.def.section;
1054
1055 if (pe_enable_stdcall_fixup == -1)
1056 {
1057 einfo (_("Warning: resolving %s by linking to %s\n"),
1058 undef->root.string, cname);
1059 if (! gave_warning_message)
1060 {
1061 gave_warning_message = 1;
1062 einfo (_("Use --enable-stdcall-fixup to disable these warnings\n"));
1063 einfo (_("Use --disable-stdcall-fixup to disable these fixups\n"));
1064 }
1065 }
1066 }
1067 }
1068 else
1069 {
1070 /* The symbol is a cdecl symbol, so we look for stdcall
1071 symbols - which means scanning the whole symbol table. */
1072 pe_undef_found_sym = 0;
1073 bfd_link_hash_traverse (link_info.hash, pe_undef_cdecl_match,
1074 (char *) undef->root.string);
1075 sym = pe_undef_found_sym;
1076 if (sym)
1077 {
1078 undef->type = bfd_link_hash_defined;
1079 undef->u.def.value = sym->u.def.value;
1080 undef->u.def.section = sym->u.def.section;
1081
1082 if (pe_enable_stdcall_fixup == -1)
1083 {
1084 einfo (_("Warning: resolving %s by linking to %s\n"),
1085 undef->root.string, sym->root.string);
1086 if (! gave_warning_message)
1087 {
1088 gave_warning_message = 1;
1089 einfo (_("Use --enable-stdcall-fixup to disable these warnings\n"));
1090 einfo (_("Use --disable-stdcall-fixup to disable these fixups\n"));
1091 }
1092 }
1093 }
1094 }
1095 }
1096 }
1097
1098 static int
1099 make_import_fixup (arelent *rel, asection *s)
1100 {
1101 struct bfd_symbol *sym = *rel->sym_ptr_ptr;
1102 char addend[4];
1103
1104 if (pe_dll_extra_pe_debug)
1105 printf ("arelent: %s@%#lx: add=%li\n", sym->name,
1106 (unsigned long) rel->address, (long) rel->addend);
1107
1108 if (! bfd_get_section_contents (s->owner, s, addend, rel->address, sizeof (addend)))
1109 einfo (_("%C: Cannot get section contents - auto-import exception\n"),
1110 s->owner, s, rel->address);
1111
1112 pe_create_import_fixup (rel, s, bfd_get_32 (s->owner, addend));
1113
1114 return 1;
1115 }
1116
1117 static void
1118 pe_find_data_imports (void)
1119 {
1120 struct bfd_link_hash_entry *undef, *sym;
1121
1122 if (link_info.pei386_auto_import == 0)
1123 return;
1124
1125 for (undef = link_info.hash->undefs; undef; undef=undef->u.undef.next)
1126 {
1127 if (undef->type == bfd_link_hash_undefined)
1128 {
1129 /* C++ symbols are *long*. */
1130 char buf[4096];
1131
1132 if (pe_dll_extra_pe_debug)
1133 printf ("%s:%s\n", __FUNCTION__, undef->root.string);
1134
1135 sprintf (buf, "__imp_%s", undef->root.string);
1136
1137 sym = bfd_link_hash_lookup (link_info.hash, buf, 0, 0, 1);
1138
1139 if (sym && sym->type == bfd_link_hash_defined)
1140 {
1141 bfd *b = sym->u.def.section->owner;
1142 asymbol **symbols;
1143 int nsyms, i;
1144
1145 if (link_info.pei386_auto_import == -1)
1146 {
1147 static bfd_boolean warned = FALSE;
1148
1149 info_msg (_("Info: resolving %s by linking to %s (auto-import)\n"),
1150 undef->root.string, buf);
1151
1152 /* PR linker/4844. */
1153 if (! warned)
1154 {
1155 warned = TRUE;
1156 einfo (_("%P: warning: auto-importing has been activated without --enable-auto-import specified on the command line.\n\
1157 This should work unless it involves constant data structures referencing symbols from auto-imported DLLs.\n"));
1158 }
1159 }
1160
1161 if (!bfd_generic_link_read_symbols (b))
1162 {
1163 einfo (_("%B%F: could not read symbols: %E\n"), b);
1164 return;
1165 }
1166
1167 symbols = bfd_get_outsymbols (b);
1168 nsyms = bfd_get_symcount (b);
1169
1170 for (i = 0; i < nsyms; i++)
1171 {
1172 if (! CONST_STRNEQ (symbols[i]->name,
1173 U ("_head_")))
1174 continue;
1175
1176 if (pe_dll_extra_pe_debug)
1177 printf ("->%s\n", symbols[i]->name);
1178
1179 pe_data_import_dll = (char *) (symbols[i]->name
1180 + U_SIZE ("_head_") - 1);
1181 break;
1182 }
1183
1184 pe_walk_relocs_of_symbol (&link_info, undef->root.string,
1185 make_import_fixup);
1186
1187 /* Let's differentiate it somehow from defined. */
1188 undef->type = bfd_link_hash_defweak;
1189 /* We replace original name with __imp_ prefixed, this
1190 1) may trash memory 2) leads to duplicate symbol generation.
1191 Still, IMHO it's better than having name poluted. */
1192 undef->root.string = sym->root.string;
1193 undef->u.def.value = sym->u.def.value;
1194 undef->u.def.section = sym->u.def.section;
1195 }
1196 }
1197 }
1198 }
1199
1200 static bfd_boolean
1201 pr_sym (struct bfd_hash_entry *h, void *inf ATTRIBUTE_UNUSED)
1202 {
1203 printf ("+%s\n", h->string);
1204
1205 return TRUE;
1206 }
1207 #endif /* DLL_SUPPORT */
1208
1209 static void
1210 debug_section_p (bfd *abfd ATTRIBUTE_UNUSED, asection *sect, void *obj)
1211 {
1212 int *found = (int *) obj;
1213 if (strncmp (".debug_", sect->name, sizeof (".debug_") - 1) == 0)
1214 *found = 1;
1215 }
1216
1217 static void
1218 gld_${EMULATION_NAME}_after_open (void)
1219 {
1220 after_open_default ();
1221
1222 #ifdef DLL_SUPPORT
1223 if (pe_dll_extra_pe_debug)
1224 {
1225 bfd *a;
1226 struct bfd_link_hash_entry *sym;
1227
1228 printf ("%s()\n", __FUNCTION__);
1229
1230 for (sym = link_info.hash->undefs; sym; sym=sym->u.undef.next)
1231 printf ("-%s\n", sym->root.string);
1232 bfd_hash_traverse (&link_info.hash->table, pr_sym, NULL);
1233
1234 for (a = link_info.input_bfds; a; a = a->link_next)
1235 printf ("*%s\n",a->filename);
1236 }
1237 #endif
1238
1239 /* Pass the wacky PE command line options into the output bfd.
1240 FIXME: This should be done via a function, rather than by
1241 including an internal BFD header. */
1242
1243 if (coff_data (link_info.output_bfd) == NULL
1244 || coff_data (link_info.output_bfd)->pe == 0)
1245 einfo (_("%F%P: cannot perform PE operations on non PE output file '%B'.\n"),
1246 link_info.output_bfd);
1247
1248 pe_data (link_info.output_bfd)->pe_opthdr = pe;
1249 pe_data (link_info.output_bfd)->dll = init[DLLOFF].value;
1250 pe_data (link_info.output_bfd)->real_flags |= real_flags;
1251
1252 /* At this point we must decide whether to use long section names
1253 in the output or not. If the user hasn't explicitly specified
1254 on the command line, we leave it to the default for the format
1255 (object files yes, image files no), except if there is debug
1256 information present; GDB relies on the long section names to
1257 find it, so enable it in that case. */
1258 if (pe_use_coff_long_section_names < 0 && link_info.strip == strip_none)
1259 {
1260 /* Iterate over all sections of all input BFDs, checking
1261 for any that begin 'debug_' and are long names. */
1262 LANG_FOR_EACH_INPUT_STATEMENT (is)
1263 {
1264 int found_debug = 0;
1265 bfd_map_over_sections (is->the_bfd, debug_section_p, &found_debug);
1266 if (found_debug)
1267 {
1268 pe_use_coff_long_section_names = 1;
1269 break;
1270 }
1271 }
1272 }
1273
1274 pe_output_file_set_long_section_names (link_info.output_bfd);
1275
1276 #ifdef DLL_SUPPORT
1277 if (pe_enable_stdcall_fixup) /* -1=warn or 1=disable */
1278 pe_fixup_stdcalls ();
1279
1280 pe_process_import_defs (link_info.output_bfd, &link_info);
1281
1282 pe_find_data_imports ();
1283
1284 /* As possibly new symbols are added by imports, we rerun
1285 stdcall/fastcall fixup here. */
1286 if (pe_enable_stdcall_fixup) /* -1=warn or 1=disable */
1287 pe_fixup_stdcalls ();
1288
1289 #if defined (TARGET_IS_i386pe) \
1290 || defined (TARGET_IS_armpe) \
1291 || defined (TARGET_IS_arm_epoc_pe) \
1292 || defined (TARGET_IS_arm_wince_pe)
1293 if (!link_info.relocatable)
1294 pe_dll_build_sections (link_info.output_bfd, &link_info);
1295 #else
1296 if (link_info.shared)
1297 pe_dll_build_sections (link_info.output_bfd, &link_info);
1298 else
1299 pe_exe_build_sections (link_info.output_bfd, &link_info);
1300 #endif
1301 #endif /* DLL_SUPPORT */
1302
1303 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) || defined(TARGET_IS_arm_wince_pe)
1304 if (strstr (bfd_get_target (link_info.output_bfd), "arm") == NULL)
1305 {
1306 /* The arm backend needs special fields in the output hash structure.
1307 These will only be created if the output format is an arm format,
1308 hence we do not support linking and changing output formats at the
1309 same time. Use a link followed by objcopy to change output formats. */
1310 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
1311 return;
1312 }
1313 {
1314 /* Find a BFD that can hold the interworking stubs. */
1315 LANG_FOR_EACH_INPUT_STATEMENT (is)
1316 {
1317 if (bfd_arm_get_bfd_for_interworking (is->the_bfd, & link_info))
1318 break;
1319 }
1320 }
1321 #endif
1322
1323 {
1324 /* This next chunk of code tries to detect the case where you have
1325 two import libraries for the same DLL (specifically,
1326 symbolically linking libm.a and libc.a in cygwin to
1327 libcygwin.a). In those cases, it's possible for function
1328 thunks from the second implib to be used but without the
1329 head/tail objects, causing an improper import table. We detect
1330 those cases and rename the "other" import libraries to match
1331 the one the head/tail come from, so that the linker will sort
1332 things nicely and produce a valid import table. */
1333
1334 LANG_FOR_EACH_INPUT_STATEMENT (is)
1335 {
1336 if (is->the_bfd->my_archive)
1337 {
1338 int idata2 = 0, reloc_count=0, is_imp = 0;
1339 asection *sec;
1340
1341 /* See if this is an import library thunk. */
1342 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1343 {
1344 if (strcmp (sec->name, ".idata\$2") == 0)
1345 idata2 = 1;
1346 if (CONST_STRNEQ (sec->name, ".idata\$"))
1347 is_imp = 1;
1348 reloc_count += sec->reloc_count;
1349 }
1350
1351 if (is_imp && !idata2 && reloc_count)
1352 {
1353 /* It is, look for the reference to head and see if it's
1354 from our own library. */
1355 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1356 {
1357 int i;
1358 long relsize;
1359 asymbol **symbols;
1360 arelent **relocs;
1361 int nrelocs;
1362
1363 relsize = bfd_get_reloc_upper_bound (is->the_bfd, sec);
1364 if (relsize < 1)
1365 break;
1366
1367 if (!bfd_generic_link_read_symbols (is->the_bfd))
1368 {
1369 einfo (_("%B%F: could not read symbols: %E\n"),
1370 is->the_bfd);
1371 return;
1372 }
1373 symbols = bfd_get_outsymbols (is->the_bfd);
1374
1375 relocs = xmalloc ((size_t) relsize);
1376 nrelocs = bfd_canonicalize_reloc (is->the_bfd, sec,
1377 relocs, symbols);
1378 if (nrelocs < 0)
1379 {
1380 free (relocs);
1381 einfo ("%X%P: unable to process relocs: %E\n");
1382 return;
1383 }
1384
1385 for (i = 0; i < nrelocs; i++)
1386 {
1387 struct bfd_symbol *s;
1388 struct bfd_link_hash_entry * blhe;
1389 char *other_bfd_filename;
1390 char *n;
1391
1392 s = (relocs[i]->sym_ptr_ptr)[0];
1393
1394 if (s->flags & BSF_LOCAL)
1395 continue;
1396
1397 /* Thunk section with reloc to another bfd. */
1398 blhe = bfd_link_hash_lookup (link_info.hash,
1399 s->name,
1400 FALSE, FALSE, TRUE);
1401
1402 if (blhe == NULL
1403 || blhe->type != bfd_link_hash_defined)
1404 continue;
1405
1406 other_bfd_filename
1407 = blhe->u.def.section->owner->my_archive
1408 ? bfd_get_filename (blhe->u.def.section->owner->my_archive)
1409 : bfd_get_filename (blhe->u.def.section->owner);
1410
1411 if (filename_cmp (bfd_get_filename
1412 (is->the_bfd->my_archive),
1413 other_bfd_filename) == 0)
1414 continue;
1415
1416 /* Rename this implib to match the other one. */
1417 n = xmalloc (strlen (other_bfd_filename) + 1);
1418 strcpy (n, other_bfd_filename);
1419 is->the_bfd->my_archive->filename = n;
1420 }
1421
1422 free (relocs);
1423 /* Note - we do not free the symbols,
1424 they are now cached in the BFD. */
1425 }
1426 }
1427 }
1428 }
1429 }
1430
1431 {
1432 int is_ms_arch = 0;
1433 bfd *cur_arch = 0;
1434 lang_input_statement_type *is2;
1435 lang_input_statement_type *is3;
1436
1437 /* Careful - this is a shell script. Watch those dollar signs! */
1438 /* Microsoft import libraries have every member named the same,
1439 and not in the right order for us to link them correctly. We
1440 must detect these and rename the members so that they'll link
1441 correctly. There are three types of objects: the head, the
1442 thunks, and the sentinel(s). The head is easy; it's the one
1443 with idata2. We assume that the sentinels won't have relocs,
1444 and the thunks will. It's easier than checking the symbol
1445 table for external references. */
1446 LANG_FOR_EACH_INPUT_STATEMENT (is)
1447 {
1448 if (is->the_bfd->my_archive)
1449 {
1450 char *pnt;
1451 bfd *arch = is->the_bfd->my_archive;
1452
1453 if (cur_arch != arch)
1454 {
1455 cur_arch = arch;
1456 is_ms_arch = 1;
1457
1458 for (is3 = is;
1459 is3 && is3->the_bfd->my_archive == arch;
1460 is3 = (lang_input_statement_type *) is3->next)
1461 {
1462 /* A MS dynamic import library can also contain static
1463 members, so look for the first element with a .dll
1464 extension, and use that for the remainder of the
1465 comparisons. */
1466 pnt = strrchr (is3->the_bfd->filename, '.');
1467 if (pnt != NULL && filename_cmp (pnt, ".dll") == 0)
1468 break;
1469 }
1470
1471 if (is3 == NULL)
1472 is_ms_arch = 0;
1473 else
1474 {
1475 /* OK, found one. Now look to see if the remaining
1476 (dynamic import) members use the same name. */
1477 for (is2 = is;
1478 is2 && is2->the_bfd->my_archive == arch;
1479 is2 = (lang_input_statement_type *) is2->next)
1480 {
1481 /* Skip static members, ie anything with a .obj
1482 extension. */
1483 pnt = strrchr (is2->the_bfd->filename, '.');
1484 if (pnt != NULL && filename_cmp (pnt, ".obj") == 0)
1485 continue;
1486
1487 if (filename_cmp (is3->the_bfd->filename,
1488 is2->the_bfd->filename))
1489 {
1490 is_ms_arch = 0;
1491 break;
1492 }
1493 }
1494 }
1495 }
1496
1497 /* This fragment might have come from an .obj file in a Microsoft
1498 import, and not an actual import record. If this is the case,
1499 then leave the filename alone. */
1500 pnt = strrchr (is->the_bfd->filename, '.');
1501
1502 if (is_ms_arch && (filename_cmp (pnt, ".dll") == 0))
1503 {
1504 int idata2 = 0, reloc_count=0;
1505 asection *sec;
1506 char *new_name, seq;
1507
1508 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1509 {
1510 if (strcmp (sec->name, ".idata\$2") == 0)
1511 idata2 = 1;
1512 reloc_count += sec->reloc_count;
1513 }
1514
1515 if (idata2) /* .idata2 is the TOC */
1516 seq = 'a';
1517 else if (reloc_count > 0) /* thunks */
1518 seq = 'b';
1519 else /* sentinel */
1520 seq = 'c';
1521
1522 new_name = xmalloc (strlen (is->the_bfd->filename) + 3);
1523 sprintf (new_name, "%s.%c", is->the_bfd->filename, seq);
1524 is->the_bfd->filename = new_name;
1525
1526 new_name = xmalloc (strlen (is->filename) + 3);
1527 sprintf (new_name, "%s.%c", is->filename, seq);
1528 is->filename = new_name;
1529 }
1530 }
1531 }
1532 }
1533
1534 {
1535 /* The following chunk of code tries to identify jump stubs in
1536 import libraries which are dead code and eliminates them
1537 from the final link. For each exported symbol <sym>, there
1538 is a object file in the import library with a .text section
1539 and several .idata\$* sections. The .text section contains the
1540 symbol definition for <sym> which is a jump stub of the form
1541 jmp *__imp_<sym>. The .idata\$5 contains the symbol definition
1542 for __imp_<sym> which is the address of the slot for <sym> in
1543 the import address table. When a symbol is imported explicitly
1544 using __declspec(dllimport) declaration, the compiler generates
1545 a reference to __imp_<sym> which directly resolves to the
1546 symbol in .idata\$5, in which case the jump stub code is not
1547 needed. The following code tries to identify jump stub sections
1548 in import libraries which are not referred to by anyone and
1549 marks them for exclusion from the final link. */
1550 LANG_FOR_EACH_INPUT_STATEMENT (is)
1551 {
1552 if (is->the_bfd->my_archive)
1553 {
1554 int is_imp = 0;
1555 asection *sec, *stub_sec = NULL;
1556
1557 /* See if this is an import library thunk. */
1558 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1559 {
1560 if (strncmp (sec->name, ".idata\$", 7) == 0)
1561 is_imp = 1;
1562 /* The section containing the jmp stub has code
1563 and has a reloc. */
1564 if ((sec->flags & SEC_CODE) && sec->reloc_count)
1565 stub_sec = sec;
1566 }
1567
1568 if (is_imp && stub_sec)
1569 {
1570 asymbol **symbols;
1571 long nsyms, src_count;
1572 struct bfd_link_hash_entry * blhe;
1573
1574 if (!bfd_generic_link_read_symbols (is->the_bfd))
1575 {
1576 einfo (_("%B%F: could not read symbols: %E\n"),
1577 is->the_bfd);
1578 return;
1579 }
1580 symbols = bfd_get_outsymbols (is->the_bfd);
1581 nsyms = bfd_get_symcount (is->the_bfd);
1582
1583 for (src_count = 0; src_count < nsyms; src_count++)
1584 {
1585 if (symbols[src_count]->section->id == stub_sec->id)
1586 {
1587 /* This symbol belongs to the section containing
1588 the stub. */
1589 blhe = bfd_link_hash_lookup (link_info.hash,
1590 symbols[src_count]->name,
1591 FALSE, FALSE, TRUE);
1592 /* If the symbol in the stub section has no other
1593 undefined references, exclude the stub section
1594 from the final link. */
1595 if (blhe != NULL
1596 && blhe->type == bfd_link_hash_defined
1597 && blhe->u.undef.next == NULL
1598 && blhe != link_info.hash->undefs_tail)
1599 stub_sec->flags |= SEC_EXCLUDE;
1600 }
1601 }
1602 }
1603 }
1604 }
1605 }
1606 }
1607 \f
1608 static void
1609 gld_${EMULATION_NAME}_before_allocation (void)
1610 {
1611 #ifdef TARGET_IS_ppcpe
1612 /* Here we rummage through the found bfds to collect toc information. */
1613 {
1614 LANG_FOR_EACH_INPUT_STATEMENT (is)
1615 {
1616 if (!ppc_process_before_allocation (is->the_bfd, &link_info))
1617 {
1618 /* xgettext:c-format */
1619 einfo (_("Errors encountered processing file %s\n"), is->filename);
1620 }
1621 }
1622 }
1623
1624 /* We have seen it all. Allocate it, and carry on. */
1625 ppc_allocate_toc_section (&link_info);
1626 #endif /* TARGET_IS_ppcpe */
1627
1628 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) || defined(TARGET_IS_arm_wince_pe)
1629 /* FIXME: we should be able to set the size of the interworking stub
1630 section.
1631
1632 Here we rummage through the found bfds to collect glue
1633 information. FIXME: should this be based on a command line
1634 option? krk@cygnus.com. */
1635 {
1636 LANG_FOR_EACH_INPUT_STATEMENT (is)
1637 {
1638 if (! bfd_arm_process_before_allocation
1639 (is->the_bfd, & link_info, support_old_code))
1640 {
1641 /* xgettext:c-format */
1642 einfo (_("Errors encountered processing file %s for interworking\n"),
1643 is->filename);
1644 }
1645 }
1646 }
1647
1648 /* We have seen it all. Allocate it, and carry on. */
1649 bfd_arm_allocate_interworking_sections (& link_info);
1650 #endif /* TARGET_IS_armpe || TARGET_IS_arm_epoc_pe || TARGET_IS_arm_wince_pe */
1651
1652 before_allocation_default ();
1653 }
1654 \f
1655 #ifdef DLL_SUPPORT
1656 /* This is called when an input file isn't recognized as a BFD. We
1657 check here for .DEF files and pull them in automatically. */
1658
1659 static int
1660 saw_option (char *option)
1661 {
1662 int i;
1663
1664 for (i = 0; init[i].ptr; i++)
1665 if (strcmp (GET_INIT_SYMBOL_NAME (i), option) == 0)
1666 return init[i].inited;
1667 return 0;
1668 }
1669 #endif /* DLL_SUPPORT */
1670
1671 static bfd_boolean
1672 gld_${EMULATION_NAME}_unrecognized_file (lang_input_statement_type *entry ATTRIBUTE_UNUSED)
1673 {
1674 #ifdef DLL_SUPPORT
1675 const char *ext = entry->filename + strlen (entry->filename) - 4;
1676
1677 if (filename_cmp (ext, ".def") == 0 || filename_cmp (ext, ".DEF") == 0)
1678 {
1679 pe_def_file = def_file_parse (entry->filename, pe_def_file);
1680
1681 if (pe_def_file)
1682 {
1683 int i, buflen=0, len;
1684 char *buf;
1685
1686 for (i = 0; i < pe_def_file->num_exports; i++)
1687 {
1688 len = strlen (pe_def_file->exports[i].internal_name);
1689 if (buflen < len + 2)
1690 buflen = len + 2;
1691 }
1692
1693 buf = xmalloc (buflen);
1694
1695 for (i = 0; i < pe_def_file->num_exports; i++)
1696 {
1697 struct bfd_link_hash_entry *h;
1698
1699 sprintf (buf, "%s%s", U (""),
1700 pe_def_file->exports[i].internal_name);
1701
1702 h = bfd_link_hash_lookup (link_info.hash, buf, TRUE, TRUE, TRUE);
1703 if (h == (struct bfd_link_hash_entry *) NULL)
1704 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1705 if (h->type == bfd_link_hash_new)
1706 {
1707 h->type = bfd_link_hash_undefined;
1708 h->u.undef.abfd = NULL;
1709 bfd_link_add_undef (link_info.hash, h);
1710 }
1711 }
1712 free (buf);
1713
1714 /* def_file_print (stdout, pe_def_file); */
1715 if (pe_def_file->is_dll == 1)
1716 link_info.shared = 1;
1717
1718 if (pe_def_file->base_address != (bfd_vma)(-1))
1719 {
1720 pe.ImageBase
1721 = pe_data (link_info.output_bfd)->pe_opthdr.ImageBase
1722 = init[IMAGEBASEOFF].value
1723 = pe_def_file->base_address;
1724 init[IMAGEBASEOFF].inited = 1;
1725 if (image_base_statement)
1726 image_base_statement->exp
1727 = exp_assign ("__image_base__", exp_intop (pe.ImageBase),
1728 FALSE);
1729 }
1730
1731 if (pe_def_file->stack_reserve != -1
1732 && ! saw_option ("__size_of_stack_reserve__"))
1733 {
1734 pe.SizeOfStackReserve = pe_def_file->stack_reserve;
1735 if (pe_def_file->stack_commit != -1)
1736 pe.SizeOfStackCommit = pe_def_file->stack_commit;
1737 }
1738 if (pe_def_file->heap_reserve != -1
1739 && ! saw_option ("__size_of_heap_reserve__"))
1740 {
1741 pe.SizeOfHeapReserve = pe_def_file->heap_reserve;
1742 if (pe_def_file->heap_commit != -1)
1743 pe.SizeOfHeapCommit = pe_def_file->heap_commit;
1744 }
1745 return TRUE;
1746 }
1747 }
1748 #endif
1749 return FALSE;
1750 }
1751
1752 static bfd_boolean
1753 gld_${EMULATION_NAME}_recognized_file (lang_input_statement_type *entry ATTRIBUTE_UNUSED)
1754 {
1755 #ifdef DLL_SUPPORT
1756 #ifdef TARGET_IS_i386pe
1757 pe_dll_id_target ("pei-i386");
1758 #endif
1759 #ifdef TARGET_IS_shpe
1760 pe_dll_id_target ("pei-shl");
1761 #endif
1762 #ifdef TARGET_IS_mipspe
1763 pe_dll_id_target ("pei-mips");
1764 #endif
1765 #ifdef TARGET_IS_armpe
1766 pe_dll_id_target ("pei-arm-little");
1767 #endif
1768 #ifdef TARGET_IS_arm_epoc_pe
1769 pe_dll_id_target ("epoc-pei-arm-little");
1770 #endif
1771 #ifdef TARGET_IS_arm_wince_pe
1772 pe_dll_id_target ("pei-arm-wince-little");
1773 #endif
1774 if (pe_bfd_is_dll (entry->the_bfd))
1775 return pe_implied_import_dll (entry->filename);
1776 #endif
1777 return FALSE;
1778 }
1779
1780 static void
1781 gld_${EMULATION_NAME}_finish (void)
1782 {
1783 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) || defined(TARGET_IS_arm_wince_pe)
1784 struct bfd_link_hash_entry * h;
1785
1786 if (thumb_entry_symbol != NULL)
1787 {
1788 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
1789 FALSE, FALSE, TRUE);
1790
1791 if (h != (struct bfd_link_hash_entry *) NULL
1792 && (h->type == bfd_link_hash_defined
1793 || h->type == bfd_link_hash_defweak)
1794 && h->u.def.section->output_section != NULL)
1795 {
1796 static char buffer[32];
1797 bfd_vma val;
1798
1799 /* Special procesing is required for a Thumb entry symbol. The
1800 bottom bit of its address must be set. */
1801 val = (h->u.def.value
1802 + bfd_get_section_vma (link_info.output_bfd,
1803 h->u.def.section->output_section)
1804 + h->u.def.section->output_offset);
1805
1806 val |= 1;
1807
1808 /* Now convert this value into a string and store it in entry_symbol
1809 where the lang_finish() function will pick it up. */
1810 buffer[0] = '0';
1811 buffer[1] = 'x';
1812
1813 sprintf_vma (buffer + 2, val);
1814
1815 if (entry_symbol.name != NULL && entry_from_cmdline)
1816 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
1817 thumb_entry_symbol, entry_symbol.name);
1818 entry_symbol.name = buffer;
1819 }
1820 else
1821 einfo (_("%P: warning: cannot find thumb start symbol %s\n"), thumb_entry_symbol);
1822 }
1823 #endif /* defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) || defined(TARGET_IS_arm_wince_pe) */
1824
1825 finish_default ();
1826
1827 #ifdef DLL_SUPPORT
1828 if (link_info.shared
1829 #if !defined(TARGET_IS_shpe) && !defined(TARGET_IS_mipspe)
1830 || (!link_info.relocatable && pe_def_file->num_exports != 0)
1831 #endif
1832 )
1833 {
1834 pe_dll_fill_sections (link_info.output_bfd, &link_info);
1835 if (pe_implib_filename)
1836 pe_dll_generate_implib (pe_def_file, pe_implib_filename, &link_info);
1837 }
1838 #if defined(TARGET_IS_shpe) || defined(TARGET_IS_mipspe)
1839 /* ARM doesn't need relocs. */
1840 else
1841 {
1842 pe_exe_fill_sections (link_info.output_bfd, &link_info);
1843 }
1844 #endif
1845
1846 if (pe_out_def_filename)
1847 pe_dll_generate_def_file (pe_out_def_filename);
1848 #endif /* DLL_SUPPORT */
1849
1850 /* I don't know where .idata gets set as code, but it shouldn't be. */
1851 {
1852 asection *asec = bfd_get_section_by_name (link_info.output_bfd, ".idata");
1853
1854 if (asec)
1855 {
1856 asec->flags &= ~SEC_CODE;
1857 asec->flags |= SEC_DATA;
1858 }
1859 }
1860 }
1861
1862 \f
1863 /* Place an orphan section.
1864
1865 We use this to put sections in a reasonable place in the file, and
1866 to ensure that they are aligned as required.
1867
1868 We handle grouped sections here as well. A section named .foo\$nn
1869 goes into the output section .foo. All grouped sections are sorted
1870 by name.
1871
1872 Grouped sections for the default sections are handled by the
1873 default linker script using wildcards, and are sorted by
1874 sort_sections. */
1875
1876 static lang_output_section_statement_type *
1877 gld_${EMULATION_NAME}_place_orphan (asection *s,
1878 const char *secname,
1879 int constraint)
1880 {
1881 const char *orig_secname = secname;
1882 char *dollar = NULL;
1883 lang_output_section_statement_type *os;
1884 lang_statement_list_type add_child;
1885 lang_output_section_statement_type *match_by_name = NULL;
1886 lang_statement_union_type **pl;
1887
1888 /* Look through the script to see where to place this section. */
1889 if (!link_info.relocatable
1890 && (dollar = strchr (secname, '\$')) != NULL)
1891 {
1892 size_t len = dollar - secname;
1893 char *newname = xmalloc (len + 1);
1894 memcpy (newname, secname, len);
1895 newname[len] = '\0';
1896 secname = newname;
1897 }
1898
1899 lang_list_init (&add_child);
1900
1901 os = NULL;
1902 if (constraint == 0)
1903 for (os = lang_output_section_find (secname);
1904 os != NULL;
1905 os = next_matching_output_section_statement (os, 0))
1906 {
1907 /* If we don't match an existing output section, tell
1908 lang_insert_orphan to create a new output section. */
1909 constraint = SPECIAL;
1910
1911 if (os->bfd_section != NULL
1912 && (os->bfd_section->flags == 0
1913 || ((s->flags ^ os->bfd_section->flags)
1914 & (SEC_LOAD | SEC_ALLOC)) == 0))
1915 {
1916 /* We already have an output section statement with this
1917 name, and its bfd section has compatible flags.
1918 If the section already exists but does not have any flags set,
1919 then it has been created by the linker, probably as a result of
1920 a --section-start command line switch. */
1921 lang_add_section (&add_child, s, NULL, os);
1922 break;
1923 }
1924
1925 /* Save unused output sections in case we can match them
1926 against orphans later. */
1927 if (os->bfd_section == NULL)
1928 match_by_name = os;
1929 }
1930
1931 /* If we didn't match an active output section, see if we matched an
1932 unused one and use that. */
1933 if (os == NULL && match_by_name)
1934 {
1935 lang_add_section (&match_by_name->children, s, NULL, match_by_name);
1936 return match_by_name;
1937 }
1938
1939 if (os == NULL)
1940 {
1941 static struct orphan_save hold[] =
1942 {
1943 { ".text",
1944 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1945 0, 0, 0, 0 },
1946 { ".idata",
1947 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1948 0, 0, 0, 0 },
1949 { ".rdata",
1950 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1951 0, 0, 0, 0 },
1952 { ".data",
1953 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1954 0, 0, 0, 0 },
1955 { ".bss",
1956 SEC_ALLOC,
1957 0, 0, 0, 0 }
1958 };
1959 enum orphan_save_index
1960 {
1961 orphan_text = 0,
1962 orphan_idata,
1963 orphan_rodata,
1964 orphan_data,
1965 orphan_bss
1966 };
1967 static int orphan_init_done = 0;
1968 struct orphan_save *place;
1969 lang_output_section_statement_type *after;
1970 etree_type *address;
1971
1972 if (!orphan_init_done)
1973 {
1974 struct orphan_save *ho;
1975 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
1976 if (ho->name != NULL)
1977 {
1978 ho->os = lang_output_section_find (ho->name);
1979 if (ho->os != NULL && ho->os->flags == 0)
1980 ho->os->flags = ho->flags;
1981 }
1982 orphan_init_done = 1;
1983 }
1984
1985 /* Try to put the new output section in a reasonable place based
1986 on the section name and section flags. */
1987
1988 place = NULL;
1989 if ((s->flags & SEC_ALLOC) == 0)
1990 ;
1991 else if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
1992 place = &hold[orphan_bss];
1993 else if ((s->flags & SEC_READONLY) == 0)
1994 place = &hold[orphan_data];
1995 else if ((s->flags & SEC_CODE) == 0)
1996 {
1997 place = (!strncmp (secname, ".idata\$", 7) ? &hold[orphan_idata]
1998 : &hold[orphan_rodata]);
1999 }
2000 else
2001 place = &hold[orphan_text];
2002
2003 after = NULL;
2004 if (place != NULL)
2005 {
2006 if (place->os == NULL)
2007 place->os = lang_output_section_find (place->name);
2008 after = place->os;
2009 if (after == NULL)
2010 after = lang_output_section_find_by_flags (s, &place->os, NULL);
2011 if (after == NULL)
2012 /* *ABS* is always the first output section statement. */
2013 after = (&lang_output_section_statement.head
2014 ->output_section_statement);
2015 }
2016
2017 /* All sections in an executable must be aligned to a page boundary.
2018 In a relocatable link, just preserve the incoming alignment; the
2019 address is discarded by lang_insert_orphan in that case, anyway. */
2020 address = exp_unop (ALIGN_K, exp_nameop (NAME, "__section_alignment__"));
2021 os = lang_insert_orphan (s, secname, constraint, after, place, address,
2022 &add_child);
2023 if (link_info.relocatable)
2024 {
2025 os->section_alignment = s->alignment_power;
2026 os->bfd_section->alignment_power = s->alignment_power;
2027 }
2028 }
2029
2030 /* If the section name has a '\$', sort it with the other '\$'
2031 sections. */
2032 for (pl = &os->children.head; *pl != NULL; pl = &(*pl)->header.next)
2033 {
2034 lang_input_section_type *ls;
2035 const char *lname;
2036
2037 if ((*pl)->header.type != lang_input_section_enum)
2038 continue;
2039
2040 ls = &(*pl)->input_section;
2041
2042 lname = bfd_get_section_name (ls->section->owner, ls->section);
2043 if (strchr (lname, '\$') != NULL
2044 && (dollar == NULL || strcmp (orig_secname, lname) < 0))
2045 break;
2046 }
2047
2048 if (add_child.head != NULL)
2049 {
2050 *add_child.tail = *pl;
2051 *pl = add_child.head;
2052 }
2053
2054 return os;
2055 }
2056
2057 static bfd_boolean
2058 gld_${EMULATION_NAME}_open_dynamic_archive
2059 (const char *arch ATTRIBUTE_UNUSED,
2060 search_dirs_type *search,
2061 lang_input_statement_type *entry)
2062 {
2063 static const struct
2064 {
2065 const char * format;
2066 bfd_boolean use_prefix;
2067 }
2068 libname_fmt [] =
2069 {
2070 /* Preferred explicit import library for dll's. */
2071 { "lib%s.dll.a", FALSE },
2072 /* Alternate explicit import library for dll's. */
2073 { "%s.dll.a", FALSE },
2074 /* "libfoo.a" could be either an import lib or a static lib.
2075 For backwards compatibility, libfoo.a needs to precede
2076 libfoo.dll and foo.dll in the search. */
2077 { "lib%s.a", FALSE },
2078 /* The 'native' spelling of an import lib name is "foo.lib". */
2079 { "%s.lib", FALSE },
2080 #ifdef DLL_SUPPORT
2081 /* Try "<prefix>foo.dll" (preferred dll name, if specified). */
2082 { "%s%s.dll", TRUE },
2083 #endif
2084 /* Try "libfoo.dll" (default preferred dll name). */
2085 { "lib%s.dll", FALSE },
2086 /* Finally try 'native' dll name "foo.dll". */
2087 { "%s.dll", FALSE },
2088 /* Note: If adding more formats to this table, make sure to check to
2089 see if their length is longer than libname_fmt[0].format, and if
2090 so, update the call to xmalloc() below. */
2091 { NULL, FALSE }
2092 };
2093 static unsigned int format_max_len = 0;
2094 const char * filename;
2095 char * full_string;
2096 char * base_string;
2097 unsigned int i;
2098
2099
2100 if (! entry->flags.maybe_archive)
2101 return FALSE;
2102
2103 filename = entry->filename;
2104
2105 if (format_max_len == 0)
2106 /* We need to allow space in the memory that we are going to allocate
2107 for the characters in the format string. Since the format array is
2108 static we only need to calculate this information once. In theory
2109 this value could also be computed statically, but this introduces
2110 the possibility for a discrepancy and hence a possible memory
2111 corruption. The lengths we compute here will be too long because
2112 they will include any formating characters (%s) in the strings, but
2113 this will not matter. */
2114 for (i = 0; libname_fmt[i].format; i++)
2115 if (format_max_len < strlen (libname_fmt[i].format))
2116 format_max_len = strlen (libname_fmt[i].format);
2117
2118 full_string = xmalloc (strlen (search->name)
2119 + strlen (filename)
2120 + format_max_len
2121 #ifdef DLL_SUPPORT
2122 + (pe_dll_search_prefix
2123 ? strlen (pe_dll_search_prefix) : 0)
2124 #endif
2125 /* Allow for the terminating NUL and for the path
2126 separator character that is inserted between
2127 search->name and the start of the format string. */
2128 + 2);
2129
2130 sprintf (full_string, "%s/", search->name);
2131 base_string = full_string + strlen (full_string);
2132
2133 for (i = 0; libname_fmt[i].format; i++)
2134 {
2135 #ifdef DLL_SUPPORT
2136 if (libname_fmt[i].use_prefix)
2137 {
2138 if (!pe_dll_search_prefix)
2139 continue;
2140 sprintf (base_string, libname_fmt[i].format, pe_dll_search_prefix, filename);
2141 }
2142 else
2143 #endif
2144 sprintf (base_string, libname_fmt[i].format, filename);
2145
2146 if (ldfile_try_open_bfd (full_string, entry))
2147 break;
2148 }
2149
2150 if (!libname_fmt[i].format)
2151 {
2152 free (full_string);
2153 return FALSE;
2154 }
2155
2156 entry->filename = full_string;
2157
2158 return TRUE;
2159 }
2160
2161 static int
2162 gld_${EMULATION_NAME}_find_potential_libraries
2163 (char *name, lang_input_statement_type *entry)
2164 {
2165 return ldfile_open_file_search (name, entry, "", ".lib");
2166 }
2167 \f
2168 static char *
2169 gld_${EMULATION_NAME}_get_script (int *isfile)
2170 EOF
2171 # Scripts compiled in.
2172 # sed commands to quote an ld script as a C string.
2173 sc="-f stringify.sed"
2174
2175 fragment <<EOF
2176 {
2177 *isfile = 0;
2178
2179 if (link_info.relocatable && config.build_constructors)
2180 return
2181 EOF
2182 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
2183 echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c
2184 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
2185 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
2186 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
2187 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
2188 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
2189 if test -n "$GENERATE_AUTO_IMPORT_SCRIPT" ; then
2190 echo ' ; else if (link_info.pei386_auto_import == 1 && (MERGE_RDATA_V2 || link_info.pei386_runtime_pseudo_reloc != 2)) return' >> e${EMULATION_NAME}.c
2191 sed $sc ldscripts/${EMULATION_NAME}.xa >> e${EMULATION_NAME}.c
2192 fi
2193 echo ' ; else return' >> e${EMULATION_NAME}.c
2194 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
2195 echo '; }' >> e${EMULATION_NAME}.c
2196
2197 fragment <<EOF
2198
2199
2200 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
2201 {
2202 gld_${EMULATION_NAME}_before_parse,
2203 syslib_default,
2204 hll_default,
2205 gld_${EMULATION_NAME}_after_parse,
2206 gld_${EMULATION_NAME}_after_open,
2207 after_allocation_default,
2208 set_output_arch_default,
2209 ldemul_default_target,
2210 gld_${EMULATION_NAME}_before_allocation,
2211 gld_${EMULATION_NAME}_get_script,
2212 "${EMULATION_NAME}",
2213 "${OUTPUT_FORMAT}",
2214 gld_${EMULATION_NAME}_finish,
2215 NULL, /* Create output section statements. */
2216 gld_${EMULATION_NAME}_open_dynamic_archive,
2217 gld_${EMULATION_NAME}_place_orphan,
2218 gld_${EMULATION_NAME}_set_symbols,
2219 NULL, /* parse_args */
2220 gld${EMULATION_NAME}_add_options,
2221 gld${EMULATION_NAME}_handle_option,
2222 gld_${EMULATION_NAME}_unrecognized_file,
2223 gld_${EMULATION_NAME}_list_options,
2224 gld_${EMULATION_NAME}_recognized_file,
2225 gld_${EMULATION_NAME}_find_potential_libraries,
2226 NULL /* new_vers_pattern. */
2227 };
2228 EOF
This page took 0.074321 seconds and 5 git commands to generate.