12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later 21da177e4SLinus Torvalds /* 31da177e4SLinus Torvalds * INET An implementation of the TCP/IP protocol suite for the LINUX 41da177e4SLinus Torvalds * operating system. INET is implemented using the BSD Socket 51da177e4SLinus Torvalds * interface as the means of communication with the user level. 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * The User Datagram Protocol (UDP). 81da177e4SLinus Torvalds * 902c30a84SJesper Juhl * Authors: Ross Biro 101da177e4SLinus Torvalds * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 111da177e4SLinus Torvalds * Arnt Gulbrandsen, <agulbra@nvg.unit.no> 12113aa838SAlan Cox * Alan Cox, <alan@lxorguk.ukuu.org.uk> 131da177e4SLinus Torvalds * Hirokazu Takahashi, <taka@valinux.co.jp> 141da177e4SLinus Torvalds * 151da177e4SLinus Torvalds * Fixes: 161da177e4SLinus Torvalds * Alan Cox : verify_area() calls 171da177e4SLinus Torvalds * Alan Cox : stopped close while in use off icmp 181da177e4SLinus Torvalds * messages. Not a fix but a botch that 191da177e4SLinus Torvalds * for udp at least is 'valid'. 201da177e4SLinus Torvalds * Alan Cox : Fixed icmp handling properly 211da177e4SLinus Torvalds * Alan Cox : Correct error for oversized datagrams 221da177e4SLinus Torvalds * Alan Cox : Tidied select() semantics. 231da177e4SLinus Torvalds * Alan Cox : udp_err() fixed properly, also now 241da177e4SLinus Torvalds * select and read wake correctly on errors 251da177e4SLinus Torvalds * Alan Cox : udp_send verify_area moved to avoid mem leak 261da177e4SLinus Torvalds * Alan Cox : UDP can count its memory 271da177e4SLinus Torvalds * Alan Cox : send to an unknown connection causes 281da177e4SLinus Torvalds * an ECONNREFUSED off the icmp, but 291da177e4SLinus Torvalds * does NOT close. 301da177e4SLinus Torvalds * Alan Cox : Switched to new sk_buff handlers. No more backlog! 311da177e4SLinus Torvalds * Alan Cox : Using generic datagram code. Even smaller and the PEEK 321da177e4SLinus Torvalds * bug no longer crashes it. 331da177e4SLinus Torvalds * Fred Van Kempen : Net2e support for sk->broadcast. 341da177e4SLinus Torvalds * Alan Cox : Uses skb_free_datagram 351da177e4SLinus Torvalds * Alan Cox : Added get/set sockopt support. 361da177e4SLinus Torvalds * Alan Cox : Broadcasting without option set returns EACCES. 371da177e4SLinus Torvalds * Alan Cox : No wakeup calls. Instead we now use the callbacks. 381da177e4SLinus Torvalds * Alan Cox : Use ip_tos and ip_ttl 391da177e4SLinus Torvalds * Alan Cox : SNMP Mibs 401da177e4SLinus Torvalds * Alan Cox : MSG_DONTROUTE, and 0.0.0.0 support. 411da177e4SLinus Torvalds * Matt Dillon : UDP length checks. 421da177e4SLinus Torvalds * Alan Cox : Smarter af_inet used properly. 431da177e4SLinus Torvalds * Alan Cox : Use new kernel side addressing. 441da177e4SLinus Torvalds * Alan Cox : Incorrect return on truncated datagram receive. 451da177e4SLinus Torvalds * Arnt Gulbrandsen : New udp_send and stuff 461da177e4SLinus Torvalds * Alan Cox : Cache last socket 471da177e4SLinus Torvalds * Alan Cox : Route cache 481da177e4SLinus Torvalds * Jon Peatfield : Minor efficiency fix to sendto(). 491da177e4SLinus Torvalds * Mike Shaver : RFC1122 checks. 501da177e4SLinus Torvalds * Alan Cox : Nonblocking error fix. 511da177e4SLinus Torvalds * Willy Konynenberg : Transparent proxying support. 521da177e4SLinus Torvalds * Mike McLagan : Routing by source 531da177e4SLinus Torvalds * David S. Miller : New socket lookup architecture. 541da177e4SLinus Torvalds * Last socket cache retained as it 551da177e4SLinus Torvalds * does have a high hit rate. 561da177e4SLinus Torvalds * Olaf Kirch : Don't linearise iovec on sendmsg. 571da177e4SLinus Torvalds * Andi Kleen : Some cleanups, cache destination entry 581da177e4SLinus Torvalds * for connect. 591da177e4SLinus Torvalds * Vitaly E. Lavrov : Transparent proxy revived after year coma. 601da177e4SLinus Torvalds * Melvin Smith : Check msg_name not msg_namelen in sendto(), 611da177e4SLinus Torvalds * return ENOTCONN for unconnected sockets (POSIX) 621da177e4SLinus Torvalds * Janos Farkas : don't deliver multi/broadcasts to a different 631da177e4SLinus Torvalds * bound-to-device socket 641da177e4SLinus Torvalds * Hirokazu Takahashi : HW checksumming for outgoing UDP 651da177e4SLinus Torvalds * datagrams. 661da177e4SLinus Torvalds * Hirokazu Takahashi : sendfile() on UDP works now. 671da177e4SLinus Torvalds * Arnaldo C. Melo : convert /proc/net/udp to seq_file 681da177e4SLinus Torvalds * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which 691da177e4SLinus Torvalds * Alexey Kuznetsov: allow both IPv4 and IPv6 sockets to bind 701da177e4SLinus Torvalds * a single port at the same time. 711da177e4SLinus Torvalds * Derek Atkins <derek@ihtfp.com>: Add Encapulation Support 72342f0234SJames Chapman * James Chapman : Add L2TP encapsulation type. 731da177e4SLinus Torvalds */ 741da177e4SLinus Torvalds 75afd46503SJoe Perches #define pr_fmt(fmt) "UDP: " fmt 76afd46503SJoe Perches 777c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 781da177e4SLinus Torvalds #include <asm/ioctls.h> 7957c8a661SMike Rapoport #include <linux/memblock.h> 808203efb3SEric Dumazet #include <linux/highmem.h> 818203efb3SEric Dumazet #include <linux/swap.h> 821da177e4SLinus Torvalds #include <linux/types.h> 831da177e4SLinus Torvalds #include <linux/fcntl.h> 841da177e4SLinus Torvalds #include <linux/module.h> 851da177e4SLinus Torvalds #include <linux/socket.h> 861da177e4SLinus Torvalds #include <linux/sockios.h> 8714c85021SArnaldo Carvalho de Melo #include <linux/igmp.h> 886e540309SShawn Bohrer #include <linux/inetdevice.h> 891da177e4SLinus Torvalds #include <linux/in.h> 901da177e4SLinus Torvalds #include <linux/errno.h> 911da177e4SLinus Torvalds #include <linux/timer.h> 921da177e4SLinus Torvalds #include <linux/mm.h> 931da177e4SLinus Torvalds #include <linux/inet.h> 941da177e4SLinus Torvalds #include <linux/netdevice.h> 955a0e3ad6STejun Heo #include <linux/slab.h> 96c752f073SArnaldo Carvalho de Melo #include <net/tcp_states.h> 971da177e4SLinus Torvalds #include <linux/skbuff.h> 981da177e4SLinus Torvalds #include <linux/proc_fs.h> 991da177e4SLinus Torvalds #include <linux/seq_file.h> 100457c4cbcSEric W. Biederman #include <net/net_namespace.h> 1011da177e4SLinus Torvalds #include <net/icmp.h> 102421b3885SShawn Bohrer #include <net/inet_hashtables.h> 103e7cc0824SStefano Brivio #include <net/ip_tunnels.h> 1041da177e4SLinus Torvalds #include <net/route.h> 1051da177e4SLinus Torvalds #include <net/checksum.h> 1061da177e4SLinus Torvalds #include <net/xfrm.h> 107296f7ea7SSatoru Moriya #include <trace/events/udp.h> 108447167bfSEric Dumazet #include <linux/static_key.h> 10922911fc5SEric Dumazet #include <trace/events/skb.h> 110076bb0c8SEliezer Tamir #include <net/busy_poll.h> 111ba4e58ecSGerrit Renker #include "udp_impl.h" 112e32ea7e7SCraig Gallek #include <net/sock_reuseport.h> 113217375a0SEric Dumazet #include <net/addrconf.h> 11460fb9567SPaolo Abeni #include <net/udp_tunnel.h> 1150146dca7SSabrina Dubroca #if IS_ENABLED(CONFIG_IPV6) 1160146dca7SSabrina Dubroca #include <net/ipv6_stubs.h> 1170146dca7SSabrina Dubroca #endif 1181da177e4SLinus Torvalds 119f86dcc5aSEric Dumazet struct udp_table udp_table __read_mostly; 120645ca708SEric Dumazet EXPORT_SYMBOL(udp_table); 1211da177e4SLinus Torvalds 1228d987e5cSEric Dumazet long sysctl_udp_mem[3] __read_mostly; 12395766fffSHideo Aoki EXPORT_SYMBOL(sysctl_udp_mem); 124c482c568SEric Dumazet 1258d987e5cSEric Dumazet atomic_long_t udp_memory_allocated; 12695766fffSHideo Aoki EXPORT_SYMBOL(udp_memory_allocated); 12795766fffSHideo Aoki 128f86dcc5aSEric Dumazet #define MAX_UDP_PORTS 65536 129f86dcc5aSEric Dumazet #define PORTS_PER_CHAIN (MAX_UDP_PORTS / UDP_HTABLE_SIZE_MIN) 13098322f22SEric Dumazet 131f24d43c0SEric Dumazet static int udp_lib_lport_inuse(struct net *net, __u16 num, 132645ca708SEric Dumazet const struct udp_hslot *hslot, 13398322f22SEric Dumazet unsigned long *bitmap, 134fe38d2a1SJosef Bacik struct sock *sk, unsigned int log) 13525030a7fSGerrit Renker { 136f24d43c0SEric Dumazet struct sock *sk2; 137ba418fa3STom Herbert kuid_t uid = sock_i_uid(sk); 13825030a7fSGerrit Renker 139ca065d0cSEric Dumazet sk_for_each(sk2, &hslot->head) { 140f24d43c0SEric Dumazet if (net_eq(sock_net(sk2), net) && 141f24d43c0SEric Dumazet sk2 != sk && 142d4cada4aSEric Dumazet (bitmap || udp_sk(sk2)->udp_port_hash == num) && 143f24d43c0SEric Dumazet (!sk2->sk_reuse || !sk->sk_reuse) && 1449d4fb27dSJoe Perches (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if || 1459d4fb27dSJoe Perches sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 146fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, true)) { 147df560056SEric Garver if (sk2->sk_reuseport && sk->sk_reuseport && 148df560056SEric Garver !rcu_access_pointer(sk->sk_reuseport_cb) && 149df560056SEric Garver uid_eq(uid, sock_i_uid(sk2))) { 150df560056SEric Garver if (!bitmap) 151df560056SEric Garver return 0; 152df560056SEric Garver } else { 1534243cdc2SJoe Perches if (!bitmap) 154fc038410SDavid S. Miller return 1; 155df560056SEric Garver __set_bit(udp_sk(sk2)->udp_port_hash >> log, 156df560056SEric Garver bitmap); 157df560056SEric Garver } 1584243cdc2SJoe Perches } 15998322f22SEric Dumazet } 16025030a7fSGerrit Renker return 0; 16125030a7fSGerrit Renker } 16225030a7fSGerrit Renker 16330fff923SEric Dumazet /* 16430fff923SEric Dumazet * Note: we still hold spinlock of primary hash chain, so no other writer 16530fff923SEric Dumazet * can insert/delete a socket with local_port == num 16630fff923SEric Dumazet */ 16730fff923SEric Dumazet static int udp_lib_lport_inuse2(struct net *net, __u16 num, 16830fff923SEric Dumazet struct udp_hslot *hslot2, 169fe38d2a1SJosef Bacik struct sock *sk) 17030fff923SEric Dumazet { 17130fff923SEric Dumazet struct sock *sk2; 172ba418fa3STom Herbert kuid_t uid = sock_i_uid(sk); 17330fff923SEric Dumazet int res = 0; 17430fff923SEric Dumazet 17530fff923SEric Dumazet spin_lock(&hslot2->lock); 176ca065d0cSEric Dumazet udp_portaddr_for_each_entry(sk2, &hslot2->head) { 17730fff923SEric Dumazet if (net_eq(sock_net(sk2), net) && 17830fff923SEric Dumazet sk2 != sk && 17930fff923SEric Dumazet (udp_sk(sk2)->udp_port_hash == num) && 18030fff923SEric Dumazet (!sk2->sk_reuse || !sk->sk_reuse) && 1819d4fb27dSJoe Perches (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if || 1829d4fb27dSJoe Perches sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 183fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, true)) { 184df560056SEric Garver if (sk2->sk_reuseport && sk->sk_reuseport && 185df560056SEric Garver !rcu_access_pointer(sk->sk_reuseport_cb) && 186df560056SEric Garver uid_eq(uid, sock_i_uid(sk2))) { 187df560056SEric Garver res = 0; 188df560056SEric Garver } else { 18930fff923SEric Dumazet res = 1; 190df560056SEric Garver } 19130fff923SEric Dumazet break; 19230fff923SEric Dumazet } 1934243cdc2SJoe Perches } 19430fff923SEric Dumazet spin_unlock(&hslot2->lock); 19530fff923SEric Dumazet return res; 19630fff923SEric Dumazet } 19730fff923SEric Dumazet 198fe38d2a1SJosef Bacik static int udp_reuseport_add_sock(struct sock *sk, struct udp_hslot *hslot) 199e32ea7e7SCraig Gallek { 200e32ea7e7SCraig Gallek struct net *net = sock_net(sk); 201e32ea7e7SCraig Gallek kuid_t uid = sock_i_uid(sk); 202e32ea7e7SCraig Gallek struct sock *sk2; 203e32ea7e7SCraig Gallek 204ca065d0cSEric Dumazet sk_for_each(sk2, &hslot->head) { 205e32ea7e7SCraig Gallek if (net_eq(sock_net(sk2), net) && 206e32ea7e7SCraig Gallek sk2 != sk && 207e32ea7e7SCraig Gallek sk2->sk_family == sk->sk_family && 208e32ea7e7SCraig Gallek ipv6_only_sock(sk2) == ipv6_only_sock(sk) && 209e32ea7e7SCraig Gallek (udp_sk(sk2)->udp_port_hash == udp_sk(sk)->udp_port_hash) && 210e32ea7e7SCraig Gallek (sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 211e32ea7e7SCraig Gallek sk2->sk_reuseport && uid_eq(uid, sock_i_uid(sk2)) && 212fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, false)) { 2132dbb9b9eSMartin KaFai Lau return reuseport_add_sock(sk, sk2, 2142dbb9b9eSMartin KaFai Lau inet_rcv_saddr_any(sk)); 215e32ea7e7SCraig Gallek } 216e32ea7e7SCraig Gallek } 217e32ea7e7SCraig Gallek 2182dbb9b9eSMartin KaFai Lau return reuseport_alloc(sk, inet_rcv_saddr_any(sk)); 219e32ea7e7SCraig Gallek } 220e32ea7e7SCraig Gallek 22125030a7fSGerrit Renker /** 2226ba5a3c5SPavel Emelyanov * udp_lib_get_port - UDP/-Lite port lookup for IPv4 and IPv6 22325030a7fSGerrit Renker * 22425030a7fSGerrit Renker * @sk: socket struct in question 22525030a7fSGerrit Renker * @snum: port number to look up 22625985edcSLucas De Marchi * @hash2_nulladdr: AF-dependent hash value in secondary hash chains, 22730fff923SEric Dumazet * with NULL address 22825030a7fSGerrit Renker */ 2296ba5a3c5SPavel Emelyanov int udp_lib_get_port(struct sock *sk, unsigned short snum, 23030fff923SEric Dumazet unsigned int hash2_nulladdr) 2311da177e4SLinus Torvalds { 232512615b6SEric Dumazet struct udp_hslot *hslot, *hslot2; 233645ca708SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 23425030a7fSGerrit Renker int error = 1; 2353b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(sk); 2361da177e4SLinus Torvalds 23732c1da70SStephen Hemminger if (!snum) { 2389088c560SEric Dumazet int low, high, remaining; 23995c96174SEric Dumazet unsigned int rand; 24098322f22SEric Dumazet unsigned short first, last; 24198322f22SEric Dumazet DECLARE_BITMAP(bitmap, PORTS_PER_CHAIN); 2421da177e4SLinus Torvalds 2430bbf87d8SEric W. Biederman inet_get_local_port_range(net, &low, &high); 244a25de534SAnton Arapov remaining = (high - low) + 1; 245227b60f5SStephen Hemminger 24663862b5bSAruna-Hewapathirane rand = prandom_u32(); 2478fc54f68SDaniel Borkmann first = reciprocal_scale(rand, remaining) + low; 24898322f22SEric Dumazet /* 24998322f22SEric Dumazet * force rand to be an odd multiple of UDP_HTABLE_SIZE 25098322f22SEric Dumazet */ 251f86dcc5aSEric Dumazet rand = (rand | 1) * (udptable->mask + 1); 2525781b235SEric Dumazet last = first + udptable->mask + 1; 2535781b235SEric Dumazet do { 254f86dcc5aSEric Dumazet hslot = udp_hashslot(udptable, net, first); 25598322f22SEric Dumazet bitmap_zero(bitmap, PORTS_PER_CHAIN); 256645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 25798322f22SEric Dumazet udp_lib_lport_inuse(net, snum, hslot, bitmap, sk, 258fe38d2a1SJosef Bacik udptable->log); 25998322f22SEric Dumazet 26098322f22SEric Dumazet snum = first; 26198322f22SEric Dumazet /* 26298322f22SEric Dumazet * Iterate on all possible values of snum for this hash. 26398322f22SEric Dumazet * Using steps of an odd multiple of UDP_HTABLE_SIZE 26498322f22SEric Dumazet * give us randomization and full range coverage. 26598322f22SEric Dumazet */ 2669088c560SEric Dumazet do { 26798322f22SEric Dumazet if (low <= snum && snum <= high && 268e3826f1eSAmerigo Wang !test_bit(snum >> udptable->log, bitmap) && 269122ff243SWANG Cong !inet_is_local_reserved_port(net, snum)) 27098322f22SEric Dumazet goto found; 27198322f22SEric Dumazet snum += rand; 27298322f22SEric Dumazet } while (snum != first); 27398322f22SEric Dumazet spin_unlock_bh(&hslot->lock); 274df560056SEric Garver cond_resched(); 2755781b235SEric Dumazet } while (++first != last); 27698322f22SEric Dumazet goto fail; 277645ca708SEric Dumazet } else { 278f86dcc5aSEric Dumazet hslot = udp_hashslot(udptable, net, snum); 279645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 28030fff923SEric Dumazet if (hslot->count > 10) { 28130fff923SEric Dumazet int exist; 28230fff923SEric Dumazet unsigned int slot2 = udp_sk(sk)->udp_portaddr_hash ^ snum; 28330fff923SEric Dumazet 28430fff923SEric Dumazet slot2 &= udptable->mask; 28530fff923SEric Dumazet hash2_nulladdr &= udptable->mask; 28630fff923SEric Dumazet 28730fff923SEric Dumazet hslot2 = udp_hashslot2(udptable, slot2); 28830fff923SEric Dumazet if (hslot->count < hslot2->count) 28930fff923SEric Dumazet goto scan_primary_hash; 29030fff923SEric Dumazet 291fe38d2a1SJosef Bacik exist = udp_lib_lport_inuse2(net, snum, hslot2, sk); 29230fff923SEric Dumazet if (!exist && (hash2_nulladdr != slot2)) { 29330fff923SEric Dumazet hslot2 = udp_hashslot2(udptable, hash2_nulladdr); 29430fff923SEric Dumazet exist = udp_lib_lport_inuse2(net, snum, hslot2, 295fe38d2a1SJosef Bacik sk); 29630fff923SEric Dumazet } 29730fff923SEric Dumazet if (exist) 29830fff923SEric Dumazet goto fail_unlock; 29930fff923SEric Dumazet else 30030fff923SEric Dumazet goto found; 30130fff923SEric Dumazet } 30230fff923SEric Dumazet scan_primary_hash: 303fe38d2a1SJosef Bacik if (udp_lib_lport_inuse(net, snum, hslot, NULL, sk, 0)) 304645ca708SEric Dumazet goto fail_unlock; 305645ca708SEric Dumazet } 30698322f22SEric Dumazet found: 307c720c7e8SEric Dumazet inet_sk(sk)->inet_num = snum; 308d4cada4aSEric Dumazet udp_sk(sk)->udp_port_hash = snum; 309d4cada4aSEric Dumazet udp_sk(sk)->udp_portaddr_hash ^= snum; 3101da177e4SLinus Torvalds if (sk_unhashed(sk)) { 311e32ea7e7SCraig Gallek if (sk->sk_reuseport && 312fe38d2a1SJosef Bacik udp_reuseport_add_sock(sk, hslot)) { 313e32ea7e7SCraig Gallek inet_sk(sk)->inet_num = 0; 314e32ea7e7SCraig Gallek udp_sk(sk)->udp_port_hash = 0; 315e32ea7e7SCraig Gallek udp_sk(sk)->udp_portaddr_hash ^= snum; 316e32ea7e7SCraig Gallek goto fail_unlock; 317e32ea7e7SCraig Gallek } 318e32ea7e7SCraig Gallek 319ca065d0cSEric Dumazet sk_add_node_rcu(sk, &hslot->head); 320fdcc8aa9SEric Dumazet hslot->count++; 321c29a0bc4SPavel Emelyanov sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); 322512615b6SEric Dumazet 323512615b6SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 324512615b6SEric Dumazet spin_lock(&hslot2->lock); 325d894ba18SCraig Gallek if (IS_ENABLED(CONFIG_IPV6) && sk->sk_reuseport && 326d894ba18SCraig Gallek sk->sk_family == AF_INET6) 3271602f49bSDavid S. Miller hlist_add_tail_rcu(&udp_sk(sk)->udp_portaddr_node, 328d894ba18SCraig Gallek &hslot2->head); 329d894ba18SCraig Gallek else 330ca065d0cSEric Dumazet hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node, 331512615b6SEric Dumazet &hslot2->head); 332512615b6SEric Dumazet hslot2->count++; 333512615b6SEric Dumazet spin_unlock(&hslot2->lock); 3341da177e4SLinus Torvalds } 335ca065d0cSEric Dumazet sock_set_flag(sk, SOCK_RCU_FREE); 33625030a7fSGerrit Renker error = 0; 337645ca708SEric Dumazet fail_unlock: 338645ca708SEric Dumazet spin_unlock_bh(&hslot->lock); 3391da177e4SLinus Torvalds fail: 34025030a7fSGerrit Renker return error; 3411da177e4SLinus Torvalds } 342c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_get_port); 3431da177e4SLinus Torvalds 3446ba5a3c5SPavel Emelyanov int udp_v4_get_port(struct sock *sk, unsigned short snum) 345db8dac20SDavid S. Miller { 34630fff923SEric Dumazet unsigned int hash2_nulladdr = 347f0b1e64cSMartin KaFai Lau ipv4_portaddr_hash(sock_net(sk), htonl(INADDR_ANY), snum); 34830fff923SEric Dumazet unsigned int hash2_partial = 349f0b1e64cSMartin KaFai Lau ipv4_portaddr_hash(sock_net(sk), inet_sk(sk)->inet_rcv_saddr, 0); 35030fff923SEric Dumazet 351d4cada4aSEric Dumazet /* precompute partial secondary hash */ 35230fff923SEric Dumazet udp_sk(sk)->udp_portaddr_hash = hash2_partial; 353fe38d2a1SJosef Bacik return udp_lib_get_port(sk, snum, hash2_nulladdr); 354db8dac20SDavid S. Miller } 355db8dac20SDavid S. Miller 356d1e37288SSu, Xuemin static int compute_score(struct sock *sk, struct net *net, 357d1e37288SSu, Xuemin __be32 saddr, __be16 sport, 358fb74c277SDavid Ahern __be32 daddr, unsigned short hnum, 35973545373STim Beale int dif, int sdif) 360645ca708SEric Dumazet { 36160c04aecSJoe Perches int score; 36260c04aecSJoe Perches struct inet_sock *inet; 3636da5b0f0SMike Manning bool dev_match; 364645ca708SEric Dumazet 36560c04aecSJoe Perches if (!net_eq(sock_net(sk), net) || 36660c04aecSJoe Perches udp_sk(sk)->udp_port_hash != hnum || 36760c04aecSJoe Perches ipv6_only_sock(sk)) 36860c04aecSJoe Perches return -1; 369645ca708SEric Dumazet 3704cdeeee9SPeter Oskolkov if (sk->sk_rcv_saddr != daddr) 371645ca708SEric Dumazet return -1; 37260c04aecSJoe Perches 3734cdeeee9SPeter Oskolkov score = (sk->sk_family == PF_INET) ? 2 : 1; 3744cdeeee9SPeter Oskolkov 3754cdeeee9SPeter Oskolkov inet = inet_sk(sk); 376c720c7e8SEric Dumazet if (inet->inet_daddr) { 377c720c7e8SEric Dumazet if (inet->inet_daddr != saddr) 378645ca708SEric Dumazet return -1; 379ba418fa3STom Herbert score += 4; 380645ca708SEric Dumazet } 38160c04aecSJoe Perches 382c720c7e8SEric Dumazet if (inet->inet_dport) { 383c720c7e8SEric Dumazet if (inet->inet_dport != sport) 384645ca708SEric Dumazet return -1; 385ba418fa3STom Herbert score += 4; 386645ca708SEric Dumazet } 38760c04aecSJoe Perches 3886da5b0f0SMike Manning dev_match = udp_sk_bound_dev_eq(net, sk->sk_bound_dev_if, 3896da5b0f0SMike Manning dif, sdif); 39069678bcdSPaolo Abeni if (!dev_match) 391645ca708SEric Dumazet return -1; 392ba418fa3STom Herbert score += 4; 393fb74c277SDavid Ahern 3947170a977SEric Dumazet if (READ_ONCE(sk->sk_incoming_cpu) == raw_smp_processor_id()) 39570da268bSEric Dumazet score++; 396645ca708SEric Dumazet return score; 397645ca708SEric Dumazet } 398645ca708SEric Dumazet 3996eada011SEric Dumazet static u32 udp_ehashfn(const struct net *net, const __be32 laddr, 40065cd8033SHannes Frederic Sowa const __u16 lport, const __be32 faddr, 40165cd8033SHannes Frederic Sowa const __be16 fport) 40265cd8033SHannes Frederic Sowa { 4031bbdceefSHannes Frederic Sowa static u32 udp_ehash_secret __read_mostly; 4041bbdceefSHannes Frederic Sowa 4051bbdceefSHannes Frederic Sowa net_get_random_once(&udp_ehash_secret, sizeof(udp_ehash_secret)); 4061bbdceefSHannes Frederic Sowa 40765cd8033SHannes Frederic Sowa return __inet_ehashfn(laddr, lport, faddr, fport, 4081bbdceefSHannes Frederic Sowa udp_ehash_secret + net_hash_mix(net)); 40965cd8033SHannes Frederic Sowa } 41065cd8033SHannes Frederic Sowa 411d1e37288SSu, Xuemin /* called with rcu_read_lock() */ 4125051ebd2SEric Dumazet static struct sock *udp4_lib_lookup2(struct net *net, 4135051ebd2SEric Dumazet __be32 saddr, __be16 sport, 414fb74c277SDavid Ahern __be32 daddr, unsigned int hnum, 41573545373STim Beale int dif, int sdif, 416d1e37288SSu, Xuemin struct udp_hslot *hslot2, 4171134158bSCraig Gallek struct sk_buff *skb) 4185051ebd2SEric Dumazet { 4195051ebd2SEric Dumazet struct sock *sk, *result; 420e94a62f5SPaolo Abeni int score, badness; 421ba418fa3STom Herbert u32 hash = 0; 4225051ebd2SEric Dumazet 4235051ebd2SEric Dumazet result = NULL; 424ba418fa3STom Herbert badness = 0; 425ca065d0cSEric Dumazet udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 426d1e37288SSu, Xuemin score = compute_score(sk, net, saddr, sport, 42773545373STim Beale daddr, hnum, dif, sdif); 4285051ebd2SEric Dumazet if (score > badness) { 429acdcecc6SWillem de Bruijn if (sk->sk_reuseport && 430acdcecc6SWillem de Bruijn sk->sk_state != TCP_ESTABLISHED) { 43165cd8033SHannes Frederic Sowa hash = udp_ehashfn(net, daddr, hnum, 4327c0cadc6SEric Dumazet saddr, sport); 433ca065d0cSEric Dumazet result = reuseport_select_sock(sk, hash, skb, 4341134158bSCraig Gallek sizeof(struct udphdr)); 435acdcecc6SWillem de Bruijn if (result && !reuseport_has_conns(sk, false)) 436ca065d0cSEric Dumazet return result; 437ba418fa3STom Herbert } 438ca065d0cSEric Dumazet badness = score; 439ca065d0cSEric Dumazet result = sk; 4405051ebd2SEric Dumazet } 4415051ebd2SEric Dumazet } 4425051ebd2SEric Dumazet return result; 4435051ebd2SEric Dumazet } 4445051ebd2SEric Dumazet 445db8dac20SDavid S. Miller /* UDP is nearly always wildcards out the wazoo, it makes no sense to try 446db8dac20SDavid S. Miller * harder than this. -DaveM 447db8dac20SDavid S. Miller */ 448fce82338SPavel Emelyanov struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr, 449fb74c277SDavid Ahern __be16 sport, __be32 daddr, __be16 dport, int dif, 450fb74c277SDavid Ahern int sdif, struct udp_table *udptable, struct sk_buff *skb) 451db8dac20SDavid S. Miller { 4524cdeeee9SPeter Oskolkov struct sock *result; 453db8dac20SDavid S. Miller unsigned short hnum = ntohs(dport); 4544cdeeee9SPeter Oskolkov unsigned int hash2, slot2; 4554cdeeee9SPeter Oskolkov struct udp_hslot *hslot2; 456db8dac20SDavid S. Miller 457f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, daddr, hnum); 4585051ebd2SEric Dumazet slot2 = hash2 & udptable->mask; 4595051ebd2SEric Dumazet hslot2 = &udptable->hash2[slot2]; 4605051ebd2SEric Dumazet 4615051ebd2SEric Dumazet result = udp4_lib_lookup2(net, saddr, sport, 462fb74c277SDavid Ahern daddr, hnum, dif, sdif, 46373545373STim Beale hslot2, skb); 4645051ebd2SEric Dumazet if (!result) { 465f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum); 4665051ebd2SEric Dumazet slot2 = hash2 & udptable->mask; 4675051ebd2SEric Dumazet hslot2 = &udptable->hash2[slot2]; 4685051ebd2SEric Dumazet 4691223c67cSJorge Boncompte [DTI2] result = udp4_lib_lookup2(net, saddr, sport, 4704cdeeee9SPeter Oskolkov htonl(INADDR_ANY), hnum, dif, sdif, 47173545373STim Beale hslot2, skb); 4725051ebd2SEric Dumazet } 47388e235b8SEnrico Weigelt if (IS_ERR(result)) 4748217ca65SMartin KaFai Lau return NULL; 4755051ebd2SEric Dumazet return result; 4765051ebd2SEric Dumazet } 477fce82338SPavel Emelyanov EXPORT_SYMBOL_GPL(__udp4_lib_lookup); 478db8dac20SDavid S. Miller 479607c4aafSKOVACS Krisztian static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb, 480607c4aafSKOVACS Krisztian __be16 sport, __be16 dport, 481645ca708SEric Dumazet struct udp_table *udptable) 482607c4aafSKOVACS Krisztian { 483607c4aafSKOVACS Krisztian const struct iphdr *iph = ip_hdr(skb); 484607c4aafSKOVACS Krisztian 485ed7cbbceSAlexander Duyck return __udp4_lib_lookup(dev_net(skb->dev), iph->saddr, sport, 486607c4aafSKOVACS Krisztian iph->daddr, dport, inet_iif(skb), 487fb74c277SDavid Ahern inet_sdif(skb), udptable, skb); 488607c4aafSKOVACS Krisztian } 489607c4aafSKOVACS Krisztian 49063058308STom Herbert struct sock *udp4_lib_lookup_skb(struct sk_buff *skb, 49163058308STom Herbert __be16 sport, __be16 dport) 49263058308STom Herbert { 493257a525fSMartin KaFai Lau const struct iphdr *iph = ip_hdr(skb); 494257a525fSMartin KaFai Lau 495257a525fSMartin KaFai Lau return __udp4_lib_lookup(dev_net(skb->dev), iph->saddr, sport, 496257a525fSMartin KaFai Lau iph->daddr, dport, inet_iif(skb), 497257a525fSMartin KaFai Lau inet_sdif(skb), &udp_table, NULL); 49863058308STom Herbert } 49963058308STom Herbert EXPORT_SYMBOL_GPL(udp4_lib_lookup_skb); 50063058308STom Herbert 501ca065d0cSEric Dumazet /* Must be called under rcu_read_lock(). 502ca065d0cSEric Dumazet * Does increment socket refcount. 503ca065d0cSEric Dumazet */ 5046e86000cSArnd Bergmann #if IS_ENABLED(CONFIG_NF_TPROXY_IPV4) || IS_ENABLED(CONFIG_NF_SOCKET_IPV4) 505bcd41303SKOVACS Krisztian struct sock *udp4_lib_lookup(struct net *net, __be32 saddr, __be16 sport, 506bcd41303SKOVACS Krisztian __be32 daddr, __be16 dport, int dif) 507bcd41303SKOVACS Krisztian { 508ca065d0cSEric Dumazet struct sock *sk; 509ca065d0cSEric Dumazet 510ca065d0cSEric Dumazet sk = __udp4_lib_lookup(net, saddr, sport, daddr, dport, 511fb74c277SDavid Ahern dif, 0, &udp_table, NULL); 51241c6d650SReshetova, Elena if (sk && !refcount_inc_not_zero(&sk->sk_refcnt)) 513ca065d0cSEric Dumazet sk = NULL; 514ca065d0cSEric Dumazet return sk; 515bcd41303SKOVACS Krisztian } 516bcd41303SKOVACS Krisztian EXPORT_SYMBOL_GPL(udp4_lib_lookup); 517ca065d0cSEric Dumazet #endif 518bcd41303SKOVACS Krisztian 519421b3885SShawn Bohrer static inline bool __udp_is_mcast_sock(struct net *net, struct sock *sk, 520421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 521421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 522fb74c277SDavid Ahern int dif, int sdif, unsigned short hnum) 523421b3885SShawn Bohrer { 524421b3885SShawn Bohrer struct inet_sock *inet = inet_sk(sk); 525421b3885SShawn Bohrer 526421b3885SShawn Bohrer if (!net_eq(sock_net(sk), net) || 527421b3885SShawn Bohrer udp_sk(sk)->udp_port_hash != hnum || 528421b3885SShawn Bohrer (inet->inet_daddr && inet->inet_daddr != rmt_addr) || 529421b3885SShawn Bohrer (inet->inet_dport != rmt_port && inet->inet_dport) || 530421b3885SShawn Bohrer (inet->inet_rcv_saddr && inet->inet_rcv_saddr != loc_addr) || 531421b3885SShawn Bohrer ipv6_only_sock(sk) || 53282ba25c6STim Beale !udp_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif)) 533421b3885SShawn Bohrer return false; 53460d9b031SDavid Ahern if (!ip_mc_sf_allow(sk, loc_addr, rmt_addr, dif, sdif)) 535421b3885SShawn Bohrer return false; 536421b3885SShawn Bohrer return true; 537421b3885SShawn Bohrer } 538421b3885SShawn Bohrer 539a36e185eSStefano Brivio DEFINE_STATIC_KEY_FALSE(udp_encap_needed_key); 540a36e185eSStefano Brivio void udp_encap_enable(void) 541a36e185eSStefano Brivio { 5429c480601SPaolo Abeni static_branch_inc(&udp_encap_needed_key); 543a36e185eSStefano Brivio } 544a36e185eSStefano Brivio EXPORT_SYMBOL(udp_encap_enable); 545a36e185eSStefano Brivio 546e7cc0824SStefano Brivio /* Handler for tunnels with arbitrary destination ports: no socket lookup, go 547e7cc0824SStefano Brivio * through error handlers in encapsulations looking for a match. 548e7cc0824SStefano Brivio */ 549e7cc0824SStefano Brivio static int __udp4_lib_err_encap_no_sk(struct sk_buff *skb, u32 info) 550e7cc0824SStefano Brivio { 551e7cc0824SStefano Brivio int i; 552e7cc0824SStefano Brivio 553e7cc0824SStefano Brivio for (i = 0; i < MAX_IPTUN_ENCAP_OPS; i++) { 554e7cc0824SStefano Brivio int (*handler)(struct sk_buff *skb, u32 info); 55592b95364SPaolo Abeni const struct ip_tunnel_encap_ops *encap; 556e7cc0824SStefano Brivio 55792b95364SPaolo Abeni encap = rcu_dereference(iptun_encaps[i]); 55892b95364SPaolo Abeni if (!encap) 559e7cc0824SStefano Brivio continue; 56092b95364SPaolo Abeni handler = encap->err_handler; 561e7cc0824SStefano Brivio if (handler && !handler(skb, info)) 562e7cc0824SStefano Brivio return 0; 563e7cc0824SStefano Brivio } 564e7cc0824SStefano Brivio 565e7cc0824SStefano Brivio return -ENOENT; 566e7cc0824SStefano Brivio } 567e7cc0824SStefano Brivio 568a36e185eSStefano Brivio /* Try to match ICMP errors to UDP tunnels by looking up a socket without 569a36e185eSStefano Brivio * reversing source and destination port: this will match tunnels that force the 570a36e185eSStefano Brivio * same destination port on both endpoints (e.g. VXLAN, GENEVE). Note that 571a36e185eSStefano Brivio * lwtunnels might actually break this assumption by being configured with 572a36e185eSStefano Brivio * different destination ports on endpoints, in this case we won't be able to 573a36e185eSStefano Brivio * trace ICMP messages back to them. 574a36e185eSStefano Brivio * 575e7cc0824SStefano Brivio * If this doesn't match any socket, probe tunnels with arbitrary destination 576e7cc0824SStefano Brivio * ports (e.g. FoU, GUE): there, the receiving socket is useless, as the port 577e7cc0824SStefano Brivio * we've sent packets to won't necessarily match the local destination port. 578e7cc0824SStefano Brivio * 579a36e185eSStefano Brivio * Then ask the tunnel implementation to match the error against a valid 580a36e185eSStefano Brivio * association. 581a36e185eSStefano Brivio * 582e7cc0824SStefano Brivio * Return an error if we can't find a match, the socket if we need further 583e7cc0824SStefano Brivio * processing, zero otherwise. 584a36e185eSStefano Brivio */ 585a36e185eSStefano Brivio static struct sock *__udp4_lib_err_encap(struct net *net, 586a36e185eSStefano Brivio const struct iphdr *iph, 587a36e185eSStefano Brivio struct udphdr *uh, 588a36e185eSStefano Brivio struct udp_table *udptable, 589e7cc0824SStefano Brivio struct sk_buff *skb, u32 info) 590a36e185eSStefano Brivio { 591a36e185eSStefano Brivio int network_offset, transport_offset; 592a36e185eSStefano Brivio struct sock *sk; 593a36e185eSStefano Brivio 594a36e185eSStefano Brivio network_offset = skb_network_offset(skb); 595a36e185eSStefano Brivio transport_offset = skb_transport_offset(skb); 596a36e185eSStefano Brivio 597a36e185eSStefano Brivio /* Network header needs to point to the outer IPv4 header inside ICMP */ 598a36e185eSStefano Brivio skb_reset_network_header(skb); 599a36e185eSStefano Brivio 600a36e185eSStefano Brivio /* Transport header needs to point to the UDP header */ 601a36e185eSStefano Brivio skb_set_transport_header(skb, iph->ihl << 2); 602a36e185eSStefano Brivio 603e7cc0824SStefano Brivio sk = __udp4_lib_lookup(net, iph->daddr, uh->source, 604e7cc0824SStefano Brivio iph->saddr, uh->dest, skb->dev->ifindex, 0, 605e7cc0824SStefano Brivio udptable, NULL); 606e7cc0824SStefano Brivio if (sk) { 607e7cc0824SStefano Brivio int (*lookup)(struct sock *sk, struct sk_buff *skb); 608e7cc0824SStefano Brivio struct udp_sock *up = udp_sk(sk); 609e7cc0824SStefano Brivio 610a36e185eSStefano Brivio lookup = READ_ONCE(up->encap_err_lookup); 611a36e185eSStefano Brivio if (!lookup || lookup(sk, skb)) 612a36e185eSStefano Brivio sk = NULL; 613e7cc0824SStefano Brivio } 614e7cc0824SStefano Brivio 615e7cc0824SStefano Brivio if (!sk) 616e7cc0824SStefano Brivio sk = ERR_PTR(__udp4_lib_err_encap_no_sk(skb, info)); 617a36e185eSStefano Brivio 618a36e185eSStefano Brivio skb_set_transport_header(skb, transport_offset); 619a36e185eSStefano Brivio skb_set_network_header(skb, network_offset); 620a36e185eSStefano Brivio 621a36e185eSStefano Brivio return sk; 622a36e185eSStefano Brivio } 623a36e185eSStefano Brivio 624db8dac20SDavid S. Miller /* 625db8dac20SDavid S. Miller * This routine is called by the ICMP module when it gets some 626db8dac20SDavid S. Miller * sort of error condition. If err < 0 then the socket should 627db8dac20SDavid S. Miller * be closed and the error returned to the user. If err > 0 628db8dac20SDavid S. Miller * it's just the icmp type << 8 | icmp code. 629db8dac20SDavid S. Miller * Header points to the ip header of the error packet. We move 630db8dac20SDavid S. Miller * on past this. Then (as it used to claim before adjustment) 631db8dac20SDavid S. Miller * header points to the first 8 bytes of the udp header. We need 632db8dac20SDavid S. Miller * to find the appropriate port. 633db8dac20SDavid S. Miller */ 634db8dac20SDavid S. Miller 63532bbd879SStefano Brivio int __udp4_lib_err(struct sk_buff *skb, u32 info, struct udp_table *udptable) 636db8dac20SDavid S. Miller { 637db8dac20SDavid S. Miller struct inet_sock *inet; 638b71d1d42SEric Dumazet const struct iphdr *iph = (const struct iphdr *)skb->data; 639db8dac20SDavid S. Miller struct udphdr *uh = (struct udphdr *)(skb->data+(iph->ihl<<2)); 640db8dac20SDavid S. Miller const int type = icmp_hdr(skb)->type; 641db8dac20SDavid S. Miller const int code = icmp_hdr(skb)->code; 642a36e185eSStefano Brivio bool tunnel = false; 643db8dac20SDavid S. Miller struct sock *sk; 644db8dac20SDavid S. Miller int harderr; 645db8dac20SDavid S. Miller int err; 646fd54d716SPavel Emelyanov struct net *net = dev_net(skb->dev); 647db8dac20SDavid S. Miller 648fd54d716SPavel Emelyanov sk = __udp4_lib_lookup(net, iph->daddr, uh->dest, 649f64bf6b8SMike Manning iph->saddr, uh->source, skb->dev->ifindex, 650f64bf6b8SMike Manning inet_sdif(skb), udptable, NULL); 65151456b29SIan Morris if (!sk) { 652a36e185eSStefano Brivio /* No socket for error: try tunnels before discarding */ 653e7cc0824SStefano Brivio sk = ERR_PTR(-ENOENT); 654e7cc0824SStefano Brivio if (static_branch_unlikely(&udp_encap_needed_key)) { 655e7cc0824SStefano Brivio sk = __udp4_lib_err_encap(net, iph, uh, udptable, skb, 656e7cc0824SStefano Brivio info); 657e7cc0824SStefano Brivio if (!sk) 658e7cc0824SStefano Brivio return 0; 659a36e185eSStefano Brivio } 660e7cc0824SStefano Brivio 661e7cc0824SStefano Brivio if (IS_ERR(sk)) { 662e7cc0824SStefano Brivio __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); 663e7cc0824SStefano Brivio return PTR_ERR(sk); 664e7cc0824SStefano Brivio } 665e7cc0824SStefano Brivio 666a36e185eSStefano Brivio tunnel = true; 667db8dac20SDavid S. Miller } 668db8dac20SDavid S. Miller 669db8dac20SDavid S. Miller err = 0; 670db8dac20SDavid S. Miller harderr = 0; 671db8dac20SDavid S. Miller inet = inet_sk(sk); 672db8dac20SDavid S. Miller 673db8dac20SDavid S. Miller switch (type) { 674db8dac20SDavid S. Miller default: 675db8dac20SDavid S. Miller case ICMP_TIME_EXCEEDED: 676db8dac20SDavid S. Miller err = EHOSTUNREACH; 677db8dac20SDavid S. Miller break; 678db8dac20SDavid S. Miller case ICMP_SOURCE_QUENCH: 679db8dac20SDavid S. Miller goto out; 680db8dac20SDavid S. Miller case ICMP_PARAMETERPROB: 681db8dac20SDavid S. Miller err = EPROTO; 682db8dac20SDavid S. Miller harderr = 1; 683db8dac20SDavid S. Miller break; 684db8dac20SDavid S. Miller case ICMP_DEST_UNREACH: 685db8dac20SDavid S. Miller if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */ 68636393395SDavid S. Miller ipv4_sk_update_pmtu(skb, sk, info); 687db8dac20SDavid S. Miller if (inet->pmtudisc != IP_PMTUDISC_DONT) { 688db8dac20SDavid S. Miller err = EMSGSIZE; 689db8dac20SDavid S. Miller harderr = 1; 690db8dac20SDavid S. Miller break; 691db8dac20SDavid S. Miller } 692db8dac20SDavid S. Miller goto out; 693db8dac20SDavid S. Miller } 694db8dac20SDavid S. Miller err = EHOSTUNREACH; 695db8dac20SDavid S. Miller if (code <= NR_ICMP_UNREACH) { 696db8dac20SDavid S. Miller harderr = icmp_err_convert[code].fatal; 697db8dac20SDavid S. Miller err = icmp_err_convert[code].errno; 698db8dac20SDavid S. Miller } 699db8dac20SDavid S. Miller break; 70055be7a9cSDavid S. Miller case ICMP_REDIRECT: 70155be7a9cSDavid S. Miller ipv4_sk_redirect(skb, sk); 7021a462d18SDuan Jiong goto out; 703db8dac20SDavid S. Miller } 704db8dac20SDavid S. Miller 705db8dac20SDavid S. Miller /* 706db8dac20SDavid S. Miller * RFC1122: OK. Passes ICMP errors back to application, as per 707db8dac20SDavid S. Miller * 4.1.3.3. 708db8dac20SDavid S. Miller */ 709a36e185eSStefano Brivio if (tunnel) { 710a36e185eSStefano Brivio /* ...not for tunnels though: we don't have a sending socket */ 711a36e185eSStefano Brivio goto out; 712a36e185eSStefano Brivio } 713db8dac20SDavid S. Miller if (!inet->recverr) { 714db8dac20SDavid S. Miller if (!harderr || sk->sk_state != TCP_ESTABLISHED) 715db8dac20SDavid S. Miller goto out; 716b1faf566SEric Dumazet } else 717db8dac20SDavid S. Miller ip_icmp_error(sk, skb, err, uh->dest, info, (u8 *)(uh+1)); 718b1faf566SEric Dumazet 719db8dac20SDavid S. Miller sk->sk_err = err; 720db8dac20SDavid S. Miller sk->sk_error_report(sk); 721db8dac20SDavid S. Miller out: 72232bbd879SStefano Brivio return 0; 723db8dac20SDavid S. Miller } 724db8dac20SDavid S. Miller 72532bbd879SStefano Brivio int udp_err(struct sk_buff *skb, u32 info) 726db8dac20SDavid S. Miller { 72732bbd879SStefano Brivio return __udp4_lib_err(skb, info, &udp_table); 728db8dac20SDavid S. Miller } 729db8dac20SDavid S. Miller 730db8dac20SDavid S. Miller /* 731db8dac20SDavid S. Miller * Throw away all pending data and cancel the corking. Socket is locked. 732db8dac20SDavid S. Miller */ 73336d926b9SDenis V. Lunev void udp_flush_pending_frames(struct sock *sk) 734db8dac20SDavid S. Miller { 735db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 736db8dac20SDavid S. Miller 737db8dac20SDavid S. Miller if (up->pending) { 738db8dac20SDavid S. Miller up->len = 0; 739db8dac20SDavid S. Miller up->pending = 0; 740db8dac20SDavid S. Miller ip_flush_pending_frames(sk); 741db8dac20SDavid S. Miller } 742db8dac20SDavid S. Miller } 74336d926b9SDenis V. Lunev EXPORT_SYMBOL(udp_flush_pending_frames); 744db8dac20SDavid S. Miller 745db8dac20SDavid S. Miller /** 746f6b9664fSHerbert Xu * udp4_hwcsum - handle outgoing HW checksumming 747db8dac20SDavid S. Miller * @skb: sk_buff containing the filled-in UDP header 748db8dac20SDavid S. Miller * (checksum field must be zeroed out) 749f6b9664fSHerbert Xu * @src: source IP address 750f6b9664fSHerbert Xu * @dst: destination IP address 751db8dac20SDavid S. Miller */ 752c26bf4a5SThomas Graf void udp4_hwcsum(struct sk_buff *skb, __be32 src, __be32 dst) 753db8dac20SDavid S. Miller { 754db8dac20SDavid S. Miller struct udphdr *uh = udp_hdr(skb); 755f6b9664fSHerbert Xu int offset = skb_transport_offset(skb); 756f6b9664fSHerbert Xu int len = skb->len - offset; 757f6b9664fSHerbert Xu int hlen = len; 758db8dac20SDavid S. Miller __wsum csum = 0; 759db8dac20SDavid S. Miller 760ebbe495fSWANG Cong if (!skb_has_frag_list(skb)) { 761db8dac20SDavid S. Miller /* 762db8dac20SDavid S. Miller * Only one fragment on the socket. 763db8dac20SDavid S. Miller */ 764db8dac20SDavid S. Miller skb->csum_start = skb_transport_header(skb) - skb->head; 765db8dac20SDavid S. Miller skb->csum_offset = offsetof(struct udphdr, check); 766f6b9664fSHerbert Xu uh->check = ~csum_tcpudp_magic(src, dst, len, 767f6b9664fSHerbert Xu IPPROTO_UDP, 0); 768db8dac20SDavid S. Miller } else { 769ebbe495fSWANG Cong struct sk_buff *frags; 770ebbe495fSWANG Cong 771db8dac20SDavid S. Miller /* 772db8dac20SDavid S. Miller * HW-checksum won't work as there are two or more 773db8dac20SDavid S. Miller * fragments on the socket so that all csums of sk_buffs 774db8dac20SDavid S. Miller * should be together 775db8dac20SDavid S. Miller */ 776ebbe495fSWANG Cong skb_walk_frags(skb, frags) { 777f6b9664fSHerbert Xu csum = csum_add(csum, frags->csum); 778f6b9664fSHerbert Xu hlen -= frags->len; 779ebbe495fSWANG Cong } 780db8dac20SDavid S. Miller 781f6b9664fSHerbert Xu csum = skb_checksum(skb, offset, hlen, csum); 782db8dac20SDavid S. Miller skb->ip_summed = CHECKSUM_NONE; 783db8dac20SDavid S. Miller 784db8dac20SDavid S. Miller uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum); 785db8dac20SDavid S. Miller if (uh->check == 0) 786db8dac20SDavid S. Miller uh->check = CSUM_MANGLED_0; 787db8dac20SDavid S. Miller } 788db8dac20SDavid S. Miller } 789c26bf4a5SThomas Graf EXPORT_SYMBOL_GPL(udp4_hwcsum); 790db8dac20SDavid S. Miller 791af5fcba7STom Herbert /* Function to set UDP checksum for an IPv4 UDP packet. This is intended 792af5fcba7STom Herbert * for the simple case like when setting the checksum for a UDP tunnel. 793af5fcba7STom Herbert */ 794af5fcba7STom Herbert void udp_set_csum(bool nocheck, struct sk_buff *skb, 795af5fcba7STom Herbert __be32 saddr, __be32 daddr, int len) 796af5fcba7STom Herbert { 797af5fcba7STom Herbert struct udphdr *uh = udp_hdr(skb); 798af5fcba7STom Herbert 799179bc67fSEdward Cree if (nocheck) { 800af5fcba7STom Herbert uh->check = 0; 801179bc67fSEdward Cree } else if (skb_is_gso(skb)) { 802af5fcba7STom Herbert uh->check = ~udp_v4_check(len, saddr, daddr, 0); 803179bc67fSEdward Cree } else if (skb->ip_summed == CHECKSUM_PARTIAL) { 804179bc67fSEdward Cree uh->check = 0; 805179bc67fSEdward Cree uh->check = udp_v4_check(len, saddr, daddr, lco_csum(skb)); 806179bc67fSEdward Cree if (uh->check == 0) 807179bc67fSEdward Cree uh->check = CSUM_MANGLED_0; 808d75f1306SEdward Cree } else { 809af5fcba7STom Herbert skb->ip_summed = CHECKSUM_PARTIAL; 810af5fcba7STom Herbert skb->csum_start = skb_transport_header(skb) - skb->head; 811af5fcba7STom Herbert skb->csum_offset = offsetof(struct udphdr, check); 812af5fcba7STom Herbert uh->check = ~udp_v4_check(len, saddr, daddr, 0); 813af5fcba7STom Herbert } 814af5fcba7STom Herbert } 815af5fcba7STom Herbert EXPORT_SYMBOL(udp_set_csum); 816af5fcba7STom Herbert 817bec1f6f6SWillem de Bruijn static int udp_send_skb(struct sk_buff *skb, struct flowi4 *fl4, 818bec1f6f6SWillem de Bruijn struct inet_cork *cork) 819f6b9664fSHerbert Xu { 820f6b9664fSHerbert Xu struct sock *sk = skb->sk; 821f6b9664fSHerbert Xu struct inet_sock *inet = inet_sk(sk); 822f6b9664fSHerbert Xu struct udphdr *uh; 823f6b9664fSHerbert Xu int err = 0; 824f6b9664fSHerbert Xu int is_udplite = IS_UDPLITE(sk); 825f6b9664fSHerbert Xu int offset = skb_transport_offset(skb); 826f6b9664fSHerbert Xu int len = skb->len - offset; 8274094871dSJosh Hunt int datalen = len - sizeof(*uh); 828f6b9664fSHerbert Xu __wsum csum = 0; 829f6b9664fSHerbert Xu 830f6b9664fSHerbert Xu /* 831f6b9664fSHerbert Xu * Create a UDP header 832f6b9664fSHerbert Xu */ 833f6b9664fSHerbert Xu uh = udp_hdr(skb); 834f6b9664fSHerbert Xu uh->source = inet->inet_sport; 83579ab0531SDavid S. Miller uh->dest = fl4->fl4_dport; 836f6b9664fSHerbert Xu uh->len = htons(len); 837f6b9664fSHerbert Xu uh->check = 0; 838f6b9664fSHerbert Xu 839bec1f6f6SWillem de Bruijn if (cork->gso_size) { 840bec1f6f6SWillem de Bruijn const int hlen = skb_network_header_len(skb) + 841bec1f6f6SWillem de Bruijn sizeof(struct udphdr); 842bec1f6f6SWillem de Bruijn 8430f149c9fSWillem de Bruijn if (hlen + cork->gso_size > cork->fragsize) { 8440f149c9fSWillem de Bruijn kfree_skb(skb); 845bec1f6f6SWillem de Bruijn return -EINVAL; 8460f149c9fSWillem de Bruijn } 8470f149c9fSWillem de Bruijn if (skb->len > cork->gso_size * UDP_MAX_SEGMENTS) { 8480f149c9fSWillem de Bruijn kfree_skb(skb); 849bec1f6f6SWillem de Bruijn return -EINVAL; 8500f149c9fSWillem de Bruijn } 8510f149c9fSWillem de Bruijn if (sk->sk_no_check_tx) { 8520f149c9fSWillem de Bruijn kfree_skb(skb); 853a8c744a8SWillem de Bruijn return -EINVAL; 8540f149c9fSWillem de Bruijn } 855ff06342cSWillem de Bruijn if (skb->ip_summed != CHECKSUM_PARTIAL || is_udplite || 8560f149c9fSWillem de Bruijn dst_xfrm(skb_dst(skb))) { 8570f149c9fSWillem de Bruijn kfree_skb(skb); 858bec1f6f6SWillem de Bruijn return -EIO; 8590f149c9fSWillem de Bruijn } 860bec1f6f6SWillem de Bruijn 8614094871dSJosh Hunt if (datalen > cork->gso_size) { 862bec1f6f6SWillem de Bruijn skb_shinfo(skb)->gso_size = cork->gso_size; 863bec1f6f6SWillem de Bruijn skb_shinfo(skb)->gso_type = SKB_GSO_UDP_L4; 8644094871dSJosh Hunt skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(datalen, 865dfec0ee2SAlexander Duyck cork->gso_size); 8664094871dSJosh Hunt } 867a8c744a8SWillem de Bruijn goto csum_partial; 868bec1f6f6SWillem de Bruijn } 869bec1f6f6SWillem de Bruijn 870f6b9664fSHerbert Xu if (is_udplite) /* UDP-Lite */ 871f6b9664fSHerbert Xu csum = udplite_csum(skb); 872f6b9664fSHerbert Xu 873ab2fb7e3SWillem de Bruijn else if (sk->sk_no_check_tx) { /* UDP csum off */ 874f6b9664fSHerbert Xu 875f6b9664fSHerbert Xu skb->ip_summed = CHECKSUM_NONE; 876f6b9664fSHerbert Xu goto send; 877f6b9664fSHerbert Xu 878f6b9664fSHerbert Xu } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */ 879a8c744a8SWillem de Bruijn csum_partial: 880f6b9664fSHerbert Xu 88179ab0531SDavid S. Miller udp4_hwcsum(skb, fl4->saddr, fl4->daddr); 882f6b9664fSHerbert Xu goto send; 883f6b9664fSHerbert Xu 884f6b9664fSHerbert Xu } else 885f6b9664fSHerbert Xu csum = udp_csum(skb); 886f6b9664fSHerbert Xu 887f6b9664fSHerbert Xu /* add protocol-dependent pseudo-header */ 88879ab0531SDavid S. Miller uh->check = csum_tcpudp_magic(fl4->saddr, fl4->daddr, len, 889f6b9664fSHerbert Xu sk->sk_protocol, csum); 890f6b9664fSHerbert Xu if (uh->check == 0) 891f6b9664fSHerbert Xu uh->check = CSUM_MANGLED_0; 892f6b9664fSHerbert Xu 893f6b9664fSHerbert Xu send: 894b5ec8eeaSEric Dumazet err = ip_send_skb(sock_net(sk), skb); 895f6b9664fSHerbert Xu if (err) { 896f6b9664fSHerbert Xu if (err == -ENOBUFS && !inet->recverr) { 8976aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 898f6b9664fSHerbert Xu UDP_MIB_SNDBUFERRORS, is_udplite); 899f6b9664fSHerbert Xu err = 0; 900f6b9664fSHerbert Xu } 901f6b9664fSHerbert Xu } else 9026aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 903f6b9664fSHerbert Xu UDP_MIB_OUTDATAGRAMS, is_udplite); 904f6b9664fSHerbert Xu return err; 905f6b9664fSHerbert Xu } 906f6b9664fSHerbert Xu 907db8dac20SDavid S. Miller /* 908db8dac20SDavid S. Miller * Push out all pending data as one UDP datagram. Socket is locked. 909db8dac20SDavid S. Miller */ 9108822b64aSHannes Frederic Sowa int udp_push_pending_frames(struct sock *sk) 911db8dac20SDavid S. Miller { 912db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 913db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 914b6f21b26SDavid S. Miller struct flowi4 *fl4 = &inet->cork.fl.u.ip4; 915db8dac20SDavid S. Miller struct sk_buff *skb; 916db8dac20SDavid S. Miller int err = 0; 917db8dac20SDavid S. Miller 91877968b78SDavid S. Miller skb = ip_finish_skb(sk, fl4); 919f6b9664fSHerbert Xu if (!skb) 920db8dac20SDavid S. Miller goto out; 921db8dac20SDavid S. Miller 922bec1f6f6SWillem de Bruijn err = udp_send_skb(skb, fl4, &inet->cork.base); 923db8dac20SDavid S. Miller 924db8dac20SDavid S. Miller out: 925db8dac20SDavid S. Miller up->len = 0; 926db8dac20SDavid S. Miller up->pending = 0; 927db8dac20SDavid S. Miller return err; 928db8dac20SDavid S. Miller } 9298822b64aSHannes Frederic Sowa EXPORT_SYMBOL(udp_push_pending_frames); 930db8dac20SDavid S. Miller 9312e8de857SWillem de Bruijn static int __udp_cmsg_send(struct cmsghdr *cmsg, u16 *gso_size) 9322e8de857SWillem de Bruijn { 9332e8de857SWillem de Bruijn switch (cmsg->cmsg_type) { 9342e8de857SWillem de Bruijn case UDP_SEGMENT: 9352e8de857SWillem de Bruijn if (cmsg->cmsg_len != CMSG_LEN(sizeof(__u16))) 9362e8de857SWillem de Bruijn return -EINVAL; 9372e8de857SWillem de Bruijn *gso_size = *(__u16 *)CMSG_DATA(cmsg); 9382e8de857SWillem de Bruijn return 0; 9392e8de857SWillem de Bruijn default: 9402e8de857SWillem de Bruijn return -EINVAL; 9412e8de857SWillem de Bruijn } 9422e8de857SWillem de Bruijn } 9432e8de857SWillem de Bruijn 9442e8de857SWillem de Bruijn int udp_cmsg_send(struct sock *sk, struct msghdr *msg, u16 *gso_size) 9452e8de857SWillem de Bruijn { 9462e8de857SWillem de Bruijn struct cmsghdr *cmsg; 9472e8de857SWillem de Bruijn bool need_ip = false; 9482e8de857SWillem de Bruijn int err; 9492e8de857SWillem de Bruijn 9502e8de857SWillem de Bruijn for_each_cmsghdr(cmsg, msg) { 9512e8de857SWillem de Bruijn if (!CMSG_OK(msg, cmsg)) 9522e8de857SWillem de Bruijn return -EINVAL; 9532e8de857SWillem de Bruijn 9542e8de857SWillem de Bruijn if (cmsg->cmsg_level != SOL_UDP) { 9552e8de857SWillem de Bruijn need_ip = true; 9562e8de857SWillem de Bruijn continue; 9572e8de857SWillem de Bruijn } 9582e8de857SWillem de Bruijn 9592e8de857SWillem de Bruijn err = __udp_cmsg_send(cmsg, gso_size); 9602e8de857SWillem de Bruijn if (err) 9612e8de857SWillem de Bruijn return err; 9622e8de857SWillem de Bruijn } 9632e8de857SWillem de Bruijn 9642e8de857SWillem de Bruijn return need_ip; 9652e8de857SWillem de Bruijn } 9662e8de857SWillem de Bruijn EXPORT_SYMBOL_GPL(udp_cmsg_send); 9672e8de857SWillem de Bruijn 9681b784140SYing Xue int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) 969db8dac20SDavid S. Miller { 970db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 971db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 9721cedee13SAndrey Ignatov DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name); 973e474995fSDavid S. Miller struct flowi4 fl4_stack; 974b6f21b26SDavid S. Miller struct flowi4 *fl4; 975db8dac20SDavid S. Miller int ulen = len; 976db8dac20SDavid S. Miller struct ipcm_cookie ipc; 977db8dac20SDavid S. Miller struct rtable *rt = NULL; 978db8dac20SDavid S. Miller int free = 0; 979db8dac20SDavid S. Miller int connected = 0; 980db8dac20SDavid S. Miller __be32 daddr, faddr, saddr; 981db8dac20SDavid S. Miller __be16 dport; 982db8dac20SDavid S. Miller u8 tos; 983db8dac20SDavid S. Miller int err, is_udplite = IS_UDPLITE(sk); 984db8dac20SDavid S. Miller int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; 985db8dac20SDavid S. Miller int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); 986903ab86dSHerbert Xu struct sk_buff *skb; 987f6d8bd05SEric Dumazet struct ip_options_data opt_copy; 988db8dac20SDavid S. Miller 989db8dac20SDavid S. Miller if (len > 0xFFFF) 990db8dac20SDavid S. Miller return -EMSGSIZE; 991db8dac20SDavid S. Miller 992db8dac20SDavid S. Miller /* 993db8dac20SDavid S. Miller * Check the flags. 994db8dac20SDavid S. Miller */ 995db8dac20SDavid S. Miller 996db8dac20SDavid S. Miller if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message compatibility */ 997db8dac20SDavid S. Miller return -EOPNOTSUPP; 998db8dac20SDavid S. Miller 999903ab86dSHerbert Xu getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag; 1000903ab86dSHerbert Xu 1001f5fca608SDavid S. Miller fl4 = &inet->cork.fl.u.ip4; 1002db8dac20SDavid S. Miller if (up->pending) { 1003db8dac20SDavid S. Miller /* 1004db8dac20SDavid S. Miller * There are pending frames. 1005db8dac20SDavid S. Miller * The socket lock must be held while it's corked. 1006db8dac20SDavid S. Miller */ 1007db8dac20SDavid S. Miller lock_sock(sk); 1008db8dac20SDavid S. Miller if (likely(up->pending)) { 1009db8dac20SDavid S. Miller if (unlikely(up->pending != AF_INET)) { 1010db8dac20SDavid S. Miller release_sock(sk); 1011db8dac20SDavid S. Miller return -EINVAL; 1012db8dac20SDavid S. Miller } 1013db8dac20SDavid S. Miller goto do_append_data; 1014db8dac20SDavid S. Miller } 1015db8dac20SDavid S. Miller release_sock(sk); 1016db8dac20SDavid S. Miller } 1017db8dac20SDavid S. Miller ulen += sizeof(struct udphdr); 1018db8dac20SDavid S. Miller 1019db8dac20SDavid S. Miller /* 1020db8dac20SDavid S. Miller * Get and verify the address. 1021db8dac20SDavid S. Miller */ 10221cedee13SAndrey Ignatov if (usin) { 1023db8dac20SDavid S. Miller if (msg->msg_namelen < sizeof(*usin)) 1024db8dac20SDavid S. Miller return -EINVAL; 1025db8dac20SDavid S. Miller if (usin->sin_family != AF_INET) { 1026db8dac20SDavid S. Miller if (usin->sin_family != AF_UNSPEC) 1027db8dac20SDavid S. Miller return -EAFNOSUPPORT; 1028db8dac20SDavid S. Miller } 1029db8dac20SDavid S. Miller 1030db8dac20SDavid S. Miller daddr = usin->sin_addr.s_addr; 1031db8dac20SDavid S. Miller dport = usin->sin_port; 1032db8dac20SDavid S. Miller if (dport == 0) 1033db8dac20SDavid S. Miller return -EINVAL; 1034db8dac20SDavid S. Miller } else { 1035db8dac20SDavid S. Miller if (sk->sk_state != TCP_ESTABLISHED) 1036db8dac20SDavid S. Miller return -EDESTADDRREQ; 1037c720c7e8SEric Dumazet daddr = inet->inet_daddr; 1038c720c7e8SEric Dumazet dport = inet->inet_dport; 1039db8dac20SDavid S. Miller /* Open fast path for connected socket. 1040db8dac20SDavid S. Miller Route will not be used, if at least one option is set. 1041db8dac20SDavid S. Miller */ 1042db8dac20SDavid S. Miller connected = 1; 1043db8dac20SDavid S. Miller } 1044c14ac945SSoheil Hassas Yeganeh 104535178206SWillem de Bruijn ipcm_init_sk(&ipc, inet); 1046bec1f6f6SWillem de Bruijn ipc.gso_size = up->gso_size; 1047bf84a010SDaniel Borkmann 1048db8dac20SDavid S. Miller if (msg->msg_controllen) { 10492e8de857SWillem de Bruijn err = udp_cmsg_send(sk, msg, &ipc.gso_size); 10502e8de857SWillem de Bruijn if (err > 0) 10512e8de857SWillem de Bruijn err = ip_cmsg_send(sk, msg, &ipc, 10522e8de857SWillem de Bruijn sk->sk_family == AF_INET6); 10532e8de857SWillem de Bruijn if (unlikely(err < 0)) { 105491948309SEric Dumazet kfree(ipc.opt); 1055db8dac20SDavid S. Miller return err; 105691948309SEric Dumazet } 1057db8dac20SDavid S. Miller if (ipc.opt) 1058db8dac20SDavid S. Miller free = 1; 1059db8dac20SDavid S. Miller connected = 0; 1060db8dac20SDavid S. Miller } 1061f6d8bd05SEric Dumazet if (!ipc.opt) { 1062f6d8bd05SEric Dumazet struct ip_options_rcu *inet_opt; 1063f6d8bd05SEric Dumazet 1064f6d8bd05SEric Dumazet rcu_read_lock(); 1065f6d8bd05SEric Dumazet inet_opt = rcu_dereference(inet->inet_opt); 1066f6d8bd05SEric Dumazet if (inet_opt) { 1067f6d8bd05SEric Dumazet memcpy(&opt_copy, inet_opt, 1068f6d8bd05SEric Dumazet sizeof(*inet_opt) + inet_opt->opt.optlen); 1069f6d8bd05SEric Dumazet ipc.opt = &opt_copy.opt; 1070f6d8bd05SEric Dumazet } 1071f6d8bd05SEric Dumazet rcu_read_unlock(); 1072f6d8bd05SEric Dumazet } 1073db8dac20SDavid S. Miller 10741cedee13SAndrey Ignatov if (cgroup_bpf_enabled && !connected) { 10751cedee13SAndrey Ignatov err = BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, 10761cedee13SAndrey Ignatov (struct sockaddr *)usin, &ipc.addr); 10771cedee13SAndrey Ignatov if (err) 10781cedee13SAndrey Ignatov goto out_free; 10791cedee13SAndrey Ignatov if (usin) { 10801cedee13SAndrey Ignatov if (usin->sin_port == 0) { 10811cedee13SAndrey Ignatov /* BPF program set invalid port. Reject it. */ 10821cedee13SAndrey Ignatov err = -EINVAL; 10831cedee13SAndrey Ignatov goto out_free; 10841cedee13SAndrey Ignatov } 10851cedee13SAndrey Ignatov daddr = usin->sin_addr.s_addr; 10861cedee13SAndrey Ignatov dport = usin->sin_port; 10871cedee13SAndrey Ignatov } 10881cedee13SAndrey Ignatov } 10891cedee13SAndrey Ignatov 1090db8dac20SDavid S. Miller saddr = ipc.addr; 1091db8dac20SDavid S. Miller ipc.addr = faddr = daddr; 1092db8dac20SDavid S. Miller 1093f6d8bd05SEric Dumazet if (ipc.opt && ipc.opt->opt.srr) { 10941b97013bSAndrey Ignatov if (!daddr) { 10951b97013bSAndrey Ignatov err = -EINVAL; 10961b97013bSAndrey Ignatov goto out_free; 10971b97013bSAndrey Ignatov } 1098f6d8bd05SEric Dumazet faddr = ipc.opt->opt.faddr; 1099db8dac20SDavid S. Miller connected = 0; 1100db8dac20SDavid S. Miller } 1101aa661581SFrancesco Fusco tos = get_rttos(&ipc, inet); 1102db8dac20SDavid S. Miller if (sock_flag(sk, SOCK_LOCALROUTE) || 1103db8dac20SDavid S. Miller (msg->msg_flags & MSG_DONTROUTE) || 1104f6d8bd05SEric Dumazet (ipc.opt && ipc.opt->opt.is_strictroute)) { 1105db8dac20SDavid S. Miller tos |= RTO_ONLINK; 1106db8dac20SDavid S. Miller connected = 0; 1107db8dac20SDavid S. Miller } 1108db8dac20SDavid S. Miller 1109db8dac20SDavid S. Miller if (ipv4_is_multicast(daddr)) { 1110854da991SRobert Shearman if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif)) 1111db8dac20SDavid S. Miller ipc.oif = inet->mc_index; 1112db8dac20SDavid S. Miller if (!saddr) 1113db8dac20SDavid S. Miller saddr = inet->mc_addr; 1114db8dac20SDavid S. Miller connected = 0; 11159515a2e0SDavid Ahern } else if (!ipc.oif) { 111676e21053SErich E. Hoover ipc.oif = inet->uc_index; 11179515a2e0SDavid Ahern } else if (ipv4_is_lbcast(daddr) && inet->uc_index) { 11189515a2e0SDavid Ahern /* oif is set, packet is to local broadcast and 11199515a2e0SDavid Ahern * and uc_index is set. oif is most likely set 11209515a2e0SDavid Ahern * by sk_bound_dev_if. If uc_index != oif check if the 11219515a2e0SDavid Ahern * oif is an L3 master and uc_index is an L3 slave. 11229515a2e0SDavid Ahern * If so, we want to allow the send using the uc_index. 11239515a2e0SDavid Ahern */ 11249515a2e0SDavid Ahern if (ipc.oif != inet->uc_index && 11259515a2e0SDavid Ahern ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk), 11269515a2e0SDavid Ahern inet->uc_index)) { 11279515a2e0SDavid Ahern ipc.oif = inet->uc_index; 11289515a2e0SDavid Ahern } 11299515a2e0SDavid Ahern } 1130db8dac20SDavid S. Miller 1131db8dac20SDavid S. Miller if (connected) 1132db8dac20SDavid S. Miller rt = (struct rtable *)sk_dst_check(sk, 0); 1133db8dac20SDavid S. Miller 113451456b29SIan Morris if (!rt) { 113584a3aa00SPavel Emelyanov struct net *net = sock_net(sk); 11369a24abfaSDavid Ahern __u8 flow_flags = inet_sk_flowi_flags(sk); 113784a3aa00SPavel Emelyanov 1138e474995fSDavid S. Miller fl4 = &fl4_stack; 11399a24abfaSDavid Ahern 1140c6af0c22SWillem de Bruijn flowi4_init_output(fl4, ipc.oif, ipc.sockc.mark, tos, 11419a24abfaSDavid Ahern RT_SCOPE_UNIVERSE, sk->sk_protocol, 11429a24abfaSDavid Ahern flow_flags, 1143e2d118a1SLorenzo Colitti faddr, saddr, dport, inet->inet_sport, 1144e2d118a1SLorenzo Colitti sk->sk_uid); 1145c0951cbcSDavid S. Miller 1146e474995fSDavid S. Miller security_sk_classify_flow(sk, flowi4_to_flowi(fl4)); 1147e474995fSDavid S. Miller rt = ip_route_output_flow(net, fl4, sk); 1148b23dd4feSDavid S. Miller if (IS_ERR(rt)) { 1149b23dd4feSDavid S. Miller err = PTR_ERR(rt); 115006dc94b1SDavid S. Miller rt = NULL; 1151db8dac20SDavid S. Miller if (err == -ENETUNREACH) 1152f1d8cba6SEric Dumazet IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES); 1153db8dac20SDavid S. Miller goto out; 1154db8dac20SDavid S. Miller } 1155db8dac20SDavid S. Miller 1156db8dac20SDavid S. Miller err = -EACCES; 1157db8dac20SDavid S. Miller if ((rt->rt_flags & RTCF_BROADCAST) && 1158db8dac20SDavid S. Miller !sock_flag(sk, SOCK_BROADCAST)) 1159db8dac20SDavid S. Miller goto out; 1160db8dac20SDavid S. Miller if (connected) 1161d8d1f30bSChangli Gao sk_dst_set(sk, dst_clone(&rt->dst)); 1162db8dac20SDavid S. Miller } 1163db8dac20SDavid S. Miller 1164db8dac20SDavid S. Miller if (msg->msg_flags&MSG_CONFIRM) 1165db8dac20SDavid S. Miller goto do_confirm; 1166db8dac20SDavid S. Miller back_from_confirm: 1167db8dac20SDavid S. Miller 1168e474995fSDavid S. Miller saddr = fl4->saddr; 1169db8dac20SDavid S. Miller if (!ipc.addr) 1170e474995fSDavid S. Miller daddr = ipc.addr = fl4->daddr; 1171db8dac20SDavid S. Miller 1172903ab86dSHerbert Xu /* Lockless fast path for the non-corking case. */ 1173903ab86dSHerbert Xu if (!corkreq) { 11741cd7884dSWillem de Bruijn struct inet_cork cork; 11751cd7884dSWillem de Bruijn 1176f69e6d13SAl Viro skb = ip_make_skb(sk, fl4, getfrag, msg, ulen, 1177903ab86dSHerbert Xu sizeof(struct udphdr), &ipc, &rt, 11781cd7884dSWillem de Bruijn &cork, msg->msg_flags); 1179903ab86dSHerbert Xu err = PTR_ERR(skb); 118050c3a487SYOSHIFUJI Hideaki / 吉藤英明 if (!IS_ERR_OR_NULL(skb)) 1181bec1f6f6SWillem de Bruijn err = udp_send_skb(skb, fl4, &cork); 1182903ab86dSHerbert Xu goto out; 1183903ab86dSHerbert Xu } 1184903ab86dSHerbert Xu 1185db8dac20SDavid S. Miller lock_sock(sk); 1186db8dac20SDavid S. Miller if (unlikely(up->pending)) { 1187db8dac20SDavid S. Miller /* The socket is already corked while preparing it. */ 1188db8dac20SDavid S. Miller /* ... which is an evident application bug. --ANK */ 1189db8dac20SDavid S. Miller release_sock(sk); 1190db8dac20SDavid S. Miller 1191197df02cSMatteo Croce net_dbg_ratelimited("socket already corked\n"); 1192db8dac20SDavid S. Miller err = -EINVAL; 1193db8dac20SDavid S. Miller goto out; 1194db8dac20SDavid S. Miller } 1195db8dac20SDavid S. Miller /* 1196db8dac20SDavid S. Miller * Now cork the socket to pend data. 1197db8dac20SDavid S. Miller */ 1198b6f21b26SDavid S. Miller fl4 = &inet->cork.fl.u.ip4; 1199b6f21b26SDavid S. Miller fl4->daddr = daddr; 1200b6f21b26SDavid S. Miller fl4->saddr = saddr; 12019cce96dfSDavid S. Miller fl4->fl4_dport = dport; 12029cce96dfSDavid S. Miller fl4->fl4_sport = inet->inet_sport; 1203db8dac20SDavid S. Miller up->pending = AF_INET; 1204db8dac20SDavid S. Miller 1205db8dac20SDavid S. Miller do_append_data: 1206db8dac20SDavid S. Miller up->len += ulen; 1207f69e6d13SAl Viro err = ip_append_data(sk, fl4, getfrag, msg, ulen, 12082e77d89bSEric Dumazet sizeof(struct udphdr), &ipc, &rt, 1209db8dac20SDavid S. Miller corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); 1210db8dac20SDavid S. Miller if (err) 1211db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 1212db8dac20SDavid S. Miller else if (!corkreq) 1213db8dac20SDavid S. Miller err = udp_push_pending_frames(sk); 1214db8dac20SDavid S. Miller else if (unlikely(skb_queue_empty(&sk->sk_write_queue))) 1215db8dac20SDavid S. Miller up->pending = 0; 1216db8dac20SDavid S. Miller release_sock(sk); 1217db8dac20SDavid S. Miller 1218db8dac20SDavid S. Miller out: 1219db8dac20SDavid S. Miller ip_rt_put(rt); 12201b97013bSAndrey Ignatov out_free: 1221db8dac20SDavid S. Miller if (free) 1222db8dac20SDavid S. Miller kfree(ipc.opt); 1223db8dac20SDavid S. Miller if (!err) 1224db8dac20SDavid S. Miller return len; 1225db8dac20SDavid S. Miller /* 1226db8dac20SDavid S. Miller * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting 1227db8dac20SDavid S. Miller * ENOBUFS might not be good (it's not tunable per se), but otherwise 1228db8dac20SDavid S. Miller * we don't have a good statistic (IpOutDiscards but it can be too many 1229db8dac20SDavid S. Miller * things). We could add another new stat but at least for now that 1230db8dac20SDavid S. Miller * seems like overkill. 1231db8dac20SDavid S. Miller */ 1232db8dac20SDavid S. Miller if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) { 12336aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1234629ca23cSPavel Emelyanov UDP_MIB_SNDBUFERRORS, is_udplite); 1235db8dac20SDavid S. Miller } 1236db8dac20SDavid S. Miller return err; 1237db8dac20SDavid S. Miller 1238db8dac20SDavid S. Miller do_confirm: 12390dec879fSJulian Anastasov if (msg->msg_flags & MSG_PROBE) 12400dec879fSJulian Anastasov dst_confirm_neigh(&rt->dst, &fl4->daddr); 1241db8dac20SDavid S. Miller if (!(msg->msg_flags&MSG_PROBE) || len) 1242db8dac20SDavid S. Miller goto back_from_confirm; 1243db8dac20SDavid S. Miller err = 0; 1244db8dac20SDavid S. Miller goto out; 1245db8dac20SDavid S. Miller } 1246c482c568SEric Dumazet EXPORT_SYMBOL(udp_sendmsg); 1247db8dac20SDavid S. Miller 1248db8dac20SDavid S. Miller int udp_sendpage(struct sock *sk, struct page *page, int offset, 1249db8dac20SDavid S. Miller size_t size, int flags) 1250db8dac20SDavid S. Miller { 1251f5fca608SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 1252db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 1253db8dac20SDavid S. Miller int ret; 1254db8dac20SDavid S. Miller 1255d3f7d56aSShawn Landden if (flags & MSG_SENDPAGE_NOTLAST) 1256d3f7d56aSShawn Landden flags |= MSG_MORE; 1257d3f7d56aSShawn Landden 1258db8dac20SDavid S. Miller if (!up->pending) { 1259db8dac20SDavid S. Miller struct msghdr msg = { .msg_flags = flags|MSG_MORE }; 1260db8dac20SDavid S. Miller 1261db8dac20SDavid S. Miller /* Call udp_sendmsg to specify destination address which 1262db8dac20SDavid S. Miller * sendpage interface can't pass. 1263db8dac20SDavid S. Miller * This will succeed only when the socket is connected. 1264db8dac20SDavid S. Miller */ 12651b784140SYing Xue ret = udp_sendmsg(sk, &msg, 0); 1266db8dac20SDavid S. Miller if (ret < 0) 1267db8dac20SDavid S. Miller return ret; 1268db8dac20SDavid S. Miller } 1269db8dac20SDavid S. Miller 1270db8dac20SDavid S. Miller lock_sock(sk); 1271db8dac20SDavid S. Miller 1272db8dac20SDavid S. Miller if (unlikely(!up->pending)) { 1273db8dac20SDavid S. Miller release_sock(sk); 1274db8dac20SDavid S. Miller 1275197df02cSMatteo Croce net_dbg_ratelimited("cork failed\n"); 1276db8dac20SDavid S. Miller return -EINVAL; 1277db8dac20SDavid S. Miller } 1278db8dac20SDavid S. Miller 1279f5fca608SDavid S. Miller ret = ip_append_page(sk, &inet->cork.fl.u.ip4, 1280f5fca608SDavid S. Miller page, offset, size, flags); 1281db8dac20SDavid S. Miller if (ret == -EOPNOTSUPP) { 1282db8dac20SDavid S. Miller release_sock(sk); 1283db8dac20SDavid S. Miller return sock_no_sendpage(sk->sk_socket, page, offset, 1284db8dac20SDavid S. Miller size, flags); 1285db8dac20SDavid S. Miller } 1286db8dac20SDavid S. Miller if (ret < 0) { 1287db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 1288db8dac20SDavid S. Miller goto out; 1289db8dac20SDavid S. Miller } 1290db8dac20SDavid S. Miller 1291db8dac20SDavid S. Miller up->len += size; 1292db8dac20SDavid S. Miller if (!(up->corkflag || (flags&MSG_MORE))) 1293db8dac20SDavid S. Miller ret = udp_push_pending_frames(sk); 1294db8dac20SDavid S. Miller if (!ret) 1295db8dac20SDavid S. Miller ret = size; 1296db8dac20SDavid S. Miller out: 1297db8dac20SDavid S. Miller release_sock(sk); 1298db8dac20SDavid S. Miller return ret; 1299db8dac20SDavid S. Miller } 1300db8dac20SDavid S. Miller 1301dce4551cSPaolo Abeni #define UDP_SKB_IS_STATELESS 0x80000000 1302dce4551cSPaolo Abeni 1303677bf08cSFlorian Westphal /* all head states (dst, sk, nf conntrack) except skb extensions are 1304677bf08cSFlorian Westphal * cleared by udp_rcv(). 1305677bf08cSFlorian Westphal * 1306677bf08cSFlorian Westphal * We need to preserve secpath, if present, to eventually process 1307677bf08cSFlorian Westphal * IP_CMSG_PASSSEC at recvmsg() time. 1308677bf08cSFlorian Westphal * 1309677bf08cSFlorian Westphal * Other extensions can be cleared. 1310677bf08cSFlorian Westphal */ 1311677bf08cSFlorian Westphal static bool udp_try_make_stateless(struct sk_buff *skb) 1312677bf08cSFlorian Westphal { 1313677bf08cSFlorian Westphal if (!skb_has_extensions(skb)) 1314677bf08cSFlorian Westphal return true; 1315677bf08cSFlorian Westphal 1316677bf08cSFlorian Westphal if (!secpath_exists(skb)) { 1317677bf08cSFlorian Westphal skb_ext_reset(skb); 1318677bf08cSFlorian Westphal return true; 1319677bf08cSFlorian Westphal } 1320677bf08cSFlorian Westphal 1321677bf08cSFlorian Westphal return false; 1322677bf08cSFlorian Westphal } 1323677bf08cSFlorian Westphal 1324b65ac446SPaolo Abeni static void udp_set_dev_scratch(struct sk_buff *skb) 1325b65ac446SPaolo Abeni { 1326dce4551cSPaolo Abeni struct udp_dev_scratch *scratch = udp_skb_scratch(skb); 1327b65ac446SPaolo Abeni 1328b65ac446SPaolo Abeni BUILD_BUG_ON(sizeof(struct udp_dev_scratch) > sizeof(long)); 1329dce4551cSPaolo Abeni scratch->_tsize_state = skb->truesize; 1330dce4551cSPaolo Abeni #if BITS_PER_LONG == 64 1331b65ac446SPaolo Abeni scratch->len = skb->len; 1332b65ac446SPaolo Abeni scratch->csum_unnecessary = !!skb_csum_unnecessary(skb); 1333b65ac446SPaolo Abeni scratch->is_linear = !skb_is_nonlinear(skb); 1334b65ac446SPaolo Abeni #endif 1335677bf08cSFlorian Westphal if (udp_try_make_stateless(skb)) 1336dce4551cSPaolo Abeni scratch->_tsize_state |= UDP_SKB_IS_STATELESS; 1337dce4551cSPaolo Abeni } 1338dce4551cSPaolo Abeni 1339a793183cSEric Dumazet static void udp_skb_csum_unnecessary_set(struct sk_buff *skb) 1340a793183cSEric Dumazet { 1341a793183cSEric Dumazet /* We come here after udp_lib_checksum_complete() returned 0. 1342a793183cSEric Dumazet * This means that __skb_checksum_complete() might have 1343a793183cSEric Dumazet * set skb->csum_valid to 1. 1344a793183cSEric Dumazet * On 64bit platforms, we can set csum_unnecessary 1345a793183cSEric Dumazet * to true, but only if the skb is not shared. 1346a793183cSEric Dumazet */ 1347a793183cSEric Dumazet #if BITS_PER_LONG == 64 1348a793183cSEric Dumazet if (!skb_shared(skb)) 1349a793183cSEric Dumazet udp_skb_scratch(skb)->csum_unnecessary = true; 1350a793183cSEric Dumazet #endif 1351a793183cSEric Dumazet } 1352a793183cSEric Dumazet 1353dce4551cSPaolo Abeni static int udp_skb_truesize(struct sk_buff *skb) 1354dce4551cSPaolo Abeni { 1355dce4551cSPaolo Abeni return udp_skb_scratch(skb)->_tsize_state & ~UDP_SKB_IS_STATELESS; 1356dce4551cSPaolo Abeni } 1357dce4551cSPaolo Abeni 1358dce4551cSPaolo Abeni static bool udp_skb_has_head_state(struct sk_buff *skb) 1359dce4551cSPaolo Abeni { 1360dce4551cSPaolo Abeni return !(udp_skb_scratch(skb)->_tsize_state & UDP_SKB_IS_STATELESS); 1361dce4551cSPaolo Abeni } 1362b65ac446SPaolo Abeni 13637c13f97fSPaolo Abeni /* fully reclaim rmem/fwd memory allocated for skb */ 13646dfb4367SPaolo Abeni static void udp_rmem_release(struct sock *sk, int size, int partial, 13656dfb4367SPaolo Abeni bool rx_queue_lock_held) 1366f970bd9eSPaolo Abeni { 13676b229cf7SEric Dumazet struct udp_sock *up = udp_sk(sk); 13682276f58aSPaolo Abeni struct sk_buff_head *sk_queue; 1369f970bd9eSPaolo Abeni int amt; 1370f970bd9eSPaolo Abeni 13716b229cf7SEric Dumazet if (likely(partial)) { 13726b229cf7SEric Dumazet up->forward_deficit += size; 13736b229cf7SEric Dumazet size = up->forward_deficit; 1374d39ca259SPaolo Abeni if (size < (sk->sk_rcvbuf >> 2) && 1375d39ca259SPaolo Abeni !skb_queue_empty(&up->reader_queue)) 13766b229cf7SEric Dumazet return; 13776b229cf7SEric Dumazet } else { 13786b229cf7SEric Dumazet size += up->forward_deficit; 13796b229cf7SEric Dumazet } 13806b229cf7SEric Dumazet up->forward_deficit = 0; 13816b229cf7SEric Dumazet 13826dfb4367SPaolo Abeni /* acquire the sk_receive_queue for fwd allocated memory scheduling, 13836dfb4367SPaolo Abeni * if the called don't held it already 13846dfb4367SPaolo Abeni */ 13852276f58aSPaolo Abeni sk_queue = &sk->sk_receive_queue; 13866dfb4367SPaolo Abeni if (!rx_queue_lock_held) 13872276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 13882276f58aSPaolo Abeni 13896dfb4367SPaolo Abeni 1390f970bd9eSPaolo Abeni sk->sk_forward_alloc += size; 1391f970bd9eSPaolo Abeni amt = (sk->sk_forward_alloc - partial) & ~(SK_MEM_QUANTUM - 1); 1392f970bd9eSPaolo Abeni sk->sk_forward_alloc -= amt; 1393f970bd9eSPaolo Abeni 1394f970bd9eSPaolo Abeni if (amt) 1395f970bd9eSPaolo Abeni __sk_mem_reduce_allocated(sk, amt >> SK_MEM_QUANTUM_SHIFT); 139602ab0d13SEric Dumazet 139702ab0d13SEric Dumazet atomic_sub(size, &sk->sk_rmem_alloc); 13982276f58aSPaolo Abeni 13992276f58aSPaolo Abeni /* this can save us from acquiring the rx queue lock on next receive */ 14002276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, &up->reader_queue); 14012276f58aSPaolo Abeni 14026dfb4367SPaolo Abeni if (!rx_queue_lock_held) 14032276f58aSPaolo Abeni spin_unlock(&sk_queue->lock); 1404f970bd9eSPaolo Abeni } 1405f970bd9eSPaolo Abeni 14062276f58aSPaolo Abeni /* Note: called with reader_queue.lock held. 1407c84d9490SEric Dumazet * Instead of using skb->truesize here, find a copy of it in skb->dev_scratch 1408c84d9490SEric Dumazet * This avoids a cache line miss while receive_queue lock is held. 1409c84d9490SEric Dumazet * Look at __udp_enqueue_schedule_skb() to find where this copy is done. 1410c84d9490SEric Dumazet */ 14117c13f97fSPaolo Abeni void udp_skb_destructor(struct sock *sk, struct sk_buff *skb) 1412f970bd9eSPaolo Abeni { 1413b65ac446SPaolo Abeni prefetch(&skb->data); 1414b65ac446SPaolo Abeni udp_rmem_release(sk, udp_skb_truesize(skb), 1, false); 1415f970bd9eSPaolo Abeni } 14167c13f97fSPaolo Abeni EXPORT_SYMBOL(udp_skb_destructor); 1417f970bd9eSPaolo Abeni 14186dfb4367SPaolo Abeni /* as above, but the caller held the rx queue lock, too */ 141964f5102dSColin Ian King static void udp_skb_dtor_locked(struct sock *sk, struct sk_buff *skb) 14206dfb4367SPaolo Abeni { 1421b65ac446SPaolo Abeni prefetch(&skb->data); 1422b65ac446SPaolo Abeni udp_rmem_release(sk, udp_skb_truesize(skb), 1, true); 14236dfb4367SPaolo Abeni } 14246dfb4367SPaolo Abeni 14254b272750SEric Dumazet /* Idea of busylocks is to let producers grab an extra spinlock 14264b272750SEric Dumazet * to relieve pressure on the receive_queue spinlock shared by consumer. 14274b272750SEric Dumazet * Under flood, this means that only one producer can be in line 14284b272750SEric Dumazet * trying to acquire the receive_queue spinlock. 14294b272750SEric Dumazet * These busylock can be allocated on a per cpu manner, instead of a 14304b272750SEric Dumazet * per socket one (that would consume a cache line per socket) 14314b272750SEric Dumazet */ 14324b272750SEric Dumazet static int udp_busylocks_log __read_mostly; 14334b272750SEric Dumazet static spinlock_t *udp_busylocks __read_mostly; 14344b272750SEric Dumazet 14354b272750SEric Dumazet static spinlock_t *busylock_acquire(void *ptr) 14364b272750SEric Dumazet { 14374b272750SEric Dumazet spinlock_t *busy; 14384b272750SEric Dumazet 14394b272750SEric Dumazet busy = udp_busylocks + hash_ptr(ptr, udp_busylocks_log); 14404b272750SEric Dumazet spin_lock(busy); 14414b272750SEric Dumazet return busy; 14424b272750SEric Dumazet } 14434b272750SEric Dumazet 14444b272750SEric Dumazet static void busylock_release(spinlock_t *busy) 14454b272750SEric Dumazet { 14464b272750SEric Dumazet if (busy) 14474b272750SEric Dumazet spin_unlock(busy); 14484b272750SEric Dumazet } 14494b272750SEric Dumazet 1450f970bd9eSPaolo Abeni int __udp_enqueue_schedule_skb(struct sock *sk, struct sk_buff *skb) 1451f970bd9eSPaolo Abeni { 1452f970bd9eSPaolo Abeni struct sk_buff_head *list = &sk->sk_receive_queue; 1453f970bd9eSPaolo Abeni int rmem, delta, amt, err = -ENOMEM; 14544b272750SEric Dumazet spinlock_t *busy = NULL; 1455c8c8b127SEric Dumazet int size; 1456f970bd9eSPaolo Abeni 1457f970bd9eSPaolo Abeni /* try to avoid the costly atomic add/sub pair when the receive 1458f970bd9eSPaolo Abeni * queue is full; always allow at least a packet 1459f970bd9eSPaolo Abeni */ 1460f970bd9eSPaolo Abeni rmem = atomic_read(&sk->sk_rmem_alloc); 1461363dc73aSPaolo Abeni if (rmem > sk->sk_rcvbuf) 1462f970bd9eSPaolo Abeni goto drop; 1463f970bd9eSPaolo Abeni 1464c8c8b127SEric Dumazet /* Under mem pressure, it might be helpful to help udp_recvmsg() 1465c8c8b127SEric Dumazet * having linear skbs : 1466c8c8b127SEric Dumazet * - Reduce memory overhead and thus increase receive queue capacity 1467c8c8b127SEric Dumazet * - Less cache line misses at copyout() time 1468c8c8b127SEric Dumazet * - Less work at consume_skb() (less alien page frag freeing) 1469c8c8b127SEric Dumazet */ 14704b272750SEric Dumazet if (rmem > (sk->sk_rcvbuf >> 1)) { 1471c8c8b127SEric Dumazet skb_condense(skb); 14724b272750SEric Dumazet 14734b272750SEric Dumazet busy = busylock_acquire(sk); 14744b272750SEric Dumazet } 1475c8c8b127SEric Dumazet size = skb->truesize; 1476b65ac446SPaolo Abeni udp_set_dev_scratch(skb); 1477c8c8b127SEric Dumazet 1478f970bd9eSPaolo Abeni /* we drop only if the receive buf is full and the receive 1479f970bd9eSPaolo Abeni * queue contains some other skb 1480f970bd9eSPaolo Abeni */ 1481f970bd9eSPaolo Abeni rmem = atomic_add_return(size, &sk->sk_rmem_alloc); 1482feed8a4fSAntonio Messina if (rmem > (size + (unsigned int)sk->sk_rcvbuf)) 1483f970bd9eSPaolo Abeni goto uncharge_drop; 1484f970bd9eSPaolo Abeni 1485f970bd9eSPaolo Abeni spin_lock(&list->lock); 1486f970bd9eSPaolo Abeni if (size >= sk->sk_forward_alloc) { 1487f970bd9eSPaolo Abeni amt = sk_mem_pages(size); 1488f970bd9eSPaolo Abeni delta = amt << SK_MEM_QUANTUM_SHIFT; 1489f970bd9eSPaolo Abeni if (!__sk_mem_raise_allocated(sk, delta, amt, SK_MEM_RECV)) { 1490f970bd9eSPaolo Abeni err = -ENOBUFS; 1491f970bd9eSPaolo Abeni spin_unlock(&list->lock); 1492f970bd9eSPaolo Abeni goto uncharge_drop; 1493f970bd9eSPaolo Abeni } 1494f970bd9eSPaolo Abeni 1495f970bd9eSPaolo Abeni sk->sk_forward_alloc += delta; 1496f970bd9eSPaolo Abeni } 1497f970bd9eSPaolo Abeni 1498f970bd9eSPaolo Abeni sk->sk_forward_alloc -= size; 1499f970bd9eSPaolo Abeni 15007c13f97fSPaolo Abeni /* no need to setup a destructor, we will explicitly release the 15017c13f97fSPaolo Abeni * forward allocated memory on dequeue 15027c13f97fSPaolo Abeni */ 1503f970bd9eSPaolo Abeni sock_skb_set_dropcount(sk, skb); 1504f970bd9eSPaolo Abeni 1505f970bd9eSPaolo Abeni __skb_queue_tail(list, skb); 1506f970bd9eSPaolo Abeni spin_unlock(&list->lock); 1507f970bd9eSPaolo Abeni 1508f970bd9eSPaolo Abeni if (!sock_flag(sk, SOCK_DEAD)) 1509f970bd9eSPaolo Abeni sk->sk_data_ready(sk); 1510f970bd9eSPaolo Abeni 15114b272750SEric Dumazet busylock_release(busy); 1512f970bd9eSPaolo Abeni return 0; 1513f970bd9eSPaolo Abeni 1514f970bd9eSPaolo Abeni uncharge_drop: 1515f970bd9eSPaolo Abeni atomic_sub(skb->truesize, &sk->sk_rmem_alloc); 1516f970bd9eSPaolo Abeni 1517f970bd9eSPaolo Abeni drop: 1518f970bd9eSPaolo Abeni atomic_inc(&sk->sk_drops); 15194b272750SEric Dumazet busylock_release(busy); 1520f970bd9eSPaolo Abeni return err; 1521f970bd9eSPaolo Abeni } 1522f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(__udp_enqueue_schedule_skb); 1523f970bd9eSPaolo Abeni 1524c915fe13SPaolo Abeni void udp_destruct_sock(struct sock *sk) 1525f970bd9eSPaolo Abeni { 1526f970bd9eSPaolo Abeni /* reclaim completely the forward allocated memory */ 15272276f58aSPaolo Abeni struct udp_sock *up = udp_sk(sk); 15287c13f97fSPaolo Abeni unsigned int total = 0; 15297c13f97fSPaolo Abeni struct sk_buff *skb; 15307c13f97fSPaolo Abeni 15312276f58aSPaolo Abeni skb_queue_splice_tail_init(&sk->sk_receive_queue, &up->reader_queue); 15322276f58aSPaolo Abeni while ((skb = __skb_dequeue(&up->reader_queue)) != NULL) { 15337c13f97fSPaolo Abeni total += skb->truesize; 15347c13f97fSPaolo Abeni kfree_skb(skb); 15357c13f97fSPaolo Abeni } 15366dfb4367SPaolo Abeni udp_rmem_release(sk, total, 0, true); 15377c13f97fSPaolo Abeni 1538f970bd9eSPaolo Abeni inet_sock_destruct(sk); 1539f970bd9eSPaolo Abeni } 1540c915fe13SPaolo Abeni EXPORT_SYMBOL_GPL(udp_destruct_sock); 1541f970bd9eSPaolo Abeni 1542f970bd9eSPaolo Abeni int udp_init_sock(struct sock *sk) 1543f970bd9eSPaolo Abeni { 15442276f58aSPaolo Abeni skb_queue_head_init(&udp_sk(sk)->reader_queue); 1545f970bd9eSPaolo Abeni sk->sk_destruct = udp_destruct_sock; 1546f970bd9eSPaolo Abeni return 0; 1547f970bd9eSPaolo Abeni } 1548f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(udp_init_sock); 1549f970bd9eSPaolo Abeni 1550f970bd9eSPaolo Abeni void skb_consume_udp(struct sock *sk, struct sk_buff *skb, int len) 1551f970bd9eSPaolo Abeni { 1552f970bd9eSPaolo Abeni if (unlikely(READ_ONCE(sk->sk_peek_off) >= 0)) { 1553f970bd9eSPaolo Abeni bool slow = lock_sock_fast(sk); 1554f970bd9eSPaolo Abeni 1555f970bd9eSPaolo Abeni sk_peek_offset_bwd(sk, len); 1556f970bd9eSPaolo Abeni unlock_sock_fast(sk, slow); 1557f970bd9eSPaolo Abeni } 15580a463c78SPaolo Abeni 1559ca2c1418SPaolo Abeni if (!skb_unref(skb)) 1560ca2c1418SPaolo Abeni return; 1561ca2c1418SPaolo Abeni 1562dce4551cSPaolo Abeni /* In the more common cases we cleared the head states previously, 1563dce4551cSPaolo Abeni * see __udp_queue_rcv_skb(). 15640ddf3fb2SPaolo Abeni */ 1565dce4551cSPaolo Abeni if (unlikely(udp_skb_has_head_state(skb))) 15660ddf3fb2SPaolo Abeni skb_release_head_state(skb); 1567ca2c1418SPaolo Abeni __consume_stateless_skb(skb); 1568f970bd9eSPaolo Abeni } 1569f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(skb_consume_udp); 1570f970bd9eSPaolo Abeni 15712276f58aSPaolo Abeni static struct sk_buff *__first_packet_length(struct sock *sk, 15722276f58aSPaolo Abeni struct sk_buff_head *rcvq, 15732276f58aSPaolo Abeni int *total) 15742276f58aSPaolo Abeni { 15752276f58aSPaolo Abeni struct sk_buff *skb; 15762276f58aSPaolo Abeni 15779bd780f5SPaolo Abeni while ((skb = skb_peek(rcvq)) != NULL) { 15789bd780f5SPaolo Abeni if (udp_lib_checksum_complete(skb)) { 15792276f58aSPaolo Abeni __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, 15802276f58aSPaolo Abeni IS_UDPLITE(sk)); 15812276f58aSPaolo Abeni __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, 15822276f58aSPaolo Abeni IS_UDPLITE(sk)); 15832276f58aSPaolo Abeni atomic_inc(&sk->sk_drops); 15842276f58aSPaolo Abeni __skb_unlink(skb, rcvq); 15852276f58aSPaolo Abeni *total += skb->truesize; 15862276f58aSPaolo Abeni kfree_skb(skb); 15879bd780f5SPaolo Abeni } else { 1588a793183cSEric Dumazet udp_skb_csum_unnecessary_set(skb); 15899bd780f5SPaolo Abeni break; 15909bd780f5SPaolo Abeni } 15912276f58aSPaolo Abeni } 15922276f58aSPaolo Abeni return skb; 15932276f58aSPaolo Abeni } 15942276f58aSPaolo Abeni 159585584672SEric Dumazet /** 159685584672SEric Dumazet * first_packet_length - return length of first packet in receive queue 159785584672SEric Dumazet * @sk: socket 159885584672SEric Dumazet * 159985584672SEric Dumazet * Drops all bad checksum frames, until a valid one is found. 1600e83c6744SEric Dumazet * Returns the length of found skb, or -1 if none is found. 160185584672SEric Dumazet */ 1602e83c6744SEric Dumazet static int first_packet_length(struct sock *sk) 160385584672SEric Dumazet { 16042276f58aSPaolo Abeni struct sk_buff_head *rcvq = &udp_sk(sk)->reader_queue; 16052276f58aSPaolo Abeni struct sk_buff_head *sk_queue = &sk->sk_receive_queue; 160685584672SEric Dumazet struct sk_buff *skb; 16077c13f97fSPaolo Abeni int total = 0; 1608e83c6744SEric Dumazet int res; 160985584672SEric Dumazet 161085584672SEric Dumazet spin_lock_bh(&rcvq->lock); 16112276f58aSPaolo Abeni skb = __first_packet_length(sk, rcvq, &total); 1612137a0dbeSEric Dumazet if (!skb && !skb_queue_empty_lockless(sk_queue)) { 16132276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 16142276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, rcvq); 16152276f58aSPaolo Abeni spin_unlock(&sk_queue->lock); 16162276f58aSPaolo Abeni 16172276f58aSPaolo Abeni skb = __first_packet_length(sk, rcvq, &total); 161885584672SEric Dumazet } 1619e83c6744SEric Dumazet res = skb ? skb->len : -1; 16207c13f97fSPaolo Abeni if (total) 16216dfb4367SPaolo Abeni udp_rmem_release(sk, total, 1, false); 162285584672SEric Dumazet spin_unlock_bh(&rcvq->lock); 162385584672SEric Dumazet return res; 162485584672SEric Dumazet } 162585584672SEric Dumazet 16261da177e4SLinus Torvalds /* 16271da177e4SLinus Torvalds * IOCTL requests applicable to the UDP protocol 16281da177e4SLinus Torvalds */ 16291da177e4SLinus Torvalds 16301da177e4SLinus Torvalds int udp_ioctl(struct sock *sk, int cmd, unsigned long arg) 16311da177e4SLinus Torvalds { 16326516c655SStephen Hemminger switch (cmd) { 16331da177e4SLinus Torvalds case SIOCOUTQ: 16341da177e4SLinus Torvalds { 163531e6d363SEric Dumazet int amount = sk_wmem_alloc_get(sk); 163631e6d363SEric Dumazet 16371da177e4SLinus Torvalds return put_user(amount, (int __user *)arg); 16381da177e4SLinus Torvalds } 16391da177e4SLinus Torvalds 16401da177e4SLinus Torvalds case SIOCINQ: 16411da177e4SLinus Torvalds { 1642e83c6744SEric Dumazet int amount = max_t(int, 0, first_packet_length(sk)); 16431da177e4SLinus Torvalds 16441da177e4SLinus Torvalds return put_user(amount, (int __user *)arg); 16451da177e4SLinus Torvalds } 16461da177e4SLinus Torvalds 16471da177e4SLinus Torvalds default: 16481da177e4SLinus Torvalds return -ENOIOCTLCMD; 16491da177e4SLinus Torvalds } 16506516c655SStephen Hemminger 16516516c655SStephen Hemminger return 0; 16521da177e4SLinus Torvalds } 1653c482c568SEric Dumazet EXPORT_SYMBOL(udp_ioctl); 16541da177e4SLinus Torvalds 16552276f58aSPaolo Abeni struct sk_buff *__skb_recv_udp(struct sock *sk, unsigned int flags, 1656fd69c399SPaolo Abeni int noblock, int *off, int *err) 16572276f58aSPaolo Abeni { 16582276f58aSPaolo Abeni struct sk_buff_head *sk_queue = &sk->sk_receive_queue; 16592276f58aSPaolo Abeni struct sk_buff_head *queue; 16602276f58aSPaolo Abeni struct sk_buff *last; 16612276f58aSPaolo Abeni long timeo; 16622276f58aSPaolo Abeni int error; 16632276f58aSPaolo Abeni 16642276f58aSPaolo Abeni queue = &udp_sk(sk)->reader_queue; 16652276f58aSPaolo Abeni flags |= noblock ? MSG_DONTWAIT : 0; 16662276f58aSPaolo Abeni timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); 16672276f58aSPaolo Abeni do { 16682276f58aSPaolo Abeni struct sk_buff *skb; 16692276f58aSPaolo Abeni 16702276f58aSPaolo Abeni error = sock_error(sk); 16712276f58aSPaolo Abeni if (error) 16722276f58aSPaolo Abeni break; 16732276f58aSPaolo Abeni 16742276f58aSPaolo Abeni error = -EAGAIN; 16752276f58aSPaolo Abeni do { 16762276f58aSPaolo Abeni spin_lock_bh(&queue->lock); 1677e427cad6SPaolo Abeni skb = __skb_try_recv_from_queue(sk, queue, flags, off, 1678e427cad6SPaolo Abeni err, &last); 16792276f58aSPaolo Abeni if (skb) { 1680e427cad6SPaolo Abeni if (!(flags & MSG_PEEK)) 1681e427cad6SPaolo Abeni udp_skb_destructor(sk, skb); 16822276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 16832276f58aSPaolo Abeni return skb; 16842276f58aSPaolo Abeni } 16852276f58aSPaolo Abeni 1686137a0dbeSEric Dumazet if (skb_queue_empty_lockless(sk_queue)) { 16872276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 16882276f58aSPaolo Abeni goto busy_check; 16892276f58aSPaolo Abeni } 16902276f58aSPaolo Abeni 16916dfb4367SPaolo Abeni /* refill the reader queue and walk it again 16926dfb4367SPaolo Abeni * keep both queues locked to avoid re-acquiring 16936dfb4367SPaolo Abeni * the sk_receive_queue lock if fwd memory scheduling 16946dfb4367SPaolo Abeni * is needed. 16956dfb4367SPaolo Abeni */ 16962276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 16972276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, queue); 16982276f58aSPaolo Abeni 1699e427cad6SPaolo Abeni skb = __skb_try_recv_from_queue(sk, queue, flags, off, 1700e427cad6SPaolo Abeni err, &last); 1701e427cad6SPaolo Abeni if (skb && !(flags & MSG_PEEK)) 1702e427cad6SPaolo Abeni udp_skb_dtor_locked(sk, skb); 17036dfb4367SPaolo Abeni spin_unlock(&sk_queue->lock); 17042276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 1705de321ed3SAndrey Vagin if (skb) 17062276f58aSPaolo Abeni return skb; 17072276f58aSPaolo Abeni 17082276f58aSPaolo Abeni busy_check: 17092276f58aSPaolo Abeni if (!sk_can_busy_loop(sk)) 17102276f58aSPaolo Abeni break; 17112276f58aSPaolo Abeni 17122276f58aSPaolo Abeni sk_busy_loop(sk, flags & MSG_DONTWAIT); 1713137a0dbeSEric Dumazet } while (!skb_queue_empty_lockless(sk_queue)); 17142276f58aSPaolo Abeni 17152276f58aSPaolo Abeni /* sk_queue is empty, reader_queue may contain peeked packets */ 17162276f58aSPaolo Abeni } while (timeo && 1717b50b0580SSabrina Dubroca !__skb_wait_for_more_packets(sk, &sk->sk_receive_queue, 1718b50b0580SSabrina Dubroca &error, &timeo, 17192276f58aSPaolo Abeni (struct sk_buff *)sk_queue)); 17202276f58aSPaolo Abeni 17212276f58aSPaolo Abeni *err = error; 17222276f58aSPaolo Abeni return NULL; 17232276f58aSPaolo Abeni } 17247e823644SJiri Kosina EXPORT_SYMBOL(__skb_recv_udp); 17252276f58aSPaolo Abeni 1726db8dac20SDavid S. Miller /* 1727db8dac20SDavid S. Miller * This should be easy, if there is something there we 1728db8dac20SDavid S. Miller * return it, otherwise we block. 1729db8dac20SDavid S. Miller */ 1730db8dac20SDavid S. Miller 17311b784140SYing Xue int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock, 17321b784140SYing Xue int flags, int *addr_len) 1733db8dac20SDavid S. Miller { 1734db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 1735342dfc30SSteffen Hurrle DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name); 1736db8dac20SDavid S. Miller struct sk_buff *skb; 173759c2cdaeSDavid S. Miller unsigned int ulen, copied; 1738fd69c399SPaolo Abeni int off, err, peeking = flags & MSG_PEEK; 1739db8dac20SDavid S. Miller int is_udplite = IS_UDPLITE(sk); 1740197c949eSEric Dumazet bool checksum_valid = false; 1741db8dac20SDavid S. Miller 1742db8dac20SDavid S. Miller if (flags & MSG_ERRQUEUE) 174385fbaa75SHannes Frederic Sowa return ip_recv_error(sk, msg, len, addr_len); 1744db8dac20SDavid S. Miller 1745db8dac20SDavid S. Miller try_again: 1746a0917e0bSMatthew Dawson off = sk_peek_offset(sk, flags); 1747fd69c399SPaolo Abeni skb = __skb_recv_udp(sk, flags, noblock, &off, &err); 1748db8dac20SDavid S. Miller if (!skb) 1749627d2d6bSsamanthakumar return err; 1750db8dac20SDavid S. Miller 1751b65ac446SPaolo Abeni ulen = udp_skb_len(skb); 175259c2cdaeSDavid S. Miller copied = len; 1753627d2d6bSsamanthakumar if (copied > ulen - off) 1754627d2d6bSsamanthakumar copied = ulen - off; 175559c2cdaeSDavid S. Miller else if (copied < ulen) 1756db8dac20SDavid S. Miller msg->msg_flags |= MSG_TRUNC; 1757db8dac20SDavid S. Miller 1758db8dac20SDavid S. Miller /* 1759db8dac20SDavid S. Miller * If checksum is needed at all, try to do it while copying the 1760db8dac20SDavid S. Miller * data. If the data is truncated, or if we only want a partial 1761db8dac20SDavid S. Miller * coverage checksum (UDP-Lite), do it before the copy. 1762db8dac20SDavid S. Miller */ 1763db8dac20SDavid S. Miller 1764d21dbdfeSEric Dumazet if (copied < ulen || peeking || 1765d21dbdfeSEric Dumazet (is_udplite && UDP_SKB_CB(skb)->partial_cov)) { 1766b65ac446SPaolo Abeni checksum_valid = udp_skb_csum_unnecessary(skb) || 1767b65ac446SPaolo Abeni !__udp_lib_checksum_complete(skb); 1768197c949eSEric Dumazet if (!checksum_valid) 1769db8dac20SDavid S. Miller goto csum_copy_err; 1770db8dac20SDavid S. Miller } 1771db8dac20SDavid S. Miller 1772b65ac446SPaolo Abeni if (checksum_valid || udp_skb_csum_unnecessary(skb)) { 1773b65ac446SPaolo Abeni if (udp_skb_is_linear(skb)) 1774b65ac446SPaolo Abeni err = copy_linear_skb(skb, copied, off, &msg->msg_iter); 1775b65ac446SPaolo Abeni else 1776627d2d6bSsamanthakumar err = skb_copy_datagram_msg(skb, off, msg, copied); 1777b65ac446SPaolo Abeni } else { 1778627d2d6bSsamanthakumar err = skb_copy_and_csum_datagram_msg(skb, off, msg); 1779db8dac20SDavid S. Miller 1780db8dac20SDavid S. Miller if (err == -EINVAL) 1781db8dac20SDavid S. Miller goto csum_copy_err; 1782db8dac20SDavid S. Miller } 1783db8dac20SDavid S. Miller 178422911fc5SEric Dumazet if (unlikely(err)) { 1785fd69c399SPaolo Abeni if (!peeking) { 1786979402b1SEric Dumazet atomic_inc(&sk->sk_drops); 17876aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1788979402b1SEric Dumazet UDP_MIB_INERRORS, is_udplite); 1789979402b1SEric Dumazet } 1790850cbaddSPaolo Abeni kfree_skb(skb); 1791627d2d6bSsamanthakumar return err; 179222911fc5SEric Dumazet } 1793db8dac20SDavid S. Miller 1794fd69c399SPaolo Abeni if (!peeking) 17956aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1796629ca23cSPavel Emelyanov UDP_MIB_INDATAGRAMS, is_udplite); 1797db8dac20SDavid S. Miller 17983b885787SNeil Horman sock_recv_ts_and_drops(msg, sk, skb); 1799db8dac20SDavid S. Miller 1800db8dac20SDavid S. Miller /* Copy the address. */ 1801c482c568SEric Dumazet if (sin) { 1802db8dac20SDavid S. Miller sin->sin_family = AF_INET; 1803db8dac20SDavid S. Miller sin->sin_port = udp_hdr(skb)->source; 1804db8dac20SDavid S. Miller sin->sin_addr.s_addr = ip_hdr(skb)->saddr; 1805db8dac20SDavid S. Miller memset(sin->sin_zero, 0, sizeof(sin->sin_zero)); 1806bceaa902SHannes Frederic Sowa *addr_len = sizeof(*sin); 1807983695faSDaniel Borkmann 1808983695faSDaniel Borkmann if (cgroup_bpf_enabled) 1809983695faSDaniel Borkmann BPF_CGROUP_RUN_PROG_UDP4_RECVMSG_LOCK(sk, 1810983695faSDaniel Borkmann (struct sockaddr *)sin); 1811db8dac20SDavid S. Miller } 1812bcd1665eSPaolo Abeni 1813bcd1665eSPaolo Abeni if (udp_sk(sk)->gro_enabled) 1814bcd1665eSPaolo Abeni udp_cmsg_recv(msg, sk, skb); 1815bcd1665eSPaolo Abeni 1816db8dac20SDavid S. Miller if (inet->cmsg_flags) 1817ad959036SPaolo Abeni ip_cmsg_recv_offset(msg, sk, skb, sizeof(struct udphdr), off); 1818db8dac20SDavid S. Miller 181959c2cdaeSDavid S. Miller err = copied; 1820db8dac20SDavid S. Miller if (flags & MSG_TRUNC) 1821db8dac20SDavid S. Miller err = ulen; 1822db8dac20SDavid S. Miller 1823850cbaddSPaolo Abeni skb_consume_udp(sk, skb, peeking ? -err : err); 1824db8dac20SDavid S. Miller return err; 1825db8dac20SDavid S. Miller 1826db8dac20SDavid S. Miller csum_copy_err: 18272276f58aSPaolo Abeni if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags, 18282276f58aSPaolo Abeni udp_skb_destructor)) { 18296aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); 18306aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 18316a5dc9e5SEric Dumazet } 1832850cbaddSPaolo Abeni kfree_skb(skb); 1833db8dac20SDavid S. Miller 1834beb39db5SEric Dumazet /* starting over for a new packet, but check if we need to yield */ 1835beb39db5SEric Dumazet cond_resched(); 18369cfaa8deSXufeng Zhang msg->msg_flags &= ~MSG_TRUNC; 1837db8dac20SDavid S. Miller goto try_again; 1838db8dac20SDavid S. Miller } 1839db8dac20SDavid S. Miller 1840d74bad4eSAndrey Ignatov int udp_pre_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len) 1841d74bad4eSAndrey Ignatov { 1842d74bad4eSAndrey Ignatov /* This check is replicated from __ip4_datagram_connect() and 1843d74bad4eSAndrey Ignatov * intended to prevent BPF program called below from accessing bytes 1844d74bad4eSAndrey Ignatov * that are out of the bound specified by user in addr_len. 1845d74bad4eSAndrey Ignatov */ 1846d74bad4eSAndrey Ignatov if (addr_len < sizeof(struct sockaddr_in)) 1847d74bad4eSAndrey Ignatov return -EINVAL; 1848d74bad4eSAndrey Ignatov 1849d74bad4eSAndrey Ignatov return BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr); 1850d74bad4eSAndrey Ignatov } 1851d74bad4eSAndrey Ignatov EXPORT_SYMBOL(udp_pre_connect); 1852d74bad4eSAndrey Ignatov 1853286c72deSEric Dumazet int __udp_disconnect(struct sock *sk, int flags) 18541da177e4SLinus Torvalds { 18551da177e4SLinus Torvalds struct inet_sock *inet = inet_sk(sk); 18561da177e4SLinus Torvalds /* 18571da177e4SLinus Torvalds * 1003.1g - break association. 18581da177e4SLinus Torvalds */ 18591da177e4SLinus Torvalds 18601da177e4SLinus Torvalds sk->sk_state = TCP_CLOSE; 1861c720c7e8SEric Dumazet inet->inet_daddr = 0; 1862c720c7e8SEric Dumazet inet->inet_dport = 0; 1863bdeab991STom Herbert sock_rps_reset_rxhash(sk); 18641da177e4SLinus Torvalds sk->sk_bound_dev_if = 0; 1865303d0403SWillem de Bruijn if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK)) { 18661da177e4SLinus Torvalds inet_reset_saddr(sk); 1867303d0403SWillem de Bruijn if (sk->sk_prot->rehash && 1868303d0403SWillem de Bruijn (sk->sk_userlocks & SOCK_BINDPORT_LOCK)) 1869303d0403SWillem de Bruijn sk->sk_prot->rehash(sk); 1870303d0403SWillem de Bruijn } 18711da177e4SLinus Torvalds 18721da177e4SLinus Torvalds if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) { 18731da177e4SLinus Torvalds sk->sk_prot->unhash(sk); 1874c720c7e8SEric Dumazet inet->inet_sport = 0; 18751da177e4SLinus Torvalds } 18761da177e4SLinus Torvalds sk_dst_reset(sk); 18771da177e4SLinus Torvalds return 0; 18781da177e4SLinus Torvalds } 1879286c72deSEric Dumazet EXPORT_SYMBOL(__udp_disconnect); 1880286c72deSEric Dumazet 1881286c72deSEric Dumazet int udp_disconnect(struct sock *sk, int flags) 1882286c72deSEric Dumazet { 1883286c72deSEric Dumazet lock_sock(sk); 1884286c72deSEric Dumazet __udp_disconnect(sk, flags); 1885286c72deSEric Dumazet release_sock(sk); 1886286c72deSEric Dumazet return 0; 1887286c72deSEric Dumazet } 1888c482c568SEric Dumazet EXPORT_SYMBOL(udp_disconnect); 18891da177e4SLinus Torvalds 1890645ca708SEric Dumazet void udp_lib_unhash(struct sock *sk) 1891645ca708SEric Dumazet { 1892723b4610SEric Dumazet if (sk_hashed(sk)) { 1893645ca708SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 1894512615b6SEric Dumazet struct udp_hslot *hslot, *hslot2; 1895512615b6SEric Dumazet 1896512615b6SEric Dumazet hslot = udp_hashslot(udptable, sock_net(sk), 1897d4cada4aSEric Dumazet udp_sk(sk)->udp_port_hash); 1898512615b6SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 1899645ca708SEric Dumazet 1900c8db3fecSEric Dumazet spin_lock_bh(&hslot->lock); 1901e32ea7e7SCraig Gallek if (rcu_access_pointer(sk->sk_reuseport_cb)) 1902e32ea7e7SCraig Gallek reuseport_detach_sock(sk); 1903ca065d0cSEric Dumazet if (sk_del_node_init_rcu(sk)) { 1904fdcc8aa9SEric Dumazet hslot->count--; 1905c720c7e8SEric Dumazet inet_sk(sk)->inet_num = 0; 1906645ca708SEric Dumazet sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); 1907512615b6SEric Dumazet 1908512615b6SEric Dumazet spin_lock(&hslot2->lock); 1909ca065d0cSEric Dumazet hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node); 1910512615b6SEric Dumazet hslot2->count--; 1911512615b6SEric Dumazet spin_unlock(&hslot2->lock); 1912645ca708SEric Dumazet } 1913c8db3fecSEric Dumazet spin_unlock_bh(&hslot->lock); 1914645ca708SEric Dumazet } 1915723b4610SEric Dumazet } 1916645ca708SEric Dumazet EXPORT_SYMBOL(udp_lib_unhash); 1917645ca708SEric Dumazet 1918719f8358SEric Dumazet /* 1919719f8358SEric Dumazet * inet_rcv_saddr was changed, we must rehash secondary hash 1920719f8358SEric Dumazet */ 1921719f8358SEric Dumazet void udp_lib_rehash(struct sock *sk, u16 newhash) 1922719f8358SEric Dumazet { 1923719f8358SEric Dumazet if (sk_hashed(sk)) { 1924719f8358SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 1925719f8358SEric Dumazet struct udp_hslot *hslot, *hslot2, *nhslot2; 1926719f8358SEric Dumazet 1927719f8358SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 1928719f8358SEric Dumazet nhslot2 = udp_hashslot2(udptable, newhash); 1929719f8358SEric Dumazet udp_sk(sk)->udp_portaddr_hash = newhash; 1930e32ea7e7SCraig Gallek 1931e32ea7e7SCraig Gallek if (hslot2 != nhslot2 || 1932e32ea7e7SCraig Gallek rcu_access_pointer(sk->sk_reuseport_cb)) { 1933719f8358SEric Dumazet hslot = udp_hashslot(udptable, sock_net(sk), 1934719f8358SEric Dumazet udp_sk(sk)->udp_port_hash); 1935719f8358SEric Dumazet /* we must lock primary chain too */ 1936719f8358SEric Dumazet spin_lock_bh(&hslot->lock); 1937e32ea7e7SCraig Gallek if (rcu_access_pointer(sk->sk_reuseport_cb)) 1938e32ea7e7SCraig Gallek reuseport_detach_sock(sk); 1939719f8358SEric Dumazet 1940e32ea7e7SCraig Gallek if (hslot2 != nhslot2) { 1941719f8358SEric Dumazet spin_lock(&hslot2->lock); 1942ca065d0cSEric Dumazet hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node); 1943719f8358SEric Dumazet hslot2->count--; 1944719f8358SEric Dumazet spin_unlock(&hslot2->lock); 1945719f8358SEric Dumazet 1946719f8358SEric Dumazet spin_lock(&nhslot2->lock); 1947ca065d0cSEric Dumazet hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node, 1948719f8358SEric Dumazet &nhslot2->head); 1949719f8358SEric Dumazet nhslot2->count++; 1950719f8358SEric Dumazet spin_unlock(&nhslot2->lock); 1951e32ea7e7SCraig Gallek } 1952719f8358SEric Dumazet 1953719f8358SEric Dumazet spin_unlock_bh(&hslot->lock); 1954719f8358SEric Dumazet } 1955719f8358SEric Dumazet } 1956719f8358SEric Dumazet } 1957719f8358SEric Dumazet EXPORT_SYMBOL(udp_lib_rehash); 1958719f8358SEric Dumazet 19598f6b5392SAlexey Kodanev void udp_v4_rehash(struct sock *sk) 1960719f8358SEric Dumazet { 1961f0b1e64cSMartin KaFai Lau u16 new_hash = ipv4_portaddr_hash(sock_net(sk), 1962719f8358SEric Dumazet inet_sk(sk)->inet_rcv_saddr, 1963719f8358SEric Dumazet inet_sk(sk)->inet_num); 1964719f8358SEric Dumazet udp_lib_rehash(sk, new_hash); 1965719f8358SEric Dumazet } 1966719f8358SEric Dumazet 1967a3f96c47SPaolo Abeni static int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 196893821778SHerbert Xu { 1969fec5e652STom Herbert int rc; 197093821778SHerbert Xu 1971005ec974SShawn Bohrer if (inet_sk(sk)->inet_daddr) { 1972bdeab991STom Herbert sock_rps_save_rxhash(sk, skb); 1973005ec974SShawn Bohrer sk_mark_napi_id(sk, skb); 19742c8c56e1SEric Dumazet sk_incoming_cpu_update(sk); 1975e68b6e50SEric Dumazet } else { 1976e68b6e50SEric Dumazet sk_mark_napi_id_once(sk, skb); 1977005ec974SShawn Bohrer } 1978fec5e652STom Herbert 1979850cbaddSPaolo Abeni rc = __udp_enqueue_schedule_skb(sk, skb); 1980766e9037SEric Dumazet if (rc < 0) { 1981766e9037SEric Dumazet int is_udplite = IS_UDPLITE(sk); 1982766e9037SEric Dumazet 198393821778SHerbert Xu /* Note that an ENOMEM error is charged twice */ 1984766e9037SEric Dumazet if (rc == -ENOMEM) 1985e61da9e2SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_RCVBUFERRORS, 198693821778SHerbert Xu is_udplite); 1987e61da9e2SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 1988766e9037SEric Dumazet kfree_skb(skb); 1989296f7ea7SSatoru Moriya trace_udp_fail_queue_rcv_skb(rc, sk); 1990766e9037SEric Dumazet return -1; 199193821778SHerbert Xu } 199293821778SHerbert Xu 199393821778SHerbert Xu return 0; 199493821778SHerbert Xu } 199593821778SHerbert Xu 1996db8dac20SDavid S. Miller /* returns: 1997db8dac20SDavid S. Miller * -1: error 1998db8dac20SDavid S. Miller * 0: success 1999db8dac20SDavid S. Miller * >0: "udp encap" protocol resubmission 2000db8dac20SDavid S. Miller * 2001db8dac20SDavid S. Miller * Note that in the success and error cases, the skb is assumed to 2002db8dac20SDavid S. Miller * have either been requeued or freed. 2003db8dac20SDavid S. Miller */ 2004cf329aa4SPaolo Abeni static int udp_queue_rcv_one_skb(struct sock *sk, struct sk_buff *skb) 2005db8dac20SDavid S. Miller { 2006db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 2007db8dac20SDavid S. Miller int is_udplite = IS_UDPLITE(sk); 2008db8dac20SDavid S. Miller 2009db8dac20SDavid S. Miller /* 2010db8dac20SDavid S. Miller * Charge it to the socket, dropping if the queue is full. 2011db8dac20SDavid S. Miller */ 2012db8dac20SDavid S. Miller if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) 2013db8dac20SDavid S. Miller goto drop; 2014895b5c9fSFlorian Westphal nf_reset_ct(skb); 2015db8dac20SDavid S. Miller 201688ab3108SDavidlohr Bueso if (static_branch_unlikely(&udp_encap_needed_key) && up->encap_type) { 20170ad92ad0SEric Dumazet int (*encap_rcv)(struct sock *sk, struct sk_buff *skb); 20180ad92ad0SEric Dumazet 2019db8dac20SDavid S. Miller /* 2020db8dac20SDavid S. Miller * This is an encapsulation socket so pass the skb to 2021db8dac20SDavid S. Miller * the socket's udp_encap_rcv() hook. Otherwise, just 2022db8dac20SDavid S. Miller * fall through and pass this up the UDP socket. 2023db8dac20SDavid S. Miller * up->encap_rcv() returns the following value: 2024db8dac20SDavid S. Miller * =0 if skb was successfully passed to the encap 2025db8dac20SDavid S. Miller * handler or was discarded by it. 2026db8dac20SDavid S. Miller * >0 if skb should be passed on to UDP. 2027db8dac20SDavid S. Miller * <0 if skb should be resubmitted as proto -N 2028db8dac20SDavid S. Miller */ 2029db8dac20SDavid S. Miller 2030db8dac20SDavid S. Miller /* if we're overly short, let UDP handle it */ 20316aa7de05SMark Rutland encap_rcv = READ_ONCE(up->encap_rcv); 2032e5aed006SHannes Frederic Sowa if (encap_rcv) { 2033db8dac20SDavid S. Miller int ret; 2034db8dac20SDavid S. Miller 20350a80966bSTom Herbert /* Verify checksum before giving to encap */ 20360a80966bSTom Herbert if (udp_lib_checksum_complete(skb)) 20370a80966bSTom Herbert goto csum_error; 20380a80966bSTom Herbert 20390ad92ad0SEric Dumazet ret = encap_rcv(sk, skb); 2040db8dac20SDavid S. Miller if (ret <= 0) { 204102c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), 20420283328eSPavel Emelyanov UDP_MIB_INDATAGRAMS, 2043db8dac20SDavid S. Miller is_udplite); 2044db8dac20SDavid S. Miller return -ret; 2045db8dac20SDavid S. Miller } 2046db8dac20SDavid S. Miller } 2047db8dac20SDavid S. Miller 2048db8dac20SDavid S. Miller /* FALLTHROUGH -- it's a UDP Packet */ 2049db8dac20SDavid S. Miller } 2050db8dac20SDavid S. Miller 2051db8dac20SDavid S. Miller /* 2052db8dac20SDavid S. Miller * UDP-Lite specific tests, ignored on UDP sockets 2053db8dac20SDavid S. Miller */ 2054db8dac20SDavid S. Miller if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) { 2055db8dac20SDavid S. Miller 2056db8dac20SDavid S. Miller /* 2057db8dac20SDavid S. Miller * MIB statistics other than incrementing the error count are 2058db8dac20SDavid S. Miller * disabled for the following two types of errors: these depend 2059db8dac20SDavid S. Miller * on the application settings, not on the functioning of the 2060db8dac20SDavid S. Miller * protocol stack as such. 2061db8dac20SDavid S. Miller * 2062db8dac20SDavid S. Miller * RFC 3828 here recommends (sec 3.3): "There should also be a 2063db8dac20SDavid S. Miller * way ... to ... at least let the receiving application block 2064db8dac20SDavid S. Miller * delivery of packets with coverage values less than a value 2065db8dac20SDavid S. Miller * provided by the application." 2066db8dac20SDavid S. Miller */ 2067db8dac20SDavid S. Miller if (up->pcrlen == 0) { /* full coverage was set */ 2068ba7a46f1SJoe Perches net_dbg_ratelimited("UDPLite: partial coverage %d while full coverage %d requested\n", 2069db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov, skb->len); 2070db8dac20SDavid S. Miller goto drop; 2071db8dac20SDavid S. Miller } 2072db8dac20SDavid S. Miller /* The next case involves violating the min. coverage requested 2073db8dac20SDavid S. Miller * by the receiver. This is subtle: if receiver wants x and x is 2074db8dac20SDavid S. Miller * greater than the buffersize/MTU then receiver will complain 2075db8dac20SDavid S. Miller * that it wants x while sender emits packets of smaller size y. 2076db8dac20SDavid S. Miller * Therefore the above ...()->partial_cov statement is essential. 2077db8dac20SDavid S. Miller */ 2078db8dac20SDavid S. Miller if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { 2079ba7a46f1SJoe Perches net_dbg_ratelimited("UDPLite: coverage %d too small, need min %d\n", 2080db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov, up->pcrlen); 2081db8dac20SDavid S. Miller goto drop; 2082db8dac20SDavid S. Miller } 2083db8dac20SDavid S. Miller } 2084db8dac20SDavid S. Miller 2085dd99e425SPaolo Abeni prefetch(&sk->sk_rmem_alloc); 2086ce25d66aSEric Dumazet if (rcu_access_pointer(sk->sk_filter) && 2087ce25d66aSEric Dumazet udp_lib_checksum_complete(skb)) 20886a5dc9e5SEric Dumazet goto csum_error; 2089ce25d66aSEric Dumazet 2090ba66bbe5SDaniel Borkmann if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr))) 2091a6127697SMichal Kubeček goto drop; 2092db8dac20SDavid S. Miller 2093e6afc8acSsamanthakumar udp_csum_pull_header(skb); 2094db8dac20SDavid S. Miller 2095fbf8866dSShawn Bohrer ipv4_pktinfo_prepare(sk, skb); 2096850cbaddSPaolo Abeni return __udp_queue_rcv_skb(sk, skb); 2097db8dac20SDavid S. Miller 20986a5dc9e5SEric Dumazet csum_error: 209902c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); 2100db8dac20SDavid S. Miller drop: 210102c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 21028edf19c2SEric Dumazet atomic_inc(&sk->sk_drops); 2103db8dac20SDavid S. Miller kfree_skb(skb); 2104db8dac20SDavid S. Miller return -1; 2105db8dac20SDavid S. Miller } 2106db8dac20SDavid S. Miller 2107cf329aa4SPaolo Abeni static int udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 2108cf329aa4SPaolo Abeni { 2109cf329aa4SPaolo Abeni struct sk_buff *next, *segs; 2110cf329aa4SPaolo Abeni int ret; 2111cf329aa4SPaolo Abeni 2112cf329aa4SPaolo Abeni if (likely(!udp_unexpected_gso(sk, skb))) 2113cf329aa4SPaolo Abeni return udp_queue_rcv_one_skb(sk, skb); 2114cf329aa4SPaolo Abeni 2115a08e7fd9SCambda Zhu BUILD_BUG_ON(sizeof(struct udp_skb_cb) > SKB_GSO_CB_OFFSET); 2116cf329aa4SPaolo Abeni __skb_push(skb, -skb_mac_offset(skb)); 2117cf329aa4SPaolo Abeni segs = udp_rcv_segment(sk, skb, true); 21181a186c14SJason A. Donenfeld skb_list_walk_safe(segs, skb, next) { 2119cf329aa4SPaolo Abeni __skb_pull(skb, skb_transport_offset(skb)); 2120cf329aa4SPaolo Abeni ret = udp_queue_rcv_one_skb(sk, skb); 2121cf329aa4SPaolo Abeni if (ret > 0) 2122cf329aa4SPaolo Abeni ip_protocol_deliver_rcu(dev_net(skb->dev), skb, -ret); 2123cf329aa4SPaolo Abeni } 2124cf329aa4SPaolo Abeni return 0; 2125cf329aa4SPaolo Abeni } 2126cf329aa4SPaolo Abeni 212797502231SEric Dumazet /* For TCP sockets, sk_rx_dst is protected by socket lock 2128e47eb5dfSEric Dumazet * For UDP, we use xchg() to guard against concurrent changes. 212997502231SEric Dumazet */ 213064f0f5d1SPaolo Abeni bool udp_sk_rx_dst_set(struct sock *sk, struct dst_entry *dst) 2131421b3885SShawn Bohrer { 213297502231SEric Dumazet struct dst_entry *old; 2133421b3885SShawn Bohrer 2134d24406c8SWei Wang if (dst_hold_safe(dst)) { 2135e47eb5dfSEric Dumazet old = xchg(&sk->sk_rx_dst, dst); 213697502231SEric Dumazet dst_release(old); 213764f0f5d1SPaolo Abeni return old != dst; 213897502231SEric Dumazet } 213964f0f5d1SPaolo Abeni return false; 2140d24406c8SWei Wang } 2141c9f2c1aeSPaolo Abeni EXPORT_SYMBOL(udp_sk_rx_dst_set); 2142421b3885SShawn Bohrer 2143db8dac20SDavid S. Miller /* 2144db8dac20SDavid S. Miller * Multicasts and broadcasts go to each listener. 2145db8dac20SDavid S. Miller * 21461240d137SEric Dumazet * Note: called only from the BH handler context. 2147db8dac20SDavid S. Miller */ 2148e3163493SPavel Emelyanov static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb, 2149db8dac20SDavid S. Miller struct udphdr *uh, 2150db8dac20SDavid S. Miller __be32 saddr, __be32 daddr, 215136cbb245SRick Jones struct udp_table *udptable, 215236cbb245SRick Jones int proto) 2153db8dac20SDavid S. Miller { 2154ca065d0cSEric Dumazet struct sock *sk, *first = NULL; 21555cf3d461SDavid Held unsigned short hnum = ntohs(uh->dest); 21565cf3d461SDavid Held struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum); 21572dc41cffSDavid Held unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); 2158ca065d0cSEric Dumazet unsigned int offset = offsetof(typeof(*sk), sk_node); 2159ca065d0cSEric Dumazet int dif = skb->dev->ifindex; 2160fb74c277SDavid Ahern int sdif = inet_sdif(skb); 2161ca065d0cSEric Dumazet struct hlist_node *node; 2162ca065d0cSEric Dumazet struct sk_buff *nskb; 21632dc41cffSDavid Held 21642dc41cffSDavid Held if (use_hash2) { 2165f0b1e64cSMartin KaFai Lau hash2_any = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum) & 216673e2d5e3SPablo Neira udptable->mask; 2167f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, daddr, hnum) & udptable->mask; 21682dc41cffSDavid Held start_lookup: 216973e2d5e3SPablo Neira hslot = &udptable->hash2[hash2]; 21702dc41cffSDavid Held offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node); 21712dc41cffSDavid Held } 2172db8dac20SDavid S. Miller 2173ca065d0cSEric Dumazet sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) { 2174ca065d0cSEric Dumazet if (!__udp_is_mcast_sock(net, sk, uh->dest, daddr, 2175fb74c277SDavid Ahern uh->source, saddr, dif, sdif, hnum)) 2176ca065d0cSEric Dumazet continue; 21771240d137SEric Dumazet 2178ca065d0cSEric Dumazet if (!first) { 2179ca065d0cSEric Dumazet first = sk; 2180ca065d0cSEric Dumazet continue; 2181ca065d0cSEric Dumazet } 2182ca065d0cSEric Dumazet nskb = skb_clone(skb, GFP_ATOMIC); 2183ca065d0cSEric Dumazet 2184ca065d0cSEric Dumazet if (unlikely(!nskb)) { 2185ca065d0cSEric Dumazet atomic_inc(&sk->sk_drops); 218602c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_RCVBUFERRORS, 2187ca065d0cSEric Dumazet IS_UDPLITE(sk)); 218802c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_INERRORS, 2189ca065d0cSEric Dumazet IS_UDPLITE(sk)); 2190ca065d0cSEric Dumazet continue; 2191ca065d0cSEric Dumazet } 2192ca065d0cSEric Dumazet if (udp_queue_rcv_skb(sk, nskb) > 0) 2193ca065d0cSEric Dumazet consume_skb(nskb); 2194ca065d0cSEric Dumazet } 21951240d137SEric Dumazet 21962dc41cffSDavid Held /* Also lookup *:port if we are using hash2 and haven't done so yet. */ 21972dc41cffSDavid Held if (use_hash2 && hash2 != hash2_any) { 21982dc41cffSDavid Held hash2 = hash2_any; 21992dc41cffSDavid Held goto start_lookup; 22002dc41cffSDavid Held } 22012dc41cffSDavid Held 2202ca065d0cSEric Dumazet if (first) { 2203ca065d0cSEric Dumazet if (udp_queue_rcv_skb(first, skb) > 0) 2204ca065d0cSEric Dumazet consume_skb(skb); 22051240d137SEric Dumazet } else { 2206ca065d0cSEric Dumazet kfree_skb(skb); 220702c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_IGNOREDMULTI, 220836cbb245SRick Jones proto == IPPROTO_UDPLITE); 22091240d137SEric Dumazet } 2210db8dac20SDavid S. Miller return 0; 2211db8dac20SDavid S. Miller } 2212db8dac20SDavid S. Miller 2213db8dac20SDavid S. Miller /* Initialize UDP checksum. If exited with zero value (success), 2214db8dac20SDavid S. Miller * CHECKSUM_UNNECESSARY means, that no more checks are required. 2215666a3d6eSSu Yanjun * Otherwise, csum completion requires checksumming packet body, 2216db8dac20SDavid S. Miller * including udp header and folding it to skb->csum. 2217db8dac20SDavid S. Miller */ 2218db8dac20SDavid S. Miller static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh, 2219db8dac20SDavid S. Miller int proto) 2220db8dac20SDavid S. Miller { 2221db8dac20SDavid S. Miller int err; 2222db8dac20SDavid S. Miller 2223db8dac20SDavid S. Miller UDP_SKB_CB(skb)->partial_cov = 0; 2224db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov = skb->len; 2225db8dac20SDavid S. Miller 2226db8dac20SDavid S. Miller if (proto == IPPROTO_UDPLITE) { 2227db8dac20SDavid S. Miller err = udplite_checksum_init(skb, uh); 2228db8dac20SDavid S. Miller if (err) 2229db8dac20SDavid S. Miller return err; 223015f35d49SAlexey Kodanev 223115f35d49SAlexey Kodanev if (UDP_SKB_CB(skb)->partial_cov) { 223215f35d49SAlexey Kodanev skb->csum = inet_compute_pseudo(skb, proto); 223315f35d49SAlexey Kodanev return 0; 223415f35d49SAlexey Kodanev } 2235db8dac20SDavid S. Miller } 2236db8dac20SDavid S. Miller 2237b46d9f62SHannes Frederic Sowa /* Note, we are only interested in != 0 or == 0, thus the 2238b46d9f62SHannes Frederic Sowa * force to int. 2239b46d9f62SHannes Frederic Sowa */ 2240db4f1be3SSean Tranchetti err = (__force int)skb_checksum_init_zero_check(skb, proto, uh->check, 2241ed70fcfcSTom Herbert inet_compute_pseudo); 2242db4f1be3SSean Tranchetti if (err) 2243db4f1be3SSean Tranchetti return err; 2244db4f1be3SSean Tranchetti 2245db4f1be3SSean Tranchetti if (skb->ip_summed == CHECKSUM_COMPLETE && !skb->csum_valid) { 2246db4f1be3SSean Tranchetti /* If SW calculated the value, we know it's bad */ 2247db4f1be3SSean Tranchetti if (skb->csum_complete_sw) 2248db4f1be3SSean Tranchetti return 1; 2249db4f1be3SSean Tranchetti 2250db4f1be3SSean Tranchetti /* HW says the value is bad. Let's validate that. 2251db4f1be3SSean Tranchetti * skb->csum is no longer the full packet checksum, 2252db4f1be3SSean Tranchetti * so don't treat it as such. 2253db4f1be3SSean Tranchetti */ 2254db4f1be3SSean Tranchetti skb_checksum_complete_unset(skb); 2255db4f1be3SSean Tranchetti } 2256db4f1be3SSean Tranchetti 2257db4f1be3SSean Tranchetti return 0; 2258db8dac20SDavid S. Miller } 2259db8dac20SDavid S. Miller 22602b5a9217SPaolo Abeni /* wrapper for udp_queue_rcv_skb tacking care of csum conversion and 22612b5a9217SPaolo Abeni * return code conversion for ip layer consumption 22622b5a9217SPaolo Abeni */ 22632b5a9217SPaolo Abeni static int udp_unicast_rcv_skb(struct sock *sk, struct sk_buff *skb, 22642b5a9217SPaolo Abeni struct udphdr *uh) 22652b5a9217SPaolo Abeni { 22662b5a9217SPaolo Abeni int ret; 22672b5a9217SPaolo Abeni 22682b5a9217SPaolo Abeni if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk)) 2269e4aa33adSLi RongQing skb_checksum_try_convert(skb, IPPROTO_UDP, inet_compute_pseudo); 22702b5a9217SPaolo Abeni 22712b5a9217SPaolo Abeni ret = udp_queue_rcv_skb(sk, skb); 22722b5a9217SPaolo Abeni 22732b5a9217SPaolo Abeni /* a return value > 0 means to resubmit the input, but 22742b5a9217SPaolo Abeni * it wants the return to be -protocol, or 0 22752b5a9217SPaolo Abeni */ 22762b5a9217SPaolo Abeni if (ret > 0) 22772b5a9217SPaolo Abeni return -ret; 22782b5a9217SPaolo Abeni return 0; 22792b5a9217SPaolo Abeni } 22802b5a9217SPaolo Abeni 2281db8dac20SDavid S. Miller /* 2282db8dac20SDavid S. Miller * All we need to do is get the socket, and then do a checksum. 2283db8dac20SDavid S. Miller */ 2284db8dac20SDavid S. Miller 2285645ca708SEric Dumazet int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, 2286db8dac20SDavid S. Miller int proto) 2287db8dac20SDavid S. Miller { 2288db8dac20SDavid S. Miller struct sock *sk; 22897b5e56f9SJesper Dangaard Brouer struct udphdr *uh; 2290db8dac20SDavid S. Miller unsigned short ulen; 2291adf30907SEric Dumazet struct rtable *rt = skb_rtable(skb); 22922783ef23SJesper Dangaard Brouer __be32 saddr, daddr; 22930283328eSPavel Emelyanov struct net *net = dev_net(skb->dev); 229471489e21SJoe Stringer bool refcounted; 2295db8dac20SDavid S. Miller 2296db8dac20SDavid S. Miller /* 2297db8dac20SDavid S. Miller * Validate the packet. 2298db8dac20SDavid S. Miller */ 2299db8dac20SDavid S. Miller if (!pskb_may_pull(skb, sizeof(struct udphdr))) 2300db8dac20SDavid S. Miller goto drop; /* No space for header. */ 2301db8dac20SDavid S. Miller 23027b5e56f9SJesper Dangaard Brouer uh = udp_hdr(skb); 2303db8dac20SDavid S. Miller ulen = ntohs(uh->len); 2304ccc2d97cSBjørn Mork saddr = ip_hdr(skb)->saddr; 2305ccc2d97cSBjørn Mork daddr = ip_hdr(skb)->daddr; 2306ccc2d97cSBjørn Mork 2307db8dac20SDavid S. Miller if (ulen > skb->len) 2308db8dac20SDavid S. Miller goto short_packet; 2309db8dac20SDavid S. Miller 2310db8dac20SDavid S. Miller if (proto == IPPROTO_UDP) { 2311db8dac20SDavid S. Miller /* UDP validates ulen. */ 2312db8dac20SDavid S. Miller if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen)) 2313db8dac20SDavid S. Miller goto short_packet; 2314db8dac20SDavid S. Miller uh = udp_hdr(skb); 2315db8dac20SDavid S. Miller } 2316db8dac20SDavid S. Miller 2317db8dac20SDavid S. Miller if (udp4_csum_init(skb, uh, proto)) 2318db8dac20SDavid S. Miller goto csum_error; 2319db8dac20SDavid S. Miller 232071489e21SJoe Stringer sk = skb_steal_sock(skb, &refcounted); 23218afdd99aSEric Dumazet if (sk) { 232297502231SEric Dumazet struct dst_entry *dst = skb_dst(skb); 2323421b3885SShawn Bohrer int ret; 2324421b3885SShawn Bohrer 232597502231SEric Dumazet if (unlikely(sk->sk_rx_dst != dst)) 232697502231SEric Dumazet udp_sk_rx_dst_set(sk, dst); 2327421b3885SShawn Bohrer 23282b5a9217SPaolo Abeni ret = udp_unicast_rcv_skb(sk, skb, uh); 232971489e21SJoe Stringer if (refcounted) 23308afdd99aSEric Dumazet sock_put(sk); 23312b5a9217SPaolo Abeni return ret; 2332c18450a5SFabian Frederick } 2333c18450a5SFabian Frederick 2334db8dac20SDavid S. Miller if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST)) 2335e3163493SPavel Emelyanov return __udp4_lib_mcast_deliver(net, skb, uh, 233636cbb245SRick Jones saddr, daddr, udptable, proto); 2337db8dac20SDavid S. Miller 2338607c4aafSKOVACS Krisztian sk = __udp4_lib_lookup_skb(skb, uh->source, uh->dest, udptable); 23392b5a9217SPaolo Abeni if (sk) 23402b5a9217SPaolo Abeni return udp_unicast_rcv_skb(sk, skb, uh); 2341db8dac20SDavid S. Miller 2342db8dac20SDavid S. Miller if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) 2343db8dac20SDavid S. Miller goto drop; 2344895b5c9fSFlorian Westphal nf_reset_ct(skb); 2345db8dac20SDavid S. Miller 2346db8dac20SDavid S. Miller /* No socket. Drop packet silently, if checksum is wrong */ 2347db8dac20SDavid S. Miller if (udp_lib_checksum_complete(skb)) 2348db8dac20SDavid S. Miller goto csum_error; 2349db8dac20SDavid S. Miller 235002c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); 2351db8dac20SDavid S. Miller icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0); 2352db8dac20SDavid S. Miller 2353db8dac20SDavid S. Miller /* 2354db8dac20SDavid S. Miller * Hmm. We got an UDP packet to a port to which we 2355db8dac20SDavid S. Miller * don't wanna listen. Ignore it. 2356db8dac20SDavid S. Miller */ 2357db8dac20SDavid S. Miller kfree_skb(skb); 2358db8dac20SDavid S. Miller return 0; 2359db8dac20SDavid S. Miller 2360db8dac20SDavid S. Miller short_packet: 2361ba7a46f1SJoe Perches net_dbg_ratelimited("UDP%s: short packet: From %pI4:%u %d/%d to %pI4:%u\n", 2362afd46503SJoe Perches proto == IPPROTO_UDPLITE ? "Lite" : "", 2363afd46503SJoe Perches &saddr, ntohs(uh->source), 2364afd46503SJoe Perches ulen, skb->len, 2365afd46503SJoe Perches &daddr, ntohs(uh->dest)); 2366db8dac20SDavid S. Miller goto drop; 2367db8dac20SDavid S. Miller 2368db8dac20SDavid S. Miller csum_error: 2369db8dac20SDavid S. Miller /* 2370db8dac20SDavid S. Miller * RFC1122: OK. Discards the bad packet silently (as far as 2371db8dac20SDavid S. Miller * the network is concerned, anyway) as per 4.1.3.4 (MUST). 2372db8dac20SDavid S. Miller */ 2373ba7a46f1SJoe Perches net_dbg_ratelimited("UDP%s: bad checksum. From %pI4:%u to %pI4:%u ulen %d\n", 2374afd46503SJoe Perches proto == IPPROTO_UDPLITE ? "Lite" : "", 2375afd46503SJoe Perches &saddr, ntohs(uh->source), &daddr, ntohs(uh->dest), 2376db8dac20SDavid S. Miller ulen); 237702c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE); 2378db8dac20SDavid S. Miller drop: 237902c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); 2380db8dac20SDavid S. Miller kfree_skb(skb); 2381db8dac20SDavid S. Miller return 0; 2382db8dac20SDavid S. Miller } 2383db8dac20SDavid S. Miller 2384421b3885SShawn Bohrer /* We can only early demux multicast if there is a single matching socket. 2385421b3885SShawn Bohrer * If more than one socket found returns NULL 2386421b3885SShawn Bohrer */ 2387421b3885SShawn Bohrer static struct sock *__udp4_lib_mcast_demux_lookup(struct net *net, 2388421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 2389421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 2390fb74c277SDavid Ahern int dif, int sdif) 2391421b3885SShawn Bohrer { 2392421b3885SShawn Bohrer struct sock *sk, *result; 2393421b3885SShawn Bohrer unsigned short hnum = ntohs(loc_port); 2394ca065d0cSEric Dumazet unsigned int slot = udp_hashfn(net, hnum, udp_table.mask); 2395421b3885SShawn Bohrer struct udp_hslot *hslot = &udp_table.hash[slot]; 2396421b3885SShawn Bohrer 239763c6f81cSEric Dumazet /* Do not bother scanning a too big list */ 239863c6f81cSEric Dumazet if (hslot->count > 10) 239963c6f81cSEric Dumazet return NULL; 240063c6f81cSEric Dumazet 2401421b3885SShawn Bohrer result = NULL; 2402ca065d0cSEric Dumazet sk_for_each_rcu(sk, &hslot->head) { 2403ca065d0cSEric Dumazet if (__udp_is_mcast_sock(net, sk, loc_port, loc_addr, 2404fb74c277SDavid Ahern rmt_port, rmt_addr, dif, sdif, hnum)) { 2405ca065d0cSEric Dumazet if (result) 2406ca065d0cSEric Dumazet return NULL; 2407421b3885SShawn Bohrer result = sk; 2408421b3885SShawn Bohrer } 2409421b3885SShawn Bohrer } 2410421b3885SShawn Bohrer 2411421b3885SShawn Bohrer return result; 2412421b3885SShawn Bohrer } 2413421b3885SShawn Bohrer 2414421b3885SShawn Bohrer /* For unicast we should only early demux connected sockets or we can 2415421b3885SShawn Bohrer * break forwarding setups. The chains here can be long so only check 2416421b3885SShawn Bohrer * if the first socket is an exact match and if not move on. 2417421b3885SShawn Bohrer */ 2418421b3885SShawn Bohrer static struct sock *__udp4_lib_demux_lookup(struct net *net, 2419421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 2420421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 24213fa6f616SDavid Ahern int dif, int sdif) 2422421b3885SShawn Bohrer { 2423421b3885SShawn Bohrer unsigned short hnum = ntohs(loc_port); 2424f0b1e64cSMartin KaFai Lau unsigned int hash2 = ipv4_portaddr_hash(net, loc_addr, hnum); 2425421b3885SShawn Bohrer unsigned int slot2 = hash2 & udp_table.mask; 2426421b3885SShawn Bohrer struct udp_hslot *hslot2 = &udp_table.hash2[slot2]; 2427c7228317SJoe Perches INET_ADDR_COOKIE(acookie, rmt_addr, loc_addr); 2428421b3885SShawn Bohrer const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum); 2429ca065d0cSEric Dumazet struct sock *sk; 2430421b3885SShawn Bohrer 2431ca065d0cSEric Dumazet udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 2432ca065d0cSEric Dumazet if (INET_MATCH(sk, net, acookie, rmt_addr, 24333fa6f616SDavid Ahern loc_addr, ports, dif, sdif)) 2434ca065d0cSEric Dumazet return sk; 2435421b3885SShawn Bohrer /* Only check first socket in chain */ 2436421b3885SShawn Bohrer break; 2437421b3885SShawn Bohrer } 2438ca065d0cSEric Dumazet return NULL; 2439421b3885SShawn Bohrer } 2440421b3885SShawn Bohrer 24417487449cSPaolo Abeni int udp_v4_early_demux(struct sk_buff *skb) 2442421b3885SShawn Bohrer { 2443610438b7SEric Dumazet struct net *net = dev_net(skb->dev); 2444bc044e8dSPaolo Abeni struct in_device *in_dev = NULL; 2445610438b7SEric Dumazet const struct iphdr *iph; 2446610438b7SEric Dumazet const struct udphdr *uh; 2447ca065d0cSEric Dumazet struct sock *sk = NULL; 2448421b3885SShawn Bohrer struct dst_entry *dst; 2449421b3885SShawn Bohrer int dif = skb->dev->ifindex; 2450fb74c277SDavid Ahern int sdif = inet_sdif(skb); 24516e540309SShawn Bohrer int ours; 2452421b3885SShawn Bohrer 2453421b3885SShawn Bohrer /* validate the packet */ 2454421b3885SShawn Bohrer if (!pskb_may_pull(skb, skb_transport_offset(skb) + sizeof(struct udphdr))) 24557487449cSPaolo Abeni return 0; 2456421b3885SShawn Bohrer 2457610438b7SEric Dumazet iph = ip_hdr(skb); 2458610438b7SEric Dumazet uh = udp_hdr(skb); 2459610438b7SEric Dumazet 2460996b44fcSPaolo Abeni if (skb->pkt_type == PACKET_MULTICAST) { 2461bc044e8dSPaolo Abeni in_dev = __in_dev_get_rcu(skb->dev); 24626e540309SShawn Bohrer 24636e540309SShawn Bohrer if (!in_dev) 24647487449cSPaolo Abeni return 0; 24656e540309SShawn Bohrer 24666e540309SShawn Bohrer ours = ip_check_mc_rcu(in_dev, iph->daddr, iph->saddr, 24676e540309SShawn Bohrer iph->protocol); 24686e540309SShawn Bohrer if (!ours) 24697487449cSPaolo Abeni return 0; 2470ad0ea198SPaolo Abeni 2471421b3885SShawn Bohrer sk = __udp4_lib_mcast_demux_lookup(net, uh->dest, iph->daddr, 2472fb74c277SDavid Ahern uh->source, iph->saddr, 2473fb74c277SDavid Ahern dif, sdif); 24746e540309SShawn Bohrer } else if (skb->pkt_type == PACKET_HOST) { 2475421b3885SShawn Bohrer sk = __udp4_lib_demux_lookup(net, uh->dest, iph->daddr, 24763fa6f616SDavid Ahern uh->source, iph->saddr, dif, sdif); 24776e540309SShawn Bohrer } 2478421b3885SShawn Bohrer 247941c6d650SReshetova, Elena if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt)) 24807487449cSPaolo Abeni return 0; 2481421b3885SShawn Bohrer 2482421b3885SShawn Bohrer skb->sk = sk; 248382eabd9eSAlexander Duyck skb->destructor = sock_efree; 248410e2eb87SEric Dumazet dst = READ_ONCE(sk->sk_rx_dst); 2485421b3885SShawn Bohrer 2486421b3885SShawn Bohrer if (dst) 2487421b3885SShawn Bohrer dst = dst_check(dst, 0); 248810e2eb87SEric Dumazet if (dst) { 2489bc044e8dSPaolo Abeni u32 itag = 0; 2490bc044e8dSPaolo Abeni 2491d24406c8SWei Wang /* set noref for now. 2492d24406c8SWei Wang * any place which wants to hold dst has to call 2493d24406c8SWei Wang * dst_hold_safe() 2494d24406c8SWei Wang */ 2495421b3885SShawn Bohrer skb_dst_set_noref(skb, dst); 2496bc044e8dSPaolo Abeni 2497bc044e8dSPaolo Abeni /* for unconnected multicast sockets we need to validate 2498bc044e8dSPaolo Abeni * the source on each packet 2499bc044e8dSPaolo Abeni */ 2500bc044e8dSPaolo Abeni if (!inet_sk(sk)->inet_daddr && in_dev) 2501bc044e8dSPaolo Abeni return ip_mc_validate_source(skb, iph->daddr, 2502bc044e8dSPaolo Abeni iph->saddr, iph->tos, 2503bc044e8dSPaolo Abeni skb->dev, in_dev, &itag); 2504421b3885SShawn Bohrer } 25057487449cSPaolo Abeni return 0; 250610e2eb87SEric Dumazet } 2507421b3885SShawn Bohrer 2508db8dac20SDavid S. Miller int udp_rcv(struct sk_buff *skb) 2509db8dac20SDavid S. Miller { 2510645ca708SEric Dumazet return __udp4_lib_rcv(skb, &udp_table, IPPROTO_UDP); 2511db8dac20SDavid S. Miller } 2512db8dac20SDavid S. Miller 25137d06b2e0SBrian Haley void udp_destroy_sock(struct sock *sk) 2514db8dac20SDavid S. Miller { 251544046a59STom Parkin struct udp_sock *up = udp_sk(sk); 25168a74ad60SEric Dumazet bool slow = lock_sock_fast(sk); 2517db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 25188a74ad60SEric Dumazet unlock_sock_fast(sk, slow); 251960fb9567SPaolo Abeni if (static_branch_unlikely(&udp_encap_needed_key)) { 252060fb9567SPaolo Abeni if (up->encap_type) { 252144046a59STom Parkin void (*encap_destroy)(struct sock *sk); 25226aa7de05SMark Rutland encap_destroy = READ_ONCE(up->encap_destroy); 252344046a59STom Parkin if (encap_destroy) 252444046a59STom Parkin encap_destroy(sk); 252544046a59STom Parkin } 252660fb9567SPaolo Abeni if (up->encap_enabled) 25279c480601SPaolo Abeni static_branch_dec(&udp_encap_needed_key); 252860fb9567SPaolo Abeni } 2529db8dac20SDavid S. Miller } 2530db8dac20SDavid S. Miller 25311da177e4SLinus Torvalds /* 25321da177e4SLinus Torvalds * Socket option code for UDP 25331da177e4SLinus Torvalds */ 25344c0a6cb0SGerrit Renker int udp_lib_setsockopt(struct sock *sk, int level, int optname, 2535b7058842SDavid S. Miller char __user *optval, unsigned int optlen, 25364c0a6cb0SGerrit Renker int (*push_pending_frames)(struct sock *)) 25371da177e4SLinus Torvalds { 25381da177e4SLinus Torvalds struct udp_sock *up = udp_sk(sk); 25391c19448cSTom Herbert int val, valbool; 25401da177e4SLinus Torvalds int err = 0; 2541b2bf1e26SWang Chen int is_udplite = IS_UDPLITE(sk); 25421da177e4SLinus Torvalds 25431da177e4SLinus Torvalds if (optlen < sizeof(int)) 25441da177e4SLinus Torvalds return -EINVAL; 25451da177e4SLinus Torvalds 25461da177e4SLinus Torvalds if (get_user(val, (int __user *)optval)) 25471da177e4SLinus Torvalds return -EFAULT; 25481da177e4SLinus Torvalds 25491c19448cSTom Herbert valbool = val ? 1 : 0; 25501c19448cSTom Herbert 25511da177e4SLinus Torvalds switch (optname) { 25521da177e4SLinus Torvalds case UDP_CORK: 25531da177e4SLinus Torvalds if (val != 0) { 25541da177e4SLinus Torvalds up->corkflag = 1; 25551da177e4SLinus Torvalds } else { 25561da177e4SLinus Torvalds up->corkflag = 0; 25571da177e4SLinus Torvalds lock_sock(sk); 25584243cdc2SJoe Perches push_pending_frames(sk); 25591da177e4SLinus Torvalds release_sock(sk); 25601da177e4SLinus Torvalds } 25611da177e4SLinus Torvalds break; 25621da177e4SLinus Torvalds 25631da177e4SLinus Torvalds case UDP_ENCAP: 25641da177e4SLinus Torvalds switch (val) { 25651da177e4SLinus Torvalds case 0: 2566fd1ac07fSAlexey Dobriyan #ifdef CONFIG_XFRM 25671da177e4SLinus Torvalds case UDP_ENCAP_ESPINUDP: 25681da177e4SLinus Torvalds case UDP_ENCAP_ESPINUDP_NON_IKE: 25690146dca7SSabrina Dubroca #if IS_ENABLED(CONFIG_IPV6) 25700146dca7SSabrina Dubroca if (sk->sk_family == AF_INET6) 25710146dca7SSabrina Dubroca up->encap_rcv = ipv6_stub->xfrm6_udp_encap_rcv; 25720146dca7SSabrina Dubroca else 25730146dca7SSabrina Dubroca #endif 2574067b207bSJames Chapman up->encap_rcv = xfrm4_udp_encap_rcv; 2575fd1ac07fSAlexey Dobriyan #endif 2576a8eceea8SJoe Perches fallthrough; 2577342f0234SJames Chapman case UDP_ENCAP_L2TPINUDP: 25781da177e4SLinus Torvalds up->encap_type = val; 257960fb9567SPaolo Abeni lock_sock(sk); 258060fb9567SPaolo Abeni udp_tunnel_encap_enable(sk->sk_socket); 258160fb9567SPaolo Abeni release_sock(sk); 25821da177e4SLinus Torvalds break; 25831da177e4SLinus Torvalds default: 25841da177e4SLinus Torvalds err = -ENOPROTOOPT; 25851da177e4SLinus Torvalds break; 25861da177e4SLinus Torvalds } 25871da177e4SLinus Torvalds break; 25881da177e4SLinus Torvalds 25891c19448cSTom Herbert case UDP_NO_CHECK6_TX: 25901c19448cSTom Herbert up->no_check6_tx = valbool; 25911c19448cSTom Herbert break; 25921c19448cSTom Herbert 25931c19448cSTom Herbert case UDP_NO_CHECK6_RX: 25941c19448cSTom Herbert up->no_check6_rx = valbool; 25951c19448cSTom Herbert break; 25961c19448cSTom Herbert 2597bec1f6f6SWillem de Bruijn case UDP_SEGMENT: 2598bec1f6f6SWillem de Bruijn if (val < 0 || val > USHRT_MAX) 2599bec1f6f6SWillem de Bruijn return -EINVAL; 2600bec1f6f6SWillem de Bruijn up->gso_size = val; 2601bec1f6f6SWillem de Bruijn break; 2602bec1f6f6SWillem de Bruijn 2603e20cf8d3SPaolo Abeni case UDP_GRO: 2604e20cf8d3SPaolo Abeni lock_sock(sk); 2605e20cf8d3SPaolo Abeni if (valbool) 2606e20cf8d3SPaolo Abeni udp_tunnel_encap_enable(sk->sk_socket); 2607e20cf8d3SPaolo Abeni up->gro_enabled = valbool; 2608e20cf8d3SPaolo Abeni release_sock(sk); 2609e20cf8d3SPaolo Abeni break; 2610e20cf8d3SPaolo Abeni 2611ba4e58ecSGerrit Renker /* 2612ba4e58ecSGerrit Renker * UDP-Lite's partial checksum coverage (RFC 3828). 2613ba4e58ecSGerrit Renker */ 2614ba4e58ecSGerrit Renker /* The sender sets actual checksum coverage length via this option. 2615ba4e58ecSGerrit Renker * The case coverage > packet length is handled by send module. */ 2616ba4e58ecSGerrit Renker case UDPLITE_SEND_CSCOV: 2617b2bf1e26SWang Chen if (!is_udplite) /* Disable the option on UDP sockets */ 2618ba4e58ecSGerrit Renker return -ENOPROTOOPT; 2619ba4e58ecSGerrit Renker if (val != 0 && val < 8) /* Illegal coverage: use default (8) */ 2620ba4e58ecSGerrit Renker val = 8; 26214be929beSAlexey Dobriyan else if (val > USHRT_MAX) 26224be929beSAlexey Dobriyan val = USHRT_MAX; 2623ba4e58ecSGerrit Renker up->pcslen = val; 2624ba4e58ecSGerrit Renker up->pcflag |= UDPLITE_SEND_CC; 2625ba4e58ecSGerrit Renker break; 2626ba4e58ecSGerrit Renker 2627ba4e58ecSGerrit Renker /* The receiver specifies a minimum checksum coverage value. To make 2628ba4e58ecSGerrit Renker * sense, this should be set to at least 8 (as done below). If zero is 2629ba4e58ecSGerrit Renker * used, this again means full checksum coverage. */ 2630ba4e58ecSGerrit Renker case UDPLITE_RECV_CSCOV: 2631b2bf1e26SWang Chen if (!is_udplite) /* Disable the option on UDP sockets */ 2632ba4e58ecSGerrit Renker return -ENOPROTOOPT; 2633ba4e58ecSGerrit Renker if (val != 0 && val < 8) /* Avoid silly minimal values. */ 2634ba4e58ecSGerrit Renker val = 8; 26354be929beSAlexey Dobriyan else if (val > USHRT_MAX) 26364be929beSAlexey Dobriyan val = USHRT_MAX; 2637ba4e58ecSGerrit Renker up->pcrlen = val; 2638ba4e58ecSGerrit Renker up->pcflag |= UDPLITE_RECV_CC; 2639ba4e58ecSGerrit Renker break; 2640ba4e58ecSGerrit Renker 26411da177e4SLinus Torvalds default: 26421da177e4SLinus Torvalds err = -ENOPROTOOPT; 26431da177e4SLinus Torvalds break; 26446516c655SStephen Hemminger } 26451da177e4SLinus Torvalds 26461da177e4SLinus Torvalds return err; 26471da177e4SLinus Torvalds } 2648c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_setsockopt); 26491da177e4SLinus Torvalds 2650db8dac20SDavid S. Miller int udp_setsockopt(struct sock *sk, int level, int optname, 2651b7058842SDavid S. Miller char __user *optval, unsigned int optlen) 2652db8dac20SDavid S. Miller { 2653db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2654db8dac20SDavid S. Miller return udp_lib_setsockopt(sk, level, optname, optval, optlen, 2655db8dac20SDavid S. Miller udp_push_pending_frames); 2656db8dac20SDavid S. Miller return ip_setsockopt(sk, level, optname, optval, optlen); 2657db8dac20SDavid S. Miller } 2658db8dac20SDavid S. Miller 2659db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2660db8dac20SDavid S. Miller int compat_udp_setsockopt(struct sock *sk, int level, int optname, 2661b7058842SDavid S. Miller char __user *optval, unsigned int optlen) 2662db8dac20SDavid S. Miller { 2663db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2664db8dac20SDavid S. Miller return udp_lib_setsockopt(sk, level, optname, optval, optlen, 2665db8dac20SDavid S. Miller udp_push_pending_frames); 2666db8dac20SDavid S. Miller return compat_ip_setsockopt(sk, level, optname, optval, optlen); 2667db8dac20SDavid S. Miller } 2668db8dac20SDavid S. Miller #endif 2669db8dac20SDavid S. Miller 26704c0a6cb0SGerrit Renker int udp_lib_getsockopt(struct sock *sk, int level, int optname, 26711da177e4SLinus Torvalds char __user *optval, int __user *optlen) 26721da177e4SLinus Torvalds { 26731da177e4SLinus Torvalds struct udp_sock *up = udp_sk(sk); 26741da177e4SLinus Torvalds int val, len; 26751da177e4SLinus Torvalds 26761da177e4SLinus Torvalds if (get_user(len, optlen)) 26771da177e4SLinus Torvalds return -EFAULT; 26781da177e4SLinus Torvalds 26791da177e4SLinus Torvalds len = min_t(unsigned int, len, sizeof(int)); 26801da177e4SLinus Torvalds 26811da177e4SLinus Torvalds if (len < 0) 26821da177e4SLinus Torvalds return -EINVAL; 26831da177e4SLinus Torvalds 26841da177e4SLinus Torvalds switch (optname) { 26851da177e4SLinus Torvalds case UDP_CORK: 26861da177e4SLinus Torvalds val = up->corkflag; 26871da177e4SLinus Torvalds break; 26881da177e4SLinus Torvalds 26891da177e4SLinus Torvalds case UDP_ENCAP: 26901da177e4SLinus Torvalds val = up->encap_type; 26911da177e4SLinus Torvalds break; 26921da177e4SLinus Torvalds 26931c19448cSTom Herbert case UDP_NO_CHECK6_TX: 26941c19448cSTom Herbert val = up->no_check6_tx; 26951c19448cSTom Herbert break; 26961c19448cSTom Herbert 26971c19448cSTom Herbert case UDP_NO_CHECK6_RX: 26981c19448cSTom Herbert val = up->no_check6_rx; 26991c19448cSTom Herbert break; 27001c19448cSTom Herbert 2701bec1f6f6SWillem de Bruijn case UDP_SEGMENT: 2702bec1f6f6SWillem de Bruijn val = up->gso_size; 2703bec1f6f6SWillem de Bruijn break; 2704bec1f6f6SWillem de Bruijn 2705ba4e58ecSGerrit Renker /* The following two cannot be changed on UDP sockets, the return is 2706ba4e58ecSGerrit Renker * always 0 (which corresponds to the full checksum coverage of UDP). */ 2707ba4e58ecSGerrit Renker case UDPLITE_SEND_CSCOV: 2708ba4e58ecSGerrit Renker val = up->pcslen; 2709ba4e58ecSGerrit Renker break; 2710ba4e58ecSGerrit Renker 2711ba4e58ecSGerrit Renker case UDPLITE_RECV_CSCOV: 2712ba4e58ecSGerrit Renker val = up->pcrlen; 2713ba4e58ecSGerrit Renker break; 2714ba4e58ecSGerrit Renker 27151da177e4SLinus Torvalds default: 27161da177e4SLinus Torvalds return -ENOPROTOOPT; 27176516c655SStephen Hemminger } 27181da177e4SLinus Torvalds 27191da177e4SLinus Torvalds if (put_user(len, optlen)) 27201da177e4SLinus Torvalds return -EFAULT; 27211da177e4SLinus Torvalds if (copy_to_user(optval, &val, len)) 27221da177e4SLinus Torvalds return -EFAULT; 27231da177e4SLinus Torvalds return 0; 27241da177e4SLinus Torvalds } 2725c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_getsockopt); 27261da177e4SLinus Torvalds 2727db8dac20SDavid S. Miller int udp_getsockopt(struct sock *sk, int level, int optname, 2728db8dac20SDavid S. Miller char __user *optval, int __user *optlen) 2729db8dac20SDavid S. Miller { 2730db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2731db8dac20SDavid S. Miller return udp_lib_getsockopt(sk, level, optname, optval, optlen); 2732db8dac20SDavid S. Miller return ip_getsockopt(sk, level, optname, optval, optlen); 2733db8dac20SDavid S. Miller } 2734db8dac20SDavid S. Miller 2735db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2736db8dac20SDavid S. Miller int compat_udp_getsockopt(struct sock *sk, int level, int optname, 2737db8dac20SDavid S. Miller char __user *optval, int __user *optlen) 2738db8dac20SDavid S. Miller { 2739db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2740db8dac20SDavid S. Miller return udp_lib_getsockopt(sk, level, optname, optval, optlen); 2741db8dac20SDavid S. Miller return compat_ip_getsockopt(sk, level, optname, optval, optlen); 2742db8dac20SDavid S. Miller } 2743db8dac20SDavid S. Miller #endif 27441da177e4SLinus Torvalds /** 27451da177e4SLinus Torvalds * udp_poll - wait for a UDP event. 27461da177e4SLinus Torvalds * @file - file struct 27471da177e4SLinus Torvalds * @sock - socket 2748a11e1d43SLinus Torvalds * @wait - poll table 27491da177e4SLinus Torvalds * 27501da177e4SLinus Torvalds * This is same as datagram poll, except for the special case of 27511da177e4SLinus Torvalds * blocking sockets. If application is using a blocking fd 27521da177e4SLinus Torvalds * and a packet with checksum error is in the queue; 27531da177e4SLinus Torvalds * then it could get return from select indicating data available 27541da177e4SLinus Torvalds * but then block when reading it. Add special case code 27551da177e4SLinus Torvalds * to work around these arguably broken applications. 27561da177e4SLinus Torvalds */ 2757a11e1d43SLinus Torvalds __poll_t udp_poll(struct file *file, struct socket *sock, poll_table *wait) 27581da177e4SLinus Torvalds { 2759a11e1d43SLinus Torvalds __poll_t mask = datagram_poll(file, sock, wait); 27601da177e4SLinus Torvalds struct sock *sk = sock->sk; 27611da177e4SLinus Torvalds 27623ef7cf57SEric Dumazet if (!skb_queue_empty_lockless(&udp_sk(sk)->reader_queue)) 2763a9a08845SLinus Torvalds mask |= EPOLLIN | EPOLLRDNORM; 27642276f58aSPaolo Abeni 27651da177e4SLinus Torvalds /* Check for false positives due to checksum errors */ 2766a11e1d43SLinus Torvalds if ((mask & EPOLLRDNORM) && !(file->f_flags & O_NONBLOCK) && 2767e83c6744SEric Dumazet !(sk->sk_shutdown & RCV_SHUTDOWN) && first_packet_length(sk) == -1) 2768a9a08845SLinus Torvalds mask &= ~(EPOLLIN | EPOLLRDNORM); 27691da177e4SLinus Torvalds 27701da177e4SLinus Torvalds return mask; 27711da177e4SLinus Torvalds 27721da177e4SLinus Torvalds } 2773a11e1d43SLinus Torvalds EXPORT_SYMBOL(udp_poll); 27741da177e4SLinus Torvalds 27755d77dca8SDavid Ahern int udp_abort(struct sock *sk, int err) 27765d77dca8SDavid Ahern { 27775d77dca8SDavid Ahern lock_sock(sk); 27785d77dca8SDavid Ahern 27795d77dca8SDavid Ahern sk->sk_err = err; 27805d77dca8SDavid Ahern sk->sk_error_report(sk); 2781286c72deSEric Dumazet __udp_disconnect(sk, 0); 27825d77dca8SDavid Ahern 27835d77dca8SDavid Ahern release_sock(sk); 27845d77dca8SDavid Ahern 27855d77dca8SDavid Ahern return 0; 27865d77dca8SDavid Ahern } 27875d77dca8SDavid Ahern EXPORT_SYMBOL_GPL(udp_abort); 27885d77dca8SDavid Ahern 2789db8dac20SDavid S. Miller struct proto udp_prot = { 2790db8dac20SDavid S. Miller .name = "UDP", 2791db8dac20SDavid S. Miller .owner = THIS_MODULE, 2792db8dac20SDavid S. Miller .close = udp_lib_close, 2793d74bad4eSAndrey Ignatov .pre_connect = udp_pre_connect, 2794db8dac20SDavid S. Miller .connect = ip4_datagram_connect, 2795db8dac20SDavid S. Miller .disconnect = udp_disconnect, 2796db8dac20SDavid S. Miller .ioctl = udp_ioctl, 2797850cbaddSPaolo Abeni .init = udp_init_sock, 2798db8dac20SDavid S. Miller .destroy = udp_destroy_sock, 2799db8dac20SDavid S. Miller .setsockopt = udp_setsockopt, 2800db8dac20SDavid S. Miller .getsockopt = udp_getsockopt, 2801db8dac20SDavid S. Miller .sendmsg = udp_sendmsg, 2802db8dac20SDavid S. Miller .recvmsg = udp_recvmsg, 2803db8dac20SDavid S. Miller .sendpage = udp_sendpage, 28048141ed9fSSteffen Klassert .release_cb = ip4_datagram_release_cb, 2805db8dac20SDavid S. Miller .hash = udp_lib_hash, 2806db8dac20SDavid S. Miller .unhash = udp_lib_unhash, 2807719f8358SEric Dumazet .rehash = udp_v4_rehash, 2808db8dac20SDavid S. Miller .get_port = udp_v4_get_port, 2809db8dac20SDavid S. Miller .memory_allocated = &udp_memory_allocated, 2810db8dac20SDavid S. Miller .sysctl_mem = sysctl_udp_mem, 28111e802951STonghao Zhang .sysctl_wmem_offset = offsetof(struct net, ipv4.sysctl_udp_wmem_min), 28121e802951STonghao Zhang .sysctl_rmem_offset = offsetof(struct net, ipv4.sysctl_udp_rmem_min), 2813db8dac20SDavid S. Miller .obj_size = sizeof(struct udp_sock), 2814645ca708SEric Dumazet .h.udp_table = &udp_table, 2815db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2816db8dac20SDavid S. Miller .compat_setsockopt = compat_udp_setsockopt, 2817db8dac20SDavid S. Miller .compat_getsockopt = compat_udp_getsockopt, 2818db8dac20SDavid S. Miller #endif 28195d77dca8SDavid Ahern .diag_destroy = udp_abort, 2820db8dac20SDavid S. Miller }; 2821c482c568SEric Dumazet EXPORT_SYMBOL(udp_prot); 28221da177e4SLinus Torvalds 28231da177e4SLinus Torvalds /* ------------------------------------------------------------------------ */ 28241da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 28251da177e4SLinus Torvalds 2826645ca708SEric Dumazet static struct sock *udp_get_first(struct seq_file *seq, int start) 28271da177e4SLinus Torvalds { 28281da177e4SLinus Torvalds struct sock *sk; 28299e8ca27aSYonghong Song struct udp_seq_afinfo *afinfo; 28301da177e4SLinus Torvalds struct udp_iter_state *state = seq->private; 28316f191efeSDenis V. Lunev struct net *net = seq_file_net(seq); 28321da177e4SLinus Torvalds 28339e8ca27aSYonghong Song if (state->bpf_seq_afinfo) 28349e8ca27aSYonghong Song afinfo = state->bpf_seq_afinfo; 28359e8ca27aSYonghong Song else 28369e8ca27aSYonghong Song afinfo = PDE_DATA(file_inode(seq->file)); 28379e8ca27aSYonghong Song 2838a3d2599bSChristoph Hellwig for (state->bucket = start; state->bucket <= afinfo->udp_table->mask; 2839f86dcc5aSEric Dumazet ++state->bucket) { 2840a3d2599bSChristoph Hellwig struct udp_hslot *hslot = &afinfo->udp_table->hash[state->bucket]; 2841f86dcc5aSEric Dumazet 2842ca065d0cSEric Dumazet if (hlist_empty(&hslot->head)) 2843f86dcc5aSEric Dumazet continue; 2844f86dcc5aSEric Dumazet 2845645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 2846ca065d0cSEric Dumazet sk_for_each(sk, &hslot->head) { 2847878628fbSYOSHIFUJI Hideaki if (!net_eq(sock_net(sk), net)) 2848a91275efSDaniel Lezcano continue; 28499e8ca27aSYonghong Song if (afinfo->family == AF_UNSPEC || 28509e8ca27aSYonghong Song sk->sk_family == afinfo->family) 28511da177e4SLinus Torvalds goto found; 28521da177e4SLinus Torvalds } 2853645ca708SEric Dumazet spin_unlock_bh(&hslot->lock); 28541da177e4SLinus Torvalds } 28551da177e4SLinus Torvalds sk = NULL; 28561da177e4SLinus Torvalds found: 28571da177e4SLinus Torvalds return sk; 28581da177e4SLinus Torvalds } 28591da177e4SLinus Torvalds 28601da177e4SLinus Torvalds static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk) 28611da177e4SLinus Torvalds { 28629e8ca27aSYonghong Song struct udp_seq_afinfo *afinfo; 28631da177e4SLinus Torvalds struct udp_iter_state *state = seq->private; 28646f191efeSDenis V. Lunev struct net *net = seq_file_net(seq); 28651da177e4SLinus Torvalds 28669e8ca27aSYonghong Song if (state->bpf_seq_afinfo) 28679e8ca27aSYonghong Song afinfo = state->bpf_seq_afinfo; 28689e8ca27aSYonghong Song else 28699e8ca27aSYonghong Song afinfo = PDE_DATA(file_inode(seq->file)); 28709e8ca27aSYonghong Song 28711da177e4SLinus Torvalds do { 2872ca065d0cSEric Dumazet sk = sk_next(sk); 28739e8ca27aSYonghong Song } while (sk && (!net_eq(sock_net(sk), net) || 28749e8ca27aSYonghong Song (afinfo->family != AF_UNSPEC && 28759e8ca27aSYonghong Song sk->sk_family != afinfo->family))); 28761da177e4SLinus Torvalds 2877645ca708SEric Dumazet if (!sk) { 2878a3d2599bSChristoph Hellwig if (state->bucket <= afinfo->udp_table->mask) 2879a3d2599bSChristoph Hellwig spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock); 2880645ca708SEric Dumazet return udp_get_first(seq, state->bucket + 1); 28811da177e4SLinus Torvalds } 28821da177e4SLinus Torvalds return sk; 28831da177e4SLinus Torvalds } 28841da177e4SLinus Torvalds 28851da177e4SLinus Torvalds static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos) 28861da177e4SLinus Torvalds { 2887645ca708SEric Dumazet struct sock *sk = udp_get_first(seq, 0); 28881da177e4SLinus Torvalds 28891da177e4SLinus Torvalds if (sk) 28901da177e4SLinus Torvalds while (pos && (sk = udp_get_next(seq, sk)) != NULL) 28911da177e4SLinus Torvalds --pos; 28921da177e4SLinus Torvalds return pos ? NULL : sk; 28931da177e4SLinus Torvalds } 28941da177e4SLinus Torvalds 2895a3d2599bSChristoph Hellwig void *udp_seq_start(struct seq_file *seq, loff_t *pos) 28961da177e4SLinus Torvalds { 289730842f29SVitaly Mayatskikh struct udp_iter_state *state = seq->private; 2898f86dcc5aSEric Dumazet state->bucket = MAX_UDP_PORTS; 289930842f29SVitaly Mayatskikh 2900b50660f1SYOSHIFUJI Hideaki return *pos ? udp_get_idx(seq, *pos-1) : SEQ_START_TOKEN; 29011da177e4SLinus Torvalds } 2902a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_start); 29031da177e4SLinus Torvalds 2904a3d2599bSChristoph Hellwig void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos) 29051da177e4SLinus Torvalds { 29061da177e4SLinus Torvalds struct sock *sk; 29071da177e4SLinus Torvalds 2908b50660f1SYOSHIFUJI Hideaki if (v == SEQ_START_TOKEN) 29091da177e4SLinus Torvalds sk = udp_get_idx(seq, 0); 29101da177e4SLinus Torvalds else 29111da177e4SLinus Torvalds sk = udp_get_next(seq, v); 29121da177e4SLinus Torvalds 29131da177e4SLinus Torvalds ++*pos; 29141da177e4SLinus Torvalds return sk; 29151da177e4SLinus Torvalds } 2916a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_next); 29171da177e4SLinus Torvalds 2918a3d2599bSChristoph Hellwig void udp_seq_stop(struct seq_file *seq, void *v) 29191da177e4SLinus Torvalds { 29209e8ca27aSYonghong Song struct udp_seq_afinfo *afinfo; 2921645ca708SEric Dumazet struct udp_iter_state *state = seq->private; 2922645ca708SEric Dumazet 29239e8ca27aSYonghong Song if (state->bpf_seq_afinfo) 29249e8ca27aSYonghong Song afinfo = state->bpf_seq_afinfo; 29259e8ca27aSYonghong Song else 29269e8ca27aSYonghong Song afinfo = PDE_DATA(file_inode(seq->file)); 29279e8ca27aSYonghong Song 2928a3d2599bSChristoph Hellwig if (state->bucket <= afinfo->udp_table->mask) 2929a3d2599bSChristoph Hellwig spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock); 29301da177e4SLinus Torvalds } 2931a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_stop); 2932db8dac20SDavid S. Miller 2933db8dac20SDavid S. Miller /* ------------------------------------------------------------------------ */ 29345e659e4cSPavel Emelyanov static void udp4_format_sock(struct sock *sp, struct seq_file *f, 2935652586dfSTetsuo Handa int bucket) 2936db8dac20SDavid S. Miller { 2937db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sp); 2938c720c7e8SEric Dumazet __be32 dest = inet->inet_daddr; 2939c720c7e8SEric Dumazet __be32 src = inet->inet_rcv_saddr; 2940c720c7e8SEric Dumazet __u16 destp = ntohs(inet->inet_dport); 2941c720c7e8SEric Dumazet __u16 srcp = ntohs(inet->inet_sport); 2942db8dac20SDavid S. Miller 2943f86dcc5aSEric Dumazet seq_printf(f, "%5d: %08X:%04X %08X:%04X" 2944ea9a0379SPatrick Talbert " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u", 2945db8dac20SDavid S. Miller bucket, src, srcp, dest, destp, sp->sk_state, 294631e6d363SEric Dumazet sk_wmem_alloc_get(sp), 29476c206b20SPaolo Abeni udp_rqueue_get(sp), 2948a7cb5a49SEric W. Biederman 0, 0L, 0, 2949a7cb5a49SEric W. Biederman from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)), 2950a7cb5a49SEric W. Biederman 0, sock_i_ino(sp), 295141c6d650SReshetova, Elena refcount_read(&sp->sk_refcnt), sp, 2952652586dfSTetsuo Handa atomic_read(&sp->sk_drops)); 2953db8dac20SDavid S. Miller } 2954db8dac20SDavid S. Miller 2955db8dac20SDavid S. Miller int udp4_seq_show(struct seq_file *seq, void *v) 2956db8dac20SDavid S. Miller { 2957652586dfSTetsuo Handa seq_setwidth(seq, 127); 2958db8dac20SDavid S. Miller if (v == SEQ_START_TOKEN) 2959652586dfSTetsuo Handa seq_puts(seq, " sl local_address rem_address st tx_queue " 2960db8dac20SDavid S. Miller "rx_queue tr tm->when retrnsmt uid timeout " 2961cb61cb9bSEric Dumazet "inode ref pointer drops"); 2962db8dac20SDavid S. Miller else { 2963db8dac20SDavid S. Miller struct udp_iter_state *state = seq->private; 2964db8dac20SDavid S. Miller 2965652586dfSTetsuo Handa udp4_format_sock(v, seq, state->bucket); 2966db8dac20SDavid S. Miller } 2967652586dfSTetsuo Handa seq_pad(seq, '\n'); 2968db8dac20SDavid S. Miller return 0; 2969db8dac20SDavid S. Miller } 2970db8dac20SDavid S. Miller 2971*5788b3a0SYonghong Song #ifdef CONFIG_BPF_SYSCALL 2972*5788b3a0SYonghong Song struct bpf_iter__udp { 2973*5788b3a0SYonghong Song __bpf_md_ptr(struct bpf_iter_meta *, meta); 2974*5788b3a0SYonghong Song __bpf_md_ptr(struct udp_sock *, udp_sk); 2975*5788b3a0SYonghong Song uid_t uid __aligned(8); 2976*5788b3a0SYonghong Song int bucket __aligned(8); 2977*5788b3a0SYonghong Song }; 2978*5788b3a0SYonghong Song 2979*5788b3a0SYonghong Song static int udp_prog_seq_show(struct bpf_prog *prog, struct bpf_iter_meta *meta, 2980*5788b3a0SYonghong Song struct udp_sock *udp_sk, uid_t uid, int bucket) 2981*5788b3a0SYonghong Song { 2982*5788b3a0SYonghong Song struct bpf_iter__udp ctx; 2983*5788b3a0SYonghong Song 2984*5788b3a0SYonghong Song meta->seq_num--; /* skip SEQ_START_TOKEN */ 2985*5788b3a0SYonghong Song ctx.meta = meta; 2986*5788b3a0SYonghong Song ctx.udp_sk = udp_sk; 2987*5788b3a0SYonghong Song ctx.uid = uid; 2988*5788b3a0SYonghong Song ctx.bucket = bucket; 2989*5788b3a0SYonghong Song return bpf_iter_run_prog(prog, &ctx); 2990*5788b3a0SYonghong Song } 2991*5788b3a0SYonghong Song 2992*5788b3a0SYonghong Song static int bpf_iter_udp_seq_show(struct seq_file *seq, void *v) 2993*5788b3a0SYonghong Song { 2994*5788b3a0SYonghong Song struct udp_iter_state *state = seq->private; 2995*5788b3a0SYonghong Song struct bpf_iter_meta meta; 2996*5788b3a0SYonghong Song struct bpf_prog *prog; 2997*5788b3a0SYonghong Song struct sock *sk = v; 2998*5788b3a0SYonghong Song uid_t uid; 2999*5788b3a0SYonghong Song 3000*5788b3a0SYonghong Song if (v == SEQ_START_TOKEN) 3001*5788b3a0SYonghong Song return 0; 3002*5788b3a0SYonghong Song 3003*5788b3a0SYonghong Song uid = from_kuid_munged(seq_user_ns(seq), sock_i_uid(sk)); 3004*5788b3a0SYonghong Song meta.seq = seq; 3005*5788b3a0SYonghong Song prog = bpf_iter_get_info(&meta, false); 3006*5788b3a0SYonghong Song return udp_prog_seq_show(prog, &meta, v, uid, state->bucket); 3007*5788b3a0SYonghong Song } 3008*5788b3a0SYonghong Song 3009*5788b3a0SYonghong Song static void bpf_iter_udp_seq_stop(struct seq_file *seq, void *v) 3010*5788b3a0SYonghong Song { 3011*5788b3a0SYonghong Song struct bpf_iter_meta meta; 3012*5788b3a0SYonghong Song struct bpf_prog *prog; 3013*5788b3a0SYonghong Song 3014*5788b3a0SYonghong Song if (!v) { 3015*5788b3a0SYonghong Song meta.seq = seq; 3016*5788b3a0SYonghong Song prog = bpf_iter_get_info(&meta, true); 3017*5788b3a0SYonghong Song if (prog) 3018*5788b3a0SYonghong Song (void)udp_prog_seq_show(prog, &meta, v, 0, 0); 3019*5788b3a0SYonghong Song } 3020*5788b3a0SYonghong Song 3021*5788b3a0SYonghong Song udp_seq_stop(seq, v); 3022*5788b3a0SYonghong Song } 3023*5788b3a0SYonghong Song 3024*5788b3a0SYonghong Song static const struct seq_operations bpf_iter_udp_seq_ops = { 3025*5788b3a0SYonghong Song .start = udp_seq_start, 3026*5788b3a0SYonghong Song .next = udp_seq_next, 3027*5788b3a0SYonghong Song .stop = bpf_iter_udp_seq_stop, 3028*5788b3a0SYonghong Song .show = bpf_iter_udp_seq_show, 3029*5788b3a0SYonghong Song }; 3030*5788b3a0SYonghong Song #endif 3031*5788b3a0SYonghong Song 3032c3506372SChristoph Hellwig const struct seq_operations udp_seq_ops = { 3033a3d2599bSChristoph Hellwig .start = udp_seq_start, 3034a3d2599bSChristoph Hellwig .next = udp_seq_next, 3035a3d2599bSChristoph Hellwig .stop = udp_seq_stop, 3036a3d2599bSChristoph Hellwig .show = udp4_seq_show, 3037a3d2599bSChristoph Hellwig }; 3038c3506372SChristoph Hellwig EXPORT_SYMBOL(udp_seq_ops); 303973cb88ecSArjan van de Ven 3040db8dac20SDavid S. Miller static struct udp_seq_afinfo udp4_seq_afinfo = { 3041db8dac20SDavid S. Miller .family = AF_INET, 3042645ca708SEric Dumazet .udp_table = &udp_table, 3043db8dac20SDavid S. Miller }; 3044db8dac20SDavid S. Miller 30452c8c1e72SAlexey Dobriyan static int __net_init udp4_proc_init_net(struct net *net) 304615439febSPavel Emelyanov { 3047c3506372SChristoph Hellwig if (!proc_create_net_data("udp", 0444, net->proc_net, &udp_seq_ops, 3048c3506372SChristoph Hellwig sizeof(struct udp_iter_state), &udp4_seq_afinfo)) 3049a3d2599bSChristoph Hellwig return -ENOMEM; 3050a3d2599bSChristoph Hellwig return 0; 305115439febSPavel Emelyanov } 305215439febSPavel Emelyanov 30532c8c1e72SAlexey Dobriyan static void __net_exit udp4_proc_exit_net(struct net *net) 305415439febSPavel Emelyanov { 3055a3d2599bSChristoph Hellwig remove_proc_entry("udp", net->proc_net); 305615439febSPavel Emelyanov } 305715439febSPavel Emelyanov 305815439febSPavel Emelyanov static struct pernet_operations udp4_net_ops = { 305915439febSPavel Emelyanov .init = udp4_proc_init_net, 306015439febSPavel Emelyanov .exit = udp4_proc_exit_net, 306115439febSPavel Emelyanov }; 306215439febSPavel Emelyanov 3063db8dac20SDavid S. Miller int __init udp4_proc_init(void) 3064db8dac20SDavid S. Miller { 306515439febSPavel Emelyanov return register_pernet_subsys(&udp4_net_ops); 3066db8dac20SDavid S. Miller } 3067db8dac20SDavid S. Miller 3068db8dac20SDavid S. Miller void udp4_proc_exit(void) 3069db8dac20SDavid S. Miller { 307015439febSPavel Emelyanov unregister_pernet_subsys(&udp4_net_ops); 3071db8dac20SDavid S. Miller } 30721da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 30731da177e4SLinus Torvalds 3074f86dcc5aSEric Dumazet static __initdata unsigned long uhash_entries; 3075f86dcc5aSEric Dumazet static int __init set_uhash_entries(char *str) 3076645ca708SEric Dumazet { 3077413c27d8SEldad Zack ssize_t ret; 3078413c27d8SEldad Zack 3079f86dcc5aSEric Dumazet if (!str) 3080f86dcc5aSEric Dumazet return 0; 3081413c27d8SEldad Zack 3082413c27d8SEldad Zack ret = kstrtoul(str, 0, &uhash_entries); 3083413c27d8SEldad Zack if (ret) 3084413c27d8SEldad Zack return 0; 3085413c27d8SEldad Zack 3086f86dcc5aSEric Dumazet if (uhash_entries && uhash_entries < UDP_HTABLE_SIZE_MIN) 3087f86dcc5aSEric Dumazet uhash_entries = UDP_HTABLE_SIZE_MIN; 3088f86dcc5aSEric Dumazet return 1; 3089f86dcc5aSEric Dumazet } 3090f86dcc5aSEric Dumazet __setup("uhash_entries=", set_uhash_entries); 3091645ca708SEric Dumazet 3092f86dcc5aSEric Dumazet void __init udp_table_init(struct udp_table *table, const char *name) 3093f86dcc5aSEric Dumazet { 3094f86dcc5aSEric Dumazet unsigned int i; 3095f86dcc5aSEric Dumazet 3096f86dcc5aSEric Dumazet table->hash = alloc_large_system_hash(name, 3097512615b6SEric Dumazet 2 * sizeof(struct udp_hslot), 3098f86dcc5aSEric Dumazet uhash_entries, 3099f86dcc5aSEric Dumazet 21, /* one slot per 2 MB */ 3100f86dcc5aSEric Dumazet 0, 3101f86dcc5aSEric Dumazet &table->log, 3102f86dcc5aSEric Dumazet &table->mask, 310331fe62b9STim Bird UDP_HTABLE_SIZE_MIN, 3104f86dcc5aSEric Dumazet 64 * 1024); 310531fe62b9STim Bird 3106512615b6SEric Dumazet table->hash2 = table->hash + (table->mask + 1); 3107f86dcc5aSEric Dumazet for (i = 0; i <= table->mask; i++) { 3108ca065d0cSEric Dumazet INIT_HLIST_HEAD(&table->hash[i].head); 3109fdcc8aa9SEric Dumazet table->hash[i].count = 0; 3110645ca708SEric Dumazet spin_lock_init(&table->hash[i].lock); 3111645ca708SEric Dumazet } 3112512615b6SEric Dumazet for (i = 0; i <= table->mask; i++) { 3113ca065d0cSEric Dumazet INIT_HLIST_HEAD(&table->hash2[i].head); 3114512615b6SEric Dumazet table->hash2[i].count = 0; 3115512615b6SEric Dumazet spin_lock_init(&table->hash2[i].lock); 3116512615b6SEric Dumazet } 3117645ca708SEric Dumazet } 3118645ca708SEric Dumazet 3119723b8e46STom Herbert u32 udp_flow_hashrnd(void) 3120723b8e46STom Herbert { 3121723b8e46STom Herbert static u32 hashrnd __read_mostly; 3122723b8e46STom Herbert 3123723b8e46STom Herbert net_get_random_once(&hashrnd, sizeof(hashrnd)); 3124723b8e46STom Herbert 3125723b8e46STom Herbert return hashrnd; 3126723b8e46STom Herbert } 3127723b8e46STom Herbert EXPORT_SYMBOL(udp_flow_hashrnd); 3128723b8e46STom Herbert 31291e802951STonghao Zhang static void __udp_sysctl_init(struct net *net) 31301e802951STonghao Zhang { 31311e802951STonghao Zhang net->ipv4.sysctl_udp_rmem_min = SK_MEM_QUANTUM; 31321e802951STonghao Zhang net->ipv4.sysctl_udp_wmem_min = SK_MEM_QUANTUM; 31331e802951STonghao Zhang 31341e802951STonghao Zhang #ifdef CONFIG_NET_L3_MASTER_DEV 31351e802951STonghao Zhang net->ipv4.sysctl_udp_l3mdev_accept = 0; 31361e802951STonghao Zhang #endif 31371e802951STonghao Zhang } 31381e802951STonghao Zhang 31391e802951STonghao Zhang static int __net_init udp_sysctl_init(struct net *net) 31401e802951STonghao Zhang { 31411e802951STonghao Zhang __udp_sysctl_init(net); 31421e802951STonghao Zhang return 0; 31431e802951STonghao Zhang } 31441e802951STonghao Zhang 31451e802951STonghao Zhang static struct pernet_operations __net_initdata udp_sysctl_ops = { 31461e802951STonghao Zhang .init = udp_sysctl_init, 31471e802951STonghao Zhang }; 31481e802951STonghao Zhang 3149*5788b3a0SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 3150*5788b3a0SYonghong Song DEFINE_BPF_ITER_FUNC(udp, struct bpf_iter_meta *meta, 3151*5788b3a0SYonghong Song struct udp_sock *udp_sk, uid_t uid, int bucket) 3152*5788b3a0SYonghong Song 3153*5788b3a0SYonghong Song static int bpf_iter_init_udp(void *priv_data) 3154*5788b3a0SYonghong Song { 3155*5788b3a0SYonghong Song struct udp_iter_state *st = priv_data; 3156*5788b3a0SYonghong Song struct udp_seq_afinfo *afinfo; 3157*5788b3a0SYonghong Song int ret; 3158*5788b3a0SYonghong Song 3159*5788b3a0SYonghong Song afinfo = kmalloc(sizeof(*afinfo), GFP_USER | __GFP_NOWARN); 3160*5788b3a0SYonghong Song if (!afinfo) 3161*5788b3a0SYonghong Song return -ENOMEM; 3162*5788b3a0SYonghong Song 3163*5788b3a0SYonghong Song afinfo->family = AF_UNSPEC; 3164*5788b3a0SYonghong Song afinfo->udp_table = &udp_table; 3165*5788b3a0SYonghong Song st->bpf_seq_afinfo = afinfo; 3166*5788b3a0SYonghong Song ret = bpf_iter_init_seq_net(priv_data); 3167*5788b3a0SYonghong Song if (ret) 3168*5788b3a0SYonghong Song kfree(afinfo); 3169*5788b3a0SYonghong Song return ret; 3170*5788b3a0SYonghong Song } 3171*5788b3a0SYonghong Song 3172*5788b3a0SYonghong Song static void bpf_iter_fini_udp(void *priv_data) 3173*5788b3a0SYonghong Song { 3174*5788b3a0SYonghong Song struct udp_iter_state *st = priv_data; 3175*5788b3a0SYonghong Song 3176*5788b3a0SYonghong Song kfree(st->bpf_seq_afinfo); 3177*5788b3a0SYonghong Song bpf_iter_fini_seq_net(priv_data); 3178*5788b3a0SYonghong Song } 3179*5788b3a0SYonghong Song 3180*5788b3a0SYonghong Song static const struct bpf_iter_reg udp_reg_info = { 3181*5788b3a0SYonghong Song .target = "udp", 3182*5788b3a0SYonghong Song .seq_ops = &bpf_iter_udp_seq_ops, 3183*5788b3a0SYonghong Song .init_seq_private = bpf_iter_init_udp, 3184*5788b3a0SYonghong Song .fini_seq_private = bpf_iter_fini_udp, 3185*5788b3a0SYonghong Song .seq_priv_size = sizeof(struct udp_iter_state), 3186*5788b3a0SYonghong Song .ctx_arg_info_size = 1, 3187*5788b3a0SYonghong Song .ctx_arg_info = { 3188*5788b3a0SYonghong Song { offsetof(struct bpf_iter__udp, udp_sk), 3189*5788b3a0SYonghong Song PTR_TO_BTF_ID_OR_NULL }, 3190*5788b3a0SYonghong Song }, 3191*5788b3a0SYonghong Song }; 3192*5788b3a0SYonghong Song 3193*5788b3a0SYonghong Song static void __init bpf_iter_register(void) 3194*5788b3a0SYonghong Song { 3195*5788b3a0SYonghong Song if (bpf_iter_reg_target(&udp_reg_info)) 3196*5788b3a0SYonghong Song pr_warn("Warning: could not register bpf iterator udp\n"); 3197*5788b3a0SYonghong Song } 3198*5788b3a0SYonghong Song #endif 3199*5788b3a0SYonghong Song 320095766fffSHideo Aoki void __init udp_init(void) 320195766fffSHideo Aoki { 3202f03d78dbSEric Dumazet unsigned long limit; 32034b272750SEric Dumazet unsigned int i; 320495766fffSHideo Aoki 3205f86dcc5aSEric Dumazet udp_table_init(&udp_table, "UDP"); 3206f03d78dbSEric Dumazet limit = nr_free_buffer_pages() / 8; 320795766fffSHideo Aoki limit = max(limit, 128UL); 320895766fffSHideo Aoki sysctl_udp_mem[0] = limit / 4 * 3; 320995766fffSHideo Aoki sysctl_udp_mem[1] = limit; 321095766fffSHideo Aoki sysctl_udp_mem[2] = sysctl_udp_mem[0] * 2; 321195766fffSHideo Aoki 32121e802951STonghao Zhang __udp_sysctl_init(&init_net); 32134b272750SEric Dumazet 32144b272750SEric Dumazet /* 16 spinlocks per cpu */ 32154b272750SEric Dumazet udp_busylocks_log = ilog2(nr_cpu_ids) + 4; 32164b272750SEric Dumazet udp_busylocks = kmalloc(sizeof(spinlock_t) << udp_busylocks_log, 32174b272750SEric Dumazet GFP_KERNEL); 32184b272750SEric Dumazet if (!udp_busylocks) 32194b272750SEric Dumazet panic("UDP: failed to alloc udp_busylocks\n"); 32204b272750SEric Dumazet for (i = 0; i < (1U << udp_busylocks_log); i++) 32214b272750SEric Dumazet spin_lock_init(udp_busylocks + i); 32221e802951STonghao Zhang 32231e802951STonghao Zhang if (register_pernet_subsys(&udp_sysctl_ops)) 32241e802951STonghao Zhang panic("UDP: failed to init sysctl parameters.\n"); 3225*5788b3a0SYonghong Song 3226*5788b3a0SYonghong Song #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 3227*5788b3a0SYonghong Song bpf_iter_register(); 3228*5788b3a0SYonghong Song #endif 322995766fffSHideo Aoki } 3230