about summary refs log tree commit diff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-07-19 15:47:51 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2021-12-28 08:40:38 -0300
commitaee6e90f93e285016b6cd9c8bd00402c19ba271b (patch)
tree59b3ec4e7ee6ce0d678fdad39fc1db8db73d9903 /elf/dl-load.c
parentae49f218daca0b7cab27764da4081e6509bc7345 (diff)
downloadglibc-aee6e90f93e285016b6cd9c8bd00402c19ba271b.tar.gz
glibc-aee6e90f93e285016b6cd9c8bd00402c19ba271b.tar.xz
glibc-aee6e90f93e285016b6cd9c8bd00402c19ba271b.zip
elf: Add _dl_audit_objopen
It consolidates the code required to call la_objopen 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 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 2a1443387f..8d9df424b2 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -1516,22 +1516,8 @@ cannot enable executable stack as shared object requires");
 
 #ifdef SHARED
   /* Auditing checkpoint: we have a new object.  */
-  if (__glibc_unlikely (GLRO(dl_naudit) > 0)
-      && !GL(dl_ns)[l->l_ns]._ns_loaded->l_auditing)
-    {
-      struct audit_ifaces *afct = GLRO(dl_audit);
-      for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
-	{
-	  if (afct->objopen != NULL)
-	    {
-	      struct auditstate *state = link_map_audit_state (l, cnt);
-	      state->bindflags = afct->objopen (l, nsid, &state->cookie);
-	      l->l_audit_any_plt |= state->bindflags != 0;
-	    }
-
-	  afct = afct->next;
-	}
-    }
+  if (!GL(dl_ns)[l->l_ns]._ns_loaded->l_auditing)
+    _dl_audit_objopen (l, nsid);
 #endif
 
   return l;