fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.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(error);
158                 NF_CT_STAT_INC(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                 (*pskb)->nfctinfo = reasm->nfctinfo;
261                 return NF_ACCEPT;
262         }
263
264         return nf_conntrack_in(PF_INET6, hooknum, pskb);
265 }
266
267 static unsigned int ipv6_conntrack_local(unsigned int hooknum,
268                                          struct sk_buff **pskb,
269                                          const struct net_device *in,
270                                          const struct net_device *out,
271                                          int (*okfn)(struct sk_buff *))
272 {
273         /* root is playing with raw sockets. */
274         if ((*pskb)->len < sizeof(struct ipv6hdr)) {
275                 if (net_ratelimit())
276                         printk("ipv6_conntrack_local: packet too short\n");
277                 return NF_ACCEPT;
278         }
279         return ipv6_conntrack_in(hooknum, pskb, in, out, okfn);
280 }
281
282 static struct nf_hook_ops ipv6_conntrack_ops[] = {
283         {
284                 .hook           = ipv6_defrag,
285                 .owner          = THIS_MODULE,
286                 .pf             = PF_INET6,
287                 .hooknum        = NF_IP6_PRE_ROUTING,
288                 .priority       = NF_IP6_PRI_CONNTRACK_DEFRAG,
289         },
290         {
291                 .hook           = ipv6_conntrack_in,
292                 .owner          = THIS_MODULE,
293                 .pf             = PF_INET6,
294                 .hooknum        = NF_IP6_PRE_ROUTING,
295                 .priority       = NF_IP6_PRI_CONNTRACK,
296         },
297         {
298                 .hook           = ipv6_conntrack_local,
299                 .owner          = THIS_MODULE,
300                 .pf             = PF_INET6,
301                 .hooknum        = NF_IP6_LOCAL_OUT,
302                 .priority       = NF_IP6_PRI_CONNTRACK,
303         },
304         {
305                 .hook           = ipv6_defrag,
306                 .owner          = THIS_MODULE,
307                 .pf             = PF_INET6,
308                 .hooknum        = NF_IP6_LOCAL_OUT,
309                 .priority       = NF_IP6_PRI_CONNTRACK_DEFRAG,
310         },
311         {
312                 .hook           = ipv6_confirm,
313                 .owner          = THIS_MODULE,
314                 .pf             = PF_INET6,
315                 .hooknum        = NF_IP6_POST_ROUTING,
316                 .priority       = NF_IP6_PRI_LAST,
317         },
318         {
319                 .hook           = ipv6_confirm,
320                 .owner          = THIS_MODULE,
321                 .pf             = PF_INET6,
322                 .hooknum        = NF_IP6_LOCAL_IN,
323                 .priority       = NF_IP6_PRI_LAST-1,
324         },
325 };
326
327 #ifdef CONFIG_SYSCTL
328 static ctl_table nf_ct_ipv6_sysctl_table[] = {
329         {
330                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_TIMEOUT,
331                 .procname       = "nf_conntrack_frag6_timeout",
332                 .data           = &nf_ct_frag6_timeout,
333                 .maxlen         = sizeof(unsigned int),
334                 .mode           = 0644,
335                 .proc_handler   = &proc_dointvec_jiffies,
336         },
337         {
338                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_LOW_THRESH,
339                 .procname       = "nf_conntrack_frag6_low_thresh",
340                 .data           = &nf_ct_frag6_low_thresh,
341                 .maxlen         = sizeof(unsigned int),
342                 .mode           = 0644,
343                 .proc_handler   = &proc_dointvec,
344         },
345         {
346                 .ctl_name       = NET_NF_CONNTRACK_FRAG6_HIGH_THRESH,
347                 .procname       = "nf_conntrack_frag6_high_thresh",
348                 .data           = &nf_ct_frag6_high_thresh,
349                 .maxlen         = sizeof(unsigned int),
350                 .mode           = 0644,
351                 .proc_handler   = &proc_dointvec,
352         },
353         { .ctl_name = 0 }
354 };
355 #endif
356
357 #if defined(CONFIG_NF_CT_NETLINK) || \
358     defined(CONFIG_NF_CT_NETLINK_MODULE)
359
360 #include <linux/netfilter/nfnetlink.h>
361 #include <linux/netfilter/nfnetlink_conntrack.h>
362
363 static int ipv6_tuple_to_nfattr(struct sk_buff *skb,
364                                 const struct nf_conntrack_tuple *tuple)
365 {
366         NFA_PUT(skb, CTA_IP_V6_SRC, sizeof(u_int32_t) * 4,
367                 &tuple->src.u3.ip6);
368         NFA_PUT(skb, CTA_IP_V6_DST, sizeof(u_int32_t) * 4,
369                 &tuple->dst.u3.ip6);
370         return 0;
371
372 nfattr_failure:
373         return -1;
374 }
375
376 static const size_t cta_min_ip[CTA_IP_MAX] = {
377         [CTA_IP_V6_SRC-1]       = sizeof(u_int32_t)*4,
378         [CTA_IP_V6_DST-1]       = sizeof(u_int32_t)*4,
379 };
380
381 static int ipv6_nfattr_to_tuple(struct nfattr *tb[],
382                                 struct nf_conntrack_tuple *t)
383 {
384         if (!tb[CTA_IP_V6_SRC-1] || !tb[CTA_IP_V6_DST-1])
385                 return -EINVAL;
386
387         if (nfattr_bad_size(tb, CTA_IP_MAX, cta_min_ip))
388                 return -EINVAL;
389
390         memcpy(&t->src.u3.ip6, NFA_DATA(tb[CTA_IP_V6_SRC-1]), 
391                sizeof(u_int32_t) * 4);
392         memcpy(&t->dst.u3.ip6, NFA_DATA(tb[CTA_IP_V6_DST-1]),
393                sizeof(u_int32_t) * 4);
394
395         return 0;
396 }
397 #endif
398
399 struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6 = {
400         .l3proto                = PF_INET6,
401         .name                   = "ipv6",
402         .pkt_to_tuple           = ipv6_pkt_to_tuple,
403         .invert_tuple           = ipv6_invert_tuple,
404         .print_tuple            = ipv6_print_tuple,
405         .print_conntrack        = ipv6_print_conntrack,
406         .prepare                = ipv6_prepare,
407 #if defined(CONFIG_NF_CT_NETLINK) || \
408     defined(CONFIG_NF_CT_NETLINK_MODULE)
409         .tuple_to_nfattr        = ipv6_tuple_to_nfattr,
410         .nfattr_to_tuple        = ipv6_nfattr_to_tuple,
411 #endif
412 #ifdef CONFIG_SYSCTL
413         .ctl_table_path         = nf_net_netfilter_sysctl_path,
414         .ctl_table              = nf_ct_ipv6_sysctl_table,
415 #endif
416         .get_features           = ipv6_get_features,
417         .me                     = THIS_MODULE,
418 };
419
420 MODULE_ALIAS("nf_conntrack-" __stringify(AF_INET6));
421 MODULE_LICENSE("GPL");
422 MODULE_AUTHOR("Yasuyuki KOZAKAI @USAGI <yasuyuki.kozakai@toshiba.co.jp>");
423
424 static int __init nf_conntrack_l3proto_ipv6_init(void)
425 {
426         int ret = 0;
427
428         need_conntrack();
429
430         ret = nf_ct_frag6_init();
431         if (ret < 0) {
432                 printk("nf_conntrack_ipv6: can't initialize frag6.\n");
433                 return ret;
434         }
435         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_tcp6);
436         if (ret < 0) {
437                 printk("nf_conntrack_ipv6: can't register tcp.\n");
438                 goto cleanup_frag6;
439         }
440
441         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_udp6);
442         if (ret < 0) {
443                 printk("nf_conntrack_ipv6: can't register udp.\n");
444                 goto cleanup_tcp;
445         }
446
447         ret = nf_conntrack_l4proto_register(&nf_conntrack_l4proto_icmpv6);
448         if (ret < 0) {
449                 printk("nf_conntrack_ipv6: can't register icmpv6.\n");
450                 goto cleanup_udp;
451         }
452
453         ret = nf_conntrack_l3proto_register(&nf_conntrack_l3proto_ipv6);
454         if (ret < 0) {
455                 printk("nf_conntrack_ipv6: can't register ipv6\n");
456                 goto cleanup_icmpv6;
457         }
458
459         ret = nf_register_hooks(ipv6_conntrack_ops,
460                                 ARRAY_SIZE(ipv6_conntrack_ops));
461         if (ret < 0) {
462                 printk("nf_conntrack_ipv6: can't register pre-routing defrag "
463                        "hook.\n");
464                 goto cleanup_ipv6;
465         }
466         return ret;
467
468  cleanup_ipv6:
469         nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv6);
470  cleanup_icmpv6:
471         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmpv6);
472  cleanup_udp:
473         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp6);
474  cleanup_tcp:
475         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp6);
476  cleanup_frag6:
477         nf_ct_frag6_cleanup();
478         return ret;
479 }
480
481 static void __exit nf_conntrack_l3proto_ipv6_fini(void)
482 {
483         synchronize_net();
484         nf_unregister_hooks(ipv6_conntrack_ops, ARRAY_SIZE(ipv6_conntrack_ops));
485         nf_conntrack_l3proto_unregister(&nf_conntrack_l3proto_ipv6);
486         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_icmpv6);
487         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_udp6);
488         nf_conntrack_l4proto_unregister(&nf_conntrack_l4proto_tcp6);
489         nf_ct_frag6_cleanup();
490 }
491
492 module_init(nf_conntrack_l3proto_ipv6_init);
493 module_exit(nf_conntrack_l3proto_ipv6_fini);