mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
audit/stable-6.17 PR 20250725
-----BEGIN PGP SIGNATURE----- iQJIBAABCgAyFiEES0KozwfymdVUl37v6iDy2pc3iXMFAmiD0Y4UHHBhdWxAcGF1 bC1tb29yZS5jb20ACgkQ6iDy2pc3iXNc3RAAnLjNithviO7pal68D+4oZDvAhh7S B1zH3hS9mcRZtDa0ZwdzxlzZm0qacpZZgqha3vAPCnke/nYlnCJa8Iz6XzRYw1Dy dHVa9W/F53KZgUIaI3FIuMN9aaO8bjZFJLHMtjZyL+DjmIoOfDBE1b1wdgqDFOI6 bx2czQaRP/3dP9xFRlTxDviMJXBajonvUZaOOTd/2kHaHRNSSjEja1zE0E4CVKTd 6eMT3Oj1wjVJWIVgGd5BkuXTa1aSWNu2qYrigL8572VeIllv9yZQvJEaypmmicTD XL7aAdYYitTPOL9KGxANmCOfKfan2JYDPqWBhm+UjlKXq4PYbw0zgEYniJ6wmYkq LDKOc+Is3QbkPCxbIxu11pugcIUlI8Kzy43bd2SwrpVqXAB378eFqmUkLEohSxaj TVnW/r+GMh3dx8Rsig0XenhlKvJLKJrPHHRgJ2Kob4aPf2917VX/HRngqwJ6V8C4 p4jhcky8f5/XwcBmZBt8xYuHDY7QCe1U9dwYjjrm6szzDnPrMv1lupxn55C/Bton wdlNHk/2199aguWkSAchJlPXE64eam+G88KGjxxCW5jQmbQU8myOrqipf1lxavyp sDlve5f1mhgeV6ZoZzJkiRUKSz5VvMKoiook8hfyj3rRtzh1Kz5J0ojFaPH46keA ixmmkpn6Ydw7yV8= =fLqm -----END PGP SIGNATURE----- Merge tag 'audit-pr-20250725' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit Pull audit update from Paul Moore: "A single audit patch that restores logging of an audit event in the module load failure case" * tag 'audit-pr-20250725' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit: audit,module: restore audit logging in load failure case
This commit is contained in:
commit
e833f7dfe3
|
|
@ -417,7 +417,7 @@ extern int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
|
|||
extern void __audit_log_capset(const struct cred *new, const struct cred *old);
|
||||
extern void __audit_mmap_fd(int fd, int flags);
|
||||
extern void __audit_openat2_how(struct open_how *how);
|
||||
extern void __audit_log_kern_module(char *name);
|
||||
extern void __audit_log_kern_module(const char *name);
|
||||
extern void __audit_fanotify(u32 response, struct fanotify_response_info_audit_rule *friar);
|
||||
extern void __audit_tk_injoffset(struct timespec64 offset);
|
||||
extern void __audit_ntp_log(const struct audit_ntp_data *ad);
|
||||
|
|
@ -519,7 +519,7 @@ static inline void audit_openat2_how(struct open_how *how)
|
|||
__audit_openat2_how(how);
|
||||
}
|
||||
|
||||
static inline void audit_log_kern_module(char *name)
|
||||
static inline void audit_log_kern_module(const char *name)
|
||||
{
|
||||
if (!audit_dummy_context())
|
||||
__audit_log_kern_module(name);
|
||||
|
|
@ -677,9 +677,8 @@ static inline void audit_mmap_fd(int fd, int flags)
|
|||
static inline void audit_openat2_how(struct open_how *how)
|
||||
{ }
|
||||
|
||||
static inline void audit_log_kern_module(char *name)
|
||||
{
|
||||
}
|
||||
static inline void audit_log_kern_module(const char *name)
|
||||
{ }
|
||||
|
||||
static inline void audit_fanotify(u32 response, struct fanotify_response_info_audit_rule *friar)
|
||||
{ }
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ struct audit_context {
|
|||
int argc;
|
||||
} execve;
|
||||
struct {
|
||||
char *name;
|
||||
const char *name;
|
||||
} module;
|
||||
struct {
|
||||
struct audit_ntp_data ntp_data;
|
||||
|
|
|
|||
|
|
@ -2864,7 +2864,7 @@ void __audit_openat2_how(struct open_how *how)
|
|||
context->type = AUDIT_OPENAT2;
|
||||
}
|
||||
|
||||
void __audit_log_kern_module(char *name)
|
||||
void __audit_log_kern_module(const char *name)
|
||||
{
|
||||
struct audit_context *context = audit_context();
|
||||
|
||||
|
|
|
|||
|
|
@ -3373,7 +3373,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);
|
||||
|
|
@ -3537,8 +3537,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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user