Update.
[glibc.git] / elf / dl-libc.c
blobc95935ff75bc29585a8f6f55c71be906218a2fb6
1 /* Handle loading and unloading shared objects for internal libc purposes.
2 Copyright (C) 1999 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Zack Weinberg <zack@rabi.columbia.edu>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <dlfcn.h>
22 #include <stdlib.h>
23 #include <ldsodefs.h>
25 /* The purpose of this file is to provide wrappers around the dynamic
26 linker error mechanism (similar to dlopen() et al in libdl) which
27 are usable from within libc. Generally we want to throw away the
28 string that dlerror() would return and just pass back a null pointer
29 for errors. This also lets the rest of libc not know about the error
30 handling mechanism.
32 Much of this code came from gconv_dl.c with slight modifications. */
34 static int
35 internal_function
36 dlerror_run (void (*operate) (void *), void *args)
38 char *last_errstring = NULL;
39 int result;
41 (void) _dl_catch_error (&last_errstring, operate, args);
43 result = last_errstring != NULL;
44 if (result)
45 free (last_errstring);
47 return result;
50 /* These functions are called by dlerror_run... */
52 struct do_dlopen_args
54 /* Argument to do_dlopen. */
55 const char *name;
57 /* Return from do_dlopen. */
58 struct link_map *map;
61 struct do_dlsym_args
63 /* Arguments to do_dlsym. */
64 struct link_map *map;
65 const char *name;
67 /* Return values of do_dlsym. */
68 lookup_t loadbase;
69 const ElfW(Sym) *ref;
72 static void
73 do_dlopen (void *ptr)
75 struct do_dlopen_args *args = (struct do_dlopen_args *) ptr;
76 /* Open and relocate the shared object. */
77 args->map = _dl_open (args->name, RTLD_LAZY, NULL);
80 static void
81 do_dlsym (void *ptr)
83 struct do_dlsym_args *args = (struct do_dlsym_args *) ptr;
84 args->ref = NULL;
85 args->loadbase = _dl_lookup_symbol (args->name, args->map, &args->ref,
86 args->map->l_local_scope, 0);
89 static void
90 do_dlclose (void *ptr)
92 _dl_close ((struct link_map *) ptr);
95 /* ... and these functions call dlerror_run. */
97 void *
98 __libc_dlopen (const char *__name)
100 struct do_dlopen_args args;
101 args.name = __name;
103 return (dlerror_run (do_dlopen, &args) ? NULL : (void *) args.map);
106 void *
107 __libc_dlsym (void *__map, const char *__name)
109 struct do_dlsym_args args;
110 args.map = __map;
111 args.name = __name;
113 return (dlerror_run (do_dlsym, &args) ? NULL
114 : (void *) (DL_SYMBOL_ADDRESS (args.loadbase, args.ref)));
118 __libc_dlclose (void *__map)
120 return dlerror_run (do_dlclose, __map);