2004-08-08 01:33:04 +04:00
|
|
|
/* $NetBSD: common.c,v 1.19 2004/08/07 21:33:04 chs Exp $ */
|
1996-10-18 09:36:42 +04:00
|
|
|
|
1998-09-05 17:20:07 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
1995-06-03 17:16:03 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-09-05 17:20:07 +04:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Paul Kranenburg.
|
|
|
|
*
|
1995-06-03 17:16:03 +04:00
|
|
|
* 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:
|
1998-09-05 17:20:07 +04:00
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
1995-06-03 17:16:03 +04:00
|
|
|
*
|
1998-09-05 17:20:07 +04:00
|
|
|
* 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.
|
1995-06-03 17:16:03 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef DYNAMIC
|
|
|
|
|
|
|
|
typedef int (*rtld_entry_fn) __P((int, struct crt_ldso *));
|
1999-01-29 02:59:49 +03:00
|
|
|
static struct ld_entry **ld_entry;
|
1995-06-03 17:16:03 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
__load_rtld(dp)
|
|
|
|
struct _dynamic *dp;
|
|
|
|
{
|
1995-09-24 02:34:20 +04:00
|
|
|
static struct crt_ldso crt;
|
1995-06-03 17:16:03 +04:00
|
|
|
struct exec hdr;
|
|
|
|
rtld_entry_fn entry;
|
|
|
|
#if defined(sun) && defined(DUPZFD)
|
|
|
|
int dupzfd;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/* Provision for alternate ld.so - security risk! */
|
1995-09-24 02:34:20 +04:00
|
|
|
if ((crt.crt_ldso = _getenv("LDSO")) == NULL)
|
1995-06-03 17:16:03 +04:00
|
|
|
#endif
|
1995-09-24 02:34:20 +04:00
|
|
|
crt.crt_ldso = LDSO;
|
1995-06-03 17:16:03 +04:00
|
|
|
|
1995-09-24 02:34:20 +04:00
|
|
|
crt.crt_ldfd = open(crt.crt_ldso, 0, 0);
|
1995-06-03 17:16:03 +04:00
|
|
|
if (crt.crt_ldfd == -1) {
|
|
|
|
_FATAL("No ld.so\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read LDSO exec header */
|
|
|
|
if (read(crt.crt_ldfd, &hdr, sizeof hdr) < sizeof hdr) {
|
|
|
|
_FATAL("Failure reading ld.so\n");
|
|
|
|
}
|
|
|
|
if (N_GETMAGIC(hdr) != ZMAGIC && N_GETMAGIC(hdr) != QMAGIC) {
|
|
|
|
_FATAL("Bad magic: ld.so\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef sun
|
|
|
|
/* Get bucket of zeroes */
|
|
|
|
crt.crt_dzfd = open("/dev/zero", 0, 0);
|
|
|
|
if (crt.crt_dzfd == -1) {
|
|
|
|
_FATAL("No /dev/zero\n");
|
|
|
|
}
|
|
|
|
#endif
|
1998-07-25 08:59:05 +04:00
|
|
|
#ifdef __NetBSD__
|
1995-06-03 17:16:03 +04:00
|
|
|
/* We use MAP_ANON */
|
|
|
|
crt.crt_dzfd = -1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(sun) && defined(DUPZFD)
|
|
|
|
if ((dupzfd = dup(crt.crt_dzfd)) < 0) {
|
|
|
|
_FATAL("Cannot dup /dev/zero\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Map in ld.so */
|
|
|
|
crt.crt_ba = mmap(0, hdr.a_text+hdr.a_data+hdr.a_bss,
|
|
|
|
PROT_READ|PROT_EXEC,
|
1999-06-18 01:09:47 +04:00
|
|
|
MAP_FILE|MAP_PRIVATE,
|
1995-06-03 17:16:03 +04:00
|
|
|
crt.crt_ldfd, N_TXTOFF(hdr));
|
|
|
|
if (crt.crt_ba == -1) {
|
|
|
|
_FATAL("Cannot map ld.so\n");
|
|
|
|
}
|
|
|
|
|
1998-07-25 08:59:05 +04:00
|
|
|
#ifdef __NetBSD__
|
1995-06-03 17:16:03 +04:00
|
|
|
/* !!!
|
|
|
|
* This is gross, ld.so is a ZMAGIC a.out, but has `sizeof(hdr)' for
|
|
|
|
* an entry point and not at PAGSIZ as the N_*ADDR macros assume.
|
|
|
|
*/
|
|
|
|
#undef N_DATADDR
|
|
|
|
#undef N_BSSADDR
|
|
|
|
#define N_DATADDR(x) ((x).a_text)
|
|
|
|
#define N_BSSADDR(x) ((x).a_text + (x).a_data)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Map in data segment of ld.so writable */
|
|
|
|
if (mmap(crt.crt_ba+N_DATADDR(hdr), hdr.a_data,
|
2004-08-08 01:33:04 +04:00
|
|
|
PROT_READ|PROT_WRITE|PROT_EXEC,
|
1999-06-18 01:09:47 +04:00
|
|
|
MAP_FILE|MAP_PRIVATE|MAP_FIXED,
|
1995-06-03 17:16:03 +04:00
|
|
|
crt.crt_ldfd, N_DATOFF(hdr)) == -1) {
|
|
|
|
_FATAL("Cannot map ld.so\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Map bss segment of ld.so zero */
|
|
|
|
if (hdr.a_bss && mmap(crt.crt_ba+N_BSSADDR(hdr), hdr.a_bss,
|
|
|
|
PROT_READ|PROT_WRITE,
|
1999-06-18 01:09:47 +04:00
|
|
|
MAP_ANON|MAP_PRIVATE|MAP_FIXED,
|
1995-06-03 17:16:03 +04:00
|
|
|
crt.crt_dzfd, 0) == -1) {
|
|
|
|
_FATAL("Cannot map ld.so\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
crt.crt_dp = dp;
|
|
|
|
crt.crt_ep = environ;
|
|
|
|
crt.crt_bp = (caddr_t)_callmain;
|
|
|
|
crt.crt_prog = __progname;
|
|
|
|
|
|
|
|
#ifdef sun
|
|
|
|
/* Call Sun's ld.so entry point: version 1, offset crt */
|
|
|
|
__call(CRT_VERSION_SUN, &crt, crt.crt_ba + sizeof hdr);
|
|
|
|
#else
|
1999-01-29 02:59:49 +03:00
|
|
|
ld_entry = &crt.crt_ldentry;
|
1995-06-03 17:16:03 +04:00
|
|
|
entry = (rtld_entry_fn)(crt.crt_ba + sizeof hdr);
|
1995-09-24 02:34:20 +04:00
|
|
|
if ((*entry)(CRT_VERSION_BSD_4, &crt) == -1) {
|
|
|
|
/* Feeble attempt to deal with out-dated ld.so */
|
2002-11-12 17:33:48 +03:00
|
|
|
#ifdef __STDC__
|
|
|
|
# define str "crt0: update " LDSO "\n"
|
|
|
|
#else
|
|
|
|
# define str "crt0: update ld.so\n"
|
|
|
|
#endif
|
1998-10-19 05:35:00 +04:00
|
|
|
(void)write(2, str, sizeof(str)-1);
|
1995-09-24 02:34:20 +04:00
|
|
|
# undef str
|
|
|
|
if ((*entry)(CRT_VERSION_BSD_3, &crt) == -1) {
|
|
|
|
_FATAL("ld.so failed\n");
|
|
|
|
}
|
1999-01-29 02:59:49 +03:00
|
|
|
ld_entry = &dp->d_entry;
|
1995-09-24 02:34:20 +04:00
|
|
|
return;
|
1995-06-03 17:16:03 +04:00
|
|
|
}
|
1999-01-29 02:59:49 +03:00
|
|
|
atexit((*ld_entry)->dlexit);
|
1995-06-03 17:16:03 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(sun) && defined(DUPZFD)
|
|
|
|
if (dup2(dupzfd, crt.crt_dzfd) < 0) {
|
|
|
|
_FATAL("Cannot dup2 /dev/zero\n");
|
|
|
|
}
|
|
|
|
(void)close(dupzfd);
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DL stubs
|
|
|
|
*/
|
|
|
|
|
|
|
|
void *
|
|
|
|
dlopen(name, mode)
|
1997-01-04 01:37:58 +03:00
|
|
|
const char *name;
|
1995-06-05 03:29:14 +04:00
|
|
|
int mode;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL)
|
1995-06-03 17:16:03 +04:00
|
|
|
return NULL;
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
return ((*ld_entry)->dlopen)(name, mode);
|
1995-06-03 17:16:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dlclose(fd)
|
1995-06-05 03:29:14 +04:00
|
|
|
void *fd;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL)
|
1995-06-03 17:16:03 +04:00
|
|
|
return -1;
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
return ((*ld_entry)->dlclose)(fd);
|
1995-06-03 17:16:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
dlsym(fd, name)
|
1995-06-05 03:29:14 +04:00
|
|
|
void *fd;
|
1997-01-04 01:37:58 +03:00
|
|
|
const char *name;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL)
|
1995-06-03 17:16:03 +04:00
|
|
|
return NULL;
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
return ((*ld_entry)->dlsym)(fd, name);
|
1995-06-03 17:16:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dlctl(fd, cmd, arg)
|
1998-05-13 01:25:44 +04:00
|
|
|
void *fd, *arg;
|
|
|
|
int cmd;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL)
|
1995-06-03 17:16:03 +04:00
|
|
|
return -1;
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
return ((*ld_entry)->dlctl)(fd, cmd, arg);
|
1995-06-03 17:16:03 +04:00
|
|
|
}
|
|
|
|
|
1999-05-19 18:50:49 +04:00
|
|
|
__aconst char *
|
1995-06-05 03:29:14 +04:00
|
|
|
dlerror()
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL ||
|
|
|
|
(*(*ld_entry)->dlctl)(NULL, DL_GETERRNO, &error) == -1)
|
1995-06-05 03:29:14 +04:00
|
|
|
return "Service unavailable";
|
|
|
|
|
1998-05-30 22:33:43 +04:00
|
|
|
return ((char *)(error == 0 ? NULL : strerror(error)));
|
1995-06-05 03:29:14 +04:00
|
|
|
}
|
|
|
|
|
1998-05-13 01:25:44 +04:00
|
|
|
int
|
|
|
|
dladdr(addr, dli)
|
2000-02-10 01:41:53 +03:00
|
|
|
const void *addr;
|
1998-05-13 01:25:44 +04:00
|
|
|
Dl_info *dli;
|
|
|
|
{
|
1999-01-29 02:59:49 +03:00
|
|
|
if ((*ld_entry) == NULL || (*ld_entry)->dladdr == NULL)
|
1998-05-13 01:25:44 +04:00
|
|
|
return (0);
|
|
|
|
|
1999-01-29 02:59:49 +03:00
|
|
|
return ((*ld_entry)->dladdr)(addr, dli);
|
1998-05-13 01:25:44 +04:00
|
|
|
}
|
|
|
|
|
1995-06-03 17:16:03 +04:00
|
|
|
/*
|
|
|
|
* Support routines
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
static int
|
|
|
|
_strncmp(s1, s2, n)
|
1998-02-03 23:01:32 +03:00
|
|
|
char *s1, *s2;
|
|
|
|
int n;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
if (n == 0)
|
|
|
|
return (0);
|
|
|
|
do {
|
|
|
|
if (*s1 != *s2++)
|
|
|
|
return (*(unsigned char *)s1 - *(unsigned char *)--s2);
|
|
|
|
if (*s1++ == 0)
|
|
|
|
break;
|
|
|
|
} while (--n != 0);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
_getenv(name)
|
1998-02-03 23:01:32 +03:00
|
|
|
char *name;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
|
|
|
extern char **environ;
|
1998-02-03 23:01:32 +03:00
|
|
|
int len;
|
|
|
|
char **P, *C;
|
1995-06-03 17:16:03 +04:00
|
|
|
|
|
|
|
for (C = name, len = 0; *C && *C != '='; ++C, ++len);
|
|
|
|
for (P = environ; *P; ++P)
|
|
|
|
if (!_strncmp(*P, name, len))
|
|
|
|
if (*(C = *P + len) == '=') {
|
|
|
|
return(++C);
|
|
|
|
}
|
|
|
|
return (char *)0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char *
|
|
|
|
_strrchr(p, ch)
|
1998-02-03 23:01:32 +03:00
|
|
|
char *p, ch;
|
1995-06-03 17:16:03 +04:00
|
|
|
{
|
1998-02-03 23:01:32 +03:00
|
|
|
char *save;
|
1995-06-03 17:16:03 +04:00
|
|
|
|
|
|
|
for (save = NULL;; ++p) {
|
|
|
|
if (*p == ch)
|
|
|
|
save = (char *)p;
|
|
|
|
if (!*p)
|
|
|
|
return(save);
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
1995-06-16 01:41:41 +04:00
|
|
|
|
|
|
|
#endif /* DYNAMIC */
|