blob: a45db0b4785c1e89f523ce28cb8e4231fbbc85b9 [file] [log] [blame]
Balazs Scheidlere97c3e22010-10-21 16:03:43 +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/ipv6.h>
11#include <linux/in6.h>
12#include <linux/netfilter.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/icmp.h>
16#include <linux/sysctl.h>
17#include <net/ipv6.h>
18#include <net/inet_frag.h>
19
20#include <linux/netfilter_ipv6.h>
21#include <linux/netfilter_bridge.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000022#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020023#include <net/netfilter/nf_conntrack.h>
24#include <net/netfilter/nf_conntrack_helper.h>
25#include <net/netfilter/nf_conntrack_l4proto.h>
26#include <net/netfilter/nf_conntrack_l3proto.h>
27#include <net/netfilter/nf_conntrack_core.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020028#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010029#endif
30#include <net/netfilter/nf_conntrack_zones.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020031#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
32
33static enum ip6_defrag_users nf_ct6_defrag_user(unsigned int hooknum,
34 struct sk_buff *skb)
35{
36 u16 zone = NF_CT_DEFAULT_ZONE;
37
Amerigo Wang07a93622012-10-29 16:23:10 +000038#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020039 if (skb->nfct)
40 zone = nf_ct_zone((struct nf_conn *)skb->nfct);
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010041#endif
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020042
Pablo Neira Ayuso1109a902014-10-01 11:19:17 +020043#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020044 if (skb->nf_bridge &&
45 skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)
46 return IP6_DEFRAG_CONNTRACK_BRIDGE_IN + zone;
47#endif
48 if (hooknum == NF_INET_PRE_ROUTING)
49 return IP6_DEFRAG_CONNTRACK_IN + zone;
50 else
51 return IP6_DEFRAG_CONNTRACK_OUT + zone;
52
53}
54
Patrick McHardy795aa6e2013-10-10 09:21:55 +020055static unsigned int ipv6_defrag(const struct nf_hook_ops *ops,
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020056 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -040057 const struct nf_hook_state *state)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020058{
59 struct sk_buff *reasm;
60
Amerigo Wang07a93622012-10-29 16:23:10 +000061#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020062 /* Previously seen (loopback)? */
63 if (skb->nfct && !nf_ct_is_template((struct nf_conn *)skb->nfct))
64 return NF_ACCEPT;
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010065#endif
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020066
Patrick McHardy795aa6e2013-10-10 09:21:55 +020067 reasm = nf_ct_frag6_gather(skb, nf_ct6_defrag_user(ops->hooknum, skb));
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020068 /* queued */
69 if (reasm == NULL)
70 return NF_STOLEN;
71
Lucas De Marchi25985ed2011-03-30 22:57:33 -030072 /* error occurred or not fragmented */
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020073 if (reasm == skb)
74 return NF_ACCEPT;
75
Jiri Pirko6aafeef2013-11-06 17:52:20 +010076 nf_ct_frag6_consume_orig(reasm);
77
David Miller7026b1d2015-04-05 22:19:04 -040078 NF_HOOK_THRESH(NFPROTO_IPV6, ops->hooknum, state->sk, reasm,
David S. Miller238e54c2015-04-03 20:32:56 -040079 state->in, state->out,
80 state->okfn, NF_IP6_PRI_CONNTRACK_DEFRAG + 1);
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020081
82 return NF_STOLEN;
83}
84
85static struct nf_hook_ops ipv6_defrag_ops[] = {
86 {
87 .hook = ipv6_defrag,
88 .owner = THIS_MODULE,
89 .pf = NFPROTO_IPV6,
90 .hooknum = NF_INET_PRE_ROUTING,
91 .priority = NF_IP6_PRI_CONNTRACK_DEFRAG,
92 },
93 {
94 .hook = ipv6_defrag,
95 .owner = THIS_MODULE,
96 .pf = NFPROTO_IPV6,
97 .hooknum = NF_INET_LOCAL_OUT,
98 .priority = NF_IP6_PRI_CONNTRACK_DEFRAG,
99 },
100};
101
102static int __init nf_defrag_init(void)
103{
104 int ret = 0;
105
106 ret = nf_ct_frag6_init();
107 if (ret < 0) {
108 pr_err("nf_defrag_ipv6: can't initialize frag6.\n");
109 return ret;
110 }
111 ret = nf_register_hooks(ipv6_defrag_ops, ARRAY_SIZE(ipv6_defrag_ops));
112 if (ret < 0) {
113 pr_err("nf_defrag_ipv6: can't register hooks\n");
114 goto cleanup_frag6;
115 }
116 return ret;
117
118cleanup_frag6:
119 nf_ct_frag6_cleanup();
120 return ret;
121
122}
123
124static void __exit nf_defrag_fini(void)
125{
126 nf_unregister_hooks(ipv6_defrag_ops, ARRAY_SIZE(ipv6_defrag_ops));
127 nf_ct_frag6_cleanup();
128}
129
130void nf_defrag_ipv6_enable(void)
131{
132}
133EXPORT_SYMBOL_GPL(nf_defrag_ipv6_enable);
134
135module_init(nf_defrag_init);
136module_exit(nf_defrag_fini);
137
138MODULE_LICENSE("GPL");