From: Eric Dumazet <eric.dumazet@gmail.com>
To: Ani Sinha <ani@aristanetworks.com>
Cc: netdev@vger.kernel.org
Subject: Re: bpf filter : support for vlan tag
Date: Tue, 16 Oct 2012 08:46:38 +0200 [thread overview]
Message-ID: <1350369998.3954.563.camel@edumazet-glaptop> (raw)
In-Reply-To: <CAOxq_8MqMatY2+GA6+mHjj5V=Xe7Y8BmuX4r6cz5nChU5C1Vzw@mail.gmail.com>
On Mon, 2012-10-15 at 19:10 -0700, Ani Sinha wrote:
> Hi :
>
> I was looking at the kernel side implementation of the BPF filter. I
> do not see any code that supports filtering of packets based on
> provided vlan tag information from the skbuff. This will make it
> impossible to provide any filter to tcpdump that will filter packets
> based on the tag information if libpcap uses the kernel filter.
>
> Any help will be much appreciated.
Right, we need a basic support, using a new ancillary definition.
Is the following patch enough to address your need, or do you also need
access to vlan_tx_tag_present() ?
diff --git a/include/linux/filter.h b/include/linux/filter.h
index 24d251f..0218e41 100644
--- a/include/linux/filter.h
+++ b/include/linux/filter.h
@@ -123,6 +123,7 @@ enum {
BPF_S_ANC_CPU,
BPF_S_ANC_ALU_XOR_X,
BPF_S_ANC_SECCOMP_LD_W,
+ BPF_S_ANC_VLAN_TAG,
};
#endif /* __LINUX_FILTER_H__ */
diff --git a/net/core/filter.c b/net/core/filter.c
index 3d92ebb..de4a5dc 100644
--- a/net/core/filter.c
+++ b/net/core/filter.c
@@ -341,6 +341,9 @@ load_b:
case BPF_S_ANC_CPU:
A = raw_smp_processor_id();
continue;
+ case BPF_S_ANC_VLAN_TAG:
+ A = vlan_tx_tag_get(skb);
+ continue;
case BPF_S_ANC_NLATTR: {
struct nlattr *nla;
@@ -600,6 +603,7 @@ int sk_chk_filter(struct sock_filter *filter, unsigned int flen)
ANCILLARY(RXHASH);
ANCILLARY(CPU);
ANCILLARY(ALU_XOR_X);
+ ANCILLARY(VLAN_TAG);
}
}
ftest->code = code;
next prev parent reply other threads:[~2012-10-16 6:46 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-16 2:10 bpf filter : support for vlan tag Ani Sinha
2012-10-16 6:46 ` Eric Dumazet [this message]
2012-10-16 11:00 ` Daniel Borkmann
2012-10-16 11:28 ` Eric Dumazet
2012-10-16 11:34 ` Daniel Borkmann
2012-10-16 16:54 ` Ani Sinha
2012-10-16 17:06 ` Eric Dumazet
2012-10-19 18:32 ` Ani Sinha
2012-10-19 20:53 ` Daniel Borkmann
2012-10-19 21:02 ` Ani Sinha
2012-10-20 11:42 ` Daniel Borkmann
2012-10-26 8:05 ` Daniel Borkmann
2012-10-26 8:16 ` Eric Dumazet
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1350369998.3954.563.camel@edumazet-glaptop \
--to=eric.dumazet@gmail.com \
--cc=ani@aristanetworks.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox