diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 12:24:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 12:24:53 -0500 |
commit | 1b9a3917366028cc451a98dd22e3bcd537d4e5c1 (patch) | |
tree | d911058720e0a9aeeaf9f407ccdc6fbf4047f47d /net | |
parent | 3661f00e2097676847deb01add1a0918044bd816 (diff) | |
parent | 71e1c784b24a026a490b3de01541fc5ee14ebc09 (diff) |
Merge branch 'audit.b3' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current
* 'audit.b3' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current: (22 commits)
[PATCH] fix audit_init failure path
[PATCH] EXPORT_SYMBOL patch for audit_log, audit_log_start, audit_log_end and audit_format
[PATCH] sem2mutex: audit_netlink_sem
[PATCH] simplify audit_free() locking
[PATCH] Fix audit operators
[PATCH] promiscuous mode
[PATCH] Add tty to syscall audit records
[PATCH] add/remove rule update
[PATCH] audit string fields interface + consumer
[PATCH] SE Linux audit events
[PATCH] Minor cosmetic cleanups to the code moved into auditfilter.c
[PATCH] Fix audit record filtering with !CONFIG_AUDITSYSCALL
[PATCH] Fix IA64 success/failure indication in syscall auditing.
[PATCH] Miscellaneous bug and warning fixes
[PATCH] Capture selinux subject/object context information.
[PATCH] Exclude messages by message type
[PATCH] Collect more inode information during syscall processing.
[PATCH] Pass dentry, not just name, in fsnotify creation hooks.
[PATCH] Define new range of userspace messages.
[PATCH] Filter rule comparators
...
Fixed trivial conflict in security/selinux/hooks.c
Diffstat (limited to 'net')
-rw-r--r-- | net/core/dev.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index e0489ca731c5..8e1dc3051222 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -114,6 +114,7 @@ | |||
114 | #include <linux/wireless.h> | 114 | #include <linux/wireless.h> |
115 | #include <net/iw_handler.h> | 115 | #include <net/iw_handler.h> |
116 | #include <asm/current.h> | 116 | #include <asm/current.h> |
117 | #include <linux/audit.h> | ||
117 | 118 | ||
118 | /* | 119 | /* |
119 | * The list of packet types we will receive (as opposed to discard) | 120 | * The list of packet types we will receive (as opposed to discard) |
@@ -2147,6 +2148,12 @@ void dev_set_promiscuity(struct net_device *dev, int inc) | |||
2147 | printk(KERN_INFO "device %s %s promiscuous mode\n", | 2148 | printk(KERN_INFO "device %s %s promiscuous mode\n", |
2148 | dev->name, (dev->flags & IFF_PROMISC) ? "entered" : | 2149 | dev->name, (dev->flags & IFF_PROMISC) ? "entered" : |
2149 | "left"); | 2150 | "left"); |
2151 | audit_log(current->audit_context, GFP_ATOMIC, | ||
2152 | AUDIT_ANOM_PROMISCUOUS, | ||
2153 | "dev=%s prom=%d old_prom=%d auid=%u", | ||
2154 | dev->name, (dev->flags & IFF_PROMISC), | ||
2155 | (old_flags & IFF_PROMISC), | ||
2156 | audit_get_loginuid(current->audit_context)); | ||
2150 | } | 2157 | } |
2151 | } | 2158 | } |
2152 | 2159 | ||