Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband
[linux-2.6/suspend2-2.6.18.git] / net / netfilter / xt_NOTRACK.c
blob98f4b5363ce8e8e4adcce549cfe63119c24db610
1 /* This is a module which is used for setting up fake conntracks
2 * on packets so that they are not seen by the conntrack/NAT code.
3 */
4 #include <linux/module.h>
5 #include <linux/skbuff.h>
7 #include <linux/netfilter/x_tables.h>
8 #include <net/netfilter/nf_conntrack_compat.h>
10 MODULE_LICENSE("GPL");
11 MODULE_ALIAS("ipt_NOTRACK");
13 static unsigned int
14 target(struct sk_buff **pskb,
15 const struct net_device *in,
16 const struct net_device *out,
17 unsigned int hooknum,
18 const struct xt_target *target,
19 const void *targinfo,
20 void *userinfo)
22 /* Previously seen (loopback)? Ignore. */
23 if ((*pskb)->nfct != NULL)
24 return XT_CONTINUE;
26 /* Attach fake conntrack entry.
27 If there is a real ct entry correspondig to this packet,
28 it'll hang aroun till timing out. We don't deal with it
29 for performance reasons. JK */
30 nf_ct_untrack(*pskb);
31 (*pskb)->nfctinfo = IP_CT_NEW;
32 nf_conntrack_get((*pskb)->nfct);
34 return XT_CONTINUE;
37 static struct xt_target notrack_reg = {
38 .name = "NOTRACK",
39 .target = target,
40 .targetsize = 0,
41 .table = "raw",
42 .family = AF_INET,
43 .me = THIS_MODULE,
46 static struct xt_target notrack6_reg = {
47 .name = "NOTRACK",
48 .target = target,
49 .targetsize = 0,
50 .table = "raw",
51 .family = AF_INET6,
52 .me = THIS_MODULE,
55 static int __init xt_notrack_init(void)
57 int ret;
59 ret = xt_register_target(&notrack_reg);
60 if (ret)
61 return ret;
63 ret = xt_register_target(&notrack6_reg);
64 if (ret)
65 xt_unregister_target(&notrack_reg);
67 return ret;
70 static void __exit xt_notrack_fini(void)
72 xt_unregister_target(&notrack6_reg);
73 xt_unregister_target(&notrack_reg);
76 module_init(xt_notrack_init);
77 module_exit(xt_notrack_fini);