aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/filter.c
diff options
context:
space:
mode:
authorPaul LeoNerd Evans <leonerd@leonerd.org.uk>2010-04-22 03:32:22 +0000
committerDavid S. Miller <davem@davemloft.net>2010-04-22 16:05:44 -0700
commit40eaf96271526a9f71030dd1a199ce46c045752e (patch)
tree2921b984a4e1de3d0e13cebf49bc9afcb0551725 /net/core/filter.c
parentaa2ea0586d9dbe56a334d835a43b45e8c2104e77 (diff)
downloadkernel_samsung_smdk4412-40eaf96271526a9f71030dd1a199ce46c045752e.zip
kernel_samsung_smdk4412-40eaf96271526a9f71030dd1a199ce46c045752e.tar.gz
kernel_samsung_smdk4412-40eaf96271526a9f71030dd1a199ce46c045752e.tar.bz2
net: Socket filter ancilliary data access for skb->dev->type
Add an SKF_AD_HATYPE field to the packet ancilliary data area, giving access to skb->dev->type, as reported in the sll_hatype field. When capturing packets on a PF_PACKET/SOCK_RAW socket bound to all interfaces, there doesn't appear to be a way for the filter program to actually find out the underlying hardware type the packet was captured on. This patch adds such ability. This patch also handles the case where skb->dev can be NULL, such as on netlink sockets. Signed-off-by: Paul Evans <leonerd@leonerd.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/filter.c')
-rw-r--r--net/core/filter.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/core/filter.c b/net/core/filter.c
index ff943be..da69fb7 100644
--- a/net/core/filter.c
+++ b/net/core/filter.c
@@ -302,6 +302,8 @@ load_b:
A = skb->pkt_type;
continue;
case SKF_AD_IFINDEX:
+ if (!skb->dev)
+ return 0;
A = skb->dev->ifindex;
continue;
case SKF_AD_MARK:
@@ -310,6 +312,11 @@ load_b:
case SKF_AD_QUEUE:
A = skb->queue_mapping;
continue;
+ case SKF_AD_HATYPE:
+ if (!skb->dev)
+ return 0;
+ A = skb->dev->type;
+ continue;
case SKF_AD_NLATTR: {
struct nlattr *nla;