summaryrefslogtreecommitdiff
path: root/libexec/ld.elf_so/search.c
blob: 68d1510bde0f88845af3de206f5bea3bccecd58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*	$NetBSD: search.c,v 1.10 2000/07/27 10:44:39 kleink Exp $	 */

/*
 * 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.
 */

/*
 * Dynamic linker for ELF.
 *
 * John Polstra <jdp@polstra.com>.
 */

#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <dirent.h>

#include "debug.h"
#include "rtld.h"

/*
 * Data declarations.
 */
static bool _rtld_check_library __P((const char *));
static char *_rtld_search_library_path __P((const char *, size_t, const char *,
    size_t));

static bool
_rtld_check_library(pathname)
	const char *pathname;
{
	struct stat mystat;
	Elf_Ehdr ehdr;
	int fd;

	if (stat(pathname, &mystat) == -1 || !S_ISREG(mystat.st_mode))
		return false;

	if ((fd = open(pathname, O_RDONLY)) == -1)
		return false;

	if (read(fd, &ehdr, sizeof(ehdr)) != sizeof(ehdr))
		goto lose;

	/* ELF_Ehdr.e_ident includes class */
	if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0 ||
	    ehdr.e_ident[EI_CLASS] != ELFCLASS)
		goto lose;

	switch (ehdr.e_machine) {
		ELFDEFNNAME(MACHDEP_ID_CASES)
	default:
		goto lose;
	}

	if (ehdr.e_ident[EI_VERSION] != EV_CURRENT ||
	    ehdr.e_version != EV_CURRENT ||
	    ehdr.e_ident[EI_DATA] != ELFDEFNNAME(MACHDEP_ENDIANNESS) ||
	    ehdr.e_type != ET_DYN)
		goto lose;

	close(fd);
	return true;

lose:
	close(fd);
	return false;
}


static char *
_rtld_search_library_path(name, namelen, dir, dirlen)
	const char *name;
	size_t namelen;
	const char *dir;
	size_t dirlen;
{
	char *pathname;

	pathname = xmalloc(dirlen + 1 + namelen + 1);
	(void)strncpy(pathname, dir, dirlen);
	pathname[dirlen] = '/';
	strcpy(pathname + dirlen + 1, name);

	dbg(("  Trying \"%s\"", pathname));
	if (_rtld_check_library(pathname))	/* We found it */
		return pathname;

	free(pathname);
	return NULL;
}

/*
 * Find the library with the given name, and return its full pathname.
 * The returned string is dynamically allocated.  Generates an error
 * message and returns NULL if the library cannot be found.
 *
 * If the second argument is non-NULL, then it refers to an already-
 * loaded shared object, whose library search path will be searched.
 */
char *
_rtld_find_library(name, refobj)
	const char *name;
	const Obj_Entry *refobj;
{
	Search_Path *sp;
	char *pathname;
	int namelen;

	if (strchr(name, '/') != NULL) {	/* Hard coded pathname */
		if (name[0] != '/' && !_rtld_trust) {
			_rtld_error(
			"Absolute pathname required for shared object \"%s\"",
			    name);
			return NULL;
		}
#ifdef SVR4_LIBDIR
		if (strncmp(name, SVR4_LIBDIR, SVR4_LIBDIRLEN) == 0
		    && name[SVR4_LIBDIRLEN] == '/') {	/* In "/usr/lib" */
			/*
			 * Map hard-coded "/usr/lib" onto our ELF library
			 * directory.
			 */
			pathname = xmalloc(strlen(name) + LIBDIRLEN -
			    SVR4_LIBDIRLEN + 1);
			(void)strcpy(pathname, LIBDIR);
			(void)strcpy(pathname + LIBDIRLEN, name +
			    SVR4_LIBDIRLEN);
			return pathname;
		}
#endif /* SVR4_LIBDIR */
		return xstrdup(name);
	}
	dbg((" Searching for \"%s\" (%p)", name, refobj));

	namelen = strlen(name);

	for (sp = _rtld_paths; sp != NULL; sp = sp->sp_next)
		if ((pathname = _rtld_search_library_path(name, namelen,
		    sp->sp_path, sp->sp_pathlen)) != NULL)
			return (pathname);

	if (refobj != NULL)
		for (sp = refobj->rpaths; sp != NULL; sp = sp->sp_next)
			if ((pathname = _rtld_search_library_path(name,
			    namelen, sp->sp_path, sp->sp_pathlen)) != NULL)
				return (pathname);

	for (sp = _rtld_default_paths; sp != NULL; sp = sp->sp_next)
		if ((pathname = _rtld_search_library_path(name, namelen,
		    sp->sp_path, sp->sp_pathlen)) != NULL)
			return (pathname);

#if 0
	if ((refobj != NULL &&
	    (pathname = _rtld_search_library_path(name,
	    refobj->rpath)) != NULL) ||
	    (pathname = _rtld_search_library_path(name,
	    ld_library_path)) != NULL
#ifdef SVR4_LIBDIR
	    LOSE !
	    ||(pathname = _rtld_search_library_path(name, SVR4_LIBDIR)) != NULL
#endif
	    )
		return pathname;
#endif

	_rtld_error("Shared object \"%s\" not found", name);
	return NULL;
}