diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-07-22 17:10:57 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-28 08:40:38 -0300 |
commit | 0b98a8748759e88b58927882a8714109abe0a2d6 (patch) | |
tree | eadfe6e15cfb23f76e952ea1c8fb4049c33564b9 /sysdeps | |
parent | cda4f265c65fb6c4ce38ca1cf0a7e527c5e77cd5 (diff) | |
download | glibc-0b98a8748759e88b58927882a8714109abe0a2d6.zip glibc-0b98a8748759e88b58927882a8714109abe0a2d6.tar.gz glibc-0b98a8748759e88b58927882a8714109abe0a2d6.tar.bz2 |
elf: Add _dl_audit_preinit
It consolidates the code required to call la_preinit audit
callback.
Checked on x86_64-linux-gnu, i686-linux-gnu, and aarch64-linux-gnu.
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index eff1c1f..9a67e29 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -1422,6 +1422,9 @@ void _dl_audit_objopen (struct link_map *l, Lmid_t nsid) void _dl_audit_objclose (struct link_map *l) attribute_hidden; +/* Call the la_preinit from the audit modules for the link_map L. */ +void _dl_audit_preinit (struct link_map *l); + /* Call the la_symbind{32,64} from the audit modules for the link_map L. */ void _dl_audit_symbind (struct link_map *l, struct reloc_result *reloc_result, const ElfW(Sym) *defsym, DL_FIXUP_VALUE_TYPE *value, |