1 /* Handle loading and unloading shared objects for internal libc purposes.
2 Copyright (C) 1999, 2000, 2001 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. */
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
32 Much of this code came from gconv_dl.c with slight modifications. */
36 dlerror_run (void (*operate
) (void *), void *args
)
39 const char *last_errstring
= NULL
;
42 (void) _dl_catch_error (&objname
, &last_errstring
, operate
, args
);
44 result
= last_errstring
!= NULL
;
45 if (result
&& last_errstring
!= _dl_out_of_memory
)
46 free ((char *) last_errstring
);
51 /* These functions are called by dlerror_run... */
55 /* Argument to do_dlopen. */
58 /* Return from do_dlopen. */
64 /* Arguments to do_dlsym. */
68 /* Return values of do_dlsym. */
76 struct do_dlopen_args
*args
= (struct do_dlopen_args
*) ptr
;
77 /* Open and relocate the shared object. */
78 args
->map
= _dl_open (args
->name
, RTLD_LAZY
, NULL
);
84 struct do_dlsym_args
*args
= (struct do_dlsym_args
*) ptr
;
86 args
->loadbase
= _dl_lookup_symbol (args
->name
, args
->map
, &args
->ref
,
87 args
->map
->l_local_scope
, 0, 1);
91 do_dlclose (void *ptr
)
93 _dl_close ((struct link_map
*) ptr
);
96 /* ... and these functions call dlerror_run. */
99 __libc_dlopen (const char *__name
)
101 struct do_dlopen_args args
;
104 return (dlerror_run (do_dlopen
, &args
) ? NULL
: (void *) args
.map
);
108 __libc_dlsym (void *__map
, const char *__name
)
110 struct do_dlsym_args args
;
114 return (dlerror_run (do_dlsym
, &args
) ? NULL
115 : (void *) (DL_SYMBOL_ADDRESS (args
.loadbase
, args
.ref
)));
119 __libc_dlclose (void *__map
)
121 return dlerror_run (do_dlclose
, __map
);
129 struct r_search_path_elem
*d
;
131 /* Remove all search directories. */
133 while (d
!= _dl_init_all_dirs
)
135 struct r_search_path_elem
*old
= d
;
140 /* Remove all additional names added to the objects. */
141 for (l
= _dl_loaded
; l
!= NULL
; l
= l
->l_next
)
143 struct libname_list
*lnp
= l
->l_libname
->next
;
145 l
->l_libname
->next
= NULL
;
149 struct libname_list
*old
= lnp
;
151 if (! old
->dont_free
)
156 text_set_element (__libc_subfreeres
, free_mem
);