2 * PF_INET6 socket protocol family
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Adapted from linux/net/ipv4/af_inet.c
10 * $Id: af_inet6.c,v 1.66 2002/02/01 22:01:04 davem Exp $
13 * piggy, Karl Knutson : Socket protocol table
14 * Hideaki YOSHIFUJI : sin6_scope_id support
15 * Arnaldo Melo : check proc_net_create return, cleanups
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.
24 #include <linux/module.h>
25 #include <linux/capability.h>
26 #include <linux/errno.h>
27 #include <linux/types.h>
28 #include <linux/socket.h>
30 #include <linux/kernel.h>
31 #include <linux/timer.h>
32 #include <linux/string.h>
33 #include <linux/sockios.h>
34 #include <linux/net.h>
35 #include <linux/fcntl.h>
37 #include <linux/interrupt.h>
38 #include <linux/proc_fs.h>
39 #include <linux/stat.h>
40 #include <linux/init.h>
42 #include <linux/inet.h>
43 #include <linux/netdevice.h>
44 #include <linux/icmpv6.h>
45 #include <linux/netfilter_ipv6.h>
50 #include <net/udplite.h>
53 #include <net/protocol.h>
54 #include <net/inet_common.h>
55 #include <net/transp_v6.h>
56 #include <net/ip6_route.h>
57 #include <net/addrconf.h>
58 #ifdef CONFIG_IPV6_TUNNEL
59 #include <net/ip6_tunnel.h>
62 #include <asm/uaccess.h>
63 #include <asm/system.h>
65 MODULE_AUTHOR("Cast of dozens");
66 MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
67 MODULE_LICENSE("GPL");
69 /* The inetsw6 table contains everything that inet6_create needs to
72 static struct list_head inetsw6[SOCK_MAX];
73 static DEFINE_SPINLOCK(inetsw6_lock);
75 static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
77 const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo);
79 return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
82 static int inet6_create(struct net *net, struct socket *sock, int protocol)
84 struct inet_sock *inet;
85 struct ipv6_pinfo *np;
88 struct inet_protosw *answer;
89 struct proto *answer_prot;
90 unsigned char answer_flags;
92 int try_loading_module = 0;
98 if (sock->type != SOCK_RAW &&
99 sock->type != SOCK_DGRAM &&
101 build_ehash_secret();
103 /* Look for the requested type/protocol pair. */
106 err = -ESOCKTNOSUPPORT;
108 list_for_each_rcu(p, &inetsw6[sock->type]) {
109 answer = list_entry(p, struct inet_protosw, list);
111 /* Check the non-wild match. */
112 if (protocol == answer->protocol) {
113 if (protocol != IPPROTO_IP)
116 /* Check for the two wild cases. */
117 if (IPPROTO_IP == protocol) {
118 protocol = answer->protocol;
121 if (IPPROTO_IP == answer->protocol)
124 err = -EPROTONOSUPPORT;
129 if (try_loading_module < 2) {
132 * Be more specific, e.g. net-pf-10-proto-132-type-1
133 * (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM)
135 if (++try_loading_module == 1)
136 request_module("net-pf-%d-proto-%d-type-%d",
137 PF_INET6, protocol, sock->type);
139 * Fall back to generic, e.g. net-pf-10-proto-132
140 * (net-pf-PF_INET6-proto-IPPROTO_SCTP)
143 request_module("net-pf-%d-proto-%d",
145 goto lookup_protocol;
151 if (answer->capability > 0 && !capable(answer->capability))
154 sock->ops = answer->ops;
155 answer_prot = answer->prot;
156 answer_no_check = answer->no_check;
157 answer_flags = answer->flags;
160 BUG_TRAP(answer_prot->slab != NULL);
163 sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot);
167 sock_init_data(sock, sk);
170 sk->sk_no_check = answer_no_check;
171 if (INET_PROTOSW_REUSE & answer_flags)
175 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
177 if (SOCK_RAW == sock->type) {
178 inet->num = protocol;
179 if (IPPROTO_RAW == protocol)
183 sk->sk_destruct = inet_sock_destruct;
184 sk->sk_family = PF_INET6;
185 sk->sk_protocol = protocol;
187 sk->sk_backlog_rcv = answer->prot->backlog_rcv;
189 inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
193 np->pmtudisc = IPV6_PMTUDISC_WANT;
194 np->ipv6only = init_net.ipv6.sysctl.bindv6only;
196 /* Init the ipv4 part of the socket since we can have sockets
197 * using v6 API for ipv4.
204 inet->mc_list = NULL;
206 if (ipv4_config.no_pmtu_disc)
207 inet->pmtudisc = IP_PMTUDISC_DONT;
209 inet->pmtudisc = IP_PMTUDISC_WANT;
211 * Increment only the relevant sk_prot->socks debug field, this changes
212 * the previous behaviour of incrementing both the equivalent to
213 * answer->prot->socks (inet6_sock_nr) and inet_sock_nr.
215 * This allows better debug granularity as we'll know exactly how many
216 * UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6
217 * transport protocol socks. -acme
219 sk_refcnt_debug_inc(sk);
222 /* It assumes that any protocol which allows
223 * the user to assign a number at socket
224 * creation time automatically shares.
226 inet->sport = htons(inet->num);
227 sk->sk_prot->hash(sk);
229 if (sk->sk_prot->init) {
230 err = sk->sk_prot->init(sk);
232 sk_common_release(sk);
244 /* bind for INET6 API */
245 int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
247 struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
248 struct sock *sk = sock->sk;
249 struct inet_sock *inet = inet_sk(sk);
250 struct ipv6_pinfo *np = inet6_sk(sk);
256 /* If the socket has its own bind function then use it. */
257 if (sk->sk_prot->bind)
258 return sk->sk_prot->bind(sk, uaddr, addr_len);
260 if (addr_len < SIN6_LEN_RFC2133)
262 addr_type = ipv6_addr_type(&addr->sin6_addr);
263 if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
266 snum = ntohs(addr->sin6_port);
267 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
272 /* Check these errors (active socket, double bind). */
273 if (sk->sk_state != TCP_CLOSE || inet->num) {
278 /* Check if the address belongs to the host. */
279 if (addr_type == IPV6_ADDR_MAPPED) {
280 v4addr = addr->sin6_addr.s6_addr32[3];
281 if (inet_addr_type(&init_net, v4addr) != RTN_LOCAL) {
282 err = -EADDRNOTAVAIL;
286 if (addr_type != IPV6_ADDR_ANY) {
287 struct net_device *dev = NULL;
289 if (addr_type & IPV6_ADDR_LINKLOCAL) {
290 if (addr_len >= sizeof(struct sockaddr_in6) &&
291 addr->sin6_scope_id) {
292 /* Override any existing binding, if another one
293 * is supplied by user.
295 sk->sk_bound_dev_if = addr->sin6_scope_id;
298 /* Binding to link-local address requires an interface */
299 if (!sk->sk_bound_dev_if) {
303 dev = dev_get_by_index(&init_net, sk->sk_bound_dev_if);
310 /* ipv4 addr of the socket is invalid. Only the
311 * unspecified and mapped address have a v4 equivalent.
313 v4addr = LOOPBACK4_IPV6;
314 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
315 if (!ipv6_chk_addr(&init_net, &addr->sin6_addr,
319 err = -EADDRNOTAVAIL;
328 inet->rcv_saddr = v4addr;
329 inet->saddr = v4addr;
331 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
333 if (!(addr_type & IPV6_ADDR_MULTICAST))
334 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
336 /* Make sure we are allowed to bind here. */
337 if (sk->sk_prot->get_port(sk, snum)) {
338 inet_reset_saddr(sk);
343 if (addr_type != IPV6_ADDR_ANY)
344 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
346 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
347 inet->sport = htons(inet->num);
355 EXPORT_SYMBOL(inet6_bind);
357 int inet6_release(struct socket *sock)
359 struct sock *sk = sock->sk;
365 ipv6_sock_mc_close(sk);
368 ipv6_sock_ac_close(sk);
370 return inet_release(sock);
373 EXPORT_SYMBOL(inet6_release);
375 int inet6_destroy_sock(struct sock *sk)
377 struct ipv6_pinfo *np = inet6_sk(sk);
379 struct ipv6_txoptions *opt;
381 /* Release rx options */
383 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
386 /* Free flowlabels */
387 fl6_free_socklist(sk);
389 /* Free tx options */
391 if ((opt = xchg(&np->opt, NULL)) != NULL)
392 sock_kfree_s(sk, opt, opt->tot_len);
397 EXPORT_SYMBOL_GPL(inet6_destroy_sock);
400 * This does both peername and sockname.
403 int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
404 int *uaddr_len, int peer)
406 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
407 struct sock *sk = sock->sk;
408 struct inet_sock *inet = inet_sk(sk);
409 struct ipv6_pinfo *np = inet6_sk(sk);
411 sin->sin6_family = AF_INET6;
412 sin->sin6_flowinfo = 0;
413 sin->sin6_scope_id = 0;
417 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
420 sin->sin6_port = inet->dport;
421 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
423 sin->sin6_flowinfo = np->flow_label;
425 if (ipv6_addr_any(&np->rcv_saddr))
426 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
428 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
430 sin->sin6_port = inet->sport;
432 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
433 sin->sin6_scope_id = sk->sk_bound_dev_if;
434 *uaddr_len = sizeof(*sin);
438 EXPORT_SYMBOL(inet6_getname);
440 int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
442 struct sock *sk = sock->sk;
447 return sock_get_timestamp(sk, (struct timeval __user *)arg);
450 return sock_get_timestampns(sk, (struct timespec __user *)arg);
455 return(ipv6_route_ioctl(cmd,(void __user *)arg));
458 return addrconf_add_ifaddr((void __user *) arg);
460 return addrconf_del_ifaddr((void __user *) arg);
462 return addrconf_set_dstaddr((void __user *) arg);
464 if (!sk->sk_prot->ioctl)
466 return sk->sk_prot->ioctl(sk, cmd, arg);
472 EXPORT_SYMBOL(inet6_ioctl);
474 const struct proto_ops inet6_stream_ops = {
476 .owner = THIS_MODULE,
477 .release = inet6_release,
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 = tcp_sendmsg, /* ok */
490 .recvmsg = sock_common_recvmsg, /* ok */
491 .mmap = sock_no_mmap,
492 .sendpage = tcp_sendpage,
493 .splice_read = tcp_splice_read,
495 .compat_setsockopt = compat_sock_common_setsockopt,
496 .compat_getsockopt = compat_sock_common_getsockopt,
500 const struct proto_ops inet6_dgram_ops = {
502 .owner = THIS_MODULE,
503 .release = inet6_release,
505 .connect = inet_dgram_connect, /* ok */
506 .socketpair = sock_no_socketpair, /* a do nothing */
507 .accept = sock_no_accept, /* a do nothing */
508 .getname = inet6_getname,
509 .poll = udp_poll, /* ok */
510 .ioctl = inet6_ioctl, /* must change */
511 .listen = sock_no_listen, /* ok */
512 .shutdown = inet_shutdown, /* ok */
513 .setsockopt = sock_common_setsockopt, /* ok */
514 .getsockopt = sock_common_getsockopt, /* ok */
515 .sendmsg = inet_sendmsg, /* ok */
516 .recvmsg = sock_common_recvmsg, /* ok */
517 .mmap = sock_no_mmap,
518 .sendpage = sock_no_sendpage,
520 .compat_setsockopt = compat_sock_common_setsockopt,
521 .compat_getsockopt = compat_sock_common_getsockopt,
525 static struct net_proto_family inet6_family_ops = {
527 .create = inet6_create,
528 .owner = THIS_MODULE,
531 int inet6_register_protosw(struct inet_protosw *p)
533 struct list_head *lh;
534 struct inet_protosw *answer;
535 struct list_head *last_perm;
536 int protocol = p->protocol;
539 spin_lock_bh(&inetsw6_lock);
542 if (p->type >= SOCK_MAX)
545 /* If we are trying to override a permanent protocol, bail. */
548 last_perm = &inetsw6[p->type];
549 list_for_each(lh, &inetsw6[p->type]) {
550 answer = list_entry(lh, struct inet_protosw, list);
552 /* Check only the non-wild match. */
553 if (INET_PROTOSW_PERMANENT & answer->flags) {
554 if (protocol == answer->protocol)
564 /* Add the new entry after the last permanent entry if any, so that
565 * the new entry does not override a permanent entry when matched with
566 * a wild-card protocol. But it is allowed to override any existing
567 * non-permanent entry. This means that when we remove this entry, the
568 * system automatically returns to the old behavior.
570 list_add_rcu(&p->list, last_perm);
573 spin_unlock_bh(&inetsw6_lock);
577 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
583 "Ignoring attempt to register invalid socket type %d.\n",
588 EXPORT_SYMBOL(inet6_register_protosw);
591 inet6_unregister_protosw(struct inet_protosw *p)
593 if (INET_PROTOSW_PERMANENT & p->flags) {
595 "Attempt to unregister permanent protocol %d.\n",
598 spin_lock_bh(&inetsw6_lock);
599 list_del_rcu(&p->list);
600 spin_unlock_bh(&inetsw6_lock);
606 EXPORT_SYMBOL(inet6_unregister_protosw);
608 int inet6_sk_rebuild_header(struct sock *sk)
611 struct dst_entry *dst;
612 struct ipv6_pinfo *np = inet6_sk(sk);
614 dst = __sk_dst_check(sk, np->dst_cookie);
617 struct inet_sock *inet = inet_sk(sk);
618 struct in6_addr *final_p = NULL, final;
621 memset(&fl, 0, sizeof(fl));
622 fl.proto = sk->sk_protocol;
623 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
624 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
625 fl.fl6_flowlabel = np->flow_label;
626 fl.oif = sk->sk_bound_dev_if;
627 fl.fl_ip_dport = inet->dport;
628 fl.fl_ip_sport = inet->sport;
629 security_sk_classify_flow(sk, &fl);
631 if (np->opt && np->opt->srcrt) {
632 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
633 ipv6_addr_copy(&final, &fl.fl6_dst);
634 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
638 err = ip6_dst_lookup(sk, &dst, &fl);
640 sk->sk_route_caps = 0;
644 ipv6_addr_copy(&fl.fl6_dst, final_p);
646 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0) {
647 sk->sk_err_soft = -err;
651 __ip6_dst_store(sk, dst, NULL, NULL);
657 EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
659 int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb)
661 struct ipv6_pinfo *np = inet6_sk(sk);
662 struct inet6_skb_parm *opt = IP6CB(skb);
665 if ((opt->hop && (np->rxopt.bits.hopopts ||
666 np->rxopt.bits.ohopopts)) ||
667 ((IPV6_FLOWINFO_MASK &
668 *(__be32 *)skb_network_header(skb)) &&
669 np->rxopt.bits.rxflow) ||
670 (opt->srcrt && (np->rxopt.bits.srcrt ||
671 np->rxopt.bits.osrcrt)) ||
672 ((opt->dst1 || opt->dst0) &&
673 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
679 EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
681 static int __init init_ipv6_mibs(void)
683 if (snmp_mib_init((void **)ipv6_statistics,
684 sizeof(struct ipstats_mib)) < 0)
686 if (snmp_mib_init((void **)icmpv6_statistics,
687 sizeof(struct icmpv6_mib)) < 0)
689 if (snmp_mib_init((void **)icmpv6msg_statistics,
690 sizeof(struct icmpv6msg_mib)) < 0)
691 goto err_icmpmsg_mib;
692 if (snmp_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib)) < 0)
694 if (snmp_mib_init((void **)udplite_stats_in6,
695 sizeof (struct udp_mib)) < 0)
696 goto err_udplite_mib;
700 snmp_mib_free((void **)udp_stats_in6);
702 snmp_mib_free((void **)icmpv6msg_statistics);
704 snmp_mib_free((void **)icmpv6_statistics);
706 snmp_mib_free((void **)ipv6_statistics);
712 static void cleanup_ipv6_mibs(void)
714 snmp_mib_free((void **)ipv6_statistics);
715 snmp_mib_free((void **)icmpv6_statistics);
716 snmp_mib_free((void **)icmpv6msg_statistics);
717 snmp_mib_free((void **)udp_stats_in6);
718 snmp_mib_free((void **)udplite_stats_in6);
721 static int inet6_net_init(struct net *net)
723 net->ipv6.sysctl.bindv6only = 0;
724 net->ipv6.sysctl.frags.high_thresh = 256 * 1024;
725 net->ipv6.sysctl.frags.low_thresh = 192 * 1024;
726 net->ipv6.sysctl.frags.timeout = IPV6_FRAG_TIMEOUT;
727 net->ipv6.sysctl.frags.secret_interval = 10 * 60 * HZ;
728 net->ipv6.sysctl.flush_delay = 0;
729 net->ipv6.sysctl.ip6_rt_max_size = 4096;
730 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
731 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
732 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
733 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
734 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
735 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
736 net->ipv6.sysctl.icmpv6_time = 1*HZ;
737 ipv6_frag_sysctl_init(net);
742 static void inet6_net_exit(struct net *net)
747 static struct pernet_operations inet6_net_ops = {
748 .init = inet6_net_init,
749 .exit = inet6_net_exit,
752 static int __init inet6_init(void)
754 struct sk_buff *dummy_skb;
758 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
761 #if 0 /* FIXME --RR */
762 if (!mod_member_present(&__this_module, can_unload))
765 __this_module.can_unload = &ipv6_unload;
768 err = proto_register(&tcpv6_prot, 1);
772 err = proto_register(&udpv6_prot, 1);
774 goto out_unregister_tcp_proto;
776 err = proto_register(&udplitev6_prot, 1);
778 goto out_unregister_udp_proto;
780 err = proto_register(&rawv6_prot, 1);
782 goto out_unregister_udplite_proto;
785 /* Register the socket-side information for inet6_create. */
786 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
789 /* We MUST register RAW sockets before we create the ICMP6,
790 * IGMP6, or NDISC control sockets.
794 goto out_unregister_raw_proto;
796 /* Register the family here so that the init calls below will
797 * be able to create sockets. (?? is this dangerous ??)
799 err = sock_register(&inet6_family_ops);
801 goto out_sock_register_fail;
803 /* Initialise ipv6 mibs */
804 err = init_ipv6_mibs();
806 goto out_unregister_sock;
809 * ipngwg API draft makes clear that the correct semantics
810 * for TCP and UDP is to consider one TCP and UDP instance
811 * in a host availiable by both INET and INET6 APIs and
812 * able to communicate via both network protocols.
815 err = register_pernet_subsys(&inet6_net_ops);
817 goto register_pernet_fail;
820 err = ipv6_sysctl_register();
824 err = icmpv6_init(&inet6_family_ops);
827 err = ndisc_init(&inet6_family_ops);
830 err = igmp6_init(&inet6_family_ops);
833 err = ipv6_netfilter_init();
836 /* Create /proc/foo6 entries. */
837 #ifdef CONFIG_PROC_FS
839 if (raw6_proc_init())
841 if (tcp6_proc_init())
843 if (udp6_proc_init())
845 if (udplite6_proc_init())
846 goto proc_udplite6_fail;
847 if (ipv6_misc_proc_init())
848 goto proc_misc6_fail;
851 goto proc_anycast6_fail;
855 err = ip6_route_init();
858 err = ip6_flowlabel_init();
860 goto ip6_flowlabel_fail;
861 err = addrconf_init();
865 /* Init v6 extension headers. */
866 err = ipv6_exthdrs_init();
868 goto ipv6_exthdrs_fail;
870 err = ipv6_frag_init();
874 /* Init v6 transport protocols. */
879 err = udplitev6_init();
887 err = ipv6_packet_init();
889 goto ipv6_packet_fail;
906 ip6_flowlabel_cleanup();
910 #ifdef CONFIG_PROC_FS
915 ipv6_misc_proc_exit();
917 udplite6_proc_exit();
926 ipv6_netfilter_fini();
935 ipv6_sysctl_unregister();
938 unregister_pernet_subsys(&inet6_net_ops);
939 register_pernet_fail:
942 sock_unregister(PF_INET6);
943 rtnl_unregister_all(PF_INET6);
944 out_sock_register_fail:
946 out_unregister_raw_proto:
947 proto_unregister(&rawv6_prot);
948 out_unregister_udplite_proto:
949 proto_unregister(&udplitev6_prot);
950 out_unregister_udp_proto:
951 proto_unregister(&udpv6_prot);
952 out_unregister_tcp_proto:
953 proto_unregister(&tcpv6_prot);
956 module_init(inet6_init);
958 static void __exit inet6_exit(void)
960 /* First of all disallow new sockets creation. */
961 sock_unregister(PF_INET6);
962 /* Disallow any further netlink messages */
963 rtnl_unregister_all(PF_INET6);
969 /* Cleanup code parts. */
970 ipv6_packet_cleanup();
974 ip6_flowlabel_cleanup();
976 #ifdef CONFIG_PROC_FS
978 /* Cleanup code parts. */
981 ipv6_misc_proc_exit();
982 udplite6_proc_exit();
987 ipv6_netfilter_fini();
993 ipv6_sysctl_unregister();
995 unregister_pernet_subsys(&inet6_net_ops);
997 proto_unregister(&rawv6_prot);
998 proto_unregister(&udplitev6_prot);
999 proto_unregister(&udpv6_prot);
1000 proto_unregister(&tcpv6_prot);
1002 module_exit(inet6_exit);
1004 MODULE_ALIAS_NETPROTO(PF_INET6);