Stop the linker from accepting executable ELF files as inputs to other links.
[deliverable/binutils-gdb.git] / ld / ldelf.c
1 /* ELF emulation code for targets using elf.em.
2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
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"
25 #include "safe-ctype.h"
26 #include "bfdlink.h"
27 #include "ctf-api.h"
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
43 struct dt_needed
44 {
45 bfd *by;
46 const char *name;
47 };
48
49 /* Style of .note.gnu.build-id section. */
50 const 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
55 static struct bfd_link_needed_list *global_needed;
56 static lang_input_statement_type *global_found;
57 static struct stat global_stat;
58 static struct bfd_link_needed_list *global_vercheck_needed;
59 static bfd_boolean global_vercheck_failed;
60
61 void
62 ldelf_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
79 bfd_boolean
80 ldelf_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
129 static void
130 ldelf_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
181 static void
182 ldelf_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
249 static bfd_boolean
250 ldelf_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
378 *link_info.input_bfds_tail = abfd;
379 link_info.input_bfds_tail = &abfd->link.next;
380
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
390 static bfd_boolean
391 ldelf_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
604 static const char *
605 ldelf_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
688 static bfd_boolean
689 ldelf_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
742 struct ldelf_ld_so_conf
743 {
744 char *path;
745 size_t len, alloc;
746 };
747
748 static bfd_boolean
749 ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *, const char *);
750
751 static void
752 ldelf_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
786 free (newp);
787 }
788
789 static bfd_boolean
790 ldelf_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
897 static bfd_boolean
898 ldelf_check_ld_so_conf (const struct bfd_link_needed_list *l, int force,
899 int elfsize, const char *prefix)
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;
912 tmppath = concat (ld_sysroot, prefix, "/etc/ld.so.conf",
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
942 static void
943 ldelf_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
989 void
990 ldelf_after_open (int use_libpath, int native, int is_linux, int is_freebsd,
991 int elfsize, const char *prefix)
992 {
993 struct bfd_link_needed_list *needed, *l;
994 struct elf_link_hash_table *htab;
995 asection *s;
996 bfd *abfd;
997 bfd **save_input_bfd_tail;
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
1026 && !bfd_input_just_syms (abfd))
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
1068 if (bfd_link_executable (& link_info)
1069 && elf_tdata (abfd)->elf_header->e_type == ET_EXEC)
1070 {
1071 einfo (_("%F%P: cannot use executable file '%pB' as input to a link\n"),
1072 abfd);
1073 }
1074
1075 if (bfd_input_just_syms (abfd))
1076 continue;
1077
1078 for (s = abfd->sections; s && type < COMPACT_EH_HDR; s = s->next)
1079 {
1080 const char *name = bfd_section_name (s);
1081
1082 if (bfd_is_abs_section (s->output_section))
1083 continue;
1084 if (CONST_STRNEQ (name, ".eh_frame_entry"))
1085 type = COMPACT_EH_HDR;
1086 else if (strcmp (name, ".eh_frame") == 0 && s->size > 8)
1087 type = DWARF2_EH_HDR;
1088 }
1089
1090 if (type != 0)
1091 {
1092 if (seen_type == 0)
1093 {
1094 seen_type = type;
1095 }
1096 else if (seen_type != type)
1097 {
1098 einfo (_("%F%P: compact frame descriptions incompatible with"
1099 " DWARF2 .eh_frame from %pB\n"),
1100 type == DWARF2_EH_HDR ? abfd : elfbfd);
1101 break;
1102 }
1103
1104 if (!elfbfd
1105 && (type == COMPACT_EH_HDR
1106 || link_info.eh_frame_hdr_type != 0))
1107 {
1108 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1109 elfbfd = abfd;
1110
1111 warn_eh_frame = TRUE;
1112 }
1113 }
1114
1115 if (seen_type == COMPACT_EH_HDR)
1116 link_info.eh_frame_hdr_type = COMPACT_EH_HDR;
1117 }
1118 if (elfbfd)
1119 {
1120 const struct elf_backend_data *bed;
1121
1122 bed = get_elf_backend_data (elfbfd);
1123 s = bfd_make_section_with_flags (elfbfd, ".eh_frame_hdr",
1124 bed->dynamic_sec_flags
1125 | SEC_READONLY);
1126 if (s != NULL
1127 && bfd_set_section_alignment (s, 2))
1128 {
1129 htab->eh_info.hdr_sec = s;
1130 warn_eh_frame = FALSE;
1131 }
1132 }
1133 if (warn_eh_frame)
1134 einfo (_("%P: warning: cannot create .eh_frame_hdr section,"
1135 " --eh-frame-hdr ignored\n"));
1136 }
1137
1138 /* Get the list of files which appear in DT_NEEDED entries in
1139 dynamic objects included in the link (often there will be none).
1140 For each such file, we want to track down the corresponding
1141 library, and include the symbol table in the link. This is what
1142 the runtime dynamic linker will do. Tracking the files down here
1143 permits one dynamic object to include another without requiring
1144 special action by the person doing the link. Note that the
1145 needed list can actually grow while we are stepping through this
1146 loop. */
1147 save_input_bfd_tail = link_info.input_bfds_tail;
1148 needed = bfd_elf_get_needed_list (link_info.output_bfd, &link_info);
1149 for (l = needed; l != NULL; l = l->next)
1150 {
1151 struct bfd_link_needed_list *ll;
1152 struct dt_needed n, nn;
1153 int force;
1154
1155 /* If the lib that needs this one was --as-needed and wasn't
1156 found to be needed, then this lib isn't needed either. */
1157 if (l->by != NULL
1158 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0)
1159 continue;
1160
1161 /* Skip the lib if --no-copy-dt-needed-entries and
1162 --allow-shlib-undefined is in effect. */
1163 if (l->by != NULL
1164 && link_info.unresolved_syms_in_shared_libs == RM_IGNORE
1165 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_NO_ADD_NEEDED) != 0)
1166 continue;
1167
1168 /* If we've already seen this file, skip it. */
1169 for (ll = needed; ll != l; ll = ll->next)
1170 if ((ll->by == NULL
1171 || (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0)
1172 && strcmp (ll->name, l->name) == 0)
1173 break;
1174 if (ll != l)
1175 continue;
1176
1177 /* See if this file was included in the link explicitly. */
1178 global_needed = l;
1179 global_found = NULL;
1180 lang_for_each_input_file (ldelf_check_needed);
1181 if (global_found != NULL
1182 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
1183 & DYN_AS_NEEDED) == 0)
1184 continue;
1185
1186 n.by = l->by;
1187 n.name = l->name;
1188 nn.by = l->by;
1189 if (verbose)
1190 info_msg (_("%s needed by %pB\n"), l->name, l->by);
1191
1192 /* As-needed libs specified on the command line (or linker script)
1193 take priority over libs found in search dirs. */
1194 if (global_found != NULL)
1195 {
1196 nn.name = global_found->filename;
1197 if (ldelf_try_needed (&nn, TRUE, is_linux))
1198 continue;
1199 }
1200
1201 /* We need to find this file and include the symbol table. We
1202 want to search for the file in the same way that the dynamic
1203 linker will search. That means that we want to use
1204 rpath_link, rpath, then the environment variable
1205 LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH
1206 entries (native only), then the linker script LIB_SEARCH_DIRS.
1207 We do not search using the -L arguments.
1208
1209 We search twice. The first time, we skip objects which may
1210 introduce version mismatches. The second time, we force
1211 their use. See ldelf_vercheck comment. */
1212 for (force = 0; force < 2; force++)
1213 {
1214 size_t len;
1215 search_dirs_type *search;
1216 const char *path;
1217 struct bfd_link_needed_list *rp;
1218 int found;
1219
1220 if (ldelf_search_needed (command_line.rpath_link, &n, force,
1221 is_linux, elfsize))
1222 break;
1223
1224 if (use_libpath)
1225 {
1226 path = command_line.rpath;
1227 if (path)
1228 {
1229 path = ldelf_add_sysroot (path);
1230 found = ldelf_search_needed (path, &n, force,
1231 is_linux, elfsize);
1232 free ((char *) path);
1233 if (found)
1234 break;
1235 }
1236 }
1237 if (native)
1238 {
1239 if (command_line.rpath_link == NULL
1240 && command_line.rpath == NULL)
1241 {
1242 path = (const char *) getenv ("LD_RUN_PATH");
1243 if (path
1244 && ldelf_search_needed (path, &n, force,
1245 is_linux, elfsize))
1246 break;
1247 }
1248 path = (const char *) getenv ("LD_LIBRARY_PATH");
1249 if (path
1250 && ldelf_search_needed (path, &n, force,
1251 is_linux, elfsize))
1252 break;
1253 }
1254 if (use_libpath)
1255 {
1256 found = 0;
1257 rp = bfd_elf_get_runpath_list (link_info.output_bfd, &link_info);
1258 for (; !found && rp != NULL; rp = rp->next)
1259 {
1260 path = ldelf_add_sysroot (rp->name);
1261 found = (rp->by == l->by
1262 && ldelf_search_needed (path, &n, force,
1263 is_linux, elfsize));
1264 free ((char *) path);
1265 }
1266 if (found)
1267 break;
1268
1269 if (is_freebsd
1270 && ldelf_check_ld_elf_hints (l, force, elfsize))
1271 break;
1272
1273 if (is_linux
1274 && ldelf_check_ld_so_conf (l, force, elfsize, prefix))
1275 break;
1276 }
1277
1278 len = strlen (l->name);
1279 for (search = search_head; search != NULL; search = search->next)
1280 {
1281 char *filename;
1282
1283 if (search->cmdline)
1284 continue;
1285 filename = (char *) xmalloc (strlen (search->name) + len + 2);
1286 sprintf (filename, "%s/%s", search->name, l->name);
1287 nn.name = filename;
1288 if (ldelf_try_needed (&nn, force, is_linux))
1289 break;
1290 free (filename);
1291 }
1292 if (search != NULL)
1293 break;
1294 }
1295
1296 if (force < 2)
1297 continue;
1298
1299 einfo (_("%P: warning: %s, needed by %pB, not found "
1300 "(try using -rpath or -rpath-link)\n"),
1301 l->name, l->by);
1302 }
1303
1304 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1305 if (bfd_get_format (abfd) == bfd_object
1306 && ((abfd->flags) & DYNAMIC) != 0
1307 && bfd_get_flavour (abfd) == bfd_target_elf_flavour
1308 && (elf_dyn_lib_class (abfd) & (DYN_AS_NEEDED | DYN_NO_NEEDED)) == 0
1309 && elf_dt_name (abfd) != NULL)
1310 {
1311 if (bfd_elf_add_dt_needed_tag (abfd, &link_info) < 0)
1312 einfo (_("%F%P: failed to add DT_NEEDED dynamic tag\n"));
1313 }
1314
1315 link_info.input_bfds_tail = save_input_bfd_tail;
1316 *save_input_bfd_tail = NULL;
1317
1318 if (link_info.eh_frame_hdr_type == COMPACT_EH_HDR)
1319 if (!bfd_elf_parse_eh_frame_entries (NULL, &link_info))
1320 einfo (_("%F%P: failed to parse EH frame entries\n"));
1321 }
1322
1323 static bfd_size_type
1324 id_note_section_size (bfd *abfd ATTRIBUTE_UNUSED)
1325 {
1326 const char *style = ldelf_emit_note_gnu_build_id;
1327 bfd_size_type size;
1328 bfd_size_type build_id_size;
1329
1330 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1331 size = (size + 3) & -(bfd_size_type) 4;
1332
1333 build_id_size = compute_build_id_size (style);
1334 if (build_id_size)
1335 size += build_id_size;
1336 else
1337 size = 0;
1338
1339 return size;
1340 }
1341
1342 static bfd_boolean
1343 write_build_id (bfd *abfd)
1344 {
1345 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1346 struct elf_obj_tdata *t = elf_tdata (abfd);
1347 const char *style;
1348 asection *asec;
1349 Elf_Internal_Shdr *i_shdr;
1350 unsigned char *contents, *id_bits;
1351 bfd_size_type size;
1352 file_ptr position;
1353 Elf_External_Note *e_note;
1354
1355 style = t->o->build_id.style;
1356 asec = t->o->build_id.sec;
1357 if (bfd_is_abs_section (asec->output_section))
1358 {
1359 einfo (_("%P: warning: .note.gnu.build-id section discarded,"
1360 " --build-id ignored\n"));
1361 return TRUE;
1362 }
1363 i_shdr = &elf_section_data (asec->output_section)->this_hdr;
1364
1365 if (i_shdr->contents == NULL)
1366 {
1367 if (asec->contents == NULL)
1368 asec->contents = (unsigned char *) xmalloc (asec->size);
1369 contents = asec->contents;
1370 }
1371 else
1372 contents = i_shdr->contents + asec->output_offset;
1373
1374 e_note = (Elf_External_Note *) contents;
1375 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1376 size = (size + 3) & -(bfd_size_type) 4;
1377 id_bits = contents + size;
1378 size = asec->size - size;
1379
1380 bfd_h_put_32 (abfd, sizeof "GNU", &e_note->namesz);
1381 bfd_h_put_32 (abfd, size, &e_note->descsz);
1382 bfd_h_put_32 (abfd, NT_GNU_BUILD_ID, &e_note->type);
1383 memcpy (e_note->name, "GNU", sizeof "GNU");
1384
1385 generate_build_id (abfd, style, bed->s->checksum_contents, id_bits, size);
1386
1387 position = i_shdr->sh_offset + asec->output_offset;
1388 size = asec->size;
1389 return (bfd_seek (abfd, position, SEEK_SET) == 0
1390 && bfd_bwrite (contents, size, abfd) == size);
1391 }
1392
1393 /* Make .note.gnu.build-id section, and set up elf_tdata->build_id. */
1394
1395 bfd_boolean
1396 ldelf_setup_build_id (bfd *ibfd)
1397 {
1398 asection *s;
1399 bfd_size_type size;
1400 flagword flags;
1401
1402 size = id_note_section_size (ibfd);
1403 if (size == 0)
1404 {
1405 einfo (_("%P: warning: unrecognized --build-id style ignored\n"));
1406 return FALSE;
1407 }
1408
1409 flags = (SEC_ALLOC | SEC_LOAD | SEC_IN_MEMORY
1410 | SEC_LINKER_CREATED | SEC_READONLY | SEC_DATA);
1411 s = bfd_make_section_with_flags (ibfd, ".note.gnu.build-id", flags);
1412 if (s != NULL && bfd_set_section_alignment (s, 2))
1413 {
1414 struct elf_obj_tdata *t = elf_tdata (link_info.output_bfd);
1415 t->o->build_id.after_write_object_contents = &write_build_id;
1416 t->o->build_id.style = ldelf_emit_note_gnu_build_id;
1417 t->o->build_id.sec = s;
1418 elf_section_type (s) = SHT_NOTE;
1419 s->size = size;
1420 return TRUE;
1421 }
1422
1423 einfo (_("%P: warning: cannot create .note.gnu.build-id section,"
1424 " --build-id ignored\n"));
1425 return FALSE;
1426 }
1427
1428 /* Look through an expression for an assignment statement. */
1429
1430 static void
1431 ldelf_find_exp_assignment (etree_type *exp)
1432 {
1433 bfd_boolean provide = FALSE;
1434
1435 switch (exp->type.node_class)
1436 {
1437 case etree_provide:
1438 case etree_provided:
1439 provide = TRUE;
1440 /* Fallthru */
1441 case etree_assign:
1442 /* We call record_link_assignment even if the symbol is defined.
1443 This is because if it is defined by a dynamic object, we
1444 actually want to use the value defined by the linker script,
1445 not the value from the dynamic object (because we are setting
1446 symbols like etext). If the symbol is defined by a regular
1447 object, then, as it happens, calling record_link_assignment
1448 will do no harm. */
1449 if (strcmp (exp->assign.dst, ".") != 0)
1450 {
1451 if (!bfd_elf_record_link_assignment (link_info.output_bfd,
1452 &link_info,
1453 exp->assign.dst, provide,
1454 exp->assign.hidden))
1455 einfo (_("%F%P: failed to record assignment to %s: %E\n"),
1456 exp->assign.dst);
1457 }
1458 ldelf_find_exp_assignment (exp->assign.src);
1459 break;
1460
1461 case etree_binary:
1462 ldelf_find_exp_assignment (exp->binary.lhs);
1463 ldelf_find_exp_assignment (exp->binary.rhs);
1464 break;
1465
1466 case etree_trinary:
1467 ldelf_find_exp_assignment (exp->trinary.cond);
1468 ldelf_find_exp_assignment (exp->trinary.lhs);
1469 ldelf_find_exp_assignment (exp->trinary.rhs);
1470 break;
1471
1472 case etree_unary:
1473 ldelf_find_exp_assignment (exp->unary.child);
1474 break;
1475
1476 default:
1477 break;
1478 }
1479 }
1480
1481 /* This is called by the before_allocation routine via
1482 lang_for_each_statement. It locates any assignment statements, and
1483 tells the ELF backend about them, in case they are assignments to
1484 symbols which are referred to by dynamic objects. */
1485
1486 static void
1487 ldelf_find_statement_assignment (lang_statement_union_type *s)
1488 {
1489 if (s->header.type == lang_assignment_statement_enum)
1490 ldelf_find_exp_assignment (s->assignment_statement.exp);
1491 }
1492
1493 /* Used by before_allocation and handle_option. */
1494
1495 void
1496 ldelf_append_to_separated_string (char **to, char *op_arg)
1497 {
1498 if (*to == NULL)
1499 *to = xstrdup (op_arg);
1500 else
1501 {
1502 size_t to_len = strlen (*to);
1503 size_t op_arg_len = strlen (op_arg);
1504 char *buf;
1505 char *cp = *to;
1506
1507 /* First see whether OPTARG is already in the path. */
1508 do
1509 {
1510 if (strncmp (op_arg, cp, op_arg_len) == 0
1511 && (cp[op_arg_len] == 0
1512 || cp[op_arg_len] == config.rpath_separator))
1513 /* We found it. */
1514 break;
1515
1516 /* Not yet found. */
1517 cp = strchr (cp, config.rpath_separator);
1518 if (cp != NULL)
1519 ++cp;
1520 }
1521 while (cp != NULL);
1522
1523 if (cp == NULL)
1524 {
1525 buf = xmalloc (to_len + op_arg_len + 2);
1526 sprintf (buf, "%s%c%s", *to,
1527 config.rpath_separator, op_arg);
1528 free (*to);
1529 *to = buf;
1530 }
1531 }
1532 }
1533
1534 /* This is called after the sections have been attached to output
1535 sections, but before any sizes or addresses have been set. */
1536
1537 void
1538 ldelf_before_allocation (char *audit, char *depaudit,
1539 const char *default_interpreter_name)
1540 {
1541 const char *rpath;
1542 asection *sinterp;
1543 bfd *abfd;
1544 struct bfd_link_hash_entry *ehdr_start = NULL;
1545 unsigned char ehdr_start_save_type = 0;
1546 char ehdr_start_save_u[sizeof ehdr_start->u
1547 - sizeof ehdr_start->u.def.next] = "";
1548
1549 if (is_elf_hash_table (link_info.hash))
1550 {
1551 _bfd_elf_tls_setup (link_info.output_bfd, &link_info);
1552
1553 /* Make __ehdr_start hidden if it has been referenced, to
1554 prevent the symbol from being dynamic. */
1555 if (!bfd_link_relocatable (&link_info))
1556 {
1557 struct elf_link_hash_table *htab = elf_hash_table (&link_info);
1558 struct elf_link_hash_entry *h
1559 = elf_link_hash_lookup (htab, "__ehdr_start", FALSE, FALSE, TRUE);
1560
1561 /* Only adjust the export class if the symbol was referenced
1562 and not defined, otherwise leave it alone. */
1563 if (h != NULL
1564 && (h->root.type == bfd_link_hash_new
1565 || h->root.type == bfd_link_hash_undefined
1566 || h->root.type == bfd_link_hash_undefweak
1567 || h->root.type == bfd_link_hash_common))
1568 {
1569 const struct elf_backend_data *bed;
1570 bed = get_elf_backend_data (link_info.output_bfd);
1571 (*bed->elf_backend_hide_symbol) (&link_info, h, TRUE);
1572 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
1573 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
1574 /* Don't leave the symbol undefined. Undefined hidden
1575 symbols typically won't have dynamic relocations, but
1576 we most likely will need dynamic relocations for
1577 __ehdr_start if we are building a PIE or shared
1578 library. */
1579 ehdr_start = &h->root;
1580 ehdr_start_save_type = ehdr_start->type;
1581 memcpy (ehdr_start_save_u,
1582 (char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1583 sizeof ehdr_start_save_u);
1584 ehdr_start->type = bfd_link_hash_defined;
1585 ehdr_start->u.def.section = bfd_abs_section_ptr;
1586 ehdr_start->u.def.value = 0;
1587 }
1588 }
1589
1590 /* If we are going to make any variable assignments, we need to
1591 let the ELF backend know about them in case the variables are
1592 referred to by dynamic objects. */
1593 lang_for_each_statement (ldelf_find_statement_assignment);
1594 }
1595
1596 /* Let the ELF backend work out the sizes of any sections required
1597 by dynamic linking. */
1598 rpath = command_line.rpath;
1599 if (rpath == NULL)
1600 rpath = (const char *) getenv ("LD_RUN_PATH");
1601
1602 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1603 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1604 {
1605 const char *audit_libs = elf_dt_audit (abfd);
1606
1607 /* If the input bfd contains an audit entry, we need to add it as
1608 a dep audit entry. */
1609 if (audit_libs && *audit_libs != '\0')
1610 {
1611 char *cp = xstrdup (audit_libs);
1612 do
1613 {
1614 int more = 0;
1615 char *cp2 = strchr (cp, config.rpath_separator);
1616
1617 if (cp2)
1618 {
1619 *cp2 = '\0';
1620 more = 1;
1621 }
1622
1623 if (cp != NULL && *cp != '\0')
1624 ldelf_append_to_separated_string (&depaudit, cp);
1625
1626 cp = more ? ++cp2 : NULL;
1627 }
1628 while (cp != NULL);
1629 }
1630 }
1631
1632 if (! (bfd_elf_size_dynamic_sections
1633 (link_info.output_bfd, command_line.soname, rpath,
1634 command_line.filter_shlib, audit, depaudit,
1635 (const char * const *) command_line.auxiliary_filters,
1636 &link_info, &sinterp)))
1637 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1638
1639 if (sinterp != NULL)
1640 {
1641 /* Let the user override the dynamic linker we are using. */
1642 if (command_line.interpreter != NULL)
1643 default_interpreter_name = command_line.interpreter;
1644 if (default_interpreter_name != NULL)
1645 {
1646 sinterp->contents = (bfd_byte *) default_interpreter_name;
1647 sinterp->size = strlen ((char *) sinterp->contents) + 1;
1648 }
1649 }
1650
1651 /* Look for any sections named .gnu.warning. As a GNU extensions,
1652 we treat such sections as containing warning messages. We print
1653 out the warning message, and then zero out the section size so
1654 that it does not get copied into the output file. */
1655
1656 {
1657 LANG_FOR_EACH_INPUT_STATEMENT (is)
1658 {
1659 asection *s;
1660 bfd_size_type sz;
1661 char *msg;
1662
1663 if (is->flags.just_syms)
1664 continue;
1665
1666 s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning");
1667 if (s == NULL)
1668 continue;
1669
1670 sz = s->size;
1671 msg = (char *) xmalloc ((size_t) (sz + 1));
1672 if (! bfd_get_section_contents (is->the_bfd, s, msg,
1673 (file_ptr) 0, sz))
1674 einfo (_("%F%P: %pB: can't read contents of section .gnu.warning: %E\n"),
1675 is->the_bfd);
1676 msg[sz] = '\0';
1677 (*link_info.callbacks->warning) (&link_info, msg,
1678 (const char *) NULL, is->the_bfd,
1679 (asection *) NULL, (bfd_vma) 0);
1680 free (msg);
1681
1682 /* Clobber the section size, so that we don't waste space
1683 copying the warning into the output file. If we've already
1684 sized the output section, adjust its size. The adjustment
1685 is on rawsize because targets that size sections early will
1686 have called lang_reset_memory_regions after sizing. */
1687 if (s->output_section != NULL
1688 && s->output_section->rawsize >= s->size)
1689 s->output_section->rawsize -= s->size;
1690
1691 s->size = 0;
1692
1693 /* Also set SEC_EXCLUDE, so that local symbols defined in the
1694 warning section don't get copied to the output. */
1695 s->flags |= SEC_EXCLUDE | SEC_KEEP;
1696 }
1697 }
1698
1699 before_allocation_default ();
1700
1701 if (!bfd_elf_size_dynsym_hash_dynstr (link_info.output_bfd, &link_info))
1702 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1703
1704 if (ehdr_start != NULL)
1705 {
1706 /* If we twiddled __ehdr_start to defined earlier, put it back
1707 as it was. */
1708 ehdr_start->type = ehdr_start_save_type;
1709 memcpy ((char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1710 ehdr_start_save_u,
1711 sizeof ehdr_start_save_u);
1712 }
1713 }
1714 /* Try to open a dynamic archive. This is where we know that ELF
1715 dynamic libraries have an extension of .so (or .sl on oddball systems
1716 like hpux). */
1717
1718 bfd_boolean
1719 ldelf_open_dynamic_archive (const char *arch, search_dirs_type *search,
1720 lang_input_statement_type *entry)
1721 {
1722 const char *filename;
1723 char *string;
1724 size_t len;
1725 bfd_boolean opened = FALSE;
1726
1727 if (! entry->flags.maybe_archive)
1728 return FALSE;
1729
1730 filename = entry->filename;
1731 len = strlen (search->name) + strlen (filename);
1732 if (entry->flags.full_name_provided)
1733 {
1734 len += sizeof "/";
1735 string = (char *) xmalloc (len);
1736 sprintf (string, "%s/%s", search->name, filename);
1737 }
1738 else
1739 {
1740 size_t xlen = 0;
1741
1742 len += strlen (arch) + sizeof "/lib.so";
1743 #ifdef EXTRA_SHLIB_EXTENSION
1744 xlen = (strlen (EXTRA_SHLIB_EXTENSION) > 3
1745 ? strlen (EXTRA_SHLIB_EXTENSION) - 3
1746 : 0);
1747 #endif
1748 string = (char *) xmalloc (len + xlen);
1749 sprintf (string, "%s/lib%s%s.so", search->name, filename, arch);
1750 #ifdef EXTRA_SHLIB_EXTENSION
1751 /* Try the .so extension first. If that fails build a new filename
1752 using EXTRA_SHLIB_EXTENSION. */
1753 opened = ldfile_try_open_bfd (string, entry);
1754 if (!opened)
1755 strcpy (string + len - 4, EXTRA_SHLIB_EXTENSION);
1756 #endif
1757 }
1758
1759 if (!opened && !ldfile_try_open_bfd (string, entry))
1760 {
1761 free (string);
1762 return FALSE;
1763 }
1764
1765 entry->filename = string;
1766
1767 /* We have found a dynamic object to include in the link. The ELF
1768 backend linker will create a DT_NEEDED entry in the .dynamic
1769 section naming this file. If this file includes a DT_SONAME
1770 entry, it will be used. Otherwise, the ELF linker will just use
1771 the name of the file. For an archive found by searching, like
1772 this one, the DT_NEEDED entry should consist of just the name of
1773 the file, without the path information used to find it. Note
1774 that we only need to do this if we have a dynamic object; an
1775 archive will never be referenced by a DT_NEEDED entry.
1776
1777 FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
1778 very pretty. I haven't been able to think of anything that is
1779 pretty, though. */
1780 if (bfd_check_format (entry->the_bfd, bfd_object)
1781 && (entry->the_bfd->flags & DYNAMIC) != 0)
1782 {
1783 ASSERT (entry->flags.maybe_archive && entry->flags.search_dirs);
1784
1785 /* Rather than duplicating the logic above. Just use the
1786 filename we recorded earlier. */
1787
1788 if (!entry->flags.full_name_provided)
1789 filename = lbasename (entry->filename);
1790 bfd_elf_set_dt_needed_name (entry->the_bfd, filename);
1791 }
1792
1793 return TRUE;
1794 }
1795
1796 /* A variant of lang_output_section_find used by place_orphan. */
1797
1798 static lang_output_section_statement_type *
1799 output_rel_find (int isdyn, int rela)
1800 {
1801 lang_output_section_statement_type *lookup;
1802 lang_output_section_statement_type *last = NULL;
1803 lang_output_section_statement_type *last_alloc = NULL;
1804 lang_output_section_statement_type *last_ro_alloc = NULL;
1805 lang_output_section_statement_type *last_rel = NULL;
1806 lang_output_section_statement_type *last_rel_alloc = NULL;
1807
1808 for (lookup = (void *) lang_os_list.head;
1809 lookup != NULL;
1810 lookup = lookup->next)
1811 {
1812 if (lookup->constraint >= 0
1813 && CONST_STRNEQ (lookup->name, ".rel"))
1814 {
1815 int lookrela = lookup->name[4] == 'a';
1816
1817 /* .rel.dyn must come before all other reloc sections, to suit
1818 GNU ld.so. */
1819 if (isdyn)
1820 break;
1821
1822 /* Don't place after .rel.plt as doing so results in wrong
1823 dynamic tags. */
1824 if (strcmp (".plt", lookup->name + 4 + lookrela) == 0)
1825 break;
1826
1827 if (rela == lookrela || last_rel == NULL)
1828 last_rel = lookup;
1829 if ((rela == lookrela || last_rel_alloc == NULL)
1830 && lookup->bfd_section != NULL
1831 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1832 last_rel_alloc = lookup;
1833 }
1834
1835 last = lookup;
1836 if (lookup->bfd_section != NULL
1837 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1838 {
1839 last_alloc = lookup;
1840 if ((lookup->bfd_section->flags & SEC_READONLY) != 0)
1841 last_ro_alloc = lookup;
1842 }
1843 }
1844
1845 if (last_rel_alloc)
1846 return last_rel_alloc;
1847
1848 if (last_rel)
1849 return last_rel;
1850
1851 if (last_ro_alloc)
1852 return last_ro_alloc;
1853
1854 if (last_alloc)
1855 return last_alloc;
1856
1857 return last;
1858 }
1859
1860 /* Return whether IN is suitable to be part of OUT. */
1861
1862 static bfd_boolean
1863 elf_orphan_compatible (asection *in, asection *out)
1864 {
1865 /* Non-zero sh_info implies a section with SHF_INFO_LINK with
1866 unknown semantics for the generic linker, or a SHT_REL/SHT_RELA
1867 section where sh_info specifies a symbol table. (We won't see
1868 SHT_GROUP, SHT_SYMTAB or SHT_DYNSYM sections here.) We clearly
1869 can't merge SHT_REL/SHT_RELA using differing symbol tables, and
1870 shouldn't merge sections with differing unknown semantics. */
1871 if (elf_section_data (out)->this_hdr.sh_info
1872 != elf_section_data (in)->this_hdr.sh_info)
1873 return FALSE;
1874 /* We can't merge with a member of an output section group or merge
1875 two sections with differing SHF_EXCLUDE or other processor and OS
1876 specific flags when doing a relocatable link. */
1877 if (bfd_link_relocatable (&link_info)
1878 && (elf_next_in_group (out) != NULL
1879 || ((elf_section_flags (out) ^ elf_section_flags (in))
1880 & (SHF_MASKPROC | SHF_MASKOS)) != 0))
1881 return FALSE;
1882 return _bfd_elf_match_sections_by_type (link_info.output_bfd, out,
1883 in->owner, in);
1884 }
1885
1886 /* Place an orphan section. We use this to put random SHF_ALLOC
1887 sections in the right segment. */
1888
1889 lang_output_section_statement_type *
1890 ldelf_place_orphan (asection *s, const char *secname, int constraint)
1891 {
1892 static struct orphan_save hold[] =
1893 {
1894 { ".text",
1895 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1896 0, 0, 0, 0 },
1897 { ".rodata",
1898 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1899 0, 0, 0, 0 },
1900 { ".tdata",
1901 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_THREAD_LOCAL,
1902 0, 0, 0, 0 },
1903 { ".data",
1904 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1905 0, 0, 0, 0 },
1906 { ".bss",
1907 SEC_ALLOC,
1908 0, 0, 0, 0 },
1909 { 0,
1910 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1911 0, 0, 0, 0 },
1912 { ".interp",
1913 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1914 0, 0, 0, 0 },
1915 { ".sdata",
1916 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA,
1917 0, 0, 0, 0 },
1918 { ".comment",
1919 SEC_HAS_CONTENTS,
1920 0, 0, 0, 0 },
1921 };
1922 enum orphan_save_index
1923 {
1924 orphan_text = 0,
1925 orphan_rodata,
1926 orphan_tdata,
1927 orphan_data,
1928 orphan_bss,
1929 orphan_rel,
1930 orphan_interp,
1931 orphan_sdata,
1932 orphan_nonalloc
1933 };
1934 static int orphan_init_done = 0;
1935 struct orphan_save *place;
1936 lang_output_section_statement_type *after;
1937 lang_output_section_statement_type *os;
1938 lang_output_section_statement_type *match_by_name = NULL;
1939 int isdyn = 0;
1940 int elfinput = s->owner->xvec->flavour == bfd_target_elf_flavour;
1941 int elfoutput = link_info.output_bfd->xvec->flavour == bfd_target_elf_flavour;
1942 unsigned int sh_type = elfinput ? elf_section_type (s) : SHT_NULL;
1943 flagword flags;
1944 asection *nexts;
1945
1946 if (!bfd_link_relocatable (&link_info)
1947 && link_info.combreloc
1948 && (s->flags & SEC_ALLOC))
1949 {
1950 if (elfinput)
1951 switch (sh_type)
1952 {
1953 case SHT_RELA:
1954 secname = ".rela.dyn";
1955 isdyn = 1;
1956 break;
1957 case SHT_REL:
1958 secname = ".rel.dyn";
1959 isdyn = 1;
1960 break;
1961 default:
1962 break;
1963 }
1964 else if (CONST_STRNEQ (secname, ".rel"))
1965 {
1966 secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn";
1967 isdyn = 1;
1968 }
1969 }
1970
1971 if (!bfd_link_relocatable (&link_info)
1972 && elfinput
1973 && elfoutput
1974 && (s->flags & SEC_ALLOC) != 0
1975 && (elf_tdata (s->owner)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
1976 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
1977 {
1978 /* Find the output mbind section with the same type, attributes
1979 and sh_info field. */
1980 for (os = (void *) lang_os_list.head;
1981 os != NULL;
1982 os = os->next)
1983 if (os->bfd_section != NULL
1984 && !bfd_is_abs_section (os->bfd_section)
1985 && (elf_section_flags (os->bfd_section) & SHF_GNU_MBIND) != 0
1986 && ((s->flags & (SEC_ALLOC
1987 | SEC_LOAD
1988 | SEC_HAS_CONTENTS
1989 | SEC_READONLY
1990 | SEC_CODE))
1991 == (os->bfd_section->flags & (SEC_ALLOC
1992 | SEC_LOAD
1993 | SEC_HAS_CONTENTS
1994 | SEC_READONLY
1995 | SEC_CODE)))
1996 && (elf_section_data (os->bfd_section)->this_hdr.sh_info
1997 == elf_section_data (s)->this_hdr.sh_info))
1998 {
1999 lang_add_section (&os->children, s, NULL, os);
2000 return os;
2001 }
2002
2003 /* Create the output mbind section with the ".mbind." prefix
2004 in section name. */
2005 if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2006 secname = ".mbind.bss";
2007 else if ((s->flags & SEC_READONLY) == 0)
2008 secname = ".mbind.data";
2009 else if ((s->flags & SEC_CODE) == 0)
2010 secname = ".mbind.rodata";
2011 else
2012 secname = ".mbind.text";
2013 elf_tdata (link_info.output_bfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
2014 }
2015
2016 /* Look through the script to see where to place this section. The
2017 script includes entries added by previous lang_insert_orphan
2018 calls, so this loop puts multiple compatible orphans of the same
2019 name into a single output section. */
2020 if (constraint == 0)
2021 for (os = lang_output_section_find (secname);
2022 os != NULL;
2023 os = next_matching_output_section_statement (os, 0))
2024 {
2025 /* If we don't match an existing output section, tell
2026 lang_insert_orphan to create a new output section. */
2027 constraint = SPECIAL;
2028
2029 /* Check to see if we already have an output section statement
2030 with this name, and its bfd section has compatible flags.
2031 If the section already exists but does not have any flags
2032 set, then it has been created by the linker, possibly as a
2033 result of a --section-start command line switch. */
2034 if (os->bfd_section != NULL
2035 && (os->bfd_section->flags == 0
2036 || (((s->flags ^ os->bfd_section->flags)
2037 & (SEC_LOAD | SEC_ALLOC)) == 0
2038 && (!elfinput
2039 || !elfoutput
2040 || elf_orphan_compatible (s, os->bfd_section)))))
2041 {
2042 lang_add_section (&os->children, s, NULL, os);
2043 return os;
2044 }
2045
2046 /* Save unused output sections in case we can match them
2047 against orphans later. */
2048 if (os->bfd_section == NULL)
2049 match_by_name = os;
2050 }
2051
2052 /* If we didn't match an active output section, see if we matched an
2053 unused one and use that. */
2054 if (match_by_name)
2055 {
2056 lang_add_section (&match_by_name->children, s, NULL, match_by_name);
2057 return match_by_name;
2058 }
2059
2060 if (!orphan_init_done)
2061 {
2062 struct orphan_save *ho;
2063
2064 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
2065 if (ho->name != NULL)
2066 {
2067 ho->os = lang_output_section_find (ho->name);
2068 if (ho->os != NULL && ho->os->flags == 0)
2069 ho->os->flags = ho->flags;
2070 }
2071 orphan_init_done = 1;
2072 }
2073
2074 /* If this is a final link, then always put .gnu.warning.SYMBOL
2075 sections into the .text section to get them out of the way. */
2076 if (bfd_link_executable (&link_info)
2077 && CONST_STRNEQ (s->name, ".gnu.warning.")
2078 && hold[orphan_text].os != NULL)
2079 {
2080 os = hold[orphan_text].os;
2081 lang_add_section (&os->children, s, NULL, os);
2082 return os;
2083 }
2084
2085 flags = s->flags;
2086 if (!bfd_link_relocatable (&link_info))
2087 {
2088 nexts = s;
2089 while ((nexts = bfd_get_next_section_by_name (nexts->owner, nexts))
2090 != NULL)
2091 if (nexts->output_section == NULL
2092 && (nexts->flags & SEC_EXCLUDE) == 0
2093 && ((nexts->flags ^ flags) & (SEC_LOAD | SEC_ALLOC)) == 0
2094 && (nexts->owner->flags & DYNAMIC) == 0
2095 && !bfd_input_just_syms (nexts->owner)
2096 && _bfd_elf_match_sections_by_type (nexts->owner, nexts,
2097 s->owner, s))
2098 flags = (((flags ^ SEC_READONLY)
2099 | (nexts->flags ^ SEC_READONLY))
2100 ^ SEC_READONLY);
2101 }
2102
2103 /* Decide which segment the section should go in based on the
2104 section name and section flags. We put loadable .note sections
2105 right after the .interp section, so that the PT_NOTE segment is
2106 stored right after the program headers where the OS can read it
2107 in the first page. */
2108
2109 place = NULL;
2110 if ((flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
2111 place = &hold[orphan_nonalloc];
2112 else if ((flags & SEC_ALLOC) == 0)
2113 ;
2114 else if ((flags & SEC_LOAD) != 0
2115 && (elfinput
2116 ? sh_type == SHT_NOTE
2117 : CONST_STRNEQ (secname, ".note")))
2118 place = &hold[orphan_interp];
2119 else if ((flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
2120 place = &hold[orphan_bss];
2121 else if ((flags & SEC_SMALL_DATA) != 0)
2122 place = &hold[orphan_sdata];
2123 else if ((flags & SEC_THREAD_LOCAL) != 0)
2124 place = &hold[orphan_tdata];
2125 else if ((flags & SEC_READONLY) == 0)
2126 place = &hold[orphan_data];
2127 else if ((flags & SEC_LOAD) != 0
2128 && (elfinput
2129 ? sh_type == SHT_RELA || sh_type == SHT_REL
2130 : CONST_STRNEQ (secname, ".rel")))
2131 place = &hold[orphan_rel];
2132 else if ((flags & SEC_CODE) == 0)
2133 place = &hold[orphan_rodata];
2134 else
2135 place = &hold[orphan_text];
2136
2137 after = NULL;
2138 if (place != NULL)
2139 {
2140 if (place->os == NULL)
2141 {
2142 if (place->name != NULL)
2143 place->os = lang_output_section_find (place->name);
2144 else
2145 {
2146 int rela = elfinput ? sh_type == SHT_RELA : secname[4] == 'a';
2147 place->os = output_rel_find (isdyn, rela);
2148 }
2149 }
2150 after = place->os;
2151 if (after == NULL)
2152 after
2153 = lang_output_section_find_by_flags (s, flags, &place->os,
2154 _bfd_elf_match_sections_by_type);
2155 if (after == NULL)
2156 /* *ABS* is always the first output section statement. */
2157 after = (void *) lang_os_list.head;
2158 }
2159
2160 return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);
2161 }
2162
2163 void
2164 ldelf_before_place_orphans (void)
2165 {
2166 bfd *abfd;
2167
2168 for (abfd = link_info.input_bfds;
2169 abfd != (bfd *) NULL; abfd = abfd->link.next)
2170 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
2171 && bfd_count_sections (abfd) != 0
2172 && !bfd_input_just_syms (abfd))
2173 {
2174 asection *isec;
2175 for (isec = abfd->sections; isec != NULL; isec = isec->next)
2176 {
2177 /* Discard a section if any of its linked-to section has
2178 been discarded. */
2179 asection *linked_to_sec;
2180 for (linked_to_sec = elf_linked_to_section (isec);
2181 linked_to_sec != NULL;
2182 linked_to_sec = elf_linked_to_section (linked_to_sec))
2183 if (discarded_section (linked_to_sec))
2184 {
2185 isec->output_section = bfd_abs_section_ptr;
2186 break;
2187 }
2188 }
2189 }
2190 }
This page took 0.110308 seconds and 4 git commands to generate.