2009-01-06 06:59:56 +03:00
|
|
|
/* $NetBSD: ldd.c,v 1.3 2009/01/06 03:59:56 mrg Exp $ */
|
2000-12-12 14:16:02 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Paul Kranenburg.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1996-12-16 22:59:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1996 John D. Polstra.
|
|
|
|
* Copyright 1996 Matt Thomas <matt@3am-software.com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by John Polstra.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2005-12-27 14:29:30 +03:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2009-01-06 06:59:56 +03:00
|
|
|
__RCSID("$NetBSD: ldd.c,v 1.3 2009/01/06 03:59:56 mrg Exp $");
|
2005-12-27 14:29:30 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
2000-12-12 14:16:02 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <a.out.h>
|
|
|
|
#include <dirent.h>
|
1996-12-16 22:59:55 +03:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2004-05-15 01:56:45 +04:00
|
|
|
#include <ctype.h>
|
1996-12-16 22:59:55 +03:00
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "rtld.h"
|
2009-01-06 06:59:56 +03:00
|
|
|
#include "ldd.h"
|
1996-12-16 22:59:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Data declarations.
|
|
|
|
*/
|
2002-11-16 01:39:17 +03:00
|
|
|
static char *error_message; /* Message for dlopen(), or NULL */
|
1996-12-16 22:59:55 +03:00
|
|
|
bool _rtld_trust; /* False for setuid and setgid programs */
|
|
|
|
Obj_Entry *_rtld_objlist; /* Head of linked list of shared objects */
|
|
|
|
Obj_Entry **_rtld_objtail = &_rtld_objlist;
|
|
|
|
/* Link field of last object in list */
|
|
|
|
Obj_Entry *_rtld_objmain; /* The main program shared object */
|
2002-09-24 13:58:03 +04:00
|
|
|
int _rtld_pagesz;
|
1996-12-16 22:59:55 +03:00
|
|
|
|
1999-08-01 23:47:07 +04:00
|
|
|
Search_Path *_rtld_default_paths;
|
1996-12-16 22:59:55 +03:00
|
|
|
Search_Path *_rtld_paths;
|
1999-12-13 12:10:16 +03:00
|
|
|
Library_Xform *_rtld_xforms;
|
1996-12-16 22:59:55 +03:00
|
|
|
|
2007-12-15 22:44:37 +03:00
|
|
|
static void usage(void) __dead;
|
2009-01-06 06:59:56 +03:00
|
|
|
char *main_local;
|
|
|
|
char *main_progname;
|
2003-12-19 22:56:56 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage: %s [-f <format 1>] [-f <format 2>] <filename>"
|
|
|
|
" ...\n", getprogname());
|
|
|
|
exit(1);
|
|
|
|
}
|
1996-12-16 22:59:55 +03:00
|
|
|
|
|
|
|
int
|
2002-12-02 17:05:11 +03:00
|
|
|
main(int argc, char **argv)
|
1996-12-16 22:59:55 +03:00
|
|
|
{
|
2003-12-19 22:56:56 +03:00
|
|
|
char *fmt1 = NULL, *fmt2 = NULL;
|
|
|
|
int c;
|
2003-02-06 15:40:21 +03:00
|
|
|
|
1996-12-16 22:59:55 +03:00
|
|
|
#ifdef DEBUG
|
2002-12-02 17:05:11 +03:00
|
|
|
debug = 1;
|
1996-12-16 22:59:55 +03:00
|
|
|
#endif
|
2003-12-19 22:56:56 +03:00
|
|
|
while ((c = getopt(argc, argv, "f:")) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'f':
|
|
|
|
if (fmt1) {
|
|
|
|
if (fmt2)
|
|
|
|
errx(1, "Too many formats");
|
|
|
|
fmt2 = optarg;
|
|
|
|
} else
|
|
|
|
fmt1 = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc <= 0) {
|
|
|
|
usage();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
1996-12-16 22:59:55 +03:00
|
|
|
|
2009-01-06 06:59:56 +03:00
|
|
|
for (; argc != 0; argc--, argv++)
|
|
|
|
if (elf_ldd(*argv, fmt1, fmt2) == -1 &&
|
|
|
|
#if defined(_LP64)
|
|
|
|
elf32_ldd(*argv, fmt1, fmt2) == -1 &&
|
|
|
|
#endif
|
|
|
|
aout_ldd(*argv, fmt1, fmt2) == -1)
|
|
|
|
warnx("%s", error_message);
|
1996-12-16 22:59:55 +03:00
|
|
|
|
2002-12-02 17:05:11 +03:00
|
|
|
return 0;
|
1996-12-16 22:59:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error reporting function. Use it like printf. If formats the message
|
|
|
|
* into a buffer, and sets things up so that the next call to dlerror()
|
|
|
|
* will return the message.
|
|
|
|
*/
|
|
|
|
void
|
2002-12-02 17:05:11 +03:00
|
|
|
_rtld_error(const char *fmt, ...)
|
1996-12-16 22:59:55 +03:00
|
|
|
{
|
2002-12-02 17:05:11 +03:00
|
|
|
static char buf[512];
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
xvsnprintf(buf, sizeof buf, fmt, ap);
|
|
|
|
error_message = buf;
|
|
|
|
va_end(ap);
|
1996-12-16 22:59:55 +03:00
|
|
|
}
|
2002-11-16 01:39:17 +03:00
|
|
|
|
|
|
|
char *
|
2003-08-12 13:18:38 +04:00
|
|
|
dlerror()
|
2002-11-16 01:39:17 +03:00
|
|
|
{
|
|
|
|
char *msg = error_message;
|
|
|
|
error_message = NULL;
|
|
|
|
return msg;
|
|
|
|
}
|
2002-12-02 17:05:11 +03:00
|
|
|
|
2009-01-06 06:59:56 +03:00
|
|
|
void
|
2004-05-15 01:56:45 +04:00
|
|
|
fmtprint(const char *libname, Obj_Entry *obj, const char *fmt1,
|
|
|
|
const char *fmt2)
|
|
|
|
{
|
|
|
|
const char *libpath = obj ? obj->path : "not found";
|
|
|
|
char libnamebuf[200];
|
|
|
|
char *libmajor = NULL;
|
|
|
|
const char *fmt;
|
|
|
|
char *cp;
|
|
|
|
int c;
|
|
|
|
|
2004-09-07 06:54:40 +04:00
|
|
|
if (strncmp(libname, "lib", 3) == 0 &&
|
|
|
|
(cp = strstr(libname, ".so")) != NULL) {
|
2004-05-15 01:56:45 +04:00
|
|
|
int i = cp - (libname + 3);
|
2004-09-07 06:54:40 +04:00
|
|
|
|
2004-05-15 01:56:45 +04:00
|
|
|
if (i >= sizeof(libnamebuf))
|
|
|
|
i = sizeof(libnamebuf) - 1;
|
|
|
|
(void)memcpy(libnamebuf, libname + 3, i);
|
2004-09-07 06:54:40 +04:00
|
|
|
libnamebuf[i] = '\0';
|
|
|
|
if (cp[3] && isdigit((unsigned char)cp[4]))
|
|
|
|
libmajor = &cp[4];
|
|
|
|
libname = libnamebuf;
|
2004-05-15 01:56:45 +04:00
|
|
|
}
|
2004-09-07 06:54:40 +04:00
|
|
|
|
|
|
|
if (fmt1 == NULL)
|
|
|
|
fmt1 = libmajor != NULL ?
|
|
|
|
"\t-l%o.%m => %p\n" :
|
|
|
|
"\t-l%o => %p\n";
|
|
|
|
if (fmt2 == NULL)
|
|
|
|
fmt2 = "\t%o => %p\n";
|
|
|
|
|
2004-05-15 01:56:45 +04:00
|
|
|
fmt = libname == libnamebuf ? fmt1 : fmt2;
|
|
|
|
while ((c = *fmt++) != '\0') {
|
|
|
|
switch (c) {
|
|
|
|
default:
|
|
|
|
putchar(c);
|
|
|
|
continue;
|
|
|
|
case '\\':
|
|
|
|
switch (c = *fmt) {
|
|
|
|
case '\0':
|
|
|
|
continue;
|
|
|
|
case 'n':
|
|
|
|
putchar('\n');
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
putchar('\t');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '%':
|
|
|
|
switch (c = *fmt) {
|
|
|
|
case '\0':
|
|
|
|
continue;
|
|
|
|
case '%':
|
|
|
|
default:
|
|
|
|
putchar(c);
|
|
|
|
break;
|
|
|
|
case 'A':
|
|
|
|
printf("%s", main_local);
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
printf("%s", main_progname);
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
printf("%s", libname);
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
printf("%s", libmajor);
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
/* XXX: not supported for elf */
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
printf("%s", libpath);
|
|
|
|
break;
|
|
|
|
case 'x':
|
2006-04-02 07:50:38 +04:00
|
|
|
printf("%p", obj ? obj->mapbase : 0);
|
2004-05-15 01:56:45 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++fmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-06 06:59:56 +03:00
|
|
|
void
|
2004-05-15 01:56:45 +04:00
|
|
|
print_needed(Obj_Entry *obj, const char *fmt1, const char *fmt2)
|
1996-12-16 22:59:55 +03:00
|
|
|
{
|
2002-12-02 17:05:11 +03:00
|
|
|
const Needed_Entry *needed;
|
1996-12-16 22:59:55 +03:00
|
|
|
|
2002-12-02 17:05:11 +03:00
|
|
|
for (needed = obj->needed; needed != NULL; needed = needed->next) {
|
2004-05-15 01:56:45 +04:00
|
|
|
const char *libname = obj->strtab + needed->name;
|
2002-12-02 17:05:11 +03:00
|
|
|
|
|
|
|
if (needed->obj != NULL) {
|
2004-05-15 01:56:45 +04:00
|
|
|
print_needed(needed->obj, fmt1, fmt2);
|
2002-12-02 17:05:11 +03:00
|
|
|
if (!needed->obj->printed) {
|
2004-05-15 01:56:45 +04:00
|
|
|
fmtprint(libname, needed->obj, fmt1, fmt2);
|
2002-12-02 17:05:11 +03:00
|
|
|
needed->obj->printed = 1;
|
|
|
|
}
|
|
|
|
} else {
|
2004-05-15 01:56:45 +04:00
|
|
|
fmtprint(libname, needed->obj, fmt1, fmt2);
|
2002-12-02 17:05:11 +03:00
|
|
|
}
|
1996-12-16 22:59:55 +03:00
|
|
|
}
|
|
|
|
}
|