[x86] Resolve non-PIC undefweak symbols in executable
[deliverable/binutils-gdb.git] / ld / emultempl / elf32.em
... / ...
CommitLineData
1# This shell script emits a C file. -*- C -*-
2# It does some substitutions.
3# This file is now misnamed, because it supports both 32 bit and 64 bit
4# ELF emulations.
5test -z "${ELFSIZE}" && ELFSIZE=32
6if [ -z "$MACHINE" ]; then
7 OUTPUT_ARCH=${ARCH}
8else
9 OUTPUT_ARCH=${ARCH}:${MACHINE}
10fi
11fragment <<EOF
12/* This file is is generated by a shell script. DO NOT EDIT! */
13
14/* ${ELFSIZE} bit ELF emulation code for ${EMULATION_NAME}
15 Copyright (C) 1991-2016 Free Software Foundation, Inc.
16 Written by Steve Chamberlain <sac@cygnus.com>
17 ELF support by Ian Lance Taylor <ian@cygnus.com>
18
19 This file is part of the GNU Binutils.
20
21 This program is free software; you can redistribute it and/or modify
22 it under the terms of the GNU General Public License as published by
23 the Free Software Foundation; either version 3 of the License, or
24 (at your option) any later version.
25
26 This program is distributed in the hope that it will be useful,
27 but WITHOUT ANY WARRANTY; without even the implied warranty of
28 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 GNU General Public License for more details.
30
31 You should have received a copy of the GNU General Public License
32 along with this program; if not, write to the Free Software
33 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
34 MA 02110-1301, USA. */
35
36#define TARGET_IS_${EMULATION_NAME}
37
38#include "sysdep.h"
39#include "bfd.h"
40#include "libiberty.h"
41#include "safe-ctype.h"
42#include "filenames.h"
43#include "getopt.h"
44#include <fcntl.h>
45
46#include "bfdlink.h"
47
48#include "ld.h"
49#include "ldmain.h"
50#include "ldmisc.h"
51#include "ldexp.h"
52#include "ldlang.h"
53#include "ldfile.h"
54#include "ldemul.h"
55#include "ldbuildid.h"
56#include <ldgram.h>
57#include "elf/common.h"
58#include "elf-bfd.h"
59#include "filenames.h"
60
61/* Declare functions used by various EXTRA_EM_FILEs. */
62static void gld${EMULATION_NAME}_before_parse (void);
63static void gld${EMULATION_NAME}_after_parse (void);
64static void gld${EMULATION_NAME}_after_open (void);
65static void gld${EMULATION_NAME}_before_allocation (void);
66static void gld${EMULATION_NAME}_after_allocation (void);
67static lang_output_section_statement_type *gld${EMULATION_NAME}_place_orphan
68 (asection *, const char *, int);
69EOF
70
71if [ "x${USE_LIBPATH}" = xyes ] ; then
72 case ${target} in
73 *-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
74 fragment <<EOF
75#ifdef HAVE_GLOB
76#include <glob.h>
77#endif
78EOF
79 ;;
80 esac
81fi
82
83# Import any needed special functions and/or overrides.
84#
85source_em ${srcdir}/emultempl/elf-generic.em
86if test -n "$EXTRA_EM_FILE" ; then
87 source_em ${srcdir}/emultempl/${EXTRA_EM_FILE}.em
88fi
89
90# Functions in this file can be overridden by setting the LDEMUL_* shell
91# variables. If the name of the overriding function is the same as is
92# defined in this file, then don't output this file's version.
93# If a different overriding name is given then output the standard function
94# as presumably it is called from the overriding function.
95#
96if test x"$LDEMUL_BEFORE_PARSE" != xgld"$EMULATION_NAME"_before_parse; then
97fragment <<EOF
98
99static void
100gld${EMULATION_NAME}_before_parse (void)
101{
102 ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`);
103 input_flags.dynamic = ${DYNAMIC_LINK-TRUE};
104 config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
105 config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo TRUE ; else echo FALSE ; fi`;
106 `if test -n "$CALL_NOP_BYTE" ; then echo link_info.call_nop_byte = $CALL_NOP_BYTE; fi`;
107}
108
109EOF
110fi
111
112if test x"$LDEMUL_AFTER_PARSE" != xgld"$EMULATION_NAME"_after_parse; then
113fragment <<EOF
114
115static void
116gld${EMULATION_NAME}_after_parse (void)
117{
118 if (bfd_link_pie (&link_info))
119 link_info.flags_1 |= (bfd_vma) DF_1_PIE;
120
121 after_parse_default ();
122}
123
124EOF
125fi
126
127if test x"$LDEMUL_RECOGNIZED_FILE" != xgld"${EMULATION_NAME}"_load_symbols; then
128fragment <<EOF
129/* Handle the generation of DT_NEEDED tags. */
130
131static bfd_boolean
132gld${EMULATION_NAME}_load_symbols (lang_input_statement_type *entry)
133{
134 int link_class = 0;
135
136 /* Tell the ELF linker that we don't want the output file to have a
137 DT_NEEDED entry for this file, unless it is used to resolve
138 references in a regular object. */
139 if (entry->flags.add_DT_NEEDED_for_regular)
140 link_class = DYN_AS_NEEDED;
141
142 /* Tell the ELF linker that we don't want the output file to have a
143 DT_NEEDED entry for any dynamic library in DT_NEEDED tags from
144 this file at all. */
145 if (!entry->flags.add_DT_NEEDED_for_dynamic)
146 link_class |= DYN_NO_ADD_NEEDED;
147
148 if (entry->flags.just_syms
149 && (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) != 0)
150 einfo (_("%P%F: --just-symbols may not be used on DSO: %B\n"),
151 entry->the_bfd);
152
153 if (link_class == 0
154 || (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) == 0)
155 return FALSE;
156
157 bfd_elf_set_dyn_lib_class (entry->the_bfd,
158 (enum dynamic_lib_link_class) link_class);
159
160 /* Continue on with normal load_symbols processing. */
161 return FALSE;
162}
163EOF
164fi
165
166fragment <<EOF
167
168/* These variables are required to pass information back and forth
169 between after_open and check_needed and stat_needed and vercheck. */
170
171static struct bfd_link_needed_list *global_needed;
172static struct stat global_stat;
173static lang_input_statement_type *global_found;
174static struct bfd_link_needed_list *global_vercheck_needed;
175static bfd_boolean global_vercheck_failed;
176
177/* These variables are used to implement target options */
178
179static char *audit; /* colon (typically) separated list of libs */
180static char *depaudit; /* colon (typically) separated list of libs */
181
182/* Style of .note.gnu.build-id section. */
183static const char *emit_note_gnu_build_id;
184
185/* On Linux, it's possible to have different versions of the same
186 shared library linked against different versions of libc. The
187 dynamic linker somehow tags which libc version to use in
188 /etc/ld.so.cache, and, based on the libc that it sees in the
189 executable, chooses which version of the shared library to use.
190
191 We try to do a similar check here by checking whether this shared
192 library needs any other shared libraries which may conflict with
193 libraries we have already included in the link. If it does, we
194 skip it, and try to find another shared library farther on down the
195 link path.
196
197 This is called via lang_for_each_input_file.
198 GLOBAL_VERCHECK_NEEDED is the list of objects needed by the object
199 which we are checking. This sets GLOBAL_VERCHECK_FAILED if we find
200 a conflicting version. */
201
202static void
203gld${EMULATION_NAME}_vercheck (lang_input_statement_type *s)
204{
205 const char *soname;
206 struct bfd_link_needed_list *l;
207
208 if (global_vercheck_failed)
209 return;
210 if (s->the_bfd == NULL
211 || (bfd_get_file_flags (s->the_bfd) & DYNAMIC) == 0)
212 return;
213
214 soname = bfd_elf_get_dt_soname (s->the_bfd);
215 if (soname == NULL)
216 soname = lbasename (bfd_get_filename (s->the_bfd));
217
218 for (l = global_vercheck_needed; l != NULL; l = l->next)
219 {
220 const char *suffix;
221
222 if (filename_cmp (soname, l->name) == 0)
223 {
224 /* Probably can't happen, but it's an easy check. */
225 continue;
226 }
227
228 if (strchr (l->name, '/') != NULL)
229 continue;
230
231 suffix = strstr (l->name, ".so.");
232 if (suffix == NULL)
233 continue;
234
235 suffix += sizeof ".so." - 1;
236
237 if (filename_ncmp (soname, l->name, suffix - l->name) == 0)
238 {
239 /* Here we know that S is a dynamic object FOO.SO.VER1, and
240 the object we are considering needs a dynamic object
241 FOO.SO.VER2, and VER1 and VER2 are different. This
242 appears to be a version mismatch, so we tell the caller
243 to try a different version of this library. */
244 global_vercheck_failed = TRUE;
245 return;
246 }
247 }
248}
249
250
251/* See if an input file matches a DT_NEEDED entry by running stat on
252 the file. */
253
254static void
255gld${EMULATION_NAME}_stat_needed (lang_input_statement_type *s)
256{
257 struct stat st;
258 const char *suffix;
259 const char *soname;
260
261 if (global_found != NULL)
262 return;
263 if (s->the_bfd == NULL)
264 return;
265
266 /* If this input file was an as-needed entry, and wasn't found to be
267 needed at the stage it was linked, then don't say we have loaded it. */
268 if ((bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
269 return;
270
271 if (bfd_stat (s->the_bfd, &st) != 0)
272 {
273 einfo ("%P:%B: bfd_stat failed: %E\n", s->the_bfd);
274 return;
275 }
276
277 /* Some operating systems, e.g. Windows, do not provide a meaningful
278 st_ino; they always set it to zero. (Windows does provide a
279 meaningful st_dev.) Do not indicate a duplicate library in that
280 case. While there is no guarantee that a system that provides
281 meaningful inode numbers will never set st_ino to zero, this is
282 merely an optimization, so we do not need to worry about false
283 negatives. */
284 if (st.st_dev == global_stat.st_dev
285 && st.st_ino == global_stat.st_ino
286 && st.st_ino != 0)
287 {
288 global_found = s;
289 return;
290 }
291
292 /* We issue a warning if it looks like we are including two
293 different versions of the same shared library. For example,
294 there may be a problem if -lc picks up libc.so.6 but some other
295 shared library has a DT_NEEDED entry of libc.so.5. This is a
296 heuristic test, and it will only work if the name looks like
297 NAME.so.VERSION. FIXME: Depending on file names is error-prone.
298 If we really want to issue warnings about mixing version numbers
299 of shared libraries, we need to find a better way. */
300
301 if (strchr (global_needed->name, '/') != NULL)
302 return;
303 suffix = strstr (global_needed->name, ".so.");
304 if (suffix == NULL)
305 return;
306 suffix += sizeof ".so." - 1;
307
308 soname = bfd_elf_get_dt_soname (s->the_bfd);
309 if (soname == NULL)
310 soname = lbasename (s->filename);
311
312 if (filename_ncmp (soname, global_needed->name, suffix - global_needed->name) == 0)
313 einfo ("%P: warning: %s, needed by %B, may conflict with %s\n",
314 global_needed->name, global_needed->by, soname);
315}
316
317struct dt_needed
318{
319 bfd *by;
320 const char *name;
321};
322
323/* This function is called for each possible name for a dynamic object
324 named by a DT_NEEDED entry. The FORCE parameter indicates whether
325 to skip the check for a conflicting version. */
326
327static bfd_boolean
328gld${EMULATION_NAME}_try_needed (struct dt_needed *needed,
329 int force)
330{
331 bfd *abfd;
332 const char *name = needed->name;
333 const char *soname;
334 int link_class;
335
336 abfd = bfd_openr (name, bfd_get_target (link_info.output_bfd));
337 if (abfd == NULL)
338 return FALSE;
339
340 /* Linker needs to decompress sections. */
341 abfd->flags |= BFD_DECOMPRESS;
342
343 if (! bfd_check_format (abfd, bfd_object))
344 {
345 bfd_close (abfd);
346 return FALSE;
347 }
348 if ((bfd_get_file_flags (abfd) & DYNAMIC) == 0)
349 {
350 bfd_close (abfd);
351 return FALSE;
352 }
353
354 /* For DT_NEEDED, they have to match. */
355 if (abfd->xvec != link_info.output_bfd->xvec)
356 {
357 bfd_close (abfd);
358 return FALSE;
359 }
360
361 /* Check whether this object would include any conflicting library
362 versions. If FORCE is set, then we skip this check; we use this
363 the second time around, if we couldn't find any compatible
364 instance of the shared library. */
365
366 if (! force)
367 {
368 struct bfd_link_needed_list *needs;
369
370 if (! bfd_elf_get_bfd_needed_list (abfd, &needs))
371 einfo ("%F%P:%B: bfd_elf_get_bfd_needed_list failed: %E\n", abfd);
372
373 if (needs != NULL)
374 {
375 global_vercheck_needed = needs;
376 global_vercheck_failed = FALSE;
377 lang_for_each_input_file (gld${EMULATION_NAME}_vercheck);
378 if (global_vercheck_failed)
379 {
380 bfd_close (abfd);
381 /* Return FALSE to force the caller to move on to try
382 another file on the search path. */
383 return FALSE;
384 }
385
386 /* But wait! It gets much worse. On Linux, if a shared
387 library does not use libc at all, we are supposed to skip
388 it the first time around in case we encounter a shared
389 library later on with the same name which does use the
390 version of libc that we want. This is much too horrible
391 to use on any system other than Linux. */
392
393EOF
394case ${target} in
395 *-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
396 fragment <<EOF
397 {
398 struct bfd_link_needed_list *l;
399
400 for (l = needs; l != NULL; l = l->next)
401 if (CONST_STRNEQ (l->name, "libc.so"))
402 break;
403 if (l == NULL)
404 {
405 bfd_close (abfd);
406 return FALSE;
407 }
408 }
409
410EOF
411 ;;
412esac
413fragment <<EOF
414 }
415 }
416
417 /* We've found a dynamic object matching the DT_NEEDED entry. */
418
419 /* We have already checked that there is no other input file of the
420 same name. We must now check again that we are not including the
421 same file twice. We need to do this because on many systems
422 libc.so is a symlink to, e.g., libc.so.1. The SONAME entry will
423 reference libc.so.1. If we have already included libc.so, we
424 don't want to include libc.so.1 if they are the same file, and we
425 can only check that using stat. */
426
427 if (bfd_stat (abfd, &global_stat) != 0)
428 einfo ("%F%P:%B: bfd_stat failed: %E\n", abfd);
429
430 /* First strip off everything before the last '/'. */
431 soname = lbasename (abfd->filename);
432
433 if (verbose)
434 info_msg (_("found %s at %s\n"), soname, name);
435
436 global_found = NULL;
437 lang_for_each_input_file (gld${EMULATION_NAME}_stat_needed);
438 if (global_found != NULL)
439 {
440 /* Return TRUE to indicate that we found the file, even though
441 we aren't going to do anything with it. */
442 return TRUE;
443 }
444
445 /* Specify the soname to use. */
446 bfd_elf_set_dt_needed_name (abfd, soname);
447
448 /* Tell the ELF linker that we don't want the output file to have a
449 DT_NEEDED entry for this file, unless it is used to resolve
450 references in a regular object. */
451 link_class = DYN_DT_NEEDED;
452
453 /* Tell the ELF linker that we don't want the output file to have a
454 DT_NEEDED entry for this file at all if the entry is from a file
455 with DYN_NO_ADD_NEEDED. */
456 if (needed->by != NULL
457 && (bfd_elf_get_dyn_lib_class (needed->by) & DYN_NO_ADD_NEEDED) != 0)
458 link_class |= DYN_NO_NEEDED | DYN_NO_ADD_NEEDED;
459
460 bfd_elf_set_dyn_lib_class (abfd, (enum dynamic_lib_link_class) link_class);
461
462 /* Add this file into the symbol table. */
463 if (! bfd_link_add_symbols (abfd, &link_info))
464 einfo ("%F%B: error adding symbols: %E\n", abfd);
465
466 return TRUE;
467}
468
469
470/* Search for a needed file in a path. */
471
472static bfd_boolean
473gld${EMULATION_NAME}_search_needed (const char *path,
474 struct dt_needed *n, int force)
475{
476 const char *s;
477 const char *name = n->name;
478 size_t len;
479 struct dt_needed needed;
480
481 if (name[0] == '/')
482 return gld${EMULATION_NAME}_try_needed (n, force);
483
484 if (path == NULL || *path == '\0')
485 return FALSE;
486
487 needed.by = n->by;
488 needed.name = n->name;
489
490 len = strlen (name);
491 while (1)
492 {
493 char *filename, *sset;
494
495 s = strchr (path, config.rpath_separator);
496 if (s == NULL)
497 s = path + strlen (path);
498
499#if HAVE_DOS_BASED_FILE_SYSTEM
500 /* Assume a match on the second char is part of drive specifier. */
501 else if (config.rpath_separator == ':'
502 && s == path + 1
503 && ISALPHA (*path))
504 {
505 s = strchr (s + 1, config.rpath_separator);
506 if (s == NULL)
507 s = path + strlen (path);
508 }
509#endif
510 filename = (char *) xmalloc (s - path + len + 2);
511 if (s == path)
512 sset = filename;
513 else
514 {
515 memcpy (filename, path, s - path);
516 filename[s - path] = '/';
517 sset = filename + (s - path) + 1;
518 }
519 strcpy (sset, name);
520
521 needed.name = filename;
522 if (gld${EMULATION_NAME}_try_needed (&needed, force))
523 return TRUE;
524
525 free (filename);
526
527 if (*s == '\0')
528 break;
529 path = s + 1;
530 }
531
532 return FALSE;
533}
534
535EOF
536if [ "x${USE_LIBPATH}" = xyes ] ; then
537 fragment <<EOF
538
539/* Add the sysroot to every entry in a path separated by
540 config.rpath_separator. */
541
542static char *
543gld${EMULATION_NAME}_add_sysroot (const char *path)
544{
545 int len, colons, i;
546 char *ret, *p;
547
548 len = strlen (path);
549 colons = 0;
550 i = 0;
551 while (path[i])
552 if (path[i++] == config.rpath_separator)
553 colons++;
554
555 if (path[i])
556 colons++;
557
558 len = len + (colons + 1) * strlen (ld_sysroot);
559 ret = xmalloc (len + 1);
560 strcpy (ret, ld_sysroot);
561 p = ret + strlen (ret);
562 i = 0;
563 while (path[i])
564 if (path[i] == config.rpath_separator)
565 {
566 *p++ = path[i++];
567 strcpy (p, ld_sysroot);
568 p = p + strlen (p);
569 }
570 else
571 *p++ = path[i++];
572
573 *p = 0;
574 return ret;
575}
576
577EOF
578 case ${target} in
579 *-*-freebsd* | *-*-dragonfly*)
580 fragment <<EOF
581/* Read the system search path the FreeBSD way rather than the Linux way. */
582#ifdef HAVE_ELF_HINTS_H
583#include <elf-hints.h>
584#else
585#include "elf-hints-local.h"
586#endif
587
588static bfd_boolean
589gld${EMULATION_NAME}_check_ld_elf_hints (const struct bfd_link_needed_list *l,
590 int force)
591{
592 static bfd_boolean initialized;
593 static char *ld_elf_hints;
594 struct dt_needed needed;
595
596 if (!initialized)
597 {
598 FILE *f;
599 char *tmppath;
600
601 tmppath = concat (ld_sysroot, _PATH_ELF_HINTS, (const char *) NULL);
602 f = fopen (tmppath, FOPEN_RB);
603 free (tmppath);
604 if (f != NULL)
605 {
606 struct elfhints_hdr hdr;
607
608 if (fread (&hdr, 1, sizeof (hdr), f) == sizeof (hdr)
609 && hdr.magic == ELFHINTS_MAGIC
610 && hdr.version == 1)
611 {
612 if (fseek (f, hdr.strtab + hdr.dirlist, SEEK_SET) != -1)
613 {
614 char *b;
615
616 b = xmalloc (hdr.dirlistlen + 1);
617 if (fread (b, 1, hdr.dirlistlen + 1, f) ==
618 hdr.dirlistlen + 1)
619 ld_elf_hints = gld${EMULATION_NAME}_add_sysroot (b);
620
621 free (b);
622 }
623 }
624 fclose (f);
625 }
626
627 initialized = TRUE;
628 }
629
630 if (ld_elf_hints == NULL)
631 return FALSE;
632
633 needed.by = l->by;
634 needed.name = l->name;
635 return gld${EMULATION_NAME}_search_needed (ld_elf_hints, &needed, force);
636}
637EOF
638 # FreeBSD
639 ;;
640
641 *-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
642 fragment <<EOF
643/* For a native linker, check the file /etc/ld.so.conf for directories
644 in which we may find shared libraries. /etc/ld.so.conf is really
645 only meaningful on Linux. */
646
647struct gld${EMULATION_NAME}_ld_so_conf
648{
649 char *path;
650 size_t len, alloc;
651};
652
653static bfd_boolean
654gld${EMULATION_NAME}_parse_ld_so_conf
655 (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename);
656
657static void
658gld${EMULATION_NAME}_parse_ld_so_conf_include
659 (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename,
660 const char *pattern)
661{
662 char *newp = NULL;
663#ifdef HAVE_GLOB
664 glob_t gl;
665#endif
666
667 if (pattern[0] != '/')
668 {
669 char *p = strrchr (filename, '/');
670 size_t patlen = strlen (pattern) + 1;
671
672 newp = xmalloc (p - filename + 1 + patlen);
673 memcpy (newp, filename, p - filename + 1);
674 memcpy (newp + (p - filename + 1), pattern, patlen);
675 pattern = newp;
676 }
677
678#ifdef HAVE_GLOB
679 if (glob (pattern, 0, NULL, &gl) == 0)
680 {
681 size_t i;
682
683 for (i = 0; i < gl.gl_pathc; ++i)
684 gld${EMULATION_NAME}_parse_ld_so_conf (info, gl.gl_pathv[i]);
685 globfree (&gl);
686 }
687#else
688 /* If we do not have glob, treat the pattern as a literal filename. */
689 gld${EMULATION_NAME}_parse_ld_so_conf (info, pattern);
690#endif
691
692 if (newp)
693 free (newp);
694}
695
696static bfd_boolean
697gld${EMULATION_NAME}_parse_ld_so_conf
698 (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename)
699{
700 FILE *f = fopen (filename, FOPEN_RT);
701 char *line;
702 size_t linelen;
703
704 if (f == NULL)
705 return FALSE;
706
707 linelen = 256;
708 line = xmalloc (linelen);
709 do
710 {
711 char *p = line, *q;
712
713 /* Normally this would use getline(3), but we need to be portable. */
714 while ((q = fgets (p, linelen - (p - line), f)) != NULL
715 && strlen (q) == linelen - (p - line) - 1
716 && line[linelen - 2] != '\n')
717 {
718 line = xrealloc (line, 2 * linelen);
719 p = line + linelen - 1;
720 linelen += linelen;
721 }
722
723 if (q == NULL && p == line)
724 break;
725
726 p = strchr (line, '\n');
727 if (p)
728 *p = '\0';
729
730 /* Because the file format does not know any form of quoting we
731 can search forward for the next '#' character and if found
732 make it terminating the line. */
733 p = strchr (line, '#');
734 if (p)
735 *p = '\0';
736
737 /* Remove leading whitespace. NUL is no whitespace character. */
738 p = line;
739 while (*p == ' ' || *p == '\f' || *p == '\r' || *p == '\t' || *p == '\v')
740 ++p;
741
742 /* If the line is blank it is ignored. */
743 if (p[0] == '\0')
744 continue;
745
746 if (CONST_STRNEQ (p, "include") && (p[7] == ' ' || p[7] == '\t'))
747 {
748 char *dir, c;
749 p += 8;
750 do
751 {
752 while (*p == ' ' || *p == '\t')
753 ++p;
754
755 if (*p == '\0')
756 break;
757
758 dir = p;
759
760 while (*p != ' ' && *p != '\t' && *p)
761 ++p;
762
763 c = *p;
764 *p++ = '\0';
765 if (dir[0] != '\0')
766 gld${EMULATION_NAME}_parse_ld_so_conf_include (info, filename,
767 dir);
768 }
769 while (c != '\0');
770 }
771 else
772 {
773 char *dir = p;
774 while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f'
775 && *p != '\r' && *p != '\v')
776 ++p;
777
778 while (p != dir && p[-1] == '/')
779 --p;
780 if (info->path == NULL)
781 {
782 info->alloc = p - dir + 1 + 256;
783 info->path = xmalloc (info->alloc);
784 info->len = 0;
785 }
786 else
787 {
788 if (info->len + 1 + (p - dir) >= info->alloc)
789 {
790 info->alloc += p - dir + 256;
791 info->path = xrealloc (info->path, info->alloc);
792 }
793 info->path[info->len++] = config.rpath_separator;
794 }
795 memcpy (info->path + info->len, dir, p - dir);
796 info->len += p - dir;
797 info->path[info->len] = '\0';
798 }
799 }
800 while (! feof (f));
801 free (line);
802 fclose (f);
803 return TRUE;
804}
805
806static bfd_boolean
807gld${EMULATION_NAME}_check_ld_so_conf (const struct bfd_link_needed_list *l,
808 int force)
809{
810 static bfd_boolean initialized;
811 static char *ld_so_conf;
812 struct dt_needed needed;
813
814 if (! initialized)
815 {
816 char *tmppath;
817 struct gld${EMULATION_NAME}_ld_so_conf info;
818
819 info.path = NULL;
820 info.len = info.alloc = 0;
821 tmppath = concat (ld_sysroot, "${prefix}/etc/ld.so.conf",
822 (const char *) NULL);
823 if (!gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath))
824 {
825 free (tmppath);
826 tmppath = concat (ld_sysroot, "/etc/ld.so.conf",
827 (const char *) NULL);
828 gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath);
829 }
830 free (tmppath);
831
832 if (info.path)
833 {
834 char *d = gld${EMULATION_NAME}_add_sysroot (info.path);
835 free (info.path);
836 ld_so_conf = d;
837 }
838 initialized = TRUE;
839 }
840
841 if (ld_so_conf == NULL)
842 return FALSE;
843
844
845 needed.by = l->by;
846 needed.name = l->name;
847 return gld${EMULATION_NAME}_search_needed (ld_so_conf, &needed, force);
848}
849
850EOF
851 # Linux
852 ;;
853 esac
854fi
855fragment <<EOF
856
857/* See if an input file matches a DT_NEEDED entry by name. */
858
859static void
860gld${EMULATION_NAME}_check_needed (lang_input_statement_type *s)
861{
862 const char *soname;
863
864 /* Stop looking if we've found a loaded lib. */
865 if (global_found != NULL
866 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
867 & DYN_AS_NEEDED) == 0)
868 return;
869
870 if (s->filename == NULL || s->the_bfd == NULL)
871 return;
872
873 /* Don't look for a second non-loaded as-needed lib. */
874 if (global_found != NULL
875 && (bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
876 return;
877
878 if (filename_cmp (s->filename, global_needed->name) == 0)
879 {
880 global_found = s;
881 return;
882 }
883
884 if (s->flags.search_dirs)
885 {
886 const char *f = strrchr (s->filename, '/');
887 if (f != NULL
888 && filename_cmp (f + 1, global_needed->name) == 0)
889 {
890 global_found = s;
891 return;
892 }
893 }
894
895 soname = bfd_elf_get_dt_soname (s->the_bfd);
896 if (soname != NULL
897 && filename_cmp (soname, global_needed->name) == 0)
898 {
899 global_found = s;
900 return;
901 }
902}
903
904EOF
905
906if test x"$LDEMUL_AFTER_OPEN" != xgld"$EMULATION_NAME"_after_open; then
907fragment <<EOF
908
909static bfd_size_type
910id_note_section_size (bfd *abfd ATTRIBUTE_UNUSED)
911{
912 const char *style = emit_note_gnu_build_id;
913 bfd_size_type size;
914 bfd_size_type build_id_size;
915
916 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
917 size = (size + 3) & -(bfd_size_type) 4;
918
919 build_id_size = compute_build_id_size (style);
920 if (build_id_size)
921 size += build_id_size;
922 else
923 size = 0;
924
925 return size;
926}
927
928static bfd_boolean
929write_build_id (bfd *abfd)
930{
931 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
932 struct elf_obj_tdata *t = elf_tdata (abfd);
933 const char *style;
934 asection *asec;
935 Elf_Internal_Shdr *i_shdr;
936 unsigned char *contents, *id_bits;
937 bfd_size_type size;
938 file_ptr position;
939 Elf_External_Note *e_note;
940
941 style = t->o->build_id.style;
942 asec = t->o->build_id.sec;
943 if (bfd_is_abs_section (asec->output_section))
944 {
945 einfo (_("%P: warning: .note.gnu.build-id section discarded,"
946 " --build-id ignored.\n"));
947 return TRUE;
948 }
949 i_shdr = &elf_section_data (asec->output_section)->this_hdr;
950
951 if (i_shdr->contents == NULL)
952 {
953 if (asec->contents == NULL)
954 asec->contents = (unsigned char *) xmalloc (asec->size);
955 contents = asec->contents;
956 }
957 else
958 contents = i_shdr->contents + asec->output_offset;
959
960 e_note = (Elf_External_Note *) contents;
961 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
962 size = (size + 3) & -(bfd_size_type) 4;
963 id_bits = contents + size;
964 size = asec->size - size;
965
966 bfd_h_put_32 (abfd, sizeof "GNU", &e_note->namesz);
967 bfd_h_put_32 (abfd, size, &e_note->descsz);
968 bfd_h_put_32 (abfd, NT_GNU_BUILD_ID, &e_note->type);
969 memcpy (e_note->name, "GNU", sizeof "GNU");
970
971 generate_build_id (abfd, style, bed->s->checksum_contents, id_bits, size);
972
973 position = i_shdr->sh_offset + asec->output_offset;
974 size = asec->size;
975 return (bfd_seek (abfd, position, SEEK_SET) == 0
976 && bfd_bwrite (contents, size, abfd) == size);
977}
978
979/* Make .note.gnu.build-id section, and set up elf_tdata->build_id. */
980
981static bfd_boolean
982setup_build_id (bfd *ibfd)
983{
984 asection *s;
985 bfd_size_type size;
986 flagword flags;
987
988 size = id_note_section_size (ibfd);
989 if (size == 0)
990 {
991 einfo ("%P: warning: unrecognized --build-id style ignored.\n");
992 return FALSE;
993 }
994
995 flags = (SEC_ALLOC | SEC_LOAD | SEC_IN_MEMORY
996 | SEC_LINKER_CREATED | SEC_READONLY | SEC_DATA);
997 s = bfd_make_section_with_flags (ibfd, ".note.gnu.build-id", flags);
998 if (s != NULL && bfd_set_section_alignment (ibfd, s, 2))
999 {
1000 struct elf_obj_tdata *t = elf_tdata (link_info.output_bfd);
1001 t->o->build_id.after_write_object_contents = &write_build_id;
1002 t->o->build_id.style = emit_note_gnu_build_id;
1003 t->o->build_id.sec = s;
1004 elf_section_type (s) = SHT_NOTE;
1005 s->size = size;
1006 return TRUE;
1007 }
1008
1009 einfo ("%P: warning: Cannot create .note.gnu.build-id section,"
1010 " --build-id ignored.\n");
1011 return FALSE;
1012}
1013
1014/* This is called after all the input files have been opened. */
1015
1016static void
1017gld${EMULATION_NAME}_after_open (void)
1018{
1019 struct bfd_link_needed_list *needed, *l;
1020 struct elf_link_hash_table *htab;
1021
1022 after_open_default ();
1023
1024 htab = elf_hash_table (&link_info);
1025 if (!is_elf_hash_table (htab))
1026 return;
1027
1028 if (emit_note_gnu_build_id != NULL)
1029 {
1030 bfd *abfd;
1031
1032 /* Find an ELF input. */
1033 for (abfd = link_info.input_bfds;
1034 abfd != (bfd *) NULL; abfd = abfd->link.next)
1035 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1036 && bfd_count_sections (abfd) != 0)
1037 break;
1038
1039 /* PR 10555: If there are no ELF input files do not try to
1040 create a .note.gnu-build-id section. */
1041 if (abfd == NULL
1042 || !setup_build_id (abfd))
1043 {
1044 free ((char *) emit_note_gnu_build_id);
1045 emit_note_gnu_build_id = NULL;
1046 }
1047 }
1048
1049 if (bfd_link_relocatable (&link_info))
1050 {
1051 if (link_info.execstack == ! link_info.noexecstack)
1052 /* PR ld/16744: If "-z [no]execstack" has been specified on the
1053 command line and we are perfoming a relocatable link then no
1054 PT_GNU_STACK segment will be created and so the
1055 linkinfo.[no]execstack values set in _handle_option() will have no
1056 effect. Instead we create a .note.GNU-stack section in much the
1057 same way as the assembler does with its --[no]execstack option. */
1058 (void) bfd_make_section_with_flags (link_info.input_bfds,
1059 ".note.GNU-stack",
1060 SEC_READONLY | (link_info.execstack ? SEC_CODE : 0));
1061
1062 return;
1063 }
1064
1065 if (!link_info.traditional_format)
1066 {
1067 bfd *abfd, *elfbfd = NULL;
1068 bfd_boolean warn_eh_frame = FALSE;
1069 asection *s;
1070 int seen_type = 0;
1071
1072 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1073 {
1074 int type = 0;
1075 for (s = abfd->sections; s && type < COMPACT_EH_HDR; s = s->next)
1076 {
1077 const char *name = bfd_get_section_name (abfd, s);
1078
1079 if (bfd_is_abs_section (s->output_section))
1080 continue;
1081 if (CONST_STRNEQ (name, ".eh_frame_entry"))
1082 type = COMPACT_EH_HDR;
1083 else if (strcmp (name, ".eh_frame") == 0 && s->size > 8)
1084 type = DWARF2_EH_HDR;
1085 }
1086
1087 if (type != 0)
1088 {
1089 if (seen_type == 0)
1090 {
1091 seen_type = type;
1092 }
1093 else if (seen_type != type)
1094 {
1095 einfo (_("%P%F: compact frame descriptions incompatible with"
1096 " DWARF2 .eh_frame from %B\n"),
1097 type == DWARF2_EH_HDR ? abfd : elfbfd);
1098 break;
1099 }
1100
1101 if (!elfbfd
1102 && (type == COMPACT_EH_HDR || link_info.eh_frame_hdr_type != 0))
1103 {
1104 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1105 elfbfd = abfd;
1106
1107 warn_eh_frame = TRUE;
1108 }
1109 }
1110
1111 if (seen_type == COMPACT_EH_HDR)
1112 link_info.eh_frame_hdr_type = COMPACT_EH_HDR;
1113
1114 if (bfd_count_sections (abfd) == 0)
1115 continue;
1116 }
1117 if (elfbfd)
1118 {
1119 const struct elf_backend_data *bed;
1120
1121 bed = get_elf_backend_data (elfbfd);
1122 s = bfd_make_section_with_flags (elfbfd, ".eh_frame_hdr",
1123 bed->dynamic_sec_flags
1124 | SEC_READONLY);
1125 if (s != NULL
1126 && bfd_set_section_alignment (elfbfd, s, 2))
1127 {
1128 htab->eh_info.hdr_sec = s;
1129 warn_eh_frame = FALSE;
1130 }
1131 }
1132 if (warn_eh_frame)
1133 einfo ("%P: warning: Cannot create .eh_frame_hdr section,"
1134 " --eh-frame-hdr ignored.\n");
1135 }
1136
1137 /* Get the list of files which appear in DT_NEEDED entries in
1138 dynamic objects included in the link (often there will be none).
1139 For each such file, we want to track down the corresponding
1140 library, and include the symbol table in the link. This is what
1141 the runtime dynamic linker will do. Tracking the files down here
1142 permits one dynamic object to include another without requiring
1143 special action by the person doing the link. Note that the
1144 needed list can actually grow while we are stepping through this
1145 loop. */
1146 needed = bfd_elf_get_needed_list (link_info.output_bfd, &link_info);
1147 for (l = needed; l != NULL; l = l->next)
1148 {
1149 struct bfd_link_needed_list *ll;
1150 struct dt_needed n, nn;
1151 int force;
1152
1153 /* If the lib that needs this one was --as-needed and wasn't
1154 found to be needed, then this lib isn't needed either. */
1155 if (l->by != NULL
1156 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0)
1157 continue;
1158
1159 /* Skip the lib if --no-copy-dt-needed-entries and
1160 --allow-shlib-undefined is in effect. */
1161 if (l->by != NULL
1162 && link_info.unresolved_syms_in_shared_libs == RM_IGNORE
1163 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_NO_ADD_NEEDED) != 0)
1164 continue;
1165
1166 /* If we've already seen this file, skip it. */
1167 for (ll = needed; ll != l; ll = ll->next)
1168 if ((ll->by == NULL
1169 || (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0)
1170 && strcmp (ll->name, l->name) == 0)
1171 break;
1172 if (ll != l)
1173 continue;
1174
1175 /* See if this file was included in the link explicitly. */
1176 global_needed = l;
1177 global_found = NULL;
1178 lang_for_each_input_file (gld${EMULATION_NAME}_check_needed);
1179 if (global_found != NULL
1180 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
1181 & DYN_AS_NEEDED) == 0)
1182 continue;
1183
1184 n.by = l->by;
1185 n.name = l->name;
1186 nn.by = l->by;
1187 if (verbose)
1188 info_msg (_("%s needed by %B\n"), l->name, l->by);
1189
1190 /* As-needed libs specified on the command line (or linker script)
1191 take priority over libs found in search dirs. */
1192 if (global_found != NULL)
1193 {
1194 nn.name = global_found->filename;
1195 if (gld${EMULATION_NAME}_try_needed (&nn, TRUE))
1196 continue;
1197 }
1198
1199 /* We need to find this file and include the symbol table. We
1200 want to search for the file in the same way that the dynamic
1201 linker will search. That means that we want to use
1202 rpath_link, rpath, then the environment variable
1203 LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH
1204 entries (native only), then the linker script LIB_SEARCH_DIRS.
1205 We do not search using the -L arguments.
1206
1207 We search twice. The first time, we skip objects which may
1208 introduce version mismatches. The second time, we force
1209 their use. See gld${EMULATION_NAME}_vercheck comment. */
1210 for (force = 0; force < 2; force++)
1211 {
1212 size_t len;
1213 search_dirs_type *search;
1214EOF
1215if [ "x${NATIVE}" = xyes ] ; then
1216fragment <<EOF
1217 const char *lib_path;
1218EOF
1219fi
1220if [ "x${USE_LIBPATH}" = xyes ] ; then
1221fragment <<EOF
1222 struct bfd_link_needed_list *rp;
1223 int found;
1224EOF
1225fi
1226fragment <<EOF
1227
1228 if (gld${EMULATION_NAME}_search_needed (command_line.rpath_link,
1229 &n, force))
1230 break;
1231EOF
1232if [ "x${USE_LIBPATH}" = xyes ] ; then
1233fragment <<EOF
1234 if (gld${EMULATION_NAME}_search_needed (command_line.rpath,
1235 &n, force))
1236 break;
1237EOF
1238fi
1239if [ "x${NATIVE}" = xyes ] ; then
1240fragment <<EOF
1241 if (command_line.rpath_link == NULL
1242 && command_line.rpath == NULL)
1243 {
1244 lib_path = (const char *) getenv ("LD_RUN_PATH");
1245 if (gld${EMULATION_NAME}_search_needed (lib_path, &n,
1246 force))
1247 break;
1248 }
1249 lib_path = (const char *) getenv ("LD_LIBRARY_PATH");
1250 if (gld${EMULATION_NAME}_search_needed (lib_path, &n, force))
1251 break;
1252EOF
1253fi
1254if [ "x${USE_LIBPATH}" = xyes ] ; then
1255fragment <<EOF
1256 found = 0;
1257 rp = bfd_elf_get_runpath_list (link_info.output_bfd, &link_info);
1258 for (; !found && rp != NULL; rp = rp->next)
1259 {
1260 const char *tmpname = rp->name;
1261
1262 if (IS_ABSOLUTE_PATH (tmpname))
1263 tmpname = gld${EMULATION_NAME}_add_sysroot (tmpname);
1264 found = (rp->by == l->by
1265 && gld${EMULATION_NAME}_search_needed (tmpname,
1266 &n,
1267 force));
1268 if (tmpname != rp->name)
1269 free ((char *) tmpname);
1270 }
1271 if (found)
1272 break;
1273
1274EOF
1275fi
1276if [ "x${USE_LIBPATH}" = xyes ] ; then
1277 case ${target} in
1278 *-*-freebsd* | *-*-dragonfly*)
1279 fragment <<EOF
1280 if (gld${EMULATION_NAME}_check_ld_elf_hints (l, force))
1281 break;
1282EOF
1283 # FreeBSD
1284 ;;
1285
1286 *-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
1287 fragment <<EOF
1288 if (gld${EMULATION_NAME}_check_ld_so_conf (l, force))
1289 break;
1290
1291EOF
1292 # Linux
1293 ;;
1294 esac
1295fi
1296fragment <<EOF
1297 len = strlen (l->name);
1298 for (search = search_head; search != NULL; search = search->next)
1299 {
1300 char *filename;
1301
1302 if (search->cmdline)
1303 continue;
1304 filename = (char *) xmalloc (strlen (search->name) + len + 2);
1305 sprintf (filename, "%s/%s", search->name, l->name);
1306 nn.name = filename;
1307 if (gld${EMULATION_NAME}_try_needed (&nn, force))
1308 break;
1309 free (filename);
1310 }
1311 if (search != NULL)
1312 break;
1313EOF
1314fragment <<EOF
1315 }
1316
1317 if (force < 2)
1318 continue;
1319
1320 einfo ("%P: warning: %s, needed by %B, not found (try using -rpath or -rpath-link)\n",
1321 l->name, l->by);
1322 }
1323
1324 if (link_info.eh_frame_hdr_type == COMPACT_EH_HDR)
1325 if (bfd_elf_parse_eh_frame_entries (NULL, &link_info) == FALSE)
1326 einfo (_("%P%F: Failed to parse EH frame entries.\n"));
1327}
1328
1329EOF
1330fi
1331
1332fragment <<EOF
1333
1334/* Look through an expression for an assignment statement. */
1335
1336static void
1337gld${EMULATION_NAME}_find_exp_assignment (etree_type *exp)
1338{
1339 bfd_boolean provide = FALSE;
1340
1341 switch (exp->type.node_class)
1342 {
1343 case etree_provide:
1344 case etree_provided:
1345 provide = TRUE;
1346 /* Fall thru */
1347 case etree_assign:
1348 /* We call record_link_assignment even if the symbol is defined.
1349 This is because if it is defined by a dynamic object, we
1350 actually want to use the value defined by the linker script,
1351 not the value from the dynamic object (because we are setting
1352 symbols like etext). If the symbol is defined by a regular
1353 object, then, as it happens, calling record_link_assignment
1354 will do no harm. */
1355 if (strcmp (exp->assign.dst, ".") != 0)
1356 {
1357 if (!bfd_elf_record_link_assignment (link_info.output_bfd,
1358 &link_info,
1359 exp->assign.dst, provide,
1360 exp->assign.hidden))
1361 einfo ("%P%F: failed to record assignment to %s: %E\n",
1362 exp->assign.dst);
1363 }
1364 gld${EMULATION_NAME}_find_exp_assignment (exp->assign.src);
1365 break;
1366
1367 case etree_binary:
1368 gld${EMULATION_NAME}_find_exp_assignment (exp->binary.lhs);
1369 gld${EMULATION_NAME}_find_exp_assignment (exp->binary.rhs);
1370 break;
1371
1372 case etree_trinary:
1373 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.cond);
1374 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.lhs);
1375 gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.rhs);
1376 break;
1377
1378 case etree_unary:
1379 gld${EMULATION_NAME}_find_exp_assignment (exp->unary.child);
1380 break;
1381
1382 default:
1383 break;
1384 }
1385}
1386
1387
1388/* This is called by the before_allocation routine via
1389 lang_for_each_statement. It locates any assignment statements, and
1390 tells the ELF backend about them, in case they are assignments to
1391 symbols which are referred to by dynamic objects. */
1392
1393static void
1394gld${EMULATION_NAME}_find_statement_assignment (lang_statement_union_type *s)
1395{
1396 if (s->header.type == lang_assignment_statement_enum)
1397 gld${EMULATION_NAME}_find_exp_assignment (s->assignment_statement.exp);
1398}
1399
1400EOF
1401
1402if test x"$LDEMUL_BEFORE_ALLOCATION" != xgld"$EMULATION_NAME"_before_allocation; then
1403 if test x"${ELF_INTERPRETER_NAME+set}" = xset; then
1404 ELF_INTERPRETER_SET_DEFAULT="
1405 if (sinterp != NULL)
1406 {
1407 sinterp->contents = (unsigned char *) ${ELF_INTERPRETER_NAME};
1408 sinterp->size = strlen ((char *) sinterp->contents) + 1;
1409 }
1410
1411"
1412 else
1413 ELF_INTERPRETER_SET_DEFAULT=
1414 fi
1415fragment <<EOF
1416
1417/* used by before_allocation and handle_option. */
1418static void
1419gld${EMULATION_NAME}_append_to_separated_string (char **to, char *op_arg)
1420{
1421 if (*to == NULL)
1422 *to = xstrdup (op_arg);
1423 else
1424 {
1425 size_t to_len = strlen (*to);
1426 size_t op_arg_len = strlen (op_arg);
1427 char *buf;
1428 char *cp = *to;
1429
1430 /* First see whether OPTARG is already in the path. */
1431 do
1432 {
1433 if (strncmp (op_arg, cp, op_arg_len) == 0
1434 && (cp[op_arg_len] == 0
1435 || cp[op_arg_len] == config.rpath_separator))
1436 /* We found it. */
1437 break;
1438
1439 /* Not yet found. */
1440 cp = strchr (cp, config.rpath_separator);
1441 if (cp != NULL)
1442 ++cp;
1443 }
1444 while (cp != NULL);
1445
1446 if (cp == NULL)
1447 {
1448 buf = xmalloc (to_len + op_arg_len + 2);
1449 sprintf (buf, "%s%c%s", *to,
1450 config.rpath_separator, op_arg);
1451 free (*to);
1452 *to = buf;
1453 }
1454 }
1455}
1456
1457#if defined(__GNUC__) && GCC_VERSION < 4006
1458 /* Work around a GCC uninitialized warning bug fixed in GCC 4.6. */
1459static struct bfd_link_hash_entry ehdr_start_empty;
1460#endif
1461
1462/* This is called after the sections have been attached to output
1463 sections, but before any sizes or addresses have been set. */
1464
1465static void
1466gld${EMULATION_NAME}_before_allocation (void)
1467{
1468 const char *rpath;
1469 asection *sinterp;
1470 bfd *abfd;
1471 struct elf_link_hash_entry *ehdr_start = NULL;
1472#if defined(__GNUC__) && GCC_VERSION < 4006
1473 /* Work around a GCC uninitialized warning bug fixed in GCC 4.6. */
1474 struct bfd_link_hash_entry ehdr_start_save = ehdr_start_empty;
1475#else
1476 struct bfd_link_hash_entry ehdr_start_save;
1477#endif
1478
1479 if (is_elf_hash_table (link_info.hash))
1480 {
1481 _bfd_elf_tls_setup (link_info.output_bfd, &link_info);
1482
1483 /* Make __ehdr_start hidden if it has been referenced, to
1484 prevent the symbol from being dynamic. */
1485 if (!bfd_link_relocatable (&link_info))
1486 {
1487 struct elf_link_hash_entry *h
1488 = elf_link_hash_lookup (elf_hash_table (&link_info), "__ehdr_start",
1489 FALSE, FALSE, TRUE);
1490
1491 /* Only adjust the export class if the symbol was referenced
1492 and not defined, otherwise leave it alone. */
1493 if (h != NULL
1494 && (h->root.type == bfd_link_hash_new
1495 || h->root.type == bfd_link_hash_undefined
1496 || h->root.type == bfd_link_hash_undefweak
1497 || h->root.type == bfd_link_hash_common))
1498 {
1499 _bfd_elf_link_hash_hide_symbol (&link_info, h, TRUE);
1500 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
1501 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
1502 /* Don't leave the symbol undefined. Undefined hidden
1503 symbols typically won't have dynamic relocations, but
1504 we most likely will need dynamic relocations for
1505 __ehdr_start if we are building a PIE or shared
1506 library. */
1507 ehdr_start = h;
1508 ehdr_start_save = h->root;
1509 h->root.type = bfd_link_hash_defined;
1510 h->root.u.def.section = bfd_abs_section_ptr;
1511 h->root.u.def.value = 0;
1512 }
1513 }
1514
1515 /* If we are going to make any variable assignments, we need to
1516 let the ELF backend know about them in case the variables are
1517 referred to by dynamic objects. */
1518 lang_for_each_statement (gld${EMULATION_NAME}_find_statement_assignment);
1519 }
1520
1521 /* Let the ELF backend work out the sizes of any sections required
1522 by dynamic linking. */
1523 rpath = command_line.rpath;
1524 if (rpath == NULL)
1525 rpath = (const char *) getenv ("LD_RUN_PATH");
1526
1527 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1528 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1529 {
1530 const char *audit_libs = elf_dt_audit (abfd);
1531
1532 /* If the input bfd contains an audit entry, we need to add it as
1533 a dep audit entry. */
1534 if (audit_libs && *audit_libs != '\0')
1535 {
1536 char *cp = xstrdup (audit_libs);
1537 do
1538 {
1539 int more = 0;
1540 char *cp2 = strchr (cp, config.rpath_separator);
1541
1542 if (cp2)
1543 {
1544 *cp2 = '\0';
1545 more = 1;
1546 }
1547
1548 if (cp != NULL && *cp != '\0')
1549 gld${EMULATION_NAME}_append_to_separated_string (&depaudit, cp);
1550
1551 cp = more ? ++cp2 : NULL;
1552 }
1553 while (cp != NULL);
1554 }
1555 }
1556
1557 if (! (bfd_elf_size_dynamic_sections
1558 (link_info.output_bfd, command_line.soname, rpath,
1559 command_line.filter_shlib, audit, depaudit,
1560 (const char * const *) command_line.auxiliary_filters,
1561 &link_info, &sinterp)))
1562 einfo ("%P%F: failed to set dynamic section sizes: %E\n");
1563
1564${ELF_INTERPRETER_SET_DEFAULT}
1565 /* Let the user override the dynamic linker we are using. */
1566 if (command_line.interpreter != NULL
1567 && sinterp != NULL)
1568 {
1569 sinterp->contents = (bfd_byte *) command_line.interpreter;
1570 sinterp->size = strlen (command_line.interpreter) + 1;
1571 }
1572
1573 /* Look for any sections named .gnu.warning. As a GNU extensions,
1574 we treat such sections as containing warning messages. We print
1575 out the warning message, and then zero out the section size so
1576 that it does not get copied into the output file. */
1577
1578 {
1579 LANG_FOR_EACH_INPUT_STATEMENT (is)
1580 {
1581 asection *s;
1582 bfd_size_type sz;
1583 char *msg;
1584 bfd_boolean ret;
1585
1586 if (is->flags.just_syms)
1587 continue;
1588
1589 s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning");
1590 if (s == NULL)
1591 continue;
1592
1593 sz = s->size;
1594 msg = (char *) xmalloc ((size_t) (sz + 1));
1595 if (! bfd_get_section_contents (is->the_bfd, s, msg,
1596 (file_ptr) 0, sz))
1597 einfo ("%F%B: Can't read contents of section .gnu.warning: %E\n",
1598 is->the_bfd);
1599 msg[sz] = '\0';
1600 ret = link_info.callbacks->warning (&link_info, msg,
1601 (const char *) NULL,
1602 is->the_bfd, (asection *) NULL,
1603 (bfd_vma) 0);
1604 ASSERT (ret);
1605 free (msg);
1606
1607 /* Clobber the section size, so that we don't waste space
1608 copying the warning into the output file. If we've already
1609 sized the output section, adjust its size. The adjustment
1610 is on rawsize because targets that size sections early will
1611 have called lang_reset_memory_regions after sizing. */
1612 if (s->output_section != NULL
1613 && s->output_section->rawsize >= s->size)
1614 s->output_section->rawsize -= s->size;
1615
1616 s->size = 0;
1617
1618 /* Also set SEC_EXCLUDE, so that local symbols defined in the
1619 warning section don't get copied to the output. */
1620 s->flags |= SEC_EXCLUDE | SEC_KEEP;
1621 }
1622 }
1623
1624 before_allocation_default ();
1625
1626 if (!bfd_elf_size_dynsym_hash_dynstr (link_info.output_bfd, &link_info))
1627 einfo ("%P%F: failed to set dynamic section sizes: %E\n");
1628
1629 if (ehdr_start != NULL)
1630 {
1631 /* If we twiddled __ehdr_start to defined earlier, put it back
1632 as it was. */
1633 ehdr_start->root.type = ehdr_start_save.type;
1634 ehdr_start->root.u = ehdr_start_save.u;
1635 }
1636}
1637
1638EOF
1639fi
1640
1641if test x"$LDEMUL_OPEN_DYNAMIC_ARCHIVE" != xgld"$EMULATION_NAME"_open_dynamic_archive; then
1642fragment <<EOF
1643
1644/* Try to open a dynamic archive. This is where we know that ELF
1645 dynamic libraries have an extension of .so (or .sl on oddball systems
1646 like hpux). */
1647
1648static bfd_boolean
1649gld${EMULATION_NAME}_open_dynamic_archive
1650 (const char *arch, search_dirs_type *search, lang_input_statement_type *entry)
1651{
1652 const char *filename;
1653 char *string;
1654 size_t len;
1655 bfd_boolean opened = FALSE;
1656
1657 if (! entry->flags.maybe_archive)
1658 return FALSE;
1659
1660 filename = entry->filename;
1661 len = strlen (search->name) + strlen (filename);
1662 if (entry->flags.full_name_provided)
1663 {
1664 len += sizeof "/";
1665 string = (char *) xmalloc (len);
1666 sprintf (string, "%s/%s", search->name, filename);
1667 }
1668 else
1669 {
1670 size_t xlen = 0;
1671
1672 len += strlen (arch) + sizeof "/lib.so";
1673#ifdef EXTRA_SHLIB_EXTENSION
1674 xlen = (strlen (EXTRA_SHLIB_EXTENSION) > 3
1675 ? strlen (EXTRA_SHLIB_EXTENSION) - 3
1676 : 0);
1677#endif
1678 string = (char *) xmalloc (len + xlen);
1679 sprintf (string, "%s/lib%s%s.so", search->name, filename, arch);
1680#ifdef EXTRA_SHLIB_EXTENSION
1681 /* Try the .so extension first. If that fails build a new filename
1682 using EXTRA_SHLIB_EXTENSION. */
1683 opened = ldfile_try_open_bfd (string, entry);
1684 if (!opened)
1685 strcpy (string + len - 4, EXTRA_SHLIB_EXTENSION);
1686#endif
1687 }
1688
1689 if (!opened && !ldfile_try_open_bfd (string, entry))
1690 {
1691 free (string);
1692 return FALSE;
1693 }
1694
1695 entry->filename = string;
1696
1697 /* We have found a dynamic object to include in the link. The ELF
1698 backend linker will create a DT_NEEDED entry in the .dynamic
1699 section naming this file. If this file includes a DT_SONAME
1700 entry, it will be used. Otherwise, the ELF linker will just use
1701 the name of the file. For an archive found by searching, like
1702 this one, the DT_NEEDED entry should consist of just the name of
1703 the file, without the path information used to find it. Note
1704 that we only need to do this if we have a dynamic object; an
1705 archive will never be referenced by a DT_NEEDED entry.
1706
1707 FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
1708 very pretty. I haven't been able to think of anything that is
1709 pretty, though. */
1710 if (bfd_check_format (entry->the_bfd, bfd_object)
1711 && (entry->the_bfd->flags & DYNAMIC) != 0)
1712 {
1713 ASSERT (entry->flags.maybe_archive && entry->flags.search_dirs);
1714
1715 /* Rather than duplicating the logic above. Just use the
1716 filename we recorded earlier. */
1717
1718 if (!entry->flags.full_name_provided)
1719 filename = lbasename (entry->filename);
1720 bfd_elf_set_dt_needed_name (entry->the_bfd, filename);
1721 }
1722
1723 return TRUE;
1724}
1725
1726EOF
1727fi
1728
1729if test x"$LDEMUL_PLACE_ORPHAN" != xgld"$EMULATION_NAME"_place_orphan; then
1730fragment <<EOF
1731
1732/* A variant of lang_output_section_find used by place_orphan. */
1733
1734static lang_output_section_statement_type *
1735output_rel_find (asection *sec, int isdyn)
1736{
1737 lang_output_section_statement_type *lookup;
1738 lang_output_section_statement_type *last = NULL;
1739 lang_output_section_statement_type *last_alloc = NULL;
1740 lang_output_section_statement_type *last_ro_alloc = NULL;
1741 lang_output_section_statement_type *last_rel = NULL;
1742 lang_output_section_statement_type *last_rel_alloc = NULL;
1743 int rela = sec->name[4] == 'a';
1744
1745 for (lookup = &lang_output_section_statement.head->output_section_statement;
1746 lookup != NULL;
1747 lookup = lookup->next)
1748 {
1749 if (lookup->constraint >= 0
1750 && CONST_STRNEQ (lookup->name, ".rel"))
1751 {
1752 int lookrela = lookup->name[4] == 'a';
1753
1754 /* .rel.dyn must come before all other reloc sections, to suit
1755 GNU ld.so. */
1756 if (isdyn)
1757 break;
1758
1759 /* Don't place after .rel.plt as doing so results in wrong
1760 dynamic tags. */
1761 if (strcmp (".plt", lookup->name + 4 + lookrela) == 0)
1762 break;
1763
1764 if (rela == lookrela || last_rel == NULL)
1765 last_rel = lookup;
1766 if ((rela == lookrela || last_rel_alloc == NULL)
1767 && lookup->bfd_section != NULL
1768 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1769 last_rel_alloc = lookup;
1770 }
1771
1772 last = lookup;
1773 if (lookup->bfd_section != NULL
1774 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1775 {
1776 last_alloc = lookup;
1777 if ((lookup->bfd_section->flags & SEC_READONLY) != 0)
1778 last_ro_alloc = lookup;
1779 }
1780 }
1781
1782 if (last_rel_alloc)
1783 return last_rel_alloc;
1784
1785 if (last_rel)
1786 return last_rel;
1787
1788 if (last_ro_alloc)
1789 return last_ro_alloc;
1790
1791 if (last_alloc)
1792 return last_alloc;
1793
1794 return last;
1795}
1796
1797/* Place an orphan section. We use this to put random SHF_ALLOC
1798 sections in the right segment. */
1799
1800static lang_output_section_statement_type *
1801gld${EMULATION_NAME}_place_orphan (asection *s,
1802 const char *secname,
1803 int constraint)
1804{
1805 static struct orphan_save hold[] =
1806 {
1807 { ".text",
1808 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1809 0, 0, 0, 0 },
1810 { ".rodata",
1811 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1812 0, 0, 0, 0 },
1813 { ".tdata",
1814 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_THREAD_LOCAL,
1815 0, 0, 0, 0 },
1816 { ".data",
1817 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1818 0, 0, 0, 0 },
1819 { ".bss",
1820 SEC_ALLOC,
1821 0, 0, 0, 0 },
1822 { 0,
1823 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1824 0, 0, 0, 0 },
1825 { ".interp",
1826 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1827 0, 0, 0, 0 },
1828 { ".sdata",
1829 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA,
1830 0, 0, 0, 0 },
1831 { ".comment",
1832 SEC_HAS_CONTENTS,
1833 0, 0, 0, 0 },
1834 };
1835 enum orphan_save_index
1836 {
1837 orphan_text = 0,
1838 orphan_rodata,
1839 orphan_tdata,
1840 orphan_data,
1841 orphan_bss,
1842 orphan_rel,
1843 orphan_interp,
1844 orphan_sdata,
1845 orphan_nonalloc
1846 };
1847 static int orphan_init_done = 0;
1848 struct orphan_save *place;
1849 lang_output_section_statement_type *after;
1850 lang_output_section_statement_type *os;
1851 lang_output_section_statement_type *match_by_name = NULL;
1852 int isdyn = 0;
1853 int iself = s->owner->xvec->flavour == bfd_target_elf_flavour;
1854 unsigned int sh_type = iself ? elf_section_type (s) : SHT_NULL;
1855 flagword flags;
1856 asection *nexts;
1857
1858 if (!bfd_link_relocatable (&link_info)
1859 && link_info.combreloc
1860 && (s->flags & SEC_ALLOC))
1861 {
1862 if (iself)
1863 switch (sh_type)
1864 {
1865 case SHT_RELA:
1866 secname = ".rela.dyn";
1867 isdyn = 1;
1868 break;
1869 case SHT_REL:
1870 secname = ".rel.dyn";
1871 isdyn = 1;
1872 break;
1873 default:
1874 break;
1875 }
1876 else if (CONST_STRNEQ (secname, ".rel"))
1877 {
1878 secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn";
1879 isdyn = 1;
1880 }
1881 }
1882
1883 /* Look through the script to see where to place this section. */
1884 if (constraint == 0)
1885 for (os = lang_output_section_find (secname);
1886 os != NULL;
1887 os = next_matching_output_section_statement (os, 0))
1888 {
1889 /* If we don't match an existing output section, tell
1890 lang_insert_orphan to create a new output section. */
1891 constraint = SPECIAL;
1892
1893 if (os->bfd_section != NULL
1894 && (os->bfd_section->flags == 0
1895 || (((s->flags ^ os->bfd_section->flags)
1896 & (SEC_LOAD | SEC_ALLOC)) == 0
1897 && _bfd_elf_match_sections_by_type (link_info.output_bfd,
1898 os->bfd_section,
1899 s->owner, s))))
1900 {
1901 /* We already have an output section statement with this
1902 name, and its bfd section has compatible flags.
1903 If the section already exists but does not have any flags
1904 set, then it has been created by the linker, probably as a
1905 result of a --section-start command line switch. */
1906 lang_add_section (&os->children, s, NULL, os);
1907 return os;
1908 }
1909
1910 /* Save unused output sections in case we can match them
1911 against orphans later. */
1912 if (os->bfd_section == NULL)
1913 match_by_name = os;
1914 }
1915
1916 /* If we didn't match an active output section, see if we matched an
1917 unused one and use that. */
1918 if (match_by_name)
1919 {
1920 lang_add_section (&match_by_name->children, s, NULL, match_by_name);
1921 return match_by_name;
1922 }
1923
1924 if (!orphan_init_done)
1925 {
1926 struct orphan_save *ho;
1927
1928 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
1929 if (ho->name != NULL)
1930 {
1931 ho->os = lang_output_section_find (ho->name);
1932 if (ho->os != NULL && ho->os->flags == 0)
1933 ho->os->flags = ho->flags;
1934 }
1935 orphan_init_done = 1;
1936 }
1937
1938 /* If this is a final link, then always put .gnu.warning.SYMBOL
1939 sections into the .text section to get them out of the way. */
1940 if (bfd_link_executable (&link_info)
1941 && CONST_STRNEQ (s->name, ".gnu.warning.")
1942 && hold[orphan_text].os != NULL)
1943 {
1944 os = hold[orphan_text].os;
1945 lang_add_section (&os->children, s, NULL, os);
1946 return os;
1947 }
1948
1949 /* Decide which segment the section should go in based on the
1950 section name and section flags. We put loadable .note sections
1951 right after the .interp section, so that the PT_NOTE segment is
1952 stored right after the program headers where the OS can read it
1953 in the first page. */
1954
1955 flags = s->flags;
1956 nexts = s;
1957 while ((nexts = bfd_get_next_section_by_name (nexts->owner, nexts)) != NULL)
1958 if (nexts->output_section == NULL
1959 && (nexts->flags & SEC_EXCLUDE) == 0
1960 && ((nexts->flags ^ flags) & (SEC_LOAD | SEC_ALLOC)) == 0
1961 && (nexts->owner->flags & DYNAMIC) == 0
1962 && nexts->owner->usrdata != NULL
1963 && !(((lang_input_statement_type *) nexts->owner->usrdata)
1964 ->flags.just_syms)
1965 && _bfd_elf_match_sections_by_type (nexts->owner, nexts, s->owner, s))
1966 flags = (((flags ^ SEC_READONLY) | (nexts->flags ^ SEC_READONLY))
1967 ^ SEC_READONLY);
1968 place = NULL;
1969 if ((flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
1970 place = &hold[orphan_nonalloc];
1971 else if ((flags & SEC_ALLOC) == 0)
1972 ;
1973 else if ((flags & SEC_LOAD) != 0
1974 && ((iself && sh_type == SHT_NOTE)
1975 || (!iself && CONST_STRNEQ (secname, ".note"))))
1976 place = &hold[orphan_interp];
1977 else if ((flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
1978 place = &hold[orphan_bss];
1979 else if ((flags & SEC_SMALL_DATA) != 0)
1980 place = &hold[orphan_sdata];
1981 else if ((flags & SEC_THREAD_LOCAL) != 0)
1982 place = &hold[orphan_tdata];
1983 else if ((flags & SEC_READONLY) == 0)
1984 place = &hold[orphan_data];
1985 else if (((iself && (sh_type == SHT_RELA || sh_type == SHT_REL))
1986 || (!iself && CONST_STRNEQ (secname, ".rel")))
1987 && (flags & SEC_LOAD) != 0)
1988 place = &hold[orphan_rel];
1989 else if ((flags & SEC_CODE) == 0)
1990 place = &hold[orphan_rodata];
1991 else
1992 place = &hold[orphan_text];
1993
1994 after = NULL;
1995 if (place != NULL)
1996 {
1997 if (place->os == NULL)
1998 {
1999 if (place->name != NULL)
2000 place->os = lang_output_section_find (place->name);
2001 else
2002 place->os = output_rel_find (s, isdyn);
2003 }
2004 after = place->os;
2005 if (after == NULL)
2006 after
2007 = lang_output_section_find_by_flags (s, flags, &place->os,
2008 _bfd_elf_match_sections_by_type);
2009 if (after == NULL)
2010 /* *ABS* is always the first output section statement. */
2011 after = &lang_output_section_statement.head->output_section_statement;
2012 }
2013
2014 return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);
2015}
2016EOF
2017fi
2018
2019if test x"$LDEMUL_AFTER_ALLOCATION" != xgld"$EMULATION_NAME"_after_allocation; then
2020fragment <<EOF
2021
2022static void
2023gld${EMULATION_NAME}_after_allocation (void)
2024{
2025 int need_layout = bfd_elf_discard_info (link_info.output_bfd, &link_info);
2026
2027 if (need_layout < 0)
2028 einfo ("%X%P: .eh_frame/.stab edit: %E\n");
2029 else
2030 gld${EMULATION_NAME}_map_segments (need_layout);
2031}
2032EOF
2033fi
2034
2035if test x"$LDEMUL_GET_SCRIPT" != xgld"$EMULATION_NAME"_get_script; then
2036fragment <<EOF
2037
2038static char *
2039gld${EMULATION_NAME}_get_script (int *isfile)
2040EOF
2041
2042if test x"$COMPILE_IN" = xyes
2043then
2044# Scripts compiled in.
2045
2046# sed commands to quote an ld script as a C string.
2047sc="-f stringify.sed"
2048
2049fragment <<EOF
2050{
2051 *isfile = 0;
2052
2053 if (bfd_link_relocatable (&link_info) && config.build_constructors)
2054 return
2055EOF
2056sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
2057echo ' ; else if (bfd_link_relocatable (&link_info)) return' >> e${EMULATION_NAME}.c
2058sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
2059echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
2060sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
2061if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then : ; else
2062echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
2063sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
2064fi
2065if test -n "$GENERATE_PIE_SCRIPT" ; then
2066if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2067echo ' ; else if (bfd_link_pie (&link_info)' >> e${EMULATION_NAME}.c
2068echo ' && link_info.combreloc' >> e${EMULATION_NAME}.c
2069echo ' && link_info.relro' >> e${EMULATION_NAME}.c
2070echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2071sed $sc ldscripts/${EMULATION_NAME}.xdw >> e${EMULATION_NAME}.c
2072echo ' ; else if (bfd_link_pie (&link_info)' >> e${EMULATION_NAME}.c
2073echo ' && link_info.combreloc) return' >> e${EMULATION_NAME}.c
2074sed $sc ldscripts/${EMULATION_NAME}.xdc >> e${EMULATION_NAME}.c
2075fi
2076echo ' ; else if (bfd_link_pie (&link_info)) return' >> e${EMULATION_NAME}.c
2077sed $sc ldscripts/${EMULATION_NAME}.xd >> e${EMULATION_NAME}.c
2078fi
2079if test -n "$GENERATE_SHLIB_SCRIPT" ; then
2080if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2081echo ' ; else if (bfd_link_dll (&link_info) && link_info.combreloc' >> e${EMULATION_NAME}.c
2082echo ' && link_info.relro' >> e${EMULATION_NAME}.c
2083echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2084sed $sc ldscripts/${EMULATION_NAME}.xsw >> e${EMULATION_NAME}.c
2085echo ' ; else if (bfd_link_dll (&link_info) && link_info.combreloc) return' >> e${EMULATION_NAME}.c
2086sed $sc ldscripts/${EMULATION_NAME}.xsc >> e${EMULATION_NAME}.c
2087fi
2088echo ' ; else if (bfd_link_dll (&link_info)) return' >> e${EMULATION_NAME}.c
2089sed $sc ldscripts/${EMULATION_NAME}.xs >> e${EMULATION_NAME}.c
2090fi
2091if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2092echo ' ; else if (link_info.combreloc && link_info.relro' >> e${EMULATION_NAME}.c
2093echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2094sed $sc ldscripts/${EMULATION_NAME}.xw >> e${EMULATION_NAME}.c
2095echo ' ; else if (link_info.combreloc) return' >> e${EMULATION_NAME}.c
2096sed $sc ldscripts/${EMULATION_NAME}.xc >> e${EMULATION_NAME}.c
2097fi
2098echo ' ; else return' >> e${EMULATION_NAME}.c
2099sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
2100echo '; }' >> e${EMULATION_NAME}.c
2101
2102else
2103# Scripts read from the filesystem.
2104
2105fragment <<EOF
2106{
2107 *isfile = 1;
2108
2109 if (bfd_link_relocatable (&link_info) && config.build_constructors)
2110 return "ldscripts/${EMULATION_NAME}.xu";
2111 else if (bfd_link_relocatable (&link_info))
2112 return "ldscripts/${EMULATION_NAME}.xr";
2113 else if (!config.text_read_only)
2114 return "ldscripts/${EMULATION_NAME}.xbn";
2115EOF
2116if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then :
2117else
2118fragment <<EOF
2119 else if (!config.magic_demand_paged)
2120 return "ldscripts/${EMULATION_NAME}.xn";
2121EOF
2122fi
2123if test -n "$GENERATE_PIE_SCRIPT" ; then
2124if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2125fragment <<EOF
2126 else if (bfd_link_pie (&link_info)
2127 && link_info.combreloc
2128 && link_info.relro
2129 && (link_info.flags & DF_BIND_NOW))
2130 return "ldscripts/${EMULATION_NAME}.xdw";
2131 else if (bfd_link_pie (&link_info)
2132 && link_info.combreloc)
2133 return "ldscripts/${EMULATION_NAME}.xdc";
2134EOF
2135fi
2136fragment <<EOF
2137 else if (bfd_link_pie (&link_info))
2138 return "ldscripts/${EMULATION_NAME}.xd";
2139EOF
2140fi
2141if test -n "$GENERATE_SHLIB_SCRIPT" ; then
2142if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2143fragment <<EOF
2144 else if (bfd_link_dll (&link_info) && link_info.combreloc
2145 && link_info.relro && (link_info.flags & DF_BIND_NOW))
2146 return "ldscripts/${EMULATION_NAME}.xsw";
2147 else if (bfd_link_dll (&link_info) && link_info.combreloc)
2148 return "ldscripts/${EMULATION_NAME}.xsc";
2149EOF
2150fi
2151fragment <<EOF
2152 else if (bfd_link_dll (&link_info))
2153 return "ldscripts/${EMULATION_NAME}.xs";
2154EOF
2155fi
2156if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2157fragment <<EOF
2158 else if (link_info.combreloc && link_info.relro
2159 && (link_info.flags & DF_BIND_NOW))
2160 return "ldscripts/${EMULATION_NAME}.xw";
2161 else if (link_info.combreloc)
2162 return "ldscripts/${EMULATION_NAME}.xc";
2163EOF
2164fi
2165fragment <<EOF
2166 else
2167 return "ldscripts/${EMULATION_NAME}.x";
2168}
2169
2170EOF
2171fi
2172fi
2173
2174if test -n "$PARSE_AND_LIST_PROLOGUE" ; then
2175fragment <<EOF
2176 $PARSE_AND_LIST_PROLOGUE
2177EOF
2178fi
2179
2180fragment <<EOF
2181
2182#define OPTION_DISABLE_NEW_DTAGS (400)
2183#define OPTION_ENABLE_NEW_DTAGS (OPTION_DISABLE_NEW_DTAGS + 1)
2184#define OPTION_GROUP (OPTION_ENABLE_NEW_DTAGS + 1)
2185#define OPTION_EH_FRAME_HDR (OPTION_GROUP + 1)
2186#define OPTION_EXCLUDE_LIBS (OPTION_EH_FRAME_HDR + 1)
2187#define OPTION_HASH_STYLE (OPTION_EXCLUDE_LIBS + 1)
2188#define OPTION_BUILD_ID (OPTION_HASH_STYLE + 1)
2189#define OPTION_AUDIT (OPTION_BUILD_ID + 1)
2190#define OPTION_COMPRESS_DEBUG (OPTION_AUDIT + 1)
2191
2192static void
2193gld${EMULATION_NAME}_add_options
2194 (int ns, char **shortopts, int nl, struct option **longopts,
2195 int nrl ATTRIBUTE_UNUSED, struct option **really_longopts ATTRIBUTE_UNUSED)
2196{
2197EOF
2198if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2199fragment <<EOF
2200 static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:P:";
2201EOF
2202else
2203fragment <<EOF
2204 static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:";
2205EOF
2206fi
2207fragment <<EOF
2208 static const struct option xtra_long[] = {
2209EOF
2210if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2211fragment <<EOF
2212 {"audit", required_argument, NULL, OPTION_AUDIT},
2213 {"Bgroup", no_argument, NULL, OPTION_GROUP},
2214EOF
2215fi
2216fragment <<EOF
2217 {"build-id", optional_argument, NULL, OPTION_BUILD_ID},
2218 {"compress-debug-sections", required_argument, NULL, OPTION_COMPRESS_DEBUG},
2219EOF
2220if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2221fragment <<EOF
2222 {"depaudit", required_argument, NULL, 'P'},
2223 {"disable-new-dtags", no_argument, NULL, OPTION_DISABLE_NEW_DTAGS},
2224 {"enable-new-dtags", no_argument, NULL, OPTION_ENABLE_NEW_DTAGS},
2225 {"eh-frame-hdr", no_argument, NULL, OPTION_EH_FRAME_HDR},
2226 {"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS},
2227 {"hash-style", required_argument, NULL, OPTION_HASH_STYLE},
2228EOF
2229fi
2230if test -n "$PARSE_AND_LIST_LONGOPTS" ; then
2231fragment <<EOF
2232 $PARSE_AND_LIST_LONGOPTS
2233EOF
2234fi
2235fragment <<EOF
2236 {NULL, no_argument, NULL, 0}
2237 };
2238
2239 *shortopts = (char *) xrealloc (*shortopts, ns + sizeof (xtra_short));
2240 memcpy (*shortopts + ns, &xtra_short, sizeof (xtra_short));
2241 *longopts = (struct option *)
2242 xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
2243 memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
2244}
2245
2246#define DEFAULT_BUILD_ID_STYLE "sha1"
2247
2248static bfd_boolean
2249gld${EMULATION_NAME}_handle_option (int optc)
2250{
2251 switch (optc)
2252 {
2253 default:
2254 return FALSE;
2255
2256 case OPTION_BUILD_ID:
2257 if (emit_note_gnu_build_id != NULL)
2258 {
2259 free ((char *) emit_note_gnu_build_id);
2260 emit_note_gnu_build_id = NULL;
2261 }
2262 if (optarg == NULL)
2263 optarg = DEFAULT_BUILD_ID_STYLE;
2264 if (strcmp (optarg, "none"))
2265 emit_note_gnu_build_id = xstrdup (optarg);
2266 break;
2267
2268 case OPTION_COMPRESS_DEBUG:
2269 if (strcasecmp (optarg, "none") == 0)
2270 link_info.compress_debug = COMPRESS_DEBUG_NONE;
2271 else if (strcasecmp (optarg, "zlib") == 0)
2272 link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
2273 else if (strcasecmp (optarg, "zlib-gnu") == 0)
2274 link_info.compress_debug = COMPRESS_DEBUG_GNU_ZLIB;
2275 else if (strcasecmp (optarg, "zlib-gabi") == 0)
2276 link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
2277 else
2278 einfo (_("%P%F: invalid --compress-debug-sections option: \`%s'\n"),
2279 optarg);
2280 break;
2281EOF
2282
2283if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2284fragment <<EOF
2285 case OPTION_AUDIT:
2286 gld${EMULATION_NAME}_append_to_separated_string (&audit, optarg);
2287 break;
2288
2289 case 'P':
2290 gld${EMULATION_NAME}_append_to_separated_string (&depaudit, optarg);
2291 break;
2292
2293 case OPTION_DISABLE_NEW_DTAGS:
2294 link_info.new_dtags = FALSE;
2295 break;
2296
2297 case OPTION_ENABLE_NEW_DTAGS:
2298 link_info.new_dtags = TRUE;
2299 break;
2300
2301 case OPTION_EH_FRAME_HDR:
2302 link_info.eh_frame_hdr_type = DWARF2_EH_HDR;
2303 break;
2304
2305 case OPTION_GROUP:
2306 link_info.flags_1 |= (bfd_vma) DF_1_GROUP;
2307 /* Groups must be self-contained. */
2308 link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
2309 link_info.unresolved_syms_in_shared_libs = RM_GENERATE_ERROR;
2310 break;
2311
2312 case OPTION_EXCLUDE_LIBS:
2313 add_excluded_libs (optarg);
2314 break;
2315
2316 case OPTION_HASH_STYLE:
2317 link_info.emit_hash = FALSE;
2318 link_info.emit_gnu_hash = FALSE;
2319 if (strcmp (optarg, "sysv") == 0)
2320 link_info.emit_hash = TRUE;
2321 else if (strcmp (optarg, "gnu") == 0)
2322 link_info.emit_gnu_hash = TRUE;
2323 else if (strcmp (optarg, "both") == 0)
2324 {
2325 link_info.emit_hash = TRUE;
2326 link_info.emit_gnu_hash = TRUE;
2327 }
2328 else
2329 einfo (_("%P%F: invalid hash style \`%s'\n"), optarg);
2330 break;
2331
2332EOF
2333fi
2334fragment <<EOF
2335 case 'z':
2336 if (strcmp (optarg, "defs") == 0)
2337 link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
2338 else if (strcmp (optarg, "muldefs") == 0)
2339 link_info.allow_multiple_definition = TRUE;
2340 else if (CONST_STRNEQ (optarg, "max-page-size="))
2341 {
2342 char *end;
2343
2344 config.maxpagesize = strtoul (optarg + 14, &end, 0);
2345 if (*end || (config.maxpagesize & (config.maxpagesize - 1)) != 0)
2346 einfo (_("%P%F: invalid maxium page size \`%s'\n"),
2347 optarg + 14);
2348 }
2349 else if (CONST_STRNEQ (optarg, "common-page-size="))
2350 {
2351 char *end;
2352 config.commonpagesize = strtoul (optarg + 17, &end, 0);
2353 if (*end
2354 || (config.commonpagesize & (config.commonpagesize - 1)) != 0)
2355 einfo (_("%P%F: invalid common page size \`%s'\n"),
2356 optarg + 17);
2357 }
2358 else if (CONST_STRNEQ (optarg, "stack-size="))
2359 {
2360 char *end;
2361 link_info.stacksize = strtoul (optarg + 11, &end, 0);
2362 if (*end || link_info.stacksize < 0)
2363 einfo (_("%P%F: invalid stack size \`%s'\n"), optarg + 11);
2364 if (!link_info.stacksize)
2365 /* Use -1 for explicit no-stack, because zero means
2366 'default'. */
2367 link_info.stacksize = -1;
2368 }
2369 else if (strcmp (optarg, "execstack") == 0)
2370 {
2371 link_info.execstack = TRUE;
2372 link_info.noexecstack = FALSE;
2373 }
2374 else if (strcmp (optarg, "noexecstack") == 0)
2375 {
2376 link_info.noexecstack = TRUE;
2377 link_info.execstack = FALSE;
2378 }
2379EOF
2380
2381if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2382fragment <<EOF
2383 else if (strcmp (optarg, "global") == 0)
2384 link_info.flags_1 |= (bfd_vma) DF_1_GLOBAL;
2385 else if (strcmp (optarg, "initfirst") == 0)
2386 link_info.flags_1 |= (bfd_vma) DF_1_INITFIRST;
2387 else if (strcmp (optarg, "interpose") == 0)
2388 link_info.flags_1 |= (bfd_vma) DF_1_INTERPOSE;
2389 else if (strcmp (optarg, "loadfltr") == 0)
2390 link_info.flags_1 |= (bfd_vma) DF_1_LOADFLTR;
2391 else if (strcmp (optarg, "nodefaultlib") == 0)
2392 link_info.flags_1 |= (bfd_vma) DF_1_NODEFLIB;
2393 else if (strcmp (optarg, "nodelete") == 0)
2394 link_info.flags_1 |= (bfd_vma) DF_1_NODELETE;
2395 else if (strcmp (optarg, "nodlopen") == 0)
2396 link_info.flags_1 |= (bfd_vma) DF_1_NOOPEN;
2397 else if (strcmp (optarg, "nodump") == 0)
2398 link_info.flags_1 |= (bfd_vma) DF_1_NODUMP;
2399 else if (strcmp (optarg, "now") == 0)
2400 {
2401 link_info.flags |= (bfd_vma) DF_BIND_NOW;
2402 link_info.flags_1 |= (bfd_vma) DF_1_NOW;
2403 }
2404 else if (strcmp (optarg, "lazy") == 0)
2405 {
2406 link_info.flags &= ~(bfd_vma) DF_BIND_NOW;
2407 link_info.flags_1 &= ~(bfd_vma) DF_1_NOW;
2408 }
2409 else if (strcmp (optarg, "origin") == 0)
2410 {
2411 link_info.flags |= (bfd_vma) DF_ORIGIN;
2412 link_info.flags_1 |= (bfd_vma) DF_1_ORIGIN;
2413 }
2414 else if (strcmp (optarg, "combreloc") == 0)
2415 link_info.combreloc = TRUE;
2416 else if (strcmp (optarg, "nocombreloc") == 0)
2417 link_info.combreloc = FALSE;
2418 else if (strcmp (optarg, "nocopyreloc") == 0)
2419 link_info.nocopyreloc = TRUE;
2420 else if (strcmp (optarg, "relro") == 0)
2421 link_info.relro = TRUE;
2422 else if (strcmp (optarg, "norelro") == 0)
2423 link_info.relro = FALSE;
2424 else if (strcmp (optarg, "text") == 0)
2425 link_info.error_textrel = TRUE;
2426 else if (strcmp (optarg, "notext") == 0)
2427 link_info.error_textrel = FALSE;
2428 else if (strcmp (optarg, "textoff") == 0)
2429 link_info.error_textrel = FALSE;
2430EOF
2431fi
2432
2433if test -n "$PARSE_AND_LIST_ARGS_CASE_Z" ; then
2434fragment <<EOF
2435 $PARSE_AND_LIST_ARGS_CASE_Z
2436EOF
2437fi
2438
2439fragment <<EOF
2440 else
2441 einfo (_("%P: warning: -z %s ignored.\n"), optarg);
2442 break;
2443EOF
2444
2445if test -n "$PARSE_AND_LIST_ARGS_CASES" ; then
2446fragment <<EOF
2447 $PARSE_AND_LIST_ARGS_CASES
2448EOF
2449fi
2450
2451fragment <<EOF
2452 }
2453
2454 return TRUE;
2455}
2456
2457EOF
2458
2459if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then
2460gld_list_options="gld${EMULATION_NAME}_list_options"
2461if test -n "$PARSE_AND_LIST_OPTIONS"; then
2462fragment <<EOF
2463
2464static void
2465gld${EMULATION_NAME}_list_options (FILE * file)
2466{
2467EOF
2468
2469if test -n "$PARSE_AND_LIST_OPTIONS" ; then
2470fragment <<EOF
2471 $PARSE_AND_LIST_OPTIONS
2472EOF
2473fi
2474
2475fragment <<EOF
2476}
2477EOF
2478else
2479 gld_list_options="NULL"
2480fi
2481
2482if test -n "$PARSE_AND_LIST_EPILOGUE" ; then
2483fragment <<EOF
2484 $PARSE_AND_LIST_EPILOGUE
2485EOF
2486fi
2487fi
2488
2489fragment <<EOF
2490
2491struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
2492{
2493 ${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse},
2494 ${LDEMUL_SYSLIB-syslib_default},
2495 ${LDEMUL_HLL-hll_default},
2496 ${LDEMUL_AFTER_PARSE-gld${EMULATION_NAME}_after_parse},
2497 ${LDEMUL_AFTER_OPEN-gld${EMULATION_NAME}_after_open},
2498 ${LDEMUL_AFTER_ALLOCATION-gld${EMULATION_NAME}_after_allocation},
2499 ${LDEMUL_SET_OUTPUT_ARCH-set_output_arch_default},
2500 ${LDEMUL_CHOOSE_TARGET-ldemul_default_target},
2501 ${LDEMUL_BEFORE_ALLOCATION-gld${EMULATION_NAME}_before_allocation},
2502 ${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script},
2503 "${EMULATION_NAME}",
2504 "${OUTPUT_FORMAT}",
2505 ${LDEMUL_FINISH-finish_default},
2506 ${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL},
2507 ${LDEMUL_OPEN_DYNAMIC_ARCHIVE-gld${EMULATION_NAME}_open_dynamic_archive},
2508 ${LDEMUL_PLACE_ORPHAN-gld${EMULATION_NAME}_place_orphan},
2509 ${LDEMUL_SET_SYMBOLS-NULL},
2510 ${LDEMUL_PARSE_ARGS-NULL},
2511 gld${EMULATION_NAME}_add_options,
2512 gld${EMULATION_NAME}_handle_option,
2513 ${LDEMUL_UNRECOGNIZED_FILE-NULL},
2514 ${LDEMUL_LIST_OPTIONS-${gld_list_options}},
2515 ${LDEMUL_RECOGNIZED_FILE-gld${EMULATION_NAME}_load_symbols},
2516 ${LDEMUL_FIND_POTENTIAL_LIBRARIES-NULL},
2517 ${LDEMUL_NEW_VERS_PATTERN-NULL},
2518 ${LDEMUL_EXTRA_MAP_FILE_TEXT-NULL}
2519};
2520EOF
This page took 0.031909 seconds and 4 git commands to generate.