blob: 8cc4257a1aded3e8fb4d6e49df3a0bdf1078479c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Description: EBTables 802.1Q match extension kernelspace module.
3 * Authors: Nick Fedchik <nick@fedchik.org.ua>
4 * Bart De Schuymer <bdschuym@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/if_ether.h>
22#include <linux/if_vlan.h>
23#include <linux/module.h>
24#include <linux/moduleparam.h>
Jan Engelhardt18219d32008-10-08 11:35:13 +020025#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/netfilter_bridge/ebtables.h>
27#include <linux/netfilter_bridge/ebt_vlan.h>
28
29static int debug;
30#define MODULE_VERS "0.6"
31
32module_param(debug, int, 0);
33MODULE_PARM_DESC(debug, "debug=1 is turn on debug messages");
34MODULE_AUTHOR("Nick Fedchik <nick@fedchik.org.ua>");
Jan Engelhardtf776c4c2008-01-31 04:00:30 -080035MODULE_DESCRIPTION("Ebtables: 802.1Q VLAN tag match");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_LICENSE("GPL");
37
38
39#define DEBUG_MSG(args...) if (debug) printk (KERN_DEBUG "ebt_vlan: " args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define GET_BITMASK(_BIT_MASK_) info->bitmask & _BIT_MASK_
Jan Engelhardt8cc784e2008-10-08 11:35:13 +020041#define EXIT_ON_MISMATCH(_MATCH_,_MASK_) {if (!((info->_MATCH_ == _MATCH_)^!!(info->invflags & _MASK_))) return false; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jan Engelhardt8cc784e2008-10-08 11:35:13 +020043static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070044ebt_filter_vlan(const struct sk_buff *skb,
45 const struct net_device *in,
46 const struct net_device *out,
47 const void *data, unsigned int datalen)
48{
Jan Engelhardtabfdf1c2008-01-31 03:59:24 -080049 const struct ebt_vlan_info *info = data;
50 const struct vlan_hdr *fp;
51 struct vlan_hdr _frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 unsigned short TCI; /* Whole TCI, given from parsed frame */
54 unsigned short id; /* VLAN ID, given from frame TCI */
55 unsigned char prio; /* user_priority, given from frame TCI */
56 /* VLAN encapsulated Type/Length field, given from orig frame */
Al Viro47c183fa2006-11-14 21:11:51 -080057 __be16 encap;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 fp = skb_header_pointer(skb, 0, sizeof(_frame), &_frame);
60 if (fp == NULL)
Jan Engelhardt8cc784e2008-10-08 11:35:13 +020061 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 /* Tag Control Information (TCI) consists of the following elements:
64 * - User_priority. The user_priority field is three bits in length,
65 * interpreted as a binary number.
66 * - Canonical Format Indicator (CFI). The Canonical Format Indicator
67 * (CFI) is a single bit flag value. Currently ignored.
68 * - VLAN Identifier (VID). The VID is encoded as
69 * an unsigned binary number. */
70 TCI = ntohs(fp->h_vlan_TCI);
71 id = TCI & VLAN_VID_MASK;
72 prio = (TCI >> 13) & 0x7;
73 encap = fp->h_vlan_encapsulated_proto;
74
75 /* Checking VLAN Identifier (VID) */
76 if (GET_BITMASK(EBT_VLAN_ID))
77 EXIT_ON_MISMATCH(id, EBT_VLAN_ID);
78
79 /* Checking user_priority */
80 if (GET_BITMASK(EBT_VLAN_PRIO))
81 EXIT_ON_MISMATCH(prio, EBT_VLAN_PRIO);
82
83 /* Checking Encapsulated Proto (Length/Type) field */
84 if (GET_BITMASK(EBT_VLAN_ENCAP))
85 EXIT_ON_MISMATCH(encap, EBT_VLAN_ENCAP);
86
Jan Engelhardt8cc784e2008-10-08 11:35:13 +020087 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Jan Engelhardt19eda872008-10-08 11:35:13 +020090static bool
Linus Torvalds1da177e2005-04-16 15:20:36 -070091ebt_check_vlan(const char *tablename,
92 unsigned int hooknr,
93 const struct ebt_entry *e, void *data, unsigned int datalen)
94{
Jan Engelhardtabfdf1c2008-01-31 03:59:24 -080095 struct ebt_vlan_info *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 /* Is it 802.1Q frame checked? */
98 if (e->ethproto != htons(ETH_P_8021Q)) {
99 DEBUG_MSG
100 ("passed entry proto %2.4X is not 802.1Q (8100)\n",
101 (unsigned short) ntohs(e->ethproto));
Jan Engelhardt19eda872008-10-08 11:35:13 +0200102 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104
105 /* Check for bitmask range
106 * True if even one bit is out of mask */
107 if (info->bitmask & ~EBT_VLAN_MASK) {
108 DEBUG_MSG("bitmask %2X is out of mask (%2X)\n",
109 info->bitmask, EBT_VLAN_MASK);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200110 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
113 /* Check for inversion flags range */
114 if (info->invflags & ~EBT_VLAN_MASK) {
115 DEBUG_MSG("inversion flags %2X is out of mask (%2X)\n",
116 info->invflags, EBT_VLAN_MASK);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200117 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
120 /* Reserved VLAN ID (VID) values
121 * -----------------------------
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900122 * 0 - The null VLAN ID.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * 1 - The default Port VID (PVID)
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900124 * 0x0FFF - Reserved for implementation use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * if_vlan.h: VLAN_GROUP_ARRAY_LEN 4096. */
126 if (GET_BITMASK(EBT_VLAN_ID)) {
127 if (!!info->id) { /* if id!=0 => check vid range */
128 if (info->id > VLAN_GROUP_ARRAY_LEN) {
129 DEBUG_MSG
130 ("id %d is out of range (1-4096)\n",
131 info->id);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200132 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134 /* Note: This is valid VLAN-tagged frame point.
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900135 * Any value of user_priority are acceptable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * but should be ignored according to 802.1Q Std.
137 * So we just drop the prio flag. */
138 info->bitmask &= ~EBT_VLAN_PRIO;
139 }
140 /* Else, id=0 (null VLAN ID) => user_priority range (any?) */
141 }
142
143 if (GET_BITMASK(EBT_VLAN_PRIO)) {
144 if ((unsigned char) info->prio > 7) {
145 DEBUG_MSG("prio %d is out of range (0-7)\n",
146 info->prio);
Jan Engelhardt19eda872008-10-08 11:35:13 +0200147 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149 }
150 /* Check for encapsulated proto range - it is possible to be
151 * any value for u_short range.
152 * if_ether.h: ETH_ZLEN 60 - Min. octets in frame sans FCS */
153 if (GET_BITMASK(EBT_VLAN_ENCAP)) {
154 if ((unsigned short) ntohs(info->encap) < ETH_ZLEN) {
155 DEBUG_MSG
156 ("encap frame length %d is less than minimal\n",
157 ntohs(info->encap));
Jan Engelhardt19eda872008-10-08 11:35:13 +0200158 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160 }
161
Jan Engelhardt19eda872008-10-08 11:35:13 +0200162 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Jan Engelhardt30083c92008-01-31 04:00:59 -0800165static struct ebt_match filter_vlan __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 .name = EBT_VLAN_MATCH,
167 .match = ebt_filter_vlan,
168 .check = ebt_check_vlan,
Jan Engelhardt18219d32008-10-08 11:35:13 +0200169 .matchsize = XT_ALIGN(sizeof(struct ebt_vlan_info)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .me = THIS_MODULE,
171};
172
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800173static int __init ebt_vlan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 DEBUG_MSG("ebtables 802.1Q extension module v"
176 MODULE_VERS "\n");
177 DEBUG_MSG("module debug=%d\n", !!debug);
178 return ebt_register_match(&filter_vlan);
179}
180
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800181static void __exit ebt_vlan_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 ebt_unregister_match(&filter_vlan);
184}
185
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800186module_init(ebt_vlan_init);
187module_exit(ebt_vlan_fini);