blob: 9c8309ed35cf32351517af43ad647f16442cd9e9 [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) {
279 v4addr = addr->sin6_addr.s6_addr32[3];
Benjamin Thery075de932008-03-05 10:45:59 -0800280 if (inet_addr_type(net, v4addr) != RTN_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 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 Hideaki1ab14572007-02-09 23:24:49 +0900296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* Binding to link-local address requires an interface */
298 if (!sk->sk_bound_dev_if) {
299 err = -EINVAL;
300 goto out;
301 }
Benjamin Thery075de932008-03-05 10:45:59 -0800302 dev = dev_get_by_index(net, sk->sk_bound_dev_if);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 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 Thery075de932008-03-05 10:45:59 -0800314 if (!ipv6_chk_addr(net, &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800315 dev, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 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 Hideaki1ab14572007-02-09 23:24:49 +0900331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 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 Viroe69a4ad2006-11-14 20:56:00 -0800346 inet->sport = htons(inet->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 inet->dport = 0;
348 inet->daddr = 0;
349out:
350 release_sock(sk);
351 return err;
352}
353
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900354EXPORT_SYMBOL(inet6_bind);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356int 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 Hideaki71590392007-02-22 22:05:40 +0900372EXPORT_SYMBOL(inet6_release);
373
Brian Haley7d06b2e2008-06-14 17:04:49 -0700374void inet6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct ipv6_pinfo *np = inet6_sk(sk);
377 struct sk_buff *skb;
378 struct ipv6_txoptions *opt;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* 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 Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800394EXPORT_SYMBOL_GPL(inet6_destroy_sock);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/*
397 * This does both peername and sockname.
398 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400int 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 Hideaki1ab14572007-02-09 23:24:49 +0900407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 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 Hideaki71590392007-02-22 22:05:40 +0900435EXPORT_SYMBOL(inet6_getname);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
438{
439 struct sock *sk = sock->sk;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900440 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900442 switch(cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 {
444 case SIOCGSTAMP:
445 return sock_get_timestamp(sk, (struct timeval __user *)arg);
446
Eric Dumazetae40eb12007-03-18 17:33:16 -0700447 case SIOCGSTAMPNS:
448 return sock_get_timestampns(sk, (struct timespec __user *)arg);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 case SIOCADDRT:
451 case SIOCDELRT:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900452
Daniel Lezcano55786892008-03-04 13:47:47 -0800453 return(ipv6_route_ioctl(net, cmd, (void __user *)arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 case SIOCSIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800456 return addrconf_add_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case SIOCDIFADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800458 return addrconf_del_ifaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 case SIOCSIFDSTADDR:
Daniel Lezcanoaf284932008-03-05 10:46:57 -0800460 return addrconf_set_dstaddr(net, (void __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 default:
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -0800462 if (!sk->sk_prot->ioctl)
463 return -ENOIOCTLCMD;
464 return sk->sk_prot->ioctl(sk, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 /*NOTREACHED*/
467 return(0);
468}
469
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900470EXPORT_SYMBOL(inet6_ioctl);
471
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800472const struct proto_ops inet6_stream_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800473 .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. Miller3516ffb2007-08-02 19:23:56 -0700487 .sendmsg = tcp_sendmsg, /* ok */
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800488 .recvmsg = sock_common_recvmsg, /* ok */
489 .mmap = sock_no_mmap,
490 .sendpage = tcp_sendpage,
Jens Axboea0974dd2007-11-06 23:31:58 -0800491 .splice_read = tcp_splice_read,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800492#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800493 .compat_setsockopt = compat_sock_common_setsockopt,
494 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496};
497
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800498const struct proto_ops inet6_dgram_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800499 .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 Mishin3fdadf72006-03-20 22:45:21 -0800517#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800518 .compat_setsockopt = compat_sock_common_setsockopt,
519 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521};
522
523static struct net_proto_family inet6_family_ops = {
524 .family = PF_INET6,
525 .create = inet6_create,
526 .owner = THIS_MODULE,
527};
528
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800529int inet6_register_protosw(struct inet_protosw *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct list_head *lh;
532 struct inet_protosw *answer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 struct list_head *last_perm;
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800534 int protocol = p->protocol;
535 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 spin_lock_bh(&inetsw6_lock);
538
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800539 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 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 Lezcano87c3efb2007-12-11 02:25:01 -0800545 ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 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 Hideaki1ab14572007-02-09 23:24:49 +0900565 * non-permanent entry. This means that when we remove this entry, the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * system automatically returns to the old behavior.
567 */
568 list_add_rcu(&p->list, last_perm);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800569 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570out:
571 spin_unlock_bh(&inetsw6_lock);
Daniel Lezcano87c3efb2007-12-11 02:25:01 -0800572 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574out_permanent:
575 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
576 protocol);
577 goto out;
578
579out_illegal:
580 printk(KERN_ERR
581 "Ignoring attempt to register invalid socket type %d.\n",
582 p->type);
583 goto out;
584}
585
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900586EXPORT_SYMBOL(inet6_register_protosw);
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588void
589inet6_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 Hideaki71590392007-02-22 22:05:40 +0900604EXPORT_SYMBOL(inet6_unregister_protosw);
605
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800606int 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 Yekkiralabeb8d132006-08-04 23:12:42 -0700627 security_sk_classify_flow(sk, &fl);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800628
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
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800644 if ((err = xfrm_lookup(sock_net(sk), &dst, &fl, sk, 0)) < 0) {
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800645 sk->sk_err_soft = -err;
646 return err;
647 }
648
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700649 __ip6_dst_store(sk, dst, NULL, NULL);
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800650 }
651
652 return 0;
653}
654
655EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
656
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800657int 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 Melod56f90a2007-04-10 20:50:43 -0700665 ((IPV6_FLOWINFO_MASK &
666 *(__be32 *)skb_network_header(skb)) &&
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800667 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
677EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
678
Herbert Xu787e9202009-01-08 10:40:57 -0800679static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto)
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900680{
681 struct inet6_protocol *ops = NULL;
682
683 for (;;) {
684 struct ipv6_opt_hdr *opth;
685 int len;
686
687 if (proto != NEXTHDR_HOP) {
688 ops = rcu_dereference(inet6_protos[proto]);
689
690 if (unlikely(!ops))
691 break;
692
693 if (!(ops->flags & INET6_PROTO_GSO_EXTHDR))
694 break;
695 }
696
697 if (unlikely(!pskb_may_pull(skb, 8)))
698 break;
699
700 opth = (void *)skb->data;
701 len = ipv6_optlen(opth);
702
703 if (unlikely(!pskb_may_pull(skb, len)))
704 break;
705
706 proto = opth->nexthdr;
707 __skb_pull(skb, len);
708 }
709
Herbert Xu787e9202009-01-08 10:40:57 -0800710 return proto;
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900711}
712
713static int ipv6_gso_send_check(struct sk_buff *skb)
714{
715 struct ipv6hdr *ipv6h;
716 struct inet6_protocol *ops;
717 int err = -EINVAL;
718
719 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
720 goto out;
721
722 ipv6h = ipv6_hdr(skb);
723 __skb_pull(skb, sizeof(*ipv6h));
724 err = -EPROTONOSUPPORT;
725
726 rcu_read_lock();
Herbert Xu787e9202009-01-08 10:40:57 -0800727 ops = rcu_dereference(inet6_protos[
728 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
729
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900730 if (likely(ops && ops->gso_send_check)) {
731 skb_reset_transport_header(skb);
732 err = ops->gso_send_check(skb);
733 }
734 rcu_read_unlock();
735
736out:
737 return err;
738}
739
740static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
741{
742 struct sk_buff *segs = ERR_PTR(-EINVAL);
743 struct ipv6hdr *ipv6h;
744 struct inet6_protocol *ops;
745
746 if (!(features & NETIF_F_V6_CSUM))
747 features &= ~NETIF_F_SG;
748
749 if (unlikely(skb_shinfo(skb)->gso_type &
750 ~(SKB_GSO_UDP |
751 SKB_GSO_DODGY |
752 SKB_GSO_TCP_ECN |
753 SKB_GSO_TCPV6 |
754 0)))
755 goto out;
756
757 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
758 goto out;
759
760 ipv6h = ipv6_hdr(skb);
761 __skb_pull(skb, sizeof(*ipv6h));
762 segs = ERR_PTR(-EPROTONOSUPPORT);
763
764 rcu_read_lock();
Herbert Xu787e9202009-01-08 10:40:57 -0800765 ops = rcu_dereference(inet6_protos[
766 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
767
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900768 if (likely(ops && ops->gso_segment)) {
769 skb_reset_transport_header(skb);
770 segs = ops->gso_segment(skb, features);
771 }
772 rcu_read_unlock();
773
774 if (unlikely(IS_ERR(segs)))
775 goto out;
776
777 for (skb = segs; skb; skb = skb->next) {
778 ipv6h = ipv6_hdr(skb);
779 ipv6h->payload_len = htons(skb->len - skb->mac_len -
780 sizeof(*ipv6h));
781 }
782
783out:
784 return segs;
785}
786
Herbert Xu787e9202009-01-08 10:40:57 -0800787struct ipv6_gro_cb {
788 struct napi_gro_cb napi;
789 int proto;
790};
791
792#define IPV6_GRO_CB(skb) ((struct ipv6_gro_cb *)(skb)->cb)
793
794static struct sk_buff **ipv6_gro_receive(struct sk_buff **head,
795 struct sk_buff *skb)
796{
797 struct inet6_protocol *ops;
798 struct sk_buff **pp = NULL;
799 struct sk_buff *p;
800 struct ipv6hdr *iph;
801 unsigned int nlen;
802 int flush = 1;
803 int proto;
Herbert Xuebad18e2009-01-17 19:46:16 +0000804 __wsum csum;
Herbert Xu787e9202009-01-08 10:40:57 -0800805
806 if (unlikely(!pskb_may_pull(skb, sizeof(*iph))))
807 goto out;
808
809 iph = ipv6_hdr(skb);
810 __skb_pull(skb, sizeof(*iph));
811
812 flush += ntohs(iph->payload_len) != skb->len;
813
814 rcu_read_lock();
815 proto = ipv6_gso_pull_exthdrs(skb, iph->nexthdr);
Herbert Xuebad18e2009-01-17 19:46:16 +0000816 iph = ipv6_hdr(skb);
Herbert Xu787e9202009-01-08 10:40:57 -0800817 IPV6_GRO_CB(skb)->proto = proto;
818 ops = rcu_dereference(inet6_protos[proto]);
819 if (!ops || !ops->gro_receive)
820 goto out_unlock;
821
822 flush--;
823 skb_reset_transport_header(skb);
824 nlen = skb_network_header_len(skb);
825
826 for (p = *head; p; p = p->next) {
827 struct ipv6hdr *iph2;
828
829 if (!NAPI_GRO_CB(p)->same_flow)
830 continue;
831
832 iph2 = ipv6_hdr(p);
833
834 /* All fields must match except length. */
835 if (nlen != skb_network_header_len(p) ||
836 memcmp(iph, iph2, offsetof(struct ipv6hdr, payload_len)) ||
837 memcmp(&iph->nexthdr, &iph2->nexthdr,
838 nlen - offsetof(struct ipv6hdr, nexthdr))) {
839 NAPI_GRO_CB(p)->same_flow = 0;
840 continue;
841 }
842
843 NAPI_GRO_CB(p)->flush |= flush;
844 }
845
846 NAPI_GRO_CB(skb)->flush |= flush;
847
Herbert Xuebad18e2009-01-17 19:46:16 +0000848 csum = skb->csum;
849 skb_postpull_rcsum(skb, iph, skb_network_header_len(skb));
850
Herbert Xu787e9202009-01-08 10:40:57 -0800851 pp = ops->gro_receive(head, skb);
852
Herbert Xuebad18e2009-01-17 19:46:16 +0000853 skb->csum = csum;
854
Herbert Xu787e9202009-01-08 10:40:57 -0800855out_unlock:
856 rcu_read_unlock();
857
858out:
859 NAPI_GRO_CB(skb)->flush |= flush;
860
861 return pp;
862}
863
864static int ipv6_gro_complete(struct sk_buff *skb)
865{
866 struct inet6_protocol *ops;
867 struct ipv6hdr *iph = ipv6_hdr(skb);
868 int err = -ENOSYS;
869
870 iph->payload_len = htons(skb->len - skb_network_offset(skb) -
871 sizeof(*iph));
872
873 rcu_read_lock();
874 ops = rcu_dereference(inet6_protos[IPV6_GRO_CB(skb)->proto]);
875 if (WARN_ON(!ops || !ops->gro_complete))
876 goto out_unlock;
877
878 err = ops->gro_complete(skb);
879
880out_unlock:
881 rcu_read_unlock();
882
883 return err;
884}
885
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900886static struct packet_type ipv6_packet_type = {
887 .type = __constant_htons(ETH_P_IPV6),
888 .func = ipv6_rcv,
889 .gso_send_check = ipv6_gso_send_check,
890 .gso_segment = ipv6_gso_segment,
Herbert Xu787e9202009-01-08 10:40:57 -0800891 .gro_receive = ipv6_gro_receive,
892 .gro_complete = ipv6_gro_complete,
YOSHIFUJI Hideaki662397f2008-02-27 23:14:03 +0900893};
894
895static int __init ipv6_packet_init(void)
896{
897 dev_add_pack(&ipv6_packet_type);
898 return 0;
899}
900
901static void ipv6_packet_cleanup(void)
902{
903 dev_remove_pack(&ipv6_packet_type);
904}
905
Denis V. Luneve43291c2008-10-07 14:48:53 -0700906static int __net_init ipv6_init_mibs(struct net *net)
907{
Denis V. Lunev0c7ed672008-10-07 14:49:36 -0700908 if (snmp_mib_init((void **)net->mib.udp_stats_in6,
909 sizeof (struct udp_mib)) < 0)
910 return -ENOMEM;
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700911 if (snmp_mib_init((void **)net->mib.udplite_stats_in6,
912 sizeof (struct udp_mib)) < 0)
913 goto err_udplite_mib;
Denis V. Lunev9261e532008-10-08 10:36:03 -0700914 if (snmp_mib_init((void **)net->mib.ipv6_statistics,
915 sizeof(struct ipstats_mib)) < 0)
916 goto err_ip_mib;
917 if (snmp_mib_init((void **)net->mib.icmpv6_statistics,
918 sizeof(struct icmpv6_mib)) < 0)
919 goto err_icmp_mib;
920 if (snmp_mib_init((void **)net->mib.icmpv6msg_statistics,
921 sizeof(struct icmpv6msg_mib)) < 0)
922 goto err_icmpmsg_mib;
Denis V. Luneve43291c2008-10-07 14:48:53 -0700923 return 0;
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700924
Denis V. Lunev9261e532008-10-08 10:36:03 -0700925err_icmpmsg_mib:
926 snmp_mib_free((void **)net->mib.icmpv6_statistics);
927err_icmp_mib:
928 snmp_mib_free((void **)net->mib.ipv6_statistics);
929err_ip_mib:
930 snmp_mib_free((void **)net->mib.udplite_stats_in6);
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700931err_udplite_mib:
932 snmp_mib_free((void **)net->mib.udp_stats_in6);
933 return -ENOMEM;
Denis V. Luneve43291c2008-10-07 14:48:53 -0700934}
935
936static void __net_exit ipv6_cleanup_mibs(struct net *net)
937{
Denis V. Lunev0c7ed672008-10-07 14:49:36 -0700938 snmp_mib_free((void **)net->mib.udp_stats_in6);
Denis V. Lunevbe713a42008-10-07 14:50:06 -0700939 snmp_mib_free((void **)net->mib.udplite_stats_in6);
Denis V. Lunev9261e532008-10-08 10:36:03 -0700940 snmp_mib_free((void **)net->mib.ipv6_statistics);
941 snmp_mib_free((void **)net->mib.icmpv6_statistics);
942 snmp_mib_free((void **)net->mib.icmpv6msg_statistics);
Denis V. Luneve43291c2008-10-07 14:48:53 -0700943}
944
Alexey Dobriyane7dc8492008-10-13 18:54:07 -0700945static int __net_init inet6_net_init(struct net *net)
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800946{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700947 int err = 0;
948
Daniel Lezcano99bc9c42008-01-10 02:54:53 -0800949 net->ipv6.sysctl.bindv6only = 0;
Daniel Lezcano41a76902008-01-10 03:02:40 -0800950 net->ipv6.sysctl.icmpv6_time = 1*HZ;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800951
Denis V. Luneve43291c2008-10-07 14:48:53 -0700952 err = ipv6_init_mibs(net);
953 if (err)
954 return err;
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700955#ifdef CONFIG_PROC_FS
956 err = udp6_proc_init(net);
957 if (err)
958 goto out;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700959 err = tcp6_proc_init(net);
960 if (err)
961 goto proc_tcp6_fail;
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700962 err = ac6_proc_init(net);
963 if (err)
964 goto proc_ac6_fail;
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700965#endif
966 return err;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700967
968#ifdef CONFIG_PROC_FS
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700969proc_ac6_fail:
970 tcp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700971proc_tcp6_fail:
972 udp6_proc_exit(net);
Denis V. Luneve43291c2008-10-07 14:48:53 -0700973out:
974 ipv6_cleanup_mibs(net);
975 return err;
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700976#endif
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800977}
978
979static void inet6_net_exit(struct net *net)
980{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700981#ifdef CONFIG_PROC_FS
982 udp6_proc_exit(net);
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -0700983 tcp6_proc_exit(net);
Daniel Lezcano6ab57e72008-03-26 16:52:32 -0700984 ac6_proc_exit(net);
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -0700985#endif
Denis V. Luneve43291c2008-10-07 14:48:53 -0700986 ipv6_cleanup_mibs(net);
Daniel Lezcano81c1c172008-01-10 02:48:33 -0800987}
988
989static struct pernet_operations inet6_net_ops = {
990 .init = inet6_net_init,
991 .exit = inet6_net_exit,
992};
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994static int __init inet6_init(void)
995{
996 struct sk_buff *dummy_skb;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900997 struct list_head *r;
Brian Haleyfe7ca2e2009-03-04 03:18:11 -0800998 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
YOSHIFUJI Hideakief047f52006-09-01 00:29:06 -07001000 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
1001
Brian Haleyfe7ca2e2009-03-04 03:18:11 -08001002 /* Register the socket-side information for inet6_create. */
1003 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
1004 INIT_LIST_HEAD(r);
1005
1006 if (disable_ipv6) {
1007 printk(KERN_INFO
1008 "IPv6: Loaded, but administratively disabled, "
1009 "reboot required to enable\n");
1010 goto out;
1011 }
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 err = proto_register(&tcpv6_prot, 1);
1014 if (err)
1015 goto out;
1016
1017 err = proto_register(&udpv6_prot, 1);
1018 if (err)
1019 goto out_unregister_tcp_proto;
1020
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001021 err = proto_register(&udplitev6_prot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (err)
1023 goto out_unregister_udp_proto;
1024
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001025 err = proto_register(&rawv6_prot, 1);
1026 if (err)
1027 goto out_unregister_udplite_proto;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* We MUST register RAW sockets before we create the ICMP6,
1031 * IGMP6, or NDISC control sockets.
1032 */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001033 err = rawv6_init();
1034 if (err)
1035 goto out_unregister_raw_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 /* Register the family here so that the init calls below will
1038 * be able to create sockets. (?? is this dangerous ??)
1039 */
David S. Miller8eb55912005-11-11 15:05:47 -08001040 err = sock_register(&inet6_family_ops);
1041 if (err)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001042 goto out_sock_register_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Al Viroeeb61f72008-07-27 08:59:33 +01001044#ifdef CONFIG_SYSCTL
1045 err = ipv6_static_sysctl_register();
1046 if (err)
1047 goto static_sysctl_fail;
1048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /*
1050 * ipngwg API draft makes clear that the correct semantics
1051 * for TCP and UDP is to consider one TCP and UDP instance
1052 * in a host availiable by both INET and INET6 APIs and
1053 * able to communicate via both network protocols.
1054 */
1055
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001056 err = register_pernet_subsys(&inet6_net_ops);
1057 if (err)
1058 goto register_pernet_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001059 err = icmpv6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (err)
1061 goto icmp_fail;
Wang Chen623d1a12008-07-03 12:13:30 +08001062 err = ip6_mr_init();
1063 if (err)
1064 goto ipmr_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001065 err = ndisc_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (err)
1067 goto ndisc_fail;
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08001068 err = igmp6_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (err)
1070 goto igmp_fail;
Harald Welte2cc7d572005-08-09 19:42:34 -07001071 err = ipv6_netfilter_init();
1072 if (err)
1073 goto netfilter_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /* Create /proc/foo6 entries. */
1075#ifdef CONFIG_PROC_FS
1076 err = -ENOMEM;
1077 if (raw6_proc_init())
1078 goto proc_raw6_fail;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001079 if (udplite6_proc_init())
1080 goto proc_udplite6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (ipv6_misc_proc_init())
1082 goto proc_misc6_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (if6_proc_init())
1084 goto proc_if6_fail;
1085#endif
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001086 err = ip6_route_init();
1087 if (err)
1088 goto ip6_route_fail;
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -08001089 err = ip6_flowlabel_init();
1090 if (err)
1091 goto ip6_flowlabel_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 err = addrconf_init();
1093 if (err)
1094 goto addrconf_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* Init v6 extension headers. */
Daniel Lezcano248b2382007-12-11 02:23:54 -08001097 err = ipv6_exthdrs_init();
1098 if (err)
1099 goto ipv6_exthdrs_fail;
1100
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001101 err = ipv6_frag_init();
1102 if (err)
1103 goto ipv6_frag_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 /* Init v6 transport protocols. */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001106 err = udpv6_init();
1107 if (err)
1108 goto udpv6_fail;
Herbert Xue2ed4052005-07-05 14:41:20 -07001109
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001110 err = udplitev6_init();
1111 if (err)
1112 goto udplitev6_fail;
1113
1114 err = tcpv6_init();
1115 if (err)
1116 goto tcpv6_fail;
1117
1118 err = ipv6_packet_init();
1119 if (err)
1120 goto ipv6_packet_fail;
Benjamin Thery94911fe2008-03-05 10:45:36 -08001121
1122#ifdef CONFIG_SYSCTL
1123 err = ipv6_sysctl_register();
1124 if (err)
1125 goto sysctl_fail;
1126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127out:
1128 return err;
1129
Benjamin Thery94911fe2008-03-05 10:45:36 -08001130#ifdef CONFIG_SYSCTL
1131sysctl_fail:
1132 ipv6_packet_cleanup();
1133#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001134ipv6_packet_fail:
1135 tcpv6_exit();
1136tcpv6_fail:
1137 udplitev6_exit();
1138udplitev6_fail:
1139 udpv6_exit();
1140udpv6_fail:
1141 ipv6_frag_exit();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001142ipv6_frag_fail:
1143 ipv6_exthdrs_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001144ipv6_exthdrs_fail:
1145 addrconf_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146addrconf_fail:
1147 ip6_flowlabel_cleanup();
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -08001148ip6_flowlabel_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ip6_route_cleanup();
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001150ip6_route_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151#ifdef CONFIG_PROC_FS
1152 if6_proc_exit();
1153proc_if6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 ipv6_misc_proc_exit();
1155proc_misc6_fail:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001156 udplite6_proc_exit();
1157proc_udplite6_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 raw6_proc_exit();
1159proc_raw6_fail:
1160#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001161 ipv6_netfilter_fini();
1162netfilter_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 igmp6_cleanup();
1164igmp_fail:
1165 ndisc_cleanup();
1166ndisc_fail:
Wang Chen623d1a12008-07-03 12:13:30 +08001167 ip6_mr_cleanup();
1168ipmr_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 icmpv6_cleanup();
1170icmp_fail:
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001171 unregister_pernet_subsys(&inet6_net_ops);
1172register_pernet_fail:
Al Viroeeb61f72008-07-27 08:59:33 +01001173#ifdef CONFIG_SYSCTL
1174 ipv6_static_sysctl_unregister();
1175static_sysctl_fail:
1176#endif
David S. Miller8eb55912005-11-11 15:05:47 -08001177 sock_unregister(PF_INET6);
Daniel Lezcanoe2fddf52007-12-07 00:44:29 -08001178 rtnl_unregister_all(PF_INET6);
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001179out_sock_register_fail:
1180 rawv6_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181out_unregister_raw_proto:
1182 proto_unregister(&rawv6_prot);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001183out_unregister_udplite_proto:
1184 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185out_unregister_udp_proto:
1186 proto_unregister(&udpv6_prot);
1187out_unregister_tcp_proto:
1188 proto_unregister(&tcpv6_prot);
1189 goto out;
1190}
1191module_init(inet6_init);
1192
1193static void __exit inet6_exit(void)
1194{
John Dykstraff8cf9a2009-03-11 09:22:51 -07001195 if (disable_ipv6)
1196 return;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 /* First of all disallow new sockets creation. */
1199 sock_unregister(PF_INET6);
Thomas Grafc127ea22007-03-22 11:58:32 -07001200 /* Disallow any further netlink messages */
1201 rtnl_unregister_all(PF_INET6);
Joe Jinca17c232007-02-20 01:30:15 -08001202
Benjamin Thery94911fe2008-03-05 10:45:36 -08001203#ifdef CONFIG_SYSCTL
1204 ipv6_sysctl_unregister();
1205#endif
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001206 udpv6_exit();
1207 udplitev6_exit();
1208 tcpv6_exit();
1209
Joe Jinca17c232007-02-20 01:30:15 -08001210 /* Cleanup code parts. */
1211 ipv6_packet_cleanup();
Daniel Lezcano853cbba2007-12-11 02:24:29 -08001212 ipv6_frag_exit();
Daniel Lezcano248b2382007-12-11 02:23:54 -08001213 ipv6_exthdrs_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 addrconf_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001215 ip6_flowlabel_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 ip6_route_cleanup();
Joe Jinca17c232007-02-20 01:30:15 -08001217#ifdef CONFIG_PROC_FS
1218
1219 /* Cleanup code parts. */
1220 if6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001221 ipv6_misc_proc_exit();
1222 udplite6_proc_exit();
Joe Jinca17c232007-02-20 01:30:15 -08001223 raw6_proc_exit();
1224#endif
Harald Welte2cc7d572005-08-09 19:42:34 -07001225 ipv6_netfilter_fini();
Joe Jinca17c232007-02-20 01:30:15 -08001226 igmp6_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 ndisc_cleanup();
Wang Chen623d1a12008-07-03 12:13:30 +08001228 ip6_mr_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 icmpv6_cleanup();
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001230 rawv6_exit();
Benjamin Thery94911fe2008-03-05 10:45:36 -08001231
Daniel Lezcano81c1c172008-01-10 02:48:33 -08001232 unregister_pernet_subsys(&inet6_net_ops);
Al Viroeeb61f72008-07-27 08:59:33 +01001233#ifdef CONFIG_SYSCTL
1234 ipv6_static_sysctl_unregister();
1235#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 proto_unregister(&rawv6_prot);
Joe Jinca17c232007-02-20 01:30:15 -08001237 proto_unregister(&udplitev6_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 proto_unregister(&udpv6_prot);
1239 proto_unregister(&tcpv6_prot);
1240}
1241module_exit(inet6_exit);
1242
1243MODULE_ALIAS_NETPROTO(PF_INET6);