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

#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_nat.h>
#include <linux/netfilter_bridge.h>
#include <linux/skbuff.h>
#include <linux/module.h>
#include <net/sock.h>

static __u8 ebt_target_snat(struct sk_buff **pskb, unsigned int hooknr,
   const struct net_device *in, const struct net_device *out,
   const void *data, unsigned int datalen)
{
	struct ebt_nat_info *infostuff = (struct ebt_nat_info *) data;

	memcpy(((**pskb).mac.ethernet)->h_source, infostuff->mac,
	   ETH_ALEN * sizeof(unsigned char));
	return infostuff->target;
}

static __u8 ebt_target_dnat(struct sk_buff **pskb, unsigned int hooknr,
   const struct net_device *in, const struct net_device *out,
   const void *data, unsigned int datalen)
{
	struct ebt_nat_info *infostuff = (struct ebt_nat_info *) data;

	memcpy(((**pskb).mac.ethernet)->h_dest, infostuff->mac,
	   ETH_ALEN * sizeof(unsigned char));
	return infostuff->target;
}

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

	if (strcmp(tablename, "nat"))
		return -EINVAL;
	if (datalen != sizeof(struct ebt_nat_info))
		return -EINVAL;
	if (hooknr != NF_BR_POST_ROUTING)
		return -EINVAL;
	if (infostuff->target >= NUM_STANDARD_TARGETS)
		return -EINVAL;
	return 0;
}

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

	if ( (strcmp(tablename, "nat") || 
	   (hooknr != NF_BR_PRE_ROUTING && hooknr != NF_BR_LOCAL_OUT)) &&
	   (strcmp(tablename, "broute") || hooknr != NF_BR_BROUTING) )
		return -EINVAL;
	if (datalen != sizeof(struct ebt_nat_info))
		return -EINVAL;
	if (infostuff->target >= NUM_STANDARD_TARGETS)
		return -EINVAL;
	return 0;
}

static struct ebt_target snat =
{
	{NULL, NULL}, EBT_SNAT_TARGET, ebt_target_snat, ebt_target_snat_check,
	NULL, THIS_MODULE
};

static struct ebt_target dnat =
{
	{NULL, NULL}, EBT_DNAT_TARGET, ebt_target_dnat, ebt_target_dnat_check,
	NULL, THIS_MODULE
};

static int __init init(void)
{
	int ret;
	ret = ebt_register_target(&snat);
	if (ret != 0)
		return ret;
	ret = ebt_register_target(&dnat);
	if (ret == 0)
		return 0;
	ebt_unregister_target(&snat);
	return ret;
}

static void __exit fini(void)
{
	ebt_unregister_target(&snat);
	ebt_unregister_target(&dnat);
}

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