]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/ipv6/udp.c
ipv6: make lookups simpler and faster
[karo-tx-linux.git] / 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  *      Fixes:
11  *      Hideaki YOSHIFUJI       :       sin6_scope_id support
12  *      YOSHIFUJI Hideaki @USAGI and:   Support IPV6_V6ONLY socket option, which
13  *      Alexey Kuznetsov                allow both IPv4 and IPv6 sockets to bind
14  *                                      a single port at the same time.
15  *      Kazunori MIYAZAWA @USAGI:       change process style to use ip6_append_data
16  *      YOSHIFUJI Hideaki @USAGI:       convert /proc/net/udp6 to seq_file.
17  *
18  *      This program is free software; you can redistribute it and/or
19  *      modify it under the terms of the GNU General Public License
20  *      as published by the Free Software Foundation; either version
21  *      2 of the License, or (at your option) any later version.
22  */
23
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/socket.h>
27 #include <linux/sockios.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/ipv6.h>
33 #include <linux/icmpv6.h>
34 #include <linux/init.h>
35 #include <linux/module.h>
36 #include <linux/skbuff.h>
37 #include <linux/slab.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 #include <net/inet6_hashtables.h>
49 #include <net/busy_poll.h>
50
51 #include <linux/proc_fs.h>
52 #include <linux/seq_file.h>
53 #include <trace/events/skb.h>
54 #include "udp_impl.h"
55
56 int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
57 {
58         const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
59         int sk_ipv6only = ipv6_only_sock(sk);
60         int sk2_ipv6only = inet_v6_ipv6only(sk2);
61         int addr_type = ipv6_addr_type(&sk->sk_v6_rcv_saddr);
62         int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
63
64         /* if both are mapped, treat as IPv4 */
65         if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED)
66                 return (!sk2_ipv6only &&
67                         (!sk->sk_rcv_saddr || !sk2->sk_rcv_saddr ||
68                           sk->sk_rcv_saddr == sk2->sk_rcv_saddr));
69
70         if (addr_type2 == IPV6_ADDR_ANY &&
71             !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
72                 return 1;
73
74         if (addr_type == IPV6_ADDR_ANY &&
75             !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
76                 return 1;
77
78         if (sk2_rcv_saddr6 &&
79             ipv6_addr_equal(&sk->sk_v6_rcv_saddr, sk2_rcv_saddr6))
80                 return 1;
81
82         return 0;
83 }
84
85 static unsigned int udp6_portaddr_hash(struct net *net,
86                                        const struct in6_addr *addr6,
87                                        unsigned int port)
88 {
89         unsigned int hash, mix = net_hash_mix(net);
90
91         if (ipv6_addr_any(addr6))
92                 hash = jhash_1word(0, mix);
93         else if (ipv6_addr_v4mapped(addr6))
94                 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
95         else
96                 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
97
98         return hash ^ port;
99 }
100
101
102 int udp_v6_get_port(struct sock *sk, unsigned short snum)
103 {
104         unsigned int hash2_nulladdr =
105                 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
106         unsigned int hash2_partial =
107                 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
108
109         /* precompute partial secondary hash */
110         udp_sk(sk)->udp_portaddr_hash = hash2_partial;
111         return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
112 }
113
114 static void udp_v6_rehash(struct sock *sk)
115 {
116         u16 new_hash = udp6_portaddr_hash(sock_net(sk),
117                                           &sk->sk_v6_rcv_saddr,
118                                           inet_sk(sk)->inet_num);
119
120         udp_lib_rehash(sk, new_hash);
121 }
122
123 static inline int compute_score(struct sock *sk, struct net *net,
124                                 unsigned short hnum,
125                                 const struct in6_addr *saddr, __be16 sport,
126                                 const struct in6_addr *daddr, __be16 dport,
127                                 int dif)
128 {
129         int score = -1;
130
131         if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
132                         sk->sk_family == PF_INET6) {
133                 struct inet_sock *inet = inet_sk(sk);
134
135                 score = 0;
136                 if (inet->inet_dport) {
137                         if (inet->inet_dport != sport)
138                                 return -1;
139                         score++;
140                 }
141                 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
142                         if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
143                                 return -1;
144                         score++;
145                 }
146                 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
147                         if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
148                                 return -1;
149                         score++;
150                 }
151                 if (sk->sk_bound_dev_if) {
152                         if (sk->sk_bound_dev_if != dif)
153                                 return -1;
154                         score++;
155                 }
156         }
157         return score;
158 }
159
160 #define SCORE2_MAX (1 + 1 + 1)
161 static inline int compute_score2(struct sock *sk, struct net *net,
162                                 const struct in6_addr *saddr, __be16 sport,
163                                 const struct in6_addr *daddr, unsigned short hnum,
164                                 int dif)
165 {
166         int score = -1;
167
168         if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
169                         sk->sk_family == PF_INET6) {
170                 struct inet_sock *inet = inet_sk(sk);
171
172                 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
173                         return -1;
174                 score = 0;
175                 if (inet->inet_dport) {
176                         if (inet->inet_dport != sport)
177                                 return -1;
178                         score++;
179                 }
180                 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
181                         if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
182                                 return -1;
183                         score++;
184                 }
185                 if (sk->sk_bound_dev_if) {
186                         if (sk->sk_bound_dev_if != dif)
187                                 return -1;
188                         score++;
189                 }
190         }
191         return score;
192 }
193
194
195 /* called with read_rcu_lock() */
196 static struct sock *udp6_lib_lookup2(struct net *net,
197                 const struct in6_addr *saddr, __be16 sport,
198                 const struct in6_addr *daddr, unsigned int hnum, int dif,
199                 struct udp_hslot *hslot2, unsigned int slot2)
200 {
201         struct sock *sk, *result;
202         struct hlist_nulls_node *node;
203         int score, badness, matches = 0, reuseport = 0;
204         u32 hash = 0;
205
206 begin:
207         result = NULL;
208         badness = -1;
209         udp_portaddr_for_each_entry_rcu(sk, node, &hslot2->head) {
210                 score = compute_score2(sk, net, saddr, sport,
211                                       daddr, hnum, dif);
212                 if (score > badness) {
213                         result = sk;
214                         badness = score;
215                         reuseport = sk->sk_reuseport;
216                         if (reuseport) {
217                                 hash = inet6_ehashfn(net, daddr, hnum,
218                                                      saddr, sport);
219                                 matches = 1;
220                         } else if (score == SCORE2_MAX)
221                                 goto exact_match;
222                 } else if (score == badness && reuseport) {
223                         matches++;
224                         if (((u64)hash * matches) >> 32 == 0)
225                                 result = sk;
226                         hash = next_pseudo_random32(hash);
227                 }
228         }
229         /*
230          * if the nulls value we got at the end of this lookup is
231          * not the expected one, we must restart lookup.
232          * We probably met an item that was moved to another chain.
233          */
234         if (get_nulls_value(node) != slot2)
235                 goto begin;
236
237         if (result) {
238 exact_match:
239                 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
240                         result = NULL;
241                 else if (unlikely(compute_score2(result, net, saddr, sport,
242                                   daddr, hnum, dif) < badness)) {
243                         sock_put(result);
244                         goto begin;
245                 }
246         }
247         return result;
248 }
249
250 struct sock *__udp6_lib_lookup(struct net *net,
251                                       const struct in6_addr *saddr, __be16 sport,
252                                       const struct in6_addr *daddr, __be16 dport,
253                                       int dif, struct udp_table *udptable)
254 {
255         struct sock *sk, *result;
256         struct hlist_nulls_node *node;
257         unsigned short hnum = ntohs(dport);
258         unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
259         struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
260         int score, badness, matches = 0, reuseport = 0;
261         u32 hash = 0;
262
263         rcu_read_lock();
264         if (hslot->count > 10) {
265                 hash2 = udp6_portaddr_hash(net, daddr, hnum);
266                 slot2 = hash2 & udptable->mask;
267                 hslot2 = &udptable->hash2[slot2];
268                 if (hslot->count < hslot2->count)
269                         goto begin;
270
271                 result = udp6_lib_lookup2(net, saddr, sport,
272                                           daddr, hnum, dif,
273                                           hslot2, slot2);
274                 if (!result) {
275                         hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
276                         slot2 = hash2 & udptable->mask;
277                         hslot2 = &udptable->hash2[slot2];
278                         if (hslot->count < hslot2->count)
279                                 goto begin;
280
281                         result = udp6_lib_lookup2(net, saddr, sport,
282                                                   &in6addr_any, hnum, dif,
283                                                   hslot2, slot2);
284                 }
285                 rcu_read_unlock();
286                 return result;
287         }
288 begin:
289         result = NULL;
290         badness = -1;
291         sk_nulls_for_each_rcu(sk, node, &hslot->head) {
292                 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
293                 if (score > badness) {
294                         result = sk;
295                         badness = score;
296                         reuseport = sk->sk_reuseport;
297                         if (reuseport) {
298                                 hash = inet6_ehashfn(net, daddr, hnum,
299                                                      saddr, sport);
300                                 matches = 1;
301                         }
302                 } else if (score == badness && reuseport) {
303                         matches++;
304                         if (((u64)hash * matches) >> 32 == 0)
305                                 result = sk;
306                         hash = next_pseudo_random32(hash);
307                 }
308         }
309         /*
310          * if the nulls value we got at the end of this lookup is
311          * not the expected one, we must restart lookup.
312          * We probably met an item that was moved to another chain.
313          */
314         if (get_nulls_value(node) != slot)
315                 goto begin;
316
317         if (result) {
318                 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
319                         result = NULL;
320                 else if (unlikely(compute_score(result, net, hnum, saddr, sport,
321                                         daddr, dport, dif) < badness)) {
322                         sock_put(result);
323                         goto begin;
324                 }
325         }
326         rcu_read_unlock();
327         return result;
328 }
329 EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
330
331 static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
332                                           __be16 sport, __be16 dport,
333                                           struct udp_table *udptable)
334 {
335         struct sock *sk;
336         const struct ipv6hdr *iph = ipv6_hdr(skb);
337
338         if (unlikely(sk = skb_steal_sock(skb)))
339                 return sk;
340         return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
341                                  &iph->daddr, dport, inet6_iif(skb),
342                                  udptable);
343 }
344
345 struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
346                              const struct in6_addr *daddr, __be16 dport, int dif)
347 {
348         return __udp6_lib_lookup(net, saddr, sport, daddr, dport, dif, &udp_table);
349 }
350 EXPORT_SYMBOL_GPL(udp6_lib_lookup);
351
352
353 /*
354  *      This should be easy, if there is something there we
355  *      return it, otherwise we block.
356  */
357
358 int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
359                   struct msghdr *msg, size_t len,
360                   int noblock, int flags, int *addr_len)
361 {
362         struct ipv6_pinfo *np = inet6_sk(sk);
363         struct inet_sock *inet = inet_sk(sk);
364         struct sk_buff *skb;
365         unsigned int ulen, copied;
366         int peeked, off = 0;
367         int err;
368         int is_udplite = IS_UDPLITE(sk);
369         int is_udp4;
370         bool slow;
371
372         if (addr_len)
373                 *addr_len = sizeof(struct sockaddr_in6);
374
375         if (flags & MSG_ERRQUEUE)
376                 return ipv6_recv_error(sk, msg, len);
377
378         if (np->rxpmtu && np->rxopt.bits.rxpmtu)
379                 return ipv6_recv_rxpmtu(sk, msg, len);
380
381 try_again:
382         skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
383                                   &peeked, &off, &err);
384         if (!skb)
385                 goto out;
386
387         ulen = skb->len - sizeof(struct udphdr);
388         copied = len;
389         if (copied > ulen)
390                 copied = ulen;
391         else if (copied < ulen)
392                 msg->msg_flags |= MSG_TRUNC;
393
394         is_udp4 = (skb->protocol == htons(ETH_P_IP));
395
396         /*
397          * If checksum is needed at all, try to do it while copying the
398          * data.  If the data is truncated, or if we only want a partial
399          * coverage checksum (UDP-Lite), do it before the copy.
400          */
401
402         if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
403                 if (udp_lib_checksum_complete(skb))
404                         goto csum_copy_err;
405         }
406
407         if (skb_csum_unnecessary(skb))
408                 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
409                                               msg->msg_iov, copied);
410         else {
411                 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
412                 if (err == -EINVAL)
413                         goto csum_copy_err;
414         }
415         if (unlikely(err)) {
416                 trace_kfree_skb(skb, udpv6_recvmsg);
417                 if (!peeked) {
418                         atomic_inc(&sk->sk_drops);
419                         if (is_udp4)
420                                 UDP_INC_STATS_USER(sock_net(sk),
421                                                    UDP_MIB_INERRORS,
422                                                    is_udplite);
423                         else
424                                 UDP6_INC_STATS_USER(sock_net(sk),
425                                                     UDP_MIB_INERRORS,
426                                                     is_udplite);
427                 }
428                 goto out_free;
429         }
430         if (!peeked) {
431                 if (is_udp4)
432                         UDP_INC_STATS_USER(sock_net(sk),
433                                         UDP_MIB_INDATAGRAMS, is_udplite);
434                 else
435                         UDP6_INC_STATS_USER(sock_net(sk),
436                                         UDP_MIB_INDATAGRAMS, is_udplite);
437         }
438
439         sock_recv_ts_and_drops(msg, sk, skb);
440
441         /* Copy the address. */
442         if (msg->msg_name) {
443                 struct sockaddr_in6 *sin6;
444
445                 sin6 = (struct sockaddr_in6 *) msg->msg_name;
446                 sin6->sin6_family = AF_INET6;
447                 sin6->sin6_port = udp_hdr(skb)->source;
448                 sin6->sin6_flowinfo = 0;
449
450                 if (is_udp4) {
451                         ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
452                                                &sin6->sin6_addr);
453                         sin6->sin6_scope_id = 0;
454                 } else {
455                         sin6->sin6_addr = ipv6_hdr(skb)->saddr;
456                         sin6->sin6_scope_id =
457                                 ipv6_iface_scope_id(&sin6->sin6_addr,
458                                                     IP6CB(skb)->iif);
459                 }
460
461         }
462         if (is_udp4) {
463                 if (inet->cmsg_flags)
464                         ip_cmsg_recv(msg, skb);
465         } else {
466                 if (np->rxopt.all)
467                         ip6_datagram_recv_ctl(sk, msg, skb);
468         }
469
470         err = copied;
471         if (flags & MSG_TRUNC)
472                 err = ulen;
473
474 out_free:
475         skb_free_datagram_locked(sk, skb);
476 out:
477         return err;
478
479 csum_copy_err:
480         slow = lock_sock_fast(sk);
481         if (!skb_kill_datagram(sk, skb, flags)) {
482                 if (is_udp4) {
483                         UDP_INC_STATS_USER(sock_net(sk),
484                                         UDP_MIB_CSUMERRORS, is_udplite);
485                         UDP_INC_STATS_USER(sock_net(sk),
486                                         UDP_MIB_INERRORS, is_udplite);
487                 } else {
488                         UDP6_INC_STATS_USER(sock_net(sk),
489                                         UDP_MIB_CSUMERRORS, is_udplite);
490                         UDP6_INC_STATS_USER(sock_net(sk),
491                                         UDP_MIB_INERRORS, is_udplite);
492                 }
493         }
494         unlock_sock_fast(sk, slow);
495
496         if (noblock)
497                 return -EAGAIN;
498
499         /* starting over for a new packet */
500         msg->msg_flags &= ~MSG_TRUNC;
501         goto try_again;
502 }
503
504 void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
505                     u8 type, u8 code, int offset, __be32 info,
506                     struct udp_table *udptable)
507 {
508         struct ipv6_pinfo *np;
509         const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
510         const struct in6_addr *saddr = &hdr->saddr;
511         const struct in6_addr *daddr = &hdr->daddr;
512         struct udphdr *uh = (struct udphdr*)(skb->data+offset);
513         struct sock *sk;
514         int err;
515
516         sk = __udp6_lib_lookup(dev_net(skb->dev), daddr, uh->dest,
517                                saddr, uh->source, inet6_iif(skb), udptable);
518         if (sk == NULL)
519                 return;
520
521         if (type == ICMPV6_PKT_TOOBIG)
522                 ip6_sk_update_pmtu(skb, sk, info);
523         if (type == NDISC_REDIRECT) {
524                 ip6_sk_redirect(skb, sk);
525                 goto out;
526         }
527
528         np = inet6_sk(sk);
529
530         if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
531                 goto out;
532
533         if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
534                 goto out;
535
536         if (np->recverr)
537                 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
538
539         sk->sk_err = err;
540         sk->sk_error_report(sk);
541 out:
542         sock_put(sk);
543 }
544
545 static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
546 {
547         int rc;
548
549         if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
550                 sock_rps_save_rxhash(sk, skb);
551                 sk_mark_napi_id(sk, skb);
552         }
553
554         rc = sock_queue_rcv_skb(sk, skb);
555         if (rc < 0) {
556                 int is_udplite = IS_UDPLITE(sk);
557
558                 /* Note that an ENOMEM error is charged twice */
559                 if (rc == -ENOMEM)
560                         UDP6_INC_STATS_BH(sock_net(sk),
561                                         UDP_MIB_RCVBUFERRORS, is_udplite);
562                 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
563                 kfree_skb(skb);
564                 return -1;
565         }
566         return 0;
567 }
568
569 static __inline__ void udpv6_err(struct sk_buff *skb,
570                                  struct inet6_skb_parm *opt, u8 type,
571                                  u8 code, int offset, __be32 info     )
572 {
573         __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
574 }
575
576 static struct static_key udpv6_encap_needed __read_mostly;
577 void udpv6_encap_enable(void)
578 {
579         if (!static_key_enabled(&udpv6_encap_needed))
580                 static_key_slow_inc(&udpv6_encap_needed);
581 }
582 EXPORT_SYMBOL(udpv6_encap_enable);
583
584 int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
585 {
586         struct udp_sock *up = udp_sk(sk);
587         int rc;
588         int is_udplite = IS_UDPLITE(sk);
589
590         if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
591                 goto drop;
592
593         if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
594                 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
595
596                 /*
597                  * This is an encapsulation socket so pass the skb to
598                  * the socket's udp_encap_rcv() hook. Otherwise, just
599                  * fall through and pass this up the UDP socket.
600                  * up->encap_rcv() returns the following value:
601                  * =0 if skb was successfully passed to the encap
602                  *    handler or was discarded by it.
603                  * >0 if skb should be passed on to UDP.
604                  * <0 if skb should be resubmitted as proto -N
605                  */
606
607                 /* if we're overly short, let UDP handle it */
608                 encap_rcv = ACCESS_ONCE(up->encap_rcv);
609                 if (skb->len > sizeof(struct udphdr) && encap_rcv != NULL) {
610                         int ret;
611
612                         ret = encap_rcv(sk, skb);
613                         if (ret <= 0) {
614                                 UDP_INC_STATS_BH(sock_net(sk),
615                                                  UDP_MIB_INDATAGRAMS,
616                                                  is_udplite);
617                                 return -ret;
618                         }
619                 }
620
621                 /* FALLTHROUGH -- it's a UDP Packet */
622         }
623
624         /*
625          * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
626          */
627         if ((is_udplite & UDPLITE_RECV_CC)  &&  UDP_SKB_CB(skb)->partial_cov) {
628
629                 if (up->pcrlen == 0) {          /* full coverage was set  */
630                         LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: partial coverage"
631                                 " %d while full coverage %d requested\n",
632                                 UDP_SKB_CB(skb)->cscov, skb->len);
633                         goto drop;
634                 }
635                 if (UDP_SKB_CB(skb)->cscov  <  up->pcrlen) {
636                         LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: coverage %d "
637                                                     "too small, need min %d\n",
638                                        UDP_SKB_CB(skb)->cscov, up->pcrlen);
639                         goto drop;
640                 }
641         }
642
643         if (rcu_access_pointer(sk->sk_filter)) {
644                 if (udp_lib_checksum_complete(skb))
645                         goto csum_error;
646         }
647
648         if (sk_rcvqueues_full(sk, skb, sk->sk_rcvbuf))
649                 goto drop;
650
651         skb_dst_drop(skb);
652
653         bh_lock_sock(sk);
654         rc = 0;
655         if (!sock_owned_by_user(sk))
656                 rc = __udpv6_queue_rcv_skb(sk, skb);
657         else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
658                 bh_unlock_sock(sk);
659                 goto drop;
660         }
661         bh_unlock_sock(sk);
662
663         return rc;
664 csum_error:
665         UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
666 drop:
667         UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
668         atomic_inc(&sk->sk_drops);
669         kfree_skb(skb);
670         return -1;
671 }
672
673 static struct sock *udp_v6_mcast_next(struct net *net, struct sock *sk,
674                                       __be16 loc_port, const struct in6_addr *loc_addr,
675                                       __be16 rmt_port, const struct in6_addr *rmt_addr,
676                                       int dif)
677 {
678         struct hlist_nulls_node *node;
679         struct sock *s = sk;
680         unsigned short num = ntohs(loc_port);
681
682         sk_nulls_for_each_from(s, node) {
683                 struct inet_sock *inet = inet_sk(s);
684
685                 if (!net_eq(sock_net(s), net))
686                         continue;
687
688                 if (udp_sk(s)->udp_port_hash == num &&
689                     s->sk_family == PF_INET6) {
690                         if (inet->inet_dport) {
691                                 if (inet->inet_dport != rmt_port)
692                                         continue;
693                         }
694                         if (!ipv6_addr_any(&sk->sk_v6_daddr) &&
695                             !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr))
696                                 continue;
697
698                         if (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)
699                                 continue;
700
701                         if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
702                                 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
703                                         continue;
704                         }
705                         if (!inet6_mc_check(s, loc_addr, rmt_addr))
706                                 continue;
707                         return s;
708                 }
709         }
710         return NULL;
711 }
712
713 static void flush_stack(struct sock **stack, unsigned int count,
714                         struct sk_buff *skb, unsigned int final)
715 {
716         struct sk_buff *skb1 = NULL;
717         struct sock *sk;
718         unsigned int i;
719
720         for (i = 0; i < count; i++) {
721                 sk = stack[i];
722                 if (likely(skb1 == NULL))
723                         skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC);
724                 if (!skb1) {
725                         atomic_inc(&sk->sk_drops);
726                         UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_RCVBUFERRORS,
727                                           IS_UDPLITE(sk));
728                         UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS,
729                                           IS_UDPLITE(sk));
730                 }
731
732                 if (skb1 && udpv6_queue_rcv_skb(sk, skb1) <= 0)
733                         skb1 = NULL;
734         }
735         if (unlikely(skb1))
736                 kfree_skb(skb1);
737 }
738 /*
739  * Note: called only from the BH handler context,
740  * so we don't need to lock the hashes.
741  */
742 static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
743                 const struct in6_addr *saddr, const struct in6_addr *daddr,
744                 struct udp_table *udptable)
745 {
746         struct sock *sk, *stack[256 / sizeof(struct sock *)];
747         const struct udphdr *uh = udp_hdr(skb);
748         struct udp_hslot *hslot = udp_hashslot(udptable, net, ntohs(uh->dest));
749         int dif;
750         unsigned int i, count = 0;
751
752         spin_lock(&hslot->lock);
753         sk = sk_nulls_head(&hslot->head);
754         dif = inet6_iif(skb);
755         sk = udp_v6_mcast_next(net, sk, uh->dest, daddr, uh->source, saddr, dif);
756         while (sk) {
757                 stack[count++] = sk;
758                 sk = udp_v6_mcast_next(net, sk_nulls_next(sk), uh->dest, daddr,
759                                        uh->source, saddr, dif);
760                 if (unlikely(count == ARRAY_SIZE(stack))) {
761                         if (!sk)
762                                 break;
763                         flush_stack(stack, count, skb, ~0);
764                         count = 0;
765                 }
766         }
767         /*
768          * before releasing the lock, we must take reference on sockets
769          */
770         for (i = 0; i < count; i++)
771                 sock_hold(stack[i]);
772
773         spin_unlock(&hslot->lock);
774
775         if (count) {
776                 flush_stack(stack, count, skb, count - 1);
777
778                 for (i = 0; i < count; i++)
779                         sock_put(stack[i]);
780         } else {
781                 kfree_skb(skb);
782         }
783         return 0;
784 }
785
786 int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
787                    int proto)
788 {
789         struct net *net = dev_net(skb->dev);
790         struct sock *sk;
791         struct udphdr *uh;
792         const struct in6_addr *saddr, *daddr;
793         u32 ulen = 0;
794
795         if (!pskb_may_pull(skb, sizeof(struct udphdr)))
796                 goto discard;
797
798         saddr = &ipv6_hdr(skb)->saddr;
799         daddr = &ipv6_hdr(skb)->daddr;
800         uh = udp_hdr(skb);
801
802         ulen = ntohs(uh->len);
803         if (ulen > skb->len)
804                 goto short_packet;
805
806         if (proto == IPPROTO_UDP) {
807                 /* UDP validates ulen. */
808
809                 /* Check for jumbo payload */
810                 if (ulen == 0)
811                         ulen = skb->len;
812
813                 if (ulen < sizeof(*uh))
814                         goto short_packet;
815
816                 if (ulen < skb->len) {
817                         if (pskb_trim_rcsum(skb, ulen))
818                                 goto short_packet;
819                         saddr = &ipv6_hdr(skb)->saddr;
820                         daddr = &ipv6_hdr(skb)->daddr;
821                         uh = udp_hdr(skb);
822                 }
823         }
824
825         if (udp6_csum_init(skb, uh, proto))
826                 goto csum_error;
827
828         /*
829          *      Multicast receive code
830          */
831         if (ipv6_addr_is_multicast(daddr))
832                 return __udp6_lib_mcast_deliver(net, skb,
833                                 saddr, daddr, udptable);
834
835         /* Unicast */
836
837         /*
838          * check socket cache ... must talk to Alan about his plans
839          * for sock caches... i'll skip this for now.
840          */
841         sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
842         if (sk != NULL) {
843                 int ret;
844
845                 ret = udpv6_queue_rcv_skb(sk, skb);
846                 sock_put(sk);
847
848                 /* a return value > 0 means to resubmit the input, but
849                  * it wants the return to be -protocol, or 0
850                  */
851                 if (ret > 0)
852                         return -ret;
853
854                 return 0;
855         }
856
857         if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
858                 goto discard;
859
860         if (udp_lib_checksum_complete(skb))
861                 goto csum_error;
862
863         UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
864         icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
865
866         kfree_skb(skb);
867         return 0;
868
869 short_packet:
870         LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
871                        proto == IPPROTO_UDPLITE ? "-Lite" : "",
872                        saddr,
873                        ntohs(uh->source),
874                        ulen,
875                        skb->len,
876                        daddr,
877                        ntohs(uh->dest));
878         goto discard;
879 csum_error:
880         UDP6_INC_STATS_BH(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
881 discard:
882         UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
883         kfree_skb(skb);
884         return 0;
885 }
886
887 static __inline__ int udpv6_rcv(struct sk_buff *skb)
888 {
889         return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
890 }
891
892 /*
893  * Throw away all pending data and cancel the corking. Socket is locked.
894  */
895 static void udp_v6_flush_pending_frames(struct sock *sk)
896 {
897         struct udp_sock *up = udp_sk(sk);
898
899         if (up->pending == AF_INET)
900                 udp_flush_pending_frames(sk);
901         else if (up->pending) {
902                 up->len = 0;
903                 up->pending = 0;
904                 ip6_flush_pending_frames(sk);
905         }
906 }
907
908 /**
909  *      udp6_hwcsum_outgoing  -  handle outgoing HW checksumming
910  *      @sk:    socket we are sending on
911  *      @skb:   sk_buff containing the filled-in UDP header
912  *              (checksum field must be zeroed out)
913  */
914 static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
915                                  const struct in6_addr *saddr,
916                                  const struct in6_addr *daddr, int len)
917 {
918         unsigned int offset;
919         struct udphdr *uh = udp_hdr(skb);
920         __wsum csum = 0;
921
922         if (skb_queue_len(&sk->sk_write_queue) == 1) {
923                 /* Only one fragment on the socket.  */
924                 skb->csum_start = skb_transport_header(skb) - skb->head;
925                 skb->csum_offset = offsetof(struct udphdr, check);
926                 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
927         } else {
928                 /*
929                  * HW-checksum won't work as there are two or more
930                  * fragments on the socket so that all csums of sk_buffs
931                  * should be together
932                  */
933                 offset = skb_transport_offset(skb);
934                 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
935
936                 skb->ip_summed = CHECKSUM_NONE;
937
938                 skb_queue_walk(&sk->sk_write_queue, skb) {
939                         csum = csum_add(csum, skb->csum);
940                 }
941
942                 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
943                                             csum);
944                 if (uh->check == 0)
945                         uh->check = CSUM_MANGLED_0;
946         }
947 }
948
949 /*
950  *      Sending
951  */
952
953 static int udp_v6_push_pending_frames(struct sock *sk)
954 {
955         struct sk_buff *skb;
956         struct udphdr *uh;
957         struct udp_sock  *up = udp_sk(sk);
958         struct inet_sock *inet = inet_sk(sk);
959         struct flowi6 *fl6;
960         int err = 0;
961         int is_udplite = IS_UDPLITE(sk);
962         __wsum csum = 0;
963
964         if (up->pending == AF_INET)
965                 return udp_push_pending_frames(sk);
966
967         fl6 = &inet->cork.fl.u.ip6;
968
969         /* Grab the skbuff where UDP header space exists. */
970         if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
971                 goto out;
972
973         /*
974          * Create a UDP header
975          */
976         uh = udp_hdr(skb);
977         uh->source = fl6->fl6_sport;
978         uh->dest = fl6->fl6_dport;
979         uh->len = htons(up->len);
980         uh->check = 0;
981
982         if (is_udplite)
983                 csum = udplite_csum_outgoing(sk, skb);
984         else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
985                 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr,
986                                      up->len);
987                 goto send;
988         } else
989                 csum = udp_csum_outgoing(sk, skb);
990
991         /* add protocol-dependent pseudo-header */
992         uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
993                                     up->len, fl6->flowi6_proto, csum);
994         if (uh->check == 0)
995                 uh->check = CSUM_MANGLED_0;
996
997 send:
998         err = ip6_push_pending_frames(sk);
999         if (err) {
1000                 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
1001                         UDP6_INC_STATS_USER(sock_net(sk),
1002                                             UDP_MIB_SNDBUFERRORS, is_udplite);
1003                         err = 0;
1004                 }
1005         } else
1006                 UDP6_INC_STATS_USER(sock_net(sk),
1007                                     UDP_MIB_OUTDATAGRAMS, is_udplite);
1008 out:
1009         up->len = 0;
1010         up->pending = 0;
1011         return err;
1012 }
1013
1014 int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
1015                   struct msghdr *msg, size_t len)
1016 {
1017         struct ipv6_txoptions opt_space;
1018         struct udp_sock *up = udp_sk(sk);
1019         struct inet_sock *inet = inet_sk(sk);
1020         struct ipv6_pinfo *np = inet6_sk(sk);
1021         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
1022         struct in6_addr *daddr, *final_p, final;
1023         struct ipv6_txoptions *opt = NULL;
1024         struct ip6_flowlabel *flowlabel = NULL;
1025         struct flowi6 fl6;
1026         struct dst_entry *dst;
1027         int addr_len = msg->msg_namelen;
1028         int ulen = len;
1029         int hlimit = -1;
1030         int tclass = -1;
1031         int dontfrag = -1;
1032         int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1033         int err;
1034         int connected = 0;
1035         int is_udplite = IS_UDPLITE(sk);
1036         int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
1037
1038         /* destination address check */
1039         if (sin6) {
1040                 if (addr_len < offsetof(struct sockaddr, sa_data))
1041                         return -EINVAL;
1042
1043                 switch (sin6->sin6_family) {
1044                 case AF_INET6:
1045                         if (addr_len < SIN6_LEN_RFC2133)
1046                                 return -EINVAL;
1047                         daddr = &sin6->sin6_addr;
1048                         break;
1049                 case AF_INET:
1050                         goto do_udp_sendmsg;
1051                 case AF_UNSPEC:
1052                         msg->msg_name = sin6 = NULL;
1053                         msg->msg_namelen = addr_len = 0;
1054                         daddr = NULL;
1055                         break;
1056                 default:
1057                         return -EINVAL;
1058                 }
1059         } else if (!up->pending) {
1060                 if (sk->sk_state != TCP_ESTABLISHED)
1061                         return -EDESTADDRREQ;
1062                 daddr = &sk->sk_v6_daddr;
1063         } else
1064                 daddr = NULL;
1065
1066         if (daddr) {
1067                 if (ipv6_addr_v4mapped(daddr)) {
1068                         struct sockaddr_in sin;
1069                         sin.sin_family = AF_INET;
1070                         sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
1071                         sin.sin_addr.s_addr = daddr->s6_addr32[3];
1072                         msg->msg_name = &sin;
1073                         msg->msg_namelen = sizeof(sin);
1074 do_udp_sendmsg:
1075                         if (__ipv6_only_sock(sk))
1076                                 return -ENETUNREACH;
1077                         return udp_sendmsg(iocb, sk, msg, len);
1078                 }
1079         }
1080
1081         if (up->pending == AF_INET)
1082                 return udp_sendmsg(iocb, sk, msg, len);
1083
1084         /* Rough check on arithmetic overflow,
1085            better check is made in ip6_append_data().
1086            */
1087         if (len > INT_MAX - sizeof(struct udphdr))
1088                 return -EMSGSIZE;
1089
1090         if (up->pending) {
1091                 /*
1092                  * There are pending frames.
1093                  * The socket lock must be held while it's corked.
1094                  */
1095                 lock_sock(sk);
1096                 if (likely(up->pending)) {
1097                         if (unlikely(up->pending != AF_INET6)) {
1098                                 release_sock(sk);
1099                                 return -EAFNOSUPPORT;
1100                         }
1101                         dst = NULL;
1102                         goto do_append_data;
1103                 }
1104                 release_sock(sk);
1105         }
1106         ulen += sizeof(struct udphdr);
1107
1108         memset(&fl6, 0, sizeof(fl6));
1109
1110         if (sin6) {
1111                 if (sin6->sin6_port == 0)
1112                         return -EINVAL;
1113
1114                 fl6.fl6_dport = sin6->sin6_port;
1115                 daddr = &sin6->sin6_addr;
1116
1117                 if (np->sndflow) {
1118                         fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1119                         if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1120                                 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
1121                                 if (flowlabel == NULL)
1122                                         return -EINVAL;
1123                                 daddr = &flowlabel->dst;
1124                         }
1125                 }
1126
1127                 /*
1128                  * Otherwise it will be difficult to maintain
1129                  * sk->sk_dst_cache.
1130                  */
1131                 if (sk->sk_state == TCP_ESTABLISHED &&
1132                     ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1133                         daddr = &sk->sk_v6_daddr;
1134
1135                 if (addr_len >= sizeof(struct sockaddr_in6) &&
1136                     sin6->sin6_scope_id &&
1137                     __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
1138                         fl6.flowi6_oif = sin6->sin6_scope_id;
1139         } else {
1140                 if (sk->sk_state != TCP_ESTABLISHED)
1141                         return -EDESTADDRREQ;
1142
1143                 fl6.fl6_dport = inet->inet_dport;
1144                 daddr = &sk->sk_v6_daddr;
1145                 fl6.flowlabel = np->flow_label;
1146                 connected = 1;
1147         }
1148
1149         if (!fl6.flowi6_oif)
1150                 fl6.flowi6_oif = sk->sk_bound_dev_if;
1151
1152         if (!fl6.flowi6_oif)
1153                 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
1154
1155         fl6.flowi6_mark = sk->sk_mark;
1156
1157         if (msg->msg_controllen) {
1158                 opt = &opt_space;
1159                 memset(opt, 0, sizeof(struct ipv6_txoptions));
1160                 opt->tot_len = sizeof(*opt);
1161
1162                 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
1163                                             &hlimit, &tclass, &dontfrag);
1164                 if (err < 0) {
1165                         fl6_sock_release(flowlabel);
1166                         return err;
1167                 }
1168                 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1169                         flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
1170                         if (flowlabel == NULL)
1171                                 return -EINVAL;
1172                 }
1173                 if (!(opt->opt_nflen|opt->opt_flen))
1174                         opt = NULL;
1175                 connected = 0;
1176         }
1177         if (opt == NULL)
1178                 opt = np->opt;
1179         if (flowlabel)
1180                 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1181         opt = ipv6_fixup_options(&opt_space, opt);
1182
1183         fl6.flowi6_proto = sk->sk_protocol;
1184         if (!ipv6_addr_any(daddr))
1185                 fl6.daddr = *daddr;
1186         else
1187                 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1188         if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
1189                 fl6.saddr = np->saddr;
1190         fl6.fl6_sport = inet->inet_sport;
1191
1192         final_p = fl6_update_dst(&fl6, opt, &final);
1193         if (final_p)
1194                 connected = 0;
1195
1196         if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1197                 fl6.flowi6_oif = np->mcast_oif;
1198                 connected = 0;
1199         } else if (!fl6.flowi6_oif)
1200                 fl6.flowi6_oif = np->ucast_oif;
1201
1202         security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
1203
1204         dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p, true);
1205         if (IS_ERR(dst)) {
1206                 err = PTR_ERR(dst);
1207                 dst = NULL;
1208                 goto out;
1209         }
1210
1211         if (hlimit < 0) {
1212                 if (ipv6_addr_is_multicast(&fl6.daddr))
1213                         hlimit = np->mcast_hops;
1214                 else
1215                         hlimit = np->hop_limit;
1216                 if (hlimit < 0)
1217                         hlimit = ip6_dst_hoplimit(dst);
1218         }
1219
1220         if (tclass < 0)
1221                 tclass = np->tclass;
1222
1223         if (dontfrag < 0)
1224                 dontfrag = np->dontfrag;
1225
1226         if (msg->msg_flags&MSG_CONFIRM)
1227                 goto do_confirm;
1228 back_from_confirm:
1229
1230         lock_sock(sk);
1231         if (unlikely(up->pending)) {
1232                 /* The socket is already corked while preparing it. */
1233                 /* ... which is an evident application bug. --ANK */
1234                 release_sock(sk);
1235
1236                 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
1237                 err = -EINVAL;
1238                 goto out;
1239         }
1240
1241         up->pending = AF_INET6;
1242
1243 do_append_data:
1244         up->len += ulen;
1245         getfrag  =  is_udplite ?  udplite_getfrag : ip_generic_getfrag;
1246         err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
1247                 sizeof(struct udphdr), hlimit, tclass, opt, &fl6,
1248                 (struct rt6_info*)dst,
1249                 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, dontfrag);
1250         if (err)
1251                 udp_v6_flush_pending_frames(sk);
1252         else if (!corkreq)
1253                 err = udp_v6_push_pending_frames(sk);
1254         else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1255                 up->pending = 0;
1256
1257         if (dst) {
1258                 if (connected) {
1259                         ip6_dst_store(sk, dst,
1260                                       ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1261                                       &sk->sk_v6_daddr : NULL,
1262 #ifdef CONFIG_IPV6_SUBTREES
1263                                       ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
1264                                       &np->saddr :
1265 #endif
1266                                       NULL);
1267                 } else {
1268                         dst_release(dst);
1269                 }
1270                 dst = NULL;
1271         }
1272
1273         if (err > 0)
1274                 err = np->recverr ? net_xmit_errno(err) : 0;
1275         release_sock(sk);
1276 out:
1277         dst_release(dst);
1278         fl6_sock_release(flowlabel);
1279         if (!err)
1280                 return len;
1281         /*
1282          * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space.  Reporting
1283          * ENOBUFS might not be good (it's not tunable per se), but otherwise
1284          * we don't have a good statistic (IpOutDiscards but it can be too many
1285          * things).  We could add another new stat but at least for now that
1286          * seems like overkill.
1287          */
1288         if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
1289                 UDP6_INC_STATS_USER(sock_net(sk),
1290                                 UDP_MIB_SNDBUFERRORS, is_udplite);
1291         }
1292         return err;
1293
1294 do_confirm:
1295         dst_confirm(dst);
1296         if (!(msg->msg_flags&MSG_PROBE) || len)
1297                 goto back_from_confirm;
1298         err = 0;
1299         goto out;
1300 }
1301
1302 void udpv6_destroy_sock(struct sock *sk)
1303 {
1304         struct udp_sock *up = udp_sk(sk);
1305         lock_sock(sk);
1306         udp_v6_flush_pending_frames(sk);
1307         release_sock(sk);
1308
1309         if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1310                 void (*encap_destroy)(struct sock *sk);
1311                 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1312                 if (encap_destroy)
1313                         encap_destroy(sk);
1314         }
1315
1316         inet6_destroy_sock(sk);
1317 }
1318
1319 /*
1320  *      Socket option code for UDP
1321  */
1322 int udpv6_setsockopt(struct sock *sk, int level, int optname,
1323                      char __user *optval, unsigned int optlen)
1324 {
1325         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1326                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1327                                           udp_v6_push_pending_frames);
1328         return ipv6_setsockopt(sk, level, optname, optval, optlen);
1329 }
1330
1331 #ifdef CONFIG_COMPAT
1332 int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
1333                             char __user *optval, unsigned int optlen)
1334 {
1335         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1336                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1337                                           udp_v6_push_pending_frames);
1338         return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
1339 }
1340 #endif
1341
1342 int udpv6_getsockopt(struct sock *sk, int level, int optname,
1343                      char __user *optval, int __user *optlen)
1344 {
1345         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1346                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1347         return ipv6_getsockopt(sk, level, optname, optval, optlen);
1348 }
1349
1350 #ifdef CONFIG_COMPAT
1351 int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1352                             char __user *optval, int __user *optlen)
1353 {
1354         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1355                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1356         return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
1357 }
1358 #endif
1359
1360 static const struct inet6_protocol udpv6_protocol = {
1361         .handler        =       udpv6_rcv,
1362         .err_handler    =       udpv6_err,
1363         .flags          =       INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1364 };
1365
1366 /* ------------------------------------------------------------------------ */
1367 #ifdef CONFIG_PROC_FS
1368 int udp6_seq_show(struct seq_file *seq, void *v)
1369 {
1370         if (v == SEQ_START_TOKEN) {
1371                 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1372         } else {
1373                 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1374                 struct inet_sock *inet = inet_sk(v);
1375                 __u16 srcp = ntohs(inet->inet_sport);
1376                 __u16 destp = ntohs(inet->inet_dport);
1377                 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1378         }
1379         return 0;
1380 }
1381
1382 static const struct file_operations udp6_afinfo_seq_fops = {
1383         .owner    = THIS_MODULE,
1384         .open     = udp_seq_open,
1385         .read     = seq_read,
1386         .llseek   = seq_lseek,
1387         .release  = seq_release_net
1388 };
1389
1390 static struct udp_seq_afinfo udp6_seq_afinfo = {
1391         .name           = "udp6",
1392         .family         = AF_INET6,
1393         .udp_table      = &udp_table,
1394         .seq_fops       = &udp6_afinfo_seq_fops,
1395         .seq_ops        = {
1396                 .show           = udp6_seq_show,
1397         },
1398 };
1399
1400 int __net_init udp6_proc_init(struct net *net)
1401 {
1402         return udp_proc_register(net, &udp6_seq_afinfo);
1403 }
1404
1405 void udp6_proc_exit(struct net *net) {
1406         udp_proc_unregister(net, &udp6_seq_afinfo);
1407 }
1408 #endif /* CONFIG_PROC_FS */
1409
1410 void udp_v6_clear_sk(struct sock *sk, int size)
1411 {
1412         struct inet_sock *inet = inet_sk(sk);
1413
1414         /* we do not want to clear pinet6 field, because of RCU lookups */
1415         sk_prot_clear_portaddr_nulls(sk, offsetof(struct inet_sock, pinet6));
1416
1417         size -= offsetof(struct inet_sock, pinet6) + sizeof(inet->pinet6);
1418         memset(&inet->pinet6 + 1, 0, size);
1419 }
1420
1421 /* ------------------------------------------------------------------------ */
1422
1423 struct proto udpv6_prot = {
1424         .name              = "UDPv6",
1425         .owner             = THIS_MODULE,
1426         .close             = udp_lib_close,
1427         .connect           = ip6_datagram_connect,
1428         .disconnect        = udp_disconnect,
1429         .ioctl             = udp_ioctl,
1430         .destroy           = udpv6_destroy_sock,
1431         .setsockopt        = udpv6_setsockopt,
1432         .getsockopt        = udpv6_getsockopt,
1433         .sendmsg           = udpv6_sendmsg,
1434         .recvmsg           = udpv6_recvmsg,
1435         .backlog_rcv       = __udpv6_queue_rcv_skb,
1436         .hash              = udp_lib_hash,
1437         .unhash            = udp_lib_unhash,
1438         .rehash            = udp_v6_rehash,
1439         .get_port          = udp_v6_get_port,
1440         .memory_allocated  = &udp_memory_allocated,
1441         .sysctl_mem        = sysctl_udp_mem,
1442         .sysctl_wmem       = &sysctl_udp_wmem_min,
1443         .sysctl_rmem       = &sysctl_udp_rmem_min,
1444         .obj_size          = sizeof(struct udp6_sock),
1445         .slab_flags        = SLAB_DESTROY_BY_RCU,
1446         .h.udp_table       = &udp_table,
1447 #ifdef CONFIG_COMPAT
1448         .compat_setsockopt = compat_udpv6_setsockopt,
1449         .compat_getsockopt = compat_udpv6_getsockopt,
1450 #endif
1451         .clear_sk          = udp_v6_clear_sk,
1452 };
1453
1454 static struct inet_protosw udpv6_protosw = {
1455         .type =      SOCK_DGRAM,
1456         .protocol =  IPPROTO_UDP,
1457         .prot =      &udpv6_prot,
1458         .ops =       &inet6_dgram_ops,
1459         .no_check =  UDP_CSUM_DEFAULT,
1460         .flags =     INET_PROTOSW_PERMANENT,
1461 };
1462
1463
1464 int __init udpv6_init(void)
1465 {
1466         int ret;
1467
1468         ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1469         if (ret)
1470                 goto out;
1471
1472         ret = inet6_register_protosw(&udpv6_protosw);
1473         if (ret)
1474                 goto out_udpv6_protocol;
1475 out:
1476         return ret;
1477
1478 out_udpv6_protocol:
1479         inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1480         goto out;
1481 }
1482
1483 void udpv6_exit(void)
1484 {
1485         inet6_unregister_protosw(&udpv6_protosw);
1486         inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1487 }