summaryrefslogtreecommitdiffstats
path: root/kernel/linux/net/bridge/netfilter/ebt_ip.c
blob: c34b1b5359d9335331b35009310df3d5618aa3cd (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
/*
 *  ebt_ip
 *
 *	Authors:
 *	Bart De Schuymer <bart.de.schuymer@pandora.be>
 *
 *  April, 2002
 *
 */

#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_ip.h>
#include <linux/ip.h>
#include <linux/module.h>

#define FWINV2(bool,invflg) ((bool) ^ !!(infostuff->invflags & invflg))
static int ebt_filter_ip(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_ip_info *infostuff = (struct ebt_ip_info *) data;

	if (infostuff->bitmask & EBT_IP_TOS &&
	   FWINV2(infostuff->tos != ((*skb).nh.iph)->tos, EBT_IP_TOS))
		return 1;
	if (infostuff->bitmask & EBT_IP_PROTO && FWINV2(infostuff->protocol !=
	   ((*skb).nh.iph)->protocol, EBT_IP_PROTO))
		return 1;
	if (infostuff->bitmask & EBT_IP_SOURCE &&
	   FWINV2((((*skb).nh.iph)->saddr & infostuff->smsk) !=
	   infostuff->saddr, EBT_IP_SOURCE))
		return 1;
	if ((infostuff->bitmask & EBT_IP_DEST) &&
	   FWINV2((((*skb).nh.iph)->daddr & infostuff->dmsk) !=
	   infostuff->daddr, EBT_IP_DEST))
		return 1;
	return 0;
}

static int ebt_ip_check(const char *tablename, unsigned int hooknr,
   const struct ebt_entry *e, void *data, unsigned int datalen)
{
	struct ebt_ip_info *infostuff = (struct ebt_ip_info *) data;

	if (datalen != sizeof(struct ebt_ip_info)) {
		return -EINVAL;
	}
	if (e->bitmask & (EBT_NOPROTO | EBT_802_3) || 
	    e->ethproto != __constant_htons(ETH_P_IP) ||
	    e->invflags & EBT_IPROTO)
	{
		return -EINVAL;
	}
	if (infostuff->bitmask & ~EBT_IP_MASK) {
		return -EINVAL;
	}
	return 0;
}

static struct ebt_match filter_ip =
{
	{NULL, NULL}, EBT_IP_MATCH, ebt_filter_ip, ebt_ip_check, NULL,
	THIS_MODULE
};

static int __init init(void)
{
	return ebt_register_match(&filter_ip);
}

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

module_init(init);
module_exit(fini);
EXPORT_NO_SYMBOLS;
MODULE_LICENSE("GPL");