Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7759db82 authored by Klaus Heinrich Kiwi's avatar Klaus Heinrich Kiwi Committed by Al Viro
Browse files

[AUDIT] Add uid, gid fields to ANOM_PROMISCUOUS message



Changes the ANOM_PROMISCUOUS message to include uid and gid fields,
making it consistent with other AUDIT_ANOM_ messages and in the
format the userspace is expecting.

Signed-off-by: default avatarKlaus Heinrich Kiwi <klausk@br.ibm.com>
Acked-by: default avatarEric Paris <eparis@redhat.com>
parent 320f1b1e
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -2752,12 +2752,14 @@ static void __dev_set_promiscuity(struct net_device *dev, int inc)
		printk(KERN_INFO "device %s %s promiscuous mode\n",
		       dev->name, (dev->flags & IFF_PROMISC) ? "entered" :
							       "left");
		if (audit_enabled)
			audit_log(current->audit_context, GFP_ATOMIC,
				AUDIT_ANOM_PROMISCUOUS,
			"dev=%s prom=%d old_prom=%d auid=%u ses=%u",
				"dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
				dev->name, (dev->flags & IFF_PROMISC),
				(old_flags & IFF_PROMISC),
				audit_get_loginuid(current),
				current->uid, current->gid,
				audit_get_sessionid(current));

		if (dev->change_rx_flags)