X-Git-Url: https://git.cworth.org/git?p=fips;a=blobdiff_plain;f=dlwrap.h;h=6460dfef136b0370ba78eb45f9d47f8a19974fed;hp=1dba14a9f569f03ac1f7b2e6f61ca4518838e470;hb=HEAD;hpb=8468b2b9d524832211f8e20791a1459003a563ff diff --git a/dlwrap.h b/dlwrap.h index 1dba14a..6460dfe 100644 --- a/dlwrap.h +++ b/dlwrap.h @@ -22,6 +22,7 @@ #ifndef DLWRAP_H #define DLWRAP_H +#define _GNU_SOURCE #include /* Call the *real* dlopen. We have our own wrapper for dlopen that, of @@ -32,6 +33,18 @@ void * dlwrap_real_dlopen (const char *filename, int flag); +/* Perform a dlopen on the libfips library itself. + * + * Many places in fips need to lookup symbols within the libfips + * library itself, (and not in any other library). This function + * provides a reliable way to get a handle for performing such + * lookups. + * + * The returned handle can be passed to dlwrap_real_dlsym for the + * lookups. */ +void * +dlwrap_dlopen_libfips (void); + /* Call the *real* dlsym. We have our own wrapper for dlsym that, of * necessity must use claim the symbol 'dlsym'. So whenever anything * internal needs to call the real, underlying dlysm function, the