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