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