1 /* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Andreas Jaeger <aj@suse.de>, 1999 and
4 Jakub Jelinek <jakub@redhat.com>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* The code in this file and in readelflib is a heavily simplified
22 version of the readelf program that's part of the current binutils
23 development version. Besides the simplification, it has also been
24 modified to read some other file formats. */
38 #include <gnu/lib-names.h>
42 #define Elf32_CLASS ELFCLASS32
43 #define Elf64_CLASS ELFCLASS64
51 static struct known_names interpreters
[] =
53 { "/lib/" LD_SO
, FLAG_ELF_LIBC6
},
54 #ifdef SYSDEP_KNOWN_INTERPRETER_NAMES
55 SYSDEP_KNOWN_INTERPRETER_NAMES
59 static struct known_names known_libs
[] =
61 { LIBC_SO
, FLAG_ELF_LIBC6
},
62 { LIBM_SO
, FLAG_ELF_LIBC6
},
63 #ifdef SYSDEP_KNOWN_LIBRARY_NAMES
64 SYSDEP_KNOWN_LIBRARY_NAMES
70 /* Returns 0 if everything is ok, != 0 in case of error. */
72 process_file (const char *real_file_name
, const char *file_name
,
73 const char *lib
, int *flag
, unsigned int *osversion
,
74 char **soname
, int is_link
)
77 struct stat64 statbuf
;
80 ElfW(Ehdr
) *elf_header
;
81 struct exec
*aout_header
;
87 file
= fopen (real_file_name
, "rb");
90 /* No error for stale symlink. */
91 if (is_link
&& strstr (file_name
, ".so") != NULL
)
93 error (0, 0, _("Input file %s not found.\n"), file_name
);
97 if (fstat64 (fileno (file
), &statbuf
) < 0)
99 error (0, 0, _("Cannot fstat file %s.\n"), file_name
);
104 /* Check that the file is large enough so that we can access the
105 information. We're only checking the size of the headers here. */
106 if (statbuf
.st_size
< sizeof (struct exec
)
107 || statbuf
.st_size
< sizeof (ElfW(Ehdr
)))
109 error (0, 0, _("File %s is too small, not checked."), file_name
);
114 file_contents
= mmap (0, statbuf
.st_size
, PROT_READ
, MAP_SHARED
,
116 if (file_contents
== MAP_FAILED
)
118 error (0, 0, _("Cannot mmap file %s.\n"), file_name
);
123 /* First check if this is an aout file. */
124 aout_header
= (struct exec
*) file_contents
;
125 if (N_MAGIC (*aout_header
) == ZMAGIC
126 || N_MAGIC (*aout_header
) == QMAGIC
)
128 /* Aout files don't have a soname, just return the name
129 including the major number. */
130 char *copy
, *major
, *dot
;
131 copy
= xstrdup (lib
);
132 major
= strstr (copy
, ".so.");
135 dot
= strstr (major
+ 4, ".");
144 elf_header
= (ElfW(Ehdr
) *) file_contents
;
145 if (memcmp (elf_header
->e_ident
, ELFMAG
, SELFMAG
) != 0)
147 /* The file is neither ELF nor aout. Check if it's a linker script,
148 like libc.so - otherwise complain. */
149 int len
= statbuf
.st_size
;
150 /* Only search the beginning of the file. */
153 if (memmem (file_contents
, len
, "GROUP", 5) == NULL
154 && memmem (file_contents
, len
, "GNU ld script", 13) == NULL
)
155 error (0, 0, _("%s is not an ELF file - it has the wrong magic bytes at the start.\n"),
161 if (process_elf_file (file_name
, lib
, flag
, osversion
, soname
,
162 file_contents
, statbuf
.st_size
))
166 /* Clean up allocated memory and resources. */
167 munmap (file_contents
, statbuf
.st_size
);
173 /* Get architecture specific version of process_elf_file. */
174 #include "readelflib.c"