1 /* ELF emulation code for targets using elf.em.
2 Copyright (C) 1991-2019 Free Software Foundation, Inc.
4 This file is part of the GNU Binutils.
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.
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.
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. */
23 #include "libiberty.h"
24 #include "filenames.h"
25 #include "safe-ctype.h"
35 #include "ldbuildid.h"
49 /* Style of .note.gnu.build-id section. */
50 const char *ldelf_emit_note_gnu_build_id;
52 /* These variables are required to pass information back and forth
53 between after_open and check_needed and stat_needed and vercheck. */
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;
62 ldelf_after_parse (void)
64 if (bfd_link_pie (&link_info))
65 link_info.flags_1 |= (bfd_vma) DF_1_PIE;
67 if (bfd_link_executable (&link_info)
68 && link_info.nointerp)
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;
74 after_parse_default ();
77 /* Handle the generation of DT_NEEDED tags. */
80 ldelf_load_symbols (lang_input_statement_type *entry)
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;
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
93 if (!entry->flags.add_DT_NEEDED_for_dynamic)
94 link_class |= DYN_NO_ADD_NEEDED;
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"),
102 || (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) == 0)
105 bfd_elf_set_dyn_lib_class (entry->the_bfd,
106 (enum dynamic_lib_link_class) link_class);
108 /* Continue on with normal load_symbols processing. */
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.
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
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. */
130 ldelf_vercheck (lang_input_statement_type *s)
133 struct bfd_link_needed_list *l;
135 if (global_vercheck_failed)
137 if (s->the_bfd == NULL
138 || (bfd_get_file_flags (s->the_bfd) & DYNAMIC) == 0)
141 soname = bfd_elf_get_dt_soname (s->the_bfd);
143 soname = lbasename (bfd_get_filename (s->the_bfd));
145 for (l = global_vercheck_needed; l != NULL; l = l->next)
149 if (filename_cmp (soname, l->name) == 0)
151 /* Probably can't happen, but it's an easy check. */
155 if (strchr (l->name, '/') != NULL)
158 suffix = strstr (l->name, ".so.");
162 suffix += sizeof ".so." - 1;
164 if (filename_ncmp (soname, l->name, suffix - l->name) == 0)
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;
178 /* See if an input file matches a DT_NEEDED entry by running stat on
182 ldelf_stat_needed (lang_input_statement_type *s)
188 if (global_found != NULL)
190 if (s->the_bfd == NULL)
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)
198 if (bfd_stat (s->the_bfd, &st) != 0)
200 einfo (_("%P: %pB: bfd_stat failed: %E\n"), s->the_bfd);
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
211 if (st.st_dev == global_stat.st_dev
212 && st.st_ino == global_stat.st_ino
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. */
228 if (strchr (global_needed->name, '/') != NULL)
230 suffix = strstr (global_needed->name, ".so.");
233 suffix += sizeof ".so." - 1;
235 soname = bfd_elf_get_dt_soname (s->the_bfd);
237 soname = lbasename (s->filename);
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);
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. */
250 ldelf_try_needed (struct dt_needed *needed, int force, int is_linux)
253 const char *name = needed->name;
257 abfd = bfd_openr (name, bfd_get_target (link_info.output_bfd));
261 info_msg (_("attempt to open %s failed\n"), name);
265 /* Linker needs to decompress sections. */
266 abfd->flags |= BFD_DECOMPRESS;
268 if (! bfd_check_format (abfd, bfd_object))
273 if ((bfd_get_file_flags (abfd) & DYNAMIC) == 0)
279 /* For DT_NEEDED, they have to match. */
280 if (abfd->xvec != link_info.output_bfd->xvec)
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. */
293 struct bfd_link_needed_list *needs;
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);
300 global_vercheck_needed = needs;
301 global_vercheck_failed = FALSE;
302 lang_for_each_input_file (ldelf_vercheck);
303 if (global_vercheck_failed)
306 /* Return FALSE to force the caller to move on to try
307 another file on the search path. */
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. */
319 struct bfd_link_needed_list *l;
321 for (l = needs; l != NULL; l = l->next)
322 if (CONST_STRNEQ (l->name, "libc.so"))
333 /* We've found a dynamic object matching the DT_NEEDED entry. */
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. */
343 if (bfd_stat (abfd, &global_stat) != 0)
344 einfo (_("%F%P: %pB: bfd_stat failed: %E\n"), abfd);
346 /* First strip off everything before the last '/'. */
347 soname = lbasename (bfd_get_filename (abfd));
350 info_msg (_("found %s at %s\n"), soname, name);
353 lang_for_each_input_file (ldelf_stat_needed);
354 if (global_found != NULL)
356 /* Return TRUE to indicate that we found the file, even though
357 we aren't going to do anything with it. */
361 /* Specify the soname to use. */
362 bfd_elf_set_dt_needed_name (abfd, soname);
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;
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;
376 bfd_elf_set_dyn_lib_class (abfd, (enum dynamic_lib_link_class) link_class);
378 /* Add this file into the symbol table. */
379 if (! bfd_link_add_symbols (abfd, &link_info))
380 einfo (_("%F%P: %pB: error adding symbols: %E\n"), abfd);
385 /* Search for a needed file in a path. */
388 ldelf_search_needed (const char *path, struct dt_needed *n, int force,
389 int is_linux, int elfsize)
392 const char *name = n->name;
394 struct dt_needed needed;
397 return ldelf_try_needed (n, force, is_linux);
399 if (path == NULL || *path == '\0')
403 needed.name = n->name;
410 char *filename, *sset;
412 s = strchr (path, config.rpath_separator);
414 s = path + strlen (path);
416 #if HAVE_DOS_BASED_FILE_SYSTEM
417 /* Assume a match on the second char is part of drive specifier. */
418 else if (config.rpath_separator == ':'
422 s = strchr (s + 1, config.rpath_separator);
424 s = path + strlen (path);
427 filename = (char *) xmalloc (s - path + len + 2);
432 memcpy (filename, path, s - path);
433 filename[s - path] = '/';
434 sset = filename + (s - path) + 1;
438 /* PR 20535: Support the same pseudo-environment variables that
439 are supported by ld.so. Namely, $ORIGIN, $LIB and $PLATFORM.
440 Since there can be more than one occurrence of these tokens in
441 the path we loop until no more are found. Since we might not
442 be able to substitute some of the tokens we maintain an offset
443 into the filename for where we should begin our scan. */
444 while ((var = strchr (filename + offset, '$')) != NULL)
446 /* The ld.so manual page does not say, but I am going to assume that
447 these tokens are terminated by a directory separator character
448 (/) or the end of the string. There is also an implication that
449 $ORIGIN should only be used at the start of a path, but that is
452 The ld.so manual page also states that it allows ${ORIGIN},
453 ${LIB} and ${PLATFORM}, so these are supported as well.
455 FIXME: The code could be a lot cleverer about allocating space
456 for the processed string. */
457 char * end = strchr (var, '/');
458 const char *replacement = NULL;
460 char * freeme = NULL;
461 unsigned flen = strlen (filename);
464 /* Temporarily terminate the filename at the end of the token. */
472 if (strcmp (v, "RIGIN") == 0 || strcmp (v, "RIGIN}") == 0)
474 /* ORIGIN - replace with the full path to the directory
475 containing the program or shared object. */
476 if (needed.by == NULL)
478 if (link_info.output_bfd == NULL)
483 replacement = bfd_get_filename (link_info.output_bfd);
486 replacement = bfd_get_filename (needed.by);
492 if (replacement[0] == '/')
493 freeme = xstrdup (replacement);
496 char * current_dir = getpwd ();
498 freeme = xmalloc (strlen (replacement)
499 + strlen (current_dir) + 2);
500 sprintf (freeme, "%s/%s", current_dir, replacement);
503 replacement = freeme;
504 if ((slash = strrchr (replacement, '/')) != NULL)
511 if (strcmp (v, "IB") == 0 || strcmp (v, "IB}") == 0)
513 /* LIB - replace with "lib" in 32-bit environments
514 and "lib64" in 64-bit environments. */
518 case 32: replacement = "lib"; break;
519 case 64: replacement = "lib64"; break;
527 /* Supporting $PLATFORM in a cross-hosted environment is not
528 possible. Supporting it in a native environment involves
529 loading the <sys/auxv.h> header file which loads the
530 system <elf.h> header file, which conflicts with the
531 "include/elf/mips.h" header file. */
539 char * filename2 = xmalloc (flen + strlen (replacement));
543 sprintf (filename2, "%.*s%s/%s",
544 (int)(var - filename), filename,
545 replacement, end + 1);
546 offset = (var - filename) + 1 + strlen (replacement);
550 sprintf (filename2, "%.*s%s",
551 (int)(var - filename), filename,
553 offset = var - filename + strlen (replacement);
557 filename = filename2;
558 /* There is no need to restore the path separator (when
559 end != NULL) as we have replaced the entire string. */
564 /* We only issue an "unrecognised" message in verbose mode
565 as the $<foo> token might be a legitimate component of
566 a path name in the target's file system. */
567 info_msg (_("unrecognised or unsupported token "
568 "'%s' in search path\n"), var);
570 /* Restore the path separator. */
573 /* PR 20784: Make sure that we resume the scan *after*
574 the token that we could not replace. */
575 offset = (var + 1) - filename;
581 needed.name = filename;
583 if (ldelf_try_needed (&needed, force, is_linux))
596 /* Prefix the sysroot to absolute paths in PATH, a string containing
597 paths separated by config.rpath_separator. If running on a DOS
598 file system, paths containing a drive spec won't have the sysroot
599 prefix added, unless the sysroot also specifies the same drive. */
602 ldelf_add_sysroot (const char *path)
607 int dos_drive_sysroot = HAS_DRIVE_SPEC (ld_sysroot);
609 len = strlen (ld_sysroot);
610 for (extra = 0, p = path; ; )
612 int dos_drive = HAS_DRIVE_SPEC (p);
616 if (IS_DIR_SEPARATOR (*p)
618 || (dos_drive_sysroot
619 && ld_sysroot[0] == p[-2])))
621 if (dos_drive && dos_drive_sysroot)
626 p = strchr (p, config.rpath_separator);
632 ret = xmalloc (strlen (path) + extra + 1);
634 for (q = ret, p = path; ; )
637 int dos_drive = HAS_DRIVE_SPEC (p);
644 if (IS_DIR_SEPARATOR (*p)
646 || (dos_drive_sysroot
647 && ld_sysroot[0] == p[-2])))
649 if (dos_drive && dos_drive_sysroot)
651 strcpy (q, ld_sysroot + 2);
656 strcpy (q, ld_sysroot);
660 end = strchr (p, config.rpath_separator);
663 size_t n = end - p + 1;
678 /* Read the system search path the FreeBSD way rather than the Linux way. */
679 #ifdef HAVE_ELF_HINTS_H
680 #include <elf-hints.h>
682 #include "elf-hints-local.h"
686 ldelf_check_ld_elf_hints (const struct bfd_link_needed_list *l, int force,
689 static bfd_boolean initialized;
690 static const char *ld_elf_hints;
691 struct dt_needed needed;
698 tmppath = concat (ld_sysroot, _PATH_ELF_HINTS, (const char *) NULL);
699 f = fopen (tmppath, FOPEN_RB);
703 struct elfhints_hdr hdr;
705 if (fread (&hdr, 1, sizeof (hdr), f) == sizeof (hdr)
706 && hdr.magic == ELFHINTS_MAGIC
709 if (fseek (f, hdr.strtab + hdr.dirlist, SEEK_SET) != -1)
713 b = xmalloc (hdr.dirlistlen + 1);
714 if (fread (b, 1, hdr.dirlistlen + 1, f) ==
716 ld_elf_hints = ldelf_add_sysroot (b);
727 if (ld_elf_hints == NULL)
731 needed.name = l->name;
732 return ldelf_search_needed (ld_elf_hints, &needed, force, FALSE, elfsize);
735 /* For a native linker, check the file /etc/ld.so.conf for directories
736 in which we may find shared libraries. /etc/ld.so.conf is really
737 only meaningful on Linux. */
739 struct ldelf_ld_so_conf
746 ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *, const char *);
749 ldelf_parse_ld_so_conf_include (struct ldelf_ld_so_conf *info,
750 const char *filename,
758 if (pattern[0] != '/')
760 char *p = strrchr (filename, '/');
761 size_t patlen = strlen (pattern) + 1;
763 newp = xmalloc (p - filename + 1 + patlen);
764 memcpy (newp, filename, p - filename + 1);
765 memcpy (newp + (p - filename + 1), pattern, patlen);
770 if (glob (pattern, 0, NULL, &gl) == 0)
774 for (i = 0; i < gl.gl_pathc; ++i)
775 ldelf_parse_ld_so_conf (info, gl.gl_pathv[i]);
779 /* If we do not have glob, treat the pattern as a literal filename. */
780 ldelf_parse_ld_so_conf (info, pattern);
788 ldelf_parse_ld_so_conf (struct ldelf_ld_so_conf *info, const char *filename)
790 FILE *f = fopen (filename, FOPEN_RT);
798 line = xmalloc (linelen);
803 /* Normally this would use getline(3), but we need to be portable. */
804 while ((q = fgets (p, linelen - (p - line), f)) != NULL
805 && strlen (q) == linelen - (p - line) - 1
806 && line[linelen - 2] != '\n')
808 line = xrealloc (line, 2 * linelen);
809 p = line + linelen - 1;
813 if (q == NULL && p == line)
816 p = strchr (line, '\n');
820 /* Because the file format does not know any form of quoting we
821 can search forward for the next '#' character and if found
822 make it terminating the line. */
823 p = strchr (line, '#');
827 /* Remove leading whitespace. NUL is no whitespace character. */
829 while (*p == ' ' || *p == '\f' || *p == '\r' || *p == '\t' || *p == '\v')
832 /* If the line is blank it is ignored. */
836 if (CONST_STRNEQ (p, "include") && (p[7] == ' ' || p[7] == '\t'))
842 while (*p == ' ' || *p == '\t')
850 while (*p != ' ' && *p != '\t' && *p)
856 ldelf_parse_ld_so_conf_include (info, filename, dir);
863 while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f'
864 && *p != '\r' && *p != '\v')
867 while (p != dir && p[-1] == '/')
869 if (info->path == NULL)
871 info->alloc = p - dir + 1 + 256;
872 info->path = xmalloc (info->alloc);
877 if (info->len + 1 + (p - dir) >= info->alloc)
879 info->alloc += p - dir + 256;
880 info->path = xrealloc (info->path, info->alloc);
882 info->path[info->len++] = config.rpath_separator;
884 memcpy (info->path + info->len, dir, p - dir);
885 info->len += p - dir;
886 info->path[info->len] = '\0';
896 ldelf_check_ld_so_conf (const struct bfd_link_needed_list *l, int force,
899 static bfd_boolean initialized;
900 static const char *ld_so_conf;
901 struct dt_needed needed;
906 struct ldelf_ld_so_conf info;
909 info.len = info.alloc = 0;
910 tmppath = concat (ld_sysroot, "${prefix}/etc/ld.so.conf",
911 (const char *) NULL);
912 if (!ldelf_parse_ld_so_conf (&info, tmppath))
915 tmppath = concat (ld_sysroot, "/etc/ld.so.conf",
916 (const char *) NULL);
917 ldelf_parse_ld_so_conf (&info, tmppath);
923 ld_so_conf = ldelf_add_sysroot (info.path);
929 if (ld_so_conf == NULL)
934 needed.name = l->name;
935 return ldelf_search_needed (ld_so_conf, &needed, force, TRUE, elfsize);
938 /* See if an input file matches a DT_NEEDED entry by name. */
941 ldelf_check_needed (lang_input_statement_type *s)
945 /* Stop looking if we've found a loaded lib. */
946 if (global_found != NULL
947 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
948 & DYN_AS_NEEDED) == 0)
951 if (s->filename == NULL || s->the_bfd == NULL)
954 /* Don't look for a second non-loaded as-needed lib. */
955 if (global_found != NULL
956 && (bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
959 if (filename_cmp (s->filename, global_needed->name) == 0)
965 if (s->flags.search_dirs)
967 const char *f = strrchr (s->filename, '/');
969 && filename_cmp (f + 1, global_needed->name) == 0)
976 soname = bfd_elf_get_dt_soname (s->the_bfd);
978 && filename_cmp (soname, global_needed->name) == 0)
985 /* This is called after all the input files have been opened. */
988 ldelf_after_open (int use_libpath, int native, int is_linux, int is_freebsd,
991 struct bfd_link_needed_list *needed, *l;
992 struct elf_link_hash_table *htab;
996 after_open_default ();
998 htab = elf_hash_table (&link_info);
999 if (!is_elf_hash_table (htab))
1002 if (command_line.out_implib_filename)
1004 unlink_if_ordinary (command_line.out_implib_filename);
1005 link_info.out_implib_bfd
1006 = bfd_openw (command_line.out_implib_filename,
1007 bfd_get_target (link_info.output_bfd));
1009 if (link_info.out_implib_bfd == NULL)
1011 einfo (_("%F%P: %s: can't open for writing: %E\n"),
1012 command_line.out_implib_filename);
1016 if (ldelf_emit_note_gnu_build_id != NULL)
1018 /* Find an ELF input. */
1019 for (abfd = link_info.input_bfds;
1020 abfd != (bfd *) NULL; abfd = abfd->link.next)
1021 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1022 && bfd_count_sections (abfd) != 0
1023 && !bfd_input_just_syms (abfd))
1026 /* PR 10555: If there are no ELF input files do not try to
1027 create a .note.gnu-build-id section. */
1029 || !ldelf_setup_build_id (abfd))
1031 free ((char *) ldelf_emit_note_gnu_build_id);
1032 ldelf_emit_note_gnu_build_id = NULL;
1036 get_elf_backend_data (link_info.output_bfd)->setup_gnu_properties (&link_info);
1038 if (bfd_link_relocatable (&link_info))
1040 if (link_info.execstack == !link_info.noexecstack)
1042 /* PR ld/16744: If "-z [no]execstack" has been specified on the
1043 command line and we are perfoming a relocatable link then no
1044 PT_GNU_STACK segment will be created and so the
1045 linkinfo.[no]execstack values set in _handle_option() will have no
1046 effect. Instead we create a .note.GNU-stack section in much the
1047 same way as the assembler does with its --[no]execstack option. */
1048 flagword flags = SEC_READONLY | (link_info.execstack ? SEC_CODE : 0);
1049 (void) bfd_make_section_with_flags (link_info.input_bfds,
1050 ".note.GNU-stack", flags);
1055 if (!link_info.traditional_format)
1058 bfd_boolean warn_eh_frame = FALSE;
1061 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1065 if (bfd_input_just_syms (abfd))
1068 for (s = abfd->sections; s && type < COMPACT_EH_HDR; s = s->next)
1070 const char *name = bfd_section_name (s);
1072 if (bfd_is_abs_section (s->output_section))
1074 if (CONST_STRNEQ (name, ".eh_frame_entry"))
1075 type = COMPACT_EH_HDR;
1076 else if (strcmp (name, ".eh_frame") == 0 && s->size > 8)
1077 type = DWARF2_EH_HDR;
1086 else if (seen_type != type)
1088 einfo (_("%F%P: compact frame descriptions incompatible with"
1089 " DWARF2 .eh_frame from %pB\n"),
1090 type == DWARF2_EH_HDR ? abfd : elfbfd);
1095 && (type == COMPACT_EH_HDR
1096 || link_info.eh_frame_hdr_type != 0))
1098 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1101 warn_eh_frame = TRUE;
1105 if (seen_type == COMPACT_EH_HDR)
1106 link_info.eh_frame_hdr_type = COMPACT_EH_HDR;
1110 const struct elf_backend_data *bed;
1112 bed = get_elf_backend_data (elfbfd);
1113 s = bfd_make_section_with_flags (elfbfd, ".eh_frame_hdr",
1114 bed->dynamic_sec_flags
1117 && bfd_set_section_alignment (s, 2))
1119 htab->eh_info.hdr_sec = s;
1120 warn_eh_frame = FALSE;
1124 einfo (_("%P: warning: cannot create .eh_frame_hdr section,"
1125 " --eh-frame-hdr ignored\n"));
1128 /* Get the list of files which appear in DT_NEEDED entries in
1129 dynamic objects included in the link (often there will be none).
1130 For each such file, we want to track down the corresponding
1131 library, and include the symbol table in the link. This is what
1132 the runtime dynamic linker will do. Tracking the files down here
1133 permits one dynamic object to include another without requiring
1134 special action by the person doing the link. Note that the
1135 needed list can actually grow while we are stepping through this
1137 needed = bfd_elf_get_needed_list (link_info.output_bfd, &link_info);
1138 for (l = needed; l != NULL; l = l->next)
1140 struct bfd_link_needed_list *ll;
1141 struct dt_needed n, nn;
1144 /* If the lib that needs this one was --as-needed and wasn't
1145 found to be needed, then this lib isn't needed either. */
1147 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0)
1150 /* Skip the lib if --no-copy-dt-needed-entries and
1151 --allow-shlib-undefined is in effect. */
1153 && link_info.unresolved_syms_in_shared_libs == RM_IGNORE
1154 && (bfd_elf_get_dyn_lib_class (l->by) & DYN_NO_ADD_NEEDED) != 0)
1157 /* If we've already seen this file, skip it. */
1158 for (ll = needed; ll != l; ll = ll->next)
1160 || (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0)
1161 && strcmp (ll->name, l->name) == 0)
1166 /* See if this file was included in the link explicitly. */
1168 global_found = NULL;
1169 lang_for_each_input_file (ldelf_check_needed);
1170 if (global_found != NULL
1171 && (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
1172 & DYN_AS_NEEDED) == 0)
1179 info_msg (_("%s needed by %pB\n"), l->name, l->by);
1181 /* As-needed libs specified on the command line (or linker script)
1182 take priority over libs found in search dirs. */
1183 if (global_found != NULL)
1185 nn.name = global_found->filename;
1186 if (ldelf_try_needed (&nn, TRUE, is_linux))
1190 /* We need to find this file and include the symbol table. We
1191 want to search for the file in the same way that the dynamic
1192 linker will search. That means that we want to use
1193 rpath_link, rpath, then the environment variable
1194 LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH
1195 entries (native only), then the linker script LIB_SEARCH_DIRS.
1196 We do not search using the -L arguments.
1198 We search twice. The first time, we skip objects which may
1199 introduce version mismatches. The second time, we force
1200 their use. See ldelf_vercheck comment. */
1201 for (force = 0; force < 2; force++)
1204 search_dirs_type *search;
1206 struct bfd_link_needed_list *rp;
1209 if (ldelf_search_needed (command_line.rpath_link, &n, force,
1215 path = command_line.rpath;
1218 path = ldelf_add_sysroot (path);
1219 found = ldelf_search_needed (path, &n, force,
1221 free ((char *) path);
1228 if (command_line.rpath_link == NULL
1229 && command_line.rpath == NULL)
1231 path = (const char *) getenv ("LD_RUN_PATH");
1233 && ldelf_search_needed (path, &n, force,
1237 path = (const char *) getenv ("LD_LIBRARY_PATH");
1239 && ldelf_search_needed (path, &n, force,
1246 rp = bfd_elf_get_runpath_list (link_info.output_bfd, &link_info);
1247 for (; !found && rp != NULL; rp = rp->next)
1249 path = ldelf_add_sysroot (rp->name);
1250 found = (rp->by == l->by
1251 && ldelf_search_needed (path, &n, force,
1252 is_linux, elfsize));
1253 free ((char *) path);
1259 && ldelf_check_ld_elf_hints (l, force, elfsize))
1263 && ldelf_check_ld_so_conf (l, force, elfsize))
1267 len = strlen (l->name);
1268 for (search = search_head; search != NULL; search = search->next)
1272 if (search->cmdline)
1274 filename = (char *) xmalloc (strlen (search->name) + len + 2);
1275 sprintf (filename, "%s/%s", search->name, l->name);
1277 if (ldelf_try_needed (&nn, force, is_linux))
1288 einfo (_("%P: warning: %s, needed by %pB, not found "
1289 "(try using -rpath or -rpath-link)\n"),
1293 if (link_info.eh_frame_hdr_type == COMPACT_EH_HDR)
1294 if (!bfd_elf_parse_eh_frame_entries (NULL, &link_info))
1295 einfo (_("%F%P: failed to parse EH frame entries\n"));
1298 static bfd_size_type
1299 id_note_section_size (bfd *abfd ATTRIBUTE_UNUSED)
1301 const char *style = ldelf_emit_note_gnu_build_id;
1303 bfd_size_type build_id_size;
1305 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1306 size = (size + 3) & -(bfd_size_type) 4;
1308 build_id_size = compute_build_id_size (style);
1310 size += build_id_size;
1318 write_build_id (bfd *abfd)
1320 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1321 struct elf_obj_tdata *t = elf_tdata (abfd);
1324 Elf_Internal_Shdr *i_shdr;
1325 unsigned char *contents, *id_bits;
1328 Elf_External_Note *e_note;
1330 style = t->o->build_id.style;
1331 asec = t->o->build_id.sec;
1332 if (bfd_is_abs_section (asec->output_section))
1334 einfo (_("%P: warning: .note.gnu.build-id section discarded,"
1335 " --build-id ignored\n"));
1338 i_shdr = &elf_section_data (asec->output_section)->this_hdr;
1340 if (i_shdr->contents == NULL)
1342 if (asec->contents == NULL)
1343 asec->contents = (unsigned char *) xmalloc (asec->size);
1344 contents = asec->contents;
1347 contents = i_shdr->contents + asec->output_offset;
1349 e_note = (Elf_External_Note *) contents;
1350 size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
1351 size = (size + 3) & -(bfd_size_type) 4;
1352 id_bits = contents + size;
1353 size = asec->size - size;
1355 bfd_h_put_32 (abfd, sizeof "GNU", &e_note->namesz);
1356 bfd_h_put_32 (abfd, size, &e_note->descsz);
1357 bfd_h_put_32 (abfd, NT_GNU_BUILD_ID, &e_note->type);
1358 memcpy (e_note->name, "GNU", sizeof "GNU");
1360 generate_build_id (abfd, style, bed->s->checksum_contents, id_bits, size);
1362 position = i_shdr->sh_offset + asec->output_offset;
1364 return (bfd_seek (abfd, position, SEEK_SET) == 0
1365 && bfd_bwrite (contents, size, abfd) == size);
1368 /* Make .note.gnu.build-id section, and set up elf_tdata->build_id. */
1371 ldelf_setup_build_id (bfd *ibfd)
1377 size = id_note_section_size (ibfd);
1380 einfo (_("%P: warning: unrecognized --build-id style ignored\n"));
1384 flags = (SEC_ALLOC | SEC_LOAD | SEC_IN_MEMORY
1385 | SEC_LINKER_CREATED | SEC_READONLY | SEC_DATA);
1386 s = bfd_make_section_with_flags (ibfd, ".note.gnu.build-id", flags);
1387 if (s != NULL && bfd_set_section_alignment (s, 2))
1389 struct elf_obj_tdata *t = elf_tdata (link_info.output_bfd);
1390 t->o->build_id.after_write_object_contents = &write_build_id;
1391 t->o->build_id.style = ldelf_emit_note_gnu_build_id;
1392 t->o->build_id.sec = s;
1393 elf_section_type (s) = SHT_NOTE;
1398 einfo (_("%P: warning: cannot create .note.gnu.build-id section,"
1399 " --build-id ignored\n"));
1403 /* Look through an expression for an assignment statement. */
1406 ldelf_find_exp_assignment (etree_type *exp)
1408 bfd_boolean provide = FALSE;
1410 switch (exp->type.node_class)
1413 case etree_provided:
1417 /* We call record_link_assignment even if the symbol is defined.
1418 This is because if it is defined by a dynamic object, we
1419 actually want to use the value defined by the linker script,
1420 not the value from the dynamic object (because we are setting
1421 symbols like etext). If the symbol is defined by a regular
1422 object, then, as it happens, calling record_link_assignment
1424 if (strcmp (exp->assign.dst, ".") != 0)
1426 if (!bfd_elf_record_link_assignment (link_info.output_bfd,
1428 exp->assign.dst, provide,
1429 exp->assign.hidden))
1430 einfo (_("%F%P: failed to record assignment to %s: %E\n"),
1433 ldelf_find_exp_assignment (exp->assign.src);
1437 ldelf_find_exp_assignment (exp->binary.lhs);
1438 ldelf_find_exp_assignment (exp->binary.rhs);
1442 ldelf_find_exp_assignment (exp->trinary.cond);
1443 ldelf_find_exp_assignment (exp->trinary.lhs);
1444 ldelf_find_exp_assignment (exp->trinary.rhs);
1448 ldelf_find_exp_assignment (exp->unary.child);
1456 /* This is called by the before_allocation routine via
1457 lang_for_each_statement. It locates any assignment statements, and
1458 tells the ELF backend about them, in case they are assignments to
1459 symbols which are referred to by dynamic objects. */
1462 ldelf_find_statement_assignment (lang_statement_union_type *s)
1464 if (s->header.type == lang_assignment_statement_enum)
1465 ldelf_find_exp_assignment (s->assignment_statement.exp);
1468 /* Used by before_allocation and handle_option. */
1471 ldelf_append_to_separated_string (char **to, char *op_arg)
1474 *to = xstrdup (op_arg);
1477 size_t to_len = strlen (*to);
1478 size_t op_arg_len = strlen (op_arg);
1482 /* First see whether OPTARG is already in the path. */
1485 if (strncmp (op_arg, cp, op_arg_len) == 0
1486 && (cp[op_arg_len] == 0
1487 || cp[op_arg_len] == config.rpath_separator))
1491 /* Not yet found. */
1492 cp = strchr (cp, config.rpath_separator);
1500 buf = xmalloc (to_len + op_arg_len + 2);
1501 sprintf (buf, "%s%c%s", *to,
1502 config.rpath_separator, op_arg);
1509 /* This is called after the sections have been attached to output
1510 sections, but before any sizes or addresses have been set. */
1513 ldelf_before_allocation (char *audit, char *depaudit,
1514 const char *default_interpreter_name)
1519 struct bfd_link_hash_entry *ehdr_start = NULL;
1520 unsigned char ehdr_start_save_type = 0;
1521 char ehdr_start_save_u[sizeof ehdr_start->u
1522 - sizeof ehdr_start->u.def.next] = "";
1524 if (is_elf_hash_table (link_info.hash))
1526 _bfd_elf_tls_setup (link_info.output_bfd, &link_info);
1528 /* Make __ehdr_start hidden if it has been referenced, to
1529 prevent the symbol from being dynamic. */
1530 if (!bfd_link_relocatable (&link_info))
1532 struct elf_link_hash_table *htab = elf_hash_table (&link_info);
1533 struct elf_link_hash_entry *h
1534 = elf_link_hash_lookup (htab, "__ehdr_start", FALSE, FALSE, TRUE);
1536 /* Only adjust the export class if the symbol was referenced
1537 and not defined, otherwise leave it alone. */
1539 && (h->root.type == bfd_link_hash_new
1540 || h->root.type == bfd_link_hash_undefined
1541 || h->root.type == bfd_link_hash_undefweak
1542 || h->root.type == bfd_link_hash_common))
1544 const struct elf_backend_data *bed;
1545 bed = get_elf_backend_data (link_info.output_bfd);
1546 (*bed->elf_backend_hide_symbol) (&link_info, h, TRUE);
1547 if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
1548 h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
1549 /* Don't leave the symbol undefined. Undefined hidden
1550 symbols typically won't have dynamic relocations, but
1551 we most likely will need dynamic relocations for
1552 __ehdr_start if we are building a PIE or shared
1554 ehdr_start = &h->root;
1555 ehdr_start_save_type = ehdr_start->type;
1556 memcpy (ehdr_start_save_u,
1557 (char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1558 sizeof ehdr_start_save_u);
1559 ehdr_start->type = bfd_link_hash_defined;
1560 ehdr_start->u.def.section = bfd_abs_section_ptr;
1561 ehdr_start->u.def.value = 0;
1565 /* If we are going to make any variable assignments, we need to
1566 let the ELF backend know about them in case the variables are
1567 referred to by dynamic objects. */
1568 lang_for_each_statement (ldelf_find_statement_assignment);
1571 /* Let the ELF backend work out the sizes of any sections required
1572 by dynamic linking. */
1573 rpath = command_line.rpath;
1575 rpath = (const char *) getenv ("LD_RUN_PATH");
1577 for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
1578 if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
1580 const char *audit_libs = elf_dt_audit (abfd);
1582 /* If the input bfd contains an audit entry, we need to add it as
1583 a dep audit entry. */
1584 if (audit_libs && *audit_libs != '\0')
1586 char *cp = xstrdup (audit_libs);
1590 char *cp2 = strchr (cp, config.rpath_separator);
1598 if (cp != NULL && *cp != '\0')
1599 ldelf_append_to_separated_string (&depaudit, cp);
1601 cp = more ? ++cp2 : NULL;
1607 if (! (bfd_elf_size_dynamic_sections
1608 (link_info.output_bfd, command_line.soname, rpath,
1609 command_line.filter_shlib, audit, depaudit,
1610 (const char * const *) command_line.auxiliary_filters,
1611 &link_info, &sinterp)))
1612 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1614 if (sinterp != NULL)
1616 /* Let the user override the dynamic linker we are using. */
1617 if (command_line.interpreter != NULL)
1618 default_interpreter_name = command_line.interpreter;
1619 if (default_interpreter_name != NULL)
1621 sinterp->contents = (bfd_byte *) default_interpreter_name;
1622 sinterp->size = strlen ((char *) sinterp->contents) + 1;
1626 /* Look for any sections named .gnu.warning. As a GNU extensions,
1627 we treat such sections as containing warning messages. We print
1628 out the warning message, and then zero out the section size so
1629 that it does not get copied into the output file. */
1632 LANG_FOR_EACH_INPUT_STATEMENT (is)
1638 if (is->flags.just_syms)
1641 s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning");
1646 msg = (char *) xmalloc ((size_t) (sz + 1));
1647 if (! bfd_get_section_contents (is->the_bfd, s, msg,
1649 einfo (_("%F%P: %pB: can't read contents of section .gnu.warning: %E\n"),
1652 (*link_info.callbacks->warning) (&link_info, msg,
1653 (const char *) NULL, is->the_bfd,
1654 (asection *) NULL, (bfd_vma) 0);
1657 /* Clobber the section size, so that we don't waste space
1658 copying the warning into the output file. If we've already
1659 sized the output section, adjust its size. The adjustment
1660 is on rawsize because targets that size sections early will
1661 have called lang_reset_memory_regions after sizing. */
1662 if (s->output_section != NULL
1663 && s->output_section->rawsize >= s->size)
1664 s->output_section->rawsize -= s->size;
1668 /* Also set SEC_EXCLUDE, so that local symbols defined in the
1669 warning section don't get copied to the output. */
1670 s->flags |= SEC_EXCLUDE | SEC_KEEP;
1674 before_allocation_default ();
1676 if (!bfd_elf_size_dynsym_hash_dynstr (link_info.output_bfd, &link_info))
1677 einfo (_("%F%P: failed to set dynamic section sizes: %E\n"));
1679 if (ehdr_start != NULL)
1681 /* If we twiddled __ehdr_start to defined earlier, put it back
1683 ehdr_start->type = ehdr_start_save_type;
1684 memcpy ((char *) &ehdr_start->u + sizeof ehdr_start->u.def.next,
1686 sizeof ehdr_start_save_u);
1689 /* Try to open a dynamic archive. This is where we know that ELF
1690 dynamic libraries have an extension of .so (or .sl on oddball systems
1694 ldelf_open_dynamic_archive (const char *arch, search_dirs_type *search,
1695 lang_input_statement_type *entry)
1697 const char *filename;
1700 bfd_boolean opened = FALSE;
1702 if (! entry->flags.maybe_archive)
1705 filename = entry->filename;
1706 len = strlen (search->name) + strlen (filename);
1707 if (entry->flags.full_name_provided)
1710 string = (char *) xmalloc (len);
1711 sprintf (string, "%s/%s", search->name, filename);
1717 len += strlen (arch) + sizeof "/lib.so";
1718 #ifdef EXTRA_SHLIB_EXTENSION
1719 xlen = (strlen (EXTRA_SHLIB_EXTENSION) > 3
1720 ? strlen (EXTRA_SHLIB_EXTENSION) - 3
1723 string = (char *) xmalloc (len + xlen);
1724 sprintf (string, "%s/lib%s%s.so", search->name, filename, arch);
1725 #ifdef EXTRA_SHLIB_EXTENSION
1726 /* Try the .so extension first. If that fails build a new filename
1727 using EXTRA_SHLIB_EXTENSION. */
1728 opened = ldfile_try_open_bfd (string, entry);
1730 strcpy (string + len - 4, EXTRA_SHLIB_EXTENSION);
1734 if (!opened && !ldfile_try_open_bfd (string, entry))
1740 entry->filename = string;
1742 /* We have found a dynamic object to include in the link. The ELF
1743 backend linker will create a DT_NEEDED entry in the .dynamic
1744 section naming this file. If this file includes a DT_SONAME
1745 entry, it will be used. Otherwise, the ELF linker will just use
1746 the name of the file. For an archive found by searching, like
1747 this one, the DT_NEEDED entry should consist of just the name of
1748 the file, without the path information used to find it. Note
1749 that we only need to do this if we have a dynamic object; an
1750 archive will never be referenced by a DT_NEEDED entry.
1752 FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
1753 very pretty. I haven't been able to think of anything that is
1755 if (bfd_check_format (entry->the_bfd, bfd_object)
1756 && (entry->the_bfd->flags & DYNAMIC) != 0)
1758 ASSERT (entry->flags.maybe_archive && entry->flags.search_dirs);
1760 /* Rather than duplicating the logic above. Just use the
1761 filename we recorded earlier. */
1763 if (!entry->flags.full_name_provided)
1764 filename = lbasename (entry->filename);
1765 bfd_elf_set_dt_needed_name (entry->the_bfd, filename);
1771 /* A variant of lang_output_section_find used by place_orphan. */
1773 static lang_output_section_statement_type *
1774 output_rel_find (int isdyn, int rela)
1776 lang_output_section_statement_type *lookup;
1777 lang_output_section_statement_type *last = NULL;
1778 lang_output_section_statement_type *last_alloc = NULL;
1779 lang_output_section_statement_type *last_ro_alloc = NULL;
1780 lang_output_section_statement_type *last_rel = NULL;
1781 lang_output_section_statement_type *last_rel_alloc = NULL;
1783 for (lookup = &lang_os_list.head->output_section_statement;
1785 lookup = lookup->next)
1787 if (lookup->constraint >= 0
1788 && CONST_STRNEQ (lookup->name, ".rel"))
1790 int lookrela = lookup->name[4] == 'a';
1792 /* .rel.dyn must come before all other reloc sections, to suit
1797 /* Don't place after .rel.plt as doing so results in wrong
1799 if (strcmp (".plt", lookup->name + 4 + lookrela) == 0)
1802 if (rela == lookrela || last_rel == NULL)
1804 if ((rela == lookrela || last_rel_alloc == NULL)
1805 && lookup->bfd_section != NULL
1806 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1807 last_rel_alloc = lookup;
1811 if (lookup->bfd_section != NULL
1812 && (lookup->bfd_section->flags & SEC_ALLOC) != 0)
1814 last_alloc = lookup;
1815 if ((lookup->bfd_section->flags & SEC_READONLY) != 0)
1816 last_ro_alloc = lookup;
1821 return last_rel_alloc;
1827 return last_ro_alloc;
1835 /* Return whether IN is suitable to be part of OUT. */
1838 elf_orphan_compatible (asection *in, asection *out)
1840 /* Non-zero sh_info implies a section with SHF_INFO_LINK with
1841 unknown semantics for the generic linker, or a SHT_REL/SHT_RELA
1842 section where sh_info specifies a symbol table. (We won't see
1843 SHT_GROUP, SHT_SYMTAB or SHT_DYNSYM sections here.) We clearly
1844 can't merge SHT_REL/SHT_RELA using differing symbol tables, and
1845 shouldn't merge sections with differing unknown semantics. */
1846 if (elf_section_data (out)->this_hdr.sh_info
1847 != elf_section_data (in)->this_hdr.sh_info)
1849 /* We can't merge with member of output section group nor merge two
1850 sections with differing SHF_EXCLUDE when doing a relocatable link.
1852 if (bfd_link_relocatable (&link_info)
1853 && (elf_next_in_group (out) != NULL
1854 || ((elf_section_flags (out) ^ elf_section_flags (in))
1855 & SHF_EXCLUDE) != 0))
1857 return _bfd_elf_match_sections_by_type (link_info.output_bfd, out,
1861 /* Place an orphan section. We use this to put random SHF_ALLOC
1862 sections in the right segment. */
1864 lang_output_section_statement_type *
1865 ldelf_place_orphan (asection *s, const char *secname, int constraint)
1867 static struct orphan_save hold[] =
1870 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
1873 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1876 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_THREAD_LOCAL,
1879 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
1885 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1888 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
1891 SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA,
1897 enum orphan_save_index
1909 static int orphan_init_done = 0;
1910 struct orphan_save *place;
1911 lang_output_section_statement_type *after;
1912 lang_output_section_statement_type *os;
1913 lang_output_section_statement_type *match_by_name = NULL;
1915 int elfinput = s->owner->xvec->flavour == bfd_target_elf_flavour;
1916 int elfoutput = link_info.output_bfd->xvec->flavour == bfd_target_elf_flavour;
1917 unsigned int sh_type = elfinput ? elf_section_type (s) : SHT_NULL;
1921 if (!bfd_link_relocatable (&link_info)
1922 && link_info.combreloc
1923 && (s->flags & SEC_ALLOC))
1929 secname = ".rela.dyn";
1933 secname = ".rel.dyn";
1939 else if (CONST_STRNEQ (secname, ".rel"))
1941 secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn";
1946 if (!bfd_link_relocatable (&link_info)
1949 && (s->flags & SEC_ALLOC) != 0
1950 && (elf_tdata (s->owner)->has_gnu_osabi & elf_gnu_osabi_mbind) != 0
1951 && (elf_section_flags (s) & SHF_GNU_MBIND) != 0)
1953 /* Find the output mbind section with the same type, attributes
1954 and sh_info field. */
1955 for (os = &lang_os_list.head->output_section_statement;
1958 if (os->bfd_section != NULL
1959 && !bfd_is_abs_section (os->bfd_section)
1960 && (elf_section_flags (os->bfd_section) & SHF_GNU_MBIND) != 0
1961 && ((s->flags & (SEC_ALLOC
1966 == (os->bfd_section->flags & (SEC_ALLOC
1971 && (elf_section_data (os->bfd_section)->this_hdr.sh_info
1972 == elf_section_data (s)->this_hdr.sh_info))
1974 lang_add_section (&os->children, s, NULL, os);
1978 /* Create the output mbind section with the ".mbind." prefix
1980 if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
1981 secname = ".mbind.bss";
1982 else if ((s->flags & SEC_READONLY) == 0)
1983 secname = ".mbind.data";
1984 else if ((s->flags & SEC_CODE) == 0)
1985 secname = ".mbind.rodata";
1987 secname = ".mbind.text";
1988 elf_tdata (link_info.output_bfd)->has_gnu_osabi |= elf_gnu_osabi_mbind;
1991 /* Look through the script to see where to place this section. The
1992 script includes entries added by previous lang_insert_orphan
1993 calls, so this loop puts multiple compatible orphans of the same
1994 name into a single output section. */
1995 if (constraint == 0)
1996 for (os = lang_output_section_find (secname);
1998 os = next_matching_output_section_statement (os, 0))
2000 /* If we don't match an existing output section, tell
2001 lang_insert_orphan to create a new output section. */
2002 constraint = SPECIAL;
2004 /* Check to see if we already have an output section statement
2005 with this name, and its bfd section has compatible flags.
2006 If the section already exists but does not have any flags
2007 set, then it has been created by the linker, possibly as a
2008 result of a --section-start command line switch. */
2009 if (os->bfd_section != NULL
2010 && (os->bfd_section->flags == 0
2011 || (((s->flags ^ os->bfd_section->flags)
2012 & (SEC_LOAD | SEC_ALLOC)) == 0
2015 || elf_orphan_compatible (s, os->bfd_section)))))
2017 lang_add_section (&os->children, s, NULL, os);
2021 /* Save unused output sections in case we can match them
2022 against orphans later. */
2023 if (os->bfd_section == NULL)
2027 /* If we didn't match an active output section, see if we matched an
2028 unused one and use that. */
2031 lang_add_section (&match_by_name->children, s, NULL, match_by_name);
2032 return match_by_name;
2035 if (!orphan_init_done)
2037 struct orphan_save *ho;
2039 for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
2040 if (ho->name != NULL)
2042 ho->os = lang_output_section_find (ho->name);
2043 if (ho->os != NULL && ho->os->flags == 0)
2044 ho->os->flags = ho->flags;
2046 orphan_init_done = 1;
2049 /* If this is a final link, then always put .gnu.warning.SYMBOL
2050 sections into the .text section to get them out of the way. */
2051 if (bfd_link_executable (&link_info)
2052 && CONST_STRNEQ (s->name, ".gnu.warning.")
2053 && hold[orphan_text].os != NULL)
2055 os = hold[orphan_text].os;
2056 lang_add_section (&os->children, s, NULL, os);
2061 if (!bfd_link_relocatable (&link_info))
2064 while ((nexts = bfd_get_next_section_by_name (nexts->owner, nexts))
2066 if (nexts->output_section == NULL
2067 && (nexts->flags & SEC_EXCLUDE) == 0
2068 && ((nexts->flags ^ flags) & (SEC_LOAD | SEC_ALLOC)) == 0
2069 && (nexts->owner->flags & DYNAMIC) == 0
2070 && !bfd_input_just_syms (nexts->owner)
2071 && _bfd_elf_match_sections_by_type (nexts->owner, nexts,
2073 flags = (((flags ^ SEC_READONLY)
2074 | (nexts->flags ^ SEC_READONLY))
2078 /* Decide which segment the section should go in based on the
2079 section name and section flags. We put loadable .note sections
2080 right after the .interp section, so that the PT_NOTE segment is
2081 stored right after the program headers where the OS can read it
2082 in the first page. */
2085 if ((flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
2086 place = &hold[orphan_nonalloc];
2087 else if ((flags & SEC_ALLOC) == 0)
2089 else if ((flags & SEC_LOAD) != 0
2091 ? sh_type == SHT_NOTE
2092 : CONST_STRNEQ (secname, ".note")))
2093 place = &hold[orphan_interp];
2094 else if ((flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
2095 place = &hold[orphan_bss];
2096 else if ((flags & SEC_SMALL_DATA) != 0)
2097 place = &hold[orphan_sdata];
2098 else if ((flags & SEC_THREAD_LOCAL) != 0)
2099 place = &hold[orphan_tdata];
2100 else if ((flags & SEC_READONLY) == 0)
2101 place = &hold[orphan_data];
2102 else if ((flags & SEC_LOAD) != 0
2104 ? sh_type == SHT_RELA || sh_type == SHT_REL
2105 : CONST_STRNEQ (secname, ".rel")))
2106 place = &hold[orphan_rel];
2107 else if ((flags & SEC_CODE) == 0)
2108 place = &hold[orphan_rodata];
2110 place = &hold[orphan_text];
2115 if (place->os == NULL)
2117 if (place->name != NULL)
2118 place->os = lang_output_section_find (place->name);
2121 int rela = elfinput ? sh_type == SHT_RELA : secname[4] == 'a';
2122 place->os = output_rel_find (isdyn, rela);
2128 = lang_output_section_find_by_flags (s, flags, &place->os,
2129 _bfd_elf_match_sections_by_type);
2131 /* *ABS* is always the first output section statement. */
2132 after = &lang_os_list.head->output_section_statement;
2135 return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);