blob: 742815518b0fd5ea78ec4205bfee76a8a804c88d [file] [log] [blame]
KOVACS Krisztian73e40222008-10-08 11:35:12 +02001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/types.h>
10#include <linux/ip.h>
11#include <linux/netfilter.h>
12#include <linux/module.h>
13#include <linux/skbuff.h>
14#include <net/route.h>
15#include <net/ip.h>
16
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010017#include <linux/netfilter_bridge.h>
KOVACS Krisztian73e40222008-10-08 11:35:12 +020018#include <linux/netfilter_ipv4.h>
19#include <net/netfilter/ipv4/nf_defrag_ipv4.h>
Patrick McHardy37ee3d52010-02-18 19:04:44 +010020#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Florian Westphal76780372010-02-08 15:39:16 +010021#include <net/netfilter/nf_conntrack.h>
Patrick McHardy37ee3d52010-02-18 19:04:44 +010022#endif
23#include <net/netfilter/nf_conntrack_zones.h>
KOVACS Krisztian73e40222008-10-08 11:35:12 +020024
25/* Returns new sk_buff, or NULL */
26static int nf_ct_ipv4_gather_frags(struct sk_buff *skb, u_int32_t user)
27{
28 int err;
29
30 skb_orphan(skb);
31
32 local_bh_disable();
33 err = ip_defrag(skb, user);
34 local_bh_enable();
35
36 if (!err)
37 ip_send_check(ip_hdr(skb));
38
39 return err;
40}
41
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010042static enum ip_defrag_users nf_ct_defrag_user(unsigned int hooknum,
43 struct sk_buff *skb)
44{
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010045 u16 zone = NF_CT_DEFAULT_ZONE;
46
Patrick McHardy37ee3d52010-02-18 19:04:44 +010047#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010048 if (skb->nfct)
49 zone = nf_ct_zone((struct nf_conn *)skb->nfct);
Patrick McHardy37ee3d52010-02-18 19:04:44 +010050#endif
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010051
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010052#ifdef CONFIG_BRIDGE_NETFILTER
53 if (skb->nf_bridge &&
54 skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010055 return IP_DEFRAG_CONNTRACK_BRIDGE_IN + zone;
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010056#endif
57 if (hooknum == NF_INET_PRE_ROUTING)
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010058 return IP_DEFRAG_CONNTRACK_IN + zone;
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010059 else
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010060 return IP_DEFRAG_CONNTRACK_OUT + zone;
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010061}
62
KOVACS Krisztian73e40222008-10-08 11:35:12 +020063static unsigned int ipv4_conntrack_defrag(unsigned int hooknum,
64 struct sk_buff *skb,
65 const struct net_device *in,
66 const struct net_device *out,
67 int (*okfn)(struct sk_buff *))
68{
Jiri Olsacbdd7692010-09-21 21:17:34 +000069 struct sock *sk = skb->sk;
Jiri Olsa7b2ff182010-06-15 01:07:31 +000070 struct inet_sock *inet = inet_sk(skb->sk);
71
Jiri Olsacbdd7692010-09-21 21:17:34 +000072 if (sk && (sk->sk_family == PF_INET) &&
73 inet->nodefrag)
Jiri Olsa7b2ff182010-06-15 01:07:31 +000074 return NF_ACCEPT;
75
KOVACS Krisztian73e40222008-10-08 11:35:12 +020076#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
Patrick McHardy38f7ac32008-10-14 11:56:59 -070077#if !defined(CONFIG_NF_NAT) && !defined(CONFIG_NF_NAT_MODULE)
KOVACS Krisztian73e40222008-10-08 11:35:12 +020078 /* Previously seen (loopback)? Ignore. Do this before
79 fragment check. */
Patrick McHardyb2a15a62010-02-03 14:13:03 +010080 if (skb->nfct && !nf_ct_is_template((struct nf_conn *)skb->nfct))
KOVACS Krisztian73e40222008-10-08 11:35:12 +020081 return NF_ACCEPT;
82#endif
Patrick McHardy38f7ac32008-10-14 11:56:59 -070083#endif
KOVACS Krisztian73e40222008-10-08 11:35:12 +020084 /* Gather fragments. */
Paul Gortmaker56f8a752011-06-21 20:33:34 -070085 if (ip_is_fragment(ip_hdr(skb))) {
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010086 enum ip_defrag_users user = nf_ct_defrag_user(hooknum, skb);
87 if (nf_ct_ipv4_gather_frags(skb, user))
KOVACS Krisztian73e40222008-10-08 11:35:12 +020088 return NF_STOLEN;
89 }
90 return NF_ACCEPT;
91}
92
93static struct nf_hook_ops ipv4_defrag_ops[] = {
94 {
95 .hook = ipv4_conntrack_defrag,
96 .owner = THIS_MODULE,
Alban Crequy89a48e32012-05-14 03:56:37 +000097 .pf = NFPROTO_IPV4,
KOVACS Krisztian73e40222008-10-08 11:35:12 +020098 .hooknum = NF_INET_PRE_ROUTING,
99 .priority = NF_IP_PRI_CONNTRACK_DEFRAG,
100 },
101 {
102 .hook = ipv4_conntrack_defrag,
103 .owner = THIS_MODULE,
Alban Crequy89a48e32012-05-14 03:56:37 +0000104 .pf = NFPROTO_IPV4,
KOVACS Krisztian73e40222008-10-08 11:35:12 +0200105 .hooknum = NF_INET_LOCAL_OUT,
106 .priority = NF_IP_PRI_CONNTRACK_DEFRAG,
107 },
108};
109
110static int __init nf_defrag_init(void)
111{
112 return nf_register_hooks(ipv4_defrag_ops, ARRAY_SIZE(ipv4_defrag_ops));
113}
114
115static void __exit nf_defrag_fini(void)
116{
117 nf_unregister_hooks(ipv4_defrag_ops, ARRAY_SIZE(ipv4_defrag_ops));
118}
119
120void nf_defrag_ipv4_enable(void)
121{
122}
123EXPORT_SYMBOL_GPL(nf_defrag_ipv4_enable);
124
125module_init(nf_defrag_init);
126module_exit(nf_defrag_fini);
127
128MODULE_LICENSE("GPL");