af_inet6.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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.65 2001/10/02 02:22:36 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. #include <linux/module.h>
  23. #include <linux/config.h>
  24. #include <linux/errno.h>
  25. #include <linux/types.h>
  26. #include <linux/socket.h>
  27. #include <linux/in.h>
  28. #include <linux/kernel.h>
  29. #include <linux/major.h>
  30. #include <linux/sched.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>
  36. #include <linux/mm.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/proc_fs.h>
  39. #include <linux/stat.h>
  40. #include <linux/init.h>
  41. #include <linux/version.h>
  42. #include <linux/inet.h>
  43. #include <linux/netdevice.h>
  44. #include <linux/icmpv6.h>
  45. #include <linux/brlock.h>
  46. #include <linux/smp_lock.h>
  47. #include <net/ip.h>
  48. #include <net/ipv6.h>
  49. #include <net/udp.h>
  50. #include <net/tcp.h>
  51. #include <net/ipip.h>
  52. #include <net/protocol.h>
  53. #include <net/inet_common.h>
  54. #include <net/transp_v6.h>
  55. #include <net/ip6_route.h>
  56. #include <net/addrconf.h>
  57. #include <asm/uaccess.h>
  58. #include <asm/system.h>
  59. #ifdef MODULE
  60. static int unloadable = 0; /* XX: Turn to one when all is ok within the
  61.       module for allowing unload */
  62. #endif
  63. #if defined(MODULE) && LINUX_VERSION_CODE > 0x20115
  64. MODULE_AUTHOR("Cast of dozens");
  65. MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
  66. MODULE_PARM(unloadable, "i");
  67. #endif
  68. /* IPv6 procfs goodies... */
  69. #ifdef CONFIG_PROC_FS
  70. extern int raw6_get_info(char *, char **, off_t, int);
  71. extern int tcp6_get_info(char *, char **, off_t, int);
  72. extern int udp6_get_info(char *, char **, off_t, int);
  73. extern int afinet6_get_info(char *, char **, off_t, int);
  74. extern int afinet6_get_snmp(char *, char **, off_t, int);
  75. #endif
  76. #ifdef CONFIG_SYSCTL
  77. extern void ipv6_sysctl_register(void);
  78. extern void ipv6_sysctl_unregister(void);
  79. #endif
  80. #ifdef INET_REFCNT_DEBUG
  81. atomic_t inet6_sock_nr;
  82. #endif
  83. /* The inetsw table contains everything that inet_create needs to
  84.  * build a new socket.
  85.  */
  86. struct list_head inetsw6[SOCK_MAX];
  87. static void inet6_sock_destruct(struct sock *sk)
  88. {
  89. inet_sock_destruct(sk);
  90. #ifdef INET_REFCNT_DEBUG
  91. atomic_dec(&inet6_sock_nr);
  92. #endif
  93. MOD_DEC_USE_COUNT;
  94. }
  95. static int inet6_create(struct socket *sock, int protocol)
  96. {
  97. struct sock *sk;
  98. struct list_head *p;
  99. struct inet_protosw *answer;
  100. sk = sk_alloc(PF_INET6, GFP_KERNEL, 1);
  101. if (sk == NULL) 
  102. goto do_oom;
  103. /* Look for the requested type/protocol pair. */
  104. answer = NULL;
  105. br_read_lock_bh(BR_NETPROTO_LOCK);
  106. list_for_each(p, &inetsw6[sock->type]) {
  107. answer = list_entry(p, struct inet_protosw, list);
  108. /* Check the non-wild match. */
  109. if (protocol == answer->protocol) {
  110. if (protocol != IPPROTO_IP)
  111. break;
  112. } else {
  113. /* Check for the two wild cases. */
  114. if (IPPROTO_IP == protocol) {
  115. protocol = answer->protocol;
  116. break;
  117. }
  118. if (IPPROTO_IP == answer->protocol)
  119. break;
  120. }
  121. answer = NULL;
  122. }
  123. br_read_unlock_bh(BR_NETPROTO_LOCK);
  124. if (!answer)
  125. goto free_and_badtype;
  126. if (answer->capability > 0 && !capable(answer->capability))
  127. goto free_and_badperm;
  128. if (!protocol)
  129. goto free_and_noproto;
  130. sock->ops = answer->ops;
  131. sock_init_data(sock, sk);
  132. sk->prot = answer->prot;
  133. sk->no_check = answer->no_check;
  134. if (INET_PROTOSW_REUSE & answer->flags)
  135. sk->reuse = 1;
  136. if (SOCK_RAW == sock->type) {
  137. sk->num = protocol;
  138. if (IPPROTO_RAW == protocol)
  139. sk->protinfo.af_inet.hdrincl = 1;
  140. }
  141. sk->destruct            = inet6_sock_destruct;
  142. sk->zapped = 0;
  143. sk->family = PF_INET6;
  144. sk->protocol = protocol;
  145. sk->backlog_rcv = answer->prot->backlog_rcv;
  146. sk->net_pinfo.af_inet6.hop_limit  = -1;
  147. sk->net_pinfo.af_inet6.mcast_hops = -1;
  148. sk->net_pinfo.af_inet6.mc_loop   = 1;
  149. sk->net_pinfo.af_inet6.pmtudisc   = IPV6_PMTUDISC_WANT;
  150. /* Init the ipv4 part of the socket since we can have sockets
  151.  * using v6 API for ipv4.
  152.  */
  153. sk->protinfo.af_inet.ttl = 64;
  154. sk->protinfo.af_inet.mc_loop = 1;
  155. sk->protinfo.af_inet.mc_ttl = 1;
  156. sk->protinfo.af_inet.mc_index = 0;
  157. sk->protinfo.af_inet.mc_list = NULL;
  158. if (ipv4_config.no_pmtu_disc)
  159. sk->protinfo.af_inet.pmtudisc = IP_PMTUDISC_DONT;
  160. else
  161. sk->protinfo.af_inet.pmtudisc = IP_PMTUDISC_WANT;
  162. #ifdef INET_REFCNT_DEBUG
  163. atomic_inc(&inet6_sock_nr);
  164. atomic_inc(&inet_sock_nr);
  165. #endif
  166. MOD_INC_USE_COUNT;
  167. if (sk->num) {
  168. /* It assumes that any protocol which allows
  169.  * the user to assign a number at socket
  170.  * creation time automatically shares.
  171.  */
  172. sk->sport = ntohs(sk->num);
  173. sk->prot->hash(sk);
  174. }
  175. if (sk->prot->init) {
  176. int err = sk->prot->init(sk);
  177. if (err != 0) {
  178. MOD_DEC_USE_COUNT;
  179. inet_sock_release(sk);
  180. return err;
  181. }
  182. }
  183. return 0;
  184. free_and_badtype:
  185. sk_free(sk);
  186. return -ESOCKTNOSUPPORT;
  187. free_and_badperm:
  188. sk_free(sk);
  189. return -EPERM;
  190. free_and_noproto:
  191. sk_free(sk);
  192. return -EPROTONOSUPPORT;
  193. do_oom:
  194. return -ENOBUFS;
  195. }
  196. /* bind for INET6 API */
  197. static int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  198. {
  199. struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
  200. struct sock *sk = sock->sk;
  201. __u32 v4addr = 0;
  202. unsigned short snum;
  203. int addr_type = 0;
  204. /* If the socket has its own bind function then use it. */
  205. if(sk->prot->bind)
  206. return sk->prot->bind(sk, uaddr, addr_len);
  207. if (addr_len < SIN6_LEN_RFC2133)
  208. return -EINVAL;
  209. addr_type = ipv6_addr_type(&addr->sin6_addr);
  210. if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
  211. return -EINVAL;
  212. /* Check if the address belongs to the host. */
  213. if (addr_type == IPV6_ADDR_MAPPED) {
  214. v4addr = addr->sin6_addr.s6_addr32[3];
  215. if (inet_addr_type(v4addr) != RTN_LOCAL)
  216. return -EADDRNOTAVAIL;
  217. } else {
  218. if (addr_type != IPV6_ADDR_ANY) {
  219. /* ipv4 addr of the socket is invalid.  Only the
  220.  * unpecified and mapped address have a v4 equivalent.
  221.  */
  222. v4addr = LOOPBACK4_IPV6;
  223. if (!(addr_type & IPV6_ADDR_MULTICAST)) {
  224. if (!ipv6_chk_addr(&addr->sin6_addr, NULL))
  225. return -EADDRNOTAVAIL;
  226. }
  227. }
  228. }
  229. snum = ntohs(addr->sin6_port);
  230. if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
  231. return -EACCES;
  232. lock_sock(sk);
  233. /* Check these errors (active socket, double bind). */
  234. if ((sk->state != TCP_CLOSE) ||
  235.     (sk->num != 0)) {
  236. release_sock(sk);
  237. return -EINVAL;
  238. }
  239. if (addr_type & IPV6_ADDR_LINKLOCAL) {
  240. if (addr_len >= sizeof(struct sockaddr_in6) &&
  241.     addr->sin6_scope_id) {
  242. /* Override any existing binding, if another one
  243.  * is supplied by user.
  244.  */
  245. sk->bound_dev_if = addr->sin6_scope_id;
  246. }
  247. /* Binding to link-local address requires an interface */
  248. if (sk->bound_dev_if == 0) {
  249. release_sock(sk);
  250. return -EINVAL;
  251. }
  252. }
  253. sk->rcv_saddr = v4addr;
  254. sk->saddr = v4addr;
  255. ipv6_addr_copy(&sk->net_pinfo.af_inet6.rcv_saddr, &addr->sin6_addr);
  256. if (!(addr_type & IPV6_ADDR_MULTICAST))
  257. ipv6_addr_copy(&sk->net_pinfo.af_inet6.saddr, &addr->sin6_addr);
  258. /* Make sure we are allowed to bind here. */
  259. if (sk->prot->get_port(sk, snum) != 0) {
  260. sk->rcv_saddr = 0;
  261. sk->saddr = 0;
  262. memset(&sk->net_pinfo.af_inet6.rcv_saddr, 0, sizeof(struct in6_addr));
  263. memset(&sk->net_pinfo.af_inet6.saddr, 0, sizeof(struct in6_addr));
  264. release_sock(sk);
  265. return -EADDRINUSE;
  266. }
  267. if (addr_type != IPV6_ADDR_ANY)
  268. sk->userlocks |= SOCK_BINDADDR_LOCK;
  269. if (snum)
  270. sk->userlocks |= SOCK_BINDPORT_LOCK;
  271. sk->sport = ntohs(sk->num);
  272. sk->dport = 0;
  273. sk->daddr = 0;
  274. release_sock(sk);
  275. return 0;
  276. }
  277. static int inet6_release(struct socket *sock)
  278. {
  279. struct sock *sk = sock->sk;
  280. if (sk == NULL)
  281. return -EINVAL;
  282. /* Free mc lists */
  283. ipv6_sock_mc_close(sk);
  284. return inet_release(sock);
  285. }
  286. int inet6_destroy_sock(struct sock *sk)
  287. {
  288. struct sk_buff *skb;
  289. struct ipv6_txoptions *opt;
  290. /*
  291.  * Release destination entry
  292.  */
  293. sk_dst_reset(sk);
  294. /* Release rx options */
  295. if ((skb = xchg(&sk->net_pinfo.af_inet6.pktoptions, NULL)) != NULL)
  296. kfree_skb(skb);
  297. /* Free flowlabels */
  298. fl6_free_socklist(sk);
  299. /* Free tx options */
  300. if ((opt = xchg(&sk->net_pinfo.af_inet6.opt, NULL)) != NULL)
  301. sock_kfree_s(sk, opt, opt->tot_len);
  302. return 0;
  303. }
  304. /*
  305.  * This does both peername and sockname.
  306.  */
  307.  
  308. static int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
  309.  int *uaddr_len, int peer)
  310. {
  311. struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
  312. struct sock *sk = sock->sk;
  313.   
  314. sin->sin6_family = AF_INET6;
  315. sin->sin6_flowinfo = 0;
  316. sin->sin6_scope_id = 0;
  317. if (peer) {
  318. if (!sk->dport)
  319. return -ENOTCONN;
  320. if (((1<<sk->state)&(TCPF_CLOSE|TCPF_SYN_SENT)) && peer == 1)
  321. return -ENOTCONN;
  322. sin->sin6_port = sk->dport;
  323. memcpy(&sin->sin6_addr, &sk->net_pinfo.af_inet6.daddr,
  324.        sizeof(struct in6_addr));
  325. if (sk->net_pinfo.af_inet6.sndflow)
  326. sin->sin6_flowinfo = sk->net_pinfo.af_inet6.flow_label;
  327. } else {
  328. if (ipv6_addr_type(&sk->net_pinfo.af_inet6.rcv_saddr) == IPV6_ADDR_ANY)
  329. memcpy(&sin->sin6_addr, 
  330.        &sk->net_pinfo.af_inet6.saddr,
  331.        sizeof(struct in6_addr));
  332. else
  333. memcpy(&sin->sin6_addr, 
  334.        &sk->net_pinfo.af_inet6.rcv_saddr,
  335.        sizeof(struct in6_addr));
  336. sin->sin6_port = sk->sport;
  337. }
  338. if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
  339. sin->sin6_scope_id = sk->bound_dev_if;
  340. *uaddr_len = sizeof(*sin);
  341. return(0);
  342. }
  343. static int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
  344. {
  345. struct sock *sk = sock->sk;
  346. int err = -EINVAL;
  347. int pid;
  348. switch(cmd) 
  349. {
  350. case FIOSETOWN:
  351. case SIOCSPGRP:
  352. if (get_user(pid, (int *) arg))
  353. return -EFAULT;
  354. /* see sock_no_fcntl */
  355. if (current->pid != pid && current->pgrp != -pid && 
  356.     !capable(CAP_NET_ADMIN))
  357. return -EPERM;
  358. sk->proc = pid;
  359. return(0);
  360. case FIOGETOWN:
  361. case SIOCGPGRP:
  362. return put_user(sk->proc,(int *)arg);
  363. case SIOCGSTAMP:
  364. if(sk->stamp.tv_sec==0)
  365. return -ENOENT;
  366. err = copy_to_user((void *)arg, &sk->stamp,
  367.    sizeof(struct timeval));
  368. if (err)
  369. return -EFAULT;
  370. return 0;
  371. case SIOCADDRT:
  372. case SIOCDELRT:
  373.   
  374. return(ipv6_route_ioctl(cmd,(void *)arg));
  375. case SIOCSIFADDR:
  376. return addrconf_add_ifaddr((void *) arg);
  377. case SIOCDIFADDR:
  378. return addrconf_del_ifaddr((void *) arg);
  379. case SIOCSIFDSTADDR:
  380. return addrconf_set_dstaddr((void *) arg);
  381. default:
  382. if ((cmd >= SIOCDEVPRIVATE) &&
  383.     (cmd <= (SIOCDEVPRIVATE + 15)))
  384. return(dev_ioctl(cmd,(void *) arg));
  385. if(sk->prot->ioctl==0 || (err=sk->prot->ioctl(sk, cmd, arg))==-ENOIOCTLCMD)
  386. return(dev_ioctl(cmd,(void *) arg));
  387. return err;
  388. }
  389. /*NOTREACHED*/
  390. return(0);
  391. }
  392. struct proto_ops inet6_stream_ops = {
  393. family: PF_INET6,
  394. release: inet6_release,
  395. bind: inet6_bind,
  396. connect: inet_stream_connect, /* ok */
  397. socketpair: sock_no_socketpair, /* a do nothing */
  398. accept: inet_accept, /* ok */
  399. getname: inet6_getname, 
  400. poll: tcp_poll, /* ok */
  401. ioctl: inet6_ioctl, /* must change  */
  402. listen: inet_listen, /* ok */
  403. shutdown: inet_shutdown, /* ok */
  404. setsockopt: inet_setsockopt, /* ok */
  405. getsockopt: inet_getsockopt, /* ok */
  406. sendmsg: inet_sendmsg, /* ok */
  407. recvmsg: inet_recvmsg, /* ok */
  408. mmap: sock_no_mmap,
  409. sendpage: tcp_sendpage
  410. };
  411. struct proto_ops inet6_dgram_ops = {
  412. family: PF_INET6,
  413. release: inet6_release,
  414. bind: inet6_bind,
  415. connect: inet_dgram_connect, /* ok */
  416. socketpair: sock_no_socketpair, /* a do nothing */
  417. accept: sock_no_accept, /* a do nothing */
  418. getname: inet6_getname, 
  419. poll: datagram_poll, /* ok */
  420. ioctl: inet6_ioctl, /* must change  */
  421. listen: sock_no_listen, /* ok */
  422. shutdown: inet_shutdown, /* ok */
  423. setsockopt: inet_setsockopt, /* ok */
  424. getsockopt: inet_getsockopt, /* ok */
  425. sendmsg: inet_sendmsg, /* ok */
  426. recvmsg: inet_recvmsg, /* ok */
  427. mmap: sock_no_mmap,
  428. sendpage: sock_no_sendpage,
  429. };
  430. struct net_proto_family inet6_family_ops = {
  431. PF_INET6,
  432. inet6_create
  433. };
  434. #ifdef MODULE
  435. int ipv6_unload(void)
  436. {
  437. if (!unloadable) return 1;
  438. /* We keep internally 3 raw sockets */
  439. return atomic_read(&(__this_module.uc.usecount)) - 3;
  440. }
  441. #endif
  442. #if defined(MODULE) && defined(CONFIG_SYSCTL)
  443. extern void ipv6_sysctl_register(void);
  444. extern void ipv6_sysctl_unregister(void);
  445. #endif
  446. static struct inet_protosw rawv6_protosw = {
  447. type:        SOCK_RAW,
  448. protocol:    IPPROTO_IP, /* wild card */
  449. prot:        &rawv6_prot,
  450. ops:         &inet6_dgram_ops,
  451. capability:  CAP_NET_RAW,
  452. no_check:    UDP_CSUM_DEFAULT,
  453. flags:       INET_PROTOSW_REUSE,
  454. };
  455. #define INETSW6_ARRAY_LEN (sizeof(inetsw6_array) / sizeof(struct inet_protosw))
  456. void
  457. inet6_register_protosw(struct inet_protosw *p)
  458. {
  459. struct list_head *lh;
  460. struct inet_protosw *answer;
  461. int protocol = p->protocol;
  462. br_write_lock_bh(BR_NETPROTO_LOCK);
  463. if (p->type > SOCK_MAX)
  464. goto out_illegal;
  465. /* If we are trying to override a permanent protocol, bail. */
  466. answer = NULL;
  467. list_for_each(lh, &inetsw6[p->type]) {
  468. answer = list_entry(lh, struct inet_protosw, list);
  469. /* Check only the non-wild match. */
  470. if (protocol == answer->protocol &&
  471.     (INET_PROTOSW_PERMANENT & answer->flags))
  472. break;
  473. answer = NULL;
  474. }
  475. if (answer)
  476. goto out_permanent;
  477. /* Add to the BEGINNING so that we override any existing
  478.  * entry.  This means that when we remove this entry, the
  479.  * system automatically returns to the old behavior.
  480.  */
  481. list_add(&p->list, &inetsw6[p->type]);
  482. out:
  483. br_write_unlock_bh(BR_NETPROTO_LOCK);
  484. return;
  485. out_permanent:
  486. printk(KERN_ERR "Attempt to override permanent protocol %d.n",
  487.        protocol);
  488. goto out;
  489. out_illegal:
  490. printk(KERN_ERR
  491.        "Ignoring attempt to register illegal socket type %d.n",
  492.        p->type);
  493. goto out;
  494. }
  495. void
  496. inet6_unregister_protosw(struct inet_protosw *p)
  497. {
  498. inet_unregister_protosw(p);
  499. }
  500. static int __init inet6_init(void)
  501. {
  502. struct sk_buff *dummy_skb;
  503.         struct list_head *r;
  504. int err;
  505. #ifdef MODULE
  506. if (!mod_member_present(&__this_module, can_unload))
  507.   return -EINVAL;
  508. __this_module.can_unload = &ipv6_unload;
  509. #endif
  510. printk(KERN_INFO "IPv6 v0.8 for NET4.0n");
  511. if (sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb))
  512. {
  513. printk(KERN_CRIT "inet6_proto_init: size faultn");
  514. return -EINVAL;
  515. }
  516. /* Register the socket-side information for inet6_create.  */
  517. for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
  518. INIT_LIST_HEAD(r);
  519. /* We MUST register RAW sockets before we create the ICMP6,
  520.  * IGMP6, or NDISC control sockets.
  521.  */
  522. inet6_register_protosw(&rawv6_protosw);
  523. /*
  524.  * ipngwg API draft makes clear that the correct semantics
  525.  * for TCP and UDP is to consider one TCP and UDP instance
  526.  * in a host availiable by both INET and INET6 APIs and
  527.  * able to communicate via both network protocols.
  528.  */
  529. #if defined(MODULE) && defined(CONFIG_SYSCTL)
  530. ipv6_sysctl_register();
  531. #endif
  532. err = icmpv6_init(&inet6_family_ops);
  533. if (err)
  534. goto icmp_fail;
  535. err = ndisc_init(&inet6_family_ops);
  536. if (err)
  537. goto ndisc_fail;
  538. err = igmp6_init(&inet6_family_ops);
  539. if (err)
  540. goto igmp_fail;
  541. /* Create /proc/foo6 entries. */
  542. #ifdef CONFIG_PROC_FS
  543. err = -ENOMEM;
  544. if (!proc_net_create("raw6", 0, raw6_get_info))
  545. goto proc_raw6_fail;
  546. if (!proc_net_create("tcp6", 0, tcp6_get_info))
  547. goto proc_tcp6_fail;
  548. if (!proc_net_create("udp6", 0, udp6_get_info))
  549. goto proc_udp6_fail;
  550. if (!proc_net_create("sockstat6", 0, afinet6_get_info))
  551. goto proc_sockstat6_fail;
  552. if (!proc_net_create("snmp6", 0, afinet6_get_snmp))
  553. goto proc_snmp6_fail;
  554. #endif
  555. ipv6_netdev_notif_init();
  556. ipv6_packet_init();
  557. ip6_route_init();
  558. ip6_flowlabel_init();
  559. addrconf_init();
  560. sit_init();
  561. /* Init v6 transport protocols. */
  562. udpv6_init();
  563. tcpv6_init();
  564. /* Now the userspace is allowed to create INET6 sockets. */
  565. (void) sock_register(&inet6_family_ops);
  566. return 0;
  567. #ifdef CONFIG_PROC_FS
  568. proc_snmp6_fail:
  569. proc_net_remove("sockstat6");
  570. proc_sockstat6_fail:
  571. proc_net_remove("udp6");
  572. proc_udp6_fail:
  573. proc_net_remove("tcp6");
  574. proc_tcp6_fail:
  575.         proc_net_remove("raw6");
  576. proc_raw6_fail:
  577. igmp6_cleanup();
  578. #endif
  579. igmp_fail:
  580. ndisc_cleanup();
  581. ndisc_fail:
  582. icmpv6_cleanup();
  583. icmp_fail:
  584. #if defined(MODULE) && defined(CONFIG_SYSCTL)
  585. ipv6_sysctl_unregister();
  586. #endif
  587. return err;
  588. }
  589. module_init(inet6_init);
  590. #ifdef MODULE
  591. static void inet6_exit(void)
  592. {
  593. /* First of all disallow new sockets creation. */
  594. sock_unregister(PF_INET6);
  595. #ifdef CONFIG_PROC_FS
  596. proc_net_remove("raw6");
  597. proc_net_remove("tcp6");
  598. proc_net_remove("udp6");
  599. proc_net_remove("sockstat6");
  600. proc_net_remove("snmp6");
  601. #endif
  602. /* Cleanup code parts. */
  603. sit_cleanup();
  604. ipv6_netdev_notif_cleanup();
  605. ip6_flowlabel_cleanup();
  606. addrconf_cleanup();
  607. ip6_route_cleanup();
  608. ipv6_packet_cleanup();
  609. igmp6_cleanup();
  610. ndisc_cleanup();
  611. icmpv6_cleanup();
  612. #ifdef CONFIG_SYSCTL
  613. ipv6_sysctl_unregister();
  614. #endif
  615. }
  616. module_exit(inet6_exit);
  617. #endif /* MODULE */
  618. MODULE_LICENSE("GPL");