blob: 95055f8c3f35eb18d17f4848fe0ae72ed648bbc2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PF_INET6 socket protocol family
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Adapted from linux/net/ipv4/af_inet.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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 Dunlap4fc268d2006-01-11 12:17:47 -080023#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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 Torvalds1da177e2005-04-16 15:20:36 -070029#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 Welte2cc7d572005-08-09 19:42:34 -070043#include <linux/netfilter_ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <net/ip.h>
46#include <net/ipv6.h>
47#include <net/udp.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080048#include <net/udplite.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#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 Hideaki7bc570c2008-04-03 09:22:53 +090062#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64MODULE_AUTHOR("Cast of dozens");
65MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
66MODULE_LICENSE("GPL");
67
Pavel Emelyanovf1267342007-11-23 21:28:44 +080068/* The inetsw6 table contains everything that inet6_create needs to
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * build a new socket.
70 */
71static struct list_head inetsw6[SOCK_MAX];
72static DEFINE_SPINLOCK(inetsw6_lock);
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
75{
76 const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo);
77
78 return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
79}
80
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070081static int inet6_create(struct net *net, struct socket *sock, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct inet_sock *inet;
84 struct ipv6_pinfo *np;
85 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct inet_protosw *answer;
87 struct proto *answer_prot;
88 unsigned char answer_flags;
89 char answer_no_check;
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -080090 int try_loading_module = 0;
91 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
David S. Millerb3da2cf2007-03-23 11:40:27 -070093 if (sock->type != SOCK_RAW &&
94 sock->type != SOCK_DGRAM &&
95 !inet_ehash_secret)
96 build_ehash_secret();
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /* Look for the requested type/protocol pair. */
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -080099lookup_protocol:
100 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 rcu_read_lock();
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700102 list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700104 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* Check the non-wild match. */
106 if (protocol == answer->protocol) {
107 if (protocol != IPPROTO_IP)
108 break;
109 } else {
110 /* Check for the two wild cases. */
111 if (IPPROTO_IP == protocol) {
112 protocol = answer->protocol;
113 break;
114 }
115 if (IPPROTO_IP == answer->protocol)
116 break;
117 }
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800118 err = -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700121 if (err) {
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800122 if (try_loading_module < 2) {
123 rcu_read_unlock();
124 /*
125 * Be more specific, e.g. net-pf-10-proto-132-type-1
126 * (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM)
127 */
128 if (++try_loading_module == 1)
129 request_module("net-pf-%d-proto-%d-type-%d",
130 PF_INET6, protocol, sock->type);
131 /*
132 * Fall back to generic, e.g. net-pf-10-proto-132
133 * (net-pf-PF_INET6-proto-IPPROTO_SCTP)
134 */
135 else
136 request_module("net-pf-%d-proto-%d",
137 PF_INET6, protocol);
138 goto lookup_protocol;
139 } else
140 goto out_rcu_unlock;
141 }
142
143 err = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (answer->capability > 0 && !capable(answer->capability))
145 goto out_rcu_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 sock->ops = answer->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 answer_prot = answer->prot;
149 answer_no_check = answer->no_check;
150 answer_flags = answer->flags;
151 rcu_read_unlock();
152
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700153 WARN_ON(answer_prot->slab == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800155 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700156 sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (sk == NULL)
158 goto out;
159
160 sock_init_data(sock, sk);
161
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800162 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 sk->sk_no_check = answer_no_check;
164 if (INET_PROTOSW_REUSE & answer_flags)
165 sk->sk_reuse = 1;
166
167 inet = inet_sk(sk);
Paul Moore469de9b2007-01-09 14:37:06 -0800168 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (SOCK_RAW == sock->type) {
171 inet->num = protocol;
172 if (IPPROTO_RAW == protocol)
173 inet->hdrincl = 1;
174 }
175
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700176 sk->sk_destruct = inet_sock_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 sk->sk_family = PF_INET6;
178 sk->sk_protocol = protocol;
179
180 sk->sk_backlog_rcv = answer->prot->backlog_rcv;
181
182 inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
183 np->hop_limit = -1;
184 np->mcast_hops = -1;
185 np->mc_loop = 1;
186 np->pmtudisc = IPV6_PMTUDISC_WANT;
Pavel Emelyanov2e761e02008-06-09 15:53:30 -0700187 np->ipv6only = net->ipv6.sysctl.bindv6only;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 /* Init the ipv4 part of the socket since we can have sockets
190 * using v6 API for ipv4.
191 */
192 inet->uc_ttl = -1;
193
194 inet->mc_loop = 1;
195 inet->mc_ttl = 1;
196 inet->mc_index = 0;
197 inet->mc_list = NULL;
198
199 if (ipv4_config.no_pmtu_disc)
200 inet->pmtudisc = IP_PMTUDISC_DONT;
201 else
202 inet->pmtudisc = IP_PMTUDISC_WANT;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900203 /*
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700204 * Increment only the relevant sk_prot->socks debug field, this changes
205 * the previous behaviour of incrementing both the equivalent to
206 * answer->prot->socks (inet6_sock_nr) and inet_sock_nr.
207 *
208 * This allows better debug granularity as we'll know exactly how many
209 * UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6
210 * transport protocol socks. -acme
211 */
212 sk_refcnt_debug_inc(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (inet->num) {
215 /* It assumes that any protocol which allows
216 * the user to assign a number at socket
217 * creation time automatically shares.
218 */
Al Viroe69a4adc2006-11-14 20:56:00 -0800219 inet->sport = htons(inet->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 sk->sk_prot->hash(sk);
221 }
222 if (sk->sk_prot->init) {
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800223 err = sk->sk_prot->init(sk);
224 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 sk_common_release(sk);
226 goto out;
227 }
228 }
229out:
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800230 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231out_rcu_unlock:
232 rcu_read_unlock();
233 goto out;
234}
235
236
237/* bind for INET6 API */
238int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
239{
240 struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
241 struct sock *sk = sock->sk;
242 struct inet_sock *inet = inet_sk(sk);
243 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900244 struct net *net = sock_net(sk);
Al Virofd683222006-09-26 22:17:51 -0700245 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 unsigned short snum;
247 int addr_type = 0;
248 int err = 0;
249
250 /* If the socket has its own bind function then use it. */
251 if (sk->sk_prot->bind)
252 return sk->sk_prot->bind(sk, uaddr, addr_len);
253
254 if (addr_len < SIN6_LEN_RFC2133)
255 return -EINVAL;
256 addr_type = ipv6_addr_type(&addr->sin6_addr);
257 if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
258 return -EINVAL;
259
260 snum = ntohs(addr->sin6_port);
261 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
262 return -EACCES;
263
264 lock_sock(sk);
265
266 /* Check these errors (active socket, double bind). */
267 if (sk->sk_state != TCP_CLOSE || inet->num) {
268 err = -EINVAL;
269 goto out;
270 }
271
272 /* Check if the address belongs to the host. */
273 if (addr_type == IPV6_ADDR_MAPPED) {
274 v4addr = addr->sin6_addr.s6_addr32[3];
Benjamin Thery075de932008-03-05 10:45:59 -0800275 if (inet_addr_type(net, v4addr) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 err = -EADDRNOTAVAIL;
277 goto out;
278 }
279 } else {
280 if (addr_type != IPV6_ADDR_ANY) {
281 struct net_device *dev = NULL;
282
283 if (addr_type & IPV6_ADDR_LINKLOCAL) {
284 if (addr_len >= sizeof(struct sockaddr_in6) &&
285 addr->sin6_scope_id) {
286 /* Override any existing binding, if another one
287 * is supplied by user.
288 */
289 sk->sk_bound_dev_if = addr->sin6_scope_id;
290 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* Binding to link-local address requires an interface */
293 if (!sk->sk_bound_dev_if) {
294 err = -EINVAL;
295 goto out;
296 }
Benjamin Thery075de932008-03-05 10:45:59 -0800297 dev = dev_get_by_index(net, sk->sk_bound_dev_if);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (!dev) {
299 err = -ENODEV;
300 goto out;
301 }
302 }
303
304 /* ipv4 addr of the socket is invalid. Only the
305 * unspecified and mapped address have a v4 equivalent.
306 */
307 v4addr = LOOPBACK4_IPV6;
308 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
Benjamin Thery075de932008-03-05 10:45:59 -0800309 if (!ipv6_chk_addr(net, &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800310 dev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (dev)
312 dev_put(dev);
313 err = -EADDRNOTAVAIL;
314 goto out;
315 }
316 }
317 if (dev)
318 dev_put(dev);
319 }
320 }
321
322 inet->rcv_saddr = v4addr;
323 inet->saddr = v4addr;
324
325 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!(addr_type & IPV6_ADDR_MULTICAST))
328 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
329
330 /* Make sure we are allowed to bind here. */
331 if (sk->sk_prot->get_port(sk, snum)) {
332 inet_reset_saddr(sk);
333 err = -EADDRINUSE;
334 goto out;
335 }
336
337 if (addr_type != IPV6_ADDR_ANY)
338 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
339 if (snum)
340 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
Al Viroe69a4adc2006-11-14 20:56:00 -0800341 inet->sport = htons(inet->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 inet->dport = 0;
343 inet->daddr = 0;
344out:
345 release_sock(sk);
346 return err;
347}
348
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900349EXPORT_SYMBOL(inet6_bind);
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351int inet6_release(struct socket *sock)
352{
353 struct sock *sk = sock->sk;
354
355 if (sk == NULL)
356 return -EINVAL;
357
358 /* Free mc lists */
359 ipv6_sock_mc_close(sk);
360
361 /* Free ac lists */
362 ipv6_sock_ac_close(sk);
363
364 return inet_release(sock);
365}
366
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900367EXPORT_SYMBOL(inet6_release);
368
Brian Haley7d06b2e2008-06-14 17:04:49 -0700369void inet6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 struct ipv6_pinfo *np = inet6_sk(sk);
372 struct sk_buff *skb;
373 struct ipv6_txoptions *opt;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* Release rx options */
376
377 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
378 kfree_skb(skb);
379
380 /* Free flowlabels */
381 fl6_free_socklist(sk);
382
383 /* Free tx options */
384
385 if ((opt = xchg(&np->opt, NULL)) != NULL)
386 sock_kfree_s(sk, opt, opt->tot_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800389EXPORT_SYMBOL_GPL(inet6_destroy_sock);
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
392 * This does both peername and sockname.
393 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
396 int *uaddr_len, int peer)
397{
398 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
399 struct sock *sk = sock->sk;
400 struct inet_sock *inet = inet_sk(sk);
401 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 sin->sin6_family = AF_INET6;
404 sin->sin6_flowinfo = 0;
405 sin->sin6_scope_id = 0;
406 if (peer) {
407 if (!inet->dport)
408 return -ENOTCONN;
409 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
410 peer == 1)
411 return -ENOTCONN;
412 sin->sin6_port = inet->dport;
413 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
414 if (np->sndflow)
415 sin->sin6_flowinfo = np->flow_label;
416 } else {
417 if (ipv6_addr_any(&np->rcv_saddr))
418 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
419 else
420 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
421
422 sin->sin6_port = inet->sport;
423 }
424 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
425 sin->sin6_scope_id = sk->sk_bound_dev_if;
426 *uaddr_len = sizeof(*sin);
427 return(0);
428}
429
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900430EXPORT_SYMBOL(inet6_getname);
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
433{
434 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900435 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900437 switch(cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 {
439 case SIOCGSTAMP:
440 return sock_get_timestamp(sk, (struct timeval __user *)arg);
441
Eric Dumazetae40eb12007-03-18 17:33:16 -0700442 case SIOCGSTAMPNS:
443 return sock_get_timestampns(sk, (struct timespec __user *)arg);
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case SIOCADDRT:
446 case SIOCDELRT:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900447
Daniel Lezcano55786892008-03-04 13:47:47 -0800448 return(ipv6_route_ioctl(net, cmd, (void __user *)arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 case SIOCSIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800451 return addrconf_add_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 case SIOCDIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800453 return addrconf_del_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 case SIOCSIFDSTADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800455 return addrconf_set_dstaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 default:
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800457 if (!sk->sk_prot->ioctl)
458 return -ENOIOCTLCMD;
459 return sk->sk_prot->ioctl(sk, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461 /*NOTREACHED*/
462 return(0);
463}
464
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900465EXPORT_SYMBOL(inet6_ioctl);
466
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800467const struct proto_ops inet6_stream_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800468 .family = PF_INET6,
469 .owner = THIS_MODULE,
470 .release = inet6_release,
471 .bind = inet6_bind,
472 .connect = inet_stream_connect, /* ok */
473 .socketpair = sock_no_socketpair, /* a do nothing */
474 .accept = inet_accept, /* ok */
475 .getname = inet6_getname,
476 .poll = tcp_poll, /* ok */
477 .ioctl = inet6_ioctl, /* must change */
478 .listen = inet_listen, /* ok */
479 .shutdown = inet_shutdown, /* ok */
480 .setsockopt = sock_common_setsockopt, /* ok */
481 .getsockopt = sock_common_getsockopt, /* ok */
David S. Miller3516ffb2007-08-02 19:23:56 -0700482 .sendmsg = tcp_sendmsg, /* ok */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800483 .recvmsg = sock_common_recvmsg, /* ok */
484 .mmap = sock_no_mmap,
485 .sendpage = tcp_sendpage,
Jens Axboea0974dd2007-11-06 23:31:58 -0800486 .splice_read = tcp_splice_read,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800487#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800488 .compat_setsockopt = compat_sock_common_setsockopt,
489 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491};
492
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800493const struct proto_ops inet6_dgram_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800494 .family = PF_INET6,
495 .owner = THIS_MODULE,
496 .release = inet6_release,
497 .bind = inet6_bind,
498 .connect = inet_dgram_connect, /* ok */
499 .socketpair = sock_no_socketpair, /* a do nothing */
500 .accept = sock_no_accept, /* a do nothing */
501 .getname = inet6_getname,
502 .poll = udp_poll, /* ok */
503 .ioctl = inet6_ioctl, /* must change */
504 .listen = sock_no_listen, /* ok */
505 .shutdown = inet_shutdown, /* ok */
506 .setsockopt = sock_common_setsockopt, /* ok */
507 .getsockopt = sock_common_getsockopt, /* ok */
508 .sendmsg = inet_sendmsg, /* ok */
509 .recvmsg = sock_common_recvmsg, /* ok */
510 .mmap = sock_no_mmap,
511 .sendpage = sock_no_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800512#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800513 .compat_setsockopt = compat_sock_common_setsockopt,
514 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800515#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516};
517
518static struct net_proto_family inet6_family_ops = {
519 .family = PF_INET6,
520 .create = inet6_create,
521 .owner = THIS_MODULE,
522};
523
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800524int inet6_register_protosw(struct inet_protosw *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct list_head *lh;
527 struct inet_protosw *answer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 struct list_head *last_perm;
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800529 int protocol = p->protocol;
530 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 spin_lock_bh(&inetsw6_lock);
533
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800534 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (p->type >= SOCK_MAX)
536 goto out_illegal;
537
538 /* If we are trying to override a permanent protocol, bail. */
539 answer = NULL;
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800540 ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 last_perm = &inetsw6[p->type];
542 list_for_each(lh, &inetsw6[p->type]) {
543 answer = list_entry(lh, struct inet_protosw, list);
544
545 /* Check only the non-wild match. */
546 if (INET_PROTOSW_PERMANENT & answer->flags) {
547 if (protocol == answer->protocol)
548 break;
549 last_perm = lh;
550 }
551
552 answer = NULL;
553 }
554 if (answer)
555 goto out_permanent;
556
557 /* Add the new entry after the last permanent entry if any, so that
558 * the new entry does not override a permanent entry when matched with
559 * a wild-card protocol. But it is allowed to override any existing
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900560 * non-permanent entry. This means that when we remove this entry, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * system automatically returns to the old behavior.
562 */
563 list_add_rcu(&p->list, last_perm);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800564 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565out:
566 spin_unlock_bh(&inetsw6_lock);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800567 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569out_permanent:
570 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
571 protocol);
572 goto out;
573
574out_illegal:
575 printk(KERN_ERR
576 "Ignoring attempt to register invalid socket type %d.\n",
577 p->type);
578 goto out;
579}
580
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900581EXPORT_SYMBOL(inet6_register_protosw);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583void
584inet6_unregister_protosw(struct inet_protosw *p)
585{
586 if (INET_PROTOSW_PERMANENT & p->flags) {
587 printk(KERN_ERR
588 "Attempt to unregister permanent protocol %d.\n",
589 p->protocol);
590 } else {
591 spin_lock_bh(&inetsw6_lock);
592 list_del_rcu(&p->list);
593 spin_unlock_bh(&inetsw6_lock);
594
595 synchronize_net();
596 }
597}
598
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900599EXPORT_SYMBOL(inet6_unregister_protosw);
600
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800601int inet6_sk_rebuild_header(struct sock *sk)
602{
603 int err;
604 struct dst_entry *dst;
605 struct ipv6_pinfo *np = inet6_sk(sk);
606
607 dst = __sk_dst_check(sk, np->dst_cookie);
608
609 if (dst == NULL) {
610 struct inet_sock *inet = inet_sk(sk);
611 struct in6_addr *final_p = NULL, final;
612 struct flowi fl;
613
614 memset(&fl, 0, sizeof(fl));
615 fl.proto = sk->sk_protocol;
616 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
617 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
618 fl.fl6_flowlabel = np->flow_label;
619 fl.oif = sk->sk_bound_dev_if;
620 fl.fl_ip_dport = inet->dport;
621 fl.fl_ip_sport = inet->sport;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700622 security_sk_classify_flow(sk, &fl);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800623
624 if (np->opt && np->opt->srcrt) {
625 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
626 ipv6_addr_copy(&final, &fl.fl6_dst);
627 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
628 final_p = &final;
629 }
630
631 err = ip6_dst_lookup(sk, &dst, &fl);
632 if (err) {
633 sk->sk_route_caps = 0;
634 return err;
635 }
636 if (final_p)
637 ipv6_addr_copy(&fl.fl6_dst, final_p);
638
639 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0) {
640 sk->sk_err_soft = -err;
641 return err;
642 }
643
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700644 __ip6_dst_store(sk, dst, NULL, NULL);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800645 }
646
647 return 0;
648}
649
650EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
651
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800652int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb)
653{
654 struct ipv6_pinfo *np = inet6_sk(sk);
655 struct inet6_skb_parm *opt = IP6CB(skb);
656
657 if (np->rxopt.all) {
658 if ((opt->hop && (np->rxopt.bits.hopopts ||
659 np->rxopt.bits.ohopopts)) ||
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700660 ((IPV6_FLOWINFO_MASK &
661 *(__be32 *)skb_network_header(skb)) &&
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800662 np->rxopt.bits.rxflow) ||
663 (opt->srcrt && (np->rxopt.bits.srcrt ||
664 np->rxopt.bits.osrcrt)) ||
665 ((opt->dst1 || opt->dst0) &&
666 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
667 return 1;
668 }
669 return 0;
670}
671
672EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
673
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900674static struct inet6_protocol *ipv6_gso_pull_exthdrs(struct sk_buff *skb,
675 int proto)
676{
677 struct inet6_protocol *ops = NULL;
678
679 for (;;) {
680 struct ipv6_opt_hdr *opth;
681 int len;
682
683 if (proto != NEXTHDR_HOP) {
684 ops = rcu_dereference(inet6_protos[proto]);
685
686 if (unlikely(!ops))
687 break;
688
689 if (!(ops->flags & INET6_PROTO_GSO_EXTHDR))
690 break;
691 }
692
693 if (unlikely(!pskb_may_pull(skb, 8)))
694 break;
695
696 opth = (void *)skb->data;
697 len = ipv6_optlen(opth);
698
699 if (unlikely(!pskb_may_pull(skb, len)))
700 break;
701
702 proto = opth->nexthdr;
703 __skb_pull(skb, len);
704 }
705
706 return ops;
707}
708
709static int ipv6_gso_send_check(struct sk_buff *skb)
710{
711 struct ipv6hdr *ipv6h;
712 struct inet6_protocol *ops;
713 int err = -EINVAL;
714
715 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
716 goto out;
717
718 ipv6h = ipv6_hdr(skb);
719 __skb_pull(skb, sizeof(*ipv6h));
720 err = -EPROTONOSUPPORT;
721
722 rcu_read_lock();
723 ops = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr);
724 if (likely(ops && ops->gso_send_check)) {
725 skb_reset_transport_header(skb);
726 err = ops->gso_send_check(skb);
727 }
728 rcu_read_unlock();
729
730out:
731 return err;
732}
733
734static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
735{
736 struct sk_buff *segs = ERR_PTR(-EINVAL);
737 struct ipv6hdr *ipv6h;
738 struct inet6_protocol *ops;
739
740 if (!(features & NETIF_F_V6_CSUM))
741 features &= ~NETIF_F_SG;
742
743 if (unlikely(skb_shinfo(skb)->gso_type &
744 ~(SKB_GSO_UDP |
745 SKB_GSO_DODGY |
746 SKB_GSO_TCP_ECN |
747 SKB_GSO_TCPV6 |
748 0)))
749 goto out;
750
751 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
752 goto out;
753
754 ipv6h = ipv6_hdr(skb);
755 __skb_pull(skb, sizeof(*ipv6h));
756 segs = ERR_PTR(-EPROTONOSUPPORT);
757
758 rcu_read_lock();
759 ops = ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr);
760 if (likely(ops && ops->gso_segment)) {
761 skb_reset_transport_header(skb);
762 segs = ops->gso_segment(skb, features);
763 }
764 rcu_read_unlock();
765
766 if (unlikely(IS_ERR(segs)))
767 goto out;
768
769 for (skb = segs; skb; skb = skb->next) {
770 ipv6h = ipv6_hdr(skb);
771 ipv6h->payload_len = htons(skb->len - skb->mac_len -
772 sizeof(*ipv6h));
773 }
774
775out:
776 return segs;
777}
778
779static struct packet_type ipv6_packet_type = {
780 .type = __constant_htons(ETH_P_IPV6),
781 .func = ipv6_rcv,
782 .gso_send_check = ipv6_gso_send_check,
783 .gso_segment = ipv6_gso_segment,
784};
785
786static int __init ipv6_packet_init(void)
787{
788 dev_add_pack(&ipv6_packet_type);
789 return 0;
790}
791
792static void ipv6_packet_cleanup(void)
793{
794 dev_remove_pack(&ipv6_packet_type);
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797static int __init init_ipv6_mibs(void)
798{
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800799 if (snmp_mib_init((void **)ipv6_statistics,
800 sizeof(struct ipstats_mib)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto err_ip_mib;
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800802 if (snmp_mib_init((void **)icmpv6_statistics,
803 sizeof(struct icmpv6_mib)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 goto err_icmp_mib;
David L Stevens14878f72007-09-16 16:52:35 -0700805 if (snmp_mib_init((void **)icmpv6msg_statistics,
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800806 sizeof(struct icmpv6msg_mib)) < 0)
David L Stevens14878f72007-09-16 16:52:35 -0700807 goto err_icmpmsg_mib;
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800808 if (snmp_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 goto err_udp_mib;
YOSHIFUJI Hideakic69bce22008-01-23 22:31:45 -0800810 if (snmp_mib_init((void **)udplite_stats_in6,
811 sizeof (struct udp_mib)) < 0)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800812 goto err_udplite_mib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return 0;
814
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800815err_udplite_mib:
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700816 snmp_mib_free((void **)udp_stats_in6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817err_udp_mib:
David L Stevens14878f72007-09-16 16:52:35 -0700818 snmp_mib_free((void **)icmpv6msg_statistics);
819err_icmpmsg_mib:
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700820 snmp_mib_free((void **)icmpv6_statistics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821err_icmp_mib:
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700822 snmp_mib_free((void **)ipv6_statistics);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823err_ip_mib:
824 return -ENOMEM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828static void cleanup_ipv6_mibs(void)
829{
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700830 snmp_mib_free((void **)ipv6_statistics);
831 snmp_mib_free((void **)icmpv6_statistics);
Pavel Emelyanovdc8a82a2007-10-17 19:30:40 -0700832 snmp_mib_free((void **)icmpv6msg_statistics);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700833 snmp_mib_free((void **)udp_stats_in6);
834 snmp_mib_free((void **)udplite_stats_in6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800837static int inet6_net_init(struct net *net)
838{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700839 int err = 0;
840
Daniel Lezcano99bc9c42008-01-10 02:54:53 -0800841 net->ipv6.sysctl.bindv6only = 0;
Daniel Lezcano49905092008-01-10 03:01:01 -0800842 net->ipv6.sysctl.flush_delay = 0;
843 net->ipv6.sysctl.ip6_rt_max_size = 4096;
844 net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2;
845 net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ;
846 net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ;
847 net->ipv6.sysctl.ip6_rt_gc_elasticity = 9;
848 net->ipv6.sysctl.ip6_rt_mtu_expires = 10*60*HZ;
849 net->ipv6.sysctl.ip6_rt_min_advmss = IPV6_MIN_MTU - 20 - 40;
Daniel Lezcano41a76902008-01-10 03:02:40 -0800850 net->ipv6.sysctl.icmpv6_time = 1*HZ;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800851
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700852#ifdef CONFIG_PROC_FS
853 err = udp6_proc_init(net);
854 if (err)
855 goto out;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700856 err = tcp6_proc_init(net);
857 if (err)
858 goto proc_tcp6_fail;
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700859 err = ac6_proc_init(net);
860 if (err)
861 goto proc_ac6_fail;
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700862out:
863#endif
864 return err;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700865
866#ifdef CONFIG_PROC_FS
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700867proc_ac6_fail:
868 tcp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700869proc_tcp6_fail:
870 udp6_proc_exit(net);
871 goto out;
872#endif
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800873}
874
875static void inet6_net_exit(struct net *net)
876{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700877#ifdef CONFIG_PROC_FS
878 udp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700879 tcp6_proc_exit(net);
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700880 ac6_proc_exit(net);
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700881#endif
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800882}
883
884static struct pernet_operations inet6_net_ops = {
885 .init = inet6_net_init,
886 .exit = inet6_net_exit,
887};
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889static int __init inet6_init(void)
890{
891 struct sk_buff *dummy_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900892 struct list_head *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 int err;
894
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -0700895 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 err = proto_register(&tcpv6_prot, 1);
898 if (err)
899 goto out;
900
901 err = proto_register(&udpv6_prot, 1);
902 if (err)
903 goto out_unregister_tcp_proto;
904
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800905 err = proto_register(&udplitev6_prot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (err)
907 goto out_unregister_udp_proto;
908
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800909 err = proto_register(&rawv6_prot, 1);
910 if (err)
911 goto out_unregister_udplite_proto;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 /* Register the socket-side information for inet6_create. */
915 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
916 INIT_LIST_HEAD(r);
917
918 /* We MUST register RAW sockets before we create the ICMP6,
919 * IGMP6, or NDISC control sockets.
920 */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -0800921 err = rawv6_init();
922 if (err)
923 goto out_unregister_raw_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* Register the family here so that the init calls below will
926 * be able to create sockets. (?? is this dangerous ??)
927 */
David S. Miller8eb55912005-11-11 15:05:47 -0800928 err = sock_register(&inet6_family_ops);
929 if (err)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -0800930 goto out_sock_register_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /* Initialise ipv6 mibs */
933 err = init_ipv6_mibs();
934 if (err)
David S. Miller8eb55912005-11-11 15:05:47 -0800935 goto out_unregister_sock;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900936
Al Viroeeb61f72008-07-27 08:59:33 +0100937#ifdef CONFIG_SYSCTL
938 err = ipv6_static_sysctl_register();
939 if (err)
940 goto static_sysctl_fail;
941#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /*
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 Lezcano81c1c172008-01-10 02:48:33 -0800949 err = register_pernet_subsys(&inet6_net_ops);
950 if (err)
951 goto register_pernet_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -0800952 err = icmpv6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (err)
954 goto icmp_fail;
Wang Chen623d1a12008-07-03 12:13:30 +0800955 err = ip6_mr_init();
956 if (err)
957 goto ipmr_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -0800958 err = ndisc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (err)
960 goto ndisc_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -0800961 err = igmp6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (err)
963 goto igmp_fail;
Harald Welte2cc7d572005-08-09 19:42:34 -0700964 err = ipv6_netfilter_init();
965 if (err)
966 goto netfilter_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 /* Create /proc/foo6 entries. */
968#ifdef CONFIG_PROC_FS
969 err = -ENOMEM;
970 if (raw6_proc_init())
971 goto proc_raw6_fail;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800972 if (udplite6_proc_init())
973 goto proc_udplite6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (ipv6_misc_proc_init())
975 goto proc_misc6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (if6_proc_init())
977 goto proc_if6_fail;
978#endif
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -0800979 err = ip6_route_init();
980 if (err)
981 goto ip6_route_fail;
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800982 err = ip6_flowlabel_init();
983 if (err)
984 goto ip6_flowlabel_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 err = addrconf_init();
986 if (err)
987 goto addrconf_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 /* Init v6 extension headers. */
Daniel Lezcano248b2382007-12-11 02:23:54 -0800990 err = ipv6_exthdrs_init();
991 if (err)
992 goto ipv6_exthdrs_fail;
993
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800994 err = ipv6_frag_init();
995 if (err)
996 goto ipv6_frag_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 /* Init v6 transport protocols. */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -0800999 err = udpv6_init();
1000 if (err)
1001 goto udpv6_fail;
Herbert Xue2ed4052005-07-05 14:41:20 -07001002
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001003 err = udplitev6_init();
1004 if (err)
1005 goto udplitev6_fail;
1006
1007 err = tcpv6_init();
1008 if (err)
1009 goto tcpv6_fail;
1010
1011 err = ipv6_packet_init();
1012 if (err)
1013 goto ipv6_packet_fail;
Benjamin Thery94911fe2008-03-05 10:45:36 -08001014
1015#ifdef CONFIG_SYSCTL
1016 err = ipv6_sysctl_register();
1017 if (err)
1018 goto sysctl_fail;
1019#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020out:
1021 return err;
1022
Benjamin Thery94911fe2008-03-05 10:45:36 -08001023#ifdef CONFIG_SYSCTL
1024sysctl_fail:
1025 ipv6_packet_cleanup();
1026#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001027ipv6_packet_fail:
1028 tcpv6_exit();
1029tcpv6_fail:
1030 udplitev6_exit();
1031udplitev6_fail:
1032 udpv6_exit();
1033udpv6_fail:
1034 ipv6_frag_exit();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001035ipv6_frag_fail:
1036 ipv6_exthdrs_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001037ipv6_exthdrs_fail:
1038 addrconf_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039addrconf_fail:
1040 ip6_flowlabel_cleanup();
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -08001041ip6_flowlabel_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ip6_route_cleanup();
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001043ip6_route_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#ifdef CONFIG_PROC_FS
1045 if6_proc_exit();
1046proc_if6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 ipv6_misc_proc_exit();
1048proc_misc6_fail:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001049 udplite6_proc_exit();
1050proc_udplite6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 raw6_proc_exit();
1052proc_raw6_fail:
1053#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001054 ipv6_netfilter_fini();
1055netfilter_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 igmp6_cleanup();
1057igmp_fail:
1058 ndisc_cleanup();
1059ndisc_fail:
Wang Chen623d1a12008-07-03 12:13:30 +08001060 ip6_mr_cleanup();
1061ipmr_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 icmpv6_cleanup();
1063icmp_fail:
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001064 unregister_pernet_subsys(&inet6_net_ops);
1065register_pernet_fail:
Al Viroeeb61f72008-07-27 08:59:33 +01001066#ifdef CONFIG_SYSCTL
1067 ipv6_static_sysctl_unregister();
1068static_sysctl_fail:
1069#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 cleanup_ipv6_mibs();
David S. Miller8eb55912005-11-11 15:05:47 -08001071out_unregister_sock:
1072 sock_unregister(PF_INET6);
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001073 rtnl_unregister_all(PF_INET6);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001074out_sock_register_fail:
1075 rawv6_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076out_unregister_raw_proto:
1077 proto_unregister(&rawv6_prot);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001078out_unregister_udplite_proto:
1079 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080out_unregister_udp_proto:
1081 proto_unregister(&udpv6_prot);
1082out_unregister_tcp_proto:
1083 proto_unregister(&tcpv6_prot);
1084 goto out;
1085}
1086module_init(inet6_init);
1087
1088static void __exit inet6_exit(void)
1089{
1090 /* First of all disallow new sockets creation. */
1091 sock_unregister(PF_INET6);
Thomas Grafc127ea22007-03-22 11:58:32 -07001092 /* Disallow any further netlink messages */
1093 rtnl_unregister_all(PF_INET6);
Joe Jinca17c232007-02-20 01:30:15 -08001094
Benjamin Thery94911fe2008-03-05 10:45:36 -08001095#ifdef CONFIG_SYSCTL
1096 ipv6_sysctl_unregister();
1097#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001098 udpv6_exit();
1099 udplitev6_exit();
1100 tcpv6_exit();
1101
Joe Jinca17c232007-02-20 01:30:15 -08001102 /* Cleanup code parts. */
1103 ipv6_packet_cleanup();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001104 ipv6_frag_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001105 ipv6_exthdrs_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 addrconf_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001107 ip6_flowlabel_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 ip6_route_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001109#ifdef CONFIG_PROC_FS
1110
1111 /* Cleanup code parts. */
1112 if6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001113 ipv6_misc_proc_exit();
1114 udplite6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001115 raw6_proc_exit();
1116#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001117 ipv6_netfilter_fini();
Joe Jinca17c232007-02-20 01:30:15 -08001118 igmp6_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ndisc_cleanup();
Wang Chen623d1a12008-07-03 12:13:30 +08001120 ip6_mr_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 icmpv6_cleanup();
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001122 rawv6_exit();
Benjamin Thery94911fe2008-03-05 10:45:36 -08001123
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001124 unregister_pernet_subsys(&inet6_net_ops);
Al Viroeeb61f72008-07-27 08:59:33 +01001125#ifdef CONFIG_SYSCTL
1126 ipv6_static_sysctl_unregister();
1127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 cleanup_ipv6_mibs();
1129 proto_unregister(&rawv6_prot);
Joe Jinca17c232007-02-20 01:30:15 -08001130 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 proto_unregister(&udpv6_prot);
1132 proto_unregister(&tcpv6_prot);
1133}
1134module_exit(inet6_exit);
1135
1136MODULE_ALIAS_NETPROTO(PF_INET6);