]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv6/af_inet6.c
[IPV6]: Cache source address as well in ipv6_pinfo{}.
[net-next-2.6.git] / net / ipv6 / af_inet6.c
CommitLineData
1da177e4
LT
1/*
2 * PF_INET6 socket protocol family
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * Adapted from linux/net/ipv4/af_inet.c
9 *
10 * $Id: af_inet6.c,v 1.66 2002/02/01 22:01:04 davem Exp $
11 *
12 * Fixes:
13 * piggy, Karl Knutson : Socket protocol table
14 * Hideaki YOSHIFUJI : sin6_scope_id support
15 * Arnaldo Melo : check proc_net_create return, cleanups
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
23
24#include <linux/module.h>
4fc268d2 25#include <linux/capability.h>
1da177e4
LT
26#include <linux/errno.h>
27#include <linux/types.h>
28#include <linux/socket.h>
29#include <linux/in.h>
30#include <linux/kernel.h>
1da177e4
LT
31#include <linux/sched.h>
32#include <linux/timer.h>
33#include <linux/string.h>
34#include <linux/sockios.h>
35#include <linux/net.h>
36#include <linux/fcntl.h>
37#include <linux/mm.h>
38#include <linux/interrupt.h>
39#include <linux/proc_fs.h>
40#include <linux/stat.h>
41#include <linux/init.h>
42
43#include <linux/inet.h>
44#include <linux/netdevice.h>
45#include <linux/icmpv6.h>
46#include <linux/smp_lock.h>
2cc7d573 47#include <linux/netfilter_ipv6.h>
1da177e4
LT
48
49#include <net/ip.h>
50#include <net/ipv6.h>
51#include <net/udp.h>
52#include <net/tcp.h>
53#include <net/ipip.h>
54#include <net/protocol.h>
55#include <net/inet_common.h>
56#include <net/transp_v6.h>
57#include <net/ip6_route.h>
58#include <net/addrconf.h>
59#ifdef CONFIG_IPV6_TUNNEL
60#include <net/ip6_tunnel.h>
61#endif
62
63#include <asm/uaccess.h>
64#include <asm/system.h>
65
66MODULE_AUTHOR("Cast of dozens");
67MODULE_DESCRIPTION("IPv6 protocol stack for Linux");
68MODULE_LICENSE("GPL");
69
ab32ea5d 70int sysctl_ipv6_bindv6only __read_mostly;
1da177e4 71
1da177e4
LT
72/* The inetsw table contains everything that inet_create needs to
73 * build a new socket.
74 */
75static struct list_head inetsw6[SOCK_MAX];
76static DEFINE_SPINLOCK(inetsw6_lock);
77
1da177e4
LT
78static __inline__ struct ipv6_pinfo *inet6_sk_generic(struct sock *sk)
79{
80 const int offset = sk->sk_prot->obj_size - sizeof(struct ipv6_pinfo);
81
82 return (struct ipv6_pinfo *)(((u8 *)sk) + offset);
83}
84
85static int inet6_create(struct socket *sock, int protocol)
86{
87 struct inet_sock *inet;
88 struct ipv6_pinfo *np;
89 struct sock *sk;
90 struct list_head *p;
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
LT
97
98 /* Look for the requested type/protocol pair. */
99 answer = NULL;
af1afe86
YH
100lookup_protocol:
101 err = -ESOCKTNOSUPPORT;
1da177e4
LT
102 rcu_read_lock();
103 list_for_each_rcu(p, &inetsw6[sock->type]) {
104 answer = list_entry(p, struct inet_protosw, list);
105
106 /* Check the non-wild match. */
107 if (protocol == answer->protocol) {
108 if (protocol != IPPROTO_IP)
109 break;
110 } else {
111 /* Check for the two wild cases. */
112 if (IPPROTO_IP == protocol) {
113 protocol = answer->protocol;
114 break;
115 }
116 if (IPPROTO_IP == answer->protocol)
117 break;
118 }
af1afe86 119 err = -EPROTONOSUPPORT;
1da177e4
LT
120 answer = NULL;
121 }
122
af1afe86
YH
123 if (!answer) {
124 if (try_loading_module < 2) {
125 rcu_read_unlock();
126 /*
127 * Be more specific, e.g. net-pf-10-proto-132-type-1
128 * (net-pf-PF_INET6-proto-IPPROTO_SCTP-type-SOCK_STREAM)
129 */
130 if (++try_loading_module == 1)
131 request_module("net-pf-%d-proto-%d-type-%d",
132 PF_INET6, protocol, sock->type);
133 /*
134 * Fall back to generic, e.g. net-pf-10-proto-132
135 * (net-pf-PF_INET6-proto-IPPROTO_SCTP)
136 */
137 else
138 request_module("net-pf-%d-proto-%d",
139 PF_INET6, protocol);
140 goto lookup_protocol;
141 } else
142 goto out_rcu_unlock;
143 }
144
145 err = -EPERM;
1da177e4
LT
146 if (answer->capability > 0 && !capable(answer->capability))
147 goto out_rcu_unlock;
1da177e4
LT
148
149 sock->ops = answer->ops;
1da177e4
LT
150 answer_prot = answer->prot;
151 answer_no_check = answer->no_check;
152 answer_flags = answer->flags;
153 rcu_read_unlock();
154
155 BUG_TRAP(answer_prot->slab != NULL);
156
af1afe86 157 err = -ENOBUFS;
1da177e4
LT
158 sk = sk_alloc(PF_INET6, GFP_KERNEL, answer_prot, 1);
159 if (sk == NULL)
160 goto out;
161
162 sock_init_data(sock, sk);
163
af1afe86 164 err = 0;
1da177e4
LT
165 sk->sk_no_check = answer_no_check;
166 if (INET_PROTOSW_REUSE & answer_flags)
167 sk->sk_reuse = 1;
168
169 inet = inet_sk(sk);
d83d8461 170 inet->is_icsk = INET_PROTOSW_ICSK & answer_flags;
1da177e4
LT
171
172 if (SOCK_RAW == sock->type) {
173 inet->num = protocol;
174 if (IPPROTO_RAW == protocol)
175 inet->hdrincl = 1;
176 }
177
e6848976 178 sk->sk_destruct = inet_sock_destruct;
1da177e4
LT
179 sk->sk_family = PF_INET6;
180 sk->sk_protocol = protocol;
181
182 sk->sk_backlog_rcv = answer->prot->backlog_rcv;
183
184 inet_sk(sk)->pinet6 = np = inet6_sk_generic(sk);
185 np->hop_limit = -1;
186 np->mcast_hops = -1;
187 np->mc_loop = 1;
188 np->pmtudisc = IPV6_PMTUDISC_WANT;
189 np->ipv6only = sysctl_ipv6_bindv6only;
190
191 /* Init the ipv4 part of the socket since we can have sockets
192 * using v6 API for ipv4.
193 */
194 inet->uc_ttl = -1;
195
196 inet->mc_loop = 1;
197 inet->mc_ttl = 1;
198 inet->mc_index = 0;
199 inet->mc_list = NULL;
200
201 if (ipv4_config.no_pmtu_disc)
202 inet->pmtudisc = IP_PMTUDISC_DONT;
203 else
204 inet->pmtudisc = IP_PMTUDISC_WANT;
e6848976
ACM
205 /*
206 * Increment only the relevant sk_prot->socks debug field, this changes
207 * the previous behaviour of incrementing both the equivalent to
208 * answer->prot->socks (inet6_sock_nr) and inet_sock_nr.
209 *
210 * This allows better debug granularity as we'll know exactly how many
211 * UDPv6, TCPv6, etc socks were allocated, not the sum of all IPv6
212 * transport protocol socks. -acme
213 */
214 sk_refcnt_debug_inc(sk);
1da177e4 215
1da177e4
LT
216 if (inet->num) {
217 /* It assumes that any protocol which allows
218 * the user to assign a number at socket
219 * creation time automatically shares.
220 */
221 inet->sport = ntohs(inet->num);
222 sk->sk_prot->hash(sk);
223 }
224 if (sk->sk_prot->init) {
af1afe86
YH
225 err = sk->sk_prot->init(sk);
226 if (err) {
1da177e4
LT
227 sk_common_release(sk);
228 goto out;
229 }
230 }
231out:
af1afe86 232 return err;
1da177e4
LT
233out_rcu_unlock:
234 rcu_read_unlock();
235 goto out;
236}
237
238
239/* bind for INET6 API */
240int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
241{
242 struct sockaddr_in6 *addr=(struct sockaddr_in6 *)uaddr;
243 struct sock *sk = sock->sk;
244 struct inet_sock *inet = inet_sk(sk);
245 struct ipv6_pinfo *np = inet6_sk(sk);
246 __u32 v4addr = 0;
247 unsigned short snum;
248 int addr_type = 0;
249 int err = 0;
250
251 /* If the socket has its own bind function then use it. */
252 if (sk->sk_prot->bind)
253 return sk->sk_prot->bind(sk, uaddr, addr_len);
254
255 if (addr_len < SIN6_LEN_RFC2133)
256 return -EINVAL;
257 addr_type = ipv6_addr_type(&addr->sin6_addr);
258 if ((addr_type & IPV6_ADDR_MULTICAST) && sock->type == SOCK_STREAM)
259 return -EINVAL;
260
261 snum = ntohs(addr->sin6_port);
262 if (snum && snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
263 return -EACCES;
264
265 lock_sock(sk);
266
267 /* Check these errors (active socket, double bind). */
268 if (sk->sk_state != TCP_CLOSE || inet->num) {
269 err = -EINVAL;
270 goto out;
271 }
272
273 /* Check if the address belongs to the host. */
274 if (addr_type == IPV6_ADDR_MAPPED) {
275 v4addr = addr->sin6_addr.s6_addr32[3];
276 if (inet_addr_type(v4addr) != RTN_LOCAL) {
277 err = -EADDRNOTAVAIL;
278 goto out;
279 }
280 } else {
281 if (addr_type != IPV6_ADDR_ANY) {
282 struct net_device *dev = NULL;
283
284 if (addr_type & IPV6_ADDR_LINKLOCAL) {
285 if (addr_len >= sizeof(struct sockaddr_in6) &&
286 addr->sin6_scope_id) {
287 /* Override any existing binding, if another one
288 * is supplied by user.
289 */
290 sk->sk_bound_dev_if = addr->sin6_scope_id;
291 }
292
293 /* Binding to link-local address requires an interface */
294 if (!sk->sk_bound_dev_if) {
295 err = -EINVAL;
296 goto out;
297 }
298 dev = dev_get_by_index(sk->sk_bound_dev_if);
299 if (!dev) {
300 err = -ENODEV;
301 goto out;
302 }
303 }
304
305 /* ipv4 addr of the socket is invalid. Only the
306 * unspecified and mapped address have a v4 equivalent.
307 */
308 v4addr = LOOPBACK4_IPV6;
309 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
310 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
311 if (dev)
312 dev_put(dev);
313 err = -EADDRNOTAVAIL;
314 goto out;
315 }
316 }
317 if (dev)
318 dev_put(dev);
319 }
320 }
321
322 inet->rcv_saddr = v4addr;
323 inet->saddr = v4addr;
324
325 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
326
327 if (!(addr_type & IPV6_ADDR_MULTICAST))
328 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
329
330 /* Make sure we are allowed to bind here. */
331 if (sk->sk_prot->get_port(sk, snum)) {
332 inet_reset_saddr(sk);
333 err = -EADDRINUSE;
334 goto out;
335 }
336
337 if (addr_type != IPV6_ADDR_ANY)
338 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
339 if (snum)
340 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
341 inet->sport = ntohs(inet->num);
342 inet->dport = 0;
343 inet->daddr = 0;
344out:
345 release_sock(sk);
346 return err;
347}
348
349int inet6_release(struct socket *sock)
350{
351 struct sock *sk = sock->sk;
352
353 if (sk == NULL)
354 return -EINVAL;
355
356 /* Free mc lists */
357 ipv6_sock_mc_close(sk);
358
359 /* Free ac lists */
360 ipv6_sock_ac_close(sk);
361
362 return inet_release(sock);
363}
364
365int inet6_destroy_sock(struct sock *sk)
366{
367 struct ipv6_pinfo *np = inet6_sk(sk);
368 struct sk_buff *skb;
369 struct ipv6_txoptions *opt;
370
1da177e4
LT
371 /* Release rx options */
372
373 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
374 kfree_skb(skb);
375
376 /* Free flowlabels */
377 fl6_free_socklist(sk);
378
379 /* Free tx options */
380
381 if ((opt = xchg(&np->opt, NULL)) != NULL)
382 sock_kfree_s(sk, opt, opt->tot_len);
383
384 return 0;
385}
386
3cf3dc6c
ACM
387EXPORT_SYMBOL_GPL(inet6_destroy_sock);
388
1da177e4
LT
389/*
390 * This does both peername and sockname.
391 */
392
393int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
394 int *uaddr_len, int peer)
395{
396 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
397 struct sock *sk = sock->sk;
398 struct inet_sock *inet = inet_sk(sk);
399 struct ipv6_pinfo *np = inet6_sk(sk);
400
401 sin->sin6_family = AF_INET6;
402 sin->sin6_flowinfo = 0;
403 sin->sin6_scope_id = 0;
404 if (peer) {
405 if (!inet->dport)
406 return -ENOTCONN;
407 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
408 peer == 1)
409 return -ENOTCONN;
410 sin->sin6_port = inet->dport;
411 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
412 if (np->sndflow)
413 sin->sin6_flowinfo = np->flow_label;
414 } else {
415 if (ipv6_addr_any(&np->rcv_saddr))
416 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
417 else
418 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
419
420 sin->sin6_port = inet->sport;
421 }
422 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
423 sin->sin6_scope_id = sk->sk_bound_dev_if;
424 *uaddr_len = sizeof(*sin);
425 return(0);
426}
427
428int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
429{
430 struct sock *sk = sock->sk;
1da177e4
LT
431
432 switch(cmd)
433 {
434 case SIOCGSTAMP:
435 return sock_get_timestamp(sk, (struct timeval __user *)arg);
436
437 case SIOCADDRT:
438 case SIOCDELRT:
439
440 return(ipv6_route_ioctl(cmd,(void __user *)arg));
441
442 case SIOCSIFADDR:
443 return addrconf_add_ifaddr((void __user *) arg);
444 case SIOCDIFADDR:
445 return addrconf_del_ifaddr((void __user *) arg);
446 case SIOCSIFDSTADDR:
447 return addrconf_set_dstaddr((void __user *) arg);
448 default:
b5e5fa5e
CH
449 if (!sk->sk_prot->ioctl)
450 return -ENOIOCTLCMD;
451 return sk->sk_prot->ioctl(sk, cmd, arg);
1da177e4
LT
452 }
453 /*NOTREACHED*/
454 return(0);
455}
456
90ddc4f0 457const struct proto_ops inet6_stream_ops = {
543d9cfe
ACM
458 .family = PF_INET6,
459 .owner = THIS_MODULE,
460 .release = inet6_release,
461 .bind = inet6_bind,
462 .connect = inet_stream_connect, /* ok */
463 .socketpair = sock_no_socketpair, /* a do nothing */
464 .accept = inet_accept, /* ok */
465 .getname = inet6_getname,
466 .poll = tcp_poll, /* ok */
467 .ioctl = inet6_ioctl, /* must change */
468 .listen = inet_listen, /* ok */
469 .shutdown = inet_shutdown, /* ok */
470 .setsockopt = sock_common_setsockopt, /* ok */
471 .getsockopt = sock_common_getsockopt, /* ok */
472 .sendmsg = inet_sendmsg, /* ok */
473 .recvmsg = sock_common_recvmsg, /* ok */
474 .mmap = sock_no_mmap,
475 .sendpage = tcp_sendpage,
3fdadf7d 476#ifdef CONFIG_COMPAT
543d9cfe
ACM
477 .compat_setsockopt = compat_sock_common_setsockopt,
478 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 479#endif
1da177e4
LT
480};
481
90ddc4f0 482const struct proto_ops inet6_dgram_ops = {
543d9cfe
ACM
483 .family = PF_INET6,
484 .owner = THIS_MODULE,
485 .release = inet6_release,
486 .bind = inet6_bind,
487 .connect = inet_dgram_connect, /* ok */
488 .socketpair = sock_no_socketpair, /* a do nothing */
489 .accept = sock_no_accept, /* a do nothing */
490 .getname = inet6_getname,
491 .poll = udp_poll, /* ok */
492 .ioctl = inet6_ioctl, /* must change */
493 .listen = sock_no_listen, /* ok */
494 .shutdown = inet_shutdown, /* ok */
495 .setsockopt = sock_common_setsockopt, /* ok */
496 .getsockopt = sock_common_getsockopt, /* ok */
497 .sendmsg = inet_sendmsg, /* ok */
498 .recvmsg = sock_common_recvmsg, /* ok */
499 .mmap = sock_no_mmap,
500 .sendpage = sock_no_sendpage,
3fdadf7d 501#ifdef CONFIG_COMPAT
543d9cfe
ACM
502 .compat_setsockopt = compat_sock_common_setsockopt,
503 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 504#endif
1da177e4
LT
505};
506
507static struct net_proto_family inet6_family_ops = {
508 .family = PF_INET6,
509 .create = inet6_create,
510 .owner = THIS_MODULE,
511};
512
1da177e4 513/* Same as inet6_dgram_ops, sans udp_poll. */
90ddc4f0 514static const struct proto_ops inet6_sockraw_ops = {
543d9cfe
ACM
515 .family = PF_INET6,
516 .owner = THIS_MODULE,
517 .release = inet6_release,
518 .bind = inet6_bind,
519 .connect = inet_dgram_connect, /* ok */
520 .socketpair = sock_no_socketpair, /* a do nothing */
521 .accept = sock_no_accept, /* a do nothing */
522 .getname = inet6_getname,
523 .poll = datagram_poll, /* ok */
524 .ioctl = inet6_ioctl, /* must change */
525 .listen = sock_no_listen, /* ok */
526 .shutdown = inet_shutdown, /* ok */
527 .setsockopt = sock_common_setsockopt, /* ok */
528 .getsockopt = sock_common_getsockopt, /* ok */
529 .sendmsg = inet_sendmsg, /* ok */
530 .recvmsg = sock_common_recvmsg, /* ok */
531 .mmap = sock_no_mmap,
532 .sendpage = sock_no_sendpage,
3fdadf7d 533#ifdef CONFIG_COMPAT
543d9cfe
ACM
534 .compat_setsockopt = compat_sock_common_setsockopt,
535 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 536#endif
1da177e4
LT
537};
538
539static struct inet_protosw rawv6_protosw = {
540 .type = SOCK_RAW,
541 .protocol = IPPROTO_IP, /* wild card */
542 .prot = &rawv6_prot,
543 .ops = &inet6_sockraw_ops,
544 .capability = CAP_NET_RAW,
545 .no_check = UDP_CSUM_DEFAULT,
546 .flags = INET_PROTOSW_REUSE,
547};
548
549void
550inet6_register_protosw(struct inet_protosw *p)
551{
552 struct list_head *lh;
553 struct inet_protosw *answer;
554 int protocol = p->protocol;
555 struct list_head *last_perm;
556
557 spin_lock_bh(&inetsw6_lock);
558
559 if (p->type >= SOCK_MAX)
560 goto out_illegal;
561
562 /* If we are trying to override a permanent protocol, bail. */
563 answer = NULL;
564 last_perm = &inetsw6[p->type];
565 list_for_each(lh, &inetsw6[p->type]) {
566 answer = list_entry(lh, struct inet_protosw, list);
567
568 /* Check only the non-wild match. */
569 if (INET_PROTOSW_PERMANENT & answer->flags) {
570 if (protocol == answer->protocol)
571 break;
572 last_perm = lh;
573 }
574
575 answer = NULL;
576 }
577 if (answer)
578 goto out_permanent;
579
580 /* Add the new entry after the last permanent entry if any, so that
581 * the new entry does not override a permanent entry when matched with
582 * a wild-card protocol. But it is allowed to override any existing
583 * non-permanent entry. This means that when we remove this entry, the
584 * system automatically returns to the old behavior.
585 */
586 list_add_rcu(&p->list, last_perm);
587out:
588 spin_unlock_bh(&inetsw6_lock);
589 return;
590
591out_permanent:
592 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
593 protocol);
594 goto out;
595
596out_illegal:
597 printk(KERN_ERR
598 "Ignoring attempt to register invalid socket type %d.\n",
599 p->type);
600 goto out;
601}
602
603void
604inet6_unregister_protosw(struct inet_protosw *p)
605{
606 if (INET_PROTOSW_PERMANENT & p->flags) {
607 printk(KERN_ERR
608 "Attempt to unregister permanent protocol %d.\n",
609 p->protocol);
610 } else {
611 spin_lock_bh(&inetsw6_lock);
612 list_del_rcu(&p->list);
613 spin_unlock_bh(&inetsw6_lock);
614
615 synchronize_net();
616 }
617}
618
b9750ce1
ACM
619int inet6_sk_rebuild_header(struct sock *sk)
620{
621 int err;
622 struct dst_entry *dst;
623 struct ipv6_pinfo *np = inet6_sk(sk);
624
625 dst = __sk_dst_check(sk, np->dst_cookie);
626
627 if (dst == NULL) {
628 struct inet_sock *inet = inet_sk(sk);
629 struct in6_addr *final_p = NULL, final;
630 struct flowi fl;
631
632 memset(&fl, 0, sizeof(fl));
633 fl.proto = sk->sk_protocol;
634 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
635 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
636 fl.fl6_flowlabel = np->flow_label;
637 fl.oif = sk->sk_bound_dev_if;
638 fl.fl_ip_dport = inet->dport;
639 fl.fl_ip_sport = inet->sport;
beb8d13b 640 security_sk_classify_flow(sk, &fl);
b9750ce1
ACM
641
642 if (np->opt && np->opt->srcrt) {
643 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
644 ipv6_addr_copy(&final, &fl.fl6_dst);
645 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
646 final_p = &final;
647 }
648
649 err = ip6_dst_lookup(sk, &dst, &fl);
650 if (err) {
651 sk->sk_route_caps = 0;
652 return err;
653 }
654 if (final_p)
655 ipv6_addr_copy(&fl.fl6_dst, final_p);
656
657 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0) {
658 sk->sk_err_soft = -err;
659 return err;
660 }
661
8e1ef0a9 662 __ip6_dst_store(sk, dst, NULL, NULL);
b9750ce1
ACM
663 }
664
665 return 0;
666}
667
668EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
669
399c07de
ACM
670int ipv6_opt_accepted(struct sock *sk, struct sk_buff *skb)
671{
672 struct ipv6_pinfo *np = inet6_sk(sk);
673 struct inet6_skb_parm *opt = IP6CB(skb);
674
675 if (np->rxopt.all) {
676 if ((opt->hop && (np->rxopt.bits.hopopts ||
677 np->rxopt.bits.ohopopts)) ||
678 ((IPV6_FLOWINFO_MASK & *(u32*)skb->nh.raw) &&
679 np->rxopt.bits.rxflow) ||
680 (opt->srcrt && (np->rxopt.bits.srcrt ||
681 np->rxopt.bits.osrcrt)) ||
682 ((opt->dst1 || opt->dst0) &&
683 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
684 return 1;
685 }
686 return 0;
687}
688
689EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
690
1da177e4
LT
691int
692snmp6_mib_init(void *ptr[2], size_t mibsize, size_t mibalign)
693{
694 if (ptr == NULL)
695 return -EINVAL;
696
f9f75005 697 ptr[0] = __alloc_percpu(mibsize);
1da177e4
LT
698 if (!ptr[0])
699 goto err0;
700
f9f75005 701 ptr[1] = __alloc_percpu(mibsize);
1da177e4
LT
702 if (!ptr[1])
703 goto err1;
704
705 return 0;
706
707err1:
708 free_percpu(ptr[0]);
709 ptr[0] = NULL;
710err0:
711 return -ENOMEM;
712}
713
714void
715snmp6_mib_free(void *ptr[2])
716{
717 if (ptr == NULL)
718 return;
719 if (ptr[0])
720 free_percpu(ptr[0]);
721 if (ptr[1])
722 free_percpu(ptr[1]);
723 ptr[0] = ptr[1] = NULL;
724}
725
726static int __init init_ipv6_mibs(void)
727{
728 if (snmp6_mib_init((void **)ipv6_statistics, sizeof (struct ipstats_mib),
729 __alignof__(struct ipstats_mib)) < 0)
730 goto err_ip_mib;
731 if (snmp6_mib_init((void **)icmpv6_statistics, sizeof (struct icmpv6_mib),
732 __alignof__(struct icmpv6_mib)) < 0)
733 goto err_icmp_mib;
734 if (snmp6_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib),
735 __alignof__(struct udp_mib)) < 0)
736 goto err_udp_mib;
737 return 0;
738
739err_udp_mib:
740 snmp6_mib_free((void **)icmpv6_statistics);
741err_icmp_mib:
742 snmp6_mib_free((void **)ipv6_statistics);
743err_ip_mib:
744 return -ENOMEM;
745
746}
747
748static void cleanup_ipv6_mibs(void)
749{
750 snmp6_mib_free((void **)ipv6_statistics);
751 snmp6_mib_free((void **)icmpv6_statistics);
752 snmp6_mib_free((void **)udp_stats_in6);
753}
754
1da177e4
LT
755static int __init inet6_init(void)
756{
757 struct sk_buff *dummy_skb;
758 struct list_head *r;
759 int err;
760
761#ifdef MODULE
762#if 0 /* FIXME --RR */
763 if (!mod_member_present(&__this_module, can_unload))
764 return -EINVAL;
765
766 __this_module.can_unload = &ipv6_unload;
767#endif
768#endif
769
770 if (sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb)) {
771 printk(KERN_CRIT "inet6_proto_init: size fault\n");
772 return -EINVAL;
773 }
774
775 err = proto_register(&tcpv6_prot, 1);
776 if (err)
777 goto out;
778
779 err = proto_register(&udpv6_prot, 1);
780 if (err)
781 goto out_unregister_tcp_proto;
782
783 err = proto_register(&rawv6_prot, 1);
784 if (err)
785 goto out_unregister_udp_proto;
786
787
788 /* Register the socket-side information for inet6_create. */
789 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
790 INIT_LIST_HEAD(r);
791
792 /* We MUST register RAW sockets before we create the ICMP6,
793 * IGMP6, or NDISC control sockets.
794 */
795 inet6_register_protosw(&rawv6_protosw);
796
797 /* Register the family here so that the init calls below will
798 * be able to create sockets. (?? is this dangerous ??)
799 */
8eb55910
DM
800 err = sock_register(&inet6_family_ops);
801 if (err)
802 goto out_unregister_raw_proto;
1da177e4
LT
803
804 /* Initialise ipv6 mibs */
805 err = init_ipv6_mibs();
806 if (err)
8eb55910 807 goto out_unregister_sock;
1da177e4
LT
808
809 /*
810 * ipngwg API draft makes clear that the correct semantics
811 * for TCP and UDP is to consider one TCP and UDP instance
812 * in a host availiable by both INET and INET6 APIs and
813 * able to communicate via both network protocols.
814 */
815
816#ifdef CONFIG_SYSCTL
817 ipv6_sysctl_register();
818#endif
819 err = icmpv6_init(&inet6_family_ops);
820 if (err)
821 goto icmp_fail;
822 err = ndisc_init(&inet6_family_ops);
823 if (err)
824 goto ndisc_fail;
825 err = igmp6_init(&inet6_family_ops);
826 if (err)
827 goto igmp_fail;
2cc7d573
HW
828 err = ipv6_netfilter_init();
829 if (err)
830 goto netfilter_fail;
1da177e4
LT
831 /* Create /proc/foo6 entries. */
832#ifdef CONFIG_PROC_FS
833 err = -ENOMEM;
834 if (raw6_proc_init())
835 goto proc_raw6_fail;
836 if (tcp6_proc_init())
837 goto proc_tcp6_fail;
838 if (udp6_proc_init())
839 goto proc_udp6_fail;
840 if (ipv6_misc_proc_init())
841 goto proc_misc6_fail;
842
843 if (ac6_proc_init())
844 goto proc_anycast6_fail;
845 if (if6_proc_init())
846 goto proc_if6_fail;
847#endif
1da177e4
LT
848 ip6_route_init();
849 ip6_flowlabel_init();
850 err = addrconf_init();
851 if (err)
852 goto addrconf_fail;
853 sit_init();
854
855 /* Init v6 extension headers. */
856 ipv6_rthdr_init();
857 ipv6_frag_init();
858 ipv6_nodata_init();
859 ipv6_destopt_init();
860
861 /* Init v6 transport protocols. */
862 udpv6_init();
863 tcpv6_init();
e2ed4052
HX
864
865 ipv6_packet_init();
1da177e4
LT
866 err = 0;
867out:
868 return err;
869
870addrconf_fail:
871 ip6_flowlabel_cleanup();
872 ip6_route_cleanup();
1da177e4
LT
873#ifdef CONFIG_PROC_FS
874 if6_proc_exit();
875proc_if6_fail:
876 ac6_proc_exit();
877proc_anycast6_fail:
878 ipv6_misc_proc_exit();
879proc_misc6_fail:
880 udp6_proc_exit();
881proc_udp6_fail:
882 tcp6_proc_exit();
883proc_tcp6_fail:
884 raw6_proc_exit();
885proc_raw6_fail:
886#endif
2cc7d573
HW
887 ipv6_netfilter_fini();
888netfilter_fail:
1da177e4
LT
889 igmp6_cleanup();
890igmp_fail:
891 ndisc_cleanup();
892ndisc_fail:
893 icmpv6_cleanup();
894icmp_fail:
895#ifdef CONFIG_SYSCTL
896 ipv6_sysctl_unregister();
897#endif
898 cleanup_ipv6_mibs();
8eb55910
DM
899out_unregister_sock:
900 sock_unregister(PF_INET6);
1da177e4
LT
901out_unregister_raw_proto:
902 proto_unregister(&rawv6_prot);
903out_unregister_udp_proto:
904 proto_unregister(&udpv6_prot);
905out_unregister_tcp_proto:
906 proto_unregister(&tcpv6_prot);
907 goto out;
908}
909module_init(inet6_init);
910
911static void __exit inet6_exit(void)
912{
913 /* First of all disallow new sockets creation. */
914 sock_unregister(PF_INET6);
915#ifdef CONFIG_PROC_FS
916 if6_proc_exit();
917 ac6_proc_exit();
918 ipv6_misc_proc_exit();
919 udp6_proc_exit();
920 tcp6_proc_exit();
921 raw6_proc_exit();
922#endif
923 /* Cleanup code parts. */
924 sit_cleanup();
925 ip6_flowlabel_cleanup();
926 addrconf_cleanup();
927 ip6_route_cleanup();
928 ipv6_packet_cleanup();
929 igmp6_cleanup();
2cc7d573 930 ipv6_netfilter_fini();
1da177e4
LT
931 ndisc_cleanup();
932 icmpv6_cleanup();
933#ifdef CONFIG_SYSCTL
934 ipv6_sysctl_unregister();
935#endif
936 cleanup_ipv6_mibs();
937 proto_unregister(&rawv6_prot);
938 proto_unregister(&udpv6_prot);
939 proto_unregister(&tcpv6_prot);
940}
941module_exit(inet6_exit);
942
943MODULE_ALIAS_NETPROTO(PF_INET6);