Update comment.
[official-gcc.git] / gcc / collect2.c
blobbe28cc64529e3f71878ac220ff2c109194d56f1b
1 /* Collect static initialization info into data structures
2 that can be traversed by C++ initialization and finalization
3 routines.
5 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
6 Contributed by Chris Smith (csmith@convex.com).
7 Heavily modified by Michael Meissner (meissner@osf.org),
8 Per Bothner (bothner@cygnus.com), and John Gilmore (gnu@cygnus.com).
10 This file is part of GNU CC.
12 GNU CC is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2, or (at your option)
15 any later version.
17 GNU CC is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GNU CC; see the file COPYING. If not, write to
24 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
27 /* Build tables of static constructors and destructors and run ld. */
29 #include <sys/types.h>
30 #include <stdio.h>
31 #include <ctype.h>
32 #include <errno.h>
33 #include <signal.h>
34 #include <sys/file.h>
35 #include <sys/stat.h>
36 #ifdef NO_WAIT_H
37 #include <sys/wait.h>
38 #endif
40 #ifndef errno
41 extern int errno;
42 #endif
44 #if defined(bsd4_4) || defined(__NetBSD__)
45 extern const char *const sys_errlist[];
46 #else
47 extern char *sys_errlist[];
48 #endif
49 extern int sys_nerr;
51 #define COLLECT
53 #include "config.h"
55 #ifndef __STDC__
56 #define generic char
57 #define const
59 #else
60 #define generic void
61 #endif
63 #ifdef USG
64 #define vfork fork
65 #endif
67 /* Add prototype support. */
68 #ifndef PROTO
69 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
70 #define PROTO(ARGS) ARGS
71 #else
72 #define PROTO(ARGS) ()
73 #endif
74 #endif
76 #ifndef R_OK
77 #define R_OK 4
78 #define W_OK 2
79 #define X_OK 1
80 #endif
82 #ifndef WIFSIGNALED
83 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
84 #endif
85 #ifndef WTERMSIG
86 #define WTERMSIG(S) ((S) & 0x7f)
87 #endif
88 #ifndef WIFEXITED
89 #define WIFEXITED(S) (((S) & 0xff) == 0)
90 #endif
91 #ifndef WEXITSTATUS
92 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
93 #endif
95 /* On MSDOS, write temp files in current dir
96 because there's no place else we can expect to use. */
97 #ifdef __MSDOS__
98 #ifndef P_tmpdir
99 #define P_tmpdir "./"
100 #endif
101 #endif
103 /* On certain systems, we have code that works by scanning the object file
104 directly. But this code uses system-specific header files and library
105 functions, so turn it off in a cross-compiler. Likewise, the names of
106 the utilities aren't correct for a cross-compiler; we have to hope that
107 cross-versions are in the proper directories. */
109 #ifdef CROSS_COMPILE
110 #undef SUNOS4_SHARED_LIBRARIES
111 #undef OBJECT_FORMAT_COFF
112 #undef OBJECT_FORMAT_ROSE
113 #undef MD_EXEC_PREFIX
114 #undef REAL_LD_FILE_NAME
115 #undef REAL_NM_FILE_NAME
116 #undef REAL_STRIP_FILE_NAME
117 #endif
119 /* If we can't use a special method, use the ordinary one:
120 run nm to find what symbols are present.
121 In a cross-compiler, this means you need a cross nm,
122 but that isn't quite as unpleasant as special headers. */
124 #if !defined (OBJECT_FORMAT_COFF) && !defined (OBJECT_FORMAT_ROSE)
125 #define OBJECT_FORMAT_NONE
126 #endif
128 #ifdef OBJECT_FORMAT_COFF
130 #include <a.out.h>
131 #include <ar.h>
133 #ifdef UMAX
134 #include <sgs.h>
135 #endif
137 /* Many versions of ldfcn.h define these. */
138 #ifdef FREAD
139 #undef FREAD
140 #undef FWRITE
141 #endif
143 #include <ldfcn.h>
145 /* Some systems have an ISCOFF macro, but others do not. In some cases
146 the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
147 that either do not have an ISCOFF macro in /usr/include or for those
148 where it is wrong. */
150 #ifndef MY_ISCOFF
151 #define MY_ISCOFF(X) ISCOFF (X)
152 #endif
154 #endif /* OBJECT_FORMAT_COFF */
156 #ifdef OBJECT_FORMAT_ROSE
158 #ifdef _OSF_SOURCE
159 #define USE_MMAP
160 #endif
162 #ifdef USE_MMAP
163 #include <sys/mman.h>
164 #endif
166 #include <unistd.h>
167 #include <mach_o_format.h>
168 #include <mach_o_header.h>
169 #include <mach_o_vals.h>
170 #include <mach_o_types.h>
172 #endif /* OBJECT_FORMAT_ROSE */
174 #ifdef OBJECT_FORMAT_NONE
176 /* Default flags to pass to nm. */
177 #ifndef NM_FLAGS
178 #define NM_FLAGS "-p"
179 #endif
181 #endif /* OBJECT_FORMAT_NONE */
183 /* Some systems use __main in a way incompatible with its use in gcc, in these
184 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
185 give the same symbol without quotes for an alternative entry point. You
186 must define both, or niether. */
187 #ifndef NAME__MAIN
188 #define NAME__MAIN "__main"
189 #define SYMBOL__MAIN __main
190 #endif
192 #if defined (LDD_SUFFIX) || defined (SUNOS4_SHARED_LIBRARIES)
193 #define SCAN_LIBRARIES
194 #endif
196 /* Linked lists of constructor and destructor names. */
198 struct id
200 struct id *next;
201 int sequence;
202 char name[1];
205 struct head
207 struct id *first;
208 struct id *last;
209 int number;
212 /* Enumeration giving which pass this is for scanning the program file. */
214 enum pass {
215 PASS_FIRST, /* without constructors */
216 PASS_LIB, /* looking for shared libraries */
217 PASS_SECOND /* with constructors linked in */
220 #ifndef NO_SYS_SIGLIST
221 #ifndef DONT_DECLARE_SYS_SIGLIST
222 extern char *sys_siglist[];
223 #endif
224 #endif
225 extern char *version_string;
227 static int vflag; /* true if -v */
228 static int rflag; /* true if -r */
229 static int strip_flag; /* true if -s */
231 static int debug; /* true if -debug */
233 static int shared_obj; /* true if -shared */
235 static int temp_filename_length; /* Length of temp_filename */
236 static char *temp_filename; /* Base of temp filenames */
237 static char *c_file; /* <xxx>.c for constructor/destructor list. */
238 static char *o_file; /* <xxx>.o for constructor/destructor list. */
239 static char *output_file; /* Output file for ld. */
240 static char *nm_file_name; /* pathname of nm */
241 static char *ldd_file_name; /* pathname of ldd (or equivalent) */
242 static char *strip_file_name; /* pathname of strip */
244 static struct head constructors; /* list of constructors found */
245 static struct head destructors; /* list of destructors found */
247 extern char *getenv ();
248 extern char *mktemp ();
249 extern FILE *fdopen ();
251 /* Structure to hold all the directories in which to search for files to
252 execute. */
254 struct prefix_list
256 char *prefix; /* String to prepend to the path. */
257 struct prefix_list *next; /* Next in linked list. */
260 struct path_prefix
262 struct prefix_list *plist; /* List of prefixes to try */
263 int max_len; /* Max length of a prefix in PLIST */
264 char *name; /* Name of this list (used in config stuff) */
267 static void my_exit PROTO((int));
268 static void handler PROTO((int));
269 static int is_ctor_dtor PROTO((char *));
270 static void choose_temp_base PROTO((void));
271 static int is_in_prefix_list PROTO((struct path_prefix *, char *, int));
272 static char *find_a_file PROTO((struct path_prefix *, char *));
273 static void add_prefix PROTO((struct path_prefix *, char *));
274 static void prefix_from_env PROTO((char *, struct path_prefix *));
275 static void do_wait PROTO((char *));
276 static void fork_execute PROTO((char *, char **));
277 static void maybe_unlink PROTO((char *));
278 static void add_to_list PROTO((struct head *, char *));
279 static void write_list PROTO((FILE *, char *, struct id *));
280 static void write_list_with_asm PROTO((FILE *, char *, struct id *));
281 static void write_c_file PROTO((FILE *, char *));
282 static void scan_prog_file PROTO((char *, enum pass));
283 static void scan_libraries PROTO((char *));
285 generic *xcalloc ();
286 generic *xmalloc ();
288 extern char *index ();
289 extern char *rindex ();
291 #ifdef NO_DUP2
293 dup2 (oldfd, newfd)
294 int oldfd;
295 int newfd;
297 int fdtmp[256];
298 int fdx = 0;
299 int fd;
301 if (oldfd == newfd)
302 return oldfd;
303 close (newfd);
304 while ((fd = dup (oldfd)) != newfd && fd >= 0) /* good enough for low fd's */
305 fdtmp[fdx++] = fd;
306 while (fdx > 0)
307 close (fdtmp[--fdx]);
309 return fd;
311 #endif
313 char *
314 my_strerror (e)
315 int e;
318 #ifdef HAVE_STRERROR
319 return strerror (e);
321 #else
323 static char buffer[30];
324 if (!e)
325 return "";
327 if (e > 0 && e < sys_nerr)
328 return sys_errlist[e];
330 sprintf (buffer, "Unknown error %d", e);
331 return buffer;
332 #endif
335 /* Delete tempfiles and exit function. */
337 static void
338 my_exit (status)
339 int status;
341 if (c_file != 0 && c_file[0])
342 maybe_unlink (c_file);
344 if (o_file != 0 && o_file[0])
345 maybe_unlink (o_file);
347 if (status != 0 && output_file != 0 && output_file[0])
348 maybe_unlink (output_file);
350 exit (status);
354 /* Die when sys call fails. */
356 static void
357 fatal_perror (string, arg1, arg2, arg3)
358 char *string, *arg1, *arg2, *arg3;
360 int e = errno;
362 fprintf (stderr, "collect2: ");
363 fprintf (stderr, string, arg1, arg2, arg3);
364 fprintf (stderr, ": %s\n", my_strerror (e));
365 my_exit (1);
368 /* Just die. */
370 static void
371 fatal (string, arg1, arg2, arg3)
372 char *string, *arg1, *arg2, *arg3;
374 fprintf (stderr, "collect2: ");
375 fprintf (stderr, string, arg1, arg2, arg3);
376 fprintf (stderr, "\n");
377 my_exit (1);
380 /* Write error message. */
382 static void
383 error (string, arg1, arg2, arg3, arg4)
384 char *string, *arg1, *arg2, *arg3, *arg4;
386 fprintf (stderr, "collect2: ");
387 fprintf (stderr, string, arg1, arg2, arg3, arg4);
388 fprintf (stderr, "\n");
391 /* In case obstack is linked in, and abort is defined to fancy_abort,
392 provide a default entry. */
394 void
395 fancy_abort ()
397 fatal ("internal error");
401 static void
402 handler (signo)
403 int signo;
405 if (c_file != 0 && c_file[0])
406 maybe_unlink (c_file);
408 if (o_file != 0 && o_file[0])
409 maybe_unlink (o_file);
411 signal (signo, SIG_DFL);
412 kill (getpid (), signo);
416 generic *
417 xcalloc (size1, size2)
418 int size1, size2;
420 generic *ptr = (generic *) calloc (size1, size2);
421 if (ptr)
422 return ptr;
424 fatal ("out of memory");
425 return (generic *)0;
428 generic *
429 xmalloc (size)
430 int size;
432 generic *ptr = (generic *) malloc (size);
433 if (ptr)
434 return ptr;
436 fatal ("out of memory");
437 return (generic *)0;
440 /* Make a copy of a string INPUT with size SIZE. */
442 char *
443 savestring (input, size)
444 char *input;
445 int size;
447 char *output = (char *) xmalloc (size + 1);
448 bcopy (input, output, size);
449 output[size] = 0;
450 return output;
453 /* Decide whether the given symbol is:
454 a constructor (1), a destructor (2), or neither (0). */
456 static int
457 is_ctor_dtor (s)
458 char *s;
460 struct names { char *name; int len; int ret; int two_underscores; };
462 register struct names *p;
463 register int ch;
464 register char *orig_s = s;
466 static struct names special[] = {
467 #ifdef NO_DOLLAR_IN_LABEL
468 #ifdef NO_DOT_IN_LABEL
469 { "GLOBAL__I_", sizeof ("GLOBAL__I_")-1, 1, 0 },
470 { "GLOBAL__D_", sizeof ("GLOBAL__D_")-1, 2, 0 },
471 #else
472 { "GLOBAL_.I.", sizeof ("GLOBAL_.I.")-1, 1, 0 },
473 { "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 },
474 #endif
475 #else
476 { "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 },
477 { "GLOBAL_$D$", sizeof ("GLOBAL_$D$")-1, 2, 0 },
478 #endif
479 { "GLOBAL__FI_", sizeof ("GLOBAL__FI_")-1, 3, 0 },
480 { "GLOBAL__FD_", sizeof ("GLOBAL__FD_")-1, 4, 0 },
481 #ifdef CFRONT_LOSSAGE /* Don't collect cfront initialization functions.
482 cfront has its own linker procedure to collect them;
483 if collect2 gets them too, they get collected twice
484 when the cfront procedure is run and the compiler used
485 for linking happens to be GCC. */
486 { "sti__", sizeof ("sti__")-1, 1, 1 },
487 { "std__", sizeof ("std__")-1, 2, 1 },
488 #endif /* CFRONT_LOSSAGE */
489 { NULL, 0, 0, 0 }
492 while ((ch = *s) == '_')
493 ++s;
495 if (s == orig_s)
496 return 0;
498 for (p = &special[0]; p->len > 0; p++)
500 if (ch == p->name[0]
501 && (!p->two_underscores || ((s - orig_s) >= 2))
502 && strncmp(s, p->name, p->len) == 0)
504 return p->ret;
507 return 0;
511 /* Compute a string to use as the base of all temporary file names.
512 It is substituted for %g. */
514 static void
515 choose_temp_base ()
517 char *base = getenv ("TMPDIR");
518 int len;
520 if (base == (char *)0)
522 #ifdef P_tmpdir
523 if (access (P_tmpdir, R_OK | W_OK) == 0)
524 base = P_tmpdir;
525 #endif
526 if (base == (char *)0)
528 if (access ("/usr/tmp", R_OK | W_OK) == 0)
529 base = "/usr/tmp/";
530 else
531 base = "/tmp/";
535 len = strlen (base);
536 temp_filename = xmalloc (len + sizeof("/ccXXXXXX") + 1);
537 strcpy (temp_filename, base);
538 if (len > 0 && temp_filename[len-1] != '/')
539 temp_filename[len++] = '/';
540 strcpy (temp_filename + len, "ccXXXXXX");
542 mktemp (temp_filename);
543 temp_filename_length = strlen (temp_filename);
546 /* Routine to add variables to the environment. */
548 #ifndef HAVE_PUTENV
551 putenv (str)
552 char *str;
554 #ifndef VMS /* nor about VMS */
556 extern char **environ;
557 char **old_environ = environ;
558 char **envp;
559 int num_envs = 0;
560 int name_len = 1;
561 char *p = str;
562 int ch;
564 while ((ch = *p++) != '\0' && ch != '=')
565 name_len++;
567 if (!ch)
568 abort ();
570 /* Search for replacing an existing environment variable, and
571 count the number of total environment variables. */
572 for (envp = old_environ; *envp; envp++)
574 num_envs++;
575 if (!strncmp (str, *envp, name_len))
577 *envp = str;
578 return 0;
582 /* Add a new environment variable */
583 environ = (char **) xmalloc (sizeof (char *) * (num_envs+2));
584 *environ = str;
585 bcopy ((char *) old_environ, (char *) (environ + 1),
586 sizeof (char *) * (num_envs+1));
588 return 0;
589 #endif /* VMS */
592 #endif /* HAVE_PUTENV */
594 /* By default, colon separates directories in a path. */
595 #ifndef PATH_SEPARATOR
596 #define PATH_SEPARATOR ':'
597 #endif
599 /* We maintain two prefix lists: one from COMPILER_PATH environment variable
600 and one from the PATH variable. */
602 static struct path_prefix cpath, path;
604 #ifdef CROSS_COMPILE
605 /* This is the name of the target machine. We use it to form the name
606 of the files to execute. */
608 static char *target_machine = TARGET_MACHINE;
609 #endif
611 /* Names under which we were executed. Never return one of those files in our
612 searches. */
614 static struct path_prefix our_file_names;
616 /* Determine if STRING is in PPREFIX.
618 This utility is currently only used to look up file names. Prefix lists
619 record directory names. This matters to us because the latter has a
620 trailing slash, so I've added a flag to handle both. */
622 static int
623 is_in_prefix_list (pprefix, string, filep)
624 struct path_prefix *pprefix;
625 char *string;
626 int filep;
628 struct prefix_list *pl;
630 if (filep)
632 int len = strlen (string);
634 for (pl = pprefix->plist; pl; pl = pl->next)
636 if (strncmp (pl->prefix, string, len) == 0
637 && strcmp (pl->prefix + len, "/") == 0)
638 return 1;
641 else
643 for (pl = pprefix->plist; pl; pl = pl->next)
645 if (strcmp (pl->prefix, string) == 0)
646 return 1;
650 return 0;
653 /* Search for NAME using prefix list PPREFIX. We only look for executable
654 files.
656 Return 0 if not found, otherwise return its name, allocated with malloc. */
658 static char *
659 find_a_file (pprefix, name)
660 struct path_prefix *pprefix;
661 char *name;
663 char *temp;
664 struct prefix_list *pl;
665 int len = pprefix->max_len + strlen (name) + 1;
667 #ifdef EXECUTABLE_SUFFIX
668 len += strlen (EXECUTABLE_SUFFIX);
669 #endif
671 temp = xmalloc (len);
673 /* Determine the filename to execute (special case for absolute paths). */
675 if (*name == '/')
677 if (access (name, X_OK) == 0)
679 strcpy (temp, name);
680 return temp;
683 else
684 for (pl = pprefix->plist; pl; pl = pl->next)
686 strcpy (temp, pl->prefix);
687 strcat (temp, name);
688 if (! is_in_prefix_list (&our_file_names, temp, 1)
689 /* This is a kludge, but there seems no way around it. */
690 && strcmp (temp, "./ld") != 0
691 && access (temp, X_OK) == 0)
692 return temp;
694 #ifdef EXECUTABLE_SUFFIX
695 /* Some systems have a suffix for executable files.
696 So try appending that. */
697 strcat (temp, EXECUTABLE_SUFFIX);
698 if (! is_in_prefix_list (&our_file_names, temp, 1)
699 && access (temp, X_OK) == 0)
700 return temp;
701 #endif
704 free (temp);
705 return 0;
708 /* Add an entry for PREFIX to prefix list PPREFIX. */
710 static void
711 add_prefix (pprefix, prefix)
712 struct path_prefix *pprefix;
713 char *prefix;
715 struct prefix_list *pl, **prev;
716 int len;
718 if (pprefix->plist)
720 for (pl = pprefix->plist; pl->next; pl = pl->next)
722 prev = &pl->next;
724 else
725 prev = &pprefix->plist;
727 /* Keep track of the longest prefix */
729 len = strlen (prefix);
730 if (len > pprefix->max_len)
731 pprefix->max_len = len;
733 pl = (struct prefix_list *) xmalloc (sizeof (struct prefix_list));
734 pl->prefix = savestring (prefix, len);
736 if (*prev)
737 pl->next = *prev;
738 else
739 pl->next = (struct prefix_list *) 0;
740 *prev = pl;
743 /* Take the value of the environment variable ENV, break it into a path, and
744 add of the entries to PPREFIX. */
746 static void
747 prefix_from_env (env, pprefix)
748 char *env;
749 struct path_prefix *pprefix;
751 char *p = getenv (env);
753 if (p)
755 char *startp, *endp;
756 char *nstore = (char *) xmalloc (strlen (p) + 3);
758 startp = endp = p;
759 while (1)
761 if (*endp == PATH_SEPARATOR || *endp == 0)
763 strncpy (nstore, startp, endp-startp);
764 if (endp == startp)
766 strcpy (nstore, "./");
768 else if (endp[-1] != '/')
770 nstore[endp-startp] = '/';
771 nstore[endp-startp+1] = 0;
773 else
774 nstore[endp-startp] = 0;
776 add_prefix (pprefix, nstore);
777 if (*endp == 0)
778 break;
779 endp = startp = endp + 1;
781 else
782 endp++;
787 /* Main program. */
790 main (argc, argv)
791 int argc;
792 char *argv[];
794 char *ld_suffix = "ld";
795 char *full_ld_suffix = ld_suffix;
796 char *real_ld_suffix = "real-ld";
797 char *full_real_ld_suffix = real_ld_suffix;
798 #if 0
799 char *gld_suffix = "gld";
800 char *full_gld_suffix = gld_suffix;
801 #endif
802 char *nm_suffix = "nm";
803 char *full_nm_suffix = nm_suffix;
804 char *gnm_suffix = "gnm";
805 char *full_gnm_suffix = gnm_suffix;
806 #ifdef LDD_SUFFIX
807 char *ldd_suffix = LDD_SUFFIX;
808 char *full_ldd_suffix = ldd_suffix;
809 #endif
810 char *strip_suffix = "strip";
811 char *full_strip_suffix = strip_suffix;
812 char *gstrip_suffix = "gstrip";
813 char *full_gstrip_suffix = gstrip_suffix;
814 char *arg;
815 FILE *outf;
816 char *ld_file_name;
817 char *c_file_name;
818 char *collect_name;
819 char *collect_names;
820 char *p;
821 char **c_argv;
822 char **c_ptr;
823 char **ld1_argv = (char **) xcalloc (sizeof (char *), argc+2);
824 char **ld1 = ld1_argv;
825 char **ld2_argv = (char **) xcalloc (sizeof (char *), argc+5);
826 char **ld2 = ld2_argv;
827 int first_file;
828 int num_c_args = argc+7;
830 #ifdef DEBUG
831 debug = 1;
832 vflag = 1;
833 #endif
835 output_file = "a.out";
837 /* We must check that we do not call ourselves in an infinite
838 recursion loop. We append the name used for us to the COLLECT_NAMES
839 environment variable.
841 In practice, collect will rarely invoke itself. This can happen now
842 that we are no longer called gld. A perfect example is when running
843 gcc in a build directory that has been installed. When looking for
844 ld's, we'll find our installed version and believe that's the real ld. */
846 /* We must also append COLLECT_NAME to COLLECT_NAMES to watch for the
847 previous version of collect (the one that used COLLECT_NAME and only
848 handled two levels of recursion). If we don't we may mutually recurse
849 forever. This can happen (I think) when bootstrapping the old version
850 and a new one is installed (rare, but we should handle it).
851 ??? Hopefully references to COLLECT_NAME can be removed at some point. */
853 collect_name = (char *) getenv ("COLLECT_NAME");
854 collect_names = (char *) getenv ("COLLECT_NAMES");
856 p = (char *) xmalloc (strlen ("COLLECT_NAMES=")
857 + (collect_name ? strlen (collect_name) + 1 : 0)
858 + (collect_names ? strlen (collect_names) + 1 : 0)
859 + strlen (argv[0]) + 1);
860 strcpy (p, "COLLECT_NAMES=");
861 if (collect_name != 0)
862 sprintf (p + strlen (p), "%s%c", collect_name, PATH_SEPARATOR);
863 if (collect_names != 0)
864 sprintf (p + strlen (p), "%s%c", collect_names, PATH_SEPARATOR);
865 strcat (p, argv[0]);
866 putenv (p);
868 prefix_from_env ("COLLECT_NAMES", &our_file_names);
870 /* Set environment variable COLLECT_NAME to our name so the previous version
871 of collect won't find us. If it does we'll mutually recurse forever.
872 This can happen when bootstrapping the new version and an old version is
873 installed.
874 ??? Hopefully this bit of code can be removed at some point. */
876 p = xmalloc (strlen ("COLLECT_NAME=") + strlen (argv[0]) + 1);
877 sprintf (p, "COLLECT_NAME=%s", argv[0]);
878 putenv (p);
880 p = (char *) getenv ("COLLECT_GCC_OPTIONS");
881 if (p)
882 while (*p)
884 char *q = p;
885 while (*q && *q != ' ') q++;
886 if (*p == '-' && p[1] == 'm')
887 num_c_args++;
889 if (*q) q++;
890 p = q;
893 c_ptr = c_argv = (char **) xcalloc (sizeof (char *), num_c_args);
895 if (argc < 2)
896 fatal ("no arguments");
898 #ifdef SIGQUIT
899 if (signal (SIGQUIT, SIG_IGN) != SIG_IGN)
900 signal (SIGQUIT, handler);
901 #endif
902 if (signal (SIGINT, SIG_IGN) != SIG_IGN)
903 signal (SIGINT, handler);
904 #ifdef SIGALRM
905 if (signal (SIGALRM, SIG_IGN) != SIG_IGN)
906 signal (SIGALRM, handler);
907 #endif
908 #ifdef SIGHUP
909 if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
910 signal (SIGHUP, handler);
911 #endif
912 if (signal (SIGSEGV, SIG_IGN) != SIG_IGN)
913 signal (SIGSEGV, handler);
914 #ifdef SIGBUS
915 if (signal (SIGBUS, SIG_IGN) != SIG_IGN)
916 signal (SIGBUS, handler);
917 #endif
919 /* Extract COMPILER_PATH and PATH into our prefix list. */
920 prefix_from_env ("COMPILER_PATH", &cpath);
921 prefix_from_env ("PATH", &path);
923 #ifdef CROSS_COMPILE
924 /* If we look for a program in the compiler directories, we just use
925 the short name, since these directories are already system-specific.
926 But it we look for a took in the system directories, we need to
927 qualify the program name with the target machine. */
929 full_ld_suffix
930 = xcalloc (strlen (ld_suffix) + strlen (target_machine) + 2, 1);
931 strcpy (full_ld_suffix, target_machine);
932 strcat (full_ld_suffix, "-");
933 strcat (full_ld_suffix, ld_suffix);
935 full_real_ld_suffix
936 = xcalloc (strlen (real_ld_suffix) + strlen (target_machine) + 2, 1);
937 strcpy (full_real_ld_suffix, target_machine);
938 strcat (full_real_ld_suffix, "-");
939 strcat (full_real_ld_suffix, real_ld_suffix);
941 #if 0
942 full_gld_suffix
943 = xcalloc (strlen (gld_suffix) + strlen (target_machine) + 2, 1);
944 strcpy (full_gld_suffix, target_machine);
945 strcat (full_gld_suffix, "-");
946 strcat (full_gld_suffix, gld_suffix);
947 #endif
949 full_nm_suffix
950 = xcalloc (strlen (nm_suffix) + strlen (target_machine) + 2, 1);
951 strcpy (full_nm_suffix, target_machine);
952 strcat (full_nm_suffix, "-");
953 strcat (full_nm_suffix, nm_suffix);
955 full_gnm_suffix
956 = xcalloc (strlen (gnm_suffix) + strlen (target_machine) + 2, 1);
957 strcpy (full_gnm_suffix, target_machine);
958 strcat (full_gnm_suffix, "-");
959 strcat (full_gnm_suffix, gnm_suffix);
961 #ifdef LDD_SUFFIX
962 full_ldd_suffix
963 = xcalloc (strlen (ldd_suffix) + strlen (target_machine) + 2, 1);
964 strcpy (full_ldd_suffix, target_machine);
965 strcat (full_ldd_suffix, "-");
966 strcat (full_ldd_suffix, ldd_suffix);
967 #endif
969 full_strip_suffix
970 = xcalloc (strlen (strip_suffix) + strlen (target_machine) + 2, 1);
971 strcpy (full_strip_suffix, target_machine);
972 strcat (full_strip_suffix, "-");
973 strcat (full_strip_suffix, strip_suffix);
975 full_gstrip_suffix
976 = xcalloc (strlen (gstrip_suffix) + strlen (target_machine) + 2, 1);
977 strcpy (full_gstrip_suffix, target_machine);
978 strcat (full_gstrip_suffix, "-");
979 strcat (full_gstrip_suffix, gstrip_suffix);
980 #endif /* CROSS_COMPILE */
982 /* Try to discover a valid linker/nm/strip to use. */
984 /* Maybe we know the right file to use (if not cross). */
985 #ifdef REAL_LD_FILE_NAME
986 ld_file_name = find_a_file (&path, REAL_LD_FILE_NAME);
987 if (ld_file_name == 0)
988 #endif
989 #if 0
990 /* Search the (target-specific) compiler dirs for `gld'. */
991 ld_file_name = find_a_file (&cpath, gld_suffix);
992 /* Search the ordinary system bin directories
993 for `gld' (if native linking) or `TARGET-gld' (if cross). */
994 if (ld_file_name == 0)
995 ld_file_name = find_a_file (&path, full_gld_suffix);
996 #else
997 ld_file_name = 0;
998 #endif
999 /* Likewise for `real-ld'. */
1000 if (ld_file_name == 0)
1001 ld_file_name = find_a_file (&cpath, real_ld_suffix);
1002 if (ld_file_name == 0)
1003 ld_file_name = find_a_file (&path, full_real_ld_suffix);
1004 /* Search the compiler directories for `ld'. We have protection against
1005 recursive calls in find_a_file. */
1006 if (ld_file_name == 0)
1007 ld_file_name = find_a_file (&cpath, ld_suffix);
1008 /* Search the ordinary system bin directories
1009 for `ld' (if native linking) or `TARGET-ld' (if cross). */
1010 if (ld_file_name == 0)
1011 ld_file_name = find_a_file (&path, full_ld_suffix);
1013 /* If we've invoked ourselves, try again with LD_FILE_NAME. */
1015 if (collect_names != 0)
1017 if (ld_file_name != 0)
1019 argv[0] = ld_file_name;
1020 execvp (argv[0], argv);
1022 fatal ("cannot find `ld'");
1025 #ifdef REAL_NM_FILE_NAME
1026 nm_file_name = find_a_file (&path, REAL_NM_FILE_NAME);
1027 if (nm_file_name == 0)
1028 #endif
1029 nm_file_name = find_a_file (&cpath, gnm_suffix);
1030 if (nm_file_name == 0)
1031 nm_file_name = find_a_file (&path, full_gnm_suffix);
1032 if (nm_file_name == 0)
1033 nm_file_name = find_a_file (&cpath, nm_suffix);
1034 if (nm_file_name == 0)
1035 nm_file_name = find_a_file (&path, full_nm_suffix);
1037 #ifdef LDD_SUFFIX
1038 ldd_file_name = find_a_file (&cpath, ldd_suffix);
1039 if (ldd_file_name == 0)
1040 ldd_file_name = find_a_file (&path, full_ldd_suffix);
1041 #endif
1043 #ifdef REAL_STRIP_FILE_NAME
1044 strip_file_name = find_a_file (&path, REAL_STRIP_FILE_NAME);
1045 if (strip_file_name == 0)
1046 #endif
1047 strip_file_name = find_a_file (&cpath, gstrip_suffix);
1048 if (strip_file_name == 0)
1049 strip_file_name = find_a_file (&path, full_gstrip_suffix);
1050 if (strip_file_name == 0)
1051 strip_file_name = find_a_file (&cpath, strip_suffix);
1052 if (strip_file_name == 0)
1053 strip_file_name = find_a_file (&path, full_strip_suffix);
1055 /* Determine the full path name of the C compiler to use. */
1056 c_file_name = getenv ("COLLECT_GCC");
1057 if (c_file_name == 0)
1059 #ifdef CROSS_COMPILE
1060 c_file_name = xcalloc (sizeof ("gcc-") + strlen (target_machine) + 1, 1);
1061 strcpy (c_file_name, target_machine);
1062 strcat (c_file_name, "-gcc");
1063 #else
1064 c_file_name = "gcc";
1065 #endif
1068 p = find_a_file (&cpath, c_file_name);
1070 /* Here it should be safe to use the system search path since we should have
1071 already qualified the name of the compiler when it is needed. */
1072 if (p == 0)
1073 p = find_a_file (&path, c_file_name);
1075 if (p)
1076 c_file_name = p;
1078 *ld1++ = *ld2++ = ld_file_name;
1080 /* Make temp file names. */
1081 choose_temp_base ();
1082 c_file = xcalloc (temp_filename_length + sizeof (".c"), 1);
1083 o_file = xcalloc (temp_filename_length + sizeof (".o"), 1);
1084 sprintf (c_file, "%s.c", temp_filename);
1085 sprintf (o_file, "%s.o", temp_filename);
1086 *c_ptr++ = c_file_name;
1087 *c_ptr++ = "-c";
1088 *c_ptr++ = "-o";
1089 *c_ptr++ = o_file;
1091 /* !!! When GCC calls collect2,
1092 it does not know whether it is calling collect2 or ld.
1093 So collect2 cannot meaningfully understand any options
1094 except those ld understands.
1095 If you propose to make GCC pass some other option,
1096 just imagine what will happen if ld is really ld!!! */
1098 /* Parse arguments. Remember output file spec, pass the rest to ld. */
1099 /* After the first file, put in the c++ rt0. */
1101 first_file = 1;
1102 while ((arg = *++argv) != (char *)0)
1104 *ld1++ = *ld2++ = arg;
1106 if (arg[0] == '-')
1108 switch (arg[1])
1110 case 'd':
1111 if (!strcmp (arg, "-debug"))
1113 debug = 1;
1114 vflag = 1;
1115 ld1--;
1116 ld2--;
1118 break;
1120 case 'l':
1121 if (first_file)
1123 /* place o_file BEFORE this argument! */
1124 first_file = 0;
1125 ld2--;
1126 *ld2++ = o_file;
1127 *ld2++ = arg;
1129 break;
1131 case 'o':
1132 output_file = (arg[2] == '\0') ? argv[1] : &arg[2];
1133 break;
1135 case 'r':
1136 if (arg[2] == '\0')
1137 rflag = 1;
1138 break;
1140 case 's':
1141 if (arg[2] == '\0')
1143 /* We must strip after the nm run, otherwise C++ linking
1144 won't work. Thus we strip in the second ld run, or
1145 else with strip if there is no second ld run. */
1146 strip_flag = 1;
1147 ld1--;
1149 break;
1151 case 'v':
1152 if (arg[2] == '\0')
1153 vflag = 1;
1154 break;
1157 else if (first_file
1158 && (p = rindex (arg, '.')) != (char *)0
1159 && (strcmp (p, ".o") == 0 || strcmp (p, ".a") == 0))
1161 first_file = 0;
1162 /* place o_file BEFORE this argument! */
1163 ld2--;
1164 *ld2++ = o_file;
1165 *ld2++ = arg;
1169 /* Get any options that the upper GCC wants to pass to the sub-GCC. */
1170 p = (char *) getenv ("COLLECT_GCC_OPTIONS");
1171 if (p)
1172 while (*p)
1174 char *q = p;
1175 while (*q && *q != ' ') q++;
1176 if (*p == '-' && (p[1] == 'm' || p[1] == 'f'))
1177 *c_ptr++ = savestring (p, q - p);
1178 if (strncmp (p, "-shared", sizeof ("shared") - 1) == 0)
1179 shared_obj = 1;
1181 if (*q) q++;
1182 p = q;
1185 /* Tell the linker that we have initializer and finalizer functions. */
1186 if (shared_obj)
1188 #ifdef LD_INIT_SWITCH
1189 *ld2++ = LD_INIT_SWITCH;
1190 *ld2++ = "_GLOBAL__DI";
1191 #endif
1192 #ifdef LD_FINI_SWITCH
1193 *ld2++ = LD_FINI_SWITCH;
1194 *ld2++ = "_GLOBAL__DD";
1195 #endif
1198 *c_ptr++ = c_file;
1199 *c_ptr = *ld1 = *ld2 = (char *)0;
1201 if (vflag)
1203 fprintf (stderr, "collect2 version %s", version_string);
1204 #ifdef TARGET_VERSION
1205 TARGET_VERSION;
1206 #endif
1207 fprintf (stderr, "\n");
1210 if (debug)
1212 char *ptr;
1213 fprintf (stderr, "ld_file_name = %s\n",
1214 (ld_file_name ? ld_file_name : "not found"));
1215 fprintf (stderr, "c_file_name = %s\n",
1216 (c_file_name ? c_file_name : "not found"));
1217 fprintf (stderr, "nm_file_name = %s\n",
1218 (nm_file_name ? nm_file_name : "not found"));
1219 #ifdef LDD_SUFFIX
1220 fprintf (stderr, "ldd_file_name = %s\n",
1221 (ldd_file_name ? ldd_file_name : "not found"));
1222 #endif
1223 fprintf (stderr, "strip_file_name = %s\n",
1224 (strip_file_name ? strip_file_name : "not found"));
1225 fprintf (stderr, "c_file = %s\n",
1226 (c_file ? c_file : "not found"));
1227 fprintf (stderr, "o_file = %s\n",
1228 (o_file ? o_file : "not found"));
1230 ptr = getenv ("COLLECT_NAMES");
1231 if (ptr)
1232 fprintf (stderr, "COLLECT_NAMES = %s\n", ptr);
1234 ptr = getenv ("COLLECT_GCC_OPTIONS");
1235 if (ptr)
1236 fprintf (stderr, "COLLECT_GCC_OPTIONS = %s\n", ptr);
1238 ptr = getenv ("COLLECT_GCC");
1239 if (ptr)
1240 fprintf (stderr, "COLLECT_GCC = %s\n", ptr);
1242 ptr = getenv ("COMPILER_PATH");
1243 if (ptr)
1244 fprintf (stderr, "COMPILER_PATH = %s\n", ptr);
1246 ptr = getenv ("LIBRARY_PATH");
1247 if (ptr)
1248 fprintf (stderr, "LIBRARY_PATH = %s\n", ptr);
1250 fprintf (stderr, "\n");
1253 /* Load the program, searching all libraries.
1254 Examine the namelist with nm and search it for static constructors
1255 and destructors to call.
1256 Write the constructor and destructor tables to a .s file and reload. */
1258 fork_execute ("ld", ld1_argv);
1260 /* If -r, don't build the constructor or destructor list, just return now. */
1261 if (rflag)
1262 return 0;
1264 scan_prog_file (output_file, PASS_FIRST);
1266 #ifdef SCAN_LIBRARIES
1267 scan_libraries (output_file);
1268 #endif
1270 if (debug)
1272 fprintf (stderr, "%d constructor(s) found\n", constructors.number);
1273 fprintf (stderr, "%d destructor(s) found\n", destructors.number);
1276 if (constructors.number == 0 && destructors.number == 0
1277 #ifdef LDD_SUFFIX
1278 /* If we will be running these functions ourselves, we want to emit
1279 stubs into the shared library so that we don't have to relink
1280 dependent programs when we add static objects. */
1281 && ! shared_obj
1282 #endif
1285 /* Strip now if it was requested on the command line. */
1286 if (strip_flag)
1288 char **strip_argv = (char **) xcalloc (sizeof (char *), 3);
1289 strip_argv[0] = strip_file_name;
1290 strip_argv[1] = output_file;
1291 strip_argv[2] = (char *) 0;
1292 fork_execute ("strip", strip_argv);
1294 return 0;
1297 maybe_unlink(output_file);
1298 outf = fopen (c_file, "w");
1299 if (outf == (FILE *)0)
1300 fatal_perror ("%s", c_file);
1302 write_c_file (outf, c_file);
1304 if (fclose (outf))
1305 fatal_perror ("closing %s", c_file);
1307 if (debug)
1309 fprintf (stderr, "\n========== output_file = %s, c_file = %s\n",
1310 output_file, c_file);
1311 write_c_file (stderr, "stderr");
1312 fprintf (stderr, "========== end of c_file\n\n");
1315 /* Assemble the constructor and destructor tables.
1316 Link the tables in with the rest of the program. */
1318 fork_execute ("gcc", c_argv);
1319 fork_execute ("ld", ld2_argv);
1321 /* Let scan_prog_file do any final mods (OSF/rose needs this for
1322 constructors/destructors in shared libraries. */
1323 scan_prog_file (output_file, PASS_SECOND);
1325 maybe_unlink (c_file);
1326 maybe_unlink (o_file);
1327 return 0;
1331 /* Wait for a process to finish, and exit if a non-zero status is found. */
1333 static void
1334 do_wait (prog)
1335 char *prog;
1337 int status;
1339 wait (&status);
1340 if (status)
1342 if (WIFSIGNALED (status))
1344 int sig = WTERMSIG (status);
1345 #ifdef NO_SYS_SIGLIST
1346 error ("%s terminated with signal %d %s",
1347 prog,
1348 sig,
1349 (status & 0200) ? ", core dumped" : "");
1350 #else
1351 error ("%s terminated with signal %d [%s]%s",
1352 prog,
1353 sig,
1354 sys_siglist[sig],
1355 (status & 0200) ? ", core dumped" : "");
1356 #endif
1358 my_exit (127);
1361 if (WIFEXITED (status))
1363 int ret = WEXITSTATUS (status);
1364 if (ret != 0)
1366 error ("%s returned %d exit status", prog, ret);
1367 my_exit (ret);
1374 /* Fork and execute a program, and wait for the reply. */
1376 static void
1377 fork_execute (prog, argv)
1378 char *prog;
1379 char **argv;
1381 int pid;
1383 if (vflag || debug)
1385 char **p_argv;
1386 char *str;
1388 if (argv[0])
1389 fprintf (stderr, "%s", argv[0]);
1390 else
1391 fprintf (stderr, "[cannot find %s]", prog);
1393 for (p_argv = &argv[1]; (str = *p_argv) != (char *)0; p_argv++)
1394 fprintf (stderr, " %s", str);
1396 fprintf (stderr, "\n");
1399 fflush (stdout);
1400 fflush (stderr);
1402 /* If we can't find a program we need, complain error. Do this here
1403 since we might not end up needing something that we couldn't find. */
1405 if (argv[0] == 0)
1406 fatal ("cannot find `%s'", prog);
1408 pid = vfork ();
1409 if (pid == -1)
1411 #ifdef vfork
1412 fatal_perror ("fork");
1413 #else
1414 fatal_perror ("vfork");
1415 #endif
1418 if (pid == 0) /* child context */
1420 execvp (argv[0], argv);
1421 fatal_perror ("executing %s", prog);
1424 do_wait (prog);
1428 /* Unlink a file unless we are debugging. */
1430 static void
1431 maybe_unlink (file)
1432 char *file;
1434 if (!debug)
1435 unlink (file);
1436 else
1437 fprintf (stderr, "[Leaving %s]\n", file);
1441 /* Add a name to a linked list. */
1443 static void
1444 add_to_list (head_ptr, name)
1445 struct head *head_ptr;
1446 char *name;
1448 struct id *newid
1449 = (struct id *) xcalloc (sizeof (struct id) + strlen (name), 1);
1450 struct id *p;
1451 static long sequence_number = 0;
1452 strcpy (newid->name, name);
1454 if (head_ptr->first)
1455 head_ptr->last->next = newid;
1456 else
1457 head_ptr->first = newid;
1459 /* Check for duplicate symbols. */
1460 for (p = head_ptr->first;
1461 strcmp (name, p->name) != 0;
1462 p = p->next)
1464 if (p != newid)
1466 head_ptr->last->next = 0;
1467 free (newid);
1468 return;
1471 newid->sequence = ++sequence_number;
1472 head_ptr->last = newid;
1473 head_ptr->number++;
1476 /* Write: `prefix', the names on list LIST, `suffix'. */
1478 static void
1479 write_list (stream, prefix, list)
1480 FILE *stream;
1481 char *prefix;
1482 struct id *list;
1484 while (list)
1486 fprintf (stream, "%sx%d,\n", prefix, list->sequence);
1487 list = list->next;
1491 static void
1492 write_list_with_asm (stream, prefix, list)
1493 FILE *stream;
1494 char *prefix;
1495 struct id *list;
1497 while (list)
1499 fprintf (stream, "%sx%d __asm__ (\"%s\");\n",
1500 prefix, list->sequence, list->name);
1501 list = list->next;
1505 /* Write out the constructor and destructor tables statically (for a shared
1506 object), along with the functions to execute them. */
1508 static void
1509 write_c_file_stat (stream, name)
1510 FILE *stream;
1511 char *name;
1513 char *prefix, *p, *q;
1514 char *initname, *fininame;
1516 /* Figure out name of output_file, stripping off .so version. */
1517 p = rindex (output_file, '/');
1518 if (p == 0)
1519 p = (char *) output_file;
1520 else
1521 p++;
1522 q = p;
1523 while (q)
1525 q = index (q,'.');
1526 if (q == 0)
1528 q = p + strlen (p);
1529 break;
1531 else
1533 if (strncmp (q, ".so", 3) == 0)
1535 q += 3;
1536 break;
1538 else
1539 q++;
1542 /* q points to null at end of the string (or . of the .so version) */
1543 prefix = xmalloc (q - p + 1);
1544 strncpy (prefix, p, q - p);
1545 prefix[q - p] = 0;
1546 for (q = prefix; *q; q++)
1547 if (!isalnum (*q))
1548 *q = '_';
1549 if (debug)
1550 fprintf (stderr, "\nwrite_c_file - output name is %s, prefix is %s\n",
1551 output_file, prefix);
1553 #define INIT_NAME_FORMAT "_GLOBAL__FI_%s"
1554 initname = xmalloc (strlen (prefix) + sizeof (INIT_NAME_FORMAT) - 2);
1555 sprintf (initname, INIT_NAME_FORMAT, prefix);
1557 #define FINI_NAME_FORMAT "_GLOBAL__FD_%s"
1558 fininame = xmalloc (strlen (prefix) + sizeof (FINI_NAME_FORMAT) - 2);
1559 sprintf (fininame, FINI_NAME_FORMAT, prefix);
1561 free (prefix);
1563 /* Write the tables as C code */
1565 fprintf (stream, "static int count;\n");
1566 fprintf (stream, "typedef void entry_pt();\n");
1567 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
1568 fprintf (stream, "void %s() {\n", initname);
1569 if (constructors.number > 0)
1571 fprintf (stream, "\tstatic entry_pt *ctors[] = {\n");
1572 write_list (stream, "\t\t", constructors.first);
1573 fprintf (stream, "\t};\n");
1574 fprintf (stream, "\tentry_pt **p;\n");
1575 fprintf (stream, "\tif (count++ != 0) return;\n");
1576 fprintf (stream, "\tp = ctors + %d;\n", constructors.number);
1577 fprintf (stream, "\twhile (p > ctors) (*--p)();\n");
1579 fprintf (stream, "}\n");
1580 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
1581 fprintf (stream, "void %s() {\n", fininame);
1582 if (destructors.number > 0)
1584 fprintf (stream, "\tstatic entry_pt *dtors[] = {\n");
1585 write_list (stream, "\t\t", destructors.first);
1586 fprintf (stream, "\t};\n");
1587 fprintf (stream, "\tentry_pt **p;\n");
1588 fprintf (stream, "\tif (--count != 0) return;\n");
1589 fprintf (stream, "\tp = dtors;\n");
1590 fprintf (stream, "\twhile (p < dtors + %d) (*p++)();\n",
1591 destructors.number);
1593 fprintf (stream, "}\n");
1595 fprintf (stream, "void _GLOBAL__DI() {\n\t%s();\n}\n", initname);
1596 fprintf (stream, "void _GLOBAL__DD() {\n\t%s();\n}\n", fininame);
1598 free (initname);
1599 free (fininame);
1602 /* Write the constructor/destructor tables. */
1604 static void
1605 write_c_file_glob (stream, name)
1606 FILE *stream;
1607 char *name;
1609 /* Write the tables as C code */
1611 fprintf (stream, "typedef void entry_pt();\n\n");
1613 write_list_with_asm (stream, "extern entry_pt ", constructors.first);
1615 fprintf (stream, "\nentry_pt * __CTOR_LIST__[] = {\n");
1616 fprintf (stream, "\t(entry_pt *) %d,\n", constructors.number);
1617 write_list (stream, "\t", constructors.first);
1618 fprintf (stream, "\t0\n};\n\n");
1620 write_list_with_asm (stream, "extern entry_pt ", destructors.first);
1622 fprintf (stream, "\nentry_pt * __DTOR_LIST__[] = {\n");
1623 fprintf (stream, "\t(entry_pt *) %d,\n", destructors.number);
1624 write_list (stream, "\t", destructors.first);
1625 fprintf (stream, "\t0\n};\n\n");
1627 fprintf (stream, "extern entry_pt %s;\n", NAME__MAIN);
1628 fprintf (stream, "entry_pt *__main_reference = %s;\n\n", NAME__MAIN);
1631 static void
1632 write_c_file (stream, name)
1633 FILE *stream;
1634 char *name;
1636 if (shared_obj)
1637 write_c_file_stat (stream, name);
1638 else
1639 write_c_file_glob (stream, name);
1642 #ifdef OBJECT_FORMAT_NONE
1644 /* Generic version to scan the name list of the loaded program for
1645 the symbols g++ uses for static constructors and destructors.
1647 The constructor table begins at __CTOR_LIST__ and contains a count
1648 of the number of pointers (or -1 if the constructors are built in a
1649 separate section by the linker), followed by the pointers to the
1650 constructor functions, terminated with a null pointer. The
1651 destructor table has the same format, and begins at __DTOR_LIST__. */
1653 static void
1654 scan_prog_file (prog_name, which_pass)
1655 char *prog_name;
1656 enum pass which_pass;
1658 void (*int_handler) ();
1659 void (*quit_handler) ();
1660 char *nm_argv[4];
1661 int pid;
1662 int argc = 0;
1663 int pipe_fd[2];
1664 char *p, buf[1024];
1665 FILE *inf;
1667 if (which_pass == PASS_SECOND)
1668 return;
1670 /* If we don't have an `nm', complain. */
1671 if (nm_file_name == 0)
1672 fatal ("cannot find `nm'");
1674 nm_argv[argc++] = nm_file_name;
1675 if (NM_FLAGS[0] != '\0')
1676 nm_argv[argc++] = NM_FLAGS;
1678 nm_argv[argc++] = prog_name;
1679 nm_argv[argc++] = (char *)0;
1681 if (pipe (pipe_fd) < 0)
1682 fatal_perror ("pipe");
1684 inf = fdopen (pipe_fd[0], "r");
1685 if (inf == (FILE *)0)
1686 fatal_perror ("fdopen");
1688 /* Trace if needed. */
1689 if (vflag)
1691 char **p_argv;
1692 char *str;
1694 for (p_argv = &nm_argv[0]; (str = *p_argv) != (char *)0; p_argv++)
1695 fprintf (stderr, " %s", str);
1697 fprintf (stderr, "\n");
1700 fflush (stdout);
1701 fflush (stderr);
1703 /* Spawn child nm on pipe */
1704 pid = vfork ();
1705 if (pid == -1)
1707 #ifdef vfork
1708 fatal_perror ("fork");
1709 #else
1710 fatal_perror ("vfork");
1711 #endif
1714 if (pid == 0) /* child context */
1716 /* setup stdout */
1717 if (dup2 (pipe_fd[1], 1) < 0)
1718 fatal_perror ("dup2 (%d, 1)", pipe_fd[1]);
1720 if (close (pipe_fd[0]) < 0)
1721 fatal_perror ("close (%d)", pipe_fd[0]);
1723 if (close (pipe_fd[1]) < 0)
1724 fatal_perror ("close (%d)", pipe_fd[1]);
1726 execv (nm_file_name, nm_argv);
1727 fatal_perror ("executing %s", nm_file_name);
1730 /* Parent context from here on. */
1731 int_handler = (void (*) ())signal (SIGINT, SIG_IGN);
1732 #ifdef SIGQUIT
1733 quit_handler = (void (*) ())signal (SIGQUIT, SIG_IGN);
1734 #endif
1736 if (close (pipe_fd[1]) < 0)
1737 fatal_perror ("close (%d)", pipe_fd[1]);
1739 if (debug)
1740 fprintf (stderr, "\nnm output with constructors/destructors.\n");
1742 /* Read each line of nm output. */
1743 while (fgets (buf, sizeof buf, inf) != (char *)0)
1745 int ch, ch2;
1746 char *name, *end;
1748 /* If it contains a constructor or destructor name, add the name
1749 to the appropriate list. */
1751 for (p = buf; (ch = *p) != '\0' && ch != '\n' && ch != '_'; p++)
1752 if (ch == ' ' && p[1] == 'U' && p[2] == ' ')
1753 break;
1755 if (ch != '_')
1756 continue;
1758 name = p;
1759 /* Find the end of the symbol name.
1760 Don't include `|', because Encore nm can tack that on the end. */
1761 for (end = p; (ch2 = *end) != '\0' && !isspace (ch2) && ch2 != '|';
1762 end++)
1763 continue;
1766 *end = '\0';
1767 switch (is_ctor_dtor (name))
1769 case 1:
1770 if (which_pass != PASS_LIB)
1771 add_to_list (&constructors, name);
1772 break;
1774 case 2:
1775 if (which_pass != PASS_LIB)
1776 add_to_list (&destructors, name);
1777 break;
1779 case 3:
1780 if (which_pass != PASS_LIB)
1781 fatal ("init function found in object %s", prog_name);
1782 #ifndef LD_INIT_SWITCH
1783 add_to_list (&constructors, name);
1784 #endif
1785 break;
1787 case 4:
1788 if (which_pass != PASS_LIB)
1789 fatal ("fini function found in object %s", prog_name);
1790 #ifndef LD_FINI_SWITCH
1791 add_to_list (&destructors, name);
1792 #endif
1793 break;
1795 default: /* not a constructor or destructor */
1796 continue;
1799 if (debug)
1800 fprintf (stderr, "\t%s\n", buf);
1803 if (debug)
1804 fprintf (stderr, "\n");
1806 if (fclose (inf) != 0)
1807 fatal_perror ("fclose of pipe");
1809 do_wait (nm_file_name);
1811 signal (SIGINT, int_handler);
1812 #ifdef SIGQUIT
1813 signal (SIGQUIT, quit_handler);
1814 #endif
1817 #ifdef SUNOS4_SHARED_LIBRARIES
1819 /* Routines to scan the SunOS 4 _DYNAMIC structure to find shared libraries
1820 that the output file depends upon and their initialization/finalization
1821 routines, if any. */
1823 #include <a.out.h>
1824 #include <fcntl.h>
1825 #include <link.h>
1826 #include <sys/mman.h>
1827 #include <sys/param.h>
1828 #include <sys/unistd.h>
1830 /* pointers to the object file */
1831 unsigned object; /* address of memory mapped file */
1832 unsigned objsize; /* size of memory mapped to file */
1833 char * code; /* pointer to code segment */
1834 char * data; /* pointer to data segment */
1835 struct nlist *symtab; /* pointer to symbol table */
1836 struct link_dynamic *ld;
1837 struct link_dynamic_2 *ld_2;
1838 struct head libraries;
1840 /* Map the file indicated by NAME into memory and store its address. */
1842 static void
1843 mapfile (name)
1844 char *name;
1846 int fp;
1847 struct stat s;
1848 if ((fp = open (name, O_RDONLY)) == -1)
1849 fatal ("unable to open file '%s'", name);
1850 if (fstat (fp, &s) == -1)
1851 fatal ("unable to stat file '%s'", name);
1853 objsize = s.st_size;
1854 object = (unsigned) mmap (0, objsize, PROT_READ|PROT_WRITE, MAP_PRIVATE,
1855 fp, 0);
1856 if (object == -1)
1857 fatal ("unable to mmap file '%s'", name);
1859 close (fp);
1862 /* Given the name NAME of a dynamic dependency, find its pathname and add
1863 it to the list of libraries. */
1865 static void
1866 locatelib (name)
1867 char *name;
1869 static char **l;
1870 static int cnt;
1871 char buf[MAXPATHLEN];
1872 char *p, *q;
1873 char **pp;
1875 if (l == 0)
1877 char *ld_rules;
1878 char *ldr = 0;
1879 /* counting elements in array, need 1 extra for null */
1880 cnt = 1;
1881 ld_rules = (char *) (ld_2->ld_rules + code);
1882 if (ld_rules)
1884 cnt++;
1885 for (; *ld_rules != 0; ld_rules++)
1886 if (*ld_rules == ':')
1887 cnt++;
1888 ld_rules = (char *) (ld_2->ld_rules + code);
1889 ldr = (char *) malloc (strlen (ld_rules) + 1);
1890 strcpy (ldr, ld_rules);
1892 p = getenv ("LD_LIBRARY_PATH");
1893 q = 0;
1894 if (p)
1896 cnt++;
1897 for (q = p ; *q != 0; q++)
1898 if (*q == ':')
1899 cnt++;
1900 q = (char *) malloc (strlen (p) + 1);
1901 strcpy (q, p);
1903 l = (char **) malloc ((cnt + 3) * sizeof (char *));
1904 pp = l;
1905 if (ldr)
1907 *pp++ = ldr;
1908 for (; *ldr != 0; ldr++)
1909 if (*ldr == ':')
1911 *ldr++ = 0;
1912 *pp++ = ldr;
1915 if (q)
1917 *pp++ = q;
1918 for (; *q != 0; q++)
1919 if (*q == ':')
1921 *q++ = 0;
1922 *pp++ = p;
1925 /* built in directories are /lib, /usr/lib, and /usr/local/lib */
1926 *pp++ = "/lib";
1927 *pp++ = "/usr/lib";
1928 *pp++ = "/usr/local/lib";
1929 *pp = 0;
1931 for (pp = l; *pp != 0 ; pp++)
1933 sprintf (buf, "%s/%s", *pp, name);
1934 if (access (buf, R_OK) == 0)
1936 add_to_list (&libraries, buf);
1937 if (debug)
1938 fprintf (stderr, "%s\n", buf);
1939 break;
1942 if (*pp == 0)
1944 if (debug)
1945 fprintf (stderr, "not found\n");
1946 else
1947 fatal ("dynamic dependency %s not found", name);
1951 /* Scan the _DYNAMIC structure of the output file to find shared libraries
1952 that it depends upon and any constructors or destructors they contain. */
1954 static void
1955 scan_libraries (prog_name)
1956 char *prog_name;
1958 struct exec *header;
1959 char *base;
1960 struct link_object *lo;
1961 char buff[MAXPATHLEN];
1962 struct id *list;
1964 mapfile (prog_name);
1965 header = (struct exec *)object;
1966 if (N_BADMAG (*header))
1967 fatal ("bad magic number in file '%s'", prog_name);
1968 if (header->a_dynamic == 0)
1969 return;
1971 code = (char *) (N_TXTOFF (*header) + (long) header);
1972 data = (char *) (N_DATOFF (*header) + (long) header);
1973 symtab = (struct nlist *) (N_SYMOFF (*header) + (long) header);
1975 if (header->a_magic == ZMAGIC && header->a_entry == 0x20)
1977 /* shared object */
1978 ld = (struct link_dynamic *) (symtab->n_value + code);
1979 base = code;
1981 else
1983 /* executable */
1984 ld = (struct link_dynamic *) data;
1985 base = code-PAGSIZ;
1988 if (debug)
1989 fprintf (stderr, "dynamic dependencies.\n");
1991 ld_2 = (struct link_dynamic_2 *) ((long) ld->ld_un.ld_2 + (long)base);
1992 for (lo = (struct link_object *) ld_2->ld_need; lo;
1993 lo = (struct link_object *) lo->lo_next)
1995 char *name;
1996 lo = (struct link_object *) ((long) lo + code);
1997 name = (char *) (code + lo->lo_name);
1998 if (lo->lo_library)
2000 if (debug)
2001 fprintf (stderr, "\t-l%s.%d => ", name, lo->lo_major);
2002 sprintf (buff, "lib%s.so.%d.%d", name, lo->lo_major, lo->lo_minor);
2003 locatelib (buff);
2005 else
2007 if (debug)
2008 fprintf (stderr, "\t%s\n", name);
2009 add_to_list (&libraries, name);
2013 if (debug)
2014 fprintf (stderr, "\n");
2016 /* now iterate through the library list adding their symbols to
2017 the list. */
2018 for (list = libraries.first; list; list = list->next)
2019 scan_prog_file (list->name, PASS_LIB);
2022 #else /* SUNOS4_SHARED_LIBRARIES */
2023 #ifdef LDD_SUFFIX
2025 /* Use the List Dynamic Dependencies program to find shared libraries that
2026 the output file depends upon and their initialization/finalization
2027 routines, if any. */
2029 static void
2030 scan_libraries (prog_name)
2031 char *prog_name;
2033 static struct head libraries; /* list of shared libraries found */
2034 struct id *list;
2035 void (*int_handler) ();
2036 void (*quit_handler) ();
2037 char *ldd_argv[4];
2038 int pid;
2039 int argc = 0;
2040 int pipe_fd[2];
2041 char buf[1024];
2042 FILE *inf;
2044 /* If we don't have an `ldd', complain. */
2045 if (ldd_file_name == 0)
2047 error ("cannot find `ldd'");
2048 return;
2051 ldd_argv[argc++] = ldd_file_name;
2052 ldd_argv[argc++] = prog_name;
2053 ldd_argv[argc++] = (char *) 0;
2055 if (pipe (pipe_fd) < 0)
2056 fatal_perror ("pipe");
2058 inf = fdopen (pipe_fd[0], "r");
2059 if (inf == (FILE *) 0)
2060 fatal_perror ("fdopen");
2062 /* Trace if needed. */
2063 if (vflag)
2065 char **p_argv;
2066 char *str;
2068 for (p_argv = &ldd_argv[0]; (str = *p_argv) != (char *) 0; p_argv++)
2069 fprintf (stderr, " %s", str);
2071 fprintf (stderr, "\n");
2074 fflush (stdout);
2075 fflush (stderr);
2077 /* Spawn child ldd on pipe */
2078 pid = vfork ();
2079 if (pid == -1)
2081 #ifdef vfork
2082 fatal_perror ("fork");
2083 #else
2084 fatal_perror ("vfork");
2085 #endif
2088 if (pid == 0) /* child context */
2090 /* setup stdout */
2091 if (dup2 (pipe_fd[1], 1) < 0)
2092 fatal_perror ("dup2 (%d, 1)", pipe_fd[1]);
2094 if (close (pipe_fd[0]) < 0)
2095 fatal_perror ("close (%d)", pipe_fd[0]);
2097 if (close (pipe_fd[1]) < 0)
2098 fatal_perror ("close (%d)", pipe_fd[1]);
2100 execv (ldd_file_name, ldd_argv);
2101 fatal_perror ("executing %s", ldd_file_name);
2104 /* Parent context from here on. */
2105 int_handler = (void (*) ()) signal (SIGINT, SIG_IGN);
2106 #ifdef SIGQUIT
2107 quit_handler = (void (*) ()) signal (SIGQUIT, SIG_IGN);
2108 #endif
2110 if (close (pipe_fd[1]) < 0)
2111 fatal_perror ("close (%d)", pipe_fd[1]);
2113 if (debug)
2114 fprintf (stderr, "\nldd output with constructors/destructors.\n");
2116 /* Read each line of ldd output. */
2117 while (fgets (buf, sizeof buf, inf) != (char *) 0)
2119 int ch, ch2;
2120 char *name, *end, *p = buf;
2122 /* Extract names of libraries and add to list. */
2123 PARSE_LDD_OUTPUT (p);
2124 if (p == 0)
2125 continue;
2127 name = p;
2128 if (strncmp (name, "not found", sizeof ("not found") - 1) == 0)
2129 fatal ("dynamic dependency %s not found", buf);
2131 /* Find the end of the symbol name. */
2132 for (end = p;
2133 (ch2 = *end) != '\0' && ch2 != '\n' && !isspace (ch2) && ch2 != '|';
2134 end++)
2135 continue;
2136 *end = '\0';
2138 if (access (name, R_OK) == 0)
2139 add_to_list (&libraries, name);
2140 else
2141 fatal ("unable to open dynamic dependency '%s'", buf);
2143 if (debug)
2144 fprintf (stderr, "\t%s\n", buf);
2146 if (debug)
2147 fprintf (stderr, "\n");
2149 if (fclose (inf) != 0)
2150 fatal_perror ("fclose of pipe");
2152 do_wait (ldd_file_name);
2154 signal (SIGINT, int_handler);
2155 #ifdef SIGQUIT
2156 signal (SIGQUIT, quit_handler);
2157 #endif
2159 /* now iterate through the library list adding their symbols to
2160 the list. */
2161 for (list = libraries.first; list; list = list->next)
2162 scan_prog_file (list->name, PASS_LIB);
2165 #endif /* LDD_SUFFIX */
2166 #endif /* SUNOS4_SHARED_LIBRARIES */
2168 #endif /* OBJECT_FORMAT_NONE */
2172 * COFF specific stuff.
2175 #ifdef OBJECT_FORMAT_COFF
2177 #if defined(EXTENDED_COFF)
2178 # define GCC_SYMBOLS(X) (SYMHEADER(X).isymMax + SYMHEADER(X).iextMax)
2179 # define GCC_SYMENT SYMR
2180 # define GCC_OK_SYMBOL(X) ((X).st == stProc && (X).sc == scText)
2181 # define GCC_SYMINC(X) (1)
2182 # define GCC_SYMZERO(X) (SYMHEADER(X).isymMax)
2183 # define GCC_CHECK_HDR(X) (PSYMTAB(X) != 0)
2184 #else
2185 # define GCC_SYMBOLS(X) (HEADER(ldptr).f_nsyms)
2186 # define GCC_SYMENT SYMENT
2187 # define GCC_OK_SYMBOL(X) \
2188 (((X).n_sclass == C_EXT) && \
2189 (((X).n_type & N_TMASK) == (DT_NON << N_BTSHFT) || \
2190 ((X).n_type & N_TMASK) == (DT_FCN << N_BTSHFT)))
2191 # define GCC_SYMINC(X) ((X).n_numaux+1)
2192 # define GCC_SYMZERO(X) 0
2193 # define GCC_CHECK_HDR(X) (1)
2194 #endif
2196 extern char *ldgetname ();
2198 /* COFF version to scan the name list of the loaded program for
2199 the symbols g++ uses for static constructors and destructors.
2201 The constructor table begins at __CTOR_LIST__ and contains a count
2202 of the number of pointers (or -1 if the constructors are built in a
2203 separate section by the linker), followed by the pointers to the
2204 constructor functions, terminated with a null pointer. The
2205 destructor table has the same format, and begins at __DTOR_LIST__. */
2207 static void
2208 scan_prog_file (prog_name, which_pass)
2209 char *prog_name;
2210 enum pass which_pass;
2212 LDFILE *ldptr = NULL;
2213 int sym_index, sym_count;
2215 if (which_pass != PASS_FIRST)
2216 return;
2218 if ((ldptr = ldopen (prog_name, ldptr)) == NULL)
2219 fatal ("%s: can't open as COFF file", prog_name);
2221 if (!MY_ISCOFF (HEADER (ldptr).f_magic))
2222 fatal ("%s: not a COFF file", prog_name);
2224 if (GCC_CHECK_HDR (ldptr))
2226 sym_count = GCC_SYMBOLS (ldptr);
2227 sym_index = GCC_SYMZERO (ldptr);
2228 while (sym_index < sym_count)
2230 GCC_SYMENT symbol;
2232 if (ldtbread (ldptr, sym_index, &symbol) <= 0)
2233 break;
2234 sym_index += GCC_SYMINC (symbol);
2236 if (GCC_OK_SYMBOL (symbol))
2238 char *name;
2240 if ((name = ldgetname (ldptr, &symbol)) == NULL)
2241 continue; /* should never happen */
2243 #ifdef _AIX
2244 /* All AIX function names begin with a dot. */
2245 if (*name++ != '.')
2246 continue;
2247 #endif
2249 switch (is_ctor_dtor (name))
2251 case 1:
2252 add_to_list (&constructors, name);
2253 break;
2255 case 2:
2256 add_to_list (&destructors, name);
2257 break;
2259 default: /* not a constructor or destructor */
2260 continue;
2263 #if !defined(EXTENDED_COFF)
2264 if (debug)
2265 fprintf (stderr, "\tsec=%d class=%d type=%s%o %s\n",
2266 symbol.n_scnum, symbol.n_sclass,
2267 (symbol.n_type ? "0" : ""), symbol.n_type,
2268 name);
2269 #else
2270 if (debug)
2271 fprintf (stderr, "\tiss = %5d, value = %5d, index = %5d, name = %s\n",
2272 symbol.iss, symbol.value, symbol.index, name);
2273 #endif
2278 (void) ldclose(ldptr);
2281 #endif /* OBJECT_FORMAT_COFF */
2285 * OSF/rose specific stuff.
2288 #ifdef OBJECT_FORMAT_ROSE
2290 /* Union of the various load commands */
2292 typedef union load_union
2294 ldc_header_t hdr; /* common header */
2295 load_cmd_map_command_t map; /* map indexing other load cmds */
2296 interpreter_command_t iprtr; /* interpreter pathname */
2297 strings_command_t str; /* load commands strings section */
2298 region_command_t region; /* region load command */
2299 reloc_command_t reloc; /* relocation section */
2300 package_command_t pkg; /* package load command */
2301 symbols_command_t sym; /* symbol sections */
2302 entry_command_t ent; /* program start section */
2303 gen_info_command_t info; /* object information */
2304 func_table_command_t func; /* function constructors/destructors */
2305 } load_union_t;
2307 /* Structure to point to load command and data section in memory. */
2309 typedef struct load_all
2311 load_union_t *load; /* load command */
2312 char *section; /* pointer to section */
2313 } load_all_t;
2315 /* Structure to contain information about a file mapped into memory. */
2317 struct file_info
2319 char *start; /* start of map */
2320 char *name; /* filename */
2321 long size; /* size of the file */
2322 long rounded_size; /* size rounded to page boundary */
2323 int fd; /* file descriptor */
2324 int rw; /* != 0 if opened read/write */
2325 int use_mmap; /* != 0 if mmap'ed */
2328 extern int decode_mach_o_hdr ();
2329 extern int encode_mach_o_hdr ();
2331 static void add_func_table PROTO((mo_header_t *, load_all_t *,
2332 symbol_info_t *, int));
2333 static void print_header PROTO((mo_header_t *));
2334 static void print_load_command PROTO((load_union_t*, size_t, int));
2335 static void bad_header PROTO((int));
2336 static struct file_info *read_file PROTO((char *, int, int));
2337 static void end_file PROTO((struct file_info *));
2339 /* OSF/rose specific version to scan the name list of the loaded
2340 program for the symbols g++ uses for static constructors and
2341 destructors.
2343 The constructor table begins at __CTOR_LIST__ and contains a count
2344 of the number of pointers (or -1 if the constructors are built in a
2345 separate section by the linker), followed by the pointers to the
2346 constructor functions, terminated with a null pointer. The
2347 destructor table has the same format, and begins at __DTOR_LIST__. */
2349 static void
2350 scan_prog_file (prog_name, which_pass)
2351 char *prog_name;
2352 enum pass which_pass;
2354 char *obj;
2355 mo_header_t hdr;
2356 load_all_t *load_array;
2357 load_all_t *load_end;
2358 load_all_t *load_cmd;
2359 int symbol_load_cmds;
2360 off_t offset;
2361 int i;
2362 int num_syms;
2363 int status;
2364 char *str_sect;
2365 struct file_info *obj_file;
2366 int prog_fd;
2367 mo_lcid_t cmd_strings = -1;
2368 symbol_info_t *main_sym = 0;
2369 int rw = (which_pass != PASS_FIRST);
2371 prog_fd = open (prog_name, (rw) ? O_RDWR : O_RDONLY);
2372 if (prog_fd < 0)
2373 fatal_perror ("can't read %s", prog_name);
2375 obj_file = read_file (prog_name, prog_fd, rw);
2376 obj = obj_file->start;
2378 status = decode_mach_o_hdr (obj, MO_SIZEOF_RAW_HDR, MOH_HEADER_VERSION, &hdr);
2379 if (status != MO_HDR_CONV_SUCCESS)
2380 bad_header (status);
2383 /* Do some basic sanity checks. Note we explicitly use the big endian magic number,
2384 since the hardware will automatically swap bytes for us on loading little endian
2385 integers. */
2387 #ifndef CROSS_COMPILE
2388 if (hdr.moh_magic != MOH_MAGIC_MSB
2389 || hdr.moh_header_version != MOH_HEADER_VERSION
2390 || hdr.moh_byte_order != OUR_BYTE_ORDER
2391 || hdr.moh_data_rep_id != OUR_DATA_REP_ID
2392 || hdr.moh_cpu_type != OUR_CPU_TYPE
2393 || hdr.moh_cpu_subtype != OUR_CPU_SUBTYPE
2394 || hdr.moh_vendor_type != OUR_VENDOR_TYPE)
2396 fatal ("incompatibilities between object file & expected values");
2398 #endif
2400 if (debug)
2401 print_header (&hdr);
2403 offset = hdr.moh_first_cmd_off;
2404 load_end = load_array
2405 = (load_all_t *) xcalloc (sizeof (load_all_t), hdr.moh_n_load_cmds + 2);
2407 /* Build array of load commands, calculating the offsets */
2408 for (i = 0; i < hdr.moh_n_load_cmds; i++)
2410 load_union_t *load_hdr; /* load command header */
2412 load_cmd = load_end++;
2413 load_hdr = (load_union_t *) (obj + offset);
2415 /* If modifying the program file, copy the header. */
2416 if (rw)
2418 load_union_t *ptr = (load_union_t *) xmalloc (load_hdr->hdr.ldci_cmd_size);
2419 bcopy ((char *)load_hdr, (char *)ptr, load_hdr->hdr.ldci_cmd_size);
2420 load_hdr = ptr;
2422 /* null out old command map, because we will rewrite at the end. */
2423 if (ptr->hdr.ldci_cmd_type == LDC_CMD_MAP)
2425 cmd_strings = ptr->map.lcm_ld_cmd_strings;
2426 ptr->hdr.ldci_cmd_type = LDC_UNDEFINED;
2430 load_cmd->load = load_hdr;
2431 if (load_hdr->hdr.ldci_section_off > 0)
2432 load_cmd->section = obj + load_hdr->hdr.ldci_section_off;
2434 if (debug)
2435 print_load_command (load_hdr, offset, i);
2437 offset += load_hdr->hdr.ldci_cmd_size;
2440 /* If the last command is the load command map and is not undefined,
2441 decrement the count of load commands. */
2442 if (rw && load_end[-1].load->hdr.ldci_cmd_type == LDC_UNDEFINED)
2444 load_end--;
2445 hdr.moh_n_load_cmds--;
2448 /* Go through and process each symbol table section. */
2449 symbol_load_cmds = 0;
2450 for (load_cmd = load_array; load_cmd < load_end; load_cmd++)
2452 load_union_t *load_hdr = load_cmd->load;
2454 if (load_hdr->hdr.ldci_cmd_type == LDC_SYMBOLS)
2456 symbol_load_cmds++;
2458 if (debug)
2460 char *kind = "unknown";
2462 switch (load_hdr->sym.symc_kind)
2464 case SYMC_IMPORTS: kind = "imports"; break;
2465 case SYMC_DEFINED_SYMBOLS: kind = "defined"; break;
2466 case SYMC_STABS: kind = "stabs"; break;
2469 fprintf (stderr, "\nProcessing symbol table #%d, offset = 0x%.8lx, kind = %s\n",
2470 symbol_load_cmds, load_hdr->hdr.ldci_section_off, kind);
2473 if (load_hdr->sym.symc_kind != SYMC_DEFINED_SYMBOLS)
2474 continue;
2476 str_sect = load_array[load_hdr->sym.symc_strings_section].section;
2477 if (str_sect == (char *)0)
2478 fatal ("string section missing");
2480 if (load_cmd->section == (char *)0)
2481 fatal ("section pointer missing");
2483 num_syms = load_hdr->sym.symc_nentries;
2484 for (i = 0; i < num_syms; i++)
2486 symbol_info_t *sym = ((symbol_info_t *) load_cmd->section) + i;
2487 char *name = sym->si_name.symbol_name + str_sect;
2489 if (name[0] != '_')
2490 continue;
2492 if (rw)
2494 char *n = name + strlen (name) - strlen (NAME__MAIN);
2496 if ((n - name) < 0 || strcmp (n, NAME__MAIN))
2497 continue;
2498 while (n != name)
2499 if (*--n != '_')
2500 continue;
2502 main_sym = sym;
2504 else
2506 switch (is_ctor_dtor (name))
2508 case 1:
2509 add_to_list (&constructors, name);
2510 break;
2512 case 2:
2513 add_to_list (&destructors, name);
2514 break;
2516 default: /* not a constructor or destructor */
2517 continue;
2521 if (debug)
2522 fprintf (stderr, "\ttype = 0x%.4x, sc = 0x%.2x, flags = 0x%.8x, name = %.30s\n",
2523 sym->si_type, sym->si_sc_type, sym->si_flags, name);
2528 if (symbol_load_cmds == 0)
2529 fatal ("no symbol table found");
2531 /* Update the program file now, rewrite header and load commands. At present,
2532 we assume that there is enough space after the last load command to insert
2533 one more. Since the first section written out is page aligned, and the
2534 number of load commands is small, this is ok for the present. */
2536 if (rw)
2538 load_union_t *load_map;
2539 size_t size;
2541 if (cmd_strings == -1)
2542 fatal ("no cmd_strings found");
2544 /* Add __main to initializer list.
2545 If we are building a program instead of a shared library, don't
2546 do anything, since in the current version, you cannot do mallocs
2547 and such in the constructors. */
2549 if (main_sym != (symbol_info_t *)0
2550 && ((hdr.moh_flags & MOH_EXECABLE_F) == 0))
2551 add_func_table (&hdr, load_array, main_sym, FNTC_INITIALIZATION);
2553 if (debug)
2554 fprintf (stderr, "\nUpdating header and load commands.\n\n");
2556 hdr.moh_n_load_cmds++;
2557 size = sizeof (load_cmd_map_command_t) + (sizeof (mo_offset_t) * (hdr.moh_n_load_cmds - 1));
2559 /* Create new load command map. */
2560 if (debug)
2561 fprintf (stderr, "load command map, %d cmds, new size %ld.\n",
2562 (int)hdr.moh_n_load_cmds, (long)size);
2564 load_map = (load_union_t *) xcalloc (1, size);
2565 load_map->map.ldc_header.ldci_cmd_type = LDC_CMD_MAP;
2566 load_map->map.ldc_header.ldci_cmd_size = size;
2567 load_map->map.lcm_ld_cmd_strings = cmd_strings;
2568 load_map->map.lcm_nentries = hdr.moh_n_load_cmds;
2569 load_array[hdr.moh_n_load_cmds-1].load = load_map;
2571 offset = hdr.moh_first_cmd_off;
2572 for (i = 0; i < hdr.moh_n_load_cmds; i++)
2574 load_map->map.lcm_map[i] = offset;
2575 if (load_array[i].load->hdr.ldci_cmd_type == LDC_CMD_MAP)
2576 hdr.moh_load_map_cmd_off = offset;
2578 offset += load_array[i].load->hdr.ldci_cmd_size;
2581 hdr.moh_sizeofcmds = offset - MO_SIZEOF_RAW_HDR;
2583 if (debug)
2584 print_header (&hdr);
2586 /* Write header */
2587 status = encode_mach_o_hdr (&hdr, obj, MO_SIZEOF_RAW_HDR);
2588 if (status != MO_HDR_CONV_SUCCESS)
2589 bad_header (status);
2591 if (debug)
2592 fprintf (stderr, "writing load commands.\n\n");
2594 /* Write load commands */
2595 offset = hdr.moh_first_cmd_off;
2596 for (i = 0; i < hdr.moh_n_load_cmds; i++)
2598 load_union_t *load_hdr = load_array[i].load;
2599 size_t size = load_hdr->hdr.ldci_cmd_size;
2601 if (debug)
2602 print_load_command (load_hdr, offset, i);
2604 bcopy ((char *)load_hdr, (char *)(obj + offset), size);
2605 offset += size;
2609 end_file (obj_file);
2611 if (close (prog_fd))
2612 fatal_perror ("closing %s", prog_name);
2614 if (debug)
2615 fprintf (stderr, "\n");
2619 /* Add a function table to the load commands to call a function
2620 on initiation or termination of the process. */
2622 static void
2623 add_func_table (hdr_p, load_array, sym, type)
2624 mo_header_t *hdr_p; /* pointer to global header */
2625 load_all_t *load_array; /* array of ptrs to load cmds */
2626 symbol_info_t *sym; /* pointer to symbol entry */
2627 int type; /* fntc_type value */
2629 /* Add a new load command. */
2630 int num_cmds = ++hdr_p->moh_n_load_cmds;
2631 int load_index = num_cmds - 1;
2632 size_t size = sizeof (func_table_command_t) + sizeof (mo_addr_t);
2633 load_union_t *ptr = xcalloc (1, size);
2634 load_all_t *load_cmd;
2635 int i;
2637 /* Set the unresolved address bit in the header to force the loader to be
2638 used, since kernel exec does not call the initialization functions. */
2639 hdr_p->moh_flags |= MOH_UNRESOLVED_F;
2641 load_cmd = &load_array[load_index];
2642 load_cmd->load = ptr;
2643 load_cmd->section = (char *)0;
2645 /* Fill in func table load command. */
2646 ptr->func.ldc_header.ldci_cmd_type = LDC_FUNC_TABLE;
2647 ptr->func.ldc_header.ldci_cmd_size = size;
2648 ptr->func.ldc_header.ldci_section_off = 0;
2649 ptr->func.ldc_header.ldci_section_len = 0;
2650 ptr->func.fntc_type = type;
2651 ptr->func.fntc_nentries = 1;
2653 /* copy address, turn it from abs. address to (region,offset) if necessary. */
2654 /* Is the symbol already expressed as (region, offset)? */
2655 if ((sym->si_flags & SI_ABSOLUTE_VALUE_F) == 0)
2657 ptr->func.fntc_entry_loc[i].adr_lcid = sym->si_value.def_val.adr_lcid;
2658 ptr->func.fntc_entry_loc[i].adr_sctoff = sym->si_value.def_val.adr_sctoff;
2661 /* If not, figure out which region it's in. */
2662 else
2664 mo_vm_addr_t addr = sym->si_value.abs_val;
2665 int found = 0;
2667 for (i = 0; i < load_index; i++)
2669 if (load_array[i].load->hdr.ldci_cmd_type == LDC_REGION)
2671 region_command_t *region_ptr = &load_array[i].load->region;
2673 if ((region_ptr->regc_flags & REG_ABS_ADDR_F) != 0
2674 && addr >= region_ptr->regc_addr.vm_addr
2675 && addr <= region_ptr->regc_addr.vm_addr + region_ptr->regc_vm_size)
2677 ptr->func.fntc_entry_loc[0].adr_lcid = i;
2678 ptr->func.fntc_entry_loc[0].adr_sctoff = addr - region_ptr->regc_addr.vm_addr;
2679 found++;
2680 break;
2685 if (!found)
2686 fatal ("could not convert 0x%l.8x into a region", addr);
2689 if (debug)
2690 fprintf (stderr,
2691 "%s function, region %d, offset = %ld (0x%.8lx)\n",
2692 (type == FNTC_INITIALIZATION) ? "init" : "term",
2693 (int)ptr->func.fntc_entry_loc[i].adr_lcid,
2694 (long)ptr->func.fntc_entry_loc[i].adr_sctoff,
2695 (long)ptr->func.fntc_entry_loc[i].adr_sctoff);
2700 /* Print the global header for an OSF/rose object. */
2702 static void
2703 print_header (hdr_ptr)
2704 mo_header_t *hdr_ptr;
2706 fprintf (stderr, "\nglobal header:\n");
2707 fprintf (stderr, "\tmoh_magic = 0x%.8lx\n", hdr_ptr->moh_magic);
2708 fprintf (stderr, "\tmoh_major_version = %d\n", (int)hdr_ptr->moh_major_version);
2709 fprintf (stderr, "\tmoh_minor_version = %d\n", (int)hdr_ptr->moh_minor_version);
2710 fprintf (stderr, "\tmoh_header_version = %d\n", (int)hdr_ptr->moh_header_version);
2711 fprintf (stderr, "\tmoh_max_page_size = %d\n", (int)hdr_ptr->moh_max_page_size);
2712 fprintf (stderr, "\tmoh_byte_order = %d\n", (int)hdr_ptr->moh_byte_order);
2713 fprintf (stderr, "\tmoh_data_rep_id = %d\n", (int)hdr_ptr->moh_data_rep_id);
2714 fprintf (stderr, "\tmoh_cpu_type = %d\n", (int)hdr_ptr->moh_cpu_type);
2715 fprintf (stderr, "\tmoh_cpu_subtype = %d\n", (int)hdr_ptr->moh_cpu_subtype);
2716 fprintf (stderr, "\tmoh_vendor_type = %d\n", (int)hdr_ptr->moh_vendor_type);
2717 fprintf (stderr, "\tmoh_load_map_cmd_off = %d\n", (int)hdr_ptr->moh_load_map_cmd_off);
2718 fprintf (stderr, "\tmoh_first_cmd_off = %d\n", (int)hdr_ptr->moh_first_cmd_off);
2719 fprintf (stderr, "\tmoh_sizeofcmds = %d\n", (int)hdr_ptr->moh_sizeofcmds);
2720 fprintf (stderr, "\tmon_n_load_cmds = %d\n", (int)hdr_ptr->moh_n_load_cmds);
2721 fprintf (stderr, "\tmoh_flags = 0x%.8lx", (long)hdr_ptr->moh_flags);
2723 if (hdr_ptr->moh_flags & MOH_RELOCATABLE_F)
2724 fprintf (stderr, ", relocatable");
2726 if (hdr_ptr->moh_flags & MOH_LINKABLE_F)
2727 fprintf (stderr, ", linkable");
2729 if (hdr_ptr->moh_flags & MOH_EXECABLE_F)
2730 fprintf (stderr, ", execable");
2732 if (hdr_ptr->moh_flags & MOH_EXECUTABLE_F)
2733 fprintf (stderr, ", executable");
2735 if (hdr_ptr->moh_flags & MOH_UNRESOLVED_F)
2736 fprintf (stderr, ", unresolved");
2738 fprintf (stderr, "\n\n");
2739 return;
2743 /* Print a short summary of a load command. */
2745 static void
2746 print_load_command (load_hdr, offset, number)
2747 load_union_t *load_hdr;
2748 size_t offset;
2749 int number;
2751 mo_long_t type = load_hdr->hdr.ldci_cmd_type;
2752 char *type_str = (char *)0;
2754 switch (type)
2756 case LDC_UNDEFINED: type_str = "UNDEFINED"; break;
2757 case LDC_CMD_MAP: type_str = "CMD_MAP"; break;
2758 case LDC_INTERPRETER: type_str = "INTERPRETER"; break;
2759 case LDC_STRINGS: type_str = "STRINGS"; break;
2760 case LDC_REGION: type_str = "REGION"; break;
2761 case LDC_RELOC: type_str = "RELOC"; break;
2762 case LDC_PACKAGE: type_str = "PACKAGE"; break;
2763 case LDC_SYMBOLS: type_str = "SYMBOLS"; break;
2764 case LDC_ENTRY: type_str = "ENTRY"; break;
2765 case LDC_FUNC_TABLE: type_str = "FUNC_TABLE"; break;
2766 case LDC_GEN_INFO: type_str = "GEN_INFO"; break;
2769 fprintf (stderr,
2770 "cmd %2d, sz: 0x%.2lx, coff: 0x%.3lx, doff: 0x%.6lx, dlen: 0x%.6lx",
2771 number,
2772 (long) load_hdr->hdr.ldci_cmd_size,
2773 (long) offset,
2774 (long) load_hdr->hdr.ldci_section_off,
2775 (long) load_hdr->hdr.ldci_section_len);
2777 if (type_str == (char *)0)
2778 fprintf (stderr, ", ty: unknown (%ld)\n", (long) type);
2780 else if (type != LDC_REGION)
2781 fprintf (stderr, ", ty: %s\n", type_str);
2783 else
2785 char *region = "";
2786 switch (load_hdr->region.regc_usage_type)
2788 case REG_TEXT_T: region = ", .text"; break;
2789 case REG_DATA_T: region = ", .data"; break;
2790 case REG_BSS_T: region = ", .bss"; break;
2791 case REG_GLUE_T: region = ", .glue"; break;
2792 #if defined (REG_RDATA_T) && defined (REG_SDATA_T) && defined (REG_SBSS_T) /*mips*/
2793 case REG_RDATA_T: region = ", .rdata"; break;
2794 case REG_SDATA_T: region = ", .sdata"; break;
2795 case REG_SBSS_T: region = ", .sbss"; break;
2796 #endif
2799 fprintf (stderr, ", ty: %s, vaddr: 0x%.8lx, vlen: 0x%.6lx%s\n",
2800 type_str,
2801 (long) load_hdr->region.regc_vm_addr,
2802 (long) load_hdr->region.regc_vm_size,
2803 region);
2806 return;
2810 /* Fatal error when {en,de}code_mach_o_header fails. */
2812 static void
2813 bad_header (status)
2814 int status;
2816 char *msg = (char *)0;
2818 switch (status)
2820 case MO_ERROR_BAD_MAGIC: msg = "bad magic number"; break;
2821 case MO_ERROR_BAD_HDR_VERS: msg = "bad header version"; break;
2822 case MO_ERROR_BAD_RAW_HDR_VERS: msg = "bad raw header version"; break;
2823 case MO_ERROR_BUF2SML: msg = "raw header buffer too small"; break;
2824 case MO_ERROR_OLD_RAW_HDR_FILE: msg = "old raw header file"; break;
2825 case MO_ERROR_UNSUPPORTED_VERS: msg = "unsupported version"; break;
2828 if (msg == (char *)0)
2829 fatal ("unknown {de,en}code_mach_o_hdr return value %d", status);
2830 else
2831 fatal ("%s", msg);
2835 /* Read a file into a memory buffer. */
2837 static struct file_info *
2838 read_file (name, fd, rw)
2839 char *name; /* filename */
2840 int fd; /* file descriptor */
2841 int rw; /* read/write */
2843 struct stat stat_pkt;
2844 struct file_info *p = (struct file_info *) xcalloc (sizeof (struct file_info), 1);
2845 #ifdef USE_MMAP
2846 static int page_size;
2847 #endif
2849 if (fstat (fd, &stat_pkt) < 0)
2850 fatal_perror ("fstat %s", name);
2852 p->name = name;
2853 p->size = stat_pkt.st_size;
2854 p->rounded_size = stat_pkt.st_size;
2855 p->fd = fd;
2856 p->rw = rw;
2858 #ifdef USE_MMAP
2859 if (debug)
2860 fprintf (stderr, "mmap %s, %s\n", name, (rw) ? "read/write" : "read-only");
2862 if (page_size == 0)
2863 page_size = sysconf (_SC_PAGE_SIZE);
2865 p->rounded_size = ((p->size + page_size - 1) / page_size) * page_size;
2866 p->start = mmap ((caddr_t)0,
2867 (rw) ? p->rounded_size : p->size,
2868 (rw) ? (PROT_READ | PROT_WRITE) : PROT_READ,
2869 MAP_FILE | MAP_VARIABLE | MAP_SHARED,
2871 0L);
2873 if (p->start != (char *)0 && p->start != (char *)-1)
2874 p->use_mmap = 1;
2876 else
2877 #endif /* USE_MMAP */
2879 long len;
2881 if (debug)
2882 fprintf (stderr, "read %s\n", name);
2884 p->use_mmap = 0;
2885 p->start = xmalloc (p->size);
2886 if (lseek (fd, 0L, SEEK_SET) < 0)
2887 fatal_perror ("lseek to 0 on %s", name);
2889 len = read (fd, p->start, p->size);
2890 if (len < 0)
2891 fatal_perror ("read %s", name);
2893 if (len != p->size)
2894 fatal ("read %ld bytes, expected %ld, from %s", len, p->size, name);
2897 return p;
2900 /* Do anything necessary to write a file back from memory. */
2902 static void
2903 end_file (ptr)
2904 struct file_info *ptr; /* file information block */
2906 #ifdef USE_MMAP
2907 if (ptr->use_mmap)
2909 if (ptr->rw)
2911 if (debug)
2912 fprintf (stderr, "msync %s\n", ptr->name);
2914 if (msync (ptr->start, ptr->rounded_size, MS_ASYNC))
2915 fatal_perror ("msync %s", ptr->name);
2918 if (debug)
2919 fprintf (stderr, "munmap %s\n", ptr->name);
2921 if (munmap (ptr->start, ptr->size))
2922 fatal_perror ("munmap %s", ptr->name);
2924 else
2925 #endif /* USE_MMAP */
2927 if (ptr->rw)
2929 long len;
2931 if (debug)
2932 fprintf (stderr, "write %s\n", ptr->name);
2934 if (lseek (ptr->fd, 0L, SEEK_SET) < 0)
2935 fatal_perror ("lseek to 0 on %s", ptr->name);
2937 len = write (ptr->fd, ptr->start, ptr->size);
2938 if (len < 0)
2939 fatal_perror ("read %s", ptr->name);
2941 if (len != ptr->size)
2942 fatal ("wrote %ld bytes, expected %ld, to %s", len, ptr->size, ptr->name);
2945 free ((generic *)ptr->start);
2948 free ((generic *)ptr);
2951 #endif /* OBJECT_FORMAT_ROSE */