1 /* Linker file opening and searching.
2 Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GLD, the Gnu Linker.
7 GLD is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GLD is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GLD; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* ldfile.c: look after all the file stuff. */
27 #include "safe-ctype.h"
37 #include "libiberty.h"
38 #include "filenames.h"
40 const char * ldfile_input_filename
;
41 bfd_boolean ldfile_assumed_script
= FALSE
;
42 const char * ldfile_output_machine_name
= "";
43 unsigned long ldfile_output_machine
;
44 enum bfd_architecture ldfile_output_architecture
;
45 search_dirs_type
* search_head
;
50 #if defined (_WIN32) && ! defined (__CYGWIN32__)
57 typedef struct search_arch
60 struct search_arch
*next
;
63 static search_dirs_type
**search_tail_ptr
= &search_head
;
64 static search_arch_type
*search_arch_head
;
65 static search_arch_type
**search_arch_tail_ptr
= &search_arch_head
;
67 /* Test whether a pathname, after canonicalization, is the same or a
68 sub-directory of the sysroot directory. */
71 is_sysrooted_pathname (const char *name
, bfd_boolean notsame
)
73 char * realname
= ld_canon_sysroot
? lrealpath (name
) : NULL
;
80 len
= strlen (realname
);
82 if (((! notsame
&& len
== ld_canon_sysroot_len
)
83 || (len
>= ld_canon_sysroot_len
84 && IS_DIR_SEPARATOR (realname
[ld_canon_sysroot_len
])
85 && (realname
[ld_canon_sysroot_len
] = '\0') == '\0'))
86 && FILENAME_CMP (ld_canon_sysroot
, realname
) == 0)
97 /* Adds NAME to the library search path.
98 Makes a copy of NAME using xmalloc(). */
101 ldfile_add_library_path (const char *name
, bfd_boolean cmdline
)
103 search_dirs_type
*new;
105 if (!cmdline
&& config
.only_cmd_line_lib_dirs
)
108 new = xmalloc (sizeof (search_dirs_type
));
110 new->cmdline
= cmdline
;
111 *search_tail_ptr
= new;
112 search_tail_ptr
= &new->next
;
114 /* If a directory is marked as honoring sysroot, prepend the sysroot path
118 new->name
= concat (ld_sysroot
, name
+ 1, NULL
);
119 new->sysrooted
= TRUE
;
123 new->name
= xstrdup (name
);
124 new->sysrooted
= is_sysrooted_pathname (name
, FALSE
);
128 /* Try to open a BFD for a lang_input_statement. */
131 ldfile_try_open_bfd (const char *attempt
,
132 lang_input_statement_type
*entry
)
134 entry
->the_bfd
= bfd_openr (attempt
, entry
->target
);
136 if (trace_file_tries
)
138 if (entry
->the_bfd
== NULL
)
139 info_msg (_("attempt to open %s failed\n"), attempt
);
141 info_msg (_("attempt to open %s succeeded\n"), attempt
);
144 if (entry
->the_bfd
== NULL
)
146 if (bfd_get_error () == bfd_error_invalid_target
)
147 einfo (_("%F%P: invalid BFD target `%s'\n"), entry
->target
);
151 /* If we are searching for this file, see if the architecture is
152 compatible with the output file. If it isn't, keep searching.
153 If we can't open the file as an object file, stop the search
156 if (entry
->search_dirs_flag
)
160 if (bfd_check_format (entry
->the_bfd
, bfd_archive
))
161 check
= bfd_openr_next_archived_file (entry
->the_bfd
, NULL
);
163 check
= entry
->the_bfd
;
167 if (! bfd_check_format (check
, bfd_object
))
169 if (check
== entry
->the_bfd
170 && bfd_get_error () == bfd_error_file_not_recognized
171 && ! ldemul_unrecognized_file (entry
))
174 char *arg
, *arg1
, *arg2
, *arg3
;
177 /* Try to interpret the file as a linker script. */
178 ldfile_open_command_file (attempt
);
180 ldfile_assumed_script
= TRUE
;
181 parser_input
= input_selected
;
183 token
= INPUT_SCRIPT
;
189 if ((token
= yylex ()) != '(')
191 if ((token
= yylex ()) != NAME
)
199 if ((token
= yylex ()) != NAME
)
205 if ((token
= yylex ()) != ','
206 || (token
= yylex ()) != NAME
)
217 switch (command_line
.endian
)
223 arg
= arg2
? arg2
: arg1
; break;
225 arg
= arg3
? arg3
: arg1
; break;
227 if (strcmp (arg
, lang_get_output_target ()) != 0)
231 if (arg2
) free (arg2
);
232 if (arg3
) free (arg3
);
236 case VERS_IDENTIFIER
:
241 if (yylval
.bigint
.str
)
242 free (yylval
.bigint
.str
);
248 ldfile_assumed_script
= FALSE
;
253 einfo (_("%P: skipping incompatible %s when searching for %s\n"),
254 attempt
, entry
->local_sym_name
);
255 bfd_close (entry
->the_bfd
);
256 entry
->the_bfd
= NULL
;
263 if ((bfd_arch_get_compatible (check
, output_bfd
,
264 command_line
.accept_unknown_input_arch
) == NULL
)
265 /* XCOFF archives can have 32 and 64 bit objects. */
266 && ! (bfd_get_flavour (check
) == bfd_target_xcoff_flavour
267 && bfd_get_flavour (output_bfd
) == bfd_target_xcoff_flavour
268 && bfd_check_format (entry
->the_bfd
, bfd_archive
)))
270 einfo (_("%P: skipping incompatible %s when searching for %s\n"),
271 attempt
, entry
->local_sym_name
);
272 bfd_close (entry
->the_bfd
);
273 entry
->the_bfd
= NULL
;
282 /* Search for and open the file specified by ENTRY. If it is an
283 archive, use ARCH, LIB and SUFFIX to modify the file name. */
286 ldfile_open_file_search (const char *arch
,
287 lang_input_statement_type
*entry
,
291 search_dirs_type
*search
;
293 /* If this is not an archive, try to open it in the current
295 if (! entry
->is_archive
)
297 if (entry
->sysrooted
&& IS_ABSOLUTE_PATH (entry
->filename
))
299 char *name
= concat (ld_sysroot
, entry
->filename
,
300 (const char *) NULL
);
301 if (ldfile_try_open_bfd (name
, entry
))
303 entry
->filename
= name
;
308 else if (ldfile_try_open_bfd (entry
->filename
, entry
))
310 entry
->sysrooted
= IS_ABSOLUTE_PATH (entry
->filename
)
311 && is_sysrooted_pathname (entry
->filename
, TRUE
);
315 if (IS_ABSOLUTE_PATH (entry
->filename
))
319 for (search
= search_head
; search
!= NULL
; search
= search
->next
)
323 if (entry
->dynamic
&& ! link_info
.relocatable
)
325 if (ldemul_open_dynamic_archive (arch
, search
, entry
))
327 entry
->sysrooted
= search
->sysrooted
;
332 string
= xmalloc (strlen (search
->name
)
335 + strlen (entry
->filename
)
340 if (entry
->is_archive
)
341 sprintf (string
, "%s%s%s%s%s%s", search
->name
, slash
,
342 lib
, entry
->filename
, arch
, suffix
);
344 sprintf (string
, "%s%s%s", search
->name
, slash
, entry
->filename
);
346 if (ldfile_try_open_bfd (string
, entry
))
348 entry
->filename
= string
;
349 entry
->sysrooted
= search
->sysrooted
;
359 /* Open the input file specified by ENTRY. */
362 ldfile_open_file (lang_input_statement_type
*entry
)
364 if (entry
->the_bfd
!= NULL
)
367 if (! entry
->search_dirs_flag
)
369 if (ldfile_try_open_bfd (entry
->filename
, entry
))
371 if (strcmp (entry
->filename
, entry
->local_sym_name
) != 0)
372 einfo (_("%F%P: %s (%s): No such file: %E\n"),
373 entry
->filename
, entry
->local_sym_name
);
375 einfo (_("%F%P: %s: No such file: %E\n"), entry
->local_sym_name
);
379 search_arch_type
*arch
;
380 bfd_boolean found
= FALSE
;
382 /* Try to open <filename><suffix> or lib<filename><suffix>.a */
383 for (arch
= search_arch_head
; arch
!= NULL
; arch
= arch
->next
)
385 found
= ldfile_open_file_search (arch
->name
, entry
, "lib", ".a");
389 found
= ldfile_open_file_search (arch
->name
, entry
, ":lib", ".a");
393 found
= ldemul_find_potential_libraries (arch
->name
, entry
);
398 /* If we have found the file, we don't need to search directories
401 entry
->search_dirs_flag
= FALSE
;
402 else if (entry
->sysrooted
404 && IS_ABSOLUTE_PATH (entry
->local_sym_name
))
405 einfo (_("%F%P: cannot find %s inside %s\n"),
406 entry
->local_sym_name
, ld_sysroot
);
408 einfo (_("%F%P: cannot find %s\n"), entry
->local_sym_name
);
412 /* Try to open NAME; if that fails, try NAME with EXTEN appended to it. */
415 try_open (const char *name
, const char *exten
)
420 result
= fopen (name
, "r");
422 if (trace_file_tries
)
425 info_msg (_("cannot find script file %s\n"), name
);
427 info_msg (_("opened script file %s\n"), name
);
435 sprintf (buff
, "%s%s", name
, exten
);
436 result
= fopen (buff
, "r");
438 if (trace_file_tries
)
441 info_msg (_("cannot find script file %s\n"), buff
);
443 info_msg (_("opened script file %s\n"), buff
);
450 /* Try to open NAME; if that fails, look for it in any directories
451 specified with -L, without and with EXTEND appended. */
454 ldfile_find_command_file (const char *name
, const char *extend
)
456 search_dirs_type
*search
;
460 /* First try raw name. */
461 result
= try_open (name
, "");
464 /* Try now prefixes. */
465 for (search
= search_head
; search
!= NULL
; search
= search
->next
)
467 sprintf (buffer
, "%s%s%s", search
->name
, slash
, name
);
469 result
= try_open (buffer
, extend
);
479 ldfile_open_command_file (const char *name
)
481 FILE *ldlex_input_stack
;
482 ldlex_input_stack
= ldfile_find_command_file (name
, "");
484 if (ldlex_input_stack
== NULL
)
486 bfd_set_error (bfd_error_system_call
);
487 einfo (_("%P%F: cannot open linker script file %s: %E\n"), name
);
490 lex_push_file (ldlex_input_stack
, name
);
492 ldfile_input_filename
= name
;
495 saved_script_handle
= ldlex_input_stack
;
500 gnu960_map_archname (char *name
)
502 struct tabentry
{ char *cmd_switch
; char *arch
; };
503 static struct tabentry arch_tab
[] =
508 "KC", "mc", /* Synonym for MC */
511 "SA", "ka", /* Functionally equivalent to KA */
512 "SB", "kb", /* Functionally equivalent to KB */
517 for (tp
= arch_tab
; tp
->cmd_switch
!= NULL
; tp
++)
519 if (! strcmp (name
,tp
->cmd_switch
))
523 if (tp
->cmd_switch
== NULL
)
524 einfo (_("%P%F: unknown architecture: %s\n"), name
);
530 ldfile_add_arch (char *name
)
532 search_arch_type
*new = xmalloc (sizeof (search_arch_type
));
536 if (ldfile_output_machine_name
[0] != '\0')
538 einfo (_("%P%F: target architecture respecified\n"));
542 ldfile_output_machine_name
= name
;
546 new->name
= gnu960_map_archname (name
);
547 *search_arch_tail_ptr
= new;
548 search_arch_tail_ptr
= &new->next
;
551 #else /* not GNU960 */
554 ldfile_add_arch (const char *in_name
)
556 char *name
= xstrdup (in_name
);
557 search_arch_type
*new = xmalloc (sizeof (search_arch_type
));
559 ldfile_output_machine_name
= in_name
;
565 *name
= TOLOWER (*name
);
568 *search_arch_tail_ptr
= new;
569 search_arch_tail_ptr
= &new->next
;
574 /* Set the output architecture. */
577 ldfile_set_output_arch (const char *string
, enum bfd_architecture defarch
)
579 const bfd_arch_info_type
*arch
= bfd_scan_arch (string
);
583 ldfile_output_architecture
= arch
->arch
;
584 ldfile_output_machine
= arch
->mach
;
585 ldfile_output_machine_name
= arch
->printable_name
;
587 else if (defarch
!= bfd_arch_unknown
)
588 ldfile_output_architecture
= defarch
;
590 einfo (_("%P%F: cannot represent machine `%s'\n"), string
);