[PATCH] netfilter: Record uid and gid in xt_AUDIT

From: Richard Weinberger
Date: Wed Oct 09 2024 - 16:40:08 EST


When recording audit events for new outgoing connections,
it is helpful to log the user info of the associated socket,
if available.
Therefore, check if the skb has a socket, and if it does,
log the owning fsuid/fsgid.

Signed-off-by: Richard Weinberger <richard@xxxxxx>
---
net/netfilter/xt_AUDIT.c | 27 +++++++++++++++++++++++++--
1 file changed, 25 insertions(+), 2 deletions(-)

diff --git a/net/netfilter/xt_AUDIT.c b/net/netfilter/xt_AUDIT.c
index b6a015aee0cec..d88b5442beaa6 100644
--- a/net/netfilter/xt_AUDIT.c
+++ b/net/netfilter/xt_AUDIT.c
@@ -9,16 +9,19 @@
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/audit.h>
+#include <linux/cred.h>
+#include <linux/file.h>
+#include <linux/if_arp.h>
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/tcp.h>
#include <linux/udp.h>
-#include <linux/if_arp.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter/xt_AUDIT.h>
#include <linux/netfilter_bridge/ebtables.h>
-#include <net/ipv6.h>
#include <net/ip.h>
+#include <net/ipv6.h>
+#include <net/sock.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Thomas Graf <tgraf@xxxxxxxxxx>");
@@ -66,7 +69,9 @@ static bool audit_ip6(struct audit_buffer *ab, struct sk_buff *skb)
static unsigned int
audit_tg(struct sk_buff *skb, const struct xt_action_param *par)
{
+ struct sock *sk = skb->sk;
struct audit_buffer *ab;
+ bool got_uidgid = false;
int fam = -1;

if (audit_enabled == AUDIT_OFF)
@@ -99,6 +104,24 @@ audit_tg(struct sk_buff *skb, const struct xt_action_param *par)
if (fam == -1)
audit_log_format(ab, " saddr=? daddr=? proto=-1");

+ if (sk && sk_fullsock(sk)) {
+ read_lock_bh(&sk->sk_callback_lock);
+ if (sk->sk_socket && sk->sk_socket->file) {
+ const struct file *file = sk->sk_socket->file;
+ const struct cred *cred = file->f_cred;
+
+ audit_log_format(ab, " uid=%u gid=%u",
+ from_kuid(&init_user_ns, cred->fsuid),
+ from_kgid(&init_user_ns, cred->fsgid));
+
+ got_uidgid = true;
+ }
+ read_unlock_bh(&sk->sk_callback_lock);
+ }
+
+ if (!got_uidgid)
+ audit_log_format(ab, " uid=? gid=?");
+
audit_log_end(ab);

errout:
--
2.35.3