blob: 7f092fa912bd3eaf4fff2cbcc4cd92408e99a31c [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>
KOVACS Krisztian1668e012008-10-01 07:33:10 -070053#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/transp_v6.h>
55#include <net/ip6_route.h>
56#include <net/addrconf.h>
57#ifdef CONFIG_IPV6_TUNNEL
58#include <net/ip6_tunnel.h>
59#endif
60
61#include <asm/uaccess.h>
62#include <asm/system.h>
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090063#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65MODULE_AUTHOR("Cast of dozens");
66MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
67MODULE_LICENSE("GPL");
68
Pavel Emelyanovf1267342007-11-23 21:28:44 +080069/* The inetsw6 table contains everything that inet6_create needs to
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * build a new socket.
71 */
72static struct list_head inetsw6[SOCK_MAX];
73static DEFINE_SPINLOCK(inetsw6_lock);
74
Brian Haleyfe7ca2e2009-03-04 03:18:11 -080075static int disable_ipv6 = 0;
76module_param_named(disable, disable_ipv6, int, 0);
77MODULE_PARM_DESC(disable, "Disable IPv6 such that it is non-functional");
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
80{
81 const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo);
82
83 return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
84}
85
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -070086static int inet6_create(struct net *net, struct socket *sock, int protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 struct inet_sock *inet;
89 struct ipv6_pinfo *np;
90 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct inet_protosw *answer;
92 struct proto *answer_prot;
93 unsigned char answer_flags;
94 char answer_no_check;
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -080095 int try_loading_module = 0;
96 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David S. Millerb3da2cf2007-03-23 11:40:27 -070098 if (sock->type != SOCK_RAW &&
99 sock->type != SOCK_DGRAM &&
100 !inet_ehash_secret)
101 build_ehash_secret();
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* Look for the requested type/protocol pair. */
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800104lookup_protocol:
105 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 rcu_read_lock();
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700107 list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700109 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /* Check the non-wild match. */
111 if (protocol == answer->protocol) {
112 if (protocol != IPPROTO_IP)
113 break;
114 } else {
115 /* Check for the two wild cases. */
116 if (IPPROTO_IP == protocol) {
117 protocol = answer->protocol;
118 break;
119 }
120 if (IPPROTO_IP == answer->protocol)
121 break;
122 }
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800123 err = -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Paul E. McKenney696adfe2008-07-25 01:45:34 -0700126 if (err) {
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800127 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 Torvalds1da177e2005-04-16 15:20:36 -0700149 if (answer->capability > 0 && !capable(answer->capability))
150 goto out_rcu_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 sock->ops = answer->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 answer_prot = answer->prot;
154 answer_no_check = answer->no_check;
155 answer_flags = answer->flags;
156 rcu_read_unlock();
157
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700158 WARN_ON(answer_prot->slab == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800160 err = -ENOBUFS;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700161 sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (sk == NULL)
163 goto out;
164
165 sock_init_data(sock, sk);
166
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800167 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 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 Moore469de9b2007-01-09 14:37:06 -0800173 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (SOCK_RAW == sock->type) {
176 inet->num = protocol;
177 if (IPPROTO_RAW == protocol)
178 inet->hdrincl = 1;
179 }
180
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700181 sk->sk_destruct = inet_sock_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 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 Emelyanov2e761e02008-06-09 15:53:30 -0700192 np->ipv6only = net->ipv6.sysctl.bindv6only;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /* 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 Hideaki1ab14572007-02-09 23:24:49 +0900208 /*
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700209 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 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 Viroe69a4ad2006-11-14 20:56:00 -0800224 inet->sport = htons(inet->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 sk->sk_prot->hash(sk);
226 }
227 if (sk->sk_prot->init) {
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800228 err = sk->sk_prot->init(sk);
229 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 sk_common_release(sk);
231 goto out;
232 }
233 }
234out:
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236out_rcu_unlock:
237 rcu_read_unlock();
238 goto out;
239}
240
241
242/* bind for INET6 API */
243int 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 Hideaki3b1e0a62008-03-26 02:26:21 +0900249 struct net *net = sock_net(sk);
Al Virofd683222006-09-26 22:17:51 -0700250 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 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) {
Vlad Yasevich783ed5a2009-03-24 16:24:48 +0000279 /* Binding to v4-mapped address on a v6-only socket
280 * makes no sense
281 */
282 if (np->ipv6only) {
283 err = -EINVAL;
284 goto out;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 v4addr = addr->sin6_addr.s6_addr32[3];
Benjamin Thery075de932008-03-05 10:45:59 -0800287 if (inet_addr_type(net, v4addr) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 err = -EADDRNOTAVAIL;
289 goto out;
290 }
291 } else {
292 if (addr_type != IPV6_ADDR_ANY) {
293 struct net_device *dev = NULL;
294
295 if (addr_type & IPV6_ADDR_LINKLOCAL) {
296 if (addr_len >= sizeof(struct sockaddr_in6) &&
297 addr->sin6_scope_id) {
298 /* Override any existing binding, if another one
299 * is supplied by user.
300 */
301 sk->sk_bound_dev_if = addr->sin6_scope_id;
302 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Binding to link-local address requires an interface */
305 if (!sk->sk_bound_dev_if) {
306 err = -EINVAL;
307 goto out;
308 }
Benjamin Thery075de932008-03-05 10:45:59 -0800309 dev = dev_get_by_index(net, sk->sk_bound_dev_if);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!dev) {
311 err = -ENODEV;
312 goto out;
313 }
314 }
315
316 /* ipv4 addr of the socket is invalid. Only the
317 * unspecified and mapped address have a v4 equivalent.
318 */
319 v4addr = LOOPBACK4_IPV6;
320 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
Benjamin Thery075de932008-03-05 10:45:59 -0800321 if (!ipv6_chk_addr(net, &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800322 dev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (dev)
324 dev_put(dev);
325 err = -EADDRNOTAVAIL;
326 goto out;
327 }
328 }
329 if (dev)
330 dev_put(dev);
331 }
332 }
333
334 inet->rcv_saddr = v4addr;
335 inet->saddr = v4addr;
336
337 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!(addr_type & IPV6_ADDR_MULTICAST))
340 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
341
342 /* Make sure we are allowed to bind here. */
343 if (sk->sk_prot->get_port(sk, snum)) {
344 inet_reset_saddr(sk);
345 err = -EADDRINUSE;
346 goto out;
347 }
348
349 if (addr_type != IPV6_ADDR_ANY)
350 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
351 if (snum)
352 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
Al Viroe69a4ad2006-11-14 20:56:00 -0800353 inet->sport = htons(inet->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 inet->dport = 0;
355 inet->daddr = 0;
356out:
357 release_sock(sk);
358 return err;
359}
360
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900361EXPORT_SYMBOL(inet6_bind);
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363int inet6_release(struct socket *sock)
364{
365 struct sock *sk = sock->sk;
366
367 if (sk == NULL)
368 return -EINVAL;
369
370 /* Free mc lists */
371 ipv6_sock_mc_close(sk);
372
373 /* Free ac lists */
374 ipv6_sock_ac_close(sk);
375
376 return inet_release(sock);
377}
378
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900379EXPORT_SYMBOL(inet6_release);
380
Brian Haley7d06b2e2008-06-14 17:04:49 -0700381void inet6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 struct ipv6_pinfo *np = inet6_sk(sk);
384 struct sk_buff *skb;
385 struct ipv6_txoptions *opt;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* Release rx options */
388
389 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
390 kfree_skb(skb);
391
392 /* Free flowlabels */
393 fl6_free_socklist(sk);
394
395 /* Free tx options */
396
397 if ((opt = xchg(&np->opt, NULL)) != NULL)
398 sock_kfree_s(sk, opt, opt->tot_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800401EXPORT_SYMBOL_GPL(inet6_destroy_sock);
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*
404 * This does both peername and sockname.
405 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
408 int *uaddr_len, int peer)
409{
410 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
411 struct sock *sk = sock->sk;
412 struct inet_sock *inet = inet_sk(sk);
413 struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 sin->sin6_family = AF_INET6;
416 sin->sin6_flowinfo = 0;
417 sin->sin6_scope_id = 0;
418 if (peer) {
419 if (!inet->dport)
420 return -ENOTCONN;
421 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
422 peer == 1)
423 return -ENOTCONN;
424 sin->sin6_port = inet->dport;
425 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
426 if (np->sndflow)
427 sin->sin6_flowinfo = np->flow_label;
428 } else {
429 if (ipv6_addr_any(&np->rcv_saddr))
430 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
431 else
432 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
433
434 sin->sin6_port = inet->sport;
435 }
436 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
437 sin->sin6_scope_id = sk->sk_bound_dev_if;
438 *uaddr_len = sizeof(*sin);
439 return(0);
440}
441
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900442EXPORT_SYMBOL(inet6_getname);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
445{
446 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900447 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900449 switch(cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 {
451 case SIOCGSTAMP:
452 return sock_get_timestamp(sk, (struct timeval __user *)arg);
453
Eric Dumazetae40eb12007-03-18 17:33:16 -0700454 case SIOCGSTAMPNS:
455 return sock_get_timestampns(sk, (struct timespec __user *)arg);
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case SIOCADDRT:
458 case SIOCDELRT:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900459
Daniel Lezcano55786892008-03-04 13:47:47 -0800460 return(ipv6_route_ioctl(net, cmd, (void __user *)arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 case SIOCSIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800463 return addrconf_add_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 case SIOCDIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800465 return addrconf_del_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 case SIOCSIFDSTADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800467 return addrconf_set_dstaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 default:
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800469 if (!sk->sk_prot->ioctl)
470 return -ENOIOCTLCMD;
471 return sk->sk_prot->ioctl(sk, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473 /*NOTREACHED*/
474 return(0);
475}
476
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900477EXPORT_SYMBOL(inet6_ioctl);
478
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800479const struct proto_ops inet6_stream_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800480 .family = PF_INET6,
481 .owner = THIS_MODULE,
482 .release = inet6_release,
483 .bind = inet6_bind,
484 .connect = inet_stream_connect, /* ok */
485 .socketpair = sock_no_socketpair, /* a do nothing */
486 .accept = inet_accept, /* ok */
487 .getname = inet6_getname,
488 .poll = tcp_poll, /* ok */
489 .ioctl = inet6_ioctl, /* must change */
490 .listen = inet_listen, /* ok */
491 .shutdown = inet_shutdown, /* ok */
492 .setsockopt = sock_common_setsockopt, /* ok */
493 .getsockopt = sock_common_getsockopt, /* ok */
David S. Miller3516ffb2007-08-02 19:23:56 -0700494 .sendmsg = tcp_sendmsg, /* ok */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800495 .recvmsg = sock_common_recvmsg, /* ok */
496 .mmap = sock_no_mmap,
497 .sendpage = tcp_sendpage,
Jens Axboea0974dd2007-11-06 23:31:58 -0800498 .splice_read = tcp_splice_read,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800499#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800500 .compat_setsockopt = compat_sock_common_setsockopt,
501 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800502#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503};
504
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800505const struct proto_ops inet6_dgram_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800506 .family = PF_INET6,
507 .owner = THIS_MODULE,
508 .release = inet6_release,
509 .bind = inet6_bind,
510 .connect = inet_dgram_connect, /* ok */
511 .socketpair = sock_no_socketpair, /* a do nothing */
512 .accept = sock_no_accept, /* a do nothing */
513 .getname = inet6_getname,
514 .poll = udp_poll, /* ok */
515 .ioctl = inet6_ioctl, /* must change */
516 .listen = sock_no_listen, /* ok */
517 .shutdown = inet_shutdown, /* ok */
518 .setsockopt = sock_common_setsockopt, /* ok */
519 .getsockopt = sock_common_getsockopt, /* ok */
520 .sendmsg = inet_sendmsg, /* ok */
521 .recvmsg = sock_common_recvmsg, /* ok */
522 .mmap = sock_no_mmap,
523 .sendpage = sock_no_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800524#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800525 .compat_setsockopt = compat_sock_common_setsockopt,
526 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800527#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528};
529
530static struct net_proto_family inet6_family_ops = {
531 .family = PF_INET6,
532 .create = inet6_create,
533 .owner = THIS_MODULE,
534};
535
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800536int inet6_register_protosw(struct inet_protosw *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 struct list_head *lh;
539 struct inet_protosw *answer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct list_head *last_perm;
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800541 int protocol = p->protocol;
542 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 spin_lock_bh(&inetsw6_lock);
545
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800546 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (p->type >= SOCK_MAX)
548 goto out_illegal;
549
550 /* If we are trying to override a permanent protocol, bail. */
551 answer = NULL;
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800552 ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 last_perm = &inetsw6[p->type];
554 list_for_each(lh, &inetsw6[p->type]) {
555 answer = list_entry(lh, struct inet_protosw, list);
556
557 /* Check only the non-wild match. */
558 if (INET_PROTOSW_PERMANENT & answer->flags) {
559 if (protocol == answer->protocol)
560 break;
561 last_perm = lh;
562 }
563
564 answer = NULL;
565 }
566 if (answer)
567 goto out_permanent;
568
569 /* Add the new entry after the last permanent entry if any, so that
570 * the new entry does not override a permanent entry when matched with
571 * a wild-card protocol. But it is allowed to override any existing
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900572 * non-permanent entry. This means that when we remove this entry, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * system automatically returns to the old behavior.
574 */
575 list_add_rcu(&p->list, last_perm);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800576 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577out:
578 spin_unlock_bh(&inetsw6_lock);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800579 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581out_permanent:
582 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
583 protocol);
584 goto out;
585
586out_illegal:
587 printk(KERN_ERR
588 "Ignoring attempt to register invalid socket type %d.\n",
589 p->type);
590 goto out;
591}
592
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900593EXPORT_SYMBOL(inet6_register_protosw);
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595void
596inet6_unregister_protosw(struct inet_protosw *p)
597{
598 if (INET_PROTOSW_PERMANENT & p->flags) {
599 printk(KERN_ERR
600 "Attempt to unregister permanent protocol %d.\n",
601 p->protocol);
602 } else {
603 spin_lock_bh(&inetsw6_lock);
604 list_del_rcu(&p->list);
605 spin_unlock_bh(&inetsw6_lock);
606
607 synchronize_net();
608 }
609}
610
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900611EXPORT_SYMBOL(inet6_unregister_protosw);
612
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800613int inet6_sk_rebuild_header(struct sock *sk)
614{
615 int err;
616 struct dst_entry *dst;
617 struct ipv6_pinfo *np = inet6_sk(sk);
618
619 dst = __sk_dst_check(sk, np->dst_cookie);
620
621 if (dst == NULL) {
622 struct inet_sock *inet = inet_sk(sk);
623 struct in6_addr *final_p = NULL, final;
624 struct flowi fl;
625
626 memset(&fl, 0, sizeof(fl));
627 fl.proto = sk->sk_protocol;
628 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
629 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
630 fl.fl6_flowlabel = np->flow_label;
631 fl.oif = sk->sk_bound_dev_if;
632 fl.fl_ip_dport = inet->dport;
633 fl.fl_ip_sport = inet->sport;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700634 security_sk_classify_flow(sk, &fl);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800635
636 if (np->opt && np->opt->srcrt) {
637 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
638 ipv6_addr_copy(&final, &fl.fl6_dst);
639 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
640 final_p = &final;
641 }
642
643 err = ip6_dst_lookup(sk, &dst, &fl);
644 if (err) {
645 sk->sk_route_caps = 0;
646 return err;
647 }
648 if (final_p)
649 ipv6_addr_copy(&fl.fl6_dst, final_p);
650
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800651 if ((err = xfrm_lookup(sock_net(sk), &dst, &fl, sk, 0)) < 0) {
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800652 sk->sk_err_soft = -err;
653 return err;
654 }
655
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700656 __ip6_dst_store(sk, dst, NULL, NULL);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800657 }
658
659 return 0;
660}
661
662EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
663
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800664int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb)
665{
666 struct ipv6_pinfo *np = inet6_sk(sk);
667 struct inet6_skb_parm *opt = IP6CB(skb);
668
669 if (np->rxopt.all) {
670 if ((opt->hop && (np->rxopt.bits.hopopts ||
671 np->rxopt.bits.ohopopts)) ||
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700672 ((IPV6_FLOWINFO_MASK &
673 *(__be32 *)skb_network_header(skb)) &&
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800674 np->rxopt.bits.rxflow) ||
675 (opt->srcrt && (np->rxopt.bits.srcrt ||
676 np->rxopt.bits.osrcrt)) ||
677 ((opt->dst1 || opt->dst0) &&
678 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
679 return 1;
680 }
681 return 0;
682}
683
684EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
685
Herbert Xu787e9202009-01-08 10:40:57 -0800686static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto)
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900687{
688 struct inet6_protocol *ops = NULL;
689
690 for (;;) {
691 struct ipv6_opt_hdr *opth;
692 int len;
693
694 if (proto != NEXTHDR_HOP) {
695 ops = rcu_dereference(inet6_protos[proto]);
696
697 if (unlikely(!ops))
698 break;
699
700 if (!(ops->flags & INET6_PROTO_GSO_EXTHDR))
701 break;
702 }
703
704 if (unlikely(!pskb_may_pull(skb, 8)))
705 break;
706
707 opth = (void *)skb->data;
708 len = ipv6_optlen(opth);
709
710 if (unlikely(!pskb_may_pull(skb, len)))
711 break;
712
713 proto = opth->nexthdr;
714 __skb_pull(skb, len);
715 }
716
Herbert Xu787e9202009-01-08 10:40:57 -0800717 return proto;
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900718}
719
720static int ipv6_gso_send_check(struct sk_buff *skb)
721{
722 struct ipv6hdr *ipv6h;
723 struct inet6_protocol *ops;
724 int err = -EINVAL;
725
726 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
727 goto out;
728
729 ipv6h = ipv6_hdr(skb);
730 __skb_pull(skb, sizeof(*ipv6h));
731 err = -EPROTONOSUPPORT;
732
733 rcu_read_lock();
Herbert Xu787e9202009-01-08 10:40:57 -0800734 ops = rcu_dereference(inet6_protos[
735 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
736
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900737 if (likely(ops && ops->gso_send_check)) {
738 skb_reset_transport_header(skb);
739 err = ops->gso_send_check(skb);
740 }
741 rcu_read_unlock();
742
743out:
744 return err;
745}
746
747static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
748{
749 struct sk_buff *segs = ERR_PTR(-EINVAL);
750 struct ipv6hdr *ipv6h;
751 struct inet6_protocol *ops;
752
753 if (!(features & NETIF_F_V6_CSUM))
754 features &= ~NETIF_F_SG;
755
756 if (unlikely(skb_shinfo(skb)->gso_type &
757 ~(SKB_GSO_UDP |
758 SKB_GSO_DODGY |
759 SKB_GSO_TCP_ECN |
760 SKB_GSO_TCPV6 |
761 0)))
762 goto out;
763
764 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
765 goto out;
766
767 ipv6h = ipv6_hdr(skb);
768 __skb_pull(skb, sizeof(*ipv6h));
769 segs = ERR_PTR(-EPROTONOSUPPORT);
770
771 rcu_read_lock();
Herbert Xu787e9202009-01-08 10:40:57 -0800772 ops = rcu_dereference(inet6_protos[
773 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
774
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900775 if (likely(ops && ops->gso_segment)) {
776 skb_reset_transport_header(skb);
777 segs = ops->gso_segment(skb, features);
778 }
779 rcu_read_unlock();
780
781 if (unlikely(IS_ERR(segs)))
782 goto out;
783
784 for (skb = segs; skb; skb = skb->next) {
785 ipv6h = ipv6_hdr(skb);
786 ipv6h->payload_len = htons(skb->len - skb->mac_len -
787 sizeof(*ipv6h));
788 }
789
790out:
791 return segs;
792}
793
Herbert Xu787e9202009-01-08 10:40:57 -0800794struct ipv6_gro_cb {
795 struct napi_gro_cb napi;
796 int proto;
797};
798
799#define IPV6_GRO_CB(skb) ((struct ipv6_gro_cb *)(skb)->cb)
800
801static struct sk_buff **ipv6_gro_receive(struct sk_buff **head,
802 struct sk_buff *skb)
803{
804 struct inet6_protocol *ops;
805 struct sk_buff **pp = NULL;
806 struct sk_buff *p;
807 struct ipv6hdr *iph;
808 unsigned int nlen;
809 int flush = 1;
810 int proto;
Herbert Xuebad18e2009-01-17 19:46:16 +0000811 __wsum csum;
Herbert Xu787e9202009-01-08 10:40:57 -0800812
Herbert Xu86911732009-01-29 14:19:50 +0000813 iph = skb_gro_header(skb, sizeof(*iph));
814 if (unlikely(!iph))
Herbert Xu787e9202009-01-08 10:40:57 -0800815 goto out;
816
Herbert Xu86911732009-01-29 14:19:50 +0000817 skb_gro_pull(skb, sizeof(*iph));
818 skb_set_transport_header(skb, skb_gro_offset(skb));
Herbert Xu787e9202009-01-08 10:40:57 -0800819
Herbert Xu86911732009-01-29 14:19:50 +0000820 flush += ntohs(iph->payload_len) != skb_gro_len(skb);
Herbert Xu787e9202009-01-08 10:40:57 -0800821
822 rcu_read_lock();
Herbert Xu86911732009-01-29 14:19:50 +0000823 proto = iph->nexthdr;
Herbert Xu787e9202009-01-08 10:40:57 -0800824 ops = rcu_dereference(inet6_protos[proto]);
Herbert Xu86911732009-01-29 14:19:50 +0000825 if (!ops || !ops->gro_receive) {
826 __pskb_pull(skb, skb_gro_offset(skb));
827 proto = ipv6_gso_pull_exthdrs(skb, proto);
828 skb_gro_pull(skb, -skb_transport_offset(skb));
829 skb_reset_transport_header(skb);
830 __skb_push(skb, skb_gro_offset(skb));
831
832 if (!ops || !ops->gro_receive)
833 goto out_unlock;
834
835 iph = ipv6_hdr(skb);
836 }
837
838 IPV6_GRO_CB(skb)->proto = proto;
Herbert Xu787e9202009-01-08 10:40:57 -0800839
840 flush--;
Herbert Xu787e9202009-01-08 10:40:57 -0800841 nlen = skb_network_header_len(skb);
842
843 for (p = *head; p; p = p->next) {
844 struct ipv6hdr *iph2;
845
846 if (!NAPI_GRO_CB(p)->same_flow)
847 continue;
848
849 iph2 = ipv6_hdr(p);
850
851 /* All fields must match except length. */
852 if (nlen != skb_network_header_len(p) ||
853 memcmp(iph, iph2, offsetof(struct ipv6hdr, payload_len)) ||
854 memcmp(&iph->nexthdr, &iph2->nexthdr,
855 nlen - offsetof(struct ipv6hdr, nexthdr))) {
856 NAPI_GRO_CB(p)->same_flow = 0;
857 continue;
858 }
859
860 NAPI_GRO_CB(p)->flush |= flush;
861 }
862
863 NAPI_GRO_CB(skb)->flush |= flush;
864
Herbert Xuebad18e2009-01-17 19:46:16 +0000865 csum = skb->csum;
866 skb_postpull_rcsum(skb, iph, skb_network_header_len(skb));
867
Herbert Xu787e9202009-01-08 10:40:57 -0800868 pp = ops->gro_receive(head, skb);
869
Herbert Xuebad18e2009-01-17 19:46:16 +0000870 skb->csum = csum;
871
Herbert Xu787e9202009-01-08 10:40:57 -0800872out_unlock:
873 rcu_read_unlock();
874
875out:
876 NAPI_GRO_CB(skb)->flush |= flush;
877
878 return pp;
879}
880
881static int ipv6_gro_complete(struct sk_buff *skb)
882{
883 struct inet6_protocol *ops;
884 struct ipv6hdr *iph = ipv6_hdr(skb);
885 int err = -ENOSYS;
886
887 iph->payload_len = htons(skb->len - skb_network_offset(skb) -
888 sizeof(*iph));
889
890 rcu_read_lock();
891 ops = rcu_dereference(inet6_protos[IPV6_GRO_CB(skb)->proto]);
892 if (WARN_ON(!ops || !ops->gro_complete))
893 goto out_unlock;
894
895 err = ops->gro_complete(skb);
896
897out_unlock:
898 rcu_read_unlock();
899
900 return err;
901}
902
Stephen Hemminger7546dd92009-03-09 08:18:29 +0000903static struct packet_type ipv6_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -0800904 .type = cpu_to_be16(ETH_P_IPV6),
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900905 .func = ipv6_rcv,
906 .gso_send_check = ipv6_gso_send_check,
907 .gso_segment = ipv6_gso_segment,
Herbert Xu787e9202009-01-08 10:40:57 -0800908 .gro_receive = ipv6_gro_receive,
909 .gro_complete = ipv6_gro_complete,
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900910};
911
912static int __init ipv6_packet_init(void)
913{
914 dev_add_pack(&ipv6_packet_type);
915 return 0;
916}
917
918static void ipv6_packet_cleanup(void)
919{
920 dev_remove_pack(&ipv6_packet_type);
921}
922
Denis V. Luneve43291c2008-10-07 14:48:53 -0700923static int __net_init ipv6_init_mibs(struct net *net)
924{
Denis V. Lunev0c7ed672008-10-07 14:49:36 -0700925 if (snmp_mib_init((void **)net->mib.udp_stats_in6,
926 sizeof (struct udp_mib)) < 0)
927 return -ENOMEM;
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700928 if (snmp_mib_init((void **)net->mib.udplite_stats_in6,
929 sizeof (struct udp_mib)) < 0)
930 goto err_udplite_mib;
Denis V. Lunev9261e532008-10-08 10:36:03 -0700931 if (snmp_mib_init((void **)net->mib.ipv6_statistics,
932 sizeof(struct ipstats_mib)) < 0)
933 goto err_ip_mib;
934 if (snmp_mib_init((void **)net->mib.icmpv6_statistics,
935 sizeof(struct icmpv6_mib)) < 0)
936 goto err_icmp_mib;
937 if (snmp_mib_init((void **)net->mib.icmpv6msg_statistics,
938 sizeof(struct icmpv6msg_mib)) < 0)
939 goto err_icmpmsg_mib;
Denis V. Luneve43291c2008-10-07 14:48:53 -0700940 return 0;
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700941
Denis V. Lunev9261e532008-10-08 10:36:03 -0700942err_icmpmsg_mib:
943 snmp_mib_free((void **)net->mib.icmpv6_statistics);
944err_icmp_mib:
945 snmp_mib_free((void **)net->mib.ipv6_statistics);
946err_ip_mib:
947 snmp_mib_free((void **)net->mib.udplite_stats_in6);
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700948err_udplite_mib:
949 snmp_mib_free((void **)net->mib.udp_stats_in6);
950 return -ENOMEM;
Denis V. Luneve43291c2008-10-07 14:48:53 -0700951}
952
953static void __net_exit ipv6_cleanup_mibs(struct net *net)
954{
Denis V. Lunev0c7ed672008-10-07 14:49:36 -0700955 snmp_mib_free((void **)net->mib.udp_stats_in6);
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700956 snmp_mib_free((void **)net->mib.udplite_stats_in6);
Denis V. Lunev9261e532008-10-08 10:36:03 -0700957 snmp_mib_free((void **)net->mib.ipv6_statistics);
958 snmp_mib_free((void **)net->mib.icmpv6_statistics);
959 snmp_mib_free((void **)net->mib.icmpv6msg_statistics);
Denis V. Luneve43291c2008-10-07 14:48:53 -0700960}
961
Alexey Dobriyane7dc8492008-10-13 18:54:07 -0700962static int __net_init inet6_net_init(struct net *net)
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800963{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700964 int err = 0;
965
Daniel Lezcano99bc9c42008-01-10 02:54:53 -0800966 net->ipv6.sysctl.bindv6only = 0;
Daniel Lezcano41a76902008-01-10 03:02:40 -0800967 net->ipv6.sysctl.icmpv6_time = 1*HZ;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800968
Denis V. Luneve43291c2008-10-07 14:48:53 -0700969 err = ipv6_init_mibs(net);
970 if (err)
971 return err;
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700972#ifdef CONFIG_PROC_FS
973 err = udp6_proc_init(net);
974 if (err)
975 goto out;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700976 err = tcp6_proc_init(net);
977 if (err)
978 goto proc_tcp6_fail;
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700979 err = ac6_proc_init(net);
980 if (err)
981 goto proc_ac6_fail;
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700982#endif
983 return err;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700984
985#ifdef CONFIG_PROC_FS
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700986proc_ac6_fail:
987 tcp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700988proc_tcp6_fail:
989 udp6_proc_exit(net);
Denis V. Luneve43291c2008-10-07 14:48:53 -0700990out:
991 ipv6_cleanup_mibs(net);
992 return err;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700993#endif
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800994}
995
996static void inet6_net_exit(struct net *net)
997{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700998#ifdef CONFIG_PROC_FS
999 udp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -07001000 tcp6_proc_exit(net);
Daniel Lezcano6ab57e72008-03-26 16:52:32 -07001001 ac6_proc_exit(net);
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001002#endif
Denis V. Luneve43291c2008-10-07 14:48:53 -07001003 ipv6_cleanup_mibs(net);
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001004}
1005
1006static struct pernet_operations inet6_net_ops = {
1007 .init = inet6_net_init,
1008 .exit = inet6_net_exit,
1009};
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011static int __init inet6_init(void)
1012{
1013 struct sk_buff *dummy_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001014 struct list_head *r;
Brian Haleyfe7ca2e2009-03-04 03:18:11 -08001015 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001017 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
1018
Brian Haleyfe7ca2e2009-03-04 03:18:11 -08001019 /* Register the socket-side information for inet6_create. */
1020 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
1021 INIT_LIST_HEAD(r);
1022
1023 if (disable_ipv6) {
1024 printk(KERN_INFO
1025 "IPv6: Loaded, but administratively disabled, "
1026 "reboot required to enable\n");
1027 goto out;
1028 }
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 err = proto_register(&tcpv6_prot, 1);
1031 if (err)
1032 goto out;
1033
1034 err = proto_register(&udpv6_prot, 1);
1035 if (err)
1036 goto out_unregister_tcp_proto;
1037
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001038 err = proto_register(&udplitev6_prot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (err)
1040 goto out_unregister_udp_proto;
1041
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001042 err = proto_register(&rawv6_prot, 1);
1043 if (err)
1044 goto out_unregister_udplite_proto;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /* We MUST register RAW sockets before we create the ICMP6,
1048 * IGMP6, or NDISC control sockets.
1049 */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001050 err = rawv6_init();
1051 if (err)
1052 goto out_unregister_raw_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* Register the family here so that the init calls below will
1055 * be able to create sockets. (?? is this dangerous ??)
1056 */
David S. Miller8eb55912005-11-11 15:05:47 -08001057 err = sock_register(&inet6_family_ops);
1058 if (err)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001059 goto out_sock_register_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Al Viroeeb61f72008-07-27 08:59:33 +01001061#ifdef CONFIG_SYSCTL
1062 err = ipv6_static_sysctl_register();
1063 if (err)
1064 goto static_sysctl_fail;
1065#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 /*
1067 * ipngwg API draft makes clear that the correct semantics
1068 * for TCP and UDP is to consider one TCP and UDP instance
1069 * in a host availiable by both INET and INET6 APIs and
1070 * able to communicate via both network protocols.
1071 */
1072
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001073 err = register_pernet_subsys(&inet6_net_ops);
1074 if (err)
1075 goto register_pernet_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001076 err = icmpv6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (err)
1078 goto icmp_fail;
Wang Chen623d1a12008-07-03 12:13:30 +08001079 err = ip6_mr_init();
1080 if (err)
1081 goto ipmr_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001082 err = ndisc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (err)
1084 goto ndisc_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001085 err = igmp6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (err)
1087 goto igmp_fail;
Harald Welte2cc7d572005-08-09 19:42:34 -07001088 err = ipv6_netfilter_init();
1089 if (err)
1090 goto netfilter_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 /* Create /proc/foo6 entries. */
1092#ifdef CONFIG_PROC_FS
1093 err = -ENOMEM;
1094 if (raw6_proc_init())
1095 goto proc_raw6_fail;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001096 if (udplite6_proc_init())
1097 goto proc_udplite6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (ipv6_misc_proc_init())
1099 goto proc_misc6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (if6_proc_init())
1101 goto proc_if6_fail;
1102#endif
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001103 err = ip6_route_init();
1104 if (err)
1105 goto ip6_route_fail;
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -08001106 err = ip6_flowlabel_init();
1107 if (err)
1108 goto ip6_flowlabel_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 err = addrconf_init();
1110 if (err)
1111 goto addrconf_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /* Init v6 extension headers. */
Daniel Lezcano248b2382007-12-11 02:23:54 -08001114 err = ipv6_exthdrs_init();
1115 if (err)
1116 goto ipv6_exthdrs_fail;
1117
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001118 err = ipv6_frag_init();
1119 if (err)
1120 goto ipv6_frag_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /* Init v6 transport protocols. */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001123 err = udpv6_init();
1124 if (err)
1125 goto udpv6_fail;
Herbert Xue2ed4052005-07-05 14:41:20 -07001126
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001127 err = udplitev6_init();
1128 if (err)
1129 goto udplitev6_fail;
1130
1131 err = tcpv6_init();
1132 if (err)
1133 goto tcpv6_fail;
1134
1135 err = ipv6_packet_init();
1136 if (err)
1137 goto ipv6_packet_fail;
Benjamin Thery94911fe2008-03-05 10:45:36 -08001138
1139#ifdef CONFIG_SYSCTL
1140 err = ipv6_sysctl_register();
1141 if (err)
1142 goto sysctl_fail;
1143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144out:
1145 return err;
1146
Benjamin Thery94911fe2008-03-05 10:45:36 -08001147#ifdef CONFIG_SYSCTL
1148sysctl_fail:
1149 ipv6_packet_cleanup();
1150#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001151ipv6_packet_fail:
1152 tcpv6_exit();
1153tcpv6_fail:
1154 udplitev6_exit();
1155udplitev6_fail:
1156 udpv6_exit();
1157udpv6_fail:
1158 ipv6_frag_exit();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001159ipv6_frag_fail:
1160 ipv6_exthdrs_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001161ipv6_exthdrs_fail:
1162 addrconf_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163addrconf_fail:
1164 ip6_flowlabel_cleanup();
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -08001165ip6_flowlabel_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 ip6_route_cleanup();
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001167ip6_route_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168#ifdef CONFIG_PROC_FS
1169 if6_proc_exit();
1170proc_if6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 ipv6_misc_proc_exit();
1172proc_misc6_fail:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001173 udplite6_proc_exit();
1174proc_udplite6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 raw6_proc_exit();
1176proc_raw6_fail:
1177#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001178 ipv6_netfilter_fini();
1179netfilter_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 igmp6_cleanup();
1181igmp_fail:
1182 ndisc_cleanup();
1183ndisc_fail:
Wang Chen623d1a12008-07-03 12:13:30 +08001184 ip6_mr_cleanup();
1185ipmr_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 icmpv6_cleanup();
1187icmp_fail:
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001188 unregister_pernet_subsys(&inet6_net_ops);
1189register_pernet_fail:
Al Viroeeb61f72008-07-27 08:59:33 +01001190#ifdef CONFIG_SYSCTL
1191 ipv6_static_sysctl_unregister();
1192static_sysctl_fail:
1193#endif
David S. Miller8eb55912005-11-11 15:05:47 -08001194 sock_unregister(PF_INET6);
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001195 rtnl_unregister_all(PF_INET6);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001196out_sock_register_fail:
1197 rawv6_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198out_unregister_raw_proto:
1199 proto_unregister(&rawv6_prot);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001200out_unregister_udplite_proto:
1201 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202out_unregister_udp_proto:
1203 proto_unregister(&udpv6_prot);
1204out_unregister_tcp_proto:
1205 proto_unregister(&tcpv6_prot);
1206 goto out;
1207}
1208module_init(inet6_init);
1209
1210static void __exit inet6_exit(void)
1211{
John Dykstraff8cf9a2009-03-11 09:22:51 -07001212 if (disable_ipv6)
1213 return;
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 /* First of all disallow new sockets creation. */
1216 sock_unregister(PF_INET6);
Thomas Grafc127ea22007-03-22 11:58:32 -07001217 /* Disallow any further netlink messages */
1218 rtnl_unregister_all(PF_INET6);
Joe Jinca17c232007-02-20 01:30:15 -08001219
Benjamin Thery94911fe2008-03-05 10:45:36 -08001220#ifdef CONFIG_SYSCTL
1221 ipv6_sysctl_unregister();
1222#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001223 udpv6_exit();
1224 udplitev6_exit();
1225 tcpv6_exit();
1226
Joe Jinca17c232007-02-20 01:30:15 -08001227 /* Cleanup code parts. */
1228 ipv6_packet_cleanup();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001229 ipv6_frag_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001230 ipv6_exthdrs_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 addrconf_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001232 ip6_flowlabel_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 ip6_route_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001234#ifdef CONFIG_PROC_FS
1235
1236 /* Cleanup code parts. */
1237 if6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001238 ipv6_misc_proc_exit();
1239 udplite6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001240 raw6_proc_exit();
1241#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001242 ipv6_netfilter_fini();
Joe Jinca17c232007-02-20 01:30:15 -08001243 igmp6_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 ndisc_cleanup();
Wang Chen623d1a12008-07-03 12:13:30 +08001245 ip6_mr_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 icmpv6_cleanup();
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001247 rawv6_exit();
Benjamin Thery94911fe2008-03-05 10:45:36 -08001248
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001249 unregister_pernet_subsys(&inet6_net_ops);
Al Viroeeb61f72008-07-27 08:59:33 +01001250#ifdef CONFIG_SYSCTL
1251 ipv6_static_sysctl_unregister();
1252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 proto_unregister(&rawv6_prot);
Joe Jinca17c232007-02-20 01:30:15 -08001254 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 proto_unregister(&udpv6_prot);
1256 proto_unregister(&tcpv6_prot);
1257}
1258module_exit(inet6_exit);
1259
1260MODULE_ALIAS_NETPROTO(PF_INET6);