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 59
	CLEAR_BASE_CHAIN_BIT;
	if (strcmp(tablename, "nat"))
60
		return false;
L
Linus Torvalds 已提交
61
	if (hookmask & ~(1 << NF_BR_POST_ROUTING))
62
		return false;
63 64

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

72 73
static struct xt_target ebt_snat_tg_reg __read_mostly = {
	.name		= "snat",
74 75
	.revision	= 0,
	.family		= NFPROTO_BRIDGE,
76 77
	.target		= ebt_snat_tg,
	.checkentry	= ebt_snat_tg_check,
78
	.targetsize	= XT_ALIGN(sizeof(struct ebt_nat_info)),
L
Linus Torvalds 已提交
79 80 81
	.me		= THIS_MODULE,
};

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

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

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