summaryrefslogtreecommitdiff
path: root/utils/ldconfig.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-12 01:22:59 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-12 01:22:59 +0000
commit8f6b29e669ac593f07c7b8f4eb1507aa12c14983 (patch)
treecc814a8ac48da641a9c6296c24c23751ac4746c2 /utils/ldconfig.c
parent7faa798bed2130a7cebc49f4c055b9873e19a768 (diff)
cleanup, and prevent failures due to including architecture specific
header files into ldconfig when building for the host.
Diffstat (limited to 'utils/ldconfig.c')
-rw-r--r--utils/ldconfig.c70
1 files changed, 63 insertions, 7 deletions
diff --git a/utils/ldconfig.c b/utils/ldconfig.c
index 370b8cf1f..202a58dd6 100644
--- a/utils/ldconfig.c
+++ b/utils/ldconfig.c
@@ -37,8 +37,7 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/mman.h>
-#include "dl-elf.h"
-#include "readsoname.h"
+#include "dl-defs.h"
#define BUFFER_SIZE 4096
@@ -99,6 +98,26 @@ char *conffile = LDSO_CONF; /* default conf file */
char *cachefile = LDSO_CACHE; /* default cache file */
#endif
+struct needed_tab
+{
+ char *soname;
+ int type;
+};
+
+struct needed_tab needed_tab[] = {
+ { "libc.so.0", LIB_ELF_LIBC0 },
+ { "libm.so.0", LIB_ELF_LIBC0 },
+ { "libdl.so.0", LIB_ELF_LIBC0 },
+ { "libc.so.5", LIB_ELF_LIBC5 },
+ { "libm.so.5", LIB_ELF_LIBC5 },
+ { "libdl.so.1", LIB_ELF_LIBC5 },
+ { "libc.so.6", LIB_ELF_LIBC6 },
+ { "libm.so.6", LIB_ELF_LIBC6 },
+ { "libdl.so.2", LIB_ELF_LIBC6 },
+ { NULL, LIB_ELF }
+};
+
+
/* These two are used internally -- you shouldn't need to use them */
static void verror_msg(const char *s, va_list p)
{
@@ -107,7 +126,7 @@ static void verror_msg(const char *s, va_list p)
vfprintf(stderr, s, p);
}
-extern void warnx(const char *s, ...)
+static void warnx(const char *s, ...)
{
va_list p;
@@ -117,7 +136,7 @@ extern void warnx(const char *s, ...)
fprintf(stderr, "\n");
}
-extern void err(int errnum, const char *s, ...)
+static void err(int errnum, const char *s, ...)
{
va_list p;
@@ -140,7 +159,7 @@ static void vperror_msg(const char *s, va_list p)
fprintf(stderr, "%s%s\n", s, strerror(err));
}
-extern void warn(const char *s, ...)
+static void warn(const char *s, ...)
{
va_list p;
@@ -149,7 +168,7 @@ extern void warn(const char *s, ...)
va_end(p);
}
-void *xmalloc(size_t size)
+static void *xmalloc(size_t size)
{
void *ptr;
if ((ptr = malloc(size)) == NULL)
@@ -157,7 +176,7 @@ void *xmalloc(size_t size)
return ptr;
}
-char *xstrdup(const char *str)
+static char *xstrdup(const char *str)
{
char *ptr;
if ((ptr = strdup(str)) == NULL)
@@ -165,6 +184,39 @@ char *xstrdup(const char *str)
return ptr;
}
+
+#undef __ELF_NATIVE_CLASS
+#undef readsonameXX
+#define readsonameXX readsoname32
+#define __ELF_NATIVE_CLASS 32
+#include "readsoname2.c"
+
+#undef __ELF_NATIVE_CLASS
+#undef readsonameXX
+#define readsonameXX readsoname64
+#define __ELF_NATIVE_CLASS 64
+#include "readsoname2.c"
+
+char *readsoname(char *name, FILE *infile, int expected_type,
+ int *type, int elfclass)
+{
+ char *res;
+
+ if (elfclass == ELFCLASS32)
+ res = readsoname32(name, infile, expected_type, type);
+ else
+ {
+ res = readsoname64(name, infile, expected_type, type);
+#if 0
+ *type |= LIB_ELF64;
+#endif
+ }
+
+ return res;
+}
+
+
+
/* If shared library, return a malloced copy of the soname and set the
type, else return NULL.
@@ -753,8 +805,10 @@ void usage(void)
"\t-X:\t\tdon't update the library links\n"
"\t-l:\t\tlibrary mode, manually link libraries\n"
"\t-p:\t\tprint the current library cache\n"
+#ifdef __LDSO_CACHE_SUPPORT__
"\t-f conf :\tuse conf instead of %s\n"
"\t-C cache:\tuse cache instead of %s\n"
+#endif
"\t-r root :\tfirst, do a chroot to the indicated directory\n"
"\tdir ... :\tdirectories to process\n"
#ifdef __LDSO_CACHE_SUPPORT__
@@ -776,7 +830,9 @@ int main(int argc, char **argv)
int libtype, islink;
char *chroot_dir = NULL;
int printcache = 0;
+#ifdef __LDSO_CACHE_SUPPORT__
char *extpath;
+#endif
prog = argv[0];
opterr = 0;