2000-09-15  Ulrich Drepper  <drepper@redhat.com>

	* elf/Makefile (distribute): Add nextmod1.c and nextmod2.c.
	(tests): Add next.
	(modules-names): Add nextmod1 and nextmod2.
	Add rules to build and run next.
	* elf/next.c: New file.
	* elf/nextmod1.c: New file.
	* elf/nextmod2.c: New file.

2000-09-14  Jakub Jelinek  <jakub@redhat.com>

	* elf/dl-lookup.c (_dl_lookup_symbol_skip): Fix a typo.
This commit is contained in:
Ulrich Drepper 2000-09-15 17:35:04 +00:00
parent ea4d748699
commit 917fd06163
5 changed files with 91 additions and 3 deletions

View File

@ -1,3 +1,17 @@
2000-09-15 Ulrich Drepper <drepper@redhat.com>
* elf/Makefile (distribute): Add nextmod1.c and nextmod2.c.
(tests): Add next.
(modules-names): Add nextmod1 and nextmod2.
Add rules to build and run next.
* elf/next.c: New file.
* elf/nextmod1.c: New file.
* elf/nextmod2.c: New file.
2000-09-14 Jakub Jelinek <jakub@redhat.com>
* elf/dl-lookup.c (_dl_lookup_symbol_skip): Fix a typo.
2000-09-15 Andreas Jaeger <aj@suse.de>
* sysdeps/mips/fpu/fenv_libc.h: New file.

View File

@ -51,7 +51,8 @@ distribute := $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \
constload2.c constload3.c filtmod1.c filtmod2.c \
nodlopenmod.c nodelete.c nodelmod1.c nodelmod2.c \
nodelmod3.c nodelmod4.c nodlopen.c dl-osinfo.h \
reldepmod1.c reldepmod2.c reldepmod3.c reldepmod4.c
reldepmod1.c reldepmod2.c reldepmod3.c reldepmod4.c \
nextmod1.c nextmod2.c
include ../Makeconfig
@ -92,7 +93,7 @@ endif
ifeq (yes,$(build-shared))
tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
constload1 order $(tests-vis-$(have-protected)) noload filter unload \
reldep reldep2 reldep3 $(tests-nodelete-$(have-z-nodelete)) \
reldep reldep2 reldep3 next $(tests-nodelete-$(have-z-nodelete)) \
$(tests-nodlopen-$(have-z-nodlopen))
tests-vis-yes = vismain
tests-nodelete-yes = nodelete
@ -103,7 +104,7 @@ modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
dep1 dep2 dep3 dep4 $(modules-vis-$(have-protected)) \
$(modules-nodelete-$(have-z-nodelete)) \
$(modules-nodlopen-$(have-z-nodlopen)) filtmod1 filtmod2 \
reldepmod1 reldepmod2 reldepmod3 reldepmod4
reldepmod1 reldepmod2 reldepmod3 reldepmod4 nextmod1 nextmod2
modules-vis-yes = vismod1 vismod2 vismod3
modules-nodelete-yes = nodelmod1 nodelmod2 nodelmod3 nodelmod4
modules-nodlopen-yes = nodlopenmod
@ -245,6 +246,7 @@ $(objpfx)dep1.so: $(objpfx)dep2.so $(objpfx)dep4.so
$(objpfx)dep2.so: $(objpfx)dep3.so $(objpfx)dep4.so
$(objpfx)dep4.so: $(objpfx)dep3.so
$(objpfx)nodelmod3.so: $(objpfx)nodelmod4.so
$(objpfx)nextmod1.so: $(libdl)
# filtmod1.so has a special rule
$(filter-out $(objpfx)filtmod1.so, $(test-modules)): $(objpfx)%.so: $(objpfx)%.os
@ -336,3 +338,5 @@ $(objpfx)reldep2.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod3.so
$(objpfx)reldep3: $(libdl)
$(objpfx)reldep3.out: $(objpfx)reldepmod1.so $(objpfx)reldepmod4.so
$(objpfx)next: $(objpfx)nextmod1.so $(objpfx)nextmod2.so $(libdl)

44
elf/next.c Normal file
View File

@ -0,0 +1,44 @@
#include <stdio.h>
extern int successful_rtld_next_test (void);
extern void *failing_rtld_next_use (void);
int
do_test (void)
{
int result;
void *addr;
/* First try call a function which uses RTLD_NEXT and calls that
function. */
result = successful_rtld_next_test ();
if (result == 42)
{
puts ("RTLD_NEXT seems to work for existing functions");
result = 0;
}
else
{
printf ("Heh? `successful_rtld_next_test' returned %d\n", result);
result = 1;
}
/* Next try a function which tries to get a function with RTLD_NEXT
but that fails. This dlsym() call should return a NULL pointer
and do nothing else. */
addr = failing_rtld_next_use ();
if (addr == NULL)
puts ("dlsym returned NULL for non-existing function. Good");
else
{
puts ("dlsym found something !?");
result = 1;
}
return result;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"

20
elf/nextmod1.c Normal file
View File

@ -0,0 +1,20 @@
#include <dlfcn.h>
int
successful_rtld_next_test (void)
{
int (*fp) (void);
/* Get the next function... */
fp = (int (*) (void)) dlsym (RTLD_NEXT, __FUNCTION__);
/* ...and simply call it. */
return fp ();
}
void *
failing_rtld_next_use (void)
{
return dlsym (RTLD_NEXT, __FUNCTION__);
}

6
elf/nextmod2.c Normal file
View File

@ -0,0 +1,6 @@
/* Very elaborated function. */
int
successful_rtld_next_test (void)
{
return 42;
}