audit,module: restore audit logging in load failure case

The move of the module sanity check to earlier skipped the audit logging
call in the case of failure and to a place where the previously used
context is unavailable.

Add an audit logging call for the module loading failure case and get
the module name when possible.

Link: https://issues.redhat.com/browse/RHEL-52839
Fixes: 02da2cbab4 ("module: move check_modinfo() early to early_mod_check()")
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Reviewed-by: Petr Pavlu <petr.pavlu@suse.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
Richard Guy Briggs 2025-06-13 15:58:00 -04:00 committed by Paul Moore
parent 19272b37aa
commit ae1ae11fb2
4 changed files with 10 additions and 9 deletions

View file

@ -3368,7 +3368,7 @@ static int load_module(struct load_info *info, const char __user *uargs,
module_allocated = true;
audit_log_kern_module(mod->name);
audit_log_kern_module(info->name);
/* Reserve our place in the list. */
err = add_unformed_module(mod);
@ -3532,8 +3532,10 @@ static int load_module(struct load_info *info, const char __user *uargs,
* failures once the proper module was allocated and
* before that.
*/
if (!module_allocated)
if (!module_allocated) {
audit_log_kern_module(info->name ? info->name : "?");
mod_stat_bump_becoming(info, flags);
}
free_copy(info, flags);
return err;
}