2006-03-21 20:48:10 +03:00
|
|
|
/* $NetBSD: search.c,v 1.21 2006/03/21 17:48:10 christos Exp $ */
|
1996-12-16 23:37:55 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
|
2004-10-22 09:39:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2006-03-21 20:48:10 +03:00
|
|
|
__RCSID("$NetBSD: search.c,v 1.21 2006/03/21 17:48:10 christos Exp $");
|
2004-10-22 09:39:56 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1996-12-16 23:37: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>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "rtld.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data declarations.
|
|
|
|
*/
|
2002-10-01 18:16:53 +04:00
|
|
|
Search_Path *_rtld_invalid_paths;
|
|
|
|
|
2003-07-24 14:12:25 +04:00
|
|
|
static Obj_Entry *_rtld_search_library_path(const char *, size_t,
|
|
|
|
const char *, size_t, int);
|
1996-12-16 23:37:55 +03:00
|
|
|
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
static Obj_Entry *
|
2003-07-24 14:12:25 +04:00
|
|
|
_rtld_search_library_path(const char *name, size_t namelen,
|
|
|
|
const char *dir, size_t dirlen, int mode)
|
1996-12-16 23:37:55 +03:00
|
|
|
{
|
2006-03-21 20:48:10 +03:00
|
|
|
char pathname[MAXPATHLEN];
|
2002-10-01 18:16:53 +04:00
|
|
|
size_t pathnamelen;
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
Obj_Entry *obj;
|
2002-10-01 18:16:53 +04:00
|
|
|
Search_Path *sp;
|
|
|
|
|
|
|
|
pathnamelen = dirlen + 1 + namelen;
|
2006-03-21 20:48:10 +03:00
|
|
|
if (pathnamelen >= sizeof(pathname))
|
|
|
|
return NULL;
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2002-10-01 18:16:53 +04:00
|
|
|
for (sp = _rtld_invalid_paths; sp != NULL; sp = sp->sp_next) {
|
|
|
|
if (sp->sp_pathlen == pathnamelen &&
|
2002-10-05 15:59:03 +04:00
|
|
|
!memcmp(name, sp->sp_path + dirlen + 1, namelen) &&
|
|
|
|
!memcmp(dir, sp->sp_path, dirlen)) {
|
2002-10-01 18:16:53 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-01 19:40:07 +03:00
|
|
|
(void)strncpy(pathname, dir, dirlen);
|
1997-02-17 22:32:05 +03:00
|
|
|
pathname[dirlen] = '/';
|
|
|
|
strcpy(pathname + dirlen + 1, name);
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-03-01 19:40:07 +03:00
|
|
|
dbg((" Trying \"%s\"", pathname));
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
obj = _rtld_load_object(pathname, mode);
|
2002-10-01 18:16:53 +04:00
|
|
|
if (obj == NULL) {
|
|
|
|
Search_Path *path;
|
|
|
|
|
|
|
|
path = NEW(Search_Path);
|
|
|
|
path->sp_pathlen = pathnamelen;
|
2006-03-21 20:48:10 +03:00
|
|
|
path->sp_path = xstrdup(pathname);
|
2002-10-01 18:16:53 +04:00
|
|
|
path->sp_next = _rtld_invalid_paths;
|
|
|
|
_rtld_invalid_paths = path;
|
|
|
|
}
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
return obj;
|
1996-12-16 23:37:55 +03:00
|
|
|
}
|
1999-03-01 19:40:07 +03:00
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
Obj_Entry *
|
2003-07-24 14:12:25 +04:00
|
|
|
_rtld_load_library(const char *name, const Obj_Entry *refobj, int mode)
|
1996-12-16 23:37:55 +03:00
|
|
|
{
|
2002-11-15 00:07:46 +03:00
|
|
|
char tmperror[512], *tmperrorp;
|
1999-03-01 19:40:07 +03:00
|
|
|
Search_Path *sp;
|
2006-03-21 20:48:10 +03:00
|
|
|
const char *pathname;
|
1999-03-01 19:40:07 +03:00
|
|
|
int namelen;
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
Obj_Entry *obj;
|
1999-03-01 19:40:07 +03:00
|
|
|
|
|
|
|
if (strchr(name, '/') != NULL) { /* Hard coded pathname */
|
|
|
|
if (name[0] != '/' && !_rtld_trust) {
|
|
|
|
_rtld_error(
|
2002-09-24 16:52:20 +04:00
|
|
|
"absolute pathname required for shared object \"%s\"",
|
1999-03-01 19:40:07 +03:00
|
|
|
name);
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-03-21 20:48:10 +03:00
|
|
|
pathname = name;
|
2002-09-24 04:02:46 +04:00
|
|
|
goto found;
|
1999-03-01 19:40:07 +03:00
|
|
|
}
|
|
|
|
dbg((" Searching for \"%s\" (%p)", name, refobj));
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2003-08-12 13:18:38 +04:00
|
|
|
tmperrorp = dlerror();
|
2002-11-15 00:07:46 +03:00
|
|
|
if (tmperrorp != NULL) {
|
|
|
|
strncpy(tmperror, tmperrorp, sizeof tmperror);
|
|
|
|
tmperrorp = tmperror;
|
|
|
|
}
|
|
|
|
|
1997-02-17 22:32:05 +03:00
|
|
|
namelen = strlen(name);
|
|
|
|
|
1999-08-01 23:47:07 +04:00
|
|
|
for (sp = _rtld_paths; sp != NULL; sp = sp->sp_next)
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
if ((obj = _rtld_search_library_path(name, namelen,
|
|
|
|
sp->sp_path, sp->sp_pathlen, mode)) != NULL)
|
2002-11-15 00:07:46 +03:00
|
|
|
goto pathfound;
|
1999-08-01 23:47:07 +04:00
|
|
|
|
1999-03-01 19:40:07 +03:00
|
|
|
if (refobj != NULL)
|
|
|
|
for (sp = refobj->rpaths; sp != NULL; sp = sp->sp_next)
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
if ((obj = _rtld_search_library_path(name,
|
|
|
|
namelen, sp->sp_path, sp->sp_pathlen, mode)) != NULL)
|
2002-11-15 00:07:46 +03:00
|
|
|
goto pathfound;
|
1997-02-17 22:32:05 +03:00
|
|
|
|
1999-08-01 23:47:07 +04:00
|
|
|
for (sp = _rtld_default_paths; sp != NULL; sp = sp->sp_next)
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
if ((obj = _rtld_search_library_path(name, namelen,
|
|
|
|
sp->sp_path, sp->sp_pathlen, mode)) != NULL)
|
2002-11-15 00:07:46 +03:00
|
|
|
goto pathfound;
|
1997-02-17 22:32:05 +03:00
|
|
|
|
1999-03-01 19:40:07 +03:00
|
|
|
_rtld_error("Shared object \"%s\" not found", name);
|
|
|
|
return NULL;
|
Several small changes that shave 7-8% off the simple-exec-loop test:
* Rename _rtld_find_library() to _rtld_load_library(). It now calls
_rtld_load_object() if necessary to actually load the object, rather
than having the caller do it. To do this, it also takes the `mode'
argument that gets passed to _rtld_load_object().
* On a related note, remove _rtld_check_library(), and instead call
_rtld_load_object() to instead try actually loading the object. We
save two extra namei's and a bunch of redundant work (almost
literally the same code) this way.
* In _rtld_map_object(), mmap(2) the first page read-only, rather than
read(2)ing it.
* In _rtld_symlook_obj(), compare the *second* character of the symbol
name before calling strcmp(). (This first character is too
frequently `_', and turns out to not be helpful, in libc.)
* Also in _rtld_symlook_obj(), remove the bogus STT_FUNC special case
-- this also allows removing the `in_plt' argument to
_rtld_symlook_list() and _rtld_symlook_obj().
Also:
* In _rtld_obj_from_addr(), rather than trying to look up `_end' in
the each object, instead use obj->mapsize as the upper bound.
2002-09-24 03:56:46 +04:00
|
|
|
|
2002-11-15 00:07:46 +03:00
|
|
|
pathfound:
|
|
|
|
/*
|
|
|
|
* Successfully found a library; restore the dlerror state as it was
|
|
|
|
* before _rtld_load_library() was called (any failed call to
|
|
|
|
* _rtld_search_library_path() will set the dlerror state, but if the
|
|
|
|
* library was eventually found, then the error state should not
|
|
|
|
* change.
|
|
|
|
*/
|
|
|
|
if (tmperrorp)
|
|
|
|
_rtld_error("%s", tmperror);
|
|
|
|
else
|
2003-08-12 13:18:38 +04:00
|
|
|
(void)dlerror();
|
2002-11-15 00:07:46 +03:00
|
|
|
return obj;
|
|
|
|
|
2002-09-24 04:02:46 +04:00
|
|
|
found:
|
2006-03-18 05:34:30 +03:00
|
|
|
return _rtld_load_object(pathname, mode);
|
1996-12-16 23:37:55 +03:00
|
|
|
}
|