ebt_snat.c 2.2 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 ebt_target_snat(struct sk_buff *skb, unsigned int hooknr,
L
Linus Torvalds 已提交
20 21 22
   const struct net_device *in, const struct net_device *out,
   const void *data, unsigned int datalen)
{
23
	const struct ebt_nat_info *info = data;
L
Linus Torvalds 已提交
24

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

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

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

46
static bool ebt_target_snat_check(const char *tablename, unsigned int hookmask,
L
Linus Torvalds 已提交
47 48
   const struct ebt_entry *e, void *data, unsigned int datalen)
{
49
	const struct ebt_nat_info *info = data;
50
	int tmp;
L
Linus Torvalds 已提交
51

52 53
	tmp = info->target | ~EBT_VERDICT_BITS;
	if (BASE_CHAIN && tmp == EBT_RETURN)
54
		return false;
L
Linus Torvalds 已提交
55 56
	CLEAR_BASE_CHAIN_BIT;
	if (strcmp(tablename, "nat"))
57
		return false;
L
Linus Torvalds 已提交
58
	if (hookmask & ~(1 << NF_BR_POST_ROUTING))
59
		return false;
60 61

	if (tmp < -NUM_STANDARD_TARGETS || tmp >= 0)
62
		return false;
63 64
	tmp = info->target | EBT_VERDICT_BITS;
	if ((tmp & ~NAT_ARP_BIT) != ~NAT_ARP_BIT)
65 66
		return false;
	return true;
L
Linus Torvalds 已提交
67 68
}

69
static struct ebt_target snat __read_mostly = {
L
Linus Torvalds 已提交
70
	.name		= EBT_SNAT_TARGET,
71 72
	.revision	= 0,
	.family		= NFPROTO_BRIDGE,
L
Linus Torvalds 已提交
73 74
	.target		= ebt_target_snat,
	.check		= ebt_target_snat_check,
75
	.targetsize	= XT_ALIGN(sizeof(struct ebt_nat_info)),
L
Linus Torvalds 已提交
76 77 78
	.me		= THIS_MODULE,
};

79
static int __init ebt_snat_init(void)
L
Linus Torvalds 已提交
80 81 82 83
{
	return ebt_register_target(&snat);
}

84
static void __exit ebt_snat_fini(void)
L
Linus Torvalds 已提交
85 86 87 88
{
	ebt_unregister_target(&snat);
}

89 90
module_init(ebt_snat_init);
module_exit(ebt_snat_fini);
91
MODULE_DESCRIPTION("Ebtables: Source MAC address translation");
L
Linus Torvalds 已提交
92
MODULE_LICENSE("GPL");