From: Eddie Linder <eddi@guardicore.com>
To: netfilter-devel@vger.kernel.org
Cc: Eddie Linder <eddi@guardicore.com>
Subject: [PATCH 1/1] netfilter: Added vlan matching extension
Date: Tue, 26 May 2015 02:13:43 -0700 [thread overview]
Message-ID: <1432631623-44211-1-git-send-email-eddi@guardicore.com> (raw)
Signed-off-by: Eddie Linder <eddi@guardicore.com>
---
include/uapi/linux/netfilter/Kbuild | 1 +
include/uapi/linux/netfilter/xt_vlan.h | 10 ++++
net/netfilter/Makefile | 1 +
net/netfilter/xt_vlan.c | 88 ++++++++++++++++++++++++++++++++++
4 files changed, 100 insertions(+)
create mode 100644 include/uapi/linux/netfilter/xt_vlan.h
create mode 100644 net/netfilter/xt_vlan.c
diff --git a/include/uapi/linux/netfilter/Kbuild b/include/uapi/linux/netfilter/Kbuild
index 1d973d2..2ca36db 100644
--- a/include/uapi/linux/netfilter/Kbuild
+++ b/include/uapi/linux/netfilter/Kbuild
@@ -85,3 +85,4 @@ header-y += xt_tcpmss.h
header-y += xt_tcpudp.h
header-y += xt_time.h
header-y += xt_u32.h
+header-y += xt_vlan.h
diff --git a/include/uapi/linux/netfilter/xt_vlan.h b/include/uapi/linux/netfilter/xt_vlan.h
new file mode 100644
index 0000000..71e8089
--- /dev/null
+++ b/include/uapi/linux/netfilter/xt_vlan.h
@@ -0,0 +1,10 @@
+#ifndef _XT_VLAN_H
+#define _XT_VLAN_H
+
+
+struct xt_vlan_info {
+ __u16 vlan_id;
+ __u8 vlan_pcp;
+ __u8 invert;
+};
+#endif /*_XT_VLAN_H */
diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
index a87d8b8..37ecfb0 100644
--- a/net/netfilter/Makefile
+++ b/net/netfilter/Makefile
@@ -169,6 +169,7 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_STRING) += xt_string.o
obj-$(CONFIG_NETFILTER_XT_MATCH_TCPMSS) += xt_tcpmss.o
obj-$(CONFIG_NETFILTER_XT_MATCH_TIME) += xt_time.o
obj-$(CONFIG_NETFILTER_XT_MATCH_U32) += xt_u32.o
+obj-$(CONFIG_NETFILTER_XT_MATCH_VLAN) += xt_vlan.o
# ipset
obj-$(CONFIG_IP_SET) += ipset/
diff --git a/net/netfilter/xt_vlan.c b/net/netfilter/xt_vlan.c
new file mode 100644
index 0000000..1441eed
--- /dev/null
+++ b/net/netfilter/xt_vlan.c
@@ -0,0 +1,88 @@
+/* Kernel module to match VLAN tag parameters.
+ * (C) 2015 Eddie Linder <eddi@guardicore.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/module.h>
+#include <linux/skbuff.h>
+#include <linux/if_vlan.h>
+
+#include <linux/netfilter_ipv4.h>
+#include <linux/netfilter_ipv6.h>
+#include <linux/netfilter/xt_vlan.h>
+#include <linux/netfilter/x_tables.h>
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Eddie Linder <eddi@guardicore.com>");
+MODULE_DESCRIPTION("Xtables: VLAN tag match");
+MODULE_ALIAS("ipt_vlan");
+MODULE_ALIAS("ip6t_vlan");
+
+static bool parse_vlan(const struct sk_buff *skb, u16 *vlan_tci)
+{
+ struct vlan_hdr *vhdr;
+
+ if (skb->data - VLAN_HLEN < skb->head)
+ return false;
+ vhdr = (struct vlan_hdr *)(skb->data - VLAN_HLEN);
+ *vlan_tci = ntohs(vhdr->h_vlan_TCI);
+ return true;
+}
+
+static bool vlan_mt(const struct sk_buff *skb, struct xt_action_param *par)
+{
+ const struct xt_vlan_info *info = par->matchinfo;
+ u16 vlan_tci = ~VLAN_TAG_PRESENT;
+ bool ret;
+
+ if (skb_vlan_tag_present(skb)) {
+ vlan_tci = skb_vlan_tag_get(skb);
+ } else {
+ if (unlikely(skb->len < VLAN_ETH_HLEN))
+ return false;
+ if (skb->protocol != htons(ETH_P_8021Q))
+ return false;
+ if (unlikely(!parse_vlan(skb, &vlan_tci)))
+ return false;
+ }
+
+ if ((vlan_tci & VLAN_VID_MASK) == info->vlan_id)
+ ret = true;
+
+ ret ^= info->invert;
+
+ if (ret && info->vlan_pcp) {
+ unsigned char vlan_pcp =
+ (vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
+
+ ret &= (vlan_pcp == info->vlan_pcp);
+ }
+
+ return ret;
+}
+
+static struct xt_match vlan_mt_reg __read_mostly = {
+ .name = "vlan",
+ .revision = 0,
+ .family = NFPROTO_UNSPEC,
+ .match = vlan_mt,
+ .matchsize = sizeof(struct xt_vlan_info),
+ .me = THIS_MODULE,
+};
+
+static int __init vlan_mt_init(void)
+{
+ return xt_register_match(&vlan_mt_reg);
+}
+
+static void __exit vlan_mt_exit(void)
+{
+ xt_unregister_match(&vlan_mt_reg);
+}
+
+module_init(vlan_mt_init);
+module_exit(vlan_mt_exit);
+
--
1.9.1
next reply other threads:[~2015-05-26 13:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-26 9:13 Eddie Linder [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-05-25 20:37 [PATCH 1/1] netfilter: Added vlan matching extension Eddie Linder
2015-05-25 21:51 ` Florian Westphal
2015-05-26 14:24 ` Eddi Linder
2015-05-27 12:35 ` Pablo Neira Ayuso
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=1432631623-44211-1-git-send-email-eddi@guardicore.com \
--to=eddi@guardicore.com \
--cc=netfilter-devel@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;
as well as URLs for NNTP newsgroup(s).