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