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 * Implementation of the Transmission Control Protocol(TCP). 71da177e4SLinus Torvalds * 802c30a84SJesper Juhl * Authors: Ross Biro 91da177e4SLinus Torvalds * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 101da177e4SLinus Torvalds * Mark Evans, <evansmp@uhura.aston.ac.uk> 111da177e4SLinus Torvalds * Corey Minyard <wf-rch!minyard@relay.EU.net> 121da177e4SLinus Torvalds * Florian La Roche, <flla@stud.uni-sb.de> 131da177e4SLinus Torvalds * Charles Hedrick, <hedrick@klinzhai.rutgers.edu> 141da177e4SLinus Torvalds * Linus Torvalds, <torvalds@cs.helsinki.fi> 151da177e4SLinus Torvalds * Alan Cox, <gw4pts@gw4pts.ampr.org> 161da177e4SLinus Torvalds * Matthew Dillon, <dillon@apollo.west.oic.com> 171da177e4SLinus Torvalds * Arnt Gulbrandsen, <agulbra@nvg.unit.no> 181da177e4SLinus Torvalds * Jorge Cwik, <jorge@laser.satlink.net> 191da177e4SLinus Torvalds * 201da177e4SLinus Torvalds * Fixes: 211da177e4SLinus Torvalds * Alan Cox : Numerous verify_area() calls 221da177e4SLinus Torvalds * Alan Cox : Set the ACK bit on a reset 231da177e4SLinus Torvalds * Alan Cox : Stopped it crashing if it closed while 241da177e4SLinus Torvalds * sk->inuse=1 and was trying to connect 251da177e4SLinus Torvalds * (tcp_err()). 261da177e4SLinus Torvalds * Alan Cox : All icmp error handling was broken 271da177e4SLinus Torvalds * pointers passed where wrong and the 281da177e4SLinus Torvalds * socket was looked up backwards. Nobody 291da177e4SLinus Torvalds * tested any icmp error code obviously. 301da177e4SLinus Torvalds * Alan Cox : tcp_err() now handled properly. It 311da177e4SLinus Torvalds * wakes people on errors. poll 321da177e4SLinus Torvalds * behaves and the icmp error race 331da177e4SLinus Torvalds * has gone by moving it into sock.c 341da177e4SLinus Torvalds * Alan Cox : tcp_send_reset() fixed to work for 351da177e4SLinus Torvalds * everything not just packets for 361da177e4SLinus Torvalds * unknown sockets. 371da177e4SLinus Torvalds * Alan Cox : tcp option processing. 381da177e4SLinus Torvalds * Alan Cox : Reset tweaked (still not 100%) [Had 391da177e4SLinus Torvalds * syn rule wrong] 401da177e4SLinus Torvalds * Herp Rosmanith : More reset fixes 411da177e4SLinus Torvalds * Alan Cox : No longer acks invalid rst frames. 421da177e4SLinus Torvalds * Acking any kind of RST is right out. 431da177e4SLinus Torvalds * Alan Cox : Sets an ignore me flag on an rst 441da177e4SLinus Torvalds * receive otherwise odd bits of prattle 451da177e4SLinus Torvalds * escape still 461da177e4SLinus Torvalds * Alan Cox : Fixed another acking RST frame bug. 471da177e4SLinus Torvalds * Should stop LAN workplace lockups. 481da177e4SLinus Torvalds * Alan Cox : Some tidyups using the new skb list 491da177e4SLinus Torvalds * facilities 501da177e4SLinus Torvalds * Alan Cox : sk->keepopen now seems to work 511da177e4SLinus Torvalds * Alan Cox : Pulls options out correctly on accepts 521da177e4SLinus Torvalds * Alan Cox : Fixed assorted sk->rqueue->next errors 531da177e4SLinus Torvalds * Alan Cox : PSH doesn't end a TCP read. Switched a 541da177e4SLinus Torvalds * bit to skb ops. 551da177e4SLinus Torvalds * Alan Cox : Tidied tcp_data to avoid a potential 561da177e4SLinus Torvalds * nasty. 571da177e4SLinus Torvalds * Alan Cox : Added some better commenting, as the 581da177e4SLinus Torvalds * tcp is hard to follow 591da177e4SLinus Torvalds * Alan Cox : Removed incorrect check for 20 * psh 601da177e4SLinus Torvalds * Michael O'Reilly : ack < copied bug fix. 611da177e4SLinus Torvalds * Johannes Stille : Misc tcp fixes (not all in yet). 621da177e4SLinus Torvalds * Alan Cox : FIN with no memory -> CRASH 631da177e4SLinus Torvalds * Alan Cox : Added socket option proto entries. 641da177e4SLinus Torvalds * Also added awareness of them to accept. 651da177e4SLinus Torvalds * Alan Cox : Added TCP options (SOL_TCP) 661da177e4SLinus Torvalds * Alan Cox : Switched wakeup calls to callbacks, 671da177e4SLinus Torvalds * so the kernel can layer network 681da177e4SLinus Torvalds * sockets. 691da177e4SLinus Torvalds * Alan Cox : Use ip_tos/ip_ttl settings. 701da177e4SLinus Torvalds * Alan Cox : Handle FIN (more) properly (we hope). 711da177e4SLinus Torvalds * Alan Cox : RST frames sent on unsynchronised 721da177e4SLinus Torvalds * state ack error. 731da177e4SLinus Torvalds * Alan Cox : Put in missing check for SYN bit. 741da177e4SLinus Torvalds * Alan Cox : Added tcp_select_window() aka NET2E 751da177e4SLinus Torvalds * window non shrink trick. 761da177e4SLinus Torvalds * Alan Cox : Added a couple of small NET2E timer 771da177e4SLinus Torvalds * fixes 781da177e4SLinus Torvalds * Charles Hedrick : TCP fixes 791da177e4SLinus Torvalds * Toomas Tamm : TCP window fixes 801da177e4SLinus Torvalds * Alan Cox : Small URG fix to rlogin ^C ack fight 811da177e4SLinus Torvalds * Charles Hedrick : Rewrote most of it to actually work 821da177e4SLinus Torvalds * Linus : Rewrote tcp_read() and URG handling 831da177e4SLinus Torvalds * completely 841da177e4SLinus Torvalds * Gerhard Koerting: Fixed some missing timer handling 851da177e4SLinus Torvalds * Matthew Dillon : Reworked TCP machine states as per RFC 861da177e4SLinus Torvalds * Gerhard Koerting: PC/TCP workarounds 871da177e4SLinus Torvalds * Adam Caldwell : Assorted timer/timing errors 881da177e4SLinus Torvalds * Matthew Dillon : Fixed another RST bug 891da177e4SLinus Torvalds * Alan Cox : Move to kernel side addressing changes. 901da177e4SLinus Torvalds * Alan Cox : Beginning work on TCP fastpathing 911da177e4SLinus Torvalds * (not yet usable) 921da177e4SLinus Torvalds * Arnt Gulbrandsen: Turbocharged tcp_check() routine. 931da177e4SLinus Torvalds * Alan Cox : TCP fast path debugging 941da177e4SLinus Torvalds * Alan Cox : Window clamping 951da177e4SLinus Torvalds * Michael Riepe : Bug in tcp_check() 961da177e4SLinus Torvalds * Matt Dillon : More TCP improvements and RST bug fixes 971da177e4SLinus Torvalds * Matt Dillon : Yet more small nasties remove from the 981da177e4SLinus Torvalds * TCP code (Be very nice to this man if 991da177e4SLinus Torvalds * tcp finally works 100%) 8) 1001da177e4SLinus Torvalds * Alan Cox : BSD accept semantics. 1011da177e4SLinus Torvalds * Alan Cox : Reset on closedown bug. 1021da177e4SLinus Torvalds * Peter De Schrijver : ENOTCONN check missing in tcp_sendto(). 1031da177e4SLinus Torvalds * Michael Pall : Handle poll() after URG properly in 1041da177e4SLinus Torvalds * all cases. 1051da177e4SLinus Torvalds * Michael Pall : Undo the last fix in tcp_read_urg() 1061da177e4SLinus Torvalds * (multi URG PUSH broke rlogin). 1071da177e4SLinus Torvalds * Michael Pall : Fix the multi URG PUSH problem in 1081da177e4SLinus Torvalds * tcp_readable(), poll() after URG 1091da177e4SLinus Torvalds * works now. 1101da177e4SLinus Torvalds * Michael Pall : recv(...,MSG_OOB) never blocks in the 1111da177e4SLinus Torvalds * BSD api. 1121da177e4SLinus Torvalds * Alan Cox : Changed the semantics of sk->socket to 1131da177e4SLinus Torvalds * fix a race and a signal problem with 1141da177e4SLinus Torvalds * accept() and async I/O. 1151da177e4SLinus Torvalds * Alan Cox : Relaxed the rules on tcp_sendto(). 1161da177e4SLinus Torvalds * Yury Shevchuk : Really fixed accept() blocking problem. 1171da177e4SLinus Torvalds * Craig I. Hagan : Allow for BSD compatible TIME_WAIT for 1181da177e4SLinus Torvalds * clients/servers which listen in on 1191da177e4SLinus Torvalds * fixed ports. 1201da177e4SLinus Torvalds * Alan Cox : Cleaned the above up and shrank it to 1211da177e4SLinus Torvalds * a sensible code size. 1221da177e4SLinus Torvalds * Alan Cox : Self connect lockup fix. 1231da177e4SLinus Torvalds * Alan Cox : No connect to multicast. 1241da177e4SLinus Torvalds * Ross Biro : Close unaccepted children on master 1251da177e4SLinus Torvalds * socket close. 1261da177e4SLinus Torvalds * Alan Cox : Reset tracing code. 1271da177e4SLinus Torvalds * Alan Cox : Spurious resets on shutdown. 1281da177e4SLinus Torvalds * Alan Cox : Giant 15 minute/60 second timer error 1291da177e4SLinus Torvalds * Alan Cox : Small whoops in polling before an 1301da177e4SLinus Torvalds * accept. 1311da177e4SLinus Torvalds * Alan Cox : Kept the state trace facility since 1321da177e4SLinus Torvalds * it's handy for debugging. 1331da177e4SLinus Torvalds * Alan Cox : More reset handler fixes. 1341da177e4SLinus Torvalds * Alan Cox : Started rewriting the code based on 1351da177e4SLinus Torvalds * the RFC's for other useful protocol 1361da177e4SLinus Torvalds * references see: Comer, KA9Q NOS, and 1371da177e4SLinus Torvalds * for a reference on the difference 1381da177e4SLinus Torvalds * between specifications and how BSD 1391da177e4SLinus Torvalds * works see the 4.4lite source. 1401da177e4SLinus Torvalds * A.N.Kuznetsov : Don't time wait on completion of tidy 1411da177e4SLinus Torvalds * close. 1421da177e4SLinus Torvalds * Linus Torvalds : Fin/Shutdown & copied_seq changes. 1431da177e4SLinus Torvalds * Linus Torvalds : Fixed BSD port reuse to work first syn 1441da177e4SLinus Torvalds * Alan Cox : Reimplemented timers as per the RFC 1451da177e4SLinus Torvalds * and using multiple timers for sanity. 1461da177e4SLinus Torvalds * Alan Cox : Small bug fixes, and a lot of new 1471da177e4SLinus Torvalds * comments. 1481da177e4SLinus Torvalds * Alan Cox : Fixed dual reader crash by locking 1491da177e4SLinus Torvalds * the buffers (much like datagram.c) 1501da177e4SLinus Torvalds * Alan Cox : Fixed stuck sockets in probe. A probe 1511da177e4SLinus Torvalds * now gets fed up of retrying without 1521da177e4SLinus Torvalds * (even a no space) answer. 1531da177e4SLinus Torvalds * Alan Cox : Extracted closing code better 1541da177e4SLinus Torvalds * Alan Cox : Fixed the closing state machine to 1551da177e4SLinus Torvalds * resemble the RFC. 1561da177e4SLinus Torvalds * Alan Cox : More 'per spec' fixes. 1571da177e4SLinus Torvalds * Jorge Cwik : Even faster checksumming. 1581da177e4SLinus Torvalds * Alan Cox : tcp_data() doesn't ack illegal PSH 1591da177e4SLinus Torvalds * only frames. At least one pc tcp stack 1601da177e4SLinus Torvalds * generates them. 1611da177e4SLinus Torvalds * Alan Cox : Cache last socket. 1621da177e4SLinus Torvalds * Alan Cox : Per route irtt. 1631da177e4SLinus Torvalds * Matt Day : poll()->select() match BSD precisely on error 1641da177e4SLinus Torvalds * Alan Cox : New buffers 1651da177e4SLinus Torvalds * Marc Tamsky : Various sk->prot->retransmits and 1661da177e4SLinus Torvalds * sk->retransmits misupdating fixed. 1671da177e4SLinus Torvalds * Fixed tcp_write_timeout: stuck close, 1681da177e4SLinus Torvalds * and TCP syn retries gets used now. 1691da177e4SLinus Torvalds * Mark Yarvis : In tcp_read_wakeup(), don't send an 1701da177e4SLinus Torvalds * ack if state is TCP_CLOSED. 1711da177e4SLinus Torvalds * Alan Cox : Look up device on a retransmit - routes may 1721da177e4SLinus Torvalds * change. Doesn't yet cope with MSS shrink right 1731da177e4SLinus Torvalds * but it's a start! 1741da177e4SLinus Torvalds * Marc Tamsky : Closing in closing fixes. 1751da177e4SLinus Torvalds * Mike Shaver : RFC1122 verifications. 1761da177e4SLinus Torvalds * Alan Cox : rcv_saddr errors. 1771da177e4SLinus Torvalds * Alan Cox : Block double connect(). 1781da177e4SLinus Torvalds * Alan Cox : Small hooks for enSKIP. 1791da177e4SLinus Torvalds * Alexey Kuznetsov: Path MTU discovery. 1801da177e4SLinus Torvalds * Alan Cox : Support soft errors. 1811da177e4SLinus Torvalds * Alan Cox : Fix MTU discovery pathological case 1821da177e4SLinus Torvalds * when the remote claims no mtu! 1831da177e4SLinus Torvalds * Marc Tamsky : TCP_CLOSE fix. 1841da177e4SLinus Torvalds * Colin (G3TNE) : Send a reset on syn ack replies in 1851da177e4SLinus Torvalds * window but wrong (fixes NT lpd problems) 1861da177e4SLinus Torvalds * Pedro Roque : Better TCP window handling, delayed ack. 1871da177e4SLinus Torvalds * Joerg Reuter : No modification of locked buffers in 1881da177e4SLinus Torvalds * tcp_do_retransmit() 1891da177e4SLinus Torvalds * Eric Schenk : Changed receiver side silly window 1901da177e4SLinus Torvalds * avoidance algorithm to BSD style 1911da177e4SLinus Torvalds * algorithm. This doubles throughput 1921da177e4SLinus Torvalds * against machines running Solaris, 1931da177e4SLinus Torvalds * and seems to result in general 1941da177e4SLinus Torvalds * improvement. 1951da177e4SLinus Torvalds * Stefan Magdalinski : adjusted tcp_readable() to fix FIONREAD 1961da177e4SLinus Torvalds * Willy Konynenberg : Transparent proxying support. 1971da177e4SLinus Torvalds * Mike McLagan : Routing by source 1981da177e4SLinus Torvalds * Keith Owens : Do proper merging with partial SKB's in 1991da177e4SLinus Torvalds * tcp_do_sendmsg to avoid burstiness. 2001da177e4SLinus Torvalds * Eric Schenk : Fix fast close down bug with 2011da177e4SLinus Torvalds * shutdown() followed by close(). 2021da177e4SLinus Torvalds * Andi Kleen : Make poll agree with SIGIO 2031da177e4SLinus Torvalds * Salvatore Sanfilippo : Support SO_LINGER with linger == 1 and 2041da177e4SLinus Torvalds * lingertime == 0 (RFC 793 ABORT Call) 2051da177e4SLinus Torvalds * Hirokazu Takahashi : Use copy_from_user() instead of 2061da177e4SLinus Torvalds * csum_and_copy_from_user() if possible. 2071da177e4SLinus Torvalds * 2081da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 2091da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 2101da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 2111da177e4SLinus Torvalds * 2 of the License, or(at your option) any later version. 2121da177e4SLinus Torvalds * 2131da177e4SLinus Torvalds * Description of States: 2141da177e4SLinus Torvalds * 2151da177e4SLinus Torvalds * TCP_SYN_SENT sent a connection request, waiting for ack 2161da177e4SLinus Torvalds * 2171da177e4SLinus Torvalds * TCP_SYN_RECV received a connection request, sent ack, 2181da177e4SLinus Torvalds * waiting for final ack in three-way handshake. 2191da177e4SLinus Torvalds * 2201da177e4SLinus Torvalds * TCP_ESTABLISHED connection established 2211da177e4SLinus Torvalds * 2221da177e4SLinus Torvalds * TCP_FIN_WAIT1 our side has shutdown, waiting to complete 2231da177e4SLinus Torvalds * transmission of remaining buffered data 2241da177e4SLinus Torvalds * 2251da177e4SLinus Torvalds * TCP_FIN_WAIT2 all buffered data sent, waiting for remote 2261da177e4SLinus Torvalds * to shutdown 2271da177e4SLinus Torvalds * 2281da177e4SLinus Torvalds * TCP_CLOSING both sides have shutdown but we still have 2291da177e4SLinus Torvalds * data we have to finish sending 2301da177e4SLinus Torvalds * 2311da177e4SLinus Torvalds * TCP_TIME_WAIT timeout to catch resent junk before entering 2321da177e4SLinus Torvalds * closed, can only be entered from FIN_WAIT2 2331da177e4SLinus Torvalds * or CLOSING. Required because the other end 2341da177e4SLinus Torvalds * may not have gotten our last ACK causing it 2351da177e4SLinus Torvalds * to retransmit the data packet (which we ignore) 2361da177e4SLinus Torvalds * 2371da177e4SLinus Torvalds * TCP_CLOSE_WAIT remote side has shutdown and is waiting for 2381da177e4SLinus Torvalds * us to finish writing our data and to shutdown 2391da177e4SLinus Torvalds * (we have to close() to move on to LAST_ACK) 2401da177e4SLinus Torvalds * 2411da177e4SLinus Torvalds * TCP_LAST_ACK out side has shutdown after remote has 2421da177e4SLinus Torvalds * shutdown. There may still be data in our 2431da177e4SLinus Torvalds * buffer that we have to finish sending 2441da177e4SLinus Torvalds * 2451da177e4SLinus Torvalds * TCP_CLOSE socket is finished 2461da177e4SLinus Torvalds */ 2471da177e4SLinus Torvalds 248172589ccSIlpo Järvinen #include <linux/kernel.h> 2491da177e4SLinus Torvalds #include <linux/module.h> 2501da177e4SLinus Torvalds #include <linux/types.h> 2511da177e4SLinus Torvalds #include <linux/fcntl.h> 2521da177e4SLinus Torvalds #include <linux/poll.h> 2531da177e4SLinus Torvalds #include <linux/init.h> 2541da177e4SLinus Torvalds #include <linux/fs.h> 2559c55e01cSJens Axboe #include <linux/skbuff.h> 25681b23b4aSAndrew Morton #include <linux/scatterlist.h> 2579c55e01cSJens Axboe #include <linux/splice.h> 2589c55e01cSJens Axboe #include <linux/net.h> 2599c55e01cSJens Axboe #include <linux/socket.h> 2601da177e4SLinus Torvalds #include <linux/random.h> 2611da177e4SLinus Torvalds #include <linux/bootmem.h> 26257413ebcSMiquel van Smoorenburg #include <linux/highmem.h> 26357413ebcSMiquel van Smoorenburg #include <linux/swap.h> 264b8059eadSDavid S. Miller #include <linux/cache.h> 265f4c50d99SHerbert Xu #include <linux/err.h> 266cfb6eeb4SYOSHIFUJI Hideaki #include <linux/crypto.h> 267*da5c78c8SWilliam Allen Simpson #include <linux/time.h> 2681da177e4SLinus Torvalds 2691da177e4SLinus Torvalds #include <net/icmp.h> 2701da177e4SLinus Torvalds #include <net/tcp.h> 2711da177e4SLinus Torvalds #include <net/xfrm.h> 2721da177e4SLinus Torvalds #include <net/ip.h> 2731a2449a8SChris Leech #include <net/netdma.h> 2749c55e01cSJens Axboe #include <net/sock.h> 2751da177e4SLinus Torvalds 2761da177e4SLinus Torvalds #include <asm/uaccess.h> 2771da177e4SLinus Torvalds #include <asm/ioctls.h> 2781da177e4SLinus Torvalds 279ab32ea5dSBrian Haley int sysctl_tcp_fin_timeout __read_mostly = TCP_FIN_TIMEOUT; 2801da177e4SLinus Torvalds 281dd24c001SEric Dumazet struct percpu_counter tcp_orphan_count; 2820a5578cfSArnaldo Carvalho de Melo EXPORT_SYMBOL_GPL(tcp_orphan_count); 2830a5578cfSArnaldo Carvalho de Melo 284b8059eadSDavid S. Miller int sysctl_tcp_mem[3] __read_mostly; 285b8059eadSDavid S. Miller int sysctl_tcp_wmem[3] __read_mostly; 286b8059eadSDavid S. Miller int sysctl_tcp_rmem[3] __read_mostly; 2871da177e4SLinus Torvalds 2881da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_tcp_mem); 2891da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_tcp_rmem); 2901da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_tcp_wmem); 2911da177e4SLinus Torvalds 2921da177e4SLinus Torvalds atomic_t tcp_memory_allocated; /* Current allocated memory. */ 2931da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_memory_allocated); 2941748376bSEric Dumazet 2951748376bSEric Dumazet /* 2961748376bSEric Dumazet * Current number of TCP sockets. 2971748376bSEric Dumazet */ 2981748376bSEric Dumazet struct percpu_counter tcp_sockets_allocated; 2991da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sockets_allocated); 3001da177e4SLinus Torvalds 3011da177e4SLinus Torvalds /* 3029c55e01cSJens Axboe * TCP splice context 3039c55e01cSJens Axboe */ 3049c55e01cSJens Axboe struct tcp_splice_state { 3059c55e01cSJens Axboe struct pipe_inode_info *pipe; 3069c55e01cSJens Axboe size_t len; 3079c55e01cSJens Axboe unsigned int flags; 3089c55e01cSJens Axboe }; 3099c55e01cSJens Axboe 3109c55e01cSJens Axboe /* 3111da177e4SLinus Torvalds * Pressure flag: try to collapse. 3121da177e4SLinus Torvalds * Technical note: it is used by multiple contexts non atomically. 3133ab224beSHideo Aoki * All the __sk_mem_schedule() is of this nature: accounting 3141da177e4SLinus Torvalds * is strict, actions are advisory and have some latency. 3151da177e4SLinus Torvalds */ 3164103f8cdSEric Dumazet int tcp_memory_pressure __read_mostly; 3171da177e4SLinus Torvalds 3181da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_memory_pressure); 3191da177e4SLinus Torvalds 3205c52ba17SPavel Emelyanov void tcp_enter_memory_pressure(struct sock *sk) 3211da177e4SLinus Torvalds { 3221da177e4SLinus Torvalds if (!tcp_memory_pressure) { 3234e673444SPavel Emelyanov NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMEMORYPRESSURES); 3241da177e4SLinus Torvalds tcp_memory_pressure = 1; 3251da177e4SLinus Torvalds } 3261da177e4SLinus Torvalds } 3271da177e4SLinus Torvalds 3281da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_enter_memory_pressure); 3291da177e4SLinus Torvalds 330b103cf34SJulian Anastasov /* Convert seconds to retransmits based on initial and max timeout */ 331b103cf34SJulian Anastasov static u8 secs_to_retrans(int seconds, int timeout, int rto_max) 332b103cf34SJulian Anastasov { 333b103cf34SJulian Anastasov u8 res = 0; 334b103cf34SJulian Anastasov 335b103cf34SJulian Anastasov if (seconds > 0) { 336b103cf34SJulian Anastasov int period = timeout; 337b103cf34SJulian Anastasov 338b103cf34SJulian Anastasov res = 1; 339b103cf34SJulian Anastasov while (seconds > period && res < 255) { 340b103cf34SJulian Anastasov res++; 341b103cf34SJulian Anastasov timeout <<= 1; 342b103cf34SJulian Anastasov if (timeout > rto_max) 343b103cf34SJulian Anastasov timeout = rto_max; 344b103cf34SJulian Anastasov period += timeout; 345b103cf34SJulian Anastasov } 346b103cf34SJulian Anastasov } 347b103cf34SJulian Anastasov return res; 348b103cf34SJulian Anastasov } 349b103cf34SJulian Anastasov 350b103cf34SJulian Anastasov /* Convert retransmits to seconds based on initial and max timeout */ 351b103cf34SJulian Anastasov static int retrans_to_secs(u8 retrans, int timeout, int rto_max) 352b103cf34SJulian Anastasov { 353b103cf34SJulian Anastasov int period = 0; 354b103cf34SJulian Anastasov 355b103cf34SJulian Anastasov if (retrans > 0) { 356b103cf34SJulian Anastasov period = timeout; 357b103cf34SJulian Anastasov while (--retrans) { 358b103cf34SJulian Anastasov timeout <<= 1; 359b103cf34SJulian Anastasov if (timeout > rto_max) 360b103cf34SJulian Anastasov timeout = rto_max; 361b103cf34SJulian Anastasov period += timeout; 362b103cf34SJulian Anastasov } 363b103cf34SJulian Anastasov } 364b103cf34SJulian Anastasov return period; 365b103cf34SJulian Anastasov } 366b103cf34SJulian Anastasov 3671da177e4SLinus Torvalds /* 3681da177e4SLinus Torvalds * Wait for a TCP event. 3691da177e4SLinus Torvalds * 3701da177e4SLinus Torvalds * Note that we don't need to lock the socket, as the upper poll layers 3711da177e4SLinus Torvalds * take care of normal races (between the test and the event) and we don't 3721da177e4SLinus Torvalds * go look at any of the socket buffers directly. 3731da177e4SLinus Torvalds */ 3741da177e4SLinus Torvalds unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait) 3751da177e4SLinus Torvalds { 3761da177e4SLinus Torvalds unsigned int mask; 3771da177e4SLinus Torvalds struct sock *sk = sock->sk; 3781da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 3791da177e4SLinus Torvalds 380a57de0b4SJiri Olsa sock_poll_wait(file, sk->sk_sleep, wait); 3811da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) 382dc40c7bcSArnaldo Carvalho de Melo return inet_csk_listen_poll(sk); 3831da177e4SLinus Torvalds 3841da177e4SLinus Torvalds /* Socket is not locked. We are protected from async events 38570efce27SWill Newton * by poll logic and correct handling of state changes 38670efce27SWill Newton * made by other threads is impossible in any case. 3871da177e4SLinus Torvalds */ 3881da177e4SLinus Torvalds 3891da177e4SLinus Torvalds mask = 0; 3901da177e4SLinus Torvalds if (sk->sk_err) 3911da177e4SLinus Torvalds mask = POLLERR; 3921da177e4SLinus Torvalds 3931da177e4SLinus Torvalds /* 3941da177e4SLinus Torvalds * POLLHUP is certainly not done right. But poll() doesn't 3951da177e4SLinus Torvalds * have a notion of HUP in just one direction, and for a 3961da177e4SLinus Torvalds * socket the read side is more interesting. 3971da177e4SLinus Torvalds * 3981da177e4SLinus Torvalds * Some poll() documentation says that POLLHUP is incompatible 3991da177e4SLinus Torvalds * with the POLLOUT/POLLWR flags, so somebody should check this 4001da177e4SLinus Torvalds * all. But careful, it tends to be safer to return too many 4011da177e4SLinus Torvalds * bits than too few, and you can easily break real applications 4021da177e4SLinus Torvalds * if you don't tell them that something has hung up! 4031da177e4SLinus Torvalds * 4041da177e4SLinus Torvalds * Check-me. 4051da177e4SLinus Torvalds * 4061da177e4SLinus Torvalds * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and 4071da177e4SLinus Torvalds * our fs/select.c). It means that after we received EOF, 4081da177e4SLinus Torvalds * poll always returns immediately, making impossible poll() on write() 4091da177e4SLinus Torvalds * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP 4101da177e4SLinus Torvalds * if and only if shutdown has been made in both directions. 4111da177e4SLinus Torvalds * Actually, it is interesting to look how Solaris and DUX 41270efce27SWill Newton * solve this dilemma. I would prefer, if POLLHUP were maskable, 4131da177e4SLinus Torvalds * then we could set it on SND_SHUTDOWN. BTW examples given 4141da177e4SLinus Torvalds * in Stevens' books assume exactly this behaviour, it explains 41570efce27SWill Newton * why POLLHUP is incompatible with POLLOUT. --ANK 4161da177e4SLinus Torvalds * 4171da177e4SLinus Torvalds * NOTE. Check for TCP_CLOSE is added. The goal is to prevent 4181da177e4SLinus Torvalds * blocking on fresh not-connected or disconnected socket. --ANK 4191da177e4SLinus Torvalds */ 4201da177e4SLinus Torvalds if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == TCP_CLOSE) 4211da177e4SLinus Torvalds mask |= POLLHUP; 4221da177e4SLinus Torvalds if (sk->sk_shutdown & RCV_SHUTDOWN) 423f348d70aSDavide Libenzi mask |= POLLIN | POLLRDNORM | POLLRDHUP; 4241da177e4SLinus Torvalds 4251da177e4SLinus Torvalds /* Connected? */ 4261da177e4SLinus Torvalds if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV)) { 427c7004482SDavid S. Miller int target = sock_rcvlowat(sk, 0, INT_MAX); 428c7004482SDavid S. Miller 429c7004482SDavid S. Miller if (tp->urg_seq == tp->copied_seq && 430c7004482SDavid S. Miller !sock_flag(sk, SOCK_URGINLINE) && 431c7004482SDavid S. Miller tp->urg_data) 432c7004482SDavid S. Miller target--; 433c7004482SDavid S. Miller 4341da177e4SLinus Torvalds /* Potential race condition. If read of tp below will 4351da177e4SLinus Torvalds * escape above sk->sk_state, we can be illegally awaken 4361da177e4SLinus Torvalds * in SYN_* states. */ 437c7004482SDavid S. Miller if (tp->rcv_nxt - tp->copied_seq >= target) 4381da177e4SLinus Torvalds mask |= POLLIN | POLLRDNORM; 4391da177e4SLinus Torvalds 4401da177e4SLinus Torvalds if (!(sk->sk_shutdown & SEND_SHUTDOWN)) { 4411da177e4SLinus Torvalds if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) { 4421da177e4SLinus Torvalds mask |= POLLOUT | POLLWRNORM; 4431da177e4SLinus Torvalds } else { /* send SIGIO later */ 4441da177e4SLinus Torvalds set_bit(SOCK_ASYNC_NOSPACE, 4451da177e4SLinus Torvalds &sk->sk_socket->flags); 4461da177e4SLinus Torvalds set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); 4471da177e4SLinus Torvalds 4481da177e4SLinus Torvalds /* Race breaker. If space is freed after 4491da177e4SLinus Torvalds * wspace test but before the flags are set, 4501da177e4SLinus Torvalds * IO signal will be lost. 4511da177e4SLinus Torvalds */ 4521da177e4SLinus Torvalds if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) 4531da177e4SLinus Torvalds mask |= POLLOUT | POLLWRNORM; 4541da177e4SLinus Torvalds } 4551da177e4SLinus Torvalds } 4561da177e4SLinus Torvalds 4571da177e4SLinus Torvalds if (tp->urg_data & TCP_URG_VALID) 4581da177e4SLinus Torvalds mask |= POLLPRI; 4591da177e4SLinus Torvalds } 4601da177e4SLinus Torvalds return mask; 4611da177e4SLinus Torvalds } 4621da177e4SLinus Torvalds 4631da177e4SLinus Torvalds int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg) 4641da177e4SLinus Torvalds { 4651da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 4661da177e4SLinus Torvalds int answ; 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvalds switch (cmd) { 4691da177e4SLinus Torvalds case SIOCINQ: 4701da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) 4711da177e4SLinus Torvalds return -EINVAL; 4721da177e4SLinus Torvalds 4731da177e4SLinus Torvalds lock_sock(sk); 4741da177e4SLinus Torvalds if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) 4751da177e4SLinus Torvalds answ = 0; 4761da177e4SLinus Torvalds else if (sock_flag(sk, SOCK_URGINLINE) || 4771da177e4SLinus Torvalds !tp->urg_data || 4781da177e4SLinus Torvalds before(tp->urg_seq, tp->copied_seq) || 4791da177e4SLinus Torvalds !before(tp->urg_seq, tp->rcv_nxt)) { 48091521944SDavid S. Miller struct sk_buff *skb; 48191521944SDavid S. Miller 4821da177e4SLinus Torvalds answ = tp->rcv_nxt - tp->copied_seq; 4831da177e4SLinus Torvalds 4841da177e4SLinus Torvalds /* Subtract 1, if FIN is in queue. */ 48591521944SDavid S. Miller skb = skb_peek_tail(&sk->sk_receive_queue); 48691521944SDavid S. Miller if (answ && skb) 48791521944SDavid S. Miller answ -= tcp_hdr(skb)->fin; 4881da177e4SLinus Torvalds } else 4891da177e4SLinus Torvalds answ = tp->urg_seq - tp->copied_seq; 4901da177e4SLinus Torvalds release_sock(sk); 4911da177e4SLinus Torvalds break; 4921da177e4SLinus Torvalds case SIOCATMARK: 4931da177e4SLinus Torvalds answ = tp->urg_data && tp->urg_seq == tp->copied_seq; 4941da177e4SLinus Torvalds break; 4951da177e4SLinus Torvalds case SIOCOUTQ: 4961da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) 4971da177e4SLinus Torvalds return -EINVAL; 4981da177e4SLinus Torvalds 4991da177e4SLinus Torvalds if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) 5001da177e4SLinus Torvalds answ = 0; 5011da177e4SLinus Torvalds else 5021da177e4SLinus Torvalds answ = tp->write_seq - tp->snd_una; 5031da177e4SLinus Torvalds break; 5041da177e4SLinus Torvalds default: 5051da177e4SLinus Torvalds return -ENOIOCTLCMD; 5063ff50b79SStephen Hemminger } 5071da177e4SLinus Torvalds 5081da177e4SLinus Torvalds return put_user(answ, (int __user *)arg); 5091da177e4SLinus Torvalds } 5101da177e4SLinus Torvalds 5111da177e4SLinus Torvalds static inline void tcp_mark_push(struct tcp_sock *tp, struct sk_buff *skb) 5121da177e4SLinus Torvalds { 5131da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH; 5141da177e4SLinus Torvalds tp->pushed_seq = tp->write_seq; 5151da177e4SLinus Torvalds } 5161da177e4SLinus Torvalds 5171da177e4SLinus Torvalds static inline int forced_push(struct tcp_sock *tp) 5181da177e4SLinus Torvalds { 5191da177e4SLinus Torvalds return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1)); 5201da177e4SLinus Torvalds } 5211da177e4SLinus Torvalds 5229e412ba7SIlpo Järvinen static inline void skb_entail(struct sock *sk, struct sk_buff *skb) 5231da177e4SLinus Torvalds { 5249e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 525352d4800SArnaldo Carvalho de Melo struct tcp_skb_cb *tcb = TCP_SKB_CB(skb); 526352d4800SArnaldo Carvalho de Melo 5271da177e4SLinus Torvalds skb->csum = 0; 528352d4800SArnaldo Carvalho de Melo tcb->seq = tcb->end_seq = tp->write_seq; 529352d4800SArnaldo Carvalho de Melo tcb->flags = TCPCB_FLAG_ACK; 530352d4800SArnaldo Carvalho de Melo tcb->sacked = 0; 5311da177e4SLinus Torvalds skb_header_release(skb); 532fe067e8aSDavid S. Miller tcp_add_write_queue_tail(sk, skb); 5333ab224beSHideo Aoki sk->sk_wmem_queued += skb->truesize; 5343ab224beSHideo Aoki sk_mem_charge(sk, skb->truesize); 53589ebd197SDavid S. Miller if (tp->nonagle & TCP_NAGLE_PUSH) 5361da177e4SLinus Torvalds tp->nonagle &= ~TCP_NAGLE_PUSH; 5371da177e4SLinus Torvalds } 5381da177e4SLinus Torvalds 5391da177e4SLinus Torvalds static inline void tcp_mark_urg(struct tcp_sock *tp, int flags, 5401da177e4SLinus Torvalds struct sk_buff *skb) 5411da177e4SLinus Torvalds { 54233f5f57eSIlpo Järvinen if (flags & MSG_OOB) 5431da177e4SLinus Torvalds tp->snd_up = tp->write_seq; 5441da177e4SLinus Torvalds } 5451da177e4SLinus Torvalds 5469e412ba7SIlpo Järvinen static inline void tcp_push(struct sock *sk, int flags, int mss_now, 5479e412ba7SIlpo Järvinen int nonagle) 5481da177e4SLinus Torvalds { 5499e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 5509e412ba7SIlpo Järvinen 551fe067e8aSDavid S. Miller if (tcp_send_head(sk)) { 552fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_write_queue_tail(sk); 5531da177e4SLinus Torvalds if (!(flags & MSG_MORE) || forced_push(tp)) 5541da177e4SLinus Torvalds tcp_mark_push(tp, skb); 5551da177e4SLinus Torvalds tcp_mark_urg(tp, flags, skb); 5569e412ba7SIlpo Järvinen __tcp_push_pending_frames(sk, mss_now, 5571da177e4SLinus Torvalds (flags & MSG_MORE) ? TCP_NAGLE_CORK : nonagle); 5581da177e4SLinus Torvalds } 5591da177e4SLinus Torvalds } 5601da177e4SLinus Torvalds 5616ff7751dSAdrian Bunk static int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb, 5629c55e01cSJens Axboe unsigned int offset, size_t len) 5639c55e01cSJens Axboe { 5649c55e01cSJens Axboe struct tcp_splice_state *tss = rd_desc->arg.data; 56533966dd0SWilly Tarreau int ret; 5669c55e01cSJens Axboe 5679fa5fdf2SDimitris Michailidis ret = skb_splice_bits(skb, offset, tss->pipe, min(rd_desc->count, len), 5689fa5fdf2SDimitris Michailidis tss->flags); 56933966dd0SWilly Tarreau if (ret > 0) 57033966dd0SWilly Tarreau rd_desc->count -= ret; 57133966dd0SWilly Tarreau return ret; 5729c55e01cSJens Axboe } 5739c55e01cSJens Axboe 5749c55e01cSJens Axboe static int __tcp_splice_read(struct sock *sk, struct tcp_splice_state *tss) 5759c55e01cSJens Axboe { 5769c55e01cSJens Axboe /* Store TCP splice context information in read_descriptor_t. */ 5779c55e01cSJens Axboe read_descriptor_t rd_desc = { 5789c55e01cSJens Axboe .arg.data = tss, 57933966dd0SWilly Tarreau .count = tss->len, 5809c55e01cSJens Axboe }; 5819c55e01cSJens Axboe 5829c55e01cSJens Axboe return tcp_read_sock(sk, &rd_desc, tcp_splice_data_recv); 5839c55e01cSJens Axboe } 5849c55e01cSJens Axboe 5859c55e01cSJens Axboe /** 5869c55e01cSJens Axboe * tcp_splice_read - splice data from TCP socket to a pipe 5879c55e01cSJens Axboe * @sock: socket to splice from 5889c55e01cSJens Axboe * @ppos: position (not valid) 5899c55e01cSJens Axboe * @pipe: pipe to splice to 5909c55e01cSJens Axboe * @len: number of bytes to splice 5919c55e01cSJens Axboe * @flags: splice modifier flags 5929c55e01cSJens Axboe * 5939c55e01cSJens Axboe * Description: 5949c55e01cSJens Axboe * Will read pages from given socket and fill them into a pipe. 5959c55e01cSJens Axboe * 5969c55e01cSJens Axboe **/ 5979c55e01cSJens Axboe ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos, 5989c55e01cSJens Axboe struct pipe_inode_info *pipe, size_t len, 5999c55e01cSJens Axboe unsigned int flags) 6009c55e01cSJens Axboe { 6019c55e01cSJens Axboe struct sock *sk = sock->sk; 6029c55e01cSJens Axboe struct tcp_splice_state tss = { 6039c55e01cSJens Axboe .pipe = pipe, 6049c55e01cSJens Axboe .len = len, 6059c55e01cSJens Axboe .flags = flags, 6069c55e01cSJens Axboe }; 6079c55e01cSJens Axboe long timeo; 6089c55e01cSJens Axboe ssize_t spliced; 6099c55e01cSJens Axboe int ret; 6109c55e01cSJens Axboe 6119c55e01cSJens Axboe /* 6129c55e01cSJens Axboe * We can't seek on a socket input 6139c55e01cSJens Axboe */ 6149c55e01cSJens Axboe if (unlikely(*ppos)) 6159c55e01cSJens Axboe return -ESPIPE; 6169c55e01cSJens Axboe 6179c55e01cSJens Axboe ret = spliced = 0; 6189c55e01cSJens Axboe 6199c55e01cSJens Axboe lock_sock(sk); 6209c55e01cSJens Axboe 62142324c62SEric Dumazet timeo = sock_rcvtimeo(sk, sock->file->f_flags & O_NONBLOCK); 6229c55e01cSJens Axboe while (tss.len) { 6239c55e01cSJens Axboe ret = __tcp_splice_read(sk, &tss); 6249c55e01cSJens Axboe if (ret < 0) 6259c55e01cSJens Axboe break; 6269c55e01cSJens Axboe else if (!ret) { 6279c55e01cSJens Axboe if (spliced) 6289c55e01cSJens Axboe break; 6299c55e01cSJens Axboe if (sock_flag(sk, SOCK_DONE)) 6309c55e01cSJens Axboe break; 6319c55e01cSJens Axboe if (sk->sk_err) { 6329c55e01cSJens Axboe ret = sock_error(sk); 6339c55e01cSJens Axboe break; 6349c55e01cSJens Axboe } 6359c55e01cSJens Axboe if (sk->sk_shutdown & RCV_SHUTDOWN) 6369c55e01cSJens Axboe break; 6379c55e01cSJens Axboe if (sk->sk_state == TCP_CLOSE) { 6389c55e01cSJens Axboe /* 6399c55e01cSJens Axboe * This occurs when user tries to read 6409c55e01cSJens Axboe * from never connected socket. 6419c55e01cSJens Axboe */ 6429c55e01cSJens Axboe if (!sock_flag(sk, SOCK_DONE)) 6439c55e01cSJens Axboe ret = -ENOTCONN; 6449c55e01cSJens Axboe break; 6459c55e01cSJens Axboe } 6469c55e01cSJens Axboe if (!timeo) { 6479c55e01cSJens Axboe ret = -EAGAIN; 6489c55e01cSJens Axboe break; 6499c55e01cSJens Axboe } 6509c55e01cSJens Axboe sk_wait_data(sk, &timeo); 6519c55e01cSJens Axboe if (signal_pending(current)) { 6529c55e01cSJens Axboe ret = sock_intr_errno(timeo); 6539c55e01cSJens Axboe break; 6549c55e01cSJens Axboe } 6559c55e01cSJens Axboe continue; 6569c55e01cSJens Axboe } 6579c55e01cSJens Axboe tss.len -= ret; 6589c55e01cSJens Axboe spliced += ret; 6599c55e01cSJens Axboe 66033966dd0SWilly Tarreau if (!timeo) 66133966dd0SWilly Tarreau break; 6629c55e01cSJens Axboe release_sock(sk); 6639c55e01cSJens Axboe lock_sock(sk); 6649c55e01cSJens Axboe 6659c55e01cSJens Axboe if (sk->sk_err || sk->sk_state == TCP_CLOSE || 66633966dd0SWilly Tarreau (sk->sk_shutdown & RCV_SHUTDOWN) || 6679c55e01cSJens Axboe signal_pending(current)) 6689c55e01cSJens Axboe break; 6699c55e01cSJens Axboe } 6709c55e01cSJens Axboe 6719c55e01cSJens Axboe release_sock(sk); 6729c55e01cSJens Axboe 6739c55e01cSJens Axboe if (spliced) 6749c55e01cSJens Axboe return spliced; 6759c55e01cSJens Axboe 6769c55e01cSJens Axboe return ret; 6779c55e01cSJens Axboe } 6789c55e01cSJens Axboe 679df97c708SPavel Emelyanov struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp) 680f561d0f2SPavel Emelyanov { 681f561d0f2SPavel Emelyanov struct sk_buff *skb; 682f561d0f2SPavel Emelyanov 683f561d0f2SPavel Emelyanov /* The TCP header must be at least 32-bit aligned. */ 684f561d0f2SPavel Emelyanov size = ALIGN(size, 4); 685f561d0f2SPavel Emelyanov 686f561d0f2SPavel Emelyanov skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp); 687f561d0f2SPavel Emelyanov if (skb) { 6883ab224beSHideo Aoki if (sk_wmem_schedule(sk, skb->truesize)) { 689f561d0f2SPavel Emelyanov /* 690f561d0f2SPavel Emelyanov * Make sure that we have exactly size bytes 691f561d0f2SPavel Emelyanov * available to the caller, no more, no less. 692f561d0f2SPavel Emelyanov */ 693f561d0f2SPavel Emelyanov skb_reserve(skb, skb_tailroom(skb) - size); 694f561d0f2SPavel Emelyanov return skb; 695f561d0f2SPavel Emelyanov } 696f561d0f2SPavel Emelyanov __kfree_skb(skb); 697f561d0f2SPavel Emelyanov } else { 6985c52ba17SPavel Emelyanov sk->sk_prot->enter_memory_pressure(sk); 699f561d0f2SPavel Emelyanov sk_stream_moderate_sndbuf(sk); 700f561d0f2SPavel Emelyanov } 701f561d0f2SPavel Emelyanov return NULL; 702f561d0f2SPavel Emelyanov } 703f561d0f2SPavel Emelyanov 7040c54b85fSIlpo Järvinen static unsigned int tcp_xmit_size_goal(struct sock *sk, u32 mss_now, 7050c54b85fSIlpo Järvinen int large_allowed) 7060c54b85fSIlpo Järvinen { 7070c54b85fSIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 7082a3a041cSIlpo Järvinen u32 xmit_size_goal, old_size_goal; 7090c54b85fSIlpo Järvinen 7100c54b85fSIlpo Järvinen xmit_size_goal = mss_now; 7110c54b85fSIlpo Järvinen 7120c54b85fSIlpo Järvinen if (large_allowed && sk_can_gso(sk)) { 7130c54b85fSIlpo Järvinen xmit_size_goal = ((sk->sk_gso_max_size - 1) - 7140c54b85fSIlpo Järvinen inet_csk(sk)->icsk_af_ops->net_header_len - 7150c54b85fSIlpo Järvinen inet_csk(sk)->icsk_ext_hdr_len - 7160c54b85fSIlpo Järvinen tp->tcp_header_len); 7170c54b85fSIlpo Järvinen 7180c54b85fSIlpo Järvinen xmit_size_goal = tcp_bound_to_half_wnd(tp, xmit_size_goal); 7192a3a041cSIlpo Järvinen 7202a3a041cSIlpo Järvinen /* We try hard to avoid divides here */ 7212a3a041cSIlpo Järvinen old_size_goal = tp->xmit_size_goal_segs * mss_now; 7222a3a041cSIlpo Järvinen 7232a3a041cSIlpo Järvinen if (likely(old_size_goal <= xmit_size_goal && 7242a3a041cSIlpo Järvinen old_size_goal + mss_now > xmit_size_goal)) { 7252a3a041cSIlpo Järvinen xmit_size_goal = old_size_goal; 7262a3a041cSIlpo Järvinen } else { 7272a3a041cSIlpo Järvinen tp->xmit_size_goal_segs = xmit_size_goal / mss_now; 7282a3a041cSIlpo Järvinen xmit_size_goal = tp->xmit_size_goal_segs * mss_now; 7292a3a041cSIlpo Järvinen } 7300c54b85fSIlpo Järvinen } 7310c54b85fSIlpo Järvinen 732afece1c6SIlpo Järvinen return max(xmit_size_goal, mss_now); 7330c54b85fSIlpo Järvinen } 7340c54b85fSIlpo Järvinen 7350c54b85fSIlpo Järvinen static int tcp_send_mss(struct sock *sk, int *size_goal, int flags) 7360c54b85fSIlpo Järvinen { 7370c54b85fSIlpo Järvinen int mss_now; 7380c54b85fSIlpo Järvinen 7390c54b85fSIlpo Järvinen mss_now = tcp_current_mss(sk); 7400c54b85fSIlpo Järvinen *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB)); 7410c54b85fSIlpo Järvinen 7420c54b85fSIlpo Järvinen return mss_now; 7430c54b85fSIlpo Järvinen } 7440c54b85fSIlpo Järvinen 7451da177e4SLinus Torvalds static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset, 7461da177e4SLinus Torvalds size_t psize, int flags) 7471da177e4SLinus Torvalds { 7481da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 749c1b4a7e6SDavid S. Miller int mss_now, size_goal; 7501da177e4SLinus Torvalds int err; 7511da177e4SLinus Torvalds ssize_t copied; 7521da177e4SLinus Torvalds long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT); 7531da177e4SLinus Torvalds 7541da177e4SLinus Torvalds /* Wait for a connection to finish. */ 7551da177e4SLinus Torvalds if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)) 7561da177e4SLinus Torvalds if ((err = sk_stream_wait_connect(sk, &timeo)) != 0) 7571da177e4SLinus Torvalds goto out_err; 7581da177e4SLinus Torvalds 7591da177e4SLinus Torvalds clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags); 7601da177e4SLinus Torvalds 7610c54b85fSIlpo Järvinen mss_now = tcp_send_mss(sk, &size_goal, flags); 7621da177e4SLinus Torvalds copied = 0; 7631da177e4SLinus Torvalds 7641da177e4SLinus Torvalds err = -EPIPE; 7651da177e4SLinus Torvalds if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN)) 7660d6a775eSIlpo Järvinen goto out_err; 7671da177e4SLinus Torvalds 7681da177e4SLinus Torvalds while (psize > 0) { 769fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_write_queue_tail(sk); 7701da177e4SLinus Torvalds struct page *page = pages[poffset / PAGE_SIZE]; 7711da177e4SLinus Torvalds int copy, i, can_coalesce; 7721da177e4SLinus Torvalds int offset = poffset % PAGE_SIZE; 7731da177e4SLinus Torvalds int size = min_t(size_t, psize, PAGE_SIZE - offset); 7741da177e4SLinus Torvalds 775fe067e8aSDavid S. Miller if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) { 7761da177e4SLinus Torvalds new_segment: 7771da177e4SLinus Torvalds if (!sk_stream_memory_free(sk)) 7781da177e4SLinus Torvalds goto wait_for_sndbuf; 7791da177e4SLinus Torvalds 780df97c708SPavel Emelyanov skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation); 7811da177e4SLinus Torvalds if (!skb) 7821da177e4SLinus Torvalds goto wait_for_memory; 7831da177e4SLinus Torvalds 7849e412ba7SIlpo Järvinen skb_entail(sk, skb); 785c1b4a7e6SDavid S. Miller copy = size_goal; 7861da177e4SLinus Torvalds } 7871da177e4SLinus Torvalds 7881da177e4SLinus Torvalds if (copy > size) 7891da177e4SLinus Torvalds copy = size; 7901da177e4SLinus Torvalds 7911da177e4SLinus Torvalds i = skb_shinfo(skb)->nr_frags; 7921da177e4SLinus Torvalds can_coalesce = skb_can_coalesce(skb, i, page, offset); 7931da177e4SLinus Torvalds if (!can_coalesce && i >= MAX_SKB_FRAGS) { 7941da177e4SLinus Torvalds tcp_mark_push(tp, skb); 7951da177e4SLinus Torvalds goto new_segment; 7961da177e4SLinus Torvalds } 7973ab224beSHideo Aoki if (!sk_wmem_schedule(sk, copy)) 7981da177e4SLinus Torvalds goto wait_for_memory; 7991da177e4SLinus Torvalds 8001da177e4SLinus Torvalds if (can_coalesce) { 8011da177e4SLinus Torvalds skb_shinfo(skb)->frags[i - 1].size += copy; 8021da177e4SLinus Torvalds } else { 8031da177e4SLinus Torvalds get_page(page); 8041da177e4SLinus Torvalds skb_fill_page_desc(skb, i, page, offset, copy); 8051da177e4SLinus Torvalds } 8061da177e4SLinus Torvalds 8071da177e4SLinus Torvalds skb->len += copy; 8081da177e4SLinus Torvalds skb->data_len += copy; 8091da177e4SLinus Torvalds skb->truesize += copy; 8101da177e4SLinus Torvalds sk->sk_wmem_queued += copy; 8113ab224beSHideo Aoki sk_mem_charge(sk, copy); 81284fa7933SPatrick McHardy skb->ip_summed = CHECKSUM_PARTIAL; 8131da177e4SLinus Torvalds tp->write_seq += copy; 8141da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq += copy; 8157967168cSHerbert Xu skb_shinfo(skb)->gso_segs = 0; 8161da177e4SLinus Torvalds 8171da177e4SLinus Torvalds if (!copied) 8181da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH; 8191da177e4SLinus Torvalds 8201da177e4SLinus Torvalds copied += copy; 8211da177e4SLinus Torvalds poffset += copy; 8221da177e4SLinus Torvalds if (!(psize -= copy)) 8231da177e4SLinus Torvalds goto out; 8241da177e4SLinus Torvalds 82569d15067SHerbert Xu if (skb->len < size_goal || (flags & MSG_OOB)) 8261da177e4SLinus Torvalds continue; 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvalds if (forced_push(tp)) { 8291da177e4SLinus Torvalds tcp_mark_push(tp, skb); 8309e412ba7SIlpo Järvinen __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH); 831fe067e8aSDavid S. Miller } else if (skb == tcp_send_head(sk)) 8321da177e4SLinus Torvalds tcp_push_one(sk, mss_now); 8331da177e4SLinus Torvalds continue; 8341da177e4SLinus Torvalds 8351da177e4SLinus Torvalds wait_for_sndbuf: 8361da177e4SLinus Torvalds set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); 8371da177e4SLinus Torvalds wait_for_memory: 8381da177e4SLinus Torvalds if (copied) 8399e412ba7SIlpo Järvinen tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH); 8401da177e4SLinus Torvalds 8411da177e4SLinus Torvalds if ((err = sk_stream_wait_memory(sk, &timeo)) != 0) 8421da177e4SLinus Torvalds goto do_error; 8431da177e4SLinus Torvalds 8440c54b85fSIlpo Järvinen mss_now = tcp_send_mss(sk, &size_goal, flags); 8451da177e4SLinus Torvalds } 8461da177e4SLinus Torvalds 8471da177e4SLinus Torvalds out: 8481da177e4SLinus Torvalds if (copied) 8499e412ba7SIlpo Järvinen tcp_push(sk, flags, mss_now, tp->nonagle); 8501da177e4SLinus Torvalds return copied; 8511da177e4SLinus Torvalds 8521da177e4SLinus Torvalds do_error: 8531da177e4SLinus Torvalds if (copied) 8541da177e4SLinus Torvalds goto out; 8551da177e4SLinus Torvalds out_err: 8561da177e4SLinus Torvalds return sk_stream_error(sk, flags, err); 8571da177e4SLinus Torvalds } 8581da177e4SLinus Torvalds 8591da177e4SLinus Torvalds ssize_t tcp_sendpage(struct socket *sock, struct page *page, int offset, 8601da177e4SLinus Torvalds size_t size, int flags) 8611da177e4SLinus Torvalds { 8621da177e4SLinus Torvalds ssize_t res; 8631da177e4SLinus Torvalds struct sock *sk = sock->sk; 8641da177e4SLinus Torvalds 8651da177e4SLinus Torvalds if (!(sk->sk_route_caps & NETIF_F_SG) || 8668648b305SHerbert Xu !(sk->sk_route_caps & NETIF_F_ALL_CSUM)) 8671da177e4SLinus Torvalds return sock_no_sendpage(sock, page, offset, size, flags); 8681da177e4SLinus Torvalds 8691da177e4SLinus Torvalds lock_sock(sk); 8701da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 8711da177e4SLinus Torvalds res = do_tcp_sendpages(sk, &page, offset, size, flags); 8721da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 8731da177e4SLinus Torvalds release_sock(sk); 8741da177e4SLinus Torvalds return res; 8751da177e4SLinus Torvalds } 8761da177e4SLinus Torvalds 8771da177e4SLinus Torvalds #define TCP_PAGE(sk) (sk->sk_sndmsg_page) 8781da177e4SLinus Torvalds #define TCP_OFF(sk) (sk->sk_sndmsg_off) 8791da177e4SLinus Torvalds 8809e412ba7SIlpo Järvinen static inline int select_size(struct sock *sk) 8811da177e4SLinus Torvalds { 8829e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 883c1b4a7e6SDavid S. Miller int tmp = tp->mss_cache; 8841da177e4SLinus Torvalds 885b4e26f5eSDavid S. Miller if (sk->sk_route_caps & NETIF_F_SG) { 886bcd76111SHerbert Xu if (sk_can_gso(sk)) 887c65f7f00SDavid S. Miller tmp = 0; 888b4e26f5eSDavid S. Miller else { 889b4e26f5eSDavid S. Miller int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER); 890b4e26f5eSDavid S. Miller 891b4e26f5eSDavid S. Miller if (tmp >= pgbreak && 892b4e26f5eSDavid S. Miller tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE) 893b4e26f5eSDavid S. Miller tmp = pgbreak; 894b4e26f5eSDavid S. Miller } 895b4e26f5eSDavid S. Miller } 8961da177e4SLinus Torvalds 8971da177e4SLinus Torvalds return tmp; 8981da177e4SLinus Torvalds } 8991da177e4SLinus Torvalds 9003516ffb0SDavid S. Miller int tcp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, 9011da177e4SLinus Torvalds size_t size) 9021da177e4SLinus Torvalds { 9033516ffb0SDavid S. Miller struct sock *sk = sock->sk; 9041da177e4SLinus Torvalds struct iovec *iov; 9051da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 9061da177e4SLinus Torvalds struct sk_buff *skb; 9071da177e4SLinus Torvalds int iovlen, flags; 908c1b4a7e6SDavid S. Miller int mss_now, size_goal; 9091da177e4SLinus Torvalds int err, copied; 9101da177e4SLinus Torvalds long timeo; 9111da177e4SLinus Torvalds 9121da177e4SLinus Torvalds lock_sock(sk); 9131da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 9141da177e4SLinus Torvalds 9151da177e4SLinus Torvalds flags = msg->msg_flags; 9161da177e4SLinus Torvalds timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT); 9171da177e4SLinus Torvalds 9181da177e4SLinus Torvalds /* Wait for a connection to finish. */ 9191da177e4SLinus Torvalds if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT)) 9201da177e4SLinus Torvalds if ((err = sk_stream_wait_connect(sk, &timeo)) != 0) 9211da177e4SLinus Torvalds goto out_err; 9221da177e4SLinus Torvalds 9231da177e4SLinus Torvalds /* This should be in poll */ 9241da177e4SLinus Torvalds clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags); 9251da177e4SLinus Torvalds 9260c54b85fSIlpo Järvinen mss_now = tcp_send_mss(sk, &size_goal, flags); 9271da177e4SLinus Torvalds 9281da177e4SLinus Torvalds /* Ok commence sending. */ 9291da177e4SLinus Torvalds iovlen = msg->msg_iovlen; 9301da177e4SLinus Torvalds iov = msg->msg_iov; 9311da177e4SLinus Torvalds copied = 0; 9321da177e4SLinus Torvalds 9331da177e4SLinus Torvalds err = -EPIPE; 9341da177e4SLinus Torvalds if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN)) 9350d6a775eSIlpo Järvinen goto out_err; 9361da177e4SLinus Torvalds 9371da177e4SLinus Torvalds while (--iovlen >= 0) { 9381da177e4SLinus Torvalds int seglen = iov->iov_len; 9391da177e4SLinus Torvalds unsigned char __user *from = iov->iov_base; 9401da177e4SLinus Torvalds 9411da177e4SLinus Torvalds iov++; 9421da177e4SLinus Torvalds 9431da177e4SLinus Torvalds while (seglen > 0) { 9446828b92bSHerbert Xu int copy = 0; 9456828b92bSHerbert Xu int max = size_goal; 9461da177e4SLinus Torvalds 947fe067e8aSDavid S. Miller skb = tcp_write_queue_tail(sk); 9486828b92bSHerbert Xu if (tcp_send_head(sk)) { 9496828b92bSHerbert Xu if (skb->ip_summed == CHECKSUM_NONE) 9506828b92bSHerbert Xu max = mss_now; 9516828b92bSHerbert Xu copy = max - skb->len; 9526828b92bSHerbert Xu } 9531da177e4SLinus Torvalds 9546828b92bSHerbert Xu if (copy <= 0) { 9551da177e4SLinus Torvalds new_segment: 9561da177e4SLinus Torvalds /* Allocate new segment. If the interface is SG, 9571da177e4SLinus Torvalds * allocate skb fitting to single page. 9581da177e4SLinus Torvalds */ 9591da177e4SLinus Torvalds if (!sk_stream_memory_free(sk)) 9601da177e4SLinus Torvalds goto wait_for_sndbuf; 9611da177e4SLinus Torvalds 962df97c708SPavel Emelyanov skb = sk_stream_alloc_skb(sk, select_size(sk), 963df97c708SPavel Emelyanov sk->sk_allocation); 9641da177e4SLinus Torvalds if (!skb) 9651da177e4SLinus Torvalds goto wait_for_memory; 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds /* 9681da177e4SLinus Torvalds * Check whether we can use HW checksum. 9691da177e4SLinus Torvalds */ 9708648b305SHerbert Xu if (sk->sk_route_caps & NETIF_F_ALL_CSUM) 97184fa7933SPatrick McHardy skb->ip_summed = CHECKSUM_PARTIAL; 9721da177e4SLinus Torvalds 9739e412ba7SIlpo Järvinen skb_entail(sk, skb); 974c1b4a7e6SDavid S. Miller copy = size_goal; 9756828b92bSHerbert Xu max = size_goal; 9761da177e4SLinus Torvalds } 9771da177e4SLinus Torvalds 9781da177e4SLinus Torvalds /* Try to append data to the end of skb. */ 9791da177e4SLinus Torvalds if (copy > seglen) 9801da177e4SLinus Torvalds copy = seglen; 9811da177e4SLinus Torvalds 9821da177e4SLinus Torvalds /* Where to copy to? */ 9831da177e4SLinus Torvalds if (skb_tailroom(skb) > 0) { 9841da177e4SLinus Torvalds /* We have some space in skb head. Superb! */ 9851da177e4SLinus Torvalds if (copy > skb_tailroom(skb)) 9861da177e4SLinus Torvalds copy = skb_tailroom(skb); 9871da177e4SLinus Torvalds if ((err = skb_add_data(skb, from, copy)) != 0) 9881da177e4SLinus Torvalds goto do_fault; 9891da177e4SLinus Torvalds } else { 9901da177e4SLinus Torvalds int merge = 0; 9911da177e4SLinus Torvalds int i = skb_shinfo(skb)->nr_frags; 9921da177e4SLinus Torvalds struct page *page = TCP_PAGE(sk); 9931da177e4SLinus Torvalds int off = TCP_OFF(sk); 9941da177e4SLinus Torvalds 9951da177e4SLinus Torvalds if (skb_can_coalesce(skb, i, page, off) && 9961da177e4SLinus Torvalds off != PAGE_SIZE) { 9971da177e4SLinus Torvalds /* We can extend the last page 9981da177e4SLinus Torvalds * fragment. */ 9991da177e4SLinus Torvalds merge = 1; 10001da177e4SLinus Torvalds } else if (i == MAX_SKB_FRAGS || 10011da177e4SLinus Torvalds (!i && 10021da177e4SLinus Torvalds !(sk->sk_route_caps & NETIF_F_SG))) { 10031da177e4SLinus Torvalds /* Need to add new fragment and cannot 10041da177e4SLinus Torvalds * do this because interface is non-SG, 10051da177e4SLinus Torvalds * or because all the page slots are 10061da177e4SLinus Torvalds * busy. */ 10071da177e4SLinus Torvalds tcp_mark_push(tp, skb); 10081da177e4SLinus Torvalds goto new_segment; 10091da177e4SLinus Torvalds } else if (page) { 10101da177e4SLinus Torvalds if (off == PAGE_SIZE) { 10111da177e4SLinus Torvalds put_page(page); 10121da177e4SLinus Torvalds TCP_PAGE(sk) = page = NULL; 1013fb5f5e6eSHerbert Xu off = 0; 10141da177e4SLinus Torvalds } 1015ef015786SHerbert Xu } else 1016fb5f5e6eSHerbert Xu off = 0; 1017ef015786SHerbert Xu 1018ef015786SHerbert Xu if (copy > PAGE_SIZE - off) 1019ef015786SHerbert Xu copy = PAGE_SIZE - off; 1020ef015786SHerbert Xu 10213ab224beSHideo Aoki if (!sk_wmem_schedule(sk, copy)) 1022ef015786SHerbert Xu goto wait_for_memory; 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds if (!page) { 10251da177e4SLinus Torvalds /* Allocate new cache page. */ 10261da177e4SLinus Torvalds if (!(page = sk_stream_alloc_page(sk))) 10271da177e4SLinus Torvalds goto wait_for_memory; 10281da177e4SLinus Torvalds } 10291da177e4SLinus Torvalds 10301da177e4SLinus Torvalds /* Time to copy data. We are close to 10311da177e4SLinus Torvalds * the end! */ 10321da177e4SLinus Torvalds err = skb_copy_to_page(sk, from, skb, page, 10331da177e4SLinus Torvalds off, copy); 10341da177e4SLinus Torvalds if (err) { 10351da177e4SLinus Torvalds /* If this page was new, give it to the 10361da177e4SLinus Torvalds * socket so it does not get leaked. 10371da177e4SLinus Torvalds */ 10381da177e4SLinus Torvalds if (!TCP_PAGE(sk)) { 10391da177e4SLinus Torvalds TCP_PAGE(sk) = page; 10401da177e4SLinus Torvalds TCP_OFF(sk) = 0; 10411da177e4SLinus Torvalds } 10421da177e4SLinus Torvalds goto do_error; 10431da177e4SLinus Torvalds } 10441da177e4SLinus Torvalds 10451da177e4SLinus Torvalds /* Update the skb. */ 10461da177e4SLinus Torvalds if (merge) { 10471da177e4SLinus Torvalds skb_shinfo(skb)->frags[i - 1].size += 10481da177e4SLinus Torvalds copy; 10491da177e4SLinus Torvalds } else { 10501da177e4SLinus Torvalds skb_fill_page_desc(skb, i, page, off, copy); 10511da177e4SLinus Torvalds if (TCP_PAGE(sk)) { 10521da177e4SLinus Torvalds get_page(page); 10531da177e4SLinus Torvalds } else if (off + copy < PAGE_SIZE) { 10541da177e4SLinus Torvalds get_page(page); 10551da177e4SLinus Torvalds TCP_PAGE(sk) = page; 10561da177e4SLinus Torvalds } 10571da177e4SLinus Torvalds } 10581da177e4SLinus Torvalds 10591da177e4SLinus Torvalds TCP_OFF(sk) = off + copy; 10601da177e4SLinus Torvalds } 10611da177e4SLinus Torvalds 10621da177e4SLinus Torvalds if (!copied) 10631da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH; 10641da177e4SLinus Torvalds 10651da177e4SLinus Torvalds tp->write_seq += copy; 10661da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq += copy; 10677967168cSHerbert Xu skb_shinfo(skb)->gso_segs = 0; 10681da177e4SLinus Torvalds 10691da177e4SLinus Torvalds from += copy; 10701da177e4SLinus Torvalds copied += copy; 10711da177e4SLinus Torvalds if ((seglen -= copy) == 0 && iovlen == 0) 10721da177e4SLinus Torvalds goto out; 10731da177e4SLinus Torvalds 10746828b92bSHerbert Xu if (skb->len < max || (flags & MSG_OOB)) 10751da177e4SLinus Torvalds continue; 10761da177e4SLinus Torvalds 10771da177e4SLinus Torvalds if (forced_push(tp)) { 10781da177e4SLinus Torvalds tcp_mark_push(tp, skb); 10799e412ba7SIlpo Järvinen __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH); 1080fe067e8aSDavid S. Miller } else if (skb == tcp_send_head(sk)) 10811da177e4SLinus Torvalds tcp_push_one(sk, mss_now); 10821da177e4SLinus Torvalds continue; 10831da177e4SLinus Torvalds 10841da177e4SLinus Torvalds wait_for_sndbuf: 10851da177e4SLinus Torvalds set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); 10861da177e4SLinus Torvalds wait_for_memory: 10871da177e4SLinus Torvalds if (copied) 10889e412ba7SIlpo Järvinen tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH); 10891da177e4SLinus Torvalds 10901da177e4SLinus Torvalds if ((err = sk_stream_wait_memory(sk, &timeo)) != 0) 10911da177e4SLinus Torvalds goto do_error; 10921da177e4SLinus Torvalds 10930c54b85fSIlpo Järvinen mss_now = tcp_send_mss(sk, &size_goal, flags); 10941da177e4SLinus Torvalds } 10951da177e4SLinus Torvalds } 10961da177e4SLinus Torvalds 10971da177e4SLinus Torvalds out: 10981da177e4SLinus Torvalds if (copied) 10999e412ba7SIlpo Järvinen tcp_push(sk, flags, mss_now, tp->nonagle); 11001da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 11011da177e4SLinus Torvalds release_sock(sk); 11021da177e4SLinus Torvalds return copied; 11031da177e4SLinus Torvalds 11041da177e4SLinus Torvalds do_fault: 11051da177e4SLinus Torvalds if (!skb->len) { 1106fe067e8aSDavid S. Miller tcp_unlink_write_queue(skb, sk); 1107fe067e8aSDavid S. Miller /* It is the one place in all of TCP, except connection 1108fe067e8aSDavid S. Miller * reset, where we can be unlinking the send_head. 1109fe067e8aSDavid S. Miller */ 1110fe067e8aSDavid S. Miller tcp_check_send_head(sk, skb); 11113ab224beSHideo Aoki sk_wmem_free_skb(sk, skb); 11121da177e4SLinus Torvalds } 11131da177e4SLinus Torvalds 11141da177e4SLinus Torvalds do_error: 11151da177e4SLinus Torvalds if (copied) 11161da177e4SLinus Torvalds goto out; 11171da177e4SLinus Torvalds out_err: 11181da177e4SLinus Torvalds err = sk_stream_error(sk, flags, err); 11191da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 11201da177e4SLinus Torvalds release_sock(sk); 11211da177e4SLinus Torvalds return err; 11221da177e4SLinus Torvalds } 11231da177e4SLinus Torvalds 11241da177e4SLinus Torvalds /* 11251da177e4SLinus Torvalds * Handle reading urgent data. BSD has very simple semantics for 11261da177e4SLinus Torvalds * this, no blocking and very strange errors 8) 11271da177e4SLinus Torvalds */ 11281da177e4SLinus Torvalds 1129377f0a08SRami Rosen static int tcp_recv_urg(struct sock *sk, struct msghdr *msg, int len, int flags) 11301da177e4SLinus Torvalds { 11311da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 11321da177e4SLinus Torvalds 11331da177e4SLinus Torvalds /* No URG data to read. */ 11341da177e4SLinus Torvalds if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data || 11351da177e4SLinus Torvalds tp->urg_data == TCP_URG_READ) 11361da177e4SLinus Torvalds return -EINVAL; /* Yes this is right ! */ 11371da177e4SLinus Torvalds 11381da177e4SLinus Torvalds if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE)) 11391da177e4SLinus Torvalds return -ENOTCONN; 11401da177e4SLinus Torvalds 11411da177e4SLinus Torvalds if (tp->urg_data & TCP_URG_VALID) { 11421da177e4SLinus Torvalds int err = 0; 11431da177e4SLinus Torvalds char c = tp->urg_data; 11441da177e4SLinus Torvalds 11451da177e4SLinus Torvalds if (!(flags & MSG_PEEK)) 11461da177e4SLinus Torvalds tp->urg_data = TCP_URG_READ; 11471da177e4SLinus Torvalds 11481da177e4SLinus Torvalds /* Read urgent data. */ 11491da177e4SLinus Torvalds msg->msg_flags |= MSG_OOB; 11501da177e4SLinus Torvalds 11511da177e4SLinus Torvalds if (len > 0) { 11521da177e4SLinus Torvalds if (!(flags & MSG_TRUNC)) 11531da177e4SLinus Torvalds err = memcpy_toiovec(msg->msg_iov, &c, 1); 11541da177e4SLinus Torvalds len = 1; 11551da177e4SLinus Torvalds } else 11561da177e4SLinus Torvalds msg->msg_flags |= MSG_TRUNC; 11571da177e4SLinus Torvalds 11581da177e4SLinus Torvalds return err ? -EFAULT : len; 11591da177e4SLinus Torvalds } 11601da177e4SLinus Torvalds 11611da177e4SLinus Torvalds if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN)) 11621da177e4SLinus Torvalds return 0; 11631da177e4SLinus Torvalds 11641da177e4SLinus Torvalds /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and 11651da177e4SLinus Torvalds * the available implementations agree in this case: 11661da177e4SLinus Torvalds * this call should never block, independent of the 11671da177e4SLinus Torvalds * blocking state of the socket. 11681da177e4SLinus Torvalds * Mike <pall@rz.uni-karlsruhe.de> 11691da177e4SLinus Torvalds */ 11701da177e4SLinus Torvalds return -EAGAIN; 11711da177e4SLinus Torvalds } 11721da177e4SLinus Torvalds 11731da177e4SLinus Torvalds /* Clean up the receive buffer for full frames taken by the user, 11741da177e4SLinus Torvalds * then send an ACK if necessary. COPIED is the number of bytes 11751da177e4SLinus Torvalds * tcp_recvmsg has given to the user so far, it speeds up the 11761da177e4SLinus Torvalds * calculation of whether or not we must ACK for the sake of 11771da177e4SLinus Torvalds * a window update. 11781da177e4SLinus Torvalds */ 11790e4b4992SChris Leech void tcp_cleanup_rbuf(struct sock *sk, int copied) 11801da177e4SLinus Torvalds { 11811da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 11821da177e4SLinus Torvalds int time_to_ack = 0; 11831da177e4SLinus Torvalds 11841da177e4SLinus Torvalds #if TCP_DEBUG 11851da177e4SLinus Torvalds struct sk_buff *skb = skb_peek(&sk->sk_receive_queue); 11861da177e4SLinus Torvalds 1187d792c100SIlpo Järvinen WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq), 1188d792c100SIlpo Järvinen KERN_INFO "cleanup rbuf bug: copied %X seq %X rcvnxt %X\n", 1189d792c100SIlpo Järvinen tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt); 11901da177e4SLinus Torvalds #endif 11911da177e4SLinus Torvalds 1192463c84b9SArnaldo Carvalho de Melo if (inet_csk_ack_scheduled(sk)) { 1193463c84b9SArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 11941da177e4SLinus Torvalds /* Delayed ACKs frequently hit locked sockets during bulk 11951da177e4SLinus Torvalds * receive. */ 1196463c84b9SArnaldo Carvalho de Melo if (icsk->icsk_ack.blocked || 11971da177e4SLinus Torvalds /* Once-per-two-segments ACK was not sent by tcp_input.c */ 1198463c84b9SArnaldo Carvalho de Melo tp->rcv_nxt - tp->rcv_wup > icsk->icsk_ack.rcv_mss || 11991da177e4SLinus Torvalds /* 12001da177e4SLinus Torvalds * If this read emptied read buffer, we send ACK, if 12011da177e4SLinus Torvalds * connection is not bidirectional, user drained 12021da177e4SLinus Torvalds * receive buffer and there was a small segment 12031da177e4SLinus Torvalds * in queue. 12041da177e4SLinus Torvalds */ 12051ef9696cSAlexey Kuznetsov (copied > 0 && 12061ef9696cSAlexey Kuznetsov ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) || 12071ef9696cSAlexey Kuznetsov ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) && 12081ef9696cSAlexey Kuznetsov !icsk->icsk_ack.pingpong)) && 12091ef9696cSAlexey Kuznetsov !atomic_read(&sk->sk_rmem_alloc))) 12101da177e4SLinus Torvalds time_to_ack = 1; 12111da177e4SLinus Torvalds } 12121da177e4SLinus Torvalds 12131da177e4SLinus Torvalds /* We send an ACK if we can now advertise a non-zero window 12141da177e4SLinus Torvalds * which has been raised "significantly". 12151da177e4SLinus Torvalds * 12161da177e4SLinus Torvalds * Even if window raised up to infinity, do not send window open ACK 12171da177e4SLinus Torvalds * in states, where we will not receive more. It is useless. 12181da177e4SLinus Torvalds */ 12191da177e4SLinus Torvalds if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) { 12201da177e4SLinus Torvalds __u32 rcv_window_now = tcp_receive_window(tp); 12211da177e4SLinus Torvalds 12221da177e4SLinus Torvalds /* Optimize, __tcp_select_window() is not cheap. */ 12231da177e4SLinus Torvalds if (2*rcv_window_now <= tp->window_clamp) { 12241da177e4SLinus Torvalds __u32 new_window = __tcp_select_window(sk); 12251da177e4SLinus Torvalds 12261da177e4SLinus Torvalds /* Send ACK now, if this read freed lots of space 12271da177e4SLinus Torvalds * in our buffer. Certainly, new_window is new window. 12281da177e4SLinus Torvalds * We can advertise it now, if it is not less than current one. 12291da177e4SLinus Torvalds * "Lots" means "at least twice" here. 12301da177e4SLinus Torvalds */ 12311da177e4SLinus Torvalds if (new_window && new_window >= 2 * rcv_window_now) 12321da177e4SLinus Torvalds time_to_ack = 1; 12331da177e4SLinus Torvalds } 12341da177e4SLinus Torvalds } 12351da177e4SLinus Torvalds if (time_to_ack) 12361da177e4SLinus Torvalds tcp_send_ack(sk); 12371da177e4SLinus Torvalds } 12381da177e4SLinus Torvalds 12391da177e4SLinus Torvalds static void tcp_prequeue_process(struct sock *sk) 12401da177e4SLinus Torvalds { 12411da177e4SLinus Torvalds struct sk_buff *skb; 12421da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 12431da177e4SLinus Torvalds 12446f67c817SPavel Emelyanov NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED); 12451da177e4SLinus Torvalds 12461da177e4SLinus Torvalds /* RX process wants to run with disabled BHs, though it is not 12471da177e4SLinus Torvalds * necessary */ 12481da177e4SLinus Torvalds local_bh_disable(); 12491da177e4SLinus Torvalds while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL) 1250c57943a1SPeter Zijlstra sk_backlog_rcv(sk, skb); 12511da177e4SLinus Torvalds local_bh_enable(); 12521da177e4SLinus Torvalds 12531da177e4SLinus Torvalds /* Clear memory counter. */ 12541da177e4SLinus Torvalds tp->ucopy.memory = 0; 12551da177e4SLinus Torvalds } 12561da177e4SLinus Torvalds 12571da177e4SLinus Torvalds static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off) 12581da177e4SLinus Torvalds { 12591da177e4SLinus Torvalds struct sk_buff *skb; 12601da177e4SLinus Torvalds u32 offset; 12611da177e4SLinus Torvalds 12621da177e4SLinus Torvalds skb_queue_walk(&sk->sk_receive_queue, skb) { 12631da177e4SLinus Torvalds offset = seq - TCP_SKB_CB(skb)->seq; 1264aa8223c7SArnaldo Carvalho de Melo if (tcp_hdr(skb)->syn) 12651da177e4SLinus Torvalds offset--; 1266aa8223c7SArnaldo Carvalho de Melo if (offset < skb->len || tcp_hdr(skb)->fin) { 12671da177e4SLinus Torvalds *off = offset; 12681da177e4SLinus Torvalds return skb; 12691da177e4SLinus Torvalds } 12701da177e4SLinus Torvalds } 12711da177e4SLinus Torvalds return NULL; 12721da177e4SLinus Torvalds } 12731da177e4SLinus Torvalds 12741da177e4SLinus Torvalds /* 12751da177e4SLinus Torvalds * This routine provides an alternative to tcp_recvmsg() for routines 12761da177e4SLinus Torvalds * that would like to handle copying from skbuffs directly in 'sendfile' 12771da177e4SLinus Torvalds * fashion. 12781da177e4SLinus Torvalds * Note: 12791da177e4SLinus Torvalds * - It is assumed that the socket was locked by the caller. 12801da177e4SLinus Torvalds * - The routine does not block. 12811da177e4SLinus Torvalds * - At present, there is no support for reading OOB data 12821da177e4SLinus Torvalds * or for 'peeking' the socket using this routine 12831da177e4SLinus Torvalds * (although both would be easy to implement). 12841da177e4SLinus Torvalds */ 12851da177e4SLinus Torvalds int tcp_read_sock(struct sock *sk, read_descriptor_t *desc, 12861da177e4SLinus Torvalds sk_read_actor_t recv_actor) 12871da177e4SLinus Torvalds { 12881da177e4SLinus Torvalds struct sk_buff *skb; 12891da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 12901da177e4SLinus Torvalds u32 seq = tp->copied_seq; 12911da177e4SLinus Torvalds u32 offset; 12921da177e4SLinus Torvalds int copied = 0; 12931da177e4SLinus Torvalds 12941da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) 12951da177e4SLinus Torvalds return -ENOTCONN; 12961da177e4SLinus Torvalds while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) { 12971da177e4SLinus Torvalds if (offset < skb->len) { 1298374e7b59SOctavian Purdila int used; 1299374e7b59SOctavian Purdila size_t len; 13001da177e4SLinus Torvalds 13011da177e4SLinus Torvalds len = skb->len - offset; 13021da177e4SLinus Torvalds /* Stop reading if we hit a patch of urgent data */ 13031da177e4SLinus Torvalds if (tp->urg_data) { 13041da177e4SLinus Torvalds u32 urg_offset = tp->urg_seq - seq; 13051da177e4SLinus Torvalds if (urg_offset < len) 13061da177e4SLinus Torvalds len = urg_offset; 13071da177e4SLinus Torvalds if (!len) 13081da177e4SLinus Torvalds break; 13091da177e4SLinus Torvalds } 13101da177e4SLinus Torvalds used = recv_actor(desc, skb, offset, len); 1311ddb61a57SJens Axboe if (used < 0) { 1312ddb61a57SJens Axboe if (!copied) 1313ddb61a57SJens Axboe copied = used; 1314ddb61a57SJens Axboe break; 1315ddb61a57SJens Axboe } else if (used <= len) { 13161da177e4SLinus Torvalds seq += used; 13171da177e4SLinus Torvalds copied += used; 13181da177e4SLinus Torvalds offset += used; 13191da177e4SLinus Torvalds } 1320293ad604SOctavian Purdila /* 1321293ad604SOctavian Purdila * If recv_actor drops the lock (e.g. TCP splice 1322293ad604SOctavian Purdila * receive) the skb pointer might be invalid when 1323293ad604SOctavian Purdila * getting here: tcp_collapse might have deleted it 1324293ad604SOctavian Purdila * while aggregating skbs from the socket queue. 1325293ad604SOctavian Purdila */ 1326293ad604SOctavian Purdila skb = tcp_recv_skb(sk, seq-1, &offset); 1327293ad604SOctavian Purdila if (!skb || (offset+1 != skb->len)) 13281da177e4SLinus Torvalds break; 13291da177e4SLinus Torvalds } 1330aa8223c7SArnaldo Carvalho de Melo if (tcp_hdr(skb)->fin) { 1331624d1164SChris Leech sk_eat_skb(sk, skb, 0); 13321da177e4SLinus Torvalds ++seq; 13331da177e4SLinus Torvalds break; 13341da177e4SLinus Torvalds } 1335624d1164SChris Leech sk_eat_skb(sk, skb, 0); 13361da177e4SLinus Torvalds if (!desc->count) 13371da177e4SLinus Torvalds break; 13381da177e4SLinus Torvalds } 13391da177e4SLinus Torvalds tp->copied_seq = seq; 13401da177e4SLinus Torvalds 13411da177e4SLinus Torvalds tcp_rcv_space_adjust(sk); 13421da177e4SLinus Torvalds 13431da177e4SLinus Torvalds /* Clean up data we have read: This will do ACK frames. */ 1344ddb61a57SJens Axboe if (copied > 0) 13450e4b4992SChris Leech tcp_cleanup_rbuf(sk, copied); 13461da177e4SLinus Torvalds return copied; 13471da177e4SLinus Torvalds } 13481da177e4SLinus Torvalds 13491da177e4SLinus Torvalds /* 13501da177e4SLinus Torvalds * This routine copies from a sock struct into the user buffer. 13511da177e4SLinus Torvalds * 13521da177e4SLinus Torvalds * Technical note: in 2.3 we work on _locked_ socket, so that 13531da177e4SLinus Torvalds * tricks with *seq access order and skb->users are not required. 13541da177e4SLinus Torvalds * Probably, code can be easily improved even more. 13551da177e4SLinus Torvalds */ 13561da177e4SLinus Torvalds 13571da177e4SLinus Torvalds int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, 13581da177e4SLinus Torvalds size_t len, int nonblock, int flags, int *addr_len) 13591da177e4SLinus Torvalds { 13601da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 13611da177e4SLinus Torvalds int copied = 0; 13621da177e4SLinus Torvalds u32 peek_seq; 13631da177e4SLinus Torvalds u32 *seq; 13641da177e4SLinus Torvalds unsigned long used; 13651da177e4SLinus Torvalds int err; 13661da177e4SLinus Torvalds int target; /* Read at least this many bytes */ 13671da177e4SLinus Torvalds long timeo; 13681da177e4SLinus Torvalds struct task_struct *user_recv = NULL; 13691a2449a8SChris Leech int copied_early = 0; 13702b1244a4SChris Leech struct sk_buff *skb; 137177527313SIlpo Järvinen u32 urg_hole = 0; 13721da177e4SLinus Torvalds 13731da177e4SLinus Torvalds lock_sock(sk); 13741da177e4SLinus Torvalds 13751da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 13761da177e4SLinus Torvalds 13771da177e4SLinus Torvalds err = -ENOTCONN; 13781da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) 13791da177e4SLinus Torvalds goto out; 13801da177e4SLinus Torvalds 13811da177e4SLinus Torvalds timeo = sock_rcvtimeo(sk, nonblock); 13821da177e4SLinus Torvalds 13831da177e4SLinus Torvalds /* Urgent data needs to be handled specially. */ 13841da177e4SLinus Torvalds if (flags & MSG_OOB) 13851da177e4SLinus Torvalds goto recv_urg; 13861da177e4SLinus Torvalds 13871da177e4SLinus Torvalds seq = &tp->copied_seq; 13881da177e4SLinus Torvalds if (flags & MSG_PEEK) { 13891da177e4SLinus Torvalds peek_seq = tp->copied_seq; 13901da177e4SLinus Torvalds seq = &peek_seq; 13911da177e4SLinus Torvalds } 13921da177e4SLinus Torvalds 13931da177e4SLinus Torvalds target = sock_rcvlowat(sk, flags & MSG_WAITALL, len); 13941da177e4SLinus Torvalds 13951a2449a8SChris Leech #ifdef CONFIG_NET_DMA 13961a2449a8SChris Leech tp->ucopy.dma_chan = NULL; 13971a2449a8SChris Leech preempt_disable(); 13982b1244a4SChris Leech skb = skb_peek_tail(&sk->sk_receive_queue); 1399e00c5d8bSAndrew Morton { 1400e00c5d8bSAndrew Morton int available = 0; 1401e00c5d8bSAndrew Morton 14022b1244a4SChris Leech if (skb) 14032b1244a4SChris Leech available = TCP_SKB_CB(skb)->seq + skb->len - (*seq); 14042b1244a4SChris Leech if ((available < target) && 14052b1244a4SChris Leech (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) && 1406e00c5d8bSAndrew Morton !sysctl_tcp_low_latency && 1407f67b4599SDan Williams dma_find_channel(DMA_MEMCPY)) { 14081a2449a8SChris Leech preempt_enable_no_resched(); 1409e00c5d8bSAndrew Morton tp->ucopy.pinned_list = 1410e00c5d8bSAndrew Morton dma_pin_iovec_pages(msg->msg_iov, len); 1411e00c5d8bSAndrew Morton } else { 14121a2449a8SChris Leech preempt_enable_no_resched(); 1413e00c5d8bSAndrew Morton } 1414e00c5d8bSAndrew Morton } 14151a2449a8SChris Leech #endif 14161a2449a8SChris Leech 14171da177e4SLinus Torvalds do { 14181da177e4SLinus Torvalds u32 offset; 14191da177e4SLinus Torvalds 14201da177e4SLinus Torvalds /* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */ 14211da177e4SLinus Torvalds if (tp->urg_data && tp->urg_seq == *seq) { 14221da177e4SLinus Torvalds if (copied) 14231da177e4SLinus Torvalds break; 14241da177e4SLinus Torvalds if (signal_pending(current)) { 14251da177e4SLinus Torvalds copied = timeo ? sock_intr_errno(timeo) : -EAGAIN; 14261da177e4SLinus Torvalds break; 14271da177e4SLinus Torvalds } 14281da177e4SLinus Torvalds } 14291da177e4SLinus Torvalds 14301da177e4SLinus Torvalds /* Next get a buffer. */ 14311da177e4SLinus Torvalds 143291521944SDavid S. Miller skb_queue_walk(&sk->sk_receive_queue, skb) { 14331da177e4SLinus Torvalds /* Now that we have two receive queues this 14341da177e4SLinus Torvalds * shouldn't happen. 14351da177e4SLinus Torvalds */ 1436d792c100SIlpo Järvinen if (WARN(before(*seq, TCP_SKB_CB(skb)->seq), 1437d792c100SIlpo Järvinen KERN_INFO "recvmsg bug: copied %X " 1438d792c100SIlpo Järvinen "seq %X rcvnxt %X fl %X\n", *seq, 1439d792c100SIlpo Järvinen TCP_SKB_CB(skb)->seq, tp->rcv_nxt, 1440d792c100SIlpo Järvinen flags)) 14411da177e4SLinus Torvalds break; 1442d792c100SIlpo Järvinen 14431da177e4SLinus Torvalds offset = *seq - TCP_SKB_CB(skb)->seq; 1444aa8223c7SArnaldo Carvalho de Melo if (tcp_hdr(skb)->syn) 14451da177e4SLinus Torvalds offset--; 14461da177e4SLinus Torvalds if (offset < skb->len) 14471da177e4SLinus Torvalds goto found_ok_skb; 1448aa8223c7SArnaldo Carvalho de Melo if (tcp_hdr(skb)->fin) 14491da177e4SLinus Torvalds goto found_fin_ok; 1450c62f4c45SArjan van de Ven WARN(!(flags & MSG_PEEK), KERN_INFO "recvmsg bug 2: " 1451d792c100SIlpo Järvinen "copied %X seq %X rcvnxt %X fl %X\n", 1452d792c100SIlpo Järvinen *seq, TCP_SKB_CB(skb)->seq, 1453d792c100SIlpo Järvinen tp->rcv_nxt, flags); 145491521944SDavid S. Miller } 14551da177e4SLinus Torvalds 14561da177e4SLinus Torvalds /* Well, if we have backlog, try to process it now yet. */ 14571da177e4SLinus Torvalds 14581da177e4SLinus Torvalds if (copied >= target && !sk->sk_backlog.tail) 14591da177e4SLinus Torvalds break; 14601da177e4SLinus Torvalds 14611da177e4SLinus Torvalds if (copied) { 14621da177e4SLinus Torvalds if (sk->sk_err || 14631da177e4SLinus Torvalds sk->sk_state == TCP_CLOSE || 14641da177e4SLinus Torvalds (sk->sk_shutdown & RCV_SHUTDOWN) || 14651da177e4SLinus Torvalds !timeo || 1466518a09efSDavid S. Miller signal_pending(current)) 14671da177e4SLinus Torvalds break; 14681da177e4SLinus Torvalds } else { 14691da177e4SLinus Torvalds if (sock_flag(sk, SOCK_DONE)) 14701da177e4SLinus Torvalds break; 14711da177e4SLinus Torvalds 14721da177e4SLinus Torvalds if (sk->sk_err) { 14731da177e4SLinus Torvalds copied = sock_error(sk); 14741da177e4SLinus Torvalds break; 14751da177e4SLinus Torvalds } 14761da177e4SLinus Torvalds 14771da177e4SLinus Torvalds if (sk->sk_shutdown & RCV_SHUTDOWN) 14781da177e4SLinus Torvalds break; 14791da177e4SLinus Torvalds 14801da177e4SLinus Torvalds if (sk->sk_state == TCP_CLOSE) { 14811da177e4SLinus Torvalds if (!sock_flag(sk, SOCK_DONE)) { 14821da177e4SLinus Torvalds /* This occurs when user tries to read 14831da177e4SLinus Torvalds * from never connected socket. 14841da177e4SLinus Torvalds */ 14851da177e4SLinus Torvalds copied = -ENOTCONN; 14861da177e4SLinus Torvalds break; 14871da177e4SLinus Torvalds } 14881da177e4SLinus Torvalds break; 14891da177e4SLinus Torvalds } 14901da177e4SLinus Torvalds 14911da177e4SLinus Torvalds if (!timeo) { 14921da177e4SLinus Torvalds copied = -EAGAIN; 14931da177e4SLinus Torvalds break; 14941da177e4SLinus Torvalds } 14951da177e4SLinus Torvalds 14961da177e4SLinus Torvalds if (signal_pending(current)) { 14971da177e4SLinus Torvalds copied = sock_intr_errno(timeo); 14981da177e4SLinus Torvalds break; 14991da177e4SLinus Torvalds } 15001da177e4SLinus Torvalds } 15011da177e4SLinus Torvalds 15020e4b4992SChris Leech tcp_cleanup_rbuf(sk, copied); 15031da177e4SLinus Torvalds 15047df55125SDavid S. Miller if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) { 15051da177e4SLinus Torvalds /* Install new reader */ 15061da177e4SLinus Torvalds if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) { 15071da177e4SLinus Torvalds user_recv = current; 15081da177e4SLinus Torvalds tp->ucopy.task = user_recv; 15091da177e4SLinus Torvalds tp->ucopy.iov = msg->msg_iov; 15101da177e4SLinus Torvalds } 15111da177e4SLinus Torvalds 15121da177e4SLinus Torvalds tp->ucopy.len = len; 15131da177e4SLinus Torvalds 1514547b792cSIlpo Järvinen WARN_ON(tp->copied_seq != tp->rcv_nxt && 1515547b792cSIlpo Järvinen !(flags & (MSG_PEEK | MSG_TRUNC))); 15161da177e4SLinus Torvalds 15171da177e4SLinus Torvalds /* Ugly... If prequeue is not empty, we have to 15181da177e4SLinus Torvalds * process it before releasing socket, otherwise 15191da177e4SLinus Torvalds * order will be broken at second iteration. 15201da177e4SLinus Torvalds * More elegant solution is required!!! 15211da177e4SLinus Torvalds * 15221da177e4SLinus Torvalds * Look: we have the following (pseudo)queues: 15231da177e4SLinus Torvalds * 15241da177e4SLinus Torvalds * 1. packets in flight 15251da177e4SLinus Torvalds * 2. backlog 15261da177e4SLinus Torvalds * 3. prequeue 15271da177e4SLinus Torvalds * 4. receive_queue 15281da177e4SLinus Torvalds * 15291da177e4SLinus Torvalds * Each queue can be processed only if the next ones 15301da177e4SLinus Torvalds * are empty. At this point we have empty receive_queue. 15311da177e4SLinus Torvalds * But prequeue _can_ be not empty after 2nd iteration, 15321da177e4SLinus Torvalds * when we jumped to start of loop because backlog 15331da177e4SLinus Torvalds * processing added something to receive_queue. 15341da177e4SLinus Torvalds * We cannot release_sock(), because backlog contains 15351da177e4SLinus Torvalds * packets arrived _after_ prequeued ones. 15361da177e4SLinus Torvalds * 15371da177e4SLinus Torvalds * Shortly, algorithm is clear --- to process all 15381da177e4SLinus Torvalds * the queues in order. We could make it more directly, 15391da177e4SLinus Torvalds * requeueing packets from backlog to prequeue, if 15401da177e4SLinus Torvalds * is not empty. It is more elegant, but eats cycles, 15411da177e4SLinus Torvalds * unfortunately. 15421da177e4SLinus Torvalds */ 1543b03efcfbSDavid S. Miller if (!skb_queue_empty(&tp->ucopy.prequeue)) 15441da177e4SLinus Torvalds goto do_prequeue; 15451da177e4SLinus Torvalds 15461da177e4SLinus Torvalds /* __ Set realtime policy in scheduler __ */ 15471da177e4SLinus Torvalds } 15481da177e4SLinus Torvalds 15491da177e4SLinus Torvalds if (copied >= target) { 15501da177e4SLinus Torvalds /* Do not sleep, just process backlog. */ 15511da177e4SLinus Torvalds release_sock(sk); 15521da177e4SLinus Torvalds lock_sock(sk); 15531da177e4SLinus Torvalds } else 15541da177e4SLinus Torvalds sk_wait_data(sk, &timeo); 15551da177e4SLinus Torvalds 15561a2449a8SChris Leech #ifdef CONFIG_NET_DMA 15571a2449a8SChris Leech tp->ucopy.wakeup = 0; 15581a2449a8SChris Leech #endif 15591a2449a8SChris Leech 15601da177e4SLinus Torvalds if (user_recv) { 15611da177e4SLinus Torvalds int chunk; 15621da177e4SLinus Torvalds 15631da177e4SLinus Torvalds /* __ Restore normal policy in scheduler __ */ 15641da177e4SLinus Torvalds 15651da177e4SLinus Torvalds if ((chunk = len - tp->ucopy.len) != 0) { 1566ed88098eSPavel Emelyanov NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk); 15671da177e4SLinus Torvalds len -= chunk; 15681da177e4SLinus Torvalds copied += chunk; 15691da177e4SLinus Torvalds } 15701da177e4SLinus Torvalds 15711da177e4SLinus Torvalds if (tp->rcv_nxt == tp->copied_seq && 1572b03efcfbSDavid S. Miller !skb_queue_empty(&tp->ucopy.prequeue)) { 15731da177e4SLinus Torvalds do_prequeue: 15741da177e4SLinus Torvalds tcp_prequeue_process(sk); 15751da177e4SLinus Torvalds 15761da177e4SLinus Torvalds if ((chunk = len - tp->ucopy.len) != 0) { 1577ed88098eSPavel Emelyanov NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk); 15781da177e4SLinus Torvalds len -= chunk; 15791da177e4SLinus Torvalds copied += chunk; 15801da177e4SLinus Torvalds } 15811da177e4SLinus Torvalds } 15821da177e4SLinus Torvalds } 158377527313SIlpo Järvinen if ((flags & MSG_PEEK) && 158477527313SIlpo Järvinen (peek_seq - copied - urg_hole != tp->copied_seq)) { 15851da177e4SLinus Torvalds if (net_ratelimit()) 15861da177e4SLinus Torvalds printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.\n", 1587ba25f9dcSPavel Emelyanov current->comm, task_pid_nr(current)); 15881da177e4SLinus Torvalds peek_seq = tp->copied_seq; 15891da177e4SLinus Torvalds } 15901da177e4SLinus Torvalds continue; 15911da177e4SLinus Torvalds 15921da177e4SLinus Torvalds found_ok_skb: 15931da177e4SLinus Torvalds /* Ok so how much can we use? */ 15941da177e4SLinus Torvalds used = skb->len - offset; 15951da177e4SLinus Torvalds if (len < used) 15961da177e4SLinus Torvalds used = len; 15971da177e4SLinus Torvalds 15981da177e4SLinus Torvalds /* Do we have urgent data here? */ 15991da177e4SLinus Torvalds if (tp->urg_data) { 16001da177e4SLinus Torvalds u32 urg_offset = tp->urg_seq - *seq; 16011da177e4SLinus Torvalds if (urg_offset < used) { 16021da177e4SLinus Torvalds if (!urg_offset) { 16031da177e4SLinus Torvalds if (!sock_flag(sk, SOCK_URGINLINE)) { 16041da177e4SLinus Torvalds ++*seq; 160577527313SIlpo Järvinen urg_hole++; 16061da177e4SLinus Torvalds offset++; 16071da177e4SLinus Torvalds used--; 16081da177e4SLinus Torvalds if (!used) 16091da177e4SLinus Torvalds goto skip_copy; 16101da177e4SLinus Torvalds } 16111da177e4SLinus Torvalds } else 16121da177e4SLinus Torvalds used = urg_offset; 16131da177e4SLinus Torvalds } 16141da177e4SLinus Torvalds } 16151da177e4SLinus Torvalds 16161da177e4SLinus Torvalds if (!(flags & MSG_TRUNC)) { 16171a2449a8SChris Leech #ifdef CONFIG_NET_DMA 16181a2449a8SChris Leech if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list) 1619f67b4599SDan Williams tp->ucopy.dma_chan = dma_find_channel(DMA_MEMCPY); 16201a2449a8SChris Leech 16211a2449a8SChris Leech if (tp->ucopy.dma_chan) { 16221a2449a8SChris Leech tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec( 16231a2449a8SChris Leech tp->ucopy.dma_chan, skb, offset, 16241a2449a8SChris Leech msg->msg_iov, used, 16251a2449a8SChris Leech tp->ucopy.pinned_list); 16261a2449a8SChris Leech 16271a2449a8SChris Leech if (tp->ucopy.dma_cookie < 0) { 16281a2449a8SChris Leech 16291a2449a8SChris Leech printk(KERN_ALERT "dma_cookie < 0\n"); 16301a2449a8SChris Leech 16311a2449a8SChris Leech /* Exception. Bailout! */ 16321a2449a8SChris Leech if (!copied) 16331a2449a8SChris Leech copied = -EFAULT; 16341a2449a8SChris Leech break; 16351a2449a8SChris Leech } 16361a2449a8SChris Leech if ((offset + used) == skb->len) 16371a2449a8SChris Leech copied_early = 1; 16381a2449a8SChris Leech 16391a2449a8SChris Leech } else 16401a2449a8SChris Leech #endif 16411a2449a8SChris Leech { 16421da177e4SLinus Torvalds err = skb_copy_datagram_iovec(skb, offset, 16431da177e4SLinus Torvalds msg->msg_iov, used); 16441da177e4SLinus Torvalds if (err) { 16451da177e4SLinus Torvalds /* Exception. Bailout! */ 16461da177e4SLinus Torvalds if (!copied) 16471da177e4SLinus Torvalds copied = -EFAULT; 16481da177e4SLinus Torvalds break; 16491da177e4SLinus Torvalds } 16501da177e4SLinus Torvalds } 16511a2449a8SChris Leech } 16521da177e4SLinus Torvalds 16531da177e4SLinus Torvalds *seq += used; 16541da177e4SLinus Torvalds copied += used; 16551da177e4SLinus Torvalds len -= used; 16561da177e4SLinus Torvalds 16571da177e4SLinus Torvalds tcp_rcv_space_adjust(sk); 16581da177e4SLinus Torvalds 16591da177e4SLinus Torvalds skip_copy: 16601da177e4SLinus Torvalds if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) { 16611da177e4SLinus Torvalds tp->urg_data = 0; 16629e412ba7SIlpo Järvinen tcp_fast_path_check(sk); 16631da177e4SLinus Torvalds } 16641da177e4SLinus Torvalds if (used + offset < skb->len) 16651da177e4SLinus Torvalds continue; 16661da177e4SLinus Torvalds 1667aa8223c7SArnaldo Carvalho de Melo if (tcp_hdr(skb)->fin) 16681da177e4SLinus Torvalds goto found_fin_ok; 16691a2449a8SChris Leech if (!(flags & MSG_PEEK)) { 16701a2449a8SChris Leech sk_eat_skb(sk, skb, copied_early); 16711a2449a8SChris Leech copied_early = 0; 16721a2449a8SChris Leech } 16731da177e4SLinus Torvalds continue; 16741da177e4SLinus Torvalds 16751da177e4SLinus Torvalds found_fin_ok: 16761da177e4SLinus Torvalds /* Process the FIN. */ 16771da177e4SLinus Torvalds ++*seq; 16781a2449a8SChris Leech if (!(flags & MSG_PEEK)) { 16791a2449a8SChris Leech sk_eat_skb(sk, skb, copied_early); 16801a2449a8SChris Leech copied_early = 0; 16811a2449a8SChris Leech } 16821da177e4SLinus Torvalds break; 16831da177e4SLinus Torvalds } while (len > 0); 16841da177e4SLinus Torvalds 16851da177e4SLinus Torvalds if (user_recv) { 1686b03efcfbSDavid S. Miller if (!skb_queue_empty(&tp->ucopy.prequeue)) { 16871da177e4SLinus Torvalds int chunk; 16881da177e4SLinus Torvalds 16891da177e4SLinus Torvalds tp->ucopy.len = copied > 0 ? len : 0; 16901da177e4SLinus Torvalds 16911da177e4SLinus Torvalds tcp_prequeue_process(sk); 16921da177e4SLinus Torvalds 16931da177e4SLinus Torvalds if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) { 1694ed88098eSPavel Emelyanov NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk); 16951da177e4SLinus Torvalds len -= chunk; 16961da177e4SLinus Torvalds copied += chunk; 16971da177e4SLinus Torvalds } 16981da177e4SLinus Torvalds } 16991da177e4SLinus Torvalds 17001da177e4SLinus Torvalds tp->ucopy.task = NULL; 17011da177e4SLinus Torvalds tp->ucopy.len = 0; 17021da177e4SLinus Torvalds } 17031da177e4SLinus Torvalds 17041a2449a8SChris Leech #ifdef CONFIG_NET_DMA 17051a2449a8SChris Leech if (tp->ucopy.dma_chan) { 17061a2449a8SChris Leech dma_cookie_t done, used; 17071a2449a8SChris Leech 17081a2449a8SChris Leech dma_async_memcpy_issue_pending(tp->ucopy.dma_chan); 17091a2449a8SChris Leech 17101a2449a8SChris Leech while (dma_async_memcpy_complete(tp->ucopy.dma_chan, 17111a2449a8SChris Leech tp->ucopy.dma_cookie, &done, 17121a2449a8SChris Leech &used) == DMA_IN_PROGRESS) { 17131a2449a8SChris Leech /* do partial cleanup of sk_async_wait_queue */ 17141a2449a8SChris Leech while ((skb = skb_peek(&sk->sk_async_wait_queue)) && 17151a2449a8SChris Leech (dma_async_is_complete(skb->dma_cookie, done, 17161a2449a8SChris Leech used) == DMA_SUCCESS)) { 17171a2449a8SChris Leech __skb_dequeue(&sk->sk_async_wait_queue); 17181a2449a8SChris Leech kfree_skb(skb); 17191a2449a8SChris Leech } 17201a2449a8SChris Leech } 17211a2449a8SChris Leech 17221a2449a8SChris Leech /* Safe to free early-copied skbs now */ 17231a2449a8SChris Leech __skb_queue_purge(&sk->sk_async_wait_queue); 17241a2449a8SChris Leech tp->ucopy.dma_chan = NULL; 17251a2449a8SChris Leech } 17261a2449a8SChris Leech if (tp->ucopy.pinned_list) { 17271a2449a8SChris Leech dma_unpin_iovec_pages(tp->ucopy.pinned_list); 17281a2449a8SChris Leech tp->ucopy.pinned_list = NULL; 17291a2449a8SChris Leech } 17301a2449a8SChris Leech #endif 17311a2449a8SChris Leech 17321da177e4SLinus Torvalds /* According to UNIX98, msg_name/msg_namelen are ignored 17331da177e4SLinus Torvalds * on connected socket. I was just happy when found this 8) --ANK 17341da177e4SLinus Torvalds */ 17351da177e4SLinus Torvalds 17361da177e4SLinus Torvalds /* Clean up data we have read: This will do ACK frames. */ 17370e4b4992SChris Leech tcp_cleanup_rbuf(sk, copied); 17381da177e4SLinus Torvalds 17391da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 17401da177e4SLinus Torvalds release_sock(sk); 17411da177e4SLinus Torvalds return copied; 17421da177e4SLinus Torvalds 17431da177e4SLinus Torvalds out: 17441da177e4SLinus Torvalds TCP_CHECK_TIMER(sk); 17451da177e4SLinus Torvalds release_sock(sk); 17461da177e4SLinus Torvalds return err; 17471da177e4SLinus Torvalds 17481da177e4SLinus Torvalds recv_urg: 1749377f0a08SRami Rosen err = tcp_recv_urg(sk, msg, len, flags); 17501da177e4SLinus Torvalds goto out; 17511da177e4SLinus Torvalds } 17521da177e4SLinus Torvalds 1753490d5046SIlpo Järvinen void tcp_set_state(struct sock *sk, int state) 1754490d5046SIlpo Järvinen { 1755490d5046SIlpo Järvinen int oldstate = sk->sk_state; 1756490d5046SIlpo Järvinen 1757490d5046SIlpo Järvinen switch (state) { 1758490d5046SIlpo Järvinen case TCP_ESTABLISHED: 1759490d5046SIlpo Järvinen if (oldstate != TCP_ESTABLISHED) 176081cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB); 1761490d5046SIlpo Järvinen break; 1762490d5046SIlpo Järvinen 1763490d5046SIlpo Järvinen case TCP_CLOSE: 1764490d5046SIlpo Järvinen if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED) 176581cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS); 1766490d5046SIlpo Järvinen 1767490d5046SIlpo Järvinen sk->sk_prot->unhash(sk); 1768490d5046SIlpo Järvinen if (inet_csk(sk)->icsk_bind_hash && 1769490d5046SIlpo Järvinen !(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) 1770ab1e0a13SArnaldo Carvalho de Melo inet_put_port(sk); 1771490d5046SIlpo Järvinen /* fall through */ 1772490d5046SIlpo Järvinen default: 1773490d5046SIlpo Järvinen if (oldstate == TCP_ESTABLISHED) 177474688e48SPavel Emelyanov TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB); 1775490d5046SIlpo Järvinen } 1776490d5046SIlpo Järvinen 1777490d5046SIlpo Järvinen /* Change state AFTER socket is unhashed to avoid closed 1778490d5046SIlpo Järvinen * socket sitting in hash tables. 1779490d5046SIlpo Järvinen */ 1780490d5046SIlpo Järvinen sk->sk_state = state; 1781490d5046SIlpo Järvinen 1782490d5046SIlpo Järvinen #ifdef STATE_TRACE 1783490d5046SIlpo Järvinen SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n", sk, statename[oldstate], statename[state]); 1784490d5046SIlpo Järvinen #endif 1785490d5046SIlpo Järvinen } 1786490d5046SIlpo Järvinen EXPORT_SYMBOL_GPL(tcp_set_state); 1787490d5046SIlpo Järvinen 17881da177e4SLinus Torvalds /* 17891da177e4SLinus Torvalds * State processing on a close. This implements the state shift for 17901da177e4SLinus Torvalds * sending our FIN frame. Note that we only send a FIN for some 17911da177e4SLinus Torvalds * states. A shutdown() may have already sent the FIN, or we may be 17921da177e4SLinus Torvalds * closed. 17931da177e4SLinus Torvalds */ 17941da177e4SLinus Torvalds 17959b5b5cffSArjan van de Ven static const unsigned char new_state[16] = { 17961da177e4SLinus Torvalds /* current state: new state: action: */ 17971da177e4SLinus Torvalds /* (Invalid) */ TCP_CLOSE, 17981da177e4SLinus Torvalds /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN, 17991da177e4SLinus Torvalds /* TCP_SYN_SENT */ TCP_CLOSE, 18001da177e4SLinus Torvalds /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN, 18011da177e4SLinus Torvalds /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1, 18021da177e4SLinus Torvalds /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2, 18031da177e4SLinus Torvalds /* TCP_TIME_WAIT */ TCP_CLOSE, 18041da177e4SLinus Torvalds /* TCP_CLOSE */ TCP_CLOSE, 18051da177e4SLinus Torvalds /* TCP_CLOSE_WAIT */ TCP_LAST_ACK | TCP_ACTION_FIN, 18061da177e4SLinus Torvalds /* TCP_LAST_ACK */ TCP_LAST_ACK, 18071da177e4SLinus Torvalds /* TCP_LISTEN */ TCP_CLOSE, 18081da177e4SLinus Torvalds /* TCP_CLOSING */ TCP_CLOSING, 18091da177e4SLinus Torvalds }; 18101da177e4SLinus Torvalds 18111da177e4SLinus Torvalds static int tcp_close_state(struct sock *sk) 18121da177e4SLinus Torvalds { 18131da177e4SLinus Torvalds int next = (int)new_state[sk->sk_state]; 18141da177e4SLinus Torvalds int ns = next & TCP_STATE_MASK; 18151da177e4SLinus Torvalds 18161da177e4SLinus Torvalds tcp_set_state(sk, ns); 18171da177e4SLinus Torvalds 18181da177e4SLinus Torvalds return next & TCP_ACTION_FIN; 18191da177e4SLinus Torvalds } 18201da177e4SLinus Torvalds 18211da177e4SLinus Torvalds /* 18221da177e4SLinus Torvalds * Shutdown the sending side of a connection. Much like close except 18231f29b058SSatoru SATOH * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD). 18241da177e4SLinus Torvalds */ 18251da177e4SLinus Torvalds 18261da177e4SLinus Torvalds void tcp_shutdown(struct sock *sk, int how) 18271da177e4SLinus Torvalds { 18281da177e4SLinus Torvalds /* We need to grab some memory, and put together a FIN, 18291da177e4SLinus Torvalds * and then put it into the queue to be sent. 18301da177e4SLinus Torvalds * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92. 18311da177e4SLinus Torvalds */ 18321da177e4SLinus Torvalds if (!(how & SEND_SHUTDOWN)) 18331da177e4SLinus Torvalds return; 18341da177e4SLinus Torvalds 18351da177e4SLinus Torvalds /* If we've already sent a FIN, or it's a closed state, skip this. */ 18361da177e4SLinus Torvalds if ((1 << sk->sk_state) & 18371da177e4SLinus Torvalds (TCPF_ESTABLISHED | TCPF_SYN_SENT | 18381da177e4SLinus Torvalds TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) { 18391da177e4SLinus Torvalds /* Clear out any half completed packets. FIN if needed. */ 18401da177e4SLinus Torvalds if (tcp_close_state(sk)) 18411da177e4SLinus Torvalds tcp_send_fin(sk); 18421da177e4SLinus Torvalds } 18431da177e4SLinus Torvalds } 18441da177e4SLinus Torvalds 18451da177e4SLinus Torvalds void tcp_close(struct sock *sk, long timeout) 18461da177e4SLinus Torvalds { 18471da177e4SLinus Torvalds struct sk_buff *skb; 18481da177e4SLinus Torvalds int data_was_unread = 0; 184975c2d907SHerbert Xu int state; 18501da177e4SLinus Torvalds 18511da177e4SLinus Torvalds lock_sock(sk); 18521da177e4SLinus Torvalds sk->sk_shutdown = SHUTDOWN_MASK; 18531da177e4SLinus Torvalds 18541da177e4SLinus Torvalds if (sk->sk_state == TCP_LISTEN) { 18551da177e4SLinus Torvalds tcp_set_state(sk, TCP_CLOSE); 18561da177e4SLinus Torvalds 18571da177e4SLinus Torvalds /* Special case. */ 18580a5578cfSArnaldo Carvalho de Melo inet_csk_listen_stop(sk); 18591da177e4SLinus Torvalds 18601da177e4SLinus Torvalds goto adjudge_to_death; 18611da177e4SLinus Torvalds } 18621da177e4SLinus Torvalds 18631da177e4SLinus Torvalds /* We need to flush the recv. buffs. We do this only on the 18641da177e4SLinus Torvalds * descriptor close, not protocol-sourced closes, because the 18651da177e4SLinus Torvalds * reader process may not have drained the data yet! 18661da177e4SLinus Torvalds */ 18671da177e4SLinus Torvalds while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) { 18681da177e4SLinus Torvalds u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq - 1869aa8223c7SArnaldo Carvalho de Melo tcp_hdr(skb)->fin; 18701da177e4SLinus Torvalds data_was_unread += len; 18711da177e4SLinus Torvalds __kfree_skb(skb); 18721da177e4SLinus Torvalds } 18731da177e4SLinus Torvalds 18743ab224beSHideo Aoki sk_mem_reclaim(sk); 18751da177e4SLinus Torvalds 187665bb723cSGerrit Renker /* As outlined in RFC 2525, section 2.17, we send a RST here because 187765bb723cSGerrit Renker * data was lost. To witness the awful effects of the old behavior of 187865bb723cSGerrit Renker * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk 187965bb723cSGerrit Renker * GET in an FTP client, suspend the process, wait for the client to 188065bb723cSGerrit Renker * advertise a zero window, then kill -9 the FTP client, wheee... 188165bb723cSGerrit Renker * Note: timeout is always zero in such a case. 18821da177e4SLinus Torvalds */ 18831da177e4SLinus Torvalds if (data_was_unread) { 18841da177e4SLinus Torvalds /* Unread data was tossed, zap the connection. */ 18856f67c817SPavel Emelyanov NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE); 18861da177e4SLinus Torvalds tcp_set_state(sk, TCP_CLOSE); 1887aa133076SWu Fengguang tcp_send_active_reset(sk, sk->sk_allocation); 18881da177e4SLinus Torvalds } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) { 18891da177e4SLinus Torvalds /* Check zero linger _after_ checking for unread data. */ 18901da177e4SLinus Torvalds sk->sk_prot->disconnect(sk, 0); 18916f67c817SPavel Emelyanov NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA); 18921da177e4SLinus Torvalds } else if (tcp_close_state(sk)) { 18931da177e4SLinus Torvalds /* We FIN if the application ate all the data before 18941da177e4SLinus Torvalds * zapping the connection. 18951da177e4SLinus Torvalds */ 18961da177e4SLinus Torvalds 18971da177e4SLinus Torvalds /* RED-PEN. Formally speaking, we have broken TCP state 18981da177e4SLinus Torvalds * machine. State transitions: 18991da177e4SLinus Torvalds * 19001da177e4SLinus Torvalds * TCP_ESTABLISHED -> TCP_FIN_WAIT1 19011da177e4SLinus Torvalds * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible) 19021da177e4SLinus Torvalds * TCP_CLOSE_WAIT -> TCP_LAST_ACK 19031da177e4SLinus Torvalds * 19041da177e4SLinus Torvalds * are legal only when FIN has been sent (i.e. in window), 19051da177e4SLinus Torvalds * rather than queued out of window. Purists blame. 19061da177e4SLinus Torvalds * 19071da177e4SLinus Torvalds * F.e. "RFC state" is ESTABLISHED, 19081da177e4SLinus Torvalds * if Linux state is FIN-WAIT-1, but FIN is still not sent. 19091da177e4SLinus Torvalds * 19101da177e4SLinus Torvalds * The visible declinations are that sometimes 19111da177e4SLinus Torvalds * we enter time-wait state, when it is not required really 19121da177e4SLinus Torvalds * (harmless), do not send active resets, when they are 19131da177e4SLinus Torvalds * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when 19141da177e4SLinus Torvalds * they look as CLOSING or LAST_ACK for Linux) 19151da177e4SLinus Torvalds * Probably, I missed some more holelets. 19161da177e4SLinus Torvalds * --ANK 19171da177e4SLinus Torvalds */ 19181da177e4SLinus Torvalds tcp_send_fin(sk); 19191da177e4SLinus Torvalds } 19201da177e4SLinus Torvalds 19211da177e4SLinus Torvalds sk_stream_wait_close(sk, timeout); 19221da177e4SLinus Torvalds 19231da177e4SLinus Torvalds adjudge_to_death: 192475c2d907SHerbert Xu state = sk->sk_state; 192575c2d907SHerbert Xu sock_hold(sk); 192675c2d907SHerbert Xu sock_orphan(sk); 192775c2d907SHerbert Xu 19281da177e4SLinus Torvalds /* It is the last release_sock in its life. It will remove backlog. */ 19291da177e4SLinus Torvalds release_sock(sk); 19301da177e4SLinus Torvalds 19311da177e4SLinus Torvalds 19321da177e4SLinus Torvalds /* Now socket is owned by kernel and we acquire BH lock 19331da177e4SLinus Torvalds to finish close. No need to check for user refs. 19341da177e4SLinus Torvalds */ 19351da177e4SLinus Torvalds local_bh_disable(); 19361da177e4SLinus Torvalds bh_lock_sock(sk); 1937547b792cSIlpo Järvinen WARN_ON(sock_owned_by_user(sk)); 19381da177e4SLinus Torvalds 1939eb4dea58SHerbert Xu percpu_counter_inc(sk->sk_prot->orphan_count); 1940eb4dea58SHerbert Xu 194175c2d907SHerbert Xu /* Have we already been destroyed by a softirq or backlog? */ 194275c2d907SHerbert Xu if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE) 194375c2d907SHerbert Xu goto out; 19441da177e4SLinus Torvalds 19451da177e4SLinus Torvalds /* This is a (useful) BSD violating of the RFC. There is a 19461da177e4SLinus Torvalds * problem with TCP as specified in that the other end could 19471da177e4SLinus Torvalds * keep a socket open forever with no application left this end. 19481da177e4SLinus Torvalds * We use a 3 minute timeout (about the same as BSD) then kill 19491da177e4SLinus Torvalds * our end. If they send after that then tough - BUT: long enough 19501da177e4SLinus Torvalds * that we won't make the old 4*rto = almost no time - whoops 19511da177e4SLinus Torvalds * reset mistake. 19521da177e4SLinus Torvalds * 19531da177e4SLinus Torvalds * Nope, it was not mistake. It is really desired behaviour 19541da177e4SLinus Torvalds * f.e. on http servers, when such sockets are useless, but 19551da177e4SLinus Torvalds * consume significant resources. Let's do it with special 19561da177e4SLinus Torvalds * linger2 option. --ANK 19571da177e4SLinus Torvalds */ 19581da177e4SLinus Torvalds 19591da177e4SLinus Torvalds if (sk->sk_state == TCP_FIN_WAIT2) { 19601da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 19611da177e4SLinus Torvalds if (tp->linger2 < 0) { 19621da177e4SLinus Torvalds tcp_set_state(sk, TCP_CLOSE); 19631da177e4SLinus Torvalds tcp_send_active_reset(sk, GFP_ATOMIC); 1964de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), 1965de0744afSPavel Emelyanov LINUX_MIB_TCPABORTONLINGER); 19661da177e4SLinus Torvalds } else { 1967463c84b9SArnaldo Carvalho de Melo const int tmo = tcp_fin_time(sk); 19681da177e4SLinus Torvalds 19691da177e4SLinus Torvalds if (tmo > TCP_TIMEWAIT_LEN) { 197052499afeSDavid S. Miller inet_csk_reset_keepalive_timer(sk, 197152499afeSDavid S. Miller tmo - TCP_TIMEWAIT_LEN); 19721da177e4SLinus Torvalds } else { 19731da177e4SLinus Torvalds tcp_time_wait(sk, TCP_FIN_WAIT2, tmo); 19741da177e4SLinus Torvalds goto out; 19751da177e4SLinus Torvalds } 19761da177e4SLinus Torvalds } 19771da177e4SLinus Torvalds } 19781da177e4SLinus Torvalds if (sk->sk_state != TCP_CLOSE) { 1979dd24c001SEric Dumazet int orphan_count = percpu_counter_read_positive( 1980dd24c001SEric Dumazet sk->sk_prot->orphan_count); 1981dd24c001SEric Dumazet 19823ab224beSHideo Aoki sk_mem_reclaim(sk); 1983dd24c001SEric Dumazet if (tcp_too_many_orphans(sk, orphan_count)) { 19841da177e4SLinus Torvalds if (net_ratelimit()) 19851da177e4SLinus Torvalds printk(KERN_INFO "TCP: too many of orphaned " 19861da177e4SLinus Torvalds "sockets\n"); 19871da177e4SLinus Torvalds tcp_set_state(sk, TCP_CLOSE); 19881da177e4SLinus Torvalds tcp_send_active_reset(sk, GFP_ATOMIC); 1989de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), 1990de0744afSPavel Emelyanov LINUX_MIB_TCPABORTONMEMORY); 19911da177e4SLinus Torvalds } 19921da177e4SLinus Torvalds } 19931da177e4SLinus Torvalds 19941da177e4SLinus Torvalds if (sk->sk_state == TCP_CLOSE) 19950a5578cfSArnaldo Carvalho de Melo inet_csk_destroy_sock(sk); 19961da177e4SLinus Torvalds /* Otherwise, socket is reprieved until protocol close. */ 19971da177e4SLinus Torvalds 19981da177e4SLinus Torvalds out: 19991da177e4SLinus Torvalds bh_unlock_sock(sk); 20001da177e4SLinus Torvalds local_bh_enable(); 20011da177e4SLinus Torvalds sock_put(sk); 20021da177e4SLinus Torvalds } 20031da177e4SLinus Torvalds 20041da177e4SLinus Torvalds /* These states need RST on ABORT according to RFC793 */ 20051da177e4SLinus Torvalds 20061da177e4SLinus Torvalds static inline int tcp_need_reset(int state) 20071da177e4SLinus Torvalds { 20081da177e4SLinus Torvalds return (1 << state) & 20091da177e4SLinus Torvalds (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 | 20101da177e4SLinus Torvalds TCPF_FIN_WAIT2 | TCPF_SYN_RECV); 20111da177e4SLinus Torvalds } 20121da177e4SLinus Torvalds 20131da177e4SLinus Torvalds int tcp_disconnect(struct sock *sk, int flags) 20141da177e4SLinus Torvalds { 20151da177e4SLinus Torvalds struct inet_sock *inet = inet_sk(sk); 2016463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 20171da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 20181da177e4SLinus Torvalds int err = 0; 20191da177e4SLinus Torvalds int old_state = sk->sk_state; 20201da177e4SLinus Torvalds 20211da177e4SLinus Torvalds if (old_state != TCP_CLOSE) 20221da177e4SLinus Torvalds tcp_set_state(sk, TCP_CLOSE); 20231da177e4SLinus Torvalds 20241da177e4SLinus Torvalds /* ABORT function of RFC793 */ 20251da177e4SLinus Torvalds if (old_state == TCP_LISTEN) { 20260a5578cfSArnaldo Carvalho de Melo inet_csk_listen_stop(sk); 20271da177e4SLinus Torvalds } else if (tcp_need_reset(old_state) || 20281da177e4SLinus Torvalds (tp->snd_nxt != tp->write_seq && 20291da177e4SLinus Torvalds (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) { 2030caa20d9aSStephen Hemminger /* The last check adjusts for discrepancy of Linux wrt. RFC 20311da177e4SLinus Torvalds * states 20321da177e4SLinus Torvalds */ 20331da177e4SLinus Torvalds tcp_send_active_reset(sk, gfp_any()); 20341da177e4SLinus Torvalds sk->sk_err = ECONNRESET; 20351da177e4SLinus Torvalds } else if (old_state == TCP_SYN_SENT) 20361da177e4SLinus Torvalds sk->sk_err = ECONNRESET; 20371da177e4SLinus Torvalds 20381da177e4SLinus Torvalds tcp_clear_xmit_timers(sk); 20391da177e4SLinus Torvalds __skb_queue_purge(&sk->sk_receive_queue); 2040fe067e8aSDavid S. Miller tcp_write_queue_purge(sk); 20411da177e4SLinus Torvalds __skb_queue_purge(&tp->out_of_order_queue); 20421a2449a8SChris Leech #ifdef CONFIG_NET_DMA 20431a2449a8SChris Leech __skb_queue_purge(&sk->sk_async_wait_queue); 20441a2449a8SChris Leech #endif 20451da177e4SLinus Torvalds 2046c720c7e8SEric Dumazet inet->inet_dport = 0; 20471da177e4SLinus Torvalds 20481da177e4SLinus Torvalds if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK)) 20491da177e4SLinus Torvalds inet_reset_saddr(sk); 20501da177e4SLinus Torvalds 20511da177e4SLinus Torvalds sk->sk_shutdown = 0; 20521da177e4SLinus Torvalds sock_reset_flag(sk, SOCK_DONE); 20531da177e4SLinus Torvalds tp->srtt = 0; 20541da177e4SLinus Torvalds if ((tp->write_seq += tp->max_window + 2) == 0) 20551da177e4SLinus Torvalds tp->write_seq = 1; 2056463c84b9SArnaldo Carvalho de Melo icsk->icsk_backoff = 0; 20571da177e4SLinus Torvalds tp->snd_cwnd = 2; 20586687e988SArnaldo Carvalho de Melo icsk->icsk_probes_out = 0; 20591da177e4SLinus Torvalds tp->packets_out = 0; 20600b6a05c1SIlpo Järvinen tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; 20611da177e4SLinus Torvalds tp->snd_cwnd_cnt = 0; 20629772efb9SStephen Hemminger tp->bytes_acked = 0; 20631fdf475aSEric Dumazet tp->window_clamp = 0; 20646687e988SArnaldo Carvalho de Melo tcp_set_ca_state(sk, TCP_CA_Open); 20651da177e4SLinus Torvalds tcp_clear_retrans(tp); 2066463c84b9SArnaldo Carvalho de Melo inet_csk_delack_init(sk); 2067fe067e8aSDavid S. Miller tcp_init_send_head(sk); 2068b40b4f79SSrinivas Aji memset(&tp->rx_opt, 0, sizeof(tp->rx_opt)); 20691da177e4SLinus Torvalds __sk_dst_reset(sk); 20701da177e4SLinus Torvalds 2071c720c7e8SEric Dumazet WARN_ON(inet->inet_num && !icsk->icsk_bind_hash); 20721da177e4SLinus Torvalds 20731da177e4SLinus Torvalds sk->sk_error_report(sk); 20741da177e4SLinus Torvalds return err; 20751da177e4SLinus Torvalds } 20761da177e4SLinus Torvalds 20771da177e4SLinus Torvalds /* 20781da177e4SLinus Torvalds * Socket option code for TCP. 20791da177e4SLinus Torvalds */ 20803fdadf7dSDmitry Mishin static int do_tcp_setsockopt(struct sock *sk, int level, 2081b7058842SDavid S. Miller int optname, char __user *optval, unsigned int optlen) 20821da177e4SLinus Torvalds { 20831da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 2084463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 20851da177e4SLinus Torvalds int val; 20861da177e4SLinus Torvalds int err = 0; 20871da177e4SLinus Torvalds 20885f8ef48dSStephen Hemminger /* This is a string value all the others are int's */ 20895f8ef48dSStephen Hemminger if (optname == TCP_CONGESTION) { 20905f8ef48dSStephen Hemminger char name[TCP_CA_NAME_MAX]; 20915f8ef48dSStephen Hemminger 20925f8ef48dSStephen Hemminger if (optlen < 1) 20935f8ef48dSStephen Hemminger return -EINVAL; 20945f8ef48dSStephen Hemminger 20955f8ef48dSStephen Hemminger val = strncpy_from_user(name, optval, 20964fdb78d3SAndrew Morton min_t(long, TCP_CA_NAME_MAX-1, optlen)); 20975f8ef48dSStephen Hemminger if (val < 0) 20985f8ef48dSStephen Hemminger return -EFAULT; 20995f8ef48dSStephen Hemminger name[val] = 0; 21005f8ef48dSStephen Hemminger 21015f8ef48dSStephen Hemminger lock_sock(sk); 21026687e988SArnaldo Carvalho de Melo err = tcp_set_congestion_control(sk, name); 21035f8ef48dSStephen Hemminger release_sock(sk); 21045f8ef48dSStephen Hemminger return err; 21055f8ef48dSStephen Hemminger } 21065f8ef48dSStephen Hemminger 21071da177e4SLinus Torvalds if (optlen < sizeof(int)) 21081da177e4SLinus Torvalds return -EINVAL; 21091da177e4SLinus Torvalds 21101da177e4SLinus Torvalds if (get_user(val, (int __user *)optval)) 21111da177e4SLinus Torvalds return -EFAULT; 21121da177e4SLinus Torvalds 21131da177e4SLinus Torvalds lock_sock(sk); 21141da177e4SLinus Torvalds 21151da177e4SLinus Torvalds switch (optname) { 21161da177e4SLinus Torvalds case TCP_MAXSEG: 21171da177e4SLinus Torvalds /* Values greater than interface MTU won't take effect. However 21181da177e4SLinus Torvalds * at the point when this call is done we typically don't yet 21191da177e4SLinus Torvalds * know which interface is going to be used */ 21201da177e4SLinus Torvalds if (val < 8 || val > MAX_TCP_WINDOW) { 21211da177e4SLinus Torvalds err = -EINVAL; 21221da177e4SLinus Torvalds break; 21231da177e4SLinus Torvalds } 21241da177e4SLinus Torvalds tp->rx_opt.user_mss = val; 21251da177e4SLinus Torvalds break; 21261da177e4SLinus Torvalds 21271da177e4SLinus Torvalds case TCP_NODELAY: 21281da177e4SLinus Torvalds if (val) { 21291da177e4SLinus Torvalds /* TCP_NODELAY is weaker than TCP_CORK, so that 21301da177e4SLinus Torvalds * this option on corked socket is remembered, but 21311da177e4SLinus Torvalds * it is not activated until cork is cleared. 21321da177e4SLinus Torvalds * 21331da177e4SLinus Torvalds * However, when TCP_NODELAY is set we make 21341da177e4SLinus Torvalds * an explicit push, which overrides even TCP_CORK 21351da177e4SLinus Torvalds * for currently queued segments. 21361da177e4SLinus Torvalds */ 21371da177e4SLinus Torvalds tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH; 21389e412ba7SIlpo Järvinen tcp_push_pending_frames(sk); 21391da177e4SLinus Torvalds } else { 21401da177e4SLinus Torvalds tp->nonagle &= ~TCP_NAGLE_OFF; 21411da177e4SLinus Torvalds } 21421da177e4SLinus Torvalds break; 21431da177e4SLinus Torvalds 21441da177e4SLinus Torvalds case TCP_CORK: 21451da177e4SLinus Torvalds /* When set indicates to always queue non-full frames. 21461da177e4SLinus Torvalds * Later the user clears this option and we transmit 21471da177e4SLinus Torvalds * any pending partial frames in the queue. This is 21481da177e4SLinus Torvalds * meant to be used alongside sendfile() to get properly 21491da177e4SLinus Torvalds * filled frames when the user (for example) must write 21501da177e4SLinus Torvalds * out headers with a write() call first and then use 21511da177e4SLinus Torvalds * sendfile to send out the data parts. 21521da177e4SLinus Torvalds * 21531da177e4SLinus Torvalds * TCP_CORK can be set together with TCP_NODELAY and it is 21541da177e4SLinus Torvalds * stronger than TCP_NODELAY. 21551da177e4SLinus Torvalds */ 21561da177e4SLinus Torvalds if (val) { 21571da177e4SLinus Torvalds tp->nonagle |= TCP_NAGLE_CORK; 21581da177e4SLinus Torvalds } else { 21591da177e4SLinus Torvalds tp->nonagle &= ~TCP_NAGLE_CORK; 21601da177e4SLinus Torvalds if (tp->nonagle&TCP_NAGLE_OFF) 21611da177e4SLinus Torvalds tp->nonagle |= TCP_NAGLE_PUSH; 21629e412ba7SIlpo Järvinen tcp_push_pending_frames(sk); 21631da177e4SLinus Torvalds } 21641da177e4SLinus Torvalds break; 21651da177e4SLinus Torvalds 21661da177e4SLinus Torvalds case TCP_KEEPIDLE: 21671da177e4SLinus Torvalds if (val < 1 || val > MAX_TCP_KEEPIDLE) 21681da177e4SLinus Torvalds err = -EINVAL; 21691da177e4SLinus Torvalds else { 21701da177e4SLinus Torvalds tp->keepalive_time = val * HZ; 21711da177e4SLinus Torvalds if (sock_flag(sk, SOCK_KEEPOPEN) && 21721da177e4SLinus Torvalds !((1 << sk->sk_state) & 21731da177e4SLinus Torvalds (TCPF_CLOSE | TCPF_LISTEN))) { 21741da177e4SLinus Torvalds __u32 elapsed = tcp_time_stamp - tp->rcv_tstamp; 21751da177e4SLinus Torvalds if (tp->keepalive_time > elapsed) 21761da177e4SLinus Torvalds elapsed = tp->keepalive_time - elapsed; 21771da177e4SLinus Torvalds else 21781da177e4SLinus Torvalds elapsed = 0; 2179463c84b9SArnaldo Carvalho de Melo inet_csk_reset_keepalive_timer(sk, elapsed); 21801da177e4SLinus Torvalds } 21811da177e4SLinus Torvalds } 21821da177e4SLinus Torvalds break; 21831da177e4SLinus Torvalds case TCP_KEEPINTVL: 21841da177e4SLinus Torvalds if (val < 1 || val > MAX_TCP_KEEPINTVL) 21851da177e4SLinus Torvalds err = -EINVAL; 21861da177e4SLinus Torvalds else 21871da177e4SLinus Torvalds tp->keepalive_intvl = val * HZ; 21881da177e4SLinus Torvalds break; 21891da177e4SLinus Torvalds case TCP_KEEPCNT: 21901da177e4SLinus Torvalds if (val < 1 || val > MAX_TCP_KEEPCNT) 21911da177e4SLinus Torvalds err = -EINVAL; 21921da177e4SLinus Torvalds else 21931da177e4SLinus Torvalds tp->keepalive_probes = val; 21941da177e4SLinus Torvalds break; 21951da177e4SLinus Torvalds case TCP_SYNCNT: 21961da177e4SLinus Torvalds if (val < 1 || val > MAX_TCP_SYNCNT) 21971da177e4SLinus Torvalds err = -EINVAL; 21981da177e4SLinus Torvalds else 2199463c84b9SArnaldo Carvalho de Melo icsk->icsk_syn_retries = val; 22001da177e4SLinus Torvalds break; 22011da177e4SLinus Torvalds 22021da177e4SLinus Torvalds case TCP_LINGER2: 22031da177e4SLinus Torvalds if (val < 0) 22041da177e4SLinus Torvalds tp->linger2 = -1; 22051da177e4SLinus Torvalds else if (val > sysctl_tcp_fin_timeout / HZ) 22061da177e4SLinus Torvalds tp->linger2 = 0; 22071da177e4SLinus Torvalds else 22081da177e4SLinus Torvalds tp->linger2 = val * HZ; 22091da177e4SLinus Torvalds break; 22101da177e4SLinus Torvalds 22111da177e4SLinus Torvalds case TCP_DEFER_ACCEPT: 2212b103cf34SJulian Anastasov /* Translate value in seconds to number of retransmits */ 2213b103cf34SJulian Anastasov icsk->icsk_accept_queue.rskq_defer_accept = 2214b103cf34SJulian Anastasov secs_to_retrans(val, TCP_TIMEOUT_INIT / HZ, 2215b103cf34SJulian Anastasov TCP_RTO_MAX / HZ); 22161da177e4SLinus Torvalds break; 22171da177e4SLinus Torvalds 22181da177e4SLinus Torvalds case TCP_WINDOW_CLAMP: 22191da177e4SLinus Torvalds if (!val) { 22201da177e4SLinus Torvalds if (sk->sk_state != TCP_CLOSE) { 22211da177e4SLinus Torvalds err = -EINVAL; 22221da177e4SLinus Torvalds break; 22231da177e4SLinus Torvalds } 22241da177e4SLinus Torvalds tp->window_clamp = 0; 22251da177e4SLinus Torvalds } else 22261da177e4SLinus Torvalds tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ? 22271da177e4SLinus Torvalds SOCK_MIN_RCVBUF / 2 : val; 22281da177e4SLinus Torvalds break; 22291da177e4SLinus Torvalds 22301da177e4SLinus Torvalds case TCP_QUICKACK: 22311da177e4SLinus Torvalds if (!val) { 2232463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pingpong = 1; 22331da177e4SLinus Torvalds } else { 2234463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pingpong = 0; 22351da177e4SLinus Torvalds if ((1 << sk->sk_state) & 22361da177e4SLinus Torvalds (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) && 2237463c84b9SArnaldo Carvalho de Melo inet_csk_ack_scheduled(sk)) { 2238463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pending |= ICSK_ACK_PUSHED; 22390e4b4992SChris Leech tcp_cleanup_rbuf(sk, 1); 22401da177e4SLinus Torvalds if (!(val & 1)) 2241463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pingpong = 1; 22421da177e4SLinus Torvalds } 22431da177e4SLinus Torvalds } 22441da177e4SLinus Torvalds break; 22451da177e4SLinus Torvalds 2246cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 2247cfb6eeb4SYOSHIFUJI Hideaki case TCP_MD5SIG: 2248cfb6eeb4SYOSHIFUJI Hideaki /* Read the IP->Key mappings from userspace */ 2249cfb6eeb4SYOSHIFUJI Hideaki err = tp->af_specific->md5_parse(sk, optval, optlen); 2250cfb6eeb4SYOSHIFUJI Hideaki break; 2251cfb6eeb4SYOSHIFUJI Hideaki #endif 2252cfb6eeb4SYOSHIFUJI Hideaki 22531da177e4SLinus Torvalds default: 22541da177e4SLinus Torvalds err = -ENOPROTOOPT; 22551da177e4SLinus Torvalds break; 22563ff50b79SStephen Hemminger } 22573ff50b79SStephen Hemminger 22581da177e4SLinus Torvalds release_sock(sk); 22591da177e4SLinus Torvalds return err; 22601da177e4SLinus Torvalds } 22611da177e4SLinus Torvalds 22623fdadf7dSDmitry Mishin int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval, 2263b7058842SDavid S. Miller unsigned int optlen) 22643fdadf7dSDmitry Mishin { 22653fdadf7dSDmitry Mishin struct inet_connection_sock *icsk = inet_csk(sk); 22663fdadf7dSDmitry Mishin 22673fdadf7dSDmitry Mishin if (level != SOL_TCP) 22683fdadf7dSDmitry Mishin return icsk->icsk_af_ops->setsockopt(sk, level, optname, 22693fdadf7dSDmitry Mishin optval, optlen); 22703fdadf7dSDmitry Mishin return do_tcp_setsockopt(sk, level, optname, optval, optlen); 22713fdadf7dSDmitry Mishin } 22723fdadf7dSDmitry Mishin 22733fdadf7dSDmitry Mishin #ifdef CONFIG_COMPAT 2274543d9cfeSArnaldo Carvalho de Melo int compat_tcp_setsockopt(struct sock *sk, int level, int optname, 2275b7058842SDavid S. Miller char __user *optval, unsigned int optlen) 22763fdadf7dSDmitry Mishin { 2277dec73ff0SArnaldo Carvalho de Melo if (level != SOL_TCP) 2278dec73ff0SArnaldo Carvalho de Melo return inet_csk_compat_setsockopt(sk, level, optname, 2279dec73ff0SArnaldo Carvalho de Melo optval, optlen); 22803fdadf7dSDmitry Mishin return do_tcp_setsockopt(sk, level, optname, optval, optlen); 22813fdadf7dSDmitry Mishin } 2282543d9cfeSArnaldo Carvalho de Melo 2283543d9cfeSArnaldo Carvalho de Melo EXPORT_SYMBOL(compat_tcp_setsockopt); 22843fdadf7dSDmitry Mishin #endif 22853fdadf7dSDmitry Mishin 22861da177e4SLinus Torvalds /* Return information about state of tcp endpoint in API format. */ 22871da177e4SLinus Torvalds void tcp_get_info(struct sock *sk, struct tcp_info *info) 22881da177e4SLinus Torvalds { 22891da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 2290463c84b9SArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 22911da177e4SLinus Torvalds u32 now = tcp_time_stamp; 22921da177e4SLinus Torvalds 22931da177e4SLinus Torvalds memset(info, 0, sizeof(*info)); 22941da177e4SLinus Torvalds 22951da177e4SLinus Torvalds info->tcpi_state = sk->sk_state; 22966687e988SArnaldo Carvalho de Melo info->tcpi_ca_state = icsk->icsk_ca_state; 2297463c84b9SArnaldo Carvalho de Melo info->tcpi_retransmits = icsk->icsk_retransmits; 22986687e988SArnaldo Carvalho de Melo info->tcpi_probes = icsk->icsk_probes_out; 2299463c84b9SArnaldo Carvalho de Melo info->tcpi_backoff = icsk->icsk_backoff; 23001da177e4SLinus Torvalds 23011da177e4SLinus Torvalds if (tp->rx_opt.tstamp_ok) 23021da177e4SLinus Torvalds info->tcpi_options |= TCPI_OPT_TIMESTAMPS; 2303e60402d0SIlpo Järvinen if (tcp_is_sack(tp)) 23041da177e4SLinus Torvalds info->tcpi_options |= TCPI_OPT_SACK; 23051da177e4SLinus Torvalds if (tp->rx_opt.wscale_ok) { 23061da177e4SLinus Torvalds info->tcpi_options |= TCPI_OPT_WSCALE; 23071da177e4SLinus Torvalds info->tcpi_snd_wscale = tp->rx_opt.snd_wscale; 23081da177e4SLinus Torvalds info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale; 23091da177e4SLinus Torvalds } 23101da177e4SLinus Torvalds 23111da177e4SLinus Torvalds if (tp->ecn_flags&TCP_ECN_OK) 23121da177e4SLinus Torvalds info->tcpi_options |= TCPI_OPT_ECN; 23131da177e4SLinus Torvalds 2314463c84b9SArnaldo Carvalho de Melo info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto); 2315463c84b9SArnaldo Carvalho de Melo info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato); 2316c1b4a7e6SDavid S. Miller info->tcpi_snd_mss = tp->mss_cache; 2317463c84b9SArnaldo Carvalho de Melo info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss; 23181da177e4SLinus Torvalds 23195ee3afbaSRick Jones if (sk->sk_state == TCP_LISTEN) { 23205ee3afbaSRick Jones info->tcpi_unacked = sk->sk_ack_backlog; 23215ee3afbaSRick Jones info->tcpi_sacked = sk->sk_max_ack_backlog; 23225ee3afbaSRick Jones } else { 23231da177e4SLinus Torvalds info->tcpi_unacked = tp->packets_out; 23241da177e4SLinus Torvalds info->tcpi_sacked = tp->sacked_out; 23255ee3afbaSRick Jones } 23261da177e4SLinus Torvalds info->tcpi_lost = tp->lost_out; 23271da177e4SLinus Torvalds info->tcpi_retrans = tp->retrans_out; 23281da177e4SLinus Torvalds info->tcpi_fackets = tp->fackets_out; 23291da177e4SLinus Torvalds 23301da177e4SLinus Torvalds info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime); 2331463c84b9SArnaldo Carvalho de Melo info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime); 23321da177e4SLinus Torvalds info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp); 23331da177e4SLinus Torvalds 2334d83d8461SArnaldo Carvalho de Melo info->tcpi_pmtu = icsk->icsk_pmtu_cookie; 23351da177e4SLinus Torvalds info->tcpi_rcv_ssthresh = tp->rcv_ssthresh; 23361da177e4SLinus Torvalds info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3; 23371da177e4SLinus Torvalds info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2; 23381da177e4SLinus Torvalds info->tcpi_snd_ssthresh = tp->snd_ssthresh; 23391da177e4SLinus Torvalds info->tcpi_snd_cwnd = tp->snd_cwnd; 23401da177e4SLinus Torvalds info->tcpi_advmss = tp->advmss; 23411da177e4SLinus Torvalds info->tcpi_reordering = tp->reordering; 23421da177e4SLinus Torvalds 23431da177e4SLinus Torvalds info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3; 23441da177e4SLinus Torvalds info->tcpi_rcv_space = tp->rcvq_space.space; 23451da177e4SLinus Torvalds 23461da177e4SLinus Torvalds info->tcpi_total_retrans = tp->total_retrans; 23471da177e4SLinus Torvalds } 23481da177e4SLinus Torvalds 23491da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(tcp_get_info); 23501da177e4SLinus Torvalds 23513fdadf7dSDmitry Mishin static int do_tcp_getsockopt(struct sock *sk, int level, 23523fdadf7dSDmitry Mishin int optname, char __user *optval, int __user *optlen) 23531da177e4SLinus Torvalds { 2354295f7324SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 23551da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 23561da177e4SLinus Torvalds int val, len; 23571da177e4SLinus Torvalds 23581da177e4SLinus Torvalds if (get_user(len, optlen)) 23591da177e4SLinus Torvalds return -EFAULT; 23601da177e4SLinus Torvalds 23611da177e4SLinus Torvalds len = min_t(unsigned int, len, sizeof(int)); 23621da177e4SLinus Torvalds 23631da177e4SLinus Torvalds if (len < 0) 23641da177e4SLinus Torvalds return -EINVAL; 23651da177e4SLinus Torvalds 23661da177e4SLinus Torvalds switch (optname) { 23671da177e4SLinus Torvalds case TCP_MAXSEG: 2368c1b4a7e6SDavid S. Miller val = tp->mss_cache; 23691da177e4SLinus Torvalds if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN))) 23701da177e4SLinus Torvalds val = tp->rx_opt.user_mss; 23711da177e4SLinus Torvalds break; 23721da177e4SLinus Torvalds case TCP_NODELAY: 23731da177e4SLinus Torvalds val = !!(tp->nonagle&TCP_NAGLE_OFF); 23741da177e4SLinus Torvalds break; 23751da177e4SLinus Torvalds case TCP_CORK: 23761da177e4SLinus Torvalds val = !!(tp->nonagle&TCP_NAGLE_CORK); 23771da177e4SLinus Torvalds break; 23781da177e4SLinus Torvalds case TCP_KEEPIDLE: 2379df19a626SEric Dumazet val = keepalive_time_when(tp) / HZ; 23801da177e4SLinus Torvalds break; 23811da177e4SLinus Torvalds case TCP_KEEPINTVL: 2382df19a626SEric Dumazet val = keepalive_intvl_when(tp) / HZ; 23831da177e4SLinus Torvalds break; 23841da177e4SLinus Torvalds case TCP_KEEPCNT: 2385df19a626SEric Dumazet val = keepalive_probes(tp); 23861da177e4SLinus Torvalds break; 23871da177e4SLinus Torvalds case TCP_SYNCNT: 2388295f7324SArnaldo Carvalho de Melo val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries; 23891da177e4SLinus Torvalds break; 23901da177e4SLinus Torvalds case TCP_LINGER2: 23911da177e4SLinus Torvalds val = tp->linger2; 23921da177e4SLinus Torvalds if (val >= 0) 23931da177e4SLinus Torvalds val = (val ? : sysctl_tcp_fin_timeout) / HZ; 23941da177e4SLinus Torvalds break; 23951da177e4SLinus Torvalds case TCP_DEFER_ACCEPT: 2396b103cf34SJulian Anastasov val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept, 2397b103cf34SJulian Anastasov TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ); 23981da177e4SLinus Torvalds break; 23991da177e4SLinus Torvalds case TCP_WINDOW_CLAMP: 24001da177e4SLinus Torvalds val = tp->window_clamp; 24011da177e4SLinus Torvalds break; 24021da177e4SLinus Torvalds case TCP_INFO: { 24031da177e4SLinus Torvalds struct tcp_info info; 24041da177e4SLinus Torvalds 24051da177e4SLinus Torvalds if (get_user(len, optlen)) 24061da177e4SLinus Torvalds return -EFAULT; 24071da177e4SLinus Torvalds 24081da177e4SLinus Torvalds tcp_get_info(sk, &info); 24091da177e4SLinus Torvalds 24101da177e4SLinus Torvalds len = min_t(unsigned int, len, sizeof(info)); 24111da177e4SLinus Torvalds if (put_user(len, optlen)) 24121da177e4SLinus Torvalds return -EFAULT; 24131da177e4SLinus Torvalds if (copy_to_user(optval, &info, len)) 24141da177e4SLinus Torvalds return -EFAULT; 24151da177e4SLinus Torvalds return 0; 24161da177e4SLinus Torvalds } 24171da177e4SLinus Torvalds case TCP_QUICKACK: 2418295f7324SArnaldo Carvalho de Melo val = !icsk->icsk_ack.pingpong; 24191da177e4SLinus Torvalds break; 24205f8ef48dSStephen Hemminger 24215f8ef48dSStephen Hemminger case TCP_CONGESTION: 24225f8ef48dSStephen Hemminger if (get_user(len, optlen)) 24235f8ef48dSStephen Hemminger return -EFAULT; 24245f8ef48dSStephen Hemminger len = min_t(unsigned int, len, TCP_CA_NAME_MAX); 24255f8ef48dSStephen Hemminger if (put_user(len, optlen)) 24265f8ef48dSStephen Hemminger return -EFAULT; 24276687e988SArnaldo Carvalho de Melo if (copy_to_user(optval, icsk->icsk_ca_ops->name, len)) 24285f8ef48dSStephen Hemminger return -EFAULT; 24295f8ef48dSStephen Hemminger return 0; 24301da177e4SLinus Torvalds default: 24311da177e4SLinus Torvalds return -ENOPROTOOPT; 24323ff50b79SStephen Hemminger } 24331da177e4SLinus Torvalds 24341da177e4SLinus Torvalds if (put_user(len, optlen)) 24351da177e4SLinus Torvalds return -EFAULT; 24361da177e4SLinus Torvalds if (copy_to_user(optval, &val, len)) 24371da177e4SLinus Torvalds return -EFAULT; 24381da177e4SLinus Torvalds return 0; 24391da177e4SLinus Torvalds } 24401da177e4SLinus Torvalds 24413fdadf7dSDmitry Mishin int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval, 24423fdadf7dSDmitry Mishin int __user *optlen) 24433fdadf7dSDmitry Mishin { 24443fdadf7dSDmitry Mishin struct inet_connection_sock *icsk = inet_csk(sk); 24453fdadf7dSDmitry Mishin 24463fdadf7dSDmitry Mishin if (level != SOL_TCP) 24473fdadf7dSDmitry Mishin return icsk->icsk_af_ops->getsockopt(sk, level, optname, 24483fdadf7dSDmitry Mishin optval, optlen); 24493fdadf7dSDmitry Mishin return do_tcp_getsockopt(sk, level, optname, optval, optlen); 24503fdadf7dSDmitry Mishin } 24513fdadf7dSDmitry Mishin 24523fdadf7dSDmitry Mishin #ifdef CONFIG_COMPAT 2453543d9cfeSArnaldo Carvalho de Melo int compat_tcp_getsockopt(struct sock *sk, int level, int optname, 2454543d9cfeSArnaldo Carvalho de Melo char __user *optval, int __user *optlen) 24553fdadf7dSDmitry Mishin { 2456dec73ff0SArnaldo Carvalho de Melo if (level != SOL_TCP) 2457dec73ff0SArnaldo Carvalho de Melo return inet_csk_compat_getsockopt(sk, level, optname, 2458dec73ff0SArnaldo Carvalho de Melo optval, optlen); 24593fdadf7dSDmitry Mishin return do_tcp_getsockopt(sk, level, optname, optval, optlen); 24603fdadf7dSDmitry Mishin } 2461543d9cfeSArnaldo Carvalho de Melo 2462543d9cfeSArnaldo Carvalho de Melo EXPORT_SYMBOL(compat_tcp_getsockopt); 24633fdadf7dSDmitry Mishin #endif 24641da177e4SLinus Torvalds 2465576a30ebSHerbert Xu struct sk_buff *tcp_tso_segment(struct sk_buff *skb, int features) 2466f4c50d99SHerbert Xu { 2467f4c50d99SHerbert Xu struct sk_buff *segs = ERR_PTR(-EINVAL); 2468f4c50d99SHerbert Xu struct tcphdr *th; 2469f4c50d99SHerbert Xu unsigned thlen; 2470f4c50d99SHerbert Xu unsigned int seq; 2471d3bc23e7SAl Viro __be32 delta; 2472f4c50d99SHerbert Xu unsigned int oldlen; 24734e704ee3SHerbert Xu unsigned int mss; 2474f4c50d99SHerbert Xu 2475f4c50d99SHerbert Xu if (!pskb_may_pull(skb, sizeof(*th))) 2476f4c50d99SHerbert Xu goto out; 2477f4c50d99SHerbert Xu 2478aa8223c7SArnaldo Carvalho de Melo th = tcp_hdr(skb); 2479f4c50d99SHerbert Xu thlen = th->doff * 4; 2480f4c50d99SHerbert Xu if (thlen < sizeof(*th)) 2481f4c50d99SHerbert Xu goto out; 2482f4c50d99SHerbert Xu 2483f4c50d99SHerbert Xu if (!pskb_may_pull(skb, thlen)) 2484f4c50d99SHerbert Xu goto out; 2485f4c50d99SHerbert Xu 24860718bcc0SHerbert Xu oldlen = (u16)~skb->len; 2487f4c50d99SHerbert Xu __skb_pull(skb, thlen); 2488f4c50d99SHerbert Xu 24894e704ee3SHerbert Xu mss = skb_shinfo(skb)->gso_size; 24904e704ee3SHerbert Xu if (unlikely(skb->len <= mss)) 24914e704ee3SHerbert Xu goto out; 24924e704ee3SHerbert Xu 24933820c3f3SHerbert Xu if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) { 24943820c3f3SHerbert Xu /* Packet is from an untrusted source, reset gso_segs. */ 2495bbcf467dSHerbert Xu int type = skb_shinfo(skb)->gso_type; 24963820c3f3SHerbert Xu 2497bbcf467dSHerbert Xu if (unlikely(type & 2498bbcf467dSHerbert Xu ~(SKB_GSO_TCPV4 | 2499bbcf467dSHerbert Xu SKB_GSO_DODGY | 2500bbcf467dSHerbert Xu SKB_GSO_TCP_ECN | 2501bbcf467dSHerbert Xu SKB_GSO_TCPV6 | 2502bbcf467dSHerbert Xu 0) || 2503bbcf467dSHerbert Xu !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))) 2504bbcf467dSHerbert Xu goto out; 2505bbcf467dSHerbert Xu 2506172589ccSIlpo Järvinen skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss); 25073820c3f3SHerbert Xu 25083820c3f3SHerbert Xu segs = NULL; 25093820c3f3SHerbert Xu goto out; 25103820c3f3SHerbert Xu } 25113820c3f3SHerbert Xu 2512576a30ebSHerbert Xu segs = skb_segment(skb, features); 2513f4c50d99SHerbert Xu if (IS_ERR(segs)) 2514f4c50d99SHerbert Xu goto out; 2515f4c50d99SHerbert Xu 25164e704ee3SHerbert Xu delta = htonl(oldlen + (thlen + mss)); 2517f4c50d99SHerbert Xu 2518f4c50d99SHerbert Xu skb = segs; 2519aa8223c7SArnaldo Carvalho de Melo th = tcp_hdr(skb); 2520f4c50d99SHerbert Xu seq = ntohl(th->seq); 2521f4c50d99SHerbert Xu 2522f4c50d99SHerbert Xu do { 2523f4c50d99SHerbert Xu th->fin = th->psh = 0; 2524f4c50d99SHerbert Xu 2525d3bc23e7SAl Viro th->check = ~csum_fold((__force __wsum)((__force u32)th->check + 2526d3bc23e7SAl Viro (__force u32)delta)); 252784fa7933SPatrick McHardy if (skb->ip_summed != CHECKSUM_PARTIAL) 25289c70220bSArnaldo Carvalho de Melo th->check = 25299c70220bSArnaldo Carvalho de Melo csum_fold(csum_partial(skb_transport_header(skb), 25309c70220bSArnaldo Carvalho de Melo thlen, skb->csum)); 2531f4c50d99SHerbert Xu 25324e704ee3SHerbert Xu seq += mss; 2533f4c50d99SHerbert Xu skb = skb->next; 2534aa8223c7SArnaldo Carvalho de Melo th = tcp_hdr(skb); 2535f4c50d99SHerbert Xu 2536f4c50d99SHerbert Xu th->seq = htonl(seq); 2537f4c50d99SHerbert Xu th->cwr = 0; 2538f4c50d99SHerbert Xu } while (skb->next); 2539f4c50d99SHerbert Xu 254027a884dcSArnaldo Carvalho de Melo delta = htonl(oldlen + (skb->tail - skb->transport_header) + 25419c70220bSArnaldo Carvalho de Melo skb->data_len); 2542d3bc23e7SAl Viro th->check = ~csum_fold((__force __wsum)((__force u32)th->check + 2543d3bc23e7SAl Viro (__force u32)delta)); 254484fa7933SPatrick McHardy if (skb->ip_summed != CHECKSUM_PARTIAL) 25459c70220bSArnaldo Carvalho de Melo th->check = csum_fold(csum_partial(skb_transport_header(skb), 25469c70220bSArnaldo Carvalho de Melo thlen, skb->csum)); 2547f4c50d99SHerbert Xu 2548f4c50d99SHerbert Xu out: 2549f4c50d99SHerbert Xu return segs; 2550f4c50d99SHerbert Xu } 2551adcfc7d0SHerbert Xu EXPORT_SYMBOL(tcp_tso_segment); 2552f4c50d99SHerbert Xu 2553bf296b12SHerbert Xu struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb) 2554bf296b12SHerbert Xu { 2555bf296b12SHerbert Xu struct sk_buff **pp = NULL; 2556bf296b12SHerbert Xu struct sk_buff *p; 2557bf296b12SHerbert Xu struct tcphdr *th; 2558bf296b12SHerbert Xu struct tcphdr *th2; 2559a0a69a01SHerbert Xu unsigned int len; 2560bf296b12SHerbert Xu unsigned int thlen; 2561bf296b12SHerbert Xu unsigned int flags; 2562bf296b12SHerbert Xu unsigned int mss = 1; 2563a5b1cf28SHerbert Xu unsigned int hlen; 2564a5b1cf28SHerbert Xu unsigned int off; 2565bf296b12SHerbert Xu int flush = 1; 2566aa6320d3SHerbert Xu int i; 2567bf296b12SHerbert Xu 2568a5b1cf28SHerbert Xu off = skb_gro_offset(skb); 2569a5b1cf28SHerbert Xu hlen = off + sizeof(*th); 2570a5b1cf28SHerbert Xu th = skb_gro_header_fast(skb, off); 2571a5b1cf28SHerbert Xu if (skb_gro_header_hard(skb, hlen)) { 2572a5b1cf28SHerbert Xu th = skb_gro_header_slow(skb, hlen, off); 257386911732SHerbert Xu if (unlikely(!th)) 2574bf296b12SHerbert Xu goto out; 2575a5b1cf28SHerbert Xu } 2576bf296b12SHerbert Xu 2577bf296b12SHerbert Xu thlen = th->doff * 4; 2578bf296b12SHerbert Xu if (thlen < sizeof(*th)) 2579bf296b12SHerbert Xu goto out; 2580bf296b12SHerbert Xu 2581a5b1cf28SHerbert Xu hlen = off + thlen; 2582a5b1cf28SHerbert Xu if (skb_gro_header_hard(skb, hlen)) { 2583a5b1cf28SHerbert Xu th = skb_gro_header_slow(skb, hlen, off); 258486911732SHerbert Xu if (unlikely(!th)) 2585bf296b12SHerbert Xu goto out; 2586a5b1cf28SHerbert Xu } 2587bf296b12SHerbert Xu 258886911732SHerbert Xu skb_gro_pull(skb, thlen); 2589bf296b12SHerbert Xu 2590a0a69a01SHerbert Xu len = skb_gro_len(skb); 2591bf296b12SHerbert Xu flags = tcp_flag_word(th); 2592bf296b12SHerbert Xu 2593bf296b12SHerbert Xu for (; (p = *head); head = &p->next) { 2594bf296b12SHerbert Xu if (!NAPI_GRO_CB(p)->same_flow) 2595bf296b12SHerbert Xu continue; 2596bf296b12SHerbert Xu 2597bf296b12SHerbert Xu th2 = tcp_hdr(p); 2598bf296b12SHerbert Xu 2599745898eaSHerbert Xu if (*(u32 *)&th->source ^ *(u32 *)&th2->source) { 2600bf296b12SHerbert Xu NAPI_GRO_CB(p)->same_flow = 0; 2601bf296b12SHerbert Xu continue; 2602bf296b12SHerbert Xu } 2603bf296b12SHerbert Xu 2604bf296b12SHerbert Xu goto found; 2605bf296b12SHerbert Xu } 2606bf296b12SHerbert Xu 2607bf296b12SHerbert Xu goto out_check_final; 2608bf296b12SHerbert Xu 2609bf296b12SHerbert Xu found: 2610bf296b12SHerbert Xu flush = NAPI_GRO_CB(p)->flush; 2611bf296b12SHerbert Xu flush |= flags & TCP_FLAG_CWR; 2612bf296b12SHerbert Xu flush |= (flags ^ tcp_flag_word(th2)) & 2613bf296b12SHerbert Xu ~(TCP_FLAG_CWR | TCP_FLAG_FIN | TCP_FLAG_PSH); 26144a9a2968SHerbert Xu flush |= th->ack_seq ^ th2->ack_seq; 2615a2a804cdSHerbert Xu for (i = sizeof(*th); i < thlen; i += 4) 2616aa6320d3SHerbert Xu flush |= *(u32 *)((u8 *)th + i) ^ 2617aa6320d3SHerbert Xu *(u32 *)((u8 *)th2 + i); 2618bf296b12SHerbert Xu 2619b530256dSHerbert Xu mss = skb_shinfo(p)->gso_size; 2620bf296b12SHerbert Xu 262130a3ae30SHerbert Xu flush |= (len - 1) >= mss; 2622aa6320d3SHerbert Xu flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq); 2623bf296b12SHerbert Xu 2624bf296b12SHerbert Xu if (flush || skb_gro_receive(head, skb)) { 2625bf296b12SHerbert Xu mss = 1; 2626bf296b12SHerbert Xu goto out_check_final; 2627bf296b12SHerbert Xu } 2628bf296b12SHerbert Xu 2629bf296b12SHerbert Xu p = *head; 2630bf296b12SHerbert Xu th2 = tcp_hdr(p); 2631bf296b12SHerbert Xu tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH); 2632bf296b12SHerbert Xu 2633bf296b12SHerbert Xu out_check_final: 2634a0a69a01SHerbert Xu flush = len < mss; 2635bf296b12SHerbert Xu flush |= flags & (TCP_FLAG_URG | TCP_FLAG_PSH | TCP_FLAG_RST | 2636bf296b12SHerbert Xu TCP_FLAG_SYN | TCP_FLAG_FIN); 2637bf296b12SHerbert Xu 2638bf296b12SHerbert Xu if (p && (!NAPI_GRO_CB(skb)->same_flow || flush)) 2639bf296b12SHerbert Xu pp = head; 2640bf296b12SHerbert Xu 2641bf296b12SHerbert Xu out: 2642bf296b12SHerbert Xu NAPI_GRO_CB(skb)->flush |= flush; 2643bf296b12SHerbert Xu 2644bf296b12SHerbert Xu return pp; 2645bf296b12SHerbert Xu } 2646684f2176SHerbert Xu EXPORT_SYMBOL(tcp_gro_receive); 2647bf296b12SHerbert Xu 2648bf296b12SHerbert Xu int tcp_gro_complete(struct sk_buff *skb) 2649bf296b12SHerbert Xu { 2650bf296b12SHerbert Xu struct tcphdr *th = tcp_hdr(skb); 2651bf296b12SHerbert Xu 2652bf296b12SHerbert Xu skb->csum_start = skb_transport_header(skb) - skb->head; 2653bf296b12SHerbert Xu skb->csum_offset = offsetof(struct tcphdr, check); 2654bf296b12SHerbert Xu skb->ip_summed = CHECKSUM_PARTIAL; 2655bf296b12SHerbert Xu 2656bf296b12SHerbert Xu skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count; 2657bf296b12SHerbert Xu 2658bf296b12SHerbert Xu if (th->cwr) 2659bf296b12SHerbert Xu skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN; 2660bf296b12SHerbert Xu 2661bf296b12SHerbert Xu return 0; 2662bf296b12SHerbert Xu } 2663684f2176SHerbert Xu EXPORT_SYMBOL(tcp_gro_complete); 2664bf296b12SHerbert Xu 2665cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 2666cfb6eeb4SYOSHIFUJI Hideaki static unsigned long tcp_md5sig_users; 2667cfb6eeb4SYOSHIFUJI Hideaki static struct tcp_md5sig_pool **tcp_md5sig_pool; 2668cfb6eeb4SYOSHIFUJI Hideaki static DEFINE_SPINLOCK(tcp_md5sig_pool_lock); 2669cfb6eeb4SYOSHIFUJI Hideaki 2670cfb6eeb4SYOSHIFUJI Hideaki static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool **pool) 2671cfb6eeb4SYOSHIFUJI Hideaki { 2672cfb6eeb4SYOSHIFUJI Hideaki int cpu; 2673cfb6eeb4SYOSHIFUJI Hideaki for_each_possible_cpu(cpu) { 2674cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool *p = *per_cpu_ptr(pool, cpu); 2675cfb6eeb4SYOSHIFUJI Hideaki if (p) { 2676cfb6eeb4SYOSHIFUJI Hideaki if (p->md5_desc.tfm) 2677cfb6eeb4SYOSHIFUJI Hideaki crypto_free_hash(p->md5_desc.tfm); 2678cfb6eeb4SYOSHIFUJI Hideaki kfree(p); 2679cfb6eeb4SYOSHIFUJI Hideaki p = NULL; 2680cfb6eeb4SYOSHIFUJI Hideaki } 2681cfb6eeb4SYOSHIFUJI Hideaki } 2682cfb6eeb4SYOSHIFUJI Hideaki free_percpu(pool); 2683cfb6eeb4SYOSHIFUJI Hideaki } 2684cfb6eeb4SYOSHIFUJI Hideaki 2685cfb6eeb4SYOSHIFUJI Hideaki void tcp_free_md5sig_pool(void) 2686cfb6eeb4SYOSHIFUJI Hideaki { 2687cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool **pool = NULL; 2688cfb6eeb4SYOSHIFUJI Hideaki 26892c4f6219SDavid S. Miller spin_lock_bh(&tcp_md5sig_pool_lock); 2690cfb6eeb4SYOSHIFUJI Hideaki if (--tcp_md5sig_users == 0) { 2691cfb6eeb4SYOSHIFUJI Hideaki pool = tcp_md5sig_pool; 2692cfb6eeb4SYOSHIFUJI Hideaki tcp_md5sig_pool = NULL; 2693cfb6eeb4SYOSHIFUJI Hideaki } 26942c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2695cfb6eeb4SYOSHIFUJI Hideaki if (pool) 2696cfb6eeb4SYOSHIFUJI Hideaki __tcp_free_md5sig_pool(pool); 2697cfb6eeb4SYOSHIFUJI Hideaki } 2698cfb6eeb4SYOSHIFUJI Hideaki 2699cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(tcp_free_md5sig_pool); 2700cfb6eeb4SYOSHIFUJI Hideaki 2701aa133076SWu Fengguang static struct tcp_md5sig_pool **__tcp_alloc_md5sig_pool(struct sock *sk) 2702cfb6eeb4SYOSHIFUJI Hideaki { 2703cfb6eeb4SYOSHIFUJI Hideaki int cpu; 2704cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool **pool; 2705cfb6eeb4SYOSHIFUJI Hideaki 2706cfb6eeb4SYOSHIFUJI Hideaki pool = alloc_percpu(struct tcp_md5sig_pool *); 2707cfb6eeb4SYOSHIFUJI Hideaki if (!pool) 2708cfb6eeb4SYOSHIFUJI Hideaki return NULL; 2709cfb6eeb4SYOSHIFUJI Hideaki 2710cfb6eeb4SYOSHIFUJI Hideaki for_each_possible_cpu(cpu) { 2711cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool *p; 2712cfb6eeb4SYOSHIFUJI Hideaki struct crypto_hash *hash; 2713cfb6eeb4SYOSHIFUJI Hideaki 2714aa133076SWu Fengguang p = kzalloc(sizeof(*p), sk->sk_allocation); 2715cfb6eeb4SYOSHIFUJI Hideaki if (!p) 2716cfb6eeb4SYOSHIFUJI Hideaki goto out_free; 2717cfb6eeb4SYOSHIFUJI Hideaki *per_cpu_ptr(pool, cpu) = p; 2718cfb6eeb4SYOSHIFUJI Hideaki 2719cfb6eeb4SYOSHIFUJI Hideaki hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC); 2720cfb6eeb4SYOSHIFUJI Hideaki if (!hash || IS_ERR(hash)) 2721cfb6eeb4SYOSHIFUJI Hideaki goto out_free; 2722cfb6eeb4SYOSHIFUJI Hideaki 2723cfb6eeb4SYOSHIFUJI Hideaki p->md5_desc.tfm = hash; 2724cfb6eeb4SYOSHIFUJI Hideaki } 2725cfb6eeb4SYOSHIFUJI Hideaki return pool; 2726cfb6eeb4SYOSHIFUJI Hideaki out_free: 2727cfb6eeb4SYOSHIFUJI Hideaki __tcp_free_md5sig_pool(pool); 2728cfb6eeb4SYOSHIFUJI Hideaki return NULL; 2729cfb6eeb4SYOSHIFUJI Hideaki } 2730cfb6eeb4SYOSHIFUJI Hideaki 2731aa133076SWu Fengguang struct tcp_md5sig_pool **tcp_alloc_md5sig_pool(struct sock *sk) 2732cfb6eeb4SYOSHIFUJI Hideaki { 2733cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool **pool; 2734cfb6eeb4SYOSHIFUJI Hideaki int alloc = 0; 2735cfb6eeb4SYOSHIFUJI Hideaki 2736cfb6eeb4SYOSHIFUJI Hideaki retry: 27372c4f6219SDavid S. Miller spin_lock_bh(&tcp_md5sig_pool_lock); 2738cfb6eeb4SYOSHIFUJI Hideaki pool = tcp_md5sig_pool; 2739cfb6eeb4SYOSHIFUJI Hideaki if (tcp_md5sig_users++ == 0) { 2740cfb6eeb4SYOSHIFUJI Hideaki alloc = 1; 27412c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2742cfb6eeb4SYOSHIFUJI Hideaki } else if (!pool) { 2743cfb6eeb4SYOSHIFUJI Hideaki tcp_md5sig_users--; 27442c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2745cfb6eeb4SYOSHIFUJI Hideaki cpu_relax(); 2746cfb6eeb4SYOSHIFUJI Hideaki goto retry; 2747cfb6eeb4SYOSHIFUJI Hideaki } else 27482c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2749cfb6eeb4SYOSHIFUJI Hideaki 2750cfb6eeb4SYOSHIFUJI Hideaki if (alloc) { 2751cfb6eeb4SYOSHIFUJI Hideaki /* we cannot hold spinlock here because this may sleep. */ 2752aa133076SWu Fengguang struct tcp_md5sig_pool **p = __tcp_alloc_md5sig_pool(sk); 27532c4f6219SDavid S. Miller spin_lock_bh(&tcp_md5sig_pool_lock); 2754cfb6eeb4SYOSHIFUJI Hideaki if (!p) { 2755cfb6eeb4SYOSHIFUJI Hideaki tcp_md5sig_users--; 27562c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2757cfb6eeb4SYOSHIFUJI Hideaki return NULL; 2758cfb6eeb4SYOSHIFUJI Hideaki } 2759cfb6eeb4SYOSHIFUJI Hideaki pool = tcp_md5sig_pool; 2760cfb6eeb4SYOSHIFUJI Hideaki if (pool) { 2761cfb6eeb4SYOSHIFUJI Hideaki /* oops, it has already been assigned. */ 27622c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2763cfb6eeb4SYOSHIFUJI Hideaki __tcp_free_md5sig_pool(p); 2764cfb6eeb4SYOSHIFUJI Hideaki } else { 2765cfb6eeb4SYOSHIFUJI Hideaki tcp_md5sig_pool = pool = p; 27662c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2767cfb6eeb4SYOSHIFUJI Hideaki } 2768cfb6eeb4SYOSHIFUJI Hideaki } 2769cfb6eeb4SYOSHIFUJI Hideaki return pool; 2770cfb6eeb4SYOSHIFUJI Hideaki } 2771cfb6eeb4SYOSHIFUJI Hideaki 2772cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(tcp_alloc_md5sig_pool); 2773cfb6eeb4SYOSHIFUJI Hideaki 2774cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool *__tcp_get_md5sig_pool(int cpu) 2775cfb6eeb4SYOSHIFUJI Hideaki { 2776cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool **p; 27772c4f6219SDavid S. Miller spin_lock_bh(&tcp_md5sig_pool_lock); 2778cfb6eeb4SYOSHIFUJI Hideaki p = tcp_md5sig_pool; 2779cfb6eeb4SYOSHIFUJI Hideaki if (p) 2780cfb6eeb4SYOSHIFUJI Hideaki tcp_md5sig_users++; 27812c4f6219SDavid S. Miller spin_unlock_bh(&tcp_md5sig_pool_lock); 2782cfb6eeb4SYOSHIFUJI Hideaki return (p ? *per_cpu_ptr(p, cpu) : NULL); 2783cfb6eeb4SYOSHIFUJI Hideaki } 2784cfb6eeb4SYOSHIFUJI Hideaki 2785cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(__tcp_get_md5sig_pool); 2786cfb6eeb4SYOSHIFUJI Hideaki 27876931ba7cSDavid S. Miller void __tcp_put_md5sig_pool(void) 27886931ba7cSDavid S. Miller { 27896931ba7cSDavid S. Miller tcp_free_md5sig_pool(); 2790cfb6eeb4SYOSHIFUJI Hideaki } 2791cfb6eeb4SYOSHIFUJI Hideaki 2792cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(__tcp_put_md5sig_pool); 279349a72dfbSAdam Langley 279449a72dfbSAdam Langley int tcp_md5_hash_header(struct tcp_md5sig_pool *hp, 279549a72dfbSAdam Langley struct tcphdr *th) 279649a72dfbSAdam Langley { 279749a72dfbSAdam Langley struct scatterlist sg; 279849a72dfbSAdam Langley int err; 279949a72dfbSAdam Langley 280049a72dfbSAdam Langley __sum16 old_checksum = th->check; 280149a72dfbSAdam Langley th->check = 0; 280249a72dfbSAdam Langley /* options aren't included in the hash */ 280349a72dfbSAdam Langley sg_init_one(&sg, th, sizeof(struct tcphdr)); 280449a72dfbSAdam Langley err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(struct tcphdr)); 280549a72dfbSAdam Langley th->check = old_checksum; 280649a72dfbSAdam Langley return err; 280749a72dfbSAdam Langley } 280849a72dfbSAdam Langley 280949a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_header); 281049a72dfbSAdam Langley 281149a72dfbSAdam Langley int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp, 281249a72dfbSAdam Langley struct sk_buff *skb, unsigned header_len) 281349a72dfbSAdam Langley { 281449a72dfbSAdam Langley struct scatterlist sg; 281549a72dfbSAdam Langley const struct tcphdr *tp = tcp_hdr(skb); 281649a72dfbSAdam Langley struct hash_desc *desc = &hp->md5_desc; 281749a72dfbSAdam Langley unsigned i; 281849a72dfbSAdam Langley const unsigned head_data_len = skb_headlen(skb) > header_len ? 281949a72dfbSAdam Langley skb_headlen(skb) - header_len : 0; 282049a72dfbSAdam Langley const struct skb_shared_info *shi = skb_shinfo(skb); 282149a72dfbSAdam Langley 282249a72dfbSAdam Langley sg_init_table(&sg, 1); 282349a72dfbSAdam Langley 282449a72dfbSAdam Langley sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len); 282549a72dfbSAdam Langley if (crypto_hash_update(desc, &sg, head_data_len)) 282649a72dfbSAdam Langley return 1; 282749a72dfbSAdam Langley 282849a72dfbSAdam Langley for (i = 0; i < shi->nr_frags; ++i) { 282949a72dfbSAdam Langley const struct skb_frag_struct *f = &shi->frags[i]; 283049a72dfbSAdam Langley sg_set_page(&sg, f->page, f->size, f->page_offset); 283149a72dfbSAdam Langley if (crypto_hash_update(desc, &sg, f->size)) 283249a72dfbSAdam Langley return 1; 283349a72dfbSAdam Langley } 283449a72dfbSAdam Langley 283549a72dfbSAdam Langley return 0; 283649a72dfbSAdam Langley } 283749a72dfbSAdam Langley 283849a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_skb_data); 283949a72dfbSAdam Langley 284049a72dfbSAdam Langley int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, struct tcp_md5sig_key *key) 284149a72dfbSAdam Langley { 284249a72dfbSAdam Langley struct scatterlist sg; 284349a72dfbSAdam Langley 284449a72dfbSAdam Langley sg_init_one(&sg, key->key, key->keylen); 284549a72dfbSAdam Langley return crypto_hash_update(&hp->md5_desc, &sg, key->keylen); 284649a72dfbSAdam Langley } 284749a72dfbSAdam Langley 284849a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_key); 284949a72dfbSAdam Langley 2850cfb6eeb4SYOSHIFUJI Hideaki #endif 2851cfb6eeb4SYOSHIFUJI Hideaki 2852*da5c78c8SWilliam Allen Simpson /** 2853*da5c78c8SWilliam Allen Simpson * Each Responder maintains up to two secret values concurrently for 2854*da5c78c8SWilliam Allen Simpson * efficient secret rollover. Each secret value has 4 states: 2855*da5c78c8SWilliam Allen Simpson * 2856*da5c78c8SWilliam Allen Simpson * Generating. (tcp_secret_generating != tcp_secret_primary) 2857*da5c78c8SWilliam Allen Simpson * Generates new Responder-Cookies, but not yet used for primary 2858*da5c78c8SWilliam Allen Simpson * verification. This is a short-term state, typically lasting only 2859*da5c78c8SWilliam Allen Simpson * one round trip time (RTT). 2860*da5c78c8SWilliam Allen Simpson * 2861*da5c78c8SWilliam Allen Simpson * Primary. (tcp_secret_generating == tcp_secret_primary) 2862*da5c78c8SWilliam Allen Simpson * Used both for generation and primary verification. 2863*da5c78c8SWilliam Allen Simpson * 2864*da5c78c8SWilliam Allen Simpson * Retiring. (tcp_secret_retiring != tcp_secret_secondary) 2865*da5c78c8SWilliam Allen Simpson * Used for verification, until the first failure that can be 2866*da5c78c8SWilliam Allen Simpson * verified by the newer Generating secret. At that time, this 2867*da5c78c8SWilliam Allen Simpson * cookie's state is changed to Secondary, and the Generating 2868*da5c78c8SWilliam Allen Simpson * cookie's state is changed to Primary. This is a short-term state, 2869*da5c78c8SWilliam Allen Simpson * typically lasting only one round trip time (RTT). 2870*da5c78c8SWilliam Allen Simpson * 2871*da5c78c8SWilliam Allen Simpson * Secondary. (tcp_secret_retiring == tcp_secret_secondary) 2872*da5c78c8SWilliam Allen Simpson * Used for secondary verification, after primary verification 2873*da5c78c8SWilliam Allen Simpson * failures. This state lasts no more than twice the Maximum Segment 2874*da5c78c8SWilliam Allen Simpson * Lifetime (2MSL). Then, the secret is discarded. 2875*da5c78c8SWilliam Allen Simpson */ 2876*da5c78c8SWilliam Allen Simpson struct tcp_cookie_secret { 2877*da5c78c8SWilliam Allen Simpson /* The secret is divided into two parts. The digest part is the 2878*da5c78c8SWilliam Allen Simpson * equivalent of previously hashing a secret and saving the state, 2879*da5c78c8SWilliam Allen Simpson * and serves as an initialization vector (IV). The message part 2880*da5c78c8SWilliam Allen Simpson * serves as the trailing secret. 2881*da5c78c8SWilliam Allen Simpson */ 2882*da5c78c8SWilliam Allen Simpson u32 secrets[COOKIE_WORKSPACE_WORDS]; 2883*da5c78c8SWilliam Allen Simpson unsigned long expires; 2884*da5c78c8SWilliam Allen Simpson }; 2885*da5c78c8SWilliam Allen Simpson 2886*da5c78c8SWilliam Allen Simpson #define TCP_SECRET_1MSL (HZ * TCP_PAWS_MSL) 2887*da5c78c8SWilliam Allen Simpson #define TCP_SECRET_2MSL (HZ * TCP_PAWS_MSL * 2) 2888*da5c78c8SWilliam Allen Simpson #define TCP_SECRET_LIFE (HZ * 600) 2889*da5c78c8SWilliam Allen Simpson 2890*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret tcp_secret_one; 2891*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret tcp_secret_two; 2892*da5c78c8SWilliam Allen Simpson 2893*da5c78c8SWilliam Allen Simpson /* Essentially a circular list, without dynamic allocation. */ 2894*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret *tcp_secret_generating; 2895*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret *tcp_secret_primary; 2896*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret *tcp_secret_retiring; 2897*da5c78c8SWilliam Allen Simpson static struct tcp_cookie_secret *tcp_secret_secondary; 2898*da5c78c8SWilliam Allen Simpson 2899*da5c78c8SWilliam Allen Simpson static DEFINE_SPINLOCK(tcp_secret_locker); 2900*da5c78c8SWilliam Allen Simpson 2901*da5c78c8SWilliam Allen Simpson /* Select a pseudo-random word in the cookie workspace. 2902*da5c78c8SWilliam Allen Simpson */ 2903*da5c78c8SWilliam Allen Simpson static inline u32 tcp_cookie_work(const u32 *ws, const int n) 2904*da5c78c8SWilliam Allen Simpson { 2905*da5c78c8SWilliam Allen Simpson return ws[COOKIE_DIGEST_WORDS + ((COOKIE_MESSAGE_WORDS-1) & ws[n])]; 2906*da5c78c8SWilliam Allen Simpson } 2907*da5c78c8SWilliam Allen Simpson 2908*da5c78c8SWilliam Allen Simpson /* Fill bakery[COOKIE_WORKSPACE_WORDS] with generator, updating as needed. 2909*da5c78c8SWilliam Allen Simpson * Called in softirq context. 2910*da5c78c8SWilliam Allen Simpson * Returns: 0 for success. 2911*da5c78c8SWilliam Allen Simpson */ 2912*da5c78c8SWilliam Allen Simpson int tcp_cookie_generator(u32 *bakery) 2913*da5c78c8SWilliam Allen Simpson { 2914*da5c78c8SWilliam Allen Simpson unsigned long jiffy = jiffies; 2915*da5c78c8SWilliam Allen Simpson 2916*da5c78c8SWilliam Allen Simpson if (unlikely(time_after_eq(jiffy, tcp_secret_generating->expires))) { 2917*da5c78c8SWilliam Allen Simpson spin_lock_bh(&tcp_secret_locker); 2918*da5c78c8SWilliam Allen Simpson if (!time_after_eq(jiffy, tcp_secret_generating->expires)) { 2919*da5c78c8SWilliam Allen Simpson /* refreshed by another */ 2920*da5c78c8SWilliam Allen Simpson memcpy(bakery, 2921*da5c78c8SWilliam Allen Simpson &tcp_secret_generating->secrets[0], 2922*da5c78c8SWilliam Allen Simpson COOKIE_WORKSPACE_WORDS); 2923*da5c78c8SWilliam Allen Simpson } else { 2924*da5c78c8SWilliam Allen Simpson /* still needs refreshing */ 2925*da5c78c8SWilliam Allen Simpson get_random_bytes(bakery, COOKIE_WORKSPACE_WORDS); 2926*da5c78c8SWilliam Allen Simpson 2927*da5c78c8SWilliam Allen Simpson /* The first time, paranoia assumes that the 2928*da5c78c8SWilliam Allen Simpson * randomization function isn't as strong. But, 2929*da5c78c8SWilliam Allen Simpson * this secret initialization is delayed until 2930*da5c78c8SWilliam Allen Simpson * the last possible moment (packet arrival). 2931*da5c78c8SWilliam Allen Simpson * Although that time is observable, it is 2932*da5c78c8SWilliam Allen Simpson * unpredictably variable. Mash in the most 2933*da5c78c8SWilliam Allen Simpson * volatile clock bits available, and expire the 2934*da5c78c8SWilliam Allen Simpson * secret extra quickly. 2935*da5c78c8SWilliam Allen Simpson */ 2936*da5c78c8SWilliam Allen Simpson if (unlikely(tcp_secret_primary->expires == 2937*da5c78c8SWilliam Allen Simpson tcp_secret_secondary->expires)) { 2938*da5c78c8SWilliam Allen Simpson struct timespec tv; 2939*da5c78c8SWilliam Allen Simpson 2940*da5c78c8SWilliam Allen Simpson getnstimeofday(&tv); 2941*da5c78c8SWilliam Allen Simpson bakery[COOKIE_DIGEST_WORDS+0] ^= 2942*da5c78c8SWilliam Allen Simpson (u32)tv.tv_nsec; 2943*da5c78c8SWilliam Allen Simpson 2944*da5c78c8SWilliam Allen Simpson tcp_secret_secondary->expires = jiffy 2945*da5c78c8SWilliam Allen Simpson + TCP_SECRET_1MSL 2946*da5c78c8SWilliam Allen Simpson + (0x0f & tcp_cookie_work(bakery, 0)); 2947*da5c78c8SWilliam Allen Simpson } else { 2948*da5c78c8SWilliam Allen Simpson tcp_secret_secondary->expires = jiffy 2949*da5c78c8SWilliam Allen Simpson + TCP_SECRET_LIFE 2950*da5c78c8SWilliam Allen Simpson + (0xff & tcp_cookie_work(bakery, 1)); 2951*da5c78c8SWilliam Allen Simpson tcp_secret_primary->expires = jiffy 2952*da5c78c8SWilliam Allen Simpson + TCP_SECRET_2MSL 2953*da5c78c8SWilliam Allen Simpson + (0x1f & tcp_cookie_work(bakery, 2)); 2954*da5c78c8SWilliam Allen Simpson } 2955*da5c78c8SWilliam Allen Simpson memcpy(&tcp_secret_secondary->secrets[0], 2956*da5c78c8SWilliam Allen Simpson bakery, COOKIE_WORKSPACE_WORDS); 2957*da5c78c8SWilliam Allen Simpson 2958*da5c78c8SWilliam Allen Simpson rcu_assign_pointer(tcp_secret_generating, 2959*da5c78c8SWilliam Allen Simpson tcp_secret_secondary); 2960*da5c78c8SWilliam Allen Simpson rcu_assign_pointer(tcp_secret_retiring, 2961*da5c78c8SWilliam Allen Simpson tcp_secret_primary); 2962*da5c78c8SWilliam Allen Simpson /* 2963*da5c78c8SWilliam Allen Simpson * Neither call_rcu() nor synchronize_rcu() needed. 2964*da5c78c8SWilliam Allen Simpson * Retiring data is not freed. It is replaced after 2965*da5c78c8SWilliam Allen Simpson * further (locked) pointer updates, and a quiet time 2966*da5c78c8SWilliam Allen Simpson * (minimum 1MSL, maximum LIFE - 2MSL). 2967*da5c78c8SWilliam Allen Simpson */ 2968*da5c78c8SWilliam Allen Simpson } 2969*da5c78c8SWilliam Allen Simpson spin_unlock_bh(&tcp_secret_locker); 2970*da5c78c8SWilliam Allen Simpson } else { 2971*da5c78c8SWilliam Allen Simpson rcu_read_lock_bh(); 2972*da5c78c8SWilliam Allen Simpson memcpy(bakery, 2973*da5c78c8SWilliam Allen Simpson &rcu_dereference(tcp_secret_generating)->secrets[0], 2974*da5c78c8SWilliam Allen Simpson COOKIE_WORKSPACE_WORDS); 2975*da5c78c8SWilliam Allen Simpson rcu_read_unlock_bh(); 2976*da5c78c8SWilliam Allen Simpson } 2977*da5c78c8SWilliam Allen Simpson return 0; 2978*da5c78c8SWilliam Allen Simpson } 2979*da5c78c8SWilliam Allen Simpson EXPORT_SYMBOL(tcp_cookie_generator); 2980*da5c78c8SWilliam Allen Simpson 29814ac02babSAndi Kleen void tcp_done(struct sock *sk) 29824ac02babSAndi Kleen { 29834ac02babSAndi Kleen if (sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV) 298463231bddSPavel Emelyanov TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS); 29854ac02babSAndi Kleen 29864ac02babSAndi Kleen tcp_set_state(sk, TCP_CLOSE); 29874ac02babSAndi Kleen tcp_clear_xmit_timers(sk); 29884ac02babSAndi Kleen 29894ac02babSAndi Kleen sk->sk_shutdown = SHUTDOWN_MASK; 29904ac02babSAndi Kleen 29914ac02babSAndi Kleen if (!sock_flag(sk, SOCK_DEAD)) 29924ac02babSAndi Kleen sk->sk_state_change(sk); 29934ac02babSAndi Kleen else 29944ac02babSAndi Kleen inet_csk_destroy_sock(sk); 29954ac02babSAndi Kleen } 29964ac02babSAndi Kleen EXPORT_SYMBOL_GPL(tcp_done); 29974ac02babSAndi Kleen 29985f8ef48dSStephen Hemminger extern struct tcp_congestion_ops tcp_reno; 29991da177e4SLinus Torvalds 30001da177e4SLinus Torvalds static __initdata unsigned long thash_entries; 30011da177e4SLinus Torvalds static int __init set_thash_entries(char *str) 30021da177e4SLinus Torvalds { 30031da177e4SLinus Torvalds if (!str) 30041da177e4SLinus Torvalds return 0; 30051da177e4SLinus Torvalds thash_entries = simple_strtoul(str, &str, 0); 30061da177e4SLinus Torvalds return 1; 30071da177e4SLinus Torvalds } 30081da177e4SLinus Torvalds __setup("thash_entries=", set_thash_entries); 30091da177e4SLinus Torvalds 30101da177e4SLinus Torvalds void __init tcp_init(void) 30111da177e4SLinus Torvalds { 30121da177e4SLinus Torvalds struct sk_buff *skb = NULL; 301357413ebcSMiquel van Smoorenburg unsigned long nr_pages, limit; 30147b4f4b5eSJohn Heffner int order, i, max_share; 3015*da5c78c8SWilliam Allen Simpson unsigned long jiffy = jiffies; 30161da177e4SLinus Torvalds 30171f9e636eSPavel Emelyanov BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb)); 30181da177e4SLinus Torvalds 30191748376bSEric Dumazet percpu_counter_init(&tcp_sockets_allocated, 0); 3020dd24c001SEric Dumazet percpu_counter_init(&tcp_orphan_count, 0); 30216e04e021SArnaldo Carvalho de Melo tcp_hashinfo.bind_bucket_cachep = 30226e04e021SArnaldo Carvalho de Melo kmem_cache_create("tcp_bind_bucket", 30236e04e021SArnaldo Carvalho de Melo sizeof(struct inet_bind_bucket), 0, 302420c2df83SPaul Mundt SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL); 30251da177e4SLinus Torvalds 30261da177e4SLinus Torvalds /* Size and allocate the main established and bind bucket 30271da177e4SLinus Torvalds * hash tables. 30281da177e4SLinus Torvalds * 30291da177e4SLinus Torvalds * The methodology is similar to that of the buffer cache. 30301da177e4SLinus Torvalds */ 30316e04e021SArnaldo Carvalho de Melo tcp_hashinfo.ehash = 30321da177e4SLinus Torvalds alloc_large_system_hash("TCP established", 30330f7ff927SArnaldo Carvalho de Melo sizeof(struct inet_ehash_bucket), 30341da177e4SLinus Torvalds thash_entries, 30354481374cSJan Beulich (totalram_pages >= 128 * 1024) ? 303618955cfcSMike Stroyan 13 : 15, 30379e950efaSJohn Heffner 0, 30381da177e4SLinus Torvalds NULL, 3039f373b53bSEric Dumazet &tcp_hashinfo.ehash_mask, 30400ccfe618SJean Delvare thash_entries ? 0 : 512 * 1024); 3041f373b53bSEric Dumazet for (i = 0; i <= tcp_hashinfo.ehash_mask; i++) { 30423ab5aee7SEric Dumazet INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].chain, i); 30433ab5aee7SEric Dumazet INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].twchain, i); 30441da177e4SLinus Torvalds } 3045230140cfSEric Dumazet if (inet_ehash_locks_alloc(&tcp_hashinfo)) 3046230140cfSEric Dumazet panic("TCP: failed to alloc ehash_locks"); 30476e04e021SArnaldo Carvalho de Melo tcp_hashinfo.bhash = 30481da177e4SLinus Torvalds alloc_large_system_hash("TCP bind", 30490f7ff927SArnaldo Carvalho de Melo sizeof(struct inet_bind_hashbucket), 3050f373b53bSEric Dumazet tcp_hashinfo.ehash_mask + 1, 30514481374cSJan Beulich (totalram_pages >= 128 * 1024) ? 305218955cfcSMike Stroyan 13 : 15, 30539e950efaSJohn Heffner 0, 30546e04e021SArnaldo Carvalho de Melo &tcp_hashinfo.bhash_size, 30551da177e4SLinus Torvalds NULL, 30561da177e4SLinus Torvalds 64 * 1024); 30576e04e021SArnaldo Carvalho de Melo tcp_hashinfo.bhash_size = 1 << tcp_hashinfo.bhash_size; 30586e04e021SArnaldo Carvalho de Melo for (i = 0; i < tcp_hashinfo.bhash_size; i++) { 30596e04e021SArnaldo Carvalho de Melo spin_lock_init(&tcp_hashinfo.bhash[i].lock); 30606e04e021SArnaldo Carvalho de Melo INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain); 30611da177e4SLinus Torvalds } 30621da177e4SLinus Torvalds 30631da177e4SLinus Torvalds /* Try to be a bit smarter and adjust defaults depending 30641da177e4SLinus Torvalds * on available memory. 30651da177e4SLinus Torvalds */ 30661da177e4SLinus Torvalds for (order = 0; ((1 << order) << PAGE_SHIFT) < 30676e04e021SArnaldo Carvalho de Melo (tcp_hashinfo.bhash_size * sizeof(struct inet_bind_hashbucket)); 30681da177e4SLinus Torvalds order++) 30691da177e4SLinus Torvalds ; 3070e7626486SAndi Kleen if (order >= 4) { 3071295ff7edSArnaldo Carvalho de Melo tcp_death_row.sysctl_max_tw_buckets = 180000; 30721da177e4SLinus Torvalds sysctl_tcp_max_orphans = 4096 << (order - 4); 30731da177e4SLinus Torvalds sysctl_max_syn_backlog = 1024; 30741da177e4SLinus Torvalds } else if (order < 3) { 3075295ff7edSArnaldo Carvalho de Melo tcp_death_row.sysctl_max_tw_buckets >>= (3 - order); 30761da177e4SLinus Torvalds sysctl_tcp_max_orphans >>= (3 - order); 30771da177e4SLinus Torvalds sysctl_max_syn_backlog = 128; 30781da177e4SLinus Torvalds } 30791da177e4SLinus Torvalds 308053cdcc04SJohn Heffner /* Set the pressure threshold to be a fraction of global memory that 308153cdcc04SJohn Heffner * is up to 1/2 at 256 MB, decreasing toward zero with the amount of 308253cdcc04SJohn Heffner * memory, with a floor of 128 pages. 308353cdcc04SJohn Heffner */ 308457413ebcSMiquel van Smoorenburg nr_pages = totalram_pages - totalhigh_pages; 308557413ebcSMiquel van Smoorenburg limit = min(nr_pages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT); 308657413ebcSMiquel van Smoorenburg limit = (limit * (nr_pages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11); 308753cdcc04SJohn Heffner limit = max(limit, 128UL); 308853cdcc04SJohn Heffner sysctl_tcp_mem[0] = limit / 4 * 3; 308953cdcc04SJohn Heffner sysctl_tcp_mem[1] = limit; 309052bf376cSJohn Heffner sysctl_tcp_mem[2] = sysctl_tcp_mem[0] * 2; 30911da177e4SLinus Torvalds 309253cdcc04SJohn Heffner /* Set per-socket limits to no more than 1/128 the pressure threshold */ 30937b4f4b5eSJohn Heffner limit = ((unsigned long)sysctl_tcp_mem[1]) << (PAGE_SHIFT - 7); 30947b4f4b5eSJohn Heffner max_share = min(4UL*1024*1024, limit); 30957b4f4b5eSJohn Heffner 30963ab224beSHideo Aoki sysctl_tcp_wmem[0] = SK_MEM_QUANTUM; 30977b4f4b5eSJohn Heffner sysctl_tcp_wmem[1] = 16*1024; 30987b4f4b5eSJohn Heffner sysctl_tcp_wmem[2] = max(64*1024, max_share); 30997b4f4b5eSJohn Heffner 31003ab224beSHideo Aoki sysctl_tcp_rmem[0] = SK_MEM_QUANTUM; 31017b4f4b5eSJohn Heffner sysctl_tcp_rmem[1] = 87380; 31027b4f4b5eSJohn Heffner sysctl_tcp_rmem[2] = max(87380, max_share); 31031da177e4SLinus Torvalds 31041da177e4SLinus Torvalds printk(KERN_INFO "TCP: Hash tables configured " 3105f373b53bSEric Dumazet "(established %u bind %u)\n", 3106f373b53bSEric Dumazet tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size); 3107317a76f9SStephen Hemminger 3108317a76f9SStephen Hemminger tcp_register_congestion_control(&tcp_reno); 3109*da5c78c8SWilliam Allen Simpson 3110*da5c78c8SWilliam Allen Simpson memset(&tcp_secret_one.secrets[0], 0, sizeof(tcp_secret_one.secrets)); 3111*da5c78c8SWilliam Allen Simpson memset(&tcp_secret_two.secrets[0], 0, sizeof(tcp_secret_two.secrets)); 3112*da5c78c8SWilliam Allen Simpson tcp_secret_one.expires = jiffy; /* past due */ 3113*da5c78c8SWilliam Allen Simpson tcp_secret_two.expires = jiffy; /* past due */ 3114*da5c78c8SWilliam Allen Simpson tcp_secret_generating = &tcp_secret_one; 3115*da5c78c8SWilliam Allen Simpson tcp_secret_primary = &tcp_secret_one; 3116*da5c78c8SWilliam Allen Simpson tcp_secret_retiring = &tcp_secret_two; 3117*da5c78c8SWilliam Allen Simpson tcp_secret_secondary = &tcp_secret_two; 31181da177e4SLinus Torvalds } 31191da177e4SLinus Torvalds 31201da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_close); 31211da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_disconnect); 31221da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_getsockopt); 31231da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_ioctl); 31241da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_poll); 31251da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_read_sock); 31261da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_recvmsg); 31271da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sendmsg); 31289c55e01cSJens Axboe EXPORT_SYMBOL(tcp_splice_read); 31291da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sendpage); 31301da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_setsockopt); 31311da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_shutdown); 3132