blob: 7c9f19269f21a1a1684a4d1f17455564dd7f75d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
25#include <linux/config.h>
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#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>
Harald Welte2cc7d572005-08-09 19:42:34 -070047#include <linux/netfilter_ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070070int sysctl_ipv6_bindv6only;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static __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;
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -080095 int try_loading_module = 0;
96 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /* Look for the requested type/protocol pair. */
99 answer = NULL;
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800100lookup_protocol:
101 err = -ESOCKTNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 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 }
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800119 err = -EPROTONOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 answer = NULL;
121 }
122
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800123 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (answer->capability > 0 && !capable(answer->capability))
147 goto out_rcu_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 sock->ops = answer->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 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
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800157 err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 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
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800164 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 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);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800170 inet->is_icsk = INET_PROTOSW_ICSK & answer_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (SOCK_RAW == sock->type) {
173 inet->num = protocol;
174 if (IPPROTO_RAW == protocol)
175 inet->hdrincl = 1;
176 }
177
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700178 sk->sk_destruct = inet_sock_destruct;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 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;
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700205 /*
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 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) {
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800225 err = sk->sk_prot->init(sk);
226 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 sk_common_release(sk);
228 goto out;
229 }
230 }
231out:
YOSHIFUJI Hideakiaf1afe82005-12-02 20:56:57 -0800232 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233out_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
371 /*
372 * Release destination entry
373 */
374
375 sk_dst_reset(sk);
376
377 /* Release rx options */
378
379 if ((skb = xchg(&np->pktoptions, NULL)) != NULL)
380 kfree_skb(skb);
381
382 /* Free flowlabels */
383 fl6_free_socklist(sk);
384
385 /* Free tx options */
386
387 if ((opt = xchg(&np->opt, NULL)) != NULL)
388 sock_kfree_s(sk, opt, opt->tot_len);
389
390 return 0;
391}
392
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800393EXPORT_SYMBOL_GPL(inet6_destroy_sock);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/*
396 * This does both peername and sockname.
397 */
398
399int inet6_getname(struct socket *sock, struct sockaddr *uaddr,
400 int *uaddr_len, int peer)
401{
402 struct sockaddr_in6 *sin=(struct sockaddr_in6 *)uaddr;
403 struct sock *sk = sock->sk;
404 struct inet_sock *inet = inet_sk(sk);
405 struct ipv6_pinfo *np = inet6_sk(sk);
406
407 sin->sin6_family = AF_INET6;
408 sin->sin6_flowinfo = 0;
409 sin->sin6_scope_id = 0;
410 if (peer) {
411 if (!inet->dport)
412 return -ENOTCONN;
413 if (((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_SYN_SENT)) &&
414 peer == 1)
415 return -ENOTCONN;
416 sin->sin6_port = inet->dport;
417 ipv6_addr_copy(&sin->sin6_addr, &np->daddr);
418 if (np->sndflow)
419 sin->sin6_flowinfo = np->flow_label;
420 } else {
421 if (ipv6_addr_any(&np->rcv_saddr))
422 ipv6_addr_copy(&sin->sin6_addr, &np->saddr);
423 else
424 ipv6_addr_copy(&sin->sin6_addr, &np->rcv_saddr);
425
426 sin->sin6_port = inet->sport;
427 }
428 if (ipv6_addr_type(&sin->sin6_addr) & IPV6_ADDR_LINKLOCAL)
429 sin->sin6_scope_id = sk->sk_bound_dev_if;
430 *uaddr_len = sizeof(*sin);
431 return(0);
432}
433
434int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
435{
436 struct sock *sk = sock->sk;
437 int err = -EINVAL;
438
439 switch(cmd)
440 {
441 case SIOCGSTAMP:
442 return sock_get_timestamp(sk, (struct timeval __user *)arg);
443
444 case SIOCADDRT:
445 case SIOCDELRT:
446
447 return(ipv6_route_ioctl(cmd,(void __user *)arg));
448
449 case SIOCSIFADDR:
450 return addrconf_add_ifaddr((void __user *) arg);
451 case SIOCDIFADDR:
452 return addrconf_del_ifaddr((void __user *) arg);
453 case SIOCSIFDSTADDR:
454 return addrconf_set_dstaddr((void __user *) arg);
455 default:
456 if (!sk->sk_prot->ioctl ||
457 (err = sk->sk_prot->ioctl(sk, cmd, arg)) == -ENOIOCTLCMD)
458 return(dev_ioctl(cmd,(void __user *) arg));
459 return err;
460 }
461 /*NOTREACHED*/
462 return(0);
463}
464
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800465const struct proto_ops inet6_stream_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .family = PF_INET6,
467 .owner = THIS_MODULE,
468 .release = inet6_release,
469 .bind = inet6_bind,
470 .connect = inet_stream_connect, /* ok */
471 .socketpair = sock_no_socketpair, /* a do nothing */
472 .accept = inet_accept, /* ok */
473 .getname = inet6_getname,
474 .poll = tcp_poll, /* ok */
475 .ioctl = inet6_ioctl, /* must change */
476 .listen = inet_listen, /* ok */
477 .shutdown = inet_shutdown, /* ok */
478 .setsockopt = sock_common_setsockopt, /* ok */
479 .getsockopt = sock_common_getsockopt, /* ok */
480 .sendmsg = inet_sendmsg, /* ok */
481 .recvmsg = sock_common_recvmsg, /* ok */
482 .mmap = sock_no_mmap,
483 .sendpage = tcp_sendpage
484};
485
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800486const struct proto_ops inet6_dgram_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 .family = PF_INET6,
488 .owner = THIS_MODULE,
489 .release = inet6_release,
490 .bind = inet6_bind,
491 .connect = inet_dgram_connect, /* ok */
492 .socketpair = sock_no_socketpair, /* a do nothing */
493 .accept = sock_no_accept, /* a do nothing */
494 .getname = inet6_getname,
495 .poll = udp_poll, /* ok */
496 .ioctl = inet6_ioctl, /* must change */
497 .listen = sock_no_listen, /* ok */
498 .shutdown = inet_shutdown, /* ok */
499 .setsockopt = sock_common_setsockopt, /* ok */
500 .getsockopt = sock_common_getsockopt, /* ok */
501 .sendmsg = inet_sendmsg, /* ok */
502 .recvmsg = sock_common_recvmsg, /* ok */
503 .mmap = sock_no_mmap,
504 .sendpage = sock_no_sendpage,
505};
506
507static struct net_proto_family inet6_family_ops = {
508 .family = PF_INET6,
509 .create = inet6_create,
510 .owner = THIS_MODULE,
511};
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* Same as inet6_dgram_ops, sans udp_poll. */
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800514static const struct proto_ops inet6_sockraw_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 .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,
533};
534
535static struct inet_protosw rawv6_protosw = {
536 .type = SOCK_RAW,
537 .protocol = IPPROTO_IP, /* wild card */
538 .prot = &rawv6_prot,
539 .ops = &inet6_sockraw_ops,
540 .capability = CAP_NET_RAW,
541 .no_check = UDP_CSUM_DEFAULT,
542 .flags = INET_PROTOSW_REUSE,
543};
544
545void
546inet6_register_protosw(struct inet_protosw *p)
547{
548 struct list_head *lh;
549 struct inet_protosw *answer;
550 int protocol = p->protocol;
551 struct list_head *last_perm;
552
553 spin_lock_bh(&inetsw6_lock);
554
555 if (p->type >= SOCK_MAX)
556 goto out_illegal;
557
558 /* If we are trying to override a permanent protocol, bail. */
559 answer = NULL;
560 last_perm = &inetsw6[p->type];
561 list_for_each(lh, &inetsw6[p->type]) {
562 answer = list_entry(lh, struct inet_protosw, list);
563
564 /* Check only the non-wild match. */
565 if (INET_PROTOSW_PERMANENT & answer->flags) {
566 if (protocol == answer->protocol)
567 break;
568 last_perm = lh;
569 }
570
571 answer = NULL;
572 }
573 if (answer)
574 goto out_permanent;
575
576 /* Add the new entry after the last permanent entry if any, so that
577 * the new entry does not override a permanent entry when matched with
578 * a wild-card protocol. But it is allowed to override any existing
579 * non-permanent entry. This means that when we remove this entry, the
580 * system automatically returns to the old behavior.
581 */
582 list_add_rcu(&p->list, last_perm);
583out:
584 spin_unlock_bh(&inetsw6_lock);
585 return;
586
587out_permanent:
588 printk(KERN_ERR "Attempt to override permanent protocol %d.\n",
589 protocol);
590 goto out;
591
592out_illegal:
593 printk(KERN_ERR
594 "Ignoring attempt to register invalid socket type %d.\n",
595 p->type);
596 goto out;
597}
598
599void
600inet6_unregister_protosw(struct inet_protosw *p)
601{
602 if (INET_PROTOSW_PERMANENT & p->flags) {
603 printk(KERN_ERR
604 "Attempt to unregister permanent protocol %d.\n",
605 p->protocol);
606 } else {
607 spin_lock_bh(&inetsw6_lock);
608 list_del_rcu(&p->list);
609 spin_unlock_bh(&inetsw6_lock);
610
611 synchronize_net();
612 }
613}
614
Arnaldo Carvalho de Melob9750ce2005-12-13 23:22:54 -0800615int inet6_sk_rebuild_header(struct sock *sk)
616{
617 int err;
618 struct dst_entry *dst;
619 struct ipv6_pinfo *np = inet6_sk(sk);
620
621 dst = __sk_dst_check(sk, np->dst_cookie);
622
623 if (dst == NULL) {
624 struct inet_sock *inet = inet_sk(sk);
625 struct in6_addr *final_p = NULL, final;
626 struct flowi fl;
627
628 memset(&fl, 0, sizeof(fl));
629 fl.proto = sk->sk_protocol;
630 ipv6_addr_copy(&fl.fl6_dst, &np->daddr);
631 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
632 fl.fl6_flowlabel = np->flow_label;
633 fl.oif = sk->sk_bound_dev_if;
634 fl.fl_ip_dport = inet->dport;
635 fl.fl_ip_sport = inet->sport;
636
637 if (np->opt && np->opt->srcrt) {
638 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
639 ipv6_addr_copy(&final, &fl.fl6_dst);
640 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
641 final_p = &final;
642 }
643
644 err = ip6_dst_lookup(sk, &dst, &fl);
645 if (err) {
646 sk->sk_route_caps = 0;
647 return err;
648 }
649 if (final_p)
650 ipv6_addr_copy(&fl.fl6_dst, final_p);
651
652 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0) {
653 sk->sk_err_soft = -err;
654 return err;
655 }
656
657 ip6_dst_store(sk, dst, NULL);
658 sk->sk_route_caps = dst->dev->features &
659 ~(NETIF_F_IP_CSUM | NETIF_F_TSO);
660 }
661
662 return 0;
663}
664
665EXPORT_SYMBOL_GPL(inet6_sk_rebuild_header);
666
Arnaldo Carvalho de Melo399c07d2005-12-13 23:24:28 -0800667int 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)) ||
675 ((IPV6_FLOWINFO_MASK & *(u32*)skb->nh.raw) &&
676 np->rxopt.bits.rxflow) ||
677 (opt->srcrt && (np->rxopt.bits.srcrt ||
678 np->rxopt.bits.osrcrt)) ||
679 ((opt->dst1 || opt->dst0) &&
680 (np->rxopt.bits.dstopts || np->rxopt.bits.odstopts)))
681 return 1;
682 }
683 return 0;
684}
685
686EXPORT_SYMBOL_GPL(ipv6_opt_accepted);
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688int
689snmp6_mib_init(void *ptr[2], size_t mibsize, size_t mibalign)
690{
691 if (ptr == NULL)
692 return -EINVAL;
693
694 ptr[0] = __alloc_percpu(mibsize, mibalign);
695 if (!ptr[0])
696 goto err0;
697
698 ptr[1] = __alloc_percpu(mibsize, mibalign);
699 if (!ptr[1])
700 goto err1;
701
702 return 0;
703
704err1:
705 free_percpu(ptr[0]);
706 ptr[0] = NULL;
707err0:
708 return -ENOMEM;
709}
710
711void
712snmp6_mib_free(void *ptr[2])
713{
714 if (ptr == NULL)
715 return;
716 if (ptr[0])
717 free_percpu(ptr[0]);
718 if (ptr[1])
719 free_percpu(ptr[1]);
720 ptr[0] = ptr[1] = NULL;
721}
722
723static int __init init_ipv6_mibs(void)
724{
725 if (snmp6_mib_init((void **)ipv6_statistics, sizeof (struct ipstats_mib),
726 __alignof__(struct ipstats_mib)) < 0)
727 goto err_ip_mib;
728 if (snmp6_mib_init((void **)icmpv6_statistics, sizeof (struct icmpv6_mib),
729 __alignof__(struct icmpv6_mib)) < 0)
730 goto err_icmp_mib;
731 if (snmp6_mib_init((void **)udp_stats_in6, sizeof (struct udp_mib),
732 __alignof__(struct udp_mib)) < 0)
733 goto err_udp_mib;
734 return 0;
735
736err_udp_mib:
737 snmp6_mib_free((void **)icmpv6_statistics);
738err_icmp_mib:
739 snmp6_mib_free((void **)ipv6_statistics);
740err_ip_mib:
741 return -ENOMEM;
742
743}
744
745static void cleanup_ipv6_mibs(void)
746{
747 snmp6_mib_free((void **)ipv6_statistics);
748 snmp6_mib_free((void **)icmpv6_statistics);
749 snmp6_mib_free((void **)udp_stats_in6);
750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752static int __init inet6_init(void)
753{
754 struct sk_buff *dummy_skb;
755 struct list_head *r;
756 int err;
757
758#ifdef MODULE
759#if 0 /* FIXME --RR */
760 if (!mod_member_present(&__this_module, can_unload))
761 return -EINVAL;
762
763 __this_module.can_unload = &ipv6_unload;
764#endif
765#endif
766
767 if (sizeof(struct inet6_skb_parm) > sizeof(dummy_skb->cb)) {
768 printk(KERN_CRIT "inet6_proto_init: size fault\n");
769 return -EINVAL;
770 }
771
772 err = proto_register(&tcpv6_prot, 1);
773 if (err)
774 goto out;
775
776 err = proto_register(&udpv6_prot, 1);
777 if (err)
778 goto out_unregister_tcp_proto;
779
780 err = proto_register(&rawv6_prot, 1);
781 if (err)
782 goto out_unregister_udp_proto;
783
784
785 /* Register the socket-side information for inet6_create. */
786 for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r)
787 INIT_LIST_HEAD(r);
788
789 /* We MUST register RAW sockets before we create the ICMP6,
790 * IGMP6, or NDISC control sockets.
791 */
792 inet6_register_protosw(&rawv6_protosw);
793
794 /* Register the family here so that the init calls below will
795 * be able to create sockets. (?? is this dangerous ??)
796 */
David S. Miller8eb55912005-11-11 15:05:47 -0800797 err = sock_register(&inet6_family_ops);
798 if (err)
799 goto out_unregister_raw_proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* Initialise ipv6 mibs */
802 err = init_ipv6_mibs();
803 if (err)
David S. Miller8eb55912005-11-11 15:05:47 -0800804 goto out_unregister_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /*
807 * ipngwg API draft makes clear that the correct semantics
808 * for TCP and UDP is to consider one TCP and UDP instance
809 * in a host availiable by both INET and INET6 APIs and
810 * able to communicate via both network protocols.
811 */
812
813#ifdef CONFIG_SYSCTL
814 ipv6_sysctl_register();
815#endif
816 err = icmpv6_init(&inet6_family_ops);
817 if (err)
818 goto icmp_fail;
819 err = ndisc_init(&inet6_family_ops);
820 if (err)
821 goto ndisc_fail;
822 err = igmp6_init(&inet6_family_ops);
823 if (err)
824 goto igmp_fail;
Harald Welte2cc7d572005-08-09 19:42:34 -0700825 err = ipv6_netfilter_init();
826 if (err)
827 goto netfilter_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* Create /proc/foo6 entries. */
829#ifdef CONFIG_PROC_FS
830 err = -ENOMEM;
831 if (raw6_proc_init())
832 goto proc_raw6_fail;
833 if (tcp6_proc_init())
834 goto proc_tcp6_fail;
835 if (udp6_proc_init())
836 goto proc_udp6_fail;
837 if (ipv6_misc_proc_init())
838 goto proc_misc6_fail;
839
840 if (ac6_proc_init())
841 goto proc_anycast6_fail;
842 if (if6_proc_init())
843 goto proc_if6_fail;
844#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 ip6_route_init();
846 ip6_flowlabel_init();
847 err = addrconf_init();
848 if (err)
849 goto addrconf_fail;
850 sit_init();
851
852 /* Init v6 extension headers. */
853 ipv6_rthdr_init();
854 ipv6_frag_init();
855 ipv6_nodata_init();
856 ipv6_destopt_init();
857
858 /* Init v6 transport protocols. */
859 udpv6_init();
860 tcpv6_init();
Herbert Xue2ed4052005-07-05 14:41:20 -0700861
862 ipv6_packet_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 err = 0;
864out:
865 return err;
866
867addrconf_fail:
868 ip6_flowlabel_cleanup();
869 ip6_route_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870#ifdef CONFIG_PROC_FS
871 if6_proc_exit();
872proc_if6_fail:
873 ac6_proc_exit();
874proc_anycast6_fail:
875 ipv6_misc_proc_exit();
876proc_misc6_fail:
877 udp6_proc_exit();
878proc_udp6_fail:
879 tcp6_proc_exit();
880proc_tcp6_fail:
881 raw6_proc_exit();
882proc_raw6_fail:
883#endif
Harald Welte2cc7d572005-08-09 19:42:34 -0700884 ipv6_netfilter_fini();
885netfilter_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 igmp6_cleanup();
887igmp_fail:
888 ndisc_cleanup();
889ndisc_fail:
890 icmpv6_cleanup();
891icmp_fail:
892#ifdef CONFIG_SYSCTL
893 ipv6_sysctl_unregister();
894#endif
895 cleanup_ipv6_mibs();
David S. Miller8eb55912005-11-11 15:05:47 -0800896out_unregister_sock:
897 sock_unregister(PF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898out_unregister_raw_proto:
899 proto_unregister(&rawv6_prot);
900out_unregister_udp_proto:
901 proto_unregister(&udpv6_prot);
902out_unregister_tcp_proto:
903 proto_unregister(&tcpv6_prot);
904 goto out;
905}
906module_init(inet6_init);
907
908static void __exit inet6_exit(void)
909{
910 /* First of all disallow new sockets creation. */
911 sock_unregister(PF_INET6);
912#ifdef CONFIG_PROC_FS
913 if6_proc_exit();
914 ac6_proc_exit();
915 ipv6_misc_proc_exit();
916 udp6_proc_exit();
917 tcp6_proc_exit();
918 raw6_proc_exit();
919#endif
920 /* Cleanup code parts. */
921 sit_cleanup();
922 ip6_flowlabel_cleanup();
923 addrconf_cleanup();
924 ip6_route_cleanup();
925 ipv6_packet_cleanup();
926 igmp6_cleanup();
Harald Welte2cc7d572005-08-09 19:42:34 -0700927 ipv6_netfilter_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 ndisc_cleanup();
929 icmpv6_cleanup();
930#ifdef CONFIG_SYSCTL
931 ipv6_sysctl_unregister();
932#endif
933 cleanup_ipv6_mibs();
934 proto_unregister(&rawv6_prot);
935 proto_unregister(&udpv6_prot);
936 proto_unregister(&tcpv6_prot);
937}
938module_exit(inet6_exit);
939
940MODULE_ALIAS_NETPROTO(PF_INET6);