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