mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
20fe49b93a
Change type of l_idx to int. * elf/dl-close.c: Basically rewrite. Do not use l_opencount to determine whether a DSO has to be unloaded. Instead compute this in this function. * elf/dl-deps.c: No need to manipulate l_opencount anymore. * elf/dl-lookup.c: Likewise. * elf/rtld.c: Likewise * elf/dl-open.c: Likewise. Use l_init_called to determine whether object was just loaded. * elf/dl-fini.c: Bump l_direct_opencount instead of l_opencount. * elf/dl-load.c (_dl_map_object_from_fd): Do not recognize DSO which is about to be unloaded as a match. (_dl_map_object): Likewise. * elf/do-lookup.h (do_lookup_x): Do not look into DSO which is about to be unloaded. * elf/circleload1.c: Don't use l_opencount anymore. * elf/neededtest.c: Likewise. * elf/neededtest2.c: Likewise. * elf/neededtest3.c: Likewise. * elf/neededtest4.c: Likewise. * elf/unload.c: Likewise. * elf/unload2.c: Likewise. * elf/loadtest.c: Likewise. * elf/rtld.c: Preloading errors are now never fatal. 2005-03-08 Jakub Jelinek <jakub@redhat.com> * elf/Makefile: Add rules to build and run unload5 test. * elf/unload5.c: New file. 2005-03-08 Jakub Jelinek <jakub@redhat.com> * elf/Makefile: Add rules to build and run unload4 test. * elf/unload4.c: New file. * elf/unload4mod1.c: New file. * elf/unload4mod2.c: New file. * elf/unload4mod3.c: New file. * elf/unload4mod4.c: New file.
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
#include <dlfcn.h>
|
|
#include <elf.h>
|
|
#include <errno.h>
|
|
#include <error.h>
|
|
#include <link.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define OUT \
|
|
for (map = _r_debug.r_map; map != NULL; map = map->l_next) \
|
|
if (map->l_type == lt_loaded) \
|
|
printf ("name = \"%s\", direct_opencount = %d\n", \
|
|
map->l_name, (int) map->l_direct_opencount); \
|
|
fflush (stdout)
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
void *h[3];
|
|
struct link_map *map;
|
|
void (*fp) (void);
|
|
|
|
h[0] = dlopen ("unload2mod.so", RTLD_LAZY);
|
|
h[1] = dlopen ("unload2mod.so", RTLD_LAZY);
|
|
if (h[0] == NULL || h[1] == NULL)
|
|
error (EXIT_FAILURE, errno, "cannot load \"unload2mod.so\"");
|
|
h[2] = dlopen ("unload2dep.so", RTLD_LAZY);
|
|
if (h[2] == NULL)
|
|
error (EXIT_FAILURE, errno, "cannot load \"unload2dep.so\"");
|
|
|
|
puts ("\nAfter loading everything:");
|
|
OUT;
|
|
|
|
dlclose (h[0]);
|
|
|
|
puts ("\nAfter unloading \"unload2mod.so\" once:");
|
|
OUT;
|
|
|
|
dlclose (h[1]);
|
|
|
|
puts ("\nAfter unloading \"unload2mod.so\" twice:");
|
|
OUT;
|
|
|
|
fp = dlsym (h[2], "foo");
|
|
puts ("\nnow calling `foo'");
|
|
fflush (stdout);
|
|
fp ();
|
|
puts ("managed to call `foo'");
|
|
fflush (stdout);
|
|
|
|
dlclose (h[2]);
|
|
|
|
puts ("\nAfter unloading \"unload2dep.so\":");
|
|
OUT;
|
|
|
|
return 0;
|
|
}
|