upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / net / ipv6 / af_inet6.c
1 /*
2  *      PF_INET6 socket protocol family
3  *      Linux INET6 implementation 
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>     
7  *
8  *      Adapted from linux/net/ipv4/af_inet.c
9  *
10  *      $Id: af_inet6.c,v 1.66 2002/02/01 22:01:04 davem Exp $
11  *
12  *      Fixes:
13  *      piggy, Karl Knutson     :       Socket protocol table
14  *      Hideaki YOSHIFUJI       :       sin6_scope_id support
15  *      Arnaldo Melo            :       check proc_net_create return, cleanups
16  *
17  *      This program is free software; you can redistribute it and/or
18  *      modify it under the terms of the GNU General Public License
19  *      as published by the Free Software Foundation; either version
20  *      2 of the License, or (at your option) any later version.
21  */
22
23
24 #include <linux/module.h>
25 #include <linux/config.h>
26 #include <linux/errno.h>
27 #include <linux/types.h>
28 #include <linux/socket.h>
29 #include <linux/in.h>
30 #include <linux/kernel.h>
31 #include <linux/major.h>
32 #include <linux/sched.h>
33 #include <linux/timer.h>
34 #include <linux/string.h>
35 #include <linux/sockios.h>
36 #include <linux/net.h>
37 #include <linux/fcntl.h>
38 #include <linux/mm.h>
39 #include <linux/interrupt.h>
40 #include <linux/proc_fs.h>
41 #include <linux/stat.h>
42 #include <linux/init.h>
43
44 #include <linux/inet.h>
45 #include <linux/netdevice.h>
46 #include <linux/icmpv6.h>
47 #include <linux/smp_lock.h>
48
49 #include <net/ip.h>
50 #include <net/ipv6.h>
51 #include <net/udp.h>
52 #include <net/tcp.h>
53 #include <net/ipip.h>
54 #include <net/protocol.h>
55 #include <net/inet_common.h>
56 #include <net/transp_v6.h>
57 #include <net/ip6_route.h>
58 #include <net/addrconf.h>
59 #ifdef CONFIG_IPV6_TUNNEL
60 #include <net/ip6_tunnel.h>
61 #endif
62
63 #include <asm/uaccess.h>
64 #include <asm/system.h>
65
66 MODULE_AUTHOR("Cast of dozens");
67 MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
68 MODULE_LICENSE("GPL");
69
70 /* IPv6 procfs goodies... */
71
72 #ifdef CONFIG_PROC_FS
73 extern int raw6_proc_init(void);
74 extern void raw6_proc_exit(void);
75 extern int tcp6_proc_init(void);
76 extern void tcp6_proc_exit(void);
77 extern int udp6_proc_init(void);
78 extern void udp6_proc_exit(void);
79 extern int ipv6_misc_proc_init(void);
80 extern void ipv6_misc_proc_exit(void);
81 extern int ac6_proc_init(void);
82 extern void ac6_proc_exit(void);
83 extern int if6_proc_init(void);
84 extern void if6_proc_exit(void);
85 #endif
86
87 int sysctl_ipv6_bindv6only;
88
89 #ifdef INET_REFCNT_DEBUG
90 atomic_t inet6_sock_nr;
91 #endif
92
93 /* The inetsw table contains everything that inet_create needs to
94  * build a new socket.
95  */
96 static struct list_head inetsw6[SOCK_MAX];
97 static spinlock_t inetsw6_lock = SPIN_LOCK_UNLOCKED;
98
99 static void inet6_sock_destruct(struct sock *sk)
100 {
101         inet_sock_destruct(sk);
102
103 #ifdef INET_REFCNT_DEBUG
104         atomic_dec(&inet6_sock_nr);
105 #endif
106 }
107
108 static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
109 {
110         const int offset = sk->sk_prot->slab_obj_size - sizeof(struct ipv6_pinfo);
111
112         return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
113 }
114
115 static int inet6_create(struct socket *sock, int protocol)
116 {
117         struct inet_opt *inet;
118         struct ipv6_pinfo *np;
119         struct sock *sk;
120         struct tcp6_sock* tcp6sk;
121         struct list_head *p;
122         struct inet_protosw *answer;
123         struct proto *answer_prot;
124         unsigned char answer_flags;
125         char answer_no_check;
126         int rc;
127
128         /* Look for the requested type/protocol pair. */
129         answer = NULL;
130         rcu_read_lock();
131         list_for_each_rcu(p, &inetsw6[sock->type]) {
132                 answer = list_entry(p, struct inet_protosw, list);
133
134                 /* Check the non-wild match. */
135                 if (protocol == answer->protocol) {
136                         if (protocol != IPPROTO_IP)
137                                 break;
138                 } else {
139                         /* Check for the two wild cases. */
140                         if (IPPROTO_IP == protocol) {
141                                 protocol = answer->protocol;
142                                 break;
143                         }
144                         if (IPPROTO_IP == answer->protocol)
145                                 break;
146                 }
147                 answer = NULL;
148         }
149
150         rc = -ESOCKTNOSUPPORT;
151         if (!answer)
152                 goto out_rcu_unlock;
153         rc = -EPERM;
154         if (answer->capability > 0 && !capable(answer->capability))
155                 goto out_rcu_unlock;
156         rc = -EPROTONOSUPPORT;
157         if (!protocol)
158                 goto out_rcu_unlock;
159
160         sock->ops = answer->ops;
161
162         answer_prot = answer->prot;
163         answer_no_check = answer->no_check;
164         answer_flags = answer->flags;
165         rcu_read_unlock();
166
167         BUG_TRAP(answer_prot->slab != NULL);
168
169         rc = -ENOBUFS;
170         sk = sk_alloc(PF_INET6, GFP_KERNEL,
171                       answer_prot->slab_obj_size,
172                       answer_prot->slab);
173         if (sk == NULL)
174                 goto out;
175
176         sock_init_data(sock, sk);
177         sk->sk_prot = answer_prot;
178         sk_set_owner(sk, sk->sk_prot->owner);
179
180         rc = 0;
181         sk->sk_no_check = answer_no_check;
182         if (INET_PROTOSW_REUSE & answer_flags)
183                 sk->sk_reuse = 1;
184
185         inet = inet_sk(sk);
186
187         if (SOCK_RAW == sock->type) {
188                 inet->num = protocol;
189                 if (IPPROTO_RAW == protocol)
190                         inet->hdrincl = 1;
191         }
192
193         sk->sk_destruct         = inet6_sock_destruct;
194         sk->sk_family           = PF_INET6;
195         sk->sk_protocol         = protocol;
196
197         sk->sk_backlog_rcv      = answer->prot->backlog_rcv;
198
199         tcp6sk          = (struct tcp6_sock *)sk;
200         tcp6sk->pinet6 = np = inet6_sk_generic(sk);
201         np->hop_limit   = -1;
202         np->mcast_hops  = -1;
203         np->mc_loop     = 1;
204         np->pmtudisc    = IPV6_PMTUDISC_WANT;
205         np->ipv6only    = sysctl_ipv6_bindv6only;
206         
207         /* Init the ipv4 part of the socket since we can have sockets
208          * using v6 API for ipv4.
209          */
210         inet->uc_ttl    = -1;
211
212         inet->mc_loop   = 1;
213         inet->mc_ttl    = 1;
214         inet->mc_index  = 0;
215         inet->mc_list   = NULL;
216
217         if (ipv4_config.no_pmtu_disc)
218                 inet->pmtudisc = IP_PMTUDISC_DONT;
219         else
220                 inet->pmtudisc = IP_PMTUDISC_WANT;
221
222
223 #ifdef INET_REFCNT_DEBUG
224         atomic_inc(&inet6_sock_nr);
225         atomic_inc(&inet_sock_nr);
226 #endif
227         if (inet->num) {
228                 /* It assumes that any protocol which allows
229                  * the user to assign a number at socket
230                  * creation time automatically shares.
231                  */
232                 inet->sport = ntohs(inet->num);
233                 sk->sk_prot->hash(sk);
234         }
235         if (sk->sk_prot->init) {
236                 rc = sk->sk_prot->init(sk);
237                 if (rc) {
238                         sk_common_release(sk);
239                         goto out;
240                 }
241         }
242 out:
243         return rc;
244 out_rcu_unlock:
245         rcu_read_unlock();
246         goto out;
247 }
248
249
250 /* bind for INET6 API */
251 int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
252 {
253         struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
254         struct sock *sk = sock->sk;
255         struct inet_opt *inet = inet_sk(sk);
256         struct ipv6_pinfo *np = inet6_sk(sk);
257         __u32 v4addr = 0;
258         unsigned short snum;
259         int addr_type = 0;
260         int err = 0;
261
262         /* If the socket has its own bind function then use it. */
263         if (sk->sk_prot->bind)
264                 return sk->sk_prot->bind(sk, uaddr, addr_len);
265
266         if (addr_len < SIN6_LEN_RFC2133)
267                 return -EINVAL;
268         addr_type = ipv6_addr_type(&addr->sin6_addr);
269         if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
270                 return -EINVAL;
271
272         snum = ntohs(addr->sin6_port);
273         if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
274                 return -EACCES;
275
276         lock_sock(sk);
277
278         /* Check these errors (active socket, double bind). */
279         if (sk->sk_state != TCP_CLOSE || inet->num) {
280                 err = -EINVAL;
281                 goto out;
282         }
283
284         /* Check if the address belongs to the host. */
285         if (addr_type == IPV6_ADDR_MAPPED) {
286                 v4addr = addr->sin6_addr.s6_addr32[3];
287                 if (inet_addr_type(v4addr) != RTN_LOCAL) {
288                         err = -EADDRNOTAVAIL;
289                         goto out;
290                 }
291         } else {
292                 if (addr_type != IPV6_ADDR_ANY) {
293                         struct net_device *dev = NULL;
294
295                         if (addr_type & IPV6_ADDR_LINKLOCAL) {
296                                 if (addr_len >= sizeof(struct sockaddr_in6) &&
297                                     addr->sin6_scope_id) {
298                                         /* Override any existing binding, if another one
299                                          * is supplied by user.
300                                          */
301                                         sk->sk_bound_dev_if = addr->sin6_scope_id;
302                                 }
303                                 
304                                 /* Binding to link-local address requires an interface */
305                                 if (!sk->sk_bound_dev_if) {
306                                         err = -EINVAL;
307                                         goto out;
308                                 }
309                                 dev = dev_get_by_index(sk->sk_bound_dev_if);
310                                 if (!dev) {
311                                         err = -ENODEV;
312                                         goto out;
313                                 }
314                         }
315
316                         /* ipv4 addr of the socket is invalid.  Only the
317                          * unspecified and mapped address have a v4 equivalent.
318                          */
319                         v4addr = LOOPBACK4_IPV6;
320                         if (!(addr_type & IPV6_ADDR_MULTICAST)) {
321                                 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
322                                         if (dev)
323                                                 dev_put(dev);
324                                         err = -EADDRNOTAVAIL;
325                                         goto out;
326                                 }
327                         }
328                         if (dev)
329                                 dev_put(dev);
330                 }
331         }
332
333         inet->rcv_saddr = v4addr;
334         inet->saddr = v4addr;
335
336         ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
337                 
338         if (!(addr_type & IPV6_ADDR_MULTICAST))
339                 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
340
341         /* Make sure we are allowed to bind here. */
342         if (sk->sk_prot->get_port(sk, snum)) {
343                 inet_reset_saddr(sk);
344                 err = -EADDRINUSE;
345                 goto out;
346         }
347
348         if (addr_type != IPV6_ADDR_ANY)
349                 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
350         if (snum)
351                 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
352         inet->sport = ntohs(inet->num);
353         inet->dport = 0;
354         inet->daddr = 0;
355 out:
356         release_sock(sk);
357         return err;
358 }
359
360 int inet6_release(struct socket *sock)
361 {
362         struct sock *sk = sock->sk;
363
364         if (sk == NULL)
365                 return -EINVAL;
366
367         /* Free mc lists */
368         ipv6_sock_mc_close(sk);
369
370         /* Free ac lists */
371         ipv6_sock_ac_close(sk);
372
373         return inet_release(sock);
374 }
375
376 int inet6_destroy_sock(struct sock *sk)
377 {
378         struct ipv6_pinfo *np = inet6_sk(sk);
379         struct sk_buff *skb;
380         struct ipv6_txoptions *opt;
381
382         /*
383          *      Release destination entry
384          */
385
386         sk_dst_reset(sk);
387
388         /* Release rx options */
389
390         if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
391                 kfree_skb(skb);
392
393         /* Free flowlabels */
394         fl6_free_socklist(sk);
395
396         /* Free tx options */
397
398         if ((opt = xchg(&np->opt, NULL)) != NULL)
399                 sock_kfree_s(sk, opt, opt->tot_len);
400
401         return 0;
402 }
403
404 /*
405  *      This does both peername and sockname.
406  */
407  
408 int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
409                  int *uaddr_len, int peer)
410 {
411         struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
412         struct sock *sk = sock->sk;
413         struct inet_opt *inet = inet_sk(sk);
414         struct ipv6_pinfo *np = inet6_sk(sk);
415   
416         sin->sin6_family = AF_INET6;
417         sin->sin6_flowinfo = 0;
418         sin->sin6_scope_id = 0;
419         if (peer) {
420                 if (!inet->dport)
421                         return -ENOTCONN;
422                 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
423                     peer == 1)
424                         return -ENOTCONN;
425                 sin->sin6_port = inet->dport;
426                 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
427                 if (np->sndflow)
428                         sin->sin6_flowinfo = np->flow_label;
429         } else {
430                 if (ipv6_addr_any(&np->rcv_saddr))
431                         ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
432                 else
433                         ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
434
435                 sin->sin6_port = inet->sport;
436         }
437         if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
438                 sin->sin6_scope_id = sk->sk_bound_dev_if;
439         *uaddr_len = sizeof(*sin);
440         return(0);
441 }
442
443 int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
444 {
445         struct sock *sk = sock->sk;
446         int err = -EINVAL;
447
448         switch(cmd) 
449         {
450         case SIOCGSTAMP:
451                 return sock_get_timestamp(sk, (struct timeval __user *)arg);
452
453         case SIOCADDRT:
454         case SIOCDELRT:
455           
456                 return(ipv6_route_ioctl(cmd,(void __user *)arg));
457
458         case SIOCSIFADDR:
459                 return addrconf_add_ifaddr((void __user *) arg);
460         case SIOCDIFADDR:
461                 return addrconf_del_ifaddr((void __user *) arg);
462         case SIOCSIFDSTADDR:
463                 return addrconf_set_dstaddr((void __user *) arg);
464         default:
465                 if (!sk->sk_prot->ioctl ||
466                     (err = sk->sk_prot->ioctl(sk, cmd, arg)) == -ENOIOCTLCMD)
467                         return(dev_ioctl(cmd,(void __user *) arg));             
468                 return err;
469         }
470         /*NOTREACHED*/
471         return(0);
472 }
473
474 struct proto_ops inet6_stream_ops = {
475         .family =       PF_INET6,
476         .owner =        THIS_MODULE,
477         .release =      inet6_release,
478         .bind =         inet6_bind,
479         .connect =      inet_stream_connect,            /* ok           */
480         .socketpair =   sock_no_socketpair,             /* a do nothing */
481         .accept =       inet_accept,                    /* ok           */
482         .getname =      inet6_getname, 
483         .poll =         tcp_poll,                       /* ok           */
484         .ioctl =        inet6_ioctl,                    /* must change  */
485         .listen =       inet_listen,                    /* ok           */
486         .shutdown =     inet_shutdown,                  /* ok           */
487         .setsockopt =   sock_common_setsockopt,         /* ok           */
488         .getsockopt =   sock_common_getsockopt,         /* ok           */
489         .sendmsg =      inet_sendmsg,                   /* ok           */
490         .recvmsg =      sock_common_recvmsg,            /* ok           */
491         .mmap =         sock_no_mmap,
492         .sendpage =     tcp_sendpage
493 };
494
495 struct proto_ops inet6_dgram_ops = {
496         .family =       PF_INET6,
497         .owner =        THIS_MODULE,
498         .release =      inet6_release,
499         .bind =         inet6_bind,
500         .connect =      inet_dgram_connect,             /* ok           */
501         .socketpair =   sock_no_socketpair,             /* a do nothing */
502         .accept =       sock_no_accept,                 /* a do nothing */
503         .getname =      inet6_getname, 
504         .poll =         udp_poll,                       /* ok           */
505         .ioctl =        inet6_ioctl,                    /* must change  */
506         .listen =       sock_no_listen,                 /* ok           */
507         .shutdown =     inet_shutdown,                  /* ok           */
508         .setsockopt =   sock_common_setsockopt,         /* ok           */
509         .getsockopt =   sock_common_getsockopt,         /* ok           */
510         .sendmsg =      inet_sendmsg,                   /* ok           */
511         .recvmsg =      sock_common_recvmsg,            /* ok           */
512         .mmap =         sock_no_mmap,
513         .sendpage =     sock_no_sendpage,
514 };
515
516 static struct net_proto_family inet6_family_ops = {
517         .family = PF_INET6,
518         .create = inet6_create,
519         .owner  = THIS_MODULE,
520 };
521
522 #ifdef CONFIG_SYSCTL
523 extern void ipv6_sysctl_register(void);
524 extern void ipv6_sysctl_unregister(void);
525 #endif
526
527 /* Same as inet6_dgram_ops, sans udp_poll.  */
528 static struct proto_ops inet6_sockraw_ops = {
529         .family =       PF_INET6,
530         .owner =        THIS_MODULE,
531         .release =      inet6_release,
532         .bind =         inet6_bind,
533         .connect =      inet_dgram_connect,             /* ok           */
534         .socketpair =   sock_no_socketpair,             /* a do nothing */
535         .accept =       sock_no_accept,                 /* a do nothing */
536         .getname =      inet6_getname, 
537         .poll =         datagram_poll,                  /* ok           */
538         .ioctl =        inet6_ioctl,                    /* must change  */
539         .listen =       sock_no_listen,                 /* ok           */
540         .shutdown =     inet_shutdown,                  /* ok           */
541         .setsockopt =   sock_common_setsockopt,         /* ok           */
542         .getsockopt =   sock_common_getsockopt,         /* ok           */
543         .sendmsg =      inet_sendmsg,                   /* ok           */
544         .recvmsg =      sock_common_recvmsg,            /* ok           */
545         .mmap =         sock_no_mmap,
546         .sendpage =     sock_no_sendpage,
547 };
548
549 static struct inet_protosw rawv6_protosw = {
550         .type           = SOCK_RAW,
551         .protocol       = IPPROTO_IP,   /* wild card */
552         .prot           = &rawv6_prot,
553         .ops            = &inet6_sockraw_ops,
554         .capability     = CAP_NET_RAW,
555         .no_check       = UDP_CSUM_DEFAULT,
556         .flags          = INET_PROTOSW_REUSE,
557 };
558
559 void
560 inet6_register_protosw(struct inet_protosw *p)
561 {
562         struct list_head *lh;
563         struct inet_protosw *answer;
564         int protocol = p->protocol;
565         struct list_head *last_perm;
566
567         spin_lock_bh(&inetsw6_lock);
568
569         if (p->type >= SOCK_MAX)
570                 goto out_illegal;
571
572         /* If we are trying to override a permanent protocol, bail. */
573         answer = NULL;
574         last_perm = &inetsw6[p->type];
575         list_for_each(lh, &inetsw6[p->type]) {
576                 answer = list_entry(lh, struct inet_protosw, list);
577
578                 /* Check only the non-wild match. */
579                 if (INET_PROTOSW_PERMANENT & answer->flags) {
580                         if (protocol == answer->protocol)
581                                 break;
582                         last_perm = lh;
583                 }
584
585                 answer = NULL;
586         }
587         if (answer)
588                 goto out_permanent;
589
590         /* Add the new entry after the last permanent entry if any, so that
591          * the new entry does not override a permanent entry when matched with
592          * a wild-card protocol. But it is allowed to override any existing
593          * non-permanent entry.  This means that when we remove this entry, the 
594          * system automatically returns to the old behavior.
595          */
596         list_add_rcu(&p->list, last_perm);
597 out:
598         spin_unlock_bh(&inetsw6_lock);
599         return;
600
601 out_permanent:
602         printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
603                protocol);
604         goto out;
605
606 out_illegal:
607         printk(KERN_ERR
608                "Ignoring attempt to register invalid socket type %d.\n",
609                p->type);
610         goto out;
611 }
612
613 void
614 inet6_unregister_protosw(struct inet_protosw *p)
615 {
616         if (INET_PROTOSW_PERMANENT & p->flags) {
617                 printk(KERN_ERR
618                        "Attempt to unregister permanent protocol %d.\n",
619                        p->protocol);
620         } else {
621                 spin_lock_bh(&inetsw6_lock);
622                 list_del_rcu(&p->list);
623                 spin_unlock_bh(&inetsw6_lock);
624
625                 synchronize_net();
626         }
627 }
628
629 int
630 snmp6_mib_init(void *ptr[2], size_t mibsize, size_t mibalign)
631 {
632         if (ptr == NULL)
633                 return -EINVAL;
634
635         ptr[0] = __alloc_percpu(mibsize, mibalign);
636         if (!ptr[0])
637                 goto err0;
638
639         ptr[1] = __alloc_percpu(mibsize, mibalign);
640         if (!ptr[1])
641                 goto err1;
642
643         return 0;
644
645 err1:
646         free_percpu(ptr[0]);
647         ptr[0] = NULL;
648 err0:
649         return -ENOMEM;
650 }
651
652 void
653 snmp6_mib_free(void *ptr[2])
654 {
655         if (ptr == NULL)
656                 return;
657         free_percpu(ptr[0]);
658         free_percpu(ptr[1]);
659         ptr[0] = ptr[1] = NULL;
660 }
661
662 static int __init init_ipv6_mibs(void)
663 {
664         if (snmp6_mib_init((void **)ipv6_statistics, sizeof (struct ipstats_mib),
665                            __alignof__(struct ipstats_mib)) < 0)
666                 goto err_ip_mib;
667         if (snmp6_mib_init((void **)icmpv6_statistics, sizeof (struct icmpv6_mib),
668                            __alignof__(struct icmpv6_mib)) < 0)
669                 goto err_icmp_mib;
670         if (snmp6_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib),
671                            __alignof__(struct udp_mib)) < 0)
672                 goto err_udp_mib;
673         return 0;
674
675 err_udp_mib:
676         snmp6_mib_free((void **)icmpv6_statistics);
677 err_icmp_mib:
678         snmp6_mib_free((void **)ipv6_statistics);
679 err_ip_mib:
680         return -ENOMEM;
681         
682 }
683
684 static void cleanup_ipv6_mibs(void)
685 {
686         snmp6_mib_free((void **)ipv6_statistics);
687         snmp6_mib_free((void **)icmpv6_statistics);
688         snmp6_mib_free((void **)udp_stats_in6);
689 }
690
691 extern int ipv6_misc_proc_init(void);
692
693 static int __init inet6_init(void)
694 {
695         struct sk_buff *dummy_skb;
696         struct list_head *r;
697         int err;
698
699 #ifdef MODULE
700 #if 0 /* FIXME --RR */
701         if (!mod_member_present(&__this_module, can_unload))
702           return -EINVAL;
703
704         __this_module.can_unload = &ipv6_unload;
705 #endif
706 #endif
707
708         if (sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb)) {
709                 printk(KERN_CRIT "inet6_proto_init: size fault\n");
710                 return -EINVAL;
711         }
712
713         err = sk_alloc_slab(&tcpv6_prot, "tcpv6_sock");
714         if (err) {
715                 sk_alloc_slab_error(&tcpv6_prot);
716                 goto out;
717         }
718         err = sk_alloc_slab(&udpv6_prot, "udpv6_sock");
719         if (err) {
720                 sk_alloc_slab_error(&udpv6_prot);
721                 goto out_tcp_free_slab;
722         }
723         err = sk_alloc_slab(&rawv6_prot, "rawv6_sock");
724         if (err) {
725                 sk_alloc_slab_error(&rawv6_prot);
726                 goto out_udp_free_slab;
727         }
728
729         /* Register the socket-side information for inet6_create.  */
730         for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
731                 INIT_LIST_HEAD(r);
732
733         /* We MUST register RAW sockets before we create the ICMP6,
734          * IGMP6, or NDISC control sockets.
735          */
736         inet6_register_protosw(&rawv6_protosw);
737
738         /* Register the family here so that the init calls below will
739          * be able to create sockets. (?? is this dangerous ??)
740          */
741         (void) sock_register(&inet6_family_ops);
742
743         /* Initialise ipv6 mibs */
744         err = init_ipv6_mibs();
745         if (err)
746                 goto out_raw_free_slab;
747         
748         /*
749          *      ipngwg API draft makes clear that the correct semantics
750          *      for TCP and UDP is to consider one TCP and UDP instance
751          *      in a host availiable by both INET and INET6 APIs and
752          *      able to communicate via both network protocols.
753          */
754
755 #ifdef CONFIG_SYSCTL
756         ipv6_sysctl_register();
757 #endif
758         err = icmpv6_init(&inet6_family_ops);
759         if (err)
760                 goto icmp_fail;
761         err = ndisc_init(&inet6_family_ops);
762         if (err)
763                 goto ndisc_fail;
764         err = igmp6_init(&inet6_family_ops);
765         if (err)
766                 goto igmp_fail;
767         /* Create /proc/foo6 entries. */
768 #ifdef CONFIG_PROC_FS
769         err = -ENOMEM;
770         if (raw6_proc_init())
771                 goto proc_raw6_fail;
772         if (tcp6_proc_init())
773                 goto proc_tcp6_fail;
774         if (udp6_proc_init())
775                 goto proc_udp6_fail;
776         if (ipv6_misc_proc_init())
777                 goto proc_misc6_fail;
778
779         if (ac6_proc_init())
780                 goto proc_anycast6_fail;
781         if (if6_proc_init())
782                 goto proc_if6_fail;
783 #endif
784         ipv6_packet_init();
785         ip6_route_init();
786         ip6_flowlabel_init();
787         addrconf_init();
788         sit_init();
789
790         /* Init v6 extension headers. */
791         ipv6_rthdr_init();
792         ipv6_frag_init();
793         ipv6_nodata_init();
794         ipv6_destopt_init();
795
796         /* Init v6 transport protocols. */
797         udpv6_init();
798         tcpv6_init();
799         err = 0;
800 out:
801         return err;
802
803 #ifdef CONFIG_PROC_FS
804 proc_if6_fail:
805         ac6_proc_exit();
806 proc_anycast6_fail:
807         ipv6_misc_proc_exit();
808 proc_misc6_fail:
809         udp6_proc_exit();
810 proc_udp6_fail:
811         tcp6_proc_exit();
812 proc_tcp6_fail:
813         raw6_proc_exit();
814 proc_raw6_fail:
815         igmp6_cleanup();
816 #endif
817 igmp_fail:
818         ndisc_cleanup();
819 ndisc_fail:
820         icmpv6_cleanup();
821 icmp_fail:
822 #ifdef CONFIG_SYSCTL
823         ipv6_sysctl_unregister();
824 #endif
825         cleanup_ipv6_mibs();
826 out_raw_free_slab:
827         sk_free_slab(&rawv6_prot);
828 out_udp_free_slab:
829         sk_free_slab(&udpv6_prot);
830 out_tcp_free_slab:
831         sk_free_slab(&tcpv6_prot);
832         goto out;
833 }
834 module_init(inet6_init);
835
836 static void __exit inet6_exit(void)
837 {
838         /* First of all disallow new sockets creation. */
839         sock_unregister(PF_INET6);
840 #ifdef CONFIG_PROC_FS
841         if6_proc_exit();
842         ac6_proc_exit();
843         ipv6_misc_proc_exit();
844         udp6_proc_exit();
845         tcp6_proc_exit();
846         raw6_proc_exit();
847 #endif
848         /* Cleanup code parts. */
849         sit_cleanup();
850         ip6_flowlabel_cleanup();
851         addrconf_cleanup();
852         ip6_route_cleanup();
853         ipv6_packet_cleanup();
854         igmp6_cleanup();
855         ndisc_cleanup();
856         icmpv6_cleanup();
857 #ifdef CONFIG_SYSCTL
858         ipv6_sysctl_unregister();       
859 #endif
860         cleanup_ipv6_mibs();
861         sk_free_slab(&rawv6_prot);
862         sk_free_slab(&udpv6_prot);
863         sk_free_slab(&tcpv6_prot);
864 }
865 module_exit(inet6_exit);
866
867 MODULE_ALIAS_NETPROTO(PF_INET6);