allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / bridge / netfilter / ebt_redirect.c
blob88afc34d1dac6a2bef3a91673324aa3cb8accf05
1 /*
2 * ebt_redirect
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
7 * April, 2002
9 */
11 #include <linux/netfilter.h>
12 #include <linux/netfilter_bridge/ebtables.h>
13 #include <linux/netfilter_bridge/ebt_redirect.h>
14 #include <linux/module.h>
15 #include <net/sock.h>
16 #include "../br_private.h"
18 static int ebt_target_redirect(struct sk_buff *skb, unsigned int hooknr,
19 const struct net_device *in, const struct net_device *out,
20 const void *data, unsigned int datalen)
22 struct ebt_redirect_info *info = (struct ebt_redirect_info *)data;
24 if (!skb_make_writable(skb, 0))
25 return EBT_DROP;
27 if (hooknr != NF_BR_BROUTING)
28 memcpy(eth_hdr(skb)->h_dest,
29 in->br_port->br->dev->dev_addr, ETH_ALEN);
30 else
31 memcpy(eth_hdr(skb)->h_dest, in->dev_addr, ETH_ALEN);
32 skb->pkt_type = PACKET_HOST;
33 return info->target;
36 static int ebt_target_redirect_check(const char *tablename, unsigned int hookmask,
37 const struct ebt_entry *e, void *data, unsigned int datalen)
39 struct ebt_redirect_info *info = (struct ebt_redirect_info *)data;
41 if (datalen != EBT_ALIGN(sizeof(struct ebt_redirect_info)))
42 return -EINVAL;
43 if (BASE_CHAIN && info->target == EBT_RETURN)
44 return -EINVAL;
45 CLEAR_BASE_CHAIN_BIT;
46 if ( (strcmp(tablename, "nat") || hookmask & ~(1 << NF_BR_PRE_ROUTING)) &&
47 (strcmp(tablename, "broute") || hookmask & ~(1 << NF_BR_BROUTING)) )
48 return -EINVAL;
49 if (INVALID_TARGET)
50 return -EINVAL;
51 return 0;
54 static struct ebt_target redirect_target =
56 .name = EBT_REDIRECT_TARGET,
57 .target = ebt_target_redirect,
58 .check = ebt_target_redirect_check,
59 .me = THIS_MODULE,
62 static int __init ebt_redirect_init(void)
64 return ebt_register_target(&redirect_target);
67 static void __exit ebt_redirect_fini(void)
69 ebt_unregister_target(&redirect_target);
72 module_init(ebt_redirect_init);
73 module_exit(ebt_redirect_fini);
74 MODULE_LICENSE("GPL");