]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/af_inet6.c
net: convert usage of packet_type to read_mostly
[net-next-2.6.git] / net / ipv6 / af_inet6.c
CommitLineData
1da177e4
LT
1/*
2 * PF_INET6 socket protocol family
1ab1457c 3 * Linux INET6 implementation
1da177e4
LT
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4
LT
7 *
8 * Adapted from linux/net/ipv4/af_inet.c
9 *
1da177e4
LT
10 * Fixes:
11 * piggy, Karl Knutson : Socket protocol table
12 * Hideaki YOSHIFUJI : sin6_scope_id support
13 * Arnaldo Melo : check proc_net_create return, cleanups
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21
22#include <linux/module.h>
4fc268d2 23#include <linux/capability.h>
1da177e4
LT
24#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/in.h>
28#include <linux/kernel.h>
1da177e4
LT
29#include <linux/timer.h>
30#include <linux/string.h>
31#include <linux/sockios.h>
32#include <linux/net.h>
33#include <linux/fcntl.h>
34#include <linux/mm.h>
35#include <linux/interrupt.h>
36#include <linux/proc_fs.h>
37#include <linux/stat.h>
38#include <linux/init.h>
39
40#include <linux/inet.h>
41#include <linux/netdevice.h>
42#include <linux/icmpv6.h>
2cc7d573 43#include <linux/netfilter_ipv6.h>
1da177e4
LT
44
45#include <net/ip.h>
46#include <net/ipv6.h>
47#include <net/udp.h>
ba4e58ec 48#include <net/udplite.h>
1da177e4
LT
49#include <net/tcp.h>
50#include <net/ipip.h>
51#include <net/protocol.h>
52#include <net/inet_common.h>
1668e010 53#include <net/route.h>
1da177e4
LT
54#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>
7bc570c8 63#include <linux/mroute6.h>
1da177e4
LT
64
65MODULE_AUTHOR("Cast of dozens");
66MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
67MODULE_LICENSE("GPL");
68
f1267347 69/* The inetsw6 table contains everything that inet6_create needs to
1da177e4
LT
70 * build a new socket.
71 */
72static struct list_head inetsw6[SOCK_MAX];
73static DEFINE_SPINLOCK(inetsw6_lock);
74
fe7ca2e1
BH
75static 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
1da177e4
LT
79static __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
1b8d7ae4 86static int inet6_create(struct net *net, struct socket *sock, int protocol)
1da177e4
LT
87{
88 struct inet_sock *inet;
89 struct ipv6_pinfo *np;
90 struct sock *sk;
1da177e4
LT
91 struct inet_protosw *answer;
92 struct proto *answer_prot;
93 unsigned char answer_flags;
94 char answer_no_check;
af1afe86
YH
95 int try_loading_module = 0;
96 int err;
1da177e4 97
b3da2cf3
DM
98 if (sock->type != SOCK_RAW &&
99 sock->type != SOCK_DGRAM &&
100 !inet_ehash_secret)
101 build_ehash_secret();
102
1da177e4 103 /* Look for the requested type/protocol pair. */
af1afe86
YH
104lookup_protocol:
105 err = -ESOCKTNOSUPPORT;
1da177e4 106 rcu_read_lock();
696adfe8 107 list_for_each_entry_rcu(answer, &inetsw6[sock->type], list) {
1da177e4 108
696adfe8 109 err = 0;
1da177e4
LT
110 /* 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 }
af1afe86 123 err = -EPROTONOSUPPORT;
1da177e4
LT
124 }
125
696adfe8 126 if (err) {
af1afe86
YH
127 if (try_loading_module < 2) {
128 rcu_read_unlock();
129 /*
130 * Be more specific, e.g. net-pf-10-proto-132-type-1
131 * (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM)
132 */
133 if (++try_loading_module == 1)
134 request_module("net-pf-%d-proto-%d-type-%d",
135 PF_INET6, protocol, sock->type);
136 /*
137 * Fall back to generic, e.g. net-pf-10-proto-132
138 * (net-pf-PF_INET6-proto-IPPROTO_SCTP)
139 */
140 else
141 request_module("net-pf-%d-proto-%d",
142 PF_INET6, protocol);
143 goto lookup_protocol;
144 } else
145 goto out_rcu_unlock;
146 }
147
148 err = -EPERM;
1da177e4
LT
149 if (answer->capability > 0 && !capable(answer->capability))
150 goto out_rcu_unlock;
1da177e4
LT
151
152 sock->ops = answer->ops;
1da177e4
LT
153 answer_prot = answer->prot;
154 answer_no_check = answer->no_check;
155 answer_flags = answer->flags;
156 rcu_read_unlock();
157
547b792c 158 WARN_ON(answer_prot->slab == NULL);
1da177e4 159
af1afe86 160 err = -ENOBUFS;
6257ff21 161 sk = sk_alloc(net, PF_INET6, GFP_KERNEL, answer_prot);
1da177e4
LT
162 if (sk == NULL)
163 goto out;
164
165 sock_init_data(sock, sk);
166
af1afe86 167 err = 0;
1da177e4
LT
168 sk->sk_no_check = answer_no_check;
169 if (INET_PROTOSW_REUSE & answer_flags)
170 sk->sk_reuse = 1;
171
172 inet = inet_sk(sk);
469de9b9 173 inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
1da177e4
LT
174
175 if (SOCK_RAW == sock->type) {
176 inet->num = protocol;
177 if (IPPROTO_RAW == protocol)
178 inet->hdrincl = 1;
179 }
180
e6848976 181 sk->sk_destruct = inet_sock_destruct;
1da177e4
LT
182 sk->sk_family = PF_INET6;
183 sk->sk_protocol = protocol;
184
185 sk->sk_backlog_rcv = answer->prot->backlog_rcv;
186
187 inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
188 np->hop_limit = -1;
189 np->mcast_hops = -1;
190 np->mc_loop = 1;
191 np->pmtudisc = IPV6_PMTUDISC_WANT;
2e761e05 192 np->ipv6only = net->ipv6.sysctl.bindv6only;
1ab1457c 193
1da177e4
LT
194 /* Init the ipv4 part of the socket since we can have sockets
195 * using v6 API for ipv4.
196 */
197 inet->uc_ttl = -1;
198
199 inet->mc_loop = 1;
200 inet->mc_ttl = 1;
201 inet->mc_index = 0;
202 inet->mc_list = NULL;
203
204 if (ipv4_config.no_pmtu_disc)
205 inet->pmtudisc = IP_PMTUDISC_DONT;
206 else
207 inet->pmtudisc = IP_PMTUDISC_WANT;
1ab1457c 208 /*
e6848976
ACM
209 * Increment only the relevant sk_prot->socks debug field, this changes
210 * the previous behaviour of incrementing both the equivalent to
211 * answer->prot->socks (inet6_sock_nr) and inet_sock_nr.
212 *
213 * This allows better debug granularity as we'll know exactly how many
214 * UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6
215 * transport protocol socks. -acme
216 */
217 sk_refcnt_debug_inc(sk);
1da177e4 218
1da177e4
LT
219 if (inet->num) {
220 /* It assumes that any protocol which allows
221 * the user to assign a number at socket
222 * creation time automatically shares.
223 */
e69a4adc 224 inet->sport = htons(inet->num);
1da177e4
LT
225 sk->sk_prot->hash(sk);
226 }
227 if (sk->sk_prot->init) {
af1afe86
YH
228 err = sk->sk_prot->init(sk);
229 if (err) {
1da177e4
LT
230 sk_common_release(sk);
231 goto out;
232 }
233 }
234out:
af1afe86 235 return err;
1da177e4
LT
236out_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);
3b1e0a65 249 struct net *net = sock_net(sk);
fd683222 250 __be32 v4addr = 0;
1da177e4
LT
251 unsigned short snum;
252 int addr_type = 0;
253 int err = 0;
254
255 /* If the socket has its own bind function then use it. */
256 if (sk->sk_prot->bind)
257 return sk->sk_prot->bind(sk, uaddr, addr_len);
258
259 if (addr_len < SIN6_LEN_RFC2133)
260 return -EINVAL;
261 addr_type = ipv6_addr_type(&addr->sin6_addr);
262 if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
263 return -EINVAL;
264
265 snum = ntohs(addr->sin6_port);
266 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
267 return -EACCES;
268
269 lock_sock(sk);
270
271 /* Check these errors (active socket, double bind). */
272 if (sk->sk_state != TCP_CLOSE || inet->num) {
273 err = -EINVAL;
274 goto out;
275 }
276
277 /* Check if the address belongs to the host. */
278 if (addr_type == IPV6_ADDR_MAPPED) {
279 v4addr = addr->sin6_addr.s6_addr32[3];
075de939 280 if (inet_addr_type(net, v4addr) != RTN_LOCAL) {
1da177e4
LT
281 err = -EADDRNOTAVAIL;
282 goto out;
283 }
284 } else {
285 if (addr_type != IPV6_ADDR_ANY) {
286 struct net_device *dev = NULL;
287
288 if (addr_type & IPV6_ADDR_LINKLOCAL) {
289 if (addr_len >= sizeof(struct sockaddr_in6) &&
290 addr->sin6_scope_id) {
291 /* Override any existing binding, if another one
292 * is supplied by user.
293 */
294 sk->sk_bound_dev_if = addr->sin6_scope_id;
295 }
1ab1457c 296
1da177e4
LT
297 /* Binding to link-local address requires an interface */
298 if (!sk->sk_bound_dev_if) {
299 err = -EINVAL;
300 goto out;
301 }
075de939 302 dev = dev_get_by_index(net, sk->sk_bound_dev_if);
1da177e4
LT
303 if (!dev) {
304 err = -ENODEV;
305 goto out;
306 }
307 }
308
309 /* ipv4 addr of the socket is invalid. Only the
310 * unspecified and mapped address have a v4 equivalent.
311 */
312 v4addr = LOOPBACK4_IPV6;
313 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
075de939 314 if (!ipv6_chk_addr(net, &addr->sin6_addr,
bfeade08 315 dev, 0)) {
1da177e4
LT
316 if (dev)
317 dev_put(dev);
318 err = -EADDRNOTAVAIL;
319 goto out;
320 }
321 }
322 if (dev)
323 dev_put(dev);
324 }
325 }
326
327 inet->rcv_saddr = v4addr;
328 inet->saddr = v4addr;
329
330 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
1ab1457c 331
1da177e4
LT
332 if (!(addr_type & IPV6_ADDR_MULTICAST))
333 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
334
335 /* Make sure we are allowed to bind here. */
336 if (sk->sk_prot->get_port(sk, snum)) {
337 inet_reset_saddr(sk);
338 err = -EADDRINUSE;
339 goto out;
340 }
341
342 if (addr_type != IPV6_ADDR_ANY)
343 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
344 if (snum)
345 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
e69a4adc 346 inet->sport = htons(inet->num);
1da177e4
LT
347 inet->dport = 0;
348 inet->daddr = 0;
349out:
350 release_sock(sk);
351 return err;
352}
353
7159039a
YH
354EXPORT_SYMBOL(inet6_bind);
355
1da177e4
LT
356int 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
7159039a
YH
372EXPORT_SYMBOL(inet6_release);
373
7d06b2e0 374void inet6_destroy_sock(struct sock *sk)
1da177e4
LT
375{
376 struct ipv6_pinfo *np = inet6_sk(sk);
377 struct sk_buff *skb;
378 struct ipv6_txoptions *opt;
379
1da177e4
LT
380 /* Release rx options */
381
382 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
383 kfree_skb(skb);
384
385 /* Free flowlabels */
386 fl6_free_socklist(sk);
387
388 /* Free tx options */
389
390 if ((opt = xchg(&np->opt, NULL)) != NULL)
391 sock_kfree_s(sk, opt, opt->tot_len);
1da177e4
LT
392}
393
3cf3dc6c
ACM
394EXPORT_SYMBOL_GPL(inet6_destroy_sock);
395
1da177e4
LT
396/*
397 * This does both peername and sockname.
398 */
1ab1457c 399
1da177e4
LT
400int 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);
1ab1457c 407
1da177e4
LT
408 sin->sin6_family = AF_INET6;
409 sin->sin6_flowinfo = 0;
410 sin->sin6_scope_id = 0;
411 if (peer) {
412 if (!inet->dport)
413 return -ENOTCONN;
414 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
415 peer == 1)
416 return -ENOTCONN;
417 sin->sin6_port = inet->dport;
418 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
419 if (np->sndflow)
420 sin->sin6_flowinfo = np->flow_label;
421 } else {
422 if (ipv6_addr_any(&np->rcv_saddr))
423 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
424 else
425 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
426
427 sin->sin6_port = inet->sport;
428 }
429 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
430 sin->sin6_scope_id = sk->sk_bound_dev_if;
431 *uaddr_len = sizeof(*sin);
432 return(0);
433}
434
7159039a
YH
435EXPORT_SYMBOL(inet6_getname);
436
1da177e4
LT
437int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
438{
439 struct sock *sk = sock->sk;
3b1e0a65 440 struct net *net = sock_net(sk);
1da177e4 441
1ab1457c 442 switch(cmd)
1da177e4
LT
443 {
444 case SIOCGSTAMP:
445 return sock_get_timestamp(sk, (struct timeval __user *)arg);
446
ae40eb1e
ED
447 case SIOCGSTAMPNS:
448 return sock_get_timestampns(sk, (struct timespec __user *)arg);
449
1da177e4
LT
450 case SIOCADDRT:
451 case SIOCDELRT:
1ab1457c 452
5578689a 453 return(ipv6_route_ioctl(net, cmd, (void __user *)arg));
1da177e4
LT
454
455 case SIOCSIFADDR:
af284937 456 return addrconf_add_ifaddr(net, (void __user *) arg);
1da177e4 457 case SIOCDIFADDR:
af284937 458 return addrconf_del_ifaddr(net, (void __user *) arg);
1da177e4 459 case SIOCSIFDSTADDR:
af284937 460 return addrconf_set_dstaddr(net, (void __user *) arg);
1da177e4 461 default:
b5e5fa5e
CH
462 if (!sk->sk_prot->ioctl)
463 return -ENOIOCTLCMD;
464 return sk->sk_prot->ioctl(sk, cmd, arg);
1da177e4
LT
465 }
466 /*NOTREACHED*/
467 return(0);
468}
469
7159039a
YH
470EXPORT_SYMBOL(inet6_ioctl);
471
90ddc4f0 472const struct proto_ops inet6_stream_ops = {
543d9cfe
ACM
473 .family = PF_INET6,
474 .owner = THIS_MODULE,
475 .release = inet6_release,
476 .bind = inet6_bind,
477 .connect = inet_stream_connect, /* ok */
478 .socketpair = sock_no_socketpair, /* a do nothing */
479 .accept = inet_accept, /* ok */
480 .getname = inet6_getname,
481 .poll = tcp_poll, /* ok */
482 .ioctl = inet6_ioctl, /* must change */
483 .listen = inet_listen, /* ok */
484 .shutdown = inet_shutdown, /* ok */
485 .setsockopt = sock_common_setsockopt, /* ok */
486 .getsockopt = sock_common_getsockopt, /* ok */
3516ffb0 487 .sendmsg = tcp_sendmsg, /* ok */
543d9cfe
ACM
488 .recvmsg = sock_common_recvmsg, /* ok */
489 .mmap = sock_no_mmap,
490 .sendpage = tcp_sendpage,
a0974dd3 491 .splice_read = tcp_splice_read,
3fdadf7d 492#ifdef CONFIG_COMPAT
543d9cfe
ACM
493 .compat_setsockopt = compat_sock_common_setsockopt,
494 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 495#endif
1da177e4
LT
496};
497
90ddc4f0 498const struct proto_ops inet6_dgram_ops = {
543d9cfe
ACM
499 .family = PF_INET6,
500 .owner = THIS_MODULE,
501 .release = inet6_release,
502 .bind = inet6_bind,
503 .connect = inet_dgram_connect, /* ok */
504 .socketpair = sock_no_socketpair, /* a do nothing */
505 .accept = sock_no_accept, /* a do nothing */
506 .getname = inet6_getname,
507 .poll = udp_poll, /* ok */
508 .ioctl = inet6_ioctl, /* must change */
509 .listen = sock_no_listen, /* ok */
510 .shutdown = inet_shutdown, /* ok */
511 .setsockopt = sock_common_setsockopt, /* ok */
512 .getsockopt = sock_common_getsockopt, /* ok */
513 .sendmsg = inet_sendmsg, /* ok */
514 .recvmsg = sock_common_recvmsg, /* ok */
515 .mmap = sock_no_mmap,
516 .sendpage = sock_no_sendpage,
3fdadf7d 517#ifdef CONFIG_COMPAT
543d9cfe
ACM
518 .compat_setsockopt = compat_sock_common_setsockopt,
519 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 520#endif
1da177e4
LT
521};
522
523static struct net_proto_family inet6_family_ops = {
524 .family = PF_INET6,
525 .create = inet6_create,
526 .owner = THIS_MODULE,
527};
528
87c3efbf 529int inet6_register_protosw(struct inet_protosw *p)
1da177e4
LT
530{
531 struct list_head *lh;
532 struct inet_protosw *answer;
1da177e4 533 struct list_head *last_perm;
87c3efbf
DL
534 int protocol = p->protocol;
535 int ret;
1da177e4
LT
536
537 spin_lock_bh(&inetsw6_lock);
538
87c3efbf 539 ret = -EINVAL;
1da177e4
LT
540 if (p->type >= SOCK_MAX)
541 goto out_illegal;
542
543 /* If we are trying to override a permanent protocol, bail. */
544 answer = NULL;
87c3efbf 545 ret = -EPERM;
1da177e4
LT
546 last_perm = &inetsw6[p->type];
547 list_for_each(lh, &inetsw6[p->type]) {
548 answer = list_entry(lh, struct inet_protosw, list);
549
550 /* Check only the non-wild match. */
551 if (INET_PROTOSW_PERMANENT & answer->flags) {
552 if (protocol == answer->protocol)
553 break;
554 last_perm = lh;
555 }
556
557 answer = NULL;
558 }
559 if (answer)
560 goto out_permanent;
561
562 /* Add the new entry after the last permanent entry if any, so that
563 * the new entry does not override a permanent entry when matched with
564 * a wild-card protocol. But it is allowed to override any existing
1ab1457c 565 * non-permanent entry. This means that when we remove this entry, the
1da177e4
LT
566 * system automatically returns to the old behavior.
567 */
568 list_add_rcu(&p->list, last_perm);
87c3efbf 569 ret = 0;
1da177e4
LT
570out:
571 spin_unlock_bh(&inetsw6_lock);
87c3efbf 572 return ret;
1da177e4
LT
573
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
7159039a
YH
586EXPORT_SYMBOL(inet6_register_protosw);
587
1da177e4
LT
588void
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
7159039a
YH
604EXPORT_SYMBOL(inet6_unregister_protosw);
605
b9750ce1
ACM
606int 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;
beb8d13b 627 security_sk_classify_flow(sk, &fl);
b9750ce1
ACM
628
629 if (np->opt && np->opt->srcrt) {
630 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
631 ipv6_addr_copy(&final, &fl.fl6_dst);
632 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
633 final_p = &final;
634 }
635
636 err = ip6_dst_lookup(sk, &dst, &fl);
637 if (err) {
638 sk->sk_route_caps = 0;
639 return err;
640 }
641 if (final_p)
642 ipv6_addr_copy(&fl.fl6_dst, final_p);
643
52479b62 644 if ((err = xfrm_lookup(sock_net(sk), &dst, &fl, sk, 0)) < 0) {
b9750ce1
ACM
645 sk->sk_err_soft = -err;
646 return err;
647 }
648
8e1ef0a9 649 __ip6_dst_store(sk, dst, NULL, NULL);
b9750ce1
ACM
650 }
651
652 return 0;
653}
654
655EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
656
399c07de
ACM
657int 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)) ||
d56f90a7
ACM
665 ((IPV6_FLOWINFO_MASK &
666 *(__be32 *)skb_network_header(skb)) &&
399c07de
ACM
667 np->rxopt.bits.rxflow) ||
668 (opt->srcrt && (np->rxopt.bits.srcrt ||
669 np->rxopt.bits.osrcrt)) ||
670 ((opt->dst1 || opt->dst0) &&
671 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
672 return 1;
673 }
674 return 0;
675}
676
677EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
678
787e9208 679static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto)
662397fd
YH
680{
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
787e9208 710 return proto;
662397fd
YH
711}
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();
787e9208
HX
727 ops = rcu_dereference(inet6_protos[
728 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
729
662397fd
YH
730 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();
787e9208
HX
765 ops = rcu_dereference(inet6_protos[
766 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
767
662397fd
YH
768 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
787e9208
HX
787struct 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;
ebad18e9 804 __wsum csum;
787e9208 805
86911732
HX
806 iph = skb_gro_header(skb, sizeof(*iph));
807 if (unlikely(!iph))
787e9208
HX
808 goto out;
809
86911732
HX
810 skb_gro_pull(skb, sizeof(*iph));
811 skb_set_transport_header(skb, skb_gro_offset(skb));
787e9208 812
86911732 813 flush += ntohs(iph->payload_len) != skb_gro_len(skb);
787e9208
HX
814
815 rcu_read_lock();
86911732 816 proto = iph->nexthdr;
787e9208 817 ops = rcu_dereference(inet6_protos[proto]);
86911732
HX
818 if (!ops || !ops->gro_receive) {
819 __pskb_pull(skb, skb_gro_offset(skb));
820 proto = ipv6_gso_pull_exthdrs(skb, proto);
821 skb_gro_pull(skb, -skb_transport_offset(skb));
822 skb_reset_transport_header(skb);
823 __skb_push(skb, skb_gro_offset(skb));
824
825 if (!ops || !ops->gro_receive)
826 goto out_unlock;
827
828 iph = ipv6_hdr(skb);
829 }
830
831 IPV6_GRO_CB(skb)->proto = proto;
787e9208
HX
832
833 flush--;
787e9208
HX
834 nlen = skb_network_header_len(skb);
835
836 for (p = *head; p; p = p->next) {
837 struct ipv6hdr *iph2;
838
839 if (!NAPI_GRO_CB(p)->same_flow)
840 continue;
841
842 iph2 = ipv6_hdr(p);
843
844 /* All fields must match except length. */
845 if (nlen != skb_network_header_len(p) ||
846 memcmp(iph, iph2, offsetof(struct ipv6hdr, payload_len)) ||
847 memcmp(&iph->nexthdr, &iph2->nexthdr,
848 nlen - offsetof(struct ipv6hdr, nexthdr))) {
849 NAPI_GRO_CB(p)->same_flow = 0;
850 continue;
851 }
852
853 NAPI_GRO_CB(p)->flush |= flush;
854 }
855
856 NAPI_GRO_CB(skb)->flush |= flush;
857
ebad18e9
HX
858 csum = skb->csum;
859 skb_postpull_rcsum(skb, iph, skb_network_header_len(skb));
860
787e9208
HX
861 pp = ops->gro_receive(head, skb);
862
ebad18e9
HX
863 skb->csum = csum;
864
787e9208
HX
865out_unlock:
866 rcu_read_unlock();
867
868out:
869 NAPI_GRO_CB(skb)->flush |= flush;
870
871 return pp;
872}
873
874static int ipv6_gro_complete(struct sk_buff *skb)
875{
876 struct inet6_protocol *ops;
877 struct ipv6hdr *iph = ipv6_hdr(skb);
878 int err = -ENOSYS;
879
880 iph->payload_len = htons(skb->len - skb_network_offset(skb) -
881 sizeof(*iph));
882
883 rcu_read_lock();
884 ops = rcu_dereference(inet6_protos[IPV6_GRO_CB(skb)->proto]);
885 if (WARN_ON(!ops || !ops->gro_complete))
886 goto out_unlock;
887
888 err = ops->gro_complete(skb);
889
890out_unlock:
891 rcu_read_unlock();
892
893 return err;
894}
895
7546dd97 896static struct packet_type ipv6_packet_type __read_mostly = {
09640e63 897 .type = cpu_to_be16(ETH_P_IPV6),
662397fd
YH
898 .func = ipv6_rcv,
899 .gso_send_check = ipv6_gso_send_check,
900 .gso_segment = ipv6_gso_segment,
787e9208
HX
901 .gro_receive = ipv6_gro_receive,
902 .gro_complete = ipv6_gro_complete,
662397fd
YH
903};
904
905static int __init ipv6_packet_init(void)
906{
907 dev_add_pack(&ipv6_packet_type);
908 return 0;
909}
910
911static void ipv6_packet_cleanup(void)
912{
913 dev_remove_pack(&ipv6_packet_type);
914}
915
e43291cb
DL
916static int __net_init ipv6_init_mibs(struct net *net)
917{
0c7ed677
DL
918 if (snmp_mib_init((void **)net->mib.udp_stats_in6,
919 sizeof (struct udp_mib)) < 0)
920 return -ENOMEM;
be713a44
DL
921 if (snmp_mib_init((void **)net->mib.udplite_stats_in6,
922 sizeof (struct udp_mib)) < 0)
923 goto err_udplite_mib;
9261e537
DL
924 if (snmp_mib_init((void **)net->mib.ipv6_statistics,
925 sizeof(struct ipstats_mib)) < 0)
926 goto err_ip_mib;
927 if (snmp_mib_init((void **)net->mib.icmpv6_statistics,
928 sizeof(struct icmpv6_mib)) < 0)
929 goto err_icmp_mib;
930 if (snmp_mib_init((void **)net->mib.icmpv6msg_statistics,
931 sizeof(struct icmpv6msg_mib)) < 0)
932 goto err_icmpmsg_mib;
e43291cb 933 return 0;
be713a44 934
9261e537
DL
935err_icmpmsg_mib:
936 snmp_mib_free((void **)net->mib.icmpv6_statistics);
937err_icmp_mib:
938 snmp_mib_free((void **)net->mib.ipv6_statistics);
939err_ip_mib:
940 snmp_mib_free((void **)net->mib.udplite_stats_in6);
be713a44
DL
941err_udplite_mib:
942 snmp_mib_free((void **)net->mib.udp_stats_in6);
943 return -ENOMEM;
e43291cb
DL
944}
945
946static void __net_exit ipv6_cleanup_mibs(struct net *net)
947{
0c7ed677 948 snmp_mib_free((void **)net->mib.udp_stats_in6);
be713a44 949 snmp_mib_free((void **)net->mib.udplite_stats_in6);
9261e537
DL
950 snmp_mib_free((void **)net->mib.ipv6_statistics);
951 snmp_mib_free((void **)net->mib.icmpv6_statistics);
952 snmp_mib_free((void **)net->mib.icmpv6msg_statistics);
e43291cb
DL
953}
954
e7dc8494 955static int __net_init inet6_net_init(struct net *net)
81c1c178 956{
0c96d8c5
DL
957 int err = 0;
958
99bc9c4e 959 net->ipv6.sysctl.bindv6only = 0;
41a76906 960 net->ipv6.sysctl.icmpv6_time = 1*HZ;
e71e0349 961
e43291cb
DL
962 err = ipv6_init_mibs(net);
963 if (err)
964 return err;
0c96d8c5
DL
965#ifdef CONFIG_PROC_FS
966 err = udp6_proc_init(net);
967 if (err)
968 goto out;
6f8b13bc
DL
969 err = tcp6_proc_init(net);
970 if (err)
971 goto proc_tcp6_fail;
6ab57e7e
DL
972 err = ac6_proc_init(net);
973 if (err)
974 goto proc_ac6_fail;
0c96d8c5
DL
975#endif
976 return err;
6f8b13bc
DL
977
978#ifdef CONFIG_PROC_FS
6ab57e7e
DL
979proc_ac6_fail:
980 tcp6_proc_exit(net);
6f8b13bc
DL
981proc_tcp6_fail:
982 udp6_proc_exit(net);
e43291cb
DL
983out:
984 ipv6_cleanup_mibs(net);
985 return err;
6f8b13bc 986#endif
81c1c178
DL
987}
988
989static void inet6_net_exit(struct net *net)
990{
0c96d8c5
DL
991#ifdef CONFIG_PROC_FS
992 udp6_proc_exit(net);
6f8b13bc 993 tcp6_proc_exit(net);
6ab57e7e 994 ac6_proc_exit(net);
0c96d8c5 995#endif
e43291cb 996 ipv6_cleanup_mibs(net);
81c1c178
DL
997}
998
999static struct pernet_operations inet6_net_ops = {
1000 .init = inet6_net_init,
1001 .exit = inet6_net_exit,
1002};
1003
1da177e4
LT
1004static int __init inet6_init(void)
1005{
1006 struct sk_buff *dummy_skb;
1ab1457c 1007 struct list_head *r;
fe7ca2e1 1008 int err = 0;
1da177e4 1009
ef047f5e
YH
1010 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
1011
fe7ca2e1
BH
1012 /* Register the socket-side information for inet6_create. */
1013 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
1014 INIT_LIST_HEAD(r);
1015
1016 if (disable_ipv6) {
1017 printk(KERN_INFO
1018 "IPv6: Loaded, but administratively disabled, "
1019 "reboot required to enable\n");
1020 goto out;
1021 }
1022
1da177e4
LT
1023 err = proto_register(&tcpv6_prot, 1);
1024 if (err)
1025 goto out;
1026
1027 err = proto_register(&udpv6_prot, 1);
1028 if (err)
1029 goto out_unregister_tcp_proto;
1030
ba4e58ec 1031 err = proto_register(&udplitev6_prot, 1);
1da177e4
LT
1032 if (err)
1033 goto out_unregister_udp_proto;
1034
ba4e58ec
GR
1035 err = proto_register(&rawv6_prot, 1);
1036 if (err)
1037 goto out_unregister_udplite_proto;
1038
1da177e4 1039
1da177e4
LT
1040 /* We MUST register RAW sockets before we create the ICMP6,
1041 * IGMP6, or NDISC control sockets.
1042 */
7f4e4868
DL
1043 err = rawv6_init();
1044 if (err)
1045 goto out_unregister_raw_proto;
1da177e4
LT
1046
1047 /* Register the family here so that the init calls below will
1048 * be able to create sockets. (?? is this dangerous ??)
1049 */
8eb55910
DM
1050 err = sock_register(&inet6_family_ops);
1051 if (err)
7f4e4868 1052 goto out_sock_register_fail;
1da177e4 1053
eeb61f71
AV
1054#ifdef CONFIG_SYSCTL
1055 err = ipv6_static_sysctl_register();
1056 if (err)
1057 goto static_sysctl_fail;
1058#endif
1da177e4
LT
1059 /*
1060 * ipngwg API draft makes clear that the correct semantics
1061 * for TCP and UDP is to consider one TCP and UDP instance
1062 * in a host availiable by both INET and INET6 APIs and
1063 * able to communicate via both network protocols.
1064 */
1065
81c1c178
DL
1066 err = register_pernet_subsys(&inet6_net_ops);
1067 if (err)
1068 goto register_pernet_fail;
9b0f976f 1069 err = icmpv6_init();
1da177e4
LT
1070 if (err)
1071 goto icmp_fail;
623d1a1a
WC
1072 err = ip6_mr_init();
1073 if (err)
1074 goto ipmr_fail;
9b0f976f 1075 err = ndisc_init();
1da177e4
LT
1076 if (err)
1077 goto ndisc_fail;
9b0f976f 1078 err = igmp6_init();
1da177e4
LT
1079 if (err)
1080 goto igmp_fail;
2cc7d573
HW
1081 err = ipv6_netfilter_init();
1082 if (err)
1083 goto netfilter_fail;
1da177e4
LT
1084 /* Create /proc/foo6 entries. */
1085#ifdef CONFIG_PROC_FS
1086 err = -ENOMEM;
1087 if (raw6_proc_init())
1088 goto proc_raw6_fail;
ba4e58ec
GR
1089 if (udplite6_proc_init())
1090 goto proc_udplite6_fail;
1da177e4
LT
1091 if (ipv6_misc_proc_init())
1092 goto proc_misc6_fail;
1da177e4
LT
1093 if (if6_proc_init())
1094 goto proc_if6_fail;
1095#endif
e2fddf5e
DL
1096 err = ip6_route_init();
1097 if (err)
1098 goto ip6_route_fail;
0a3e78ac
DL
1099 err = ip6_flowlabel_init();
1100 if (err)
1101 goto ip6_flowlabel_fail;
1da177e4
LT
1102 err = addrconf_init();
1103 if (err)
1104 goto addrconf_fail;
1da177e4
LT
1105
1106 /* Init v6 extension headers. */
248b238d
DL
1107 err = ipv6_exthdrs_init();
1108 if (err)
1109 goto ipv6_exthdrs_fail;
1110
853cbbaa
DL
1111 err = ipv6_frag_init();
1112 if (err)
1113 goto ipv6_frag_fail;
1da177e4
LT
1114
1115 /* Init v6 transport protocols. */
7f4e4868
DL
1116 err = udpv6_init();
1117 if (err)
1118 goto udpv6_fail;
e2ed4052 1119
7f4e4868
DL
1120 err = udplitev6_init();
1121 if (err)
1122 goto udplitev6_fail;
1123
1124 err = tcpv6_init();
1125 if (err)
1126 goto tcpv6_fail;
1127
1128 err = ipv6_packet_init();
1129 if (err)
1130 goto ipv6_packet_fail;
94911fe3
BT
1131
1132#ifdef CONFIG_SYSCTL
1133 err = ipv6_sysctl_register();
1134 if (err)
1135 goto sysctl_fail;
1136#endif
1da177e4
LT
1137out:
1138 return err;
1139
94911fe3
BT
1140#ifdef CONFIG_SYSCTL
1141sysctl_fail:
1142 ipv6_packet_cleanup();
1143#endif
7f4e4868
DL
1144ipv6_packet_fail:
1145 tcpv6_exit();
1146tcpv6_fail:
1147 udplitev6_exit();
1148udplitev6_fail:
1149 udpv6_exit();
1150udpv6_fail:
1151 ipv6_frag_exit();
853cbbaa
DL
1152ipv6_frag_fail:
1153 ipv6_exthdrs_exit();
248b238d
DL
1154ipv6_exthdrs_fail:
1155 addrconf_cleanup();
1da177e4
LT
1156addrconf_fail:
1157 ip6_flowlabel_cleanup();
0a3e78ac 1158ip6_flowlabel_fail:
1da177e4 1159 ip6_route_cleanup();
e2fddf5e 1160ip6_route_fail:
1da177e4
LT
1161#ifdef CONFIG_PROC_FS
1162 if6_proc_exit();
1163proc_if6_fail:
1da177e4
LT
1164 ipv6_misc_proc_exit();
1165proc_misc6_fail:
ba4e58ec
GR
1166 udplite6_proc_exit();
1167proc_udplite6_fail:
1da177e4
LT
1168 raw6_proc_exit();
1169proc_raw6_fail:
1170#endif
2cc7d573
HW
1171 ipv6_netfilter_fini();
1172netfilter_fail:
1da177e4
LT
1173 igmp6_cleanup();
1174igmp_fail:
1175 ndisc_cleanup();
1176ndisc_fail:
623d1a1a
WC
1177 ip6_mr_cleanup();
1178ipmr_fail:
1da177e4
LT
1179 icmpv6_cleanup();
1180icmp_fail:
81c1c178
DL
1181 unregister_pernet_subsys(&inet6_net_ops);
1182register_pernet_fail:
eeb61f71
AV
1183#ifdef CONFIG_SYSCTL
1184 ipv6_static_sysctl_unregister();
1185static_sysctl_fail:
1186#endif
8eb55910 1187 sock_unregister(PF_INET6);
e2fddf5e 1188 rtnl_unregister_all(PF_INET6);
7f4e4868
DL
1189out_sock_register_fail:
1190 rawv6_exit();
1da177e4
LT
1191out_unregister_raw_proto:
1192 proto_unregister(&rawv6_prot);
ba4e58ec
GR
1193out_unregister_udplite_proto:
1194 proto_unregister(&udplitev6_prot);
1da177e4
LT
1195out_unregister_udp_proto:
1196 proto_unregister(&udpv6_prot);
1197out_unregister_tcp_proto:
1198 proto_unregister(&tcpv6_prot);
1199 goto out;
1200}
1201module_init(inet6_init);
1202
1203static void __exit inet6_exit(void)
1204{
1205 /* First of all disallow new sockets creation. */
1206 sock_unregister(PF_INET6);
c127ea2c
TG
1207 /* Disallow any further netlink messages */
1208 rtnl_unregister_all(PF_INET6);
ca17c233 1209
94911fe3
BT
1210#ifdef CONFIG_SYSCTL
1211 ipv6_sysctl_unregister();
1212#endif
7f4e4868
DL
1213 udpv6_exit();
1214 udplitev6_exit();
1215 tcpv6_exit();
1216
ca17c233
JJ
1217 /* Cleanup code parts. */
1218 ipv6_packet_cleanup();
853cbbaa 1219 ipv6_frag_exit();
248b238d 1220 ipv6_exthdrs_exit();
ca17c233
JJ
1221 addrconf_cleanup();
1222 ip6_flowlabel_cleanup();
1223 ip6_route_cleanup();
1da177e4 1224#ifdef CONFIG_PROC_FS
ca17c233
JJ
1225
1226 /* Cleanup code parts. */
1da177e4 1227 if6_proc_exit();
1ab1457c 1228 ipv6_misc_proc_exit();
1ab1457c 1229 udplite6_proc_exit();
1ab1457c 1230 raw6_proc_exit();
2c8d7ca0 1231#endif
2cc7d573 1232 ipv6_netfilter_fini();
ca17c233 1233 igmp6_cleanup();
1da177e4 1234 ndisc_cleanup();
623d1a1a 1235 ip6_mr_cleanup();
1da177e4 1236 icmpv6_cleanup();
7f4e4868 1237 rawv6_exit();
94911fe3 1238
81c1c178 1239 unregister_pernet_subsys(&inet6_net_ops);
eeb61f71
AV
1240#ifdef CONFIG_SYSCTL
1241 ipv6_static_sysctl_unregister();
1242#endif
1da177e4 1243 proto_unregister(&rawv6_prot);
ca17c233 1244 proto_unregister(&udplitev6_prot);
1da177e4
LT
1245 proto_unregister(&udpv6_prot);
1246 proto_unregister(&tcpv6_prot);
1247}
1248module_exit(inet6_exit);
1249
1250MODULE_ALIAS_NETPROTO(PF_INET6);