Commit 40eaf962 authored by Paul LeoNerd Evans's avatar Paul LeoNerd Evans Committed by David S. Miller

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: default avatarPaul Evans <leonerd@leonerd.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent aa2ea058
...@@ -123,7 +123,8 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */ ...@@ -123,7 +123,8 @@ struct sock_fprog { /* Required for SO_ATTACH_FILTER. */
#define SKF_AD_NLATTR_NEST 16 #define SKF_AD_NLATTR_NEST 16
#define SKF_AD_MARK 20 #define SKF_AD_MARK 20
#define SKF_AD_QUEUE 24 #define SKF_AD_QUEUE 24
#define SKF_AD_MAX 28 #define SKF_AD_HATYPE 28
#define SKF_AD_MAX 32
#define SKF_NET_OFF (-0x100000) #define SKF_NET_OFF (-0x100000)
#define SKF_LL_OFF (-0x200000) #define SKF_LL_OFF (-0x200000)
......
...@@ -302,6 +302,8 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int ...@@ -302,6 +302,8 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int
A = skb->pkt_type; A = skb->pkt_type;
continue; continue;
case SKF_AD_IFINDEX: case SKF_AD_IFINDEX:
if (!skb->dev)
return 0;
A = skb->dev->ifindex; A = skb->dev->ifindex;
continue; continue;
case SKF_AD_MARK: case SKF_AD_MARK:
...@@ -310,6 +312,11 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int ...@@ -310,6 +312,11 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int
case SKF_AD_QUEUE: case SKF_AD_QUEUE:
A = skb->queue_mapping; A = skb->queue_mapping;
continue; continue;
case SKF_AD_HATYPE:
if (!skb->dev)
return 0;
A = skb->dev->type;
continue;
case SKF_AD_NLATTR: { case SKF_AD_NLATTR: {
struct nlattr *nla; struct nlattr *nla;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment