blob: c4070e9c426019f5ed5a85a50441df77abe814b3 [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>
Florian Westphal33336cd2019-04-26 08:41:06 -070017#include <net/ipv6_frag.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020018
19#include <linux/netfilter_ipv6.h>
20#include <linux/netfilter_bridge.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000021#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020022#include <net/netfilter/nf_conntrack.h>
23#include <net/netfilter/nf_conntrack_helper.h>
24#include <net/netfilter/nf_conntrack_l4proto.h>
25#include <net/netfilter/nf_conntrack_l3proto.h>
26#include <net/netfilter/nf_conntrack_core.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020027#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010028#endif
29#include <net/netfilter/nf_conntrack_zones.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020030#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
31
32static enum ip6_defrag_users nf_ct6_defrag_user(unsigned int hooknum,
33 struct sk_buff *skb)
34{
Daniel Borkmann308ac912015-08-08 21:40:01 +020035 u16 zone_id = NF_CT_DEFAULT_ZONE_ID;
Amerigo Wang07a93622012-10-29 16:23:10 +000036#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Daniel Borkmanndeedb592015-08-14 16:03:39 +020037 if (skb->nfct) {
38 enum ip_conntrack_info ctinfo;
39 const struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
40
41 zone_id = nf_ct_zone_id(nf_ct_zone(ct), CTINFO2DIR(ctinfo));
42 }
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010043#endif
Florian Westphal72b1e5e2015-07-23 16:21:30 +020044 if (nf_bridge_in_prerouting(skb))
Daniel Borkmann308ac912015-08-08 21:40:01 +020045 return IP6_DEFRAG_CONNTRACK_BRIDGE_IN + zone_id;
Florian Westphal72b1e5e2015-07-23 16:21:30 +020046
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020047 if (hooknum == NF_INET_PRE_ROUTING)
Daniel Borkmann308ac912015-08-08 21:40:01 +020048 return IP6_DEFRAG_CONNTRACK_IN + zone_id;
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020049 else
Daniel Borkmann308ac912015-08-08 21:40:01 +020050 return IP6_DEFRAG_CONNTRACK_OUT + zone_id;
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020051}
52
Eric W. Biederman06198b32015-09-18 14:33:06 -050053static unsigned int ipv6_defrag(void *priv,
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020054 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -040055 const struct nf_hook_state *state)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020056{
Florian Westphaldaaa7d62015-11-18 23:32:40 +010057 int err;
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020058
Amerigo Wang07a93622012-10-29 16:23:10 +000059#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020060 /* Previously seen (loopback)? */
61 if (skb->nfct && !nf_ct_is_template((struct nf_conn *)skb->nfct))
62 return NF_ACCEPT;
KOVACS Krisztian2fc72c72011-01-12 20:25:08 +010063#endif
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020064
Florian Westphaldaaa7d62015-11-18 23:32:40 +010065 err = nf_ct_frag6_gather(state->net, skb,
66 nf_ct6_defrag_user(state->hook, skb));
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020067 /* queued */
Florian Westphaldaaa7d62015-11-18 23:32:40 +010068 if (err == -EINPROGRESS)
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020069 return NF_STOLEN;
70
Florian Westphal9b57da02016-11-29 02:17:34 +010071 return err == 0 ? NF_ACCEPT : NF_DROP;
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020072}
73
74static struct nf_hook_ops ipv6_defrag_ops[] = {
75 {
76 .hook = ipv6_defrag,
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020077 .pf = NFPROTO_IPV6,
78 .hooknum = NF_INET_PRE_ROUTING,
79 .priority = NF_IP6_PRI_CONNTRACK_DEFRAG,
80 },
81 {
82 .hook = ipv6_defrag,
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020083 .pf = NFPROTO_IPV6,
84 .hooknum = NF_INET_LOCAL_OUT,
85 .priority = NF_IP6_PRI_CONNTRACK_DEFRAG,
86 },
87};
88
89static int __init nf_defrag_init(void)
90{
91 int ret = 0;
92
93 ret = nf_ct_frag6_init();
94 if (ret < 0) {
95 pr_err("nf_defrag_ipv6: can't initialize frag6.\n");
96 return ret;
97 }
98 ret = nf_register_hooks(ipv6_defrag_ops, ARRAY_SIZE(ipv6_defrag_ops));
99 if (ret < 0) {
100 pr_err("nf_defrag_ipv6: can't register hooks\n");
101 goto cleanup_frag6;
102 }
103 return ret;
104
105cleanup_frag6:
106 nf_ct_frag6_cleanup();
107 return ret;
108
109}
110
111static void __exit nf_defrag_fini(void)
112{
113 nf_unregister_hooks(ipv6_defrag_ops, ARRAY_SIZE(ipv6_defrag_ops));
114 nf_ct_frag6_cleanup();
115}
116
117void nf_defrag_ipv6_enable(void)
118{
119}
120EXPORT_SYMBOL_GPL(nf_defrag_ipv6_enable);
121
122module_init(nf_defrag_init);
123module_exit(nf_defrag_fini);
124
125MODULE_LICENSE("GPL");