Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * PF_INET6 socket protocol family |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3 | * Linux INET6 implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * Adapted from linux/net/ipv4/af_inet.c |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * Fixes: |
| 11 | * piggy, Karl Knutson : Socket protocol table |
| 12 | * Hideaki YOSHIFUJI : sin6_scope_id support |
| 13 | * Arnaldo Melo : check proc_net_create return, cleanups |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License |
| 17 | * as published by the Free Software Foundation; either version |
| 18 | * 2 of the License, or (at your option) any later version. |
| 19 | */ |
| 20 | |
| 21 | |
| 22 | #include <linux/module.h> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 23 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/timer.h> |
| 30 | #include <linux/string.h> |
| 31 | #include <linux/sockios.h> |
| 32 | #include <linux/net.h> |
| 33 | #include <linux/fcntl.h> |
| 34 | #include <linux/mm.h> |
| 35 | #include <linux/interrupt.h> |
| 36 | #include <linux/proc_fs.h> |
| 37 | #include <linux/stat.h> |
| 38 | #include <linux/init.h> |
| 39 | |
| 40 | #include <linux/inet.h> |
| 41 | #include <linux/netdevice.h> |
| 42 | #include <linux/icmpv6.h> |
Harald Welte | 2cc7d57 | 2005-08-09 19:42:34 -0700 | [diff] [blame] | 43 | #include <linux/netfilter_ipv6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include <net/ip.h> |
| 46 | #include <net/ipv6.h> |
| 47 | #include <net/udp.h> |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 48 | #include <net/udplite.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <net/tcp.h> |
| 50 | #include <net/ipip.h> |
| 51 | #include <net/protocol.h> |
| 52 | #include <net/inet_common.h> |
| 53 | #include <net/transp_v6.h> |
| 54 | #include <net/ip6_route.h> |
| 55 | #include <net/addrconf.h> |
| 56 | #ifdef CONFIG_IPV6_TUNNEL |
| 57 | #include <net/ip6_tunnel.h> |
| 58 | #endif |
| 59 | |
| 60 | #include <asm/uaccess.h> |
| 61 | #include <asm/system.h> |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 62 | #ifdef CONFIG_IPV6_MROUTE |
| 63 | #include <linux/mroute6.h> |
| 64 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
| 66 | MODULE_AUTHOR("Cast of dozens"); |
| 67 | MODULE_DESCRIPTION("IPv6 protocol stack for Linux"); |
| 68 | MODULE_LICENSE("GPL"); |
| 69 | |
Pavel Emelyanov | f126734 | 2007-11-23 21:28:44 +0800 | [diff] [blame] | 70 | /* The inetsw6 table contains everything that inet6_create needs to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * build a new socket. |
| 72 | */ |
| 73 | static struct list_head inetsw6[SOCK_MAX]; |
| 74 | static DEFINE_SPINLOCK(inetsw6_lock); |
| 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk) |
| 77 | { |
| 78 | const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo); |
| 79 | |
| 80 | return (struct ipv6_pinfo *)(((u8 *)sk) + offset); |
| 81 | } |
| 82 | |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 83 | static int inet6_create(struct net *net, struct socket *sock, int protocol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | { |
| 85 | struct inet_sock *inet; |
| 86 | struct ipv6_pinfo *np; |
| 87 | struct sock *sk; |
| 88 | struct list_head *p; |
| 89 | struct inet_protosw *answer; |
| 90 | struct proto *answer_prot; |
| 91 | unsigned char answer_flags; |
| 92 | char answer_no_check; |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 93 | int try_loading_module = 0; |
| 94 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
David S. Miller | b3da2cf | 2007-03-23 11:40:27 -0700 | [diff] [blame] | 96 | if (sock->type != SOCK_RAW && |
| 97 | sock->type != SOCK_DGRAM && |
| 98 | !inet_ehash_secret) |
| 99 | build_ehash_secret(); |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* Look for the requested type/protocol pair. */ |
| 102 | answer = NULL; |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 103 | lookup_protocol: |
| 104 | err = -ESOCKTNOSUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | rcu_read_lock(); |
| 106 | list_for_each_rcu(p, &inetsw6[sock->type]) { |
| 107 | answer = list_entry(p, struct inet_protosw, list); |
| 108 | |
| 109 | /* Check the non-wild match. */ |
| 110 | if (protocol == answer->protocol) { |
| 111 | if (protocol != IPPROTO_IP) |
| 112 | break; |
| 113 | } else { |
| 114 | /* Check for the two wild cases. */ |
| 115 | if (IPPROTO_IP == protocol) { |
| 116 | protocol = answer->protocol; |
| 117 | break; |
| 118 | } |
| 119 | if (IPPROTO_IP == answer->protocol) |
| 120 | break; |
| 121 | } |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 122 | err = -EPROTONOSUPPORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | answer = NULL; |
| 124 | } |
| 125 | |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 126 | if (!answer) { |
| 127 | if (try_loading_module < 2) { |
| 128 | rcu_read_unlock(); |
| 129 | /* |
| 130 | * Be more specific, e.g. net-pf-10-proto-132-type-1 |
| 131 | * (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM) |
| 132 | */ |
| 133 | if (++try_loading_module == 1) |
| 134 | request_module("net-pf-%d-proto-%d-type-%d", |
| 135 | PF_INET6, protocol, sock->type); |
| 136 | /* |
| 137 | * Fall back to generic, e.g. net-pf-10-proto-132 |
| 138 | * (net-pf-PF_INET6-proto-IPPROTO_SCTP) |
| 139 | */ |
| 140 | else |
| 141 | request_module("net-pf-%d-proto-%d", |
| 142 | PF_INET6, protocol); |
| 143 | goto lookup_protocol; |
| 144 | } else |
| 145 | goto out_rcu_unlock; |
| 146 | } |
| 147 | |
| 148 | err = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | if (answer->capability > 0 && !capable(answer->capability)) |
| 150 | goto out_rcu_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | sock->ops = answer->ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | answer_prot = answer->prot; |
| 154 | answer_no_check = answer->no_check; |
| 155 | answer_flags = answer->flags; |
| 156 | rcu_read_unlock(); |
| 157 | |
| 158 | BUG_TRAP(answer_prot->slab != NULL); |
| 159 | |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 160 | err = -ENOBUFS; |
Pavel Emelyanov | 6257ff2 | 2007-11-01 00:39:31 -0700 | [diff] [blame] | 161 | sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | if (sk == NULL) |
| 163 | goto out; |
| 164 | |
| 165 | sock_init_data(sock, sk); |
| 166 | |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 167 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | sk->sk_no_check = answer_no_check; |
| 169 | if (INET_PROTOSW_REUSE & answer_flags) |
| 170 | sk->sk_reuse = 1; |
| 171 | |
| 172 | inet = inet_sk(sk); |
Paul Moore | 469de9b | 2007-01-09 14:37:06 -0800 | [diff] [blame] | 173 | inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
| 175 | if (SOCK_RAW == sock->type) { |
| 176 | inet->num = protocol; |
| 177 | if (IPPROTO_RAW == protocol) |
| 178 | inet->hdrincl = 1; |
| 179 | } |
| 180 | |
Arnaldo Carvalho de Melo | e684897 | 2005-08-09 19:45:38 -0700 | [diff] [blame] | 181 | sk->sk_destruct = inet_sock_destruct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | sk->sk_family = PF_INET6; |
| 183 | sk->sk_protocol = protocol; |
| 184 | |
| 185 | sk->sk_backlog_rcv = answer->prot->backlog_rcv; |
| 186 | |
| 187 | inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk); |
| 188 | np->hop_limit = -1; |
| 189 | np->mcast_hops = -1; |
| 190 | np->mc_loop = 1; |
| 191 | np->pmtudisc = IPV6_PMTUDISC_WANT; |
Pavel Emelyanov | 2e761e0 | 2008-06-09 15:53:30 -0700 | [diff] [blame] | 192 | np->ipv6only = net->ipv6.sysctl.bindv6only; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | /* Init the ipv4 part of the socket since we can have sockets |
| 195 | * using v6 API for ipv4. |
| 196 | */ |
| 197 | inet->uc_ttl = -1; |
| 198 | |
| 199 | inet->mc_loop = 1; |
| 200 | inet->mc_ttl = 1; |
| 201 | inet->mc_index = 0; |
| 202 | inet->mc_list = NULL; |
| 203 | |
| 204 | if (ipv4_config.no_pmtu_disc) |
| 205 | inet->pmtudisc = IP_PMTUDISC_DONT; |
| 206 | else |
| 207 | inet->pmtudisc = IP_PMTUDISC_WANT; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 208 | /* |
Arnaldo Carvalho de Melo | e684897 | 2005-08-09 19:45:38 -0700 | [diff] [blame] | 209 | * Increment only the relevant sk_prot->socks debug field, this changes |
| 210 | * the previous behaviour of incrementing both the equivalent to |
| 211 | * answer->prot->socks (inet6_sock_nr) and inet_sock_nr. |
| 212 | * |
| 213 | * This allows better debug granularity as we'll know exactly how many |
| 214 | * UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6 |
| 215 | * transport protocol socks. -acme |
| 216 | */ |
| 217 | sk_refcnt_debug_inc(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | if (inet->num) { |
| 220 | /* It assumes that any protocol which allows |
| 221 | * the user to assign a number at socket |
| 222 | * creation time automatically shares. |
| 223 | */ |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 224 | inet->sport = htons(inet->num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | sk->sk_prot->hash(sk); |
| 226 | } |
| 227 | if (sk->sk_prot->init) { |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 228 | err = sk->sk_prot->init(sk); |
| 229 | if (err) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | sk_common_release(sk); |
| 231 | goto out; |
| 232 | } |
| 233 | } |
| 234 | out: |
YOSHIFUJI Hideaki | af1afe8 | 2005-12-02 20:56:57 -0800 | [diff] [blame] | 235 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | out_rcu_unlock: |
| 237 | rcu_read_unlock(); |
| 238 | goto out; |
| 239 | } |
| 240 | |
| 241 | |
| 242 | /* bind for INET6 API */ |
| 243 | int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) |
| 244 | { |
| 245 | struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr; |
| 246 | struct sock *sk = sock->sk; |
| 247 | struct inet_sock *inet = inet_sk(sk); |
| 248 | struct ipv6_pinfo *np = inet6_sk(sk); |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 249 | struct net *net = sock_net(sk); |
Al Viro | fd68322 | 2006-09-26 22:17:51 -0700 | [diff] [blame] | 250 | __be32 v4addr = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | unsigned short snum; |
| 252 | int addr_type = 0; |
| 253 | int err = 0; |
| 254 | |
| 255 | /* If the socket has its own bind function then use it. */ |
| 256 | if (sk->sk_prot->bind) |
| 257 | return sk->sk_prot->bind(sk, uaddr, addr_len); |
| 258 | |
| 259 | if (addr_len < SIN6_LEN_RFC2133) |
| 260 | return -EINVAL; |
| 261 | addr_type = ipv6_addr_type(&addr->sin6_addr); |
| 262 | if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM) |
| 263 | return -EINVAL; |
| 264 | |
| 265 | snum = ntohs(addr->sin6_port); |
| 266 | if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE)) |
| 267 | return -EACCES; |
| 268 | |
| 269 | lock_sock(sk); |
| 270 | |
| 271 | /* Check these errors (active socket, double bind). */ |
| 272 | if (sk->sk_state != TCP_CLOSE || inet->num) { |
| 273 | err = -EINVAL; |
| 274 | goto out; |
| 275 | } |
| 276 | |
| 277 | /* Check if the address belongs to the host. */ |
| 278 | if (addr_type == IPV6_ADDR_MAPPED) { |
| 279 | v4addr = addr->sin6_addr.s6_addr32[3]; |
Benjamin Thery | 075de93 | 2008-03-05 10:45:59 -0800 | [diff] [blame] | 280 | if (inet_addr_type(net, v4addr) != RTN_LOCAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | err = -EADDRNOTAVAIL; |
| 282 | goto out; |
| 283 | } |
| 284 | } else { |
| 285 | if (addr_type != IPV6_ADDR_ANY) { |
| 286 | struct net_device *dev = NULL; |
| 287 | |
| 288 | if (addr_type & IPV6_ADDR_LINKLOCAL) { |
| 289 | if (addr_len >= sizeof(struct sockaddr_in6) && |
| 290 | addr->sin6_scope_id) { |
| 291 | /* Override any existing binding, if another one |
| 292 | * is supplied by user. |
| 293 | */ |
| 294 | sk->sk_bound_dev_if = addr->sin6_scope_id; |
| 295 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | /* Binding to link-local address requires an interface */ |
| 298 | if (!sk->sk_bound_dev_if) { |
| 299 | err = -EINVAL; |
| 300 | goto out; |
| 301 | } |
Benjamin Thery | 075de93 | 2008-03-05 10:45:59 -0800 | [diff] [blame] | 302 | dev = dev_get_by_index(net, sk->sk_bound_dev_if); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | if (!dev) { |
| 304 | err = -ENODEV; |
| 305 | goto out; |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | /* ipv4 addr of the socket is invalid. Only the |
| 310 | * unspecified and mapped address have a v4 equivalent. |
| 311 | */ |
| 312 | v4addr = LOOPBACK4_IPV6; |
| 313 | if (!(addr_type & IPV6_ADDR_MULTICAST)) { |
Benjamin Thery | 075de93 | 2008-03-05 10:45:59 -0800 | [diff] [blame] | 314 | if (!ipv6_chk_addr(net, &addr->sin6_addr, |
Daniel Lezcano | bfeade0 | 2008-01-10 22:43:18 -0800 | [diff] [blame] | 315 | dev, 0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | if (dev) |
| 317 | dev_put(dev); |
| 318 | err = -EADDRNOTAVAIL; |
| 319 | goto out; |
| 320 | } |
| 321 | } |
| 322 | if (dev) |
| 323 | dev_put(dev); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | inet->rcv_saddr = v4addr; |
| 328 | inet->saddr = v4addr; |
| 329 | |
| 330 | ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | if (!(addr_type & IPV6_ADDR_MULTICAST)) |
| 333 | ipv6_addr_copy(&np->saddr, &addr->sin6_addr); |
| 334 | |
| 335 | /* Make sure we are allowed to bind here. */ |
| 336 | if (sk->sk_prot->get_port(sk, snum)) { |
| 337 | inet_reset_saddr(sk); |
| 338 | err = -EADDRINUSE; |
| 339 | goto out; |
| 340 | } |
| 341 | |
| 342 | if (addr_type != IPV6_ADDR_ANY) |
| 343 | sk->sk_userlocks |= SOCK_BINDADDR_LOCK; |
| 344 | if (snum) |
| 345 | sk->sk_userlocks |= SOCK_BINDPORT_LOCK; |
Al Viro | e69a4ad | 2006-11-14 20:56:00 -0800 | [diff] [blame] | 346 | inet->sport = htons(inet->num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | inet->dport = 0; |
| 348 | inet->daddr = 0; |
| 349 | out: |
| 350 | release_sock(sk); |
| 351 | return err; |
| 352 | } |
| 353 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 354 | EXPORT_SYMBOL(inet6_bind); |
| 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | int inet6_release(struct socket *sock) |
| 357 | { |
| 358 | struct sock *sk = sock->sk; |
| 359 | |
| 360 | if (sk == NULL) |
| 361 | return -EINVAL; |
| 362 | |
| 363 | /* Free mc lists */ |
| 364 | ipv6_sock_mc_close(sk); |
| 365 | |
| 366 | /* Free ac lists */ |
| 367 | ipv6_sock_ac_close(sk); |
| 368 | |
| 369 | return inet_release(sock); |
| 370 | } |
| 371 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 372 | EXPORT_SYMBOL(inet6_release); |
| 373 | |
Brian Haley | 7d06b2e | 2008-06-14 17:04:49 -0700 | [diff] [blame] | 374 | void inet6_destroy_sock(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | { |
| 376 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 377 | struct sk_buff *skb; |
| 378 | struct ipv6_txoptions *opt; |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | /* Release rx options */ |
| 381 | |
| 382 | if ((skb = xchg(&np->pktoptions, NULL)) != NULL) |
| 383 | kfree_skb(skb); |
| 384 | |
| 385 | /* Free flowlabels */ |
| 386 | fl6_free_socklist(sk); |
| 387 | |
| 388 | /* Free tx options */ |
| 389 | |
| 390 | if ((opt = xchg(&np->opt, NULL)) != NULL) |
| 391 | sock_kfree_s(sk, opt, opt->tot_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Arnaldo Carvalho de Melo | 3cf3dc6 | 2005-12-13 23:23:20 -0800 | [diff] [blame] | 394 | EXPORT_SYMBOL_GPL(inet6_destroy_sock); |
| 395 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | /* |
| 397 | * This does both peername and sockname. |
| 398 | */ |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 399 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | int inet6_getname(struct socket *sock, struct sockaddr *uaddr, |
| 401 | int *uaddr_len, int peer) |
| 402 | { |
| 403 | struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr; |
| 404 | struct sock *sk = sock->sk; |
| 405 | struct inet_sock *inet = inet_sk(sk); |
| 406 | struct ipv6_pinfo *np = inet6_sk(sk); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | sin->sin6_family = AF_INET6; |
| 409 | sin->sin6_flowinfo = 0; |
| 410 | sin->sin6_scope_id = 0; |
| 411 | if (peer) { |
| 412 | if (!inet->dport) |
| 413 | return -ENOTCONN; |
| 414 | if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) && |
| 415 | peer == 1) |
| 416 | return -ENOTCONN; |
| 417 | sin->sin6_port = inet->dport; |
| 418 | ipv6_addr_copy(&sin->sin6_addr, &np->daddr); |
| 419 | if (np->sndflow) |
| 420 | sin->sin6_flowinfo = np->flow_label; |
| 421 | } else { |
| 422 | if (ipv6_addr_any(&np->rcv_saddr)) |
| 423 | ipv6_addr_copy(&sin->sin6_addr, &np->saddr); |
| 424 | else |
| 425 | ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr); |
| 426 | |
| 427 | sin->sin6_port = inet->sport; |
| 428 | } |
| 429 | if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL) |
| 430 | sin->sin6_scope_id = sk->sk_bound_dev_if; |
| 431 | *uaddr_len = sizeof(*sin); |
| 432 | return(0); |
| 433 | } |
| 434 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 435 | EXPORT_SYMBOL(inet6_getname); |
| 436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) |
| 438 | { |
| 439 | struct sock *sk = sock->sk; |
YOSHIFUJI Hideaki | 3b1e0a6 | 2008-03-26 02:26:21 +0900 | [diff] [blame] | 440 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 442 | switch(cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
| 444 | case SIOCGSTAMP: |
| 445 | return sock_get_timestamp(sk, (struct timeval __user *)arg); |
| 446 | |
Eric Dumazet | ae40eb1 | 2007-03-18 17:33:16 -0700 | [diff] [blame] | 447 | case SIOCGSTAMPNS: |
| 448 | return sock_get_timestampns(sk, (struct timespec __user *)arg); |
| 449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | case SIOCADDRT: |
| 451 | case SIOCDELRT: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 452 | |
Daniel Lezcano | 5578689 | 2008-03-04 13:47:47 -0800 | [diff] [blame] | 453 | return(ipv6_route_ioctl(net, cmd, (void __user *)arg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
| 455 | case SIOCSIFADDR: |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 456 | return addrconf_add_ifaddr(net, (void __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | case SIOCDIFADDR: |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 458 | return addrconf_del_ifaddr(net, (void __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | case SIOCSIFDSTADDR: |
Daniel Lezcano | af28493 | 2008-03-05 10:46:57 -0800 | [diff] [blame] | 460 | return addrconf_set_dstaddr(net, (void __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | default: |
Christoph Hellwig | b5e5fa5 | 2006-01-03 14:18:33 -0800 | [diff] [blame] | 462 | if (!sk->sk_prot->ioctl) |
| 463 | return -ENOIOCTLCMD; |
| 464 | return sk->sk_prot->ioctl(sk, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
| 466 | /*NOTREACHED*/ |
| 467 | return(0); |
| 468 | } |
| 469 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 470 | EXPORT_SYMBOL(inet6_ioctl); |
| 471 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 472 | const struct proto_ops inet6_stream_ops = { |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 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 */ |
David S. Miller | 3516ffb | 2007-08-02 19:23:56 -0700 | [diff] [blame] | 487 | .sendmsg = tcp_sendmsg, /* ok */ |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 488 | .recvmsg = sock_common_recvmsg, /* ok */ |
| 489 | .mmap = sock_no_mmap, |
| 490 | .sendpage = tcp_sendpage, |
Jens Axboe | a0974dd | 2007-11-06 23:31:58 -0800 | [diff] [blame] | 491 | .splice_read = tcp_splice_read, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 492 | #ifdef CONFIG_COMPAT |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 493 | .compat_setsockopt = compat_sock_common_setsockopt, |
| 494 | .compat_getsockopt = compat_sock_common_getsockopt, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 495 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | }; |
| 497 | |
Eric Dumazet | 90ddc4f | 2005-12-22 12:49:22 -0800 | [diff] [blame] | 498 | const struct proto_ops inet6_dgram_ops = { |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 499 | .family = PF_INET6, |
| 500 | .owner = THIS_MODULE, |
| 501 | .release = inet6_release, |
| 502 | .bind = inet6_bind, |
| 503 | .connect = inet_dgram_connect, /* ok */ |
| 504 | .socketpair = sock_no_socketpair, /* a do nothing */ |
| 505 | .accept = sock_no_accept, /* a do nothing */ |
| 506 | .getname = inet6_getname, |
| 507 | .poll = udp_poll, /* ok */ |
| 508 | .ioctl = inet6_ioctl, /* must change */ |
| 509 | .listen = sock_no_listen, /* ok */ |
| 510 | .shutdown = inet_shutdown, /* ok */ |
| 511 | .setsockopt = sock_common_setsockopt, /* ok */ |
| 512 | .getsockopt = sock_common_getsockopt, /* ok */ |
| 513 | .sendmsg = inet_sendmsg, /* ok */ |
| 514 | .recvmsg = sock_common_recvmsg, /* ok */ |
| 515 | .mmap = sock_no_mmap, |
| 516 | .sendpage = sock_no_sendpage, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 517 | #ifdef CONFIG_COMPAT |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 518 | .compat_setsockopt = compat_sock_common_setsockopt, |
| 519 | .compat_getsockopt = compat_sock_common_getsockopt, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 520 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | }; |
| 522 | |
| 523 | static struct net_proto_family inet6_family_ops = { |
| 524 | .family = PF_INET6, |
| 525 | .create = inet6_create, |
| 526 | .owner = THIS_MODULE, |
| 527 | }; |
| 528 | |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 529 | int inet6_register_protosw(struct inet_protosw *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
| 531 | struct list_head *lh; |
| 532 | struct inet_protosw *answer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | struct list_head *last_perm; |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 534 | int protocol = p->protocol; |
| 535 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
| 537 | spin_lock_bh(&inetsw6_lock); |
| 538 | |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 539 | ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | if (p->type >= SOCK_MAX) |
| 541 | goto out_illegal; |
| 542 | |
| 543 | /* If we are trying to override a permanent protocol, bail. */ |
| 544 | answer = NULL; |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 545 | ret = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | last_perm = &inetsw6[p->type]; |
| 547 | list_for_each(lh, &inetsw6[p->type]) { |
| 548 | answer = list_entry(lh, struct inet_protosw, list); |
| 549 | |
| 550 | /* Check only the non-wild match. */ |
| 551 | if (INET_PROTOSW_PERMANENT & answer->flags) { |
| 552 | if (protocol == answer->protocol) |
| 553 | break; |
| 554 | last_perm = lh; |
| 555 | } |
| 556 | |
| 557 | answer = NULL; |
| 558 | } |
| 559 | if (answer) |
| 560 | goto out_permanent; |
| 561 | |
| 562 | /* Add the new entry after the last permanent entry if any, so that |
| 563 | * the new entry does not override a permanent entry when matched with |
| 564 | * a wild-card protocol. But it is allowed to override any existing |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 565 | * non-permanent entry. This means that when we remove this entry, the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | * system automatically returns to the old behavior. |
| 567 | */ |
| 568 | list_add_rcu(&p->list, last_perm); |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 569 | ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | out: |
| 571 | spin_unlock_bh(&inetsw6_lock); |
Daniel Lezcano | 87c3efb | 2007-12-11 02:25:01 -0800 | [diff] [blame] | 572 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | |
| 574 | out_permanent: |
| 575 | printk(KERN_ERR "Attempt to override permanent protocol %d.\n", |
| 576 | protocol); |
| 577 | goto out; |
| 578 | |
| 579 | out_illegal: |
| 580 | printk(KERN_ERR |
| 581 | "Ignoring attempt to register invalid socket type %d.\n", |
| 582 | p->type); |
| 583 | goto out; |
| 584 | } |
| 585 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 586 | EXPORT_SYMBOL(inet6_register_protosw); |
| 587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | void |
| 589 | inet6_unregister_protosw(struct inet_protosw *p) |
| 590 | { |
| 591 | if (INET_PROTOSW_PERMANENT & p->flags) { |
| 592 | printk(KERN_ERR |
| 593 | "Attempt to unregister permanent protocol %d.\n", |
| 594 | p->protocol); |
| 595 | } else { |
| 596 | spin_lock_bh(&inetsw6_lock); |
| 597 | list_del_rcu(&p->list); |
| 598 | spin_unlock_bh(&inetsw6_lock); |
| 599 | |
| 600 | synchronize_net(); |
| 601 | } |
| 602 | } |
| 603 | |
YOSHIFUJI Hideaki | 7159039 | 2007-02-22 22:05:40 +0900 | [diff] [blame] | 604 | EXPORT_SYMBOL(inet6_unregister_protosw); |
| 605 | |
Arnaldo Carvalho de Melo | b9750ce | 2005-12-13 23:22:54 -0800 | [diff] [blame] | 606 | int inet6_sk_rebuild_header(struct sock *sk) |
| 607 | { |
| 608 | int err; |
| 609 | struct dst_entry *dst; |
| 610 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 611 | |
| 612 | dst = __sk_dst_check(sk, np->dst_cookie); |
| 613 | |
| 614 | if (dst == NULL) { |
| 615 | struct inet_sock *inet = inet_sk(sk); |
| 616 | struct in6_addr *final_p = NULL, final; |
| 617 | struct flowi fl; |
| 618 | |
| 619 | memset(&fl, 0, sizeof(fl)); |
| 620 | fl.proto = sk->sk_protocol; |
| 621 | ipv6_addr_copy(&fl.fl6_dst, &np->daddr); |
| 622 | ipv6_addr_copy(&fl.fl6_src, &np->saddr); |
| 623 | fl.fl6_flowlabel = np->flow_label; |
| 624 | fl.oif = sk->sk_bound_dev_if; |
| 625 | fl.fl_ip_dport = inet->dport; |
| 626 | fl.fl_ip_sport = inet->sport; |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 627 | security_sk_classify_flow(sk, &fl); |
Arnaldo Carvalho de Melo | b9750ce | 2005-12-13 23:22:54 -0800 | [diff] [blame] | 628 | |
| 629 | if (np->opt && np->opt->srcrt) { |
| 630 | struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt; |
| 631 | ipv6_addr_copy(&final, &fl.fl6_dst); |
| 632 | ipv6_addr_copy(&fl.fl6_dst, rt0->addr); |
| 633 | final_p = &final; |
| 634 | } |
| 635 | |
| 636 | err = ip6_dst_lookup(sk, &dst, &fl); |
| 637 | if (err) { |
| 638 | sk->sk_route_caps = 0; |
| 639 | return err; |
| 640 | } |
| 641 | if (final_p) |
| 642 | ipv6_addr_copy(&fl.fl6_dst, final_p); |
| 643 | |
| 644 | if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0) { |
| 645 | sk->sk_err_soft = -err; |
| 646 | return err; |
| 647 | } |
| 648 | |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 649 | __ip6_dst_store(sk, dst, NULL, NULL); |
Arnaldo Carvalho de Melo | b9750ce | 2005-12-13 23:22:54 -0800 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header); |
| 656 | |
Arnaldo Carvalho de Melo | 399c07d | 2005-12-13 23:24:28 -0800 | [diff] [blame] | 657 | int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb) |
| 658 | { |
| 659 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 660 | struct inet6_skb_parm *opt = IP6CB(skb); |
| 661 | |
| 662 | if (np->rxopt.all) { |
| 663 | if ((opt->hop && (np->rxopt.bits.hopopts || |
| 664 | np->rxopt.bits.ohopopts)) || |
Arnaldo Carvalho de Melo | d56f90a | 2007-04-10 20:50:43 -0700 | [diff] [blame] | 665 | ((IPV6_FLOWINFO_MASK & |
| 666 | *(__be32 *)skb_network_header(skb)) && |
Arnaldo Carvalho de Melo | 399c07d | 2005-12-13 23:24:28 -0800 | [diff] [blame] | 667 | np->rxopt.bits.rxflow) || |
| 668 | (opt->srcrt && (np->rxopt.bits.srcrt || |
| 669 | np->rxopt.bits.osrcrt)) || |
| 670 | ((opt->dst1 || opt->dst0) && |
| 671 | (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts))) |
| 672 | return 1; |
| 673 | } |
| 674 | return 0; |
| 675 | } |
| 676 | |
| 677 | EXPORT_SYMBOL_GPL(ipv6_opt_accepted); |
| 678 | |
YOSHIFUJI Hideaki | 662397f | 2008-02-27 23:14:03 +0900 | [diff] [blame] | 679 | static struct inet6_protocol *ipv6_gso_pull_exthdrs(struct sk_buff *skb, |
| 680 | int proto) |
| 681 | { |
| 682 | struct inet6_protocol *ops = NULL; |
| 683 | |
| 684 | for (;;) { |
| 685 | struct ipv6_opt_hdr *opth; |
| 686 | int len; |
| 687 | |
| 688 | if (proto != NEXTHDR_HOP) { |
| 689 | ops = rcu_dereference(inet6_protos[proto]); |
| 690 | |
| 691 | if (unlikely(!ops)) |
| 692 | break; |
| 693 | |
| 694 | if (!(ops->flags & INET6_PROTO_GSO_EXTHDR)) |
| 695 | break; |
| 696 | } |
| 697 | |
| 698 | if (unlikely(!pskb_may_pull(skb, 8))) |
| 699 | break; |
| 700 | |
| 701 | opth = (void *)skb->data; |
| 702 | len = ipv6_optlen(opth); |
| 703 | |
| 704 | if (unlikely(!pskb_may_pull(skb, len))) |
| 705 | break; |
| 706 | |
| 707 | proto = opth->nexthdr; |
| 708 | __skb_pull(skb, len); |
| 709 | } |
| 710 | |
| 711 | return ops; |
| 712 | } |
| 713 | |
| 714 | static int ipv6_gso_send_check(struct sk_buff *skb) |
| 715 | { |
| 716 | struct ipv6hdr *ipv6h; |
| 717 | struct inet6_protocol *ops; |
| 718 | int err = -EINVAL; |
| 719 | |
| 720 | if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h)))) |
| 721 | goto out; |
| 722 | |
| 723 | ipv6h = ipv6_hdr(skb); |
| 724 | __skb_pull(skb, sizeof(*ipv6h)); |
| 725 | err = -EPROTONOSUPPORT; |
| 726 | |
| 727 | rcu_read_lock(); |
| 728 | ops = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr); |
| 729 | if (likely(ops && ops->gso_send_check)) { |
| 730 | skb_reset_transport_header(skb); |
| 731 | err = ops->gso_send_check(skb); |
| 732 | } |
| 733 | rcu_read_unlock(); |
| 734 | |
| 735 | out: |
| 736 | return err; |
| 737 | } |
| 738 | |
| 739 | static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features) |
| 740 | { |
| 741 | struct sk_buff *segs = ERR_PTR(-EINVAL); |
| 742 | struct ipv6hdr *ipv6h; |
| 743 | struct inet6_protocol *ops; |
| 744 | |
| 745 | if (!(features & NETIF_F_V6_CSUM)) |
| 746 | features &= ~NETIF_F_SG; |
| 747 | |
| 748 | if (unlikely(skb_shinfo(skb)->gso_type & |
| 749 | ~(SKB_GSO_UDP | |
| 750 | SKB_GSO_DODGY | |
| 751 | SKB_GSO_TCP_ECN | |
| 752 | SKB_GSO_TCPV6 | |
| 753 | 0))) |
| 754 | goto out; |
| 755 | |
| 756 | if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h)))) |
| 757 | goto out; |
| 758 | |
| 759 | ipv6h = ipv6_hdr(skb); |
| 760 | __skb_pull(skb, sizeof(*ipv6h)); |
| 761 | segs = ERR_PTR(-EPROTONOSUPPORT); |
| 762 | |
| 763 | rcu_read_lock(); |
| 764 | ops = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr); |
| 765 | if (likely(ops && ops->gso_segment)) { |
| 766 | skb_reset_transport_header(skb); |
| 767 | segs = ops->gso_segment(skb, features); |
| 768 | } |
| 769 | rcu_read_unlock(); |
| 770 | |
| 771 | if (unlikely(IS_ERR(segs))) |
| 772 | goto out; |
| 773 | |
| 774 | for (skb = segs; skb; skb = skb->next) { |
| 775 | ipv6h = ipv6_hdr(skb); |
| 776 | ipv6h->payload_len = htons(skb->len - skb->mac_len - |
| 777 | sizeof(*ipv6h)); |
| 778 | } |
| 779 | |
| 780 | out: |
| 781 | return segs; |
| 782 | } |
| 783 | |
| 784 | static struct packet_type ipv6_packet_type = { |
| 785 | .type = __constant_htons(ETH_P_IPV6), |
| 786 | .func = ipv6_rcv, |
| 787 | .gso_send_check = ipv6_gso_send_check, |
| 788 | .gso_segment = ipv6_gso_segment, |
| 789 | }; |
| 790 | |
| 791 | static int __init ipv6_packet_init(void) |
| 792 | { |
| 793 | dev_add_pack(&ipv6_packet_type); |
| 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | static void ipv6_packet_cleanup(void) |
| 798 | { |
| 799 | dev_remove_pack(&ipv6_packet_type); |
| 800 | } |
| 801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | static int __init init_ipv6_mibs(void) |
| 803 | { |
YOSHIFUJI Hideaki | c69bce2 | 2008-01-23 22:31:45 -0800 | [diff] [blame] | 804 | if (snmp_mib_init((void **)ipv6_statistics, |
| 805 | sizeof(struct ipstats_mib)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | goto err_ip_mib; |
YOSHIFUJI Hideaki | c69bce2 | 2008-01-23 22:31:45 -0800 | [diff] [blame] | 807 | if (snmp_mib_init((void **)icmpv6_statistics, |
| 808 | sizeof(struct icmpv6_mib)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | goto err_icmp_mib; |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 810 | if (snmp_mib_init((void **)icmpv6msg_statistics, |
YOSHIFUJI Hideaki | c69bce2 | 2008-01-23 22:31:45 -0800 | [diff] [blame] | 811 | sizeof(struct icmpv6msg_mib)) < 0) |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 812 | goto err_icmpmsg_mib; |
YOSHIFUJI Hideaki | c69bce2 | 2008-01-23 22:31:45 -0800 | [diff] [blame] | 813 | if (snmp_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib)) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | goto err_udp_mib; |
YOSHIFUJI Hideaki | c69bce2 | 2008-01-23 22:31:45 -0800 | [diff] [blame] | 815 | if (snmp_mib_init((void **)udplite_stats_in6, |
| 816 | sizeof (struct udp_mib)) < 0) |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 817 | goto err_udplite_mib; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | return 0; |
| 819 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 820 | err_udplite_mib: |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 821 | snmp_mib_free((void **)udp_stats_in6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | err_udp_mib: |
David L Stevens | 14878f7 | 2007-09-16 16:52:35 -0700 | [diff] [blame] | 823 | snmp_mib_free((void **)icmpv6msg_statistics); |
| 824 | err_icmpmsg_mib: |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 825 | snmp_mib_free((void **)icmpv6_statistics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | err_icmp_mib: |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 827 | snmp_mib_free((void **)ipv6_statistics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | err_ip_mib: |
| 829 | return -ENOMEM; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | } |
| 832 | |
| 833 | static void cleanup_ipv6_mibs(void) |
| 834 | { |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 835 | snmp_mib_free((void **)ipv6_statistics); |
| 836 | snmp_mib_free((void **)icmpv6_statistics); |
Pavel Emelyanov | dc8a82a | 2007-10-17 19:30:40 -0700 | [diff] [blame] | 837 | snmp_mib_free((void **)icmpv6msg_statistics); |
Herbert Xu | 7f7d9a6 | 2007-04-24 21:54:09 -0700 | [diff] [blame] | 838 | snmp_mib_free((void **)udp_stats_in6); |
| 839 | snmp_mib_free((void **)udplite_stats_in6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } |
| 841 | |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 842 | static int inet6_net_init(struct net *net) |
| 843 | { |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 844 | int err = 0; |
| 845 | |
Daniel Lezcano | 99bc9c4 | 2008-01-10 02:54:53 -0800 | [diff] [blame] | 846 | net->ipv6.sysctl.bindv6only = 0; |
Daniel Lezcano | 4990509 | 2008-01-10 03:01:01 -0800 | [diff] [blame] | 847 | net->ipv6.sysctl.flush_delay = 0; |
| 848 | net->ipv6.sysctl.ip6_rt_max_size = 4096; |
| 849 | net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; |
| 850 | net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; |
| 851 | net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; |
| 852 | net->ipv6.sysctl.ip6_rt_gc_elasticity = 9; |
| 853 | net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ; |
| 854 | net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40; |
Daniel Lezcano | 41a7690 | 2008-01-10 03:02:40 -0800 | [diff] [blame] | 855 | net->ipv6.sysctl.icmpv6_time = 1*HZ; |
Daniel Lezcano | e71e034 | 2008-01-10 02:56:03 -0800 | [diff] [blame] | 856 | |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 857 | #ifdef CONFIG_PROC_FS |
| 858 | err = udp6_proc_init(net); |
| 859 | if (err) |
| 860 | goto out; |
Daniel Lezcano | 6f8b13b | 2008-03-21 04:14:45 -0700 | [diff] [blame] | 861 | err = tcp6_proc_init(net); |
| 862 | if (err) |
| 863 | goto proc_tcp6_fail; |
Daniel Lezcano | 6ab57e7 | 2008-03-26 16:52:32 -0700 | [diff] [blame] | 864 | err = ac6_proc_init(net); |
| 865 | if (err) |
| 866 | goto proc_ac6_fail; |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 867 | out: |
| 868 | #endif |
| 869 | return err; |
Daniel Lezcano | 6f8b13b | 2008-03-21 04:14:45 -0700 | [diff] [blame] | 870 | |
| 871 | #ifdef CONFIG_PROC_FS |
Daniel Lezcano | 6ab57e7 | 2008-03-26 16:52:32 -0700 | [diff] [blame] | 872 | proc_ac6_fail: |
| 873 | tcp6_proc_exit(net); |
Daniel Lezcano | 6f8b13b | 2008-03-21 04:14:45 -0700 | [diff] [blame] | 874 | proc_tcp6_fail: |
| 875 | udp6_proc_exit(net); |
| 876 | goto out; |
| 877 | #endif |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 878 | } |
| 879 | |
| 880 | static void inet6_net_exit(struct net *net) |
| 881 | { |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 882 | #ifdef CONFIG_PROC_FS |
| 883 | udp6_proc_exit(net); |
Daniel Lezcano | 6f8b13b | 2008-03-21 04:14:45 -0700 | [diff] [blame] | 884 | tcp6_proc_exit(net); |
Daniel Lezcano | 6ab57e7 | 2008-03-26 16:52:32 -0700 | [diff] [blame] | 885 | ac6_proc_exit(net); |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 886 | #endif |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | static struct pernet_operations inet6_net_ops = { |
| 890 | .init = inet6_net_init, |
| 891 | .exit = inet6_net_exit, |
| 892 | }; |
| 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | static int __init inet6_init(void) |
| 895 | { |
| 896 | struct sk_buff *dummy_skb; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 897 | struct list_head *r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | int err; |
| 899 | |
YOSHIFUJI Hideaki | ef047f5 | 2006-09-01 00:29:06 -0700 | [diff] [blame] | 900 | BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb)); |
| 901 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | err = proto_register(&tcpv6_prot, 1); |
| 903 | if (err) |
| 904 | goto out; |
| 905 | |
| 906 | err = proto_register(&udpv6_prot, 1); |
| 907 | if (err) |
| 908 | goto out_unregister_tcp_proto; |
| 909 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 910 | err = proto_register(&udplitev6_prot, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | if (err) |
| 912 | goto out_unregister_udp_proto; |
| 913 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 914 | err = proto_register(&rawv6_prot, 1); |
| 915 | if (err) |
| 916 | goto out_unregister_udplite_proto; |
| 917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | |
| 919 | /* Register the socket-side information for inet6_create. */ |
| 920 | for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r) |
| 921 | INIT_LIST_HEAD(r); |
| 922 | |
| 923 | /* We MUST register RAW sockets before we create the ICMP6, |
| 924 | * IGMP6, or NDISC control sockets. |
| 925 | */ |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 926 | err = rawv6_init(); |
| 927 | if (err) |
| 928 | goto out_unregister_raw_proto; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
| 930 | /* Register the family here so that the init calls below will |
| 931 | * be able to create sockets. (?? is this dangerous ??) |
| 932 | */ |
David S. Miller | 8eb5591 | 2005-11-11 15:05:47 -0800 | [diff] [blame] | 933 | err = sock_register(&inet6_family_ops); |
| 934 | if (err) |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 935 | goto out_sock_register_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | |
| 937 | /* Initialise ipv6 mibs */ |
| 938 | err = init_ipv6_mibs(); |
| 939 | if (err) |
David S. Miller | 8eb5591 | 2005-11-11 15:05:47 -0800 | [diff] [blame] | 940 | goto out_unregister_sock; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | /* |
| 943 | * ipngwg API draft makes clear that the correct semantics |
| 944 | * for TCP and UDP is to consider one TCP and UDP instance |
| 945 | * in a host availiable by both INET and INET6 APIs and |
| 946 | * able to communicate via both network protocols. |
| 947 | */ |
| 948 | |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 949 | err = register_pernet_subsys(&inet6_net_ops); |
| 950 | if (err) |
| 951 | goto register_pernet_fail; |
Denis V. Lunev | 9b0f976 | 2008-02-29 11:13:15 -0800 | [diff] [blame] | 952 | err = icmpv6_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | if (err) |
| 954 | goto icmp_fail; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 955 | #ifdef CONFIG_IPV6_MROUTE |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame^] | 956 | err = ip6_mr_init(); |
| 957 | if (err) |
| 958 | goto ipmr_fail; |
YOSHIFUJI Hideaki | 7bc570c | 2008-04-03 09:22:53 +0900 | [diff] [blame] | 959 | #endif |
Denis V. Lunev | 9b0f976 | 2008-02-29 11:13:15 -0800 | [diff] [blame] | 960 | err = ndisc_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | if (err) |
| 962 | goto ndisc_fail; |
Denis V. Lunev | 9b0f976 | 2008-02-29 11:13:15 -0800 | [diff] [blame] | 963 | err = igmp6_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | if (err) |
| 965 | goto igmp_fail; |
Harald Welte | 2cc7d57 | 2005-08-09 19:42:34 -0700 | [diff] [blame] | 966 | err = ipv6_netfilter_init(); |
| 967 | if (err) |
| 968 | goto netfilter_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | /* Create /proc/foo6 entries. */ |
| 970 | #ifdef CONFIG_PROC_FS |
| 971 | err = -ENOMEM; |
| 972 | if (raw6_proc_init()) |
| 973 | goto proc_raw6_fail; |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 974 | if (udplite6_proc_init()) |
| 975 | goto proc_udplite6_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | if (ipv6_misc_proc_init()) |
| 977 | goto proc_misc6_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | if (if6_proc_init()) |
| 979 | goto proc_if6_fail; |
| 980 | #endif |
Daniel Lezcano | e2fddf5 | 2007-12-07 00:44:29 -0800 | [diff] [blame] | 981 | err = ip6_route_init(); |
| 982 | if (err) |
| 983 | goto ip6_route_fail; |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 984 | err = ip6_flowlabel_init(); |
| 985 | if (err) |
| 986 | goto ip6_flowlabel_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | err = addrconf_init(); |
| 988 | if (err) |
| 989 | goto addrconf_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
| 991 | /* Init v6 extension headers. */ |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 992 | err = ipv6_exthdrs_init(); |
| 993 | if (err) |
| 994 | goto ipv6_exthdrs_fail; |
| 995 | |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 996 | err = ipv6_frag_init(); |
| 997 | if (err) |
| 998 | goto ipv6_frag_fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
| 1000 | /* Init v6 transport protocols. */ |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1001 | err = udpv6_init(); |
| 1002 | if (err) |
| 1003 | goto udpv6_fail; |
Herbert Xu | e2ed405 | 2005-07-05 14:41:20 -0700 | [diff] [blame] | 1004 | |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1005 | err = udplitev6_init(); |
| 1006 | if (err) |
| 1007 | goto udplitev6_fail; |
| 1008 | |
| 1009 | err = tcpv6_init(); |
| 1010 | if (err) |
| 1011 | goto tcpv6_fail; |
| 1012 | |
| 1013 | err = ipv6_packet_init(); |
| 1014 | if (err) |
| 1015 | goto ipv6_packet_fail; |
Benjamin Thery | 94911fe | 2008-03-05 10:45:36 -0800 | [diff] [blame] | 1016 | |
| 1017 | #ifdef CONFIG_SYSCTL |
| 1018 | err = ipv6_sysctl_register(); |
| 1019 | if (err) |
| 1020 | goto sysctl_fail; |
| 1021 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | out: |
| 1023 | return err; |
| 1024 | |
Benjamin Thery | 94911fe | 2008-03-05 10:45:36 -0800 | [diff] [blame] | 1025 | #ifdef CONFIG_SYSCTL |
| 1026 | sysctl_fail: |
| 1027 | ipv6_packet_cleanup(); |
| 1028 | #endif |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1029 | ipv6_packet_fail: |
| 1030 | tcpv6_exit(); |
| 1031 | tcpv6_fail: |
| 1032 | udplitev6_exit(); |
| 1033 | udplitev6_fail: |
| 1034 | udpv6_exit(); |
| 1035 | udpv6_fail: |
| 1036 | ipv6_frag_exit(); |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 1037 | ipv6_frag_fail: |
| 1038 | ipv6_exthdrs_exit(); |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 1039 | ipv6_exthdrs_fail: |
| 1040 | addrconf_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | addrconf_fail: |
| 1042 | ip6_flowlabel_cleanup(); |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 1043 | ip6_flowlabel_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | ip6_route_cleanup(); |
Daniel Lezcano | e2fddf5 | 2007-12-07 00:44:29 -0800 | [diff] [blame] | 1045 | ip6_route_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | #ifdef CONFIG_PROC_FS |
| 1047 | if6_proc_exit(); |
| 1048 | proc_if6_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | ipv6_misc_proc_exit(); |
| 1050 | proc_misc6_fail: |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1051 | udplite6_proc_exit(); |
| 1052 | proc_udplite6_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | raw6_proc_exit(); |
| 1054 | proc_raw6_fail: |
| 1055 | #endif |
Harald Welte | 2cc7d57 | 2005-08-09 19:42:34 -0700 | [diff] [blame] | 1056 | ipv6_netfilter_fini(); |
| 1057 | netfilter_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | igmp6_cleanup(); |
| 1059 | igmp_fail: |
| 1060 | ndisc_cleanup(); |
| 1061 | ndisc_fail: |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame^] | 1062 | #ifdef CONFIG_IPV6_MROUTE |
| 1063 | ip6_mr_cleanup(); |
| 1064 | ipmr_fail: |
| 1065 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | icmpv6_cleanup(); |
| 1067 | icmp_fail: |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 1068 | unregister_pernet_subsys(&inet6_net_ops); |
| 1069 | register_pernet_fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | cleanup_ipv6_mibs(); |
David S. Miller | 8eb5591 | 2005-11-11 15:05:47 -0800 | [diff] [blame] | 1071 | out_unregister_sock: |
| 1072 | sock_unregister(PF_INET6); |
Daniel Lezcano | e2fddf5 | 2007-12-07 00:44:29 -0800 | [diff] [blame] | 1073 | rtnl_unregister_all(PF_INET6); |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1074 | out_sock_register_fail: |
| 1075 | rawv6_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | out_unregister_raw_proto: |
| 1077 | proto_unregister(&rawv6_prot); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1078 | out_unregister_udplite_proto: |
| 1079 | proto_unregister(&udplitev6_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | out_unregister_udp_proto: |
| 1081 | proto_unregister(&udpv6_prot); |
| 1082 | out_unregister_tcp_proto: |
| 1083 | proto_unregister(&tcpv6_prot); |
| 1084 | goto out; |
| 1085 | } |
| 1086 | module_init(inet6_init); |
| 1087 | |
| 1088 | static void __exit inet6_exit(void) |
| 1089 | { |
| 1090 | /* First of all disallow new sockets creation. */ |
| 1091 | sock_unregister(PF_INET6); |
Thomas Graf | c127ea2 | 2007-03-22 11:58:32 -0700 | [diff] [blame] | 1092 | /* Disallow any further netlink messages */ |
| 1093 | rtnl_unregister_all(PF_INET6); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1094 | |
Benjamin Thery | 94911fe | 2008-03-05 10:45:36 -0800 | [diff] [blame] | 1095 | #ifdef CONFIG_SYSCTL |
| 1096 | ipv6_sysctl_unregister(); |
| 1097 | #endif |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1098 | udpv6_exit(); |
| 1099 | udplitev6_exit(); |
| 1100 | tcpv6_exit(); |
| 1101 | |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1102 | /* Cleanup code parts. */ |
| 1103 | ipv6_packet_cleanup(); |
Daniel Lezcano | 853cbba | 2007-12-11 02:24:29 -0800 | [diff] [blame] | 1104 | ipv6_frag_exit(); |
Daniel Lezcano | 248b238 | 2007-12-11 02:23:54 -0800 | [diff] [blame] | 1105 | ipv6_exthdrs_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | addrconf_cleanup(); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1107 | ip6_flowlabel_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | ip6_route_cleanup(); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1109 | #ifdef CONFIG_PROC_FS |
| 1110 | |
| 1111 | /* Cleanup code parts. */ |
| 1112 | if6_proc_exit(); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1113 | ipv6_misc_proc_exit(); |
| 1114 | udplite6_proc_exit(); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1115 | raw6_proc_exit(); |
| 1116 | #endif |
Harald Welte | 2cc7d57 | 2005-08-09 19:42:34 -0700 | [diff] [blame] | 1117 | ipv6_netfilter_fini(); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1118 | igmp6_cleanup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | ndisc_cleanup(); |
Wang Chen | 623d1a1 | 2008-07-03 12:13:30 +0800 | [diff] [blame^] | 1120 | #ifdef CONFIG_IPV6_MROUTE |
| 1121 | ip6_mr_cleanup(); |
| 1122 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | icmpv6_cleanup(); |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1124 | rawv6_exit(); |
Benjamin Thery | 94911fe | 2008-03-05 10:45:36 -0800 | [diff] [blame] | 1125 | |
Daniel Lezcano | 81c1c17 | 2008-01-10 02:48:33 -0800 | [diff] [blame] | 1126 | unregister_pernet_subsys(&inet6_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | cleanup_ipv6_mibs(); |
| 1128 | proto_unregister(&rawv6_prot); |
Joe Jin | ca17c23 | 2007-02-20 01:30:15 -0800 | [diff] [blame] | 1129 | proto_unregister(&udplitev6_prot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | proto_unregister(&udpv6_prot); |
| 1131 | proto_unregister(&tcpv6_prot); |
| 1132 | } |
| 1133 | module_exit(inet6_exit); |
| 1134 | |
| 1135 | MODULE_ALIAS_NETPROTO(PF_INET6); |