[UDP]: Clean up for IS_UDPLITE macro
[safe/jmp/linux-2.6] / net / ipv6 / udp.c
1 /*
2  *      UDP over IPv6
3  *      Linux INET6 implementation
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>
7  *
8  *      Based on linux/ipv4/udp.c
9  *
10  *      $Id: udp.c,v 1.65 2002/02/01 22:01:04 davem Exp $
11  *
12  *      Fixes:
13  *      Hideaki YOSHIFUJI       :       sin6_scope_id support
14  *      YOSHIFUJI Hideaki @USAGI and:   Support IPV6_V6ONLY socket option, which
15  *      Alexey Kuznetsov                allow both IPv4 and IPv6 sockets to bind
16  *                                      a single port at the same time.
17  *      Kazunori MIYAZAWA @USAGI:       change process style to use ip6_append_data
18  *      YOSHIFUJI Hideaki @USAGI:       convert /proc/net/udp6 to seq_file.
19  *
20  *      This program is free software; you can redistribute it and/or
21  *      modify it under the terms of the GNU General Public License
22  *      as published by the Free Software Foundation; either version
23  *      2 of the License, or (at your option) any later version.
24  */
25
26 #include <linux/errno.h>
27 #include <linux/types.h>
28 #include <linux/socket.h>
29 #include <linux/sockios.h>
30 #include <linux/net.h>
31 #include <linux/in6.h>
32 #include <linux/netdevice.h>
33 #include <linux/if_arp.h>
34 #include <linux/ipv6.h>
35 #include <linux/icmpv6.h>
36 #include <linux/init.h>
37 #include <linux/skbuff.h>
38 #include <asm/uaccess.h>
39
40 #include <net/ndisc.h>
41 #include <net/protocol.h>
42 #include <net/transp_v6.h>
43 #include <net/ip6_route.h>
44 #include <net/raw.h>
45 #include <net/tcp_states.h>
46 #include <net/ip6_checksum.h>
47 #include <net/xfrm.h>
48
49 #include <linux/proc_fs.h>
50 #include <linux/seq_file.h>
51 #include "udp_impl.h"
52
53 DEFINE_SNMP_STAT(struct udp_mib, udp_stats_in6) __read_mostly;
54
55 static inline int udp_v6_get_port(struct sock *sk, unsigned short snum)
56 {
57         return udp_get_port(sk, snum, ipv6_rcv_saddr_equal);
58 }
59
60 static struct sock *__udp6_lib_lookup(struct in6_addr *saddr, __be16 sport,
61                                       struct in6_addr *daddr, __be16 dport,
62                                       int dif, struct hlist_head udptable[])
63 {
64         struct sock *sk, *result = NULL;
65         struct hlist_node *node;
66         unsigned short hnum = ntohs(dport);
67         int badness = -1;
68
69         read_lock(&udp_hash_lock);
70         sk_for_each(sk, node, &udptable[hnum & (UDP_HTABLE_SIZE - 1)]) {
71                 struct inet_sock *inet = inet_sk(sk);
72
73                 if (sk->sk_hash == hnum && sk->sk_family == PF_INET6) {
74                         struct ipv6_pinfo *np = inet6_sk(sk);
75                         int score = 0;
76                         if (inet->dport) {
77                                 if (inet->dport != sport)
78                                         continue;
79                                 score++;
80                         }
81                         if (!ipv6_addr_any(&np->rcv_saddr)) {
82                                 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
83                                         continue;
84                                 score++;
85                         }
86                         if (!ipv6_addr_any(&np->daddr)) {
87                                 if (!ipv6_addr_equal(&np->daddr, saddr))
88                                         continue;
89                                 score++;
90                         }
91                         if (sk->sk_bound_dev_if) {
92                                 if (sk->sk_bound_dev_if != dif)
93                                         continue;
94                                 score++;
95                         }
96                         if (score == 4) {
97                                 result = sk;
98                                 break;
99                         } else if (score > badness) {
100                                 result = sk;
101                                 badness = score;
102                         }
103                 }
104         }
105         if (result)
106                 sock_hold(result);
107         read_unlock(&udp_hash_lock);
108         return result;
109 }
110
111 /*
112  *      This should be easy, if there is something there we
113  *      return it, otherwise we block.
114  */
115
116 int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
117                   struct msghdr *msg, size_t len,
118                   int noblock, int flags, int *addr_len)
119 {
120         struct ipv6_pinfo *np = inet6_sk(sk);
121         struct inet_sock *inet = inet_sk(sk);
122         struct sk_buff *skb;
123         unsigned int ulen, copied;
124         int err;
125         int is_udplite = IS_UDPLITE(sk);
126
127         if (addr_len)
128                 *addr_len=sizeof(struct sockaddr_in6);
129
130         if (flags & MSG_ERRQUEUE)
131                 return ipv6_recv_error(sk, msg, len);
132
133 try_again:
134         skb = skb_recv_datagram(sk, flags, noblock, &err);
135         if (!skb)
136                 goto out;
137
138         ulen = skb->len - sizeof(struct udphdr);
139         copied = len;
140         if (copied > ulen)
141                 copied = ulen;
142         else if (copied < ulen)
143                 msg->msg_flags |= MSG_TRUNC;
144
145         /*
146          * If checksum is needed at all, try to do it while copying the
147          * data.  If the data is truncated, or if we only want a partial
148          * coverage checksum (UDP-Lite), do it before the copy.
149          */
150
151         if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
152                 if (udp_lib_checksum_complete(skb))
153                         goto csum_copy_err;
154         }
155
156         if (skb_csum_unnecessary(skb))
157                 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
158                                               msg->msg_iov, copied       );
159         else {
160                 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
161                 if (err == -EINVAL)
162                         goto csum_copy_err;
163         }
164         if (err)
165                 goto out_free;
166
167         UDP6_INC_STATS_USER(UDP_MIB_INDATAGRAMS, is_udplite);
168
169         sock_recv_timestamp(msg, sk, skb);
170
171         /* Copy the address. */
172         if (msg->msg_name) {
173                 struct sockaddr_in6 *sin6;
174
175                 sin6 = (struct sockaddr_in6 *) msg->msg_name;
176                 sin6->sin6_family = AF_INET6;
177                 sin6->sin6_port = udp_hdr(skb)->source;
178                 sin6->sin6_flowinfo = 0;
179                 sin6->sin6_scope_id = 0;
180
181                 if (skb->protocol == htons(ETH_P_IP))
182                         ipv6_addr_set(&sin6->sin6_addr, 0, 0,
183                                       htonl(0xffff), ip_hdr(skb)->saddr);
184                 else {
185                         ipv6_addr_copy(&sin6->sin6_addr,
186                                        &ipv6_hdr(skb)->saddr);
187                         if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
188                                 sin6->sin6_scope_id = IP6CB(skb)->iif;
189                 }
190
191         }
192         if (skb->protocol == htons(ETH_P_IP)) {
193                 if (inet->cmsg_flags)
194                         ip_cmsg_recv(msg, skb);
195         } else {
196                 if (np->rxopt.all)
197                         datagram_recv_ctl(sk, msg, skb);
198         }
199
200         err = copied;
201         if (flags & MSG_TRUNC)
202                 err = ulen;
203
204 out_free:
205         skb_free_datagram(sk, skb);
206 out:
207         return err;
208
209 csum_copy_err:
210         UDP6_INC_STATS_USER(UDP_MIB_INERRORS, is_udplite);
211         skb_kill_datagram(sk, skb, flags);
212
213         if (flags & MSG_DONTWAIT)
214                 return -EAGAIN;
215         goto try_again;
216 }
217
218 void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
219                     int type, int code, int offset, __be32 info,
220                     struct hlist_head udptable[]                    )
221 {
222         struct ipv6_pinfo *np;
223         struct ipv6hdr *hdr = (struct ipv6hdr*)skb->data;
224         struct in6_addr *saddr = &hdr->saddr;
225         struct in6_addr *daddr = &hdr->daddr;
226         struct udphdr *uh = (struct udphdr*)(skb->data+offset);
227         struct sock *sk;
228         int err;
229
230         sk = __udp6_lib_lookup(daddr, uh->dest,
231                                saddr, uh->source, inet6_iif(skb), udptable);
232         if (sk == NULL)
233                 return;
234
235         np = inet6_sk(sk);
236
237         if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
238                 goto out;
239
240         if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
241                 goto out;
242
243         if (np->recverr)
244                 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
245
246         sk->sk_err = err;
247         sk->sk_error_report(sk);
248 out:
249         sock_put(sk);
250 }
251
252 static __inline__ void udpv6_err(struct sk_buff *skb,
253                                  struct inet6_skb_parm *opt, int type,
254                                  int code, int offset, __be32 info     )
255 {
256         return __udp6_lib_err(skb, opt, type, code, offset, info, udp_hash);
257 }
258
259 int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
260 {
261         struct udp_sock *up = udp_sk(sk);
262         int rc;
263         int is_udplite = IS_UDPLITE(sk);
264
265         if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
266                 goto drop;
267
268         /*
269          * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
270          */
271         if ((is_udplite & UDPLITE_RECV_CC)  &&  UDP_SKB_CB(skb)->partial_cov) {
272
273                 if (up->pcrlen == 0) {          /* full coverage was set  */
274                         LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: partial coverage"
275                                 " %d while full coverage %d requested\n",
276                                 UDP_SKB_CB(skb)->cscov, skb->len);
277                         goto drop;
278                 }
279                 if (UDP_SKB_CB(skb)->cscov  <  up->pcrlen) {
280                         LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: coverage %d "
281                                                     "too small, need min %d\n",
282                                        UDP_SKB_CB(skb)->cscov, up->pcrlen);
283                         goto drop;
284                 }
285         }
286
287         if (sk->sk_filter) {
288                 if (udp_lib_checksum_complete(skb))
289                         goto drop;
290         }
291
292         if ((rc = sock_queue_rcv_skb(sk,skb)) < 0) {
293                 /* Note that an ENOMEM error is charged twice */
294                 if (rc == -ENOMEM)
295                         UDP6_INC_STATS_BH(UDP_MIB_RCVBUFERRORS, is_udplite);
296                 goto drop;
297         }
298
299         return 0;
300 drop:
301         UDP6_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
302         kfree_skb(skb);
303         return -1;
304 }
305
306 static struct sock *udp_v6_mcast_next(struct sock *sk,
307                                       __be16 loc_port, struct in6_addr *loc_addr,
308                                       __be16 rmt_port, struct in6_addr *rmt_addr,
309                                       int dif)
310 {
311         struct hlist_node *node;
312         struct sock *s = sk;
313         unsigned short num = ntohs(loc_port);
314
315         sk_for_each_from(s, node) {
316                 struct inet_sock *inet = inet_sk(s);
317
318                 if (s->sk_hash == num && s->sk_family == PF_INET6) {
319                         struct ipv6_pinfo *np = inet6_sk(s);
320                         if (inet->dport) {
321                                 if (inet->dport != rmt_port)
322                                         continue;
323                         }
324                         if (!ipv6_addr_any(&np->daddr) &&
325                             !ipv6_addr_equal(&np->daddr, rmt_addr))
326                                 continue;
327
328                         if (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)
329                                 continue;
330
331                         if (!ipv6_addr_any(&np->rcv_saddr)) {
332                                 if (!ipv6_addr_equal(&np->rcv_saddr, loc_addr))
333                                         continue;
334                         }
335                         if (!inet6_mc_check(s, loc_addr, rmt_addr))
336                                 continue;
337                         return s;
338                 }
339         }
340         return NULL;
341 }
342
343 /*
344  * Note: called only from the BH handler context,
345  * so we don't need to lock the hashes.
346  */
347 static int __udp6_lib_mcast_deliver(struct sk_buff *skb, struct in6_addr *saddr,
348                            struct in6_addr *daddr, struct hlist_head udptable[])
349 {
350         struct sock *sk, *sk2;
351         const struct udphdr *uh = udp_hdr(skb);
352         int dif;
353
354         read_lock(&udp_hash_lock);
355         sk = sk_head(&udptable[ntohs(uh->dest) & (UDP_HTABLE_SIZE - 1)]);
356         dif = inet6_iif(skb);
357         sk = udp_v6_mcast_next(sk, uh->dest, daddr, uh->source, saddr, dif);
358         if (!sk) {
359                 kfree_skb(skb);
360                 goto out;
361         }
362
363         sk2 = sk;
364         while ((sk2 = udp_v6_mcast_next(sk_next(sk2), uh->dest, daddr,
365                                         uh->source, saddr, dif))) {
366                 struct sk_buff *buff = skb_clone(skb, GFP_ATOMIC);
367                 if (buff)
368                         udpv6_queue_rcv_skb(sk2, buff);
369         }
370         udpv6_queue_rcv_skb(sk, skb);
371 out:
372         read_unlock(&udp_hash_lock);
373         return 0;
374 }
375
376 static inline int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh,
377                                  int proto)
378 {
379         int err;
380
381         UDP_SKB_CB(skb)->partial_cov = 0;
382         UDP_SKB_CB(skb)->cscov = skb->len;
383
384         if (proto == IPPROTO_UDPLITE) {
385                 err = udplite_checksum_init(skb, uh);
386                 if (err)
387                         return err;
388         }
389
390         if (uh->check == 0) {
391                 /* RFC 2460 section 8.1 says that we SHOULD log
392                    this error. Well, it is reasonable.
393                  */
394                 LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n");
395                 return 1;
396         }
397         if (skb->ip_summed == CHECKSUM_COMPLETE &&
398             !csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
399                              skb->len, proto, skb->csum))
400                 skb->ip_summed = CHECKSUM_UNNECESSARY;
401
402         if (!skb_csum_unnecessary(skb))
403                 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
404                                                          &ipv6_hdr(skb)->daddr,
405                                                          skb->len, proto, 0));
406
407         return 0;
408 }
409
410 int __udp6_lib_rcv(struct sk_buff *skb, struct hlist_head udptable[],
411                    int proto)
412 {
413         struct sock *sk;
414         struct udphdr *uh;
415         struct net_device *dev = skb->dev;
416         struct in6_addr *saddr, *daddr;
417         u32 ulen = 0;
418
419         if (!pskb_may_pull(skb, sizeof(struct udphdr)))
420                 goto short_packet;
421
422         saddr = &ipv6_hdr(skb)->saddr;
423         daddr = &ipv6_hdr(skb)->daddr;
424         uh = udp_hdr(skb);
425
426         ulen = ntohs(uh->len);
427         if (ulen > skb->len)
428                 goto short_packet;
429
430         if (proto == IPPROTO_UDP) {
431                 /* UDP validates ulen. */
432
433                 /* Check for jumbo payload */
434                 if (ulen == 0)
435                         ulen = skb->len;
436
437                 if (ulen < sizeof(*uh))
438                         goto short_packet;
439
440                 if (ulen < skb->len) {
441                         if (pskb_trim_rcsum(skb, ulen))
442                                 goto short_packet;
443                         saddr = &ipv6_hdr(skb)->saddr;
444                         daddr = &ipv6_hdr(skb)->daddr;
445                         uh = udp_hdr(skb);
446                 }
447         }
448
449         if (udp6_csum_init(skb, uh, proto))
450                 goto discard;
451
452         /*
453          *      Multicast receive code
454          */
455         if (ipv6_addr_is_multicast(daddr))
456                 return __udp6_lib_mcast_deliver(skb, saddr, daddr, udptable);
457
458         /* Unicast */
459
460         /*
461          * check socket cache ... must talk to Alan about his plans
462          * for sock caches... i'll skip this for now.
463          */
464         sk = __udp6_lib_lookup(saddr, uh->source,
465                                daddr, uh->dest, inet6_iif(skb), udptable);
466
467         if (sk == NULL) {
468                 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
469                         goto discard;
470
471                 if (udp_lib_checksum_complete(skb))
472                         goto discard;
473                 UDP6_INC_STATS_BH(UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
474
475                 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0, dev);
476
477                 kfree_skb(skb);
478                 return 0;
479         }
480
481         /* deliver */
482
483         udpv6_queue_rcv_skb(sk, skb);
484         sock_put(sk);
485         return 0;
486
487 short_packet:
488         LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: %d/%u\n",
489                        proto == IPPROTO_UDPLITE ? "-Lite" : "",
490                        ulen, skb->len);
491
492 discard:
493         UDP6_INC_STATS_BH(UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
494         kfree_skb(skb);
495         return 0;
496 }
497
498 static __inline__ int udpv6_rcv(struct sk_buff *skb)
499 {
500         return __udp6_lib_rcv(skb, udp_hash, IPPROTO_UDP);
501 }
502
503 /*
504  * Throw away all pending data and cancel the corking. Socket is locked.
505  */
506 static void udp_v6_flush_pending_frames(struct sock *sk)
507 {
508         struct udp_sock *up = udp_sk(sk);
509
510         if (up->pending) {
511                 up->len = 0;
512                 up->pending = 0;
513                 ip6_flush_pending_frames(sk);
514         }
515 }
516
517 /*
518  *      Sending
519  */
520
521 static int udp_v6_push_pending_frames(struct sock *sk)
522 {
523         struct sk_buff *skb;
524         struct udphdr *uh;
525         struct udp_sock  *up = udp_sk(sk);
526         struct inet_sock *inet = inet_sk(sk);
527         struct flowi *fl = &inet->cork.fl;
528         int err = 0;
529         int is_udplite = IS_UDPLITE(sk);
530         __wsum csum = 0;
531
532         /* Grab the skbuff where UDP header space exists. */
533         if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
534                 goto out;
535
536         /*
537          * Create a UDP header
538          */
539         uh = udp_hdr(skb);
540         uh->source = fl->fl_ip_sport;
541         uh->dest = fl->fl_ip_dport;
542         uh->len = htons(up->len);
543         uh->check = 0;
544
545         if (is_udplite)
546                 csum = udplite_csum_outgoing(sk, skb);
547          else
548                 csum = udp_csum_outgoing(sk, skb);
549
550         /* add protocol-dependent pseudo-header */
551         uh->check = csum_ipv6_magic(&fl->fl6_src, &fl->fl6_dst,
552                                     up->len, fl->proto, csum   );
553         if (uh->check == 0)
554                 uh->check = CSUM_MANGLED_0;
555
556         err = ip6_push_pending_frames(sk);
557 out:
558         up->len = 0;
559         up->pending = 0;
560         if (!err)
561                 UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite);
562         return err;
563 }
564
565 int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
566                   struct msghdr *msg, size_t len)
567 {
568         struct ipv6_txoptions opt_space;
569         struct udp_sock *up = udp_sk(sk);
570         struct inet_sock *inet = inet_sk(sk);
571         struct ipv6_pinfo *np = inet6_sk(sk);
572         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
573         struct in6_addr *daddr, *final_p = NULL, final;
574         struct ipv6_txoptions *opt = NULL;
575         struct ip6_flowlabel *flowlabel = NULL;
576         struct flowi fl;
577         struct dst_entry *dst;
578         int addr_len = msg->msg_namelen;
579         int ulen = len;
580         int hlimit = -1;
581         int tclass = -1;
582         int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
583         int err;
584         int connected = 0;
585         int is_udplite = IS_UDPLITE(sk);
586         int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
587
588         /* destination address check */
589         if (sin6) {
590                 if (addr_len < offsetof(struct sockaddr, sa_data))
591                         return -EINVAL;
592
593                 switch (sin6->sin6_family) {
594                 case AF_INET6:
595                         if (addr_len < SIN6_LEN_RFC2133)
596                                 return -EINVAL;
597                         daddr = &sin6->sin6_addr;
598                         break;
599                 case AF_INET:
600                         goto do_udp_sendmsg;
601                 case AF_UNSPEC:
602                         msg->msg_name = sin6 = NULL;
603                         msg->msg_namelen = addr_len = 0;
604                         daddr = NULL;
605                         break;
606                 default:
607                         return -EINVAL;
608                 }
609         } else if (!up->pending) {
610                 if (sk->sk_state != TCP_ESTABLISHED)
611                         return -EDESTADDRREQ;
612                 daddr = &np->daddr;
613         } else
614                 daddr = NULL;
615
616         if (daddr) {
617                 if (ipv6_addr_v4mapped(daddr)) {
618                         struct sockaddr_in sin;
619                         sin.sin_family = AF_INET;
620                         sin.sin_port = sin6 ? sin6->sin6_port : inet->dport;
621                         sin.sin_addr.s_addr = daddr->s6_addr32[3];
622                         msg->msg_name = &sin;
623                         msg->msg_namelen = sizeof(sin);
624 do_udp_sendmsg:
625                         if (__ipv6_only_sock(sk))
626                                 return -ENETUNREACH;
627                         return udp_sendmsg(iocb, sk, msg, len);
628                 }
629         }
630
631         if (up->pending == AF_INET)
632                 return udp_sendmsg(iocb, sk, msg, len);
633
634         /* Rough check on arithmetic overflow,
635            better check is made in ip6_append_data().
636            */
637         if (len > INT_MAX - sizeof(struct udphdr))
638                 return -EMSGSIZE;
639
640         if (up->pending) {
641                 /*
642                  * There are pending frames.
643                  * The socket lock must be held while it's corked.
644                  */
645                 lock_sock(sk);
646                 if (likely(up->pending)) {
647                         if (unlikely(up->pending != AF_INET6)) {
648                                 release_sock(sk);
649                                 return -EAFNOSUPPORT;
650                         }
651                         dst = NULL;
652                         goto do_append_data;
653                 }
654                 release_sock(sk);
655         }
656         ulen += sizeof(struct udphdr);
657
658         memset(&fl, 0, sizeof(fl));
659
660         if (sin6) {
661                 if (sin6->sin6_port == 0)
662                         return -EINVAL;
663
664                 fl.fl_ip_dport = sin6->sin6_port;
665                 daddr = &sin6->sin6_addr;
666
667                 if (np->sndflow) {
668                         fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
669                         if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
670                                 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
671                                 if (flowlabel == NULL)
672                                         return -EINVAL;
673                                 daddr = &flowlabel->dst;
674                         }
675                 }
676
677                 /*
678                  * Otherwise it will be difficult to maintain
679                  * sk->sk_dst_cache.
680                  */
681                 if (sk->sk_state == TCP_ESTABLISHED &&
682                     ipv6_addr_equal(daddr, &np->daddr))
683                         daddr = &np->daddr;
684
685                 if (addr_len >= sizeof(struct sockaddr_in6) &&
686                     sin6->sin6_scope_id &&
687                     ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
688                         fl.oif = sin6->sin6_scope_id;
689         } else {
690                 if (sk->sk_state != TCP_ESTABLISHED)
691                         return -EDESTADDRREQ;
692
693                 fl.fl_ip_dport = inet->dport;
694                 daddr = &np->daddr;
695                 fl.fl6_flowlabel = np->flow_label;
696                 connected = 1;
697         }
698
699         if (!fl.oif)
700                 fl.oif = sk->sk_bound_dev_if;
701
702         if (msg->msg_controllen) {
703                 opt = &opt_space;
704                 memset(opt, 0, sizeof(struct ipv6_txoptions));
705                 opt->tot_len = sizeof(*opt);
706
707                 err = datagram_send_ctl(msg, &fl, opt, &hlimit, &tclass);
708                 if (err < 0) {
709                         fl6_sock_release(flowlabel);
710                         return err;
711                 }
712                 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
713                         flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
714                         if (flowlabel == NULL)
715                                 return -EINVAL;
716                 }
717                 if (!(opt->opt_nflen|opt->opt_flen))
718                         opt = NULL;
719                 connected = 0;
720         }
721         if (opt == NULL)
722                 opt = np->opt;
723         if (flowlabel)
724                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
725         opt = ipv6_fixup_options(&opt_space, opt);
726
727         fl.proto = sk->sk_protocol;
728         ipv6_addr_copy(&fl.fl6_dst, daddr);
729         if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
730                 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
731         fl.fl_ip_sport = inet->sport;
732
733         /* merge ip6_build_xmit from ip6_output */
734         if (opt && opt->srcrt) {
735                 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
736                 ipv6_addr_copy(&final, &fl.fl6_dst);
737                 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
738                 final_p = &final;
739                 connected = 0;
740         }
741
742         if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst)) {
743                 fl.oif = np->mcast_oif;
744                 connected = 0;
745         }
746
747         security_sk_classify_flow(sk, &fl);
748
749         err = ip6_sk_dst_lookup(sk, &dst, &fl);
750         if (err)
751                 goto out;
752         if (final_p)
753                 ipv6_addr_copy(&fl.fl6_dst, final_p);
754
755         if ((err = __xfrm_lookup(&dst, &fl, sk, 1)) < 0) {
756                 if (err == -EREMOTE)
757                         err = ip6_dst_blackhole(sk, &dst, &fl);
758                 if (err < 0)
759                         goto out;
760         }
761
762         if (hlimit < 0) {
763                 if (ipv6_addr_is_multicast(&fl.fl6_dst))
764                         hlimit = np->mcast_hops;
765                 else
766                         hlimit = np->hop_limit;
767                 if (hlimit < 0)
768                         hlimit = dst_metric(dst, RTAX_HOPLIMIT);
769                 if (hlimit < 0)
770                         hlimit = ipv6_get_hoplimit(dst->dev);
771         }
772
773         if (tclass < 0) {
774                 tclass = np->tclass;
775                 if (tclass < 0)
776                         tclass = 0;
777         }
778
779         if (msg->msg_flags&MSG_CONFIRM)
780                 goto do_confirm;
781 back_from_confirm:
782
783         lock_sock(sk);
784         if (unlikely(up->pending)) {
785                 /* The socket is already corked while preparing it. */
786                 /* ... which is an evident application bug. --ANK */
787                 release_sock(sk);
788
789                 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
790                 err = -EINVAL;
791                 goto out;
792         }
793
794         up->pending = AF_INET6;
795
796 do_append_data:
797         up->len += ulen;
798         getfrag  =  is_udplite ?  udplite_getfrag : ip_generic_getfrag;
799         err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
800                 sizeof(struct udphdr), hlimit, tclass, opt, &fl,
801                 (struct rt6_info*)dst,
802                 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
803         if (err)
804                 udp_v6_flush_pending_frames(sk);
805         else if (!corkreq)
806                 err = udp_v6_push_pending_frames(sk);
807         else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
808                 up->pending = 0;
809
810         if (dst) {
811                 if (connected) {
812                         ip6_dst_store(sk, dst,
813                                       ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
814                                       &np->daddr : NULL,
815 #ifdef CONFIG_IPV6_SUBTREES
816                                       ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
817                                       &np->saddr :
818 #endif
819                                       NULL);
820                 } else {
821                         dst_release(dst);
822                 }
823         }
824
825         if (err > 0)
826                 err = np->recverr ? net_xmit_errno(err) : 0;
827         release_sock(sk);
828 out:
829         fl6_sock_release(flowlabel);
830         if (!err)
831                 return len;
832         /*
833          * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space.  Reporting
834          * ENOBUFS might not be good (it's not tunable per se), but otherwise
835          * we don't have a good statistic (IpOutDiscards but it can be too many
836          * things).  We could add another new stat but at least for now that
837          * seems like overkill.
838          */
839         if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
840                 UDP6_INC_STATS_USER(UDP_MIB_SNDBUFERRORS, is_udplite);
841         }
842         return err;
843
844 do_confirm:
845         dst_confirm(dst);
846         if (!(msg->msg_flags&MSG_PROBE) || len)
847                 goto back_from_confirm;
848         err = 0;
849         goto out;
850 }
851
852 int udpv6_destroy_sock(struct sock *sk)
853 {
854         lock_sock(sk);
855         udp_v6_flush_pending_frames(sk);
856         release_sock(sk);
857
858         inet6_destroy_sock(sk);
859
860         return 0;
861 }
862
863 /*
864  *      Socket option code for UDP
865  */
866 int udpv6_setsockopt(struct sock *sk, int level, int optname,
867                      char __user *optval, int optlen)
868 {
869         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
870                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
871                                           udp_v6_push_pending_frames);
872         return ipv6_setsockopt(sk, level, optname, optval, optlen);
873 }
874
875 #ifdef CONFIG_COMPAT
876 int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
877                             char __user *optval, int optlen)
878 {
879         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
880                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
881                                           udp_v6_push_pending_frames);
882         return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
883 }
884 #endif
885
886 int udpv6_getsockopt(struct sock *sk, int level, int optname,
887                      char __user *optval, int __user *optlen)
888 {
889         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
890                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
891         return ipv6_getsockopt(sk, level, optname, optval, optlen);
892 }
893
894 #ifdef CONFIG_COMPAT
895 int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
896                             char __user *optval, int __user *optlen)
897 {
898         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
899                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
900         return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
901 }
902 #endif
903
904 static struct inet6_protocol udpv6_protocol = {
905         .handler        =       udpv6_rcv,
906         .err_handler    =       udpv6_err,
907         .flags          =       INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
908 };
909
910 /* ------------------------------------------------------------------------ */
911 #ifdef CONFIG_PROC_FS
912
913 static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket)
914 {
915         struct inet_sock *inet = inet_sk(sp);
916         struct ipv6_pinfo *np = inet6_sk(sp);
917         struct in6_addr *dest, *src;
918         __u16 destp, srcp;
919
920         dest  = &np->daddr;
921         src   = &np->rcv_saddr;
922         destp = ntohs(inet->dport);
923         srcp  = ntohs(inet->sport);
924         seq_printf(seq,
925                    "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
926                    "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
927                    bucket,
928                    src->s6_addr32[0], src->s6_addr32[1],
929                    src->s6_addr32[2], src->s6_addr32[3], srcp,
930                    dest->s6_addr32[0], dest->s6_addr32[1],
931                    dest->s6_addr32[2], dest->s6_addr32[3], destp,
932                    sp->sk_state,
933                    atomic_read(&sp->sk_wmem_alloc),
934                    atomic_read(&sp->sk_rmem_alloc),
935                    0, 0L, 0,
936                    sock_i_uid(sp), 0,
937                    sock_i_ino(sp),
938                    atomic_read(&sp->sk_refcnt), sp);
939 }
940
941 int udp6_seq_show(struct seq_file *seq, void *v)
942 {
943         if (v == SEQ_START_TOKEN)
944                 seq_printf(seq,
945                            "  sl  "
946                            "local_address                         "
947                            "remote_address                        "
948                            "st tx_queue rx_queue tr tm->when retrnsmt"
949                            "   uid  timeout inode\n");
950         else
951                 udp6_sock_seq_show(seq, v, ((struct udp_iter_state *)seq->private)->bucket);
952         return 0;
953 }
954
955 static struct file_operations udp6_seq_fops;
956 static struct udp_seq_afinfo udp6_seq_afinfo = {
957         .owner          = THIS_MODULE,
958         .name           = "udp6",
959         .family         = AF_INET6,
960         .hashtable      = udp_hash,
961         .seq_show       = udp6_seq_show,
962         .seq_fops       = &udp6_seq_fops,
963 };
964
965 int __init udp6_proc_init(void)
966 {
967         return udp_proc_register(&udp6_seq_afinfo);
968 }
969
970 void udp6_proc_exit(void) {
971         udp_proc_unregister(&udp6_seq_afinfo);
972 }
973 #endif /* CONFIG_PROC_FS */
974
975 /* ------------------------------------------------------------------------ */
976
977 DEFINE_PROTO_INUSE(udpv6)
978
979 struct proto udpv6_prot = {
980         .name              = "UDPv6",
981         .owner             = THIS_MODULE,
982         .close             = udp_lib_close,
983         .connect           = ip6_datagram_connect,
984         .disconnect        = udp_disconnect,
985         .ioctl             = udp_ioctl,
986         .destroy           = udpv6_destroy_sock,
987         .setsockopt        = udpv6_setsockopt,
988         .getsockopt        = udpv6_getsockopt,
989         .sendmsg           = udpv6_sendmsg,
990         .recvmsg           = udpv6_recvmsg,
991         .backlog_rcv       = udpv6_queue_rcv_skb,
992         .hash              = udp_lib_hash,
993         .unhash            = udp_lib_unhash,
994         .get_port          = udp_v6_get_port,
995         .obj_size          = sizeof(struct udp6_sock),
996 #ifdef CONFIG_COMPAT
997         .compat_setsockopt = compat_udpv6_setsockopt,
998         .compat_getsockopt = compat_udpv6_getsockopt,
999 #endif
1000         REF_PROTO_INUSE(udpv6)
1001 };
1002
1003 static struct inet_protosw udpv6_protosw = {
1004         .type =      SOCK_DGRAM,
1005         .protocol =  IPPROTO_UDP,
1006         .prot =      &udpv6_prot,
1007         .ops =       &inet6_dgram_ops,
1008         .capability =-1,
1009         .no_check =  UDP_CSUM_DEFAULT,
1010         .flags =     INET_PROTOSW_PERMANENT,
1011 };
1012
1013
1014 void __init udpv6_init(void)
1015 {
1016         if (inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP) < 0)
1017                 printk(KERN_ERR "udpv6_init: Could not register protocol\n");
1018         inet6_register_protosw(&udpv6_protosw);
1019 }