提交 da5645a2 编写于 作者: P Paul Moore 提交者: James Morris

SELinux: Only store the network interface's ifindex

Instead of storing the packet's network interface name store the ifindex.  This
allows us to defer the need to lookup the net_device structure until the audit
record is generated meaning that in the majority of cases we never need to
bother with this at all.
Signed-off-by: NPaul Moore <paul.moore@hp.com>
Signed-off-by: NJames Morris <jmorris@namei.org>
上级 e8bfdb9d
...@@ -661,9 +661,18 @@ void avc_audit(u32 ssid, u32 tsid, ...@@ -661,9 +661,18 @@ void avc_audit(u32 ssid, u32 tsid,
"daddr", "dest"); "daddr", "dest");
break; break;
} }
if (a->u.net.netif) if (a->u.net.netif > 0) {
audit_log_format(ab, " netif=%s", struct net_device *dev;
a->u.net.netif);
/* NOTE: we always use init's namespace */
dev = dev_get_by_index(&init_net,
a->u.net.netif);
if (dev) {
audit_log_format(ab, " netif=%s",
dev->name);
dev_put(dev);
}
}
break; break;
} }
} }
......
...@@ -3928,7 +3928,7 @@ static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb) ...@@ -3928,7 +3928,7 @@ static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
family = PF_INET; family = PF_INET;
AVC_AUDIT_DATA_INIT(&ad, NET); AVC_AUDIT_DATA_INIT(&ad, NET);
ad.u.net.netif = skb->dev ? skb->dev->name : "[unknown]"; ad.u.net.netif = skb->iif;
ad.u.net.family = family; ad.u.net.family = family;
err = selinux_parse_skb(skb, &ad, &addrp, &len, 1, NULL); err = selinux_parse_skb(skb, &ad, &addrp, &len, 1, NULL);
...@@ -4259,7 +4259,7 @@ static unsigned int selinux_ip_postroute_last(unsigned int hooknum, ...@@ -4259,7 +4259,7 @@ static unsigned int selinux_ip_postroute_last(unsigned int hooknum,
sksec = sk->sk_security; sksec = sk->sk_security;
AVC_AUDIT_DATA_INIT(&ad, NET); AVC_AUDIT_DATA_INIT(&ad, NET);
ad.u.net.netif = dev->name; ad.u.net.netif = dev->ifindex;
ad.u.net.family = family; ad.u.net.family = family;
err = selinux_parse_skb(skb, &ad, &addrp, &len, 0, &proto); err = selinux_parse_skb(skb, &ad, &addrp, &len, 0, &proto);
......
...@@ -51,7 +51,7 @@ struct avc_audit_data { ...@@ -51,7 +51,7 @@ struct avc_audit_data {
struct inode *inode; struct inode *inode;
} fs; } fs;
struct { struct {
char *netif; int netif;
struct sock *sk; struct sock *sk;
u16 family; u16 family;
__be16 dport; __be16 dport;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册