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