1 /* Collect static initialization info into data structures
2 that can be traversed by C++ initialization and finalization
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)
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>
44 #if defined(bsd4_4) || defined(__NetBSD__)
45 extern const char *const sys_errlist
[];
47 extern char *sys_errlist
[];
67 /* Add prototype support. */
69 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
70 #define PROTO(ARGS) ARGS
72 #define PROTO(ARGS) ()
83 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
86 #define WTERMSIG(S) ((S) & 0x7f)
89 #define WIFEXITED(S) (((S) & 0xff) == 0)
92 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
95 /* On MSDOS, write temp files in current dir
96 because there's no place else we can expect to use. */
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. */
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
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
128 #ifdef OBJECT_FORMAT_COFF
137 /* Many versions of ldfcn.h define these. */
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. */
151 #define MY_ISCOFF(X) ISCOFF (X)
154 #endif /* OBJECT_FORMAT_COFF */
156 #ifdef OBJECT_FORMAT_ROSE
163 #include <sys/mman.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. */
178 #define NM_FLAGS "-p"
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. */
188 #define NAME__MAIN "__main"
189 #define SYMBOL__MAIN __main
192 #if defined (LDD_SUFFIX) || defined (SUNOS4_SHARED_LIBRARIES)
193 #define SCAN_LIBRARIES
196 /* Linked lists of constructor and destructor names. */
212 /* Enumeration giving which pass this is for scanning the program file. */
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
[];
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
256 char *prefix
; /* String to prepend to the path. */
257 struct prefix_list
*next
; /* Next in linked list. */
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 *));
288 extern char *index ();
289 extern char *rindex ();
304 while ((fd
= dup (oldfd
)) != newfd
&& fd
>= 0) /* good enough for low fd's */
307 close (fdtmp
[--fdx
]);
323 static char buffer
[30];
327 if (e
> 0 && e
< sys_nerr
)
328 return sys_errlist
[e
];
330 sprintf (buffer
, "Unknown error %d", e
);
335 /* Delete tempfiles and exit function. */
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
);
354 /* Die when sys call fails. */
357 fatal_perror (string
, arg1
, arg2
, arg3
)
358 char *string
, *arg1
, *arg2
, *arg3
;
362 fprintf (stderr
, "collect2: ");
363 fprintf (stderr
, string
, arg1
, arg2
, arg3
);
364 fprintf (stderr
, ": %s\n", my_strerror (e
));
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");
380 /* Write error message. */
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. */
397 fatal ("internal error");
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
);
417 xcalloc (size1
, size2
)
420 generic
*ptr
= (generic
*) calloc (size1
, size2
);
424 fatal ("out of memory");
432 generic
*ptr
= (generic
*) malloc (size
);
436 fatal ("out of memory");
440 /* Make a copy of a string INPUT with size SIZE. */
443 savestring (input
, size
)
447 char *output
= (char *) xmalloc (size
+ 1);
448 bcopy (input
, output
, size
);
453 /* Decide whether the given symbol is:
454 a constructor (1), a destructor (2), or neither (0). */
460 struct names
{ char *name
; int len
; int ret
; int two_underscores
; };
462 register struct names
*p
;
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 },
472 { "GLOBAL_.I.", sizeof ("GLOBAL_.I.")-1, 1, 0 },
473 { "GLOBAL_.D.", sizeof ("GLOBAL_.D.")-1, 2, 0 },
476 { "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 },
477 { "GLOBAL_$D$", sizeof ("GLOBAL_$D$")-1, 2, 0 },
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 */
492 while ((ch
= *s
) == '_')
498 for (p
= &special
[0]; p
->len
> 0; p
++)
501 && (!p
->two_underscores
|| ((s
- orig_s
) >= 2))
502 && strncmp(s
, p
->name
, p
->len
) == 0)
511 /* Compute a string to use as the base of all temporary file names.
512 It is substituted for %g. */
517 char *base
= getenv ("TMPDIR");
520 if (base
== (char *)0)
523 if (access (P_tmpdir
, R_OK
| W_OK
) == 0)
526 if (base
== (char *)0)
528 if (access ("/usr/tmp", R_OK
| W_OK
) == 0)
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. */
554 #ifndef VMS /* nor about VMS */
556 extern char **environ
;
557 char **old_environ
= environ
;
564 while ((ch
= *p
++) != '\0' && ch
!= '=')
570 /* Search for replacing an existing environment variable, and
571 count the number of total environment variables. */
572 for (envp
= old_environ
; *envp
; envp
++)
575 if (!strncmp (str
, *envp
, name_len
))
582 /* Add a new environment variable */
583 environ
= (char **) xmalloc (sizeof (char *) * (num_envs
+2));
585 bcopy ((char *) old_environ
, (char *) (environ
+ 1),
586 sizeof (char *) * (num_envs
+1));
592 #endif /* HAVE_PUTENV */
594 /* By default, colon separates directories in a path. */
595 #ifndef PATH_SEPARATOR
596 #define PATH_SEPARATOR ':'
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
;
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
;
611 /* Names under which we were executed. Never return one of those files in our
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. */
623 is_in_prefix_list (pprefix
, string
, filep
)
624 struct path_prefix
*pprefix
;
628 struct prefix_list
*pl
;
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)
643 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
645 if (strcmp (pl
->prefix
, string
) == 0)
653 /* Search for NAME using prefix list PPREFIX. We only look for executable
656 Return 0 if not found, otherwise return its name, allocated with malloc. */
659 find_a_file (pprefix
, name
)
660 struct path_prefix
*pprefix
;
664 struct prefix_list
*pl
;
665 int len
= pprefix
->max_len
+ strlen (name
) + 1;
667 #ifdef EXECUTABLE_SUFFIX
668 len
+= strlen (EXECUTABLE_SUFFIX
);
671 temp
= xmalloc (len
);
673 /* Determine the filename to execute (special case for absolute paths). */
677 if (access (name
, X_OK
) == 0)
684 for (pl
= pprefix
->plist
; pl
; pl
= pl
->next
)
686 strcpy (temp
, pl
->prefix
);
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)
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)
708 /* Add an entry for PREFIX to prefix list PPREFIX. */
711 add_prefix (pprefix
, prefix
)
712 struct path_prefix
*pprefix
;
715 struct prefix_list
*pl
, **prev
;
720 for (pl
= pprefix
->plist
; pl
->next
; pl
= pl
->next
)
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
);
739 pl
->next
= (struct prefix_list
*) 0;
743 /* Take the value of the environment variable ENV, break it into a path, and
744 add of the entries to PPREFIX. */
747 prefix_from_env (env
, pprefix
)
749 struct path_prefix
*pprefix
;
751 char *p
= getenv (env
);
756 char *nstore
= (char *) xmalloc (strlen (p
) + 3);
761 if (*endp
== PATH_SEPARATOR
|| *endp
== 0)
763 strncpy (nstore
, startp
, endp
-startp
);
766 strcpy (nstore
, "./");
768 else if (endp
[-1] != '/')
770 nstore
[endp
-startp
] = '/';
771 nstore
[endp
-startp
+1] = 0;
774 nstore
[endp
-startp
] = 0;
776 add_prefix (pprefix
, nstore
);
779 endp
= startp
= endp
+ 1;
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
;
799 char *gld_suffix
= "gld";
800 char *full_gld_suffix
= gld_suffix
;
802 char *nm_suffix
= "nm";
803 char *full_nm_suffix
= nm_suffix
;
804 char *gnm_suffix
= "gnm";
805 char *full_gnm_suffix
= gnm_suffix
;
807 char *ldd_suffix
= LDD_SUFFIX
;
808 char *full_ldd_suffix
= ldd_suffix
;
810 char *strip_suffix
= "strip";
811 char *full_strip_suffix
= strip_suffix
;
812 char *gstrip_suffix
= "gstrip";
813 char *full_gstrip_suffix
= gstrip_suffix
;
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
;
828 int num_c_args
= argc
+7;
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
);
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
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]);
880 p
= (char *) getenv ("COLLECT_GCC_OPTIONS");
885 while (*q
&& *q
!= ' ') q
++;
886 if (*p
== '-' && p
[1] == 'm')
893 c_ptr
= c_argv
= (char **) xcalloc (sizeof (char *), num_c_args
);
896 fatal ("no arguments");
899 if (signal (SIGQUIT
, SIG_IGN
) != SIG_IGN
)
900 signal (SIGQUIT
, handler
);
902 if (signal (SIGINT
, SIG_IGN
) != SIG_IGN
)
903 signal (SIGINT
, handler
);
905 if (signal (SIGALRM
, SIG_IGN
) != SIG_IGN
)
906 signal (SIGALRM
, handler
);
909 if (signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
910 signal (SIGHUP
, handler
);
912 if (signal (SIGSEGV
, SIG_IGN
) != SIG_IGN
)
913 signal (SIGSEGV
, handler
);
915 if (signal (SIGBUS
, SIG_IGN
) != SIG_IGN
)
916 signal (SIGBUS
, handler
);
919 /* Extract COMPILER_PATH and PATH into our prefix list. */
920 prefix_from_env ("COMPILER_PATH", &cpath
);
921 prefix_from_env ("PATH", &path
);
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. */
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
);
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
);
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
);
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
);
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
);
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
);
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
);
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)
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
);
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)
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
);
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
);
1043 #ifdef REAL_STRIP_FILE_NAME
1044 strip_file_name
= find_a_file (&path
, REAL_STRIP_FILE_NAME
);
1045 if (strip_file_name
== 0)
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");
1064 c_file_name
= "gcc";
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. */
1073 p
= find_a_file (&path
, c_file_name
);
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
;
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. */
1102 while ((arg
= *++argv
) != (char *)0)
1104 *ld1
++ = *ld2
++ = arg
;
1111 if (!strcmp (arg
, "-debug"))
1123 /* place o_file BEFORE this argument! */
1132 output_file
= (arg
[2] == '\0') ? argv
[1] : &arg
[2];
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. */
1158 && (p
= rindex (arg
, '.')) != (char *)0
1159 && (strcmp (p
, ".o") == 0 || strcmp (p
, ".a") == 0))
1162 /* place o_file BEFORE this argument! */
1169 /* Get any options that the upper GCC wants to pass to the sub-GCC. */
1170 p
= (char *) getenv ("COLLECT_GCC_OPTIONS");
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)
1185 /* Tell the linker that we have initializer and finalizer functions. */
1188 #ifdef LD_INIT_SWITCH
1189 *ld2
++ = LD_INIT_SWITCH
;
1190 *ld2
++ = "_GLOBAL__DI";
1192 #ifdef LD_FINI_SWITCH
1193 *ld2
++ = LD_FINI_SWITCH
;
1194 *ld2
++ = "_GLOBAL__DD";
1199 *c_ptr
= *ld1
= *ld2
= (char *)0;
1203 fprintf (stderr
, "collect2 version %s", version_string
);
1204 #ifdef TARGET_VERSION
1207 fprintf (stderr
, "\n");
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"));
1220 fprintf (stderr
, "ldd_file_name = %s\n",
1221 (ldd_file_name
? ldd_file_name
: "not found"));
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");
1232 fprintf (stderr
, "COLLECT_NAMES = %s\n", ptr
);
1234 ptr
= getenv ("COLLECT_GCC_OPTIONS");
1236 fprintf (stderr
, "COLLECT_GCC_OPTIONS = %s\n", ptr
);
1238 ptr
= getenv ("COLLECT_GCC");
1240 fprintf (stderr
, "COLLECT_GCC = %s\n", ptr
);
1242 ptr
= getenv ("COMPILER_PATH");
1244 fprintf (stderr
, "COMPILER_PATH = %s\n", ptr
);
1246 ptr
= getenv ("LIBRARY_PATH");
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. */
1264 scan_prog_file (output_file
, PASS_FIRST
);
1266 #ifdef SCAN_LIBRARIES
1267 scan_libraries (output_file
);
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
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. */
1285 /* Strip now if it was requested on the command line. */
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
);
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
);
1305 fatal_perror ("closing %s", c_file
);
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
);
1331 /* Wait for a process to finish, and exit if a non-zero status is found. */
1342 if (WIFSIGNALED (status
))
1344 int sig
= WTERMSIG (status
);
1345 #ifdef NO_SYS_SIGLIST
1346 error ("%s terminated with signal %d %s",
1349 (status
& 0200) ? ", core dumped" : "");
1351 error ("%s terminated with signal %d [%s]%s",
1355 (status
& 0200) ? ", core dumped" : "");
1361 if (WIFEXITED (status
))
1363 int ret
= WEXITSTATUS (status
);
1366 error ("%s returned %d exit status", prog
, ret
);
1374 /* Fork and execute a program, and wait for the reply. */
1377 fork_execute (prog
, argv
)
1389 fprintf (stderr
, "%s", argv
[0]);
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");
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. */
1406 fatal ("cannot find `%s'", prog
);
1412 fatal_perror ("fork");
1414 fatal_perror ("vfork");
1418 if (pid
== 0) /* child context */
1420 execvp (argv
[0], argv
);
1421 fatal_perror ("executing %s", prog
);
1428 /* Unlink a file unless we are debugging. */
1437 fprintf (stderr
, "[Leaving %s]\n", file
);
1441 /* Add a name to a linked list. */
1444 add_to_list (head_ptr
, name
)
1445 struct head
*head_ptr
;
1449 = (struct id
*) xcalloc (sizeof (struct id
) + strlen (name
), 1);
1451 static long sequence_number
= 0;
1452 strcpy (newid
->name
, name
);
1454 if (head_ptr
->first
)
1455 head_ptr
->last
->next
= newid
;
1457 head_ptr
->first
= newid
;
1459 /* Check for duplicate symbols. */
1460 for (p
= head_ptr
->first
;
1461 strcmp (name
, p
->name
) != 0;
1466 head_ptr
->last
->next
= 0;
1471 newid
->sequence
= ++sequence_number
;
1472 head_ptr
->last
= newid
;
1476 /* Write: `prefix', the names on list LIST, `suffix'. */
1479 write_list (stream
, prefix
, list
)
1486 fprintf (stream
, "%sx%d,\n", prefix
, list
->sequence
);
1492 write_list_with_asm (stream
, prefix
, list
)
1499 fprintf (stream
, "%sx%d __asm__ (\"%s\");\n",
1500 prefix
, list
->sequence
, list
->name
);
1505 /* Write out the constructor and destructor tables statically (for a shared
1506 object), along with the functions to execute them. */
1509 write_c_file_stat (stream
, 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
, '/');
1519 p
= (char *) output_file
;
1533 if (strncmp (q
, ".so", 3) == 0)
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
);
1546 for (q
= prefix
; *q
; q
++)
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
);
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
);
1602 /* Write the constructor/destructor tables. */
1605 write_c_file_glob (stream
, 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
);
1632 write_c_file (stream
, name
)
1637 write_c_file_stat (stream
, name
);
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__. */
1654 scan_prog_file (prog_name
, which_pass
)
1656 enum pass which_pass
;
1658 void (*int_handler
) ();
1659 void (*quit_handler
) ();
1667 if (which_pass
== PASS_SECOND
)
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. */
1694 for (p_argv
= &nm_argv
[0]; (str
= *p_argv
) != (char *)0; p_argv
++)
1695 fprintf (stderr
, " %s", str
);
1697 fprintf (stderr
, "\n");
1703 /* Spawn child nm on pipe */
1708 fatal_perror ("fork");
1710 fatal_perror ("vfork");
1714 if (pid
== 0) /* child context */
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
);
1733 quit_handler
= (void (*) ())signal (SIGQUIT
, SIG_IGN
);
1736 if (close (pipe_fd
[1]) < 0)
1737 fatal_perror ("close (%d)", pipe_fd
[1]);
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)
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] == ' ')
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
!= '|';
1767 switch (is_ctor_dtor (name
))
1770 if (which_pass
!= PASS_LIB
)
1771 add_to_list (&constructors
, name
);
1775 if (which_pass
!= PASS_LIB
)
1776 add_to_list (&destructors
, name
);
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
);
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
);
1795 default: /* not a constructor or destructor */
1800 fprintf (stderr
, "\t%s\n", buf
);
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
);
1813 signal (SIGQUIT
, quit_handler
);
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. */
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. */
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
,
1857 fatal ("unable to mmap file '%s'", name
);
1862 /* Given the name NAME of a dynamic dependency, find its pathname and add
1863 it to the list of libraries. */
1871 char buf
[MAXPATHLEN
];
1879 /* counting elements in array, need 1 extra for null */
1881 ld_rules
= (char *) (ld_2
->ld_rules
+ code
);
1885 for (; *ld_rules
!= 0; ld_rules
++)
1886 if (*ld_rules
== ':')
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");
1897 for (q
= p
; *q
!= 0; q
++)
1900 q
= (char *) malloc (strlen (p
) + 1);
1903 l
= (char **) malloc ((cnt
+ 3) * sizeof (char *));
1908 for (; *ldr
!= 0; ldr
++)
1918 for (; *q
!= 0; q
++)
1925 /* built in directories are /lib, /usr/lib, and /usr/local/lib */
1928 *pp
++ = "/usr/local/lib";
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
);
1938 fprintf (stderr
, "%s\n", buf
);
1945 fprintf (stderr
, "not found\n");
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. */
1955 scan_libraries (prog_name
)
1958 struct exec
*header
;
1960 struct link_object
*lo
;
1961 char buff
[MAXPATHLEN
];
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)
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)
1978 ld
= (struct link_dynamic
*) (symtab
->n_value
+ code
);
1984 ld
= (struct link_dynamic
*) data
;
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
)
1996 lo
= (struct link_object
*) ((long) lo
+ code
);
1997 name
= (char *) (code
+ lo
->lo_name
);
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
);
2008 fprintf (stderr
, "\t%s\n", name
);
2009 add_to_list (&libraries
, name
);
2014 fprintf (stderr
, "\n");
2016 /* now iterate through the library list adding their symbols to
2018 for (list
= libraries
.first
; list
; list
= list
->next
)
2019 scan_prog_file (list
->name
, PASS_LIB
);
2022 #else /* SUNOS4_SHARED_LIBRARIES */
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. */
2030 scan_libraries (prog_name
)
2033 static struct head libraries
; /* list of shared libraries found */
2035 void (*int_handler
) ();
2036 void (*quit_handler
) ();
2044 /* If we don't have an `ldd', complain. */
2045 if (ldd_file_name
== 0)
2047 error ("cannot find `ldd'");
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. */
2068 for (p_argv
= &ldd_argv
[0]; (str
= *p_argv
) != (char *) 0; p_argv
++)
2069 fprintf (stderr
, " %s", str
);
2071 fprintf (stderr
, "\n");
2077 /* Spawn child ldd on pipe */
2082 fatal_perror ("fork");
2084 fatal_perror ("vfork");
2088 if (pid
== 0) /* child context */
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
);
2107 quit_handler
= (void (*) ()) signal (SIGQUIT
, SIG_IGN
);
2110 if (close (pipe_fd
[1]) < 0)
2111 fatal_perror ("close (%d)", pipe_fd
[1]);
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)
2120 char *name
, *end
, *p
= buf
;
2122 /* Extract names of libraries and add to list. */
2123 PARSE_LDD_OUTPUT (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. */
2133 (ch2
= *end
) != '\0' && ch2
!= '\n' && !isspace (ch2
) && ch2
!= '|';
2138 if (access (name
, R_OK
) == 0)
2139 add_to_list (&libraries
, name
);
2141 fatal ("unable to open dynamic dependency '%s'", buf
);
2144 fprintf (stderr
, "\t%s\n", buf
);
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
);
2156 signal (SIGQUIT
, quit_handler
);
2159 /* now iterate through the library list adding their symbols to
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)
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)
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__. */
2208 scan_prog_file (prog_name
, which_pass
)
2210 enum pass which_pass
;
2212 LDFILE
*ldptr
= NULL
;
2213 int sym_index
, sym_count
;
2215 if (which_pass
!= PASS_FIRST
)
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
)
2232 if (ldtbread (ldptr
, sym_index
, &symbol
) <= 0)
2234 sym_index
+= GCC_SYMINC (symbol
);
2236 if (GCC_OK_SYMBOL (symbol
))
2240 if ((name
= ldgetname (ldptr
, &symbol
)) == NULL
)
2241 continue; /* should never happen */
2244 /* All AIX function names begin with a dot. */
2249 switch (is_ctor_dtor (name
))
2252 add_to_list (&constructors
, name
);
2256 add_to_list (&destructors
, name
);
2259 default: /* not a constructor or destructor */
2263 #if !defined(EXTENDED_COFF)
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
,
2271 fprintf (stderr
, "\tiss = %5d, value = %5d, index = %5d, name = %s\n",
2272 symbol
.iss
, symbol
.value
, symbol
.index
, name
);
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 */
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 */
2315 /* Structure to contain information about a file mapped into memory. */
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
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__. */
2350 scan_prog_file (prog_name
, which_pass
)
2352 enum pass which_pass
;
2356 load_all_t
*load_array
;
2357 load_all_t
*load_end
;
2358 load_all_t
*load_cmd
;
2359 int symbol_load_cmds
;
2365 struct file_info
*obj_file
;
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
);
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
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");
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. */
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
);
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
;
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
)
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
)
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
)
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
;
2494 char *n
= name
+ strlen (name
) - strlen (NAME__MAIN
);
2496 if ((n
- name
) < 0 || strcmp (n
, NAME__MAIN
))
2506 switch (is_ctor_dtor (name
))
2509 add_to_list (&constructors
, name
);
2513 add_to_list (&destructors
, name
);
2516 default: /* not a constructor or destructor */
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. */
2538 load_union_t
*load_map
;
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
);
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. */
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
;
2584 print_header (&hdr
);
2587 status
= encode_mach_o_hdr (&hdr
, obj
, MO_SIZEOF_RAW_HDR
);
2588 if (status
!= MO_HDR_CONV_SUCCESS
)
2589 bad_header (status
);
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
;
2602 print_load_command (load_hdr
, offset
, i
);
2604 bcopy ((char *)load_hdr
, (char *)(obj
+ offset
), size
);
2609 end_file (obj_file
);
2611 if (close (prog_fd
))
2612 fatal_perror ("closing %s", prog_name
);
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. */
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
;
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. */
2664 mo_vm_addr_t addr
= sym
->si_value
.abs_val
;
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
;
2686 fatal ("could not convert 0x%l.8x into a region", addr
);
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. */
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");
2743 /* Print a short summary of a load command. */
2746 print_load_command (load_hdr
, offset
, number
)
2747 load_union_t
*load_hdr
;
2751 mo_long_t type
= load_hdr
->hdr
.ldci_cmd_type
;
2752 char *type_str
= (char *)0;
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;
2770 "cmd %2d, sz: 0x%.2lx, coff: 0x%.3lx, doff: 0x%.6lx, dlen: 0x%.6lx",
2772 (long) load_hdr
->hdr
.ldci_cmd_size
,
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
);
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;
2799 fprintf (stderr
, ", ty: %s, vaddr: 0x%.8lx, vlen: 0x%.6lx%s\n",
2801 (long) load_hdr
->region
.regc_vm_addr
,
2802 (long) load_hdr
->region
.regc_vm_size
,
2810 /* Fatal error when {en,de}code_mach_o_header fails. */
2816 char *msg
= (char *)0;
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
);
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);
2846 static int page_size
;
2849 if (fstat (fd
, &stat_pkt
) < 0)
2850 fatal_perror ("fstat %s", name
);
2853 p
->size
= stat_pkt
.st_size
;
2854 p
->rounded_size
= stat_pkt
.st_size
;
2860 fprintf (stderr
, "mmap %s, %s\n", name
, (rw
) ? "read/write" : "read-only");
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
,
2873 if (p
->start
!= (char *)0 && p
->start
!= (char *)-1)
2877 #endif /* USE_MMAP */
2882 fprintf (stderr
, "read %s\n", name
);
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
);
2891 fatal_perror ("read %s", name
);
2894 fatal ("read %ld bytes, expected %ld, from %s", len
, p
->size
, name
);
2900 /* Do anything necessary to write a file back from memory. */
2904 struct file_info
*ptr
; /* file information block */
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
);
2919 fprintf (stderr
, "munmap %s\n", ptr
->name
);
2921 if (munmap (ptr
->start
, ptr
->size
))
2922 fatal_perror ("munmap %s", ptr
->name
);
2925 #endif /* USE_MMAP */
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
);
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 */