ld: Skip some x86 ifunc tests for lynxos and nto
[deliverable/binutils-gdb.git] / ld / ldelf.c
CommitLineData
075a2b89 1/* ELF emulation code for targets using elf.em.
b3adc24a 2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
d871d478
AM
3
4 This file is part of the GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21#include "sysdep.h"
22#include "bfd.h"
23#include "libiberty.h"
24#include "filenames.h"
0aa0727c 25#include "safe-ctype.h"
0b4453c7 26#include "bfdlink.h"
1ff6de03 27#include "ctf-api.h"
d871d478
AM
28#include "ld.h"
29#include "ldmain.h"
30#include "ldmisc.h"
31#include "ldexp.h"
32#include "ldlang.h"
33#include "ldfile.h"
34#include "ldemul.h"
35#include "ldbuildid.h"
36#include <ldgram.h>
37#include "elf-bfd.h"
38#ifdef HAVE_GLOB
39#include <glob.h>
40#endif
41#include "ldelf.h"
42
43struct dt_needed
44{
45 bfd *by;
46 const char *name;
47};
48
49/* Style of .note.gnu.build-id section. */
50const char *ldelf_emit_note_gnu_build_id;
51
52/* These variables are required to pass information back and forth
53 between after_open and check_needed and stat_needed and vercheck. */
54
55static struct bfd_link_needed_list *global_needed;
56static lang_input_statement_type *global_found;
57static struct stat global_stat;
58static struct bfd_link_needed_list *global_vercheck_needed;
59static bfd_boolean global_vercheck_failed;
60
61void
62ldelf_after_parse (void)
63{
64 if (bfd_link_pie (&link_info))
65 link_info.flags_1 |= (bfd_vma) DF_1_PIE;
66
67 if (bfd_link_executable (&link_info)
68 && link_info.nointerp)
69 {
70 if (link_info.dynamic_undefined_weak > 0)
71 einfo (_("%P: warning: -z dynamic-undefined-weak ignored\n"));
72 link_info.dynamic_undefined_weak = 0;
73 }
74 after_parse_default ();
75}
76
77/* Handle the generation of DT_NEEDED tags. */
78
79bfd_boolean
80ldelf_load_symbols (lang_input_statement_type *entry)
81{
82 int link_class = 0;
83
84 /* Tell the ELF linker that we don't want the output file to have a
85 DT_NEEDED entry for this file, unless it is used to resolve
86 references in a regular object. */
87 if (entry->flags.add_DT_NEEDED_for_regular)
88 link_class = DYN_AS_NEEDED;
89
90 /* Tell the ELF linker that we don't want the output file to have a
91 DT_NEEDED entry for any dynamic library in DT_NEEDED tags from
92 this file at all. */
93 if (!entry->flags.add_DT_NEEDED_for_dynamic)
94 link_class |= DYN_NO_ADD_NEEDED;
95
96 if (entry->flags.just_syms
97 && (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) != 0)
98 einfo (_("%F%P: %pB: --just-symbols may not be used on DSO\n"),
99 entry->the_bfd);
100
101 if (link_class == 0
102 || (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) == 0)
103 return FALSE;
104
105 bfd_elf_set_dyn_lib_class (entry->the_bfd,
106 (enum dynamic_lib_link_class) link_class);
107
108 /* Continue on with normal load_symbols processing. */
109 return FALSE;
110}
111
112/* On Linux, it's possible to have different versions of the same
113 shared library linked against different versions of libc. The
114 dynamic linker somehow tags which libc version to use in
115 /etc/ld.so.cache, and, based on the libc that it sees in the
116 executable, chooses which version of the shared library to use.
117
118 We try to do a similar check here by checking whether this shared
119 library needs any other shared libraries which may conflict with
120 libraries we have already included in the link. If it does, we
121 skip it, and try to find another shared library farther on down the
122 link path.
123
124 This is called via lang_for_each_input_file.
125 GLOBAL_VERCHECK_NEEDED is the list of objects needed by the object
126 which we are checking. This sets GLOBAL_VERCHECK_FAILED if we find
127 a conflicting version. */
128
129static void
130ldelf_vercheck (lang_input_statement_type *s)
131{
132 const char *soname;
133 struct bfd_link_needed_list *l;
134
135 if (global_vercheck_failed)
136 return;
137 if (s->the_bfd == NULL
138 || (bfd_get_file_flags (s->the_bfd) & DYNAMIC) == 0)
139 return;
140
141 soname = bfd_elf_get_dt_soname (s->the_bfd);
142 if (soname == NULL)
143 soname = lbasename (bfd_get_filename (s->the_bfd));
144
145 for (l = global_vercheck_needed; l != NULL; l = l->next)
146 {
147 const char *suffix;
148
149 if (filename_cmp (soname, l->name) == 0)
150 {
151 /* Probably can't happen, but it's an easy check. */
152 continue;
153 }
154
155 if (strchr (l->name, '/') != NULL)
156 continue;
157
158 suffix = strstr (l->name, ".so.");
159 if (suffix == NULL)
160 continue;
161
162 suffix += sizeof ".so." - 1;
163
164 if (filename_ncmp (soname, l->name, suffix - l->name) == 0)
165 {
166 /* Here we know that S is a dynamic object FOO.SO.VER1, and
167 the object we are considering needs a dynamic object
168 FOO.SO.VER2, and VER1 and VER2 are different. This
169 appears to be a version mismatch, so we tell the caller
170 to try a different version of this library. */
171 global_vercheck_failed = TRUE;
172 return;
173 }
174 }
175}
176
177
178/* See if an input file matches a DT_NEEDED entry by running stat on
179 the file. */
180
181static void
182ldelf_stat_needed (lang_input_statement_type *s)
183{
184 struct stat st;
185 const char *suffix;
186 const char *soname;
187
188 if (global_found != NULL)
189 return;
190 if (s->the_bfd == NULL)
191 return;
192
193 /* If this input file was an as-needed entry, and wasn't found to be
194 needed at the stage it was linked, then don't say we have loaded it. */
195 if ((bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
196 return;
197
198 if (bfd_stat (s->the_bfd, &st) != 0)
199 {
200 einfo (_("%P: %pB: bfd_stat failed: %E\n"), s->the_bfd);
201 return;
202 }
203
204 /* Some operating systems, e.g. Windows, do not provide a meaningful
205 st_ino; they always set it to zero. (Windows does provide a
206 meaningful st_dev.) Do not indicate a duplicate library in that
207 case. While there is no guarantee that a system that provides
208 meaningful inode numbers will never set st_ino to zero, this is
209 merely an optimization, so we do not need to worry about false
210 negatives. */
211 if (st.st_dev == global_stat.st_dev
212 && st.st_ino == global_stat.st_ino
213 && st.st_ino != 0)
214 {
215 global_found = s;
216 return;
217 }
218
219 /* We issue a warning if it looks like we are including two
220 different versions of the same shared library. For example,
221 there may be a problem if -lc picks up libc.so.6 but some other
222 shared library has a DT_NEEDED entry of libc.so.5. This is a
223 heuristic test, and it will only work if the name looks like
224 NAME.so.VERSION. FIXME: Depending on file names is error-prone.
225 If we really want to issue warnings about mixing version numbers
226 of shared libraries, we need to find a better way. */
227
228 if (strchr (global_needed->name, '/') != NULL)
229 return;
230 suffix = strstr (global_needed->name, ".so.");
231 if (suffix == NULL)
232 return;
233 suffix += sizeof ".so." - 1;
234
235 soname = bfd_elf_get_dt_soname (s->the_bfd);
236 if (soname == NULL)
237 soname = lbasename (s->filename);
238
239 if (filename_ncmp (soname, global_needed->name,
240 suffix - global_needed->name) == 0)
241 einfo (_("%P: warning: %s, needed by %pB, may conflict with %s\n"),
242 global_needed->name, global_needed->by, soname);
243}
244
245/* This function is called for each possible name for a dynamic object
246 named by a DT_NEEDED entry. The FORCE parameter indicates whether
247 to skip the check for a conflicting version. */
248
249static bfd_boolean
250ldelf_try_needed (struct dt_needed *needed, int force, int is_linux)
251{
252 bfd *abfd;
253 const char *name = needed->name;
254 const char *soname;
255 int link_class;
256
257 abfd = bfd_openr (name, bfd_get_target (link_info.output_bfd));
258 if (abfd == NULL)
259 {
260 if (verbose)
261 info_msg (_("attempt to open %s failed\n"), name);
262 return FALSE;
263 }
264
265 /* Linker needs to decompress sections. */
266 abfd->flags |= BFD_DECOMPRESS;
267
268 if (! bfd_check_format (abfd, bfd_object))
269 {
270 bfd_close (abfd);
271 return FALSE;
272 }
273 if ((bfd_get_file_flags (abfd) & DYNAMIC) == 0)
274 {
275 bfd_close (abfd);
276 return FALSE;
277 }
278
279 /* For DT_NEEDED, they have to match. */
280 if (abfd->xvec != link_info.output_bfd->xvec)
281 {
282 bfd_close (abfd);
283 return FALSE;
284 }
285
286 /* Check whether this object would include any conflicting library
287 versions. If FORCE is set, then we skip this check; we use this
288 the second time around, if we couldn't find any compatible
289 instance of the shared library. */
290
291 if (!force)
292 {
293 struct bfd_link_needed_list *needs;
294
295 if (! bfd_elf_get_bfd_needed_list (abfd, &needs))
296 einfo (_("%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"), abfd);
297
298 if (needs != NULL)
299 {
300 global_vercheck_needed = needs;
301 global_vercheck_failed = FALSE;
302 lang_for_each_input_file (ldelf_vercheck);
303 if (global_vercheck_failed)
304 {
305 bfd_close (abfd);
306 /* Return FALSE to force the caller to move on to try
307 another file on the search path. */
308 return FALSE;
309 }
310
311 /* But wait! It gets much worse. On Linux, if a shared
312 library does not use libc at all, we are supposed to skip
313 it the first time around in case we encounter a shared
314 library later on with the same name which does use the
315 version of libc that we want. This is much too horrible
316 to use on any system other than Linux. */
317 if (is_linux)
318 {
319 struct bfd_link_needed_list *l;
320
321 for (l = needs; l != NULL; l = l->next)
322 if (CONST_STRNEQ (l->name, "libc.so"))
323 break;
324 if (l == NULL)
325 {
326 bfd_close (abfd);
327 return FALSE;
328 }
329 }
330 }
331 }
332
333 /* We've found a dynamic object matching the DT_NEEDED entry. */
334
335 /* We have already checked that there is no other input file of the
336 same name. We must now check again that we are not including the
337 same file twice. We need to do this because on many systems
338 libc.so is a symlink to, e.g., libc.so.1. The SONAME entry will
339 reference libc.so.1. If we have already included libc.so, we
340 don't want to include libc.so.1 if they are the same file, and we
341 can only check that using stat. */
342
343 if (bfd_stat (abfd, &global_stat) != 0)
344 einfo (_("%F%P: %pB: bfd_stat failed: %E\n"), abfd);
345
346 /* First strip off everything before the last '/'. */
347 soname = lbasename (bfd_get_filename (abfd));
348
349 if (verbose)
350 info_msg (_("found %s at %s\n"), soname, name);
351
352 global_found = NULL;
353 lang_for_each_input_file (ldelf_stat_needed);
354 if (global_found != NULL)
355 {
356 /* Return TRUE to indicate that we found the file, even though
357 we aren't going to do anything with it. */
358 return TRUE;
359 }
360
361 /* Specify the soname to use. */
362 bfd_elf_set_dt_needed_name (abfd, soname);
363
364 /* Tell the ELF linker that we don't want the output file to have a
365 DT_NEEDED entry for this file, unless it is used to resolve
366 references in a regular object. */
367 link_class = DYN_DT_NEEDED;
368
369 /* Tell the ELF linker that we don't want the output file to have a
370 DT_NEEDED entry for this file at all if the entry is from a file
371 with DYN_NO_ADD_NEEDED. */
372 if (needed->by != NULL
373 && (bfd_elf_get_dyn_lib_class (needed->by) & DYN_NO_ADD_NEEDED) != 0)
374 link_class |= DYN_NO_NEEDED | DYN_NO_ADD_NEEDED;
375
376 bfd_elf_set_dyn_lib_class (abfd, (enum dynamic_lib_link_class) link_class);
377
e310298c
AM
378 *link_info.input_bfds_tail = abfd;
379 link_info.input_bfds_tail = &abfd->link.next;
380
d871d478
AM
381 /* Add this file into the symbol table. */
382 if (! bfd_link_add_symbols (abfd, &link_info))
383 einfo (_("%F%P: %pB: error adding symbols: %E\n"), abfd);
384
385 return TRUE;
386}
387
388/* Search for a needed file in a path. */
389
390static bfd_boolean
391ldelf_search_needed (const char *path, struct dt_needed *n, int force,
392 int is_linux, int elfsize)
393{
394 const char *s;
395 const char *name = n->name;
396 size_t len;
397 struct dt_needed needed;
398
399 if (name[0] == '/')
400 return ldelf_try_needed (n, force, is_linux);
401
402 if (path == NULL || *path == '\0')
403 return FALSE;
404
405 needed.by = n->by;
406 needed.name = n->name;
407
408 len = strlen (name);
409 while (1)
410 {
411 unsigned offset = 0;
412 char * var;
413 char *filename, *sset;
414
415 s = strchr (path, config.rpath_separator);
416 if (s == NULL)
417 s = path + strlen (path);
418
419#if HAVE_DOS_BASED_FILE_SYSTEM
420 /* Assume a match on the second char is part of drive specifier. */
421 else if (config.rpath_separator == ':'
422 && s == path + 1
423 && ISALPHA (*path))
424 {
425 s = strchr (s + 1, config.rpath_separator);
426 if (s == NULL)
427 s = path + strlen (path);
428 }
429#endif
430 filename = (char *) xmalloc (s - path + len + 2);
431 if (s == path)
432 sset = filename;
433 else
434 {
435 memcpy (filename, path, s - path);
436 filename[s - path] = '/';
437 sset = filename + (s - path) + 1;
438 }
439 strcpy (sset, name);
440
441 /* PR 20535: Support the same pseudo-environment variables that
442 are supported by ld.so. Namely, $ORIGIN, $LIB and $PLATFORM.
443 Since there can be more than one occurrence of these tokens in
444 the path we loop until no more are found. Since we might not
445 be able to substitute some of the tokens we maintain an offset
446 into the filename for where we should begin our scan. */
447 while ((var = strchr (filename + offset, '$')) != NULL)
448 {
449 /* The ld.so manual page does not say, but I am going to assume that
450 these tokens are terminated by a directory separator character
451 (/) or the end of the string. There is also an implication that
452 $ORIGIN should only be used at the start of a path, but that is
453 not enforced here.
454
455 The ld.so manual page also states that it allows ${ORIGIN},
456 ${LIB} and ${PLATFORM}, so these are supported as well.
457
458 FIXME: The code could be a lot cleverer about allocating space
459 for the processed string. */
460 char * end = strchr (var, '/');
461 const char *replacement = NULL;
462 char * v = var + 1;
463 char * freeme = NULL;
464 unsigned flen = strlen (filename);
465
466 if (end != NULL)
467 /* Temporarily terminate the filename at the end of the token. */
468 * end = 0;
469
470 if (*v == '{')
471 ++ v;
472 switch (*v++)
473 {
474 case 'O':
475 if (strcmp (v, "RIGIN") == 0 || strcmp (v, "RIGIN}") == 0)
476 {
477 /* ORIGIN - replace with the full path to the directory
478 containing the program or shared object. */
479 if (needed.by == NULL)
480 {
481 if (link_info.output_bfd == NULL)
482 {
483 break;
484 }
485 else
486 replacement = bfd_get_filename (link_info.output_bfd);
487 }
488 else
489 replacement = bfd_get_filename (needed.by);
490
491 if (replacement)
492 {
493 char * slash;
494
495 if (replacement[0] == '/')
496 freeme = xstrdup (replacement);
497 else
498 {
499 char * current_dir = getpwd ();
500
501 freeme = xmalloc (strlen (replacement)
502 + strlen (current_dir) + 2);
503 sprintf (freeme, "%s/%s", current_dir, replacement);
504 }
505
506 replacement = freeme;
507 if ((slash = strrchr (replacement, '/')) != NULL)
508 * slash = 0;
509 }
510 }
511 break;
512
513 case 'L':
514 if (strcmp (v, "IB") == 0 || strcmp (v, "IB}") == 0)
515 {
516 /* LIB - replace with "lib" in 32-bit environments
517 and "lib64" in 64-bit environments. */
518
519 switch (elfsize)
520 {
521 case 32: replacement = "lib"; break;
522 case 64: replacement = "lib64"; break;
523 default:
524 abort ();
525 }
526 }
527 break;
528
529 case 'P':
530 /* Supporting $PLATFORM in a cross-hosted environment is not
531 possible. Supporting it in a native environment involves
532 loading the <sys/auxv.h> header file which loads the
533 system <elf.h> header file, which conflicts with the
534 "include/elf/mips.h" header file. */
535 /* Fall through. */
536 default:
537 break;
538 }
539
540 if (replacement)
541 {
542 char * filename2 = xmalloc (flen + strlen (replacement));
543
544 if (end)
545 {
546 sprintf (filename2, "%.*s%s/%s",
547 (int)(var - filename), filename,
548 replacement, end + 1);
549 offset = (var - filename) + 1 + strlen (replacement);
550 }
551 else
552 {
553 sprintf (filename2, "%.*s%s",
554 (int)(var - filename), filename,
555 replacement);
556 offset = var - filename + strlen (replacement);
557 }
558
559 free (filename);
560 filename = filename2;
561 /* There is no need to restore the path separator (when
562 end != NULL) as we have replaced the entire string. */
563 }
564 else
565 {
566 if (verbose)
567 /* We only issue an "unrecognised" message in verbose mode
568 as the $<foo> token might be a legitimate component of
569 a path name in the target's file system. */
570 info_msg (_("unrecognised or unsupported token "
571 "'%s' in search path\n"), var);
572 if (end)
573 /* Restore the path separator. */
574 * end = '/';
575
576 /* PR 20784: Make sure that we resume the scan *after*
577 the token that we could not replace. */
578 offset = (var + 1) - filename;
579 }
580
581 free (freeme);
582 }
583
584 needed.name = filename;
585
586 if (ldelf_try_needed (&needed, force, is_linux))
587 return TRUE;
588
589 free (filename);
590
591 if (*s == '\0')
592 break;
593 path = s + 1;
594 }
595
596 return FALSE;
597}
598
599/* Prefix the sysroot to absolute paths in PATH, a string containing
600 paths separated by config.rpath_separator. If running on a DOS
601 file system, paths containing a drive spec won't have the sysroot
602 prefix added, unless the sysroot also specifies the same drive. */
603
604static const char *
605ldelf_add_sysroot (const char *path)
606{
607 size_t len, extra;
608 const char *p;
609 char *ret, *q;
610 int dos_drive_sysroot = HAS_DRIVE_SPEC (ld_sysroot);
611
612 len = strlen (ld_sysroot);
613 for (extra = 0, p = path; ; )
614 {
615 int dos_drive = HAS_DRIVE_SPEC (p);
616
617 if (dos_drive)
618 p += 2;
619 if (IS_DIR_SEPARATOR (*p)
620 && (!dos_drive
621 || (dos_drive_sysroot
622 && ld_sysroot[0] == p[-2])))
623 {
624 if (dos_drive && dos_drive_sysroot)
625 extra += len - 2;
626 else
627 extra += len;
628 }
629 p = strchr (p, config.rpath_separator);
630 if (!p)
631 break;
632 ++p;
633 }
634
635 ret = xmalloc (strlen (path) + extra + 1);
636
637 for (q = ret, p = path; ; )
638 {
639 const char *end;
640 int dos_drive = HAS_DRIVE_SPEC (p);
641
642 if (dos_drive)
643 {
644 *q++ = *p++;
645 *q++ = *p++;
646 }
647 if (IS_DIR_SEPARATOR (*p)
648 && (!dos_drive
649 || (dos_drive_sysroot
650 && ld_sysroot[0] == p[-2])))
651 {
652 if (dos_drive && dos_drive_sysroot)
653 {
654 strcpy (q, ld_sysroot + 2);
655 q += len - 2;
656 }
657 else
658 {
659 strcpy (q, ld_sysroot);
660 q += len;
661 }
662 }
663 end = strchr (p, config.rpath_separator);
664 if (end)
665 {
666 size_t n = end - p + 1;
667 strncpy (q, p, n);
668 q += n;
669 p += n;
670 }
671 else
672 {
673 strcpy (q, p);
674 break;
675 }
676 }
677
678 return ret;
679}
680
681/* Read the system search path the FreeBSD way rather than the Linux way. */
682#ifdef HAVE_ELF_HINTS_H
683#include <elf-hints.h>
684#else
685#include "elf-hints-local.h"
686#endif
687
688static bfd_boolean
689ldelf_check_ld_elf_hints (const struct bfd_link_needed_list *l, int force,
690 int elfsize)
691{
692 static bfd_boolean initialized;
693 static const char *ld_elf_hints;
694 struct dt_needed needed;
695
696 if (!initialized)
697 {
698 FILE *f;
699 char *tmppath;
700
701 tmppath = concat (ld_sysroot, _PATH_ELF_HINTS, (const char *) NULL);
702 f = fopen (tmppath, FOPEN_RB);
703 free (tmppath);
704 if (f != NULL)
705 {
706 struct elfhints_hdr hdr;
707
708 if (fread (&hdr, 1, sizeof (hdr), f) == sizeof (hdr)
709 && hdr.magic == ELFHINTS_MAGIC
710 && hdr.version == 1)
711 {
712 if (fseek (f, hdr.strtab + hdr.dirlist, SEEK_SET) != -1)
713 {
714 char *b;
715
716 b = xmalloc (hdr.dirlistlen + 1);
717 if (fread (b, 1, hdr.dirlistlen + 1, f) ==
718 hdr.dirlistlen + 1)
719 ld_elf_hints = ldelf_add_sysroot (b);
720
721 free (b);
722 }
723 }
724 fclose (f);
725 }
726
727 initialized = TRUE;
728 }
729
730 if (ld_elf_hints == NULL)
731 return FALSE;
732
733 needed.by = l->by;
734 needed.name = l->name;
735 return ldelf_search_needed (ld_elf_hints, &needed, force, FALSE, elfsize);
736}
737
738/* For a native linker, check the file /etc/ld.so.conf for directories
739 in which we may find shared libraries. /etc/ld.so.conf is really
740 only meaningful on Linux. */
741
742struct ldelf_ld_so_conf
743{
744 char *path;
745 size_t len, alloc;
746};
747
748static bfd_boolean
749ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *, const char *);
750
751static void
752ldelf_parse_ld_so_conf_include (struct ldelf_ld_so_conf *info,
753 const char *filename,
754 const char *pattern)
755{
756 char *newp = NULL;
757#ifdef HAVE_GLOB
758 glob_t gl;
759#endif
760
761 if (pattern[0] != '/')
762 {
763 char *p = strrchr (filename, '/');
764 size_t patlen = strlen (pattern) + 1;
765
766 newp = xmalloc (p - filename + 1 + patlen);
767 memcpy (newp, filename, p - filename + 1);
768 memcpy (newp + (p - filename + 1), pattern, patlen);
769 pattern = newp;
770 }
771
772#ifdef HAVE_GLOB
773 if (glob (pattern, 0, NULL, &gl) == 0)
774 {
775 size_t i;
776
777 for (i = 0; i < gl.gl_pathc; ++i)
778 ldelf_parse_ld_so_conf (info, gl.gl_pathv[i]);
779 globfree (&gl);
780 }
781#else
782 /* If we do not have glob, treat the pattern as a literal filename. */
783 ldelf_parse_ld_so_conf (info, pattern);
784#endif
785
5e2ab612 786 free (newp);
d871d478
AM
787}
788
789static bfd_boolean
790ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *info, const char *filename)
791{
792 FILE *f = fopen (filename, FOPEN_RT);
793 char *line;
794 size_t linelen;
795
796 if (f == NULL)
797 return FALSE;
798
799 linelen = 256;
800 line = xmalloc (linelen);
801 do
802 {
803 char *p = line, *q;
804
805 /* Normally this would use getline(3), but we need to be portable. */
806 while ((q = fgets (p, linelen - (p - line), f)) != NULL
807 && strlen (q) == linelen - (p - line) - 1
808 && line[linelen - 2] != '\n')
809 {
810 line = xrealloc (line, 2 * linelen);
811 p = line + linelen - 1;
812 linelen += linelen;
813 }
814
815 if (q == NULL && p == line)
816 break;
817
818 p = strchr (line, '\n');
819 if (p)
820 *p = '\0';
821
822 /* Because the file format does not know any form of quoting we
823 can search forward for the next '#' character and if found
824 make it terminating the line. */
825 p = strchr (line, '#');
826 if (p)
827 *p = '\0';
828
829 /* Remove leading whitespace. NUL is no whitespace character. */
830 p = line;
831 while (*p == ' ' || *p == '\f' || *p == '\r' || *p == '\t' || *p == '\v')
832 ++p;
833
834 /* If the line is blank it is ignored. */
835 if (p[0] == '\0')
836 continue;
837
838 if (CONST_STRNEQ (p, "include") && (p[7] == ' ' || p[7] == '\t'))
839 {
840 char *dir, c;
841 p += 8;
842 do
843 {
844 while (*p == ' ' || *p == '\t')
845 ++p;
846
847 if (*p == '\0')
848 break;
849
850 dir = p;
851
852 while (*p != ' ' && *p != '\t' && *p)
853 ++p;
854
855 c = *p;
856 *p++ = '\0';
857 if (dir[0] != '\0')
858 ldelf_parse_ld_so_conf_include (info, filename, dir);
859 }
860 while (c != '\0');
861 }
862 else
863 {
864 char *dir = p;
865 while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f'
866 && *p != '\r' && *p != '\v')
867 ++p;
868
869 while (p != dir && p[-1] == '/')
870 --p;
871 if (info->path == NULL)
872 {
873 info->alloc = p - dir + 1 + 256;
874 info->path = xmalloc (info->alloc);
875 info->len = 0;
876 }
877 else
878 {
879 if (info->len + 1 + (p - dir) >= info->alloc)
880 {
881 info->alloc += p - dir + 256;
882 info->path = xrealloc (info->path, info->alloc);
883 }
884 info->path[info->len++] = config.rpath_separator;
885 }
886 memcpy (info->path + info->len, dir, p - dir);
887 info->len += p - dir;
888 info->path[info->len] = '\0';
889 }
890 }
891 while (! feof (f));
892 free (line);
893 fclose (f);
894 return TRUE;
895}
896
897static bfd_boolean
898ldelf_check_ld_so_conf (const struct bfd_link_needed_list *l, int force,
ef8f08ca 899 int elfsize, const char *prefix)
d871d478
AM
900{
901 static bfd_boolean initialized;
902 static const char *ld_so_conf;
903 struct dt_needed needed;
904
905 if (! initialized)
906 {
907 char *tmppath;
908 struct ldelf_ld_so_conf info;
909
910 info.path = NULL;
911 info.len = info.alloc = 0;
ef8f08ca 912 tmppath = concat (ld_sysroot, prefix, "/etc/ld.so.conf",
d871d478
AM
913 (const char *) NULL);
914 if (!ldelf_parse_ld_so_conf (&info, tmppath))
915 {
916 free (tmppath);
917 tmppath = concat (ld_sysroot, "/etc/ld.so.conf",
918 (const char *) NULL);
919 ldelf_parse_ld_so_conf (&info, tmppath);
920 }
921 free (tmppath);
922
923 if (info.path)
924 {
925 ld_so_conf = ldelf_add_sysroot (info.path);
926 free (info.path);
927 }
928 initialized = TRUE;
929 }
930
931 if (ld_so_conf == NULL)
932 return FALSE;
933
934
935 needed.by = l->by;
936 needed.name = l->name;
937 return ldelf_search_needed (ld_so_conf, &needed, force, TRUE, elfsize);
938}
939
940/* See if an input file matches a DT_NEEDED entry by name. */
941
942static void
943ldelf_check_needed (lang_input_statement_type *s)
944{
945 const char *soname;
946
947 /* Stop looking if we've found a loaded lib. */
948 if (global_found != NULL
949 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
950 & DYN_AS_NEEDED) == 0)
951 return;
952
953 if (s->filename == NULL || s->the_bfd == NULL)
954 return;
955
956 /* Don't look for a second non-loaded as-needed lib. */
957 if (global_found != NULL
958 && (bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
959 return;
960
961 if (filename_cmp (s->filename, global_needed->name) == 0)
962 {
963 global_found = s;
964 return;
965 }
966
967 if (s->flags.search_dirs)
968 {
969 const char *f = strrchr (s->filename, '/');
970 if (f != NULL
971 && filename_cmp (f + 1, global_needed->name) == 0)
972 {
973 global_found = s;
974 return;
975 }
976 }
977
978 soname = bfd_elf_get_dt_soname (s->the_bfd);
979 if (soname != NULL
980 && filename_cmp (soname, global_needed->name) == 0)
981 {
982 global_found = s;
983 return;
984 }
985}
986
987/* This is called after all the input files have been opened. */
988
989void
990ldelf_after_open (int use_libpath, int native, int is_linux, int is_freebsd,
ef8f08ca 991 int elfsize, const char *prefix)
d871d478
AM
992{
993 struct bfd_link_needed_list *needed, *l;
994 struct elf_link_hash_table *htab;
995 asection *s;
996 bfd *abfd;
e310298c 997 bfd **save_input_bfd_tail;
d871d478
AM
998
999 after_open_default ();
1000
1001 htab = elf_hash_table (&link_info);
1002 if (!is_elf_hash_table (htab))
1003 return;
1004
1005 if (command_line.out_implib_filename)
1006 {
1007 unlink_if_ordinary (command_line.out_implib_filename);
1008 link_info.out_implib_bfd
1009 = bfd_openw (command_line.out_implib_filename,
1010 bfd_get_target (link_info.output_bfd));
1011
1012 if (link_info.out_implib_bfd == NULL)
1013 {
1014 einfo (_("%F%P: %s: can't open for writing: %E\n"),
1015 command_line.out_implib_filename);
1016 }
1017 }
1018
1019 if (ldelf_emit_note_gnu_build_id != NULL)
1020 {
1021 /* Find an ELF input. */
1022 for (abfd = link_info.input_bfds;
1023 abfd != (bfd *) NULL; abfd = abfd->link.next)
1024 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1025 && bfd_count_sections (abfd) != 0
00f93c44 1026 && !bfd_input_just_syms (abfd))
d871d478
AM
1027 break;
1028
1029 /* PR 10555: If there are no ELF input files do not try to
1030 create a .note.gnu-build-id section. */
1031 if (abfd == NULL
1032 || !ldelf_setup_build_id (abfd))
1033 {
1034 free ((char *) ldelf_emit_note_gnu_build_id);
1035 ldelf_emit_note_gnu_build_id = NULL;
1036 }
1037 }
1038
1039 get_elf_backend_data (link_info.output_bfd)->setup_gnu_properties (&link_info);
1040
1041 if (bfd_link_relocatable (&link_info))
1042 {
1043 if (link_info.execstack == !link_info.noexecstack)
1044 {
1045 /* PR ld/16744: If "-z [no]execstack" has been specified on the
1046 command line and we are perfoming a relocatable link then no
1047 PT_GNU_STACK segment will be created and so the
1048 linkinfo.[no]execstack values set in _handle_option() will have no
1049 effect. Instead we create a .note.GNU-stack section in much the
1050 same way as the assembler does with its --[no]execstack option. */
1051 flagword flags = SEC_READONLY | (link_info.execstack ? SEC_CODE : 0);
1052 (void) bfd_make_section_with_flags (link_info.input_bfds,
1053 ".note.GNU-stack", flags);
1054 }
1055 return;
1056 }
1057
1058 if (!link_info.traditional_format)
1059 {
1060 bfd *elfbfd = NULL;
1061 bfd_boolean warn_eh_frame = FALSE;
1062 int seen_type = 0;
1063
1064 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1065 {
1066 int type = 0;
1067
00f93c44 1068 if (bfd_input_just_syms (abfd))
d871d478
AM
1069 continue;
1070
1071 for (s = abfd->sections; s && type < COMPACT_EH_HDR; s = s->next)
1072 {
fd361982 1073 const char *name = bfd_section_name (s);
d871d478
AM
1074
1075 if (bfd_is_abs_section (s->output_section))
1076 continue;
1077 if (CONST_STRNEQ (name, ".eh_frame_entry"))
1078 type = COMPACT_EH_HDR;
1079 else if (strcmp (name, ".eh_frame") == 0 && s->size > 8)
1080 type = DWARF2_EH_HDR;
1081 }
1082
1083 if (type != 0)
1084 {
1085 if (seen_type == 0)
1086 {
1087 seen_type = type;
1088 }
1089 else if (seen_type != type)
1090 {
1091 einfo (_("%F%P: compact frame descriptions incompatible with"
1092 " DWARF2 .eh_frame from %pB\n"),
1093 type == DWARF2_EH_HDR ? abfd : elfbfd);
1094 break;
1095 }
1096
1097 if (!elfbfd
1098 && (type == COMPACT_EH_HDR
1099 || link_info.eh_frame_hdr_type != 0))
1100 {
1101 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1102 elfbfd = abfd;
1103
1104 warn_eh_frame = TRUE;
1105 }
1106 }
1107
1108 if (seen_type == COMPACT_EH_HDR)
1109 link_info.eh_frame_hdr_type = COMPACT_EH_HDR;
1110 }
1111 if (elfbfd)
1112 {
1113 const struct elf_backend_data *bed;
1114
1115 bed = get_elf_backend_data (elfbfd);
1116 s = bfd_make_section_with_flags (elfbfd, ".eh_frame_hdr",
1117 bed->dynamic_sec_flags
1118 | SEC_READONLY);
1119 if (s != NULL
fd361982 1120 && bfd_set_section_alignment (s, 2))
d871d478
AM
1121 {
1122 htab->eh_info.hdr_sec = s;
1123 warn_eh_frame = FALSE;
1124 }
1125 }
1126 if (warn_eh_frame)
1127 einfo (_("%P: warning: cannot create .eh_frame_hdr section,"
1128 " --eh-frame-hdr ignored\n"));
1129 }
1130
1131 /* Get the list of files which appear in DT_NEEDED entries in
1132 dynamic objects included in the link (often there will be none).
1133 For each such file, we want to track down the corresponding
1134 library, and include the symbol table in the link. This is what
1135 the runtime dynamic linker will do. Tracking the files down here
1136 permits one dynamic object to include another without requiring
1137 special action by the person doing the link. Note that the
1138 needed list can actually grow while we are stepping through this
1139 loop. */
e310298c 1140 save_input_bfd_tail = link_info.input_bfds_tail;
d871d478
AM
1141 needed = bfd_elf_get_needed_list (link_info.output_bfd, &link_info);
1142 for (l = needed; l != NULL; l = l->next)
1143 {
1144 struct bfd_link_needed_list *ll;
1145 struct dt_needed n, nn;
1146 int force;
1147
1148 /* If the lib that needs this one was --as-needed and wasn't
1149 found to be needed, then this lib isn't needed either. */
1150 if (l->by != NULL
1151 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0)
1152 continue;
1153
1154 /* Skip the lib if --no-copy-dt-needed-entries and
1155 --allow-shlib-undefined is in effect. */
1156 if (l->by != NULL
1157 && link_info.unresolved_syms_in_shared_libs == RM_IGNORE
1158 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_NO_ADD_NEEDED) != 0)
1159 continue;
1160
1161 /* If we've already seen this file, skip it. */
1162 for (ll = needed; ll != l; ll = ll->next)
1163 if ((ll->by == NULL
1164 || (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0)
1165 && strcmp (ll->name, l->name) == 0)
1166 break;
1167 if (ll != l)
1168 continue;
1169
1170 /* See if this file was included in the link explicitly. */
1171 global_needed = l;
1172 global_found = NULL;
1173 lang_for_each_input_file (ldelf_check_needed);
1174 if (global_found != NULL
1175 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
1176 & DYN_AS_NEEDED) == 0)
1177 continue;
1178
1179 n.by = l->by;
1180 n.name = l->name;
1181 nn.by = l->by;
1182 if (verbose)
1183 info_msg (_("%s needed by %pB\n"), l->name, l->by);
1184
1185 /* As-needed libs specified on the command line (or linker script)
1186 take priority over libs found in search dirs. */
1187 if (global_found != NULL)
1188 {
1189 nn.name = global_found->filename;
1190 if (ldelf_try_needed (&nn, TRUE, is_linux))
1191 continue;
1192 }
1193
1194 /* We need to find this file and include the symbol table. We
1195 want to search for the file in the same way that the dynamic
1196 linker will search. That means that we want to use
1197 rpath_link, rpath, then the environment variable
1198 LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH
1199 entries (native only), then the linker script LIB_SEARCH_DIRS.
1200 We do not search using the -L arguments.
1201
1202 We search twice. The first time, we skip objects which may
1203 introduce version mismatches. The second time, we force
1204 their use. See ldelf_vercheck comment. */
1205 for (force = 0; force < 2; force++)
1206 {
1207 size_t len;
1208 search_dirs_type *search;
1209 const char *path;
1210 struct bfd_link_needed_list *rp;
1211 int found;
1212
1213 if (ldelf_search_needed (command_line.rpath_link, &n, force,
1214 is_linux, elfsize))
1215 break;
1216
1217 if (use_libpath)
1218 {
1219 path = command_line.rpath;
1220 if (path)
1221 {
1222 path = ldelf_add_sysroot (path);
1223 found = ldelf_search_needed (path, &n, force,
1224 is_linux, elfsize);
1225 free ((char *) path);
1226 if (found)
1227 break;
1228 }
1229 }
1230 if (native)
1231 {
1232 if (command_line.rpath_link == NULL
1233 && command_line.rpath == NULL)
1234 {
1235 path = (const char *) getenv ("LD_RUN_PATH");
1236 if (path
1237 && ldelf_search_needed (path, &n, force,
1238 is_linux, elfsize))
1239 break;
1240 }
1241 path = (const char *) getenv ("LD_LIBRARY_PATH");
1242 if (path
1243 && ldelf_search_needed (path, &n, force,
1244 is_linux, elfsize))
1245 break;
1246 }
1247 if (use_libpath)
1248 {
1249 found = 0;
1250 rp = bfd_elf_get_runpath_list (link_info.output_bfd, &link_info);
1251 for (; !found && rp != NULL; rp = rp->next)
1252 {
1253 path = ldelf_add_sysroot (rp->name);
1254 found = (rp->by == l->by
1255 && ldelf_search_needed (path, &n, force,
1256 is_linux, elfsize));
1257 free ((char *) path);
1258 }
1259 if (found)
1260 break;
1261
1262 if (is_freebsd
1263 && ldelf_check_ld_elf_hints (l, force, elfsize))
1264 break;
1265
1266 if (is_linux
ef8f08ca 1267 && ldelf_check_ld_so_conf (l, force, elfsize, prefix))
d871d478
AM
1268 break;
1269 }
1270
1271 len = strlen (l->name);
1272 for (search = search_head; search != NULL; search = search->next)
1273 {
1274 char *filename;
1275
1276 if (search->cmdline)
1277 continue;
1278 filename = (char *) xmalloc (strlen (search->name) + len + 2);
1279 sprintf (filename, "%s/%s", search->name, l->name);
1280 nn.name = filename;
1281 if (ldelf_try_needed (&nn, force, is_linux))
1282 break;
1283 free (filename);
1284 }
1285 if (search != NULL)
1286 break;
1287 }
1288
1289 if (force < 2)
1290 continue;
1291
1292 einfo (_("%P: warning: %s, needed by %pB, not found "
1293 "(try using -rpath or -rpath-link)\n"),
1294 l->name, l->by);
1295 }
1296
e310298c
AM
1297 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1298 if (bfd_get_format (abfd) == bfd_object
1299 && ((abfd->flags) & DYNAMIC) != 0
1300 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
1301 && (elf_dyn_lib_class (abfd) & (DYN_AS_NEEDED | DYN_NO_NEEDED)) == 0
1302 && elf_dt_name (abfd) != NULL)
1303 {
1304 if (bfd_elf_add_dt_needed_tag (abfd, &link_info) < 0)
1305 einfo (_("%F%P: failed to add DT_NEEDED dynamic tag\n"));
1306 }
1307
1308 link_info.input_bfds_tail = save_input_bfd_tail;
1309 *save_input_bfd_tail = NULL;
1310
d871d478
AM
1311 if (link_info.eh_frame_hdr_type == COMPACT_EH_HDR)
1312 if (!bfd_elf_parse_eh_frame_entries (NULL, &link_info))
1313 einfo (_("%F%P: failed to parse EH frame entries\n"));
1314}
1315
1316static bfd_size_type
1317id_note_section_size (bfd *abfd ATTRIBUTE_UNUSED)
1318{
1319 const char *style = ldelf_emit_note_gnu_build_id;
1320 bfd_size_type size;
1321 bfd_size_type build_id_size;
1322
1323 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1324 size = (size + 3) & -(bfd_size_type) 4;
1325
1326 build_id_size = compute_build_id_size (style);
1327 if (build_id_size)
1328 size += build_id_size;
1329 else
1330 size = 0;
1331
1332 return size;
1333}
1334
1335static bfd_boolean
1336write_build_id (bfd *abfd)
1337{
1338 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1339 struct elf_obj_tdata *t = elf_tdata (abfd);
1340 const char *style;
1341 asection *asec;
1342 Elf_Internal_Shdr *i_shdr;
1343 unsigned char *contents, *id_bits;
1344 bfd_size_type size;
1345 file_ptr position;
1346 Elf_External_Note *e_note;
1347
1348 style = t->o->build_id.style;
1349 asec = t->o->build_id.sec;
1350 if (bfd_is_abs_section (asec->output_section))
1351 {
1352 einfo (_("%P: warning: .note.gnu.build-id section discarded,"
1353 " --build-id ignored\n"));
1354 return TRUE;
1355 }
1356 i_shdr = &elf_section_data (asec->output_section)->this_hdr;
1357
1358 if (i_shdr->contents == NULL)
1359 {
1360 if (asec->contents == NULL)
1361 asec->contents = (unsigned char *) xmalloc (asec->size);
1362 contents = asec->contents;
1363 }
1364 else
1365 contents = i_shdr->contents + asec->output_offset;
1366
1367 e_note = (Elf_External_Note *) contents;
1368 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1369 size = (size + 3) & -(bfd_size_type) 4;
1370 id_bits = contents + size;
1371 size = asec->size - size;
1372
1373 bfd_h_put_32 (abfd, sizeof "GNU", &e_note->namesz);
1374 bfd_h_put_32 (abfd, size, &e_note->descsz);
1375 bfd_h_put_32 (abfd, NT_GNU_BUILD_ID, &e_note->type);
1376 memcpy (e_note->name, "GNU", sizeof "GNU");
1377
1378 generate_build_id (abfd, style, bed->s->checksum_contents, id_bits, size);
1379
1380 position = i_shdr->sh_offset + asec->output_offset;
1381 size = asec->size;
1382 return (bfd_seek (abfd, position, SEEK_SET) == 0
1383 && bfd_bwrite (contents, size, abfd) == size);
1384}
1385
1386/* Make .note.gnu.build-id section, and set up elf_tdata->build_id. */
1387
1388bfd_boolean
1389ldelf_setup_build_id (bfd *ibfd)
1390{
1391 asection *s;
1392 bfd_size_type size;
1393 flagword flags;
1394
1395 size = id_note_section_size (ibfd);
1396 if (size == 0)
1397 {
1398 einfo (_("%P: warning: unrecognized --build-id style ignored\n"));
1399 return FALSE;
1400 }
1401
1402 flags = (SEC_ALLOC | SEC_LOAD | SEC_IN_MEMORY
1403 | SEC_LINKER_CREATED | SEC_READONLY | SEC_DATA);
1404 s = bfd_make_section_with_flags (ibfd, ".note.gnu.build-id", flags);
fd361982 1405 if (s != NULL && bfd_set_section_alignment (s, 2))
d871d478
AM
1406 {
1407 struct elf_obj_tdata *t = elf_tdata (link_info.output_bfd);
1408 t->o->build_id.after_write_object_contents = &write_build_id;
1409 t->o->build_id.style = ldelf_emit_note_gnu_build_id;
1410 t->o->build_id.sec = s;
1411 elf_section_type (s) = SHT_NOTE;
1412 s->size = size;
1413 return TRUE;
1414 }
1415
1416 einfo (_("%P: warning: cannot create .note.gnu.build-id section,"
1417 " --build-id ignored\n"));
1418 return FALSE;
1419}
1420
1421/* Look through an expression for an assignment statement. */
1422
1423static void
1424ldelf_find_exp_assignment (etree_type *exp)
1425{
1426 bfd_boolean provide = FALSE;
1427
1428 switch (exp->type.node_class)
1429 {
1430 case etree_provide:
1431 case etree_provided:
1432 provide = TRUE;
1433 /* Fallthru */
1434 case etree_assign:
1435 /* We call record_link_assignment even if the symbol is defined.
1436 This is because if it is defined by a dynamic object, we
1437 actually want to use the value defined by the linker script,
1438 not the value from the dynamic object (because we are setting
1439 symbols like etext). If the symbol is defined by a regular
1440 object, then, as it happens, calling record_link_assignment
1441 will do no harm. */
1442 if (strcmp (exp->assign.dst, ".") != 0)
1443 {
1444 if (!bfd_elf_record_link_assignment (link_info.output_bfd,
1445 &link_info,
1446 exp->assign.dst, provide,
1447 exp->assign.hidden))
1448 einfo (_("%F%P: failed to record assignment to %s: %E\n"),
1449 exp->assign.dst);
1450 }
1451 ldelf_find_exp_assignment (exp->assign.src);
1452 break;
1453
1454 case etree_binary:
1455 ldelf_find_exp_assignment (exp->binary.lhs);
1456 ldelf_find_exp_assignment (exp->binary.rhs);
1457 break;
1458
1459 case etree_trinary:
1460 ldelf_find_exp_assignment (exp->trinary.cond);
1461 ldelf_find_exp_assignment (exp->trinary.lhs);
1462 ldelf_find_exp_assignment (exp->trinary.rhs);
1463 break;
1464
1465 case etree_unary:
1466 ldelf_find_exp_assignment (exp->unary.child);
1467 break;
1468
1469 default:
1470 break;
1471 }
1472}
1473
1474/* This is called by the before_allocation routine via
1475 lang_for_each_statement. It locates any assignment statements, and
1476 tells the ELF backend about them, in case they are assignments to
1477 symbols which are referred to by dynamic objects. */
1478
1479static void
1480ldelf_find_statement_assignment (lang_statement_union_type *s)
1481{
1482 if (s->header.type == lang_assignment_statement_enum)
1483 ldelf_find_exp_assignment (s->assignment_statement.exp);
1484}
1485
1486/* Used by before_allocation and handle_option. */
1487
1488void
1489ldelf_append_to_separated_string (char **to, char *op_arg)
1490{
1491 if (*to == NULL)
1492 *to = xstrdup (op_arg);
1493 else
1494 {
1495 size_t to_len = strlen (*to);
1496 size_t op_arg_len = strlen (op_arg);
1497 char *buf;
1498 char *cp = *to;
1499
1500 /* First see whether OPTARG is already in the path. */
1501 do
1502 {
1503 if (strncmp (op_arg, cp, op_arg_len) == 0
1504 && (cp[op_arg_len] == 0
1505 || cp[op_arg_len] == config.rpath_separator))
1506 /* We found it. */
1507 break;
1508
1509 /* Not yet found. */
1510 cp = strchr (cp, config.rpath_separator);
1511 if (cp != NULL)
1512 ++cp;
1513 }
1514 while (cp != NULL);
1515
1516 if (cp == NULL)
1517 {
1518 buf = xmalloc (to_len + op_arg_len + 2);
1519 sprintf (buf, "%s%c%s", *to,
1520 config.rpath_separator, op_arg);
1521 free (*to);
1522 *to = buf;
1523 }
1524 }
1525}
1526
1527/* This is called after the sections have been attached to output
1528 sections, but before any sizes or addresses have been set. */
1529
1530void
1531ldelf_before_allocation (char *audit, char *depaudit,
1532 const char *default_interpreter_name)
1533{
1534 const char *rpath;
1535 asection *sinterp;
1536 bfd *abfd;
1537 struct bfd_link_hash_entry *ehdr_start = NULL;
1538 unsigned char ehdr_start_save_type = 0;
1539 char ehdr_start_save_u[sizeof ehdr_start->u
1540 - sizeof ehdr_start->u.def.next] = "";
1541
1542 if (is_elf_hash_table (link_info.hash))
1543 {
1544 _bfd_elf_tls_setup (link_info.output_bfd, &link_info);
1545
1546 /* Make __ehdr_start hidden if it has been referenced, to
1547 prevent the symbol from being dynamic. */
1548 if (!bfd_link_relocatable (&link_info))
1549 {
1550 struct elf_link_hash_table *htab = elf_hash_table (&link_info);
1551 struct elf_link_hash_entry *h
1552 = elf_link_hash_lookup (htab, "__ehdr_start", FALSE, FALSE, TRUE);
1553
1554 /* Only adjust the export class if the symbol was referenced
1555 and not defined, otherwise leave it alone. */
1556 if (h != NULL
1557 && (h->root.type == bfd_link_hash_new
1558 || h->root.type == bfd_link_hash_undefined
1559 || h->root.type == bfd_link_hash_undefweak
1560 || h->root.type == bfd_link_hash_common))
1561 {
1562 const struct elf_backend_data *bed;
1563 bed = get_elf_backend_data (link_info.output_bfd);
1564 (*bed->elf_backend_hide_symbol) (&link_info, h, TRUE);
1565 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
1566 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
1567 /* Don't leave the symbol undefined. Undefined hidden
1568 symbols typically won't have dynamic relocations, but
1569 we most likely will need dynamic relocations for
1570 __ehdr_start if we are building a PIE or shared
1571 library. */
1572 ehdr_start = &h->root;
1573 ehdr_start_save_type = ehdr_start->type;
1574 memcpy (ehdr_start_save_u,
1575 (char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1576 sizeof ehdr_start_save_u);
1577 ehdr_start->type = bfd_link_hash_defined;
1578 ehdr_start->u.def.section = bfd_abs_section_ptr;
1579 ehdr_start->u.def.value = 0;
1580 }
1581 }
1582
1583 /* If we are going to make any variable assignments, we need to
1584 let the ELF backend know about them in case the variables are
1585 referred to by dynamic objects. */
1586 lang_for_each_statement (ldelf_find_statement_assignment);
1587 }
1588
1589 /* Let the ELF backend work out the sizes of any sections required
1590 by dynamic linking. */
1591 rpath = command_line.rpath;
1592 if (rpath == NULL)
1593 rpath = (const char *) getenv ("LD_RUN_PATH");
1594
1595 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1596 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1597 {
1598 const char *audit_libs = elf_dt_audit (abfd);
1599
1600 /* If the input bfd contains an audit entry, we need to add it as
1601 a dep audit entry. */
1602 if (audit_libs && *audit_libs != '\0')
1603 {
1604 char *cp = xstrdup (audit_libs);
1605 do
1606 {
1607 int more = 0;
1608 char *cp2 = strchr (cp, config.rpath_separator);
1609
1610 if (cp2)
1611 {
1612 *cp2 = '\0';
1613 more = 1;
1614 }
1615
1616 if (cp != NULL && *cp != '\0')
1617 ldelf_append_to_separated_string (&depaudit, cp);
1618
1619 cp = more ? ++cp2 : NULL;
1620 }
1621 while (cp != NULL);
1622 }
1623 }
1624
1625 if (! (bfd_elf_size_dynamic_sections
1626 (link_info.output_bfd, command_line.soname, rpath,
1627 command_line.filter_shlib, audit, depaudit,
1628 (const char * const *) command_line.auxiliary_filters,
1629 &link_info, &sinterp)))
1630 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1631
1632 if (sinterp != NULL)
1633 {
1634 /* Let the user override the dynamic linker we are using. */
1635 if (command_line.interpreter != NULL)
1636 default_interpreter_name = command_line.interpreter;
1637 if (default_interpreter_name != NULL)
1638 {
1639 sinterp->contents = (bfd_byte *) default_interpreter_name;
1640 sinterp->size = strlen ((char *) sinterp->contents) + 1;
1641 }
1642 }
1643
1644 /* Look for any sections named .gnu.warning. As a GNU extensions,
1645 we treat such sections as containing warning messages. We print
1646 out the warning message, and then zero out the section size so
1647 that it does not get copied into the output file. */
1648
1649 {
1650 LANG_FOR_EACH_INPUT_STATEMENT (is)
1651 {
1652 asection *s;
1653 bfd_size_type sz;
1654 char *msg;
1655
1656 if (is->flags.just_syms)
1657 continue;
1658
1659 s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning");
1660 if (s == NULL)
1661 continue;
1662
1663 sz = s->size;
1664 msg = (char *) xmalloc ((size_t) (sz + 1));
1665 if (! bfd_get_section_contents (is->the_bfd, s, msg,
1666 (file_ptr) 0, sz))
1667 einfo (_("%F%P: %pB: can't read contents of section .gnu.warning: %E\n"),
1668 is->the_bfd);
1669 msg[sz] = '\0';
1670 (*link_info.callbacks->warning) (&link_info, msg,
1671 (const char *) NULL, is->the_bfd,
1672 (asection *) NULL, (bfd_vma) 0);
1673 free (msg);
1674
1675 /* Clobber the section size, so that we don't waste space
1676 copying the warning into the output file. If we've already
1677 sized the output section, adjust its size. The adjustment
1678 is on rawsize because targets that size sections early will
1679 have called lang_reset_memory_regions after sizing. */
1680 if (s->output_section != NULL
1681 && s->output_section->rawsize >= s->size)
1682 s->output_section->rawsize -= s->size;
1683
1684 s->size = 0;
1685
1686 /* Also set SEC_EXCLUDE, so that local symbols defined in the
1687 warning section don't get copied to the output. */
1688 s->flags |= SEC_EXCLUDE | SEC_KEEP;
1689 }
1690 }
1691
1692 before_allocation_default ();
1693
1694 if (!bfd_elf_size_dynsym_hash_dynstr (link_info.output_bfd, &link_info))
1695 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1696
1697 if (ehdr_start != NULL)
1698 {
1699 /* If we twiddled __ehdr_start to defined earlier, put it back
1700 as it was. */
1701 ehdr_start->type = ehdr_start_save_type;
1702 memcpy ((char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1703 ehdr_start_save_u,
1704 sizeof ehdr_start_save_u);
1705 }
1706}
1707/* Try to open a dynamic archive. This is where we know that ELF
1708 dynamic libraries have an extension of .so (or .sl on oddball systems
1709 like hpux). */
1710
1711bfd_boolean
1712ldelf_open_dynamic_archive (const char *arch, search_dirs_type *search,
1713 lang_input_statement_type *entry)
1714{
1715 const char *filename;
1716 char *string;
1717 size_t len;
1718 bfd_boolean opened = FALSE;
1719
1720 if (! entry->flags.maybe_archive)
1721 return FALSE;
1722
1723 filename = entry->filename;
1724 len = strlen (search->name) + strlen (filename);
1725 if (entry->flags.full_name_provided)
1726 {
1727 len += sizeof "/";
1728 string = (char *) xmalloc (len);
1729 sprintf (string, "%s/%s", search->name, filename);
1730 }
1731 else
1732 {
1733 size_t xlen = 0;
1734
1735 len += strlen (arch) + sizeof "/lib.so";
1736#ifdef EXTRA_SHLIB_EXTENSION
1737 xlen = (strlen (EXTRA_SHLIB_EXTENSION) > 3
1738 ? strlen (EXTRA_SHLIB_EXTENSION) - 3
1739 : 0);
1740#endif
1741 string = (char *) xmalloc (len + xlen);
1742 sprintf (string, "%s/lib%s%s.so", search->name, filename, arch);
1743#ifdef EXTRA_SHLIB_EXTENSION
1744 /* Try the .so extension first. If that fails build a new filename
1745 using EXTRA_SHLIB_EXTENSION. */
1746 opened = ldfile_try_open_bfd (string, entry);
1747 if (!opened)
1748 strcpy (string + len - 4, EXTRA_SHLIB_EXTENSION);
1749#endif
1750 }
1751
1752 if (!opened && !ldfile_try_open_bfd (string, entry))
1753 {
1754 free (string);
1755 return FALSE;
1756 }
1757
1758 entry->filename = string;
1759
1760 /* We have found a dynamic object to include in the link. The ELF
1761 backend linker will create a DT_NEEDED entry in the .dynamic
1762 section naming this file. If this file includes a DT_SONAME
1763 entry, it will be used. Otherwise, the ELF linker will just use
1764 the name of the file. For an archive found by searching, like
1765 this one, the DT_NEEDED entry should consist of just the name of
1766 the file, without the path information used to find it. Note
1767 that we only need to do this if we have a dynamic object; an
1768 archive will never be referenced by a DT_NEEDED entry.
1769
1770 FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
1771 very pretty. I haven't been able to think of anything that is
1772 pretty, though. */
1773 if (bfd_check_format (entry->the_bfd, bfd_object)
1774 && (entry->the_bfd->flags & DYNAMIC) != 0)
1775 {
1776 ASSERT (entry->flags.maybe_archive && entry->flags.search_dirs);
1777
1778 /* Rather than duplicating the logic above. Just use the
1779 filename we recorded earlier. */
1780
1781 if (!entry->flags.full_name_provided)
1782 filename = lbasename (entry->filename);
1783 bfd_elf_set_dt_needed_name (entry->the_bfd, filename);
1784 }
1785
1786 return TRUE;
1787}
1788
1789/* A variant of lang_output_section_find used by place_orphan. */
1790
1791static lang_output_section_statement_type *
1792output_rel_find (int isdyn, int rela)
1793{
1794 lang_output_section_statement_type *lookup;
1795 lang_output_section_statement_type *last = NULL;
1796 lang_output_section_statement_type *last_alloc = NULL;
1797 lang_output_section_statement_type *last_ro_alloc = NULL;
1798 lang_output_section_statement_type *last_rel = NULL;
1799 lang_output_section_statement_type *last_rel_alloc = NULL;
1800
8ce18f9c 1801 for (lookup = (void *) lang_os_list.head;
d871d478
AM
1802 lookup != NULL;
1803 lookup = lookup->next)
1804 {
1805 if (lookup->constraint >= 0
1806 && CONST_STRNEQ (lookup->name, ".rel"))
1807 {
1808 int lookrela = lookup->name[4] == 'a';
1809
1810 /* .rel.dyn must come before all other reloc sections, to suit
1811 GNU ld.so. */
1812 if (isdyn)
1813 break;
1814
1815 /* Don't place after .rel.plt as doing so results in wrong
1816 dynamic tags. */
1817 if (strcmp (".plt", lookup->name + 4 + lookrela) == 0)
1818 break;
1819
1820 if (rela == lookrela || last_rel == NULL)
1821 last_rel = lookup;
1822 if ((rela == lookrela || last_rel_alloc == NULL)
1823 && lookup->bfd_section != NULL
1824 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1825 last_rel_alloc = lookup;
1826 }
1827
1828 last = lookup;
1829 if (lookup->bfd_section != NULL
1830 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1831 {
1832 last_alloc = lookup;
1833 if ((lookup->bfd_section->flags & SEC_READONLY) != 0)
1834 last_ro_alloc = lookup;
1835 }
1836 }
1837
1838 if (last_rel_alloc)
1839 return last_rel_alloc;
1840
1841 if (last_rel)
1842 return last_rel;
1843
1844 if (last_ro_alloc)
1845 return last_ro_alloc;
1846
1847 if (last_alloc)
1848 return last_alloc;
1849
1850 return last;
1851}
1852
1853/* Return whether IN is suitable to be part of OUT. */
1854
1855static bfd_boolean
1856elf_orphan_compatible (asection *in, asection *out)
1857{
1858 /* Non-zero sh_info implies a section with SHF_INFO_LINK with
1859 unknown semantics for the generic linker, or a SHT_REL/SHT_RELA
1860 section where sh_info specifies a symbol table. (We won't see
1861 SHT_GROUP, SHT_SYMTAB or SHT_DYNSYM sections here.) We clearly
1862 can't merge SHT_REL/SHT_RELA using differing symbol tables, and
1863 shouldn't merge sections with differing unknown semantics. */
1864 if (elf_section_data (out)->this_hdr.sh_info
1865 != elf_section_data (in)->this_hdr.sh_info)
1866 return FALSE;
1db6f990
AM
1867 /* We can't merge with a member of an output section group or merge
1868 two sections with differing SHF_EXCLUDE or other processor and OS
1869 specific flags when doing a relocatable link. */
d871d478
AM
1870 if (bfd_link_relocatable (&link_info)
1871 && (elf_next_in_group (out) != NULL
1872 || ((elf_section_flags (out) ^ elf_section_flags (in))
1db6f990 1873 & (SHF_MASKPROC | SHF_MASKOS)) != 0))
d871d478
AM
1874 return FALSE;
1875 return _bfd_elf_match_sections_by_type (link_info.output_bfd, out,
1876 in->owner, in);
1877}
1878
1879/* Place an orphan section. We use this to put random SHF_ALLOC
1880 sections in the right segment. */
1881
1882lang_output_section_statement_type *
1883ldelf_place_orphan (asection *s, const char *secname, int constraint)
1884{
1885 static struct orphan_save hold[] =
1886 {
1887 { ".text",
1888 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1889 0, 0, 0, 0 },
1890 { ".rodata",
1891 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1892 0, 0, 0, 0 },
1893 { ".tdata",
1894 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_THREAD_LOCAL,
1895 0, 0, 0, 0 },
1896 { ".data",
1897 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1898 0, 0, 0, 0 },
1899 { ".bss",
1900 SEC_ALLOC,
1901 0, 0, 0, 0 },
1902 { 0,
1903 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1904 0, 0, 0, 0 },
1905 { ".interp",
1906 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1907 0, 0, 0, 0 },
1908 { ".sdata",
1909 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA,
1910 0, 0, 0, 0 },
1911 { ".comment",
1912 SEC_HAS_CONTENTS,
1913 0, 0, 0, 0 },
1914 };
1915 enum orphan_save_index
1916 {
1917 orphan_text = 0,
1918 orphan_rodata,
1919 orphan_tdata,
1920 orphan_data,
1921 orphan_bss,
1922 orphan_rel,
1923 orphan_interp,
1924 orphan_sdata,
1925 orphan_nonalloc
1926 };
1927 static int orphan_init_done = 0;
1928 struct orphan_save *place;
1929 lang_output_section_statement_type *after;
1930 lang_output_section_statement_type *os;
1931 lang_output_section_statement_type *match_by_name = NULL;
1932 int isdyn = 0;
1933 int elfinput = s->owner->xvec->flavour == bfd_target_elf_flavour;
1934 int elfoutput = link_info.output_bfd->xvec->flavour == bfd_target_elf_flavour;
1935 unsigned int sh_type = elfinput ? elf_section_type (s) : SHT_NULL;
1936 flagword flags;
1937 asection *nexts;
1938
1939 if (!bfd_link_relocatable (&link_info)
1940 && link_info.combreloc
1941 && (s->flags & SEC_ALLOC))
1942 {
1943 if (elfinput)
1944 switch (sh_type)
1945 {
1946 case SHT_RELA:
1947 secname = ".rela.dyn";
1948 isdyn = 1;
1949 break;
1950 case SHT_REL:
1951 secname = ".rel.dyn";
1952 isdyn = 1;
1953 break;
1954 default:
1955 break;
1956 }
1957 else if (CONST_STRNEQ (secname, ".rel"))
1958 {
1959 secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn";
1960 isdyn = 1;
1961 }
1962 }
1963
1964 if (!bfd_link_relocatable (&link_info)
1965 && elfinput
1966 && elfoutput
1967 && (s->flags & SEC_ALLOC) != 0
1968 && (elf_tdata (s->owner)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
1969 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
1970 {
1971 /* Find the output mbind section with the same type, attributes
1972 and sh_info field. */
8ce18f9c 1973 for (os = (void *) lang_os_list.head;
d871d478
AM
1974 os != NULL;
1975 os = os->next)
1976 if (os->bfd_section != NULL
1977 && !bfd_is_abs_section (os->bfd_section)
1978 && (elf_section_flags (os->bfd_section) & SHF_GNU_MBIND) != 0
1979 && ((s->flags & (SEC_ALLOC
1980 | SEC_LOAD
1981 | SEC_HAS_CONTENTS
1982 | SEC_READONLY
1983 | SEC_CODE))
1984 == (os->bfd_section->flags & (SEC_ALLOC
1985 | SEC_LOAD
1986 | SEC_HAS_CONTENTS
1987 | SEC_READONLY
1988 | SEC_CODE)))
1989 && (elf_section_data (os->bfd_section)->this_hdr.sh_info
1990 == elf_section_data (s)->this_hdr.sh_info))
1991 {
1992 lang_add_section (&os->children, s, NULL, os);
1993 return os;
1994 }
1995
1996 /* Create the output mbind section with the ".mbind." prefix
1997 in section name. */
1998 if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
1999 secname = ".mbind.bss";
2000 else if ((s->flags & SEC_READONLY) == 0)
2001 secname = ".mbind.data";
2002 else if ((s->flags & SEC_CODE) == 0)
2003 secname = ".mbind.rodata";
2004 else
2005 secname = ".mbind.text";
2006 elf_tdata (link_info.output_bfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
2007 }
2008
2009 /* Look through the script to see where to place this section. The
2010 script includes entries added by previous lang_insert_orphan
2011 calls, so this loop puts multiple compatible orphans of the same
2012 name into a single output section. */
2013 if (constraint == 0)
2014 for (os = lang_output_section_find (secname);
2015 os != NULL;
2016 os = next_matching_output_section_statement (os, 0))
2017 {
2018 /* If we don't match an existing output section, tell
2019 lang_insert_orphan to create a new output section. */
2020 constraint = SPECIAL;
2021
2022 /* Check to see if we already have an output section statement
2023 with this name, and its bfd section has compatible flags.
2024 If the section already exists but does not have any flags
2025 set, then it has been created by the linker, possibly as a
2026 result of a --section-start command line switch. */
2027 if (os->bfd_section != NULL
2028 && (os->bfd_section->flags == 0
2029 || (((s->flags ^ os->bfd_section->flags)
2030 & (SEC_LOAD | SEC_ALLOC)) == 0
2031 && (!elfinput
2032 || !elfoutput
2033 || elf_orphan_compatible (s, os->bfd_section)))))
2034 {
2035 lang_add_section (&os->children, s, NULL, os);
2036 return os;
2037 }
2038
2039 /* Save unused output sections in case we can match them
2040 against orphans later. */
2041 if (os->bfd_section == NULL)
2042 match_by_name = os;
2043 }
2044
2045 /* If we didn't match an active output section, see if we matched an
2046 unused one and use that. */
2047 if (match_by_name)
2048 {
2049 lang_add_section (&match_by_name->children, s, NULL, match_by_name);
2050 return match_by_name;
2051 }
2052
2053 if (!orphan_init_done)
2054 {
2055 struct orphan_save *ho;
2056
2057 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
2058 if (ho->name != NULL)
2059 {
2060 ho->os = lang_output_section_find (ho->name);
2061 if (ho->os != NULL && ho->os->flags == 0)
2062 ho->os->flags = ho->flags;
2063 }
2064 orphan_init_done = 1;
2065 }
2066
2067 /* If this is a final link, then always put .gnu.warning.SYMBOL
2068 sections into the .text section to get them out of the way. */
2069 if (bfd_link_executable (&link_info)
2070 && CONST_STRNEQ (s->name, ".gnu.warning.")
2071 && hold[orphan_text].os != NULL)
2072 {
2073 os = hold[orphan_text].os;
2074 lang_add_section (&os->children, s, NULL, os);
2075 return os;
2076 }
2077
2078 flags = s->flags;
2079 if (!bfd_link_relocatable (&link_info))
2080 {
2081 nexts = s;
2082 while ((nexts = bfd_get_next_section_by_name (nexts->owner, nexts))
2083 != NULL)
2084 if (nexts->output_section == NULL
2085 && (nexts->flags & SEC_EXCLUDE) == 0
2086 && ((nexts->flags ^ flags) & (SEC_LOAD | SEC_ALLOC)) == 0
2087 && (nexts->owner->flags & DYNAMIC) == 0
00f93c44 2088 && !bfd_input_just_syms (nexts->owner)
d871d478
AM
2089 && _bfd_elf_match_sections_by_type (nexts->owner, nexts,
2090 s->owner, s))
2091 flags = (((flags ^ SEC_READONLY)
2092 | (nexts->flags ^ SEC_READONLY))
2093 ^ SEC_READONLY);
2094 }
2095
2096 /* Decide which segment the section should go in based on the
2097 section name and section flags. We put loadable .note sections
2098 right after the .interp section, so that the PT_NOTE segment is
2099 stored right after the program headers where the OS can read it
2100 in the first page. */
2101
2102 place = NULL;
2103 if ((flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
2104 place = &hold[orphan_nonalloc];
2105 else if ((flags & SEC_ALLOC) == 0)
2106 ;
2107 else if ((flags & SEC_LOAD) != 0
2108 && (elfinput
2109 ? sh_type == SHT_NOTE
2110 : CONST_STRNEQ (secname, ".note")))
2111 place = &hold[orphan_interp];
2112 else if ((flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
2113 place = &hold[orphan_bss];
2114 else if ((flags & SEC_SMALL_DATA) != 0)
2115 place = &hold[orphan_sdata];
2116 else if ((flags & SEC_THREAD_LOCAL) != 0)
2117 place = &hold[orphan_tdata];
2118 else if ((flags & SEC_READONLY) == 0)
2119 place = &hold[orphan_data];
2120 else if ((flags & SEC_LOAD) != 0
2121 && (elfinput
2122 ? sh_type == SHT_RELA || sh_type == SHT_REL
2123 : CONST_STRNEQ (secname, ".rel")))
2124 place = &hold[orphan_rel];
2125 else if ((flags & SEC_CODE) == 0)
2126 place = &hold[orphan_rodata];
2127 else
2128 place = &hold[orphan_text];
2129
2130 after = NULL;
2131 if (place != NULL)
2132 {
2133 if (place->os == NULL)
2134 {
2135 if (place->name != NULL)
2136 place->os = lang_output_section_find (place->name);
2137 else
2138 {
2139 int rela = elfinput ? sh_type == SHT_RELA : secname[4] == 'a';
2140 place->os = output_rel_find (isdyn, rela);
2141 }
2142 }
2143 after = place->os;
2144 if (after == NULL)
2145 after
2146 = lang_output_section_find_by_flags (s, flags, &place->os,
2147 _bfd_elf_match_sections_by_type);
2148 if (after == NULL)
2149 /* *ABS* is always the first output section statement. */
8ce18f9c 2150 after = (void *) lang_os_list.head;
d871d478
AM
2151 }
2152
2153 return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);
2154}
9b538ba7
L
2155
2156void
2157ldelf_before_place_orphans (void)
2158{
2159 bfd *abfd;
2160
2161 for (abfd = link_info.input_bfds;
2162 abfd != (bfd *) NULL; abfd = abfd->link.next)
2163 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2164 && bfd_count_sections (abfd) != 0
2165 && !bfd_input_just_syms (abfd))
2166 {
2167 asection *isec;
2168 for (isec = abfd->sections; isec != NULL; isec = isec->next)
2169 {
2170 /* Discard a section if any of its linked-to section has
2171 been discarded. */
2172 asection *linked_to_sec;
2173 for (linked_to_sec = elf_linked_to_section (isec);
2174 linked_to_sec != NULL;
2175 linked_to_sec = elf_linked_to_section (linked_to_sec))
2176 if (discarded_section (linked_to_sec))
2177 {
2178 isec->output_section = bfd_abs_section_ptr;
2179 break;
2180 }
2181 }
2182 }
2183}
This page took 0.249632 seconds and 4 git commands to generate.