Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7759db82774802885f96c250b36c3dfe317e62ff
Commit:     7759db82774802885f96c250b36c3dfe317e62ff
Parent:     320f1b1ed28c601cc152053a2f428a126cb608bc
Author:     Klaus Heinrich Kiwi <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 23 22:57:45 2008 -0500
Committer:  Al Viro <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 14:25:10 2008 -0500

    [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: Klaus Heinrich Kiwi <[EMAIL PROTECTED]>
    Acked-by: Eric Paris <[EMAIL PROTECTED]>
---
 net/core/dev.c |   16 +++++++++-------
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/net/core/dev.c b/net/core/dev.c
index ba075a9..9549417 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2752,13 +2752,15 @@ 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");
-               audit_log(current->audit_context, GFP_ATOMIC,
-                       AUDIT_ANOM_PROMISCUOUS,
-                       "dev=%s prom=%d old_prom=%d auid=%u ses=%u",
-                       dev->name, (dev->flags & IFF_PROMISC),
-                       (old_flags & IFF_PROMISC),
-                       audit_get_loginuid(current),
-                       audit_get_sessionid(current));
+               if (audit_enabled)
+                       audit_log(current->audit_context, GFP_ATOMIC,
+                               AUDIT_ANOM_PROMISCUOUS,
+                               "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)
                        dev->change_rx_flags(dev, IFF_PROMISC);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to