[IPV6] MIP6: Add receiving mobility header functions through raw socket.
[safe/jmp/linux-2.6] / net / ipv6 / raw.c
1 /*
2  *      RAW sockets for IPv6
3  *      Linux INET6 implementation 
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>     
7  *
8  *      Adapted from linux/net/ipv4/raw.c
9  *
10  *      $Id: raw.c,v 1.51 2002/02/01 22:01:04 davem Exp $
11  *
12  *      Fixes:
13  *      Hideaki YOSHIFUJI       :       sin6_scope_id support
14  *      YOSHIFUJI,H.@USAGI      :       raw checksum (RFC2292(bis) compliance) 
15  *      Kazunori MIYAZAWA @USAGI:       change process style to use ip6_append_data
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 #include <linux/errno.h>
24 #include <linux/types.h>
25 #include <linux/socket.h>
26 #include <linux/sockios.h>
27 #include <linux/sched.h>
28 #include <linux/net.h>
29 #include <linux/in6.h>
30 #include <linux/netdevice.h>
31 #include <linux/if_arp.h>
32 #include <linux/icmpv6.h>
33 #include <linux/netfilter.h>
34 #include <linux/netfilter_ipv6.h>
35 #include <linux/skbuff.h>
36 #include <asm/uaccess.h>
37 #include <asm/ioctls.h>
38
39 #include <net/ip.h>
40 #include <net/sock.h>
41 #include <net/snmp.h>
42
43 #include <net/ipv6.h>
44 #include <net/ndisc.h>
45 #include <net/protocol.h>
46 #include <net/ip6_route.h>
47 #include <net/ip6_checksum.h>
48 #include <net/addrconf.h>
49 #include <net/transp_v6.h>
50 #include <net/udp.h>
51 #include <net/inet_common.h>
52 #include <net/tcp_states.h>
53 #ifdef CONFIG_IPV6_MIP6
54 #include <net/mip6.h>
55 #endif
56
57 #include <net/rawv6.h>
58 #include <net/xfrm.h>
59
60 #include <linux/proc_fs.h>
61 #include <linux/seq_file.h>
62
63 struct hlist_head raw_v6_htable[RAWV6_HTABLE_SIZE];
64 DEFINE_RWLOCK(raw_v6_lock);
65
66 static void raw_v6_hash(struct sock *sk)
67 {
68         struct hlist_head *list = &raw_v6_htable[inet_sk(sk)->num &
69                                                  (RAWV6_HTABLE_SIZE - 1)];
70
71         write_lock_bh(&raw_v6_lock);
72         sk_add_node(sk, list);
73         sock_prot_inc_use(sk->sk_prot);
74         write_unlock_bh(&raw_v6_lock);
75 }
76
77 static void raw_v6_unhash(struct sock *sk)
78 {
79         write_lock_bh(&raw_v6_lock);
80         if (sk_del_node_init(sk))
81                 sock_prot_dec_use(sk->sk_prot);
82         write_unlock_bh(&raw_v6_lock);
83 }
84
85
86 /* Grumble... icmp and ip_input want to get at this... */
87 struct sock *__raw_v6_lookup(struct sock *sk, unsigned short num,
88                              struct in6_addr *loc_addr, struct in6_addr *rmt_addr,
89                              int dif)
90 {
91         struct hlist_node *node;
92         int is_multicast = ipv6_addr_is_multicast(loc_addr);
93
94         sk_for_each_from(sk, node)
95                 if (inet_sk(sk)->num == num) {
96                         struct ipv6_pinfo *np = inet6_sk(sk);
97
98                         if (!ipv6_addr_any(&np->daddr) &&
99                             !ipv6_addr_equal(&np->daddr, rmt_addr))
100                                 continue;
101
102                         if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
103                                 continue;
104
105                         if (!ipv6_addr_any(&np->rcv_saddr)) {
106                                 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
107                                         goto found;
108                                 if (is_multicast &&
109                                     inet6_mc_check(sk, loc_addr, rmt_addr))
110                                         goto found;
111                                 continue;
112                         }
113                         goto found;
114                 }
115         sk = NULL;
116 found:
117         return sk;
118 }
119
120 /*
121  *      0 - deliver
122  *      1 - block
123  */
124 static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
125 {
126         struct icmp6hdr *icmph;
127         struct raw6_sock *rp = raw6_sk(sk);
128
129         if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
130                 __u32 *data = &rp->filter.data[0];
131                 int bit_nr;
132
133                 icmph = (struct icmp6hdr *) skb->data;
134                 bit_nr = icmph->icmp6_type;
135
136                 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
137         }
138         return 0;
139 }
140
141 /*
142  *      demultiplex raw sockets.
143  *      (should consider queueing the skb in the sock receive_queue
144  *      without calling rawv6.c)
145  *
146  *      Caller owns SKB so we must make clones.
147  */
148 int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
149 {
150         struct in6_addr *saddr;
151         struct in6_addr *daddr;
152         struct sock *sk;
153         int delivered = 0;
154         __u8 hash;
155
156         saddr = &skb->nh.ipv6h->saddr;
157         daddr = saddr + 1;
158
159         hash = nexthdr & (MAX_INET_PROTOS - 1);
160
161         read_lock(&raw_v6_lock);
162         sk = sk_head(&raw_v6_htable[hash]);
163
164         /*
165          *      The first socket found will be delivered after
166          *      delivery to transport protocols.
167          */
168
169         if (sk == NULL)
170                 goto out;
171
172         sk = __raw_v6_lookup(sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
173
174         while (sk) {
175                 int filtered;
176
177                 delivered = 1;
178                 switch (nexthdr) {
179                 case IPPROTO_ICMPV6:
180                         filtered = icmpv6_filter(sk, skb);
181                         break;
182 #ifdef CONFIG_IPV6_MIP6
183                 case IPPROTO_MH:
184                         /* XXX: To validate MH only once for each packet,
185                          * this is placed here. It should be after checking
186                          * xfrm policy, however it doesn't. The checking xfrm
187                          * policy is placed in rawv6_rcv() because it is
188                          * required for each socket.
189                          */
190                         filtered = mip6_mh_filter(sk, skb);
191                         break;
192 #endif
193                 default:
194                         filtered = 0;
195                         break;
196                 }
197
198                 if (filtered < 0)
199                         break;
200                 if (filtered == 0) {
201                         struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
202
203                         /* Not releasing hash table! */
204                         if (clone) {
205                                 nf_reset(clone);
206                                 rawv6_rcv(sk, clone);
207                         }
208                 }
209                 sk = __raw_v6_lookup(sk_next(sk), nexthdr, daddr, saddr,
210                                      IP6CB(skb)->iif);
211         }
212 out:
213         read_unlock(&raw_v6_lock);
214         return delivered;
215 }
216
217 /* This cleans up af_inet6 a bit. -DaveM */
218 static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
219 {
220         struct inet_sock *inet = inet_sk(sk);
221         struct ipv6_pinfo *np = inet6_sk(sk);
222         struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
223         __u32 v4addr = 0;
224         int addr_type;
225         int err;
226
227         if (addr_len < SIN6_LEN_RFC2133)
228                 return -EINVAL;
229         addr_type = ipv6_addr_type(&addr->sin6_addr);
230
231         /* Raw sockets are IPv6 only */
232         if (addr_type == IPV6_ADDR_MAPPED)
233                 return(-EADDRNOTAVAIL);
234
235         lock_sock(sk);
236
237         err = -EINVAL;
238         if (sk->sk_state != TCP_CLOSE)
239                 goto out;
240
241         /* Check if the address belongs to the host. */
242         if (addr_type != IPV6_ADDR_ANY) {
243                 struct net_device *dev = NULL;
244
245                 if (addr_type & IPV6_ADDR_LINKLOCAL) {
246                         if (addr_len >= sizeof(struct sockaddr_in6) &&
247                             addr->sin6_scope_id) {
248                                 /* Override any existing binding, if another
249                                  * one is supplied by user.
250                                  */
251                                 sk->sk_bound_dev_if = addr->sin6_scope_id;
252                         }
253                         
254                         /* Binding to link-local address requires an interface */
255                         if (!sk->sk_bound_dev_if)
256                                 goto out;
257
258                         dev = dev_get_by_index(sk->sk_bound_dev_if);
259                         if (!dev) {
260                                 err = -ENODEV;
261                                 goto out;
262                         }
263                 }
264                 
265                 /* ipv4 addr of the socket is invalid.  Only the
266                  * unspecified and mapped address have a v4 equivalent.
267                  */
268                 v4addr = LOOPBACK4_IPV6;
269                 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
270                         err = -EADDRNOTAVAIL;
271                         if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
272                                 if (dev)
273                                         dev_put(dev);
274                                 goto out;
275                         }
276                 }
277                 if (dev)
278                         dev_put(dev);
279         }
280
281         inet->rcv_saddr = inet->saddr = v4addr;
282         ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
283         if (!(addr_type & IPV6_ADDR_MULTICAST))
284                 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
285         err = 0;
286 out:
287         release_sock(sk);
288         return err;
289 }
290
291 void rawv6_err(struct sock *sk, struct sk_buff *skb,
292                struct inet6_skb_parm *opt,
293                int type, int code, int offset, u32 info)
294 {
295         struct inet_sock *inet = inet_sk(sk);
296         struct ipv6_pinfo *np = inet6_sk(sk);
297         int err;
298         int harderr;
299
300         /* Report error on raw socket, if:
301            1. User requested recverr.
302            2. Socket is connected (otherwise the error indication
303               is useless without recverr and error is hard.
304          */
305         if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
306                 return;
307
308         harderr = icmpv6_err_convert(type, code, &err);
309         if (type == ICMPV6_PKT_TOOBIG)
310                 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
311
312         if (np->recverr) {
313                 u8 *payload = skb->data;
314                 if (!inet->hdrincl)
315                         payload += offset;
316                 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
317         }
318
319         if (np->recverr || harderr) {
320                 sk->sk_err = err;
321                 sk->sk_error_report(sk);
322         }
323 }
324
325 static inline int rawv6_rcv_skb(struct sock * sk, struct sk_buff * skb)
326 {
327         if ((raw6_sk(sk)->checksum || sk->sk_filter) && 
328             skb_checksum_complete(skb)) {
329                 /* FIXME: increment a raw6 drops counter here */
330                 kfree_skb(skb);
331                 return 0;
332         }
333
334         /* Charge it to the socket. */
335         if (sock_queue_rcv_skb(sk,skb)<0) {
336                 /* FIXME: increment a raw6 drops counter here */
337                 kfree_skb(skb);
338                 return 0;
339         }
340
341         return 0;
342 }
343
344 /*
345  *      This is next to useless... 
346  *      if we demultiplex in network layer we don't need the extra call
347  *      just to queue the skb... 
348  *      maybe we could have the network decide upon a hint if it 
349  *      should call raw_rcv for demultiplexing
350  */
351 int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
352 {
353         struct inet_sock *inet = inet_sk(sk);
354         struct raw6_sock *rp = raw6_sk(sk);
355
356         if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
357                 kfree_skb(skb);
358                 return NET_RX_DROP;
359         }
360
361         if (!rp->checksum)
362                 skb->ip_summed = CHECKSUM_UNNECESSARY;
363
364         if (skb->ip_summed == CHECKSUM_COMPLETE) {
365                 skb_postpull_rcsum(skb, skb->nh.raw,
366                                    skb->h.raw - skb->nh.raw);
367                 if (!csum_ipv6_magic(&skb->nh.ipv6h->saddr,
368                                      &skb->nh.ipv6h->daddr,
369                                      skb->len, inet->num, skb->csum))
370                         skb->ip_summed = CHECKSUM_UNNECESSARY;
371         }
372         if (skb->ip_summed != CHECKSUM_UNNECESSARY)
373                 skb->csum = ~csum_ipv6_magic(&skb->nh.ipv6h->saddr,
374                                              &skb->nh.ipv6h->daddr,
375                                              skb->len, inet->num, 0);
376
377         if (inet->hdrincl) {
378                 if (skb_checksum_complete(skb)) {
379                         /* FIXME: increment a raw6 drops counter here */
380                         kfree_skb(skb);
381                         return 0;
382                 }
383         }
384
385         rawv6_rcv_skb(sk, skb);
386         return 0;
387 }
388
389
390 /*
391  *      This should be easy, if there is something there
392  *      we return it, otherwise we block.
393  */
394
395 static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
396                   struct msghdr *msg, size_t len,
397                   int noblock, int flags, int *addr_len)
398 {
399         struct ipv6_pinfo *np = inet6_sk(sk);
400         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
401         struct sk_buff *skb;
402         size_t copied;
403         int err;
404
405         if (flags & MSG_OOB)
406                 return -EOPNOTSUPP;
407                 
408         if (addr_len) 
409                 *addr_len=sizeof(*sin6);
410
411         if (flags & MSG_ERRQUEUE)
412                 return ipv6_recv_error(sk, msg, len);
413
414         skb = skb_recv_datagram(sk, flags, noblock, &err);
415         if (!skb)
416                 goto out;
417
418         copied = skb->len;
419         if (copied > len) {
420                 copied = len;
421                 msg->msg_flags |= MSG_TRUNC;
422         }
423
424         if (skb->ip_summed==CHECKSUM_UNNECESSARY) {
425                 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
426         } else if (msg->msg_flags&MSG_TRUNC) {
427                 if (__skb_checksum_complete(skb))
428                         goto csum_copy_err;
429                 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
430         } else {
431                 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
432                 if (err == -EINVAL)
433                         goto csum_copy_err;
434         }
435         if (err)
436                 goto out_free;
437
438         /* Copy the address. */
439         if (sin6) {
440                 sin6->sin6_family = AF_INET6;
441                 sin6->sin6_port = 0;
442                 ipv6_addr_copy(&sin6->sin6_addr, &skb->nh.ipv6h->saddr);
443                 sin6->sin6_flowinfo = 0;
444                 sin6->sin6_scope_id = 0;
445                 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
446                         sin6->sin6_scope_id = IP6CB(skb)->iif;
447         }
448
449         sock_recv_timestamp(msg, sk, skb);
450
451         if (np->rxopt.all)
452                 datagram_recv_ctl(sk, msg, skb);
453
454         err = copied;
455         if (flags & MSG_TRUNC)
456                 err = skb->len;
457
458 out_free:
459         skb_free_datagram(sk, skb);
460 out:
461         return err;
462
463 csum_copy_err:
464         skb_kill_datagram(sk, skb, flags);
465
466         /* Error for blocking case is chosen to masquerade
467            as some normal condition.
468          */
469         err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
470         /* FIXME: increment a raw6 drops counter here */
471         goto out;
472 }
473
474 static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
475                                      struct raw6_sock *rp)
476 {
477         struct sk_buff *skb;
478         int err = 0;
479         int offset;
480         int len;
481         int total_len;
482         u32 tmp_csum;
483         u16 csum;
484
485         if (!rp->checksum)
486                 goto send;
487
488         if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
489                 goto out;
490
491         offset = rp->offset;
492         total_len = inet_sk(sk)->cork.length - (skb->nh.raw - skb->data);
493         if (offset >= total_len - 1) {
494                 err = -EINVAL;
495                 ip6_flush_pending_frames(sk);
496                 goto out;
497         }
498
499         /* should be check HW csum miyazawa */
500         if (skb_queue_len(&sk->sk_write_queue) == 1) {
501                 /*
502                  * Only one fragment on the socket.
503                  */
504                 tmp_csum = skb->csum;
505         } else {
506                 struct sk_buff *csum_skb = NULL;
507                 tmp_csum = 0;
508
509                 skb_queue_walk(&sk->sk_write_queue, skb) {
510                         tmp_csum = csum_add(tmp_csum, skb->csum);
511
512                         if (csum_skb)
513                                 continue;
514
515                         len = skb->len - (skb->h.raw - skb->data);
516                         if (offset >= len) {
517                                 offset -= len;
518                                 continue;
519                         }
520
521                         csum_skb = skb;
522                 }
523
524                 skb = csum_skb;
525         }
526
527         offset += skb->h.raw - skb->data;
528         if (skb_copy_bits(skb, offset, &csum, 2))
529                 BUG();
530
531         /* in case cksum was not initialized */
532         if (unlikely(csum))
533                 tmp_csum = csum_sub(tmp_csum, csum);
534
535         tmp_csum = csum_ipv6_magic(&fl->fl6_src,
536                                    &fl->fl6_dst,
537                                    total_len, fl->proto, tmp_csum);
538
539         if (tmp_csum == 0)
540                 tmp_csum = -1;
541
542         csum = tmp_csum;
543         if (skb_store_bits(skb, offset, &csum, 2))
544                 BUG();
545
546 send:
547         err = ip6_push_pending_frames(sk);
548 out:
549         return err;
550 }
551
552 static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
553                         struct flowi *fl, struct rt6_info *rt, 
554                         unsigned int flags)
555 {
556         struct ipv6_pinfo *np = inet6_sk(sk);
557         struct ipv6hdr *iph;
558         struct sk_buff *skb;
559         unsigned int hh_len;
560         int err;
561
562         if (length > rt->u.dst.dev->mtu) {
563                 ipv6_local_error(sk, EMSGSIZE, fl, rt->u.dst.dev->mtu);
564                 return -EMSGSIZE;
565         }
566         if (flags&MSG_PROBE)
567                 goto out;
568
569         hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
570
571         skb = sock_alloc_send_skb(sk, length+hh_len+15,
572                                   flags&MSG_DONTWAIT, &err);
573         if (skb == NULL)
574                 goto error; 
575         skb_reserve(skb, hh_len);
576
577         skb->priority = sk->sk_priority;
578         skb->dst = dst_clone(&rt->u.dst);
579
580         skb->nh.ipv6h = iph = (struct ipv6hdr *)skb_put(skb, length);
581
582         skb->ip_summed = CHECKSUM_NONE;
583
584         skb->h.raw = skb->nh.raw;
585         err = memcpy_fromiovecend((void *)iph, from, 0, length);
586         if (err)
587                 goto error_fault;
588
589         IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);         
590         err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
591                       dst_output);
592         if (err > 0)
593                 err = np->recverr ? net_xmit_errno(err) : 0;
594         if (err)
595                 goto error;
596 out:
597         return 0;
598
599 error_fault:
600         err = -EFAULT;
601         kfree_skb(skb);
602 error:
603         IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
604         return err; 
605 }
606
607 static void rawv6_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
608 {
609         struct iovec *iov;
610         u8 __user *type = NULL;
611         u8 __user *code = NULL;
612         int probed = 0;
613         int i;
614
615         if (!msg->msg_iov)
616                 return;
617
618         for (i = 0; i < msg->msg_iovlen; i++) {
619                 iov = &msg->msg_iov[i];
620                 if (!iov)
621                         continue;
622
623                 switch (fl->proto) {
624                 case IPPROTO_ICMPV6:
625                         /* check if one-byte field is readable or not. */
626                         if (iov->iov_base && iov->iov_len < 1)
627                                 break;
628
629                         if (!type) {
630                                 type = iov->iov_base;
631                                 /* check if code field is readable or not. */
632                                 if (iov->iov_len > 1)
633                                         code = type + 1;
634                         } else if (!code)
635                                 code = iov->iov_base;
636
637                         if (type && code) {
638                                 get_user(fl->fl_icmp_type, type);
639                                 get_user(fl->fl_icmp_code, code);
640                                 probed = 1;
641                         }
642                         break;
643                 default:
644                         probed = 1;
645                         break;
646                 }
647                 if (probed)
648                         break;
649         }
650 }
651
652 static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
653                    struct msghdr *msg, size_t len)
654 {
655         struct ipv6_txoptions opt_space;
656         struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
657         struct in6_addr *daddr, *final_p = NULL, final;
658         struct inet_sock *inet = inet_sk(sk);
659         struct ipv6_pinfo *np = inet6_sk(sk);
660         struct raw6_sock *rp = raw6_sk(sk);
661         struct ipv6_txoptions *opt = NULL;
662         struct ip6_flowlabel *flowlabel = NULL;
663         struct dst_entry *dst = NULL;
664         struct flowi fl;
665         int addr_len = msg->msg_namelen;
666         int hlimit = -1;
667         int tclass = -1;
668         u16 proto;
669         int err;
670
671         /* Rough check on arithmetic overflow,
672            better check is made in ip6_build_xmit
673          */
674         if (len < 0)
675                 return -EMSGSIZE;
676
677         /* Mirror BSD error message compatibility */
678         if (msg->msg_flags & MSG_OOB)           
679                 return -EOPNOTSUPP;
680
681         /*
682          *      Get and verify the address. 
683          */
684         memset(&fl, 0, sizeof(fl));
685
686         if (sin6) {
687                 if (addr_len < SIN6_LEN_RFC2133) 
688                         return -EINVAL;
689
690                 if (sin6->sin6_family && sin6->sin6_family != AF_INET6) 
691                         return(-EAFNOSUPPORT);
692
693                 /* port is the proto value [0..255] carried in nexthdr */
694                 proto = ntohs(sin6->sin6_port);
695
696                 if (!proto)
697                         proto = inet->num;
698                 else if (proto != inet->num)
699                         return(-EINVAL);
700
701                 if (proto > 255)
702                         return(-EINVAL);
703
704                 daddr = &sin6->sin6_addr;
705                 if (np->sndflow) {
706                         fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
707                         if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
708                                 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
709                                 if (flowlabel == NULL)
710                                         return -EINVAL;
711                                 daddr = &flowlabel->dst;
712                         }
713                 }
714
715                 /*
716                  * Otherwise it will be difficult to maintain
717                  * sk->sk_dst_cache.
718                  */
719                 if (sk->sk_state == TCP_ESTABLISHED &&
720                     ipv6_addr_equal(daddr, &np->daddr))
721                         daddr = &np->daddr;
722
723                 if (addr_len >= sizeof(struct sockaddr_in6) &&
724                     sin6->sin6_scope_id &&
725                     ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
726                         fl.oif = sin6->sin6_scope_id;
727         } else {
728                 if (sk->sk_state != TCP_ESTABLISHED) 
729                         return -EDESTADDRREQ;
730                 
731                 proto = inet->num;
732                 daddr = &np->daddr;
733                 fl.fl6_flowlabel = np->flow_label;
734         }
735
736         if (ipv6_addr_any(daddr)) {
737                 /* 
738                  * unspecified destination address 
739                  * treated as error... is this correct ?
740                  */
741                 fl6_sock_release(flowlabel);
742                 return(-EINVAL);
743         }
744
745         if (fl.oif == 0)
746                 fl.oif = sk->sk_bound_dev_if;
747
748         if (msg->msg_controllen) {
749                 opt = &opt_space;
750                 memset(opt, 0, sizeof(struct ipv6_txoptions));
751                 opt->tot_len = sizeof(struct ipv6_txoptions);
752
753                 err = datagram_send_ctl(msg, &fl, opt, &hlimit, &tclass);
754                 if (err < 0) {
755                         fl6_sock_release(flowlabel);
756                         return err;
757                 }
758                 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
759                         flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
760                         if (flowlabel == NULL)
761                                 return -EINVAL;
762                 }
763                 if (!(opt->opt_nflen|opt->opt_flen))
764                         opt = NULL;
765         }
766         if (opt == NULL)
767                 opt = np->opt;
768         if (flowlabel)
769                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
770         opt = ipv6_fixup_options(&opt_space, opt);
771
772         fl.proto = proto;
773         rawv6_probe_proto_opt(&fl, msg);
774  
775         ipv6_addr_copy(&fl.fl6_dst, daddr);
776         if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
777                 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
778
779         /* merge ip6_build_xmit from ip6_output */
780         if (opt && opt->srcrt) {
781                 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
782                 ipv6_addr_copy(&final, &fl.fl6_dst);
783                 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
784                 final_p = &final;
785         }
786
787         if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst))
788                 fl.oif = np->mcast_oif;
789         security_sk_classify_flow(sk, &fl);
790
791         err = ip6_dst_lookup(sk, &dst, &fl);
792         if (err)
793                 goto out;
794         if (final_p)
795                 ipv6_addr_copy(&fl.fl6_dst, final_p);
796
797         if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0)
798                 goto out;
799
800         if (hlimit < 0) {
801                 if (ipv6_addr_is_multicast(&fl.fl6_dst))
802                         hlimit = np->mcast_hops;
803                 else
804                         hlimit = np->hop_limit;
805                 if (hlimit < 0)
806                         hlimit = dst_metric(dst, RTAX_HOPLIMIT);
807                 if (hlimit < 0)
808                         hlimit = ipv6_get_hoplimit(dst->dev);
809         }
810
811         if (tclass < 0) {
812                 tclass = np->tclass;
813                 if (tclass < 0)
814                         tclass = 0;
815         }
816
817         if (msg->msg_flags&MSG_CONFIRM)
818                 goto do_confirm;
819
820 back_from_confirm:
821         if (inet->hdrincl) {
822                 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl, (struct rt6_info*)dst, msg->msg_flags);
823         } else {
824                 lock_sock(sk);
825                 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
826                         len, 0, hlimit, tclass, opt, &fl, (struct rt6_info*)dst,
827                         msg->msg_flags);
828
829                 if (err)
830                         ip6_flush_pending_frames(sk);
831                 else if (!(msg->msg_flags & MSG_MORE))
832                         err = rawv6_push_pending_frames(sk, &fl, rp);
833         }
834 done:
835         dst_release(dst);
836         release_sock(sk);
837 out:    
838         fl6_sock_release(flowlabel);
839         return err<0?err:len;
840 do_confirm:
841         dst_confirm(dst);
842         if (!(msg->msg_flags & MSG_PROBE) || len)
843                 goto back_from_confirm;
844         err = 0;
845         goto done;
846 }
847
848 static int rawv6_seticmpfilter(struct sock *sk, int level, int optname, 
849                                char __user *optval, int optlen)
850 {
851         switch (optname) {
852         case ICMPV6_FILTER:
853                 if (optlen > sizeof(struct icmp6_filter))
854                         optlen = sizeof(struct icmp6_filter);
855                 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
856                         return -EFAULT;
857                 return 0;
858         default:
859                 return -ENOPROTOOPT;
860         };
861
862         return 0;
863 }
864
865 static int rawv6_geticmpfilter(struct sock *sk, int level, int optname, 
866                                char __user *optval, int __user *optlen)
867 {
868         int len;
869
870         switch (optname) {
871         case ICMPV6_FILTER:
872                 if (get_user(len, optlen))
873                         return -EFAULT;
874                 if (len < 0)
875                         return -EINVAL;
876                 if (len > sizeof(struct icmp6_filter))
877                         len = sizeof(struct icmp6_filter);
878                 if (put_user(len, optlen))
879                         return -EFAULT;
880                 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
881                         return -EFAULT;
882                 return 0;
883         default:
884                 return -ENOPROTOOPT;
885         };
886
887         return 0;
888 }
889
890
891 static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
892                             char __user *optval, int optlen)
893 {
894         struct raw6_sock *rp = raw6_sk(sk);
895         int val;
896
897         if (get_user(val, (int __user *)optval))
898                 return -EFAULT;
899
900         switch (optname) {
901                 case IPV6_CHECKSUM:
902                         /* You may get strange result with a positive odd offset;
903                            RFC2292bis agrees with me. */
904                         if (val > 0 && (val&1))
905                                 return(-EINVAL);
906                         if (val < 0) {
907                                 rp->checksum = 0;
908                         } else {
909                                 rp->checksum = 1;
910                                 rp->offset = val;
911                         }
912
913                         return 0;
914                         break;
915
916                 default:
917                         return(-ENOPROTOOPT);
918         }
919 }
920
921 static int rawv6_setsockopt(struct sock *sk, int level, int optname,
922                           char __user *optval, int optlen)
923 {
924         switch(level) {
925                 case SOL_RAW:
926                         break;
927
928                 case SOL_ICMPV6:
929                         if (inet_sk(sk)->num != IPPROTO_ICMPV6)
930                                 return -EOPNOTSUPP;
931                         return rawv6_seticmpfilter(sk, level, optname, optval,
932                                                    optlen);
933                 case SOL_IPV6:
934                         if (optname == IPV6_CHECKSUM)
935                                 break;
936                 default:
937                         return ipv6_setsockopt(sk, level, optname, optval,
938                                                optlen);
939         };
940         return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
941 }
942
943 #ifdef CONFIG_COMPAT
944 static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
945                                    char __user *optval, int optlen)
946 {
947         switch (level) {
948         case SOL_RAW:
949                 break;
950         case SOL_ICMPV6:
951                 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
952                         return -EOPNOTSUPP;
953                 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
954         case SOL_IPV6:
955                 if (optname == IPV6_CHECKSUM)
956                         break;
957         default:
958                 return compat_ipv6_setsockopt(sk, level, optname,
959                                               optval, optlen);
960         };
961         return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
962 }
963 #endif
964
965 static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
966                             char __user *optval, int __user *optlen)
967 {
968         struct raw6_sock *rp = raw6_sk(sk);
969         int val, len;
970
971         if (get_user(len,optlen))
972                 return -EFAULT;
973
974         switch (optname) {
975         case IPV6_CHECKSUM:
976                 if (rp->checksum == 0)
977                         val = -1;
978                 else
979                         val = rp->offset;
980                 break;
981
982         default:
983                 return -ENOPROTOOPT;
984         }
985
986         len = min_t(unsigned int, sizeof(int), len);
987
988         if (put_user(len, optlen))
989                 return -EFAULT;
990         if (copy_to_user(optval,&val,len))
991                 return -EFAULT;
992         return 0;
993 }
994
995 static int rawv6_getsockopt(struct sock *sk, int level, int optname,
996                           char __user *optval, int __user *optlen)
997 {
998         switch(level) {
999                 case SOL_RAW:
1000                         break;
1001
1002                 case SOL_ICMPV6:
1003                         if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1004                                 return -EOPNOTSUPP;
1005                         return rawv6_geticmpfilter(sk, level, optname, optval,
1006                                                    optlen);
1007                 case SOL_IPV6:
1008                         if (optname == IPV6_CHECKSUM)
1009                                 break;
1010                 default:
1011                         return ipv6_getsockopt(sk, level, optname, optval,
1012                                                optlen);
1013         };
1014         return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1015 }
1016
1017 #ifdef CONFIG_COMPAT
1018 static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
1019                                    char __user *optval, int __user *optlen)
1020 {
1021         switch (level) {
1022         case SOL_RAW:
1023                 break;
1024         case SOL_ICMPV6:
1025                 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1026                         return -EOPNOTSUPP;
1027                 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1028         case SOL_IPV6:
1029                 if (optname == IPV6_CHECKSUM)
1030                         break;
1031         default:
1032                 return compat_ipv6_getsockopt(sk, level, optname,
1033                                               optval, optlen);
1034         };
1035         return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1036 }
1037 #endif
1038
1039 static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1040 {
1041         switch(cmd) {
1042                 case SIOCOUTQ:
1043                 {
1044                         int amount = atomic_read(&sk->sk_wmem_alloc);
1045                         return put_user(amount, (int __user *)arg);
1046                 }
1047                 case SIOCINQ:
1048                 {
1049                         struct sk_buff *skb;
1050                         int amount = 0;
1051
1052                         spin_lock_bh(&sk->sk_receive_queue.lock);
1053                         skb = skb_peek(&sk->sk_receive_queue);
1054                         if (skb != NULL)
1055                                 amount = skb->tail - skb->h.raw;
1056                         spin_unlock_bh(&sk->sk_receive_queue.lock);
1057                         return put_user(amount, (int __user *)arg);
1058                 }
1059
1060                 default:
1061                         return -ENOIOCTLCMD;
1062         }
1063 }
1064
1065 static void rawv6_close(struct sock *sk, long timeout)
1066 {
1067         if (inet_sk(sk)->num == IPPROTO_RAW)
1068                 ip6_ra_control(sk, -1, NULL);
1069
1070         sk_common_release(sk);
1071 }
1072
1073 static int rawv6_init_sk(struct sock *sk)
1074 {
1075         if (inet_sk(sk)->num == IPPROTO_ICMPV6) {
1076                 struct raw6_sock *rp = raw6_sk(sk);
1077                 rp->checksum = 1;
1078                 rp->offset   = 2;
1079         }
1080         return(0);
1081 }
1082
1083 struct proto rawv6_prot = {
1084         .name              = "RAWv6",
1085         .owner             = THIS_MODULE,
1086         .close             = rawv6_close,
1087         .connect           = ip6_datagram_connect,
1088         .disconnect        = udp_disconnect,
1089         .ioctl             = rawv6_ioctl,
1090         .init              = rawv6_init_sk,
1091         .destroy           = inet6_destroy_sock,
1092         .setsockopt        = rawv6_setsockopt,
1093         .getsockopt        = rawv6_getsockopt,
1094         .sendmsg           = rawv6_sendmsg,
1095         .recvmsg           = rawv6_recvmsg,
1096         .bind              = rawv6_bind,
1097         .backlog_rcv       = rawv6_rcv_skb,
1098         .hash              = raw_v6_hash,
1099         .unhash            = raw_v6_unhash,
1100         .obj_size          = sizeof(struct raw6_sock),
1101 #ifdef CONFIG_COMPAT
1102         .compat_setsockopt = compat_rawv6_setsockopt,
1103         .compat_getsockopt = compat_rawv6_getsockopt,
1104 #endif
1105 };
1106
1107 #ifdef CONFIG_PROC_FS
1108 struct raw6_iter_state {
1109         int bucket;
1110 };
1111
1112 #define raw6_seq_private(seq) ((struct raw6_iter_state *)(seq)->private)
1113
1114 static struct sock *raw6_get_first(struct seq_file *seq)
1115 {
1116         struct sock *sk;
1117         struct hlist_node *node;
1118         struct raw6_iter_state* state = raw6_seq_private(seq);
1119
1120         for (state->bucket = 0; state->bucket < RAWV6_HTABLE_SIZE; ++state->bucket)
1121                 sk_for_each(sk, node, &raw_v6_htable[state->bucket])
1122                         if (sk->sk_family == PF_INET6)
1123                                 goto out;
1124         sk = NULL;
1125 out:
1126         return sk;
1127 }
1128
1129 static struct sock *raw6_get_next(struct seq_file *seq, struct sock *sk)
1130 {
1131         struct raw6_iter_state* state = raw6_seq_private(seq);
1132
1133         do {
1134                 sk = sk_next(sk);
1135 try_again:
1136                 ;
1137         } while (sk && sk->sk_family != PF_INET6);
1138
1139         if (!sk && ++state->bucket < RAWV6_HTABLE_SIZE) {
1140                 sk = sk_head(&raw_v6_htable[state->bucket]);
1141                 goto try_again;
1142         }
1143         return sk;
1144 }
1145
1146 static struct sock *raw6_get_idx(struct seq_file *seq, loff_t pos)
1147 {
1148         struct sock *sk = raw6_get_first(seq);
1149         if (sk)
1150                 while (pos && (sk = raw6_get_next(seq, sk)) != NULL)
1151                         --pos;
1152         return pos ? NULL : sk;
1153 }
1154
1155 static void *raw6_seq_start(struct seq_file *seq, loff_t *pos)
1156 {
1157         read_lock(&raw_v6_lock);
1158         return *pos ? raw6_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1159 }
1160
1161 static void *raw6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1162 {
1163         struct sock *sk;
1164
1165         if (v == SEQ_START_TOKEN)
1166                 sk = raw6_get_first(seq);
1167         else
1168                 sk = raw6_get_next(seq, v);
1169         ++*pos;
1170         return sk;
1171 }
1172
1173 static void raw6_seq_stop(struct seq_file *seq, void *v)
1174 {
1175         read_unlock(&raw_v6_lock);
1176 }
1177
1178 static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1179 {
1180         struct ipv6_pinfo *np = inet6_sk(sp);
1181         struct in6_addr *dest, *src;
1182         __u16 destp, srcp;
1183
1184         dest  = &np->daddr;
1185         src   = &np->rcv_saddr;
1186         destp = 0;
1187         srcp  = inet_sk(sp)->num;
1188         seq_printf(seq,
1189                    "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1190                    "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
1191                    i,
1192                    src->s6_addr32[0], src->s6_addr32[1],
1193                    src->s6_addr32[2], src->s6_addr32[3], srcp,
1194                    dest->s6_addr32[0], dest->s6_addr32[1],
1195                    dest->s6_addr32[2], dest->s6_addr32[3], destp,
1196                    sp->sk_state, 
1197                    atomic_read(&sp->sk_wmem_alloc),
1198                    atomic_read(&sp->sk_rmem_alloc),
1199                    0, 0L, 0,
1200                    sock_i_uid(sp), 0,
1201                    sock_i_ino(sp),
1202                    atomic_read(&sp->sk_refcnt), sp);
1203 }
1204
1205 static int raw6_seq_show(struct seq_file *seq, void *v)
1206 {
1207         if (v == SEQ_START_TOKEN)
1208                 seq_printf(seq,
1209                            "  sl  "
1210                            "local_address                         "
1211                            "remote_address                        "
1212                            "st tx_queue rx_queue tr tm->when retrnsmt"
1213                            "   uid  timeout inode\n");
1214         else
1215                 raw6_sock_seq_show(seq, v, raw6_seq_private(seq)->bucket);
1216         return 0;
1217 }
1218
1219 static struct seq_operations raw6_seq_ops = {
1220         .start =        raw6_seq_start,
1221         .next =         raw6_seq_next,
1222         .stop =         raw6_seq_stop,
1223         .show =         raw6_seq_show,
1224 };
1225
1226 static int raw6_seq_open(struct inode *inode, struct file *file)
1227 {
1228         struct seq_file *seq;
1229         int rc = -ENOMEM;
1230         struct raw6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
1231         if (!s)
1232                 goto out;
1233         rc = seq_open(file, &raw6_seq_ops);
1234         if (rc)
1235                 goto out_kfree;
1236         seq = file->private_data;
1237         seq->private = s;
1238 out:
1239         return rc;
1240 out_kfree:
1241         kfree(s);
1242         goto out;
1243 }
1244
1245 static struct file_operations raw6_seq_fops = {
1246         .owner =        THIS_MODULE,
1247         .open =         raw6_seq_open,
1248         .read =         seq_read,
1249         .llseek =       seq_lseek,
1250         .release =      seq_release_private,
1251 };
1252
1253 int __init raw6_proc_init(void)
1254 {
1255         if (!proc_net_fops_create("raw6", S_IRUGO, &raw6_seq_fops))
1256                 return -ENOMEM;
1257         return 0;
1258 }
1259
1260 void raw6_proc_exit(void)
1261 {
1262         proc_net_remove("raw6");
1263 }
1264 #endif  /* CONFIG_PROC_FS */