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 DEFINE_SPINLOCK(inetsw6_lock);
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_sock *inet;
118 struct ipv6_pinfo *np;
119 struct sock *sk;
120 struct list_head *p;
121 struct inet_protosw *answer;
122 struct proto *answer_prot;
123 unsigned char answer_flags;
124 char answer_no_check;
125 int rc;
126
127 /* Look for the requested type/protocol pair. */
128 answer = NULL;
129 rcu_read_lock();
130 list_for_each_rcu(p, &inetsw6[sock->type]) {
131 answer = list_entry(p, struct inet_protosw, list);
132
133 /* Check the non-wild match. */
134 if (protocol == answer->protocol) {
135 if (protocol != IPPROTO_IP)
136 break;
137 } else {
138 /* Check for the two wild cases. */
139 if (IPPROTO_IP == protocol) {
140 protocol = answer->protocol;
141 break;
142 }
143 if (IPPROTO_IP == answer->protocol)
144 break;
145 }
146 answer = NULL;
147 }
148
149 rc = -ESOCKTNOSUPPORT;
150 if (!answer)
151 goto out_rcu_unlock;
152 rc = -EPERM;
153 if (answer->capability > 0 && !capable(answer->capability))
154 goto out_rcu_unlock;
155 rc = -EPROTONOSUPPORT;
156 if (!protocol)
157 goto out_rcu_unlock;
158
159 sock->ops = answer->ops;
160
161 answer_prot = answer->prot;
162 answer_no_check = answer->no_check;
163 answer_flags = answer->flags;
164 rcu_read_unlock();
165
166 BUG_TRAP(answer_prot->slab != NULL);
167
168 rc = -ENOBUFS;
169 sk = sk_alloc(PF_INET6, GFP_KERNEL,
170 answer_prot->slab_obj_size,
171 answer_prot->slab);
172 if (sk == NULL)
173 goto out;
174
175 sock_init_data(sock, sk);
176 sk->sk_prot = answer_prot;
177 sk_set_owner(sk, sk->sk_prot->owner);
178
179 rc = 0;
180 sk->sk_no_check = answer_no_check;
181 if (INET_PROTOSW_REUSE & answer_flags)
182 sk->sk_reuse = 1;
183
184 inet = inet_sk(sk);
185
186 if (SOCK_RAW == sock->type) {
187 inet->num = protocol;
188 if (IPPROTO_RAW == protocol)
189 inet->hdrincl = 1;
190 }
191
192 sk->sk_destruct = inet6_sock_destruct;
193 sk->sk_family = PF_INET6;
194 sk->sk_protocol = protocol;
195
196 sk->sk_backlog_rcv = answer->prot->backlog_rcv;
197
198 inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
199 np->hop_limit = -1;
200 np->mcast_hops = -1;
201 np->mc_loop = 1;
202 np->pmtudisc = IPV6_PMTUDISC_WANT;
203 np->ipv6only = sysctl_ipv6_bindv6only;
204
205 /* Init the ipv4 part of the socket since we can have sockets
206 * using v6 API for ipv4.
207 */
208 inet->uc_ttl = -1;
209
210 inet->mc_loop = 1;
211 inet->mc_ttl = 1;
212 inet->mc_index = 0;
213 inet->mc_list = NULL;
214
215 if (ipv4_config.no_pmtu_disc)
216 inet->pmtudisc = IP_PMTUDISC_DONT;
217 else
218 inet->pmtudisc = IP_PMTUDISC_WANT;
219
220
221 #ifdef INET_REFCNT_DEBUG
222 atomic_inc(&inet6_sock_nr);
223 atomic_inc(&inet_sock_nr);
224 #endif
225 if (inet->num) {
226 /* It assumes that any protocol which allows
227 * the user to assign a number at socket
228 * creation time automatically shares.
229 */
230 inet->sport = ntohs(inet->num);
231 sk->sk_prot->hash(sk);
232 }
233 if (sk->sk_prot->init) {
234 rc = sk->sk_prot->init(sk);
235 if (rc) {
236 sk_common_release(sk);
237 goto out;
238 }
239 }
240 out:
241 return rc;
242 out_rcu_unlock:
243 rcu_read_unlock();
244 goto out;
245 }
246
247
248 /* bind for INET6 API */
249 int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
250 {
251 struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
252 struct sock *sk = sock->sk;
253 struct inet_sock *inet = inet_sk(sk);
254 struct ipv6_pinfo *np = inet6_sk(sk);
255 __u32 v4addr = 0;
256 unsigned short snum;
257 int addr_type = 0;
258 int err = 0;
259
260 /* If the socket has its own bind function then use it. */
261 if (sk->sk_prot->bind)
262 return sk->sk_prot->bind(sk, uaddr, addr_len);
263
264 if (addr_len < SIN6_LEN_RFC2133)
265 return -EINVAL;
266 addr_type = ipv6_addr_type(&addr->sin6_addr);
267 if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
268 return -EINVAL;
269
270 snum = ntohs(addr->sin6_port);
271 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
272 return -EACCES;
273
274 lock_sock(sk);
275
276 /* Check these errors (active socket, double bind). */
277 if (sk->sk_state != TCP_CLOSE || inet->num) {
278 err = -EINVAL;
279 goto out;
280 }
281
282 /* Check if the address belongs to the host. */
283 if (addr_type == IPV6_ADDR_MAPPED) {
284 v4addr = addr->sin6_addr.s6_addr32[3];
285 if (inet_addr_type(v4addr) != RTN_LOCAL) {
286 err = -EADDRNOTAVAIL;
287 goto out;
288 }
289 } else {
290 if (addr_type != IPV6_ADDR_ANY) {
291 struct net_device *dev = NULL;
292
293 if (addr_type & IPV6_ADDR_LINKLOCAL) {
294 if (addr_len >= sizeof(struct sockaddr_in6) &&
295 addr->sin6_scope_id) {
296 /* Override any existing binding, if another one
297 * is supplied by user.
298 */
299 sk->sk_bound_dev_if = addr->sin6_scope_id;
300 }
301
302 /* Binding to link-local address requires an interface */
303 if (!sk->sk_bound_dev_if) {
304 err = -EINVAL;
305 goto out;
306 }
307 dev = dev_get_by_index(sk->sk_bound_dev_if);
308 if (!dev) {
309 err = -ENODEV;
310 goto out;
311 }
312 }
313
314 /* ipv4 addr of the socket is invalid. Only the
315 * unspecified and mapped address have a v4 equivalent.
316 */
317 v4addr = LOOPBACK4_IPV6;
318 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
319 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
320 if (dev)
321 dev_put(dev);
322 err = -EADDRNOTAVAIL;
323 goto out;
324 }
325 }
326 if (dev)
327 dev_put(dev);
328 }
329 }
330
331 inet->rcv_saddr = v4addr;
332 inet->saddr = v4addr;
333
334 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
335
336 if (!(addr_type & IPV6_ADDR_MULTICAST))
337 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
338
339 /* Make sure we are allowed to bind here. */
340 if (sk->sk_prot->get_port(sk, snum)) {
341 inet_reset_saddr(sk);
342 err = -EADDRINUSE;
343 goto out;
344 }
345
346 if (addr_type != IPV6_ADDR_ANY)
347 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
348 if (snum)
349 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
350 inet->sport = ntohs(inet->num);
351 inet->dport = 0;
352 inet->daddr = 0;
353 out:
354 release_sock(sk);
355 return err;
356 }
357
358 int inet6_release(struct socket *sock)
359 {
360 struct sock *sk = sock->sk;
361
362 if (sk == NULL)
363 return -EINVAL;
364
365 /* Free mc lists */
366 ipv6_sock_mc_close(sk);
367
368 /* Free ac lists */
369 ipv6_sock_ac_close(sk);
370
371 return inet_release(sock);
372 }
373
374 int inet6_destroy_sock(struct sock *sk)
375 {
376 struct ipv6_pinfo *np = inet6_sk(sk);
377 struct sk_buff *skb;
378 struct ipv6_txoptions *opt;
379
380 /*
381 * Release destination entry
382 */
383
384 sk_dst_reset(sk);
385
386 /* Release rx options */
387
388 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
389 kfree_skb(skb);
390
391 /* Free flowlabels */
392 fl6_free_socklist(sk);
393
394 /* Free tx options */
395
396 if ((opt = xchg(&np->opt, NULL)) != NULL)
397 sock_kfree_s(sk, opt, opt->tot_len);
398
399 return 0;
400 }
401
402 /*
403 * This does both peername and sockname.
404 */
405
406 int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
407 int *uaddr_len, int peer)
408 {
409 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
410 struct sock *sk = sock->sk;
411 struct inet_sock *inet = inet_sk(sk);
412 struct ipv6_pinfo *np = inet6_sk(sk);
413
414 sin->sin6_family = AF_INET6;
415 sin->sin6_flowinfo = 0;
416 sin->sin6_scope_id = 0;
417 if (peer) {
418 if (!inet->dport)
419 return -ENOTCONN;
420 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
421 peer == 1)
422 return -ENOTCONN;
423 sin->sin6_port = inet->dport;
424 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
425 if (np->sndflow)
426 sin->sin6_flowinfo = np->flow_label;
427 } else {
428 if (ipv6_addr_any(&np->rcv_saddr))
429 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
430 else
431 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
432
433 sin->sin6_port = inet->sport;
434 }
435 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
436 sin->sin6_scope_id = sk->sk_bound_dev_if;
437 *uaddr_len = sizeof(*sin);
438 return(0);
439 }
440
441 int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
442 {
443 struct sock *sk = sock->sk;
444 int err = -EINVAL;
445
446 switch(cmd)
447 {
448 case SIOCGSTAMP:
449 return sock_get_timestamp(sk, (struct timeval __user *)arg);
450
451 case SIOCADDRT:
452 case SIOCDELRT:
453
454 return(ipv6_route_ioctl(cmd,(void __user *)arg));
455
456 case SIOCSIFADDR:
457 return addrconf_add_ifaddr((void __user *) arg);
458 case SIOCDIFADDR:
459 return addrconf_del_ifaddr((void __user *) arg);
460 case SIOCSIFDSTADDR:
461 return addrconf_set_dstaddr((void __user *) arg);
462 default:
463 if (!sk->sk_prot->ioctl ||
464 (err = sk->sk_prot->ioctl(sk, cmd, arg)) == -ENOIOCTLCMD)
465 return(dev_ioctl(cmd,(void __user *) arg));
466 return err;
467 }
468 /*NOTREACHED*/
469 return(0);
470 }
471
472 struct proto_ops inet6_stream_ops = {
473 .family = PF_INET6,
474 .owner = THIS_MODULE,
475 .release = inet6_release,
476 .bind = inet6_bind,
477 .connect = inet_stream_connect, /* ok */
478 .socketpair = sock_no_socketpair, /* a do nothing */
479 .accept = inet_accept, /* ok */
480 .getname = inet6_getname,
481 .poll = tcp_poll, /* ok */
482 .ioctl = inet6_ioctl, /* must change */
483 .listen = inet_listen, /* ok */
484 .shutdown = inet_shutdown, /* ok */
485 .setsockopt = sock_common_setsockopt, /* ok */
486 .getsockopt = sock_common_getsockopt, /* ok */
487 .sendmsg = inet_sendmsg, /* ok */
488 .recvmsg = sock_common_recvmsg, /* ok */
489 .mmap = sock_no_mmap,
490 .sendpage = tcp_sendpage
491 };
492
493 struct proto_ops inet6_dgram_ops = {
494 .family = PF_INET6,
495 .owner = THIS_MODULE,
496 .release = inet6_release,
497 .bind = inet6_bind,
498 .connect = inet_dgram_connect, /* ok */
499 .socketpair = sock_no_socketpair, /* a do nothing */
500 .accept = sock_no_accept, /* a do nothing */
501 .getname = inet6_getname,
502 .poll = udp_poll, /* ok */
503 .ioctl = inet6_ioctl, /* must change */
504 .listen = sock_no_listen, /* ok */
505 .shutdown = inet_shutdown, /* ok */
506 .setsockopt = sock_common_setsockopt, /* ok */
507 .getsockopt = sock_common_getsockopt, /* ok */
508 .sendmsg = inet_sendmsg, /* ok */
509 .recvmsg = sock_common_recvmsg, /* ok */
510 .mmap = sock_no_mmap,
511 .sendpage = sock_no_sendpage,
512 };
513
514 static struct net_proto_family inet6_family_ops = {
515 .family = PF_INET6,
516 .create = inet6_create,
517 .owner = THIS_MODULE,
518 };
519
520 #ifdef CONFIG_SYSCTL
521 extern void ipv6_sysctl_register(void);
522 extern void ipv6_sysctl_unregister(void);
523 #endif
524
525 /* Same as inet6_dgram_ops, sans udp_poll. */
526 static struct proto_ops inet6_sockraw_ops = {
527 .family = PF_INET6,
528 .owner = THIS_MODULE,
529 .release = inet6_release,
530 .bind = inet6_bind,
531 .connect = inet_dgram_connect, /* ok */
532 .socketpair = sock_no_socketpair, /* a do nothing */
533 .accept = sock_no_accept, /* a do nothing */
534 .getname = inet6_getname,
535 .poll = datagram_poll, /* ok */
536 .ioctl = inet6_ioctl, /* must change */
537 .listen = sock_no_listen, /* ok */
538 .shutdown = inet_shutdown, /* ok */
539 .setsockopt = sock_common_setsockopt, /* ok */
540 .getsockopt = sock_common_getsockopt, /* ok */
541 .sendmsg = inet_sendmsg, /* ok */
542 .recvmsg = sock_common_recvmsg, /* ok */
543 .mmap = sock_no_mmap,
544 .sendpage = sock_no_sendpage,
545 };
546
547 static struct inet_protosw rawv6_protosw = {
548 .type = SOCK_RAW,
549 .protocol = IPPROTO_IP, /* wild card */
550 .prot = &rawv6_prot,
551 .ops = &inet6_sockraw_ops,
552 .capability = CAP_NET_RAW,
553 .no_check = UDP_CSUM_DEFAULT,
554 .flags = INET_PROTOSW_REUSE,
555 };
556
557 void
558 inet6_register_protosw(struct inet_protosw *p)
559 {
560 struct list_head *lh;
561 struct inet_protosw *answer;
562 int protocol = p->protocol;
563 struct list_head *last_perm;
564
565 spin_lock_bh(&inetsw6_lock);
566
567 if (p->type >= SOCK_MAX)
568 goto out_illegal;
569
570 /* If we are trying to override a permanent protocol, bail. */
571 answer = NULL;
572 last_perm = &inetsw6[p->type];
573 list_for_each(lh, &inetsw6[p->type]) {
574 answer = list_entry(lh, struct inet_protosw, list);
575
576 /* Check only the non-wild match. */
577 if (INET_PROTOSW_PERMANENT & answer->flags) {
578 if (protocol == answer->protocol)
579 break;
580 last_perm = lh;
581 }
582
583 answer = NULL;
584 }
585 if (answer)
586 goto out_permanent;
587
588 /* Add the new entry after the last permanent entry if any, so that
589 * the new entry does not override a permanent entry when matched with
590 * a wild-card protocol. But it is allowed to override any existing
591 * non-permanent entry. This means that when we remove this entry, the
592 * system automatically returns to the old behavior.
593 */
594 list_add_rcu(&p->list, last_perm);
595 out:
596 spin_unlock_bh(&inetsw6_lock);
597 return;
598
599 out_permanent:
600 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
601 protocol);
602 goto out;
603
604 out_illegal:
605 printk(KERN_ERR
606 "Ignoring attempt to register invalid socket type %d.\n",
607 p->type);
608 goto out;
609 }
610
611 void
612 inet6_unregister_protosw(struct inet_protosw *p)
613 {
614 if (INET_PROTOSW_PERMANENT & p->flags) {
615 printk(KERN_ERR
616 "Attempt to unregister permanent protocol %d.\n",
617 p->protocol);
618 } else {
619 spin_lock_bh(&inetsw6_lock);
620 list_del_rcu(&p->list);
621 spin_unlock_bh(&inetsw6_lock);
622
623 synchronize_net();
624 }
625 }
626
627 int
628 snmp6_mib_init(void *ptr[2], size_t mibsize, size_t mibalign)
629 {
630 if (ptr == NULL)
631 return -EINVAL;
632
633 ptr[0] = __alloc_percpu(mibsize, mibalign);
634 if (!ptr[0])
635 goto err0;
636
637 ptr[1] = __alloc_percpu(mibsize, mibalign);
638 if (!ptr[1])
639 goto err1;
640
641 return 0;
642
643 err1:
644 free_percpu(ptr[0]);
645 ptr[0] = NULL;
646 err0:
647 return -ENOMEM;
648 }
649
650 void
651 snmp6_mib_free(void *ptr[2])
652 {
653 if (ptr == NULL)
654 return;
655 if (ptr[0])
656 free_percpu(ptr[0]);
657 if (ptr[1])
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);
868
|
This page was automatically generated by the
LXR engine.
|