add PR#
[official-gcc.git] / gcc / collect2.c
blob71229be5cc9ab8c326564cd08e9c25ae4dc7457e
1 /* Collect static initialization info into data structures that can be
2 traversed by C++ initialization and finalization routines.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5 Contributed by Chris Smith (csmith@convex.com).
6 Heavily modified by Michael Meissner (meissner@cygnus.com),
7 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 2, or (at your option) any later
14 version.
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING. If not, write to the Free
23 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 02111-1307, USA. */
27 /* Build tables of static constructors and destructors and run ld. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
34 #if ! defined( SIGCHLD ) && defined( SIGCLD )
35 # define SIGCHLD SIGCLD
36 #endif
38 #ifdef vfork /* Autoconf may define this to fork for us. */
39 # define VFORK_STRING "fork"
40 #else
41 # define VFORK_STRING "vfork"
42 #endif
43 #ifdef HAVE_VFORK_H
44 #include <vfork.h>
45 #endif
46 #ifdef VMS
47 #define vfork() (decc$$alloc_vfork_blocks() >= 0 ? \
48 lib$get_current_invo_context(decc$$get_vfork_jmpbuf()) : -1)
49 #endif /* VMS */
51 #ifndef LIBRARY_PATH_ENV
52 #define LIBRARY_PATH_ENV "LIBRARY_PATH"
53 #endif
55 #define COLLECT
57 #include "collect2.h"
58 #include "demangle.h"
59 #include "obstack.h"
60 #include "intl.h"
61 #include "version.h"
63 /* On certain systems, we have code that works by scanning the object file
64 directly. But this code uses system-specific header files and library
65 functions, so turn it off in a cross-compiler. Likewise, the names of
66 the utilities are not correct for a cross-compiler; we have to hope that
67 cross-versions are in the proper directories. */
69 #ifdef CROSS_COMPILE
70 #undef SUNOS4_SHARED_LIBRARIES
71 #undef OBJECT_FORMAT_COFF
72 #undef OBJECT_FORMAT_ROSE
73 #undef MD_EXEC_PREFIX
74 #undef REAL_LD_FILE_NAME
75 #undef REAL_NM_FILE_NAME
76 #undef REAL_STRIP_FILE_NAME
77 #endif
79 /* If we cannot use a special method, use the ordinary one:
80 run nm to find what symbols are present.
81 In a cross-compiler, this means you need a cross nm,
82 but that is not quite as unpleasant as special headers. */
84 #if !defined (OBJECT_FORMAT_COFF) && !defined (OBJECT_FORMAT_ROSE)
85 #define OBJECT_FORMAT_NONE
86 #endif
88 #ifdef OBJECT_FORMAT_COFF
90 #include <a.out.h>
91 #include <ar.h>
93 #ifdef UMAX
94 #include <sgs.h>
95 #endif
97 /* Many versions of ldfcn.h define these. */
98 #ifdef FREAD
99 #undef FREAD
100 #undef FWRITE
101 #endif
103 #include <ldfcn.h>
105 /* Some systems have an ISCOFF macro, but others do not. In some cases
106 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
107 that either do not have an ISCOFF macro in /usr/include or for those
108 where it is wrong. */
110 #ifndef MY_ISCOFF
111 #define MY_ISCOFF(X) ISCOFF (X)
112 #endif
114 #endif /* OBJECT_FORMAT_COFF */
116 #ifdef OBJECT_FORMAT_ROSE
118 #ifdef _OSF_SOURCE
119 #define USE_MMAP
120 #endif
122 #ifdef USE_MMAP
123 #include <sys/mman.h>
124 #endif
126 #include <unistd.h>
127 #include <mach_o_format.h>
128 #include <mach_o_header.h>
129 #include <mach_o_vals.h>
130 #include <mach_o_types.h>
132 #endif /* OBJECT_FORMAT_ROSE */
134 #ifdef OBJECT_FORMAT_NONE
136 /* Default flags to pass to nm. */
137 #ifndef NM_FLAGS
138 #define NM_FLAGS "-n"
139 #endif
141 #endif /* OBJECT_FORMAT_NONE */
143 /* Some systems use __main in a way incompatible with its use in gcc, in these
144 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
145 give the same symbol without quotes for an alternative entry point. */
146 #ifndef NAME__MAIN
147 #define NAME__MAIN "__main"
148 #endif
150 /* This must match tree.h. */
151 #define DEFAULT_INIT_PRIORITY 65535
153 #ifndef COLLECT_SHARED_INIT_FUNC
154 #define COLLECT_SHARED_INIT_FUNC(STREAM, FUNC) \
155 fprintf ((STREAM), "void _GLOBAL__DI() {\n\t%s();\n}\n", (FUNC))
156 #endif
157 #ifndef COLLECT_SHARED_FINI_FUNC
158 #define COLLECT_SHARED_FINI_FUNC(STREAM, FUNC) \
159 fprintf ((STREAM), "void _GLOBAL__DD() {\n\t%s();\n}\n", (FUNC))
160 #endif
162 #if defined (LDD_SUFFIX) || SUNOS4_SHARED_LIBRARIES
163 #define SCAN_LIBRARIES
164 #endif
166 #ifdef USE_COLLECT2
167 int do_collecting = 1;
168 #else
169 int do_collecting = 0;
170 #endif
172 /* Nonzero if we should suppress the automatic demangling of identifiers
173 in linker error messages. Set from COLLECT_NO_DEMANGLE. */
174 int no_demangle;
176 /* Linked lists of constructor and destructor names. */
178 struct id
180 struct id *next;
181 int sequence;
182 char name[1];
185 struct head
187 struct id *first;
188 struct id *last;
189 int number;
192 /* Enumeration giving which pass this is for scanning the program file. */
194 enum pass {
195 PASS_FIRST, /* without constructors */
196 PASS_OBJ, /* individual objects */
197 PASS_LIB, /* looking for shared libraries */
198 PASS_SECOND /* with constructors linked in */
201 int vflag; /* true if -v */
202 static int rflag; /* true if -r */
203 static int strip_flag; /* true if -s */
204 #ifdef COLLECT_EXPORT_LIST
205 static int export_flag; /* true if -bE */
206 static int aix64_flag; /* true if -b64 */
207 #endif
209 int debug; /* true if -debug */
211 static int shared_obj; /* true if -shared */
213 static const char *c_file; /* <xxx>.c for constructor/destructor list. */
214 static const char *o_file; /* <xxx>.o for constructor/destructor list. */
215 #ifdef COLLECT_EXPORT_LIST
216 static const char *export_file; /* <xxx>.x for AIX export list. */
217 #endif
218 const char *ldout; /* File for ld errors. */
219 static const char *output_file; /* Output file for ld. */
220 static const char *nm_file_name; /* pathname of nm */
221 #ifdef LDD_SUFFIX
222 static const char *ldd_file_name; /* pathname of ldd (or equivalent) */
223 #endif
224 static const char *strip_file_name; /* pathname of strip */
225 const char *c_file_name; /* pathname of gcc */
226 static char *initname, *fininame; /* names of init and fini funcs */
228 static struct head constructors; /* list of constructors found */
229 static struct head destructors; /* list of destructors found */
230 #ifdef COLLECT_EXPORT_LIST
231 static struct head exports; /* list of exported symbols */
232 #endif
233 static struct head frame_tables; /* list of frame unwind info tables */
235 struct obstack temporary_obstack;
236 char * temporary_firstobj;
238 /* Holds the return value of pexecute and fork. */
239 int pid;
241 /* Structure to hold all the directories in which to search for files to
242 execute. */
244 struct prefix_list
246 const char *prefix; /* String to prepend to the path. */
247 struct prefix_list *next; /* Next in linked list. */
250 struct path_prefix
252 struct prefix_list *plist; /* List of prefixes to try */
253 int max_len; /* Max length of a prefix in PLIST */
254 const char *name; /* Name of this list (used in config stuff) */
257 #ifdef COLLECT_EXPORT_LIST
258 /* Lists to keep libraries to be scanned for global constructors/destructors. */
259 static struct head libs; /* list of libraries */
260 static struct path_prefix cmdline_lib_dirs; /* directories specified with -L */
261 static struct path_prefix libpath_lib_dirs; /* directories in LIBPATH */
262 static struct path_prefix *libpaths[3] = {&cmdline_lib_dirs,
263 &libpath_lib_dirs, NULL};
264 static const char *const libexts[3] = {"a", "so", NULL}; /* possible library extensions */
265 #endif
267 static void handler PARAMS ((int));
268 static int is_ctor_dtor PARAMS ((const char *));
269 static char *find_a_file PARAMS ((struct path_prefix *, const char *));
270 static void add_prefix PARAMS ((struct path_prefix *, const char *));
271 static void prefix_from_env PARAMS ((const char *, struct path_prefix *));
272 static void prefix_from_string PARAMS ((const char *, struct path_prefix *));
273 static void do_wait PARAMS ((const char *));
274 static void fork_execute PARAMS ((const char *, char **));
275 static void maybe_unlink PARAMS ((const char *));
276 static void add_to_list PARAMS ((struct head *, const char *));
277 static int extract_init_priority PARAMS ((const char *));
278 static void sort_ids PARAMS ((struct head *));
279 static void write_list PARAMS ((FILE *, const char *, struct id *));
280 #ifdef COLLECT_EXPORT_LIST
281 static void dump_list PARAMS ((FILE *, const char *, struct id *));
282 #endif
283 #if 0
284 static void dump_prefix_list PARAMS ((FILE *, const char *, struct prefix_list *));
285 #endif
286 static void write_list_with_asm PARAMS ((FILE *, const char *, struct id *));
287 static void write_c_file PARAMS ((FILE *, const char *));
288 static void write_c_file_stat PARAMS ((FILE *, const char *));
289 #ifndef LD_INIT_SWITCH
290 static void write_c_file_glob PARAMS ((FILE *, const char *));
291 #endif
292 static void scan_prog_file PARAMS ((const char *, enum pass));
293 #ifdef SCAN_LIBRARIES
294 static void scan_libraries PARAMS ((const char *));
295 #endif
296 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
297 static int is_in_args PARAMS ((const char *, const char **, const char **));
298 #endif
299 #ifdef COLLECT_EXPORT_LIST
300 #if 0
301 static int is_in_list PARAMS ((const char *, struct id *));
302 #endif
303 static void write_aix_file PARAMS ((FILE *, struct id *));
304 static char *resolve_lib_name PARAMS ((const char *));
305 #endif
306 static char *extract_string PARAMS ((const char **));
308 #ifndef HAVE_DUP2
309 static int dup2 PARAMS ((int, int));
310 static int
311 dup2 (oldfd, newfd)
312 int oldfd;
313 int newfd;
315 int fdtmp[256];
316 int fdx = 0;
317 int fd;
319 if (oldfd == newfd)
320 return oldfd;
321 close (newfd);
322 while ((fd = dup (oldfd)) != newfd && fd >= 0) /* good enough for low fd's */
323 fdtmp[fdx++] = fd;
324 while (fdx > 0)
325 close (fdtmp[--fdx]);
327 return fd;
329 #endif /* ! HAVE_DUP2 */
331 /* Delete tempfiles and exit function. */
333 void
334 collect_exit (status)
335 int status;
337 if (c_file != 0 && c_file[0])
338 maybe_unlink (c_file);
340 if (o_file != 0 && o_file[0])
341 maybe_unlink (o_file);
343 #ifdef COLLECT_EXPORT_LIST
344 if (export_file != 0 && export_file[0])
345 maybe_unlink (export_file);
346 #endif
348 if (ldout != 0 && ldout[0])
350 dump_file (ldout);
351 maybe_unlink (ldout);
354 if (status != 0 && output_file != 0 && output_file[0])
355 maybe_unlink (output_file);
357 exit (status);
361 /* Notify user of a non-error. */
362 void
363 notice (const char *msgid, ...)
365 va_list ap;
367 va_start (ap, msgid);
368 vfprintf (stderr, _(msgid), ap);
369 va_end (ap);
372 /* Die when sys call fails. */
374 void
375 fatal_perror (const char * msgid, ...)
377 int e = errno;
378 va_list ap;
380 va_start (ap, msgid);
381 fprintf (stderr, "collect2: ");
382 vfprintf (stderr, _(msgid), ap);
383 fprintf (stderr, ": %s\n", xstrerror (e));
384 va_end (ap);
386 collect_exit (FATAL_EXIT_CODE);
389 /* Just die. */
391 void
392 fatal (const char * msgid, ...)
394 va_list ap;
396 va_start (ap, msgid);
397 fprintf (stderr, "collect2: ");
398 vfprintf (stderr, _(msgid), ap);
399 fprintf (stderr, "\n");
400 va_end (ap);
402 collect_exit (FATAL_EXIT_CODE);
405 /* Write error message. */
407 void
408 error (const char * msgid, ...)
410 va_list ap;
412 va_start (ap, msgid);
413 fprintf (stderr, "collect2: ");
414 vfprintf (stderr, _(msgid), ap);
415 fprintf (stderr, "\n");
416 va_end(ap);
419 /* In case obstack is linked in, and abort is defined to fancy_abort,
420 provide a default entry. */
422 void
423 fancy_abort ()
425 fatal ("internal error");
428 static void
429 handler (signo)
430 int signo;
432 if (c_file != 0 && c_file[0])
433 maybe_unlink (c_file);
435 if (o_file != 0 && o_file[0])
436 maybe_unlink (o_file);
438 if (ldout != 0 && ldout[0])
439 maybe_unlink (ldout);
441 #ifdef COLLECT_EXPORT_LIST
442 if (export_file != 0 && export_file[0])
443 maybe_unlink (export_file);
444 #endif
446 signal (signo, SIG_DFL);
447 kill (getpid (), signo);
452 file_exists (name)
453 const char *name;
455 return access (name, R_OK) == 0;
458 /* Parse a reasonable subset of shell quoting syntax. */
460 static char *
461 extract_string (pp)
462 const char **pp;
464 const char *p = *pp;
465 int backquote = 0;
466 int inside = 0;
468 for (;;)
470 char c = *p;
471 if (c == '\0')
472 break;
473 ++p;
474 if (backquote)
475 obstack_1grow (&temporary_obstack, c);
476 else if (! inside && c == ' ')
477 break;
478 else if (! inside && c == '\\')
479 backquote = 1;
480 else if (c == '\'')
481 inside = !inside;
482 else
483 obstack_1grow (&temporary_obstack, c);
486 obstack_1grow (&temporary_obstack, '\0');
487 *pp = p;
488 return obstack_finish (&temporary_obstack);
491 void
492 dump_file (name)
493 const char *name;
495 FILE *stream = fopen (name, "r");
497 if (stream == 0)
498 return;
499 while (1)
501 int c;
502 while (c = getc (stream),
503 c != EOF && (ISIDNUM (c) || c == '$' || c == '.'))
504 obstack_1grow (&temporary_obstack, c);
505 if (obstack_object_size (&temporary_obstack) > 0)
507 const char *word, *p;
508 char *result;
509 obstack_1grow (&temporary_obstack, '\0');
510 word = obstack_finish (&temporary_obstack);
512 if (*word == '.')
513 ++word, putc ('.', stderr);
514 p = word;
515 if (!strncmp (p, USER_LABEL_PREFIX, strlen (USER_LABEL_PREFIX)))
516 p += strlen (USER_LABEL_PREFIX);
518 if (no_demangle)
519 result = 0;
520 else
521 result = cplus_demangle (p, DMGL_PARAMS | DMGL_ANSI | DMGL_VERBOSE);
523 if (result)
525 int diff;
526 fputs (result, stderr);
528 diff = strlen (word) - strlen (result);
529 while (diff > 0 && c == ' ')
530 --diff, putc (' ', stderr);
531 while (diff < 0 && c == ' ')
532 ++diff, c = getc (stream);
534 free (result);
536 else
537 fputs (word, stderr);
539 fflush (stderr);
540 obstack_free (&temporary_obstack, temporary_firstobj);
542 if (c == EOF)
543 break;
544 putc (c, stderr);
546 fclose (stream);
549 /* Decide whether the given symbol is: a constructor (1), a destructor
550 (2), a routine in a shared object that calls all the constructors
551 (3) or destructors (4), a DWARF exception-handling table (5), or
552 nothing special (0). */
554 static int
555 is_ctor_dtor (s)
556 const char *s;
558 struct names { const char *const name; const int len; const int ret;
559 const int two_underscores; };
561 const struct names *p;
562 int ch;
563 const char *orig_s = s;
565 static const struct names special[] = {
566 #ifndef NO_DOLLAR_IN_LABEL
567 { "GLOBAL__I$", sizeof ("GLOBAL__I$")-1, 1, 0 },
568 { "GLOBAL__D$", sizeof ("GLOBAL__D$")-1, 2, 0 },
569 #else
570 #ifndef NO_DOT_IN_LABEL
571 { "GLOBAL__I.", sizeof ("GLOBAL__I.")-1, 1, 0 },
572 { "GLOBAL__D.", sizeof ("GLOBAL__D.")-1, 2, 0 },
573 #endif /* NO_DOT_IN_LABEL */
574 #endif /* NO_DOLLAR_IN_LABEL */
575 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, 1, 0 },
576 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, 2, 0 },
577 { "GLOBAL__F_", sizeof ("GLOBAL__F_")-1, 5, 0 },
578 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, 3, 0 },
579 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, 4, 0 },
580 #ifdef CFRONT_LOSSAGE /* Do not collect cfront initialization functions.
581 cfront has its own linker procedure to collect them;
582 if collect2 gets them too, they get collected twice
583 when the cfront procedure is run and the compiler used
584 for linking happens to be GCC. */
585 { "sti__", sizeof ("sti__")-1, 1, 1 },
586 { "std__", sizeof ("std__")-1, 2, 1 },
587 #endif /* CFRONT_LOSSAGE */
588 { NULL, 0, 0, 0 }
591 while ((ch = *s) == '_')
592 ++s;
594 if (s == orig_s)
595 return 0;
597 for (p = &special[0]; p->len > 0; p++)
599 if (ch == p->name[0]
600 && (!p->two_underscores || ((s - orig_s) >= 2))
601 && strncmp(s, p->name, p->len) == 0)
603 return p->ret;
606 return 0;
609 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
610 and one from the PATH variable. */
612 static struct path_prefix cpath, path;
614 #ifdef CROSS_COMPILE
615 /* This is the name of the target machine. We use it to form the name
616 of the files to execute. */
618 static const char *const target_machine = TARGET_MACHINE;
619 #endif
621 /* Search for NAME using prefix list PPREFIX. We only look for executable
622 files.
624 Return 0 if not found, otherwise return its name, allocated with malloc. */
626 static char *
627 find_a_file (pprefix, name)
628 struct path_prefix *pprefix;
629 const char *name;
631 char *temp;
632 struct prefix_list *pl;
633 int len = pprefix->max_len + strlen (name) + 1;
635 if (debug)
636 fprintf (stderr, "Looking for '%s'\n", name);
638 #ifdef HOST_EXECUTABLE_SUFFIX
639 len += strlen (HOST_EXECUTABLE_SUFFIX);
640 #endif
642 temp = xmalloc (len);
644 /* Determine the filename to execute (special case for absolute paths). */
646 if (*name == '/'
647 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
648 || (*name && name[1] == ':')
649 #endif
652 if (access (name, X_OK) == 0)
654 strcpy (temp, name);
656 if (debug)
657 fprintf (stderr, " - found: absolute path\n");
659 return temp;
662 #ifdef HOST_EXECUTABLE_SUFFIX
663 /* Some systems have a suffix for executable files.
664 So try appending that. */
665 strcpy (temp, name);
666 strcat (temp, HOST_EXECUTABLE_SUFFIX);
668 if (access (temp, X_OK) == 0)
669 return temp;
670 #endif
672 if (debug)
673 fprintf (stderr, " - failed to locate using absolute path\n");
675 else
676 for (pl = pprefix->plist; pl; pl = pl->next)
678 struct stat st;
680 strcpy (temp, pl->prefix);
681 strcat (temp, name);
683 if (stat (temp, &st) >= 0
684 && ! S_ISDIR (st.st_mode)
685 && access (temp, X_OK) == 0)
686 return temp;
688 #ifdef HOST_EXECUTABLE_SUFFIX
689 /* Some systems have a suffix for executable files.
690 So try appending that. */
691 strcat (temp, HOST_EXECUTABLE_SUFFIX);
693 if (stat (temp, &st) >= 0
694 && ! S_ISDIR (st.st_mode)
695 && access (temp, X_OK) == 0)
696 return temp;
697 #endif
700 if (debug && pprefix->plist == NULL)
701 fprintf (stderr, " - failed: no entries in prefix list\n");
703 free (temp);
704 return 0;
707 /* Add an entry for PREFIX to prefix list PPREFIX. */
709 static void
710 add_prefix (pprefix, prefix)
711 struct path_prefix *pprefix;
712 const char *prefix;
714 struct prefix_list *pl, **prev;
715 int len;
717 if (pprefix->plist)
719 for (pl = pprefix->plist; pl->next; pl = pl->next)
721 prev = &pl->next;
723 else
724 prev = &pprefix->plist;
726 /* Keep track of the longest prefix */
728 len = strlen (prefix);
729 if (len > pprefix->max_len)
730 pprefix->max_len = len;
732 pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
733 pl->prefix = xstrdup (prefix);
735 if (*prev)
736 pl->next = *prev;
737 else
738 pl->next = (struct prefix_list *) 0;
739 *prev = pl;
742 /* Take the value of the environment variable ENV, break it into a path, and
743 add of the entries to PPREFIX. */
745 static void
746 prefix_from_env (env, pprefix)
747 const char *env;
748 struct path_prefix *pprefix;
750 const char *p;
751 GET_ENVIRONMENT (p, env);
753 if (p)
754 prefix_from_string (p, pprefix);
757 static void
758 prefix_from_string (p, pprefix)
759 const char *p;
760 struct path_prefix *pprefix;
762 const char *startp, *endp;
763 char *nstore = (char *) xmalloc (strlen (p) + 3);
765 if (debug)
766 fprintf (stderr, "Convert string '%s' into prefixes, separator = '%c'\n", p, PATH_SEPARATOR);
768 startp = endp = p;
769 while (1)
771 if (*endp == PATH_SEPARATOR || *endp == 0)
773 strncpy (nstore, startp, endp-startp);
774 if (endp == startp)
776 strcpy (nstore, "./");
778 else if (! IS_DIR_SEPARATOR (endp[-1]))
780 nstore[endp-startp] = DIR_SEPARATOR;
781 nstore[endp-startp+1] = 0;
783 else
784 nstore[endp-startp] = 0;
786 if (debug)
787 fprintf (stderr, " - add prefix: %s\n", nstore);
789 add_prefix (pprefix, nstore);
790 if (*endp == 0)
791 break;
792 endp = startp = endp + 1;
794 else
795 endp++;
799 /* Main program. */
801 int main PARAMS ((int, char *[]));
803 main (argc, argv)
804 int argc;
805 char *argv[];
807 static const char *const ld_suffix = "ld";
808 static const char *const real_ld_suffix = "real-ld";
809 static const char *const collect_ld_suffix = "collect-ld";
810 static const char *const nm_suffix = "nm";
811 static const char *const gnm_suffix = "gnm";
812 #ifdef LDD_SUFFIX
813 static const char *const ldd_suffix = LDD_SUFFIX;
814 #endif
815 static const char *const strip_suffix = "strip";
816 static const char *const gstrip_suffix = "gstrip";
818 #ifdef CROSS_COMPILE
819 /* If we look for a program in the compiler directories, we just use
820 the short name, since these directories are already system-specific.
821 But it we look for a program in the system directories, we need to
822 qualify the program name with the target machine. */
824 const char *const full_ld_suffix =
825 concat(target_machine, "-", ld_suffix, NULL);
826 const char *const full_nm_suffix =
827 concat (target_machine, "-", nm_suffix, NULL);
828 const char *const full_gnm_suffix =
829 concat (target_machine, "-", gnm_suffix, NULL);
830 #ifdef LDD_SUFFIX
831 const char *const full_ldd_suffix =
832 concat (target_machine, "-", ldd_suffix, NULL);
833 #endif
834 const char *const full_strip_suffix =
835 concat (target_machine, "-", strip_suffix, NULL);
836 const char *const full_gstrip_suffix =
837 concat (target_machine, "-", gstrip_suffix, NULL);
838 #else
839 const char *const full_ld_suffix = ld_suffix;
840 const char *const full_nm_suffix = nm_suffix;
841 const char *const full_gnm_suffix = gnm_suffix;
842 #ifdef LDD_SUFFIX
843 const char *const full_ldd_suffix = ldd_suffix;
844 #endif
845 const char *const full_strip_suffix = strip_suffix;
846 const char *const full_gstrip_suffix = gstrip_suffix;
847 #endif /* CROSS_COMPILE */
849 const char *arg;
850 FILE *outf;
851 #ifdef COLLECT_EXPORT_LIST
852 FILE *exportf;
853 #endif
854 const char *ld_file_name;
855 const char *p;
856 char **c_argv;
857 const char **c_ptr;
858 char **ld1_argv;
859 const char **ld1;
860 char **ld2_argv;
861 const char **ld2;
862 char **object_lst;
863 const char **object;
864 int first_file;
865 int num_c_args = argc+9;
867 no_demangle = !! getenv ("COLLECT_NO_DEMANGLE");
869 /* Suppress demangling by the real linker, which may be broken. */
870 putenv (xstrdup ("COLLECT_NO_DEMANGLE="));
872 #if defined (COLLECT2_HOST_INITIALIZATION)
873 /* Perform system dependent initialization, if necessary. */
874 COLLECT2_HOST_INITIALIZATION;
875 #endif
877 #ifdef SIGCHLD
878 /* We *MUST* set SIGCHLD to SIG_DFL so that the wait4() call will
879 receive the signal. A different setting is inheritable */
880 signal (SIGCHLD, SIG_DFL);
881 #endif
883 gcc_init_libintl ();
885 /* Do not invoke xcalloc before this point, since locale needs to be
886 set first, in case a diagnostic is issued. */
888 ld1 = (const char **)(ld1_argv = (char **) xcalloc(sizeof (char *), argc+3));
889 ld2 = (const char **)(ld2_argv = (char **) xcalloc(sizeof (char *), argc+10));
890 object = (const char **)(object_lst = (char **) xcalloc(sizeof (char *), argc));
892 #ifdef DEBUG
893 debug = 1;
894 #endif
896 /* Parse command line early for instances of -debug. This allows
897 the debug flag to be set before functions like find_a_file()
898 are called. */
900 int i;
902 for (i = 1; argv[i] != NULL; i ++)
903 if (! strcmp (argv[i], "-debug"))
904 debug = 1;
905 vflag = debug;
908 #ifndef DEFAULT_A_OUT_NAME
909 output_file = "a.out";
910 #else
911 output_file = DEFAULT_A_OUT_NAME;
912 #endif
914 obstack_begin (&temporary_obstack, 0);
915 temporary_firstobj = (char *) obstack_alloc (&temporary_obstack, 0);
917 current_demangling_style = auto_demangling;
918 p = getenv ("COLLECT_GCC_OPTIONS");
919 while (p && *p)
921 const char *q = extract_string (&p);
922 if (*q == '-' && (q[1] == 'm' || q[1] == 'f'))
923 num_c_args++;
925 obstack_free (&temporary_obstack, temporary_firstobj);
927 /* -fno-exceptions -w */
928 num_c_args += 2;
930 c_ptr = (const char **)
931 (c_argv = (char **) xcalloc (sizeof (char *), num_c_args));
933 if (argc < 2)
934 fatal ("no arguments");
936 #ifdef SIGQUIT
937 if (signal (SIGQUIT, SIG_IGN) != SIG_IGN)
938 signal (SIGQUIT, handler);
939 #endif
940 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
941 signal (SIGINT, handler);
942 #ifdef SIGALRM
943 if (signal (SIGALRM, SIG_IGN) != SIG_IGN)
944 signal (SIGALRM, handler);
945 #endif
946 #ifdef SIGHUP
947 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
948 signal (SIGHUP, handler);
949 #endif
950 if (signal (SIGSEGV, SIG_IGN) != SIG_IGN)
951 signal (SIGSEGV, handler);
952 #ifdef SIGBUS
953 if (signal (SIGBUS, SIG_IGN) != SIG_IGN)
954 signal (SIGBUS, handler);
955 #endif
957 /* Extract COMPILER_PATH and PATH into our prefix list. */
958 prefix_from_env ("COMPILER_PATH", &cpath);
959 prefix_from_env ("PATH", &path);
961 /* Try to discover a valid linker/nm/strip to use. */
963 /* Maybe we know the right file to use (if not cross). */
964 ld_file_name = 0;
965 #ifdef DEFAULT_LINKER
966 if (access (DEFAULT_LINKER, X_OK) == 0)
967 ld_file_name = DEFAULT_LINKER;
968 if (ld_file_name == 0)
969 #endif
970 #ifdef REAL_LD_FILE_NAME
971 ld_file_name = find_a_file (&path, REAL_LD_FILE_NAME);
972 if (ld_file_name == 0)
973 #endif
974 /* Search the (target-specific) compiler dirs for ld'. */
975 ld_file_name = find_a_file (&cpath, real_ld_suffix);
976 /* Likewise for `collect-ld'. */
977 if (ld_file_name == 0)
978 ld_file_name = find_a_file (&cpath, collect_ld_suffix);
979 /* Search the compiler directories for `ld'. We have protection against
980 recursive calls in find_a_file. */
981 if (ld_file_name == 0)
982 ld_file_name = find_a_file (&cpath, ld_suffix);
983 /* Search the ordinary system bin directories
984 for `ld' (if native linking) or `TARGET-ld' (if cross). */
985 if (ld_file_name == 0)
986 ld_file_name = find_a_file (&path, full_ld_suffix);
988 #ifdef REAL_NM_FILE_NAME
989 nm_file_name = find_a_file (&path, REAL_NM_FILE_NAME);
990 if (nm_file_name == 0)
991 #endif
992 nm_file_name = find_a_file (&cpath, gnm_suffix);
993 if (nm_file_name == 0)
994 nm_file_name = find_a_file (&path, full_gnm_suffix);
995 if (nm_file_name == 0)
996 nm_file_name = find_a_file (&cpath, nm_suffix);
997 if (nm_file_name == 0)
998 nm_file_name = find_a_file (&path, full_nm_suffix);
1000 #ifdef LDD_SUFFIX
1001 ldd_file_name = find_a_file (&cpath, ldd_suffix);
1002 if (ldd_file_name == 0)
1003 ldd_file_name = find_a_file (&path, full_ldd_suffix);
1004 #endif
1006 #ifdef REAL_STRIP_FILE_NAME
1007 strip_file_name = find_a_file (&path, REAL_STRIP_FILE_NAME);
1008 if (strip_file_name == 0)
1009 #endif
1010 strip_file_name = find_a_file (&cpath, gstrip_suffix);
1011 if (strip_file_name == 0)
1012 strip_file_name = find_a_file (&path, full_gstrip_suffix);
1013 if (strip_file_name == 0)
1014 strip_file_name = find_a_file (&cpath, strip_suffix);
1015 if (strip_file_name == 0)
1016 strip_file_name = find_a_file (&path, full_strip_suffix);
1018 /* Determine the full path name of the C compiler to use. */
1019 c_file_name = getenv ("COLLECT_GCC");
1020 if (c_file_name == 0)
1022 #ifdef CROSS_COMPILE
1023 c_file_name = concat (target_machine, "-gcc", NULL);
1024 #else
1025 c_file_name = "gcc";
1026 #endif
1029 p = find_a_file (&cpath, c_file_name);
1031 /* Here it should be safe to use the system search path since we should have
1032 already qualified the name of the compiler when it is needed. */
1033 if (p == 0)
1034 p = find_a_file (&path, c_file_name);
1036 if (p)
1037 c_file_name = p;
1039 *ld1++ = *ld2++ = ld_file_name;
1041 /* Make temp file names. */
1042 c_file = make_temp_file (".c");
1043 o_file = make_temp_file (".o");
1044 #ifdef COLLECT_EXPORT_LIST
1045 export_file = make_temp_file (".x");
1046 #endif
1047 ldout = make_temp_file (".ld");
1048 *c_ptr++ = c_file_name;
1049 *c_ptr++ = "-x";
1050 *c_ptr++ = "c";
1051 *c_ptr++ = "-c";
1052 *c_ptr++ = "-o";
1053 *c_ptr++ = o_file;
1055 #ifdef COLLECT_EXPORT_LIST
1056 /* Generate a list of directories from LIBPATH. */
1057 prefix_from_env ("LIBPATH", &libpath_lib_dirs);
1058 /* Add to this list also two standard directories where
1059 AIX loader always searches for libraries. */
1060 add_prefix (&libpath_lib_dirs, "/lib");
1061 add_prefix (&libpath_lib_dirs, "/usr/lib");
1062 #endif
1064 /* Get any options that the upper GCC wants to pass to the sub-GCC.
1066 AIX support needs to know if -shared has been specified before
1067 parsing commandline arguments. */
1069 p = getenv ("COLLECT_GCC_OPTIONS");
1070 while (p && *p)
1072 const char *q = extract_string (&p);
1073 if (*q == '-' && (q[1] == 'm' || q[1] == 'f'))
1074 *c_ptr++ = xstrdup (q);
1075 if (strcmp (q, "-EL") == 0 || strcmp (q, "-EB") == 0)
1076 *c_ptr++ = xstrdup (q);
1077 if (strcmp (q, "-shared") == 0)
1078 shared_obj = 1;
1079 if (*q == '-' && q[1] == 'B')
1081 *c_ptr++ = xstrdup (q);
1082 if (q[2] == 0)
1084 q = extract_string (&p);
1085 *c_ptr++ = xstrdup (q);
1089 obstack_free (&temporary_obstack, temporary_firstobj);
1090 *c_ptr++ = "-fno-exceptions";
1091 *c_ptr++ = "-w";
1093 /* !!! When GCC calls collect2,
1094 it does not know whether it is calling collect2 or ld.
1095 So collect2 cannot meaningfully understand any options
1096 except those ld understands.
1097 If you propose to make GCC pass some other option,
1098 just imagine what will happen if ld is really ld!!! */
1100 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1101 /* After the first file, put in the c++ rt0. */
1103 first_file = 1;
1104 while ((arg = *++argv) != (char *) 0)
1106 *ld1++ = *ld2++ = arg;
1108 if (arg[0] == '-')
1110 switch (arg[1])
1112 #ifdef COLLECT_EXPORT_LIST
1113 /* We want to disable automatic exports on AIX when user
1114 explicitly puts an export list in command line */
1115 case 'b':
1116 if (arg[2] == 'E' || strncmp (&arg[2], "export", 6) == 0)
1117 export_flag = 1;
1118 else if (arg[2] == '6' && arg[3] == '4')
1119 aix64_flag = 1;
1120 break;
1121 #endif
1123 case 'd':
1124 if (!strcmp (arg, "-debug"))
1126 /* Already parsed. */
1127 ld1--;
1128 ld2--;
1130 break;
1132 case 'l':
1133 if (first_file)
1135 /* place o_file BEFORE this argument! */
1136 first_file = 0;
1137 ld2--;
1138 *ld2++ = o_file;
1139 *ld2++ = arg;
1141 #ifdef COLLECT_EXPORT_LIST
1143 /* Resolving full library name. */
1144 const char *s = resolve_lib_name (arg+2);
1146 /* Saving a full library name. */
1147 add_to_list (&libs, s);
1149 #endif
1150 break;
1152 #ifdef COLLECT_EXPORT_LIST
1153 /* Saving directories where to search for libraries. */
1154 case 'L':
1155 add_prefix (&cmdline_lib_dirs, arg+2);
1156 break;
1157 #else
1158 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1159 case 'L':
1160 if (is_in_args (arg, (const char **) ld1_argv, ld1-1))
1161 --ld1;
1162 break;
1163 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1164 #endif
1166 case 'o':
1167 if (arg[2] == '\0')
1168 output_file = *ld1++ = *ld2++ = *++argv;
1169 else if (1
1170 #ifdef SWITCHES_NEED_SPACES
1171 && ! strchr (SWITCHES_NEED_SPACES, arg[1])
1172 #endif
1175 output_file = &arg[2];
1176 break;
1178 case 'r':
1179 if (arg[2] == '\0')
1180 rflag = 1;
1181 break;
1183 case 's':
1184 if (arg[2] == '\0' && do_collecting)
1186 /* We must strip after the nm run, otherwise C++ linking
1187 will not work. Thus we strip in the second ld run, or
1188 else with strip if there is no second ld run. */
1189 strip_flag = 1;
1190 ld1--;
1192 break;
1194 case 'v':
1195 if (arg[2] == '\0')
1196 vflag = 1;
1197 break;
1200 else if ((p = strrchr (arg, '.')) != (char *) 0
1201 && (strcmp (p, ".o") == 0 || strcmp (p, ".a") == 0
1202 || strcmp (p, ".so") == 0 || strcmp (p, ".lo") == 0
1203 || strcmp (p, ".obj") == 0))
1205 if (first_file)
1207 first_file = 0;
1208 if (p[1] == 'o')
1209 *ld2++ = o_file;
1210 else
1212 /* place o_file BEFORE this argument! */
1213 ld2--;
1214 *ld2++ = o_file;
1215 *ld2++ = arg;
1218 if (p[1] == 'o' || p[1] == 'l')
1219 *object++ = arg;
1220 #ifdef COLLECT_EXPORT_LIST
1221 /* libraries can be specified directly, i.e. without -l flag. */
1222 else
1224 /* Saving a full library name. */
1225 add_to_list (&libs, arg);
1227 #endif
1231 #ifdef COLLECT_EXPORT_LIST
1232 /* This is added only for debugging purposes. */
1233 if (debug)
1235 fprintf (stderr, "List of libraries:\n");
1236 dump_list (stderr, "\t", libs.first);
1239 /* The AIX linker will discard static constructors in object files if
1240 nothing else in the file is referenced, so look at them first. */
1242 const char **export_object_lst = (const char **)object_lst;
1244 while (export_object_lst < object)
1245 scan_prog_file (*export_object_lst++, PASS_OBJ);
1248 struct id *list = libs.first;
1250 for (; list; list = list->next)
1251 scan_prog_file (list->name, PASS_FIRST);
1254 if (exports.first)
1256 char *buf = concat ("-bE:", export_file, NULL);
1258 *ld1++ = buf;
1259 *ld2++ = buf;
1261 exportf = fopen (export_file, "w");
1262 if (exportf == (FILE *) 0)
1263 fatal_perror ("fopen %s", export_file);
1264 write_aix_file (exportf, exports.first);
1265 if (fclose (exportf))
1266 fatal_perror ("fclose %s", export_file);
1268 #endif
1270 *c_ptr++ = c_file;
1271 *c_ptr = *ld1 = *object = (char *) 0;
1273 if (vflag)
1275 notice ("collect2 version %s", version_string);
1276 #ifdef TARGET_VERSION
1277 TARGET_VERSION;
1278 #endif
1279 fprintf (stderr, "\n");
1282 if (debug)
1284 const char *ptr;
1285 fprintf (stderr, "ld_file_name = %s\n",
1286 (ld_file_name ? ld_file_name : "not found"));
1287 fprintf (stderr, "c_file_name = %s\n",
1288 (c_file_name ? c_file_name : "not found"));
1289 fprintf (stderr, "nm_file_name = %s\n",
1290 (nm_file_name ? nm_file_name : "not found"));
1291 #ifdef LDD_SUFFIX
1292 fprintf (stderr, "ldd_file_name = %s\n",
1293 (ldd_file_name ? ldd_file_name : "not found"));
1294 #endif
1295 fprintf (stderr, "strip_file_name = %s\n",
1296 (strip_file_name ? strip_file_name : "not found"));
1297 fprintf (stderr, "c_file = %s\n",
1298 (c_file ? c_file : "not found"));
1299 fprintf (stderr, "o_file = %s\n",
1300 (o_file ? o_file : "not found"));
1302 ptr = getenv ("COLLECT_GCC_OPTIONS");
1303 if (ptr)
1304 fprintf (stderr, "COLLECT_GCC_OPTIONS = %s\n", ptr);
1306 ptr = getenv ("COLLECT_GCC");
1307 if (ptr)
1308 fprintf (stderr, "COLLECT_GCC = %s\n", ptr);
1310 ptr = getenv ("COMPILER_PATH");
1311 if (ptr)
1312 fprintf (stderr, "COMPILER_PATH = %s\n", ptr);
1314 ptr = getenv (LIBRARY_PATH_ENV);
1315 if (ptr)
1316 fprintf (stderr, "%-20s= %s\n", LIBRARY_PATH_ENV, ptr);
1318 fprintf (stderr, "\n");
1321 /* Load the program, searching all libraries and attempting to provide
1322 undefined symbols from repository information. */
1324 /* On AIX we do this later. */
1325 #ifndef COLLECT_EXPORT_LIST
1326 do_tlink (ld1_argv, object_lst);
1327 #endif
1329 /* If -r or they will be run via some other method, do not build the
1330 constructor or destructor list, just return now. */
1331 if (rflag
1332 #ifndef COLLECT_EXPORT_LIST
1333 || ! do_collecting
1334 #endif
1337 #ifdef COLLECT_EXPORT_LIST
1338 /* Do the link we avoided above if we are exiting. */
1339 do_tlink (ld1_argv, object_lst);
1341 /* But make sure we delete the export file we may have created. */
1342 if (export_file != 0 && export_file[0])
1343 maybe_unlink (export_file);
1344 #endif
1345 maybe_unlink (c_file);
1346 maybe_unlink (o_file);
1347 return 0;
1350 /* Examine the namelist with nm and search it for static constructors
1351 and destructors to call.
1352 Write the constructor and destructor tables to a .s file and reload. */
1354 /* On AIX we already scanned for global constructors/destructors. */
1355 #ifndef COLLECT_EXPORT_LIST
1356 scan_prog_file (output_file, PASS_FIRST);
1357 #endif
1359 #ifdef SCAN_LIBRARIES
1360 scan_libraries (output_file);
1361 #endif
1363 if (debug)
1365 notice ("%d constructor(s) found\n", constructors.number);
1366 notice ("%d destructor(s) found\n", destructors.number);
1367 notice ("%d frame table(s) found\n", frame_tables.number);
1370 if (constructors.number == 0 && destructors.number == 0
1371 && frame_tables.number == 0
1372 #if defined (SCAN_LIBRARIES) || defined (COLLECT_EXPORT_LIST)
1373 /* If we will be running these functions ourselves, we want to emit
1374 stubs into the shared library so that we do not have to relink
1375 dependent programs when we add static objects. */
1376 && ! shared_obj
1377 #endif
1380 #ifdef COLLECT_EXPORT_LIST
1381 /* Do tlink without additional code generation */
1382 do_tlink (ld1_argv, object_lst);
1383 #endif
1384 /* Strip now if it was requested on the command line. */
1385 if (strip_flag)
1387 char **real_strip_argv = (char **) xcalloc (sizeof (char *), 3);
1388 const char ** strip_argv = (const char **) real_strip_argv;
1390 strip_argv[0] = strip_file_name;
1391 strip_argv[1] = output_file;
1392 strip_argv[2] = (char *) 0;
1393 fork_execute ("strip", real_strip_argv);
1396 #ifdef COLLECT_EXPORT_LIST
1397 maybe_unlink (export_file);
1398 #endif
1399 maybe_unlink (c_file);
1400 maybe_unlink (o_file);
1401 return 0;
1404 /* Sort ctor and dtor lists by priority. */
1405 sort_ids (&constructors);
1406 sort_ids (&destructors);
1408 maybe_unlink(output_file);
1409 outf = fopen (c_file, "w");
1410 if (outf == (FILE *) 0)
1411 fatal_perror ("fopen %s", c_file);
1413 write_c_file (outf, c_file);
1415 if (fclose (outf))
1416 fatal_perror ("fclose %s", c_file);
1418 /* Tell the linker that we have initializer and finalizer functions. */
1419 #ifdef LD_INIT_SWITCH
1420 #ifdef COLLECT_EXPORT_LIST
1421 *ld2++ = concat (LD_INIT_SWITCH, ":", initname, ":", fininame, NULL);
1422 #else
1423 *ld2++ = LD_INIT_SWITCH;
1424 *ld2++ = initname;
1425 *ld2++ = LD_FINI_SWITCH;
1426 *ld2++ = fininame;
1427 #endif
1428 #endif
1430 #ifdef COLLECT_EXPORT_LIST
1431 if (shared_obj)
1433 /* If we did not add export flag to link arguments before, add it to
1434 second link phase now. No new exports should have been added. */
1435 if (! exports.first)
1436 *ld2++ = concat ("-bE:", export_file, NULL);
1438 add_to_list (&exports, initname);
1439 add_to_list (&exports, fininame);
1440 add_to_list (&exports, "_GLOBAL__DI");
1441 add_to_list (&exports, "_GLOBAL__DD");
1442 exportf = fopen (export_file, "w");
1443 if (exportf == (FILE *) 0)
1444 fatal_perror ("fopen %s", export_file);
1445 write_aix_file (exportf, exports.first);
1446 if (fclose (exportf))
1447 fatal_perror ("fclose %s", export_file);
1449 #endif
1451 /* End of arguments to second link phase. */
1452 *ld2 = (char*) 0;
1454 if (debug)
1456 fprintf (stderr, "\n========== output_file = %s, c_file = %s\n",
1457 output_file, c_file);
1458 write_c_file (stderr, "stderr");
1459 fprintf (stderr, "========== end of c_file\n\n");
1460 #ifdef COLLECT_EXPORT_LIST
1461 fprintf (stderr, "\n========== export_file = %s\n", export_file);
1462 write_aix_file (stderr, exports.first);
1463 fprintf (stderr, "========== end of export_file\n\n");
1464 #endif
1467 /* Assemble the constructor and destructor tables.
1468 Link the tables in with the rest of the program. */
1470 fork_execute ("gcc", c_argv);
1471 #ifdef COLLECT_EXPORT_LIST
1472 /* On AIX we must call tlink because of possible templates resolution */
1473 do_tlink (ld2_argv, object_lst);
1474 #else
1475 /* Otherwise, simply call ld because tlink is already done */
1476 fork_execute ("ld", ld2_argv);
1478 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1479 constructors/destructors in shared libraries. */
1480 scan_prog_file (output_file, PASS_SECOND);
1481 #endif
1483 maybe_unlink (c_file);
1484 maybe_unlink (o_file);
1486 #ifdef COLLECT_EXPORT_LIST
1487 maybe_unlink (export_file);
1488 #endif
1490 return 0;
1494 /* Wait for a process to finish, and exit if a nonzero status is found. */
1497 collect_wait (prog)
1498 const char *prog;
1500 int status;
1502 pwait (pid, &status, 0);
1503 if (status)
1505 if (WIFSIGNALED (status))
1507 int sig = WTERMSIG (status);
1508 error ("%s terminated with signal %d [%s]%s",
1509 prog, sig, strsignal(sig),
1510 WCOREDUMP(status) ? ", core dumped" : "");
1511 collect_exit (FATAL_EXIT_CODE);
1514 if (WIFEXITED (status))
1515 return WEXITSTATUS (status);
1517 return 0;
1520 static void
1521 do_wait (prog)
1522 const char *prog;
1524 int ret = collect_wait (prog);
1525 if (ret != 0)
1527 error ("%s returned %d exit status", prog, ret);
1528 collect_exit (ret);
1533 /* Execute a program, and wait for the reply. */
1535 void
1536 collect_execute (prog, argv, redir)
1537 const char *prog;
1538 char **argv;
1539 const char *redir;
1541 char *errmsg_fmt;
1542 char *errmsg_arg;
1543 int redir_handle = -1;
1544 int stdout_save = -1;
1545 int stderr_save = -1;
1547 if (vflag || debug)
1549 char **p_argv;
1550 const char *str;
1552 if (argv[0])
1553 fprintf (stderr, "%s", argv[0]);
1554 else
1555 notice ("[cannot find %s]", prog);
1557 for (p_argv = &argv[1]; (str = *p_argv) != (char *) 0; p_argv++)
1558 fprintf (stderr, " %s", str);
1560 fprintf (stderr, "\n");
1563 fflush (stdout);
1564 fflush (stderr);
1566 /* If we cannot find a program we need, complain error. Do this here
1567 since we might not end up needing something that we could not find. */
1569 if (argv[0] == 0)
1570 fatal ("cannot find `%s'", prog);
1572 if (redir)
1574 /* Open response file. */
1575 redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT);
1577 /* Duplicate the stdout and stderr file handles
1578 so they can be restored later. */
1579 stdout_save = dup (STDOUT_FILENO);
1580 if (stdout_save == -1)
1581 fatal_perror ("redirecting stdout: %s", redir);
1582 stderr_save = dup (STDERR_FILENO);
1583 if (stderr_save == -1)
1584 fatal_perror ("redirecting stdout: %s", redir);
1586 /* Redirect stdout & stderr to our response file. */
1587 dup2 (redir_handle, STDOUT_FILENO);
1588 dup2 (redir_handle, STDERR_FILENO);
1591 pid = pexecute (argv[0], argv, argv[0], NULL, &errmsg_fmt, &errmsg_arg,
1592 (PEXECUTE_FIRST | PEXECUTE_LAST | PEXECUTE_SEARCH));
1594 if (redir)
1596 /* Restore stdout and stderr to their previous settings. */
1597 dup2 (stdout_save, STDOUT_FILENO);
1598 dup2 (stderr_save, STDERR_FILENO);
1600 /* Close response file. */
1601 close (redir_handle);
1604 if (pid == -1)
1605 fatal_perror (errmsg_fmt, errmsg_arg);
1608 static void
1609 fork_execute (prog, argv)
1610 const char *prog;
1611 char **argv;
1613 collect_execute (prog, argv, NULL);
1614 do_wait (prog);
1617 /* Unlink a file unless we are debugging. */
1619 static void
1620 maybe_unlink (file)
1621 const char *file;
1623 if (!debug)
1624 unlink (file);
1625 else
1626 notice ("[Leaving %s]\n", file);
1630 static long sequence_number = 0;
1632 /* Add a name to a linked list. */
1634 static void
1635 add_to_list (head_ptr, name)
1636 struct head *head_ptr;
1637 const char *name;
1639 struct id *newid
1640 = (struct id *) xcalloc (sizeof (struct id) + strlen (name), 1);
1641 struct id *p;
1642 strcpy (newid->name, name);
1644 if (head_ptr->first)
1645 head_ptr->last->next = newid;
1646 else
1647 head_ptr->first = newid;
1649 /* Check for duplicate symbols. */
1650 for (p = head_ptr->first;
1651 strcmp (name, p->name) != 0;
1652 p = p->next)
1654 if (p != newid)
1656 head_ptr->last->next = 0;
1657 free (newid);
1658 return;
1661 newid->sequence = ++sequence_number;
1662 head_ptr->last = newid;
1663 head_ptr->number++;
1666 /* Grab the init priority number from an init function name that
1667 looks like "_GLOBAL_.I.12345.foo". */
1669 static int
1670 extract_init_priority (name)
1671 const char *name;
1673 int pos = 0, pri;
1675 while (name[pos] == '_')
1676 ++pos;
1677 pos += 10; /* strlen ("GLOBAL__X_") */
1679 /* Extract init_p number from ctor/dtor name. */
1680 pri = atoi (name + pos);
1681 return pri ? pri : DEFAULT_INIT_PRIORITY;
1684 /* Insertion sort the ids from ctor/dtor list HEAD_PTR in descending order.
1685 ctors will be run from right to left, dtors from left to right. */
1687 static void
1688 sort_ids (head_ptr)
1689 struct head *head_ptr;
1691 /* id holds the current element to insert. id_next holds the next
1692 element to insert. id_ptr iterates through the already sorted elements
1693 looking for the place to insert id. */
1694 struct id *id, *id_next, **id_ptr;
1696 id = head_ptr->first;
1698 /* We don't have any sorted elements yet. */
1699 head_ptr->first = NULL;
1701 for (; id; id = id_next)
1703 id_next = id->next;
1704 id->sequence = extract_init_priority (id->name);
1706 for (id_ptr = &(head_ptr->first); ; id_ptr = &((*id_ptr)->next))
1707 if (*id_ptr == NULL
1708 /* If the sequence numbers are the same, we put the id from the
1709 file later on the command line later in the list. */
1710 || id->sequence > (*id_ptr)->sequence
1711 /* Hack: do lexical compare, too.
1712 || (id->sequence == (*id_ptr)->sequence
1713 && strcmp (id->name, (*id_ptr)->name) > 0) */
1716 id->next = *id_ptr;
1717 *id_ptr = id;
1718 break;
1722 /* Now set the sequence numbers properly so write_c_file works. */
1723 for (id = head_ptr->first; id; id = id->next)
1724 id->sequence = ++sequence_number;
1727 /* Write: `prefix', the names on list LIST, `suffix'. */
1729 static void
1730 write_list (stream, prefix, list)
1731 FILE *stream;
1732 const char *prefix;
1733 struct id *list;
1735 while (list)
1737 fprintf (stream, "%sx%d,\n", prefix, list->sequence);
1738 list = list->next;
1742 #if LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
1743 /* Given a STRING, return nonzero if it occurs in the list in range
1744 [ARGS_BEGIN,ARGS_END). */
1746 static int
1747 is_in_args (string, args_begin, args_end)
1748 const char *string;
1749 const char **args_begin;
1750 const char **args_end;
1752 const char **args_pointer;
1753 for (args_pointer = args_begin; args_pointer != args_end; ++args_pointer)
1754 if (strcmp (string, *args_pointer) == 0)
1755 return 1;
1756 return 0;
1758 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
1760 #ifdef COLLECT_EXPORT_LIST
1761 /* This function is really used only on AIX, but may be useful. */
1762 #if 0
1763 static int
1764 is_in_list (prefix, list)
1765 const char *prefix;
1766 struct id *list;
1768 while (list)
1770 if (!strcmp (prefix, list->name)) return 1;
1771 list = list->next;
1773 return 0;
1775 #endif
1776 #endif /* COLLECT_EXPORT_LIST */
1778 /* Added for debugging purpose. */
1779 #ifdef COLLECT_EXPORT_LIST
1780 static void
1781 dump_list (stream, prefix, list)
1782 FILE *stream;
1783 const char *prefix;
1784 struct id *list;
1786 while (list)
1788 fprintf (stream, "%s%s,\n", prefix, list->name);
1789 list = list->next;
1792 #endif
1794 #if 0
1795 static void
1796 dump_prefix_list (stream, prefix, list)
1797 FILE *stream;
1798 const char *prefix;
1799 struct prefix_list *list;
1801 while (list)
1803 fprintf (stream, "%s%s,\n", prefix, list->prefix);
1804 list = list->next;
1807 #endif
1809 static void
1810 write_list_with_asm (stream, prefix, list)
1811 FILE *stream;
1812 const char *prefix;
1813 struct id *list;
1815 while (list)
1817 fprintf (stream, "%sx%d __asm__ (\"%s\");\n",
1818 prefix, list->sequence, list->name);
1819 list = list->next;
1823 /* Write out the constructor and destructor tables statically (for a shared
1824 object), along with the functions to execute them. */
1826 static void
1827 write_c_file_stat (stream, name)
1828 FILE *stream;
1829 const char *name ATTRIBUTE_UNUSED;
1831 const char *p, *q;
1832 char *prefix, *r;
1833 int frames = (frame_tables.number > 0);
1835 /* Figure out name of output_file, stripping off .so version. */
1836 p = strrchr (output_file, '/');
1837 if (p == 0)
1838 p = output_file;
1839 else
1840 p++;
1841 q = p;
1842 while (q)
1844 q = strchr (q,'.');
1845 if (q == 0)
1847 q = p + strlen (p);
1848 break;
1850 else
1852 if (strncmp (q, ".so", 3) == 0)
1854 q += 3;
1855 break;
1857 else
1858 q++;
1861 /* q points to null at end of the string (or . of the .so version) */
1862 prefix = xmalloc (q - p + 1);
1863 strncpy (prefix, p, q - p);
1864 prefix[q - p] = 0;
1865 for (r = prefix; *r; r++)
1866 if (!ISALNUM ((unsigned char)*r))
1867 *r = '_';
1868 if (debug)
1869 notice ("\nwrite_c_file - output name is %s, prefix is %s\n",
1870 output_file, prefix);
1872 initname = concat ("_GLOBAL__FI_", prefix, NULL);
1873 fininame = concat ("_GLOBAL__FD_", prefix, NULL);
1875 free (prefix);
1877 /* Write the tables as C code */
1879 fprintf (stream, "static int count;\n");
1880 fprintf (stream, "typedef void entry_pt();\n");
1881 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
1883 if (frames)
1885 write_list_with_asm (stream, "extern void *", frame_tables.first);
1887 fprintf (stream, "\tstatic void *frame_table[] = {\n");
1888 write_list (stream, "\t\t&", frame_tables.first);
1889 fprintf (stream, "\t0\n};\n");
1891 /* This must match what's in frame.h. */
1892 fprintf (stream, "struct object {\n");
1893 fprintf (stream, " void *pc_begin;\n");
1894 fprintf (stream, " void *pc_end;\n");
1895 fprintf (stream, " void *fde_begin;\n");
1896 fprintf (stream, " void *fde_array;\n");
1897 fprintf (stream, " __SIZE_TYPE__ count;\n");
1898 fprintf (stream, " struct object *next;\n");
1899 fprintf (stream, "};\n");
1901 fprintf (stream, "extern void __register_frame_info_table (void *, struct object *);\n");
1902 fprintf (stream, "extern void *__deregister_frame_info (void *);\n");
1904 fprintf (stream, "static void reg_frame () {\n");
1905 fprintf (stream, "\tstatic struct object ob;\n");
1906 fprintf (stream, "\t__register_frame_info_table (frame_table, &ob);\n");
1907 fprintf (stream, "\t}\n");
1909 fprintf (stream, "static void dereg_frame () {\n");
1910 fprintf (stream, "\t__deregister_frame_info (frame_table);\n");
1911 fprintf (stream, "\t}\n");
1914 fprintf (stream, "void %s() {\n", initname);
1915 if (constructors.number > 0 || frames)
1917 fprintf (stream, "\tstatic entry_pt *ctors[] = {\n");
1918 write_list (stream, "\t\t", constructors.first);
1919 if (frames)
1920 fprintf (stream, "\treg_frame,\n");
1921 fprintf (stream, "\t};\n");
1922 fprintf (stream, "\tentry_pt **p;\n");
1923 fprintf (stream, "\tif (count++ != 0) return;\n");
1924 fprintf (stream, "\tp = ctors + %d;\n", constructors.number + frames);
1925 fprintf (stream, "\twhile (p > ctors) (*--p)();\n");
1927 else
1928 fprintf (stream, "\t++count;\n");
1929 fprintf (stream, "}\n");
1930 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
1931 fprintf (stream, "void %s() {\n", fininame);
1932 if (destructors.number > 0 || frames)
1934 fprintf (stream, "\tstatic entry_pt *dtors[] = {\n");
1935 write_list (stream, "\t\t", destructors.first);
1936 if (frames)
1937 fprintf (stream, "\tdereg_frame,\n");
1938 fprintf (stream, "\t};\n");
1939 fprintf (stream, "\tentry_pt **p;\n");
1940 fprintf (stream, "\tif (--count != 0) return;\n");
1941 fprintf (stream, "\tp = dtors;\n");
1942 fprintf (stream, "\twhile (p < dtors + %d) (*p++)();\n",
1943 destructors.number + frames);
1945 fprintf (stream, "}\n");
1947 if (shared_obj)
1949 COLLECT_SHARED_INIT_FUNC(stream, initname);
1950 COLLECT_SHARED_FINI_FUNC(stream, fininame);
1954 /* Write the constructor/destructor tables. */
1956 #ifndef LD_INIT_SWITCH
1957 static void
1958 write_c_file_glob (stream, name)
1959 FILE *stream;
1960 const char *name ATTRIBUTE_UNUSED;
1962 /* Write the tables as C code */
1964 int frames = (frame_tables.number > 0);
1966 fprintf (stream, "typedef void entry_pt();\n\n");
1968 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
1970 if (frames)
1972 write_list_with_asm (stream, "extern void *", frame_tables.first);
1974 fprintf (stream, "\tstatic void *frame_table[] = {\n");
1975 write_list (stream, "\t\t&", frame_tables.first);
1976 fprintf (stream, "\t0\n};\n");
1978 /* This must match what's in frame.h. */
1979 fprintf (stream, "struct object {\n");
1980 fprintf (stream, " void *pc_begin;\n");
1981 fprintf (stream, " void *pc_end;\n");
1982 fprintf (stream, " void *fde_begin;\n");
1983 fprintf (stream, " void *fde_array;\n");
1984 fprintf (stream, " __SIZE_TYPE__ count;\n");
1985 fprintf (stream, " struct object *next;\n");
1986 fprintf (stream, "};\n");
1988 fprintf (stream, "extern void __register_frame_info_table (void *, struct object *);\n");
1989 fprintf (stream, "extern void *__deregister_frame_info (void *);\n");
1991 fprintf (stream, "static void reg_frame () {\n");
1992 fprintf (stream, "\tstatic struct object ob;\n");
1993 fprintf (stream, "\t__register_frame_info_table (frame_table, &ob);\n");
1994 fprintf (stream, "\t}\n");
1996 fprintf (stream, "static void dereg_frame () {\n");
1997 fprintf (stream, "\t__deregister_frame_info (frame_table);\n");
1998 fprintf (stream, "\t}\n");
2001 fprintf (stream, "\nentry_pt * __CTOR_LIST__[] = {\n");
2002 fprintf (stream, "\t(entry_pt *) %d,\n", constructors.number + frames);
2003 write_list (stream, "\t", constructors.first);
2004 if (frames)
2005 fprintf (stream, "\treg_frame,\n");
2006 fprintf (stream, "\t0\n};\n\n");
2008 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
2010 fprintf (stream, "\nentry_pt * __DTOR_LIST__[] = {\n");
2011 fprintf (stream, "\t(entry_pt *) %d,\n", destructors.number + frames);
2012 write_list (stream, "\t", destructors.first);
2013 if (frames)
2014 fprintf (stream, "\tdereg_frame,\n");
2015 fprintf (stream, "\t0\n};\n\n");
2017 fprintf (stream, "extern entry_pt %s;\n", NAME__MAIN);
2018 fprintf (stream, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN);
2020 #endif /* ! LD_INIT_SWITCH */
2022 static void
2023 write_c_file (stream, name)
2024 FILE *stream;
2025 const char *name;
2027 fprintf (stream, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
2028 #ifndef LD_INIT_SWITCH
2029 if (! shared_obj)
2030 write_c_file_glob (stream, name);
2031 else
2032 #endif
2033 write_c_file_stat (stream, name);
2034 fprintf (stream, "#ifdef __cplusplus\n}\n#endif\n");
2037 #ifdef COLLECT_EXPORT_LIST
2038 static void
2039 write_aix_file (stream, list)
2040 FILE *stream;
2041 struct id *list;
2043 for (; list; list = list->next)
2045 fputs (list->name, stream);
2046 putc ('\n', stream);
2049 #endif
2051 #ifdef OBJECT_FORMAT_NONE
2053 /* Generic version to scan the name list of the loaded program for
2054 the symbols g++ uses for static constructors and destructors.
2056 The constructor table begins at __CTOR_LIST__ and contains a count
2057 of the number of pointers (or -1 if the constructors are built in a
2058 separate section by the linker), followed by the pointers to the
2059 constructor functions, terminated with a null pointer. The
2060 destructor table has the same format, and begins at __DTOR_LIST__. */
2062 static void
2063 scan_prog_file (prog_name, which_pass)
2064 const char *prog_name;
2065 enum pass which_pass;
2067 void (*int_handler) PARAMS ((int));
2068 void (*quit_handler) PARAMS ((int));
2069 char *real_nm_argv[4];
2070 const char **nm_argv = (const char **) real_nm_argv;
2071 int argc = 0;
2072 int pipe_fd[2];
2073 char *p, buf[1024];
2074 FILE *inf;
2076 if (which_pass == PASS_SECOND)
2077 return;
2079 /* If we do not have an `nm', complain. */
2080 if (nm_file_name == 0)
2081 fatal ("cannot find `nm'");
2083 nm_argv[argc++] = nm_file_name;
2084 if (NM_FLAGS[0] != '\0')
2085 nm_argv[argc++] = NM_FLAGS;
2087 nm_argv[argc++] = prog_name;
2088 nm_argv[argc++] = (char *) 0;
2090 if (pipe (pipe_fd) < 0)
2091 fatal_perror ("pipe");
2093 inf = fdopen (pipe_fd[0], "r");
2094 if (inf == (FILE *) 0)
2095 fatal_perror ("fdopen");
2097 /* Trace if needed. */
2098 if (vflag)
2100 const char **p_argv;
2101 const char *str;
2103 for (p_argv = &nm_argv[0]; (str = *p_argv) != (char *) 0; p_argv++)
2104 fprintf (stderr, " %s", str);
2106 fprintf (stderr, "\n");
2109 fflush (stdout);
2110 fflush (stderr);
2112 /* Spawn child nm on pipe */
2113 pid = vfork ();
2114 if (pid == -1)
2115 fatal_perror (VFORK_STRING);
2117 if (pid == 0) /* child context */
2119 /* setup stdout */
2120 if (dup2 (pipe_fd[1], 1) < 0)
2121 fatal_perror ("dup2 %d 1", pipe_fd[1]);
2123 if (close (pipe_fd[0]) < 0)
2124 fatal_perror ("close %d", pipe_fd[0]);
2126 if (close (pipe_fd[1]) < 0)
2127 fatal_perror ("close %d", pipe_fd[1]);
2129 execv (nm_file_name, real_nm_argv);
2130 fatal_perror ("execv %s", nm_file_name);
2133 /* Parent context from here on. */
2134 int_handler = (void (*) PARAMS ((int))) signal (SIGINT, SIG_IGN);
2135 #ifdef SIGQUIT
2136 quit_handler = (void (*) PARAMS ((int))) signal (SIGQUIT, SIG_IGN);
2137 #endif
2139 if (close (pipe_fd[1]) < 0)
2140 fatal_perror ("close %d", pipe_fd[1]);
2142 if (debug)
2143 fprintf (stderr, "\nnm output with constructors/destructors.\n");
2145 /* Read each line of nm output. */
2146 while (fgets (buf, sizeof buf, inf) != (char *) 0)
2148 int ch, ch2;
2149 char *name, *end;
2151 /* If it contains a constructor or destructor name, add the name
2152 to the appropriate list. */
2154 for (p = buf; (ch = *p) != '\0' && ch != '\n' && ch != '_'; p++)
2155 if (ch == ' ' && p[1] == 'U' && p[2] == ' ')
2156 break;
2158 if (ch != '_')
2159 continue;
2161 name = p;
2162 /* Find the end of the symbol name.
2163 Do not include `|', because Encore nm can tack that on the end. */
2164 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|';
2165 end++)
2166 continue;
2169 *end = '\0';
2170 switch (is_ctor_dtor (name))
2172 case 1:
2173 if (which_pass != PASS_LIB)
2174 add_to_list (&constructors, name);
2175 break;
2177 case 2:
2178 if (which_pass != PASS_LIB)
2179 add_to_list (&destructors, name);
2180 break;
2182 case 3:
2183 if (which_pass != PASS_LIB)
2184 fatal ("init function found in object %s", prog_name);
2185 #ifndef LD_INIT_SWITCH
2186 add_to_list (&constructors, name);
2187 #endif
2188 break;
2190 case 4:
2191 if (which_pass != PASS_LIB)
2192 fatal ("fini function found in object %s", prog_name);
2193 #ifndef LD_FINI_SWITCH
2194 add_to_list (&destructors, name);
2195 #endif
2196 break;
2198 case 5:
2199 if (which_pass != PASS_LIB)
2200 add_to_list (&frame_tables, name);
2201 break;
2203 default: /* not a constructor or destructor */
2204 continue;
2207 if (debug)
2208 fprintf (stderr, "\t%s\n", buf);
2211 if (debug)
2212 fprintf (stderr, "\n");
2214 if (fclose (inf) != 0)
2215 fatal_perror ("fclose");
2217 do_wait (nm_file_name);
2219 signal (SIGINT, int_handler);
2220 #ifdef SIGQUIT
2221 signal (SIGQUIT, quit_handler);
2222 #endif
2225 #if SUNOS4_SHARED_LIBRARIES
2227 /* Routines to scan the SunOS 4 _DYNAMIC structure to find shared libraries
2228 that the output file depends upon and their initialization/finalization
2229 routines, if any. */
2231 #include <a.out.h>
2232 #include <fcntl.h>
2233 #include <link.h>
2234 #include <sys/mman.h>
2235 #include <sys/param.h>
2236 #include <unistd.h>
2237 #include <sys/dir.h>
2239 /* pointers to the object file */
2240 unsigned object; /* address of memory mapped file */
2241 unsigned objsize; /* size of memory mapped to file */
2242 char * code; /* pointer to code segment */
2243 char * data; /* pointer to data segment */
2244 struct nlist *symtab; /* pointer to symbol table */
2245 struct link_dynamic *ld;
2246 struct link_dynamic_2 *ld_2;
2247 struct head libraries;
2249 /* Map the file indicated by NAME into memory and store its address. */
2251 static void mapfile PARAMS ((const char *));
2253 static void
2254 mapfile (name)
2255 const char *name;
2257 int fp;
2258 struct stat s;
2259 if ((fp = open (name, O_RDONLY)) == -1)
2260 fatal ("unable to open file '%s'", name);
2261 if (fstat (fp, &s) == -1)
2262 fatal ("unable to stat file '%s'", name);
2264 objsize = s.st_size;
2265 object = (unsigned) mmap (0, objsize, PROT_READ|PROT_WRITE, MAP_PRIVATE,
2266 fp, 0);
2267 if (object == (unsigned)-1)
2268 fatal ("unable to mmap file '%s'", name);
2270 close (fp);
2273 /* Helpers for locatelib. */
2275 static const char *libname;
2277 static int libselect PARAMS ((struct direct *));
2279 static int
2280 libselect (d)
2281 struct direct *d;
2283 return (strncmp (libname, d->d_name, strlen (libname)) == 0);
2286 /* If one file has an additional numeric extension past LIBNAME, then put
2287 that one first in the sort. If both files have additional numeric
2288 extensions, then put the one with the higher number first in the sort.
2290 We must verify that the extension is numeric, because Sun saves the
2291 original versions of patched libraries with a .FCS extension. Files with
2292 invalid extensions must go last in the sort, so that they will not be used. */
2293 static int libcompare PARAMS ((struct direct **, struct direct **));
2295 static int
2296 libcompare (d1, d2)
2297 struct direct **d1, **d2;
2299 int i1, i2 = strlen (libname);
2300 char *e1 = (*d1)->d_name + i2;
2301 char *e2 = (*d2)->d_name + i2;
2303 while (*e1 && *e2 && *e1 == '.' && *e2 == '.'
2304 && e1[1] && ISDIGIT (e1[1]) && e2[1] && ISDIGIT (e2[1]))
2306 ++e1;
2307 ++e2;
2308 i1 = strtol (e1, &e1, 10);
2309 i2 = strtol (e2, &e2, 10);
2310 if (i1 != i2)
2311 return i1 - i2;
2314 if (*e1)
2316 /* It has a valid numeric extension, prefer this one. */
2317 if (*e1 == '.' && e1[1] && ISDIGIT (e1[1]))
2318 return 1;
2319 /* It has an invalid numeric extension, must prefer the other one. */
2320 else
2321 return -1;
2323 else if (*e2)
2325 /* It has a valid numeric extension, prefer this one. */
2326 if (*e2 == '.' && e2[1] && ISDIGIT (e2[1]))
2327 return -1;
2328 /* It has an invalid numeric extension, must prefer the other one. */
2329 else
2330 return 1;
2332 else
2333 return 0;
2336 /* Given the name NAME of a dynamic dependency, find its pathname and add
2337 it to the list of libraries. */
2338 static void locatelib PARAMS ((const char *));
2340 static void
2341 locatelib (name)
2342 const char *name;
2344 static const char **l;
2345 static int cnt;
2346 char buf[MAXPATHLEN];
2347 char *p, *q;
2348 const char **pp;
2350 if (l == 0)
2352 char *ld_rules;
2353 char *ldr = 0;
2354 /* counting elements in array, need 1 extra for null */
2355 cnt = 1;
2356 ld_rules = (char *) (ld_2->ld_rules + code);
2357 if (ld_rules)
2359 cnt++;
2360 for (; *ld_rules != 0; ld_rules++)
2361 if (*ld_rules == ':')
2362 cnt++;
2363 ld_rules = (char *) (ld_2->ld_rules + code);
2364 ldr = xstrdup (ld_rules);
2366 p = getenv ("LD_LIBRARY_PATH");
2367 q = 0;
2368 if (p)
2370 cnt++;
2371 for (q = p ; *q != 0; q++)
2372 if (*q == ':')
2373 cnt++;
2374 q = xstrdup (p);
2376 l = (const char **) xmalloc ((cnt + 3) * sizeof (char *));
2377 pp = l;
2378 if (ldr)
2380 *pp++ = ldr;
2381 for (; *ldr != 0; ldr++)
2382 if (*ldr == ':')
2384 *ldr++ = 0;
2385 *pp++ = ldr;
2388 if (q)
2390 *pp++ = q;
2391 for (; *q != 0; q++)
2392 if (*q == ':')
2394 *q++ = 0;
2395 *pp++ = q;
2398 /* built in directories are /lib, /usr/lib, and /usr/local/lib */
2399 *pp++ = "/lib";
2400 *pp++ = "/usr/lib";
2401 *pp++ = "/usr/local/lib";
2402 *pp = 0;
2404 libname = name;
2405 for (pp = l; *pp != 0 ; pp++)
2407 struct direct **namelist;
2408 int entries;
2409 if ((entries = scandir (*pp, &namelist, libselect, libcompare)) > 0)
2411 sprintf (buf, "%s/%s", *pp, namelist[entries - 1]->d_name);
2412 add_to_list (&libraries, buf);
2413 if (debug)
2414 fprintf (stderr, "%s\n", buf);
2415 break;
2418 if (*pp == 0)
2420 if (debug)
2421 notice ("not found\n");
2422 else
2423 fatal ("dynamic dependency %s not found", name);
2427 /* Scan the _DYNAMIC structure of the output file to find shared libraries
2428 that it depends upon and any constructors or destructors they contain. */
2430 static void
2431 scan_libraries (prog_name)
2432 const char *prog_name;
2434 struct exec *header;
2435 char *base;
2436 struct link_object *lo;
2437 char buff[MAXPATHLEN];
2438 struct id *list;
2440 mapfile (prog_name);
2441 header = (struct exec *)object;
2442 if (N_BADMAG (*header))
2443 fatal ("bad magic number in file '%s'", prog_name);
2444 if (header->a_dynamic == 0)
2445 return;
2447 code = (char *) (N_TXTOFF (*header) + (long) header);
2448 data = (char *) (N_DATOFF (*header) + (long) header);
2449 symtab = (struct nlist *) (N_SYMOFF (*header) + (long) header);
2451 if (header->a_magic == ZMAGIC && header->a_entry == 0x20)
2453 /* shared object */
2454 ld = (struct link_dynamic *) (symtab->n_value + code);
2455 base = code;
2457 else
2459 /* executable */
2460 ld = (struct link_dynamic *) data;
2461 base = code-PAGSIZ;
2464 if (debug)
2465 notice ("dynamic dependencies.\n");
2467 ld_2 = (struct link_dynamic_2 *) ((long) ld->ld_un.ld_2 + (long)base);
2468 for (lo = (struct link_object *) ld_2->ld_need; lo;
2469 lo = (struct link_object *) lo->lo_next)
2471 char *name;
2472 lo = (struct link_object *) ((long) lo + code);
2473 name = (char *) (code + lo->lo_name);
2474 if (lo->lo_library)
2476 if (debug)
2477 fprintf (stderr, "\t-l%s.%d => ", name, lo->lo_major);
2478 sprintf (buff, "lib%s.so.%d.%d", name, lo->lo_major, lo->lo_minor);
2479 locatelib (buff);
2481 else
2483 if (debug)
2484 fprintf (stderr, "\t%s\n", name);
2485 add_to_list (&libraries, name);
2489 if (debug)
2490 fprintf (stderr, "\n");
2492 /* now iterate through the library list adding their symbols to
2493 the list. */
2494 for (list = libraries.first; list; list = list->next)
2495 scan_prog_file (list->name, PASS_LIB);
2498 #else /* SUNOS4_SHARED_LIBRARIES */
2499 #ifdef LDD_SUFFIX
2501 /* Use the List Dynamic Dependencies program to find shared libraries that
2502 the output file depends upon and their initialization/finalization
2503 routines, if any. */
2505 static void
2506 scan_libraries (prog_name)
2507 const char *prog_name;
2509 static struct head libraries; /* list of shared libraries found */
2510 struct id *list;
2511 void (*int_handler) PARAMS ((int));
2512 void (*quit_handler) PARAMS ((int));
2513 char *real_ldd_argv[4];
2514 const char **ldd_argv = (const char **) real_ldd_argv;
2515 int argc = 0;
2516 int pipe_fd[2];
2517 char buf[1024];
2518 FILE *inf;
2520 /* If we do not have an `ldd', complain. */
2521 if (ldd_file_name == 0)
2523 error ("cannot find `ldd'");
2524 return;
2527 ldd_argv[argc++] = ldd_file_name;
2528 ldd_argv[argc++] = prog_name;
2529 ldd_argv[argc++] = (char *) 0;
2531 if (pipe (pipe_fd) < 0)
2532 fatal_perror ("pipe");
2534 inf = fdopen (pipe_fd[0], "r");
2535 if (inf == (FILE *) 0)
2536 fatal_perror ("fdopen");
2538 /* Trace if needed. */
2539 if (vflag)
2541 const char **p_argv;
2542 const char *str;
2544 for (p_argv = &ldd_argv[0]; (str = *p_argv) != (char *) 0; p_argv++)
2545 fprintf (stderr, " %s", str);
2547 fprintf (stderr, "\n");
2550 fflush (stdout);
2551 fflush (stderr);
2553 /* Spawn child ldd on pipe */
2554 pid = vfork ();
2555 if (pid == -1)
2556 fatal_perror (VFORK_STRING);
2558 if (pid == 0) /* child context */
2560 /* setup stdout */
2561 if (dup2 (pipe_fd[1], 1) < 0)
2562 fatal_perror ("dup2 %d 1", pipe_fd[1]);
2564 if (close (pipe_fd[0]) < 0)
2565 fatal_perror ("close %d", pipe_fd[0]);
2567 if (close (pipe_fd[1]) < 0)
2568 fatal_perror ("close %d", pipe_fd[1]);
2570 execv (ldd_file_name, real_ldd_argv);
2571 fatal_perror ("execv %s", ldd_file_name);
2574 /* Parent context from here on. */
2575 int_handler = (void (*) PARAMS ((int))) signal (SIGINT, SIG_IGN);
2576 #ifdef SIGQUIT
2577 quit_handler = (void (*) PARAMS ((int))) signal (SIGQUIT, SIG_IGN);
2578 #endif
2580 if (close (pipe_fd[1]) < 0)
2581 fatal_perror ("close %d", pipe_fd[1]);
2583 if (debug)
2584 notice ("\nldd output with constructors/destructors.\n");
2586 /* Read each line of ldd output. */
2587 while (fgets (buf, sizeof buf, inf) != (char *) 0)
2589 int ch2;
2590 char *name, *end, *p = buf;
2592 /* Extract names of libraries and add to list. */
2593 PARSE_LDD_OUTPUT (p);
2594 if (p == 0)
2595 continue;
2597 name = p;
2598 if (strncmp (name, "not found", sizeof ("not found") - 1) == 0)
2599 fatal ("dynamic dependency %s not found", buf);
2601 /* Find the end of the symbol name. */
2602 for (end = p;
2603 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|';
2604 end++)
2605 continue;
2606 *end = '\0';
2608 if (access (name, R_OK) == 0)
2609 add_to_list (&libraries, name);
2610 else
2611 fatal ("unable to open dynamic dependency '%s'", buf);
2613 if (debug)
2614 fprintf (stderr, "\t%s\n", buf);
2616 if (debug)
2617 fprintf (stderr, "\n");
2619 if (fclose (inf) != 0)
2620 fatal_perror ("fclose");
2622 do_wait (ldd_file_name);
2624 signal (SIGINT, int_handler);
2625 #ifdef SIGQUIT
2626 signal (SIGQUIT, quit_handler);
2627 #endif
2629 /* now iterate through the library list adding their symbols to
2630 the list. */
2631 for (list = libraries.first; list; list = list->next)
2632 scan_prog_file (list->name, PASS_LIB);
2635 #endif /* LDD_SUFFIX */
2636 #endif /* SUNOS4_SHARED_LIBRARIES */
2638 #endif /* OBJECT_FORMAT_NONE */
2642 * COFF specific stuff.
2645 #ifdef OBJECT_FORMAT_COFF
2647 #if defined(EXTENDED_COFF)
2649 # define GCC_SYMBOLS(X) (SYMHEADER(X).isymMax + SYMHEADER(X).iextMax)
2650 # define GCC_SYMENT SYMR
2651 # define GCC_OK_SYMBOL(X) ((X).st == stProc || (X).st == stGlobal)
2652 # define GCC_SYMINC(X) (1)
2653 # define GCC_SYMZERO(X) (SYMHEADER(X).isymMax)
2654 # define GCC_CHECK_HDR(X) (PSYMTAB(X) != 0)
2656 #else
2658 # define GCC_SYMBOLS(X) (HEADER(ldptr).f_nsyms)
2659 # define GCC_SYMENT SYMENT
2660 # define GCC_OK_SYMBOL(X) \
2661 (((X).n_sclass == C_EXT) && \
2662 ((X).n_scnum > N_UNDEF) && \
2663 (aix64_flag \
2664 || (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) \
2665 || ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT))))
2666 # define GCC_UNDEF_SYMBOL(X) \
2667 (((X).n_sclass == C_EXT) && ((X).n_scnum == N_UNDEF))
2668 # define GCC_SYMINC(X) ((X).n_numaux+1)
2669 # define GCC_SYMZERO(X) 0
2671 /* 0757 = U803XTOCMAGIC (AIX 4.3) and 0767 = U64_TOCMAGIC (AIX V5) */
2672 #ifdef _AIX51
2673 # define GCC_CHECK_HDR(X) \
2674 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2675 || (HEADER (X).f_magic == 0767 && aix64_flag))
2676 #else
2677 # define GCC_CHECK_HDR(X) \
2678 ((HEADER (X).f_magic == U802TOCMAGIC && ! aix64_flag) \
2679 || (HEADER (X).f_magic == 0757 && aix64_flag))
2680 #endif
2682 #endif
2684 #ifdef COLLECT_EXPORT_LIST
2685 /* Array of standard AIX libraries which should not
2686 be scanned for ctors/dtors. */
2687 static const char *const aix_std_libs[] = {
2688 "/unix",
2689 "/lib/libc.a",
2690 "/lib/libm.a",
2691 "/lib/libc_r.a",
2692 "/lib/libm_r.a",
2693 "/usr/lib/libc.a",
2694 "/usr/lib/libm.a",
2695 "/usr/lib/libc_r.a",
2696 "/usr/lib/libm_r.a",
2697 "/usr/lib/threads/libc.a",
2698 "/usr/ccs/lib/libc.a",
2699 "/usr/ccs/lib/libm.a",
2700 "/usr/ccs/lib/libc_r.a",
2701 "/usr/ccs/lib/libm_r.a",
2702 NULL
2705 /* This function checks the filename and returns 1
2706 if this name matches the location of a standard AIX library. */
2707 static int ignore_library PARAMS ((const char *));
2708 static int
2709 ignore_library (name)
2710 const char *name;
2712 const char *const *p = &aix_std_libs[0];
2713 while (*p++ != NULL)
2714 if (! strcmp (name, *p)) return 1;
2715 return 0;
2717 #endif /* COLLECT_EXPORT_LIST */
2719 #if defined (HAVE_DECL_LDGETNAME) && !HAVE_DECL_LDGETNAME
2720 extern char *ldgetname PARAMS ((LDFILE *, GCC_SYMENT *));
2721 #endif
2723 /* COFF version to scan the name list of the loaded program for
2724 the symbols g++ uses for static constructors and destructors.
2726 The constructor table begins at __CTOR_LIST__ and contains a count
2727 of the number of pointers (or -1 if the constructors are built in a
2728 separate section by the linker), followed by the pointers to the
2729 constructor functions, terminated with a null pointer. The
2730 destructor table has the same format, and begins at __DTOR_LIST__. */
2732 static void
2733 scan_prog_file (prog_name, which_pass)
2734 const char *prog_name;
2735 enum pass which_pass;
2737 LDFILE *ldptr = NULL;
2738 int sym_index, sym_count;
2739 int is_shared = 0;
2741 if (which_pass != PASS_FIRST && which_pass != PASS_OBJ)
2742 return;
2744 #ifdef COLLECT_EXPORT_LIST
2745 /* We do not need scanning for some standard C libraries. */
2746 if (which_pass == PASS_FIRST && ignore_library (prog_name))
2747 return;
2749 /* On AIX we have a loop, because there is not much difference
2750 between an object and an archive. This trick allows us to
2751 eliminate scan_libraries() function. */
2754 #endif
2755 /* Some platforms (e.g. OSF4) declare ldopen as taking a
2756 non-const char * filename parameter, even though it will not
2757 modify that string. So we must cast away const-ness here,
2758 which will cause -Wcast-qual to burp. */
2759 if ((ldptr = ldopen ((char *)prog_name, ldptr)) != NULL)
2761 if (! MY_ISCOFF (HEADER (ldptr).f_magic))
2762 fatal ("%s: not a COFF file", prog_name);
2764 if (GCC_CHECK_HDR (ldptr))
2766 sym_count = GCC_SYMBOLS (ldptr);
2767 sym_index = GCC_SYMZERO (ldptr);
2769 #ifdef COLLECT_EXPORT_LIST
2770 /* Is current archive member a shared object? */
2771 is_shared = HEADER (ldptr).f_flags & F_SHROBJ;
2772 #endif
2774 while (sym_index < sym_count)
2776 GCC_SYMENT symbol;
2778 if (ldtbread (ldptr, sym_index, &symbol) <= 0)
2779 break;
2780 sym_index += GCC_SYMINC (symbol);
2782 if (GCC_OK_SYMBOL (symbol))
2784 char *name;
2786 if ((name = ldgetname (ldptr, &symbol)) == NULL)
2787 continue; /* should never happen */
2789 #ifdef XCOFF_DEBUGGING_INFO
2790 /* All AIX function names have a duplicate entry
2791 beginning with a dot. */
2792 if (*name == '.')
2793 ++name;
2794 #endif
2796 switch (is_ctor_dtor (name))
2798 case 1:
2799 if (! is_shared)
2800 add_to_list (&constructors, name);
2801 #ifdef COLLECT_EXPORT_LIST
2802 if (which_pass == PASS_OBJ)
2803 add_to_list (&exports, name);
2804 #endif
2805 break;
2807 case 2:
2808 if (! is_shared)
2809 add_to_list (&destructors, name);
2810 #ifdef COLLECT_EXPORT_LIST
2811 if (which_pass == PASS_OBJ)
2812 add_to_list (&exports, name);
2813 #endif
2814 break;
2816 #ifdef COLLECT_EXPORT_LIST
2817 case 3:
2818 #ifndef LD_INIT_SWITCH
2819 if (is_shared)
2820 add_to_list (&constructors, name);
2821 #endif
2822 break;
2824 case 4:
2825 #ifndef LD_INIT_SWITCH
2826 if (is_shared)
2827 add_to_list (&destructors, name);
2828 #endif
2829 break;
2830 #endif
2832 case 5:
2833 if (! is_shared)
2834 add_to_list (&frame_tables, name);
2835 #ifdef COLLECT_EXPORT_LIST
2836 if (which_pass == PASS_OBJ)
2837 add_to_list (&exports, name);
2838 #endif
2839 break;
2841 default: /* not a constructor or destructor */
2842 #ifdef COLLECT_EXPORT_LIST
2843 /* If we are building a shared object on AIX we need
2844 to explicitly export all global symbols. */
2845 if (shared_obj)
2847 if (which_pass == PASS_OBJ && (! export_flag))
2848 add_to_list (&exports, name);
2850 #endif
2851 continue;
2854 if (debug)
2855 #if !defined(EXTENDED_COFF)
2856 fprintf (stderr, "\tsec=%d class=%d type=%s%o %s\n",
2857 symbol.n_scnum, symbol.n_sclass,
2858 (symbol.n_type ? "0" : ""), symbol.n_type,
2859 name);
2860 #else
2861 fprintf (stderr,
2862 "\tiss = %5d, value = %5ld, index = %5d, name = %s\n",
2863 symbol.iss, (long) symbol.value, symbol.index, name);
2864 #endif
2868 #ifdef COLLECT_EXPORT_LIST
2869 else
2871 /* If archive contains both 32-bit and 64-bit objects,
2872 we want to skip objects in other mode so mismatch normal. */
2873 if (debug)
2874 fprintf (stderr, "%s : magic=%o aix64=%d mismatch\n",
2875 prog_name, HEADER (ldptr).f_magic, aix64_flag);
2877 #endif
2879 else
2881 fatal ("%s: cannot open as COFF file", prog_name);
2883 #ifdef COLLECT_EXPORT_LIST
2884 /* On AIX loop continues while there are more members in archive. */
2886 while (ldclose (ldptr) == FAILURE);
2887 #else
2888 /* Otherwise we simply close ldptr. */
2889 (void) ldclose(ldptr);
2890 #endif
2892 #endif /* OBJECT_FORMAT_COFF */
2894 #ifdef COLLECT_EXPORT_LIST
2895 /* Given a library name without "lib" prefix, this function
2896 returns a full library name including a path. */
2897 static char *
2898 resolve_lib_name (name)
2899 const char *name;
2901 char *lib_buf;
2902 int i, j, l = 0;
2904 for (i = 0; libpaths[i]; i++)
2905 if (libpaths[i]->max_len > l)
2906 l = libpaths[i]->max_len;
2908 lib_buf = xmalloc (l + strlen(name) + 10);
2910 for (i = 0; libpaths[i]; i++)
2912 struct prefix_list *list = libpaths[i]->plist;
2913 for (; list; list = list->next)
2915 /* The following lines are needed because path_prefix list
2916 may contain directories both with trailing '/' and
2917 without it. */
2918 const char *p = "";
2919 if (list->prefix[strlen(list->prefix)-1] != '/')
2920 p = "/";
2921 for (j = 0; libexts[j]; j++)
2923 sprintf (lib_buf, "%s%slib%s.%s",
2924 list->prefix, p, name, libexts[j]);
2925 if (debug) fprintf (stderr, "searching for: %s\n", lib_buf);
2926 if (file_exists (lib_buf))
2928 if (debug) fprintf (stderr, "found: %s\n", lib_buf);
2929 return (lib_buf);
2934 if (debug)
2935 fprintf (stderr, "not found\n");
2936 else
2937 fatal ("library lib%s not found", name);
2938 return (NULL);
2940 #endif /* COLLECT_EXPORT_LIST */
2944 * OSF/rose specific stuff.
2947 #ifdef OBJECT_FORMAT_ROSE
2949 /* Union of the various load commands */
2951 typedef union load_union
2953 ldc_header_t hdr; /* common header */
2954 load_cmd_map_command_t map; /* map indexing other load cmds */
2955 interpreter_command_t iprtr; /* interpreter pathname */
2956 strings_command_t str; /* load commands strings section */
2957 region_command_t region; /* region load command */
2958 reloc_command_t reloc; /* relocation section */
2959 package_command_t pkg; /* package load command */
2960 symbols_command_t sym; /* symbol sections */
2961 entry_command_t ent; /* program start section */
2962 gen_info_command_t info; /* object information */
2963 func_table_command_t func; /* function constructors/destructors */
2964 } load_union_t;
2966 /* Structure to point to load command and data section in memory. */
2968 typedef struct load_all
2970 load_union_t *load; /* load command */
2971 char *section; /* pointer to section */
2972 } load_all_t;
2974 /* Structure to contain information about a file mapped into memory. */
2976 struct file_info
2978 char *start; /* start of map */
2979 char *name; /* filename */
2980 long size; /* size of the file */
2981 long rounded_size; /* size rounded to page boundary */
2982 int fd; /* file descriptor */
2983 int rw; /* != 0 if opened read/write */
2984 int use_mmap; /* != 0 if mmap'ed */
2987 extern int decode_mach_o_hdr ();
2988 extern int encode_mach_o_hdr ();
2990 static void add_func_table PARAMS ((mo_header_t *, load_all_t *,
2991 symbol_info_t *, int));
2992 static void print_header PARAMS ((mo_header_t *));
2993 static void print_load_command PARAMS ((load_union_t *, size_t, int));
2994 static void bad_header PARAMS ((int));
2995 static struct file_info *read_file PARAMS ((const char *, int, int));
2996 static void end_file PARAMS ((struct file_info *));
2998 /* OSF/rose specific version to scan the name list of the loaded
2999 program for the symbols g++ uses for static constructors and
3000 destructors.
3002 The constructor table begins at __CTOR_LIST__ and contains a count
3003 of the number of pointers (or -1 if the constructors are built in a
3004 separate section by the linker), followed by the pointers to the
3005 constructor functions, terminated with a null pointer. The
3006 destructor table has the same format, and begins at __DTOR_LIST__. */
3008 static void
3009 scan_prog_file (prog_name, which_pass)
3010 const char *prog_name;
3011 enum pass which_pass;
3013 char *obj;
3014 mo_header_t hdr;
3015 load_all_t *load_array;
3016 load_all_t *load_end;
3017 load_all_t *load_cmd;
3018 int symbol_load_cmds;
3019 off_t offset;
3020 int i;
3021 int num_syms;
3022 int status;
3023 char *str_sect;
3024 struct file_info *obj_file;
3025 int prog_fd;
3026 mo_lcid_t cmd_strings = -1;
3027 symbol_info_t *main_sym = 0;
3028 int rw = (which_pass != PASS_FIRST);
3030 prog_fd = open (prog_name, (rw) ? O_RDWR : O_RDONLY);
3031 if (prog_fd < 0)
3032 fatal_perror ("open %s", prog_name);
3034 obj_file = read_file (prog_name, prog_fd, rw);
3035 obj = obj_file->start;
3037 status = decode_mach_o_hdr (obj, MO_SIZEOF_RAW_HDR, MOH_HEADER_VERSION, &hdr);
3038 if (status != MO_HDR_CONV_SUCCESS)
3039 bad_header (status);
3042 /* Do some basic sanity checks. Note we explicitly use the big endian magic number,
3043 since the hardware will automatically swap bytes for us on loading little endian
3044 integers. */
3046 #ifndef CROSS_COMPILE
3047 if (hdr.moh_magic != MOH_MAGIC_MSB
3048 || hdr.moh_header_version != MOH_HEADER_VERSION
3049 || hdr.moh_byte_order != OUR_BYTE_ORDER
3050 || hdr.moh_data_rep_id != OUR_DATA_REP_ID
3051 || hdr.moh_cpu_type != OUR_CPU_TYPE
3052 || hdr.moh_cpu_subtype != OUR_CPU_SUBTYPE
3053 || hdr.moh_vendor_type != OUR_VENDOR_TYPE)
3055 fatal ("incompatibilities between object file & expected values");
3057 #endif
3059 if (debug)
3060 print_header (&hdr);
3062 offset = hdr.moh_first_cmd_off;
3063 load_end = load_array
3064 = (load_all_t *) xcalloc (sizeof (load_all_t), hdr.moh_n_load_cmds + 2);
3066 /* Build array of load commands, calculating the offsets */
3067 for (i = 0; i < hdr.moh_n_load_cmds; i++)
3069 load_union_t *load_hdr; /* load command header */
3071 load_cmd = load_end++;
3072 load_hdr = (load_union_t *) (obj + offset);
3074 /* If modifying the program file, copy the header. */
3075 if (rw)
3077 load_union_t *ptr = (load_union_t *) xmalloc (load_hdr->hdr.ldci_cmd_size);
3078 memcpy ((char *)ptr, (char *)load_hdr, load_hdr->hdr.ldci_cmd_size);
3079 load_hdr = ptr;
3081 /* null out old command map, because we will rewrite at the end. */
3082 if (ptr->hdr.ldci_cmd_type == LDC_CMD_MAP)
3084 cmd_strings = ptr->map.lcm_ld_cmd_strings;
3085 ptr->hdr.ldci_cmd_type = LDC_UNDEFINED;
3089 load_cmd->load = load_hdr;
3090 if (load_hdr->hdr.ldci_section_off > 0)
3091 load_cmd->section = obj + load_hdr->hdr.ldci_section_off;
3093 if (debug)
3094 print_load_command (load_hdr, offset, i);
3096 offset += load_hdr->hdr.ldci_cmd_size;
3099 /* If the last command is the load command map and is not undefined,
3100 decrement the count of load commands. */
3101 if (rw && load_end[-1].load->hdr.ldci_cmd_type == LDC_UNDEFINED)
3103 load_end--;
3104 hdr.moh_n_load_cmds--;
3107 /* Go through and process each symbol table section. */
3108 symbol_load_cmds = 0;
3109 for (load_cmd = load_array; load_cmd < load_end; load_cmd++)
3111 load_union_t *load_hdr = load_cmd->load;
3113 if (load_hdr->hdr.ldci_cmd_type == LDC_SYMBOLS)
3115 symbol_load_cmds++;
3117 if (debug)
3119 const char *kind = "unknown";
3121 switch (load_hdr->sym.symc_kind)
3123 case SYMC_IMPORTS: kind = "imports"; break;
3124 case SYMC_DEFINED_SYMBOLS: kind = "defined"; break;
3125 case SYMC_STABS: kind = "stabs"; break;
3128 notice ("\nProcessing symbol table #%d, offset = 0x%.8lx, kind = %s\n",
3129 symbol_load_cmds, load_hdr->hdr.ldci_section_off, kind);
3132 if (load_hdr->sym.symc_kind != SYMC_DEFINED_SYMBOLS)
3133 continue;
3135 str_sect = load_array[load_hdr->sym.symc_strings_section].section;
3136 if (str_sect == (char *) 0)
3137 fatal ("string section missing");
3139 if (load_cmd->section == (char *) 0)
3140 fatal ("section pointer missing");
3142 num_syms = load_hdr->sym.symc_nentries;
3143 for (i = 0; i < num_syms; i++)
3145 symbol_info_t *sym = ((symbol_info_t *) load_cmd->section) + i;
3146 char *name = sym->si_name.symbol_name + str_sect;
3148 if (name[0] != '_')
3149 continue;
3151 if (rw)
3153 char *n = name + strlen (name) - strlen (NAME__MAIN);
3155 if ((n - name) < 0 || strcmp (n, NAME__MAIN))
3156 continue;
3157 while (n != name)
3158 if (*--n != '_')
3159 continue;
3161 main_sym = sym;
3163 else
3165 switch (is_ctor_dtor (name))
3167 case 1:
3168 add_to_list (&constructors, name);
3169 break;
3171 case 2:
3172 add_to_list (&destructors, name);
3173 break;
3175 default: /* not a constructor or destructor */
3176 continue;
3180 if (debug)
3181 fprintf (stderr, "\ttype = 0x%.4x, sc = 0x%.2x, flags = 0x%.8x, name = %.30s\n",
3182 sym->si_type, sym->si_sc_type, sym->si_flags, name);
3187 if (symbol_load_cmds == 0)
3188 fatal ("no symbol table found");
3190 /* Update the program file now, rewrite header and load commands. At present,
3191 we assume that there is enough space after the last load command to insert
3192 one more. Since the first section written out is page aligned, and the
3193 number of load commands is small, this is ok for the present. */
3195 if (rw)
3197 load_union_t *load_map;
3198 size_t size;
3200 if (cmd_strings == -1)
3201 fatal ("no cmd_strings found");
3203 /* Add __main to initializer list.
3204 If we are building a program instead of a shared library, do not
3205 do anything, since in the current version, you cannot do mallocs
3206 and such in the constructors. */
3208 if (main_sym != (symbol_info_t *) 0
3209 && ((hdr.moh_flags & MOH_EXECABLE_F) == 0))
3210 add_func_table (&hdr, load_array, main_sym, FNTC_INITIALIZATION);
3212 if (debug)
3213 notice ("\nUpdating header and load commands.\n\n");
3215 hdr.moh_n_load_cmds++;
3216 size = sizeof (load_cmd_map_command_t) + (sizeof (mo_offset_t) * (hdr.moh_n_load_cmds - 1));
3218 /* Create new load command map. */
3219 if (debug)
3220 notice ("load command map, %d cmds, new size %ld.\n",
3221 (int) hdr.moh_n_load_cmds, (long) size);
3223 load_map = (load_union_t *) xcalloc (1, size);
3224 load_map->map.ldc_header.ldci_cmd_type = LDC_CMD_MAP;
3225 load_map->map.ldc_header.ldci_cmd_size = size;
3226 load_map->map.lcm_ld_cmd_strings = cmd_strings;
3227 load_map->map.lcm_nentries = hdr.moh_n_load_cmds;
3228 load_array[hdr.moh_n_load_cmds-1].load = load_map;
3230 offset = hdr.moh_first_cmd_off;
3231 for (i = 0; i < hdr.moh_n_load_cmds; i++)
3233 load_map->map.lcm_map[i] = offset;
3234 if (load_array[i].load->hdr.ldci_cmd_type == LDC_CMD_MAP)
3235 hdr.moh_load_map_cmd_off = offset;
3237 offset += load_array[i].load->hdr.ldci_cmd_size;
3240 hdr.moh_sizeofcmds = offset - MO_SIZEOF_RAW_HDR;
3242 if (debug)
3243 print_header (&hdr);
3245 /* Write header */
3246 status = encode_mach_o_hdr (&hdr, obj, MO_SIZEOF_RAW_HDR);
3247 if (status != MO_HDR_CONV_SUCCESS)
3248 bad_header (status);
3250 if (debug)
3251 notice ("writing load commands.\n\n");
3253 /* Write load commands */
3254 offset = hdr.moh_first_cmd_off;
3255 for (i = 0; i < hdr.moh_n_load_cmds; i++)
3257 load_union_t *load_hdr = load_array[i].load;
3258 size_t size = load_hdr->hdr.ldci_cmd_size;
3260 if (debug)
3261 print_load_command (load_hdr, offset, i);
3263 bcopy ((char *) load_hdr, (char *) (obj + offset), size);
3264 offset += size;
3268 end_file (obj_file);
3270 if (close (prog_fd))
3271 fatal_perror ("close %s", prog_name);
3273 if (debug)
3274 fprintf (stderr, "\n");
3278 /* Add a function table to the load commands to call a function
3279 on initiation or termination of the process. */
3281 static void
3282 add_func_table (hdr_p, load_array, sym, type)
3283 mo_header_t *hdr_p; /* pointer to global header */
3284 load_all_t *load_array; /* array of ptrs to load cmds */
3285 symbol_info_t *sym; /* pointer to symbol entry */
3286 int type; /* fntc_type value */
3288 /* Add a new load command. */
3289 int num_cmds = ++hdr_p->moh_n_load_cmds;
3290 int load_index = num_cmds - 1;
3291 size_t size = sizeof (func_table_command_t) + sizeof (mo_addr_t);
3292 load_union_t *ptr = xcalloc (1, size);
3293 load_all_t *load_cmd;
3294 int i;
3296 /* Set the unresolved address bit in the header to force the loader to be
3297 used, since kernel exec does not call the initialization functions. */
3298 hdr_p->moh_flags |= MOH_UNRESOLVED_F;
3300 load_cmd = &load_array[load_index];
3301 load_cmd->load = ptr;
3302 load_cmd->section = (char *) 0;
3304 /* Fill in func table load command. */
3305 ptr->func.ldc_header.ldci_cmd_type = LDC_FUNC_TABLE;
3306 ptr->func.ldc_header.ldci_cmd_size = size;
3307 ptr->func.ldc_header.ldci_section_off = 0;
3308 ptr->func.ldc_header.ldci_section_len = 0;
3309 ptr->func.fntc_type = type;
3310 ptr->func.fntc_nentries = 1;
3312 /* copy address, turn it from abs. address to (region,offset) if necessary. */
3313 /* Is the symbol already expressed as (region, offset)? */
3314 if ((sym->si_flags & SI_ABSOLUTE_VALUE_F) == 0)
3316 ptr->func.fntc_entry_loc[i].adr_lcid = sym->si_value.def_val.adr_lcid;
3317 ptr->func.fntc_entry_loc[i].adr_sctoff = sym->si_value.def_val.adr_sctoff;
3320 /* If not, figure out which region it's in. */
3321 else
3323 mo_vm_addr_t addr = sym->si_value.abs_val;
3324 int found = 0;
3326 for (i = 0; i < load_index; i++)
3328 if (load_array[i].load->hdr.ldci_cmd_type == LDC_REGION)
3330 region_command_t *region_ptr = &load_array[i].load->region;
3332 if ((region_ptr->regc_flags & REG_ABS_ADDR_F) != 0
3333 && addr >= region_ptr->regc_addr.vm_addr
3334 && addr <= region_ptr->regc_addr.vm_addr + region_ptr->regc_vm_size)
3336 ptr->func.fntc_entry_loc[0].adr_lcid = i;
3337 ptr->func.fntc_entry_loc[0].adr_sctoff = addr - region_ptr->regc_addr.vm_addr;
3338 found++;
3339 break;
3344 if (!found)
3345 fatal ("could not convert 0x%l.8x into a region", addr);
3348 if (debug)
3349 notice ("%s function, region %d, offset = %ld (0x%.8lx)\n",
3350 type == FNTC_INITIALIZATION ? "init" : "term",
3351 (int) ptr->func.fntc_entry_loc[i].adr_lcid,
3352 (long) ptr->func.fntc_entry_loc[i].adr_sctoff,
3353 (long) ptr->func.fntc_entry_loc[i].adr_sctoff);
3358 /* Print the global header for an OSF/rose object. */
3360 static void
3361 print_header (hdr_ptr)
3362 mo_header_t *hdr_ptr;
3364 fprintf (stderr, "\nglobal header:\n");
3365 fprintf (stderr, "\tmoh_magic = 0x%.8lx\n", hdr_ptr->moh_magic);
3366 fprintf (stderr, "\tmoh_major_version = %d\n", (int)hdr_ptr->moh_major_version);
3367 fprintf (stderr, "\tmoh_minor_version = %d\n", (int)hdr_ptr->moh_minor_version);
3368 fprintf (stderr, "\tmoh_header_version = %d\n", (int)hdr_ptr->moh_header_version);
3369 fprintf (stderr, "\tmoh_max_page_size = %d\n", (int)hdr_ptr->moh_max_page_size);
3370 fprintf (stderr, "\tmoh_byte_order = %d\n", (int)hdr_ptr->moh_byte_order);
3371 fprintf (stderr, "\tmoh_data_rep_id = %d\n", (int)hdr_ptr->moh_data_rep_id);
3372 fprintf (stderr, "\tmoh_cpu_type = %d\n", (int)hdr_ptr->moh_cpu_type);
3373 fprintf (stderr, "\tmoh_cpu_subtype = %d\n", (int)hdr_ptr->moh_cpu_subtype);
3374 fprintf (stderr, "\tmoh_vendor_type = %d\n", (int)hdr_ptr->moh_vendor_type);
3375 fprintf (stderr, "\tmoh_load_map_cmd_off = %d\n", (int)hdr_ptr->moh_load_map_cmd_off);
3376 fprintf (stderr, "\tmoh_first_cmd_off = %d\n", (int)hdr_ptr->moh_first_cmd_off);
3377 fprintf (stderr, "\tmoh_sizeofcmds = %d\n", (int)hdr_ptr->moh_sizeofcmds);
3378 fprintf (stderr, "\tmon_n_load_cmds = %d\n", (int)hdr_ptr->moh_n_load_cmds);
3379 fprintf (stderr, "\tmoh_flags = 0x%.8lx", (long)hdr_ptr->moh_flags);
3381 if (hdr_ptr->moh_flags & MOH_RELOCATABLE_F)
3382 fprintf (stderr, ", relocatable");
3384 if (hdr_ptr->moh_flags & MOH_LINKABLE_F)
3385 fprintf (stderr, ", linkable");
3387 if (hdr_ptr->moh_flags & MOH_EXECABLE_F)
3388 fprintf (stderr, ", execable");
3390 if (hdr_ptr->moh_flags & MOH_EXECUTABLE_F)
3391 fprintf (stderr, ", executable");
3393 if (hdr_ptr->moh_flags & MOH_UNRESOLVED_F)
3394 fprintf (stderr, ", unresolved");
3396 fprintf (stderr, "\n\n");
3397 return;
3401 /* Print a short summary of a load command. */
3403 static void
3404 print_load_command (load_hdr, offset, number)
3405 load_union_t *load_hdr;
3406 size_t offset;
3407 int number;
3409 mo_long_t type = load_hdr->hdr.ldci_cmd_type;
3410 const char *type_str = (char *) 0;
3412 switch (type)
3414 case LDC_UNDEFINED: type_str = "UNDEFINED"; break;
3415 case LDC_CMD_MAP: type_str = "CMD_MAP"; break;
3416 case LDC_INTERPRETER: type_str = "INTERPRETER"; break;
3417 case LDC_STRINGS: type_str = "STRINGS"; break;
3418 case LDC_REGION: type_str = "REGION"; break;
3419 case LDC_RELOC: type_str = "RELOC"; break;
3420 case LDC_PACKAGE: type_str = "PACKAGE"; break;
3421 case LDC_SYMBOLS: type_str = "SYMBOLS"; break;
3422 case LDC_ENTRY: type_str = "ENTRY"; break;
3423 case LDC_FUNC_TABLE: type_str = "FUNC_TABLE"; break;
3424 case LDC_GEN_INFO: type_str = "GEN_INFO"; break;
3427 fprintf (stderr,
3428 "cmd %2d, sz: 0x%.2lx, coff: 0x%.3lx, doff: 0x%.6lx, dlen: 0x%.6lx",
3429 number,
3430 (long) load_hdr->hdr.ldci_cmd_size,
3431 (long) offset,
3432 (long) load_hdr->hdr.ldci_section_off,
3433 (long) load_hdr->hdr.ldci_section_len);
3435 if (type_str == (char *) 0)
3436 fprintf (stderr, ", ty: unknown (%ld)\n", (long) type);
3438 else if (type != LDC_REGION)
3439 fprintf (stderr, ", ty: %s\n", type_str);
3441 else
3443 const char *region = "";
3444 switch (load_hdr->region.regc_usage_type)
3446 case REG_TEXT_T: region = ", .text"; break;
3447 case REG_DATA_T: region = ", .data"; break;
3448 case REG_BSS_T: region = ", .bss"; break;
3449 case REG_GLUE_T: region = ", .glue"; break;
3450 #if defined (REG_RDATA_T) && defined (REG_SDATA_T) && defined (REG_SBSS_T) /*mips*/
3451 case REG_RDATA_T: region = ", .rdata"; break;
3452 case REG_SDATA_T: region = ", .sdata"; break;
3453 case REG_SBSS_T: region = ", .sbss"; break;
3454 #endif
3457 fprintf (stderr, ", ty: %s, vaddr: 0x%.8lx, vlen: 0x%.6lx%s\n",
3458 type_str,
3459 (long) load_hdr->region.regc_vm_addr,
3460 (long) load_hdr->region.regc_vm_size,
3461 region);
3464 return;
3468 /* Fatal error when {en,de}code_mach_o_header fails. */
3470 static void
3471 bad_header (status)
3472 int status;
3474 switch (status)
3476 case MO_ERROR_BAD_MAGIC: fatal ("bad magic number");
3477 case MO_ERROR_BAD_HDR_VERS: fatal ("bad header version");
3478 case MO_ERROR_BAD_RAW_HDR_VERS: fatal ("bad raw header version");
3479 case MO_ERROR_BUF2SML: fatal ("raw header buffer too small");
3480 case MO_ERROR_OLD_RAW_HDR_FILE: fatal ("old raw header file");
3481 case MO_ERROR_UNSUPPORTED_VERS: fatal ("unsupported version");
3482 default:
3483 fatal ("unknown {de,en}code_mach_o_hdr return value %d", status);
3488 /* Read a file into a memory buffer. */
3490 static struct file_info *
3491 read_file (name, fd, rw)
3492 const char *name; /* filename */
3493 int fd; /* file descriptor */
3494 int rw; /* read/write */
3496 struct stat stat_pkt;
3497 struct file_info *p = (struct file_info *) xcalloc (sizeof (struct file_info), 1);
3498 #ifdef USE_MMAP
3499 static int page_size;
3500 #endif
3502 if (fstat (fd, &stat_pkt) < 0)
3503 fatal_perror ("fstat %s", name);
3505 p->name = name;
3506 p->size = stat_pkt.st_size;
3507 p->rounded_size = stat_pkt.st_size;
3508 p->fd = fd;
3509 p->rw = rw;
3511 #ifdef USE_MMAP
3512 if (debug)
3513 fprintf (stderr, "mmap %s, %s\n", name, (rw) ? "read/write" : "read-only");
3515 if (page_size == 0)
3516 page_size = sysconf (_SC_PAGE_SIZE);
3518 p->rounded_size = ((p->size + page_size - 1) / page_size) * page_size;
3519 p->start = mmap ((caddr_t) 0,
3520 (rw) ? p->rounded_size : p->size,
3521 (rw) ? (PROT_READ | PROT_WRITE) : PROT_READ,
3522 MAP_FILE | MAP_VARIABLE | MAP_SHARED,
3524 0L);
3526 if (p->start != (char *) 0 && p->start != (char *) -1)
3527 p->use_mmap = 1;
3529 else
3530 #endif /* USE_MMAP */
3532 long len;
3534 if (debug)
3535 fprintf (stderr, "read %s\n", name);
3537 p->use_mmap = 0;
3538 p->start = xmalloc (p->size);
3539 if (lseek (fd, 0L, SEEK_SET) < 0)
3540 fatal_perror ("lseek %s 0", name);
3542 len = read (fd, p->start, p->size);
3543 if (len < 0)
3544 fatal_perror ("read %s", name);
3546 if (len != p->size)
3547 fatal ("read %ld bytes, expected %ld, from %s", len, p->size, name);
3550 return p;
3553 /* Do anything necessary to write a file back from memory. */
3555 static void
3556 end_file (ptr)
3557 struct file_info *ptr; /* file information block */
3559 #ifdef USE_MMAP
3560 if (ptr->use_mmap)
3562 if (ptr->rw)
3564 if (debug)
3565 fprintf (stderr, "msync %s\n", ptr->name);
3567 if (msync (ptr->start, ptr->rounded_size, MS_ASYNC))
3568 fatal_perror ("msync %s", ptr->name);
3571 if (debug)
3572 fprintf (stderr, "munmap %s\n", ptr->name);
3574 if (munmap (ptr->start, ptr->size))
3575 fatal_perror ("munmap %s", ptr->name);
3577 else
3578 #endif /* USE_MMAP */
3580 if (ptr->rw)
3582 long len;
3584 if (debug)
3585 fprintf (stderr, "write %s\n", ptr->name);
3587 if (lseek (ptr->fd, 0L, SEEK_SET) < 0)
3588 fatal_perror ("lseek %s 0", ptr->name);
3590 len = write (ptr->fd, ptr->start, ptr->size);
3591 if (len < 0)
3592 fatal_perror ("write %s", ptr->name);
3594 if (len != ptr->size)
3595 fatal ("wrote %ld bytes, expected %ld, to %s", len, ptr->size, ptr->name);
3598 free (ptr->start);
3601 free (ptr);
3604 #endif /* OBJECT_FORMAT_ROSE */