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