11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * INET An implementation of the TCP/IP protocol suite for the LINUX 31da177e4SLinus Torvalds * operating system. INET is implemented using the BSD Socket 41da177e4SLinus Torvalds * interface as the means of communication with the user level. 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * The User Datagram Protocol (UDP). 71da177e4SLinus Torvalds * 802c30a84SJesper Juhl * Authors: Ross Biro 91da177e4SLinus Torvalds * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 101da177e4SLinus Torvalds * Arnt Gulbrandsen, <agulbra@nvg.unit.no> 11113aa838SAlan Cox * Alan Cox, <alan@lxorguk.ukuu.org.uk> 121da177e4SLinus Torvalds * Hirokazu Takahashi, <taka@valinux.co.jp> 131da177e4SLinus Torvalds * 141da177e4SLinus Torvalds * Fixes: 151da177e4SLinus Torvalds * Alan Cox : verify_area() calls 161da177e4SLinus Torvalds * Alan Cox : stopped close while in use off icmp 171da177e4SLinus Torvalds * messages. Not a fix but a botch that 181da177e4SLinus Torvalds * for udp at least is 'valid'. 191da177e4SLinus Torvalds * Alan Cox : Fixed icmp handling properly 201da177e4SLinus Torvalds * Alan Cox : Correct error for oversized datagrams 211da177e4SLinus Torvalds * Alan Cox : Tidied select() semantics. 221da177e4SLinus Torvalds * Alan Cox : udp_err() fixed properly, also now 231da177e4SLinus Torvalds * select and read wake correctly on errors 241da177e4SLinus Torvalds * Alan Cox : udp_send verify_area moved to avoid mem leak 251da177e4SLinus Torvalds * Alan Cox : UDP can count its memory 261da177e4SLinus Torvalds * Alan Cox : send to an unknown connection causes 271da177e4SLinus Torvalds * an ECONNREFUSED off the icmp, but 281da177e4SLinus Torvalds * does NOT close. 291da177e4SLinus Torvalds * Alan Cox : Switched to new sk_buff handlers. No more backlog! 301da177e4SLinus Torvalds * Alan Cox : Using generic datagram code. Even smaller and the PEEK 311da177e4SLinus Torvalds * bug no longer crashes it. 321da177e4SLinus Torvalds * Fred Van Kempen : Net2e support for sk->broadcast. 331da177e4SLinus Torvalds * Alan Cox : Uses skb_free_datagram 341da177e4SLinus Torvalds * Alan Cox : Added get/set sockopt support. 351da177e4SLinus Torvalds * Alan Cox : Broadcasting without option set returns EACCES. 361da177e4SLinus Torvalds * Alan Cox : No wakeup calls. Instead we now use the callbacks. 371da177e4SLinus Torvalds * Alan Cox : Use ip_tos and ip_ttl 381da177e4SLinus Torvalds * Alan Cox : SNMP Mibs 391da177e4SLinus Torvalds * Alan Cox : MSG_DONTROUTE, and 0.0.0.0 support. 401da177e4SLinus Torvalds * Matt Dillon : UDP length checks. 411da177e4SLinus Torvalds * Alan Cox : Smarter af_inet used properly. 421da177e4SLinus Torvalds * Alan Cox : Use new kernel side addressing. 431da177e4SLinus Torvalds * Alan Cox : Incorrect return on truncated datagram receive. 441da177e4SLinus Torvalds * Arnt Gulbrandsen : New udp_send and stuff 451da177e4SLinus Torvalds * Alan Cox : Cache last socket 461da177e4SLinus Torvalds * Alan Cox : Route cache 471da177e4SLinus Torvalds * Jon Peatfield : Minor efficiency fix to sendto(). 481da177e4SLinus Torvalds * Mike Shaver : RFC1122 checks. 491da177e4SLinus Torvalds * Alan Cox : Nonblocking error fix. 501da177e4SLinus Torvalds * Willy Konynenberg : Transparent proxying support. 511da177e4SLinus Torvalds * Mike McLagan : Routing by source 521da177e4SLinus Torvalds * David S. Miller : New socket lookup architecture. 531da177e4SLinus Torvalds * Last socket cache retained as it 541da177e4SLinus Torvalds * does have a high hit rate. 551da177e4SLinus Torvalds * Olaf Kirch : Don't linearise iovec on sendmsg. 561da177e4SLinus Torvalds * Andi Kleen : Some cleanups, cache destination entry 571da177e4SLinus Torvalds * for connect. 581da177e4SLinus Torvalds * Vitaly E. Lavrov : Transparent proxy revived after year coma. 591da177e4SLinus Torvalds * Melvin Smith : Check msg_name not msg_namelen in sendto(), 601da177e4SLinus Torvalds * return ENOTCONN for unconnected sockets (POSIX) 611da177e4SLinus Torvalds * Janos Farkas : don't deliver multi/broadcasts to a different 621da177e4SLinus Torvalds * bound-to-device socket 631da177e4SLinus Torvalds * Hirokazu Takahashi : HW checksumming for outgoing UDP 641da177e4SLinus Torvalds * datagrams. 651da177e4SLinus Torvalds * Hirokazu Takahashi : sendfile() on UDP works now. 661da177e4SLinus Torvalds * Arnaldo C. Melo : convert /proc/net/udp to seq_file 671da177e4SLinus Torvalds * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which 681da177e4SLinus Torvalds * Alexey Kuznetsov: allow both IPv4 and IPv6 sockets to bind 691da177e4SLinus Torvalds * a single port at the same time. 701da177e4SLinus Torvalds * Derek Atkins <derek@ihtfp.com>: Add Encapulation Support 71342f0234SJames Chapman * James Chapman : Add L2TP encapsulation type. 721da177e4SLinus Torvalds * 731da177e4SLinus Torvalds * 741da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 751da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 761da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 771da177e4SLinus Torvalds * 2 of the License, or (at your option) any later version. 781da177e4SLinus Torvalds */ 791da177e4SLinus Torvalds 80afd46503SJoe Perches #define pr_fmt(fmt) "UDP: " fmt 81afd46503SJoe Perches 827c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 831da177e4SLinus Torvalds #include <asm/ioctls.h> 8457c8a661SMike Rapoport #include <linux/memblock.h> 858203efb3SEric Dumazet #include <linux/highmem.h> 868203efb3SEric Dumazet #include <linux/swap.h> 871da177e4SLinus Torvalds #include <linux/types.h> 881da177e4SLinus Torvalds #include <linux/fcntl.h> 891da177e4SLinus Torvalds #include <linux/module.h> 901da177e4SLinus Torvalds #include <linux/socket.h> 911da177e4SLinus Torvalds #include <linux/sockios.h> 9214c85021SArnaldo Carvalho de Melo #include <linux/igmp.h> 936e540309SShawn Bohrer #include <linux/inetdevice.h> 941da177e4SLinus Torvalds #include <linux/in.h> 951da177e4SLinus Torvalds #include <linux/errno.h> 961da177e4SLinus Torvalds #include <linux/timer.h> 971da177e4SLinus Torvalds #include <linux/mm.h> 981da177e4SLinus Torvalds #include <linux/inet.h> 991da177e4SLinus Torvalds #include <linux/netdevice.h> 1005a0e3ad6STejun Heo #include <linux/slab.h> 101c752f073SArnaldo Carvalho de Melo #include <net/tcp_states.h> 1021da177e4SLinus Torvalds #include <linux/skbuff.h> 1031da177e4SLinus Torvalds #include <linux/proc_fs.h> 1041da177e4SLinus Torvalds #include <linux/seq_file.h> 105457c4cbcSEric W. Biederman #include <net/net_namespace.h> 1061da177e4SLinus Torvalds #include <net/icmp.h> 107421b3885SShawn Bohrer #include <net/inet_hashtables.h> 108e7cc0824SStefano Brivio #include <net/ip_tunnels.h> 1091da177e4SLinus Torvalds #include <net/route.h> 1101da177e4SLinus Torvalds #include <net/checksum.h> 1111da177e4SLinus Torvalds #include <net/xfrm.h> 112296f7ea7SSatoru Moriya #include <trace/events/udp.h> 113447167bfSEric Dumazet #include <linux/static_key.h> 11422911fc5SEric Dumazet #include <trace/events/skb.h> 115076bb0c8SEliezer Tamir #include <net/busy_poll.h> 116ba4e58ecSGerrit Renker #include "udp_impl.h" 117e32ea7e7SCraig Gallek #include <net/sock_reuseport.h> 118217375a0SEric Dumazet #include <net/addrconf.h> 11960fb9567SPaolo Abeni #include <net/udp_tunnel.h> 1201da177e4SLinus Torvalds 121f86dcc5aSEric Dumazet struct udp_table udp_table __read_mostly; 122645ca708SEric Dumazet EXPORT_SYMBOL(udp_table); 1231da177e4SLinus Torvalds 1248d987e5cSEric Dumazet long sysctl_udp_mem[3] __read_mostly; 12595766fffSHideo Aoki EXPORT_SYMBOL(sysctl_udp_mem); 126c482c568SEric Dumazet 1278d987e5cSEric Dumazet atomic_long_t udp_memory_allocated; 12895766fffSHideo Aoki EXPORT_SYMBOL(udp_memory_allocated); 12995766fffSHideo Aoki 130f86dcc5aSEric Dumazet #define MAX_UDP_PORTS 65536 131f86dcc5aSEric Dumazet #define PORTS_PER_CHAIN (MAX_UDP_PORTS / UDP_HTABLE_SIZE_MIN) 13298322f22SEric Dumazet 13363a6fff3SRobert Shearman /* IPCB reference means this can not be used from early demux */ 13463a6fff3SRobert Shearman static bool udp_lib_exact_dif_match(struct net *net, struct sk_buff *skb) 13563a6fff3SRobert Shearman { 13663a6fff3SRobert Shearman #if IS_ENABLED(CONFIG_NET_L3_MASTER_DEV) 13763a6fff3SRobert Shearman if (!net->ipv4.sysctl_udp_l3mdev_accept && 13863a6fff3SRobert Shearman skb && ipv4_l3mdev_skb(IPCB(skb)->flags)) 13963a6fff3SRobert Shearman return true; 14063a6fff3SRobert Shearman #endif 14163a6fff3SRobert Shearman return false; 14263a6fff3SRobert Shearman } 14363a6fff3SRobert Shearman 144f24d43c0SEric Dumazet static int udp_lib_lport_inuse(struct net *net, __u16 num, 145645ca708SEric Dumazet const struct udp_hslot *hslot, 14698322f22SEric Dumazet unsigned long *bitmap, 147fe38d2a1SJosef Bacik struct sock *sk, unsigned int log) 14825030a7fSGerrit Renker { 149f24d43c0SEric Dumazet struct sock *sk2; 150ba418fa3STom Herbert kuid_t uid = sock_i_uid(sk); 15125030a7fSGerrit Renker 152ca065d0cSEric Dumazet sk_for_each(sk2, &hslot->head) { 153f24d43c0SEric Dumazet if (net_eq(sock_net(sk2), net) && 154f24d43c0SEric Dumazet sk2 != sk && 155d4cada4aSEric Dumazet (bitmap || udp_sk(sk2)->udp_port_hash == num) && 156f24d43c0SEric Dumazet (!sk2->sk_reuse || !sk->sk_reuse) && 1579d4fb27dSJoe Perches (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if || 1589d4fb27dSJoe Perches sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 159fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, true)) { 160df560056SEric Garver if (sk2->sk_reuseport && sk->sk_reuseport && 161df560056SEric Garver !rcu_access_pointer(sk->sk_reuseport_cb) && 162df560056SEric Garver uid_eq(uid, sock_i_uid(sk2))) { 163df560056SEric Garver if (!bitmap) 164df560056SEric Garver return 0; 165df560056SEric Garver } else { 1664243cdc2SJoe Perches if (!bitmap) 167fc038410SDavid S. Miller return 1; 168df560056SEric Garver __set_bit(udp_sk(sk2)->udp_port_hash >> log, 169df560056SEric Garver bitmap); 170df560056SEric Garver } 1714243cdc2SJoe Perches } 17298322f22SEric Dumazet } 17325030a7fSGerrit Renker return 0; 17425030a7fSGerrit Renker } 17525030a7fSGerrit Renker 17630fff923SEric Dumazet /* 17730fff923SEric Dumazet * Note: we still hold spinlock of primary hash chain, so no other writer 17830fff923SEric Dumazet * can insert/delete a socket with local_port == num 17930fff923SEric Dumazet */ 18030fff923SEric Dumazet static int udp_lib_lport_inuse2(struct net *net, __u16 num, 18130fff923SEric Dumazet struct udp_hslot *hslot2, 182fe38d2a1SJosef Bacik struct sock *sk) 18330fff923SEric Dumazet { 18430fff923SEric Dumazet struct sock *sk2; 185ba418fa3STom Herbert kuid_t uid = sock_i_uid(sk); 18630fff923SEric Dumazet int res = 0; 18730fff923SEric Dumazet 18830fff923SEric Dumazet spin_lock(&hslot2->lock); 189ca065d0cSEric Dumazet udp_portaddr_for_each_entry(sk2, &hslot2->head) { 19030fff923SEric Dumazet if (net_eq(sock_net(sk2), net) && 19130fff923SEric Dumazet sk2 != sk && 19230fff923SEric Dumazet (udp_sk(sk2)->udp_port_hash == num) && 19330fff923SEric Dumazet (!sk2->sk_reuse || !sk->sk_reuse) && 1949d4fb27dSJoe Perches (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if || 1959d4fb27dSJoe Perches sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 196fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, true)) { 197df560056SEric Garver if (sk2->sk_reuseport && sk->sk_reuseport && 198df560056SEric Garver !rcu_access_pointer(sk->sk_reuseport_cb) && 199df560056SEric Garver uid_eq(uid, sock_i_uid(sk2))) { 200df560056SEric Garver res = 0; 201df560056SEric Garver } else { 20230fff923SEric Dumazet res = 1; 203df560056SEric Garver } 20430fff923SEric Dumazet break; 20530fff923SEric Dumazet } 2064243cdc2SJoe Perches } 20730fff923SEric Dumazet spin_unlock(&hslot2->lock); 20830fff923SEric Dumazet return res; 20930fff923SEric Dumazet } 21030fff923SEric Dumazet 211fe38d2a1SJosef Bacik static int udp_reuseport_add_sock(struct sock *sk, struct udp_hslot *hslot) 212e32ea7e7SCraig Gallek { 213e32ea7e7SCraig Gallek struct net *net = sock_net(sk); 214e32ea7e7SCraig Gallek kuid_t uid = sock_i_uid(sk); 215e32ea7e7SCraig Gallek struct sock *sk2; 216e32ea7e7SCraig Gallek 217ca065d0cSEric Dumazet sk_for_each(sk2, &hslot->head) { 218e32ea7e7SCraig Gallek if (net_eq(sock_net(sk2), net) && 219e32ea7e7SCraig Gallek sk2 != sk && 220e32ea7e7SCraig Gallek sk2->sk_family == sk->sk_family && 221e32ea7e7SCraig Gallek ipv6_only_sock(sk2) == ipv6_only_sock(sk) && 222e32ea7e7SCraig Gallek (udp_sk(sk2)->udp_port_hash == udp_sk(sk)->udp_port_hash) && 223e32ea7e7SCraig Gallek (sk2->sk_bound_dev_if == sk->sk_bound_dev_if) && 224e32ea7e7SCraig Gallek sk2->sk_reuseport && uid_eq(uid, sock_i_uid(sk2)) && 225fe38d2a1SJosef Bacik inet_rcv_saddr_equal(sk, sk2, false)) { 2262dbb9b9eSMartin KaFai Lau return reuseport_add_sock(sk, sk2, 2272dbb9b9eSMartin KaFai Lau inet_rcv_saddr_any(sk)); 228e32ea7e7SCraig Gallek } 229e32ea7e7SCraig Gallek } 230e32ea7e7SCraig Gallek 2312dbb9b9eSMartin KaFai Lau return reuseport_alloc(sk, inet_rcv_saddr_any(sk)); 232e32ea7e7SCraig Gallek } 233e32ea7e7SCraig Gallek 23425030a7fSGerrit Renker /** 2356ba5a3c5SPavel Emelyanov * udp_lib_get_port - UDP/-Lite port lookup for IPv4 and IPv6 23625030a7fSGerrit Renker * 23725030a7fSGerrit Renker * @sk: socket struct in question 23825030a7fSGerrit Renker * @snum: port number to look up 23925985edcSLucas De Marchi * @hash2_nulladdr: AF-dependent hash value in secondary hash chains, 24030fff923SEric Dumazet * with NULL address 24125030a7fSGerrit Renker */ 2426ba5a3c5SPavel Emelyanov int udp_lib_get_port(struct sock *sk, unsigned short snum, 24330fff923SEric Dumazet unsigned int hash2_nulladdr) 2441da177e4SLinus Torvalds { 245512615b6SEric Dumazet struct udp_hslot *hslot, *hslot2; 246645ca708SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 24725030a7fSGerrit Renker int error = 1; 2483b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(sk); 2491da177e4SLinus Torvalds 25032c1da70SStephen Hemminger if (!snum) { 2519088c560SEric Dumazet int low, high, remaining; 25295c96174SEric Dumazet unsigned int rand; 25398322f22SEric Dumazet unsigned short first, last; 25498322f22SEric Dumazet DECLARE_BITMAP(bitmap, PORTS_PER_CHAIN); 2551da177e4SLinus Torvalds 2560bbf87d8SEric W. Biederman inet_get_local_port_range(net, &low, &high); 257a25de534SAnton Arapov remaining = (high - low) + 1; 258227b60f5SStephen Hemminger 25963862b5bSAruna-Hewapathirane rand = prandom_u32(); 2608fc54f68SDaniel Borkmann first = reciprocal_scale(rand, remaining) + low; 26198322f22SEric Dumazet /* 26298322f22SEric Dumazet * force rand to be an odd multiple of UDP_HTABLE_SIZE 26398322f22SEric Dumazet */ 264f86dcc5aSEric Dumazet rand = (rand | 1) * (udptable->mask + 1); 2655781b235SEric Dumazet last = first + udptable->mask + 1; 2665781b235SEric Dumazet do { 267f86dcc5aSEric Dumazet hslot = udp_hashslot(udptable, net, first); 26898322f22SEric Dumazet bitmap_zero(bitmap, PORTS_PER_CHAIN); 269645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 27098322f22SEric Dumazet udp_lib_lport_inuse(net, snum, hslot, bitmap, sk, 271fe38d2a1SJosef Bacik udptable->log); 27298322f22SEric Dumazet 27398322f22SEric Dumazet snum = first; 27498322f22SEric Dumazet /* 27598322f22SEric Dumazet * Iterate on all possible values of snum for this hash. 27698322f22SEric Dumazet * Using steps of an odd multiple of UDP_HTABLE_SIZE 27798322f22SEric Dumazet * give us randomization and full range coverage. 27898322f22SEric Dumazet */ 2799088c560SEric Dumazet do { 28098322f22SEric Dumazet if (low <= snum && snum <= high && 281e3826f1eSAmerigo Wang !test_bit(snum >> udptable->log, bitmap) && 282122ff243SWANG Cong !inet_is_local_reserved_port(net, snum)) 28398322f22SEric Dumazet goto found; 28498322f22SEric Dumazet snum += rand; 28598322f22SEric Dumazet } while (snum != first); 28698322f22SEric Dumazet spin_unlock_bh(&hslot->lock); 287df560056SEric Garver cond_resched(); 2885781b235SEric Dumazet } while (++first != last); 28998322f22SEric Dumazet goto fail; 290645ca708SEric Dumazet } else { 291f86dcc5aSEric Dumazet hslot = udp_hashslot(udptable, net, snum); 292645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 29330fff923SEric Dumazet if (hslot->count > 10) { 29430fff923SEric Dumazet int exist; 29530fff923SEric Dumazet unsigned int slot2 = udp_sk(sk)->udp_portaddr_hash ^ snum; 29630fff923SEric Dumazet 29730fff923SEric Dumazet slot2 &= udptable->mask; 29830fff923SEric Dumazet hash2_nulladdr &= udptable->mask; 29930fff923SEric Dumazet 30030fff923SEric Dumazet hslot2 = udp_hashslot2(udptable, slot2); 30130fff923SEric Dumazet if (hslot->count < hslot2->count) 30230fff923SEric Dumazet goto scan_primary_hash; 30330fff923SEric Dumazet 304fe38d2a1SJosef Bacik exist = udp_lib_lport_inuse2(net, snum, hslot2, sk); 30530fff923SEric Dumazet if (!exist && (hash2_nulladdr != slot2)) { 30630fff923SEric Dumazet hslot2 = udp_hashslot2(udptable, hash2_nulladdr); 30730fff923SEric Dumazet exist = udp_lib_lport_inuse2(net, snum, hslot2, 308fe38d2a1SJosef Bacik sk); 30930fff923SEric Dumazet } 31030fff923SEric Dumazet if (exist) 31130fff923SEric Dumazet goto fail_unlock; 31230fff923SEric Dumazet else 31330fff923SEric Dumazet goto found; 31430fff923SEric Dumazet } 31530fff923SEric Dumazet scan_primary_hash: 316fe38d2a1SJosef Bacik if (udp_lib_lport_inuse(net, snum, hslot, NULL, sk, 0)) 317645ca708SEric Dumazet goto fail_unlock; 318645ca708SEric Dumazet } 31998322f22SEric Dumazet found: 320c720c7e8SEric Dumazet inet_sk(sk)->inet_num = snum; 321d4cada4aSEric Dumazet udp_sk(sk)->udp_port_hash = snum; 322d4cada4aSEric Dumazet udp_sk(sk)->udp_portaddr_hash ^= snum; 3231da177e4SLinus Torvalds if (sk_unhashed(sk)) { 324e32ea7e7SCraig Gallek if (sk->sk_reuseport && 325fe38d2a1SJosef Bacik udp_reuseport_add_sock(sk, hslot)) { 326e32ea7e7SCraig Gallek inet_sk(sk)->inet_num = 0; 327e32ea7e7SCraig Gallek udp_sk(sk)->udp_port_hash = 0; 328e32ea7e7SCraig Gallek udp_sk(sk)->udp_portaddr_hash ^= snum; 329e32ea7e7SCraig Gallek goto fail_unlock; 330e32ea7e7SCraig Gallek } 331e32ea7e7SCraig Gallek 332ca065d0cSEric Dumazet sk_add_node_rcu(sk, &hslot->head); 333fdcc8aa9SEric Dumazet hslot->count++; 334c29a0bc4SPavel Emelyanov sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); 335512615b6SEric Dumazet 336512615b6SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 337512615b6SEric Dumazet spin_lock(&hslot2->lock); 338d894ba18SCraig Gallek if (IS_ENABLED(CONFIG_IPV6) && sk->sk_reuseport && 339d894ba18SCraig Gallek sk->sk_family == AF_INET6) 3401602f49bSDavid S. Miller hlist_add_tail_rcu(&udp_sk(sk)->udp_portaddr_node, 341d894ba18SCraig Gallek &hslot2->head); 342d894ba18SCraig Gallek else 343ca065d0cSEric Dumazet hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node, 344512615b6SEric Dumazet &hslot2->head); 345512615b6SEric Dumazet hslot2->count++; 346512615b6SEric Dumazet spin_unlock(&hslot2->lock); 3471da177e4SLinus Torvalds } 348ca065d0cSEric Dumazet sock_set_flag(sk, SOCK_RCU_FREE); 34925030a7fSGerrit Renker error = 0; 350645ca708SEric Dumazet fail_unlock: 351645ca708SEric Dumazet spin_unlock_bh(&hslot->lock); 3521da177e4SLinus Torvalds fail: 35325030a7fSGerrit Renker return error; 3541da177e4SLinus Torvalds } 355c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_get_port); 3561da177e4SLinus Torvalds 3576ba5a3c5SPavel Emelyanov int udp_v4_get_port(struct sock *sk, unsigned short snum) 358db8dac20SDavid S. Miller { 35930fff923SEric Dumazet unsigned int hash2_nulladdr = 360f0b1e64cSMartin KaFai Lau ipv4_portaddr_hash(sock_net(sk), htonl(INADDR_ANY), snum); 36130fff923SEric Dumazet unsigned int hash2_partial = 362f0b1e64cSMartin KaFai Lau ipv4_portaddr_hash(sock_net(sk), inet_sk(sk)->inet_rcv_saddr, 0); 36330fff923SEric Dumazet 364d4cada4aSEric Dumazet /* precompute partial secondary hash */ 36530fff923SEric Dumazet udp_sk(sk)->udp_portaddr_hash = hash2_partial; 366fe38d2a1SJosef Bacik return udp_lib_get_port(sk, snum, hash2_nulladdr); 367db8dac20SDavid S. Miller } 368db8dac20SDavid S. Miller 369d1e37288SSu, Xuemin static int compute_score(struct sock *sk, struct net *net, 370d1e37288SSu, Xuemin __be32 saddr, __be16 sport, 371fb74c277SDavid Ahern __be32 daddr, unsigned short hnum, 372fb74c277SDavid Ahern int dif, int sdif, bool exact_dif) 373645ca708SEric Dumazet { 37460c04aecSJoe Perches int score; 37560c04aecSJoe Perches struct inet_sock *inet; 3766da5b0f0SMike Manning bool dev_match; 377645ca708SEric Dumazet 37860c04aecSJoe Perches if (!net_eq(sock_net(sk), net) || 37960c04aecSJoe Perches udp_sk(sk)->udp_port_hash != hnum || 38060c04aecSJoe Perches ipv6_only_sock(sk)) 38160c04aecSJoe Perches return -1; 382645ca708SEric Dumazet 3834cdeeee9SPeter Oskolkov if (sk->sk_rcv_saddr != daddr) 384645ca708SEric Dumazet return -1; 38560c04aecSJoe Perches 3864cdeeee9SPeter Oskolkov score = (sk->sk_family == PF_INET) ? 2 : 1; 3874cdeeee9SPeter Oskolkov 3884cdeeee9SPeter Oskolkov inet = inet_sk(sk); 389c720c7e8SEric Dumazet if (inet->inet_daddr) { 390c720c7e8SEric Dumazet if (inet->inet_daddr != saddr) 391645ca708SEric Dumazet return -1; 392ba418fa3STom Herbert score += 4; 393645ca708SEric Dumazet } 39460c04aecSJoe Perches 395c720c7e8SEric Dumazet if (inet->inet_dport) { 396c720c7e8SEric Dumazet if (inet->inet_dport != sport) 397645ca708SEric Dumazet return -1; 398ba418fa3STom Herbert score += 4; 399645ca708SEric Dumazet } 40060c04aecSJoe Perches 4016da5b0f0SMike Manning dev_match = udp_sk_bound_dev_eq(net, sk->sk_bound_dev_if, 4026da5b0f0SMike Manning dif, sdif); 40369678bcdSPaolo Abeni if (!dev_match) 404645ca708SEric Dumazet return -1; 405ba418fa3STom Herbert score += 4; 406fb74c277SDavid Ahern 40770da268bSEric Dumazet if (sk->sk_incoming_cpu == raw_smp_processor_id()) 40870da268bSEric Dumazet score++; 409645ca708SEric Dumazet return score; 410645ca708SEric Dumazet } 411645ca708SEric Dumazet 4126eada011SEric Dumazet static u32 udp_ehashfn(const struct net *net, const __be32 laddr, 41365cd8033SHannes Frederic Sowa const __u16 lport, const __be32 faddr, 41465cd8033SHannes Frederic Sowa const __be16 fport) 41565cd8033SHannes Frederic Sowa { 4161bbdceefSHannes Frederic Sowa static u32 udp_ehash_secret __read_mostly; 4171bbdceefSHannes Frederic Sowa 4181bbdceefSHannes Frederic Sowa net_get_random_once(&udp_ehash_secret, sizeof(udp_ehash_secret)); 4191bbdceefSHannes Frederic Sowa 42065cd8033SHannes Frederic Sowa return __inet_ehashfn(laddr, lport, faddr, fport, 4211bbdceefSHannes Frederic Sowa udp_ehash_secret + net_hash_mix(net)); 42265cd8033SHannes Frederic Sowa } 42365cd8033SHannes Frederic Sowa 424d1e37288SSu, Xuemin /* called with rcu_read_lock() */ 4255051ebd2SEric Dumazet static struct sock *udp4_lib_lookup2(struct net *net, 4265051ebd2SEric Dumazet __be32 saddr, __be16 sport, 427fb74c277SDavid Ahern __be32 daddr, unsigned int hnum, 428fb74c277SDavid Ahern int dif, int sdif, bool exact_dif, 429d1e37288SSu, Xuemin struct udp_hslot *hslot2, 4301134158bSCraig Gallek struct sk_buff *skb) 4315051ebd2SEric Dumazet { 4325051ebd2SEric Dumazet struct sock *sk, *result; 433e94a62f5SPaolo Abeni int score, badness; 434ba418fa3STom Herbert u32 hash = 0; 4355051ebd2SEric Dumazet 4365051ebd2SEric Dumazet result = NULL; 437ba418fa3STom Herbert badness = 0; 438ca065d0cSEric Dumazet udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 439d1e37288SSu, Xuemin score = compute_score(sk, net, saddr, sport, 440fb74c277SDavid Ahern daddr, hnum, dif, sdif, exact_dif); 4415051ebd2SEric Dumazet if (score > badness) { 442e94a62f5SPaolo Abeni if (sk->sk_reuseport) { 44365cd8033SHannes Frederic Sowa hash = udp_ehashfn(net, daddr, hnum, 4447c0cadc6SEric Dumazet saddr, sport); 445ca065d0cSEric Dumazet result = reuseport_select_sock(sk, hash, skb, 4461134158bSCraig Gallek sizeof(struct udphdr)); 447ca065d0cSEric Dumazet if (result) 448ca065d0cSEric Dumazet return result; 449ba418fa3STom Herbert } 450ca065d0cSEric Dumazet badness = score; 451ca065d0cSEric Dumazet result = sk; 4525051ebd2SEric Dumazet } 4535051ebd2SEric Dumazet } 4545051ebd2SEric Dumazet return result; 4555051ebd2SEric Dumazet } 4565051ebd2SEric Dumazet 457db8dac20SDavid S. Miller /* UDP is nearly always wildcards out the wazoo, it makes no sense to try 458db8dac20SDavid S. Miller * harder than this. -DaveM 459db8dac20SDavid S. Miller */ 460fce82338SPavel Emelyanov struct sock *__udp4_lib_lookup(struct net *net, __be32 saddr, 461fb74c277SDavid Ahern __be16 sport, __be32 daddr, __be16 dport, int dif, 462fb74c277SDavid Ahern int sdif, struct udp_table *udptable, struct sk_buff *skb) 463db8dac20SDavid S. Miller { 4644cdeeee9SPeter Oskolkov struct sock *result; 465db8dac20SDavid S. Miller unsigned short hnum = ntohs(dport); 4664cdeeee9SPeter Oskolkov unsigned int hash2, slot2; 4674cdeeee9SPeter Oskolkov struct udp_hslot *hslot2; 46863a6fff3SRobert Shearman bool exact_dif = udp_lib_exact_dif_match(net, skb); 469db8dac20SDavid S. Miller 470f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, daddr, hnum); 4715051ebd2SEric Dumazet slot2 = hash2 & udptable->mask; 4725051ebd2SEric Dumazet hslot2 = &udptable->hash2[slot2]; 4735051ebd2SEric Dumazet 4745051ebd2SEric Dumazet result = udp4_lib_lookup2(net, saddr, sport, 475fb74c277SDavid Ahern daddr, hnum, dif, sdif, 47663a6fff3SRobert Shearman exact_dif, hslot2, skb); 4775051ebd2SEric Dumazet if (!result) { 478f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum); 4795051ebd2SEric Dumazet slot2 = hash2 & udptable->mask; 4805051ebd2SEric Dumazet hslot2 = &udptable->hash2[slot2]; 4815051ebd2SEric Dumazet 4821223c67cSJorge Boncompte [DTI2] result = udp4_lib_lookup2(net, saddr, sport, 4834cdeeee9SPeter Oskolkov htonl(INADDR_ANY), hnum, dif, sdif, 48463a6fff3SRobert Shearman exact_dif, hslot2, skb); 4855051ebd2SEric Dumazet } 4868217ca65SMartin KaFai Lau if (unlikely(IS_ERR(result))) 4878217ca65SMartin KaFai Lau return NULL; 4885051ebd2SEric Dumazet return result; 4895051ebd2SEric Dumazet } 490fce82338SPavel Emelyanov EXPORT_SYMBOL_GPL(__udp4_lib_lookup); 491db8dac20SDavid S. Miller 492607c4aafSKOVACS Krisztian static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb, 493607c4aafSKOVACS Krisztian __be16 sport, __be16 dport, 494645ca708SEric Dumazet struct udp_table *udptable) 495607c4aafSKOVACS Krisztian { 496607c4aafSKOVACS Krisztian const struct iphdr *iph = ip_hdr(skb); 497607c4aafSKOVACS Krisztian 498ed7cbbceSAlexander Duyck return __udp4_lib_lookup(dev_net(skb->dev), iph->saddr, sport, 499607c4aafSKOVACS Krisztian iph->daddr, dport, inet_iif(skb), 500fb74c277SDavid Ahern inet_sdif(skb), udptable, skb); 501607c4aafSKOVACS Krisztian } 502607c4aafSKOVACS Krisztian 50363058308STom Herbert struct sock *udp4_lib_lookup_skb(struct sk_buff *skb, 50463058308STom Herbert __be16 sport, __be16 dport) 50563058308STom Herbert { 506ed7cbbceSAlexander Duyck return __udp4_lib_lookup_skb(skb, sport, dport, &udp_table); 50763058308STom Herbert } 50863058308STom Herbert EXPORT_SYMBOL_GPL(udp4_lib_lookup_skb); 50963058308STom Herbert 510ca065d0cSEric Dumazet /* Must be called under rcu_read_lock(). 511ca065d0cSEric Dumazet * Does increment socket refcount. 512ca065d0cSEric Dumazet */ 5136e86000cSArnd Bergmann #if IS_ENABLED(CONFIG_NF_TPROXY_IPV4) || IS_ENABLED(CONFIG_NF_SOCKET_IPV4) 514bcd41303SKOVACS Krisztian struct sock *udp4_lib_lookup(struct net *net, __be32 saddr, __be16 sport, 515bcd41303SKOVACS Krisztian __be32 daddr, __be16 dport, int dif) 516bcd41303SKOVACS Krisztian { 517ca065d0cSEric Dumazet struct sock *sk; 518ca065d0cSEric Dumazet 519ca065d0cSEric Dumazet sk = __udp4_lib_lookup(net, saddr, sport, daddr, dport, 520fb74c277SDavid Ahern dif, 0, &udp_table, NULL); 52141c6d650SReshetova, Elena if (sk && !refcount_inc_not_zero(&sk->sk_refcnt)) 522ca065d0cSEric Dumazet sk = NULL; 523ca065d0cSEric Dumazet return sk; 524bcd41303SKOVACS Krisztian } 525bcd41303SKOVACS Krisztian EXPORT_SYMBOL_GPL(udp4_lib_lookup); 526ca065d0cSEric Dumazet #endif 527bcd41303SKOVACS Krisztian 528421b3885SShawn Bohrer static inline bool __udp_is_mcast_sock(struct net *net, struct sock *sk, 529421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 530421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 531fb74c277SDavid Ahern int dif, int sdif, unsigned short hnum) 532421b3885SShawn Bohrer { 533421b3885SShawn Bohrer struct inet_sock *inet = inet_sk(sk); 534421b3885SShawn Bohrer 535421b3885SShawn Bohrer if (!net_eq(sock_net(sk), net) || 536421b3885SShawn Bohrer udp_sk(sk)->udp_port_hash != hnum || 537421b3885SShawn Bohrer (inet->inet_daddr && inet->inet_daddr != rmt_addr) || 538421b3885SShawn Bohrer (inet->inet_dport != rmt_port && inet->inet_dport) || 539421b3885SShawn Bohrer (inet->inet_rcv_saddr && inet->inet_rcv_saddr != loc_addr) || 540421b3885SShawn Bohrer ipv6_only_sock(sk) || 541fb74c277SDavid Ahern (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif && 542fb74c277SDavid Ahern sk->sk_bound_dev_if != sdif)) 543421b3885SShawn Bohrer return false; 54460d9b031SDavid Ahern if (!ip_mc_sf_allow(sk, loc_addr, rmt_addr, dif, sdif)) 545421b3885SShawn Bohrer return false; 546421b3885SShawn Bohrer return true; 547421b3885SShawn Bohrer } 548421b3885SShawn Bohrer 549a36e185eSStefano Brivio DEFINE_STATIC_KEY_FALSE(udp_encap_needed_key); 550a36e185eSStefano Brivio void udp_encap_enable(void) 551a36e185eSStefano Brivio { 5529c480601SPaolo Abeni static_branch_inc(&udp_encap_needed_key); 553a36e185eSStefano Brivio } 554a36e185eSStefano Brivio EXPORT_SYMBOL(udp_encap_enable); 555a36e185eSStefano Brivio 556e7cc0824SStefano Brivio /* Handler for tunnels with arbitrary destination ports: no socket lookup, go 557e7cc0824SStefano Brivio * through error handlers in encapsulations looking for a match. 558e7cc0824SStefano Brivio */ 559e7cc0824SStefano Brivio static int __udp4_lib_err_encap_no_sk(struct sk_buff *skb, u32 info) 560e7cc0824SStefano Brivio { 561e7cc0824SStefano Brivio int i; 562e7cc0824SStefano Brivio 563e7cc0824SStefano Brivio for (i = 0; i < MAX_IPTUN_ENCAP_OPS; i++) { 564e7cc0824SStefano Brivio int (*handler)(struct sk_buff *skb, u32 info); 56592b95364SPaolo Abeni const struct ip_tunnel_encap_ops *encap; 566e7cc0824SStefano Brivio 56792b95364SPaolo Abeni encap = rcu_dereference(iptun_encaps[i]); 56892b95364SPaolo Abeni if (!encap) 569e7cc0824SStefano Brivio continue; 57092b95364SPaolo Abeni handler = encap->err_handler; 571e7cc0824SStefano Brivio if (handler && !handler(skb, info)) 572e7cc0824SStefano Brivio return 0; 573e7cc0824SStefano Brivio } 574e7cc0824SStefano Brivio 575e7cc0824SStefano Brivio return -ENOENT; 576e7cc0824SStefano Brivio } 577e7cc0824SStefano Brivio 578a36e185eSStefano Brivio /* Try to match ICMP errors to UDP tunnels by looking up a socket without 579a36e185eSStefano Brivio * reversing source and destination port: this will match tunnels that force the 580a36e185eSStefano Brivio * same destination port on both endpoints (e.g. VXLAN, GENEVE). Note that 581a36e185eSStefano Brivio * lwtunnels might actually break this assumption by being configured with 582a36e185eSStefano Brivio * different destination ports on endpoints, in this case we won't be able to 583a36e185eSStefano Brivio * trace ICMP messages back to them. 584a36e185eSStefano Brivio * 585e7cc0824SStefano Brivio * If this doesn't match any socket, probe tunnels with arbitrary destination 586e7cc0824SStefano Brivio * ports (e.g. FoU, GUE): there, the receiving socket is useless, as the port 587e7cc0824SStefano Brivio * we've sent packets to won't necessarily match the local destination port. 588e7cc0824SStefano Brivio * 589a36e185eSStefano Brivio * Then ask the tunnel implementation to match the error against a valid 590a36e185eSStefano Brivio * association. 591a36e185eSStefano Brivio * 592e7cc0824SStefano Brivio * Return an error if we can't find a match, the socket if we need further 593e7cc0824SStefano Brivio * processing, zero otherwise. 594a36e185eSStefano Brivio */ 595a36e185eSStefano Brivio static struct sock *__udp4_lib_err_encap(struct net *net, 596a36e185eSStefano Brivio const struct iphdr *iph, 597a36e185eSStefano Brivio struct udphdr *uh, 598a36e185eSStefano Brivio struct udp_table *udptable, 599e7cc0824SStefano Brivio struct sk_buff *skb, u32 info) 600a36e185eSStefano Brivio { 601a36e185eSStefano Brivio int network_offset, transport_offset; 602a36e185eSStefano Brivio struct sock *sk; 603a36e185eSStefano Brivio 604a36e185eSStefano Brivio network_offset = skb_network_offset(skb); 605a36e185eSStefano Brivio transport_offset = skb_transport_offset(skb); 606a36e185eSStefano Brivio 607a36e185eSStefano Brivio /* Network header needs to point to the outer IPv4 header inside ICMP */ 608a36e185eSStefano Brivio skb_reset_network_header(skb); 609a36e185eSStefano Brivio 610a36e185eSStefano Brivio /* Transport header needs to point to the UDP header */ 611a36e185eSStefano Brivio skb_set_transport_header(skb, iph->ihl << 2); 612a36e185eSStefano Brivio 613e7cc0824SStefano Brivio sk = __udp4_lib_lookup(net, iph->daddr, uh->source, 614e7cc0824SStefano Brivio iph->saddr, uh->dest, skb->dev->ifindex, 0, 615e7cc0824SStefano Brivio udptable, NULL); 616e7cc0824SStefano Brivio if (sk) { 617e7cc0824SStefano Brivio int (*lookup)(struct sock *sk, struct sk_buff *skb); 618e7cc0824SStefano Brivio struct udp_sock *up = udp_sk(sk); 619e7cc0824SStefano Brivio 620a36e185eSStefano Brivio lookup = READ_ONCE(up->encap_err_lookup); 621a36e185eSStefano Brivio if (!lookup || lookup(sk, skb)) 622a36e185eSStefano Brivio sk = NULL; 623e7cc0824SStefano Brivio } 624e7cc0824SStefano Brivio 625e7cc0824SStefano Brivio if (!sk) 626e7cc0824SStefano Brivio sk = ERR_PTR(__udp4_lib_err_encap_no_sk(skb, info)); 627a36e185eSStefano Brivio 628a36e185eSStefano Brivio skb_set_transport_header(skb, transport_offset); 629a36e185eSStefano Brivio skb_set_network_header(skb, network_offset); 630a36e185eSStefano Brivio 631a36e185eSStefano Brivio return sk; 632a36e185eSStefano Brivio } 633a36e185eSStefano Brivio 634db8dac20SDavid S. Miller /* 635db8dac20SDavid S. Miller * This routine is called by the ICMP module when it gets some 636db8dac20SDavid S. Miller * sort of error condition. If err < 0 then the socket should 637db8dac20SDavid S. Miller * be closed and the error returned to the user. If err > 0 638db8dac20SDavid S. Miller * it's just the icmp type << 8 | icmp code. 639db8dac20SDavid S. Miller * Header points to the ip header of the error packet. We move 640db8dac20SDavid S. Miller * on past this. Then (as it used to claim before adjustment) 641db8dac20SDavid S. Miller * header points to the first 8 bytes of the udp header. We need 642db8dac20SDavid S. Miller * to find the appropriate port. 643db8dac20SDavid S. Miller */ 644db8dac20SDavid S. Miller 64532bbd879SStefano Brivio int __udp4_lib_err(struct sk_buff *skb, u32 info, struct udp_table *udptable) 646db8dac20SDavid S. Miller { 647db8dac20SDavid S. Miller struct inet_sock *inet; 648b71d1d42SEric Dumazet const struct iphdr *iph = (const struct iphdr *)skb->data; 649db8dac20SDavid S. Miller struct udphdr *uh = (struct udphdr *)(skb->data+(iph->ihl<<2)); 650db8dac20SDavid S. Miller const int type = icmp_hdr(skb)->type; 651db8dac20SDavid S. Miller const int code = icmp_hdr(skb)->code; 652a36e185eSStefano Brivio bool tunnel = false; 653db8dac20SDavid S. Miller struct sock *sk; 654db8dac20SDavid S. Miller int harderr; 655db8dac20SDavid S. Miller int err; 656fd54d716SPavel Emelyanov struct net *net = dev_net(skb->dev); 657db8dac20SDavid S. Miller 658fd54d716SPavel Emelyanov sk = __udp4_lib_lookup(net, iph->daddr, uh->dest, 659f64bf6b8SMike Manning iph->saddr, uh->source, skb->dev->ifindex, 660f64bf6b8SMike Manning inet_sdif(skb), udptable, NULL); 66151456b29SIan Morris if (!sk) { 662a36e185eSStefano Brivio /* No socket for error: try tunnels before discarding */ 663e7cc0824SStefano Brivio sk = ERR_PTR(-ENOENT); 664e7cc0824SStefano Brivio if (static_branch_unlikely(&udp_encap_needed_key)) { 665e7cc0824SStefano Brivio sk = __udp4_lib_err_encap(net, iph, uh, udptable, skb, 666e7cc0824SStefano Brivio info); 667e7cc0824SStefano Brivio if (!sk) 668e7cc0824SStefano Brivio return 0; 669a36e185eSStefano Brivio } 670e7cc0824SStefano Brivio 671e7cc0824SStefano Brivio if (IS_ERR(sk)) { 672e7cc0824SStefano Brivio __ICMP_INC_STATS(net, ICMP_MIB_INERRORS); 673e7cc0824SStefano Brivio return PTR_ERR(sk); 674e7cc0824SStefano Brivio } 675e7cc0824SStefano Brivio 676a36e185eSStefano Brivio tunnel = true; 677db8dac20SDavid S. Miller } 678db8dac20SDavid S. Miller 679db8dac20SDavid S. Miller err = 0; 680db8dac20SDavid S. Miller harderr = 0; 681db8dac20SDavid S. Miller inet = inet_sk(sk); 682db8dac20SDavid S. Miller 683db8dac20SDavid S. Miller switch (type) { 684db8dac20SDavid S. Miller default: 685db8dac20SDavid S. Miller case ICMP_TIME_EXCEEDED: 686db8dac20SDavid S. Miller err = EHOSTUNREACH; 687db8dac20SDavid S. Miller break; 688db8dac20SDavid S. Miller case ICMP_SOURCE_QUENCH: 689db8dac20SDavid S. Miller goto out; 690db8dac20SDavid S. Miller case ICMP_PARAMETERPROB: 691db8dac20SDavid S. Miller err = EPROTO; 692db8dac20SDavid S. Miller harderr = 1; 693db8dac20SDavid S. Miller break; 694db8dac20SDavid S. Miller case ICMP_DEST_UNREACH: 695db8dac20SDavid S. Miller if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */ 69636393395SDavid S. Miller ipv4_sk_update_pmtu(skb, sk, info); 697db8dac20SDavid S. Miller if (inet->pmtudisc != IP_PMTUDISC_DONT) { 698db8dac20SDavid S. Miller err = EMSGSIZE; 699db8dac20SDavid S. Miller harderr = 1; 700db8dac20SDavid S. Miller break; 701db8dac20SDavid S. Miller } 702db8dac20SDavid S. Miller goto out; 703db8dac20SDavid S. Miller } 704db8dac20SDavid S. Miller err = EHOSTUNREACH; 705db8dac20SDavid S. Miller if (code <= NR_ICMP_UNREACH) { 706db8dac20SDavid S. Miller harderr = icmp_err_convert[code].fatal; 707db8dac20SDavid S. Miller err = icmp_err_convert[code].errno; 708db8dac20SDavid S. Miller } 709db8dac20SDavid S. Miller break; 71055be7a9cSDavid S. Miller case ICMP_REDIRECT: 71155be7a9cSDavid S. Miller ipv4_sk_redirect(skb, sk); 7121a462d18SDuan Jiong goto out; 713db8dac20SDavid S. Miller } 714db8dac20SDavid S. Miller 715db8dac20SDavid S. Miller /* 716db8dac20SDavid S. Miller * RFC1122: OK. Passes ICMP errors back to application, as per 717db8dac20SDavid S. Miller * 4.1.3.3. 718db8dac20SDavid S. Miller */ 719a36e185eSStefano Brivio if (tunnel) { 720a36e185eSStefano Brivio /* ...not for tunnels though: we don't have a sending socket */ 721a36e185eSStefano Brivio goto out; 722a36e185eSStefano Brivio } 723db8dac20SDavid S. Miller if (!inet->recverr) { 724db8dac20SDavid S. Miller if (!harderr || sk->sk_state != TCP_ESTABLISHED) 725db8dac20SDavid S. Miller goto out; 726b1faf566SEric Dumazet } else 727db8dac20SDavid S. Miller ip_icmp_error(sk, skb, err, uh->dest, info, (u8 *)(uh+1)); 728b1faf566SEric Dumazet 729db8dac20SDavid S. Miller sk->sk_err = err; 730db8dac20SDavid S. Miller sk->sk_error_report(sk); 731db8dac20SDavid S. Miller out: 73232bbd879SStefano Brivio return 0; 733db8dac20SDavid S. Miller } 734db8dac20SDavid S. Miller 73532bbd879SStefano Brivio int udp_err(struct sk_buff *skb, u32 info) 736db8dac20SDavid S. Miller { 73732bbd879SStefano Brivio return __udp4_lib_err(skb, info, &udp_table); 738db8dac20SDavid S. Miller } 739db8dac20SDavid S. Miller 740db8dac20SDavid S. Miller /* 741db8dac20SDavid S. Miller * Throw away all pending data and cancel the corking. Socket is locked. 742db8dac20SDavid S. Miller */ 74336d926b9SDenis V. Lunev void udp_flush_pending_frames(struct sock *sk) 744db8dac20SDavid S. Miller { 745db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 746db8dac20SDavid S. Miller 747db8dac20SDavid S. Miller if (up->pending) { 748db8dac20SDavid S. Miller up->len = 0; 749db8dac20SDavid S. Miller up->pending = 0; 750db8dac20SDavid S. Miller ip_flush_pending_frames(sk); 751db8dac20SDavid S. Miller } 752db8dac20SDavid S. Miller } 75336d926b9SDenis V. Lunev EXPORT_SYMBOL(udp_flush_pending_frames); 754db8dac20SDavid S. Miller 755db8dac20SDavid S. Miller /** 756f6b9664fSHerbert Xu * udp4_hwcsum - handle outgoing HW checksumming 757db8dac20SDavid S. Miller * @skb: sk_buff containing the filled-in UDP header 758db8dac20SDavid S. Miller * (checksum field must be zeroed out) 759f6b9664fSHerbert Xu * @src: source IP address 760f6b9664fSHerbert Xu * @dst: destination IP address 761db8dac20SDavid S. Miller */ 762c26bf4a5SThomas Graf void udp4_hwcsum(struct sk_buff *skb, __be32 src, __be32 dst) 763db8dac20SDavid S. Miller { 764db8dac20SDavid S. Miller struct udphdr *uh = udp_hdr(skb); 765f6b9664fSHerbert Xu int offset = skb_transport_offset(skb); 766f6b9664fSHerbert Xu int len = skb->len - offset; 767f6b9664fSHerbert Xu int hlen = len; 768db8dac20SDavid S. Miller __wsum csum = 0; 769db8dac20SDavid S. Miller 770ebbe495fSWANG Cong if (!skb_has_frag_list(skb)) { 771db8dac20SDavid S. Miller /* 772db8dac20SDavid S. Miller * Only one fragment on the socket. 773db8dac20SDavid S. Miller */ 774db8dac20SDavid S. Miller skb->csum_start = skb_transport_header(skb) - skb->head; 775db8dac20SDavid S. Miller skb->csum_offset = offsetof(struct udphdr, check); 776f6b9664fSHerbert Xu uh->check = ~csum_tcpudp_magic(src, dst, len, 777f6b9664fSHerbert Xu IPPROTO_UDP, 0); 778db8dac20SDavid S. Miller } else { 779ebbe495fSWANG Cong struct sk_buff *frags; 780ebbe495fSWANG Cong 781db8dac20SDavid S. Miller /* 782db8dac20SDavid S. Miller * HW-checksum won't work as there are two or more 783db8dac20SDavid S. Miller * fragments on the socket so that all csums of sk_buffs 784db8dac20SDavid S. Miller * should be together 785db8dac20SDavid S. Miller */ 786ebbe495fSWANG Cong skb_walk_frags(skb, frags) { 787f6b9664fSHerbert Xu csum = csum_add(csum, frags->csum); 788f6b9664fSHerbert Xu hlen -= frags->len; 789ebbe495fSWANG Cong } 790db8dac20SDavid S. Miller 791f6b9664fSHerbert Xu csum = skb_checksum(skb, offset, hlen, csum); 792db8dac20SDavid S. Miller skb->ip_summed = CHECKSUM_NONE; 793db8dac20SDavid S. Miller 794db8dac20SDavid S. Miller uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum); 795db8dac20SDavid S. Miller if (uh->check == 0) 796db8dac20SDavid S. Miller uh->check = CSUM_MANGLED_0; 797db8dac20SDavid S. Miller } 798db8dac20SDavid S. Miller } 799c26bf4a5SThomas Graf EXPORT_SYMBOL_GPL(udp4_hwcsum); 800db8dac20SDavid S. Miller 801af5fcba7STom Herbert /* Function to set UDP checksum for an IPv4 UDP packet. This is intended 802af5fcba7STom Herbert * for the simple case like when setting the checksum for a UDP tunnel. 803af5fcba7STom Herbert */ 804af5fcba7STom Herbert void udp_set_csum(bool nocheck, struct sk_buff *skb, 805af5fcba7STom Herbert __be32 saddr, __be32 daddr, int len) 806af5fcba7STom Herbert { 807af5fcba7STom Herbert struct udphdr *uh = udp_hdr(skb); 808af5fcba7STom Herbert 809179bc67fSEdward Cree if (nocheck) { 810af5fcba7STom Herbert uh->check = 0; 811179bc67fSEdward Cree } else if (skb_is_gso(skb)) { 812af5fcba7STom Herbert uh->check = ~udp_v4_check(len, saddr, daddr, 0); 813179bc67fSEdward Cree } else if (skb->ip_summed == CHECKSUM_PARTIAL) { 814179bc67fSEdward Cree uh->check = 0; 815179bc67fSEdward Cree uh->check = udp_v4_check(len, saddr, daddr, lco_csum(skb)); 816179bc67fSEdward Cree if (uh->check == 0) 817179bc67fSEdward Cree uh->check = CSUM_MANGLED_0; 818d75f1306SEdward Cree } else { 819af5fcba7STom Herbert skb->ip_summed = CHECKSUM_PARTIAL; 820af5fcba7STom Herbert skb->csum_start = skb_transport_header(skb) - skb->head; 821af5fcba7STom Herbert skb->csum_offset = offsetof(struct udphdr, check); 822af5fcba7STom Herbert uh->check = ~udp_v4_check(len, saddr, daddr, 0); 823af5fcba7STom Herbert } 824af5fcba7STom Herbert } 825af5fcba7STom Herbert EXPORT_SYMBOL(udp_set_csum); 826af5fcba7STom Herbert 827bec1f6f6SWillem de Bruijn static int udp_send_skb(struct sk_buff *skb, struct flowi4 *fl4, 828bec1f6f6SWillem de Bruijn struct inet_cork *cork) 829f6b9664fSHerbert Xu { 830f6b9664fSHerbert Xu struct sock *sk = skb->sk; 831f6b9664fSHerbert Xu struct inet_sock *inet = inet_sk(sk); 832f6b9664fSHerbert Xu struct udphdr *uh; 833f6b9664fSHerbert Xu int err = 0; 834f6b9664fSHerbert Xu int is_udplite = IS_UDPLITE(sk); 835f6b9664fSHerbert Xu int offset = skb_transport_offset(skb); 836f6b9664fSHerbert Xu int len = skb->len - offset; 837f6b9664fSHerbert Xu __wsum csum = 0; 838f6b9664fSHerbert Xu 839f6b9664fSHerbert Xu /* 840f6b9664fSHerbert Xu * Create a UDP header 841f6b9664fSHerbert Xu */ 842f6b9664fSHerbert Xu uh = udp_hdr(skb); 843f6b9664fSHerbert Xu uh->source = inet->inet_sport; 84479ab0531SDavid S. Miller uh->dest = fl4->fl4_dport; 845f6b9664fSHerbert Xu uh->len = htons(len); 846f6b9664fSHerbert Xu uh->check = 0; 847f6b9664fSHerbert Xu 848bec1f6f6SWillem de Bruijn if (cork->gso_size) { 849bec1f6f6SWillem de Bruijn const int hlen = skb_network_header_len(skb) + 850bec1f6f6SWillem de Bruijn sizeof(struct udphdr); 851bec1f6f6SWillem de Bruijn 8520f149c9fSWillem de Bruijn if (hlen + cork->gso_size > cork->fragsize) { 8530f149c9fSWillem de Bruijn kfree_skb(skb); 854bec1f6f6SWillem de Bruijn return -EINVAL; 8550f149c9fSWillem de Bruijn } 8560f149c9fSWillem de Bruijn if (skb->len > cork->gso_size * UDP_MAX_SEGMENTS) { 8570f149c9fSWillem de Bruijn kfree_skb(skb); 858bec1f6f6SWillem de Bruijn return -EINVAL; 8590f149c9fSWillem de Bruijn } 8600f149c9fSWillem de Bruijn if (sk->sk_no_check_tx) { 8610f149c9fSWillem de Bruijn kfree_skb(skb); 862a8c744a8SWillem de Bruijn return -EINVAL; 8630f149c9fSWillem de Bruijn } 864ff06342cSWillem de Bruijn if (skb->ip_summed != CHECKSUM_PARTIAL || is_udplite || 8650f149c9fSWillem de Bruijn dst_xfrm(skb_dst(skb))) { 8660f149c9fSWillem de Bruijn kfree_skb(skb); 867bec1f6f6SWillem de Bruijn return -EIO; 8680f149c9fSWillem de Bruijn } 869bec1f6f6SWillem de Bruijn 870bec1f6f6SWillem de Bruijn skb_shinfo(skb)->gso_size = cork->gso_size; 871bec1f6f6SWillem de Bruijn skb_shinfo(skb)->gso_type = SKB_GSO_UDP_L4; 872dfec0ee2SAlexander Duyck skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(len - sizeof(uh), 873dfec0ee2SAlexander Duyck cork->gso_size); 874a8c744a8SWillem de Bruijn goto csum_partial; 875bec1f6f6SWillem de Bruijn } 876bec1f6f6SWillem de Bruijn 877f6b9664fSHerbert Xu if (is_udplite) /* UDP-Lite */ 878f6b9664fSHerbert Xu csum = udplite_csum(skb); 879f6b9664fSHerbert Xu 880ab2fb7e3SWillem de Bruijn else if (sk->sk_no_check_tx) { /* UDP csum off */ 881f6b9664fSHerbert Xu 882f6b9664fSHerbert Xu skb->ip_summed = CHECKSUM_NONE; 883f6b9664fSHerbert Xu goto send; 884f6b9664fSHerbert Xu 885f6b9664fSHerbert Xu } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */ 886a8c744a8SWillem de Bruijn csum_partial: 887f6b9664fSHerbert Xu 88879ab0531SDavid S. Miller udp4_hwcsum(skb, fl4->saddr, fl4->daddr); 889f6b9664fSHerbert Xu goto send; 890f6b9664fSHerbert Xu 891f6b9664fSHerbert Xu } else 892f6b9664fSHerbert Xu csum = udp_csum(skb); 893f6b9664fSHerbert Xu 894f6b9664fSHerbert Xu /* add protocol-dependent pseudo-header */ 89579ab0531SDavid S. Miller uh->check = csum_tcpudp_magic(fl4->saddr, fl4->daddr, len, 896f6b9664fSHerbert Xu sk->sk_protocol, csum); 897f6b9664fSHerbert Xu if (uh->check == 0) 898f6b9664fSHerbert Xu uh->check = CSUM_MANGLED_0; 899f6b9664fSHerbert Xu 900f6b9664fSHerbert Xu send: 901b5ec8eeaSEric Dumazet err = ip_send_skb(sock_net(sk), skb); 902f6b9664fSHerbert Xu if (err) { 903f6b9664fSHerbert Xu if (err == -ENOBUFS && !inet->recverr) { 9046aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 905f6b9664fSHerbert Xu UDP_MIB_SNDBUFERRORS, is_udplite); 906f6b9664fSHerbert Xu err = 0; 907f6b9664fSHerbert Xu } 908f6b9664fSHerbert Xu } else 9096aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 910f6b9664fSHerbert Xu UDP_MIB_OUTDATAGRAMS, is_udplite); 911f6b9664fSHerbert Xu return err; 912f6b9664fSHerbert Xu } 913f6b9664fSHerbert Xu 914db8dac20SDavid S. Miller /* 915db8dac20SDavid S. Miller * Push out all pending data as one UDP datagram. Socket is locked. 916db8dac20SDavid S. Miller */ 9178822b64aSHannes Frederic Sowa int udp_push_pending_frames(struct sock *sk) 918db8dac20SDavid S. Miller { 919db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 920db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 921b6f21b26SDavid S. Miller struct flowi4 *fl4 = &inet->cork.fl.u.ip4; 922db8dac20SDavid S. Miller struct sk_buff *skb; 923db8dac20SDavid S. Miller int err = 0; 924db8dac20SDavid S. Miller 92577968b78SDavid S. Miller skb = ip_finish_skb(sk, fl4); 926f6b9664fSHerbert Xu if (!skb) 927db8dac20SDavid S. Miller goto out; 928db8dac20SDavid S. Miller 929bec1f6f6SWillem de Bruijn err = udp_send_skb(skb, fl4, &inet->cork.base); 930db8dac20SDavid S. Miller 931db8dac20SDavid S. Miller out: 932db8dac20SDavid S. Miller up->len = 0; 933db8dac20SDavid S. Miller up->pending = 0; 934db8dac20SDavid S. Miller return err; 935db8dac20SDavid S. Miller } 9368822b64aSHannes Frederic Sowa EXPORT_SYMBOL(udp_push_pending_frames); 937db8dac20SDavid S. Miller 9382e8de857SWillem de Bruijn static int __udp_cmsg_send(struct cmsghdr *cmsg, u16 *gso_size) 9392e8de857SWillem de Bruijn { 9402e8de857SWillem de Bruijn switch (cmsg->cmsg_type) { 9412e8de857SWillem de Bruijn case UDP_SEGMENT: 9422e8de857SWillem de Bruijn if (cmsg->cmsg_len != CMSG_LEN(sizeof(__u16))) 9432e8de857SWillem de Bruijn return -EINVAL; 9442e8de857SWillem de Bruijn *gso_size = *(__u16 *)CMSG_DATA(cmsg); 9452e8de857SWillem de Bruijn return 0; 9462e8de857SWillem de Bruijn default: 9472e8de857SWillem de Bruijn return -EINVAL; 9482e8de857SWillem de Bruijn } 9492e8de857SWillem de Bruijn } 9502e8de857SWillem de Bruijn 9512e8de857SWillem de Bruijn int udp_cmsg_send(struct sock *sk, struct msghdr *msg, u16 *gso_size) 9522e8de857SWillem de Bruijn { 9532e8de857SWillem de Bruijn struct cmsghdr *cmsg; 9542e8de857SWillem de Bruijn bool need_ip = false; 9552e8de857SWillem de Bruijn int err; 9562e8de857SWillem de Bruijn 9572e8de857SWillem de Bruijn for_each_cmsghdr(cmsg, msg) { 9582e8de857SWillem de Bruijn if (!CMSG_OK(msg, cmsg)) 9592e8de857SWillem de Bruijn return -EINVAL; 9602e8de857SWillem de Bruijn 9612e8de857SWillem de Bruijn if (cmsg->cmsg_level != SOL_UDP) { 9622e8de857SWillem de Bruijn need_ip = true; 9632e8de857SWillem de Bruijn continue; 9642e8de857SWillem de Bruijn } 9652e8de857SWillem de Bruijn 9662e8de857SWillem de Bruijn err = __udp_cmsg_send(cmsg, gso_size); 9672e8de857SWillem de Bruijn if (err) 9682e8de857SWillem de Bruijn return err; 9692e8de857SWillem de Bruijn } 9702e8de857SWillem de Bruijn 9712e8de857SWillem de Bruijn return need_ip; 9722e8de857SWillem de Bruijn } 9732e8de857SWillem de Bruijn EXPORT_SYMBOL_GPL(udp_cmsg_send); 9742e8de857SWillem de Bruijn 9751b784140SYing Xue int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) 976db8dac20SDavid S. Miller { 977db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 978db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 9791cedee13SAndrey Ignatov DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name); 980e474995fSDavid S. Miller struct flowi4 fl4_stack; 981b6f21b26SDavid S. Miller struct flowi4 *fl4; 982db8dac20SDavid S. Miller int ulen = len; 983db8dac20SDavid S. Miller struct ipcm_cookie ipc; 984db8dac20SDavid S. Miller struct rtable *rt = NULL; 985db8dac20SDavid S. Miller int free = 0; 986db8dac20SDavid S. Miller int connected = 0; 987db8dac20SDavid S. Miller __be32 daddr, faddr, saddr; 988db8dac20SDavid S. Miller __be16 dport; 989db8dac20SDavid S. Miller u8 tos; 990db8dac20SDavid S. Miller int err, is_udplite = IS_UDPLITE(sk); 991db8dac20SDavid S. Miller int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; 992db8dac20SDavid S. Miller int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); 993903ab86dSHerbert Xu struct sk_buff *skb; 994f6d8bd05SEric Dumazet struct ip_options_data opt_copy; 995db8dac20SDavid S. Miller 996db8dac20SDavid S. Miller if (len > 0xFFFF) 997db8dac20SDavid S. Miller return -EMSGSIZE; 998db8dac20SDavid S. Miller 999db8dac20SDavid S. Miller /* 1000db8dac20SDavid S. Miller * Check the flags. 1001db8dac20SDavid S. Miller */ 1002db8dac20SDavid S. Miller 1003db8dac20SDavid S. Miller if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message compatibility */ 1004db8dac20SDavid S. Miller return -EOPNOTSUPP; 1005db8dac20SDavid S. Miller 1006903ab86dSHerbert Xu getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag; 1007903ab86dSHerbert Xu 1008f5fca608SDavid S. Miller fl4 = &inet->cork.fl.u.ip4; 1009db8dac20SDavid S. Miller if (up->pending) { 1010db8dac20SDavid S. Miller /* 1011db8dac20SDavid S. Miller * There are pending frames. 1012db8dac20SDavid S. Miller * The socket lock must be held while it's corked. 1013db8dac20SDavid S. Miller */ 1014db8dac20SDavid S. Miller lock_sock(sk); 1015db8dac20SDavid S. Miller if (likely(up->pending)) { 1016db8dac20SDavid S. Miller if (unlikely(up->pending != AF_INET)) { 1017db8dac20SDavid S. Miller release_sock(sk); 1018db8dac20SDavid S. Miller return -EINVAL; 1019db8dac20SDavid S. Miller } 1020db8dac20SDavid S. Miller goto do_append_data; 1021db8dac20SDavid S. Miller } 1022db8dac20SDavid S. Miller release_sock(sk); 1023db8dac20SDavid S. Miller } 1024db8dac20SDavid S. Miller ulen += sizeof(struct udphdr); 1025db8dac20SDavid S. Miller 1026db8dac20SDavid S. Miller /* 1027db8dac20SDavid S. Miller * Get and verify the address. 1028db8dac20SDavid S. Miller */ 10291cedee13SAndrey Ignatov if (usin) { 1030db8dac20SDavid S. Miller if (msg->msg_namelen < sizeof(*usin)) 1031db8dac20SDavid S. Miller return -EINVAL; 1032db8dac20SDavid S. Miller if (usin->sin_family != AF_INET) { 1033db8dac20SDavid S. Miller if (usin->sin_family != AF_UNSPEC) 1034db8dac20SDavid S. Miller return -EAFNOSUPPORT; 1035db8dac20SDavid S. Miller } 1036db8dac20SDavid S. Miller 1037db8dac20SDavid S. Miller daddr = usin->sin_addr.s_addr; 1038db8dac20SDavid S. Miller dport = usin->sin_port; 1039db8dac20SDavid S. Miller if (dport == 0) 1040db8dac20SDavid S. Miller return -EINVAL; 1041db8dac20SDavid S. Miller } else { 1042db8dac20SDavid S. Miller if (sk->sk_state != TCP_ESTABLISHED) 1043db8dac20SDavid S. Miller return -EDESTADDRREQ; 1044c720c7e8SEric Dumazet daddr = inet->inet_daddr; 1045c720c7e8SEric Dumazet dport = inet->inet_dport; 1046db8dac20SDavid S. Miller /* Open fast path for connected socket. 1047db8dac20SDavid S. Miller Route will not be used, if at least one option is set. 1048db8dac20SDavid S. Miller */ 1049db8dac20SDavid S. Miller connected = 1; 1050db8dac20SDavid S. Miller } 1051c14ac945SSoheil Hassas Yeganeh 105235178206SWillem de Bruijn ipcm_init_sk(&ipc, inet); 1053bec1f6f6SWillem de Bruijn ipc.gso_size = up->gso_size; 1054bf84a010SDaniel Borkmann 1055db8dac20SDavid S. Miller if (msg->msg_controllen) { 10562e8de857SWillem de Bruijn err = udp_cmsg_send(sk, msg, &ipc.gso_size); 10572e8de857SWillem de Bruijn if (err > 0) 10582e8de857SWillem de Bruijn err = ip_cmsg_send(sk, msg, &ipc, 10592e8de857SWillem de Bruijn sk->sk_family == AF_INET6); 10602e8de857SWillem de Bruijn if (unlikely(err < 0)) { 106191948309SEric Dumazet kfree(ipc.opt); 1062db8dac20SDavid S. Miller return err; 106391948309SEric Dumazet } 1064db8dac20SDavid S. Miller if (ipc.opt) 1065db8dac20SDavid S. Miller free = 1; 1066db8dac20SDavid S. Miller connected = 0; 1067db8dac20SDavid S. Miller } 1068f6d8bd05SEric Dumazet if (!ipc.opt) { 1069f6d8bd05SEric Dumazet struct ip_options_rcu *inet_opt; 1070f6d8bd05SEric Dumazet 1071f6d8bd05SEric Dumazet rcu_read_lock(); 1072f6d8bd05SEric Dumazet inet_opt = rcu_dereference(inet->inet_opt); 1073f6d8bd05SEric Dumazet if (inet_opt) { 1074f6d8bd05SEric Dumazet memcpy(&opt_copy, inet_opt, 1075f6d8bd05SEric Dumazet sizeof(*inet_opt) + inet_opt->opt.optlen); 1076f6d8bd05SEric Dumazet ipc.opt = &opt_copy.opt; 1077f6d8bd05SEric Dumazet } 1078f6d8bd05SEric Dumazet rcu_read_unlock(); 1079f6d8bd05SEric Dumazet } 1080db8dac20SDavid S. Miller 10811cedee13SAndrey Ignatov if (cgroup_bpf_enabled && !connected) { 10821cedee13SAndrey Ignatov err = BPF_CGROUP_RUN_PROG_UDP4_SENDMSG_LOCK(sk, 10831cedee13SAndrey Ignatov (struct sockaddr *)usin, &ipc.addr); 10841cedee13SAndrey Ignatov if (err) 10851cedee13SAndrey Ignatov goto out_free; 10861cedee13SAndrey Ignatov if (usin) { 10871cedee13SAndrey Ignatov if (usin->sin_port == 0) { 10881cedee13SAndrey Ignatov /* BPF program set invalid port. Reject it. */ 10891cedee13SAndrey Ignatov err = -EINVAL; 10901cedee13SAndrey Ignatov goto out_free; 10911cedee13SAndrey Ignatov } 10921cedee13SAndrey Ignatov daddr = usin->sin_addr.s_addr; 10931cedee13SAndrey Ignatov dport = usin->sin_port; 10941cedee13SAndrey Ignatov } 10951cedee13SAndrey Ignatov } 10961cedee13SAndrey Ignatov 1097db8dac20SDavid S. Miller saddr = ipc.addr; 1098db8dac20SDavid S. Miller ipc.addr = faddr = daddr; 1099db8dac20SDavid S. Miller 1100f6d8bd05SEric Dumazet if (ipc.opt && ipc.opt->opt.srr) { 11011b97013bSAndrey Ignatov if (!daddr) { 11021b97013bSAndrey Ignatov err = -EINVAL; 11031b97013bSAndrey Ignatov goto out_free; 11041b97013bSAndrey Ignatov } 1105f6d8bd05SEric Dumazet faddr = ipc.opt->opt.faddr; 1106db8dac20SDavid S. Miller connected = 0; 1107db8dac20SDavid S. Miller } 1108aa661581SFrancesco Fusco tos = get_rttos(&ipc, inet); 1109db8dac20SDavid S. Miller if (sock_flag(sk, SOCK_LOCALROUTE) || 1110db8dac20SDavid S. Miller (msg->msg_flags & MSG_DONTROUTE) || 1111f6d8bd05SEric Dumazet (ipc.opt && ipc.opt->opt.is_strictroute)) { 1112db8dac20SDavid S. Miller tos |= RTO_ONLINK; 1113db8dac20SDavid S. Miller connected = 0; 1114db8dac20SDavid S. Miller } 1115db8dac20SDavid S. Miller 1116db8dac20SDavid S. Miller if (ipv4_is_multicast(daddr)) { 1117854da991SRobert Shearman if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif)) 1118db8dac20SDavid S. Miller ipc.oif = inet->mc_index; 1119db8dac20SDavid S. Miller if (!saddr) 1120db8dac20SDavid S. Miller saddr = inet->mc_addr; 1121db8dac20SDavid S. Miller connected = 0; 11229515a2e0SDavid Ahern } else if (!ipc.oif) { 112376e21053SErich E. Hoover ipc.oif = inet->uc_index; 11249515a2e0SDavid Ahern } else if (ipv4_is_lbcast(daddr) && inet->uc_index) { 11259515a2e0SDavid Ahern /* oif is set, packet is to local broadcast and 11269515a2e0SDavid Ahern * and uc_index is set. oif is most likely set 11279515a2e0SDavid Ahern * by sk_bound_dev_if. If uc_index != oif check if the 11289515a2e0SDavid Ahern * oif is an L3 master and uc_index is an L3 slave. 11299515a2e0SDavid Ahern * If so, we want to allow the send using the uc_index. 11309515a2e0SDavid Ahern */ 11319515a2e0SDavid Ahern if (ipc.oif != inet->uc_index && 11329515a2e0SDavid Ahern ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk), 11339515a2e0SDavid Ahern inet->uc_index)) { 11349515a2e0SDavid Ahern ipc.oif = inet->uc_index; 11359515a2e0SDavid Ahern } 11369515a2e0SDavid Ahern } 1137db8dac20SDavid S. Miller 1138db8dac20SDavid S. Miller if (connected) 1139db8dac20SDavid S. Miller rt = (struct rtable *)sk_dst_check(sk, 0); 1140db8dac20SDavid S. Miller 114151456b29SIan Morris if (!rt) { 114284a3aa00SPavel Emelyanov struct net *net = sock_net(sk); 11439a24abfaSDavid Ahern __u8 flow_flags = inet_sk_flowi_flags(sk); 114484a3aa00SPavel Emelyanov 1145e474995fSDavid S. Miller fl4 = &fl4_stack; 11469a24abfaSDavid Ahern 11479a24abfaSDavid Ahern flowi4_init_output(fl4, ipc.oif, sk->sk_mark, tos, 11489a24abfaSDavid Ahern RT_SCOPE_UNIVERSE, sk->sk_protocol, 11499a24abfaSDavid Ahern flow_flags, 1150e2d118a1SLorenzo Colitti faddr, saddr, dport, inet->inet_sport, 1151e2d118a1SLorenzo Colitti sk->sk_uid); 1152c0951cbcSDavid S. Miller 1153e474995fSDavid S. Miller security_sk_classify_flow(sk, flowi4_to_flowi(fl4)); 1154e474995fSDavid S. Miller rt = ip_route_output_flow(net, fl4, sk); 1155b23dd4feSDavid S. Miller if (IS_ERR(rt)) { 1156b23dd4feSDavid S. Miller err = PTR_ERR(rt); 115706dc94b1SDavid S. Miller rt = NULL; 1158db8dac20SDavid S. Miller if (err == -ENETUNREACH) 1159f1d8cba6SEric Dumazet IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES); 1160db8dac20SDavid S. Miller goto out; 1161db8dac20SDavid S. Miller } 1162db8dac20SDavid S. Miller 1163db8dac20SDavid S. Miller err = -EACCES; 1164db8dac20SDavid S. Miller if ((rt->rt_flags & RTCF_BROADCAST) && 1165db8dac20SDavid S. Miller !sock_flag(sk, SOCK_BROADCAST)) 1166db8dac20SDavid S. Miller goto out; 1167db8dac20SDavid S. Miller if (connected) 1168d8d1f30bSChangli Gao sk_dst_set(sk, dst_clone(&rt->dst)); 1169db8dac20SDavid S. Miller } 1170db8dac20SDavid S. Miller 1171db8dac20SDavid S. Miller if (msg->msg_flags&MSG_CONFIRM) 1172db8dac20SDavid S. Miller goto do_confirm; 1173db8dac20SDavid S. Miller back_from_confirm: 1174db8dac20SDavid S. Miller 1175e474995fSDavid S. Miller saddr = fl4->saddr; 1176db8dac20SDavid S. Miller if (!ipc.addr) 1177e474995fSDavid S. Miller daddr = ipc.addr = fl4->daddr; 1178db8dac20SDavid S. Miller 1179903ab86dSHerbert Xu /* Lockless fast path for the non-corking case. */ 1180903ab86dSHerbert Xu if (!corkreq) { 11811cd7884dSWillem de Bruijn struct inet_cork cork; 11821cd7884dSWillem de Bruijn 1183f69e6d13SAl Viro skb = ip_make_skb(sk, fl4, getfrag, msg, ulen, 1184903ab86dSHerbert Xu sizeof(struct udphdr), &ipc, &rt, 11851cd7884dSWillem de Bruijn &cork, msg->msg_flags); 1186903ab86dSHerbert Xu err = PTR_ERR(skb); 118750c3a487SYOSHIFUJI Hideaki / 吉藤英明 if (!IS_ERR_OR_NULL(skb)) 1188bec1f6f6SWillem de Bruijn err = udp_send_skb(skb, fl4, &cork); 1189903ab86dSHerbert Xu goto out; 1190903ab86dSHerbert Xu } 1191903ab86dSHerbert Xu 1192db8dac20SDavid S. Miller lock_sock(sk); 1193db8dac20SDavid S. Miller if (unlikely(up->pending)) { 1194db8dac20SDavid S. Miller /* The socket is already corked while preparing it. */ 1195db8dac20SDavid S. Miller /* ... which is an evident application bug. --ANK */ 1196db8dac20SDavid S. Miller release_sock(sk); 1197db8dac20SDavid S. Miller 1198197df02cSMatteo Croce net_dbg_ratelimited("socket already corked\n"); 1199db8dac20SDavid S. Miller err = -EINVAL; 1200db8dac20SDavid S. Miller goto out; 1201db8dac20SDavid S. Miller } 1202db8dac20SDavid S. Miller /* 1203db8dac20SDavid S. Miller * Now cork the socket to pend data. 1204db8dac20SDavid S. Miller */ 1205b6f21b26SDavid S. Miller fl4 = &inet->cork.fl.u.ip4; 1206b6f21b26SDavid S. Miller fl4->daddr = daddr; 1207b6f21b26SDavid S. Miller fl4->saddr = saddr; 12089cce96dfSDavid S. Miller fl4->fl4_dport = dport; 12099cce96dfSDavid S. Miller fl4->fl4_sport = inet->inet_sport; 1210db8dac20SDavid S. Miller up->pending = AF_INET; 1211db8dac20SDavid S. Miller 1212db8dac20SDavid S. Miller do_append_data: 1213db8dac20SDavid S. Miller up->len += ulen; 1214f69e6d13SAl Viro err = ip_append_data(sk, fl4, getfrag, msg, ulen, 12152e77d89bSEric Dumazet sizeof(struct udphdr), &ipc, &rt, 1216db8dac20SDavid S. Miller corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); 1217db8dac20SDavid S. Miller if (err) 1218db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 1219db8dac20SDavid S. Miller else if (!corkreq) 1220db8dac20SDavid S. Miller err = udp_push_pending_frames(sk); 1221db8dac20SDavid S. Miller else if (unlikely(skb_queue_empty(&sk->sk_write_queue))) 1222db8dac20SDavid S. Miller up->pending = 0; 1223db8dac20SDavid S. Miller release_sock(sk); 1224db8dac20SDavid S. Miller 1225db8dac20SDavid S. Miller out: 1226db8dac20SDavid S. Miller ip_rt_put(rt); 12271b97013bSAndrey Ignatov out_free: 1228db8dac20SDavid S. Miller if (free) 1229db8dac20SDavid S. Miller kfree(ipc.opt); 1230db8dac20SDavid S. Miller if (!err) 1231db8dac20SDavid S. Miller return len; 1232db8dac20SDavid S. Miller /* 1233db8dac20SDavid S. Miller * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting 1234db8dac20SDavid S. Miller * ENOBUFS might not be good (it's not tunable per se), but otherwise 1235db8dac20SDavid S. Miller * we don't have a good statistic (IpOutDiscards but it can be too many 1236db8dac20SDavid S. Miller * things). We could add another new stat but at least for now that 1237db8dac20SDavid S. Miller * seems like overkill. 1238db8dac20SDavid S. Miller */ 1239db8dac20SDavid S. Miller if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) { 12406aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1241629ca23cSPavel Emelyanov UDP_MIB_SNDBUFERRORS, is_udplite); 1242db8dac20SDavid S. Miller } 1243db8dac20SDavid S. Miller return err; 1244db8dac20SDavid S. Miller 1245db8dac20SDavid S. Miller do_confirm: 12460dec879fSJulian Anastasov if (msg->msg_flags & MSG_PROBE) 12470dec879fSJulian Anastasov dst_confirm_neigh(&rt->dst, &fl4->daddr); 1248db8dac20SDavid S. Miller if (!(msg->msg_flags&MSG_PROBE) || len) 1249db8dac20SDavid S. Miller goto back_from_confirm; 1250db8dac20SDavid S. Miller err = 0; 1251db8dac20SDavid S. Miller goto out; 1252db8dac20SDavid S. Miller } 1253c482c568SEric Dumazet EXPORT_SYMBOL(udp_sendmsg); 1254db8dac20SDavid S. Miller 1255db8dac20SDavid S. Miller int udp_sendpage(struct sock *sk, struct page *page, int offset, 1256db8dac20SDavid S. Miller size_t size, int flags) 1257db8dac20SDavid S. Miller { 1258f5fca608SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 1259db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 1260db8dac20SDavid S. Miller int ret; 1261db8dac20SDavid S. Miller 1262d3f7d56aSShawn Landden if (flags & MSG_SENDPAGE_NOTLAST) 1263d3f7d56aSShawn Landden flags |= MSG_MORE; 1264d3f7d56aSShawn Landden 1265db8dac20SDavid S. Miller if (!up->pending) { 1266db8dac20SDavid S. Miller struct msghdr msg = { .msg_flags = flags|MSG_MORE }; 1267db8dac20SDavid S. Miller 1268db8dac20SDavid S. Miller /* Call udp_sendmsg to specify destination address which 1269db8dac20SDavid S. Miller * sendpage interface can't pass. 1270db8dac20SDavid S. Miller * This will succeed only when the socket is connected. 1271db8dac20SDavid S. Miller */ 12721b784140SYing Xue ret = udp_sendmsg(sk, &msg, 0); 1273db8dac20SDavid S. Miller if (ret < 0) 1274db8dac20SDavid S. Miller return ret; 1275db8dac20SDavid S. Miller } 1276db8dac20SDavid S. Miller 1277db8dac20SDavid S. Miller lock_sock(sk); 1278db8dac20SDavid S. Miller 1279db8dac20SDavid S. Miller if (unlikely(!up->pending)) { 1280db8dac20SDavid S. Miller release_sock(sk); 1281db8dac20SDavid S. Miller 1282197df02cSMatteo Croce net_dbg_ratelimited("cork failed\n"); 1283db8dac20SDavid S. Miller return -EINVAL; 1284db8dac20SDavid S. Miller } 1285db8dac20SDavid S. Miller 1286f5fca608SDavid S. Miller ret = ip_append_page(sk, &inet->cork.fl.u.ip4, 1287f5fca608SDavid S. Miller page, offset, size, flags); 1288db8dac20SDavid S. Miller if (ret == -EOPNOTSUPP) { 1289db8dac20SDavid S. Miller release_sock(sk); 1290db8dac20SDavid S. Miller return sock_no_sendpage(sk->sk_socket, page, offset, 1291db8dac20SDavid S. Miller size, flags); 1292db8dac20SDavid S. Miller } 1293db8dac20SDavid S. Miller if (ret < 0) { 1294db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 1295db8dac20SDavid S. Miller goto out; 1296db8dac20SDavid S. Miller } 1297db8dac20SDavid S. Miller 1298db8dac20SDavid S. Miller up->len += size; 1299db8dac20SDavid S. Miller if (!(up->corkflag || (flags&MSG_MORE))) 1300db8dac20SDavid S. Miller ret = udp_push_pending_frames(sk); 1301db8dac20SDavid S. Miller if (!ret) 1302db8dac20SDavid S. Miller ret = size; 1303db8dac20SDavid S. Miller out: 1304db8dac20SDavid S. Miller release_sock(sk); 1305db8dac20SDavid S. Miller return ret; 1306db8dac20SDavid S. Miller } 1307db8dac20SDavid S. Miller 1308dce4551cSPaolo Abeni #define UDP_SKB_IS_STATELESS 0x80000000 1309dce4551cSPaolo Abeni 1310b65ac446SPaolo Abeni static void udp_set_dev_scratch(struct sk_buff *skb) 1311b65ac446SPaolo Abeni { 1312dce4551cSPaolo Abeni struct udp_dev_scratch *scratch = udp_skb_scratch(skb); 1313b65ac446SPaolo Abeni 1314b65ac446SPaolo Abeni BUILD_BUG_ON(sizeof(struct udp_dev_scratch) > sizeof(long)); 1315dce4551cSPaolo Abeni scratch->_tsize_state = skb->truesize; 1316dce4551cSPaolo Abeni #if BITS_PER_LONG == 64 1317b65ac446SPaolo Abeni scratch->len = skb->len; 1318b65ac446SPaolo Abeni scratch->csum_unnecessary = !!skb_csum_unnecessary(skb); 1319b65ac446SPaolo Abeni scratch->is_linear = !skb_is_nonlinear(skb); 1320b65ac446SPaolo Abeni #endif 13213bdefdf9SPaolo Abeni /* all head states execept sp (dst, sk, nf) are always cleared by 13223bdefdf9SPaolo Abeni * udp_rcv() and we need to preserve secpath, if present, to eventually 13233bdefdf9SPaolo Abeni * process IP_CMSG_PASSSEC at recvmsg() time 13243bdefdf9SPaolo Abeni */ 13253bdefdf9SPaolo Abeni if (likely(!skb_sec_path(skb))) 1326dce4551cSPaolo Abeni scratch->_tsize_state |= UDP_SKB_IS_STATELESS; 1327dce4551cSPaolo Abeni } 1328dce4551cSPaolo Abeni 1329dce4551cSPaolo Abeni static int udp_skb_truesize(struct sk_buff *skb) 1330dce4551cSPaolo Abeni { 1331dce4551cSPaolo Abeni return udp_skb_scratch(skb)->_tsize_state & ~UDP_SKB_IS_STATELESS; 1332dce4551cSPaolo Abeni } 1333dce4551cSPaolo Abeni 1334dce4551cSPaolo Abeni static bool udp_skb_has_head_state(struct sk_buff *skb) 1335dce4551cSPaolo Abeni { 1336dce4551cSPaolo Abeni return !(udp_skb_scratch(skb)->_tsize_state & UDP_SKB_IS_STATELESS); 1337dce4551cSPaolo Abeni } 1338b65ac446SPaolo Abeni 13397c13f97fSPaolo Abeni /* fully reclaim rmem/fwd memory allocated for skb */ 13406dfb4367SPaolo Abeni static void udp_rmem_release(struct sock *sk, int size, int partial, 13416dfb4367SPaolo Abeni bool rx_queue_lock_held) 1342f970bd9eSPaolo Abeni { 13436b229cf7SEric Dumazet struct udp_sock *up = udp_sk(sk); 13442276f58aSPaolo Abeni struct sk_buff_head *sk_queue; 1345f970bd9eSPaolo Abeni int amt; 1346f970bd9eSPaolo Abeni 13476b229cf7SEric Dumazet if (likely(partial)) { 13486b229cf7SEric Dumazet up->forward_deficit += size; 13496b229cf7SEric Dumazet size = up->forward_deficit; 13500d4a6608SPaolo Abeni if (size < (sk->sk_rcvbuf >> 2)) 13516b229cf7SEric Dumazet return; 13526b229cf7SEric Dumazet } else { 13536b229cf7SEric Dumazet size += up->forward_deficit; 13546b229cf7SEric Dumazet } 13556b229cf7SEric Dumazet up->forward_deficit = 0; 13566b229cf7SEric Dumazet 13576dfb4367SPaolo Abeni /* acquire the sk_receive_queue for fwd allocated memory scheduling, 13586dfb4367SPaolo Abeni * if the called don't held it already 13596dfb4367SPaolo Abeni */ 13602276f58aSPaolo Abeni sk_queue = &sk->sk_receive_queue; 13616dfb4367SPaolo Abeni if (!rx_queue_lock_held) 13622276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 13632276f58aSPaolo Abeni 13646dfb4367SPaolo Abeni 1365f970bd9eSPaolo Abeni sk->sk_forward_alloc += size; 1366f970bd9eSPaolo Abeni amt = (sk->sk_forward_alloc - partial) & ~(SK_MEM_QUANTUM - 1); 1367f970bd9eSPaolo Abeni sk->sk_forward_alloc -= amt; 1368f970bd9eSPaolo Abeni 1369f970bd9eSPaolo Abeni if (amt) 1370f970bd9eSPaolo Abeni __sk_mem_reduce_allocated(sk, amt >> SK_MEM_QUANTUM_SHIFT); 137102ab0d13SEric Dumazet 137202ab0d13SEric Dumazet atomic_sub(size, &sk->sk_rmem_alloc); 13732276f58aSPaolo Abeni 13742276f58aSPaolo Abeni /* this can save us from acquiring the rx queue lock on next receive */ 13752276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, &up->reader_queue); 13762276f58aSPaolo Abeni 13776dfb4367SPaolo Abeni if (!rx_queue_lock_held) 13782276f58aSPaolo Abeni spin_unlock(&sk_queue->lock); 1379f970bd9eSPaolo Abeni } 1380f970bd9eSPaolo Abeni 13812276f58aSPaolo Abeni /* Note: called with reader_queue.lock held. 1382c84d9490SEric Dumazet * Instead of using skb->truesize here, find a copy of it in skb->dev_scratch 1383c84d9490SEric Dumazet * This avoids a cache line miss while receive_queue lock is held. 1384c84d9490SEric Dumazet * Look at __udp_enqueue_schedule_skb() to find where this copy is done. 1385c84d9490SEric Dumazet */ 13867c13f97fSPaolo Abeni void udp_skb_destructor(struct sock *sk, struct sk_buff *skb) 1387f970bd9eSPaolo Abeni { 1388b65ac446SPaolo Abeni prefetch(&skb->data); 1389b65ac446SPaolo Abeni udp_rmem_release(sk, udp_skb_truesize(skb), 1, false); 1390f970bd9eSPaolo Abeni } 13917c13f97fSPaolo Abeni EXPORT_SYMBOL(udp_skb_destructor); 1392f970bd9eSPaolo Abeni 13936dfb4367SPaolo Abeni /* as above, but the caller held the rx queue lock, too */ 139464f5102dSColin Ian King static void udp_skb_dtor_locked(struct sock *sk, struct sk_buff *skb) 13956dfb4367SPaolo Abeni { 1396b65ac446SPaolo Abeni prefetch(&skb->data); 1397b65ac446SPaolo Abeni udp_rmem_release(sk, udp_skb_truesize(skb), 1, true); 13986dfb4367SPaolo Abeni } 13996dfb4367SPaolo Abeni 14004b272750SEric Dumazet /* Idea of busylocks is to let producers grab an extra spinlock 14014b272750SEric Dumazet * to relieve pressure on the receive_queue spinlock shared by consumer. 14024b272750SEric Dumazet * Under flood, this means that only one producer can be in line 14034b272750SEric Dumazet * trying to acquire the receive_queue spinlock. 14044b272750SEric Dumazet * These busylock can be allocated on a per cpu manner, instead of a 14054b272750SEric Dumazet * per socket one (that would consume a cache line per socket) 14064b272750SEric Dumazet */ 14074b272750SEric Dumazet static int udp_busylocks_log __read_mostly; 14084b272750SEric Dumazet static spinlock_t *udp_busylocks __read_mostly; 14094b272750SEric Dumazet 14104b272750SEric Dumazet static spinlock_t *busylock_acquire(void *ptr) 14114b272750SEric Dumazet { 14124b272750SEric Dumazet spinlock_t *busy; 14134b272750SEric Dumazet 14144b272750SEric Dumazet busy = udp_busylocks + hash_ptr(ptr, udp_busylocks_log); 14154b272750SEric Dumazet spin_lock(busy); 14164b272750SEric Dumazet return busy; 14174b272750SEric Dumazet } 14184b272750SEric Dumazet 14194b272750SEric Dumazet static void busylock_release(spinlock_t *busy) 14204b272750SEric Dumazet { 14214b272750SEric Dumazet if (busy) 14224b272750SEric Dumazet spin_unlock(busy); 14234b272750SEric Dumazet } 14244b272750SEric Dumazet 1425f970bd9eSPaolo Abeni int __udp_enqueue_schedule_skb(struct sock *sk, struct sk_buff *skb) 1426f970bd9eSPaolo Abeni { 1427f970bd9eSPaolo Abeni struct sk_buff_head *list = &sk->sk_receive_queue; 1428f970bd9eSPaolo Abeni int rmem, delta, amt, err = -ENOMEM; 14294b272750SEric Dumazet spinlock_t *busy = NULL; 1430c8c8b127SEric Dumazet int size; 1431f970bd9eSPaolo Abeni 1432f970bd9eSPaolo Abeni /* try to avoid the costly atomic add/sub pair when the receive 1433f970bd9eSPaolo Abeni * queue is full; always allow at least a packet 1434f970bd9eSPaolo Abeni */ 1435f970bd9eSPaolo Abeni rmem = atomic_read(&sk->sk_rmem_alloc); 1436363dc73aSPaolo Abeni if (rmem > sk->sk_rcvbuf) 1437f970bd9eSPaolo Abeni goto drop; 1438f970bd9eSPaolo Abeni 1439c8c8b127SEric Dumazet /* Under mem pressure, it might be helpful to help udp_recvmsg() 1440c8c8b127SEric Dumazet * having linear skbs : 1441c8c8b127SEric Dumazet * - Reduce memory overhead and thus increase receive queue capacity 1442c8c8b127SEric Dumazet * - Less cache line misses at copyout() time 1443c8c8b127SEric Dumazet * - Less work at consume_skb() (less alien page frag freeing) 1444c8c8b127SEric Dumazet */ 14454b272750SEric Dumazet if (rmem > (sk->sk_rcvbuf >> 1)) { 1446c8c8b127SEric Dumazet skb_condense(skb); 14474b272750SEric Dumazet 14484b272750SEric Dumazet busy = busylock_acquire(sk); 14494b272750SEric Dumazet } 1450c8c8b127SEric Dumazet size = skb->truesize; 1451b65ac446SPaolo Abeni udp_set_dev_scratch(skb); 1452c8c8b127SEric Dumazet 1453f970bd9eSPaolo Abeni /* we drop only if the receive buf is full and the receive 1454f970bd9eSPaolo Abeni * queue contains some other skb 1455f970bd9eSPaolo Abeni */ 1456f970bd9eSPaolo Abeni rmem = atomic_add_return(size, &sk->sk_rmem_alloc); 1457363dc73aSPaolo Abeni if (rmem > (size + sk->sk_rcvbuf)) 1458f970bd9eSPaolo Abeni goto uncharge_drop; 1459f970bd9eSPaolo Abeni 1460f970bd9eSPaolo Abeni spin_lock(&list->lock); 1461f970bd9eSPaolo Abeni if (size >= sk->sk_forward_alloc) { 1462f970bd9eSPaolo Abeni amt = sk_mem_pages(size); 1463f970bd9eSPaolo Abeni delta = amt << SK_MEM_QUANTUM_SHIFT; 1464f970bd9eSPaolo Abeni if (!__sk_mem_raise_allocated(sk, delta, amt, SK_MEM_RECV)) { 1465f970bd9eSPaolo Abeni err = -ENOBUFS; 1466f970bd9eSPaolo Abeni spin_unlock(&list->lock); 1467f970bd9eSPaolo Abeni goto uncharge_drop; 1468f970bd9eSPaolo Abeni } 1469f970bd9eSPaolo Abeni 1470f970bd9eSPaolo Abeni sk->sk_forward_alloc += delta; 1471f970bd9eSPaolo Abeni } 1472f970bd9eSPaolo Abeni 1473f970bd9eSPaolo Abeni sk->sk_forward_alloc -= size; 1474f970bd9eSPaolo Abeni 14757c13f97fSPaolo Abeni /* no need to setup a destructor, we will explicitly release the 14767c13f97fSPaolo Abeni * forward allocated memory on dequeue 14777c13f97fSPaolo Abeni */ 1478f970bd9eSPaolo Abeni sock_skb_set_dropcount(sk, skb); 1479f970bd9eSPaolo Abeni 1480f970bd9eSPaolo Abeni __skb_queue_tail(list, skb); 1481f970bd9eSPaolo Abeni spin_unlock(&list->lock); 1482f970bd9eSPaolo Abeni 1483f970bd9eSPaolo Abeni if (!sock_flag(sk, SOCK_DEAD)) 1484f970bd9eSPaolo Abeni sk->sk_data_ready(sk); 1485f970bd9eSPaolo Abeni 14864b272750SEric Dumazet busylock_release(busy); 1487f970bd9eSPaolo Abeni return 0; 1488f970bd9eSPaolo Abeni 1489f970bd9eSPaolo Abeni uncharge_drop: 1490f970bd9eSPaolo Abeni atomic_sub(skb->truesize, &sk->sk_rmem_alloc); 1491f970bd9eSPaolo Abeni 1492f970bd9eSPaolo Abeni drop: 1493f970bd9eSPaolo Abeni atomic_inc(&sk->sk_drops); 14944b272750SEric Dumazet busylock_release(busy); 1495f970bd9eSPaolo Abeni return err; 1496f970bd9eSPaolo Abeni } 1497f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(__udp_enqueue_schedule_skb); 1498f970bd9eSPaolo Abeni 1499c915fe13SPaolo Abeni void udp_destruct_sock(struct sock *sk) 1500f970bd9eSPaolo Abeni { 1501f970bd9eSPaolo Abeni /* reclaim completely the forward allocated memory */ 15022276f58aSPaolo Abeni struct udp_sock *up = udp_sk(sk); 15037c13f97fSPaolo Abeni unsigned int total = 0; 15047c13f97fSPaolo Abeni struct sk_buff *skb; 15057c13f97fSPaolo Abeni 15062276f58aSPaolo Abeni skb_queue_splice_tail_init(&sk->sk_receive_queue, &up->reader_queue); 15072276f58aSPaolo Abeni while ((skb = __skb_dequeue(&up->reader_queue)) != NULL) { 15087c13f97fSPaolo Abeni total += skb->truesize; 15097c13f97fSPaolo Abeni kfree_skb(skb); 15107c13f97fSPaolo Abeni } 15116dfb4367SPaolo Abeni udp_rmem_release(sk, total, 0, true); 15127c13f97fSPaolo Abeni 1513f970bd9eSPaolo Abeni inet_sock_destruct(sk); 1514f970bd9eSPaolo Abeni } 1515c915fe13SPaolo Abeni EXPORT_SYMBOL_GPL(udp_destruct_sock); 1516f970bd9eSPaolo Abeni 1517f970bd9eSPaolo Abeni int udp_init_sock(struct sock *sk) 1518f970bd9eSPaolo Abeni { 15192276f58aSPaolo Abeni skb_queue_head_init(&udp_sk(sk)->reader_queue); 1520f970bd9eSPaolo Abeni sk->sk_destruct = udp_destruct_sock; 1521f970bd9eSPaolo Abeni return 0; 1522f970bd9eSPaolo Abeni } 1523f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(udp_init_sock); 1524f970bd9eSPaolo Abeni 1525f970bd9eSPaolo Abeni void skb_consume_udp(struct sock *sk, struct sk_buff *skb, int len) 1526f970bd9eSPaolo Abeni { 1527f970bd9eSPaolo Abeni if (unlikely(READ_ONCE(sk->sk_peek_off) >= 0)) { 1528f970bd9eSPaolo Abeni bool slow = lock_sock_fast(sk); 1529f970bd9eSPaolo Abeni 1530f970bd9eSPaolo Abeni sk_peek_offset_bwd(sk, len); 1531f970bd9eSPaolo Abeni unlock_sock_fast(sk, slow); 1532f970bd9eSPaolo Abeni } 15330a463c78SPaolo Abeni 1534ca2c1418SPaolo Abeni if (!skb_unref(skb)) 1535ca2c1418SPaolo Abeni return; 1536ca2c1418SPaolo Abeni 1537dce4551cSPaolo Abeni /* In the more common cases we cleared the head states previously, 1538dce4551cSPaolo Abeni * see __udp_queue_rcv_skb(). 15390ddf3fb2SPaolo Abeni */ 1540dce4551cSPaolo Abeni if (unlikely(udp_skb_has_head_state(skb))) 15410ddf3fb2SPaolo Abeni skb_release_head_state(skb); 1542ca2c1418SPaolo Abeni __consume_stateless_skb(skb); 1543f970bd9eSPaolo Abeni } 1544f970bd9eSPaolo Abeni EXPORT_SYMBOL_GPL(skb_consume_udp); 1545f970bd9eSPaolo Abeni 15462276f58aSPaolo Abeni static struct sk_buff *__first_packet_length(struct sock *sk, 15472276f58aSPaolo Abeni struct sk_buff_head *rcvq, 15482276f58aSPaolo Abeni int *total) 15492276f58aSPaolo Abeni { 15502276f58aSPaolo Abeni struct sk_buff *skb; 15512276f58aSPaolo Abeni 15529bd780f5SPaolo Abeni while ((skb = skb_peek(rcvq)) != NULL) { 15539bd780f5SPaolo Abeni if (udp_lib_checksum_complete(skb)) { 15542276f58aSPaolo Abeni __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, 15552276f58aSPaolo Abeni IS_UDPLITE(sk)); 15562276f58aSPaolo Abeni __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, 15572276f58aSPaolo Abeni IS_UDPLITE(sk)); 15582276f58aSPaolo Abeni atomic_inc(&sk->sk_drops); 15592276f58aSPaolo Abeni __skb_unlink(skb, rcvq); 15602276f58aSPaolo Abeni *total += skb->truesize; 15612276f58aSPaolo Abeni kfree_skb(skb); 15629bd780f5SPaolo Abeni } else { 15639bd780f5SPaolo Abeni /* the csum related bits could be changed, refresh 15649bd780f5SPaolo Abeni * the scratch area 15659bd780f5SPaolo Abeni */ 15669bd780f5SPaolo Abeni udp_set_dev_scratch(skb); 15679bd780f5SPaolo Abeni break; 15689bd780f5SPaolo Abeni } 15692276f58aSPaolo Abeni } 15702276f58aSPaolo Abeni return skb; 15712276f58aSPaolo Abeni } 15722276f58aSPaolo Abeni 157385584672SEric Dumazet /** 157485584672SEric Dumazet * first_packet_length - return length of first packet in receive queue 157585584672SEric Dumazet * @sk: socket 157685584672SEric Dumazet * 157785584672SEric Dumazet * Drops all bad checksum frames, until a valid one is found. 1578e83c6744SEric Dumazet * Returns the length of found skb, or -1 if none is found. 157985584672SEric Dumazet */ 1580e83c6744SEric Dumazet static int first_packet_length(struct sock *sk) 158185584672SEric Dumazet { 15822276f58aSPaolo Abeni struct sk_buff_head *rcvq = &udp_sk(sk)->reader_queue; 15832276f58aSPaolo Abeni struct sk_buff_head *sk_queue = &sk->sk_receive_queue; 158485584672SEric Dumazet struct sk_buff *skb; 15857c13f97fSPaolo Abeni int total = 0; 1586e83c6744SEric Dumazet int res; 158785584672SEric Dumazet 158885584672SEric Dumazet spin_lock_bh(&rcvq->lock); 15892276f58aSPaolo Abeni skb = __first_packet_length(sk, rcvq, &total); 15902276f58aSPaolo Abeni if (!skb && !skb_queue_empty(sk_queue)) { 15912276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 15922276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, rcvq); 15932276f58aSPaolo Abeni spin_unlock(&sk_queue->lock); 15942276f58aSPaolo Abeni 15952276f58aSPaolo Abeni skb = __first_packet_length(sk, rcvq, &total); 159685584672SEric Dumazet } 1597e83c6744SEric Dumazet res = skb ? skb->len : -1; 15987c13f97fSPaolo Abeni if (total) 15996dfb4367SPaolo Abeni udp_rmem_release(sk, total, 1, false); 160085584672SEric Dumazet spin_unlock_bh(&rcvq->lock); 160185584672SEric Dumazet return res; 160285584672SEric Dumazet } 160385584672SEric Dumazet 16041da177e4SLinus Torvalds /* 16051da177e4SLinus Torvalds * IOCTL requests applicable to the UDP protocol 16061da177e4SLinus Torvalds */ 16071da177e4SLinus Torvalds 16081da177e4SLinus Torvalds int udp_ioctl(struct sock *sk, int cmd, unsigned long arg) 16091da177e4SLinus Torvalds { 16106516c655SStephen Hemminger switch (cmd) { 16111da177e4SLinus Torvalds case SIOCOUTQ: 16121da177e4SLinus Torvalds { 161331e6d363SEric Dumazet int amount = sk_wmem_alloc_get(sk); 161431e6d363SEric Dumazet 16151da177e4SLinus Torvalds return put_user(amount, (int __user *)arg); 16161da177e4SLinus Torvalds } 16171da177e4SLinus Torvalds 16181da177e4SLinus Torvalds case SIOCINQ: 16191da177e4SLinus Torvalds { 1620e83c6744SEric Dumazet int amount = max_t(int, 0, first_packet_length(sk)); 16211da177e4SLinus Torvalds 16221da177e4SLinus Torvalds return put_user(amount, (int __user *)arg); 16231da177e4SLinus Torvalds } 16241da177e4SLinus Torvalds 16251da177e4SLinus Torvalds default: 16261da177e4SLinus Torvalds return -ENOIOCTLCMD; 16271da177e4SLinus Torvalds } 16286516c655SStephen Hemminger 16296516c655SStephen Hemminger return 0; 16301da177e4SLinus Torvalds } 1631c482c568SEric Dumazet EXPORT_SYMBOL(udp_ioctl); 16321da177e4SLinus Torvalds 16332276f58aSPaolo Abeni struct sk_buff *__skb_recv_udp(struct sock *sk, unsigned int flags, 1634*fd69c399SPaolo Abeni int noblock, int *off, int *err) 16352276f58aSPaolo Abeni { 16362276f58aSPaolo Abeni struct sk_buff_head *sk_queue = &sk->sk_receive_queue; 16372276f58aSPaolo Abeni struct sk_buff_head *queue; 16382276f58aSPaolo Abeni struct sk_buff *last; 16392276f58aSPaolo Abeni long timeo; 16402276f58aSPaolo Abeni int error; 16412276f58aSPaolo Abeni 16422276f58aSPaolo Abeni queue = &udp_sk(sk)->reader_queue; 16432276f58aSPaolo Abeni flags |= noblock ? MSG_DONTWAIT : 0; 16442276f58aSPaolo Abeni timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); 16452276f58aSPaolo Abeni do { 16462276f58aSPaolo Abeni struct sk_buff *skb; 16472276f58aSPaolo Abeni 16482276f58aSPaolo Abeni error = sock_error(sk); 16492276f58aSPaolo Abeni if (error) 16502276f58aSPaolo Abeni break; 16512276f58aSPaolo Abeni 16522276f58aSPaolo Abeni error = -EAGAIN; 16532276f58aSPaolo Abeni do { 16542276f58aSPaolo Abeni spin_lock_bh(&queue->lock); 16552276f58aSPaolo Abeni skb = __skb_try_recv_from_queue(sk, queue, flags, 16562276f58aSPaolo Abeni udp_skb_destructor, 1657*fd69c399SPaolo Abeni off, err, &last); 16582276f58aSPaolo Abeni if (skb) { 16592276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 16602276f58aSPaolo Abeni return skb; 16612276f58aSPaolo Abeni } 16622276f58aSPaolo Abeni 16632276f58aSPaolo Abeni if (skb_queue_empty(sk_queue)) { 16642276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 16652276f58aSPaolo Abeni goto busy_check; 16662276f58aSPaolo Abeni } 16672276f58aSPaolo Abeni 16686dfb4367SPaolo Abeni /* refill the reader queue and walk it again 16696dfb4367SPaolo Abeni * keep both queues locked to avoid re-acquiring 16706dfb4367SPaolo Abeni * the sk_receive_queue lock if fwd memory scheduling 16716dfb4367SPaolo Abeni * is needed. 16726dfb4367SPaolo Abeni */ 16732276f58aSPaolo Abeni spin_lock(&sk_queue->lock); 16742276f58aSPaolo Abeni skb_queue_splice_tail_init(sk_queue, queue); 16752276f58aSPaolo Abeni 16762276f58aSPaolo Abeni skb = __skb_try_recv_from_queue(sk, queue, flags, 16776dfb4367SPaolo Abeni udp_skb_dtor_locked, 1678*fd69c399SPaolo Abeni off, err, &last); 16796dfb4367SPaolo Abeni spin_unlock(&sk_queue->lock); 16802276f58aSPaolo Abeni spin_unlock_bh(&queue->lock); 1681de321ed3SAndrey Vagin if (skb) 16822276f58aSPaolo Abeni return skb; 16832276f58aSPaolo Abeni 16842276f58aSPaolo Abeni busy_check: 16852276f58aSPaolo Abeni if (!sk_can_busy_loop(sk)) 16862276f58aSPaolo Abeni break; 16872276f58aSPaolo Abeni 16882276f58aSPaolo Abeni sk_busy_loop(sk, flags & MSG_DONTWAIT); 16892276f58aSPaolo Abeni } while (!skb_queue_empty(sk_queue)); 16902276f58aSPaolo Abeni 16912276f58aSPaolo Abeni /* sk_queue is empty, reader_queue may contain peeked packets */ 16922276f58aSPaolo Abeni } while (timeo && 16932276f58aSPaolo Abeni !__skb_wait_for_more_packets(sk, &error, &timeo, 16942276f58aSPaolo Abeni (struct sk_buff *)sk_queue)); 16952276f58aSPaolo Abeni 16962276f58aSPaolo Abeni *err = error; 16972276f58aSPaolo Abeni return NULL; 16982276f58aSPaolo Abeni } 16997e823644SJiri Kosina EXPORT_SYMBOL(__skb_recv_udp); 17002276f58aSPaolo Abeni 1701db8dac20SDavid S. Miller /* 1702db8dac20SDavid S. Miller * This should be easy, if there is something there we 1703db8dac20SDavid S. Miller * return it, otherwise we block. 1704db8dac20SDavid S. Miller */ 1705db8dac20SDavid S. Miller 17061b784140SYing Xue int udp_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock, 17071b784140SYing Xue int flags, int *addr_len) 1708db8dac20SDavid S. Miller { 1709db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sk); 1710342dfc30SSteffen Hurrle DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name); 1711db8dac20SDavid S. Miller struct sk_buff *skb; 171259c2cdaeSDavid S. Miller unsigned int ulen, copied; 1713*fd69c399SPaolo Abeni int off, err, peeking = flags & MSG_PEEK; 1714db8dac20SDavid S. Miller int is_udplite = IS_UDPLITE(sk); 1715197c949eSEric Dumazet bool checksum_valid = false; 1716db8dac20SDavid S. Miller 1717db8dac20SDavid S. Miller if (flags & MSG_ERRQUEUE) 171885fbaa75SHannes Frederic Sowa return ip_recv_error(sk, msg, len, addr_len); 1719db8dac20SDavid S. Miller 1720db8dac20SDavid S. Miller try_again: 1721a0917e0bSMatthew Dawson off = sk_peek_offset(sk, flags); 1722*fd69c399SPaolo Abeni skb = __skb_recv_udp(sk, flags, noblock, &off, &err); 1723db8dac20SDavid S. Miller if (!skb) 1724627d2d6bSsamanthakumar return err; 1725db8dac20SDavid S. Miller 1726b65ac446SPaolo Abeni ulen = udp_skb_len(skb); 172759c2cdaeSDavid S. Miller copied = len; 1728627d2d6bSsamanthakumar if (copied > ulen - off) 1729627d2d6bSsamanthakumar copied = ulen - off; 173059c2cdaeSDavid S. Miller else if (copied < ulen) 1731db8dac20SDavid S. Miller msg->msg_flags |= MSG_TRUNC; 1732db8dac20SDavid S. Miller 1733db8dac20SDavid S. Miller /* 1734db8dac20SDavid S. Miller * If checksum is needed at all, try to do it while copying the 1735db8dac20SDavid S. Miller * data. If the data is truncated, or if we only want a partial 1736db8dac20SDavid S. Miller * coverage checksum (UDP-Lite), do it before the copy. 1737db8dac20SDavid S. Miller */ 1738db8dac20SDavid S. Miller 1739d21dbdfeSEric Dumazet if (copied < ulen || peeking || 1740d21dbdfeSEric Dumazet (is_udplite && UDP_SKB_CB(skb)->partial_cov)) { 1741b65ac446SPaolo Abeni checksum_valid = udp_skb_csum_unnecessary(skb) || 1742b65ac446SPaolo Abeni !__udp_lib_checksum_complete(skb); 1743197c949eSEric Dumazet if (!checksum_valid) 1744db8dac20SDavid S. Miller goto csum_copy_err; 1745db8dac20SDavid S. Miller } 1746db8dac20SDavid S. Miller 1747b65ac446SPaolo Abeni if (checksum_valid || udp_skb_csum_unnecessary(skb)) { 1748b65ac446SPaolo Abeni if (udp_skb_is_linear(skb)) 1749b65ac446SPaolo Abeni err = copy_linear_skb(skb, copied, off, &msg->msg_iter); 1750b65ac446SPaolo Abeni else 1751627d2d6bSsamanthakumar err = skb_copy_datagram_msg(skb, off, msg, copied); 1752b65ac446SPaolo Abeni } else { 1753627d2d6bSsamanthakumar err = skb_copy_and_csum_datagram_msg(skb, off, msg); 1754db8dac20SDavid S. Miller 1755db8dac20SDavid S. Miller if (err == -EINVAL) 1756db8dac20SDavid S. Miller goto csum_copy_err; 1757db8dac20SDavid S. Miller } 1758db8dac20SDavid S. Miller 175922911fc5SEric Dumazet if (unlikely(err)) { 1760*fd69c399SPaolo Abeni if (!peeking) { 1761979402b1SEric Dumazet atomic_inc(&sk->sk_drops); 17626aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1763979402b1SEric Dumazet UDP_MIB_INERRORS, is_udplite); 1764979402b1SEric Dumazet } 1765850cbaddSPaolo Abeni kfree_skb(skb); 1766627d2d6bSsamanthakumar return err; 176722911fc5SEric Dumazet } 1768db8dac20SDavid S. Miller 1769*fd69c399SPaolo Abeni if (!peeking) 17706aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), 1771629ca23cSPavel Emelyanov UDP_MIB_INDATAGRAMS, is_udplite); 1772db8dac20SDavid S. Miller 17733b885787SNeil Horman sock_recv_ts_and_drops(msg, sk, skb); 1774db8dac20SDavid S. Miller 1775db8dac20SDavid S. Miller /* Copy the address. */ 1776c482c568SEric Dumazet if (sin) { 1777db8dac20SDavid S. Miller sin->sin_family = AF_INET; 1778db8dac20SDavid S. Miller sin->sin_port = udp_hdr(skb)->source; 1779db8dac20SDavid S. Miller sin->sin_addr.s_addr = ip_hdr(skb)->saddr; 1780db8dac20SDavid S. Miller memset(sin->sin_zero, 0, sizeof(sin->sin_zero)); 1781bceaa902SHannes Frederic Sowa *addr_len = sizeof(*sin); 1782db8dac20SDavid S. Miller } 1783bcd1665eSPaolo Abeni 1784bcd1665eSPaolo Abeni if (udp_sk(sk)->gro_enabled) 1785bcd1665eSPaolo Abeni udp_cmsg_recv(msg, sk, skb); 1786bcd1665eSPaolo Abeni 1787db8dac20SDavid S. Miller if (inet->cmsg_flags) 1788ad959036SPaolo Abeni ip_cmsg_recv_offset(msg, sk, skb, sizeof(struct udphdr), off); 1789db8dac20SDavid S. Miller 179059c2cdaeSDavid S. Miller err = copied; 1791db8dac20SDavid S. Miller if (flags & MSG_TRUNC) 1792db8dac20SDavid S. Miller err = ulen; 1793db8dac20SDavid S. Miller 1794850cbaddSPaolo Abeni skb_consume_udp(sk, skb, peeking ? -err : err); 1795db8dac20SDavid S. Miller return err; 1796db8dac20SDavid S. Miller 1797db8dac20SDavid S. Miller csum_copy_err: 17982276f58aSPaolo Abeni if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags, 17992276f58aSPaolo Abeni udp_skb_destructor)) { 18006aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); 18016aef70a8SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 18026a5dc9e5SEric Dumazet } 1803850cbaddSPaolo Abeni kfree_skb(skb); 1804db8dac20SDavid S. Miller 1805beb39db5SEric Dumazet /* starting over for a new packet, but check if we need to yield */ 1806beb39db5SEric Dumazet cond_resched(); 18079cfaa8deSXufeng Zhang msg->msg_flags &= ~MSG_TRUNC; 1808db8dac20SDavid S. Miller goto try_again; 1809db8dac20SDavid S. Miller } 1810db8dac20SDavid S. Miller 1811d74bad4eSAndrey Ignatov int udp_pre_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len) 1812d74bad4eSAndrey Ignatov { 1813d74bad4eSAndrey Ignatov /* This check is replicated from __ip4_datagram_connect() and 1814d74bad4eSAndrey Ignatov * intended to prevent BPF program called below from accessing bytes 1815d74bad4eSAndrey Ignatov * that are out of the bound specified by user in addr_len. 1816d74bad4eSAndrey Ignatov */ 1817d74bad4eSAndrey Ignatov if (addr_len < sizeof(struct sockaddr_in)) 1818d74bad4eSAndrey Ignatov return -EINVAL; 1819d74bad4eSAndrey Ignatov 1820d74bad4eSAndrey Ignatov return BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr); 1821d74bad4eSAndrey Ignatov } 1822d74bad4eSAndrey Ignatov EXPORT_SYMBOL(udp_pre_connect); 1823d74bad4eSAndrey Ignatov 1824286c72deSEric Dumazet int __udp_disconnect(struct sock *sk, int flags) 18251da177e4SLinus Torvalds { 18261da177e4SLinus Torvalds struct inet_sock *inet = inet_sk(sk); 18271da177e4SLinus Torvalds /* 18281da177e4SLinus Torvalds * 1003.1g - break association. 18291da177e4SLinus Torvalds */ 18301da177e4SLinus Torvalds 18311da177e4SLinus Torvalds sk->sk_state = TCP_CLOSE; 1832c720c7e8SEric Dumazet inet->inet_daddr = 0; 1833c720c7e8SEric Dumazet inet->inet_dport = 0; 1834bdeab991STom Herbert sock_rps_reset_rxhash(sk); 18351da177e4SLinus Torvalds sk->sk_bound_dev_if = 0; 18361da177e4SLinus Torvalds if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK)) 18371da177e4SLinus Torvalds inet_reset_saddr(sk); 18381da177e4SLinus Torvalds 18391da177e4SLinus Torvalds if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) { 18401da177e4SLinus Torvalds sk->sk_prot->unhash(sk); 1841c720c7e8SEric Dumazet inet->inet_sport = 0; 18421da177e4SLinus Torvalds } 18431da177e4SLinus Torvalds sk_dst_reset(sk); 18441da177e4SLinus Torvalds return 0; 18451da177e4SLinus Torvalds } 1846286c72deSEric Dumazet EXPORT_SYMBOL(__udp_disconnect); 1847286c72deSEric Dumazet 1848286c72deSEric Dumazet int udp_disconnect(struct sock *sk, int flags) 1849286c72deSEric Dumazet { 1850286c72deSEric Dumazet lock_sock(sk); 1851286c72deSEric Dumazet __udp_disconnect(sk, flags); 1852286c72deSEric Dumazet release_sock(sk); 1853286c72deSEric Dumazet return 0; 1854286c72deSEric Dumazet } 1855c482c568SEric Dumazet EXPORT_SYMBOL(udp_disconnect); 18561da177e4SLinus Torvalds 1857645ca708SEric Dumazet void udp_lib_unhash(struct sock *sk) 1858645ca708SEric Dumazet { 1859723b4610SEric Dumazet if (sk_hashed(sk)) { 1860645ca708SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 1861512615b6SEric Dumazet struct udp_hslot *hslot, *hslot2; 1862512615b6SEric Dumazet 1863512615b6SEric Dumazet hslot = udp_hashslot(udptable, sock_net(sk), 1864d4cada4aSEric Dumazet udp_sk(sk)->udp_port_hash); 1865512615b6SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 1866645ca708SEric Dumazet 1867c8db3fecSEric Dumazet spin_lock_bh(&hslot->lock); 1868e32ea7e7SCraig Gallek if (rcu_access_pointer(sk->sk_reuseport_cb)) 1869e32ea7e7SCraig Gallek reuseport_detach_sock(sk); 1870ca065d0cSEric Dumazet if (sk_del_node_init_rcu(sk)) { 1871fdcc8aa9SEric Dumazet hslot->count--; 1872c720c7e8SEric Dumazet inet_sk(sk)->inet_num = 0; 1873645ca708SEric Dumazet sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); 1874512615b6SEric Dumazet 1875512615b6SEric Dumazet spin_lock(&hslot2->lock); 1876ca065d0cSEric Dumazet hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node); 1877512615b6SEric Dumazet hslot2->count--; 1878512615b6SEric Dumazet spin_unlock(&hslot2->lock); 1879645ca708SEric Dumazet } 1880c8db3fecSEric Dumazet spin_unlock_bh(&hslot->lock); 1881645ca708SEric Dumazet } 1882723b4610SEric Dumazet } 1883645ca708SEric Dumazet EXPORT_SYMBOL(udp_lib_unhash); 1884645ca708SEric Dumazet 1885719f8358SEric Dumazet /* 1886719f8358SEric Dumazet * inet_rcv_saddr was changed, we must rehash secondary hash 1887719f8358SEric Dumazet */ 1888719f8358SEric Dumazet void udp_lib_rehash(struct sock *sk, u16 newhash) 1889719f8358SEric Dumazet { 1890719f8358SEric Dumazet if (sk_hashed(sk)) { 1891719f8358SEric Dumazet struct udp_table *udptable = sk->sk_prot->h.udp_table; 1892719f8358SEric Dumazet struct udp_hslot *hslot, *hslot2, *nhslot2; 1893719f8358SEric Dumazet 1894719f8358SEric Dumazet hslot2 = udp_hashslot2(udptable, udp_sk(sk)->udp_portaddr_hash); 1895719f8358SEric Dumazet nhslot2 = udp_hashslot2(udptable, newhash); 1896719f8358SEric Dumazet udp_sk(sk)->udp_portaddr_hash = newhash; 1897e32ea7e7SCraig Gallek 1898e32ea7e7SCraig Gallek if (hslot2 != nhslot2 || 1899e32ea7e7SCraig Gallek rcu_access_pointer(sk->sk_reuseport_cb)) { 1900719f8358SEric Dumazet hslot = udp_hashslot(udptable, sock_net(sk), 1901719f8358SEric Dumazet udp_sk(sk)->udp_port_hash); 1902719f8358SEric Dumazet /* we must lock primary chain too */ 1903719f8358SEric Dumazet spin_lock_bh(&hslot->lock); 1904e32ea7e7SCraig Gallek if (rcu_access_pointer(sk->sk_reuseport_cb)) 1905e32ea7e7SCraig Gallek reuseport_detach_sock(sk); 1906719f8358SEric Dumazet 1907e32ea7e7SCraig Gallek if (hslot2 != nhslot2) { 1908719f8358SEric Dumazet spin_lock(&hslot2->lock); 1909ca065d0cSEric Dumazet hlist_del_init_rcu(&udp_sk(sk)->udp_portaddr_node); 1910719f8358SEric Dumazet hslot2->count--; 1911719f8358SEric Dumazet spin_unlock(&hslot2->lock); 1912719f8358SEric Dumazet 1913719f8358SEric Dumazet spin_lock(&nhslot2->lock); 1914ca065d0cSEric Dumazet hlist_add_head_rcu(&udp_sk(sk)->udp_portaddr_node, 1915719f8358SEric Dumazet &nhslot2->head); 1916719f8358SEric Dumazet nhslot2->count++; 1917719f8358SEric Dumazet spin_unlock(&nhslot2->lock); 1918e32ea7e7SCraig Gallek } 1919719f8358SEric Dumazet 1920719f8358SEric Dumazet spin_unlock_bh(&hslot->lock); 1921719f8358SEric Dumazet } 1922719f8358SEric Dumazet } 1923719f8358SEric Dumazet } 1924719f8358SEric Dumazet EXPORT_SYMBOL(udp_lib_rehash); 1925719f8358SEric Dumazet 19268f6b5392SAlexey Kodanev void udp_v4_rehash(struct sock *sk) 1927719f8358SEric Dumazet { 1928f0b1e64cSMartin KaFai Lau u16 new_hash = ipv4_portaddr_hash(sock_net(sk), 1929719f8358SEric Dumazet inet_sk(sk)->inet_rcv_saddr, 1930719f8358SEric Dumazet inet_sk(sk)->inet_num); 1931719f8358SEric Dumazet udp_lib_rehash(sk, new_hash); 1932719f8358SEric Dumazet } 1933719f8358SEric Dumazet 1934a3f96c47SPaolo Abeni static int __udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 193593821778SHerbert Xu { 1936fec5e652STom Herbert int rc; 193793821778SHerbert Xu 1938005ec974SShawn Bohrer if (inet_sk(sk)->inet_daddr) { 1939bdeab991STom Herbert sock_rps_save_rxhash(sk, skb); 1940005ec974SShawn Bohrer sk_mark_napi_id(sk, skb); 19412c8c56e1SEric Dumazet sk_incoming_cpu_update(sk); 1942e68b6e50SEric Dumazet } else { 1943e68b6e50SEric Dumazet sk_mark_napi_id_once(sk, skb); 1944005ec974SShawn Bohrer } 1945fec5e652STom Herbert 1946850cbaddSPaolo Abeni rc = __udp_enqueue_schedule_skb(sk, skb); 1947766e9037SEric Dumazet if (rc < 0) { 1948766e9037SEric Dumazet int is_udplite = IS_UDPLITE(sk); 1949766e9037SEric Dumazet 195093821778SHerbert Xu /* Note that an ENOMEM error is charged twice */ 1951766e9037SEric Dumazet if (rc == -ENOMEM) 1952e61da9e2SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_RCVBUFERRORS, 195393821778SHerbert Xu is_udplite); 1954e61da9e2SEric Dumazet UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 1955766e9037SEric Dumazet kfree_skb(skb); 1956296f7ea7SSatoru Moriya trace_udp_fail_queue_rcv_skb(rc, sk); 1957766e9037SEric Dumazet return -1; 195893821778SHerbert Xu } 195993821778SHerbert Xu 196093821778SHerbert Xu return 0; 196193821778SHerbert Xu } 196293821778SHerbert Xu 1963db8dac20SDavid S. Miller /* returns: 1964db8dac20SDavid S. Miller * -1: error 1965db8dac20SDavid S. Miller * 0: success 1966db8dac20SDavid S. Miller * >0: "udp encap" protocol resubmission 1967db8dac20SDavid S. Miller * 1968db8dac20SDavid S. Miller * Note that in the success and error cases, the skb is assumed to 1969db8dac20SDavid S. Miller * have either been requeued or freed. 1970db8dac20SDavid S. Miller */ 1971cf329aa4SPaolo Abeni static int udp_queue_rcv_one_skb(struct sock *sk, struct sk_buff *skb) 1972db8dac20SDavid S. Miller { 1973db8dac20SDavid S. Miller struct udp_sock *up = udp_sk(sk); 1974db8dac20SDavid S. Miller int is_udplite = IS_UDPLITE(sk); 1975db8dac20SDavid S. Miller 1976db8dac20SDavid S. Miller /* 1977db8dac20SDavid S. Miller * Charge it to the socket, dropping if the queue is full. 1978db8dac20SDavid S. Miller */ 1979db8dac20SDavid S. Miller if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) 1980db8dac20SDavid S. Miller goto drop; 1981db8dac20SDavid S. Miller nf_reset(skb); 1982db8dac20SDavid S. Miller 198388ab3108SDavidlohr Bueso if (static_branch_unlikely(&udp_encap_needed_key) && up->encap_type) { 19840ad92ad0SEric Dumazet int (*encap_rcv)(struct sock *sk, struct sk_buff *skb); 19850ad92ad0SEric Dumazet 1986db8dac20SDavid S. Miller /* 1987db8dac20SDavid S. Miller * This is an encapsulation socket so pass the skb to 1988db8dac20SDavid S. Miller * the socket's udp_encap_rcv() hook. Otherwise, just 1989db8dac20SDavid S. Miller * fall through and pass this up the UDP socket. 1990db8dac20SDavid S. Miller * up->encap_rcv() returns the following value: 1991db8dac20SDavid S. Miller * =0 if skb was successfully passed to the encap 1992db8dac20SDavid S. Miller * handler or was discarded by it. 1993db8dac20SDavid S. Miller * >0 if skb should be passed on to UDP. 1994db8dac20SDavid S. Miller * <0 if skb should be resubmitted as proto -N 1995db8dac20SDavid S. Miller */ 1996db8dac20SDavid S. Miller 1997db8dac20SDavid S. Miller /* if we're overly short, let UDP handle it */ 19986aa7de05SMark Rutland encap_rcv = READ_ONCE(up->encap_rcv); 1999e5aed006SHannes Frederic Sowa if (encap_rcv) { 2000db8dac20SDavid S. Miller int ret; 2001db8dac20SDavid S. Miller 20020a80966bSTom Herbert /* Verify checksum before giving to encap */ 20030a80966bSTom Herbert if (udp_lib_checksum_complete(skb)) 20040a80966bSTom Herbert goto csum_error; 20050a80966bSTom Herbert 20060ad92ad0SEric Dumazet ret = encap_rcv(sk, skb); 2007db8dac20SDavid S. Miller if (ret <= 0) { 200802c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), 20090283328eSPavel Emelyanov UDP_MIB_INDATAGRAMS, 2010db8dac20SDavid S. Miller is_udplite); 2011db8dac20SDavid S. Miller return -ret; 2012db8dac20SDavid S. Miller } 2013db8dac20SDavid S. Miller } 2014db8dac20SDavid S. Miller 2015db8dac20SDavid S. Miller /* FALLTHROUGH -- it's a UDP Packet */ 2016db8dac20SDavid S. Miller } 2017db8dac20SDavid S. Miller 2018db8dac20SDavid S. Miller /* 2019db8dac20SDavid S. Miller * UDP-Lite specific tests, ignored on UDP sockets 2020db8dac20SDavid S. Miller */ 2021db8dac20SDavid S. Miller if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) { 2022db8dac20SDavid S. Miller 2023db8dac20SDavid S. Miller /* 2024db8dac20SDavid S. Miller * MIB statistics other than incrementing the error count are 2025db8dac20SDavid S. Miller * disabled for the following two types of errors: these depend 2026db8dac20SDavid S. Miller * on the application settings, not on the functioning of the 2027db8dac20SDavid S. Miller * protocol stack as such. 2028db8dac20SDavid S. Miller * 2029db8dac20SDavid S. Miller * RFC 3828 here recommends (sec 3.3): "There should also be a 2030db8dac20SDavid S. Miller * way ... to ... at least let the receiving application block 2031db8dac20SDavid S. Miller * delivery of packets with coverage values less than a value 2032db8dac20SDavid S. Miller * provided by the application." 2033db8dac20SDavid S. Miller */ 2034db8dac20SDavid S. Miller if (up->pcrlen == 0) { /* full coverage was set */ 2035ba7a46f1SJoe Perches net_dbg_ratelimited("UDPLite: partial coverage %d while full coverage %d requested\n", 2036db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov, skb->len); 2037db8dac20SDavid S. Miller goto drop; 2038db8dac20SDavid S. Miller } 2039db8dac20SDavid S. Miller /* The next case involves violating the min. coverage requested 2040db8dac20SDavid S. Miller * by the receiver. This is subtle: if receiver wants x and x is 2041db8dac20SDavid S. Miller * greater than the buffersize/MTU then receiver will complain 2042db8dac20SDavid S. Miller * that it wants x while sender emits packets of smaller size y. 2043db8dac20SDavid S. Miller * Therefore the above ...()->partial_cov statement is essential. 2044db8dac20SDavid S. Miller */ 2045db8dac20SDavid S. Miller if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { 2046ba7a46f1SJoe Perches net_dbg_ratelimited("UDPLite: coverage %d too small, need min %d\n", 2047db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov, up->pcrlen); 2048db8dac20SDavid S. Miller goto drop; 2049db8dac20SDavid S. Miller } 2050db8dac20SDavid S. Miller } 2051db8dac20SDavid S. Miller 2052dd99e425SPaolo Abeni prefetch(&sk->sk_rmem_alloc); 2053ce25d66aSEric Dumazet if (rcu_access_pointer(sk->sk_filter) && 2054ce25d66aSEric Dumazet udp_lib_checksum_complete(skb)) 20556a5dc9e5SEric Dumazet goto csum_error; 2056ce25d66aSEric Dumazet 2057ba66bbe5SDaniel Borkmann if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr))) 2058a6127697SMichal Kubeček goto drop; 2059db8dac20SDavid S. Miller 2060e6afc8acSsamanthakumar udp_csum_pull_header(skb); 2061db8dac20SDavid S. Miller 2062fbf8866dSShawn Bohrer ipv4_pktinfo_prepare(sk, skb); 2063850cbaddSPaolo Abeni return __udp_queue_rcv_skb(sk, skb); 2064db8dac20SDavid S. Miller 20656a5dc9e5SEric Dumazet csum_error: 206602c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); 2067db8dac20SDavid S. Miller drop: 206802c22347SEric Dumazet __UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 20698edf19c2SEric Dumazet atomic_inc(&sk->sk_drops); 2070db8dac20SDavid S. Miller kfree_skb(skb); 2071db8dac20SDavid S. Miller return -1; 2072db8dac20SDavid S. Miller } 2073db8dac20SDavid S. Miller 2074cf329aa4SPaolo Abeni static int udp_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 2075cf329aa4SPaolo Abeni { 2076cf329aa4SPaolo Abeni struct sk_buff *next, *segs; 2077cf329aa4SPaolo Abeni int ret; 2078cf329aa4SPaolo Abeni 2079cf329aa4SPaolo Abeni if (likely(!udp_unexpected_gso(sk, skb))) 2080cf329aa4SPaolo Abeni return udp_queue_rcv_one_skb(sk, skb); 2081cf329aa4SPaolo Abeni 2082cf329aa4SPaolo Abeni BUILD_BUG_ON(sizeof(struct udp_skb_cb) > SKB_SGO_CB_OFFSET); 2083cf329aa4SPaolo Abeni __skb_push(skb, -skb_mac_offset(skb)); 2084cf329aa4SPaolo Abeni segs = udp_rcv_segment(sk, skb, true); 2085cf329aa4SPaolo Abeni for (skb = segs; skb; skb = next) { 2086cf329aa4SPaolo Abeni next = skb->next; 2087cf329aa4SPaolo Abeni __skb_pull(skb, skb_transport_offset(skb)); 2088cf329aa4SPaolo Abeni ret = udp_queue_rcv_one_skb(sk, skb); 2089cf329aa4SPaolo Abeni if (ret > 0) 2090cf329aa4SPaolo Abeni ip_protocol_deliver_rcu(dev_net(skb->dev), skb, -ret); 2091cf329aa4SPaolo Abeni } 2092cf329aa4SPaolo Abeni return 0; 2093cf329aa4SPaolo Abeni } 2094cf329aa4SPaolo Abeni 209597502231SEric Dumazet /* For TCP sockets, sk_rx_dst is protected by socket lock 2096e47eb5dfSEric Dumazet * For UDP, we use xchg() to guard against concurrent changes. 209797502231SEric Dumazet */ 209864f0f5d1SPaolo Abeni bool udp_sk_rx_dst_set(struct sock *sk, struct dst_entry *dst) 2099421b3885SShawn Bohrer { 210097502231SEric Dumazet struct dst_entry *old; 2101421b3885SShawn Bohrer 2102d24406c8SWei Wang if (dst_hold_safe(dst)) { 2103e47eb5dfSEric Dumazet old = xchg(&sk->sk_rx_dst, dst); 210497502231SEric Dumazet dst_release(old); 210564f0f5d1SPaolo Abeni return old != dst; 210697502231SEric Dumazet } 210764f0f5d1SPaolo Abeni return false; 2108d24406c8SWei Wang } 2109c9f2c1aeSPaolo Abeni EXPORT_SYMBOL(udp_sk_rx_dst_set); 2110421b3885SShawn Bohrer 2111db8dac20SDavid S. Miller /* 2112db8dac20SDavid S. Miller * Multicasts and broadcasts go to each listener. 2113db8dac20SDavid S. Miller * 21141240d137SEric Dumazet * Note: called only from the BH handler context. 2115db8dac20SDavid S. Miller */ 2116e3163493SPavel Emelyanov static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb, 2117db8dac20SDavid S. Miller struct udphdr *uh, 2118db8dac20SDavid S. Miller __be32 saddr, __be32 daddr, 211936cbb245SRick Jones struct udp_table *udptable, 212036cbb245SRick Jones int proto) 2121db8dac20SDavid S. Miller { 2122ca065d0cSEric Dumazet struct sock *sk, *first = NULL; 21235cf3d461SDavid Held unsigned short hnum = ntohs(uh->dest); 21245cf3d461SDavid Held struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum); 21252dc41cffSDavid Held unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); 2126ca065d0cSEric Dumazet unsigned int offset = offsetof(typeof(*sk), sk_node); 2127ca065d0cSEric Dumazet int dif = skb->dev->ifindex; 2128fb74c277SDavid Ahern int sdif = inet_sdif(skb); 2129ca065d0cSEric Dumazet struct hlist_node *node; 2130ca065d0cSEric Dumazet struct sk_buff *nskb; 21312dc41cffSDavid Held 21322dc41cffSDavid Held if (use_hash2) { 2133f0b1e64cSMartin KaFai Lau hash2_any = ipv4_portaddr_hash(net, htonl(INADDR_ANY), hnum) & 213473e2d5e3SPablo Neira udptable->mask; 2135f0b1e64cSMartin KaFai Lau hash2 = ipv4_portaddr_hash(net, daddr, hnum) & udptable->mask; 21362dc41cffSDavid Held start_lookup: 213773e2d5e3SPablo Neira hslot = &udptable->hash2[hash2]; 21382dc41cffSDavid Held offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node); 21392dc41cffSDavid Held } 2140db8dac20SDavid S. Miller 2141ca065d0cSEric Dumazet sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) { 2142ca065d0cSEric Dumazet if (!__udp_is_mcast_sock(net, sk, uh->dest, daddr, 2143fb74c277SDavid Ahern uh->source, saddr, dif, sdif, hnum)) 2144ca065d0cSEric Dumazet continue; 21451240d137SEric Dumazet 2146ca065d0cSEric Dumazet if (!first) { 2147ca065d0cSEric Dumazet first = sk; 2148ca065d0cSEric Dumazet continue; 2149ca065d0cSEric Dumazet } 2150ca065d0cSEric Dumazet nskb = skb_clone(skb, GFP_ATOMIC); 2151ca065d0cSEric Dumazet 2152ca065d0cSEric Dumazet if (unlikely(!nskb)) { 2153ca065d0cSEric Dumazet atomic_inc(&sk->sk_drops); 215402c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_RCVBUFERRORS, 2155ca065d0cSEric Dumazet IS_UDPLITE(sk)); 215602c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_INERRORS, 2157ca065d0cSEric Dumazet IS_UDPLITE(sk)); 2158ca065d0cSEric Dumazet continue; 2159ca065d0cSEric Dumazet } 2160ca065d0cSEric Dumazet if (udp_queue_rcv_skb(sk, nskb) > 0) 2161ca065d0cSEric Dumazet consume_skb(nskb); 2162ca065d0cSEric Dumazet } 21631240d137SEric Dumazet 21642dc41cffSDavid Held /* Also lookup *:port if we are using hash2 and haven't done so yet. */ 21652dc41cffSDavid Held if (use_hash2 && hash2 != hash2_any) { 21662dc41cffSDavid Held hash2 = hash2_any; 21672dc41cffSDavid Held goto start_lookup; 21682dc41cffSDavid Held } 21692dc41cffSDavid Held 2170ca065d0cSEric Dumazet if (first) { 2171ca065d0cSEric Dumazet if (udp_queue_rcv_skb(first, skb) > 0) 2172ca065d0cSEric Dumazet consume_skb(skb); 21731240d137SEric Dumazet } else { 2174ca065d0cSEric Dumazet kfree_skb(skb); 217502c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_IGNOREDMULTI, 217636cbb245SRick Jones proto == IPPROTO_UDPLITE); 21771240d137SEric Dumazet } 2178db8dac20SDavid S. Miller return 0; 2179db8dac20SDavid S. Miller } 2180db8dac20SDavid S. Miller 2181db8dac20SDavid S. Miller /* Initialize UDP checksum. If exited with zero value (success), 2182db8dac20SDavid S. Miller * CHECKSUM_UNNECESSARY means, that no more checks are required. 2183db8dac20SDavid S. Miller * Otherwise, csum completion requires chacksumming packet body, 2184db8dac20SDavid S. Miller * including udp header and folding it to skb->csum. 2185db8dac20SDavid S. Miller */ 2186db8dac20SDavid S. Miller static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh, 2187db8dac20SDavid S. Miller int proto) 2188db8dac20SDavid S. Miller { 2189db8dac20SDavid S. Miller int err; 2190db8dac20SDavid S. Miller 2191db8dac20SDavid S. Miller UDP_SKB_CB(skb)->partial_cov = 0; 2192db8dac20SDavid S. Miller UDP_SKB_CB(skb)->cscov = skb->len; 2193db8dac20SDavid S. Miller 2194db8dac20SDavid S. Miller if (proto == IPPROTO_UDPLITE) { 2195db8dac20SDavid S. Miller err = udplite_checksum_init(skb, uh); 2196db8dac20SDavid S. Miller if (err) 2197db8dac20SDavid S. Miller return err; 219815f35d49SAlexey Kodanev 219915f35d49SAlexey Kodanev if (UDP_SKB_CB(skb)->partial_cov) { 220015f35d49SAlexey Kodanev skb->csum = inet_compute_pseudo(skb, proto); 220115f35d49SAlexey Kodanev return 0; 220215f35d49SAlexey Kodanev } 2203db8dac20SDavid S. Miller } 2204db8dac20SDavid S. Miller 2205b46d9f62SHannes Frederic Sowa /* Note, we are only interested in != 0 or == 0, thus the 2206b46d9f62SHannes Frederic Sowa * force to int. 2207b46d9f62SHannes Frederic Sowa */ 2208db4f1be3SSean Tranchetti err = (__force int)skb_checksum_init_zero_check(skb, proto, uh->check, 2209ed70fcfcSTom Herbert inet_compute_pseudo); 2210db4f1be3SSean Tranchetti if (err) 2211db4f1be3SSean Tranchetti return err; 2212db4f1be3SSean Tranchetti 2213db4f1be3SSean Tranchetti if (skb->ip_summed == CHECKSUM_COMPLETE && !skb->csum_valid) { 2214db4f1be3SSean Tranchetti /* If SW calculated the value, we know it's bad */ 2215db4f1be3SSean Tranchetti if (skb->csum_complete_sw) 2216db4f1be3SSean Tranchetti return 1; 2217db4f1be3SSean Tranchetti 2218db4f1be3SSean Tranchetti /* HW says the value is bad. Let's validate that. 2219db4f1be3SSean Tranchetti * skb->csum is no longer the full packet checksum, 2220db4f1be3SSean Tranchetti * so don't treat it as such. 2221db4f1be3SSean Tranchetti */ 2222db4f1be3SSean Tranchetti skb_checksum_complete_unset(skb); 2223db4f1be3SSean Tranchetti } 2224db4f1be3SSean Tranchetti 2225db4f1be3SSean Tranchetti return 0; 2226db8dac20SDavid S. Miller } 2227db8dac20SDavid S. Miller 22282b5a9217SPaolo Abeni /* wrapper for udp_queue_rcv_skb tacking care of csum conversion and 22292b5a9217SPaolo Abeni * return code conversion for ip layer consumption 22302b5a9217SPaolo Abeni */ 22312b5a9217SPaolo Abeni static int udp_unicast_rcv_skb(struct sock *sk, struct sk_buff *skb, 22322b5a9217SPaolo Abeni struct udphdr *uh) 22332b5a9217SPaolo Abeni { 22342b5a9217SPaolo Abeni int ret; 22352b5a9217SPaolo Abeni 22362b5a9217SPaolo Abeni if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk)) 22372b5a9217SPaolo Abeni skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check, 22382b5a9217SPaolo Abeni inet_compute_pseudo); 22392b5a9217SPaolo Abeni 22402b5a9217SPaolo Abeni ret = udp_queue_rcv_skb(sk, skb); 22412b5a9217SPaolo Abeni 22422b5a9217SPaolo Abeni /* a return value > 0 means to resubmit the input, but 22432b5a9217SPaolo Abeni * it wants the return to be -protocol, or 0 22442b5a9217SPaolo Abeni */ 22452b5a9217SPaolo Abeni if (ret > 0) 22462b5a9217SPaolo Abeni return -ret; 22472b5a9217SPaolo Abeni return 0; 22482b5a9217SPaolo Abeni } 22492b5a9217SPaolo Abeni 2250db8dac20SDavid S. Miller /* 2251db8dac20SDavid S. Miller * All we need to do is get the socket, and then do a checksum. 2252db8dac20SDavid S. Miller */ 2253db8dac20SDavid S. Miller 2254645ca708SEric Dumazet int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, 2255db8dac20SDavid S. Miller int proto) 2256db8dac20SDavid S. Miller { 2257db8dac20SDavid S. Miller struct sock *sk; 22587b5e56f9SJesper Dangaard Brouer struct udphdr *uh; 2259db8dac20SDavid S. Miller unsigned short ulen; 2260adf30907SEric Dumazet struct rtable *rt = skb_rtable(skb); 22612783ef23SJesper Dangaard Brouer __be32 saddr, daddr; 22620283328eSPavel Emelyanov struct net *net = dev_net(skb->dev); 2263db8dac20SDavid S. Miller 2264db8dac20SDavid S. Miller /* 2265db8dac20SDavid S. Miller * Validate the packet. 2266db8dac20SDavid S. Miller */ 2267db8dac20SDavid S. Miller if (!pskb_may_pull(skb, sizeof(struct udphdr))) 2268db8dac20SDavid S. Miller goto drop; /* No space for header. */ 2269db8dac20SDavid S. Miller 22707b5e56f9SJesper Dangaard Brouer uh = udp_hdr(skb); 2271db8dac20SDavid S. Miller ulen = ntohs(uh->len); 2272ccc2d97cSBjørn Mork saddr = ip_hdr(skb)->saddr; 2273ccc2d97cSBjørn Mork daddr = ip_hdr(skb)->daddr; 2274ccc2d97cSBjørn Mork 2275db8dac20SDavid S. Miller if (ulen > skb->len) 2276db8dac20SDavid S. Miller goto short_packet; 2277db8dac20SDavid S. Miller 2278db8dac20SDavid S. Miller if (proto == IPPROTO_UDP) { 2279db8dac20SDavid S. Miller /* UDP validates ulen. */ 2280db8dac20SDavid S. Miller if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen)) 2281db8dac20SDavid S. Miller goto short_packet; 2282db8dac20SDavid S. Miller uh = udp_hdr(skb); 2283db8dac20SDavid S. Miller } 2284db8dac20SDavid S. Miller 2285db8dac20SDavid S. Miller if (udp4_csum_init(skb, uh, proto)) 2286db8dac20SDavid S. Miller goto csum_error; 2287db8dac20SDavid S. Miller 22888afdd99aSEric Dumazet sk = skb_steal_sock(skb); 22898afdd99aSEric Dumazet if (sk) { 229097502231SEric Dumazet struct dst_entry *dst = skb_dst(skb); 2291421b3885SShawn Bohrer int ret; 2292421b3885SShawn Bohrer 229397502231SEric Dumazet if (unlikely(sk->sk_rx_dst != dst)) 229497502231SEric Dumazet udp_sk_rx_dst_set(sk, dst); 2295421b3885SShawn Bohrer 22962b5a9217SPaolo Abeni ret = udp_unicast_rcv_skb(sk, skb, uh); 22978afdd99aSEric Dumazet sock_put(sk); 22982b5a9217SPaolo Abeni return ret; 2299c18450a5SFabian Frederick } 2300c18450a5SFabian Frederick 2301db8dac20SDavid S. Miller if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST)) 2302e3163493SPavel Emelyanov return __udp4_lib_mcast_deliver(net, skb, uh, 230336cbb245SRick Jones saddr, daddr, udptable, proto); 2304db8dac20SDavid S. Miller 2305607c4aafSKOVACS Krisztian sk = __udp4_lib_lookup_skb(skb, uh->source, uh->dest, udptable); 23062b5a9217SPaolo Abeni if (sk) 23072b5a9217SPaolo Abeni return udp_unicast_rcv_skb(sk, skb, uh); 2308db8dac20SDavid S. Miller 2309db8dac20SDavid S. Miller if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) 2310db8dac20SDavid S. Miller goto drop; 2311db8dac20SDavid S. Miller nf_reset(skb); 2312db8dac20SDavid S. Miller 2313db8dac20SDavid S. Miller /* No socket. Drop packet silently, if checksum is wrong */ 2314db8dac20SDavid S. Miller if (udp_lib_checksum_complete(skb)) 2315db8dac20SDavid S. Miller goto csum_error; 2316db8dac20SDavid S. Miller 231702c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); 2318db8dac20SDavid S. Miller icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0); 2319db8dac20SDavid S. Miller 2320db8dac20SDavid S. Miller /* 2321db8dac20SDavid S. Miller * Hmm. We got an UDP packet to a port to which we 2322db8dac20SDavid S. Miller * don't wanna listen. Ignore it. 2323db8dac20SDavid S. Miller */ 2324db8dac20SDavid S. Miller kfree_skb(skb); 2325db8dac20SDavid S. Miller return 0; 2326db8dac20SDavid S. Miller 2327db8dac20SDavid S. Miller short_packet: 2328ba7a46f1SJoe Perches net_dbg_ratelimited("UDP%s: short packet: From %pI4:%u %d/%d to %pI4:%u\n", 2329afd46503SJoe Perches proto == IPPROTO_UDPLITE ? "Lite" : "", 2330afd46503SJoe Perches &saddr, ntohs(uh->source), 2331afd46503SJoe Perches ulen, skb->len, 2332afd46503SJoe Perches &daddr, ntohs(uh->dest)); 2333db8dac20SDavid S. Miller goto drop; 2334db8dac20SDavid S. Miller 2335db8dac20SDavid S. Miller csum_error: 2336db8dac20SDavid S. Miller /* 2337db8dac20SDavid S. Miller * RFC1122: OK. Discards the bad packet silently (as far as 2338db8dac20SDavid S. Miller * the network is concerned, anyway) as per 4.1.3.4 (MUST). 2339db8dac20SDavid S. Miller */ 2340ba7a46f1SJoe Perches net_dbg_ratelimited("UDP%s: bad checksum. From %pI4:%u to %pI4:%u ulen %d\n", 2341afd46503SJoe Perches proto == IPPROTO_UDPLITE ? "Lite" : "", 2342afd46503SJoe Perches &saddr, ntohs(uh->source), &daddr, ntohs(uh->dest), 2343db8dac20SDavid S. Miller ulen); 234402c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE); 2345db8dac20SDavid S. Miller drop: 234602c22347SEric Dumazet __UDP_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); 2347db8dac20SDavid S. Miller kfree_skb(skb); 2348db8dac20SDavid S. Miller return 0; 2349db8dac20SDavid S. Miller } 2350db8dac20SDavid S. Miller 2351421b3885SShawn Bohrer /* We can only early demux multicast if there is a single matching socket. 2352421b3885SShawn Bohrer * If more than one socket found returns NULL 2353421b3885SShawn Bohrer */ 2354421b3885SShawn Bohrer static struct sock *__udp4_lib_mcast_demux_lookup(struct net *net, 2355421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 2356421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 2357fb74c277SDavid Ahern int dif, int sdif) 2358421b3885SShawn Bohrer { 2359421b3885SShawn Bohrer struct sock *sk, *result; 2360421b3885SShawn Bohrer unsigned short hnum = ntohs(loc_port); 2361ca065d0cSEric Dumazet unsigned int slot = udp_hashfn(net, hnum, udp_table.mask); 2362421b3885SShawn Bohrer struct udp_hslot *hslot = &udp_table.hash[slot]; 2363421b3885SShawn Bohrer 236463c6f81cSEric Dumazet /* Do not bother scanning a too big list */ 236563c6f81cSEric Dumazet if (hslot->count > 10) 236663c6f81cSEric Dumazet return NULL; 236763c6f81cSEric Dumazet 2368421b3885SShawn Bohrer result = NULL; 2369ca065d0cSEric Dumazet sk_for_each_rcu(sk, &hslot->head) { 2370ca065d0cSEric Dumazet if (__udp_is_mcast_sock(net, sk, loc_port, loc_addr, 2371fb74c277SDavid Ahern rmt_port, rmt_addr, dif, sdif, hnum)) { 2372ca065d0cSEric Dumazet if (result) 2373ca065d0cSEric Dumazet return NULL; 2374421b3885SShawn Bohrer result = sk; 2375421b3885SShawn Bohrer } 2376421b3885SShawn Bohrer } 2377421b3885SShawn Bohrer 2378421b3885SShawn Bohrer return result; 2379421b3885SShawn Bohrer } 2380421b3885SShawn Bohrer 2381421b3885SShawn Bohrer /* For unicast we should only early demux connected sockets or we can 2382421b3885SShawn Bohrer * break forwarding setups. The chains here can be long so only check 2383421b3885SShawn Bohrer * if the first socket is an exact match and if not move on. 2384421b3885SShawn Bohrer */ 2385421b3885SShawn Bohrer static struct sock *__udp4_lib_demux_lookup(struct net *net, 2386421b3885SShawn Bohrer __be16 loc_port, __be32 loc_addr, 2387421b3885SShawn Bohrer __be16 rmt_port, __be32 rmt_addr, 23883fa6f616SDavid Ahern int dif, int sdif) 2389421b3885SShawn Bohrer { 2390421b3885SShawn Bohrer unsigned short hnum = ntohs(loc_port); 2391f0b1e64cSMartin KaFai Lau unsigned int hash2 = ipv4_portaddr_hash(net, loc_addr, hnum); 2392421b3885SShawn Bohrer unsigned int slot2 = hash2 & udp_table.mask; 2393421b3885SShawn Bohrer struct udp_hslot *hslot2 = &udp_table.hash2[slot2]; 2394c7228317SJoe Perches INET_ADDR_COOKIE(acookie, rmt_addr, loc_addr); 2395421b3885SShawn Bohrer const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum); 2396ca065d0cSEric Dumazet struct sock *sk; 2397421b3885SShawn Bohrer 2398ca065d0cSEric Dumazet udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 2399ca065d0cSEric Dumazet if (INET_MATCH(sk, net, acookie, rmt_addr, 24003fa6f616SDavid Ahern loc_addr, ports, dif, sdif)) 2401ca065d0cSEric Dumazet return sk; 2402421b3885SShawn Bohrer /* Only check first socket in chain */ 2403421b3885SShawn Bohrer break; 2404421b3885SShawn Bohrer } 2405ca065d0cSEric Dumazet return NULL; 2406421b3885SShawn Bohrer } 2407421b3885SShawn Bohrer 24087487449cSPaolo Abeni int udp_v4_early_demux(struct sk_buff *skb) 2409421b3885SShawn Bohrer { 2410610438b7SEric Dumazet struct net *net = dev_net(skb->dev); 2411bc044e8dSPaolo Abeni struct in_device *in_dev = NULL; 2412610438b7SEric Dumazet const struct iphdr *iph; 2413610438b7SEric Dumazet const struct udphdr *uh; 2414ca065d0cSEric Dumazet struct sock *sk = NULL; 2415421b3885SShawn Bohrer struct dst_entry *dst; 2416421b3885SShawn Bohrer int dif = skb->dev->ifindex; 2417fb74c277SDavid Ahern int sdif = inet_sdif(skb); 24186e540309SShawn Bohrer int ours; 2419421b3885SShawn Bohrer 2420421b3885SShawn Bohrer /* validate the packet */ 2421421b3885SShawn Bohrer if (!pskb_may_pull(skb, skb_transport_offset(skb) + sizeof(struct udphdr))) 24227487449cSPaolo Abeni return 0; 2423421b3885SShawn Bohrer 2424610438b7SEric Dumazet iph = ip_hdr(skb); 2425610438b7SEric Dumazet uh = udp_hdr(skb); 2426610438b7SEric Dumazet 2427996b44fcSPaolo Abeni if (skb->pkt_type == PACKET_MULTICAST) { 2428bc044e8dSPaolo Abeni in_dev = __in_dev_get_rcu(skb->dev); 24296e540309SShawn Bohrer 24306e540309SShawn Bohrer if (!in_dev) 24317487449cSPaolo Abeni return 0; 24326e540309SShawn Bohrer 24336e540309SShawn Bohrer ours = ip_check_mc_rcu(in_dev, iph->daddr, iph->saddr, 24346e540309SShawn Bohrer iph->protocol); 24356e540309SShawn Bohrer if (!ours) 24367487449cSPaolo Abeni return 0; 2437ad0ea198SPaolo Abeni 2438421b3885SShawn Bohrer sk = __udp4_lib_mcast_demux_lookup(net, uh->dest, iph->daddr, 2439fb74c277SDavid Ahern uh->source, iph->saddr, 2440fb74c277SDavid Ahern dif, sdif); 24416e540309SShawn Bohrer } else if (skb->pkt_type == PACKET_HOST) { 2442421b3885SShawn Bohrer sk = __udp4_lib_demux_lookup(net, uh->dest, iph->daddr, 24433fa6f616SDavid Ahern uh->source, iph->saddr, dif, sdif); 24446e540309SShawn Bohrer } 2445421b3885SShawn Bohrer 244641c6d650SReshetova, Elena if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt)) 24477487449cSPaolo Abeni return 0; 2448421b3885SShawn Bohrer 2449421b3885SShawn Bohrer skb->sk = sk; 245082eabd9eSAlexander Duyck skb->destructor = sock_efree; 245110e2eb87SEric Dumazet dst = READ_ONCE(sk->sk_rx_dst); 2452421b3885SShawn Bohrer 2453421b3885SShawn Bohrer if (dst) 2454421b3885SShawn Bohrer dst = dst_check(dst, 0); 245510e2eb87SEric Dumazet if (dst) { 2456bc044e8dSPaolo Abeni u32 itag = 0; 2457bc044e8dSPaolo Abeni 2458d24406c8SWei Wang /* set noref for now. 2459d24406c8SWei Wang * any place which wants to hold dst has to call 2460d24406c8SWei Wang * dst_hold_safe() 2461d24406c8SWei Wang */ 2462421b3885SShawn Bohrer skb_dst_set_noref(skb, dst); 2463bc044e8dSPaolo Abeni 2464bc044e8dSPaolo Abeni /* for unconnected multicast sockets we need to validate 2465bc044e8dSPaolo Abeni * the source on each packet 2466bc044e8dSPaolo Abeni */ 2467bc044e8dSPaolo Abeni if (!inet_sk(sk)->inet_daddr && in_dev) 2468bc044e8dSPaolo Abeni return ip_mc_validate_source(skb, iph->daddr, 2469bc044e8dSPaolo Abeni iph->saddr, iph->tos, 2470bc044e8dSPaolo Abeni skb->dev, in_dev, &itag); 2471421b3885SShawn Bohrer } 24727487449cSPaolo Abeni return 0; 247310e2eb87SEric Dumazet } 2474421b3885SShawn Bohrer 2475db8dac20SDavid S. Miller int udp_rcv(struct sk_buff *skb) 2476db8dac20SDavid S. Miller { 2477645ca708SEric Dumazet return __udp4_lib_rcv(skb, &udp_table, IPPROTO_UDP); 2478db8dac20SDavid S. Miller } 2479db8dac20SDavid S. Miller 24807d06b2e0SBrian Haley void udp_destroy_sock(struct sock *sk) 2481db8dac20SDavid S. Miller { 248244046a59STom Parkin struct udp_sock *up = udp_sk(sk); 24838a74ad60SEric Dumazet bool slow = lock_sock_fast(sk); 2484db8dac20SDavid S. Miller udp_flush_pending_frames(sk); 24858a74ad60SEric Dumazet unlock_sock_fast(sk, slow); 248660fb9567SPaolo Abeni if (static_branch_unlikely(&udp_encap_needed_key)) { 248760fb9567SPaolo Abeni if (up->encap_type) { 248844046a59STom Parkin void (*encap_destroy)(struct sock *sk); 24896aa7de05SMark Rutland encap_destroy = READ_ONCE(up->encap_destroy); 249044046a59STom Parkin if (encap_destroy) 249144046a59STom Parkin encap_destroy(sk); 249244046a59STom Parkin } 249360fb9567SPaolo Abeni if (up->encap_enabled) 24949c480601SPaolo Abeni static_branch_dec(&udp_encap_needed_key); 249560fb9567SPaolo Abeni } 2496db8dac20SDavid S. Miller } 2497db8dac20SDavid S. Miller 24981da177e4SLinus Torvalds /* 24991da177e4SLinus Torvalds * Socket option code for UDP 25001da177e4SLinus Torvalds */ 25014c0a6cb0SGerrit Renker int udp_lib_setsockopt(struct sock *sk, int level, int optname, 2502b7058842SDavid S. Miller char __user *optval, unsigned int optlen, 25034c0a6cb0SGerrit Renker int (*push_pending_frames)(struct sock *)) 25041da177e4SLinus Torvalds { 25051da177e4SLinus Torvalds struct udp_sock *up = udp_sk(sk); 25061c19448cSTom Herbert int val, valbool; 25071da177e4SLinus Torvalds int err = 0; 2508b2bf1e26SWang Chen int is_udplite = IS_UDPLITE(sk); 25091da177e4SLinus Torvalds 25101da177e4SLinus Torvalds if (optlen < sizeof(int)) 25111da177e4SLinus Torvalds return -EINVAL; 25121da177e4SLinus Torvalds 25131da177e4SLinus Torvalds if (get_user(val, (int __user *)optval)) 25141da177e4SLinus Torvalds return -EFAULT; 25151da177e4SLinus Torvalds 25161c19448cSTom Herbert valbool = val ? 1 : 0; 25171c19448cSTom Herbert 25181da177e4SLinus Torvalds switch (optname) { 25191da177e4SLinus Torvalds case UDP_CORK: 25201da177e4SLinus Torvalds if (val != 0) { 25211da177e4SLinus Torvalds up->corkflag = 1; 25221da177e4SLinus Torvalds } else { 25231da177e4SLinus Torvalds up->corkflag = 0; 25241da177e4SLinus Torvalds lock_sock(sk); 25254243cdc2SJoe Perches push_pending_frames(sk); 25261da177e4SLinus Torvalds release_sock(sk); 25271da177e4SLinus Torvalds } 25281da177e4SLinus Torvalds break; 25291da177e4SLinus Torvalds 25301da177e4SLinus Torvalds case UDP_ENCAP: 25311da177e4SLinus Torvalds switch (val) { 25321da177e4SLinus Torvalds case 0: 25331da177e4SLinus Torvalds case UDP_ENCAP_ESPINUDP: 25341da177e4SLinus Torvalds case UDP_ENCAP_ESPINUDP_NON_IKE: 2535067b207bSJames Chapman up->encap_rcv = xfrm4_udp_encap_rcv; 2536067b207bSJames Chapman /* FALLTHROUGH */ 2537342f0234SJames Chapman case UDP_ENCAP_L2TPINUDP: 25381da177e4SLinus Torvalds up->encap_type = val; 253960fb9567SPaolo Abeni lock_sock(sk); 254060fb9567SPaolo Abeni udp_tunnel_encap_enable(sk->sk_socket); 254160fb9567SPaolo Abeni release_sock(sk); 25421da177e4SLinus Torvalds break; 25431da177e4SLinus Torvalds default: 25441da177e4SLinus Torvalds err = -ENOPROTOOPT; 25451da177e4SLinus Torvalds break; 25461da177e4SLinus Torvalds } 25471da177e4SLinus Torvalds break; 25481da177e4SLinus Torvalds 25491c19448cSTom Herbert case UDP_NO_CHECK6_TX: 25501c19448cSTom Herbert up->no_check6_tx = valbool; 25511c19448cSTom Herbert break; 25521c19448cSTom Herbert 25531c19448cSTom Herbert case UDP_NO_CHECK6_RX: 25541c19448cSTom Herbert up->no_check6_rx = valbool; 25551c19448cSTom Herbert break; 25561c19448cSTom Herbert 2557bec1f6f6SWillem de Bruijn case UDP_SEGMENT: 2558bec1f6f6SWillem de Bruijn if (val < 0 || val > USHRT_MAX) 2559bec1f6f6SWillem de Bruijn return -EINVAL; 2560bec1f6f6SWillem de Bruijn up->gso_size = val; 2561bec1f6f6SWillem de Bruijn break; 2562bec1f6f6SWillem de Bruijn 2563e20cf8d3SPaolo Abeni case UDP_GRO: 2564e20cf8d3SPaolo Abeni lock_sock(sk); 2565e20cf8d3SPaolo Abeni if (valbool) 2566e20cf8d3SPaolo Abeni udp_tunnel_encap_enable(sk->sk_socket); 2567e20cf8d3SPaolo Abeni up->gro_enabled = valbool; 2568e20cf8d3SPaolo Abeni release_sock(sk); 2569e20cf8d3SPaolo Abeni break; 2570e20cf8d3SPaolo Abeni 2571ba4e58ecSGerrit Renker /* 2572ba4e58ecSGerrit Renker * UDP-Lite's partial checksum coverage (RFC 3828). 2573ba4e58ecSGerrit Renker */ 2574ba4e58ecSGerrit Renker /* The sender sets actual checksum coverage length via this option. 2575ba4e58ecSGerrit Renker * The case coverage > packet length is handled by send module. */ 2576ba4e58ecSGerrit Renker case UDPLITE_SEND_CSCOV: 2577b2bf1e26SWang Chen if (!is_udplite) /* Disable the option on UDP sockets */ 2578ba4e58ecSGerrit Renker return -ENOPROTOOPT; 2579ba4e58ecSGerrit Renker if (val != 0 && val < 8) /* Illegal coverage: use default (8) */ 2580ba4e58ecSGerrit Renker val = 8; 25814be929beSAlexey Dobriyan else if (val > USHRT_MAX) 25824be929beSAlexey Dobriyan val = USHRT_MAX; 2583ba4e58ecSGerrit Renker up->pcslen = val; 2584ba4e58ecSGerrit Renker up->pcflag |= UDPLITE_SEND_CC; 2585ba4e58ecSGerrit Renker break; 2586ba4e58ecSGerrit Renker 2587ba4e58ecSGerrit Renker /* The receiver specifies a minimum checksum coverage value. To make 2588ba4e58ecSGerrit Renker * sense, this should be set to at least 8 (as done below). If zero is 2589ba4e58ecSGerrit Renker * used, this again means full checksum coverage. */ 2590ba4e58ecSGerrit Renker case UDPLITE_RECV_CSCOV: 2591b2bf1e26SWang Chen if (!is_udplite) /* Disable the option on UDP sockets */ 2592ba4e58ecSGerrit Renker return -ENOPROTOOPT; 2593ba4e58ecSGerrit Renker if (val != 0 && val < 8) /* Avoid silly minimal values. */ 2594ba4e58ecSGerrit Renker val = 8; 25954be929beSAlexey Dobriyan else if (val > USHRT_MAX) 25964be929beSAlexey Dobriyan val = USHRT_MAX; 2597ba4e58ecSGerrit Renker up->pcrlen = val; 2598ba4e58ecSGerrit Renker up->pcflag |= UDPLITE_RECV_CC; 2599ba4e58ecSGerrit Renker break; 2600ba4e58ecSGerrit Renker 26011da177e4SLinus Torvalds default: 26021da177e4SLinus Torvalds err = -ENOPROTOOPT; 26031da177e4SLinus Torvalds break; 26046516c655SStephen Hemminger } 26051da177e4SLinus Torvalds 26061da177e4SLinus Torvalds return err; 26071da177e4SLinus Torvalds } 2608c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_setsockopt); 26091da177e4SLinus Torvalds 2610db8dac20SDavid S. Miller int udp_setsockopt(struct sock *sk, int level, int optname, 2611b7058842SDavid S. Miller char __user *optval, unsigned int optlen) 2612db8dac20SDavid S. Miller { 2613db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2614db8dac20SDavid S. Miller return udp_lib_setsockopt(sk, level, optname, optval, optlen, 2615db8dac20SDavid S. Miller udp_push_pending_frames); 2616db8dac20SDavid S. Miller return ip_setsockopt(sk, level, optname, optval, optlen); 2617db8dac20SDavid S. Miller } 2618db8dac20SDavid S. Miller 2619db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2620db8dac20SDavid S. Miller int compat_udp_setsockopt(struct sock *sk, int level, int optname, 2621b7058842SDavid S. Miller char __user *optval, unsigned int optlen) 2622db8dac20SDavid S. Miller { 2623db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2624db8dac20SDavid S. Miller return udp_lib_setsockopt(sk, level, optname, optval, optlen, 2625db8dac20SDavid S. Miller udp_push_pending_frames); 2626db8dac20SDavid S. Miller return compat_ip_setsockopt(sk, level, optname, optval, optlen); 2627db8dac20SDavid S. Miller } 2628db8dac20SDavid S. Miller #endif 2629db8dac20SDavid S. Miller 26304c0a6cb0SGerrit Renker int udp_lib_getsockopt(struct sock *sk, int level, int optname, 26311da177e4SLinus Torvalds char __user *optval, int __user *optlen) 26321da177e4SLinus Torvalds { 26331da177e4SLinus Torvalds struct udp_sock *up = udp_sk(sk); 26341da177e4SLinus Torvalds int val, len; 26351da177e4SLinus Torvalds 26361da177e4SLinus Torvalds if (get_user(len, optlen)) 26371da177e4SLinus Torvalds return -EFAULT; 26381da177e4SLinus Torvalds 26391da177e4SLinus Torvalds len = min_t(unsigned int, len, sizeof(int)); 26401da177e4SLinus Torvalds 26411da177e4SLinus Torvalds if (len < 0) 26421da177e4SLinus Torvalds return -EINVAL; 26431da177e4SLinus Torvalds 26441da177e4SLinus Torvalds switch (optname) { 26451da177e4SLinus Torvalds case UDP_CORK: 26461da177e4SLinus Torvalds val = up->corkflag; 26471da177e4SLinus Torvalds break; 26481da177e4SLinus Torvalds 26491da177e4SLinus Torvalds case UDP_ENCAP: 26501da177e4SLinus Torvalds val = up->encap_type; 26511da177e4SLinus Torvalds break; 26521da177e4SLinus Torvalds 26531c19448cSTom Herbert case UDP_NO_CHECK6_TX: 26541c19448cSTom Herbert val = up->no_check6_tx; 26551c19448cSTom Herbert break; 26561c19448cSTom Herbert 26571c19448cSTom Herbert case UDP_NO_CHECK6_RX: 26581c19448cSTom Herbert val = up->no_check6_rx; 26591c19448cSTom Herbert break; 26601c19448cSTom Herbert 2661bec1f6f6SWillem de Bruijn case UDP_SEGMENT: 2662bec1f6f6SWillem de Bruijn val = up->gso_size; 2663bec1f6f6SWillem de Bruijn break; 2664bec1f6f6SWillem de Bruijn 2665ba4e58ecSGerrit Renker /* The following two cannot be changed on UDP sockets, the return is 2666ba4e58ecSGerrit Renker * always 0 (which corresponds to the full checksum coverage of UDP). */ 2667ba4e58ecSGerrit Renker case UDPLITE_SEND_CSCOV: 2668ba4e58ecSGerrit Renker val = up->pcslen; 2669ba4e58ecSGerrit Renker break; 2670ba4e58ecSGerrit Renker 2671ba4e58ecSGerrit Renker case UDPLITE_RECV_CSCOV: 2672ba4e58ecSGerrit Renker val = up->pcrlen; 2673ba4e58ecSGerrit Renker break; 2674ba4e58ecSGerrit Renker 26751da177e4SLinus Torvalds default: 26761da177e4SLinus Torvalds return -ENOPROTOOPT; 26776516c655SStephen Hemminger } 26781da177e4SLinus Torvalds 26791da177e4SLinus Torvalds if (put_user(len, optlen)) 26801da177e4SLinus Torvalds return -EFAULT; 26811da177e4SLinus Torvalds if (copy_to_user(optval, &val, len)) 26821da177e4SLinus Torvalds return -EFAULT; 26831da177e4SLinus Torvalds return 0; 26841da177e4SLinus Torvalds } 2685c482c568SEric Dumazet EXPORT_SYMBOL(udp_lib_getsockopt); 26861da177e4SLinus Torvalds 2687db8dac20SDavid S. Miller int udp_getsockopt(struct sock *sk, int level, int optname, 2688db8dac20SDavid S. Miller char __user *optval, int __user *optlen) 2689db8dac20SDavid S. Miller { 2690db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2691db8dac20SDavid S. Miller return udp_lib_getsockopt(sk, level, optname, optval, optlen); 2692db8dac20SDavid S. Miller return ip_getsockopt(sk, level, optname, optval, optlen); 2693db8dac20SDavid S. Miller } 2694db8dac20SDavid S. Miller 2695db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2696db8dac20SDavid S. Miller int compat_udp_getsockopt(struct sock *sk, int level, int optname, 2697db8dac20SDavid S. Miller char __user *optval, int __user *optlen) 2698db8dac20SDavid S. Miller { 2699db8dac20SDavid S. Miller if (level == SOL_UDP || level == SOL_UDPLITE) 2700db8dac20SDavid S. Miller return udp_lib_getsockopt(sk, level, optname, optval, optlen); 2701db8dac20SDavid S. Miller return compat_ip_getsockopt(sk, level, optname, optval, optlen); 2702db8dac20SDavid S. Miller } 2703db8dac20SDavid S. Miller #endif 27041da177e4SLinus Torvalds /** 27051da177e4SLinus Torvalds * udp_poll - wait for a UDP event. 27061da177e4SLinus Torvalds * @file - file struct 27071da177e4SLinus Torvalds * @sock - socket 2708a11e1d43SLinus Torvalds * @wait - poll table 27091da177e4SLinus Torvalds * 27101da177e4SLinus Torvalds * This is same as datagram poll, except for the special case of 27111da177e4SLinus Torvalds * blocking sockets. If application is using a blocking fd 27121da177e4SLinus Torvalds * and a packet with checksum error is in the queue; 27131da177e4SLinus Torvalds * then it could get return from select indicating data available 27141da177e4SLinus Torvalds * but then block when reading it. Add special case code 27151da177e4SLinus Torvalds * to work around these arguably broken applications. 27161da177e4SLinus Torvalds */ 2717a11e1d43SLinus Torvalds __poll_t udp_poll(struct file *file, struct socket *sock, poll_table *wait) 27181da177e4SLinus Torvalds { 2719a11e1d43SLinus Torvalds __poll_t mask = datagram_poll(file, sock, wait); 27201da177e4SLinus Torvalds struct sock *sk = sock->sk; 27211da177e4SLinus Torvalds 27222276f58aSPaolo Abeni if (!skb_queue_empty(&udp_sk(sk)->reader_queue)) 2723a9a08845SLinus Torvalds mask |= EPOLLIN | EPOLLRDNORM; 27242276f58aSPaolo Abeni 27251da177e4SLinus Torvalds /* Check for false positives due to checksum errors */ 2726a11e1d43SLinus Torvalds if ((mask & EPOLLRDNORM) && !(file->f_flags & O_NONBLOCK) && 2727e83c6744SEric Dumazet !(sk->sk_shutdown & RCV_SHUTDOWN) && first_packet_length(sk) == -1) 2728a9a08845SLinus Torvalds mask &= ~(EPOLLIN | EPOLLRDNORM); 27291da177e4SLinus Torvalds 27301da177e4SLinus Torvalds return mask; 27311da177e4SLinus Torvalds 27321da177e4SLinus Torvalds } 2733a11e1d43SLinus Torvalds EXPORT_SYMBOL(udp_poll); 27341da177e4SLinus Torvalds 27355d77dca8SDavid Ahern int udp_abort(struct sock *sk, int err) 27365d77dca8SDavid Ahern { 27375d77dca8SDavid Ahern lock_sock(sk); 27385d77dca8SDavid Ahern 27395d77dca8SDavid Ahern sk->sk_err = err; 27405d77dca8SDavid Ahern sk->sk_error_report(sk); 2741286c72deSEric Dumazet __udp_disconnect(sk, 0); 27425d77dca8SDavid Ahern 27435d77dca8SDavid Ahern release_sock(sk); 27445d77dca8SDavid Ahern 27455d77dca8SDavid Ahern return 0; 27465d77dca8SDavid Ahern } 27475d77dca8SDavid Ahern EXPORT_SYMBOL_GPL(udp_abort); 27485d77dca8SDavid Ahern 2749db8dac20SDavid S. Miller struct proto udp_prot = { 2750db8dac20SDavid S. Miller .name = "UDP", 2751db8dac20SDavid S. Miller .owner = THIS_MODULE, 2752db8dac20SDavid S. Miller .close = udp_lib_close, 2753d74bad4eSAndrey Ignatov .pre_connect = udp_pre_connect, 2754db8dac20SDavid S. Miller .connect = ip4_datagram_connect, 2755db8dac20SDavid S. Miller .disconnect = udp_disconnect, 2756db8dac20SDavid S. Miller .ioctl = udp_ioctl, 2757850cbaddSPaolo Abeni .init = udp_init_sock, 2758db8dac20SDavid S. Miller .destroy = udp_destroy_sock, 2759db8dac20SDavid S. Miller .setsockopt = udp_setsockopt, 2760db8dac20SDavid S. Miller .getsockopt = udp_getsockopt, 2761db8dac20SDavid S. Miller .sendmsg = udp_sendmsg, 2762db8dac20SDavid S. Miller .recvmsg = udp_recvmsg, 2763db8dac20SDavid S. Miller .sendpage = udp_sendpage, 27648141ed9fSSteffen Klassert .release_cb = ip4_datagram_release_cb, 2765db8dac20SDavid S. Miller .hash = udp_lib_hash, 2766db8dac20SDavid S. Miller .unhash = udp_lib_unhash, 2767719f8358SEric Dumazet .rehash = udp_v4_rehash, 2768db8dac20SDavid S. Miller .get_port = udp_v4_get_port, 2769db8dac20SDavid S. Miller .memory_allocated = &udp_memory_allocated, 2770db8dac20SDavid S. Miller .sysctl_mem = sysctl_udp_mem, 27711e802951STonghao Zhang .sysctl_wmem_offset = offsetof(struct net, ipv4.sysctl_udp_wmem_min), 27721e802951STonghao Zhang .sysctl_rmem_offset = offsetof(struct net, ipv4.sysctl_udp_rmem_min), 2773db8dac20SDavid S. Miller .obj_size = sizeof(struct udp_sock), 2774645ca708SEric Dumazet .h.udp_table = &udp_table, 2775db8dac20SDavid S. Miller #ifdef CONFIG_COMPAT 2776db8dac20SDavid S. Miller .compat_setsockopt = compat_udp_setsockopt, 2777db8dac20SDavid S. Miller .compat_getsockopt = compat_udp_getsockopt, 2778db8dac20SDavid S. Miller #endif 27795d77dca8SDavid Ahern .diag_destroy = udp_abort, 2780db8dac20SDavid S. Miller }; 2781c482c568SEric Dumazet EXPORT_SYMBOL(udp_prot); 27821da177e4SLinus Torvalds 27831da177e4SLinus Torvalds /* ------------------------------------------------------------------------ */ 27841da177e4SLinus Torvalds #ifdef CONFIG_PROC_FS 27851da177e4SLinus Torvalds 2786645ca708SEric Dumazet static struct sock *udp_get_first(struct seq_file *seq, int start) 27871da177e4SLinus Torvalds { 27881da177e4SLinus Torvalds struct sock *sk; 2789a3d2599bSChristoph Hellwig struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file)); 27901da177e4SLinus Torvalds struct udp_iter_state *state = seq->private; 27916f191efeSDenis V. Lunev struct net *net = seq_file_net(seq); 27921da177e4SLinus Torvalds 2793a3d2599bSChristoph Hellwig for (state->bucket = start; state->bucket <= afinfo->udp_table->mask; 2794f86dcc5aSEric Dumazet ++state->bucket) { 2795a3d2599bSChristoph Hellwig struct udp_hslot *hslot = &afinfo->udp_table->hash[state->bucket]; 2796f86dcc5aSEric Dumazet 2797ca065d0cSEric Dumazet if (hlist_empty(&hslot->head)) 2798f86dcc5aSEric Dumazet continue; 2799f86dcc5aSEric Dumazet 2800645ca708SEric Dumazet spin_lock_bh(&hslot->lock); 2801ca065d0cSEric Dumazet sk_for_each(sk, &hslot->head) { 2802878628fbSYOSHIFUJI Hideaki if (!net_eq(sock_net(sk), net)) 2803a91275efSDaniel Lezcano continue; 2804a3d2599bSChristoph Hellwig if (sk->sk_family == afinfo->family) 28051da177e4SLinus Torvalds goto found; 28061da177e4SLinus Torvalds } 2807645ca708SEric Dumazet spin_unlock_bh(&hslot->lock); 28081da177e4SLinus Torvalds } 28091da177e4SLinus Torvalds sk = NULL; 28101da177e4SLinus Torvalds found: 28111da177e4SLinus Torvalds return sk; 28121da177e4SLinus Torvalds } 28131da177e4SLinus Torvalds 28141da177e4SLinus Torvalds static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk) 28151da177e4SLinus Torvalds { 2816a3d2599bSChristoph Hellwig struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file)); 28171da177e4SLinus Torvalds struct udp_iter_state *state = seq->private; 28186f191efeSDenis V. Lunev struct net *net = seq_file_net(seq); 28191da177e4SLinus Torvalds 28201da177e4SLinus Torvalds do { 2821ca065d0cSEric Dumazet sk = sk_next(sk); 2822a3d2599bSChristoph Hellwig } while (sk && (!net_eq(sock_net(sk), net) || sk->sk_family != afinfo->family)); 28231da177e4SLinus Torvalds 2824645ca708SEric Dumazet if (!sk) { 2825a3d2599bSChristoph Hellwig if (state->bucket <= afinfo->udp_table->mask) 2826a3d2599bSChristoph Hellwig spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock); 2827645ca708SEric Dumazet return udp_get_first(seq, state->bucket + 1); 28281da177e4SLinus Torvalds } 28291da177e4SLinus Torvalds return sk; 28301da177e4SLinus Torvalds } 28311da177e4SLinus Torvalds 28321da177e4SLinus Torvalds static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos) 28331da177e4SLinus Torvalds { 2834645ca708SEric Dumazet struct sock *sk = udp_get_first(seq, 0); 28351da177e4SLinus Torvalds 28361da177e4SLinus Torvalds if (sk) 28371da177e4SLinus Torvalds while (pos && (sk = udp_get_next(seq, sk)) != NULL) 28381da177e4SLinus Torvalds --pos; 28391da177e4SLinus Torvalds return pos ? NULL : sk; 28401da177e4SLinus Torvalds } 28411da177e4SLinus Torvalds 2842a3d2599bSChristoph Hellwig void *udp_seq_start(struct seq_file *seq, loff_t *pos) 28431da177e4SLinus Torvalds { 284430842f29SVitaly Mayatskikh struct udp_iter_state *state = seq->private; 2845f86dcc5aSEric Dumazet state->bucket = MAX_UDP_PORTS; 284630842f29SVitaly Mayatskikh 2847b50660f1SYOSHIFUJI Hideaki return *pos ? udp_get_idx(seq, *pos-1) : SEQ_START_TOKEN; 28481da177e4SLinus Torvalds } 2849a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_start); 28501da177e4SLinus Torvalds 2851a3d2599bSChristoph Hellwig void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos) 28521da177e4SLinus Torvalds { 28531da177e4SLinus Torvalds struct sock *sk; 28541da177e4SLinus Torvalds 2855b50660f1SYOSHIFUJI Hideaki if (v == SEQ_START_TOKEN) 28561da177e4SLinus Torvalds sk = udp_get_idx(seq, 0); 28571da177e4SLinus Torvalds else 28581da177e4SLinus Torvalds sk = udp_get_next(seq, v); 28591da177e4SLinus Torvalds 28601da177e4SLinus Torvalds ++*pos; 28611da177e4SLinus Torvalds return sk; 28621da177e4SLinus Torvalds } 2863a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_next); 28641da177e4SLinus Torvalds 2865a3d2599bSChristoph Hellwig void udp_seq_stop(struct seq_file *seq, void *v) 28661da177e4SLinus Torvalds { 2867a3d2599bSChristoph Hellwig struct udp_seq_afinfo *afinfo = PDE_DATA(file_inode(seq->file)); 2868645ca708SEric Dumazet struct udp_iter_state *state = seq->private; 2869645ca708SEric Dumazet 2870a3d2599bSChristoph Hellwig if (state->bucket <= afinfo->udp_table->mask) 2871a3d2599bSChristoph Hellwig spin_unlock_bh(&afinfo->udp_table->hash[state->bucket].lock); 28721da177e4SLinus Torvalds } 2873a3d2599bSChristoph Hellwig EXPORT_SYMBOL(udp_seq_stop); 2874db8dac20SDavid S. Miller 2875db8dac20SDavid S. Miller /* ------------------------------------------------------------------------ */ 28765e659e4cSPavel Emelyanov static void udp4_format_sock(struct sock *sp, struct seq_file *f, 2877652586dfSTetsuo Handa int bucket) 2878db8dac20SDavid S. Miller { 2879db8dac20SDavid S. Miller struct inet_sock *inet = inet_sk(sp); 2880c720c7e8SEric Dumazet __be32 dest = inet->inet_daddr; 2881c720c7e8SEric Dumazet __be32 src = inet->inet_rcv_saddr; 2882c720c7e8SEric Dumazet __u16 destp = ntohs(inet->inet_dport); 2883c720c7e8SEric Dumazet __u16 srcp = ntohs(inet->inet_sport); 2884db8dac20SDavid S. Miller 2885f86dcc5aSEric Dumazet seq_printf(f, "%5d: %08X:%04X %08X:%04X" 2886652586dfSTetsuo Handa " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d", 2887db8dac20SDavid S. Miller bucket, src, srcp, dest, destp, sp->sk_state, 288831e6d363SEric Dumazet sk_wmem_alloc_get(sp), 28896c206b20SPaolo Abeni udp_rqueue_get(sp), 2890a7cb5a49SEric W. Biederman 0, 0L, 0, 2891a7cb5a49SEric W. Biederman from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)), 2892a7cb5a49SEric W. Biederman 0, sock_i_ino(sp), 289341c6d650SReshetova, Elena refcount_read(&sp->sk_refcnt), sp, 2894652586dfSTetsuo Handa atomic_read(&sp->sk_drops)); 2895db8dac20SDavid S. Miller } 2896db8dac20SDavid S. Miller 2897db8dac20SDavid S. Miller int udp4_seq_show(struct seq_file *seq, void *v) 2898db8dac20SDavid S. Miller { 2899652586dfSTetsuo Handa seq_setwidth(seq, 127); 2900db8dac20SDavid S. Miller if (v == SEQ_START_TOKEN) 2901652586dfSTetsuo Handa seq_puts(seq, " sl local_address rem_address st tx_queue " 2902db8dac20SDavid S. Miller "rx_queue tr tm->when retrnsmt uid timeout " 2903cb61cb9bSEric Dumazet "inode ref pointer drops"); 2904db8dac20SDavid S. Miller else { 2905db8dac20SDavid S. Miller struct udp_iter_state *state = seq->private; 2906db8dac20SDavid S. Miller 2907652586dfSTetsuo Handa udp4_format_sock(v, seq, state->bucket); 2908db8dac20SDavid S. Miller } 2909652586dfSTetsuo Handa seq_pad(seq, '\n'); 2910db8dac20SDavid S. Miller return 0; 2911db8dac20SDavid S. Miller } 2912db8dac20SDavid S. Miller 2913c3506372SChristoph Hellwig const struct seq_operations udp_seq_ops = { 2914a3d2599bSChristoph Hellwig .start = udp_seq_start, 2915a3d2599bSChristoph Hellwig .next = udp_seq_next, 2916a3d2599bSChristoph Hellwig .stop = udp_seq_stop, 2917a3d2599bSChristoph Hellwig .show = udp4_seq_show, 2918a3d2599bSChristoph Hellwig }; 2919c3506372SChristoph Hellwig EXPORT_SYMBOL(udp_seq_ops); 292073cb88ecSArjan van de Ven 2921db8dac20SDavid S. Miller static struct udp_seq_afinfo udp4_seq_afinfo = { 2922db8dac20SDavid S. Miller .family = AF_INET, 2923645ca708SEric Dumazet .udp_table = &udp_table, 2924db8dac20SDavid S. Miller }; 2925db8dac20SDavid S. Miller 29262c8c1e72SAlexey Dobriyan static int __net_init udp4_proc_init_net(struct net *net) 292715439febSPavel Emelyanov { 2928c3506372SChristoph Hellwig if (!proc_create_net_data("udp", 0444, net->proc_net, &udp_seq_ops, 2929c3506372SChristoph Hellwig sizeof(struct udp_iter_state), &udp4_seq_afinfo)) 2930a3d2599bSChristoph Hellwig return -ENOMEM; 2931a3d2599bSChristoph Hellwig return 0; 293215439febSPavel Emelyanov } 293315439febSPavel Emelyanov 29342c8c1e72SAlexey Dobriyan static void __net_exit udp4_proc_exit_net(struct net *net) 293515439febSPavel Emelyanov { 2936a3d2599bSChristoph Hellwig remove_proc_entry("udp", net->proc_net); 293715439febSPavel Emelyanov } 293815439febSPavel Emelyanov 293915439febSPavel Emelyanov static struct pernet_operations udp4_net_ops = { 294015439febSPavel Emelyanov .init = udp4_proc_init_net, 294115439febSPavel Emelyanov .exit = udp4_proc_exit_net, 294215439febSPavel Emelyanov }; 294315439febSPavel Emelyanov 2944db8dac20SDavid S. Miller int __init udp4_proc_init(void) 2945db8dac20SDavid S. Miller { 294615439febSPavel Emelyanov return register_pernet_subsys(&udp4_net_ops); 2947db8dac20SDavid S. Miller } 2948db8dac20SDavid S. Miller 2949db8dac20SDavid S. Miller void udp4_proc_exit(void) 2950db8dac20SDavid S. Miller { 295115439febSPavel Emelyanov unregister_pernet_subsys(&udp4_net_ops); 2952db8dac20SDavid S. Miller } 29531da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 29541da177e4SLinus Torvalds 2955f86dcc5aSEric Dumazet static __initdata unsigned long uhash_entries; 2956f86dcc5aSEric Dumazet static int __init set_uhash_entries(char *str) 2957645ca708SEric Dumazet { 2958413c27d8SEldad Zack ssize_t ret; 2959413c27d8SEldad Zack 2960f86dcc5aSEric Dumazet if (!str) 2961f86dcc5aSEric Dumazet return 0; 2962413c27d8SEldad Zack 2963413c27d8SEldad Zack ret = kstrtoul(str, 0, &uhash_entries); 2964413c27d8SEldad Zack if (ret) 2965413c27d8SEldad Zack return 0; 2966413c27d8SEldad Zack 2967f86dcc5aSEric Dumazet if (uhash_entries && uhash_entries < UDP_HTABLE_SIZE_MIN) 2968f86dcc5aSEric Dumazet uhash_entries = UDP_HTABLE_SIZE_MIN; 2969f86dcc5aSEric Dumazet return 1; 2970f86dcc5aSEric Dumazet } 2971f86dcc5aSEric Dumazet __setup("uhash_entries=", set_uhash_entries); 2972645ca708SEric Dumazet 2973f86dcc5aSEric Dumazet void __init udp_table_init(struct udp_table *table, const char *name) 2974f86dcc5aSEric Dumazet { 2975f86dcc5aSEric Dumazet unsigned int i; 2976f86dcc5aSEric Dumazet 2977f86dcc5aSEric Dumazet table->hash = alloc_large_system_hash(name, 2978512615b6SEric Dumazet 2 * sizeof(struct udp_hslot), 2979f86dcc5aSEric Dumazet uhash_entries, 2980f86dcc5aSEric Dumazet 21, /* one slot per 2 MB */ 2981f86dcc5aSEric Dumazet 0, 2982f86dcc5aSEric Dumazet &table->log, 2983f86dcc5aSEric Dumazet &table->mask, 298431fe62b9STim Bird UDP_HTABLE_SIZE_MIN, 2985f86dcc5aSEric Dumazet 64 * 1024); 298631fe62b9STim Bird 2987512615b6SEric Dumazet table->hash2 = table->hash + (table->mask + 1); 2988f86dcc5aSEric Dumazet for (i = 0; i <= table->mask; i++) { 2989ca065d0cSEric Dumazet INIT_HLIST_HEAD(&table->hash[i].head); 2990fdcc8aa9SEric Dumazet table->hash[i].count = 0; 2991645ca708SEric Dumazet spin_lock_init(&table->hash[i].lock); 2992645ca708SEric Dumazet } 2993512615b6SEric Dumazet for (i = 0; i <= table->mask; i++) { 2994ca065d0cSEric Dumazet INIT_HLIST_HEAD(&table->hash2[i].head); 2995512615b6SEric Dumazet table->hash2[i].count = 0; 2996512615b6SEric Dumazet spin_lock_init(&table->hash2[i].lock); 2997512615b6SEric Dumazet } 2998645ca708SEric Dumazet } 2999645ca708SEric Dumazet 3000723b8e46STom Herbert u32 udp_flow_hashrnd(void) 3001723b8e46STom Herbert { 3002723b8e46STom Herbert static u32 hashrnd __read_mostly; 3003723b8e46STom Herbert 3004723b8e46STom Herbert net_get_random_once(&hashrnd, sizeof(hashrnd)); 3005723b8e46STom Herbert 3006723b8e46STom Herbert return hashrnd; 3007723b8e46STom Herbert } 3008723b8e46STom Herbert EXPORT_SYMBOL(udp_flow_hashrnd); 3009723b8e46STom Herbert 30101e802951STonghao Zhang static void __udp_sysctl_init(struct net *net) 30111e802951STonghao Zhang { 30121e802951STonghao Zhang net->ipv4.sysctl_udp_rmem_min = SK_MEM_QUANTUM; 30131e802951STonghao Zhang net->ipv4.sysctl_udp_wmem_min = SK_MEM_QUANTUM; 30141e802951STonghao Zhang 30151e802951STonghao Zhang #ifdef CONFIG_NET_L3_MASTER_DEV 30161e802951STonghao Zhang net->ipv4.sysctl_udp_l3mdev_accept = 0; 30171e802951STonghao Zhang #endif 30181e802951STonghao Zhang } 30191e802951STonghao Zhang 30201e802951STonghao Zhang static int __net_init udp_sysctl_init(struct net *net) 30211e802951STonghao Zhang { 30221e802951STonghao Zhang __udp_sysctl_init(net); 30231e802951STonghao Zhang return 0; 30241e802951STonghao Zhang } 30251e802951STonghao Zhang 30261e802951STonghao Zhang static struct pernet_operations __net_initdata udp_sysctl_ops = { 30271e802951STonghao Zhang .init = udp_sysctl_init, 30281e802951STonghao Zhang }; 30291e802951STonghao Zhang 303095766fffSHideo Aoki void __init udp_init(void) 303195766fffSHideo Aoki { 3032f03d78dbSEric Dumazet unsigned long limit; 30334b272750SEric Dumazet unsigned int i; 303495766fffSHideo Aoki 3035f86dcc5aSEric Dumazet udp_table_init(&udp_table, "UDP"); 3036f03d78dbSEric Dumazet limit = nr_free_buffer_pages() / 8; 303795766fffSHideo Aoki limit = max(limit, 128UL); 303895766fffSHideo Aoki sysctl_udp_mem[0] = limit / 4 * 3; 303995766fffSHideo Aoki sysctl_udp_mem[1] = limit; 304095766fffSHideo Aoki sysctl_udp_mem[2] = sysctl_udp_mem[0] * 2; 304195766fffSHideo Aoki 30421e802951STonghao Zhang __udp_sysctl_init(&init_net); 30434b272750SEric Dumazet 30444b272750SEric Dumazet /* 16 spinlocks per cpu */ 30454b272750SEric Dumazet udp_busylocks_log = ilog2(nr_cpu_ids) + 4; 30464b272750SEric Dumazet udp_busylocks = kmalloc(sizeof(spinlock_t) << udp_busylocks_log, 30474b272750SEric Dumazet GFP_KERNEL); 30484b272750SEric Dumazet if (!udp_busylocks) 30494b272750SEric Dumazet panic("UDP: failed to alloc udp_busylocks\n"); 30504b272750SEric Dumazet for (i = 0; i < (1U << udp_busylocks_log); i++) 30514b272750SEric Dumazet spin_lock_init(udp_busylocks + i); 30521e802951STonghao Zhang 30531e802951STonghao Zhang if (register_pernet_subsys(&udp_sysctl_ops)) 30541e802951STonghao Zhang panic("UDP: failed to init sysctl parameters.\n"); 305595766fffSHideo Aoki } 3056