diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 09:12:05 +0200 |
commit | 9c76debc983e1a16e2e723b36526826713a671af (patch) | |
tree | bf5eccfa629d8c0959d8d8c19744fbe30f9cfcc0 /dlfcn/tststatic2.c | |
parent | 6f1c701026287f6928d3bdd1aea7359308635abe (diff) | |
download | glibc-9c76debc983e1a16e2e723b36526826713a671af.tar.gz glibc-9c76debc983e1a16e2e723b36526826713a671af.tar.xz glibc-9c76debc983e1a16e2e723b36526826713a671af.zip |
dlfcn: Eliminate GLIBC_PRIVATE dependency from tststatic2
The test appears to use _dlfcn_hook@@GLIBC_PRIVATE as a way to test dlvsym without having to know the appropriate symbol version. With <first-versions.h>, we can use a public symbol and the symbol version at which it was defined first. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'dlfcn/tststatic2.c')
-rw-r--r-- | dlfcn/tststatic2.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dlfcn/tststatic2.c b/dlfcn/tststatic2.c index f8cd5a964b..5d8a7831b2 100644 --- a/dlfcn/tststatic2.c +++ b/dlfcn/tststatic2.c @@ -4,6 +4,7 @@ #include <stdlib.h> #include <string.h> #include <gnu/lib-names.h> +#include <first-versions.h> static int do_test (void) @@ -115,11 +116,18 @@ do_test (void) exit (1); } - if (dlvsym (handle2, "_dlfcn_hook", "GLIBC_PRIVATE") == NULL) + /* _exit is very unlikely to receive a second symbol version. */ + void *exit_ptr = dlvsym (handle2, "_exit", FIRST_VERSION_libc__exit_STRING); + if (exit_ptr == NULL) { printf ("dlvsym: %s\n", dlerror ()); exit (1); } + if (exit_ptr != dlsym (handle2, "_exit")) + { + printf ("dlvsym for _exit does not match dlsym\n"); + exit (1); + } void *(*dlsymfn) (void *, const char *); dlsymfn = dlsym (handle2, "dlsym"); |