Merge master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6
[powerpc.git] / 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  * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
12  *      - support Layer 3 protocol independent connection tracking.
13  *        Based on the original ip_conntrack code which had the following
14  *        copyright information:
15  *              (C) 1999-2001 Paul `Rusty' Russell
16  *              (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
17  *
18  * 23 Mar 2004: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
19  *      - add get_features() to support various size of conntrack
20  *        structures.
21  */
22
23 #include <linux/types.h>
24 #include <linux/ipv6.h>
25 #include <linux/in6.h>
26 #include <linux/netfilter.h>
27 #include <linux/module.h>
28 #include <linux/skbuff.h>
29 #include <linux/icmp.h>
30 #include <linux/sysctl.h>
31 #include <net/ipv6.h>
32
33 #include <linux/netfilter_ipv6.h>
34 #include <net/netfilter/nf_conntrack.h>
35 #include <net/netfilter/nf_conntrack_helper.h>
36 #include <net/netfilter/nf_conntrack_l4proto.h>
37 #include <net/netfilter/nf_conntrack_l3proto.h>
38 #include <net/netfilter/nf_conntrack_core.h>
39
40 #if 0
41 #define DEBUGP printk
42 #else
43 #define DEBUGP(format, args...)
44 #endif
45
46 static int ipv6_pkt_to_tuple(const struct sk_buff *skb, unsigned int nhoff,
47                              struct nf_conntrack_tuple *tuple)
48 {
49         u_int32_t _addrs[8], *ap;
50
51         ap = skb_header_pointer(skb, nhoff + offsetof(struct ipv6hdr, saddr),
52                                 sizeof(_addrs), _addrs);
53         if (ap == NULL)
54                 return 0;
55
56         memcpy(tuple->src.u3.ip6, ap, sizeof(tuple->src.u3.ip6));
57         memcpy(tuple->dst.u3.ip6, ap + 4, sizeof(tuple->dst.u3.ip6));
58
59         return 1;
60 }
61
62 static int ipv6_invert_tuple(struct nf_conntrack_tuple *tuple,
63                              const struct nf_conntrack_tuple *orig)
64 {
65         memcpy(tuple->src.u3.ip6, orig->dst.u3.ip6, sizeof(tuple->src.u3.ip6));
66         memcpy(tuple->dst.u3.ip6, orig->src.u3.ip6, sizeof(tuple->dst.u3.ip6));
67
68         return 1;
69 }
70
71 static int ipv6_print_tuple(struct seq_file *s,
72                             const struct nf_conntrack_tuple *tuple)
73 {
74         return seq_printf(s, "src=" NIP6_FMT " dst=" NIP6_FMT " ",
75                           NIP6(*((struct in6_addr *)tuple->src.u3.ip6)),
76                           NIP6(*((struct in6_addr *)tuple->dst.u3.ip6)));
77 }
78
79 static int ipv6_print_conntrack(struct seq_file *s,
80                                 const struct nf_conn *conntrack)
81 {
82         return 0;
83 }
84
85 /*
86  * Based on ipv6_skip_exthdr() in net/ipv6/exthdr.c
87  *
88  * This function parses (probably truncated) exthdr set "hdr"
89  * of length "len". "nexthdrp" initially points to some place,
90  * where type of the first header can be found.
91  *
92  * It skips all well-known exthdrs, and returns pointer to the start
93  * of unparsable area i.e. the first header with unknown type.
94  * if success, *nexthdr is updated by type/protocol of this header.
95  *
96  * NOTES: - it may return pointer pointing beyond end of packet,
97  *          if the last recognized header is truncated in the middle.
98  *        - if packet is truncated, so that all parsed headers are skipped,
99  *          it returns -1.
100  *        - if packet is fragmented, return pointer of the fragment header.
101  *        - ESP is unparsable for now and considered like
102  *          normal payload protocol.
103  *        - Note also special handling of AUTH header. Thanks to IPsec wizards.
104  */
105
106 int nf_ct_ipv6_skip_exthdr(struct sk_buff *skb, int start, u8 *nexthdrp,
107                            int len)
108 {
109         u8 nexthdr = *nexthdrp;
110
111         while (ipv6_ext_hdr(nexthdr)) {
112                 struct ipv6_opt_hdr hdr;
113                 int hdrlen;
114
115                 if (len < (int)sizeof(struct ipv6_opt_hdr))
116                         return -1;
117                 if (nexthdr == NEXTHDR_NONE)
118                         break;
119                 if (nexthdr == NEXTHDR_FRAGMENT)
120                         break;
121                 if (skb_copy_bits(skb, start, &hdr, sizeof(hdr)))
122                         BUG();
123                 if (nexthdr == NEXTHDR_AUTH)
124                         hdrlen = (hdr.hdrlen+2)<<2;
125                 else
126                         hdrlen = ipv6_optlen(&hdr);
127
128                 nexthdr = hdr.nexthdr;
129                 len -= hdrlen;
130                 start += hdrlen;
131         }
132
133         *nexthdrp = nexthdr;
134         return start;
135 }
136
137 static int
138 ipv6_prepare(struct sk_buff **pskb, unsigned int hooknum, unsigned int *dataoff,
139              u_int8_t *protonum)
140 {
141         unsigned int extoff;
142         unsigned char pnum;
143         int protoff;
144
145         extoff = (u8*)((*pskb)->nh.ipv6h + 1) - (*pskb)->data;
146         pnum = (*pskb)->nh.ipv6h->nexthdr;
147
148         protoff = nf_ct_ipv6_skip_exthdr(*pskb, extoff, &pnum,
149                                          (*pskb)->len - extoff);
150
151         /*
152          * (protoff == (*pskb)->len) mean that the packet doesn't have no data
153          * except of IPv6 & ext headers. but it's tracked anyway. - YK
154          */
155         if ((protoff < 0) || (protoff > (*pskb)->len)) {
156                 DEBUGP("ip6_conntrack_core: can't find proto in pkt\n");
157                 NF_CT_STAT_INC_ATOMIC(error);
158                 NF_CT_STAT_INC_ATOMIC(invalid);
159                 return -NF_ACCEPT;
160         }
161
162         *dataoff = protoff;
163         *protonum = pnum;
164         return NF_ACCEPT;
165 }
166
167 static u_int32_t ipv6_get_features(const struct nf_conntrack_tuple *tuple)
168 {
169         return NF_CT_F_BASIC;
170 }
171
172 static unsigned int ipv6_confirm(unsigned int hooknum,
173                                  struct sk_buff **pskb,
174                                  const struct net_device *in,
175                                  const struct net_device *out,
176                                  int (*okfn)(struct sk_buff *))
177 {
178         struct nf_conn *ct;
179         struct nf_conn_help *help;
180         enum ip_conntrack_info ctinfo;
181         unsigned int ret, protoff;
182         unsigned int extoff = (u8*)((*pskb)->nh.ipv6h + 1)
183                               - (*pskb)->data;
184         unsigned char pnum = (*pskb)->nh.ipv6h->nexthdr;
185
186
187         /* This is where we call the helper: as the packet goes out. */
188         ct = nf_ct_get(*pskb, &ctinfo);
189         if (!ct || ctinfo == IP_CT_RELATED + IP_CT_IS_REPLY)
190                 goto out;
191
192         help = nfct_help(ct);
193         if (!help || !help->helper)
194                 goto out;
195
196         protoff = nf_ct_ipv6_skip_exthdr(*pskb, extoff, &pnum,
197                                          (*pskb)->len - extoff);
198         if (protoff < 0 || protoff > (*pskb)->len ||
199             pnum == NEXTHDR_FRAGMENT) {
200                 DEBUGP("proto header not found\n");
201                 return NF_ACCEPT;
202         }
203
204         ret = help->helper->help(pskb, protoff, ct, ctinfo);
205         if (ret != NF_ACCEPT)
206                 return ret;
207 out:
208         /* We've seen it coming out the other side: confirm it */
209         return nf_conntrack_confirm(pskb);
210 }
211
212 static unsigned int ipv6_defrag(unsigned int hooknum,
213                                 struct sk_buff **pskb,
214                                 const struct net_device *in,
215                                 const struct net_device *out,
216                                 int (*okfn)(struct sk_buff *))
217 {
218         struct sk_buff *reasm;
219
220         /* Previously seen (loopback)?  */
221         if ((*pskb)->nfct)
222                 return NF_ACCEPT;
223
224         reasm = nf_ct_frag6_gather(*pskb);
225
226         /* queued */
227         if (reasm == NULL)
228                 return NF_STOLEN;
229
230         /* error occured or not fragmented */
231         if (reasm == *pskb)
232                 return NF_ACCEPT;
233
234         nf_ct_frag6_output(hooknum, reasm, (struct net_device *)in,
235                            (struct net_device *)out, okfn);
236
237         return NF_STOLEN;
238 }
239
240 static unsigned int ipv6_conntrack_in(unsigned int hooknum,
241                                       struct sk_buff **pskb,
242                                       const struct net_device *in,
243                                       const struct net_device *out,
244                                       int (*okfn)(struct sk_buff *))
245 {
246         struct sk_buff *reasm = (*pskb)->nfct_reasm;
247
248         /* This packet is fragmented and has reassembled packet. */
249         if (reasm) {
250                 /* Reassembled packet isn't parsed yet ? */
251                 if (!reasm->nfct) {
252                         unsigned int ret;
253
254                         ret = nf_conntrack_in(PF_INET6, hooknum, &reasm);
255                         if (ret != NF_ACCEPT)
256                                 return ret;
257                 }
258                 nf_conntrack_get(reasm->nfct);
259                 (*pskb)->nfct = reasm->nfct;
260                 return NF_ACCEPT;
261         }
262
263         return nf_conntrack_in(PF_INET6, hooknum, pskb);
264 }
265
266 static unsigned int ipv6_conntrack_local(unsigned int hooknum,
267                                          struct sk_buff **pskb,
268                                          const struct net_device *in,
269                                          const struct net_device *out,
270                                          int (*okfn)(struct sk_buff *))
271 {
272         /* root is playing with raw sockets. */
273         if ((*pskb)->len < sizeof(struct ipv6hdr)) {
274                 if (net_ratelimit())
275                         printk("ipv6_conntrack_local: packet too short\n");
276                 return NF_ACCEPT;
277         }
278         return ipv6_conntrack_in(hooknum, pskb, in, out, okfn);
279 }
280
281 static struct nf_hook_ops ipv6_conntrack_ops[] = {
282         {
283                 .hook           = ipv6_defrag,
284                 .owner          = THIS_MODULE,
285                 .pf             = PF_INET6,
286                 .hooknum        = NF_IP6_PRE_ROUTING,
287                 .priority       = NF_IP6_PRI_CONNTRACK_DEFRAG,
288         },
289         {
290                 .hook           = ipv6_conntrack_in,
291                 .owner          = THIS_MODULE,
292                 .pf             = PF_INET6,
293                 .hooknum        = NF_IP6_PRE_ROUTING,
294                 .priority       = NF_IP6_PRI_CONNTRACK,
295         },
296         {
297                 .hook           = ipv6_conntrack_local,
298                 .owner          = THIS_MODULE,
299                 .pf             = PF_INET6,
300                 .hooknum        = NF_IP6_LOCAL_OUT,
301                 .priority       = NF_IP6_PRI_CONNTRACK,
302         },
303         {
304                 .hook           = ipv6_defrag,
305                 .owner          = THIS_MODULE,
306                 .pf             = PF_INET6,
307                 .hooknum        = NF_IP6_LOCAL_OUT,
308                 .priority       = NF_IP6_PRI_CONNTRACK_DEFRAG,
309         },
310         {
311                 .hook           = ipv6_confirm,
312                 .owner          = THIS_MODULE,
313                 .pf             = PF_INET6,
314                 .hooknum        = NF_IP6_POST_ROUTING,
315                 .priority       = NF_IP6_PRI_LAST,
316         },
317         {
318                 .hook           = ipv6_confirm,
319                 .owner          = THIS_MODULE,
320                 .pf             = PF_INET6,
321                 .hooknum        = NF_IP6_LOCAL_IN,
322                 .priority       = NF_IP6_PRI_LAST-1,
323         },
324 };
325
326 #ifdef CONFIG_SYSCTL
327 static ctl_table nf_ct_ipv6_sysctl_table[] = {
328         {
329                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_TIMEOUT,
330                 .procname       = "nf_conntrack_frag6_timeout",
331                 .data           = &nf_ct_frag6_timeout,
332                 .maxlen         = sizeof(unsigned int),
333                 .mode           = 0644,
334                 .proc_handler   = &proc_dointvec_jiffies,
335         },
336         {
337                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_LOW_THRESH,
338                 .procname       = "nf_conntrack_frag6_low_thresh",
339                 .data           = &nf_ct_frag6_low_thresh,
340                 .maxlen         = sizeof(unsigned int),
341                 .mode           = 0644,
342                 .proc_handler   = &proc_dointvec,
343         },
344         {
345                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_HIGH_THRESH,
346                 .procname       = "nf_conntrack_frag6_high_thresh",
347                 .data           = &nf_ct_frag6_high_thresh,
348                 .maxlen         = sizeof(unsigned int),
349                 .mode           = 0644,
350                 .proc_handler   = &proc_dointvec,
351         },
352         { .ctl_name = 0 }
353 };
354 #endif
355
356 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
357
358 #include <linux/netfilter/nfnetlink.h>
359 #include <linux/netfilter/nfnetlink_conntrack.h>
360
361 static int ipv6_tuple_to_nfattr(struct sk_buff *skb,
362                                 const struct nf_conntrack_tuple *tuple)
363 {
364         NFA_PUT(skb, CTA_IP_V6_SRC, sizeof(u_int32_t) * 4,
365                 &tuple->src.u3.ip6);
366         NFA_PUT(skb, CTA_IP_V6_DST, sizeof(u_int32_t) * 4,
367                 &tuple->dst.u3.ip6);
368         return 0;
369
370 nfattr_failure:
371         return -1;
372 }
373
374 static const size_t cta_min_ip[CTA_IP_MAX] = {
375         [CTA_IP_V6_SRC-1]       = sizeof(u_int32_t)*4,
376         [CTA_IP_V6_DST-1]       = sizeof(u_int32_t)*4,
377 };
378
379 static int ipv6_nfattr_to_tuple(struct nfattr *tb[],
380                                 struct nf_conntrack_tuple *t)
381 {
382         if (!tb[CTA_IP_V6_SRC-1] || !tb[CTA_IP_V6_DST-1])
383                 return -EINVAL;
384
385         if (nfattr_bad_size(tb, CTA_IP_MAX, cta_min_ip))
386                 return -EINVAL;
387
388         memcpy(&t->src.u3.ip6, NFA_DATA(tb[CTA_IP_V6_SRC-1]),
389                sizeof(u_int32_t) * 4);
390         memcpy(&t->dst.u3.ip6, NFA_DATA(tb[CTA_IP_V6_DST-1]),
391                sizeof(u_int32_t) * 4);
392
393         return 0;
394 }
395 #endif
396
397 struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6 = {
398         .l3proto                = PF_INET6,
399         .name                   = "ipv6",
400         .pkt_to_tuple           = ipv6_pkt_to_tuple,
401         .invert_tuple           = ipv6_invert_tuple,
402         .print_tuple            = ipv6_print_tuple,
403         .print_conntrack        = ipv6_print_conntrack,
404         .prepare                = ipv6_prepare,
405 #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE)
406         .tuple_to_nfattr        = ipv6_tuple_to_nfattr,
407         .nfattr_to_tuple        = ipv6_nfattr_to_tuple,
408 #endif
409 #ifdef CONFIG_SYSCTL
410         .ctl_table_path         = nf_net_netfilter_sysctl_path,
411         .ctl_table              = nf_ct_ipv6_sysctl_table,
412 #endif
413         .get_features           = ipv6_get_features,
414         .me                     = THIS_MODULE,
415 };
416
417 MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET6));
418 MODULE_LICENSE("GPL");
419 MODULE_AUTHOR("Yasuyuki KOZAKAI @USAGI <yasuyuki.kozakai@toshiba.co.jp>");
420
421 static int __init nf_conntrack_l3proto_ipv6_init(void)
422 {
423         int ret = 0;
424
425         need_conntrack();
426
427         ret = nf_ct_frag6_init();
428         if (ret < 0) {
429                 printk("nf_conntrack_ipv6: can't initialize frag6.\n");
430                 return ret;
431         }
432         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_tcp6);
433         if (ret < 0) {
434                 printk("nf_conntrack_ipv6: can't register tcp.\n");
435                 goto cleanup_frag6;
436         }
437
438         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_udp6);
439         if (ret < 0) {
440                 printk("nf_conntrack_ipv6: can't register udp.\n");
441                 goto cleanup_tcp;
442         }
443
444         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_icmpv6);
445         if (ret < 0) {
446                 printk("nf_conntrack_ipv6: can't register icmpv6.\n");
447                 goto cleanup_udp;
448         }
449
450         ret = nf_conntrack_l3proto_register(&nf_conntrack_l3proto_ipv6);
451         if (ret < 0) {
452                 printk("nf_conntrack_ipv6: can't register ipv6\n");
453                 goto cleanup_icmpv6;
454         }
455
456         ret = nf_register_hooks(ipv6_conntrack_ops,
457                                 ARRAY_SIZE(ipv6_conntrack_ops));
458         if (ret < 0) {
459                 printk("nf_conntrack_ipv6: can't register pre-routing defrag "
460                        "hook.\n");
461                 goto cleanup_ipv6;
462         }
463         return ret;
464
465  cleanup_ipv6:
466         nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv6);
467  cleanup_icmpv6:
468         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmpv6);
469  cleanup_udp:
470         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp6);
471  cleanup_tcp:
472         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp6);
473  cleanup_frag6:
474         nf_ct_frag6_cleanup();
475         return ret;
476 }
477
478 static void __exit nf_conntrack_l3proto_ipv6_fini(void)
479 {
480         synchronize_net();
481         nf_unregister_hooks(ipv6_conntrack_ops, ARRAY_SIZE(ipv6_conntrack_ops));
482         nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv6);
483         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmpv6);
484         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp6);
485         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp6);
486         nf_ct_frag6_cleanup();
487 }
488
489 module_init(nf_conntrack_l3proto_ipv6_init);
490 module_exit(nf_conntrack_l3proto_ipv6_fini);