ebt_snat.c 2.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 *  ebt_snat
 *
 *	Authors:
 *	Bart De Schuymer <bdschuym@pandora.be>
 *
 *  June, 2002
 *
 */
#include <linux/module.h>
#include <net/sock.h>
12 13
#include <linux/if_arp.h>
#include <net/arp.h>
14 15 16 17
#include <linux/netfilter.h>
#include <linux/netfilter/x_tables.h>
#include <linux/netfilter_bridge/ebtables.h>
#include <linux/netfilter_bridge/ebt_nat.h>
L
Linus Torvalds 已提交
18

19
static unsigned int
20
ebt_snat_tg(struct sk_buff *skb, const struct xt_target_param *par)
L
Linus Torvalds 已提交
21
{
22
	const struct ebt_nat_info *info = par->targinfo;
L
Linus Torvalds 已提交
23

24
	if (!skb_make_writable(skb, 0))
25
		return EBT_DROP;
L
Linus Torvalds 已提交
26

27
	memcpy(eth_hdr(skb)->h_source, info->mac, ETH_ALEN);
28
	if (!(info->target & NAT_ARP_BIT) &&
29
	    eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) {
30 31
		const struct arphdr *ap;
		struct arphdr _ah;
32

33
		ap = skb_header_pointer(skb, 0, sizeof(_ah), &_ah);
34 35 36 37
		if (ap == NULL)
			return EBT_DROP;
		if (ap->ar_hln != ETH_ALEN)
			goto out;
38
		if (skb_store_bits(skb, sizeof(_ah), info->mac,ETH_ALEN))
39 40 41 42
			return EBT_DROP;
	}
out:
	return info->target | ~EBT_VERDICT_BITS;
L
Linus Torvalds 已提交
43 44
}

45
static bool ebt_snat_tg_check(const struct xt_tgchk_param *par)
L
Linus Torvalds 已提交
46
{
47
	const struct ebt_nat_info *info = par->targinfo;
48
	int tmp;
L
Linus Torvalds 已提交
49

50 51
	tmp = info->target | ~EBT_VERDICT_BITS;
	if (BASE_CHAIN && tmp == EBT_RETURN)
52
		return false;
53 54

	if (tmp < -NUM_STANDARD_TARGETS || tmp >= 0)
55
		return false;
56 57
	tmp = info->target | EBT_VERDICT_BITS;
	if ((tmp & ~NAT_ARP_BIT) != ~NAT_ARP_BIT)
58 59
		return false;
	return true;
L
Linus Torvalds 已提交
60 61
}

62 63
static struct xt_target ebt_snat_tg_reg __read_mostly = {
	.name		= "snat",
64 65
	.revision	= 0,
	.family		= NFPROTO_BRIDGE,
66 67
	.table		= "nat",
	.hooks		= (1 << NF_BR_NUMHOOKS) | (1 << NF_BR_POST_ROUTING),
68 69
	.target		= ebt_snat_tg,
	.checkentry	= ebt_snat_tg_check,
70
	.targetsize	= XT_ALIGN(sizeof(struct ebt_nat_info)),
L
Linus Torvalds 已提交
71 72 73
	.me		= THIS_MODULE,
};

74
static int __init ebt_snat_init(void)
L
Linus Torvalds 已提交
75
{
76
	return xt_register_target(&ebt_snat_tg_reg);
L
Linus Torvalds 已提交
77 78
}

79
static void __exit ebt_snat_fini(void)
L
Linus Torvalds 已提交
80
{
81
	xt_unregister_target(&ebt_snat_tg_reg);
L
Linus Torvalds 已提交
82 83
}

84 85
module_init(ebt_snat_init);
module_exit(ebt_snat_fini);
86
MODULE_DESCRIPTION("Ebtables: Source MAC address translation");
L
Linus Torvalds 已提交
87
MODULE_LICENSE("GPL");