2 * Copyright (c) 1993 Paul Kranenburg
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Paul Kranenburg.
16 * 4. The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * $FreeBSD: src/usr.bin/ldd/ldd.c,v 1.18.2.7 2002/02/27 18:35:53 sobomax Exp $
33 #include <sys/param.h>
36 #include <machine/elf.h>
45 static void usage(void);
50 fprintf(stderr
, "usage: ldd [-av] [-f format] program ...\n");
55 main(int argc
, char **argv
)
57 char *fmt1
= NULL
, *fmt2
= NULL
;
63 while ((c
= getopt(argc
, argv
, "af:v")) != -1) {
71 errx(1, "too many formats");
92 if (setenv("LD_TRACE_LOADED_OBJECTS", "yes", 1) == -1)
93 err(1, "setenv: cannot set LD_TRACE_LOADED_OBJECTS=1");
95 if (setenv("LD_TRACE_LOADED_OBJECTS_FMT1", fmt1
, 1) == -1)
96 err(1, "setenv: cannot set LD_TRACE_LOADED_OBJECTS_FMT1=%s", fmt1
);
99 if (setenv("LD_TRACE_LOADED_OBJECTS_FMT2", fmt2
, 1) == -1)
100 err(1, "setenv: cannot set LD_TRACE_LOADED_OBJECTS_FMT2=%s", fmt2
);
104 for ( ; argc
> 0; argc
--, argv
++) {
114 if ((fd
= open(*argv
, O_RDONLY
, 0)) < 0) {
119 if ((n
= read(fd
, &hdr
, sizeof hdr
)) == -1) {
120 warn("%s: can't read program header", *argv
);
128 if ((size_t)n
>= sizeof hdr
.elf
&& IS_ELF(hdr
.elf
)) {
133 if (lseek(fd
, 0, SEEK_SET
) == -1 ||
134 read(fd
, &ehdr
, sizeof ehdr
) != sizeof ehdr
||
135 lseek(fd
, ehdr
.e_phoff
, SEEK_SET
) == -1
137 warnx("%s: can't read program header", *argv
);
140 for (i
= 0; i
< ehdr
.e_phnum
; i
++) {
141 if (read(fd
, &phdr
, ehdr
.e_phentsize
)
143 warnx("%s: can't read program header",
148 if (phdr
.p_type
== PT_DYNAMIC
)
153 warnx("%s: not a dynamic executable", *argv
);
155 } else if (hdr
.elf
.e_type
== ET_DYN
) {
159 warnx("%s: not a dynamic executable", *argv
);
168 if (setenv("LD_TRACE_LOADED_OBJECTS_PROGNAME", *argv
, 1) == -1)
169 err(1, "setenv: cannot set LD_TRACE_LOADED_OBJECTS_PROGNAME=%s", *argv
);
170 if (aflag
) setenv("LD_TRACE_LOADED_OBJECTS_ALL", "1", 1);
171 else if (fmt1
== NULL
&& fmt2
== NULL
)
172 /* Default formats */
173 printf("%s:\n", *argv
);
181 if (wait(&status
) <= 0) {
184 } else if (WIFSIGNALED(status
)) {
185 fprintf(stderr
, "%s: signal %d\n",
186 *argv
, WTERMSIG(status
));
188 } else if (WIFEXITED(status
) && WEXITSTATUS(status
)) {
189 fprintf(stderr
, "%s: exit status %d\n",
190 *argv
, WEXITSTATUS(status
));
196 execl(*argv
, *argv
, NULL
);
199 dlopen(*argv
, RTLD_TRACE
);
200 warnx("%s: %s", *argv
, dlerror());