]> Pileus Git - ~andy/linux/blob - net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c
Merge remote-tracking branch 'kumar/merge' into merge
[~andy/linux] / net / ipv6 / netfilter / nf_conntrack_l3proto_ipv6.c
1 /*
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>
10  */
11
12 #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>
19 #include <net/ipv6.h>
20 #include <net/inet_frag.h>
21
22 #include <linux/netfilter_bridge.h>
23 #include <linux/netfilter_ipv6.h>
24 #include <net/netfilter/nf_conntrack.h>
25 #include <net/netfilter/nf_conntrack_helper.h>
26 #include <net/netfilter/nf_conntrack_l4proto.h>
27 #include <net/netfilter/nf_conntrack_l3proto.h>
28 #include <net/netfilter/nf_conntrack_core.h>
29 #include <net/netfilter/nf_conntrack_zones.h>
30 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
31 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
32 #include <net/netfilter/nf_log.h>
33
34 static bool ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
35                               struct nf_conntrack_tuple *tuple)
36 {
37         const u_int32_t *ap;
38         u_int32_t _addrs[8];
39
40         ap = skb_header_pointer(skb, nhoff + offsetof(struct ipv6hdr, saddr),
41                                 sizeof(_addrs), _addrs);
42         if (ap == NULL)
43                 return false;
44
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
48         return true;
49 }
50
51 static bool ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,
52                               const struct nf_conntrack_tuple *orig)
53 {
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
57         return true;
58 }
59
60 static int ipv6_print_tuple(struct seq_file *s,
61                             const struct nf_conntrack_tuple *tuple)
62 {
63         return seq_printf(s, "src=%pI6 dst=%pI6 ",
64                           tuple->src.u3.ip6, tuple->dst.u3.ip6);
65 }
66
67 /*
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
88 static int nf_ct_ipv6_skip_exthdr(const struct sk_buff *skb, int start,
89                                   u8 *nexthdrp, int len)
90 {
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
119 static int ipv6_get_l4proto(const struct sk_buff *skb, unsigned int nhoff,
120                             unsigned int *dataoff, u_int8_t *protonum)
121 {
122         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);
132         /*
133          * (protoff == skb->len) mean that the packet doesn't have no data
134          * except of IPv6 & ext headers. but it's tracked anyway. - YK
135          */
136         if ((protoff < 0) || (protoff > skb->len)) {
137                 pr_debug("ip6_conntrack_core: can't find proto in pkt\n");
138                 return -NF_ACCEPT;
139         }
140
141         *dataoff = protoff;
142         *protonum = pnum;
143         return NF_ACCEPT;
144 }
145
146 static 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 *))
151 {
152         struct nf_conn *ct;
153         const struct nf_conn_help *help;
154         const struct nf_conntrack_helper *helper;
155         enum ip_conntrack_info ctinfo;
156         unsigned int ret, protoff;
157         unsigned int extoff = (u8 *)(ipv6_hdr(skb) + 1) - skb->data;
158         unsigned char pnum = ipv6_hdr(skb)->nexthdr;
159
160
161         /* This is where we call the helper: as the packet goes out. */
162         ct = nf_ct_get(skb, &ctinfo);
163         if (!ct || ctinfo == IP_CT_RELATED_REPLY)
164                 return NF_ACCEPT;
165
166         help = nfct_help(ct);
167         if (!help)
168                 return NF_ACCEPT;
169         /* rcu_read_lock()ed by nf_hook_slow */
170         helper = rcu_dereference(help->helper);
171         if (!helper)
172                 return NF_ACCEPT;
173
174         protoff = nf_ct_ipv6_skip_exthdr(skb, extoff, &pnum,
175                                          skb->len - extoff);
176         if (protoff > skb->len || pnum == NEXTHDR_FRAGMENT) {
177                 pr_debug("proto header not found\n");
178                 return NF_ACCEPT;
179         }
180
181         ret = helper->help(skb, protoff, ct, ctinfo);
182         if (ret != NF_ACCEPT && (ret & NF_VERDICT_MASK) != NF_QUEUE) {
183                 nf_log_packet(NFPROTO_IPV6, hooknum, skb, in, out, NULL,
184                               "nf_ct_%s: dropping packet", helper->name);
185         }
186         return ret;
187 }
188
189 static unsigned int ipv6_confirm(unsigned int hooknum,
190                                  struct sk_buff *skb,
191                                  const struct net_device *in,
192                                  const struct net_device *out,
193                                  int (*okfn)(struct sk_buff *))
194 {
195         /* We've seen it coming out the other side: confirm it */
196         return nf_conntrack_confirm(skb);
197 }
198
199 static unsigned int __ipv6_conntrack_in(struct net *net,
200                                         unsigned int hooknum,
201                                         struct sk_buff *skb,
202                                         int (*okfn)(struct sk_buff *))
203 {
204         struct sk_buff *reasm = skb->nfct_reasm;
205
206         /* This packet is fragmented and has reassembled packet. */
207         if (reasm) {
208                 /* Reassembled packet isn't parsed yet ? */
209                 if (!reasm->nfct) {
210                         unsigned int ret;
211
212                         ret = nf_conntrack_in(net, PF_INET6, hooknum, reasm);
213                         if (ret != NF_ACCEPT)
214                                 return ret;
215                 }
216                 nf_conntrack_get(reasm->nfct);
217                 skb->nfct = reasm->nfct;
218                 skb->nfctinfo = reasm->nfctinfo;
219                 return NF_ACCEPT;
220         }
221
222         return nf_conntrack_in(net, PF_INET6, hooknum, skb);
223 }
224
225 static unsigned int ipv6_conntrack_in(unsigned int hooknum,
226                                       struct sk_buff *skb,
227                                       const struct net_device *in,
228                                       const struct net_device *out,
229                                       int (*okfn)(struct sk_buff *))
230 {
231         return __ipv6_conntrack_in(dev_net(in), hooknum, skb, okfn);
232 }
233
234 static unsigned int ipv6_conntrack_local(unsigned int hooknum,
235                                          struct sk_buff *skb,
236                                          const struct net_device *in,
237                                          const struct net_device *out,
238                                          int (*okfn)(struct sk_buff *))
239 {
240         /* root is playing with raw sockets. */
241         if (skb->len < sizeof(struct ipv6hdr)) {
242                 net_notice_ratelimited("ipv6_conntrack_local: packet too short\n");
243                 return NF_ACCEPT;
244         }
245         return __ipv6_conntrack_in(dev_net(out), hooknum, skb, okfn);
246 }
247
248 static struct nf_hook_ops ipv6_conntrack_ops[] __read_mostly = {
249         {
250                 .hook           = ipv6_conntrack_in,
251                 .owner          = THIS_MODULE,
252                 .pf             = NFPROTO_IPV6,
253                 .hooknum        = NF_INET_PRE_ROUTING,
254                 .priority       = NF_IP6_PRI_CONNTRACK,
255         },
256         {
257                 .hook           = ipv6_conntrack_local,
258                 .owner          = THIS_MODULE,
259                 .pf             = NFPROTO_IPV6,
260                 .hooknum        = NF_INET_LOCAL_OUT,
261                 .priority       = NF_IP6_PRI_CONNTRACK,
262         },
263         {
264                 .hook           = ipv6_helper,
265                 .owner          = THIS_MODULE,
266                 .pf             = NFPROTO_IPV6,
267                 .hooknum        = NF_INET_POST_ROUTING,
268                 .priority       = NF_IP6_PRI_CONNTRACK_HELPER,
269         },
270         {
271                 .hook           = ipv6_confirm,
272                 .owner          = THIS_MODULE,
273                 .pf             = NFPROTO_IPV6,
274                 .hooknum        = NF_INET_POST_ROUTING,
275                 .priority       = NF_IP6_PRI_LAST,
276         },
277         {
278                 .hook           = ipv6_helper,
279                 .owner          = THIS_MODULE,
280                 .pf             = NFPROTO_IPV6,
281                 .hooknum        = NF_INET_LOCAL_IN,
282                 .priority       = NF_IP6_PRI_CONNTRACK_HELPER,
283         },
284         {
285                 .hook           = ipv6_confirm,
286                 .owner          = THIS_MODULE,
287                 .pf             = NFPROTO_IPV6,
288                 .hooknum        = NF_INET_LOCAL_IN,
289                 .priority       = NF_IP6_PRI_LAST-1,
290         },
291 };
292
293 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
294
295 #include <linux/netfilter/nfnetlink.h>
296 #include <linux/netfilter/nfnetlink_conntrack.h>
297
298 static int ipv6_tuple_to_nlattr(struct sk_buff *skb,
299                                 const struct nf_conntrack_tuple *tuple)
300 {
301         if (nla_put(skb, CTA_IP_V6_SRC, sizeof(u_int32_t) * 4,
302                     &tuple->src.u3.ip6) ||
303             nla_put(skb, CTA_IP_V6_DST, sizeof(u_int32_t) * 4,
304                     &tuple->dst.u3.ip6))
305                 goto nla_put_failure;
306         return 0;
307
308 nla_put_failure:
309         return -1;
310 }
311
312 static const struct nla_policy ipv6_nla_policy[CTA_IP_MAX+1] = {
313         [CTA_IP_V6_SRC] = { .len = sizeof(u_int32_t)*4 },
314         [CTA_IP_V6_DST] = { .len = sizeof(u_int32_t)*4 },
315 };
316
317 static int ipv6_nlattr_to_tuple(struct nlattr *tb[],
318                                 struct nf_conntrack_tuple *t)
319 {
320         if (!tb[CTA_IP_V6_SRC] || !tb[CTA_IP_V6_DST])
321                 return -EINVAL;
322
323         memcpy(&t->src.u3.ip6, nla_data(tb[CTA_IP_V6_SRC]),
324                sizeof(u_int32_t) * 4);
325         memcpy(&t->dst.u3.ip6, nla_data(tb[CTA_IP_V6_DST]),
326                sizeof(u_int32_t) * 4);
327
328         return 0;
329 }
330
331 static int ipv6_nlattr_tuple_size(void)
332 {
333         return nla_policy_len(ipv6_nla_policy, CTA_IP_MAX + 1);
334 }
335 #endif
336
337 struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6 __read_mostly = {
338         .l3proto                = PF_INET6,
339         .name                   = "ipv6",
340         .pkt_to_tuple           = ipv6_pkt_to_tuple,
341         .invert_tuple           = ipv6_invert_tuple,
342         .print_tuple            = ipv6_print_tuple,
343         .get_l4proto            = ipv6_get_l4proto,
344 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
345         .tuple_to_nlattr        = ipv6_tuple_to_nlattr,
346         .nlattr_tuple_size      = ipv6_nlattr_tuple_size,
347         .nlattr_to_tuple        = ipv6_nlattr_to_tuple,
348         .nla_policy             = ipv6_nla_policy,
349 #endif
350         .me                     = THIS_MODULE,
351 };
352
353 MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET6));
354 MODULE_LICENSE("GPL");
355 MODULE_AUTHOR("Yasuyuki KOZAKAI @USAGI <yasuyuki.kozakai@toshiba.co.jp>");
356
357 static int ipv6_net_init(struct net *net)
358 {
359         int ret = 0;
360
361         ret = nf_conntrack_l4proto_register(net,
362                                             &nf_conntrack_l4proto_tcp6);
363         if (ret < 0) {
364                 printk(KERN_ERR "nf_conntrack_l4proto_tcp6: protocol register failed\n");
365                 goto out;
366         }
367         ret = nf_conntrack_l4proto_register(net,
368                                             &nf_conntrack_l4proto_udp6);
369         if (ret < 0) {
370                 printk(KERN_ERR "nf_conntrack_l4proto_udp6: protocol register failed\n");
371                 goto cleanup_tcp6;
372         }
373         ret = nf_conntrack_l4proto_register(net,
374                                             &nf_conntrack_l4proto_icmpv6);
375         if (ret < 0) {
376                 printk(KERN_ERR "nf_conntrack_l4proto_icmp6: protocol register failed\n");
377                 goto cleanup_udp6;
378         }
379         ret = nf_conntrack_l3proto_register(net,
380                                             &nf_conntrack_l3proto_ipv6);
381         if (ret < 0) {
382                 printk(KERN_ERR "nf_conntrack_l3proto_ipv6: protocol register failed\n");
383                 goto cleanup_icmpv6;
384         }
385         return 0;
386  cleanup_icmpv6:
387         nf_conntrack_l4proto_unregister(net,
388                                         &nf_conntrack_l4proto_icmpv6);
389  cleanup_udp6:
390         nf_conntrack_l4proto_unregister(net,
391                                         &nf_conntrack_l4proto_udp6);
392  cleanup_tcp6:
393         nf_conntrack_l4proto_unregister(net,
394                                         &nf_conntrack_l4proto_tcp6);
395  out:
396         return ret;
397 }
398
399 static void ipv6_net_exit(struct net *net)
400 {
401         nf_conntrack_l3proto_unregister(net,
402                                         &nf_conntrack_l3proto_ipv6);
403         nf_conntrack_l4proto_unregister(net,
404                                         &nf_conntrack_l4proto_icmpv6);
405         nf_conntrack_l4proto_unregister(net,
406                                         &nf_conntrack_l4proto_udp6);
407         nf_conntrack_l4proto_unregister(net,
408                                         &nf_conntrack_l4proto_tcp6);
409 }
410
411 static struct pernet_operations ipv6_net_ops = {
412         .init = ipv6_net_init,
413         .exit = ipv6_net_exit,
414 };
415
416 static int __init nf_conntrack_l3proto_ipv6_init(void)
417 {
418         int ret = 0;
419
420         need_conntrack();
421         nf_defrag_ipv6_enable();
422
423         ret = register_pernet_subsys(&ipv6_net_ops);
424         if (ret < 0)
425                 goto cleanup_pernet;
426         ret = nf_register_hooks(ipv6_conntrack_ops,
427                                 ARRAY_SIZE(ipv6_conntrack_ops));
428         if (ret < 0) {
429                 pr_err("nf_conntrack_ipv6: can't register pre-routing defrag "
430                        "hook.\n");
431                 goto cleanup_ipv6;
432         }
433         return ret;
434
435  cleanup_ipv6:
436         unregister_pernet_subsys(&ipv6_net_ops);
437  cleanup_pernet:
438         return ret;
439 }
440
441 static void __exit nf_conntrack_l3proto_ipv6_fini(void)
442 {
443         synchronize_net();
444         nf_unregister_hooks(ipv6_conntrack_ops, ARRAY_SIZE(ipv6_conntrack_ops));
445         unregister_pernet_subsys(&ipv6_net_ops);
446 }
447
448 module_init(nf_conntrack_l3proto_ipv6_init);
449 module_exit(nf_conntrack_l3proto_ipv6_fini);