Skip to content

Commit

Permalink
test: get libaio symbols via dlsym(RTLD_NEXT, ...)
Browse files Browse the repository at this point in the history
disable lazy-binding for that
  • Loading branch information
wenningerk committed Mar 20, 2024
1 parent bd93f1d commit b04b0d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/regressions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
: ${SBD_TRANSLATE_AIO:= "no"}

sbd() {
LD_PRELOAD=${SBD_PRELOAD} SBD_DEVICE="${SBD_DEVICE}" SBD_PRELOAD_LOG=${SBD_PRELOAD_LOG} SBD_WATCHDOG_DEV=/dev/watchdog setsid ${SBD_BINARY} -p ${SBD_PIDFILE} "$@"
LD_BIND_NOW=yes LD_PRELOAD=${SBD_PRELOAD} SBD_DEVICE="${SBD_DEVICE}" SBD_PRELOAD_LOG=${SBD_PRELOAD_LOG} SBD_WATCHDOG_DEV=/dev/watchdog setsid ${SBD_BINARY} -p ${SBD_PIDFILE} "$@"
}

sbd_sleep() {
Expand Down
18 changes: 6 additions & 12 deletions tests/sbd-testbed.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,11 @@ init (void)
orig_fopen = (orig_fopen_f_type)dlsym_fatal(RTLD_NEXT,"fopen");
orig_fclose = (orig_fclose_f_type)dlsym_fatal(RTLD_NEXT,"fclose");

handle = dlopen("libaio.so.1", RTLD_NOW);
if (!handle) {
fprintf(stderr, "Failed opening libaio.so.1\n");
exit(1);
}
orig_io_setup = (orig_io_setup_f_type)dlsym_fatal(handle,"io_setup");
orig_io_destroy = (orig_io_destroy_f_type)dlsym_fatal(handle,"io_destroy");
orig_io_submit = (orig_io_submit_f_type)dlsym_fatal(handle,"io_submit");
orig_io_getevents = (orig_io_getevents_f_type)dlsym_fatal(handle,"io_getevents");
orig_io_cancel = (orig_io_cancel_f_type)dlsym_fatal(handle,"io_cancel");
dlclose(handle);
orig_io_setup = (orig_io_setup_f_type)dlsym_fatal(RTLD_NEXT,"io_setup");
orig_io_destroy = (orig_io_destroy_f_type)dlsym_fatal(RTLD_NEXT,"io_destroy");
orig_io_submit = (orig_io_submit_f_type)dlsym_fatal(RTLD_NEXT,"io_submit");
orig_io_getevents = (orig_io_getevents_f_type)dlsym_fatal(RTLD_NEXT,"io_getevents");
orig_io_cancel = (orig_io_cancel_f_type)dlsym_fatal(RTLD_NEXT,"io_cancel");

value = getenv("SBD_PRELOAD_LOG");
if (value) {
Expand Down Expand Up @@ -203,7 +197,7 @@ init (void)
}
}

// ***** end - handling of watchdog & block-devices ****
// ***** handling of watchdog & block-devices ****

static gboolean
watchdog_timeout_notify(gpointer data)
Expand Down

0 comments on commit b04b0d0

Please sign in to comment.