ipv6: Allow ipv4 wildcard binds after ipv6 address binds
[deliverable/linux.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) {
783ed5a7
VY
279 /* 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 }
1da177e4 286 v4addr = addr->sin6_addr.s6_addr32[3];
075de939 287 if (inet_addr_type(net, v4addr) != RTN_LOCAL) {
1da177e4
LT
288 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 }
1ab1457c 303
1da177e4
LT
304 /* Binding to link-local address requires an interface */
305 if (!sk->sk_bound_dev_if) {
306 err = -EINVAL;
307 goto out;
308 }
075de939 309 dev = dev_get_by_index(net, sk->sk_bound_dev_if);
1da177e4
LT
310 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)) {
075de939 321 if (!ipv6_chk_addr(net, &addr->sin6_addr,
bfeade08 322 dev, 0)) {
1da177e4
LT
323 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);
1ab1457c 338
1da177e4
LT
339 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
0f8d3c7a 349 if (addr_type != IPV6_ADDR_ANY) {
1da177e4 350 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
0f8d3c7a
VY
351 if (addr_type != IPV6_ADDR_MAPPED)
352 np->ipv6only = 1;
353 }
1da177e4
LT
354 if (snum)
355 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
e69a4adc 356 inet->sport = htons(inet->num);
1da177e4
LT
357 inet->dport = 0;
358 inet->daddr = 0;
359out:
360 release_sock(sk);
361 return err;
362}
363
7159039a
YH
364EXPORT_SYMBOL(inet6_bind);
365
1da177e4
LT
366int inet6_release(struct socket *sock)
367{
368 struct sock *sk = sock->sk;
369
370 if (sk == NULL)
371 return -EINVAL;
372
373 /* Free mc lists */
374 ipv6_sock_mc_close(sk);
375
376 /* Free ac lists */
377 ipv6_sock_ac_close(sk);
378
379 return inet_release(sock);
380}
381
7159039a
YH
382EXPORT_SYMBOL(inet6_release);
383
7d06b2e0 384void inet6_destroy_sock(struct sock *sk)
1da177e4
LT
385{
386 struct ipv6_pinfo *np = inet6_sk(sk);
387 struct sk_buff *skb;
388 struct ipv6_txoptions *opt;
389
1da177e4
LT
390 /* Release rx options */
391
392 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
393 kfree_skb(skb);
394
395 /* Free flowlabels */
396 fl6_free_socklist(sk);
397
398 /* Free tx options */
399
400 if ((opt = xchg(&np->opt, NULL)) != NULL)
401 sock_kfree_s(sk, opt, opt->tot_len);
1da177e4
LT
402}
403
3cf3dc6c
ACM
404EXPORT_SYMBOL_GPL(inet6_destroy_sock);
405
1da177e4
LT
406/*
407 * This does both peername and sockname.
408 */
1ab1457c 409
1da177e4
LT
410int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
411 int *uaddr_len, int peer)
412{
413 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
414 struct sock *sk = sock->sk;
415 struct inet_sock *inet = inet_sk(sk);
416 struct ipv6_pinfo *np = inet6_sk(sk);
1ab1457c 417
1da177e4
LT
418 sin->sin6_family = AF_INET6;
419 sin->sin6_flowinfo = 0;
420 sin->sin6_scope_id = 0;
421 if (peer) {
422 if (!inet->dport)
423 return -ENOTCONN;
424 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
425 peer == 1)
426 return -ENOTCONN;
427 sin->sin6_port = inet->dport;
428 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
429 if (np->sndflow)
430 sin->sin6_flowinfo = np->flow_label;
431 } else {
432 if (ipv6_addr_any(&np->rcv_saddr))
433 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
434 else
435 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
436
437 sin->sin6_port = inet->sport;
438 }
439 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
440 sin->sin6_scope_id = sk->sk_bound_dev_if;
441 *uaddr_len = sizeof(*sin);
442 return(0);
443}
444
7159039a
YH
445EXPORT_SYMBOL(inet6_getname);
446
1da177e4
LT
447int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
448{
449 struct sock *sk = sock->sk;
3b1e0a65 450 struct net *net = sock_net(sk);
1da177e4 451
1ab1457c 452 switch(cmd)
1da177e4
LT
453 {
454 case SIOCGSTAMP:
455 return sock_get_timestamp(sk, (struct timeval __user *)arg);
456
ae40eb1e
ED
457 case SIOCGSTAMPNS:
458 return sock_get_timestampns(sk, (struct timespec __user *)arg);
459
1da177e4
LT
460 case SIOCADDRT:
461 case SIOCDELRT:
1ab1457c 462
5578689a 463 return(ipv6_route_ioctl(net, cmd, (void __user *)arg));
1da177e4
LT
464
465 case SIOCSIFADDR:
af284937 466 return addrconf_add_ifaddr(net, (void __user *) arg);
1da177e4 467 case SIOCDIFADDR:
af284937 468 return addrconf_del_ifaddr(net, (void __user *) arg);
1da177e4 469 case SIOCSIFDSTADDR:
af284937 470 return addrconf_set_dstaddr(net, (void __user *) arg);
1da177e4 471 default:
b5e5fa5e
CH
472 if (!sk->sk_prot->ioctl)
473 return -ENOIOCTLCMD;
474 return sk->sk_prot->ioctl(sk, cmd, arg);
1da177e4
LT
475 }
476 /*NOTREACHED*/
477 return(0);
478}
479
7159039a
YH
480EXPORT_SYMBOL(inet6_ioctl);
481
90ddc4f0 482const struct proto_ops inet6_stream_ops = {
543d9cfe
ACM
483 .family = PF_INET6,
484 .owner = THIS_MODULE,
485 .release = inet6_release,
486 .bind = inet6_bind,
487 .connect = inet_stream_connect, /* ok */
488 .socketpair = sock_no_socketpair, /* a do nothing */
489 .accept = inet_accept, /* ok */
490 .getname = inet6_getname,
491 .poll = tcp_poll, /* ok */
492 .ioctl = inet6_ioctl, /* must change */
493 .listen = inet_listen, /* ok */
494 .shutdown = inet_shutdown, /* ok */
495 .setsockopt = sock_common_setsockopt, /* ok */
496 .getsockopt = sock_common_getsockopt, /* ok */
3516ffb0 497 .sendmsg = tcp_sendmsg, /* ok */
543d9cfe
ACM
498 .recvmsg = sock_common_recvmsg, /* ok */
499 .mmap = sock_no_mmap,
500 .sendpage = tcp_sendpage,
a0974dd3 501 .splice_read = tcp_splice_read,
3fdadf7d 502#ifdef CONFIG_COMPAT
543d9cfe
ACM
503 .compat_setsockopt = compat_sock_common_setsockopt,
504 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 505#endif
1da177e4
LT
506};
507
90ddc4f0 508const struct proto_ops inet6_dgram_ops = {
543d9cfe
ACM
509 .family = PF_INET6,
510 .owner = THIS_MODULE,
511 .release = inet6_release,
512 .bind = inet6_bind,
513 .connect = inet_dgram_connect, /* ok */
514 .socketpair = sock_no_socketpair, /* a do nothing */
515 .accept = sock_no_accept, /* a do nothing */
516 .getname = inet6_getname,
517 .poll = udp_poll, /* ok */
518 .ioctl = inet6_ioctl, /* must change */
519 .listen = sock_no_listen, /* ok */
520 .shutdown = inet_shutdown, /* ok */
521 .setsockopt = sock_common_setsockopt, /* ok */
522 .getsockopt = sock_common_getsockopt, /* ok */
523 .sendmsg = inet_sendmsg, /* ok */
524 .recvmsg = sock_common_recvmsg, /* ok */
525 .mmap = sock_no_mmap,
526 .sendpage = sock_no_sendpage,
3fdadf7d 527#ifdef CONFIG_COMPAT
543d9cfe
ACM
528 .compat_setsockopt = compat_sock_common_setsockopt,
529 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 530#endif
1da177e4
LT
531};
532
533static struct net_proto_family inet6_family_ops = {
534 .family = PF_INET6,
535 .create = inet6_create,
536 .owner = THIS_MODULE,
537};
538
87c3efbf 539int inet6_register_protosw(struct inet_protosw *p)
1da177e4
LT
540{
541 struct list_head *lh;
542 struct inet_protosw *answer;
1da177e4 543 struct list_head *last_perm;
87c3efbf
DL
544 int protocol = p->protocol;
545 int ret;
1da177e4
LT
546
547 spin_lock_bh(&inetsw6_lock);
548
87c3efbf 549 ret = -EINVAL;
1da177e4
LT
550 if (p->type >= SOCK_MAX)
551 goto out_illegal;
552
553 /* If we are trying to override a permanent protocol, bail. */
554 answer = NULL;
87c3efbf 555 ret = -EPERM;
1da177e4
LT
556 last_perm = &inetsw6[p->type];
557 list_for_each(lh, &inetsw6[p->type]) {
558 answer = list_entry(lh, struct inet_protosw, list);
559
560 /* Check only the non-wild match. */
561 if (INET_PROTOSW_PERMANENT & answer->flags) {
562 if (protocol == answer->protocol)
563 break;
564 last_perm = lh;
565 }
566
567 answer = NULL;
568 }
569 if (answer)
570 goto out_permanent;
571
572 /* Add the new entry after the last permanent entry if any, so that
573 * the new entry does not override a permanent entry when matched with
574 * a wild-card protocol. But it is allowed to override any existing
1ab1457c 575 * non-permanent entry. This means that when we remove this entry, the
1da177e4
LT
576 * system automatically returns to the old behavior.
577 */
578 list_add_rcu(&p->list, last_perm);
87c3efbf 579 ret = 0;
1da177e4
LT
580out:
581 spin_unlock_bh(&inetsw6_lock);
87c3efbf 582 return ret;
1da177e4
LT
583
584out_permanent:
585 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
586 protocol);
587 goto out;
588
589out_illegal:
590 printk(KERN_ERR
591 "Ignoring attempt to register invalid socket type %d.\n",
592 p->type);
593 goto out;
594}
595
7159039a
YH
596EXPORT_SYMBOL(inet6_register_protosw);
597
1da177e4
LT
598void
599inet6_unregister_protosw(struct inet_protosw *p)
600{
601 if (INET_PROTOSW_PERMANENT & p->flags) {
602 printk(KERN_ERR
603 "Attempt to unregister permanent protocol %d.\n",
604 p->protocol);
605 } else {
606 spin_lock_bh(&inetsw6_lock);
607 list_del_rcu(&p->list);
608 spin_unlock_bh(&inetsw6_lock);
609
610 synchronize_net();
611 }
612}
613
7159039a
YH
614EXPORT_SYMBOL(inet6_unregister_protosw);
615
b9750ce1
ACM
616int inet6_sk_rebuild_header(struct sock *sk)
617{
618 int err;
619 struct dst_entry *dst;
620 struct ipv6_pinfo *np = inet6_sk(sk);
621
622 dst = __sk_dst_check(sk, np->dst_cookie);
623
624 if (dst == NULL) {
625 struct inet_sock *inet = inet_sk(sk);
626 struct in6_addr *final_p = NULL, final;
627 struct flowi fl;
628
629 memset(&fl, 0, sizeof(fl));
630 fl.proto = sk->sk_protocol;
631 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
632 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
633 fl.fl6_flowlabel = np->flow_label;
634 fl.oif = sk->sk_bound_dev_if;
635 fl.fl_ip_dport = inet->dport;
636 fl.fl_ip_sport = inet->sport;
beb8d13b 637 security_sk_classify_flow(sk, &fl);
b9750ce1
ACM
638
639 if (np->opt && np->opt->srcrt) {
640 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
641 ipv6_addr_copy(&final, &fl.fl6_dst);
642 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
643 final_p = &final;
644 }
645
646 err = ip6_dst_lookup(sk, &dst, &fl);
647 if (err) {
648 sk->sk_route_caps = 0;
649 return err;
650 }
651 if (final_p)
652 ipv6_addr_copy(&fl.fl6_dst, final_p);
653
52479b62 654 if ((err = xfrm_lookup(sock_net(sk), &dst, &fl, sk, 0)) < 0) {
b9750ce1
ACM
655 sk->sk_err_soft = -err;
656 return err;
657 }
658
8e1ef0a9 659 __ip6_dst_store(sk, dst, NULL, NULL);
b9750ce1
ACM
660 }
661
662 return 0;
663}
664
665EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
666
399c07de
ACM
667int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb)
668{
669 struct ipv6_pinfo *np = inet6_sk(sk);
670 struct inet6_skb_parm *opt = IP6CB(skb);
671
672 if (np->rxopt.all) {
673 if ((opt->hop && (np->rxopt.bits.hopopts ||
674 np->rxopt.bits.ohopopts)) ||
d56f90a7
ACM
675 ((IPV6_FLOWINFO_MASK &
676 *(__be32 *)skb_network_header(skb)) &&
399c07de
ACM
677 np->rxopt.bits.rxflow) ||
678 (opt->srcrt && (np->rxopt.bits.srcrt ||
679 np->rxopt.bits.osrcrt)) ||
680 ((opt->dst1 || opt->dst0) &&
681 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
682 return 1;
683 }
684 return 0;
685}
686
687EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
688
787e9208 689static int ipv6_gso_pull_exthdrs(struct sk_buff *skb, int proto)
662397fd
YH
690{
691 struct inet6_protocol *ops = NULL;
692
693 for (;;) {
694 struct ipv6_opt_hdr *opth;
695 int len;
696
697 if (proto != NEXTHDR_HOP) {
698 ops = rcu_dereference(inet6_protos[proto]);
699
700 if (unlikely(!ops))
701 break;
702
703 if (!(ops->flags & INET6_PROTO_GSO_EXTHDR))
704 break;
705 }
706
707 if (unlikely(!pskb_may_pull(skb, 8)))
708 break;
709
710 opth = (void *)skb->data;
711 len = ipv6_optlen(opth);
712
713 if (unlikely(!pskb_may_pull(skb, len)))
714 break;
715
716 proto = opth->nexthdr;
717 __skb_pull(skb, len);
718 }
719
787e9208 720 return proto;
662397fd
YH
721}
722
723static int ipv6_gso_send_check(struct sk_buff *skb)
724{
725 struct ipv6hdr *ipv6h;
726 struct inet6_protocol *ops;
727 int err = -EINVAL;
728
729 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
730 goto out;
731
732 ipv6h = ipv6_hdr(skb);
733 __skb_pull(skb, sizeof(*ipv6h));
734 err = -EPROTONOSUPPORT;
735
736 rcu_read_lock();
787e9208
HX
737 ops = rcu_dereference(inet6_protos[
738 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
739
662397fd
YH
740 if (likely(ops && ops->gso_send_check)) {
741 skb_reset_transport_header(skb);
742 err = ops->gso_send_check(skb);
743 }
744 rcu_read_unlock();
745
746out:
747 return err;
748}
749
750static struct sk_buff *ipv6_gso_segment(struct sk_buff *skb, int features)
751{
752 struct sk_buff *segs = ERR_PTR(-EINVAL);
753 struct ipv6hdr *ipv6h;
754 struct inet6_protocol *ops;
755
756 if (!(features & NETIF_F_V6_CSUM))
757 features &= ~NETIF_F_SG;
758
759 if (unlikely(skb_shinfo(skb)->gso_type &
760 ~(SKB_GSO_UDP |
761 SKB_GSO_DODGY |
762 SKB_GSO_TCP_ECN |
763 SKB_GSO_TCPV6 |
764 0)))
765 goto out;
766
767 if (unlikely(!pskb_may_pull(skb, sizeof(*ipv6h))))
768 goto out;
769
770 ipv6h = ipv6_hdr(skb);
771 __skb_pull(skb, sizeof(*ipv6h));
772 segs = ERR_PTR(-EPROTONOSUPPORT);
773
774 rcu_read_lock();
787e9208
HX
775 ops = rcu_dereference(inet6_protos[
776 ipv6_gso_pull_exthdrs(skb, ipv6h->nexthdr)]);
777
662397fd
YH
778 if (likely(ops && ops->gso_segment)) {
779 skb_reset_transport_header(skb);
780 segs = ops->gso_segment(skb, features);
781 }
782 rcu_read_unlock();
783
784 if (unlikely(IS_ERR(segs)))
785 goto out;
786
787 for (skb = segs; skb; skb = skb->next) {
788 ipv6h = ipv6_hdr(skb);
789 ipv6h->payload_len = htons(skb->len - skb->mac_len -
790 sizeof(*ipv6h));
791 }
792
793out:
794 return segs;
795}
796
787e9208
HX
797struct ipv6_gro_cb {
798 struct napi_gro_cb napi;
799 int proto;
800};
801
802#define IPV6_GRO_CB(skb) ((struct ipv6_gro_cb *)(skb)->cb)
803
804static struct sk_buff **ipv6_gro_receive(struct sk_buff **head,
805 struct sk_buff *skb)
806{
807 struct inet6_protocol *ops;
808 struct sk_buff **pp = NULL;
809 struct sk_buff *p;
810 struct ipv6hdr *iph;
811 unsigned int nlen;
812 int flush = 1;
813 int proto;
ebad18e9 814 __wsum csum;
787e9208 815
86911732
HX
816 iph = skb_gro_header(skb, sizeof(*iph));
817 if (unlikely(!iph))
787e9208
HX
818 goto out;
819
86911732
HX
820 skb_gro_pull(skb, sizeof(*iph));
821 skb_set_transport_header(skb, skb_gro_offset(skb));
787e9208 822
86911732 823 flush += ntohs(iph->payload_len) != skb_gro_len(skb);
787e9208
HX
824
825 rcu_read_lock();
86911732 826 proto = iph->nexthdr;
787e9208 827 ops = rcu_dereference(inet6_protos[proto]);
86911732
HX
828 if (!ops || !ops->gro_receive) {
829 __pskb_pull(skb, skb_gro_offset(skb));
830 proto = ipv6_gso_pull_exthdrs(skb, proto);
831 skb_gro_pull(skb, -skb_transport_offset(skb));
832 skb_reset_transport_header(skb);
833 __skb_push(skb, skb_gro_offset(skb));
834
835 if (!ops || !ops->gro_receive)
836 goto out_unlock;
837
838 iph = ipv6_hdr(skb);
839 }
840
841 IPV6_GRO_CB(skb)->proto = proto;
787e9208
HX
842
843 flush--;
787e9208
HX
844 nlen = skb_network_header_len(skb);
845
846 for (p = *head; p; p = p->next) {
847 struct ipv6hdr *iph2;
848
849 if (!NAPI_GRO_CB(p)->same_flow)
850 continue;
851
852 iph2 = ipv6_hdr(p);
853
854 /* All fields must match except length. */
855 if (nlen != skb_network_header_len(p) ||
856 memcmp(iph, iph2, offsetof(struct ipv6hdr, payload_len)) ||
857 memcmp(&iph->nexthdr, &iph2->nexthdr,
858 nlen - offsetof(struct ipv6hdr, nexthdr))) {
859 NAPI_GRO_CB(p)->same_flow = 0;
860 continue;
861 }
862
863 NAPI_GRO_CB(p)->flush |= flush;
864 }
865
866 NAPI_GRO_CB(skb)->flush |= flush;
867
ebad18e9
HX
868 csum = skb->csum;
869 skb_postpull_rcsum(skb, iph, skb_network_header_len(skb));
870
787e9208
HX
871 pp = ops->gro_receive(head, skb);
872
ebad18e9
HX
873 skb->csum = csum;
874
787e9208
HX
875out_unlock:
876 rcu_read_unlock();
877
878out:
879 NAPI_GRO_CB(skb)->flush |= flush;
880
881 return pp;
882}
883
884static int ipv6_gro_complete(struct sk_buff *skb)
885{
886 struct inet6_protocol *ops;
887 struct ipv6hdr *iph = ipv6_hdr(skb);
888 int err = -ENOSYS;
889
890 iph->payload_len = htons(skb->len - skb_network_offset(skb) -
891 sizeof(*iph));
892
893 rcu_read_lock();
894 ops = rcu_dereference(inet6_protos[IPV6_GRO_CB(skb)->proto]);
895 if (WARN_ON(!ops || !ops->gro_complete))
896 goto out_unlock;
897
898 err = ops->gro_complete(skb);
899
900out_unlock:
901 rcu_read_unlock();
902
903 return err;
904}
905
7546dd97 906static struct packet_type ipv6_packet_type __read_mostly = {
09640e63 907 .type = cpu_to_be16(ETH_P_IPV6),
662397fd
YH
908 .func = ipv6_rcv,
909 .gso_send_check = ipv6_gso_send_check,
910 .gso_segment = ipv6_gso_segment,
787e9208
HX
911 .gro_receive = ipv6_gro_receive,
912 .gro_complete = ipv6_gro_complete,
662397fd
YH
913};
914
915static int __init ipv6_packet_init(void)
916{
917 dev_add_pack(&ipv6_packet_type);
918 return 0;
919}
920
921static void ipv6_packet_cleanup(void)
922{
923 dev_remove_pack(&ipv6_packet_type);
924}
925
e43291cb
DL
926static int __net_init ipv6_init_mibs(struct net *net)
927{
0c7ed677
DL
928 if (snmp_mib_init((void **)net->mib.udp_stats_in6,
929 sizeof (struct udp_mib)) < 0)
930 return -ENOMEM;
be713a44
DL
931 if (snmp_mib_init((void **)net->mib.udplite_stats_in6,
932 sizeof (struct udp_mib)) < 0)
933 goto err_udplite_mib;
9261e537
DL
934 if (snmp_mib_init((void **)net->mib.ipv6_statistics,
935 sizeof(struct ipstats_mib)) < 0)
936 goto err_ip_mib;
937 if (snmp_mib_init((void **)net->mib.icmpv6_statistics,
938 sizeof(struct icmpv6_mib)) < 0)
939 goto err_icmp_mib;
940 if (snmp_mib_init((void **)net->mib.icmpv6msg_statistics,
941 sizeof(struct icmpv6msg_mib)) < 0)
942 goto err_icmpmsg_mib;
e43291cb 943 return 0;
be713a44 944
9261e537
DL
945err_icmpmsg_mib:
946 snmp_mib_free((void **)net->mib.icmpv6_statistics);
947err_icmp_mib:
948 snmp_mib_free((void **)net->mib.ipv6_statistics);
949err_ip_mib:
950 snmp_mib_free((void **)net->mib.udplite_stats_in6);
be713a44
DL
951err_udplite_mib:
952 snmp_mib_free((void **)net->mib.udp_stats_in6);
953 return -ENOMEM;
e43291cb
DL
954}
955
956static void __net_exit ipv6_cleanup_mibs(struct net *net)
957{
0c7ed677 958 snmp_mib_free((void **)net->mib.udp_stats_in6);
be713a44 959 snmp_mib_free((void **)net->mib.udplite_stats_in6);
9261e537
DL
960 snmp_mib_free((void **)net->mib.ipv6_statistics);
961 snmp_mib_free((void **)net->mib.icmpv6_statistics);
962 snmp_mib_free((void **)net->mib.icmpv6msg_statistics);
e43291cb
DL
963}
964
e7dc8494 965static int __net_init inet6_net_init(struct net *net)
81c1c178 966{
0c96d8c5
DL
967 int err = 0;
968
99bc9c4e 969 net->ipv6.sysctl.bindv6only = 0;
41a76906 970 net->ipv6.sysctl.icmpv6_time = 1*HZ;
e71e0349 971
e43291cb
DL
972 err = ipv6_init_mibs(net);
973 if (err)
974 return err;
0c96d8c5
DL
975#ifdef CONFIG_PROC_FS
976 err = udp6_proc_init(net);
977 if (err)
978 goto out;
6f8b13bc
DL
979 err = tcp6_proc_init(net);
980 if (err)
981 goto proc_tcp6_fail;
6ab57e7e
DL
982 err = ac6_proc_init(net);
983 if (err)
984 goto proc_ac6_fail;
0c96d8c5
DL
985#endif
986 return err;
6f8b13bc
DL
987
988#ifdef CONFIG_PROC_FS
6ab57e7e
DL
989proc_ac6_fail:
990 tcp6_proc_exit(net);
6f8b13bc
DL
991proc_tcp6_fail:
992 udp6_proc_exit(net);
e43291cb
DL
993out:
994 ipv6_cleanup_mibs(net);
995 return err;
6f8b13bc 996#endif
81c1c178
DL
997}
998
999static void inet6_net_exit(struct net *net)
1000{
0c96d8c5
DL
1001#ifdef CONFIG_PROC_FS
1002 udp6_proc_exit(net);
6f8b13bc 1003 tcp6_proc_exit(net);
6ab57e7e 1004 ac6_proc_exit(net);
0c96d8c5 1005#endif
e43291cb 1006 ipv6_cleanup_mibs(net);
81c1c178
DL
1007}
1008
1009static struct pernet_operations inet6_net_ops = {
1010 .init = inet6_net_init,
1011 .exit = inet6_net_exit,
1012};
1013
1da177e4
LT
1014static int __init inet6_init(void)
1015{
1016 struct sk_buff *dummy_skb;
1ab1457c 1017 struct list_head *r;
fe7ca2e1 1018 int err = 0;
1da177e4 1019
ef047f5e
YH
1020 BUILD_BUG_ON(sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb));
1021
fe7ca2e1
BH
1022 /* Register the socket-side information for inet6_create. */
1023 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
1024 INIT_LIST_HEAD(r);
1025
1026 if (disable_ipv6) {
1027 printk(KERN_INFO
1028 "IPv6: Loaded, but administratively disabled, "
1029 "reboot required to enable\n");
1030 goto out;
1031 }
1032
1da177e4
LT
1033 err = proto_register(&tcpv6_prot, 1);
1034 if (err)
1035 goto out;
1036
1037 err = proto_register(&udpv6_prot, 1);
1038 if (err)
1039 goto out_unregister_tcp_proto;
1040
ba4e58ec 1041 err = proto_register(&udplitev6_prot, 1);
1da177e4
LT
1042 if (err)
1043 goto out_unregister_udp_proto;
1044
ba4e58ec
GR
1045 err = proto_register(&rawv6_prot, 1);
1046 if (err)
1047 goto out_unregister_udplite_proto;
1048
1da177e4 1049
1da177e4
LT
1050 /* We MUST register RAW sockets before we create the ICMP6,
1051 * IGMP6, or NDISC control sockets.
1052 */
7f4e4868
DL
1053 err = rawv6_init();
1054 if (err)
1055 goto out_unregister_raw_proto;
1da177e4
LT
1056
1057 /* Register the family here so that the init calls below will
1058 * be able to create sockets. (?? is this dangerous ??)
1059 */
8eb55910
DM
1060 err = sock_register(&inet6_family_ops);
1061 if (err)
7f4e4868 1062 goto out_sock_register_fail;
1da177e4 1063
eeb61f71
AV
1064#ifdef CONFIG_SYSCTL
1065 err = ipv6_static_sysctl_register();
1066 if (err)
1067 goto static_sysctl_fail;
1068#endif
1da177e4
LT
1069 /*
1070 * ipngwg API draft makes clear that the correct semantics
1071 * for TCP and UDP is to consider one TCP and UDP instance
1072 * in a host availiable by both INET and INET6 APIs and
1073 * able to communicate via both network protocols.
1074 */
1075
81c1c178
DL
1076 err = register_pernet_subsys(&inet6_net_ops);
1077 if (err)
1078 goto register_pernet_fail;
9b0f976f 1079 err = icmpv6_init();
1da177e4
LT
1080 if (err)
1081 goto icmp_fail;
623d1a1a
WC
1082 err = ip6_mr_init();
1083 if (err)
1084 goto ipmr_fail;
9b0f976f 1085 err = ndisc_init();
1da177e4
LT
1086 if (err)
1087 goto ndisc_fail;
9b0f976f 1088 err = igmp6_init();
1da177e4
LT
1089 if (err)
1090 goto igmp_fail;
2cc7d573
HW
1091 err = ipv6_netfilter_init();
1092 if (err)
1093 goto netfilter_fail;
1da177e4
LT
1094 /* Create /proc/foo6 entries. */
1095#ifdef CONFIG_PROC_FS
1096 err = -ENOMEM;
1097 if (raw6_proc_init())
1098 goto proc_raw6_fail;
ba4e58ec
GR
1099 if (udplite6_proc_init())
1100 goto proc_udplite6_fail;
1da177e4
LT
1101 if (ipv6_misc_proc_init())
1102 goto proc_misc6_fail;
1da177e4
LT
1103 if (if6_proc_init())
1104 goto proc_if6_fail;
1105#endif
e2fddf5e
DL
1106 err = ip6_route_init();
1107 if (err)
1108 goto ip6_route_fail;
0a3e78ac
DL
1109 err = ip6_flowlabel_init();
1110 if (err)
1111 goto ip6_flowlabel_fail;
1da177e4
LT
1112 err = addrconf_init();
1113 if (err)
1114 goto addrconf_fail;
1da177e4
LT
1115
1116 /* Init v6 extension headers. */
248b238d
DL
1117 err = ipv6_exthdrs_init();
1118 if (err)
1119 goto ipv6_exthdrs_fail;
1120
853cbbaa
DL
1121 err = ipv6_frag_init();
1122 if (err)
1123 goto ipv6_frag_fail;
1da177e4
LT
1124
1125 /* Init v6 transport protocols. */
7f4e4868
DL
1126 err = udpv6_init();
1127 if (err)
1128 goto udpv6_fail;
e2ed4052 1129
7f4e4868
DL
1130 err = udplitev6_init();
1131 if (err)
1132 goto udplitev6_fail;
1133
1134 err = tcpv6_init();
1135 if (err)
1136 goto tcpv6_fail;
1137
1138 err = ipv6_packet_init();
1139 if (err)
1140 goto ipv6_packet_fail;
94911fe3
BT
1141
1142#ifdef CONFIG_SYSCTL
1143 err = ipv6_sysctl_register();
1144 if (err)
1145 goto sysctl_fail;
1146#endif
1da177e4
LT
1147out:
1148 return err;
1149
94911fe3
BT
1150#ifdef CONFIG_SYSCTL
1151sysctl_fail:
1152 ipv6_packet_cleanup();
1153#endif
7f4e4868
DL
1154ipv6_packet_fail:
1155 tcpv6_exit();
1156tcpv6_fail:
1157 udplitev6_exit();
1158udplitev6_fail:
1159 udpv6_exit();
1160udpv6_fail:
1161 ipv6_frag_exit();
853cbbaa
DL
1162ipv6_frag_fail:
1163 ipv6_exthdrs_exit();
248b238d
DL
1164ipv6_exthdrs_fail:
1165 addrconf_cleanup();
1da177e4
LT
1166addrconf_fail:
1167 ip6_flowlabel_cleanup();
0a3e78ac 1168ip6_flowlabel_fail:
1da177e4 1169 ip6_route_cleanup();
e2fddf5e 1170ip6_route_fail:
1da177e4
LT
1171#ifdef CONFIG_PROC_FS
1172 if6_proc_exit();
1173proc_if6_fail:
1da177e4
LT
1174 ipv6_misc_proc_exit();
1175proc_misc6_fail:
ba4e58ec
GR
1176 udplite6_proc_exit();
1177proc_udplite6_fail:
1da177e4
LT
1178 raw6_proc_exit();
1179proc_raw6_fail:
1180#endif
2cc7d573
HW
1181 ipv6_netfilter_fini();
1182netfilter_fail:
1da177e4
LT
1183 igmp6_cleanup();
1184igmp_fail:
1185 ndisc_cleanup();
1186ndisc_fail:
623d1a1a
WC
1187 ip6_mr_cleanup();
1188ipmr_fail:
1da177e4
LT
1189 icmpv6_cleanup();
1190icmp_fail:
81c1c178
DL
1191 unregister_pernet_subsys(&inet6_net_ops);
1192register_pernet_fail:
eeb61f71
AV
1193#ifdef CONFIG_SYSCTL
1194 ipv6_static_sysctl_unregister();
1195static_sysctl_fail:
1196#endif
8eb55910 1197 sock_unregister(PF_INET6);
e2fddf5e 1198 rtnl_unregister_all(PF_INET6);
7f4e4868
DL
1199out_sock_register_fail:
1200 rawv6_exit();
1da177e4
LT
1201out_unregister_raw_proto:
1202 proto_unregister(&rawv6_prot);
ba4e58ec
GR
1203out_unregister_udplite_proto:
1204 proto_unregister(&udplitev6_prot);
1da177e4
LT
1205out_unregister_udp_proto:
1206 proto_unregister(&udpv6_prot);
1207out_unregister_tcp_proto:
1208 proto_unregister(&tcpv6_prot);
1209 goto out;
1210}
1211module_init(inet6_init);
1212
1213static void __exit inet6_exit(void)
1214{
ff8cf9a9
JD
1215 if (disable_ipv6)
1216 return;
1217
1da177e4
LT
1218 /* First of all disallow new sockets creation. */
1219 sock_unregister(PF_INET6);
c127ea2c
TG
1220 /* Disallow any further netlink messages */
1221 rtnl_unregister_all(PF_INET6);
ca17c233 1222
94911fe3
BT
1223#ifdef CONFIG_SYSCTL
1224 ipv6_sysctl_unregister();
1225#endif
7f4e4868
DL
1226 udpv6_exit();
1227 udplitev6_exit();
1228 tcpv6_exit();
1229
ca17c233
JJ
1230 /* Cleanup code parts. */
1231 ipv6_packet_cleanup();
853cbbaa 1232 ipv6_frag_exit();
248b238d 1233 ipv6_exthdrs_exit();
ca17c233
JJ
1234 addrconf_cleanup();
1235 ip6_flowlabel_cleanup();
1236 ip6_route_cleanup();
1da177e4 1237#ifdef CONFIG_PROC_FS
ca17c233
JJ
1238
1239 /* Cleanup code parts. */
1da177e4 1240 if6_proc_exit();
1ab1457c 1241 ipv6_misc_proc_exit();
1ab1457c 1242 udplite6_proc_exit();
1ab1457c 1243 raw6_proc_exit();
2c8d7ca0 1244#endif
2cc7d573 1245 ipv6_netfilter_fini();
ca17c233 1246 igmp6_cleanup();
1da177e4 1247 ndisc_cleanup();
623d1a1a 1248 ip6_mr_cleanup();
1da177e4 1249 icmpv6_cleanup();
7f4e4868 1250 rawv6_exit();
94911fe3 1251
81c1c178 1252 unregister_pernet_subsys(&inet6_net_ops);
eeb61f71
AV
1253#ifdef CONFIG_SYSCTL
1254 ipv6_static_sysctl_unregister();
1255#endif
1da177e4 1256 proto_unregister(&rawv6_prot);
ca17c233 1257 proto_unregister(&udplitev6_prot);
1da177e4
LT
1258 proto_unregister(&udpv6_prot);
1259 proto_unregister(&tcpv6_prot);
1260}
1261module_exit(inet6_exit);
1262
1263MODULE_ALIAS_NETPROTO(PF_INET6);
This page took 0.744959 seconds and 5 git commands to generate.