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 20 21 22
static unsigned int
ebt_snat_tg(struct sk_buff *skb, const struct net_device *in,
	    const struct net_device *out, unsigned int hook_nr,
	    const struct xt_target *target, const void *data)
L
Linus Torvalds 已提交
23
{
24
	const struct ebt_nat_info *info = data;
L
Linus Torvalds 已提交
25

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

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

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

47 48 49 50
static bool
ebt_snat_tg_check(const char *tablename, const void *e,
		  const struct xt_target *target, void *data,
		  unsigned int hookmask)
L
Linus Torvalds 已提交
51
{
52
	const struct ebt_nat_info *info = data;
53
	int tmp;
L
Linus Torvalds 已提交
54

55 56
	tmp = info->target | ~EBT_VERDICT_BITS;
	if (BASE_CHAIN && tmp == EBT_RETURN)
57
		return false;
L
Linus Torvalds 已提交
58
	CLEAR_BASE_CHAIN_BIT;
59 60

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

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

80
static int __init ebt_snat_init(void)
L
Linus Torvalds 已提交
81
{
82
	return xt_register_target(&ebt_snat_tg_reg);
L
Linus Torvalds 已提交
83 84
}

85
static void __exit ebt_snat_fini(void)
L
Linus Torvalds 已提交
86
{
87
	xt_unregister_target(&ebt_snat_tg_reg);
L
Linus Torvalds 已提交
88 89
}

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