Home | History | Annotate | Line # | Download | only in ldd
ldd.c revision 1.12
      1  1.12       mrg /*	$NetBSD: ldd.c,v 1.12 2009/12/13 08:50:56 mrg Exp $	*/
      2   1.3       mrg 
      3   1.3       mrg /*-
      4   1.3       mrg  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
      5   1.3       mrg  * All rights reserved.
      6   1.3       mrg  *
      7   1.3       mrg  * This code is derived from software contributed to The NetBSD Foundation
      8   1.3       mrg  * by Paul Kranenburg.
      9   1.3       mrg  *
     10   1.3       mrg  * Redistribution and use in source and binary forms, with or without
     11   1.3       mrg  * modification, are permitted provided that the following conditions
     12   1.3       mrg  * are met:
     13   1.3       mrg  * 1. Redistributions of source code must retain the above copyright
     14   1.3       mrg  *    notice, this list of conditions and the following disclaimer.
     15   1.3       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.3       mrg  *    notice, this list of conditions and the following disclaimer in the
     17   1.3       mrg  *    documentation and/or other materials provided with the distribution.
     18   1.3       mrg  *
     19   1.3       mrg  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.3       mrg  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.3       mrg  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.3       mrg  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.3       mrg  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.3       mrg  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.3       mrg  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.3       mrg  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.3       mrg  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.3       mrg  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.3       mrg  * POSSIBILITY OF SUCH DAMAGE.
     30   1.3       mrg  */
     31   1.1       cgd 
     32   1.1       cgd /*
     33   1.1       cgd  * Copyright 1996 John D. Polstra.
     34   1.1       cgd  * Copyright 1996 Matt Thomas <matt (at) 3am-software.com>
     35   1.1       cgd  * All rights reserved.
     36   1.1       cgd  *
     37   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     38   1.1       cgd  * modification, are permitted provided that the following conditions
     39   1.1       cgd  * are met:
     40   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     41   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     42   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     43   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     44   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     45   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     46   1.1       cgd  *    must display the following acknowledgement:
     47   1.1       cgd  *      This product includes software developed by John Polstra.
     48   1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     49   1.1       cgd  *    derived from this software without specific prior written permission.
     50   1.1       cgd  *
     51   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     52   1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     53   1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     54   1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     55   1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     56   1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     57   1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     58   1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     59   1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     60   1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     61   1.1       cgd  */
     62   1.1       cgd 
     63   1.3       mrg #include <sys/cdefs.h>
     64   1.3       mrg #ifndef lint
     65  1.12       mrg __RCSID("$NetBSD: ldd.c,v 1.12 2009/12/13 08:50:56 mrg Exp $");
     66   1.3       mrg #endif /* not lint */
     67   1.3       mrg 
     68   1.3       mrg #include <sys/types.h>
     69   1.3       mrg #include <sys/mman.h>
     70   1.3       mrg #include <sys/wait.h>
     71   1.3       mrg 
     72   1.3       mrg #include <dirent.h>
     73   1.1       cgd #include <err.h>
     74   1.1       cgd #include <errno.h>
     75   1.1       cgd #include <fcntl.h>
     76   1.1       cgd #include <stdarg.h>
     77   1.1       cgd #include <stdio.h>
     78   1.1       cgd #include <stdlib.h>
     79   1.1       cgd #include <string.h>
     80   1.1       cgd #include <unistd.h>
     81   1.3       mrg #include <ctype.h>
     82   1.1       cgd 
     83   1.1       cgd #include "debug.h"
     84   1.1       cgd #include "rtld.h"
     85   1.3       mrg #include "ldd.h"
     86   1.1       cgd 
     87   1.1       cgd /*
     88   1.1       cgd  * Data declarations.
     89   1.1       cgd  */
     90   1.3       mrg static char *error_message;	/* Message for dlopen(), or NULL */
     91   1.1       cgd bool _rtld_trust;		/* False for setuid and setgid programs */
     92   1.1       cgd Obj_Entry *_rtld_objlist;	/* Head of linked list of shared objects */
     93   1.1       cgd Obj_Entry **_rtld_objtail = &_rtld_objlist;
     94   1.1       cgd 				/* Link field of last object in list */
     95   1.1       cgd Obj_Entry *_rtld_objmain;	/* The main program shared object */
     96  1.11     skrll size_t _rtld_pagesz;
     97   1.1       cgd 
     98   1.3       mrg Search_Path *_rtld_default_paths;
     99   1.1       cgd Search_Path *_rtld_paths;
    100   1.3       mrg Library_Xform *_rtld_xforms;
    101   1.1       cgd 
    102   1.3       mrg static void usage(void) __dead;
    103   1.3       mrg char *main_local;
    104   1.3       mrg char *main_progname;
    105   1.3       mrg 
    106   1.3       mrg static void
    107   1.3       mrg usage(void)
    108   1.3       mrg {
    109   1.3       mrg 	fprintf(stderr, "Usage: %s [-f <format 1>] [-f <format 2>] <filename>"
    110   1.3       mrg 		" ...\n", getprogname());
    111   1.3       mrg 	exit(1);
    112   1.3       mrg }
    113   1.1       cgd 
    114   1.1       cgd int
    115   1.3       mrg main(int argc, char **argv)
    116   1.1       cgd {
    117  1.10  dholland 	const char *fmt1 = NULL, *fmt2 = NULL;
    118   1.3       mrg 	int c;
    119   1.3       mrg 
    120   1.1       cgd #ifdef DEBUG
    121   1.3       mrg 	debug = 1;
    122   1.1       cgd #endif
    123  1.10  dholland 	while ((c = getopt(argc, argv, "f:o")) != -1) {
    124   1.3       mrg 		switch (c) {
    125   1.3       mrg 		case 'f':
    126   1.3       mrg 			if (fmt1) {
    127   1.3       mrg 				if (fmt2)
    128   1.3       mrg 					errx(1, "Too many formats");
    129   1.3       mrg 				fmt2 = optarg;
    130   1.3       mrg 			} else
    131   1.3       mrg 				fmt1 = optarg;
    132   1.3       mrg 			break;
    133  1.10  dholland 		case 'o':
    134  1.10  dholland 			if (fmt1 || fmt2)
    135  1.10  dholland 				errx(1, "Cannot use -o and -f together");
    136  1.10  dholland 			fmt1 = "%a:-l%o.%m => %p\n";
    137  1.10  dholland 			break;
    138   1.3       mrg 		default:
    139   1.3       mrg 			usage();
    140   1.3       mrg 			/*NOTREACHED*/
    141   1.3       mrg 		}
    142   1.3       mrg 	}
    143   1.3       mrg 	argc -= optind;
    144   1.3       mrg 	argv += optind;
    145   1.1       cgd 
    146   1.3       mrg 	if (argc <= 0) {
    147   1.3       mrg 		usage();
    148   1.3       mrg 		/*NOTREACHED*/
    149   1.1       cgd 	}
    150   1.1       cgd 
    151   1.5       mrg 	for (; argc != 0; argc--, argv++) {
    152   1.5       mrg 		int fd;
    153   1.5       mrg 
    154   1.5       mrg 		fd = open(*argv, O_RDONLY);
    155   1.5       mrg 		if (fd == -1) {
    156   1.5       mrg 			warn("%s", *argv);
    157   1.5       mrg 			continue;
    158   1.5       mrg 		}
    159   1.8        he 		if (elf_ldd(fd, *argv, fmt1, fmt2) == -1
    160   1.4       mrg 		    /* Alpha never had 32 bit support. */
    161   1.4       mrg #if defined(_LP64) && !defined(__alpha__)
    162   1.8        he 		    && elf32_ldd(fd, *argv, fmt1, fmt2) == -1
    163  1.12       mrg #ifdef __mips__
    164  1.12       mrg 		    && elf32_ldd_compat(fd, *argv, fmt1, fmt2) == -1
    165  1.12       mrg #endif
    166   1.3       mrg #endif
    167   1.8        he 		    )
    168   1.3       mrg 			warnx("%s", error_message);
    169   1.5       mrg 		close(fd);
    170   1.5       mrg 	}
    171   1.1       cgd 
    172   1.3       mrg 	return 0;
    173   1.1       cgd }
    174   1.1       cgd 
    175   1.1       cgd /*
    176   1.1       cgd  * Error reporting function.  Use it like printf.  If formats the message
    177   1.1       cgd  * into a buffer, and sets things up so that the next call to dlerror()
    178   1.1       cgd  * will return the message.
    179   1.1       cgd  */
    180   1.1       cgd void
    181   1.3       mrg _rtld_error(const char *fmt, ...)
    182   1.1       cgd {
    183   1.3       mrg 	static char buf[512];
    184   1.3       mrg 	va_list ap;
    185   1.3       mrg 	va_start(ap, fmt);
    186   1.3       mrg 	xvsnprintf(buf, sizeof buf, fmt, ap);
    187   1.3       mrg 	error_message = buf;
    188   1.3       mrg 	va_end(ap);
    189   1.1       cgd }
    190   1.3       mrg 
    191   1.3       mrg char *
    192   1.3       mrg dlerror()
    193   1.1       cgd {
    194   1.3       mrg 	char *msg = error_message;
    195   1.3       mrg 	error_message = NULL;
    196   1.3       mrg 	return msg;
    197   1.3       mrg }
    198   1.1       cgd 
    199   1.3       mrg void
    200   1.3       mrg fmtprint(const char *libname, Obj_Entry *obj, const char *fmt1,
    201   1.3       mrg     const char *fmt2)
    202   1.3       mrg {
    203   1.3       mrg 	const char *libpath = obj ? obj->path : "not found";
    204   1.1       cgd 	char libnamebuf[200];
    205   1.3       mrg 	char *libmajor = NULL;
    206   1.3       mrg 	const char *fmt;
    207   1.3       mrg 	char *cp;
    208   1.3       mrg 	int c;
    209   1.3       mrg 
    210   1.3       mrg 	if (strncmp(libname, "lib", 3) == 0 &&
    211   1.3       mrg 	    (cp = strstr(libname, ".so")) != NULL) {
    212   1.3       mrg 		int i = cp - (libname + 3);
    213   1.3       mrg 
    214   1.3       mrg 		if (i >= sizeof(libnamebuf))
    215   1.3       mrg 			i = sizeof(libnamebuf) - 1;
    216   1.3       mrg 		(void)memcpy(libnamebuf, libname + 3, i);
    217   1.3       mrg 		libnamebuf[i] = '\0';
    218   1.3       mrg 		if (cp[3] && isdigit((unsigned char)cp[4]))
    219   1.3       mrg 			libmajor = &cp[4];
    220   1.3       mrg 		libname = libnamebuf;
    221   1.3       mrg 	}
    222   1.3       mrg 
    223   1.3       mrg 	if (fmt1 == NULL)
    224   1.3       mrg 		fmt1 = libmajor != NULL ?
    225   1.3       mrg 		    "\t-l%o.%m => %p\n" :
    226   1.3       mrg 		    "\t-l%o => %p\n";
    227   1.3       mrg 	if (fmt2 == NULL)
    228   1.3       mrg 		fmt2 = "\t%o => %p\n";
    229   1.3       mrg 
    230   1.3       mrg 	fmt = libname == libnamebuf ? fmt1 : fmt2;
    231   1.3       mrg 	while ((c = *fmt++) != '\0') {
    232   1.3       mrg 		switch (c) {
    233   1.3       mrg 		default:
    234   1.3       mrg 			putchar(c);
    235   1.3       mrg 			continue;
    236   1.3       mrg 		case '\\':
    237   1.3       mrg 			switch (c = *fmt) {
    238   1.3       mrg 			case '\0':
    239   1.3       mrg 				continue;
    240   1.3       mrg 			case 'n':
    241   1.3       mrg 				putchar('\n');
    242   1.3       mrg 				break;
    243   1.3       mrg 			case 't':
    244   1.3       mrg 				putchar('\t');
    245   1.3       mrg 				break;
    246   1.3       mrg 			}
    247   1.3       mrg 			break;
    248   1.3       mrg 		case '%':
    249   1.3       mrg 			switch (c = *fmt) {
    250   1.3       mrg 			case '\0':
    251   1.3       mrg 				continue;
    252   1.3       mrg 			case '%':
    253   1.3       mrg 			default:
    254   1.3       mrg 				putchar(c);
    255   1.3       mrg 				break;
    256   1.3       mrg 			case 'A':
    257   1.3       mrg 				printf("%s", main_local);
    258   1.3       mrg 				break;
    259   1.3       mrg 			case 'a':
    260   1.3       mrg 				printf("%s", main_progname);
    261   1.3       mrg 				break;
    262   1.3       mrg 			case 'o':
    263   1.3       mrg 				printf("%s", libname);
    264   1.3       mrg 				break;
    265   1.3       mrg 			case 'm':
    266   1.3       mrg 				printf("%s", libmajor);
    267   1.3       mrg 				break;
    268   1.3       mrg 			case 'n':
    269   1.3       mrg 				/* XXX: not supported for elf */
    270   1.3       mrg 				break;
    271   1.3       mrg 			case 'p':
    272   1.3       mrg 				printf("%s", libpath);
    273   1.3       mrg 				break;
    274   1.3       mrg 			case 'x':
    275   1.3       mrg 				printf("%p", obj ? obj->mapbase : 0);
    276   1.3       mrg 				break;
    277   1.3       mrg 			}
    278   1.3       mrg 			break;
    279   1.3       mrg 		}
    280   1.3       mrg 		++fmt;
    281   1.1       cgd 	}
    282   1.3       mrg }
    283   1.3       mrg 
    284   1.3       mrg void
    285   1.3       mrg print_needed(Obj_Entry *obj, const char *fmt1, const char *fmt2)
    286   1.3       mrg {
    287   1.3       mrg 	const Needed_Entry *needed;
    288   1.3       mrg 
    289   1.3       mrg 	for (needed = obj->needed; needed != NULL; needed = needed->next) {
    290   1.3       mrg 		const char *libname = obj->strtab + needed->name;
    291   1.3       mrg 
    292   1.3       mrg 		if (needed->obj != NULL) {
    293   1.3       mrg 			print_needed(needed->obj, fmt1, fmt2);
    294   1.3       mrg 			if (!needed->obj->printed) {
    295   1.3       mrg 				fmtprint(libname, needed->obj, fmt1, fmt2);
    296   1.3       mrg 				needed->obj->printed = 1;
    297   1.3       mrg 			}
    298   1.3       mrg 		} else {
    299   1.3       mrg 			fmtprint(libname, needed->obj, fmt1, fmt2);
    300   1.3       mrg 		}
    301   1.1       cgd 	}
    302   1.1       cgd }
    303