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