]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/emultempl/elf32.em
Speedup ELF orphan placement for relocatable link
[thirdparty/binutils-gdb.git] / ld / emultempl / elf32.em
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.
5 test -z "${ELFSIZE}" && ELFSIZE=32
6 if [ -z "$MACHINE" ]; then
7 OUTPUT_ARCH=${ARCH}
8 else
9 OUTPUT_ARCH=${ARCH}:${MACHINE}
10 fi
11 fragment <<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. */
62 static void gld${EMULATION_NAME}_before_parse (void);
63 static void gld${EMULATION_NAME}_after_parse (void);
64 static void gld${EMULATION_NAME}_after_open (void);
65 static void gld${EMULATION_NAME}_before_allocation (void);
66 static void gld${EMULATION_NAME}_after_allocation (void);
67 static lang_output_section_statement_type *gld${EMULATION_NAME}_place_orphan
68 (asection *, const char *, int);
69 EOF
70
71 if [ "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
78 EOF
79 ;;
80 esac
81 fi
82
83 # Import any needed special functions and/or overrides.
84 #
85 source_em ${srcdir}/emultempl/elf-generic.em
86 if test -n "$EXTRA_EM_FILE" ; then
87 source_em ${srcdir}/emultempl/${EXTRA_EM_FILE}.em
88 fi
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 #
96 if test x"$LDEMUL_BEFORE_PARSE" != xgld"$EMULATION_NAME"_before_parse; then
97 fragment <<EOF
98
99 static void
100 gld${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
109 EOF
110 fi
111
112 if test x"$LDEMUL_AFTER_PARSE" != xgld"$EMULATION_NAME"_after_parse; then
113 fragment <<EOF
114
115 static void
116 gld${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
124 EOF
125 fi
126
127 if test x"$LDEMUL_RECOGNIZED_FILE" != xgld"${EMULATION_NAME}"_load_symbols; then
128 fragment <<EOF
129 /* Handle the generation of DT_NEEDED tags. */
130
131 static bfd_boolean
132 gld${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 }
163 EOF
164 fi
165
166 fragment <<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
171 static struct bfd_link_needed_list *global_needed;
172 static struct stat global_stat;
173 static lang_input_statement_type *global_found;
174 static struct bfd_link_needed_list *global_vercheck_needed;
175 static bfd_boolean global_vercheck_failed;
176
177 /* These variables are used to implement target options */
178
179 static char *audit; /* colon (typically) separated list of libs */
180 static char *depaudit; /* colon (typically) separated list of libs */
181
182 /* Style of .note.gnu.build-id section. */
183 static 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
202 static void
203 gld${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
254 static void
255 gld${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
317 struct 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
327 static bfd_boolean
328 gld${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
393 EOF
394 case ${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
410 EOF
411 ;;
412 esac
413 fragment <<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
472 static bfd_boolean
473 gld${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
535 EOF
536 if [ "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
542 static char *
543 gld${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
577 EOF
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
588 static bfd_boolean
589 gld${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 }
637 EOF
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
647 struct gld${EMULATION_NAME}_ld_so_conf
648 {
649 char *path;
650 size_t len, alloc;
651 };
652
653 static bfd_boolean
654 gld${EMULATION_NAME}_parse_ld_so_conf
655 (struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename);
656
657 static void
658 gld${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
696 static bfd_boolean
697 gld${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
806 static bfd_boolean
807 gld${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
850 EOF
851 # Linux
852 ;;
853 esac
854 fi
855 fragment <<EOF
856
857 /* See if an input file matches a DT_NEEDED entry by name. */
858
859 static void
860 gld${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
904 EOF
905
906 if test x"$LDEMUL_AFTER_OPEN" != xgld"$EMULATION_NAME"_after_open; then
907 fragment <<EOF
908
909 static bfd_size_type
910 id_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
928 static bfd_boolean
929 write_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
981 static bfd_boolean
982 setup_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
1016 static void
1017 gld${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;
1214 EOF
1215 if [ "x${NATIVE}" = xyes ] ; then
1216 fragment <<EOF
1217 const char *lib_path;
1218 EOF
1219 fi
1220 if [ "x${USE_LIBPATH}" = xyes ] ; then
1221 fragment <<EOF
1222 struct bfd_link_needed_list *rp;
1223 int found;
1224 EOF
1225 fi
1226 fragment <<EOF
1227
1228 if (gld${EMULATION_NAME}_search_needed (command_line.rpath_link,
1229 &n, force))
1230 break;
1231 EOF
1232 if [ "x${USE_LIBPATH}" = xyes ] ; then
1233 fragment <<EOF
1234 if (gld${EMULATION_NAME}_search_needed (command_line.rpath,
1235 &n, force))
1236 break;
1237 EOF
1238 fi
1239 if [ "x${NATIVE}" = xyes ] ; then
1240 fragment <<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;
1252 EOF
1253 fi
1254 if [ "x${USE_LIBPATH}" = xyes ] ; then
1255 fragment <<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
1274 EOF
1275 fi
1276 if [ "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;
1282 EOF
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
1291 EOF
1292 # Linux
1293 ;;
1294 esac
1295 fi
1296 fragment <<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;
1313 EOF
1314 fragment <<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
1329 EOF
1330 fi
1331
1332 fragment <<EOF
1333
1334 /* Look through an expression for an assignment statement. */
1335
1336 static void
1337 gld${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
1393 static void
1394 gld${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
1400 EOF
1401
1402 if 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
1415 fragment <<EOF
1416
1417 /* used by before_allocation and handle_option. */
1418 static void
1419 gld${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. */
1459 static 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
1465 static void
1466 gld${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
1638 EOF
1639 fi
1640
1641 if test x"$LDEMUL_OPEN_DYNAMIC_ARCHIVE" != xgld"$EMULATION_NAME"_open_dynamic_archive; then
1642 fragment <<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
1648 static bfd_boolean
1649 gld${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
1726 EOF
1727 fi
1728
1729 if test x"$LDEMUL_PLACE_ORPHAN" != xgld"$EMULATION_NAME"_place_orphan; then
1730 fragment <<EOF
1731
1732 /* A variant of lang_output_section_find used by place_orphan. */
1733
1734 static lang_output_section_statement_type *
1735 output_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
1800 static lang_output_section_statement_type *
1801 gld${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 flags = s->flags;
1950 if (!bfd_link_relocatable (&link_info))
1951 {
1952 nexts = s;
1953 while ((nexts = bfd_get_next_section_by_name (nexts->owner, nexts))
1954 != NULL)
1955 if (nexts->output_section == NULL
1956 && (nexts->flags & SEC_EXCLUDE) == 0
1957 && ((nexts->flags ^ flags) & (SEC_LOAD | SEC_ALLOC)) == 0
1958 && (nexts->owner->flags & DYNAMIC) == 0
1959 && nexts->owner->usrdata != NULL
1960 && !(((lang_input_statement_type *) nexts->owner->usrdata)
1961 ->flags.just_syms)
1962 && _bfd_elf_match_sections_by_type (nexts->owner, nexts,
1963 s->owner, s))
1964 flags = (((flags ^ SEC_READONLY)
1965 | (nexts->flags ^ SEC_READONLY))
1966 ^ SEC_READONLY);
1967 }
1968
1969 /* Decide which segment the section should go in based on the
1970 section name and section flags. We put loadable .note sections
1971 right after the .interp section, so that the PT_NOTE segment is
1972 stored right after the program headers where the OS can read it
1973 in the first page. */
1974
1975 place = NULL;
1976 if ((flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
1977 place = &hold[orphan_nonalloc];
1978 else if ((flags & SEC_ALLOC) == 0)
1979 ;
1980 else if ((flags & SEC_LOAD) != 0
1981 && ((iself && sh_type == SHT_NOTE)
1982 || (!iself && CONST_STRNEQ (secname, ".note"))))
1983 place = &hold[orphan_interp];
1984 else if ((flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
1985 place = &hold[orphan_bss];
1986 else if ((flags & SEC_SMALL_DATA) != 0)
1987 place = &hold[orphan_sdata];
1988 else if ((flags & SEC_THREAD_LOCAL) != 0)
1989 place = &hold[orphan_tdata];
1990 else if ((flags & SEC_READONLY) == 0)
1991 place = &hold[orphan_data];
1992 else if (((iself && (sh_type == SHT_RELA || sh_type == SHT_REL))
1993 || (!iself && CONST_STRNEQ (secname, ".rel")))
1994 && (flags & SEC_LOAD) != 0)
1995 place = &hold[orphan_rel];
1996 else if ((flags & SEC_CODE) == 0)
1997 place = &hold[orphan_rodata];
1998 else
1999 place = &hold[orphan_text];
2000
2001 after = NULL;
2002 if (place != NULL)
2003 {
2004 if (place->os == NULL)
2005 {
2006 if (place->name != NULL)
2007 place->os = lang_output_section_find (place->name);
2008 else
2009 place->os = output_rel_find (s, isdyn);
2010 }
2011 after = place->os;
2012 if (after == NULL)
2013 after
2014 = lang_output_section_find_by_flags (s, flags, &place->os,
2015 _bfd_elf_match_sections_by_type);
2016 if (after == NULL)
2017 /* *ABS* is always the first output section statement. */
2018 after = &lang_output_section_statement.head->output_section_statement;
2019 }
2020
2021 return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);
2022 }
2023 EOF
2024 fi
2025
2026 if test x"$LDEMUL_AFTER_ALLOCATION" != xgld"$EMULATION_NAME"_after_allocation; then
2027 fragment <<EOF
2028
2029 static void
2030 gld${EMULATION_NAME}_after_allocation (void)
2031 {
2032 int need_layout = bfd_elf_discard_info (link_info.output_bfd, &link_info);
2033
2034 if (need_layout < 0)
2035 einfo ("%X%P: .eh_frame/.stab edit: %E\n");
2036 else
2037 gld${EMULATION_NAME}_map_segments (need_layout);
2038 }
2039 EOF
2040 fi
2041
2042 if test x"$LDEMUL_GET_SCRIPT" != xgld"$EMULATION_NAME"_get_script; then
2043 fragment <<EOF
2044
2045 static char *
2046 gld${EMULATION_NAME}_get_script (int *isfile)
2047 EOF
2048
2049 if test x"$COMPILE_IN" = xyes
2050 then
2051 # Scripts compiled in.
2052
2053 # sed commands to quote an ld script as a C string.
2054 sc="-f stringify.sed"
2055
2056 fragment <<EOF
2057 {
2058 *isfile = 0;
2059
2060 if (bfd_link_relocatable (&link_info) && config.build_constructors)
2061 return
2062 EOF
2063 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
2064 echo ' ; else if (bfd_link_relocatable (&link_info)) return' >> e${EMULATION_NAME}.c
2065 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
2066 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
2067 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
2068 if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then : ; else
2069 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
2070 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
2071 fi
2072 if test -n "$GENERATE_PIE_SCRIPT" ; then
2073 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2074 echo ' ; else if (bfd_link_pie (&link_info)' >> e${EMULATION_NAME}.c
2075 echo ' && link_info.combreloc' >> e${EMULATION_NAME}.c
2076 echo ' && link_info.relro' >> e${EMULATION_NAME}.c
2077 echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2078 sed $sc ldscripts/${EMULATION_NAME}.xdw >> e${EMULATION_NAME}.c
2079 echo ' ; else if (bfd_link_pie (&link_info)' >> e${EMULATION_NAME}.c
2080 echo ' && link_info.combreloc) return' >> e${EMULATION_NAME}.c
2081 sed $sc ldscripts/${EMULATION_NAME}.xdc >> e${EMULATION_NAME}.c
2082 fi
2083 echo ' ; else if (bfd_link_pie (&link_info)) return' >> e${EMULATION_NAME}.c
2084 sed $sc ldscripts/${EMULATION_NAME}.xd >> e${EMULATION_NAME}.c
2085 fi
2086 if test -n "$GENERATE_SHLIB_SCRIPT" ; then
2087 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2088 echo ' ; else if (bfd_link_dll (&link_info) && link_info.combreloc' >> e${EMULATION_NAME}.c
2089 echo ' && link_info.relro' >> e${EMULATION_NAME}.c
2090 echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2091 sed $sc ldscripts/${EMULATION_NAME}.xsw >> e${EMULATION_NAME}.c
2092 echo ' ; else if (bfd_link_dll (&link_info) && link_info.combreloc) return' >> e${EMULATION_NAME}.c
2093 sed $sc ldscripts/${EMULATION_NAME}.xsc >> e${EMULATION_NAME}.c
2094 fi
2095 echo ' ; else if (bfd_link_dll (&link_info)) return' >> e${EMULATION_NAME}.c
2096 sed $sc ldscripts/${EMULATION_NAME}.xs >> e${EMULATION_NAME}.c
2097 fi
2098 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2099 echo ' ; else if (link_info.combreloc && link_info.relro' >> e${EMULATION_NAME}.c
2100 echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
2101 sed $sc ldscripts/${EMULATION_NAME}.xw >> e${EMULATION_NAME}.c
2102 echo ' ; else if (link_info.combreloc) return' >> e${EMULATION_NAME}.c
2103 sed $sc ldscripts/${EMULATION_NAME}.xc >> e${EMULATION_NAME}.c
2104 fi
2105 echo ' ; else return' >> e${EMULATION_NAME}.c
2106 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
2107 echo '; }' >> e${EMULATION_NAME}.c
2108
2109 else
2110 # Scripts read from the filesystem.
2111
2112 fragment <<EOF
2113 {
2114 *isfile = 1;
2115
2116 if (bfd_link_relocatable (&link_info) && config.build_constructors)
2117 return "ldscripts/${EMULATION_NAME}.xu";
2118 else if (bfd_link_relocatable (&link_info))
2119 return "ldscripts/${EMULATION_NAME}.xr";
2120 else if (!config.text_read_only)
2121 return "ldscripts/${EMULATION_NAME}.xbn";
2122 EOF
2123 if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then :
2124 else
2125 fragment <<EOF
2126 else if (!config.magic_demand_paged)
2127 return "ldscripts/${EMULATION_NAME}.xn";
2128 EOF
2129 fi
2130 if test -n "$GENERATE_PIE_SCRIPT" ; then
2131 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2132 fragment <<EOF
2133 else if (bfd_link_pie (&link_info)
2134 && link_info.combreloc
2135 && link_info.relro
2136 && (link_info.flags & DF_BIND_NOW))
2137 return "ldscripts/${EMULATION_NAME}.xdw";
2138 else if (bfd_link_pie (&link_info)
2139 && link_info.combreloc)
2140 return "ldscripts/${EMULATION_NAME}.xdc";
2141 EOF
2142 fi
2143 fragment <<EOF
2144 else if (bfd_link_pie (&link_info))
2145 return "ldscripts/${EMULATION_NAME}.xd";
2146 EOF
2147 fi
2148 if test -n "$GENERATE_SHLIB_SCRIPT" ; then
2149 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2150 fragment <<EOF
2151 else if (bfd_link_dll (&link_info) && link_info.combreloc
2152 && link_info.relro && (link_info.flags & DF_BIND_NOW))
2153 return "ldscripts/${EMULATION_NAME}.xsw";
2154 else if (bfd_link_dll (&link_info) && link_info.combreloc)
2155 return "ldscripts/${EMULATION_NAME}.xsc";
2156 EOF
2157 fi
2158 fragment <<EOF
2159 else if (bfd_link_dll (&link_info))
2160 return "ldscripts/${EMULATION_NAME}.xs";
2161 EOF
2162 fi
2163 if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
2164 fragment <<EOF
2165 else if (link_info.combreloc && link_info.relro
2166 && (link_info.flags & DF_BIND_NOW))
2167 return "ldscripts/${EMULATION_NAME}.xw";
2168 else if (link_info.combreloc)
2169 return "ldscripts/${EMULATION_NAME}.xc";
2170 EOF
2171 fi
2172 fragment <<EOF
2173 else
2174 return "ldscripts/${EMULATION_NAME}.x";
2175 }
2176
2177 EOF
2178 fi
2179 fi
2180
2181 if test -n "$PARSE_AND_LIST_PROLOGUE" ; then
2182 fragment <<EOF
2183 $PARSE_AND_LIST_PROLOGUE
2184 EOF
2185 fi
2186
2187 fragment <<EOF
2188
2189 #define OPTION_DISABLE_NEW_DTAGS (400)
2190 #define OPTION_ENABLE_NEW_DTAGS (OPTION_DISABLE_NEW_DTAGS + 1)
2191 #define OPTION_GROUP (OPTION_ENABLE_NEW_DTAGS + 1)
2192 #define OPTION_EH_FRAME_HDR (OPTION_GROUP + 1)
2193 #define OPTION_EXCLUDE_LIBS (OPTION_EH_FRAME_HDR + 1)
2194 #define OPTION_HASH_STYLE (OPTION_EXCLUDE_LIBS + 1)
2195 #define OPTION_BUILD_ID (OPTION_HASH_STYLE + 1)
2196 #define OPTION_AUDIT (OPTION_BUILD_ID + 1)
2197 #define OPTION_COMPRESS_DEBUG (OPTION_AUDIT + 1)
2198
2199 static void
2200 gld${EMULATION_NAME}_add_options
2201 (int ns, char **shortopts, int nl, struct option **longopts,
2202 int nrl ATTRIBUTE_UNUSED, struct option **really_longopts ATTRIBUTE_UNUSED)
2203 {
2204 EOF
2205 if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2206 fragment <<EOF
2207 static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:P:";
2208 EOF
2209 else
2210 fragment <<EOF
2211 static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:";
2212 EOF
2213 fi
2214 fragment <<EOF
2215 static const struct option xtra_long[] = {
2216 EOF
2217 if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2218 fragment <<EOF
2219 {"audit", required_argument, NULL, OPTION_AUDIT},
2220 {"Bgroup", no_argument, NULL, OPTION_GROUP},
2221 EOF
2222 fi
2223 fragment <<EOF
2224 {"build-id", optional_argument, NULL, OPTION_BUILD_ID},
2225 {"compress-debug-sections", required_argument, NULL, OPTION_COMPRESS_DEBUG},
2226 EOF
2227 if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2228 fragment <<EOF
2229 {"depaudit", required_argument, NULL, 'P'},
2230 {"disable-new-dtags", no_argument, NULL, OPTION_DISABLE_NEW_DTAGS},
2231 {"enable-new-dtags", no_argument, NULL, OPTION_ENABLE_NEW_DTAGS},
2232 {"eh-frame-hdr", no_argument, NULL, OPTION_EH_FRAME_HDR},
2233 {"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS},
2234 {"hash-style", required_argument, NULL, OPTION_HASH_STYLE},
2235 EOF
2236 fi
2237 if test -n "$PARSE_AND_LIST_LONGOPTS" ; then
2238 fragment <<EOF
2239 $PARSE_AND_LIST_LONGOPTS
2240 EOF
2241 fi
2242 fragment <<EOF
2243 {NULL, no_argument, NULL, 0}
2244 };
2245
2246 *shortopts = (char *) xrealloc (*shortopts, ns + sizeof (xtra_short));
2247 memcpy (*shortopts + ns, &xtra_short, sizeof (xtra_short));
2248 *longopts = (struct option *)
2249 xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
2250 memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
2251 }
2252
2253 #define DEFAULT_BUILD_ID_STYLE "sha1"
2254
2255 static bfd_boolean
2256 gld${EMULATION_NAME}_handle_option (int optc)
2257 {
2258 switch (optc)
2259 {
2260 default:
2261 return FALSE;
2262
2263 case OPTION_BUILD_ID:
2264 if (emit_note_gnu_build_id != NULL)
2265 {
2266 free ((char *) emit_note_gnu_build_id);
2267 emit_note_gnu_build_id = NULL;
2268 }
2269 if (optarg == NULL)
2270 optarg = DEFAULT_BUILD_ID_STYLE;
2271 if (strcmp (optarg, "none"))
2272 emit_note_gnu_build_id = xstrdup (optarg);
2273 break;
2274
2275 case OPTION_COMPRESS_DEBUG:
2276 if (strcasecmp (optarg, "none") == 0)
2277 link_info.compress_debug = COMPRESS_DEBUG_NONE;
2278 else if (strcasecmp (optarg, "zlib") == 0)
2279 link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
2280 else if (strcasecmp (optarg, "zlib-gnu") == 0)
2281 link_info.compress_debug = COMPRESS_DEBUG_GNU_ZLIB;
2282 else if (strcasecmp (optarg, "zlib-gabi") == 0)
2283 link_info.compress_debug = COMPRESS_DEBUG_GABI_ZLIB;
2284 else
2285 einfo (_("%P%F: invalid --compress-debug-sections option: \`%s'\n"),
2286 optarg);
2287 break;
2288 EOF
2289
2290 if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2291 fragment <<EOF
2292 case OPTION_AUDIT:
2293 gld${EMULATION_NAME}_append_to_separated_string (&audit, optarg);
2294 break;
2295
2296 case 'P':
2297 gld${EMULATION_NAME}_append_to_separated_string (&depaudit, optarg);
2298 break;
2299
2300 case OPTION_DISABLE_NEW_DTAGS:
2301 link_info.new_dtags = FALSE;
2302 break;
2303
2304 case OPTION_ENABLE_NEW_DTAGS:
2305 link_info.new_dtags = TRUE;
2306 break;
2307
2308 case OPTION_EH_FRAME_HDR:
2309 link_info.eh_frame_hdr_type = DWARF2_EH_HDR;
2310 break;
2311
2312 case OPTION_GROUP:
2313 link_info.flags_1 |= (bfd_vma) DF_1_GROUP;
2314 /* Groups must be self-contained. */
2315 link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
2316 link_info.unresolved_syms_in_shared_libs = RM_GENERATE_ERROR;
2317 break;
2318
2319 case OPTION_EXCLUDE_LIBS:
2320 add_excluded_libs (optarg);
2321 break;
2322
2323 case OPTION_HASH_STYLE:
2324 link_info.emit_hash = FALSE;
2325 link_info.emit_gnu_hash = FALSE;
2326 if (strcmp (optarg, "sysv") == 0)
2327 link_info.emit_hash = TRUE;
2328 else if (strcmp (optarg, "gnu") == 0)
2329 link_info.emit_gnu_hash = TRUE;
2330 else if (strcmp (optarg, "both") == 0)
2331 {
2332 link_info.emit_hash = TRUE;
2333 link_info.emit_gnu_hash = TRUE;
2334 }
2335 else
2336 einfo (_("%P%F: invalid hash style \`%s'\n"), optarg);
2337 break;
2338
2339 EOF
2340 fi
2341 fragment <<EOF
2342 case 'z':
2343 if (strcmp (optarg, "defs") == 0)
2344 link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
2345 else if (strcmp (optarg, "muldefs") == 0)
2346 link_info.allow_multiple_definition = TRUE;
2347 else if (CONST_STRNEQ (optarg, "max-page-size="))
2348 {
2349 char *end;
2350
2351 config.maxpagesize = strtoul (optarg + 14, &end, 0);
2352 if (*end || (config.maxpagesize & (config.maxpagesize - 1)) != 0)
2353 einfo (_("%P%F: invalid maxium page size \`%s'\n"),
2354 optarg + 14);
2355 }
2356 else if (CONST_STRNEQ (optarg, "common-page-size="))
2357 {
2358 char *end;
2359 config.commonpagesize = strtoul (optarg + 17, &end, 0);
2360 if (*end
2361 || (config.commonpagesize & (config.commonpagesize - 1)) != 0)
2362 einfo (_("%P%F: invalid common page size \`%s'\n"),
2363 optarg + 17);
2364 }
2365 else if (CONST_STRNEQ (optarg, "stack-size="))
2366 {
2367 char *end;
2368 link_info.stacksize = strtoul (optarg + 11, &end, 0);
2369 if (*end || link_info.stacksize < 0)
2370 einfo (_("%P%F: invalid stack size \`%s'\n"), optarg + 11);
2371 if (!link_info.stacksize)
2372 /* Use -1 for explicit no-stack, because zero means
2373 'default'. */
2374 link_info.stacksize = -1;
2375 }
2376 else if (strcmp (optarg, "execstack") == 0)
2377 {
2378 link_info.execstack = TRUE;
2379 link_info.noexecstack = FALSE;
2380 }
2381 else if (strcmp (optarg, "noexecstack") == 0)
2382 {
2383 link_info.noexecstack = TRUE;
2384 link_info.execstack = FALSE;
2385 }
2386 EOF
2387
2388 if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
2389 fragment <<EOF
2390 else if (strcmp (optarg, "global") == 0)
2391 link_info.flags_1 |= (bfd_vma) DF_1_GLOBAL;
2392 else if (strcmp (optarg, "initfirst") == 0)
2393 link_info.flags_1 |= (bfd_vma) DF_1_INITFIRST;
2394 else if (strcmp (optarg, "interpose") == 0)
2395 link_info.flags_1 |= (bfd_vma) DF_1_INTERPOSE;
2396 else if (strcmp (optarg, "loadfltr") == 0)
2397 link_info.flags_1 |= (bfd_vma) DF_1_LOADFLTR;
2398 else if (strcmp (optarg, "nodefaultlib") == 0)
2399 link_info.flags_1 |= (bfd_vma) DF_1_NODEFLIB;
2400 else if (strcmp (optarg, "nodelete") == 0)
2401 link_info.flags_1 |= (bfd_vma) DF_1_NODELETE;
2402 else if (strcmp (optarg, "nodlopen") == 0)
2403 link_info.flags_1 |= (bfd_vma) DF_1_NOOPEN;
2404 else if (strcmp (optarg, "nodump") == 0)
2405 link_info.flags_1 |= (bfd_vma) DF_1_NODUMP;
2406 else if (strcmp (optarg, "now") == 0)
2407 {
2408 link_info.flags |= (bfd_vma) DF_BIND_NOW;
2409 link_info.flags_1 |= (bfd_vma) DF_1_NOW;
2410 }
2411 else if (strcmp (optarg, "lazy") == 0)
2412 {
2413 link_info.flags &= ~(bfd_vma) DF_BIND_NOW;
2414 link_info.flags_1 &= ~(bfd_vma) DF_1_NOW;
2415 }
2416 else if (strcmp (optarg, "origin") == 0)
2417 {
2418 link_info.flags |= (bfd_vma) DF_ORIGIN;
2419 link_info.flags_1 |= (bfd_vma) DF_1_ORIGIN;
2420 }
2421 else if (strcmp (optarg, "combreloc") == 0)
2422 link_info.combreloc = TRUE;
2423 else if (strcmp (optarg, "nocombreloc") == 0)
2424 link_info.combreloc = FALSE;
2425 else if (strcmp (optarg, "nocopyreloc") == 0)
2426 link_info.nocopyreloc = TRUE;
2427 else if (strcmp (optarg, "relro") == 0)
2428 link_info.relro = TRUE;
2429 else if (strcmp (optarg, "norelro") == 0)
2430 link_info.relro = FALSE;
2431 else if (strcmp (optarg, "common") == 0)
2432 link_info.elf_stt_common = elf_stt_common;
2433 else if (strcmp (optarg, "nocommon") == 0)
2434 link_info.elf_stt_common = no_elf_stt_common;
2435 else if (strcmp (optarg, "text") == 0)
2436 link_info.error_textrel = TRUE;
2437 else if (strcmp (optarg, "notext") == 0)
2438 link_info.error_textrel = FALSE;
2439 else if (strcmp (optarg, "textoff") == 0)
2440 link_info.error_textrel = FALSE;
2441 EOF
2442 fi
2443
2444 if test -n "$PARSE_AND_LIST_ARGS_CASE_Z" ; then
2445 fragment <<EOF
2446 $PARSE_AND_LIST_ARGS_CASE_Z
2447 EOF
2448 fi
2449
2450 fragment <<EOF
2451 else
2452 einfo (_("%P: warning: -z %s ignored.\n"), optarg);
2453 break;
2454 EOF
2455
2456 if test -n "$PARSE_AND_LIST_ARGS_CASES" ; then
2457 fragment <<EOF
2458 $PARSE_AND_LIST_ARGS_CASES
2459 EOF
2460 fi
2461
2462 fragment <<EOF
2463 }
2464
2465 return TRUE;
2466 }
2467
2468 EOF
2469
2470 if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then
2471 gld_list_options="gld${EMULATION_NAME}_list_options"
2472 if test -n "$PARSE_AND_LIST_OPTIONS"; then
2473 fragment <<EOF
2474
2475 static void
2476 gld${EMULATION_NAME}_list_options (FILE * file)
2477 {
2478 EOF
2479
2480 if test -n "$PARSE_AND_LIST_OPTIONS" ; then
2481 fragment <<EOF
2482 $PARSE_AND_LIST_OPTIONS
2483 EOF
2484 fi
2485
2486 fragment <<EOF
2487 }
2488 EOF
2489 else
2490 gld_list_options="NULL"
2491 fi
2492
2493 if test -n "$PARSE_AND_LIST_EPILOGUE" ; then
2494 fragment <<EOF
2495 $PARSE_AND_LIST_EPILOGUE
2496 EOF
2497 fi
2498 fi
2499
2500 fragment <<EOF
2501
2502 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
2503 {
2504 ${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse},
2505 ${LDEMUL_SYSLIB-syslib_default},
2506 ${LDEMUL_HLL-hll_default},
2507 ${LDEMUL_AFTER_PARSE-gld${EMULATION_NAME}_after_parse},
2508 ${LDEMUL_AFTER_OPEN-gld${EMULATION_NAME}_after_open},
2509 ${LDEMUL_AFTER_ALLOCATION-gld${EMULATION_NAME}_after_allocation},
2510 ${LDEMUL_SET_OUTPUT_ARCH-set_output_arch_default},
2511 ${LDEMUL_CHOOSE_TARGET-ldemul_default_target},
2512 ${LDEMUL_BEFORE_ALLOCATION-gld${EMULATION_NAME}_before_allocation},
2513 ${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script},
2514 "${EMULATION_NAME}",
2515 "${OUTPUT_FORMAT}",
2516 ${LDEMUL_FINISH-finish_default},
2517 ${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL},
2518 ${LDEMUL_OPEN_DYNAMIC_ARCHIVE-gld${EMULATION_NAME}_open_dynamic_archive},
2519 ${LDEMUL_PLACE_ORPHAN-gld${EMULATION_NAME}_place_orphan},
2520 ${LDEMUL_SET_SYMBOLS-NULL},
2521 ${LDEMUL_PARSE_ARGS-NULL},
2522 gld${EMULATION_NAME}_add_options,
2523 gld${EMULATION_NAME}_handle_option,
2524 ${LDEMUL_UNRECOGNIZED_FILE-NULL},
2525 ${LDEMUL_LIST_OPTIONS-${gld_list_options}},
2526 ${LDEMUL_RECOGNIZED_FILE-gld${EMULATION_NAME}_load_symbols},
2527 ${LDEMUL_FIND_POTENTIAL_LIBRARIES-NULL},
2528 ${LDEMUL_NEW_VERS_PATTERN-NULL},
2529 ${LDEMUL_EXTRA_MAP_FILE_TEXT-NULL}
2530 };
2531 EOF