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