1 /* $NetBSD: ldd.c,v 1.11 2009/11/17 18:44:33 skrll Exp $ */
4 * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * Copyright 1996 John D. Polstra.
34 * Copyright 1996 Matt Thomas <matt@3am-software.com>
35 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by John Polstra.
48 * 4. The name of the author may not be used to endorse or promote products
49 * derived from this software without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
52 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
53 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
54 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
55 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
56 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
60 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 #include <sys/cdefs.h>
65 __RCSID("$NetBSD: ldd.c,v 1.11 2009/11/17 18:44:33 skrll Exp $");
68 #include <sys/types.h>
90 static char *error_message
; /* Message for dlopen(), or NULL */
91 bool _rtld_trust
; /* False for setuid and setgid programs */
92 Obj_Entry
*_rtld_objlist
; /* Head of linked list of shared objects */
93 Obj_Entry
**_rtld_objtail
= &_rtld_objlist
;
94 /* Link field of last object in list */
95 Obj_Entry
*_rtld_objmain
; /* The main program shared object */
98 Search_Path
*_rtld_default_paths
;
99 Search_Path
*_rtld_paths
;
100 Library_Xform
*_rtld_xforms
;
102 static void usage(void) __dead
;
109 fprintf(stderr
, "Usage: %s [-f <format 1>] [-f <format 2>] <filename>"
110 " ...\n", getprogname());
115 main(int argc
, char **argv
)
117 const char *fmt1
= NULL
, *fmt2
= NULL
;
123 while ((c
= getopt(argc
, argv
, "f:o")) != -1) {
128 errx(1, "Too many formats");
135 errx(1, "Cannot use -o and -f together");
136 fmt1
= "%a:-l%o.%m => %p\n";
151 for (; argc
!= 0; argc
--, argv
++) {
154 fd
= open(*argv
, O_RDONLY
);
159 if (elf_ldd(fd
, *argv
, fmt1
, fmt2
) == -1
160 /* Alpha never had 32 bit support. */
161 #if defined(_LP64) && !defined(__alpha__)
162 && elf32_ldd(fd
, *argv
, fmt1
, fmt2
) == -1
164 && elf32_ldd_compat(fd
, *argv
, fmt1
, fmt2
) == -1
168 warnx("%s", error_message
);
176 * Error reporting function. Use it like printf. If formats the message
177 * into a buffer, and sets things up so that the next call to dlerror()
178 * will return the message.
181 _rtld_error(const char *fmt
, ...)
183 static char buf
[512];
186 xvsnprintf(buf
, sizeof buf
, fmt
, ap
);
194 char *msg
= error_message
;
195 error_message
= NULL
;
200 fmtprint(const char *libname
, Obj_Entry
*obj
, const char *fmt1
,
203 const char *libpath
= obj
? obj
->path
: "not found";
204 char libnamebuf
[200];
205 char *libmajor
= NULL
;
210 if (strncmp(libname
, "lib", 3) == 0 &&
211 (cp
= strstr(libname
, ".so")) != NULL
) {
212 int i
= cp
- (libname
+ 3);
214 if (i
>= sizeof(libnamebuf
))
215 i
= sizeof(libnamebuf
) - 1;
216 (void)memcpy(libnamebuf
, libname
+ 3, i
);
217 libnamebuf
[i
] = '\0';
218 if (cp
[3] && isdigit((unsigned char)cp
[4]))
220 libname
= libnamebuf
;
224 fmt1
= libmajor
!= NULL
?
225 "\t-l%o.%m => %p\n" :
228 fmt2
= "\t%o => %p\n";
230 fmt
= libname
== libnamebuf
? fmt1
: fmt2
;
231 while ((c
= *fmt
++) != '\0') {
257 printf("%s", main_local
);
260 printf("%s", main_progname
);
263 printf("%s", libname
);
266 printf("%s", libmajor
);
269 /* XXX: not supported for elf */
272 printf("%s", libpath
);
275 printf("%p", obj
? obj
->mapbase
: 0);
285 print_needed(Obj_Entry
*obj
, const char *fmt1
, const char *fmt2
)
287 const Needed_Entry
*needed
;
289 for (needed
= obj
->needed
; needed
!= NULL
; needed
= needed
->next
) {
290 const char *libname
= obj
->strtab
+ needed
->name
;
292 if (needed
->obj
!= NULL
) {
293 print_needed(needed
->obj
, fmt1
, fmt2
);
294 if (!needed
->obj
->printed
) {
295 fmtprint(libname
, needed
->obj
, fmt1
, fmt2
);
296 needed
->obj
->printed
= 1;
299 fmtprint(libname
, needed
->obj
, fmt1
, fmt2
);