OSDN Git Service

udp: Handle ICMP errors for tunnels with same destination port on both endpoints
[tomoyo/tomoyo-test1.git] / net / ipv4 / udp.c
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              The User Datagram Protocol (UDP).
7  *
8  * Authors:     Ross Biro
9  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10  *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
11  *              Alan Cox, <alan@lxorguk.ukuu.org.uk>
12  *              Hirokazu Takahashi, <taka@valinux.co.jp>
13  *
14  * Fixes:
15  *              Alan Cox        :       verify_area() calls
16  *              Alan Cox        :       stopped close while in use off icmp
17  *                                      messages. Not a fix but a botch that
18  *                                      for udp at least is 'valid'.
19  *              Alan Cox        :       Fixed icmp handling properly
20  *              Alan Cox        :       Correct error for oversized datagrams
21  *              Alan Cox        :       Tidied select() semantics.
22  *              Alan Cox        :       udp_err() fixed properly, also now
23  *                                      select and read wake correctly on errors
24  *              Alan Cox        :       udp_send verify_area moved to avoid mem leak
25  *              Alan Cox        :       UDP can count its memory
26  *              Alan Cox        :       send to an unknown connection causes
27  *                                      an ECONNREFUSED off the icmp, but
28  *                                      does NOT close.
29  *              Alan Cox        :       Switched to new sk_buff handlers. No more backlog!
30  *              Alan Cox        :       Using generic datagram code. Even smaller and the PEEK
31  *                                      bug no longer crashes it.
32  *              Fred Van Kempen :       Net2e support for sk->broadcast.
33  *              Alan Cox        :       Uses skb_free_datagram
34  *              Alan Cox        :       Added get/set sockopt support.
35  *              Alan Cox        :       Broadcasting without option set returns EACCES.
36  *              Alan Cox        :       No wakeup calls. Instead we now use the callbacks.
37  *              Alan Cox        :       Use ip_tos and ip_ttl
38  *              Alan Cox        :       SNMP Mibs
39  *              Alan Cox        :       MSG_DONTROUTE, and 0.0.0.0 support.
40  *              Matt Dillon     :       UDP length checks.
41  *              Alan Cox        :       Smarter af_inet used properly.
42  *              Alan Cox        :       Use new kernel side addressing.
43  *              Alan Cox        :       Incorrect return on truncated datagram receive.
44  *      Arnt Gulbrandsen        :       New udp_send and stuff
45  *              Alan Cox        :       Cache last socket
46  *              Alan Cox        :       Route cache
47  *              Jon Peatfield   :       Minor efficiency fix to sendto().
48  *              Mike Shaver     :       RFC1122 checks.
49  *              Alan Cox        :       Nonblocking error fix.
50  *      Willy Konynenberg       :       Transparent proxying support.
51  *              Mike McLagan    :       Routing by source
52  *              David S. Miller :       New socket lookup architecture.
53  *                                      Last socket cache retained as it
54  *                                      does have a high hit rate.
55  *              Olaf Kirch      :       Don't linearise iovec on sendmsg.
56  *              Andi Kleen      :       Some cleanups, cache destination entry
57  *                                      for connect.
58  *      Vitaly E. Lavrov        :       Transparent proxy revived after year coma.
59  *              Melvin Smith    :       Check msg_name not msg_namelen in sendto(),
60  *                                      return ENOTCONN for unconnected sockets (POSIX)
61  *              Janos Farkas    :       don't deliver multi/broadcasts to a different
62  *                                      bound-to-device socket
63  *      Hirokazu Takahashi      :       HW checksumming for outgoing UDP
64  *                                      datagrams.
65  *      Hirokazu Takahashi      :       sendfile() on UDP works now.
66  *              Arnaldo C. Melo :       convert /proc/net/udp to seq_file
67  *      YOSHIFUJI Hideaki @USAGI and:   Support IPV6_V6ONLY socket option, which
68  *      Alexey Kuznetsov:               allow both IPv4 and IPv6 sockets to bind
69  *                                      a single port at the same time.
70  *      Derek Atkins <derek@ihtfp.com>: Add Encapulation Support
71  *      James Chapman           :       Add L2TP encapsulation type.
72  *
73  *
74  *              This program is free software; you can redistribute it and/or
75  *              modify it under the terms of the GNU General Public License
76  *              as published by the Free Software Foundation; either version
77  *              2 of the License, or (at your option) any later version.
78  */
79
80 #define pr_fmt(fmt) "UDP: " fmt
81
82 #include <linux/uaccess.h>
83 #include <asm/ioctls.h>
84 #include <linux/memblock.h>
85 #include <linux/highmem.h>
86 #include <linux/swap.h>
87 #include <linux/types.h>
88 #include <linux/fcntl.h>
89 #include <linux/module.h>
90 #include <linux/socket.h>
91 #include <linux/sockios.h>
92 #include <linux/igmp.h>
93 #include <linux/inetdevice.h>
94 #include <linux/in.h>
95 #include <linux/errno.h>
96 #include <linux/timer.h>
97 #include <linux/mm.h>
98 #include <linux/inet.h>
99 #include <linux/netdevice.h>
100 #include <linux/slab.h>
101 #include <net/tcp_states.h>
102 #include <linux/skbuff.h>
103 #include <linux/proc_fs.h>
104 #include <linux/seq_file.h>
105 #include <net/net_namespace.h>
106 #include <net/icmp.h>
107 #include <net/inet_hashtables.h>
108 #include <net/route.h>
109 #include <net/checksum.h>
110 #include <net/xfrm.h>
111 #include <trace/events/udp.h>
112 #include <linux/static_key.h>
113 #include <trace/events/skb.h>
114 #include <net/busy_poll.h>
115 #include "udp_impl.h"
116 #include <net/sock_reuseport.h>
117 #include <net/addrconf.h>
118 #include <net/udp_tunnel.h>
119
120 struct udp_table udp_table __read_mostly;
121 EXPORT_SYMBOL(udp_table);
122
123 long sysctl_udp_mem[3] __read_mostly;
124 EXPORT_SYMBOL(sysctl_udp_mem);
125
126 atomic_long_t udp_memory_allocated;
127 EXPORT_SYMBOL(udp_memory_allocated);
128
129 #define MAX_UDP_PORTS 65536
130 #define PORTS_PER_CHAIN (MAX_UDP_PORTS / UDP_HTABLE_SIZE_MIN)
131
132 /* IPCB reference means this can not be used from early demux */
133 static bool udp_lib_exact_dif_match(struct net *net, struct sk_buff *skb)
134 {
135 #if IS_ENABLED(CONFIG_NET_L3_MASTER_DEV)
136         if (!net->ipv4.sysctl_udp_l3mdev_accept &&
137             skb && ipv4_l3mdev_skb(IPCB(skb)->flags))
138                 return true;
139 #endif
140         return false;
141 }
142
143 static int udp_lib_lport_inuse(struct net *net, __u16 num,
144                                const struct udp_hslot *hslot,
145                                unsigned long *bitmap,
146                                struct sock *sk, unsigned int log)
147 {
148         struct sock *sk2;
149         kuid_t uid = sock_i_uid(sk);
150
151         sk_for_each(sk2, &hslot->head) {
152                 if (net_eq(sock_net(sk2), net) &&
153                     sk2 != sk &&
154                     (bitmap || udp_sk(sk2)->udp_port_hash == num) &&
155                     (!sk2->sk_reuse || !sk->sk_reuse) &&
156                     (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if ||
157                      sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
158                     inet_rcv_saddr_equal(sk, sk2, true)) {
159                         if (sk2->sk_reuseport && sk->sk_reuseport &&
160                             !rcu_access_pointer(sk->sk_reuseport_cb) &&
161                             uid_eq(uid, sock_i_uid(sk2))) {
162                                 if (!bitmap)
163                                         return 0;
164                         } else {
165                                 if (!bitmap)
166                                         return 1;
167                                 __set_bit(udp_sk(sk2)->udp_port_hash >> log,
168                                           bitmap);
169                         }
170                 }
171         }
172         return 0;
173 }
174
175 /*
176  * Note: we still hold spinlock of primary hash chain, so no other writer
177  * can insert/delete a socket with local_port == num
178  */
179 static int udp_lib_lport_inuse2(struct net *net, __u16 num,
180                                 struct udp_hslot *hslot2,
181                                 struct sock *sk)
182 {
183         struct sock *sk2;
184         kuid_t uid = sock_i_uid(sk);
185         int res = 0;
186
187         spin_lock(&hslot2->lock);
188         udp_portaddr_for_each_entry(sk2, &hslot2->head) {
189                 if (net_eq(sock_net(sk2), net) &&
190                     sk2 != sk &&
191                     (udp_sk(sk2)->udp_port_hash == num) &&
192                     (!sk2->sk_reuse || !sk->sk_reuse) &&
193                     (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if ||
194                      sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
195                     inet_rcv_saddr_equal(sk, sk2, true)) {
196                         if (sk2->sk_reuseport && sk->sk_reuseport &&
197                             !rcu_access_pointer(sk->sk_reuseport_cb) &&
198                             uid_eq(uid, sock_i_uid(sk2))) {
199                                 res = 0;
200                         } else {
201                                 res = 1;
202                         }
203                         break;
204                 }
205         }
206         spin_unlock(&hslot2->lock);
207         return res;
208 }
209
210 static int udp_reuseport_add_sock(struct sock *sk, struct udp_hslot *hslot)
211 {
212         struct net *net = sock_net(sk);
213         kuid_t uid = sock_i_uid(sk);
214         struct sock *sk2;
215
216         sk_for_each(sk2, &hslot->head) {
217                 if (net_eq(sock_net(sk2), net) &&
218                     sk2 != sk &&
219                     sk2->sk_family == sk->sk_family &&
220                     ipv6_only_sock(sk2) == ipv6_only_sock(sk) &&
221                     (udp_sk(sk2)->udp_port_hash == udp_sk(sk)->udp_port_hash) &&
222                     (sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
223                     sk2->sk_reuseport && uid_eq(uid, sock_i_uid(sk2)) &&
224                     inet_rcv_saddr_equal(sk, sk2, false)) {
225                         return reuseport_add_sock(sk, sk2,
226                                                   inet_rcv_saddr_any(sk));
227                 }
228         }
229
230         return reuseport_alloc(sk, inet_rcv_saddr_any(sk));
231 }
232
233 /**
234  *  udp_lib_get_port  -  UDP/-Lite port lookup for IPv4 and IPv6
235  *
236  *  @sk:          socket struct in question
237  *  @snum:        port number to look up
238  *  @hash2_nulladdr: AF-dependent hash value in secondary hash chains,
239  *                   with NULL address
240  */
241 int udp_lib_get_port(struct sock *sk, unsigned short snum,
242                      unsigned int hash2_nulladdr)
243 {
244         struct udp_hslot *hslot, *hslot2;
245         struct udp_table *udptable = sk->sk_prot->h.udp_table;
246         int    error = 1;
247         struct net *net = sock_net(sk);
248
249         if (!snum) {
250                 int low, high, remaining;
251                 unsigned int rand;
252                 unsigned short first, last;
253                 DECLARE_BITMAP(bitmap, PORTS_PER_CHAIN);
254
255                 inet_get_local_port_range(net, &low, &high);
256                 remaining = (high - low) + 1;
257
258                 rand = prandom_u32();
259                 first = reciprocal_scale(rand, remaining) + low;
260                 /*
261                  * force rand to be an odd multiple of UDP_HTABLE_SIZE
262                  */
263                 rand = (rand | 1) * (udptable->mask + 1);
264                 last = first + udptable->mask + 1;
265                 do {
266                         hslot = udp_hashslot(udptable, net, first);
267                         bitmap_zero(bitmap, PORTS_PER_CHAIN);
268                         spin_lock_bh(&hslot->lock);
269                         udp_lib_lport_inuse(net, snum, hslot, bitmap, sk,
270                                             udptable->log);
271
272                         snum = first;
273                         /*
274                          * Iterate on all possible values of snum for this hash.
275                          * Using steps of an odd multiple of UDP_HTABLE_SIZE
276                          * give us randomization and full range coverage.
277                          */
278                         do {
279                                 if (low <= snum && snum <= high &&
280                                     !test_bit(snum >> udptable->log, bitmap) &&
281                                     !inet_is_local_reserved_port(net, snum))
282                                         goto found;
283                                 snum += rand;
284                         } while (snum != first);
285                         spin_unlock_bh(&hslot->lock);
286                         cond_resched();
287                 } while (++first != last);
288                 goto fail;
289         } else {
290                 hslot = udp_hashslot(udptable, net, snum);
291                 spin_lock_bh(&hslot->lock);
292                 if (hslot->count > 10) {
293                         int exist;
294                         unsigned int slot2 = udp_sk(sk)->udp_portaddr_hash ^ snum;
295
296                         slot2          &= udptable->mask;
297                         hash2_nulladdr &= udptable->mask;
298
299                         hslot2 = udp_hashslot2(udptable, slot2);
300                         if (hslot->count < hslot2->count)
301                                 goto scan_primary_hash;
302
303                         exist = udp_lib_lport_inuse2(net, snum, hslot2, sk);
304                         if (!exist && (hash2_nulladdr != slot2)) {
305                                 hslot2 = udp_hashslot2(udptable, hash2_nulladdr);
306                                 exist = udp_lib_lport_inuse2(net, snum, hslot2,
307                                                              sk);
308                         }
309                         if (exist)
310                                 goto fail_unlock;
311                         else
312                                 goto found;
313                 }
314 scan_primary_hash:
315                 if (udp_lib_lport_inuse(net, snum, hslot, NULL, sk, 0))
316                         goto fail_unlock;
317         }
318 found:
319         inet_sk(sk)->inet_num = snum;
320         udp_sk(sk)->udp_port_hash = snum;
321         udp_sk(sk)->udp_portaddr_hash ^= snum;
322         if (sk_unhashed(sk)) {
323                 if (sk->sk_reuseport &&
324                     udp_reuseport_add_sock(sk, hslot)) {
325                         inet_sk(sk)->inet_num = 0;
326                         udp_sk(sk)->udp_port_hash = 0;
327                         udp_sk(sk)->udp_portaddr_hash ^= snum;
328                         goto fail_unlock;
329                 }
330
331                 sk_add_node_rcu(sk, &hslot->head);
332                 hslot->count++;
333                 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
334
335                 hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash);
336                 spin_lock(&hslot2->lock);
337                 if (IS_ENABLED(CONFIG_IPV6) && sk->sk_reuseport &&
338                     sk->sk_family == AF_INET6)
339                         hlist_add_tail_rcu(&udp_sk(sk)->udp_portaddr_node,
340                                            &hslot2->head);
341                 else
342                         hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node,
343                                            &hslot2->head);
344                 hslot2->count++;
345                 spin_unlock(&hslot2->lock);
346         }
347         sock_set_flag(sk, SOCK_RCU_FREE);
348         error = 0;
349 fail_unlock:
350         spin_unlock_bh(&hslot->lock);
351 fail:
352         return error;
353 }
354 EXPORT_SYMBOL(udp_lib_get_port);
355
356 int udp_v4_get_port(struct sock *sk, unsigned short snum)
357 {
358         unsigned int hash2_nulladdr =
359                 ipv4_portaddr_hash(sock_net(sk), htonl(INADDR_ANY), snum);
360         unsigned int hash2_partial =
361                 ipv4_portaddr_hash(sock_net(sk), inet_sk(sk)->inet_rcv_saddr, 0);
362
363         /* precompute partial secondary hash */
364         udp_sk(sk)->udp_portaddr_hash = hash2_partial;
365         return udp_lib_get_port(sk, snum, hash2_nulladdr);
366 }
367
368 static int compute_score(struct sock *sk, struct net *net,
369                          __be32 saddr, __be16 sport,
370                          __be32 daddr, unsigned short hnum,
371                          int dif, int sdif, bool exact_dif)
372 {
373         int score;
374         struct inet_sock *inet;
375         bool dev_match;
376
377         if (!net_eq(sock_net(sk), net) ||
378             udp_sk(sk)->udp_port_hash != hnum ||
379             ipv6_only_sock(sk))
380                 return -1;
381
382         score = (sk->sk_family == PF_INET) ? 2 : 1;
383         inet = inet_sk(sk);
384
385         if (inet->inet_rcv_saddr) {
386                 if (inet->inet_rcv_saddr != daddr)
387                         return -1;
388                 score += 4;
389         }
390
391         if (inet->inet_daddr) {
392                 if (inet->inet_daddr != saddr)
393                         return -1;
394                 score += 4;
395         }
396
397         if (inet->inet_dport) {
398                 if (inet->inet_dport != sport)
399                         return -1;
400                 score += 4;
401         }
402
403         dev_match = udp_sk_bound_dev_eq(net, sk->sk_bound_dev_if,
404                                         dif, sdif);
405         if (!dev_match)
406                 return -1;
407         score += 4;
408
409         if (sk->sk_incoming_cpu == raw_smp_processor_id())
410                 score++;
411         return score;
412 }
413
414 static u32 udp_ehashfn(const struct net *net, const __be32 laddr,
415                        const __u16 lport, const __be32 faddr,
416                        const __be16 fport)
417 {
418         static u32 udp_ehash_secret __read_mostly;
419
420         net_get_random_once(&udp_ehash_secret, sizeof(udp_ehash_secret));
421
422         return __inet_ehashfn(laddr, lport, faddr, fport,
423                               udp_ehash_secret + net_hash_mix(net));
424 }
425
426 /* called with rcu_read_lock() */
427 static struct sock *udp4_lib_lookup2(struct net *net,
428                                      __be32 saddr, __be16 sport,
429                                      __be32 daddr, unsigned int hnum,
430                                      int dif, int sdif, bool exact_dif,
431                                      struct udp_hslot *hslot2,
432                                      struct sk_buff *skb)
433 {
434         struct sock *sk, *result;
435         int score, badness;
436         u32 hash = 0;
437
438         result = NULL;
439         badness = 0;
440         udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
441                 score = compute_score(sk, net, saddr, sport,
442                                       daddr, hnum, dif, sdif, exact_dif);
443                 if (score > badness) {
444                         if (sk->sk_reuseport) {
445                                 hash = udp_ehashfn(net, daddr, hnum,
446                                                    saddr, sport);
447                                 result = reuseport_select_sock(sk, hash, skb,
448                                                         sizeof(struct udphdr));
449                                 if (result)
450                                         return result;
451                         }
452                         badness = score;
453                         result = sk;
454                 }
455         }
456         return result;
457 }
458
459 /* UDP is nearly always wildcards out the wazoo, it makes no sense to try
460  * harder than this. -DaveM
461  */
462 struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr,
463                 __be16 sport, __be32 daddr, __be16 dport, int dif,
464                 int sdif, struct udp_table *udptable, struct sk_buff *skb)
465 {
466         struct sock *sk, *result;
467         unsigned short hnum = ntohs(dport);
468         unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
469         struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
470         bool exact_dif = udp_lib_exact_dif_match(net, skb);
471         int score, badness;
472         u32 hash = 0;
473
474         if (hslot->count > 10) {
475                 hash2 = ipv4_portaddr_hash(net, daddr, hnum);
476                 slot2 = hash2 & udptable->mask;
477                 hslot2 = &udptable->hash2[slot2];
478                 if (hslot->count < hslot2->count)
479                         goto begin;
480
481                 result = udp4_lib_lookup2(net, saddr, sport,
482                                           daddr, hnum, dif, sdif,
483                                           exact_dif, hslot2, skb);
484                 if (!result) {
485                         unsigned int old_slot2 = slot2;
486                         hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum);
487                         slot2 = hash2 & udptable->mask;
488                         /* avoid searching the same slot again. */
489                         if (unlikely(slot2 == old_slot2))
490                                 return result;
491
492                         hslot2 = &udptable->hash2[slot2];
493                         if (hslot->count < hslot2->count)
494                                 goto begin;
495
496                         result = udp4_lib_lookup2(net, saddr, sport,
497                                                   daddr, hnum, dif, sdif,
498                                                   exact_dif, hslot2, skb);
499                 }
500                 if (unlikely(IS_ERR(result)))
501                         return NULL;
502                 return result;
503         }
504 begin:
505         result = NULL;
506         badness = 0;
507         sk_for_each_rcu(sk, &hslot->head) {
508                 score = compute_score(sk, net, saddr, sport,
509                                       daddr, hnum, dif, sdif, exact_dif);
510                 if (score > badness) {
511                         if (sk->sk_reuseport) {
512                                 hash = udp_ehashfn(net, daddr, hnum,
513                                                    saddr, sport);
514                                 result = reuseport_select_sock(sk, hash, skb,
515                                                         sizeof(struct udphdr));
516                                 if (unlikely(IS_ERR(result)))
517                                         return NULL;
518                                 if (result)
519                                         return result;
520                         }
521                         result = sk;
522                         badness = score;
523                 }
524         }
525         return result;
526 }
527 EXPORT_SYMBOL_GPL(__udp4_lib_lookup);
528
529 static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb,
530                                                  __be16 sport, __be16 dport,
531                                                  struct udp_table *udptable)
532 {
533         const struct iphdr *iph = ip_hdr(skb);
534
535         return __udp4_lib_lookup(dev_net(skb->dev), iph->saddr, sport,
536                                  iph->daddr, dport, inet_iif(skb),
537                                  inet_sdif(skb), udptable, skb);
538 }
539
540 struct sock *udp4_lib_lookup_skb(struct sk_buff *skb,
541                                  __be16 sport, __be16 dport)
542 {
543         return __udp4_lib_lookup_skb(skb, sport, dport, &udp_table);
544 }
545 EXPORT_SYMBOL_GPL(udp4_lib_lookup_skb);
546
547 /* Must be called under rcu_read_lock().
548  * Does increment socket refcount.
549  */
550 #if IS_ENABLED(CONFIG_NF_TPROXY_IPV4) || IS_ENABLED(CONFIG_NF_SOCKET_IPV4)
551 struct sock *udp4_lib_lookup(struct net *net, __be32 saddr, __be16 sport,
552                              __be32 daddr, __be16 dport, int dif)
553 {
554         struct sock *sk;
555
556         sk = __udp4_lib_lookup(net, saddr, sport, daddr, dport,
557                                dif, 0, &udp_table, NULL);
558         if (sk && !refcount_inc_not_zero(&sk->sk_refcnt))
559                 sk = NULL;
560         return sk;
561 }
562 EXPORT_SYMBOL_GPL(udp4_lib_lookup);
563 #endif
564
565 static inline bool __udp_is_mcast_sock(struct net *net, struct sock *sk,
566                                        __be16 loc_port, __be32 loc_addr,
567                                        __be16 rmt_port, __be32 rmt_addr,
568                                        int dif, int sdif, unsigned short hnum)
569 {
570         struct inet_sock *inet = inet_sk(sk);
571
572         if (!net_eq(sock_net(sk), net) ||
573             udp_sk(sk)->udp_port_hash != hnum ||
574             (inet->inet_daddr && inet->inet_daddr != rmt_addr) ||
575             (inet->inet_dport != rmt_port && inet->inet_dport) ||
576             (inet->inet_rcv_saddr && inet->inet_rcv_saddr != loc_addr) ||
577             ipv6_only_sock(sk) ||
578             (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif &&
579              sk->sk_bound_dev_if != sdif))
580                 return false;
581         if (!ip_mc_sf_allow(sk, loc_addr, rmt_addr, dif, sdif))
582                 return false;
583         return true;
584 }
585
586 DEFINE_STATIC_KEY_FALSE(udp_encap_needed_key);
587 void udp_encap_enable(void)
588 {
589         static_branch_enable(&udp_encap_needed_key);
590 }
591 EXPORT_SYMBOL(udp_encap_enable);
592
593 /* Try to match ICMP errors to UDP tunnels by looking up a socket without
594  * reversing source and destination port: this will match tunnels that force the
595  * same destination port on both endpoints (e.g. VXLAN, GENEVE). Note that
596  * lwtunnels might actually break this assumption by being configured with
597  * different destination ports on endpoints, in this case we won't be able to
598  * trace ICMP messages back to them.
599  *
600  * Then ask the tunnel implementation to match the error against a valid
601  * association.
602  *
603  * Return the socket if we have a match.
604  */
605 static struct sock *__udp4_lib_err_encap(struct net *net,
606                                          const struct iphdr *iph,
607                                          struct udphdr *uh,
608                                          struct udp_table *udptable,
609                                          struct sk_buff *skb)
610 {
611         int (*lookup)(struct sock *sk, struct sk_buff *skb);
612         int network_offset, transport_offset;
613         struct udp_sock *up;
614         struct sock *sk;
615
616         sk = __udp4_lib_lookup(net, iph->daddr, uh->source,
617                                iph->saddr, uh->dest, skb->dev->ifindex, 0,
618                                udptable, NULL);
619         if (!sk)
620                 return NULL;
621
622         network_offset = skb_network_offset(skb);
623         transport_offset = skb_transport_offset(skb);
624
625         /* Network header needs to point to the outer IPv4 header inside ICMP */
626         skb_reset_network_header(skb);
627
628         /* Transport header needs to point to the UDP header */
629         skb_set_transport_header(skb, iph->ihl << 2);
630
631         up = udp_sk(sk);
632         lookup = READ_ONCE(up->encap_err_lookup);
633         if (!lookup || lookup(sk, skb))
634                 sk = NULL;
635
636         skb_set_transport_header(skb, transport_offset);
637         skb_set_network_header(skb, network_offset);
638
639         return sk;
640 }
641
642 /*
643  * This routine is called by the ICMP module when it gets some
644  * sort of error condition.  If err < 0 then the socket should
645  * be closed and the error returned to the user.  If err > 0
646  * it's just the icmp type << 8 | icmp code.
647  * Header points to the ip header of the error packet. We move
648  * on past this. Then (as it used to claim before adjustment)
649  * header points to the first 8 bytes of the udp header.  We need
650  * to find the appropriate port.
651  */
652
653 void __udp4_lib_err(struct sk_buff *skb, u32 info, struct udp_table *udptable)
654 {
655         struct inet_sock *inet;
656         const struct iphdr *iph = (const struct iphdr *)skb->data;
657         struct udphdr *uh = (struct udphdr *)(skb->data+(iph->ihl<<2));
658         const int type = icmp_hdr(skb)->type;
659         const int code = icmp_hdr(skb)->code;
660         bool tunnel = false;
661         struct sock *sk;
662         int harderr;
663         int err;
664         struct net *net = dev_net(skb->dev);
665
666         sk = __udp4_lib_lookup(net, iph->daddr, uh->dest,
667                                iph->saddr, uh->source, skb->dev->ifindex,
668                                inet_sdif(skb), udptable, NULL);
669         if (!sk) {
670                 /* No socket for error: try tunnels before discarding */
671                 if (static_branch_unlikely(&udp_encap_needed_key))
672                         sk = __udp4_lib_err_encap(net, iph, uh, udptable, skb);
673
674                 if (!sk) {
675                         __ICMP_INC_STATS(net, ICMP_MIB_INERRORS);
676                         return;
677                 }
678                 tunnel = true;
679         }
680
681         err = 0;
682         harderr = 0;
683         inet = inet_sk(sk);
684
685         switch (type) {
686         default:
687         case ICMP_TIME_EXCEEDED:
688                 err = EHOSTUNREACH;
689                 break;
690         case ICMP_SOURCE_QUENCH:
691                 goto out;
692         case ICMP_PARAMETERPROB:
693                 err = EPROTO;
694                 harderr = 1;
695                 break;
696         case ICMP_DEST_UNREACH:
697                 if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
698                         ipv4_sk_update_pmtu(skb, sk, info);
699                         if (inet->pmtudisc != IP_PMTUDISC_DONT) {
700                                 err = EMSGSIZE;
701                                 harderr = 1;
702                                 break;
703                         }
704                         goto out;
705                 }
706                 err = EHOSTUNREACH;
707                 if (code <= NR_ICMP_UNREACH) {
708                         harderr = icmp_err_convert[code].fatal;
709                         err = icmp_err_convert[code].errno;
710                 }
711                 break;
712         case ICMP_REDIRECT:
713                 ipv4_sk_redirect(skb, sk);
714                 goto out;
715         }
716
717         /*
718          *      RFC1122: OK.  Passes ICMP errors back to application, as per
719          *      4.1.3.3.
720          */
721         if (tunnel) {
722                 /* ...not for tunnels though: we don't have a sending socket */
723                 goto out;
724         }
725         if (!inet->recverr) {
726                 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
727                         goto out;
728         } else
729                 ip_icmp_error(sk, skb, err, uh->dest, info, (u8 *)(uh+1));
730
731         sk->sk_err = err;
732         sk->sk_error_report(sk);
733 out:
734         return;
735 }
736
737 void udp_err(struct sk_buff *skb, u32 info)
738 {
739         __udp4_lib_err(skb, info, &udp_table);
740 }
741
742 /*
743  * Throw away all pending data and cancel the corking. Socket is locked.
744  */
745 void udp_flush_pending_frames(struct sock *sk)
746 {
747         struct udp_sock *up = udp_sk(sk);
748
749         if (up->pending) {
750                 up->len = 0;
751                 up->pending = 0;
752                 ip_flush_pending_frames(sk);
753         }
754 }
755 EXPORT_SYMBOL(udp_flush_pending_frames);
756
757 /**
758  *      udp4_hwcsum  -  handle outgoing HW checksumming
759  *      @skb:   sk_buff containing the filled-in UDP header
760  *              (checksum field must be zeroed out)
761  *      @src:   source IP address
762  *      @dst:   destination IP address
763  */
764 void udp4_hwcsum(struct sk_buff *skb, __be32 src, __be32 dst)
765 {
766         struct udphdr *uh = udp_hdr(skb);
767         int offset = skb_transport_offset(skb);
768         int len = skb->len - offset;
769         int hlen = len;
770         __wsum csum = 0;
771
772         if (!skb_has_frag_list(skb)) {
773                 /*
774                  * Only one fragment on the socket.
775                  */
776                 skb->csum_start = skb_transport_header(skb) - skb->head;
777                 skb->csum_offset = offsetof(struct udphdr, check);
778                 uh->check = ~csum_tcpudp_magic(src, dst, len,
779                                                IPPROTO_UDP, 0);
780         } else {
781                 struct sk_buff *frags;
782
783                 /*
784                  * HW-checksum won't work as there are two or more
785                  * fragments on the socket so that all csums of sk_buffs
786                  * should be together
787                  */
788                 skb_walk_frags(skb, frags) {
789                         csum = csum_add(csum, frags->csum);
790                         hlen -= frags->len;
791                 }
792
793                 csum = skb_checksum(skb, offset, hlen, csum);
794                 skb->ip_summed = CHECKSUM_NONE;
795
796                 uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum);
797                 if (uh->check == 0)
798                         uh->check = CSUM_MANGLED_0;
799         }
800 }
801 EXPORT_SYMBOL_GPL(udp4_hwcsum);
802
803 /* Function to set UDP checksum for an IPv4 UDP packet. This is intended
804  * for the simple case like when setting the checksum for a UDP tunnel.
805  */
806 void udp_set_csum(bool nocheck, struct sk_buff *skb,
807                   __be32 saddr, __be32 daddr, int len)
808 {
809         struct udphdr *uh = udp_hdr(skb);
810
811         if (nocheck) {
812                 uh->check = 0;
813         } else if (skb_is_gso(skb)) {
814                 uh->check = ~udp_v4_check(len, saddr, daddr, 0);
815         } else if (skb->ip_summed == CHECKSUM_PARTIAL) {
816                 uh->check = 0;
817                 uh->check = udp_v4_check(len, saddr, daddr, lco_csum(skb));
818                 if (uh->check == 0)
819                         uh->check = CSUM_MANGLED_0;
820         } else {
821                 skb->ip_summed = CHECKSUM_PARTIAL;
822                 skb->csum_start = skb_transport_header(skb) - skb->head;
823                 skb->csum_offset = offsetof(struct udphdr, check);
824                 uh->check = ~udp_v4_check(len, saddr, daddr, 0);
825         }
826 }
827 EXPORT_SYMBOL(udp_set_csum);
828
829 static int udp_send_skb(struct sk_buff *skb, struct flowi4 *fl4,
830                         struct inet_cork *cork)
831 {
832         struct sock *sk = skb->sk;
833         struct inet_sock *inet = inet_sk(sk);
834         struct udphdr *uh;
835         int err = 0;
836         int is_udplite = IS_UDPLITE(sk);
837         int offset = skb_transport_offset(skb);
838         int len = skb->len - offset;
839         __wsum csum = 0;
840
841         /*
842          * Create a UDP header
843          */
844         uh = udp_hdr(skb);
845         uh->source = inet->inet_sport;
846         uh->dest = fl4->fl4_dport;
847         uh->len = htons(len);
848         uh->check = 0;
849
850         if (cork->gso_size) {
851                 const int hlen = skb_network_header_len(skb) +
852                                  sizeof(struct udphdr);
853
854                 if (hlen + cork->gso_size > cork->fragsize)
855                         return -EINVAL;
856                 if (skb->len > cork->gso_size * UDP_MAX_SEGMENTS)
857                         return -EINVAL;
858                 if (sk->sk_no_check_tx)
859                         return -EINVAL;
860                 if (skb->ip_summed != CHECKSUM_PARTIAL || is_udplite ||
861                     dst_xfrm(skb_dst(skb)))
862                         return -EIO;
863
864                 skb_shinfo(skb)->gso_size = cork->gso_size;
865                 skb_shinfo(skb)->gso_type = SKB_GSO_UDP_L4;
866                 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(len - sizeof(uh),
867                                                          cork->gso_size);
868                 goto csum_partial;
869         }
870
871         if (is_udplite)                                  /*     UDP-Lite      */
872                 csum = udplite_csum(skb);
873
874         else if (sk->sk_no_check_tx) {                   /* UDP csum off */
875
876                 skb->ip_summed = CHECKSUM_NONE;
877                 goto send;
878
879         } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
880 csum_partial:
881
882                 udp4_hwcsum(skb, fl4->saddr, fl4->daddr);
883                 goto send;
884
885         } else
886                 csum = udp_csum(skb);
887
888         /* add protocol-dependent pseudo-header */
889         uh->check = csum_tcpudp_magic(fl4->saddr, fl4->daddr, len,
890                                       sk->sk_protocol, csum);
891         if (uh->check == 0)
892                 uh->check = CSUM_MANGLED_0;
893
894 send:
895         err = ip_send_skb(sock_net(sk), skb);
896         if (err) {
897                 if (err == -ENOBUFS && !inet->recverr) {
898                         UDP_INC_STATS(sock_net(sk),
899                                       UDP_MIB_SNDBUFERRORS, is_udplite);
900                         err = 0;
901                 }
902         } else
903                 UDP_INC_STATS(sock_net(sk),
904                               UDP_MIB_OUTDATAGRAMS, is_udplite);
905         return err;
906 }
907
908 /*
909  * Push out all pending data as one UDP datagram. Socket is locked.
910  */
911 int udp_push_pending_frames(struct sock *sk)
912 {
913         struct udp_sock  *up = udp_sk(sk);
914         struct inet_sock *inet = inet_sk(sk);
915         struct flowi4 *fl4 = &inet->cork.fl.u.ip4;
916         struct sk_buff *skb;
917         int err = 0;
918
919         skb = ip_finish_skb(sk, fl4);
920         if (!skb)
921                 goto out;
922
923         err = udp_send_skb(skb, fl4, &inet->cork.base);
924
925 out:
926         up->len = 0;
927         up->pending = 0;
928         return err;
929 }
930 EXPORT_SYMBOL(udp_push_pending_frames);
931
932 static int __udp_cmsg_send(struct cmsghdr *cmsg, u16 *gso_size)
933 {
934         switch (cmsg->cmsg_type) {
935         case UDP_SEGMENT:
936                 if (cmsg->cmsg_len != CMSG_LEN(sizeof(__u16)))
937                         return -EINVAL;
938                 *gso_size = *(__u16 *)CMSG_DATA(cmsg);
939                 return 0;
940         default:
941                 return -EINVAL;
942         }
943 }
944
945 int udp_cmsg_send(struct sock *sk, struct msghdr *msg, u16 *gso_size)
946 {
947         struct cmsghdr *cmsg;
948         bool need_ip = false;
949         int err;
950
951         for_each_cmsghdr(cmsg, msg) {
952                 if (!CMSG_OK(msg, cmsg))
953                         return -EINVAL;
954
955                 if (cmsg->cmsg_level != SOL_UDP) {
956                         need_ip = true;
957                         continue;
958                 }
959
960                 err = __udp_cmsg_send(cmsg, gso_size);
961                 if (err)
962                         return err;
963         }
964
965         return need_ip;
966 }
967 EXPORT_SYMBOL_GPL(udp_cmsg_send);
968
969 int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
970 {
971         struct inet_sock *inet = inet_sk(sk);
972         struct udp_sock *up = udp_sk(sk);
973         DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
974         struct flowi4 fl4_stack;
975         struct flowi4 *fl4;
976         int ulen = len;
977         struct ipcm_cookie ipc;
978         struct rtable *rt = NULL;
979         int free = 0;
980         int connected = 0;
981         __be32 daddr, faddr, saddr;
982         __be16 dport;
983         u8  tos;
984         int err, is_udplite = IS_UDPLITE(sk);
985         int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
986         int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
987         struct sk_buff *skb;
988         struct ip_options_data opt_copy;
989
990         if (len > 0xFFFF)
991                 return -EMSGSIZE;
992
993         /*
994          *      Check the flags.
995          */
996
997         if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message compatibility */
998                 return -EOPNOTSUPP;
999
1000         getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
1001
1002         fl4 = &inet->cork.fl.u.ip4;
1003         if (up->pending) {
1004                 /*
1005                  * There are pending frames.
1006                  * The socket lock must be held while it's corked.
1007                  */
1008                 lock_sock(sk);
1009                 if (likely(up->pending)) {
1010                         if (unlikely(up->pending != AF_INET)) {
1011                                 release_sock(sk);
1012                                 return -EINVAL;
1013                         }
1014                         goto do_append_data;
1015                 }
1016                 release_sock(sk);
1017         }
1018         ulen += sizeof(struct udphdr);
1019
1020         /*
1021          *      Get and verify the address.
1022          */
1023         if (usin) {
1024                 if (msg->msg_namelen < sizeof(*usin))
1025                         return -EINVAL;
1026                 if (usin->sin_family != AF_INET) {
1027                         if (usin->sin_family != AF_UNSPEC)
1028                                 return -EAFNOSUPPORT;
1029                 }
1030
1031                 daddr = usin->sin_addr.s_addr;
1032                 dport = usin->sin_port;
1033                 if (dport == 0)
1034                         return -EINVAL;
1035         } else {
1036                 if (sk->sk_state != TCP_ESTABLISHED)
1037                         return -EDESTADDRREQ;
1038                 daddr = inet->inet_daddr;
1039                 dport = inet->inet_dport;
1040                 /* Open fast path for connected socket.
1041                    Route will not be used, if at least one option is set.
1042                  */
1043                 connected = 1;
1044         }
1045
1046         ipcm_init_sk(&ipc, inet);
1047         ipc.gso_size = up->gso_size;
1048
1049         if (msg->msg_controllen) {
1050                 err = udp_cmsg_send(sk, msg, &ipc.gso_size);
1051                 if (err > 0)
1052                         err = ip_cmsg_send(sk, msg, &ipc,
1053                                            sk->sk_family == AF_INET6);
1054                 if (unlikely(err < 0)) {
1055                         kfree(ipc.opt);
1056                         return err;
1057                 }
1058                 if (ipc.opt)
1059                         free = 1;
1060                 connected = 0;
1061         }
1062         if (!ipc.opt) {
1063                 struct ip_options_rcu *inet_opt;
1064
1065                 rcu_read_lock();
1066                 inet_opt = rcu_dereference(inet->inet_opt);
1067                 if (inet_opt) {
1068                         memcpy(&opt_copy, inet_opt,
1069                                sizeof(*inet_opt) + inet_opt->opt.optlen);
1070                         ipc.opt = &opt_copy.opt;
1071                 }
1072                 rcu_read_unlock();
1073         }
1074
1075         if (cgroup_bpf_enabled && !connected) {
1076                 err = BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk,
1077                                             (struct sockaddr *)usin, &ipc.addr);
1078                 if (err)
1079                         goto out_free;
1080                 if (usin) {
1081                         if (usin->sin_port == 0) {
1082                                 /* BPF program set invalid port. Reject it. */
1083                                 err = -EINVAL;
1084                                 goto out_free;
1085                         }
1086                         daddr = usin->sin_addr.s_addr;
1087                         dport = usin->sin_port;
1088                 }
1089         }
1090
1091         saddr = ipc.addr;
1092         ipc.addr = faddr = daddr;
1093
1094         if (ipc.opt && ipc.opt->opt.srr) {
1095                 if (!daddr) {
1096                         err = -EINVAL;
1097                         goto out_free;
1098                 }
1099                 faddr = ipc.opt->opt.faddr;
1100                 connected = 0;
1101         }
1102         tos = get_rttos(&ipc, inet);
1103         if (sock_flag(sk, SOCK_LOCALROUTE) ||
1104             (msg->msg_flags & MSG_DONTROUTE) ||
1105             (ipc.opt && ipc.opt->opt.is_strictroute)) {
1106                 tos |= RTO_ONLINK;
1107                 connected = 0;
1108         }
1109
1110         if (ipv4_is_multicast(daddr)) {
1111                 if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif))
1112                         ipc.oif = inet->mc_index;
1113                 if (!saddr)
1114                         saddr = inet->mc_addr;
1115                 connected = 0;
1116         } else if (!ipc.oif) {
1117                 ipc.oif = inet->uc_index;
1118         } else if (ipv4_is_lbcast(daddr) && inet->uc_index) {
1119                 /* oif is set, packet is to local broadcast and
1120                  * and uc_index is set. oif is most likely set
1121                  * by sk_bound_dev_if. If uc_index != oif check if the
1122                  * oif is an L3 master and uc_index is an L3 slave.
1123                  * If so, we want to allow the send using the uc_index.
1124                  */
1125                 if (ipc.oif != inet->uc_index &&
1126                     ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk),
1127                                                               inet->uc_index)) {
1128                         ipc.oif = inet->uc_index;
1129                 }
1130         }
1131
1132         if (connected)
1133                 rt = (struct rtable *)sk_dst_check(sk, 0);
1134
1135         if (!rt) {
1136                 struct net *net = sock_net(sk);
1137                 __u8 flow_flags = inet_sk_flowi_flags(sk);
1138
1139                 fl4 = &fl4_stack;
1140
1141                 flowi4_init_output(fl4, ipc.oif, sk->sk_mark, tos,
1142                                    RT_SCOPE_UNIVERSE, sk->sk_protocol,
1143                                    flow_flags,
1144                                    faddr, saddr, dport, inet->inet_sport,
1145                                    sk->sk_uid);
1146
1147                 security_sk_classify_flow(sk, flowi4_to_flowi(fl4));
1148                 rt = ip_route_output_flow(net, fl4, sk);
1149                 if (IS_ERR(rt)) {
1150                         err = PTR_ERR(rt);
1151                         rt = NULL;
1152                         if (err == -ENETUNREACH)
1153                                 IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
1154                         goto out;
1155                 }
1156
1157                 err = -EACCES;
1158                 if ((rt->rt_flags & RTCF_BROADCAST) &&
1159                     !sock_flag(sk, SOCK_BROADCAST))
1160                         goto out;
1161                 if (connected)
1162                         sk_dst_set(sk, dst_clone(&rt->dst));
1163         }
1164
1165         if (msg->msg_flags&MSG_CONFIRM)
1166                 goto do_confirm;
1167 back_from_confirm:
1168
1169         saddr = fl4->saddr;
1170         if (!ipc.addr)
1171                 daddr = ipc.addr = fl4->daddr;
1172
1173         /* Lockless fast path for the non-corking case. */
1174         if (!corkreq) {
1175                 struct inet_cork cork;
1176
1177                 skb = ip_make_skb(sk, fl4, getfrag, msg, ulen,
1178                                   sizeof(struct udphdr), &ipc, &rt,
1179                                   &cork, msg->msg_flags);
1180                 err = PTR_ERR(skb);
1181                 if (!IS_ERR_OR_NULL(skb))
1182                         err = udp_send_skb(skb, fl4, &cork);
1183                 goto out;
1184         }
1185
1186         lock_sock(sk);
1187         if (unlikely(up->pending)) {
1188                 /* The socket is already corked while preparing it. */
1189                 /* ... which is an evident application bug. --ANK */
1190                 release_sock(sk);
1191
1192                 net_dbg_ratelimited("socket already corked\n");
1193                 err = -EINVAL;
1194                 goto out;
1195         }
1196         /*
1197          *      Now cork the socket to pend data.
1198          */
1199         fl4 = &inet->cork.fl.u.ip4;
1200         fl4->daddr = daddr;
1201         fl4->saddr = saddr;
1202         fl4->fl4_dport = dport;
1203         fl4->fl4_sport = inet->inet_sport;
1204         up->pending = AF_INET;
1205
1206 do_append_data:
1207         up->len += ulen;
1208         err = ip_append_data(sk, fl4, getfrag, msg, ulen,
1209                              sizeof(struct udphdr), &ipc, &rt,
1210                              corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
1211         if (err)
1212                 udp_flush_pending_frames(sk);
1213         else if (!corkreq)
1214                 err = udp_push_pending_frames(sk);
1215         else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1216                 up->pending = 0;
1217         release_sock(sk);
1218
1219 out:
1220         ip_rt_put(rt);
1221 out_free:
1222         if (free)
1223                 kfree(ipc.opt);
1224         if (!err)
1225                 return len;
1226         /*
1227          * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space.  Reporting
1228          * ENOBUFS might not be good (it's not tunable per se), but otherwise
1229          * we don't have a good statistic (IpOutDiscards but it can be too many
1230          * things).  We could add another new stat but at least for now that
1231          * seems like overkill.
1232          */
1233         if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
1234                 UDP_INC_STATS(sock_net(sk),
1235                               UDP_MIB_SNDBUFERRORS, is_udplite);
1236         }
1237         return err;
1238
1239 do_confirm:
1240         if (msg->msg_flags & MSG_PROBE)
1241                 dst_confirm_neigh(&rt->dst, &fl4->daddr);
1242         if (!(msg->msg_flags&MSG_PROBE) || len)
1243                 goto back_from_confirm;
1244         err = 0;
1245         goto out;
1246 }
1247 EXPORT_SYMBOL(udp_sendmsg);
1248
1249 int udp_sendpage(struct sock *sk, struct page *page, int offset,
1250                  size_t size, int flags)
1251 {
1252         struct inet_sock *inet = inet_sk(sk);
1253         struct udp_sock *up = udp_sk(sk);
1254         int ret;
1255
1256         if (flags & MSG_SENDPAGE_NOTLAST)
1257                 flags |= MSG_MORE;
1258
1259         if (!up->pending) {
1260                 struct msghdr msg = {   .msg_flags = flags|MSG_MORE };
1261
1262                 /* Call udp_sendmsg to specify destination address which
1263                  * sendpage interface can't pass.
1264                  * This will succeed only when the socket is connected.
1265                  */
1266                 ret = udp_sendmsg(sk, &msg, 0);
1267                 if (ret < 0)
1268                         return ret;
1269         }
1270
1271         lock_sock(sk);
1272
1273         if (unlikely(!up->pending)) {
1274                 release_sock(sk);
1275
1276                 net_dbg_ratelimited("cork failed\n");
1277                 return -EINVAL;
1278         }
1279
1280         ret = ip_append_page(sk, &inet->cork.fl.u.ip4,
1281                              page, offset, size, flags);
1282         if (ret == -EOPNOTSUPP) {
1283                 release_sock(sk);
1284                 return sock_no_sendpage(sk->sk_socket, page, offset,
1285                                         size, flags);
1286         }
1287         if (ret < 0) {
1288                 udp_flush_pending_frames(sk);
1289                 goto out;
1290         }
1291
1292         up->len += size;
1293         if (!(up->corkflag || (flags&MSG_MORE)))
1294                 ret = udp_push_pending_frames(sk);
1295         if (!ret)
1296                 ret = size;
1297 out:
1298         release_sock(sk);
1299         return ret;
1300 }
1301
1302 #define UDP_SKB_IS_STATELESS 0x80000000
1303
1304 static void udp_set_dev_scratch(struct sk_buff *skb)
1305 {
1306         struct udp_dev_scratch *scratch = udp_skb_scratch(skb);
1307
1308         BUILD_BUG_ON(sizeof(struct udp_dev_scratch) > sizeof(long));
1309         scratch->_tsize_state = skb->truesize;
1310 #if BITS_PER_LONG == 64
1311         scratch->len = skb->len;
1312         scratch->csum_unnecessary = !!skb_csum_unnecessary(skb);
1313         scratch->is_linear = !skb_is_nonlinear(skb);
1314 #endif
1315         /* all head states execept sp (dst, sk, nf) are always cleared by
1316          * udp_rcv() and we need to preserve secpath, if present, to eventually
1317          * process IP_CMSG_PASSSEC at recvmsg() time
1318          */
1319         if (likely(!skb_sec_path(skb)))
1320                 scratch->_tsize_state |= UDP_SKB_IS_STATELESS;
1321 }
1322
1323 static int udp_skb_truesize(struct sk_buff *skb)
1324 {
1325         return udp_skb_scratch(skb)->_tsize_state & ~UDP_SKB_IS_STATELESS;
1326 }
1327
1328 static bool udp_skb_has_head_state(struct sk_buff *skb)
1329 {
1330         return !(udp_skb_scratch(skb)->_tsize_state & UDP_SKB_IS_STATELESS);
1331 }
1332
1333 /* fully reclaim rmem/fwd memory allocated for skb */
1334 static void udp_rmem_release(struct sock *sk, int size, int partial,
1335                              bool rx_queue_lock_held)
1336 {
1337         struct udp_sock *up = udp_sk(sk);
1338         struct sk_buff_head *sk_queue;
1339         int amt;
1340
1341         if (likely(partial)) {
1342                 up->forward_deficit += size;
1343                 size = up->forward_deficit;
1344                 if (size < (sk->sk_rcvbuf >> 2))
1345                         return;
1346         } else {
1347                 size += up->forward_deficit;
1348         }
1349         up->forward_deficit = 0;
1350
1351         /* acquire the sk_receive_queue for fwd allocated memory scheduling,
1352          * if the called don't held it already
1353          */
1354         sk_queue = &sk->sk_receive_queue;
1355         if (!rx_queue_lock_held)
1356                 spin_lock(&sk_queue->lock);
1357
1358
1359         sk->sk_forward_alloc += size;
1360         amt = (sk->sk_forward_alloc - partial) & ~(SK_MEM_QUANTUM - 1);
1361         sk->sk_forward_alloc -= amt;
1362
1363         if (amt)
1364                 __sk_mem_reduce_allocated(sk, amt >> SK_MEM_QUANTUM_SHIFT);
1365
1366         atomic_sub(size, &sk->sk_rmem_alloc);
1367
1368         /* this can save us from acquiring the rx queue lock on next receive */
1369         skb_queue_splice_tail_init(sk_queue, &up->reader_queue);
1370
1371         if (!rx_queue_lock_held)
1372                 spin_unlock(&sk_queue->lock);
1373 }
1374
1375 /* Note: called with reader_queue.lock held.
1376  * Instead of using skb->truesize here, find a copy of it in skb->dev_scratch
1377  * This avoids a cache line miss while receive_queue lock is held.
1378  * Look at __udp_enqueue_schedule_skb() to find where this copy is done.
1379  */
1380 void udp_skb_destructor(struct sock *sk, struct sk_buff *skb)
1381 {
1382         prefetch(&skb->data);
1383         udp_rmem_release(sk, udp_skb_truesize(skb), 1, false);
1384 }
1385 EXPORT_SYMBOL(udp_skb_destructor);
1386
1387 /* as above, but the caller held the rx queue lock, too */
1388 static void udp_skb_dtor_locked(struct sock *sk, struct sk_buff *skb)
1389 {
1390         prefetch(&skb->data);
1391         udp_rmem_release(sk, udp_skb_truesize(skb), 1, true);
1392 }
1393
1394 /* Idea of busylocks is to let producers grab an extra spinlock
1395  * to relieve pressure on the receive_queue spinlock shared by consumer.
1396  * Under flood, this means that only one producer can be in line
1397  * trying to acquire the receive_queue spinlock.
1398  * These busylock can be allocated on a per cpu manner, instead of a
1399  * per socket one (that would consume a cache line per socket)
1400  */
1401 static int udp_busylocks_log __read_mostly;
1402 static spinlock_t *udp_busylocks __read_mostly;
1403
1404 static spinlock_t *busylock_acquire(void *ptr)
1405 {
1406         spinlock_t *busy;
1407
1408         busy = udp_busylocks + hash_ptr(ptr, udp_busylocks_log);
1409         spin_lock(busy);
1410         return busy;
1411 }
1412
1413 static void busylock_release(spinlock_t *busy)
1414 {
1415         if (busy)
1416                 spin_unlock(busy);
1417 }
1418
1419 int __udp_enqueue_schedule_skb(struct sock *sk, struct sk_buff *skb)
1420 {
1421         struct sk_buff_head *list = &sk->sk_receive_queue;
1422         int rmem, delta, amt, err = -ENOMEM;
1423         spinlock_t *busy = NULL;
1424         int size;
1425
1426         /* try to avoid the costly atomic add/sub pair when the receive
1427          * queue is full; always allow at least a packet
1428          */
1429         rmem = atomic_read(&sk->sk_rmem_alloc);
1430         if (rmem > sk->sk_rcvbuf)
1431                 goto drop;
1432
1433         /* Under mem pressure, it might be helpful to help udp_recvmsg()
1434          * having linear skbs :
1435          * - Reduce memory overhead and thus increase receive queue capacity
1436          * - Less cache line misses at copyout() time
1437          * - Less work at consume_skb() (less alien page frag freeing)
1438          */
1439         if (rmem > (sk->sk_rcvbuf >> 1)) {
1440                 skb_condense(skb);
1441
1442                 busy = busylock_acquire(sk);
1443         }
1444         size = skb->truesize;
1445         udp_set_dev_scratch(skb);
1446
1447         /* we drop only if the receive buf is full and the receive
1448          * queue contains some other skb
1449          */
1450         rmem = atomic_add_return(size, &sk->sk_rmem_alloc);
1451         if (rmem > (size + sk->sk_rcvbuf))
1452                 goto uncharge_drop;
1453
1454         spin_lock(&list->lock);
1455         if (size >= sk->sk_forward_alloc) {
1456                 amt = sk_mem_pages(size);
1457                 delta = amt << SK_MEM_QUANTUM_SHIFT;
1458                 if (!__sk_mem_raise_allocated(sk, delta, amt, SK_MEM_RECV)) {
1459                         err = -ENOBUFS;
1460                         spin_unlock(&list->lock);
1461                         goto uncharge_drop;
1462                 }
1463
1464                 sk->sk_forward_alloc += delta;
1465         }
1466
1467         sk->sk_forward_alloc -= size;
1468
1469         /* no need to setup a destructor, we will explicitly release the
1470          * forward allocated memory on dequeue
1471          */
1472         sock_skb_set_dropcount(sk, skb);
1473
1474         __skb_queue_tail(list, skb);
1475         spin_unlock(&list->lock);
1476
1477         if (!sock_flag(sk, SOCK_DEAD))
1478                 sk->sk_data_ready(sk);
1479
1480         busylock_release(busy);
1481         return 0;
1482
1483 uncharge_drop:
1484         atomic_sub(skb->truesize, &sk->sk_rmem_alloc);
1485
1486 drop:
1487         atomic_inc(&sk->sk_drops);
1488         busylock_release(busy);
1489         return err;
1490 }
1491 EXPORT_SYMBOL_GPL(__udp_enqueue_schedule_skb);
1492
1493 void udp_destruct_sock(struct sock *sk)
1494 {
1495         /* reclaim completely the forward allocated memory */
1496         struct udp_sock *up = udp_sk(sk);
1497         unsigned int total = 0;
1498         struct sk_buff *skb;
1499
1500         skb_queue_splice_tail_init(&sk->sk_receive_queue, &up->reader_queue);
1501         while ((skb = __skb_dequeue(&up->reader_queue)) != NULL) {
1502                 total += skb->truesize;
1503                 kfree_skb(skb);
1504         }
1505         udp_rmem_release(sk, total, 0, true);
1506
1507         inet_sock_destruct(sk);
1508 }
1509 EXPORT_SYMBOL_GPL(udp_destruct_sock);
1510
1511 int udp_init_sock(struct sock *sk)
1512 {
1513         skb_queue_head_init(&udp_sk(sk)->reader_queue);
1514         sk->sk_destruct = udp_destruct_sock;
1515         return 0;
1516 }
1517 EXPORT_SYMBOL_GPL(udp_init_sock);
1518
1519 void skb_consume_udp(struct sock *sk, struct sk_buff *skb, int len)
1520 {
1521         if (unlikely(READ_ONCE(sk->sk_peek_off) >= 0)) {
1522                 bool slow = lock_sock_fast(sk);
1523
1524                 sk_peek_offset_bwd(sk, len);
1525                 unlock_sock_fast(sk, slow);
1526         }
1527
1528         if (!skb_unref(skb))
1529                 return;
1530
1531         /* In the more common cases we cleared the head states previously,
1532          * see __udp_queue_rcv_skb().
1533          */
1534         if (unlikely(udp_skb_has_head_state(skb)))
1535                 skb_release_head_state(skb);
1536         __consume_stateless_skb(skb);
1537 }
1538 EXPORT_SYMBOL_GPL(skb_consume_udp);
1539
1540 static struct sk_buff *__first_packet_length(struct sock *sk,
1541                                              struct sk_buff_head *rcvq,
1542                                              int *total)
1543 {
1544         struct sk_buff *skb;
1545
1546         while ((skb = skb_peek(rcvq)) != NULL) {
1547                 if (udp_lib_checksum_complete(skb)) {
1548                         __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS,
1549                                         IS_UDPLITE(sk));
1550                         __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
1551                                         IS_UDPLITE(sk));
1552                         atomic_inc(&sk->sk_drops);
1553                         __skb_unlink(skb, rcvq);
1554                         *total += skb->truesize;
1555                         kfree_skb(skb);
1556                 } else {
1557                         /* the csum related bits could be changed, refresh
1558                          * the scratch area
1559                          */
1560                         udp_set_dev_scratch(skb);
1561                         break;
1562                 }
1563         }
1564         return skb;
1565 }
1566
1567 /**
1568  *      first_packet_length     - return length of first packet in receive queue
1569  *      @sk: socket
1570  *
1571  *      Drops all bad checksum frames, until a valid one is found.
1572  *      Returns the length of found skb, or -1 if none is found.
1573  */
1574 static int first_packet_length(struct sock *sk)
1575 {
1576         struct sk_buff_head *rcvq = &udp_sk(sk)->reader_queue;
1577         struct sk_buff_head *sk_queue = &sk->sk_receive_queue;
1578         struct sk_buff *skb;
1579         int total = 0;
1580         int res;
1581
1582         spin_lock_bh(&rcvq->lock);
1583         skb = __first_packet_length(sk, rcvq, &total);
1584         if (!skb && !skb_queue_empty(sk_queue)) {
1585                 spin_lock(&sk_queue->lock);
1586                 skb_queue_splice_tail_init(sk_queue, rcvq);
1587                 spin_unlock(&sk_queue->lock);
1588
1589                 skb = __first_packet_length(sk, rcvq, &total);
1590         }
1591         res = skb ? skb->len : -1;
1592         if (total)
1593                 udp_rmem_release(sk, total, 1, false);
1594         spin_unlock_bh(&rcvq->lock);
1595         return res;
1596 }
1597
1598 /*
1599  *      IOCTL requests applicable to the UDP protocol
1600  */
1601
1602 int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
1603 {
1604         switch (cmd) {
1605         case SIOCOUTQ:
1606         {
1607                 int amount = sk_wmem_alloc_get(sk);
1608
1609                 return put_user(amount, (int __user *)arg);
1610         }
1611
1612         case SIOCINQ:
1613         {
1614                 int amount = max_t(int, 0, first_packet_length(sk));
1615
1616                 return put_user(amount, (int __user *)arg);
1617         }
1618
1619         default:
1620                 return -ENOIOCTLCMD;
1621         }
1622
1623         return 0;
1624 }
1625 EXPORT_SYMBOL(udp_ioctl);
1626
1627 struct sk_buff *__skb_recv_udp(struct sock *sk, unsigned int flags,
1628                                int noblock, int *peeked, int *off, int *err)
1629 {
1630         struct sk_buff_head *sk_queue = &sk->sk_receive_queue;
1631         struct sk_buff_head *queue;
1632         struct sk_buff *last;
1633         long timeo;
1634         int error;
1635
1636         queue = &udp_sk(sk)->reader_queue;
1637         flags |= noblock ? MSG_DONTWAIT : 0;
1638         timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT);
1639         do {
1640                 struct sk_buff *skb;
1641
1642                 error = sock_error(sk);
1643                 if (error)
1644                         break;
1645
1646                 error = -EAGAIN;
1647                 *peeked = 0;
1648                 do {
1649                         spin_lock_bh(&queue->lock);
1650                         skb = __skb_try_recv_from_queue(sk, queue, flags,
1651                                                         udp_skb_destructor,
1652                                                         peeked, off, err,
1653                                                         &last);
1654                         if (skb) {
1655                                 spin_unlock_bh(&queue->lock);
1656                                 return skb;
1657                         }
1658
1659                         if (skb_queue_empty(sk_queue)) {
1660                                 spin_unlock_bh(&queue->lock);
1661                                 goto busy_check;
1662                         }
1663
1664                         /* refill the reader queue and walk it again
1665                          * keep both queues locked to avoid re-acquiring
1666                          * the sk_receive_queue lock if fwd memory scheduling
1667                          * is needed.
1668                          */
1669                         spin_lock(&sk_queue->lock);
1670                         skb_queue_splice_tail_init(sk_queue, queue);
1671
1672                         skb = __skb_try_recv_from_queue(sk, queue, flags,
1673                                                         udp_skb_dtor_locked,
1674                                                         peeked, off, err,
1675                                                         &last);
1676                         spin_unlock(&sk_queue->lock);
1677                         spin_unlock_bh(&queue->lock);
1678                         if (skb)
1679                                 return skb;
1680
1681 busy_check:
1682                         if (!sk_can_busy_loop(sk))
1683                                 break;
1684
1685                         sk_busy_loop(sk, flags & MSG_DONTWAIT);
1686                 } while (!skb_queue_empty(sk_queue));
1687
1688                 /* sk_queue is empty, reader_queue may contain peeked packets */
1689         } while (timeo &&
1690                  !__skb_wait_for_more_packets(sk, &error, &timeo,
1691                                               (struct sk_buff *)sk_queue));
1692
1693         *err = error;
1694         return NULL;
1695 }
1696 EXPORT_SYMBOL(__skb_recv_udp);
1697
1698 /*
1699  *      This should be easy, if there is something there we
1700  *      return it, otherwise we block.
1701  */
1702
1703 int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
1704                 int flags, int *addr_len)
1705 {
1706         struct inet_sock *inet = inet_sk(sk);
1707         DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
1708         struct sk_buff *skb;
1709         unsigned int ulen, copied;
1710         int peeked, peeking, off;
1711         int err;
1712         int is_udplite = IS_UDPLITE(sk);
1713         bool checksum_valid = false;
1714
1715         if (flags & MSG_ERRQUEUE)
1716                 return ip_recv_error(sk, msg, len, addr_len);
1717
1718 try_again:
1719         peeking = flags & MSG_PEEK;
1720         off = sk_peek_offset(sk, flags);
1721         skb = __skb_recv_udp(sk, flags, noblock, &peeked, &off, &err);
1722         if (!skb)
1723                 return err;
1724
1725         ulen = udp_skb_len(skb);
1726         copied = len;
1727         if (copied > ulen - off)
1728                 copied = ulen - off;
1729         else if (copied < ulen)
1730                 msg->msg_flags |= MSG_TRUNC;
1731
1732         /*
1733          * If checksum is needed at all, try to do it while copying the
1734          * data.  If the data is truncated, or if we only want a partial
1735          * coverage checksum (UDP-Lite), do it before the copy.
1736          */
1737
1738         if (copied < ulen || peeking ||
1739             (is_udplite && UDP_SKB_CB(skb)->partial_cov)) {
1740                 checksum_valid = udp_skb_csum_unnecessary(skb) ||
1741                                 !__udp_lib_checksum_complete(skb);
1742                 if (!checksum_valid)
1743                         goto csum_copy_err;
1744         }
1745
1746         if (checksum_valid || udp_skb_csum_unnecessary(skb)) {
1747                 if (udp_skb_is_linear(skb))
1748                         err = copy_linear_skb(skb, copied, off, &msg->msg_iter);
1749                 else
1750                         err = skb_copy_datagram_msg(skb, off, msg, copied);
1751         } else {
1752                 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
1753
1754                 if (err == -EINVAL)
1755                         goto csum_copy_err;
1756         }
1757
1758         if (unlikely(err)) {
1759                 if (!peeked) {
1760                         atomic_inc(&sk->sk_drops);
1761                         UDP_INC_STATS(sock_net(sk),
1762                                       UDP_MIB_INERRORS, is_udplite);
1763                 }
1764                 kfree_skb(skb);
1765                 return err;
1766         }
1767
1768         if (!peeked)
1769                 UDP_INC_STATS(sock_net(sk),
1770                               UDP_MIB_INDATAGRAMS, is_udplite);
1771
1772         sock_recv_ts_and_drops(msg, sk, skb);
1773
1774         /* Copy the address. */
1775         if (sin) {
1776                 sin->sin_family = AF_INET;
1777                 sin->sin_port = udp_hdr(skb)->source;
1778                 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
1779                 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
1780                 *addr_len = sizeof(*sin);
1781         }
1782
1783         if (udp_sk(sk)->gro_enabled)
1784                 udp_cmsg_recv(msg, sk, skb);
1785
1786         if (inet->cmsg_flags)
1787                 ip_cmsg_recv_offset(msg, sk, skb, sizeof(struct udphdr), off);
1788
1789         err = copied;
1790         if (flags & MSG_TRUNC)
1791                 err = ulen;
1792
1793         skb_consume_udp(sk, skb, peeking ? -err : err);
1794         return err;
1795
1796 csum_copy_err:
1797         if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags,
1798                                  udp_skb_destructor)) {
1799                 UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
1800                 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
1801         }
1802         kfree_skb(skb);
1803
1804         /* starting over for a new packet, but check if we need to yield */
1805         cond_resched();
1806         msg->msg_flags &= ~MSG_TRUNC;
1807         goto try_again;
1808 }
1809
1810 int udp_pre_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
1811 {
1812         /* This check is replicated from __ip4_datagram_connect() and
1813          * intended to prevent BPF program called below from accessing bytes
1814          * that are out of the bound specified by user in addr_len.
1815          */
1816         if (addr_len < sizeof(struct sockaddr_in))
1817                 return -EINVAL;
1818
1819         return BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr);
1820 }
1821 EXPORT_SYMBOL(udp_pre_connect);
1822
1823 int __udp_disconnect(struct sock *sk, int flags)
1824 {
1825         struct inet_sock *inet = inet_sk(sk);
1826         /*
1827          *      1003.1g - break association.
1828          */
1829
1830         sk->sk_state = TCP_CLOSE;
1831         inet->inet_daddr = 0;
1832         inet->inet_dport = 0;
1833         sock_rps_reset_rxhash(sk);
1834         sk->sk_bound_dev_if = 0;
1835         if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
1836                 inet_reset_saddr(sk);
1837
1838         if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) {
1839                 sk->sk_prot->unhash(sk);
1840                 inet->inet_sport = 0;
1841         }
1842         sk_dst_reset(sk);
1843         return 0;
1844 }
1845 EXPORT_SYMBOL(__udp_disconnect);
1846
1847 int udp_disconnect(struct sock *sk, int flags)
1848 {
1849         lock_sock(sk);
1850         __udp_disconnect(sk, flags);
1851         release_sock(sk);
1852         return 0;
1853 }
1854 EXPORT_SYMBOL(udp_disconnect);
1855
1856 void udp_lib_unhash(struct sock *sk)
1857 {
1858         if (sk_hashed(sk)) {
1859                 struct udp_table *udptable = sk->sk_prot->h.udp_table;
1860                 struct udp_hslot *hslot, *hslot2;
1861
1862                 hslot  = udp_hashslot(udptable, sock_net(sk),
1863                                       udp_sk(sk)->udp_port_hash);
1864                 hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash);
1865
1866                 spin_lock_bh(&hslot->lock);
1867                 if (rcu_access_pointer(sk->sk_reuseport_cb))
1868                         reuseport_detach_sock(sk);
1869                 if (sk_del_node_init_rcu(sk)) {
1870                         hslot->count--;
1871                         inet_sk(sk)->inet_num = 0;
1872                         sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
1873
1874                         spin_lock(&hslot2->lock);
1875                         hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node);
1876                         hslot2->count--;
1877                         spin_unlock(&hslot2->lock);
1878                 }
1879                 spin_unlock_bh(&hslot->lock);
1880         }
1881 }
1882 EXPORT_SYMBOL(udp_lib_unhash);
1883
1884 /*
1885  * inet_rcv_saddr was changed, we must rehash secondary hash
1886  */
1887 void udp_lib_rehash(struct sock *sk, u16 newhash)
1888 {
1889         if (sk_hashed(sk)) {
1890                 struct udp_table *udptable = sk->sk_prot->h.udp_table;
1891                 struct udp_hslot *hslot, *hslot2, *nhslot2;
1892
1893                 hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash);
1894                 nhslot2 = udp_hashslot2(udptable, newhash);
1895                 udp_sk(sk)->udp_portaddr_hash = newhash;
1896
1897                 if (hslot2 != nhslot2 ||
1898                     rcu_access_pointer(sk->sk_reuseport_cb)) {
1899                         hslot = udp_hashslot(udptable, sock_net(sk),
1900                                              udp_sk(sk)->udp_port_hash);
1901                         /* we must lock primary chain too */
1902                         spin_lock_bh(&hslot->lock);
1903                         if (rcu_access_pointer(sk->sk_reuseport_cb))
1904                                 reuseport_detach_sock(sk);
1905
1906                         if (hslot2 != nhslot2) {
1907                                 spin_lock(&hslot2->lock);
1908                                 hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node);
1909                                 hslot2->count--;
1910                                 spin_unlock(&hslot2->lock);
1911
1912                                 spin_lock(&nhslot2->lock);
1913                                 hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node,
1914                                                          &nhslot2->head);
1915                                 nhslot2->count++;
1916                                 spin_unlock(&nhslot2->lock);
1917                         }
1918
1919                         spin_unlock_bh(&hslot->lock);
1920                 }
1921         }
1922 }
1923 EXPORT_SYMBOL(udp_lib_rehash);
1924
1925 static void udp_v4_rehash(struct sock *sk)
1926 {
1927         u16 new_hash = ipv4_portaddr_hash(sock_net(sk),
1928                                           inet_sk(sk)->inet_rcv_saddr,
1929                                           inet_sk(sk)->inet_num);
1930         udp_lib_rehash(sk, new_hash);
1931 }
1932
1933 static int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
1934 {
1935         int rc;
1936
1937         if (inet_sk(sk)->inet_daddr) {
1938                 sock_rps_save_rxhash(sk, skb);
1939                 sk_mark_napi_id(sk, skb);
1940                 sk_incoming_cpu_update(sk);
1941         } else {
1942                 sk_mark_napi_id_once(sk, skb);
1943         }
1944
1945         rc = __udp_enqueue_schedule_skb(sk, skb);
1946         if (rc < 0) {
1947                 int is_udplite = IS_UDPLITE(sk);
1948
1949                 /* Note that an ENOMEM error is charged twice */
1950                 if (rc == -ENOMEM)
1951                         UDP_INC_STATS(sock_net(sk), UDP_MIB_RCVBUFERRORS,
1952                                         is_udplite);
1953                 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
1954                 kfree_skb(skb);
1955                 trace_udp_fail_queue_rcv_skb(rc, sk);
1956                 return -1;
1957         }
1958
1959         return 0;
1960 }
1961
1962 /* returns:
1963  *  -1: error
1964  *   0: success
1965  *  >0: "udp encap" protocol resubmission
1966  *
1967  * Note that in the success and error cases, the skb is assumed to
1968  * have either been requeued or freed.
1969  */
1970 static int udp_queue_rcv_one_skb(struct sock *sk, struct sk_buff *skb)
1971 {
1972         struct udp_sock *up = udp_sk(sk);
1973         int is_udplite = IS_UDPLITE(sk);
1974
1975         /*
1976          *      Charge it to the socket, dropping if the queue is full.
1977          */
1978         if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1979                 goto drop;
1980         nf_reset(skb);
1981
1982         if (static_branch_unlikely(&udp_encap_needed_key) && up->encap_type) {
1983                 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
1984
1985                 /*
1986                  * This is an encapsulation socket so pass the skb to
1987                  * the socket's udp_encap_rcv() hook. Otherwise, just
1988                  * fall through and pass this up the UDP socket.
1989                  * up->encap_rcv() returns the following value:
1990                  * =0 if skb was successfully passed to the encap
1991                  *    handler or was discarded by it.
1992                  * >0 if skb should be passed on to UDP.
1993                  * <0 if skb should be resubmitted as proto -N
1994                  */
1995
1996                 /* if we're overly short, let UDP handle it */
1997                 encap_rcv = READ_ONCE(up->encap_rcv);
1998                 if (encap_rcv) {
1999                         int ret;
2000
2001                         /* Verify checksum before giving to encap */
2002                         if (udp_lib_checksum_complete(skb))
2003                                 goto csum_error;
2004
2005                         ret = encap_rcv(sk, skb);
2006                         if (ret <= 0) {
2007                                 __UDP_INC_STATS(sock_net(sk),
2008                                                 UDP_MIB_INDATAGRAMS,
2009                                                 is_udplite);
2010                                 return -ret;
2011                         }
2012                 }
2013
2014                 /* FALLTHROUGH -- it's a UDP Packet */
2015         }
2016
2017         /*
2018          *      UDP-Lite specific tests, ignored on UDP sockets
2019          */
2020         if ((is_udplite & UDPLITE_RECV_CC)  &&  UDP_SKB_CB(skb)->partial_cov) {
2021
2022                 /*
2023                  * MIB statistics other than incrementing the error count are
2024                  * disabled for the following two types of errors: these depend
2025                  * on the application settings, not on the functioning of the
2026                  * protocol stack as such.
2027                  *
2028                  * RFC 3828 here recommends (sec 3.3): "There should also be a
2029                  * way ... to ... at least let the receiving application block
2030                  * delivery of packets with coverage values less than a value
2031                  * provided by the application."
2032                  */
2033                 if (up->pcrlen == 0) {          /* full coverage was set  */
2034                         net_dbg_ratelimited("UDPLite: partial coverage %d while full coverage %d requested\n",
2035                                             UDP_SKB_CB(skb)->cscov, skb->len);
2036                         goto drop;
2037                 }
2038                 /* The next case involves violating the min. coverage requested
2039                  * by the receiver. This is subtle: if receiver wants x and x is
2040                  * greater than the buffersize/MTU then receiver will complain
2041                  * that it wants x while sender emits packets of smaller size y.
2042                  * Therefore the above ...()->partial_cov statement is essential.
2043                  */
2044                 if (UDP_SKB_CB(skb)->cscov  <  up->pcrlen) {
2045                         net_dbg_ratelimited("UDPLite: coverage %d too small, need min %d\n",
2046                                             UDP_SKB_CB(skb)->cscov, up->pcrlen);
2047                         goto drop;
2048                 }
2049         }
2050
2051         prefetch(&sk->sk_rmem_alloc);
2052         if (rcu_access_pointer(sk->sk_filter) &&
2053             udp_lib_checksum_complete(skb))
2054                         goto csum_error;
2055
2056         if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
2057                 goto drop;
2058
2059         udp_csum_pull_header(skb);
2060
2061         ipv4_pktinfo_prepare(sk, skb);
2062         return __udp_queue_rcv_skb(sk, skb);
2063
2064 csum_error:
2065         __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
2066 drop:
2067         __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
2068         atomic_inc(&sk->sk_drops);
2069         kfree_skb(skb);
2070         return -1;
2071 }
2072
2073 static int udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
2074 {
2075         struct sk_buff *next, *segs;
2076         int ret;
2077
2078         if (likely(!udp_unexpected_gso(sk, skb)))
2079                 return udp_queue_rcv_one_skb(sk, skb);
2080
2081         BUILD_BUG_ON(sizeof(struct udp_skb_cb) > SKB_SGO_CB_OFFSET);
2082         __skb_push(skb, -skb_mac_offset(skb));
2083         segs = udp_rcv_segment(sk, skb, true);
2084         for (skb = segs; skb; skb = next) {
2085                 next = skb->next;
2086                 __skb_pull(skb, skb_transport_offset(skb));
2087                 ret = udp_queue_rcv_one_skb(sk, skb);
2088                 if (ret > 0)
2089                         ip_protocol_deliver_rcu(dev_net(skb->dev), skb, -ret);
2090         }
2091         return 0;
2092 }
2093
2094 /* For TCP sockets, sk_rx_dst is protected by socket lock
2095  * For UDP, we use xchg() to guard against concurrent changes.
2096  */
2097 bool udp_sk_rx_dst_set(struct sock *sk, struct dst_entry *dst)
2098 {
2099         struct dst_entry *old;
2100
2101         if (dst_hold_safe(dst)) {
2102                 old = xchg(&sk->sk_rx_dst, dst);
2103                 dst_release(old);
2104                 return old != dst;
2105         }
2106         return false;
2107 }
2108 EXPORT_SYMBOL(udp_sk_rx_dst_set);
2109
2110 /*
2111  *      Multicasts and broadcasts go to each listener.
2112  *
2113  *      Note: called only from the BH handler context.
2114  */
2115 static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
2116                                     struct udphdr  *uh,
2117                                     __be32 saddr, __be32 daddr,
2118                                     struct udp_table *udptable,
2119                                     int proto)
2120 {
2121         struct sock *sk, *first = NULL;
2122         unsigned short hnum = ntohs(uh->dest);
2123         struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
2124         unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
2125         unsigned int offset = offsetof(typeof(*sk), sk_node);
2126         int dif = skb->dev->ifindex;
2127         int sdif = inet_sdif(skb);
2128         struct hlist_node *node;
2129         struct sk_buff *nskb;
2130
2131         if (use_hash2) {
2132                 hash2_any = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum) &
2133                             udptable->mask;
2134                 hash2 = ipv4_portaddr_hash(net, daddr, hnum) & udptable->mask;
2135 start_lookup:
2136                 hslot = &udptable->hash2[hash2];
2137                 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
2138         }
2139
2140         sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
2141                 if (!__udp_is_mcast_sock(net, sk, uh->dest, daddr,
2142                                          uh->source, saddr, dif, sdif, hnum))
2143                         continue;
2144
2145                 if (!first) {
2146                         first = sk;
2147                         continue;
2148                 }
2149                 nskb = skb_clone(skb, GFP_ATOMIC);
2150
2151                 if (unlikely(!nskb)) {
2152                         atomic_inc(&sk->sk_drops);
2153                         __UDP_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
2154                                         IS_UDPLITE(sk));
2155                         __UDP_INC_STATS(net, UDP_MIB_INERRORS,
2156                                         IS_UDPLITE(sk));
2157                         continue;
2158                 }
2159                 if (udp_queue_rcv_skb(sk, nskb) > 0)
2160                         consume_skb(nskb);
2161         }
2162
2163         /* Also lookup *:port if we are using hash2 and haven't done so yet. */
2164         if (use_hash2 && hash2 != hash2_any) {
2165                 hash2 = hash2_any;
2166                 goto start_lookup;
2167         }
2168
2169         if (first) {
2170                 if (udp_queue_rcv_skb(first, skb) > 0)
2171                         consume_skb(skb);
2172         } else {
2173                 kfree_skb(skb);
2174                 __UDP_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
2175                                 proto == IPPROTO_UDPLITE);
2176         }
2177         return 0;
2178 }
2179
2180 /* Initialize UDP checksum. If exited with zero value (success),
2181  * CHECKSUM_UNNECESSARY means, that no more checks are required.
2182  * Otherwise, csum completion requires chacksumming packet body,
2183  * including udp header and folding it to skb->csum.
2184  */
2185 static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh,
2186                                  int proto)
2187 {
2188         int err;
2189
2190         UDP_SKB_CB(skb)->partial_cov = 0;
2191         UDP_SKB_CB(skb)->cscov = skb->len;
2192
2193         if (proto == IPPROTO_UDPLITE) {
2194                 err = udplite_checksum_init(skb, uh);
2195                 if (err)
2196                         return err;
2197
2198                 if (UDP_SKB_CB(skb)->partial_cov) {
2199                         skb->csum = inet_compute_pseudo(skb, proto);
2200                         return 0;
2201                 }
2202         }
2203
2204         /* Note, we are only interested in != 0 or == 0, thus the
2205          * force to int.
2206          */
2207         err = (__force int)skb_checksum_init_zero_check(skb, proto, uh->check,
2208                                                         inet_compute_pseudo);
2209         if (err)
2210                 return err;
2211
2212         if (skb->ip_summed == CHECKSUM_COMPLETE && !skb->csum_valid) {
2213                 /* If SW calculated the value, we know it's bad */
2214                 if (skb->csum_complete_sw)
2215                         return 1;
2216
2217                 /* HW says the value is bad. Let's validate that.
2218                  * skb->csum is no longer the full packet checksum,
2219                  * so don't treat it as such.
2220                  */
2221                 skb_checksum_complete_unset(skb);
2222         }
2223
2224         return 0;
2225 }
2226
2227 /* wrapper for udp_queue_rcv_skb tacking care of csum conversion and
2228  * return code conversion for ip layer consumption
2229  */
2230 static int udp_unicast_rcv_skb(struct sock *sk, struct sk_buff *skb,
2231                                struct udphdr *uh)
2232 {
2233         int ret;
2234
2235         if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
2236                 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
2237                                          inet_compute_pseudo);
2238
2239         ret = udp_queue_rcv_skb(sk, skb);
2240
2241         /* a return value > 0 means to resubmit the input, but
2242          * it wants the return to be -protocol, or 0
2243          */
2244         if (ret > 0)
2245                 return -ret;
2246         return 0;
2247 }
2248
2249 /*
2250  *      All we need to do is get the socket, and then do a checksum.
2251  */
2252
2253 int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
2254                    int proto)
2255 {
2256         struct sock *sk;
2257         struct udphdr *uh;
2258         unsigned short ulen;
2259         struct rtable *rt = skb_rtable(skb);
2260         __be32 saddr, daddr;
2261         struct net *net = dev_net(skb->dev);
2262
2263         /*
2264          *  Validate the packet.
2265          */
2266         if (!pskb_may_pull(skb, sizeof(struct udphdr)))
2267                 goto drop;              /* No space for header. */
2268
2269         uh   = udp_hdr(skb);
2270         ulen = ntohs(uh->len);
2271         saddr = ip_hdr(skb)->saddr;
2272         daddr = ip_hdr(skb)->daddr;
2273
2274         if (ulen > skb->len)
2275                 goto short_packet;
2276
2277         if (proto == IPPROTO_UDP) {
2278                 /* UDP validates ulen. */
2279                 if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen))
2280                         goto short_packet;
2281                 uh = udp_hdr(skb);
2282         }
2283
2284         if (udp4_csum_init(skb, uh, proto))
2285                 goto csum_error;
2286
2287         sk = skb_steal_sock(skb);
2288         if (sk) {
2289                 struct dst_entry *dst = skb_dst(skb);
2290                 int ret;
2291
2292                 if (unlikely(sk->sk_rx_dst != dst))
2293                         udp_sk_rx_dst_set(sk, dst);
2294
2295                 ret = udp_unicast_rcv_skb(sk, skb, uh);
2296                 sock_put(sk);
2297                 return ret;
2298         }
2299
2300         if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST))
2301                 return __udp4_lib_mcast_deliver(net, skb, uh,
2302                                                 saddr, daddr, udptable, proto);
2303
2304         sk = __udp4_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
2305         if (sk)
2306                 return udp_unicast_rcv_skb(sk, skb, uh);
2307
2308         if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
2309                 goto drop;
2310         nf_reset(skb);
2311
2312         /* No socket. Drop packet silently, if checksum is wrong */
2313         if (udp_lib_checksum_complete(skb))
2314                 goto csum_error;
2315
2316         __UDP_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
2317         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
2318
2319         /*
2320          * Hmm.  We got an UDP packet to a port to which we
2321          * don't wanna listen.  Ignore it.
2322          */
2323         kfree_skb(skb);
2324         return 0;
2325
2326 short_packet:
2327         net_dbg_ratelimited("UDP%s: short packet: From %pI4:%u %d/%d to %pI4:%u\n",
2328                             proto == IPPROTO_UDPLITE ? "Lite" : "",
2329                             &saddr, ntohs(uh->source),
2330                             ulen, skb->len,
2331                             &daddr, ntohs(uh->dest));
2332         goto drop;
2333
2334 csum_error:
2335         /*
2336          * RFC1122: OK.  Discards the bad packet silently (as far as
2337          * the network is concerned, anyway) as per 4.1.3.4 (MUST).
2338          */
2339         net_dbg_ratelimited("UDP%s: bad checksum. From %pI4:%u to %pI4:%u ulen %d\n",
2340                             proto == IPPROTO_UDPLITE ? "Lite" : "",
2341                             &saddr, ntohs(uh->source), &daddr, ntohs(uh->dest),
2342                             ulen);
2343         __UDP_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
2344 drop:
2345         __UDP_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
2346         kfree_skb(skb);
2347         return 0;
2348 }
2349
2350 /* We can only early demux multicast if there is a single matching socket.
2351  * If more than one socket found returns NULL
2352  */
2353 static struct sock *__udp4_lib_mcast_demux_lookup(struct net *net,
2354                                                   __be16 loc_port, __be32 loc_addr,
2355                                                   __be16 rmt_port, __be32 rmt_addr,
2356                                                   int dif, int sdif)
2357 {
2358         struct sock *sk, *result;
2359         unsigned short hnum = ntohs(loc_port);
2360         unsigned int slot = udp_hashfn(net, hnum, udp_table.mask);
2361         struct udp_hslot *hslot = &udp_table.hash[slot];
2362
2363         /* Do not bother scanning a too big list */
2364         if (hslot->count > 10)
2365                 return NULL;
2366
2367         result = NULL;
2368         sk_for_each_rcu(sk, &hslot->head) {
2369                 if (__udp_is_mcast_sock(net, sk, loc_port, loc_addr,
2370                                         rmt_port, rmt_addr, dif, sdif, hnum)) {
2371                         if (result)
2372                                 return NULL;
2373                         result = sk;
2374                 }
2375         }
2376
2377         return result;
2378 }
2379
2380 /* For unicast we should only early demux connected sockets or we can
2381  * break forwarding setups.  The chains here can be long so only check
2382  * if the first socket is an exact match and if not move on.
2383  */
2384 static struct sock *__udp4_lib_demux_lookup(struct net *net,
2385                                             __be16 loc_port, __be32 loc_addr,
2386                                             __be16 rmt_port, __be32 rmt_addr,
2387                                             int dif, int sdif)
2388 {
2389         unsigned short hnum = ntohs(loc_port);
2390         unsigned int hash2 = ipv4_portaddr_hash(net, loc_addr, hnum);
2391         unsigned int slot2 = hash2 & udp_table.mask;
2392         struct udp_hslot *hslot2 = &udp_table.hash2[slot2];
2393         INET_ADDR_COOKIE(acookie, rmt_addr, loc_addr);
2394         const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum);
2395         struct sock *sk;
2396
2397         udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
2398                 if (INET_MATCH(sk, net, acookie, rmt_addr,
2399                                loc_addr, ports, dif, sdif))
2400                         return sk;
2401                 /* Only check first socket in chain */
2402                 break;
2403         }
2404         return NULL;
2405 }
2406
2407 int udp_v4_early_demux(struct sk_buff *skb)
2408 {
2409         struct net *net = dev_net(skb->dev);
2410         struct in_device *in_dev = NULL;
2411         const struct iphdr *iph;
2412         const struct udphdr *uh;
2413         struct sock *sk = NULL;
2414         struct dst_entry *dst;
2415         int dif = skb->dev->ifindex;
2416         int sdif = inet_sdif(skb);
2417         int ours;
2418
2419         /* validate the packet */
2420         if (!pskb_may_pull(skb, skb_transport_offset(skb) + sizeof(struct udphdr)))
2421                 return 0;
2422
2423         iph = ip_hdr(skb);
2424         uh = udp_hdr(skb);
2425
2426         if (skb->pkt_type == PACKET_MULTICAST) {
2427                 in_dev = __in_dev_get_rcu(skb->dev);
2428
2429                 if (!in_dev)
2430                         return 0;
2431
2432                 ours = ip_check_mc_rcu(in_dev, iph->daddr, iph->saddr,
2433                                        iph->protocol);
2434                 if (!ours)
2435                         return 0;
2436
2437                 sk = __udp4_lib_mcast_demux_lookup(net, uh->dest, iph->daddr,
2438                                                    uh->source, iph->saddr,
2439                                                    dif, sdif);
2440         } else if (skb->pkt_type == PACKET_HOST) {
2441                 sk = __udp4_lib_demux_lookup(net, uh->dest, iph->daddr,
2442                                              uh->source, iph->saddr, dif, sdif);
2443         }
2444
2445         if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
2446                 return 0;
2447
2448         skb->sk = sk;
2449         skb->destructor = sock_efree;
2450         dst = READ_ONCE(sk->sk_rx_dst);
2451
2452         if (dst)
2453                 dst = dst_check(dst, 0);
2454         if (dst) {
2455                 u32 itag = 0;
2456
2457                 /* set noref for now.
2458                  * any place which wants to hold dst has to call
2459                  * dst_hold_safe()
2460                  */
2461                 skb_dst_set_noref(skb, dst);
2462
2463                 /* for unconnected multicast sockets we need to validate
2464                  * the source on each packet
2465                  */
2466                 if (!inet_sk(sk)->inet_daddr && in_dev)
2467                         return ip_mc_validate_source(skb, iph->daddr,
2468                                                      iph->saddr, iph->tos,
2469                                                      skb->dev, in_dev, &itag);
2470         }
2471         return 0;
2472 }
2473
2474 int udp_rcv(struct sk_buff *skb)
2475 {
2476         return __udp4_lib_rcv(skb, &udp_table, IPPROTO_UDP);
2477 }
2478
2479 void udp_destroy_sock(struct sock *sk)
2480 {
2481         struct udp_sock *up = udp_sk(sk);
2482         bool slow = lock_sock_fast(sk);
2483         udp_flush_pending_frames(sk);
2484         unlock_sock_fast(sk, slow);
2485         if (static_branch_unlikely(&udp_encap_needed_key)) {
2486                 if (up->encap_type) {
2487                         void (*encap_destroy)(struct sock *sk);
2488                         encap_destroy = READ_ONCE(up->encap_destroy);
2489                         if (encap_destroy)
2490                                 encap_destroy(sk);
2491                 }
2492                 if (up->encap_enabled)
2493                         static_branch_disable(&udp_encap_needed_key);
2494         }
2495 }
2496
2497 /*
2498  *      Socket option code for UDP
2499  */
2500 int udp_lib_setsockopt(struct sock *sk, int level, int optname,
2501                        char __user *optval, unsigned int optlen,
2502                        int (*push_pending_frames)(struct sock *))
2503 {
2504         struct udp_sock *up = udp_sk(sk);
2505         int val, valbool;
2506         int err = 0;
2507         int is_udplite = IS_UDPLITE(sk);
2508
2509         if (optlen < sizeof(int))
2510                 return -EINVAL;
2511
2512         if (get_user(val, (int __user *)optval))
2513                 return -EFAULT;
2514
2515         valbool = val ? 1 : 0;
2516
2517         switch (optname) {
2518         case UDP_CORK:
2519                 if (val != 0) {
2520                         up->corkflag = 1;
2521                 } else {
2522                         up->corkflag = 0;
2523                         lock_sock(sk);
2524                         push_pending_frames(sk);
2525                         release_sock(sk);
2526                 }
2527                 break;
2528
2529         case UDP_ENCAP:
2530                 switch (val) {
2531                 case 0:
2532                 case UDP_ENCAP_ESPINUDP:
2533                 case UDP_ENCAP_ESPINUDP_NON_IKE:
2534                         up->encap_rcv = xfrm4_udp_encap_rcv;
2535                         /* FALLTHROUGH */
2536                 case UDP_ENCAP_L2TPINUDP:
2537                         up->encap_type = val;
2538                         lock_sock(sk);
2539                         udp_tunnel_encap_enable(sk->sk_socket);
2540                         release_sock(sk);
2541                         break;
2542                 default:
2543                         err = -ENOPROTOOPT;
2544                         break;
2545                 }
2546                 break;
2547
2548         case UDP_NO_CHECK6_TX:
2549                 up->no_check6_tx = valbool;
2550                 break;
2551
2552         case UDP_NO_CHECK6_RX:
2553                 up->no_check6_rx = valbool;
2554                 break;
2555
2556         case UDP_SEGMENT:
2557                 if (val < 0 || val > USHRT_MAX)
2558                         return -EINVAL;
2559                 up->gso_size = val;
2560                 break;
2561
2562         case UDP_GRO:
2563                 lock_sock(sk);
2564                 if (valbool)
2565                         udp_tunnel_encap_enable(sk->sk_socket);
2566                 up->gro_enabled = valbool;
2567                 release_sock(sk);
2568                 break;
2569
2570         /*
2571          *      UDP-Lite's partial checksum coverage (RFC 3828).
2572          */
2573         /* The sender sets actual checksum coverage length via this option.
2574          * The case coverage > packet length is handled by send module. */
2575         case UDPLITE_SEND_CSCOV:
2576                 if (!is_udplite)         /* Disable the option on UDP sockets */
2577                         return -ENOPROTOOPT;
2578                 if (val != 0 && val < 8) /* Illegal coverage: use default (8) */
2579                         val = 8;
2580                 else if (val > USHRT_MAX)
2581                         val = USHRT_MAX;
2582                 up->pcslen = val;
2583                 up->pcflag |= UDPLITE_SEND_CC;
2584                 break;
2585
2586         /* The receiver specifies a minimum checksum coverage value. To make
2587          * sense, this should be set to at least 8 (as done below). If zero is
2588          * used, this again means full checksum coverage.                     */
2589         case UDPLITE_RECV_CSCOV:
2590                 if (!is_udplite)         /* Disable the option on UDP sockets */
2591                         return -ENOPROTOOPT;
2592                 if (val != 0 && val < 8) /* Avoid silly minimal values.       */
2593                         val = 8;
2594                 else if (val > USHRT_MAX)
2595                         val = USHRT_MAX;
2596                 up->pcrlen = val;
2597                 up->pcflag |= UDPLITE_RECV_CC;
2598                 break;
2599
2600         default:
2601                 err = -ENOPROTOOPT;
2602                 break;
2603         }
2604
2605         return err;
2606 }
2607 EXPORT_SYMBOL(udp_lib_setsockopt);
2608
2609 int udp_setsockopt(struct sock *sk, int level, int optname,
2610                    char __user *optval, unsigned int optlen)
2611 {
2612         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
2613                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
2614                                           udp_push_pending_frames);
2615         return ip_setsockopt(sk, level, optname, optval, optlen);
2616 }
2617
2618 #ifdef CONFIG_COMPAT
2619 int compat_udp_setsockopt(struct sock *sk, int level, int optname,
2620                           char __user *optval, unsigned int optlen)
2621 {
2622         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
2623                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
2624                                           udp_push_pending_frames);
2625         return compat_ip_setsockopt(sk, level, optname, optval, optlen);
2626 }
2627 #endif
2628
2629 int udp_lib_getsockopt(struct sock *sk, int level, int optname,
2630                        char __user *optval, int __user *optlen)
2631 {
2632         struct udp_sock *up = udp_sk(sk);
2633         int val, len;
2634
2635         if (get_user(len, optlen))
2636                 return -EFAULT;
2637
2638         len = min_t(unsigned int, len, sizeof(int));
2639
2640         if (len < 0)
2641                 return -EINVAL;
2642
2643         switch (optname) {
2644         case UDP_CORK:
2645                 val = up->corkflag;
2646                 break;
2647
2648         case UDP_ENCAP:
2649                 val = up->encap_type;
2650                 break;
2651
2652         case UDP_NO_CHECK6_TX:
2653                 val = up->no_check6_tx;
2654                 break;
2655
2656         case UDP_NO_CHECK6_RX:
2657                 val = up->no_check6_rx;
2658                 break;
2659
2660         case UDP_SEGMENT:
2661                 val = up->gso_size;
2662                 break;
2663
2664         /* The following two cannot be changed on UDP sockets, the return is
2665          * always 0 (which corresponds to the full checksum coverage of UDP). */
2666         case UDPLITE_SEND_CSCOV:
2667                 val = up->pcslen;
2668                 break;
2669
2670         case UDPLITE_RECV_CSCOV:
2671                 val = up->pcrlen;
2672                 break;
2673
2674         default:
2675                 return -ENOPROTOOPT;
2676         }
2677
2678         if (put_user(len, optlen))
2679                 return -EFAULT;
2680         if (copy_to_user(optval, &val, len))
2681                 return -EFAULT;
2682         return 0;
2683 }
2684 EXPORT_SYMBOL(udp_lib_getsockopt);
2685
2686 int udp_getsockopt(struct sock *sk, int level, int optname,
2687                    char __user *optval, int __user *optlen)
2688 {
2689         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
2690                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
2691         return ip_getsockopt(sk, level, optname, optval, optlen);
2692 }
2693
2694 #ifdef CONFIG_COMPAT
2695 int compat_udp_getsockopt(struct sock *sk, int level, int optname,
2696                                  char __user *optval, int __user *optlen)
2697 {
2698         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
2699                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
2700         return compat_ip_getsockopt(sk, level, optname, optval, optlen);
2701 }
2702 #endif
2703 /**
2704  *      udp_poll - wait for a UDP event.
2705  *      @file - file struct
2706  *      @sock - socket
2707  *      @wait - poll table
2708  *
2709  *      This is same as datagram poll, except for the special case of
2710  *      blocking sockets. If application is using a blocking fd
2711  *      and a packet with checksum error is in the queue;
2712  *      then it could get return from select indicating data available
2713  *      but then block when reading it. Add special case code
2714  *      to work around these arguably broken applications.
2715  */
2716 __poll_t udp_poll(struct file *file, struct socket *sock, poll_table *wait)
2717 {
2718         __poll_t mask = datagram_poll(file, sock, wait);
2719         struct sock *sk = sock->sk;
2720
2721         if (!skb_queue_empty(&udp_sk(sk)->reader_queue))
2722                 mask |= EPOLLIN | EPOLLRDNORM;
2723
2724         /* Check for false positives due to checksum errors */
2725         if ((mask & EPOLLRDNORM) && !(file->f_flags & O_NONBLOCK) &&
2726             !(sk->sk_shutdown & RCV_SHUTDOWN) && first_packet_length(sk) == -1)
2727                 mask &= ~(EPOLLIN | EPOLLRDNORM);
2728
2729         return mask;
2730
2731 }
2732 EXPORT_SYMBOL(udp_poll);
2733
2734 int udp_abort(struct sock *sk, int err)
2735 {
2736         lock_sock(sk);
2737
2738         sk->sk_err = err;
2739         sk->sk_error_report(sk);
2740         __udp_disconnect(sk, 0);
2741
2742         release_sock(sk);
2743
2744         return 0;
2745 }
2746 EXPORT_SYMBOL_GPL(udp_abort);
2747
2748 struct proto udp_prot = {
2749         .name                   = "UDP",
2750         .owner                  = THIS_MODULE,
2751         .close                  = udp_lib_close,
2752         .pre_connect            = udp_pre_connect,
2753         .connect                = ip4_datagram_connect,
2754         .disconnect             = udp_disconnect,
2755         .ioctl                  = udp_ioctl,
2756         .init                   = udp_init_sock,
2757         .destroy                = udp_destroy_sock,
2758         .setsockopt             = udp_setsockopt,
2759         .getsockopt             = udp_getsockopt,
2760         .sendmsg                = udp_sendmsg,
2761         .recvmsg                = udp_recvmsg,
2762         .sendpage               = udp_sendpage,
2763         .release_cb             = ip4_datagram_release_cb,
2764         .hash                   = udp_lib_hash,
2765         .unhash                 = udp_lib_unhash,
2766         .rehash                 = udp_v4_rehash,
2767         .get_port               = udp_v4_get_port,
2768         .memory_allocated       = &udp_memory_allocated,
2769         .sysctl_mem             = sysctl_udp_mem,
2770         .sysctl_wmem_offset     = offsetof(struct net, ipv4.sysctl_udp_wmem_min),
2771         .sysctl_rmem_offset     = offsetof(struct net, ipv4.sysctl_udp_rmem_min),
2772         .obj_size               = sizeof(struct udp_sock),
2773         .h.udp_table            = &udp_table,
2774 #ifdef CONFIG_COMPAT
2775         .compat_setsockopt      = compat_udp_setsockopt,
2776         .compat_getsockopt      = compat_udp_getsockopt,
2777 #endif
2778         .diag_destroy           = udp_abort,
2779 };
2780 EXPORT_SYMBOL(udp_prot);
2781
2782 /* ------------------------------------------------------------------------ */
2783 #ifdef CONFIG_PROC_FS
2784
2785 static struct sock *udp_get_first(struct seq_file *seq, int start)
2786 {
2787         struct sock *sk;
2788         struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
2789         struct udp_iter_state *state = seq->private;
2790         struct net *net = seq_file_net(seq);
2791
2792         for (state->bucket = start; state->bucket <= afinfo->udp_table->mask;
2793              ++state->bucket) {
2794                 struct udp_hslot *hslot = &afinfo->udp_table->hash[state->bucket];
2795
2796                 if (hlist_empty(&hslot->head))
2797                         continue;
2798
2799                 spin_lock_bh(&hslot->lock);
2800                 sk_for_each(sk, &hslot->head) {
2801                         if (!net_eq(sock_net(sk), net))
2802                                 continue;
2803                         if (sk->sk_family == afinfo->family)
2804                                 goto found;
2805                 }
2806                 spin_unlock_bh(&hslot->lock);
2807         }
2808         sk = NULL;
2809 found:
2810         return sk;
2811 }
2812
2813 static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk)
2814 {
2815         struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
2816         struct udp_iter_state *state = seq->private;
2817         struct net *net = seq_file_net(seq);
2818
2819         do {
2820                 sk = sk_next(sk);
2821         } while (sk && (!net_eq(sock_net(sk), net) || sk->sk_family != afinfo->family));
2822
2823         if (!sk) {
2824                 if (state->bucket <= afinfo->udp_table->mask)
2825                         spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock);
2826                 return udp_get_first(seq, state->bucket + 1);
2827         }
2828         return sk;
2829 }
2830
2831 static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos)
2832 {
2833         struct sock *sk = udp_get_first(seq, 0);
2834
2835         if (sk)
2836                 while (pos && (sk = udp_get_next(seq, sk)) != NULL)
2837                         --pos;
2838         return pos ? NULL : sk;
2839 }
2840
2841 void *udp_seq_start(struct seq_file *seq, loff_t *pos)
2842 {
2843         struct udp_iter_state *state = seq->private;
2844         state->bucket = MAX_UDP_PORTS;
2845
2846         return *pos ? udp_get_idx(seq, *pos-1) : SEQ_START_TOKEN;
2847 }
2848 EXPORT_SYMBOL(udp_seq_start);
2849
2850 void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2851 {
2852         struct sock *sk;
2853
2854         if (v == SEQ_START_TOKEN)
2855                 sk = udp_get_idx(seq, 0);
2856         else
2857                 sk = udp_get_next(seq, v);
2858
2859         ++*pos;
2860         return sk;
2861 }
2862 EXPORT_SYMBOL(udp_seq_next);
2863
2864 void udp_seq_stop(struct seq_file *seq, void *v)
2865 {
2866         struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file));
2867         struct udp_iter_state *state = seq->private;
2868
2869         if (state->bucket <= afinfo->udp_table->mask)
2870                 spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock);
2871 }
2872 EXPORT_SYMBOL(udp_seq_stop);
2873
2874 /* ------------------------------------------------------------------------ */
2875 static void udp4_format_sock(struct sock *sp, struct seq_file *f,
2876                 int bucket)
2877 {
2878         struct inet_sock *inet = inet_sk(sp);
2879         __be32 dest = inet->inet_daddr;
2880         __be32 src  = inet->inet_rcv_saddr;
2881         __u16 destp       = ntohs(inet->inet_dport);
2882         __u16 srcp        = ntohs(inet->inet_sport);
2883
2884         seq_printf(f, "%5d: %08X:%04X %08X:%04X"
2885                 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d",
2886                 bucket, src, srcp, dest, destp, sp->sk_state,
2887                 sk_wmem_alloc_get(sp),
2888                 udp_rqueue_get(sp),
2889                 0, 0L, 0,
2890                 from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)),
2891                 0, sock_i_ino(sp),
2892                 refcount_read(&sp->sk_refcnt), sp,
2893                 atomic_read(&sp->sk_drops));
2894 }
2895
2896 int udp4_seq_show(struct seq_file *seq, void *v)
2897 {
2898         seq_setwidth(seq, 127);
2899         if (v == SEQ_START_TOKEN)
2900                 seq_puts(seq, "  sl  local_address rem_address   st tx_queue "
2901                            "rx_queue tr tm->when retrnsmt   uid  timeout "
2902                            "inode ref pointer drops");
2903         else {
2904                 struct udp_iter_state *state = seq->private;
2905
2906                 udp4_format_sock(v, seq, state->bucket);
2907         }
2908         seq_pad(seq, '\n');
2909         return 0;
2910 }
2911
2912 const struct seq_operations udp_seq_ops = {
2913         .start          = udp_seq_start,
2914         .next           = udp_seq_next,
2915         .stop           = udp_seq_stop,
2916         .show           = udp4_seq_show,
2917 };
2918 EXPORT_SYMBOL(udp_seq_ops);
2919
2920 static struct udp_seq_afinfo udp4_seq_afinfo = {
2921         .family         = AF_INET,
2922         .udp_table      = &udp_table,
2923 };
2924
2925 static int __net_init udp4_proc_init_net(struct net *net)
2926 {
2927         if (!proc_create_net_data("udp", 0444, net->proc_net, &udp_seq_ops,
2928                         sizeof(struct udp_iter_state), &udp4_seq_afinfo))
2929                 return -ENOMEM;
2930         return 0;
2931 }
2932
2933 static void __net_exit udp4_proc_exit_net(struct net *net)
2934 {
2935         remove_proc_entry("udp", net->proc_net);
2936 }
2937
2938 static struct pernet_operations udp4_net_ops = {
2939         .init = udp4_proc_init_net,
2940         .exit = udp4_proc_exit_net,
2941 };
2942
2943 int __init udp4_proc_init(void)
2944 {
2945         return register_pernet_subsys(&udp4_net_ops);
2946 }
2947
2948 void udp4_proc_exit(void)
2949 {
2950         unregister_pernet_subsys(&udp4_net_ops);
2951 }
2952 #endif /* CONFIG_PROC_FS */
2953
2954 static __initdata unsigned long uhash_entries;
2955 static int __init set_uhash_entries(char *str)
2956 {
2957         ssize_t ret;
2958
2959         if (!str)
2960                 return 0;
2961
2962         ret = kstrtoul(str, 0, &uhash_entries);
2963         if (ret)
2964                 return 0;
2965
2966         if (uhash_entries && uhash_entries < UDP_HTABLE_SIZE_MIN)
2967                 uhash_entries = UDP_HTABLE_SIZE_MIN;
2968         return 1;
2969 }
2970 __setup("uhash_entries=", set_uhash_entries);
2971
2972 void __init udp_table_init(struct udp_table *table, const char *name)
2973 {
2974         unsigned int i;
2975
2976         table->hash = alloc_large_system_hash(name,
2977                                               2 * sizeof(struct udp_hslot),
2978                                               uhash_entries,
2979                                               21, /* one slot per 2 MB */
2980                                               0,
2981                                               &table->log,
2982                                               &table->mask,
2983                                               UDP_HTABLE_SIZE_MIN,
2984                                               64 * 1024);
2985
2986         table->hash2 = table->hash + (table->mask + 1);
2987         for (i = 0; i <= table->mask; i++) {
2988                 INIT_HLIST_HEAD(&table->hash[i].head);
2989                 table->hash[i].count = 0;
2990                 spin_lock_init(&table->hash[i].lock);
2991         }
2992         for (i = 0; i <= table->mask; i++) {
2993                 INIT_HLIST_HEAD(&table->hash2[i].head);
2994                 table->hash2[i].count = 0;
2995                 spin_lock_init(&table->hash2[i].lock);
2996         }
2997 }
2998
2999 u32 udp_flow_hashrnd(void)
3000 {
3001         static u32 hashrnd __read_mostly;
3002
3003         net_get_random_once(&hashrnd, sizeof(hashrnd));
3004
3005         return hashrnd;
3006 }
3007 EXPORT_SYMBOL(udp_flow_hashrnd);
3008
3009 static void __udp_sysctl_init(struct net *net)
3010 {
3011         net->ipv4.sysctl_udp_rmem_min = SK_MEM_QUANTUM;
3012         net->ipv4.sysctl_udp_wmem_min = SK_MEM_QUANTUM;
3013
3014 #ifdef CONFIG_NET_L3_MASTER_DEV
3015         net->ipv4.sysctl_udp_l3mdev_accept = 0;
3016 #endif
3017 }
3018
3019 static int __net_init udp_sysctl_init(struct net *net)
3020 {
3021         __udp_sysctl_init(net);
3022         return 0;
3023 }
3024
3025 static struct pernet_operations __net_initdata udp_sysctl_ops = {
3026         .init   = udp_sysctl_init,
3027 };
3028
3029 void __init udp_init(void)
3030 {
3031         unsigned long limit;
3032         unsigned int i;
3033
3034         udp_table_init(&udp_table, "UDP");
3035         limit = nr_free_buffer_pages() / 8;
3036         limit = max(limit, 128UL);
3037         sysctl_udp_mem[0] = limit / 4 * 3;
3038         sysctl_udp_mem[1] = limit;
3039         sysctl_udp_mem[2] = sysctl_udp_mem[0] * 2;
3040
3041         __udp_sysctl_init(&init_net);
3042
3043         /* 16 spinlocks per cpu */
3044         udp_busylocks_log = ilog2(nr_cpu_ids) + 4;
3045         udp_busylocks = kmalloc(sizeof(spinlock_t) << udp_busylocks_log,
3046                                 GFP_KERNEL);
3047         if (!udp_busylocks)
3048                 panic("UDP: failed to alloc udp_busylocks\n");
3049         for (i = 0; i < (1U << udp_busylocks_log); i++)
3050                 spin_lock_init(udp_busylocks + i);
3051
3052         if (register_pernet_subsys(&udp_sysctl_ops))
3053                 panic("UDP: failed to init sysctl parameters.\n");
3054 }