summaryrefslogtreecommitdiffstats
path: root/kernel/linux/net/bridge/netfilter/ebt_vlan.c
blob: f7e2c16aacfd7e73112149081a696c7df7c00be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
 *  ebt_vlan kernelspace
 *
 *      Authors:
 *      Bart De Schuymer <bart.de.schuymer@pandora.be>
 *      Nick Fedchik <nick@fedchik.org.ua>
 *
 *      June, 2002
 */

#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_vlan.h>
#include <linux/if_vlan.h>
#include <linux/if_ether.h>
#include <linux/module.h>

static unsigned char debug;
MODULE_PARM (debug, "0-1b");
MODULE_PARM_DESC (debug, "debug=1 is turn on debug messages");

#define MODULE_VERSION "0.2"

static int ebt_filter_vlan (const struct sk_buff *skb,
			    const struct net_device *in,
			    const struct net_device *out,
			    const void *data,
			    unsigned int datalen,
			    const struct ebt_counter *c)
{
	struct ebt_vlan_info *infostuff = (struct ebt_vlan_info *) data;
	struct vlan_ethhdr *vlanethhdr =
	    (struct vlan_ethhdr *) skb->mac.raw;
	unsigned short v_id;
	unsigned short v_prio;
	unsigned short v_TCI;

	/*
	 * Calculate 802.1Q VLAN ID and user_priority from 
	 * Tag Control Information (TCI) field.
	 * Reserved one bit (13) for CFI (Canonical Format Indicator)
	 */
	v_TCI = ntohs (vlanethhdr->h_vlan_TCI);
	v_id = v_TCI & 0xFFF;
	v_prio = v_TCI >> 13;

	/*
	 * Checking VLANs 
	 */
	if (infostuff->bitmask & EBT_VLAN_ID) {	/* Is VLAN ID parsed? */
		if (!((infostuff->id == v_id)
		      ^ !!(infostuff->invflags & EBT_VLAN_ID)))
			return 1;
		if (debug)
			printk (KERN_DEBUG
				"ebt_vlan: matched ID=%s%d (mask=%X)\n",
				(infostuff->
				 invflags & EBT_VLAN_ID) ? "!" : "",
				infostuff->id, infostuff->bitmask);
	}
	/*
	 * Checking User Priority 
	 */
	if (infostuff->bitmask & EBT_VLAN_PRIO) {	/* Is VLAN Prio parsed? */
		if (!((infostuff->prio == v_prio)
		      ^ !!(infostuff->invflags & EBT_VLAN_PRIO)))
			return 1;	/* missed */
		if (debug)
			printk (KERN_DEBUG
				"ebt_vlan: matched Prio=%s%d (mask=%X)\n",
				(infostuff->
				 invflags & EBT_VLAN_PRIO) ? "!" : "",
				infostuff->prio, infostuff->bitmask);
	}
	/*
	 * Checking for Encapsulated proto
	 */
	if (infostuff->bitmask & EBT_VLAN_ENCAP) {	/* Is VLAN Encap parsed? */
		if (!
		    ((infostuff->encap ==
		      vlanethhdr->h_vlan_encapsulated_proto)
		     ^ !!(infostuff->invflags & EBT_VLAN_ENCAP)))
			return 1;	/* missed */
		if (debug)
			printk (KERN_DEBUG
				"ebt_vlan: matched encap=%s%2.4X (mask=%X)\n",
				(infostuff->
				 invflags & EBT_VLAN_ENCAP) ? "!" : "",
				ntohs (infostuff->encap),
				infostuff->bitmask);
	}

	/*
	 * rule matched 
	 */
	return 0;
}

/*
 * ebt_vlan_check() is called when userspace delivers the table to the kernel, 
 * * it is called to check that userspace doesn't give a bad table.
 */
static int ebt_vlan_check (const char *tablename, unsigned int hooknr,
			   const struct ebt_entry *e, void *data,
			   unsigned int datalen)
{
	struct ebt_vlan_info *infostuff = (struct ebt_vlan_info *) data;

	if (datalen != sizeof (struct ebt_vlan_info))
		return -EINVAL;

	if (e->ethproto != __constant_htons (ETH_P_8021Q))
		return -EINVAL;

	if (infostuff->bitmask & ~EBT_VLAN_MASK) {
		return -EINVAL;
	}

	return 0;
}

static struct ebt_match filter_vlan = {
	{NULL, NULL},
	EBT_VLAN_MATCH,
	ebt_filter_vlan,
	ebt_vlan_check,
	NULL,
	THIS_MODULE
};

static int __init init (void)
{
	printk (KERN_INFO
		"ebt_vlan: 802.1Q VLAN matching module for EBTables "
		MODULE_VERSION "\n");
	if (debug)
		printk (KERN_DEBUG
			"ebt_vlan: 802.1Q rule matching debug is on\n");
	return ebt_register_match (&filter_vlan);
}

static void __exit fini (void)
{
	ebt_unregister_match (&filter_vlan);
}

module_init (init);
module_exit (fini);
EXPORT_NO_SYMBOLS;
MODULE_AUTHOR ("Nick Fedchik <nick@fedchik.org.ua>");
MODULE_DESCRIPTION ("802.1Q VLAN matching module for ebtables, v"
		    MODULE_VERSION);
MODULE_LICENSE ("GPL");