blob: 521ddca876f865276056eeef7d52fe17ca858cec [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001/*
2 * Copyright (C)2004 USAGI/WIDE Project
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 * Author:
9 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080010 */
11
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080012#include <linux/types.h>
13#include <linux/ipv6.h>
14#include <linux/in6.h>
15#include <linux/netfilter.h>
16#include <linux/module.h>
17#include <linux/skbuff.h>
18#include <linux/icmp.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080019#include <net/ipv6.h>
Pavel Emelyanov04128f22007-10-15 02:33:45 -070020#include <net/inet_frag.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080021
Patrick McHardy8fa9ff62009-12-15 16:59:59 +010022#include <linux/netfilter_bridge.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080023#include <linux/netfilter_ipv6.h>
24#include <net/netfilter/nf_conntrack.h>
25#include <net/netfilter/nf_conntrack_helper.h>
Martin Josefsson605dcad2006-11-29 02:35:06 +010026#include <net/netfilter/nf_conntrack_l4proto.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080027#include <net/netfilter/nf_conntrack_l3proto.h>
28#include <net/netfilter/nf_conntrack_core.h>
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010029#include <net/netfilter/nf_conntrack_zones.h>
Christoph Paasch9d2493f2009-03-16 15:15:35 +010030#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
Balazs Scheidlere97c3e22010-10-21 16:03:43 +020031#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
Patrick McHardy74f7a652009-08-25 15:33:08 +020032#include <net/netfilter/nf_log.h>
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080033
Jan Engelhardt8ce84392008-04-14 11:15:52 +020034static bool ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
35 struct nf_conntrack_tuple *tuple)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080036{
Jan Engelhardt32948582008-01-31 04:53:24 -080037 const u_int32_t *ap;
38 u_int32_t _addrs[8];
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039
40 ap = skb_header_pointer(skb, nhoff + offsetof(struct ipv6hdr, saddr),
41 sizeof(_addrs), _addrs);
42 if (ap == NULL)
Jan Engelhardt8ce84392008-04-14 11:15:52 +020043 return false;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080044
45 memcpy(tuple->src.u3.ip6, ap, sizeof(tuple->src.u3.ip6));
46 memcpy(tuple->dst.u3.ip6, ap + 4, sizeof(tuple->dst.u3.ip6));
47
Jan Engelhardt8ce84392008-04-14 11:15:52 +020048 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080049}
50
Jan Engelhardt8ce84392008-04-14 11:15:52 +020051static bool ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,
52 const struct nf_conntrack_tuple *orig)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080053{
54 memcpy(tuple->src.u3.ip6, orig->dst.u3.ip6, sizeof(tuple->src.u3.ip6));
55 memcpy(tuple->dst.u3.ip6, orig->src.u3.ip6, sizeof(tuple->dst.u3.ip6));
56
Jan Engelhardt8ce84392008-04-14 11:15:52 +020057 return true;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080058}
59
60static int ipv6_print_tuple(struct seq_file *s,
61 const struct nf_conntrack_tuple *tuple)
62{
Harvey Harrison5b095d9892008-10-29 12:52:50 -070063 return seq_printf(s, "src=%pI6 dst=%pI6 ",
Harvey Harrison0c6ce782008-10-28 16:09:23 -070064 tuple->src.u3.ip6, tuple->dst.u3.ip6);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080065}
66
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080067/*
68 * Based on ipv6_skip_exthdr() in net/ipv6/exthdr.c
69 *
70 * This function parses (probably truncated) exthdr set "hdr"
71 * of length "len". "nexthdrp" initially points to some place,
72 * where type of the first header can be found.
73 *
74 * It skips all well-known exthdrs, and returns pointer to the start
75 * of unparsable area i.e. the first header with unknown type.
76 * if success, *nexthdr is updated by type/protocol of this header.
77 *
78 * NOTES: - it may return pointer pointing beyond end of packet,
79 * if the last recognized header is truncated in the middle.
80 * - if packet is truncated, so that all parsed headers are skipped,
81 * it returns -1.
82 * - if packet is fragmented, return pointer of the fragment header.
83 * - ESP is unparsable for now and considered like
84 * normal payload protocol.
85 * - Note also special handling of AUTH header. Thanks to IPsec wizards.
86 */
87
Adrian Bunk1a3a2062007-07-30 18:04:57 -070088static int nf_ct_ipv6_skip_exthdr(const struct sk_buff *skb, int start,
89 u8 *nexthdrp, int len)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080090{
91 u8 nexthdr = *nexthdrp;
92
93 while (ipv6_ext_hdr(nexthdr)) {
94 struct ipv6_opt_hdr hdr;
95 int hdrlen;
96
97 if (len < (int)sizeof(struct ipv6_opt_hdr))
98 return -1;
99 if (nexthdr == NEXTHDR_NONE)
100 break;
101 if (nexthdr == NEXTHDR_FRAGMENT)
102 break;
103 if (skb_copy_bits(skb, start, &hdr, sizeof(hdr)))
104 BUG();
105 if (nexthdr == NEXTHDR_AUTH)
106 hdrlen = (hdr.hdrlen+2)<<2;
107 else
108 hdrlen = ipv6_optlen(&hdr);
109
110 nexthdr = hdr.nexthdr;
111 len -= hdrlen;
112 start += hdrlen;
113 }
114
115 *nexthdrp = nexthdr;
116 return start;
117}
118
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700119static int ipv6_get_l4proto(const struct sk_buff *skb, unsigned int nhoff,
120 unsigned int *dataoff, u_int8_t *protonum)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800121{
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700122 unsigned int extoff = nhoff + sizeof(struct ipv6hdr);
123 unsigned char pnum;
124 int protoff;
125
126 if (skb_copy_bits(skb, nhoff + offsetof(struct ipv6hdr, nexthdr),
127 &pnum, sizeof(pnum)) != 0) {
128 pr_debug("ip6_conntrack_core: can't get nexthdr\n");
129 return -NF_ACCEPT;
130 }
131 protoff = nf_ct_ipv6_skip_exthdr(skb, extoff, &pnum, skb->len - extoff);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800132 /*
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700133 * (protoff == skb->len) mean that the packet doesn't have no data
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800134 * except of IPv6 & ext headers. but it's tracked anyway. - YK
135 */
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700136 if ((protoff < 0) || (protoff > skb->len)) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700137 pr_debug("ip6_conntrack_core: can't find proto in pkt\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800138 return -NF_ACCEPT;
139 }
140
141 *dataoff = protoff;
142 *protonum = pnum;
143 return NF_ACCEPT;
144}
145
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200146static unsigned int ipv6_helper(unsigned int hooknum,
147 struct sk_buff *skb,
148 const struct net_device *in,
149 const struct net_device *out,
150 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800151{
152 struct nf_conn *ct;
Jan Engelhardt32948582008-01-31 04:53:24 -0800153 const struct nf_conn_help *help;
154 const struct nf_conntrack_helper *helper;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800155 enum ip_conntrack_info ctinfo;
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200156 unsigned int ret;
157 __be16 frag_off;
158 int protoff;
159 u8 nexthdr;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800160
161 /* This is where we call the helper: as the packet goes out. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700162 ct = nf_ct_get(skb, &ctinfo);
Eric Dumazetfb048832011-05-19 15:44:27 +0200163 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200164 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800165
Harald Weltedc808fe2006-03-20 17:56:32 -0800166 help = nfct_help(ct);
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700167 if (!help)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200168 return NF_ACCEPT;
Patrick McHarrdy3c158f72007-06-05 12:55:27 -0700169 /* rcu_read_lock()ed by nf_hook_slow */
170 helper = rcu_dereference(help->helper);
171 if (!helper)
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200172 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800173
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200174 nexthdr = ipv6_hdr(skb)->nexthdr;
175 protoff = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr,
176 &frag_off);
177 if (protoff < 0 || (frag_off & htons(~0x7)) != 0) {
Patrick McHardy0d537782007-07-07 22:39:38 -0700178 pr_debug("proto header not found\n");
Harald Weltedc808fe2006-03-20 17:56:32 -0800179 return NF_ACCEPT;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180 }
181
Herbert Xu3db05fe2007-10-15 00:53:15 -0700182 ret = helper->help(skb, protoff, ct, ctinfo);
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200183 if (ret != NF_ACCEPT && (ret & NF_VERDICT_MASK) != NF_QUEUE) {
Patrick McHardy74f7a652009-08-25 15:33:08 +0200184 nf_log_packet(NFPROTO_IPV6, hooknum, skb, in, out, NULL,
185 "nf_ct_%s: dropping packet", helper->name);
Patrick McHardy74f7a652009-08-25 15:33:08 +0200186 }
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200187 return ret;
188}
189
190static unsigned int ipv6_confirm(unsigned int hooknum,
191 struct sk_buff *skb,
192 const struct net_device *in,
193 const struct net_device *out,
194 int (*okfn)(struct sk_buff *))
195{
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800196 /* We've seen it coming out the other side: confirm it */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700197 return nf_conntrack_confirm(skb);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800198}
199
Alexey Dobriyana702a652008-10-08 11:35:04 +0200200static unsigned int __ipv6_conntrack_in(struct net *net,
201 unsigned int hooknum,
202 struct sk_buff *skb,
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200203 const struct net_device *in,
204 const struct net_device *out,
Alexey Dobriyana702a652008-10-08 11:35:04 +0200205 int (*okfn)(struct sk_buff *))
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800206{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700207 struct sk_buff *reasm = skb->nfct_reasm;
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200208 const struct nf_conn_help *help;
209 struct nf_conn *ct;
210 enum ip_conntrack_info ctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800211
212 /* This packet is fragmented and has reassembled packet. */
213 if (reasm) {
214 /* Reassembled packet isn't parsed yet ? */
215 if (!reasm->nfct) {
216 unsigned int ret;
217
Alexey Dobriyana702a652008-10-08 11:35:04 +0200218 ret = nf_conntrack_in(net, PF_INET6, hooknum, reasm);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800219 if (ret != NF_ACCEPT)
220 return ret;
221 }
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200222
223 /* Conntrack helpers need the entire reassembled packet in the
224 * POST_ROUTING hook.
225 */
226 ct = nf_ct_get(reasm, &ctinfo);
227 if (ct != NULL && !nf_ct_is_untracked(ct)) {
228 help = nfct_help(ct);
229 if (help && help->helper) {
230 nf_conntrack_get_reasm(skb);
231 NF_HOOK_THRESH(NFPROTO_IPV6, hooknum, reasm,
232 (struct net_device *)in,
233 (struct net_device *)out,
234 okfn, NF_IP6_PRI_CONNTRACK + 1);
235 return NF_DROP_ERR(-ECANCELED);
236 }
237 }
238
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800239 nf_conntrack_get(reasm->nfct);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700240 skb->nfct = reasm->nfct;
241 skb->nfctinfo = reasm->nfctinfo;
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800242 return NF_ACCEPT;
243 }
244
Alexey Dobriyana702a652008-10-08 11:35:04 +0200245 return nf_conntrack_in(net, PF_INET6, hooknum, skb);
246}
247
248static unsigned int ipv6_conntrack_in(unsigned int hooknum,
249 struct sk_buff *skb,
250 const struct net_device *in,
251 const struct net_device *out,
252 int (*okfn)(struct sk_buff *))
253{
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200254 return __ipv6_conntrack_in(dev_net(in), hooknum, skb, in, out, okfn);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800255}
256
257static unsigned int ipv6_conntrack_local(unsigned int hooknum,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700258 struct sk_buff *skb,
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800259 const struct net_device *in,
260 const struct net_device *out,
261 int (*okfn)(struct sk_buff *))
262{
263 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700264 if (skb->len < sizeof(struct ipv6hdr)) {
Joe Perchese87cc472012-05-13 21:56:26 +0000265 net_notice_ratelimited("ipv6_conntrack_local: packet too short\n");
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800266 return NF_ACCEPT;
267 }
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200268 return __ipv6_conntrack_in(dev_net(out), hooknum, skb, in, out, okfn);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800269}
270
Patrick McHardy19994142007-12-05 01:23:00 -0800271static struct nf_hook_ops ipv6_conntrack_ops[] __read_mostly = {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700272 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700273 .hook = ipv6_conntrack_in,
274 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200275 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800276 .hooknum = NF_INET_PRE_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700277 .priority = NF_IP6_PRI_CONNTRACK,
278 },
279 {
280 .hook = ipv6_conntrack_local,
281 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200282 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800283 .hooknum = NF_INET_LOCAL_OUT,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700284 .priority = NF_IP6_PRI_CONNTRACK,
285 },
286 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200287 .hook = ipv6_helper,
288 .owner = THIS_MODULE,
289 .pf = NFPROTO_IPV6,
290 .hooknum = NF_INET_POST_ROUTING,
291 .priority = NF_IP6_PRI_CONNTRACK_HELPER,
292 },
293 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700294 .hook = ipv6_confirm,
295 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200296 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800297 .hooknum = NF_INET_POST_ROUTING,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700298 .priority = NF_IP6_PRI_LAST,
299 },
300 {
Pablo Neira Ayuso12f7a502012-05-13 21:44:54 +0200301 .hook = ipv6_helper,
302 .owner = THIS_MODULE,
303 .pf = NFPROTO_IPV6,
304 .hooknum = NF_INET_LOCAL_IN,
305 .priority = NF_IP6_PRI_CONNTRACK_HELPER,
306 },
307 {
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700308 .hook = ipv6_confirm,
309 .owner = THIS_MODULE,
Jan Engelhardt57750a22009-06-13 06:22:18 +0200310 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800311 .hooknum = NF_INET_LOCAL_IN,
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700312 .priority = NF_IP6_PRI_LAST-1,
313 },
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800314};
315
Patrick McHardye281db5c2007-03-04 15:57:25 -0800316#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800317
318#include <linux/netfilter/nfnetlink.h>
319#include <linux/netfilter/nfnetlink_conntrack.h>
320
Patrick McHardyfdf70832007-09-28 14:37:41 -0700321static int ipv6_tuple_to_nlattr(struct sk_buff *skb,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800322 const struct nf_conntrack_tuple *tuple)
323{
David S. Millere549a6b2012-04-01 20:28:52 -0400324 if (nla_put(skb, CTA_IP_V6_SRC, sizeof(u_int32_t) * 4,
325 &tuple->src.u3.ip6) ||
326 nla_put(skb, CTA_IP_V6_DST, sizeof(u_int32_t) * 4,
327 &tuple->dst.u3.ip6))
328 goto nla_put_failure;
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800329 return 0;
330
Patrick McHardydf6fb862007-09-28 14:37:03 -0700331nla_put_failure:
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800332 return -1;
333}
334
Patrick McHardyf73e9242007-09-28 14:39:55 -0700335static const struct nla_policy ipv6_nla_policy[CTA_IP_MAX+1] = {
336 [CTA_IP_V6_SRC] = { .len = sizeof(u_int32_t)*4 },
337 [CTA_IP_V6_DST] = { .len = sizeof(u_int32_t)*4 },
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800338};
339
Patrick McHardyfdf70832007-09-28 14:37:41 -0700340static int ipv6_nlattr_to_tuple(struct nlattr *tb[],
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800341 struct nf_conntrack_tuple *t)
342{
Patrick McHardydf6fb862007-09-28 14:37:03 -0700343 if (!tb[CTA_IP_V6_SRC] || !tb[CTA_IP_V6_DST])
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800344 return -EINVAL;
345
Patrick McHardydf6fb862007-09-28 14:37:03 -0700346 memcpy(&t->src.u3.ip6, nla_data(tb[CTA_IP_V6_SRC]),
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800347 sizeof(u_int32_t) * 4);
Patrick McHardydf6fb862007-09-28 14:37:03 -0700348 memcpy(&t->dst.u3.ip6, nla_data(tb[CTA_IP_V6_DST]),
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800349 sizeof(u_int32_t) * 4);
350
351 return 0;
352}
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100353
354static int ipv6_nlattr_tuple_size(void)
355{
356 return nla_policy_len(ipv6_nla_policy, CTA_IP_MAX + 1);
357}
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800358#endif
359
Patrick McHardy61075af2007-07-14 20:48:19 -0700360struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6 __read_mostly = {
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800361 .l3proto = PF_INET6,
362 .name = "ipv6",
363 .pkt_to_tuple = ipv6_pkt_to_tuple,
364 .invert_tuple = ipv6_invert_tuple,
365 .print_tuple = ipv6_print_tuple,
Yasuyuki Kozakaiffc30692007-07-14 20:44:50 -0700366 .get_l4proto = ipv6_get_l4proto,
Patrick McHardye281db5c2007-03-04 15:57:25 -0800367#if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
Patrick McHardyfdf70832007-09-28 14:37:41 -0700368 .tuple_to_nlattr = ipv6_tuple_to_nlattr,
Holger Eitzenbergera400c302009-03-25 21:53:39 +0100369 .nlattr_tuple_size = ipv6_nlattr_tuple_size,
Patrick McHardyfdf70832007-09-28 14:37:41 -0700370 .nlattr_to_tuple = ipv6_nlattr_to_tuple,
Patrick McHardyf73e9242007-09-28 14:39:55 -0700371 .nla_policy = ipv6_nla_policy,
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800372#endif
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800373 .me = THIS_MODULE,
374};
375
Patrick McHardy32292a72006-04-06 14:11:30 -0700376MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET6));
377MODULE_LICENSE("GPL");
378MODULE_AUTHOR("Yasuyuki KOZAKAI @USAGI <yasuyuki.kozakai@toshiba.co.jp>");
379
Gao fenga7c439d2012-05-28 21:04:17 +0000380static int ipv6_net_init(struct net *net)
381{
382 int ret = 0;
383
384 ret = nf_conntrack_l4proto_register(net,
385 &nf_conntrack_l4proto_tcp6);
386 if (ret < 0) {
387 printk(KERN_ERR "nf_conntrack_l4proto_tcp6: protocol register failed\n");
388 goto out;
389 }
390 ret = nf_conntrack_l4proto_register(net,
391 &nf_conntrack_l4proto_udp6);
392 if (ret < 0) {
393 printk(KERN_ERR "nf_conntrack_l4proto_udp6: protocol register failed\n");
394 goto cleanup_tcp6;
395 }
396 ret = nf_conntrack_l4proto_register(net,
397 &nf_conntrack_l4proto_icmpv6);
398 if (ret < 0) {
399 printk(KERN_ERR "nf_conntrack_l4proto_icmp6: protocol register failed\n");
400 goto cleanup_udp6;
401 }
402 ret = nf_conntrack_l3proto_register(net,
403 &nf_conntrack_l3proto_ipv6);
404 if (ret < 0) {
405 printk(KERN_ERR "nf_conntrack_l3proto_ipv6: protocol register failed\n");
406 goto cleanup_icmpv6;
407 }
408 return 0;
409 cleanup_icmpv6:
410 nf_conntrack_l4proto_unregister(net,
411 &nf_conntrack_l4proto_icmpv6);
412 cleanup_udp6:
413 nf_conntrack_l4proto_unregister(net,
414 &nf_conntrack_l4proto_udp6);
415 cleanup_tcp6:
416 nf_conntrack_l4proto_unregister(net,
417 &nf_conntrack_l4proto_tcp6);
418 out:
419 return ret;
420}
421
422static void ipv6_net_exit(struct net *net)
423{
424 nf_conntrack_l3proto_unregister(net,
425 &nf_conntrack_l3proto_ipv6);
426 nf_conntrack_l4proto_unregister(net,
427 &nf_conntrack_l4proto_icmpv6);
428 nf_conntrack_l4proto_unregister(net,
429 &nf_conntrack_l4proto_udp6);
430 nf_conntrack_l4proto_unregister(net,
431 &nf_conntrack_l4proto_tcp6);
432}
433
434static struct pernet_operations ipv6_net_ops = {
435 .init = ipv6_net_init,
436 .exit = ipv6_net_exit,
437};
438
Patrick McHardy32292a72006-04-06 14:11:30 -0700439static int __init nf_conntrack_l3proto_ipv6_init(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800440{
441 int ret = 0;
442
Patrick McHardy32292a72006-04-06 14:11:30 -0700443 need_conntrack();
Balazs Scheidlere97c3e22010-10-21 16:03:43 +0200444 nf_defrag_ipv6_enable();
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800445
Gao fenga7c439d2012-05-28 21:04:17 +0000446 ret = register_pernet_subsys(&ipv6_net_ops);
447 if (ret < 0)
448 goto cleanup_pernet;
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700449 ret = nf_register_hooks(ipv6_conntrack_ops,
450 ARRAY_SIZE(ipv6_conntrack_ops));
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800451 if (ret < 0) {
Stephen Hemminger654d0fb2010-05-13 15:02:08 +0200452 pr_err("nf_conntrack_ipv6: can't register pre-routing defrag "
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800453 "hook.\n");
454 goto cleanup_ipv6;
455 }
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800456 return ret;
457
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800458 cleanup_ipv6:
Gao fenga7c439d2012-05-28 21:04:17 +0000459 unregister_pernet_subsys(&ipv6_net_ops);
460 cleanup_pernet:
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800461 return ret;
462}
463
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800464static void __exit nf_conntrack_l3proto_ipv6_fini(void)
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800465{
Patrick McHardy32292a72006-04-06 14:11:30 -0700466 synchronize_net();
Patrick McHardy32292a72006-04-06 14:11:30 -0700467 nf_unregister_hooks(ipv6_conntrack_ops, ARRAY_SIZE(ipv6_conntrack_ops));
Gao fenga7c439d2012-05-28 21:04:17 +0000468 unregister_pernet_subsys(&ipv6_net_ops);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800469}
470
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800471module_init(nf_conntrack_l3proto_ipv6_init);
472module_exit(nf_conntrack_l3proto_ipv6_fini);