From: Ricardo Robaina <rrobaina@redhat.com>
To: audit@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Ricardo Robaina <rrobaina@redhat.com>,
paul@paul-moore.com, eparis@redhat.com, rgb@redhat.com
Subject: [PATCH v1] audit: fix suffixed '/' filename matching in __audit_inode_child()
Date: Tue, 5 Nov 2024 09:37:39 -0300 [thread overview]
Message-ID: <20241105123807.1257948-1-rrobaina@redhat.com> (raw)
When the user specifies a directory to delete with the suffix '/',
the audit record fails to collect the filename, resulting in the
following logs:
type=PATH msg=audit(10/30/2024 14:11:17.796:6304) : item=2 name=(null)
type=PATH msg=audit(10/30/2024 14:11:17.796:6304) : item=1 name=(null)
It happens because the value of the variables dname, and n->name->name
in __audit_inode_child() differ only by the suffix '/'. This commit
treats this corner case by cleaning the input and passing the correct
filename to audit_compare_dname_path().
Steps to reproduce the issue:
# auditctl -w /tmp
$ mkdir /tmp/foo
$ rm -r /tmp/foo/ or rmdir /tmp/foo/
# ausearch -i | grep PATH | tail -3
This patch is based on a GitHub patch/PR by user @hqh2010.
https://github.com/linux-audit/audit-kernel/pull/148
Signed-off-by: Ricardo Robaina <rrobaina@redhat.com>
---
kernel/auditsc.c | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 6f0d6fb6523f..d4fbac6b71a8 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -2419,7 +2419,8 @@ void __audit_inode_child(struct inode *parent,
struct audit_names *n, *found_parent = NULL, *found_child = NULL;
struct audit_entry *e;
struct list_head *list = &audit_filter_list[AUDIT_FILTER_FS];
- int i;
+ int i, dlen, nlen;
+ char *fn = NULL;
if (context->context == AUDIT_CTX_UNUSED)
return;
@@ -2443,6 +2444,7 @@ void __audit_inode_child(struct inode *parent,
if (inode)
handle_one(inode);
+ dlen = strlen(dname->name);
/* look for a parent entry first */
list_for_each_entry(n, &context->names_list, list) {
if (!n->name ||
@@ -2450,15 +2452,27 @@ void __audit_inode_child(struct inode *parent,
n->type != AUDIT_TYPE_UNKNOWN))
continue;
+ /* special case, entry name has the sufix "/" */
+ nlen = strlen(n->name->name);
+ if (dname->name[dlen - 1] != '/' && n->name->name[nlen - 1] == '/') {
+ fn = kmalloc(PATH_MAX, GFP_KERNEL);
+ if (!fn) {
+ audit_panic("out of memory in __audit_inode_child()");
+ return;
+ }
+ strscpy(fn, n->name->name, nlen);
+ }
+
if (n->ino == parent->i_ino && n->dev == parent->i_sb->s_dev &&
!audit_compare_dname_path(dname,
- n->name->name, n->name_len)) {
+ fn ? fn : n->name->name, n->name_len)) {
if (n->type == AUDIT_TYPE_UNKNOWN)
n->type = AUDIT_TYPE_PARENT;
found_parent = n;
break;
}
}
+ kfree(fn);
cond_resched();
--
2.47.0
next reply other threads:[~2024-11-05 12:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-05 12:37 Ricardo Robaina [this message]
2024-11-11 22:06 ` [PATCH v1] audit: fix suffixed '/' filename matching in __audit_inode_child() Paul Moore
2024-11-12 22:06 ` Richard Guy Briggs
2024-11-13 23:04 ` Al Viro
2024-11-14 3:23 ` Paul Moore
2024-11-14 4:09 ` Al Viro
2024-11-27 5:42 ` Paul Moore
2024-12-04 13:36 ` Ricardo Robaina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241105123807.1257948-1-rrobaina@redhat.com \
--to=rrobaina@redhat.com \
--cc=audit@vger.kernel.org \
--cc=eparis@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=paul@paul-moore.com \
--cc=rgb@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox