ebt_802_3.c 1.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * 802_3
 *
 * Author:
 * Chris Vitale csv@bluetail.com
 *
 * May 2003
8
 *
L
Linus Torvalds 已提交
9
 */
10 11
#include <linux/module.h>
#include <linux/netfilter/x_tables.h>
L
Linus Torvalds 已提交
12 13 14 15 16 17
#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_802_3.h>

static int ebt_filter_802_3(const struct sk_buff *skb, const struct net_device *in,
   const struct net_device *out, const void *data, unsigned int datalen)
{
18 19
	const struct ebt_802_3_info *info = data;
	const struct ebt_802_3_hdr *hdr = ebt_802_3_hdr(skb);
A
Al Viro 已提交
20
	__be16 type = hdr->llc.ui.ctrl & IS_UI ? hdr->llc.ui.type : hdr->llc.ni.type;
L
Linus Torvalds 已提交
21 22

	if (info->bitmask & EBT_802_3_SAP) {
23
		if (FWINV(info->sap != hdr->llc.ui.ssap, EBT_802_3_SAP))
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31
				return EBT_NOMATCH;
		if (FWINV(info->sap != hdr->llc.ui.dsap, EBT_802_3_SAP))
				return EBT_NOMATCH;
	}

	if (info->bitmask & EBT_802_3_TYPE) {
		if (!(hdr->llc.ui.dsap == CHECK_TYPE && hdr->llc.ui.ssap == CHECK_TYPE))
			return EBT_NOMATCH;
32
		if (FWINV(info->type != type, EBT_802_3_TYPE))
L
Linus Torvalds 已提交
33 34 35 36 37 38 39
			return EBT_NOMATCH;
	}

	return EBT_MATCH;
}

static struct ebt_match filter_802_3;
40
static bool ebt_802_3_check(const char *tablename, unsigned int hookmask,
L
Linus Torvalds 已提交
41 42
   const struct ebt_entry *e, void *data, unsigned int datalen)
{
43
	const struct ebt_802_3_info *info = data;
L
Linus Torvalds 已提交
44 45

	if (info->bitmask & ~EBT_802_3_MASK || info->invflags & ~EBT_802_3_MASK)
46
		return false;
L
Linus Torvalds 已提交
47

48
	return true;
L
Linus Torvalds 已提交
49 50
}

51
static struct ebt_match filter_802_3 __read_mostly = {
L
Linus Torvalds 已提交
52 53 54
	.name		= EBT_802_3_MATCH,
	.match		= ebt_filter_802_3,
	.check		= ebt_802_3_check,
55
	.matchsize	= XT_ALIGN(sizeof(struct ebt_802_3_info)),
L
Linus Torvalds 已提交
56 57 58
	.me		= THIS_MODULE,
};

59
static int __init ebt_802_3_init(void)
L
Linus Torvalds 已提交
60 61 62 63
{
	return ebt_register_match(&filter_802_3);
}

64
static void __exit ebt_802_3_fini(void)
L
Linus Torvalds 已提交
65 66 67 68
{
	ebt_unregister_match(&filter_802_3);
}

69 70
module_init(ebt_802_3_init);
module_exit(ebt_802_3_fini);
71
MODULE_DESCRIPTION("Ebtables: DSAP/SSAP field and SNAP type matching");
L
Linus Torvalds 已提交
72
MODULE_LICENSE("GPL");