xref: /linux/net/ipv4/tcp.c (revision 547b792cac0a038b9dbf958d3c120df3740b5572)
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>
2671da177e4SLinus Torvalds 
2681da177e4SLinus Torvalds #include <net/icmp.h>
2691da177e4SLinus Torvalds #include <net/tcp.h>
2701da177e4SLinus Torvalds #include <net/xfrm.h>
2711da177e4SLinus Torvalds #include <net/ip.h>
2721a2449a8SChris Leech #include <net/netdma.h>
2739c55e01cSJens Axboe #include <net/sock.h>
2741da177e4SLinus Torvalds 
2751da177e4SLinus Torvalds #include <asm/uaccess.h>
2761da177e4SLinus Torvalds #include <asm/ioctls.h>
2771da177e4SLinus Torvalds 
278ab32ea5dSBrian Haley int sysctl_tcp_fin_timeout __read_mostly = TCP_FIN_TIMEOUT;
2791da177e4SLinus Torvalds 
2801da177e4SLinus Torvalds atomic_t tcp_orphan_count = ATOMIC_INIT(0);
2811da177e4SLinus Torvalds 
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 atomic_t tcp_sockets_allocated;	/* Current number of TCP sockets. */
2941da177e4SLinus Torvalds 
2951da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_memory_allocated);
2961da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sockets_allocated);
2971da177e4SLinus Torvalds 
2981da177e4SLinus Torvalds /*
2999c55e01cSJens Axboe  * TCP splice context
3009c55e01cSJens Axboe  */
3019c55e01cSJens Axboe struct tcp_splice_state {
3029c55e01cSJens Axboe 	struct pipe_inode_info *pipe;
3039c55e01cSJens Axboe 	size_t len;
3049c55e01cSJens Axboe 	unsigned int flags;
3059c55e01cSJens Axboe };
3069c55e01cSJens Axboe 
3079c55e01cSJens Axboe /*
3081da177e4SLinus Torvalds  * Pressure flag: try to collapse.
3091da177e4SLinus Torvalds  * Technical note: it is used by multiple contexts non atomically.
3103ab224beSHideo Aoki  * All the __sk_mem_schedule() is of this nature: accounting
3111da177e4SLinus Torvalds  * is strict, actions are advisory and have some latency.
3121da177e4SLinus Torvalds  */
3134103f8cdSEric Dumazet int tcp_memory_pressure __read_mostly;
3141da177e4SLinus Torvalds 
3151da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_memory_pressure);
3161da177e4SLinus Torvalds 
3175c52ba17SPavel Emelyanov void tcp_enter_memory_pressure(struct sock *sk)
3181da177e4SLinus Torvalds {
3191da177e4SLinus Torvalds 	if (!tcp_memory_pressure) {
3204e673444SPavel Emelyanov 		NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMEMORYPRESSURES);
3211da177e4SLinus Torvalds 		tcp_memory_pressure = 1;
3221da177e4SLinus Torvalds 	}
3231da177e4SLinus Torvalds }
3241da177e4SLinus Torvalds 
3251da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_enter_memory_pressure);
3261da177e4SLinus Torvalds 
3271da177e4SLinus Torvalds /*
3281da177e4SLinus Torvalds  *	Wait for a TCP event.
3291da177e4SLinus Torvalds  *
3301da177e4SLinus Torvalds  *	Note that we don't need to lock the socket, as the upper poll layers
3311da177e4SLinus Torvalds  *	take care of normal races (between the test and the event) and we don't
3321da177e4SLinus Torvalds  *	go look at any of the socket buffers directly.
3331da177e4SLinus Torvalds  */
3341da177e4SLinus Torvalds unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
3351da177e4SLinus Torvalds {
3361da177e4SLinus Torvalds 	unsigned int mask;
3371da177e4SLinus Torvalds 	struct sock *sk = sock->sk;
3381da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
3391da177e4SLinus Torvalds 
3401da177e4SLinus Torvalds 	poll_wait(file, sk->sk_sleep, wait);
3411da177e4SLinus Torvalds 	if (sk->sk_state == TCP_LISTEN)
342dc40c7bcSArnaldo Carvalho de Melo 		return inet_csk_listen_poll(sk);
3431da177e4SLinus Torvalds 
3441da177e4SLinus Torvalds 	/* Socket is not locked. We are protected from async events
34570efce27SWill Newton 	 * by poll logic and correct handling of state changes
34670efce27SWill Newton 	 * made by other threads is impossible in any case.
3471da177e4SLinus Torvalds 	 */
3481da177e4SLinus Torvalds 
3491da177e4SLinus Torvalds 	mask = 0;
3501da177e4SLinus Torvalds 	if (sk->sk_err)
3511da177e4SLinus Torvalds 		mask = POLLERR;
3521da177e4SLinus Torvalds 
3531da177e4SLinus Torvalds 	/*
3541da177e4SLinus Torvalds 	 * POLLHUP is certainly not done right. But poll() doesn't
3551da177e4SLinus Torvalds 	 * have a notion of HUP in just one direction, and for a
3561da177e4SLinus Torvalds 	 * socket the read side is more interesting.
3571da177e4SLinus Torvalds 	 *
3581da177e4SLinus Torvalds 	 * Some poll() documentation says that POLLHUP is incompatible
3591da177e4SLinus Torvalds 	 * with the POLLOUT/POLLWR flags, so somebody should check this
3601da177e4SLinus Torvalds 	 * all. But careful, it tends to be safer to return too many
3611da177e4SLinus Torvalds 	 * bits than too few, and you can easily break real applications
3621da177e4SLinus Torvalds 	 * if you don't tell them that something has hung up!
3631da177e4SLinus Torvalds 	 *
3641da177e4SLinus Torvalds 	 * Check-me.
3651da177e4SLinus Torvalds 	 *
3661da177e4SLinus Torvalds 	 * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and
3671da177e4SLinus Torvalds 	 * our fs/select.c). It means that after we received EOF,
3681da177e4SLinus Torvalds 	 * poll always returns immediately, making impossible poll() on write()
3691da177e4SLinus Torvalds 	 * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP
3701da177e4SLinus Torvalds 	 * if and only if shutdown has been made in both directions.
3711da177e4SLinus Torvalds 	 * Actually, it is interesting to look how Solaris and DUX
37270efce27SWill Newton 	 * solve this dilemma. I would prefer, if POLLHUP were maskable,
3731da177e4SLinus Torvalds 	 * then we could set it on SND_SHUTDOWN. BTW examples given
3741da177e4SLinus Torvalds 	 * in Stevens' books assume exactly this behaviour, it explains
37570efce27SWill Newton 	 * why POLLHUP is incompatible with POLLOUT.	--ANK
3761da177e4SLinus Torvalds 	 *
3771da177e4SLinus Torvalds 	 * NOTE. Check for TCP_CLOSE is added. The goal is to prevent
3781da177e4SLinus Torvalds 	 * blocking on fresh not-connected or disconnected socket. --ANK
3791da177e4SLinus Torvalds 	 */
3801da177e4SLinus Torvalds 	if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == TCP_CLOSE)
3811da177e4SLinus Torvalds 		mask |= POLLHUP;
3821da177e4SLinus Torvalds 	if (sk->sk_shutdown & RCV_SHUTDOWN)
383f348d70aSDavide Libenzi 		mask |= POLLIN | POLLRDNORM | POLLRDHUP;
3841da177e4SLinus Torvalds 
3851da177e4SLinus Torvalds 	/* Connected? */
3861da177e4SLinus Torvalds 	if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV)) {
3871da177e4SLinus Torvalds 		/* Potential race condition. If read of tp below will
3881da177e4SLinus Torvalds 		 * escape above sk->sk_state, we can be illegally awaken
3891da177e4SLinus Torvalds 		 * in SYN_* states. */
3901da177e4SLinus Torvalds 		if ((tp->rcv_nxt != tp->copied_seq) &&
3911da177e4SLinus Torvalds 		    (tp->urg_seq != tp->copied_seq ||
3921da177e4SLinus Torvalds 		     tp->rcv_nxt != tp->copied_seq + 1 ||
3931da177e4SLinus Torvalds 		     sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data))
3941da177e4SLinus Torvalds 			mask |= POLLIN | POLLRDNORM;
3951da177e4SLinus Torvalds 
3961da177e4SLinus Torvalds 		if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
3971da177e4SLinus Torvalds 			if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
3981da177e4SLinus Torvalds 				mask |= POLLOUT | POLLWRNORM;
3991da177e4SLinus Torvalds 			} else {  /* send SIGIO later */
4001da177e4SLinus Torvalds 				set_bit(SOCK_ASYNC_NOSPACE,
4011da177e4SLinus Torvalds 					&sk->sk_socket->flags);
4021da177e4SLinus Torvalds 				set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
4031da177e4SLinus Torvalds 
4041da177e4SLinus Torvalds 				/* Race breaker. If space is freed after
4051da177e4SLinus Torvalds 				 * wspace test but before the flags are set,
4061da177e4SLinus Torvalds 				 * IO signal will be lost.
4071da177e4SLinus Torvalds 				 */
4081da177e4SLinus Torvalds 				if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
4091da177e4SLinus Torvalds 					mask |= POLLOUT | POLLWRNORM;
4101da177e4SLinus Torvalds 			}
4111da177e4SLinus Torvalds 		}
4121da177e4SLinus Torvalds 
4131da177e4SLinus Torvalds 		if (tp->urg_data & TCP_URG_VALID)
4141da177e4SLinus Torvalds 			mask |= POLLPRI;
4151da177e4SLinus Torvalds 	}
4161da177e4SLinus Torvalds 	return mask;
4171da177e4SLinus Torvalds }
4181da177e4SLinus Torvalds 
4191da177e4SLinus Torvalds int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
4201da177e4SLinus Torvalds {
4211da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
4221da177e4SLinus Torvalds 	int answ;
4231da177e4SLinus Torvalds 
4241da177e4SLinus Torvalds 	switch (cmd) {
4251da177e4SLinus Torvalds 	case SIOCINQ:
4261da177e4SLinus Torvalds 		if (sk->sk_state == TCP_LISTEN)
4271da177e4SLinus Torvalds 			return -EINVAL;
4281da177e4SLinus Torvalds 
4291da177e4SLinus Torvalds 		lock_sock(sk);
4301da177e4SLinus Torvalds 		if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
4311da177e4SLinus Torvalds 			answ = 0;
4321da177e4SLinus Torvalds 		else if (sock_flag(sk, SOCK_URGINLINE) ||
4331da177e4SLinus Torvalds 			 !tp->urg_data ||
4341da177e4SLinus Torvalds 			 before(tp->urg_seq, tp->copied_seq) ||
4351da177e4SLinus Torvalds 			 !before(tp->urg_seq, tp->rcv_nxt)) {
4361da177e4SLinus Torvalds 			answ = tp->rcv_nxt - tp->copied_seq;
4371da177e4SLinus Torvalds 
4381da177e4SLinus Torvalds 			/* Subtract 1, if FIN is in queue. */
4391da177e4SLinus Torvalds 			if (answ && !skb_queue_empty(&sk->sk_receive_queue))
4401da177e4SLinus Torvalds 				answ -=
441aa8223c7SArnaldo Carvalho de Melo 		       tcp_hdr((struct sk_buff *)sk->sk_receive_queue.prev)->fin;
4421da177e4SLinus Torvalds 		} else
4431da177e4SLinus Torvalds 			answ = tp->urg_seq - tp->copied_seq;
4441da177e4SLinus Torvalds 		release_sock(sk);
4451da177e4SLinus Torvalds 		break;
4461da177e4SLinus Torvalds 	case SIOCATMARK:
4471da177e4SLinus Torvalds 		answ = tp->urg_data && tp->urg_seq == tp->copied_seq;
4481da177e4SLinus Torvalds 		break;
4491da177e4SLinus Torvalds 	case SIOCOUTQ:
4501da177e4SLinus Torvalds 		if (sk->sk_state == TCP_LISTEN)
4511da177e4SLinus Torvalds 			return -EINVAL;
4521da177e4SLinus Torvalds 
4531da177e4SLinus Torvalds 		if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
4541da177e4SLinus Torvalds 			answ = 0;
4551da177e4SLinus Torvalds 		else
4561da177e4SLinus Torvalds 			answ = tp->write_seq - tp->snd_una;
4571da177e4SLinus Torvalds 		break;
4581da177e4SLinus Torvalds 	default:
4591da177e4SLinus Torvalds 		return -ENOIOCTLCMD;
4603ff50b79SStephen Hemminger 	}
4611da177e4SLinus Torvalds 
4621da177e4SLinus Torvalds 	return put_user(answ, (int __user *)arg);
4631da177e4SLinus Torvalds }
4641da177e4SLinus Torvalds 
4651da177e4SLinus Torvalds static inline void tcp_mark_push(struct tcp_sock *tp, struct sk_buff *skb)
4661da177e4SLinus Torvalds {
4671da177e4SLinus Torvalds 	TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH;
4681da177e4SLinus Torvalds 	tp->pushed_seq = tp->write_seq;
4691da177e4SLinus Torvalds }
4701da177e4SLinus Torvalds 
4711da177e4SLinus Torvalds static inline int forced_push(struct tcp_sock *tp)
4721da177e4SLinus Torvalds {
4731da177e4SLinus Torvalds 	return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
4741da177e4SLinus Torvalds }
4751da177e4SLinus Torvalds 
4769e412ba7SIlpo Järvinen static inline void skb_entail(struct sock *sk, struct sk_buff *skb)
4771da177e4SLinus Torvalds {
4789e412ba7SIlpo Järvinen 	struct tcp_sock *tp = tcp_sk(sk);
479352d4800SArnaldo Carvalho de Melo 	struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
480352d4800SArnaldo Carvalho de Melo 
4811da177e4SLinus Torvalds 	skb->csum    = 0;
482352d4800SArnaldo Carvalho de Melo 	tcb->seq     = tcb->end_seq = tp->write_seq;
483352d4800SArnaldo Carvalho de Melo 	tcb->flags   = TCPCB_FLAG_ACK;
484352d4800SArnaldo Carvalho de Melo 	tcb->sacked  = 0;
4851da177e4SLinus Torvalds 	skb_header_release(skb);
486fe067e8aSDavid S. Miller 	tcp_add_write_queue_tail(sk, skb);
4873ab224beSHideo Aoki 	sk->sk_wmem_queued += skb->truesize;
4883ab224beSHideo Aoki 	sk_mem_charge(sk, skb->truesize);
48989ebd197SDavid S. Miller 	if (tp->nonagle & TCP_NAGLE_PUSH)
4901da177e4SLinus Torvalds 		tp->nonagle &= ~TCP_NAGLE_PUSH;
4911da177e4SLinus Torvalds }
4921da177e4SLinus Torvalds 
4931da177e4SLinus Torvalds static inline void tcp_mark_urg(struct tcp_sock *tp, int flags,
4941da177e4SLinus Torvalds 				struct sk_buff *skb)
4951da177e4SLinus Torvalds {
4961da177e4SLinus Torvalds 	if (flags & MSG_OOB) {
4971da177e4SLinus Torvalds 		tp->urg_mode = 1;
4981da177e4SLinus Torvalds 		tp->snd_up = tp->write_seq;
4991da177e4SLinus Torvalds 	}
5001da177e4SLinus Torvalds }
5011da177e4SLinus Torvalds 
5029e412ba7SIlpo Järvinen static inline void tcp_push(struct sock *sk, int flags, int mss_now,
5039e412ba7SIlpo Järvinen 			    int nonagle)
5041da177e4SLinus Torvalds {
5059e412ba7SIlpo Järvinen 	struct tcp_sock *tp = tcp_sk(sk);
5069e412ba7SIlpo Järvinen 
507fe067e8aSDavid S. Miller 	if (tcp_send_head(sk)) {
508fe067e8aSDavid S. Miller 		struct sk_buff *skb = tcp_write_queue_tail(sk);
5091da177e4SLinus Torvalds 		if (!(flags & MSG_MORE) || forced_push(tp))
5101da177e4SLinus Torvalds 			tcp_mark_push(tp, skb);
5111da177e4SLinus Torvalds 		tcp_mark_urg(tp, flags, skb);
5129e412ba7SIlpo Järvinen 		__tcp_push_pending_frames(sk, mss_now,
5131da177e4SLinus Torvalds 					  (flags & MSG_MORE) ? TCP_NAGLE_CORK : nonagle);
5141da177e4SLinus Torvalds 	}
5151da177e4SLinus Torvalds }
5161da177e4SLinus Torvalds 
5176ff7751dSAdrian Bunk static int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
5189c55e01cSJens Axboe 				unsigned int offset, size_t len)
5199c55e01cSJens Axboe {
5209c55e01cSJens Axboe 	struct tcp_splice_state *tss = rd_desc->arg.data;
5219c55e01cSJens Axboe 
5229c55e01cSJens Axboe 	return skb_splice_bits(skb, offset, tss->pipe, tss->len, tss->flags);
5239c55e01cSJens Axboe }
5249c55e01cSJens Axboe 
5259c55e01cSJens Axboe static int __tcp_splice_read(struct sock *sk, struct tcp_splice_state *tss)
5269c55e01cSJens Axboe {
5279c55e01cSJens Axboe 	/* Store TCP splice context information in read_descriptor_t. */
5289c55e01cSJens Axboe 	read_descriptor_t rd_desc = {
5299c55e01cSJens Axboe 		.arg.data = tss,
5309c55e01cSJens Axboe 	};
5319c55e01cSJens Axboe 
5329c55e01cSJens Axboe 	return tcp_read_sock(sk, &rd_desc, tcp_splice_data_recv);
5339c55e01cSJens Axboe }
5349c55e01cSJens Axboe 
5359c55e01cSJens Axboe /**
5369c55e01cSJens Axboe  *  tcp_splice_read - splice data from TCP socket to a pipe
5379c55e01cSJens Axboe  * @sock:	socket to splice from
5389c55e01cSJens Axboe  * @ppos:	position (not valid)
5399c55e01cSJens Axboe  * @pipe:	pipe to splice to
5409c55e01cSJens Axboe  * @len:	number of bytes to splice
5419c55e01cSJens Axboe  * @flags:	splice modifier flags
5429c55e01cSJens Axboe  *
5439c55e01cSJens Axboe  * Description:
5449c55e01cSJens Axboe  *    Will read pages from given socket and fill them into a pipe.
5459c55e01cSJens Axboe  *
5469c55e01cSJens Axboe  **/
5479c55e01cSJens Axboe ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos,
5489c55e01cSJens Axboe 			struct pipe_inode_info *pipe, size_t len,
5499c55e01cSJens Axboe 			unsigned int flags)
5509c55e01cSJens Axboe {
5519c55e01cSJens Axboe 	struct sock *sk = sock->sk;
5529c55e01cSJens Axboe 	struct tcp_splice_state tss = {
5539c55e01cSJens Axboe 		.pipe = pipe,
5549c55e01cSJens Axboe 		.len = len,
5559c55e01cSJens Axboe 		.flags = flags,
5569c55e01cSJens Axboe 	};
5579c55e01cSJens Axboe 	long timeo;
5589c55e01cSJens Axboe 	ssize_t spliced;
5599c55e01cSJens Axboe 	int ret;
5609c55e01cSJens Axboe 
5619c55e01cSJens Axboe 	/*
5629c55e01cSJens Axboe 	 * We can't seek on a socket input
5639c55e01cSJens Axboe 	 */
5649c55e01cSJens Axboe 	if (unlikely(*ppos))
5659c55e01cSJens Axboe 		return -ESPIPE;
5669c55e01cSJens Axboe 
5679c55e01cSJens Axboe 	ret = spliced = 0;
5689c55e01cSJens Axboe 
5699c55e01cSJens Axboe 	lock_sock(sk);
5709c55e01cSJens Axboe 
5719c55e01cSJens Axboe 	timeo = sock_rcvtimeo(sk, flags & SPLICE_F_NONBLOCK);
5729c55e01cSJens Axboe 	while (tss.len) {
5739c55e01cSJens Axboe 		ret = __tcp_splice_read(sk, &tss);
5749c55e01cSJens Axboe 		if (ret < 0)
5759c55e01cSJens Axboe 			break;
5769c55e01cSJens Axboe 		else if (!ret) {
5779c55e01cSJens Axboe 			if (spliced)
5789c55e01cSJens Axboe 				break;
5799c55e01cSJens Axboe 			if (flags & SPLICE_F_NONBLOCK) {
5809c55e01cSJens Axboe 				ret = -EAGAIN;
5819c55e01cSJens Axboe 				break;
5829c55e01cSJens Axboe 			}
5839c55e01cSJens Axboe 			if (sock_flag(sk, SOCK_DONE))
5849c55e01cSJens Axboe 				break;
5859c55e01cSJens Axboe 			if (sk->sk_err) {
5869c55e01cSJens Axboe 				ret = sock_error(sk);
5879c55e01cSJens Axboe 				break;
5889c55e01cSJens Axboe 			}
5899c55e01cSJens Axboe 			if (sk->sk_shutdown & RCV_SHUTDOWN)
5909c55e01cSJens Axboe 				break;
5919c55e01cSJens Axboe 			if (sk->sk_state == TCP_CLOSE) {
5929c55e01cSJens Axboe 				/*
5939c55e01cSJens Axboe 				 * This occurs when user tries to read
5949c55e01cSJens Axboe 				 * from never connected socket.
5959c55e01cSJens Axboe 				 */
5969c55e01cSJens Axboe 				if (!sock_flag(sk, SOCK_DONE))
5979c55e01cSJens Axboe 					ret = -ENOTCONN;
5989c55e01cSJens Axboe 				break;
5999c55e01cSJens Axboe 			}
6009c55e01cSJens Axboe 			if (!timeo) {
6019c55e01cSJens Axboe 				ret = -EAGAIN;
6029c55e01cSJens Axboe 				break;
6039c55e01cSJens Axboe 			}
6049c55e01cSJens Axboe 			sk_wait_data(sk, &timeo);
6059c55e01cSJens Axboe 			if (signal_pending(current)) {
6069c55e01cSJens Axboe 				ret = sock_intr_errno(timeo);
6079c55e01cSJens Axboe 				break;
6089c55e01cSJens Axboe 			}
6099c55e01cSJens Axboe 			continue;
6109c55e01cSJens Axboe 		}
6119c55e01cSJens Axboe 		tss.len -= ret;
6129c55e01cSJens Axboe 		spliced += ret;
6139c55e01cSJens Axboe 
6149c55e01cSJens Axboe 		release_sock(sk);
6159c55e01cSJens Axboe 		lock_sock(sk);
6169c55e01cSJens Axboe 
6179c55e01cSJens Axboe 		if (sk->sk_err || sk->sk_state == TCP_CLOSE ||
6189c55e01cSJens Axboe 		    (sk->sk_shutdown & RCV_SHUTDOWN) || !timeo ||
6199c55e01cSJens Axboe 		    signal_pending(current))
6209c55e01cSJens Axboe 			break;
6219c55e01cSJens Axboe 	}
6229c55e01cSJens Axboe 
6239c55e01cSJens Axboe 	release_sock(sk);
6249c55e01cSJens Axboe 
6259c55e01cSJens Axboe 	if (spliced)
6269c55e01cSJens Axboe 		return spliced;
6279c55e01cSJens Axboe 
6289c55e01cSJens Axboe 	return ret;
6299c55e01cSJens Axboe }
6309c55e01cSJens Axboe 
631df97c708SPavel Emelyanov struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp)
632f561d0f2SPavel Emelyanov {
633f561d0f2SPavel Emelyanov 	struct sk_buff *skb;
634f561d0f2SPavel Emelyanov 
635f561d0f2SPavel Emelyanov 	/* The TCP header must be at least 32-bit aligned.  */
636f561d0f2SPavel Emelyanov 	size = ALIGN(size, 4);
637f561d0f2SPavel Emelyanov 
638f561d0f2SPavel Emelyanov 	skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp);
639f561d0f2SPavel Emelyanov 	if (skb) {
6403ab224beSHideo Aoki 		if (sk_wmem_schedule(sk, skb->truesize)) {
641f561d0f2SPavel Emelyanov 			/*
642f561d0f2SPavel Emelyanov 			 * Make sure that we have exactly size bytes
643f561d0f2SPavel Emelyanov 			 * available to the caller, no more, no less.
644f561d0f2SPavel Emelyanov 			 */
645f561d0f2SPavel Emelyanov 			skb_reserve(skb, skb_tailroom(skb) - size);
646f561d0f2SPavel Emelyanov 			return skb;
647f561d0f2SPavel Emelyanov 		}
648f561d0f2SPavel Emelyanov 		__kfree_skb(skb);
649f561d0f2SPavel Emelyanov 	} else {
6505c52ba17SPavel Emelyanov 		sk->sk_prot->enter_memory_pressure(sk);
651f561d0f2SPavel Emelyanov 		sk_stream_moderate_sndbuf(sk);
652f561d0f2SPavel Emelyanov 	}
653f561d0f2SPavel Emelyanov 	return NULL;
654f561d0f2SPavel Emelyanov }
655f561d0f2SPavel Emelyanov 
6561da177e4SLinus Torvalds static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset,
6571da177e4SLinus Torvalds 			 size_t psize, int flags)
6581da177e4SLinus Torvalds {
6591da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
660c1b4a7e6SDavid S. Miller 	int mss_now, size_goal;
6611da177e4SLinus Torvalds 	int err;
6621da177e4SLinus Torvalds 	ssize_t copied;
6631da177e4SLinus Torvalds 	long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
6641da177e4SLinus Torvalds 
6651da177e4SLinus Torvalds 	/* Wait for a connection to finish. */
6661da177e4SLinus Torvalds 	if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
6671da177e4SLinus Torvalds 		if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
6681da177e4SLinus Torvalds 			goto out_err;
6691da177e4SLinus Torvalds 
6701da177e4SLinus Torvalds 	clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
6711da177e4SLinus Torvalds 
6721da177e4SLinus Torvalds 	mss_now = tcp_current_mss(sk, !(flags&MSG_OOB));
673c1b4a7e6SDavid S. Miller 	size_goal = tp->xmit_size_goal;
6741da177e4SLinus Torvalds 	copied = 0;
6751da177e4SLinus Torvalds 
6761da177e4SLinus Torvalds 	err = -EPIPE;
6771da177e4SLinus Torvalds 	if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
6781da177e4SLinus Torvalds 		goto do_error;
6791da177e4SLinus Torvalds 
6801da177e4SLinus Torvalds 	while (psize > 0) {
681fe067e8aSDavid S. Miller 		struct sk_buff *skb = tcp_write_queue_tail(sk);
6821da177e4SLinus Torvalds 		struct page *page = pages[poffset / PAGE_SIZE];
6831da177e4SLinus Torvalds 		int copy, i, can_coalesce;
6841da177e4SLinus Torvalds 		int offset = poffset % PAGE_SIZE;
6851da177e4SLinus Torvalds 		int size = min_t(size_t, psize, PAGE_SIZE - offset);
6861da177e4SLinus Torvalds 
687fe067e8aSDavid S. Miller 		if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) {
6881da177e4SLinus Torvalds new_segment:
6891da177e4SLinus Torvalds 			if (!sk_stream_memory_free(sk))
6901da177e4SLinus Torvalds 				goto wait_for_sndbuf;
6911da177e4SLinus Torvalds 
692df97c708SPavel Emelyanov 			skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
6931da177e4SLinus Torvalds 			if (!skb)
6941da177e4SLinus Torvalds 				goto wait_for_memory;
6951da177e4SLinus Torvalds 
6969e412ba7SIlpo Järvinen 			skb_entail(sk, skb);
697c1b4a7e6SDavid S. Miller 			copy = size_goal;
6981da177e4SLinus Torvalds 		}
6991da177e4SLinus Torvalds 
7001da177e4SLinus Torvalds 		if (copy > size)
7011da177e4SLinus Torvalds 			copy = size;
7021da177e4SLinus Torvalds 
7031da177e4SLinus Torvalds 		i = skb_shinfo(skb)->nr_frags;
7041da177e4SLinus Torvalds 		can_coalesce = skb_can_coalesce(skb, i, page, offset);
7051da177e4SLinus Torvalds 		if (!can_coalesce && i >= MAX_SKB_FRAGS) {
7061da177e4SLinus Torvalds 			tcp_mark_push(tp, skb);
7071da177e4SLinus Torvalds 			goto new_segment;
7081da177e4SLinus Torvalds 		}
7093ab224beSHideo Aoki 		if (!sk_wmem_schedule(sk, copy))
7101da177e4SLinus Torvalds 			goto wait_for_memory;
7111da177e4SLinus Torvalds 
7121da177e4SLinus Torvalds 		if (can_coalesce) {
7131da177e4SLinus Torvalds 			skb_shinfo(skb)->frags[i - 1].size += copy;
7141da177e4SLinus Torvalds 		} else {
7151da177e4SLinus Torvalds 			get_page(page);
7161da177e4SLinus Torvalds 			skb_fill_page_desc(skb, i, page, offset, copy);
7171da177e4SLinus Torvalds 		}
7181da177e4SLinus Torvalds 
7191da177e4SLinus Torvalds 		skb->len += copy;
7201da177e4SLinus Torvalds 		skb->data_len += copy;
7211da177e4SLinus Torvalds 		skb->truesize += copy;
7221da177e4SLinus Torvalds 		sk->sk_wmem_queued += copy;
7233ab224beSHideo Aoki 		sk_mem_charge(sk, copy);
72484fa7933SPatrick McHardy 		skb->ip_summed = CHECKSUM_PARTIAL;
7251da177e4SLinus Torvalds 		tp->write_seq += copy;
7261da177e4SLinus Torvalds 		TCP_SKB_CB(skb)->end_seq += copy;
7277967168cSHerbert Xu 		skb_shinfo(skb)->gso_segs = 0;
7281da177e4SLinus Torvalds 
7291da177e4SLinus Torvalds 		if (!copied)
7301da177e4SLinus Torvalds 			TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH;
7311da177e4SLinus Torvalds 
7321da177e4SLinus Torvalds 		copied += copy;
7331da177e4SLinus Torvalds 		poffset += copy;
7341da177e4SLinus Torvalds 		if (!(psize -= copy))
7351da177e4SLinus Torvalds 			goto out;
7361da177e4SLinus Torvalds 
73769d15067SHerbert Xu 		if (skb->len < size_goal || (flags & MSG_OOB))
7381da177e4SLinus Torvalds 			continue;
7391da177e4SLinus Torvalds 
7401da177e4SLinus Torvalds 		if (forced_push(tp)) {
7411da177e4SLinus Torvalds 			tcp_mark_push(tp, skb);
7429e412ba7SIlpo Järvinen 			__tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
743fe067e8aSDavid S. Miller 		} else if (skb == tcp_send_head(sk))
7441da177e4SLinus Torvalds 			tcp_push_one(sk, mss_now);
7451da177e4SLinus Torvalds 		continue;
7461da177e4SLinus Torvalds 
7471da177e4SLinus Torvalds wait_for_sndbuf:
7481da177e4SLinus Torvalds 		set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
7491da177e4SLinus Torvalds wait_for_memory:
7501da177e4SLinus Torvalds 		if (copied)
7519e412ba7SIlpo Järvinen 			tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
7521da177e4SLinus Torvalds 
7531da177e4SLinus Torvalds 		if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
7541da177e4SLinus Torvalds 			goto do_error;
7551da177e4SLinus Torvalds 
7561da177e4SLinus Torvalds 		mss_now = tcp_current_mss(sk, !(flags&MSG_OOB));
757c1b4a7e6SDavid S. Miller 		size_goal = tp->xmit_size_goal;
7581da177e4SLinus Torvalds 	}
7591da177e4SLinus Torvalds 
7601da177e4SLinus Torvalds out:
7611da177e4SLinus Torvalds 	if (copied)
7629e412ba7SIlpo Järvinen 		tcp_push(sk, flags, mss_now, tp->nonagle);
7631da177e4SLinus Torvalds 	return copied;
7641da177e4SLinus Torvalds 
7651da177e4SLinus Torvalds do_error:
7661da177e4SLinus Torvalds 	if (copied)
7671da177e4SLinus Torvalds 		goto out;
7681da177e4SLinus Torvalds out_err:
7691da177e4SLinus Torvalds 	return sk_stream_error(sk, flags, err);
7701da177e4SLinus Torvalds }
7711da177e4SLinus Torvalds 
7721da177e4SLinus Torvalds ssize_t tcp_sendpage(struct socket *sock, struct page *page, int offset,
7731da177e4SLinus Torvalds 		     size_t size, int flags)
7741da177e4SLinus Torvalds {
7751da177e4SLinus Torvalds 	ssize_t res;
7761da177e4SLinus Torvalds 	struct sock *sk = sock->sk;
7771da177e4SLinus Torvalds 
7781da177e4SLinus Torvalds 	if (!(sk->sk_route_caps & NETIF_F_SG) ||
7798648b305SHerbert Xu 	    !(sk->sk_route_caps & NETIF_F_ALL_CSUM))
7801da177e4SLinus Torvalds 		return sock_no_sendpage(sock, page, offset, size, flags);
7811da177e4SLinus Torvalds 
7821da177e4SLinus Torvalds 	lock_sock(sk);
7831da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
7841da177e4SLinus Torvalds 	res = do_tcp_sendpages(sk, &page, offset, size, flags);
7851da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
7861da177e4SLinus Torvalds 	release_sock(sk);
7871da177e4SLinus Torvalds 	return res;
7881da177e4SLinus Torvalds }
7891da177e4SLinus Torvalds 
7901da177e4SLinus Torvalds #define TCP_PAGE(sk)	(sk->sk_sndmsg_page)
7911da177e4SLinus Torvalds #define TCP_OFF(sk)	(sk->sk_sndmsg_off)
7921da177e4SLinus Torvalds 
7939e412ba7SIlpo Järvinen static inline int select_size(struct sock *sk)
7941da177e4SLinus Torvalds {
7959e412ba7SIlpo Järvinen 	struct tcp_sock *tp = tcp_sk(sk);
796c1b4a7e6SDavid S. Miller 	int tmp = tp->mss_cache;
7971da177e4SLinus Torvalds 
798b4e26f5eSDavid S. Miller 	if (sk->sk_route_caps & NETIF_F_SG) {
799bcd76111SHerbert Xu 		if (sk_can_gso(sk))
800c65f7f00SDavid S. Miller 			tmp = 0;
801b4e26f5eSDavid S. Miller 		else {
802b4e26f5eSDavid S. Miller 			int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
803b4e26f5eSDavid S. Miller 
804b4e26f5eSDavid S. Miller 			if (tmp >= pgbreak &&
805b4e26f5eSDavid S. Miller 			    tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE)
806b4e26f5eSDavid S. Miller 				tmp = pgbreak;
807b4e26f5eSDavid S. Miller 		}
808b4e26f5eSDavid S. Miller 	}
8091da177e4SLinus Torvalds 
8101da177e4SLinus Torvalds 	return tmp;
8111da177e4SLinus Torvalds }
8121da177e4SLinus Torvalds 
8133516ffb0SDavid S. Miller int tcp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
8141da177e4SLinus Torvalds 		size_t size)
8151da177e4SLinus Torvalds {
8163516ffb0SDavid S. Miller 	struct sock *sk = sock->sk;
8171da177e4SLinus Torvalds 	struct iovec *iov;
8181da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
8191da177e4SLinus Torvalds 	struct sk_buff *skb;
8201da177e4SLinus Torvalds 	int iovlen, flags;
821c1b4a7e6SDavid S. Miller 	int mss_now, size_goal;
8221da177e4SLinus Torvalds 	int err, copied;
8231da177e4SLinus Torvalds 	long timeo;
8241da177e4SLinus Torvalds 
8251da177e4SLinus Torvalds 	lock_sock(sk);
8261da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
8271da177e4SLinus Torvalds 
8281da177e4SLinus Torvalds 	flags = msg->msg_flags;
8291da177e4SLinus Torvalds 	timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
8301da177e4SLinus Torvalds 
8311da177e4SLinus Torvalds 	/* Wait for a connection to finish. */
8321da177e4SLinus Torvalds 	if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
8331da177e4SLinus Torvalds 		if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
8341da177e4SLinus Torvalds 			goto out_err;
8351da177e4SLinus Torvalds 
8361da177e4SLinus Torvalds 	/* This should be in poll */
8371da177e4SLinus Torvalds 	clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
8381da177e4SLinus Torvalds 
8391da177e4SLinus Torvalds 	mss_now = tcp_current_mss(sk, !(flags&MSG_OOB));
840c1b4a7e6SDavid S. Miller 	size_goal = tp->xmit_size_goal;
8411da177e4SLinus Torvalds 
8421da177e4SLinus Torvalds 	/* Ok commence sending. */
8431da177e4SLinus Torvalds 	iovlen = msg->msg_iovlen;
8441da177e4SLinus Torvalds 	iov = msg->msg_iov;
8451da177e4SLinus Torvalds 	copied = 0;
8461da177e4SLinus Torvalds 
8471da177e4SLinus Torvalds 	err = -EPIPE;
8481da177e4SLinus Torvalds 	if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
8491da177e4SLinus Torvalds 		goto do_error;
8501da177e4SLinus Torvalds 
8511da177e4SLinus Torvalds 	while (--iovlen >= 0) {
8521da177e4SLinus Torvalds 		int seglen = iov->iov_len;
8531da177e4SLinus Torvalds 		unsigned char __user *from = iov->iov_base;
8541da177e4SLinus Torvalds 
8551da177e4SLinus Torvalds 		iov++;
8561da177e4SLinus Torvalds 
8571da177e4SLinus Torvalds 		while (seglen > 0) {
8581da177e4SLinus Torvalds 			int copy;
8591da177e4SLinus Torvalds 
860fe067e8aSDavid S. Miller 			skb = tcp_write_queue_tail(sk);
8611da177e4SLinus Torvalds 
862fe067e8aSDavid S. Miller 			if (!tcp_send_head(sk) ||
863c1b4a7e6SDavid S. Miller 			    (copy = size_goal - skb->len) <= 0) {
8641da177e4SLinus Torvalds 
8651da177e4SLinus Torvalds new_segment:
8661da177e4SLinus Torvalds 				/* Allocate new segment. If the interface is SG,
8671da177e4SLinus Torvalds 				 * allocate skb fitting to single page.
8681da177e4SLinus Torvalds 				 */
8691da177e4SLinus Torvalds 				if (!sk_stream_memory_free(sk))
8701da177e4SLinus Torvalds 					goto wait_for_sndbuf;
8711da177e4SLinus Torvalds 
872df97c708SPavel Emelyanov 				skb = sk_stream_alloc_skb(sk, select_size(sk),
873df97c708SPavel Emelyanov 						sk->sk_allocation);
8741da177e4SLinus Torvalds 				if (!skb)
8751da177e4SLinus Torvalds 					goto wait_for_memory;
8761da177e4SLinus Torvalds 
8771da177e4SLinus Torvalds 				/*
8781da177e4SLinus Torvalds 				 * Check whether we can use HW checksum.
8791da177e4SLinus Torvalds 				 */
8808648b305SHerbert Xu 				if (sk->sk_route_caps & NETIF_F_ALL_CSUM)
88184fa7933SPatrick McHardy 					skb->ip_summed = CHECKSUM_PARTIAL;
8821da177e4SLinus Torvalds 
8839e412ba7SIlpo Järvinen 				skb_entail(sk, skb);
884c1b4a7e6SDavid S. Miller 				copy = size_goal;
8851da177e4SLinus Torvalds 			}
8861da177e4SLinus Torvalds 
8871da177e4SLinus Torvalds 			/* Try to append data to the end of skb. */
8881da177e4SLinus Torvalds 			if (copy > seglen)
8891da177e4SLinus Torvalds 				copy = seglen;
8901da177e4SLinus Torvalds 
8911da177e4SLinus Torvalds 			/* Where to copy to? */
8921da177e4SLinus Torvalds 			if (skb_tailroom(skb) > 0) {
8931da177e4SLinus Torvalds 				/* We have some space in skb head. Superb! */
8941da177e4SLinus Torvalds 				if (copy > skb_tailroom(skb))
8951da177e4SLinus Torvalds 					copy = skb_tailroom(skb);
8961da177e4SLinus Torvalds 				if ((err = skb_add_data(skb, from, copy)) != 0)
8971da177e4SLinus Torvalds 					goto do_fault;
8981da177e4SLinus Torvalds 			} else {
8991da177e4SLinus Torvalds 				int merge = 0;
9001da177e4SLinus Torvalds 				int i = skb_shinfo(skb)->nr_frags;
9011da177e4SLinus Torvalds 				struct page *page = TCP_PAGE(sk);
9021da177e4SLinus Torvalds 				int off = TCP_OFF(sk);
9031da177e4SLinus Torvalds 
9041da177e4SLinus Torvalds 				if (skb_can_coalesce(skb, i, page, off) &&
9051da177e4SLinus Torvalds 				    off != PAGE_SIZE) {
9061da177e4SLinus Torvalds 					/* We can extend the last page
9071da177e4SLinus Torvalds 					 * fragment. */
9081da177e4SLinus Torvalds 					merge = 1;
9091da177e4SLinus Torvalds 				} else if (i == MAX_SKB_FRAGS ||
9101da177e4SLinus Torvalds 					   (!i &&
9111da177e4SLinus Torvalds 					   !(sk->sk_route_caps & NETIF_F_SG))) {
9121da177e4SLinus Torvalds 					/* Need to add new fragment and cannot
9131da177e4SLinus Torvalds 					 * do this because interface is non-SG,
9141da177e4SLinus Torvalds 					 * or because all the page slots are
9151da177e4SLinus Torvalds 					 * busy. */
9161da177e4SLinus Torvalds 					tcp_mark_push(tp, skb);
9171da177e4SLinus Torvalds 					goto new_segment;
9181da177e4SLinus Torvalds 				} else if (page) {
9191da177e4SLinus Torvalds 					if (off == PAGE_SIZE) {
9201da177e4SLinus Torvalds 						put_page(page);
9211da177e4SLinus Torvalds 						TCP_PAGE(sk) = page = NULL;
922fb5f5e6eSHerbert Xu 						off = 0;
9231da177e4SLinus Torvalds 					}
924ef015786SHerbert Xu 				} else
925fb5f5e6eSHerbert Xu 					off = 0;
926ef015786SHerbert Xu 
927ef015786SHerbert Xu 				if (copy > PAGE_SIZE - off)
928ef015786SHerbert Xu 					copy = PAGE_SIZE - off;
929ef015786SHerbert Xu 
9303ab224beSHideo Aoki 				if (!sk_wmem_schedule(sk, copy))
931ef015786SHerbert Xu 					goto wait_for_memory;
9321da177e4SLinus Torvalds 
9331da177e4SLinus Torvalds 				if (!page) {
9341da177e4SLinus Torvalds 					/* Allocate new cache page. */
9351da177e4SLinus Torvalds 					if (!(page = sk_stream_alloc_page(sk)))
9361da177e4SLinus Torvalds 						goto wait_for_memory;
9371da177e4SLinus Torvalds 				}
9381da177e4SLinus Torvalds 
9391da177e4SLinus Torvalds 				/* Time to copy data. We are close to
9401da177e4SLinus Torvalds 				 * the end! */
9411da177e4SLinus Torvalds 				err = skb_copy_to_page(sk, from, skb, page,
9421da177e4SLinus Torvalds 						       off, copy);
9431da177e4SLinus Torvalds 				if (err) {
9441da177e4SLinus Torvalds 					/* If this page was new, give it to the
9451da177e4SLinus Torvalds 					 * socket so it does not get leaked.
9461da177e4SLinus Torvalds 					 */
9471da177e4SLinus Torvalds 					if (!TCP_PAGE(sk)) {
9481da177e4SLinus Torvalds 						TCP_PAGE(sk) = page;
9491da177e4SLinus Torvalds 						TCP_OFF(sk) = 0;
9501da177e4SLinus Torvalds 					}
9511da177e4SLinus Torvalds 					goto do_error;
9521da177e4SLinus Torvalds 				}
9531da177e4SLinus Torvalds 
9541da177e4SLinus Torvalds 				/* Update the skb. */
9551da177e4SLinus Torvalds 				if (merge) {
9561da177e4SLinus Torvalds 					skb_shinfo(skb)->frags[i - 1].size +=
9571da177e4SLinus Torvalds 									copy;
9581da177e4SLinus Torvalds 				} else {
9591da177e4SLinus Torvalds 					skb_fill_page_desc(skb, i, page, off, copy);
9601da177e4SLinus Torvalds 					if (TCP_PAGE(sk)) {
9611da177e4SLinus Torvalds 						get_page(page);
9621da177e4SLinus Torvalds 					} else if (off + copy < PAGE_SIZE) {
9631da177e4SLinus Torvalds 						get_page(page);
9641da177e4SLinus Torvalds 						TCP_PAGE(sk) = page;
9651da177e4SLinus Torvalds 					}
9661da177e4SLinus Torvalds 				}
9671da177e4SLinus Torvalds 
9681da177e4SLinus Torvalds 				TCP_OFF(sk) = off + copy;
9691da177e4SLinus Torvalds 			}
9701da177e4SLinus Torvalds 
9711da177e4SLinus Torvalds 			if (!copied)
9721da177e4SLinus Torvalds 				TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_PSH;
9731da177e4SLinus Torvalds 
9741da177e4SLinus Torvalds 			tp->write_seq += copy;
9751da177e4SLinus Torvalds 			TCP_SKB_CB(skb)->end_seq += copy;
9767967168cSHerbert Xu 			skb_shinfo(skb)->gso_segs = 0;
9771da177e4SLinus Torvalds 
9781da177e4SLinus Torvalds 			from += copy;
9791da177e4SLinus Torvalds 			copied += copy;
9801da177e4SLinus Torvalds 			if ((seglen -= copy) == 0 && iovlen == 0)
9811da177e4SLinus Torvalds 				goto out;
9821da177e4SLinus Torvalds 
98369d15067SHerbert Xu 			if (skb->len < size_goal || (flags & MSG_OOB))
9841da177e4SLinus Torvalds 				continue;
9851da177e4SLinus Torvalds 
9861da177e4SLinus Torvalds 			if (forced_push(tp)) {
9871da177e4SLinus Torvalds 				tcp_mark_push(tp, skb);
9889e412ba7SIlpo Järvinen 				__tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
989fe067e8aSDavid S. Miller 			} else if (skb == tcp_send_head(sk))
9901da177e4SLinus Torvalds 				tcp_push_one(sk, mss_now);
9911da177e4SLinus Torvalds 			continue;
9921da177e4SLinus Torvalds 
9931da177e4SLinus Torvalds wait_for_sndbuf:
9941da177e4SLinus Torvalds 			set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
9951da177e4SLinus Torvalds wait_for_memory:
9961da177e4SLinus Torvalds 			if (copied)
9979e412ba7SIlpo Järvinen 				tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
9981da177e4SLinus Torvalds 
9991da177e4SLinus Torvalds 			if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
10001da177e4SLinus Torvalds 				goto do_error;
10011da177e4SLinus Torvalds 
10021da177e4SLinus Torvalds 			mss_now = tcp_current_mss(sk, !(flags&MSG_OOB));
1003c1b4a7e6SDavid S. Miller 			size_goal = tp->xmit_size_goal;
10041da177e4SLinus Torvalds 		}
10051da177e4SLinus Torvalds 	}
10061da177e4SLinus Torvalds 
10071da177e4SLinus Torvalds out:
10081da177e4SLinus Torvalds 	if (copied)
10099e412ba7SIlpo Järvinen 		tcp_push(sk, flags, mss_now, tp->nonagle);
10101da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
10111da177e4SLinus Torvalds 	release_sock(sk);
10121da177e4SLinus Torvalds 	return copied;
10131da177e4SLinus Torvalds 
10141da177e4SLinus Torvalds do_fault:
10151da177e4SLinus Torvalds 	if (!skb->len) {
1016fe067e8aSDavid S. Miller 		tcp_unlink_write_queue(skb, sk);
1017fe067e8aSDavid S. Miller 		/* It is the one place in all of TCP, except connection
1018fe067e8aSDavid S. Miller 		 * reset, where we can be unlinking the send_head.
1019fe067e8aSDavid S. Miller 		 */
1020fe067e8aSDavid S. Miller 		tcp_check_send_head(sk, skb);
10213ab224beSHideo Aoki 		sk_wmem_free_skb(sk, skb);
10221da177e4SLinus Torvalds 	}
10231da177e4SLinus Torvalds 
10241da177e4SLinus Torvalds do_error:
10251da177e4SLinus Torvalds 	if (copied)
10261da177e4SLinus Torvalds 		goto out;
10271da177e4SLinus Torvalds out_err:
10281da177e4SLinus Torvalds 	err = sk_stream_error(sk, flags, err);
10291da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
10301da177e4SLinus Torvalds 	release_sock(sk);
10311da177e4SLinus Torvalds 	return err;
10321da177e4SLinus Torvalds }
10331da177e4SLinus Torvalds 
10341da177e4SLinus Torvalds /*
10351da177e4SLinus Torvalds  *	Handle reading urgent data. BSD has very simple semantics for
10361da177e4SLinus Torvalds  *	this, no blocking and very strange errors 8)
10371da177e4SLinus Torvalds  */
10381da177e4SLinus Torvalds 
10391da177e4SLinus Torvalds static int tcp_recv_urg(struct sock *sk, long timeo,
10401da177e4SLinus Torvalds 			struct msghdr *msg, int len, int flags,
10411da177e4SLinus Torvalds 			int *addr_len)
10421da177e4SLinus Torvalds {
10431da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
10441da177e4SLinus Torvalds 
10451da177e4SLinus Torvalds 	/* No URG data to read. */
10461da177e4SLinus Torvalds 	if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data ||
10471da177e4SLinus Torvalds 	    tp->urg_data == TCP_URG_READ)
10481da177e4SLinus Torvalds 		return -EINVAL;	/* Yes this is right ! */
10491da177e4SLinus Torvalds 
10501da177e4SLinus Torvalds 	if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE))
10511da177e4SLinus Torvalds 		return -ENOTCONN;
10521da177e4SLinus Torvalds 
10531da177e4SLinus Torvalds 	if (tp->urg_data & TCP_URG_VALID) {
10541da177e4SLinus Torvalds 		int err = 0;
10551da177e4SLinus Torvalds 		char c = tp->urg_data;
10561da177e4SLinus Torvalds 
10571da177e4SLinus Torvalds 		if (!(flags & MSG_PEEK))
10581da177e4SLinus Torvalds 			tp->urg_data = TCP_URG_READ;
10591da177e4SLinus Torvalds 
10601da177e4SLinus Torvalds 		/* Read urgent data. */
10611da177e4SLinus Torvalds 		msg->msg_flags |= MSG_OOB;
10621da177e4SLinus Torvalds 
10631da177e4SLinus Torvalds 		if (len > 0) {
10641da177e4SLinus Torvalds 			if (!(flags & MSG_TRUNC))
10651da177e4SLinus Torvalds 				err = memcpy_toiovec(msg->msg_iov, &c, 1);
10661da177e4SLinus Torvalds 			len = 1;
10671da177e4SLinus Torvalds 		} else
10681da177e4SLinus Torvalds 			msg->msg_flags |= MSG_TRUNC;
10691da177e4SLinus Torvalds 
10701da177e4SLinus Torvalds 		return err ? -EFAULT : len;
10711da177e4SLinus Torvalds 	}
10721da177e4SLinus Torvalds 
10731da177e4SLinus Torvalds 	if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
10741da177e4SLinus Torvalds 		return 0;
10751da177e4SLinus Torvalds 
10761da177e4SLinus Torvalds 	/* Fixed the recv(..., MSG_OOB) behaviour.  BSD docs and
10771da177e4SLinus Torvalds 	 * the available implementations agree in this case:
10781da177e4SLinus Torvalds 	 * this call should never block, independent of the
10791da177e4SLinus Torvalds 	 * blocking state of the socket.
10801da177e4SLinus Torvalds 	 * Mike <pall@rz.uni-karlsruhe.de>
10811da177e4SLinus Torvalds 	 */
10821da177e4SLinus Torvalds 	return -EAGAIN;
10831da177e4SLinus Torvalds }
10841da177e4SLinus Torvalds 
10851da177e4SLinus Torvalds /* Clean up the receive buffer for full frames taken by the user,
10861da177e4SLinus Torvalds  * then send an ACK if necessary.  COPIED is the number of bytes
10871da177e4SLinus Torvalds  * tcp_recvmsg has given to the user so far, it speeds up the
10881da177e4SLinus Torvalds  * calculation of whether or not we must ACK for the sake of
10891da177e4SLinus Torvalds  * a window update.
10901da177e4SLinus Torvalds  */
10910e4b4992SChris Leech void tcp_cleanup_rbuf(struct sock *sk, int copied)
10921da177e4SLinus Torvalds {
10931da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
10941da177e4SLinus Torvalds 	int time_to_ack = 0;
10951da177e4SLinus Torvalds 
10961da177e4SLinus Torvalds #if TCP_DEBUG
10971da177e4SLinus Torvalds 	struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
10981da177e4SLinus Torvalds 
1099*547b792cSIlpo Järvinen 	WARN_ON(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq));
11001da177e4SLinus Torvalds #endif
11011da177e4SLinus Torvalds 
1102463c84b9SArnaldo Carvalho de Melo 	if (inet_csk_ack_scheduled(sk)) {
1103463c84b9SArnaldo Carvalho de Melo 		const struct inet_connection_sock *icsk = inet_csk(sk);
11041da177e4SLinus Torvalds 		   /* Delayed ACKs frequently hit locked sockets during bulk
11051da177e4SLinus Torvalds 		    * receive. */
1106463c84b9SArnaldo Carvalho de Melo 		if (icsk->icsk_ack.blocked ||
11071da177e4SLinus Torvalds 		    /* Once-per-two-segments ACK was not sent by tcp_input.c */
1108463c84b9SArnaldo Carvalho de Melo 		    tp->rcv_nxt - tp->rcv_wup > icsk->icsk_ack.rcv_mss ||
11091da177e4SLinus Torvalds 		    /*
11101da177e4SLinus Torvalds 		     * If this read emptied read buffer, we send ACK, if
11111da177e4SLinus Torvalds 		     * connection is not bidirectional, user drained
11121da177e4SLinus Torvalds 		     * receive buffer and there was a small segment
11131da177e4SLinus Torvalds 		     * in queue.
11141da177e4SLinus Torvalds 		     */
11151ef9696cSAlexey Kuznetsov 		    (copied > 0 &&
11161ef9696cSAlexey Kuznetsov 		     ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) ||
11171ef9696cSAlexey Kuznetsov 		      ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) &&
11181ef9696cSAlexey Kuznetsov 		       !icsk->icsk_ack.pingpong)) &&
11191ef9696cSAlexey Kuznetsov 		      !atomic_read(&sk->sk_rmem_alloc)))
11201da177e4SLinus Torvalds 			time_to_ack = 1;
11211da177e4SLinus Torvalds 	}
11221da177e4SLinus Torvalds 
11231da177e4SLinus Torvalds 	/* We send an ACK if we can now advertise a non-zero window
11241da177e4SLinus Torvalds 	 * which has been raised "significantly".
11251da177e4SLinus Torvalds 	 *
11261da177e4SLinus Torvalds 	 * Even if window raised up to infinity, do not send window open ACK
11271da177e4SLinus Torvalds 	 * in states, where we will not receive more. It is useless.
11281da177e4SLinus Torvalds 	 */
11291da177e4SLinus Torvalds 	if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) {
11301da177e4SLinus Torvalds 		__u32 rcv_window_now = tcp_receive_window(tp);
11311da177e4SLinus Torvalds 
11321da177e4SLinus Torvalds 		/* Optimize, __tcp_select_window() is not cheap. */
11331da177e4SLinus Torvalds 		if (2*rcv_window_now <= tp->window_clamp) {
11341da177e4SLinus Torvalds 			__u32 new_window = __tcp_select_window(sk);
11351da177e4SLinus Torvalds 
11361da177e4SLinus Torvalds 			/* Send ACK now, if this read freed lots of space
11371da177e4SLinus Torvalds 			 * in our buffer. Certainly, new_window is new window.
11381da177e4SLinus Torvalds 			 * We can advertise it now, if it is not less than current one.
11391da177e4SLinus Torvalds 			 * "Lots" means "at least twice" here.
11401da177e4SLinus Torvalds 			 */
11411da177e4SLinus Torvalds 			if (new_window && new_window >= 2 * rcv_window_now)
11421da177e4SLinus Torvalds 				time_to_ack = 1;
11431da177e4SLinus Torvalds 		}
11441da177e4SLinus Torvalds 	}
11451da177e4SLinus Torvalds 	if (time_to_ack)
11461da177e4SLinus Torvalds 		tcp_send_ack(sk);
11471da177e4SLinus Torvalds }
11481da177e4SLinus Torvalds 
11491da177e4SLinus Torvalds static void tcp_prequeue_process(struct sock *sk)
11501da177e4SLinus Torvalds {
11511da177e4SLinus Torvalds 	struct sk_buff *skb;
11521da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
11531da177e4SLinus Torvalds 
11546f67c817SPavel Emelyanov 	NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED);
11551da177e4SLinus Torvalds 
11561da177e4SLinus Torvalds 	/* RX process wants to run with disabled BHs, though it is not
11571da177e4SLinus Torvalds 	 * necessary */
11581da177e4SLinus Torvalds 	local_bh_disable();
11591da177e4SLinus Torvalds 	while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
11601da177e4SLinus Torvalds 		sk->sk_backlog_rcv(sk, skb);
11611da177e4SLinus Torvalds 	local_bh_enable();
11621da177e4SLinus Torvalds 
11631da177e4SLinus Torvalds 	/* Clear memory counter. */
11641da177e4SLinus Torvalds 	tp->ucopy.memory = 0;
11651da177e4SLinus Torvalds }
11661da177e4SLinus Torvalds 
11671da177e4SLinus Torvalds static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
11681da177e4SLinus Torvalds {
11691da177e4SLinus Torvalds 	struct sk_buff *skb;
11701da177e4SLinus Torvalds 	u32 offset;
11711da177e4SLinus Torvalds 
11721da177e4SLinus Torvalds 	skb_queue_walk(&sk->sk_receive_queue, skb) {
11731da177e4SLinus Torvalds 		offset = seq - TCP_SKB_CB(skb)->seq;
1174aa8223c7SArnaldo Carvalho de Melo 		if (tcp_hdr(skb)->syn)
11751da177e4SLinus Torvalds 			offset--;
1176aa8223c7SArnaldo Carvalho de Melo 		if (offset < skb->len || tcp_hdr(skb)->fin) {
11771da177e4SLinus Torvalds 			*off = offset;
11781da177e4SLinus Torvalds 			return skb;
11791da177e4SLinus Torvalds 		}
11801da177e4SLinus Torvalds 	}
11811da177e4SLinus Torvalds 	return NULL;
11821da177e4SLinus Torvalds }
11831da177e4SLinus Torvalds 
11841da177e4SLinus Torvalds /*
11851da177e4SLinus Torvalds  * This routine provides an alternative to tcp_recvmsg() for routines
11861da177e4SLinus Torvalds  * that would like to handle copying from skbuffs directly in 'sendfile'
11871da177e4SLinus Torvalds  * fashion.
11881da177e4SLinus Torvalds  * Note:
11891da177e4SLinus Torvalds  *	- It is assumed that the socket was locked by the caller.
11901da177e4SLinus Torvalds  *	- The routine does not block.
11911da177e4SLinus Torvalds  *	- At present, there is no support for reading OOB data
11921da177e4SLinus Torvalds  *	  or for 'peeking' the socket using this routine
11931da177e4SLinus Torvalds  *	  (although both would be easy to implement).
11941da177e4SLinus Torvalds  */
11951da177e4SLinus Torvalds int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
11961da177e4SLinus Torvalds 		  sk_read_actor_t recv_actor)
11971da177e4SLinus Torvalds {
11981da177e4SLinus Torvalds 	struct sk_buff *skb;
11991da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
12001da177e4SLinus Torvalds 	u32 seq = tp->copied_seq;
12011da177e4SLinus Torvalds 	u32 offset;
12021da177e4SLinus Torvalds 	int copied = 0;
12031da177e4SLinus Torvalds 
12041da177e4SLinus Torvalds 	if (sk->sk_state == TCP_LISTEN)
12051da177e4SLinus Torvalds 		return -ENOTCONN;
12061da177e4SLinus Torvalds 	while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
12071da177e4SLinus Torvalds 		if (offset < skb->len) {
1208374e7b59SOctavian Purdila 			int used;
1209374e7b59SOctavian Purdila 			size_t len;
12101da177e4SLinus Torvalds 
12111da177e4SLinus Torvalds 			len = skb->len - offset;
12121da177e4SLinus Torvalds 			/* Stop reading if we hit a patch of urgent data */
12131da177e4SLinus Torvalds 			if (tp->urg_data) {
12141da177e4SLinus Torvalds 				u32 urg_offset = tp->urg_seq - seq;
12151da177e4SLinus Torvalds 				if (urg_offset < len)
12161da177e4SLinus Torvalds 					len = urg_offset;
12171da177e4SLinus Torvalds 				if (!len)
12181da177e4SLinus Torvalds 					break;
12191da177e4SLinus Torvalds 			}
12201da177e4SLinus Torvalds 			used = recv_actor(desc, skb, offset, len);
1221ddb61a57SJens Axboe 			if (used < 0) {
1222ddb61a57SJens Axboe 				if (!copied)
1223ddb61a57SJens Axboe 					copied = used;
1224ddb61a57SJens Axboe 				break;
1225ddb61a57SJens Axboe 			} else if (used <= len) {
12261da177e4SLinus Torvalds 				seq += used;
12271da177e4SLinus Torvalds 				copied += used;
12281da177e4SLinus Torvalds 				offset += used;
12291da177e4SLinus Torvalds 			}
1230293ad604SOctavian Purdila 			/*
1231293ad604SOctavian Purdila 			 * If recv_actor drops the lock (e.g. TCP splice
1232293ad604SOctavian Purdila 			 * receive) the skb pointer might be invalid when
1233293ad604SOctavian Purdila 			 * getting here: tcp_collapse might have deleted it
1234293ad604SOctavian Purdila 			 * while aggregating skbs from the socket queue.
1235293ad604SOctavian Purdila 			 */
1236293ad604SOctavian Purdila 			skb = tcp_recv_skb(sk, seq-1, &offset);
1237293ad604SOctavian Purdila 			if (!skb || (offset+1 != skb->len))
12381da177e4SLinus Torvalds 				break;
12391da177e4SLinus Torvalds 		}
1240aa8223c7SArnaldo Carvalho de Melo 		if (tcp_hdr(skb)->fin) {
1241624d1164SChris Leech 			sk_eat_skb(sk, skb, 0);
12421da177e4SLinus Torvalds 			++seq;
12431da177e4SLinus Torvalds 			break;
12441da177e4SLinus Torvalds 		}
1245624d1164SChris Leech 		sk_eat_skb(sk, skb, 0);
12461da177e4SLinus Torvalds 		if (!desc->count)
12471da177e4SLinus Torvalds 			break;
12481da177e4SLinus Torvalds 	}
12491da177e4SLinus Torvalds 	tp->copied_seq = seq;
12501da177e4SLinus Torvalds 
12511da177e4SLinus Torvalds 	tcp_rcv_space_adjust(sk);
12521da177e4SLinus Torvalds 
12531da177e4SLinus Torvalds 	/* Clean up data we have read: This will do ACK frames. */
1254ddb61a57SJens Axboe 	if (copied > 0)
12550e4b4992SChris Leech 		tcp_cleanup_rbuf(sk, copied);
12561da177e4SLinus Torvalds 	return copied;
12571da177e4SLinus Torvalds }
12581da177e4SLinus Torvalds 
12591da177e4SLinus Torvalds /*
12601da177e4SLinus Torvalds  *	This routine copies from a sock struct into the user buffer.
12611da177e4SLinus Torvalds  *
12621da177e4SLinus Torvalds  *	Technical note: in 2.3 we work on _locked_ socket, so that
12631da177e4SLinus Torvalds  *	tricks with *seq access order and skb->users are not required.
12641da177e4SLinus Torvalds  *	Probably, code can be easily improved even more.
12651da177e4SLinus Torvalds  */
12661da177e4SLinus Torvalds 
12671da177e4SLinus Torvalds int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
12681da177e4SLinus Torvalds 		size_t len, int nonblock, int flags, int *addr_len)
12691da177e4SLinus Torvalds {
12701da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
12711da177e4SLinus Torvalds 	int copied = 0;
12721da177e4SLinus Torvalds 	u32 peek_seq;
12731da177e4SLinus Torvalds 	u32 *seq;
12741da177e4SLinus Torvalds 	unsigned long used;
12751da177e4SLinus Torvalds 	int err;
12761da177e4SLinus Torvalds 	int target;		/* Read at least this many bytes */
12771da177e4SLinus Torvalds 	long timeo;
12781da177e4SLinus Torvalds 	struct task_struct *user_recv = NULL;
12791a2449a8SChris Leech 	int copied_early = 0;
12802b1244a4SChris Leech 	struct sk_buff *skb;
12811da177e4SLinus Torvalds 
12821da177e4SLinus Torvalds 	lock_sock(sk);
12831da177e4SLinus Torvalds 
12841da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
12851da177e4SLinus Torvalds 
12861da177e4SLinus Torvalds 	err = -ENOTCONN;
12871da177e4SLinus Torvalds 	if (sk->sk_state == TCP_LISTEN)
12881da177e4SLinus Torvalds 		goto out;
12891da177e4SLinus Torvalds 
12901da177e4SLinus Torvalds 	timeo = sock_rcvtimeo(sk, nonblock);
12911da177e4SLinus Torvalds 
12921da177e4SLinus Torvalds 	/* Urgent data needs to be handled specially. */
12931da177e4SLinus Torvalds 	if (flags & MSG_OOB)
12941da177e4SLinus Torvalds 		goto recv_urg;
12951da177e4SLinus Torvalds 
12961da177e4SLinus Torvalds 	seq = &tp->copied_seq;
12971da177e4SLinus Torvalds 	if (flags & MSG_PEEK) {
12981da177e4SLinus Torvalds 		peek_seq = tp->copied_seq;
12991da177e4SLinus Torvalds 		seq = &peek_seq;
13001da177e4SLinus Torvalds 	}
13011da177e4SLinus Torvalds 
13021da177e4SLinus Torvalds 	target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
13031da177e4SLinus Torvalds 
13041a2449a8SChris Leech #ifdef CONFIG_NET_DMA
13051a2449a8SChris Leech 	tp->ucopy.dma_chan = NULL;
13061a2449a8SChris Leech 	preempt_disable();
13072b1244a4SChris Leech 	skb = skb_peek_tail(&sk->sk_receive_queue);
1308e00c5d8bSAndrew Morton 	{
1309e00c5d8bSAndrew Morton 		int available = 0;
1310e00c5d8bSAndrew Morton 
13112b1244a4SChris Leech 		if (skb)
13122b1244a4SChris Leech 			available = TCP_SKB_CB(skb)->seq + skb->len - (*seq);
13132b1244a4SChris Leech 		if ((available < target) &&
13142b1244a4SChris Leech 		    (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) &&
1315e00c5d8bSAndrew Morton 		    !sysctl_tcp_low_latency &&
1316e00c5d8bSAndrew Morton 		    __get_cpu_var(softnet_data).net_dma) {
13171a2449a8SChris Leech 			preempt_enable_no_resched();
1318e00c5d8bSAndrew Morton 			tp->ucopy.pinned_list =
1319e00c5d8bSAndrew Morton 					dma_pin_iovec_pages(msg->msg_iov, len);
1320e00c5d8bSAndrew Morton 		} else {
13211a2449a8SChris Leech 			preempt_enable_no_resched();
1322e00c5d8bSAndrew Morton 		}
1323e00c5d8bSAndrew Morton 	}
13241a2449a8SChris Leech #endif
13251a2449a8SChris Leech 
13261da177e4SLinus Torvalds 	do {
13271da177e4SLinus Torvalds 		u32 offset;
13281da177e4SLinus Torvalds 
13291da177e4SLinus Torvalds 		/* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */
13301da177e4SLinus Torvalds 		if (tp->urg_data && tp->urg_seq == *seq) {
13311da177e4SLinus Torvalds 			if (copied)
13321da177e4SLinus Torvalds 				break;
13331da177e4SLinus Torvalds 			if (signal_pending(current)) {
13341da177e4SLinus Torvalds 				copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
13351da177e4SLinus Torvalds 				break;
13361da177e4SLinus Torvalds 			}
13371da177e4SLinus Torvalds 		}
13381da177e4SLinus Torvalds 
13391da177e4SLinus Torvalds 		/* Next get a buffer. */
13401da177e4SLinus Torvalds 
13411da177e4SLinus Torvalds 		skb = skb_peek(&sk->sk_receive_queue);
13421da177e4SLinus Torvalds 		do {
13431da177e4SLinus Torvalds 			if (!skb)
13441da177e4SLinus Torvalds 				break;
13451da177e4SLinus Torvalds 
13461da177e4SLinus Torvalds 			/* Now that we have two receive queues this
13471da177e4SLinus Torvalds 			 * shouldn't happen.
13481da177e4SLinus Torvalds 			 */
13491da177e4SLinus Torvalds 			if (before(*seq, TCP_SKB_CB(skb)->seq)) {
13501da177e4SLinus Torvalds 				printk(KERN_INFO "recvmsg bug: copied %X "
13511da177e4SLinus Torvalds 				       "seq %X\n", *seq, TCP_SKB_CB(skb)->seq);
13521da177e4SLinus Torvalds 				break;
13531da177e4SLinus Torvalds 			}
13541da177e4SLinus Torvalds 			offset = *seq - TCP_SKB_CB(skb)->seq;
1355aa8223c7SArnaldo Carvalho de Melo 			if (tcp_hdr(skb)->syn)
13561da177e4SLinus Torvalds 				offset--;
13571da177e4SLinus Torvalds 			if (offset < skb->len)
13581da177e4SLinus Torvalds 				goto found_ok_skb;
1359aa8223c7SArnaldo Carvalho de Melo 			if (tcp_hdr(skb)->fin)
13601da177e4SLinus Torvalds 				goto found_fin_ok;
1361*547b792cSIlpo Järvinen 			WARN_ON(!(flags & MSG_PEEK));
13621da177e4SLinus Torvalds 			skb = skb->next;
13631da177e4SLinus Torvalds 		} while (skb != (struct sk_buff *)&sk->sk_receive_queue);
13641da177e4SLinus Torvalds 
13651da177e4SLinus Torvalds 		/* Well, if we have backlog, try to process it now yet. */
13661da177e4SLinus Torvalds 
13671da177e4SLinus Torvalds 		if (copied >= target && !sk->sk_backlog.tail)
13681da177e4SLinus Torvalds 			break;
13691da177e4SLinus Torvalds 
13701da177e4SLinus Torvalds 		if (copied) {
13711da177e4SLinus Torvalds 			if (sk->sk_err ||
13721da177e4SLinus Torvalds 			    sk->sk_state == TCP_CLOSE ||
13731da177e4SLinus Torvalds 			    (sk->sk_shutdown & RCV_SHUTDOWN) ||
13741da177e4SLinus Torvalds 			    !timeo ||
13751da177e4SLinus Torvalds 			    signal_pending(current) ||
13761da177e4SLinus Torvalds 			    (flags & MSG_PEEK))
13771da177e4SLinus Torvalds 				break;
13781da177e4SLinus Torvalds 		} else {
13791da177e4SLinus Torvalds 			if (sock_flag(sk, SOCK_DONE))
13801da177e4SLinus Torvalds 				break;
13811da177e4SLinus Torvalds 
13821da177e4SLinus Torvalds 			if (sk->sk_err) {
13831da177e4SLinus Torvalds 				copied = sock_error(sk);
13841da177e4SLinus Torvalds 				break;
13851da177e4SLinus Torvalds 			}
13861da177e4SLinus Torvalds 
13871da177e4SLinus Torvalds 			if (sk->sk_shutdown & RCV_SHUTDOWN)
13881da177e4SLinus Torvalds 				break;
13891da177e4SLinus Torvalds 
13901da177e4SLinus Torvalds 			if (sk->sk_state == TCP_CLOSE) {
13911da177e4SLinus Torvalds 				if (!sock_flag(sk, SOCK_DONE)) {
13921da177e4SLinus Torvalds 					/* This occurs when user tries to read
13931da177e4SLinus Torvalds 					 * from never connected socket.
13941da177e4SLinus Torvalds 					 */
13951da177e4SLinus Torvalds 					copied = -ENOTCONN;
13961da177e4SLinus Torvalds 					break;
13971da177e4SLinus Torvalds 				}
13981da177e4SLinus Torvalds 				break;
13991da177e4SLinus Torvalds 			}
14001da177e4SLinus Torvalds 
14011da177e4SLinus Torvalds 			if (!timeo) {
14021da177e4SLinus Torvalds 				copied = -EAGAIN;
14031da177e4SLinus Torvalds 				break;
14041da177e4SLinus Torvalds 			}
14051da177e4SLinus Torvalds 
14061da177e4SLinus Torvalds 			if (signal_pending(current)) {
14071da177e4SLinus Torvalds 				copied = sock_intr_errno(timeo);
14081da177e4SLinus Torvalds 				break;
14091da177e4SLinus Torvalds 			}
14101da177e4SLinus Torvalds 		}
14111da177e4SLinus Torvalds 
14120e4b4992SChris Leech 		tcp_cleanup_rbuf(sk, copied);
14131da177e4SLinus Torvalds 
14147df55125SDavid S. Miller 		if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) {
14151da177e4SLinus Torvalds 			/* Install new reader */
14161da177e4SLinus Torvalds 			if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) {
14171da177e4SLinus Torvalds 				user_recv = current;
14181da177e4SLinus Torvalds 				tp->ucopy.task = user_recv;
14191da177e4SLinus Torvalds 				tp->ucopy.iov = msg->msg_iov;
14201da177e4SLinus Torvalds 			}
14211da177e4SLinus Torvalds 
14221da177e4SLinus Torvalds 			tp->ucopy.len = len;
14231da177e4SLinus Torvalds 
1424*547b792cSIlpo Järvinen 			WARN_ON(tp->copied_seq != tp->rcv_nxt &&
1425*547b792cSIlpo Järvinen 				!(flags & (MSG_PEEK | MSG_TRUNC)));
14261da177e4SLinus Torvalds 
14271da177e4SLinus Torvalds 			/* Ugly... If prequeue is not empty, we have to
14281da177e4SLinus Torvalds 			 * process it before releasing socket, otherwise
14291da177e4SLinus Torvalds 			 * order will be broken at second iteration.
14301da177e4SLinus Torvalds 			 * More elegant solution is required!!!
14311da177e4SLinus Torvalds 			 *
14321da177e4SLinus Torvalds 			 * Look: we have the following (pseudo)queues:
14331da177e4SLinus Torvalds 			 *
14341da177e4SLinus Torvalds 			 * 1. packets in flight
14351da177e4SLinus Torvalds 			 * 2. backlog
14361da177e4SLinus Torvalds 			 * 3. prequeue
14371da177e4SLinus Torvalds 			 * 4. receive_queue
14381da177e4SLinus Torvalds 			 *
14391da177e4SLinus Torvalds 			 * Each queue can be processed only if the next ones
14401da177e4SLinus Torvalds 			 * are empty. At this point we have empty receive_queue.
14411da177e4SLinus Torvalds 			 * But prequeue _can_ be not empty after 2nd iteration,
14421da177e4SLinus Torvalds 			 * when we jumped to start of loop because backlog
14431da177e4SLinus Torvalds 			 * processing added something to receive_queue.
14441da177e4SLinus Torvalds 			 * We cannot release_sock(), because backlog contains
14451da177e4SLinus Torvalds 			 * packets arrived _after_ prequeued ones.
14461da177e4SLinus Torvalds 			 *
14471da177e4SLinus Torvalds 			 * Shortly, algorithm is clear --- to process all
14481da177e4SLinus Torvalds 			 * the queues in order. We could make it more directly,
14491da177e4SLinus Torvalds 			 * requeueing packets from backlog to prequeue, if
14501da177e4SLinus Torvalds 			 * is not empty. It is more elegant, but eats cycles,
14511da177e4SLinus Torvalds 			 * unfortunately.
14521da177e4SLinus Torvalds 			 */
1453b03efcfbSDavid S. Miller 			if (!skb_queue_empty(&tp->ucopy.prequeue))
14541da177e4SLinus Torvalds 				goto do_prequeue;
14551da177e4SLinus Torvalds 
14561da177e4SLinus Torvalds 			/* __ Set realtime policy in scheduler __ */
14571da177e4SLinus Torvalds 		}
14581da177e4SLinus Torvalds 
14591da177e4SLinus Torvalds 		if (copied >= target) {
14601da177e4SLinus Torvalds 			/* Do not sleep, just process backlog. */
14611da177e4SLinus Torvalds 			release_sock(sk);
14621da177e4SLinus Torvalds 			lock_sock(sk);
14631da177e4SLinus Torvalds 		} else
14641da177e4SLinus Torvalds 			sk_wait_data(sk, &timeo);
14651da177e4SLinus Torvalds 
14661a2449a8SChris Leech #ifdef CONFIG_NET_DMA
14671a2449a8SChris Leech 		tp->ucopy.wakeup = 0;
14681a2449a8SChris Leech #endif
14691a2449a8SChris Leech 
14701da177e4SLinus Torvalds 		if (user_recv) {
14711da177e4SLinus Torvalds 			int chunk;
14721da177e4SLinus Torvalds 
14731da177e4SLinus Torvalds 			/* __ Restore normal policy in scheduler __ */
14741da177e4SLinus Torvalds 
14751da177e4SLinus Torvalds 			if ((chunk = len - tp->ucopy.len) != 0) {
1476ed88098eSPavel Emelyanov 				NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk);
14771da177e4SLinus Torvalds 				len -= chunk;
14781da177e4SLinus Torvalds 				copied += chunk;
14791da177e4SLinus Torvalds 			}
14801da177e4SLinus Torvalds 
14811da177e4SLinus Torvalds 			if (tp->rcv_nxt == tp->copied_seq &&
1482b03efcfbSDavid S. Miller 			    !skb_queue_empty(&tp->ucopy.prequeue)) {
14831da177e4SLinus Torvalds do_prequeue:
14841da177e4SLinus Torvalds 				tcp_prequeue_process(sk);
14851da177e4SLinus Torvalds 
14861da177e4SLinus Torvalds 				if ((chunk = len - tp->ucopy.len) != 0) {
1487ed88098eSPavel Emelyanov 					NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
14881da177e4SLinus Torvalds 					len -= chunk;
14891da177e4SLinus Torvalds 					copied += chunk;
14901da177e4SLinus Torvalds 				}
14911da177e4SLinus Torvalds 			}
14921da177e4SLinus Torvalds 		}
14931da177e4SLinus Torvalds 		if ((flags & MSG_PEEK) && peek_seq != tp->copied_seq) {
14941da177e4SLinus Torvalds 			if (net_ratelimit())
14951da177e4SLinus Torvalds 				printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.\n",
1496ba25f9dcSPavel Emelyanov 				       current->comm, task_pid_nr(current));
14971da177e4SLinus Torvalds 			peek_seq = tp->copied_seq;
14981da177e4SLinus Torvalds 		}
14991da177e4SLinus Torvalds 		continue;
15001da177e4SLinus Torvalds 
15011da177e4SLinus Torvalds 	found_ok_skb:
15021da177e4SLinus Torvalds 		/* Ok so how much can we use? */
15031da177e4SLinus Torvalds 		used = skb->len - offset;
15041da177e4SLinus Torvalds 		if (len < used)
15051da177e4SLinus Torvalds 			used = len;
15061da177e4SLinus Torvalds 
15071da177e4SLinus Torvalds 		/* Do we have urgent data here? */
15081da177e4SLinus Torvalds 		if (tp->urg_data) {
15091da177e4SLinus Torvalds 			u32 urg_offset = tp->urg_seq - *seq;
15101da177e4SLinus Torvalds 			if (urg_offset < used) {
15111da177e4SLinus Torvalds 				if (!urg_offset) {
15121da177e4SLinus Torvalds 					if (!sock_flag(sk, SOCK_URGINLINE)) {
15131da177e4SLinus Torvalds 						++*seq;
15141da177e4SLinus Torvalds 						offset++;
15151da177e4SLinus Torvalds 						used--;
15161da177e4SLinus Torvalds 						if (!used)
15171da177e4SLinus Torvalds 							goto skip_copy;
15181da177e4SLinus Torvalds 					}
15191da177e4SLinus Torvalds 				} else
15201da177e4SLinus Torvalds 					used = urg_offset;
15211da177e4SLinus Torvalds 			}
15221da177e4SLinus Torvalds 		}
15231da177e4SLinus Torvalds 
15241da177e4SLinus Torvalds 		if (!(flags & MSG_TRUNC)) {
15251a2449a8SChris Leech #ifdef CONFIG_NET_DMA
15261a2449a8SChris Leech 			if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
15271a2449a8SChris Leech 				tp->ucopy.dma_chan = get_softnet_dma();
15281a2449a8SChris Leech 
15291a2449a8SChris Leech 			if (tp->ucopy.dma_chan) {
15301a2449a8SChris Leech 				tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec(
15311a2449a8SChris Leech 					tp->ucopy.dma_chan, skb, offset,
15321a2449a8SChris Leech 					msg->msg_iov, used,
15331a2449a8SChris Leech 					tp->ucopy.pinned_list);
15341a2449a8SChris Leech 
15351a2449a8SChris Leech 				if (tp->ucopy.dma_cookie < 0) {
15361a2449a8SChris Leech 
15371a2449a8SChris Leech 					printk(KERN_ALERT "dma_cookie < 0\n");
15381a2449a8SChris Leech 
15391a2449a8SChris Leech 					/* Exception. Bailout! */
15401a2449a8SChris Leech 					if (!copied)
15411a2449a8SChris Leech 						copied = -EFAULT;
15421a2449a8SChris Leech 					break;
15431a2449a8SChris Leech 				}
15441a2449a8SChris Leech 				if ((offset + used) == skb->len)
15451a2449a8SChris Leech 					copied_early = 1;
15461a2449a8SChris Leech 
15471a2449a8SChris Leech 			} else
15481a2449a8SChris Leech #endif
15491a2449a8SChris Leech 			{
15501da177e4SLinus Torvalds 				err = skb_copy_datagram_iovec(skb, offset,
15511da177e4SLinus Torvalds 						msg->msg_iov, used);
15521da177e4SLinus Torvalds 				if (err) {
15531da177e4SLinus Torvalds 					/* Exception. Bailout! */
15541da177e4SLinus Torvalds 					if (!copied)
15551da177e4SLinus Torvalds 						copied = -EFAULT;
15561da177e4SLinus Torvalds 					break;
15571da177e4SLinus Torvalds 				}
15581da177e4SLinus Torvalds 			}
15591a2449a8SChris Leech 		}
15601da177e4SLinus Torvalds 
15611da177e4SLinus Torvalds 		*seq += used;
15621da177e4SLinus Torvalds 		copied += used;
15631da177e4SLinus Torvalds 		len -= used;
15641da177e4SLinus Torvalds 
15651da177e4SLinus Torvalds 		tcp_rcv_space_adjust(sk);
15661da177e4SLinus Torvalds 
15671da177e4SLinus Torvalds skip_copy:
15681da177e4SLinus Torvalds 		if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) {
15691da177e4SLinus Torvalds 			tp->urg_data = 0;
15709e412ba7SIlpo Järvinen 			tcp_fast_path_check(sk);
15711da177e4SLinus Torvalds 		}
15721da177e4SLinus Torvalds 		if (used + offset < skb->len)
15731da177e4SLinus Torvalds 			continue;
15741da177e4SLinus Torvalds 
1575aa8223c7SArnaldo Carvalho de Melo 		if (tcp_hdr(skb)->fin)
15761da177e4SLinus Torvalds 			goto found_fin_ok;
15771a2449a8SChris Leech 		if (!(flags & MSG_PEEK)) {
15781a2449a8SChris Leech 			sk_eat_skb(sk, skb, copied_early);
15791a2449a8SChris Leech 			copied_early = 0;
15801a2449a8SChris Leech 		}
15811da177e4SLinus Torvalds 		continue;
15821da177e4SLinus Torvalds 
15831da177e4SLinus Torvalds 	found_fin_ok:
15841da177e4SLinus Torvalds 		/* Process the FIN. */
15851da177e4SLinus Torvalds 		++*seq;
15861a2449a8SChris Leech 		if (!(flags & MSG_PEEK)) {
15871a2449a8SChris Leech 			sk_eat_skb(sk, skb, copied_early);
15881a2449a8SChris Leech 			copied_early = 0;
15891a2449a8SChris Leech 		}
15901da177e4SLinus Torvalds 		break;
15911da177e4SLinus Torvalds 	} while (len > 0);
15921da177e4SLinus Torvalds 
15931da177e4SLinus Torvalds 	if (user_recv) {
1594b03efcfbSDavid S. Miller 		if (!skb_queue_empty(&tp->ucopy.prequeue)) {
15951da177e4SLinus Torvalds 			int chunk;
15961da177e4SLinus Torvalds 
15971da177e4SLinus Torvalds 			tp->ucopy.len = copied > 0 ? len : 0;
15981da177e4SLinus Torvalds 
15991da177e4SLinus Torvalds 			tcp_prequeue_process(sk);
16001da177e4SLinus Torvalds 
16011da177e4SLinus Torvalds 			if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
1602ed88098eSPavel Emelyanov 				NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
16031da177e4SLinus Torvalds 				len -= chunk;
16041da177e4SLinus Torvalds 				copied += chunk;
16051da177e4SLinus Torvalds 			}
16061da177e4SLinus Torvalds 		}
16071da177e4SLinus Torvalds 
16081da177e4SLinus Torvalds 		tp->ucopy.task = NULL;
16091da177e4SLinus Torvalds 		tp->ucopy.len = 0;
16101da177e4SLinus Torvalds 	}
16111da177e4SLinus Torvalds 
16121a2449a8SChris Leech #ifdef CONFIG_NET_DMA
16131a2449a8SChris Leech 	if (tp->ucopy.dma_chan) {
16141a2449a8SChris Leech 		dma_cookie_t done, used;
16151a2449a8SChris Leech 
16161a2449a8SChris Leech 		dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
16171a2449a8SChris Leech 
16181a2449a8SChris Leech 		while (dma_async_memcpy_complete(tp->ucopy.dma_chan,
16191a2449a8SChris Leech 						 tp->ucopy.dma_cookie, &done,
16201a2449a8SChris Leech 						 &used) == DMA_IN_PROGRESS) {
16211a2449a8SChris Leech 			/* do partial cleanup of sk_async_wait_queue */
16221a2449a8SChris Leech 			while ((skb = skb_peek(&sk->sk_async_wait_queue)) &&
16231a2449a8SChris Leech 			       (dma_async_is_complete(skb->dma_cookie, done,
16241a2449a8SChris Leech 						      used) == DMA_SUCCESS)) {
16251a2449a8SChris Leech 				__skb_dequeue(&sk->sk_async_wait_queue);
16261a2449a8SChris Leech 				kfree_skb(skb);
16271a2449a8SChris Leech 			}
16281a2449a8SChris Leech 		}
16291a2449a8SChris Leech 
16301a2449a8SChris Leech 		/* Safe to free early-copied skbs now */
16311a2449a8SChris Leech 		__skb_queue_purge(&sk->sk_async_wait_queue);
16321a2449a8SChris Leech 		dma_chan_put(tp->ucopy.dma_chan);
16331a2449a8SChris Leech 		tp->ucopy.dma_chan = NULL;
16341a2449a8SChris Leech 	}
16351a2449a8SChris Leech 	if (tp->ucopy.pinned_list) {
16361a2449a8SChris Leech 		dma_unpin_iovec_pages(tp->ucopy.pinned_list);
16371a2449a8SChris Leech 		tp->ucopy.pinned_list = NULL;
16381a2449a8SChris Leech 	}
16391a2449a8SChris Leech #endif
16401a2449a8SChris Leech 
16411da177e4SLinus Torvalds 	/* According to UNIX98, msg_name/msg_namelen are ignored
16421da177e4SLinus Torvalds 	 * on connected socket. I was just happy when found this 8) --ANK
16431da177e4SLinus Torvalds 	 */
16441da177e4SLinus Torvalds 
16451da177e4SLinus Torvalds 	/* Clean up data we have read: This will do ACK frames. */
16460e4b4992SChris Leech 	tcp_cleanup_rbuf(sk, copied);
16471da177e4SLinus Torvalds 
16481da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
16491da177e4SLinus Torvalds 	release_sock(sk);
16501da177e4SLinus Torvalds 	return copied;
16511da177e4SLinus Torvalds 
16521da177e4SLinus Torvalds out:
16531da177e4SLinus Torvalds 	TCP_CHECK_TIMER(sk);
16541da177e4SLinus Torvalds 	release_sock(sk);
16551da177e4SLinus Torvalds 	return err;
16561da177e4SLinus Torvalds 
16571da177e4SLinus Torvalds recv_urg:
16581da177e4SLinus Torvalds 	err = tcp_recv_urg(sk, timeo, msg, len, flags, addr_len);
16591da177e4SLinus Torvalds 	goto out;
16601da177e4SLinus Torvalds }
16611da177e4SLinus Torvalds 
1662490d5046SIlpo Järvinen void tcp_set_state(struct sock *sk, int state)
1663490d5046SIlpo Järvinen {
1664490d5046SIlpo Järvinen 	int oldstate = sk->sk_state;
1665490d5046SIlpo Järvinen 
1666490d5046SIlpo Järvinen 	switch (state) {
1667490d5046SIlpo Järvinen 	case TCP_ESTABLISHED:
1668490d5046SIlpo Järvinen 		if (oldstate != TCP_ESTABLISHED)
166981cc8a75SPavel Emelyanov 			TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
1670490d5046SIlpo Järvinen 		break;
1671490d5046SIlpo Järvinen 
1672490d5046SIlpo Järvinen 	case TCP_CLOSE:
1673490d5046SIlpo Järvinen 		if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
167481cc8a75SPavel Emelyanov 			TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS);
1675490d5046SIlpo Järvinen 
1676490d5046SIlpo Järvinen 		sk->sk_prot->unhash(sk);
1677490d5046SIlpo Järvinen 		if (inet_csk(sk)->icsk_bind_hash &&
1678490d5046SIlpo Järvinen 		    !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
1679ab1e0a13SArnaldo Carvalho de Melo 			inet_put_port(sk);
1680490d5046SIlpo Järvinen 		/* fall through */
1681490d5046SIlpo Järvinen 	default:
1682490d5046SIlpo Järvinen 		if (oldstate==TCP_ESTABLISHED)
168374688e48SPavel Emelyanov 			TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
1684490d5046SIlpo Järvinen 	}
1685490d5046SIlpo Järvinen 
1686490d5046SIlpo Järvinen 	/* Change state AFTER socket is unhashed to avoid closed
1687490d5046SIlpo Järvinen 	 * socket sitting in hash tables.
1688490d5046SIlpo Järvinen 	 */
1689490d5046SIlpo Järvinen 	sk->sk_state = state;
1690490d5046SIlpo Järvinen 
1691490d5046SIlpo Järvinen #ifdef STATE_TRACE
1692490d5046SIlpo Järvinen 	SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n",sk, statename[oldstate],statename[state]);
1693490d5046SIlpo Järvinen #endif
1694490d5046SIlpo Järvinen }
1695490d5046SIlpo Järvinen EXPORT_SYMBOL_GPL(tcp_set_state);
1696490d5046SIlpo Järvinen 
16971da177e4SLinus Torvalds /*
16981da177e4SLinus Torvalds  *	State processing on a close. This implements the state shift for
16991da177e4SLinus Torvalds  *	sending our FIN frame. Note that we only send a FIN for some
17001da177e4SLinus Torvalds  *	states. A shutdown() may have already sent the FIN, or we may be
17011da177e4SLinus Torvalds  *	closed.
17021da177e4SLinus Torvalds  */
17031da177e4SLinus Torvalds 
17049b5b5cffSArjan van de Ven static const unsigned char new_state[16] = {
17051da177e4SLinus Torvalds   /* current state:        new state:      action:	*/
17061da177e4SLinus Torvalds   /* (Invalid)		*/ TCP_CLOSE,
17071da177e4SLinus Torvalds   /* TCP_ESTABLISHED	*/ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
17081da177e4SLinus Torvalds   /* TCP_SYN_SENT	*/ TCP_CLOSE,
17091da177e4SLinus Torvalds   /* TCP_SYN_RECV	*/ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
17101da177e4SLinus Torvalds   /* TCP_FIN_WAIT1	*/ TCP_FIN_WAIT1,
17111da177e4SLinus Torvalds   /* TCP_FIN_WAIT2	*/ TCP_FIN_WAIT2,
17121da177e4SLinus Torvalds   /* TCP_TIME_WAIT	*/ TCP_CLOSE,
17131da177e4SLinus Torvalds   /* TCP_CLOSE		*/ TCP_CLOSE,
17141da177e4SLinus Torvalds   /* TCP_CLOSE_WAIT	*/ TCP_LAST_ACK  | TCP_ACTION_FIN,
17151da177e4SLinus Torvalds   /* TCP_LAST_ACK	*/ TCP_LAST_ACK,
17161da177e4SLinus Torvalds   /* TCP_LISTEN		*/ TCP_CLOSE,
17171da177e4SLinus Torvalds   /* TCP_CLOSING	*/ TCP_CLOSING,
17181da177e4SLinus Torvalds };
17191da177e4SLinus Torvalds 
17201da177e4SLinus Torvalds static int tcp_close_state(struct sock *sk)
17211da177e4SLinus Torvalds {
17221da177e4SLinus Torvalds 	int next = (int)new_state[sk->sk_state];
17231da177e4SLinus Torvalds 	int ns = next & TCP_STATE_MASK;
17241da177e4SLinus Torvalds 
17251da177e4SLinus Torvalds 	tcp_set_state(sk, ns);
17261da177e4SLinus Torvalds 
17271da177e4SLinus Torvalds 	return next & TCP_ACTION_FIN;
17281da177e4SLinus Torvalds }
17291da177e4SLinus Torvalds 
17301da177e4SLinus Torvalds /*
17311da177e4SLinus Torvalds  *	Shutdown the sending side of a connection. Much like close except
17321f29b058SSatoru SATOH  *	that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD).
17331da177e4SLinus Torvalds  */
17341da177e4SLinus Torvalds 
17351da177e4SLinus Torvalds void tcp_shutdown(struct sock *sk, int how)
17361da177e4SLinus Torvalds {
17371da177e4SLinus Torvalds 	/*	We need to grab some memory, and put together a FIN,
17381da177e4SLinus Torvalds 	 *	and then put it into the queue to be sent.
17391da177e4SLinus Torvalds 	 *		Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
17401da177e4SLinus Torvalds 	 */
17411da177e4SLinus Torvalds 	if (!(how & SEND_SHUTDOWN))
17421da177e4SLinus Torvalds 		return;
17431da177e4SLinus Torvalds 
17441da177e4SLinus Torvalds 	/* If we've already sent a FIN, or it's a closed state, skip this. */
17451da177e4SLinus Torvalds 	if ((1 << sk->sk_state) &
17461da177e4SLinus Torvalds 	    (TCPF_ESTABLISHED | TCPF_SYN_SENT |
17471da177e4SLinus Torvalds 	     TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) {
17481da177e4SLinus Torvalds 		/* Clear out any half completed packets.  FIN if needed. */
17491da177e4SLinus Torvalds 		if (tcp_close_state(sk))
17501da177e4SLinus Torvalds 			tcp_send_fin(sk);
17511da177e4SLinus Torvalds 	}
17521da177e4SLinus Torvalds }
17531da177e4SLinus Torvalds 
17541da177e4SLinus Torvalds void tcp_close(struct sock *sk, long timeout)
17551da177e4SLinus Torvalds {
17561da177e4SLinus Torvalds 	struct sk_buff *skb;
17571da177e4SLinus Torvalds 	int data_was_unread = 0;
175875c2d907SHerbert Xu 	int state;
17591da177e4SLinus Torvalds 
17601da177e4SLinus Torvalds 	lock_sock(sk);
17611da177e4SLinus Torvalds 	sk->sk_shutdown = SHUTDOWN_MASK;
17621da177e4SLinus Torvalds 
17631da177e4SLinus Torvalds 	if (sk->sk_state == TCP_LISTEN) {
17641da177e4SLinus Torvalds 		tcp_set_state(sk, TCP_CLOSE);
17651da177e4SLinus Torvalds 
17661da177e4SLinus Torvalds 		/* Special case. */
17670a5578cfSArnaldo Carvalho de Melo 		inet_csk_listen_stop(sk);
17681da177e4SLinus Torvalds 
17691da177e4SLinus Torvalds 		goto adjudge_to_death;
17701da177e4SLinus Torvalds 	}
17711da177e4SLinus Torvalds 
17721da177e4SLinus Torvalds 	/*  We need to flush the recv. buffs.  We do this only on the
17731da177e4SLinus Torvalds 	 *  descriptor close, not protocol-sourced closes, because the
17741da177e4SLinus Torvalds 	 *  reader process may not have drained the data yet!
17751da177e4SLinus Torvalds 	 */
17761da177e4SLinus Torvalds 	while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
17771da177e4SLinus Torvalds 		u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq -
1778aa8223c7SArnaldo Carvalho de Melo 			  tcp_hdr(skb)->fin;
17791da177e4SLinus Torvalds 		data_was_unread += len;
17801da177e4SLinus Torvalds 		__kfree_skb(skb);
17811da177e4SLinus Torvalds 	}
17821da177e4SLinus Torvalds 
17833ab224beSHideo Aoki 	sk_mem_reclaim(sk);
17841da177e4SLinus Torvalds 
178565bb723cSGerrit Renker 	/* As outlined in RFC 2525, section 2.17, we send a RST here because
178665bb723cSGerrit Renker 	 * data was lost. To witness the awful effects of the old behavior of
178765bb723cSGerrit Renker 	 * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk
178865bb723cSGerrit Renker 	 * GET in an FTP client, suspend the process, wait for the client to
178965bb723cSGerrit Renker 	 * advertise a zero window, then kill -9 the FTP client, wheee...
179065bb723cSGerrit Renker 	 * Note: timeout is always zero in such a case.
17911da177e4SLinus Torvalds 	 */
17921da177e4SLinus Torvalds 	if (data_was_unread) {
17931da177e4SLinus Torvalds 		/* Unread data was tossed, zap the connection. */
17946f67c817SPavel Emelyanov 		NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE);
17951da177e4SLinus Torvalds 		tcp_set_state(sk, TCP_CLOSE);
17961da177e4SLinus Torvalds 		tcp_send_active_reset(sk, GFP_KERNEL);
17971da177e4SLinus Torvalds 	} else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
17981da177e4SLinus Torvalds 		/* Check zero linger _after_ checking for unread data. */
17991da177e4SLinus Torvalds 		sk->sk_prot->disconnect(sk, 0);
18006f67c817SPavel Emelyanov 		NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
18011da177e4SLinus Torvalds 	} else if (tcp_close_state(sk)) {
18021da177e4SLinus Torvalds 		/* We FIN if the application ate all the data before
18031da177e4SLinus Torvalds 		 * zapping the connection.
18041da177e4SLinus Torvalds 		 */
18051da177e4SLinus Torvalds 
18061da177e4SLinus Torvalds 		/* RED-PEN. Formally speaking, we have broken TCP state
18071da177e4SLinus Torvalds 		 * machine. State transitions:
18081da177e4SLinus Torvalds 		 *
18091da177e4SLinus Torvalds 		 * TCP_ESTABLISHED -> TCP_FIN_WAIT1
18101da177e4SLinus Torvalds 		 * TCP_SYN_RECV	-> TCP_FIN_WAIT1 (forget it, it's impossible)
18111da177e4SLinus Torvalds 		 * TCP_CLOSE_WAIT -> TCP_LAST_ACK
18121da177e4SLinus Torvalds 		 *
18131da177e4SLinus Torvalds 		 * are legal only when FIN has been sent (i.e. in window),
18141da177e4SLinus Torvalds 		 * rather than queued out of window. Purists blame.
18151da177e4SLinus Torvalds 		 *
18161da177e4SLinus Torvalds 		 * F.e. "RFC state" is ESTABLISHED,
18171da177e4SLinus Torvalds 		 * if Linux state is FIN-WAIT-1, but FIN is still not sent.
18181da177e4SLinus Torvalds 		 *
18191da177e4SLinus Torvalds 		 * The visible declinations are that sometimes
18201da177e4SLinus Torvalds 		 * we enter time-wait state, when it is not required really
18211da177e4SLinus Torvalds 		 * (harmless), do not send active resets, when they are
18221da177e4SLinus Torvalds 		 * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
18231da177e4SLinus Torvalds 		 * they look as CLOSING or LAST_ACK for Linux)
18241da177e4SLinus Torvalds 		 * Probably, I missed some more holelets.
18251da177e4SLinus Torvalds 		 * 						--ANK
18261da177e4SLinus Torvalds 		 */
18271da177e4SLinus Torvalds 		tcp_send_fin(sk);
18281da177e4SLinus Torvalds 	}
18291da177e4SLinus Torvalds 
18301da177e4SLinus Torvalds 	sk_stream_wait_close(sk, timeout);
18311da177e4SLinus Torvalds 
18321da177e4SLinus Torvalds adjudge_to_death:
183375c2d907SHerbert Xu 	state = sk->sk_state;
183475c2d907SHerbert Xu 	sock_hold(sk);
183575c2d907SHerbert Xu 	sock_orphan(sk);
183675c2d907SHerbert Xu 	atomic_inc(sk->sk_prot->orphan_count);
183775c2d907SHerbert Xu 
18381da177e4SLinus Torvalds 	/* It is the last release_sock in its life. It will remove backlog. */
18391da177e4SLinus Torvalds 	release_sock(sk);
18401da177e4SLinus Torvalds 
18411da177e4SLinus Torvalds 
18421da177e4SLinus Torvalds 	/* Now socket is owned by kernel and we acquire BH lock
18431da177e4SLinus Torvalds 	   to finish close. No need to check for user refs.
18441da177e4SLinus Torvalds 	 */
18451da177e4SLinus Torvalds 	local_bh_disable();
18461da177e4SLinus Torvalds 	bh_lock_sock(sk);
1847*547b792cSIlpo Järvinen 	WARN_ON(sock_owned_by_user(sk));
18481da177e4SLinus Torvalds 
184975c2d907SHerbert Xu 	/* Have we already been destroyed by a softirq or backlog? */
185075c2d907SHerbert Xu 	if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE)
185175c2d907SHerbert Xu 		goto out;
18521da177e4SLinus Torvalds 
18531da177e4SLinus Torvalds 	/*	This is a (useful) BSD violating of the RFC. There is a
18541da177e4SLinus Torvalds 	 *	problem with TCP as specified in that the other end could
18551da177e4SLinus Torvalds 	 *	keep a socket open forever with no application left this end.
18561da177e4SLinus Torvalds 	 *	We use a 3 minute timeout (about the same as BSD) then kill
18571da177e4SLinus Torvalds 	 *	our end. If they send after that then tough - BUT: long enough
18581da177e4SLinus Torvalds 	 *	that we won't make the old 4*rto = almost no time - whoops
18591da177e4SLinus Torvalds 	 *	reset mistake.
18601da177e4SLinus Torvalds 	 *
18611da177e4SLinus Torvalds 	 *	Nope, it was not mistake. It is really desired behaviour
18621da177e4SLinus Torvalds 	 *	f.e. on http servers, when such sockets are useless, but
18631da177e4SLinus Torvalds 	 *	consume significant resources. Let's do it with special
18641da177e4SLinus Torvalds 	 *	linger2	option.					--ANK
18651da177e4SLinus Torvalds 	 */
18661da177e4SLinus Torvalds 
18671da177e4SLinus Torvalds 	if (sk->sk_state == TCP_FIN_WAIT2) {
18681da177e4SLinus Torvalds 		struct tcp_sock *tp = tcp_sk(sk);
18691da177e4SLinus Torvalds 		if (tp->linger2 < 0) {
18701da177e4SLinus Torvalds 			tcp_set_state(sk, TCP_CLOSE);
18711da177e4SLinus Torvalds 			tcp_send_active_reset(sk, GFP_ATOMIC);
1872de0744afSPavel Emelyanov 			NET_INC_STATS_BH(sock_net(sk),
1873de0744afSPavel Emelyanov 					LINUX_MIB_TCPABORTONLINGER);
18741da177e4SLinus Torvalds 		} else {
1875463c84b9SArnaldo Carvalho de Melo 			const int tmo = tcp_fin_time(sk);
18761da177e4SLinus Torvalds 
18771da177e4SLinus Torvalds 			if (tmo > TCP_TIMEWAIT_LEN) {
187852499afeSDavid S. Miller 				inet_csk_reset_keepalive_timer(sk,
187952499afeSDavid S. Miller 						tmo - TCP_TIMEWAIT_LEN);
18801da177e4SLinus Torvalds 			} else {
18811da177e4SLinus Torvalds 				tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
18821da177e4SLinus Torvalds 				goto out;
18831da177e4SLinus Torvalds 			}
18841da177e4SLinus Torvalds 		}
18851da177e4SLinus Torvalds 	}
18861da177e4SLinus Torvalds 	if (sk->sk_state != TCP_CLOSE) {
18873ab224beSHideo Aoki 		sk_mem_reclaim(sk);
1888e4fd5da3SPavel Emelianov 		if (tcp_too_many_orphans(sk,
1889e4fd5da3SPavel Emelianov 				atomic_read(sk->sk_prot->orphan_count))) {
18901da177e4SLinus Torvalds 			if (net_ratelimit())
18911da177e4SLinus Torvalds 				printk(KERN_INFO "TCP: too many of orphaned "
18921da177e4SLinus Torvalds 				       "sockets\n");
18931da177e4SLinus Torvalds 			tcp_set_state(sk, TCP_CLOSE);
18941da177e4SLinus Torvalds 			tcp_send_active_reset(sk, GFP_ATOMIC);
1895de0744afSPavel Emelyanov 			NET_INC_STATS_BH(sock_net(sk),
1896de0744afSPavel Emelyanov 					LINUX_MIB_TCPABORTONMEMORY);
18971da177e4SLinus Torvalds 		}
18981da177e4SLinus Torvalds 	}
18991da177e4SLinus Torvalds 
19001da177e4SLinus Torvalds 	if (sk->sk_state == TCP_CLOSE)
19010a5578cfSArnaldo Carvalho de Melo 		inet_csk_destroy_sock(sk);
19021da177e4SLinus Torvalds 	/* Otherwise, socket is reprieved until protocol close. */
19031da177e4SLinus Torvalds 
19041da177e4SLinus Torvalds out:
19051da177e4SLinus Torvalds 	bh_unlock_sock(sk);
19061da177e4SLinus Torvalds 	local_bh_enable();
19071da177e4SLinus Torvalds 	sock_put(sk);
19081da177e4SLinus Torvalds }
19091da177e4SLinus Torvalds 
19101da177e4SLinus Torvalds /* These states need RST on ABORT according to RFC793 */
19111da177e4SLinus Torvalds 
19121da177e4SLinus Torvalds static inline int tcp_need_reset(int state)
19131da177e4SLinus Torvalds {
19141da177e4SLinus Torvalds 	return (1 << state) &
19151da177e4SLinus Torvalds 	       (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 |
19161da177e4SLinus Torvalds 		TCPF_FIN_WAIT2 | TCPF_SYN_RECV);
19171da177e4SLinus Torvalds }
19181da177e4SLinus Torvalds 
19191da177e4SLinus Torvalds int tcp_disconnect(struct sock *sk, int flags)
19201da177e4SLinus Torvalds {
19211da177e4SLinus Torvalds 	struct inet_sock *inet = inet_sk(sk);
1922463c84b9SArnaldo Carvalho de Melo 	struct inet_connection_sock *icsk = inet_csk(sk);
19231da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
19241da177e4SLinus Torvalds 	int err = 0;
19251da177e4SLinus Torvalds 	int old_state = sk->sk_state;
19261da177e4SLinus Torvalds 
19271da177e4SLinus Torvalds 	if (old_state != TCP_CLOSE)
19281da177e4SLinus Torvalds 		tcp_set_state(sk, TCP_CLOSE);
19291da177e4SLinus Torvalds 
19301da177e4SLinus Torvalds 	/* ABORT function of RFC793 */
19311da177e4SLinus Torvalds 	if (old_state == TCP_LISTEN) {
19320a5578cfSArnaldo Carvalho de Melo 		inet_csk_listen_stop(sk);
19331da177e4SLinus Torvalds 	} else if (tcp_need_reset(old_state) ||
19341da177e4SLinus Torvalds 		   (tp->snd_nxt != tp->write_seq &&
19351da177e4SLinus Torvalds 		    (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) {
1936caa20d9aSStephen Hemminger 		/* The last check adjusts for discrepancy of Linux wrt. RFC
19371da177e4SLinus Torvalds 		 * states
19381da177e4SLinus Torvalds 		 */
19391da177e4SLinus Torvalds 		tcp_send_active_reset(sk, gfp_any());
19401da177e4SLinus Torvalds 		sk->sk_err = ECONNRESET;
19411da177e4SLinus Torvalds 	} else if (old_state == TCP_SYN_SENT)
19421da177e4SLinus Torvalds 		sk->sk_err = ECONNRESET;
19431da177e4SLinus Torvalds 
19441da177e4SLinus Torvalds 	tcp_clear_xmit_timers(sk);
19451da177e4SLinus Torvalds 	__skb_queue_purge(&sk->sk_receive_queue);
1946fe067e8aSDavid S. Miller 	tcp_write_queue_purge(sk);
19471da177e4SLinus Torvalds 	__skb_queue_purge(&tp->out_of_order_queue);
19481a2449a8SChris Leech #ifdef CONFIG_NET_DMA
19491a2449a8SChris Leech 	__skb_queue_purge(&sk->sk_async_wait_queue);
19501a2449a8SChris Leech #endif
19511da177e4SLinus Torvalds 
19521da177e4SLinus Torvalds 	inet->dport = 0;
19531da177e4SLinus Torvalds 
19541da177e4SLinus Torvalds 	if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
19551da177e4SLinus Torvalds 		inet_reset_saddr(sk);
19561da177e4SLinus Torvalds 
19571da177e4SLinus Torvalds 	sk->sk_shutdown = 0;
19581da177e4SLinus Torvalds 	sock_reset_flag(sk, SOCK_DONE);
19591da177e4SLinus Torvalds 	tp->srtt = 0;
19601da177e4SLinus Torvalds 	if ((tp->write_seq += tp->max_window + 2) == 0)
19611da177e4SLinus Torvalds 		tp->write_seq = 1;
1962463c84b9SArnaldo Carvalho de Melo 	icsk->icsk_backoff = 0;
19631da177e4SLinus Torvalds 	tp->snd_cwnd = 2;
19646687e988SArnaldo Carvalho de Melo 	icsk->icsk_probes_out = 0;
19651da177e4SLinus Torvalds 	tp->packets_out = 0;
19661da177e4SLinus Torvalds 	tp->snd_ssthresh = 0x7fffffff;
19671da177e4SLinus Torvalds 	tp->snd_cwnd_cnt = 0;
19689772efb9SStephen Hemminger 	tp->bytes_acked = 0;
19696687e988SArnaldo Carvalho de Melo 	tcp_set_ca_state(sk, TCP_CA_Open);
19701da177e4SLinus Torvalds 	tcp_clear_retrans(tp);
1971463c84b9SArnaldo Carvalho de Melo 	inet_csk_delack_init(sk);
1972fe067e8aSDavid S. Miller 	tcp_init_send_head(sk);
1973b40b4f79SSrinivas Aji 	memset(&tp->rx_opt, 0, sizeof(tp->rx_opt));
19741da177e4SLinus Torvalds 	__sk_dst_reset(sk);
19751da177e4SLinus Torvalds 
1976*547b792cSIlpo Järvinen 	WARN_ON(inet->num && !icsk->icsk_bind_hash);
19771da177e4SLinus Torvalds 
19781da177e4SLinus Torvalds 	sk->sk_error_report(sk);
19791da177e4SLinus Torvalds 	return err;
19801da177e4SLinus Torvalds }
19811da177e4SLinus Torvalds 
19821da177e4SLinus Torvalds /*
19831da177e4SLinus Torvalds  *	Socket option code for TCP.
19841da177e4SLinus Torvalds  */
19853fdadf7dSDmitry Mishin static int do_tcp_setsockopt(struct sock *sk, int level,
19863fdadf7dSDmitry Mishin 		int optname, char __user *optval, int optlen)
19871da177e4SLinus Torvalds {
19881da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
1989463c84b9SArnaldo Carvalho de Melo 	struct inet_connection_sock *icsk = inet_csk(sk);
19901da177e4SLinus Torvalds 	int val;
19911da177e4SLinus Torvalds 	int err = 0;
19921da177e4SLinus Torvalds 
19935f8ef48dSStephen Hemminger 	/* This is a string value all the others are int's */
19945f8ef48dSStephen Hemminger 	if (optname == TCP_CONGESTION) {
19955f8ef48dSStephen Hemminger 		char name[TCP_CA_NAME_MAX];
19965f8ef48dSStephen Hemminger 
19975f8ef48dSStephen Hemminger 		if (optlen < 1)
19985f8ef48dSStephen Hemminger 			return -EINVAL;
19995f8ef48dSStephen Hemminger 
20005f8ef48dSStephen Hemminger 		val = strncpy_from_user(name, optval,
20015f8ef48dSStephen Hemminger 					min(TCP_CA_NAME_MAX-1, optlen));
20025f8ef48dSStephen Hemminger 		if (val < 0)
20035f8ef48dSStephen Hemminger 			return -EFAULT;
20045f8ef48dSStephen Hemminger 		name[val] = 0;
20055f8ef48dSStephen Hemminger 
20065f8ef48dSStephen Hemminger 		lock_sock(sk);
20076687e988SArnaldo Carvalho de Melo 		err = tcp_set_congestion_control(sk, name);
20085f8ef48dSStephen Hemminger 		release_sock(sk);
20095f8ef48dSStephen Hemminger 		return err;
20105f8ef48dSStephen Hemminger 	}
20115f8ef48dSStephen Hemminger 
20121da177e4SLinus Torvalds 	if (optlen < sizeof(int))
20131da177e4SLinus Torvalds 		return -EINVAL;
20141da177e4SLinus Torvalds 
20151da177e4SLinus Torvalds 	if (get_user(val, (int __user *)optval))
20161da177e4SLinus Torvalds 		return -EFAULT;
20171da177e4SLinus Torvalds 
20181da177e4SLinus Torvalds 	lock_sock(sk);
20191da177e4SLinus Torvalds 
20201da177e4SLinus Torvalds 	switch (optname) {
20211da177e4SLinus Torvalds 	case TCP_MAXSEG:
20221da177e4SLinus Torvalds 		/* Values greater than interface MTU won't take effect. However
20231da177e4SLinus Torvalds 		 * at the point when this call is done we typically don't yet
20241da177e4SLinus Torvalds 		 * know which interface is going to be used */
20251da177e4SLinus Torvalds 		if (val < 8 || val > MAX_TCP_WINDOW) {
20261da177e4SLinus Torvalds 			err = -EINVAL;
20271da177e4SLinus Torvalds 			break;
20281da177e4SLinus Torvalds 		}
20291da177e4SLinus Torvalds 		tp->rx_opt.user_mss = val;
20301da177e4SLinus Torvalds 		break;
20311da177e4SLinus Torvalds 
20321da177e4SLinus Torvalds 	case TCP_NODELAY:
20331da177e4SLinus Torvalds 		if (val) {
20341da177e4SLinus Torvalds 			/* TCP_NODELAY is weaker than TCP_CORK, so that
20351da177e4SLinus Torvalds 			 * this option on corked socket is remembered, but
20361da177e4SLinus Torvalds 			 * it is not activated until cork is cleared.
20371da177e4SLinus Torvalds 			 *
20381da177e4SLinus Torvalds 			 * However, when TCP_NODELAY is set we make
20391da177e4SLinus Torvalds 			 * an explicit push, which overrides even TCP_CORK
20401da177e4SLinus Torvalds 			 * for currently queued segments.
20411da177e4SLinus Torvalds 			 */
20421da177e4SLinus Torvalds 			tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH;
20439e412ba7SIlpo Järvinen 			tcp_push_pending_frames(sk);
20441da177e4SLinus Torvalds 		} else {
20451da177e4SLinus Torvalds 			tp->nonagle &= ~TCP_NAGLE_OFF;
20461da177e4SLinus Torvalds 		}
20471da177e4SLinus Torvalds 		break;
20481da177e4SLinus Torvalds 
20491da177e4SLinus Torvalds 	case TCP_CORK:
20501da177e4SLinus Torvalds 		/* When set indicates to always queue non-full frames.
20511da177e4SLinus Torvalds 		 * Later the user clears this option and we transmit
20521da177e4SLinus Torvalds 		 * any pending partial frames in the queue.  This is
20531da177e4SLinus Torvalds 		 * meant to be used alongside sendfile() to get properly
20541da177e4SLinus Torvalds 		 * filled frames when the user (for example) must write
20551da177e4SLinus Torvalds 		 * out headers with a write() call first and then use
20561da177e4SLinus Torvalds 		 * sendfile to send out the data parts.
20571da177e4SLinus Torvalds 		 *
20581da177e4SLinus Torvalds 		 * TCP_CORK can be set together with TCP_NODELAY and it is
20591da177e4SLinus Torvalds 		 * stronger than TCP_NODELAY.
20601da177e4SLinus Torvalds 		 */
20611da177e4SLinus Torvalds 		if (val) {
20621da177e4SLinus Torvalds 			tp->nonagle |= TCP_NAGLE_CORK;
20631da177e4SLinus Torvalds 		} else {
20641da177e4SLinus Torvalds 			tp->nonagle &= ~TCP_NAGLE_CORK;
20651da177e4SLinus Torvalds 			if (tp->nonagle&TCP_NAGLE_OFF)
20661da177e4SLinus Torvalds 				tp->nonagle |= TCP_NAGLE_PUSH;
20679e412ba7SIlpo Järvinen 			tcp_push_pending_frames(sk);
20681da177e4SLinus Torvalds 		}
20691da177e4SLinus Torvalds 		break;
20701da177e4SLinus Torvalds 
20711da177e4SLinus Torvalds 	case TCP_KEEPIDLE:
20721da177e4SLinus Torvalds 		if (val < 1 || val > MAX_TCP_KEEPIDLE)
20731da177e4SLinus Torvalds 			err = -EINVAL;
20741da177e4SLinus Torvalds 		else {
20751da177e4SLinus Torvalds 			tp->keepalive_time = val * HZ;
20761da177e4SLinus Torvalds 			if (sock_flag(sk, SOCK_KEEPOPEN) &&
20771da177e4SLinus Torvalds 			    !((1 << sk->sk_state) &
20781da177e4SLinus Torvalds 			      (TCPF_CLOSE | TCPF_LISTEN))) {
20791da177e4SLinus Torvalds 				__u32 elapsed = tcp_time_stamp - tp->rcv_tstamp;
20801da177e4SLinus Torvalds 				if (tp->keepalive_time > elapsed)
20811da177e4SLinus Torvalds 					elapsed = tp->keepalive_time - elapsed;
20821da177e4SLinus Torvalds 				else
20831da177e4SLinus Torvalds 					elapsed = 0;
2084463c84b9SArnaldo Carvalho de Melo 				inet_csk_reset_keepalive_timer(sk, elapsed);
20851da177e4SLinus Torvalds 			}
20861da177e4SLinus Torvalds 		}
20871da177e4SLinus Torvalds 		break;
20881da177e4SLinus Torvalds 	case TCP_KEEPINTVL:
20891da177e4SLinus Torvalds 		if (val < 1 || val > MAX_TCP_KEEPINTVL)
20901da177e4SLinus Torvalds 			err = -EINVAL;
20911da177e4SLinus Torvalds 		else
20921da177e4SLinus Torvalds 			tp->keepalive_intvl = val * HZ;
20931da177e4SLinus Torvalds 		break;
20941da177e4SLinus Torvalds 	case TCP_KEEPCNT:
20951da177e4SLinus Torvalds 		if (val < 1 || val > MAX_TCP_KEEPCNT)
20961da177e4SLinus Torvalds 			err = -EINVAL;
20971da177e4SLinus Torvalds 		else
20981da177e4SLinus Torvalds 			tp->keepalive_probes = val;
20991da177e4SLinus Torvalds 		break;
21001da177e4SLinus Torvalds 	case TCP_SYNCNT:
21011da177e4SLinus Torvalds 		if (val < 1 || val > MAX_TCP_SYNCNT)
21021da177e4SLinus Torvalds 			err = -EINVAL;
21031da177e4SLinus Torvalds 		else
2104463c84b9SArnaldo Carvalho de Melo 			icsk->icsk_syn_retries = val;
21051da177e4SLinus Torvalds 		break;
21061da177e4SLinus Torvalds 
21071da177e4SLinus Torvalds 	case TCP_LINGER2:
21081da177e4SLinus Torvalds 		if (val < 0)
21091da177e4SLinus Torvalds 			tp->linger2 = -1;
21101da177e4SLinus Torvalds 		else if (val > sysctl_tcp_fin_timeout / HZ)
21111da177e4SLinus Torvalds 			tp->linger2 = 0;
21121da177e4SLinus Torvalds 		else
21131da177e4SLinus Torvalds 			tp->linger2 = val * HZ;
21141da177e4SLinus Torvalds 		break;
21151da177e4SLinus Torvalds 
21161da177e4SLinus Torvalds 	case TCP_DEFER_ACCEPT:
2117ec0a1966SDavid S. Miller 		icsk->icsk_accept_queue.rskq_defer_accept = 0;
2118ec0a1966SDavid S. Miller 		if (val > 0) {
2119ec0a1966SDavid S. Miller 			/* Translate value in seconds to number of
2120ec0a1966SDavid S. Miller 			 * retransmits */
2121ec0a1966SDavid S. Miller 			while (icsk->icsk_accept_queue.rskq_defer_accept < 32 &&
2122ec0a1966SDavid S. Miller 			       val > ((TCP_TIMEOUT_INIT / HZ) <<
2123ec0a1966SDavid S. Miller 				       icsk->icsk_accept_queue.rskq_defer_accept))
2124ec0a1966SDavid S. Miller 				icsk->icsk_accept_queue.rskq_defer_accept++;
2125ec0a1966SDavid S. Miller 			icsk->icsk_accept_queue.rskq_defer_accept++;
21261da177e4SLinus Torvalds 		}
21271da177e4SLinus Torvalds 		break;
21281da177e4SLinus Torvalds 
21291da177e4SLinus Torvalds 	case TCP_WINDOW_CLAMP:
21301da177e4SLinus Torvalds 		if (!val) {
21311da177e4SLinus Torvalds 			if (sk->sk_state != TCP_CLOSE) {
21321da177e4SLinus Torvalds 				err = -EINVAL;
21331da177e4SLinus Torvalds 				break;
21341da177e4SLinus Torvalds 			}
21351da177e4SLinus Torvalds 			tp->window_clamp = 0;
21361da177e4SLinus Torvalds 		} else
21371da177e4SLinus Torvalds 			tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
21381da177e4SLinus Torvalds 						SOCK_MIN_RCVBUF / 2 : val;
21391da177e4SLinus Torvalds 		break;
21401da177e4SLinus Torvalds 
21411da177e4SLinus Torvalds 	case TCP_QUICKACK:
21421da177e4SLinus Torvalds 		if (!val) {
2143463c84b9SArnaldo Carvalho de Melo 			icsk->icsk_ack.pingpong = 1;
21441da177e4SLinus Torvalds 		} else {
2145463c84b9SArnaldo Carvalho de Melo 			icsk->icsk_ack.pingpong = 0;
21461da177e4SLinus Torvalds 			if ((1 << sk->sk_state) &
21471da177e4SLinus Torvalds 			    (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) &&
2148463c84b9SArnaldo Carvalho de Melo 			    inet_csk_ack_scheduled(sk)) {
2149463c84b9SArnaldo Carvalho de Melo 				icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
21500e4b4992SChris Leech 				tcp_cleanup_rbuf(sk, 1);
21511da177e4SLinus Torvalds 				if (!(val & 1))
2152463c84b9SArnaldo Carvalho de Melo 					icsk->icsk_ack.pingpong = 1;
21531da177e4SLinus Torvalds 			}
21541da177e4SLinus Torvalds 		}
21551da177e4SLinus Torvalds 		break;
21561da177e4SLinus Torvalds 
2157cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG
2158cfb6eeb4SYOSHIFUJI Hideaki 	case TCP_MD5SIG:
2159cfb6eeb4SYOSHIFUJI Hideaki 		/* Read the IP->Key mappings from userspace */
2160cfb6eeb4SYOSHIFUJI Hideaki 		err = tp->af_specific->md5_parse(sk, optval, optlen);
2161cfb6eeb4SYOSHIFUJI Hideaki 		break;
2162cfb6eeb4SYOSHIFUJI Hideaki #endif
2163cfb6eeb4SYOSHIFUJI Hideaki 
21641da177e4SLinus Torvalds 	default:
21651da177e4SLinus Torvalds 		err = -ENOPROTOOPT;
21661da177e4SLinus Torvalds 		break;
21673ff50b79SStephen Hemminger 	}
21683ff50b79SStephen Hemminger 
21691da177e4SLinus Torvalds 	release_sock(sk);
21701da177e4SLinus Torvalds 	return err;
21711da177e4SLinus Torvalds }
21721da177e4SLinus Torvalds 
21733fdadf7dSDmitry Mishin int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
21743fdadf7dSDmitry Mishin 		   int optlen)
21753fdadf7dSDmitry Mishin {
21763fdadf7dSDmitry Mishin 	struct inet_connection_sock *icsk = inet_csk(sk);
21773fdadf7dSDmitry Mishin 
21783fdadf7dSDmitry Mishin 	if (level != SOL_TCP)
21793fdadf7dSDmitry Mishin 		return icsk->icsk_af_ops->setsockopt(sk, level, optname,
21803fdadf7dSDmitry Mishin 						     optval, optlen);
21813fdadf7dSDmitry Mishin 	return do_tcp_setsockopt(sk, level, optname, optval, optlen);
21823fdadf7dSDmitry Mishin }
21833fdadf7dSDmitry Mishin 
21843fdadf7dSDmitry Mishin #ifdef CONFIG_COMPAT
2185543d9cfeSArnaldo Carvalho de Melo int compat_tcp_setsockopt(struct sock *sk, int level, int optname,
2186543d9cfeSArnaldo Carvalho de Melo 			  char __user *optval, int optlen)
21873fdadf7dSDmitry Mishin {
2188dec73ff0SArnaldo Carvalho de Melo 	if (level != SOL_TCP)
2189dec73ff0SArnaldo Carvalho de Melo 		return inet_csk_compat_setsockopt(sk, level, optname,
2190dec73ff0SArnaldo Carvalho de Melo 						  optval, optlen);
21913fdadf7dSDmitry Mishin 	return do_tcp_setsockopt(sk, level, optname, optval, optlen);
21923fdadf7dSDmitry Mishin }
2193543d9cfeSArnaldo Carvalho de Melo 
2194543d9cfeSArnaldo Carvalho de Melo EXPORT_SYMBOL(compat_tcp_setsockopt);
21953fdadf7dSDmitry Mishin #endif
21963fdadf7dSDmitry Mishin 
21971da177e4SLinus Torvalds /* Return information about state of tcp endpoint in API format. */
21981da177e4SLinus Torvalds void tcp_get_info(struct sock *sk, struct tcp_info *info)
21991da177e4SLinus Torvalds {
22001da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
2201463c84b9SArnaldo Carvalho de Melo 	const struct inet_connection_sock *icsk = inet_csk(sk);
22021da177e4SLinus Torvalds 	u32 now = tcp_time_stamp;
22031da177e4SLinus Torvalds 
22041da177e4SLinus Torvalds 	memset(info, 0, sizeof(*info));
22051da177e4SLinus Torvalds 
22061da177e4SLinus Torvalds 	info->tcpi_state = sk->sk_state;
22076687e988SArnaldo Carvalho de Melo 	info->tcpi_ca_state = icsk->icsk_ca_state;
2208463c84b9SArnaldo Carvalho de Melo 	info->tcpi_retransmits = icsk->icsk_retransmits;
22096687e988SArnaldo Carvalho de Melo 	info->tcpi_probes = icsk->icsk_probes_out;
2210463c84b9SArnaldo Carvalho de Melo 	info->tcpi_backoff = icsk->icsk_backoff;
22111da177e4SLinus Torvalds 
22121da177e4SLinus Torvalds 	if (tp->rx_opt.tstamp_ok)
22131da177e4SLinus Torvalds 		info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
2214e60402d0SIlpo Järvinen 	if (tcp_is_sack(tp))
22151da177e4SLinus Torvalds 		info->tcpi_options |= TCPI_OPT_SACK;
22161da177e4SLinus Torvalds 	if (tp->rx_opt.wscale_ok) {
22171da177e4SLinus Torvalds 		info->tcpi_options |= TCPI_OPT_WSCALE;
22181da177e4SLinus Torvalds 		info->tcpi_snd_wscale = tp->rx_opt.snd_wscale;
22191da177e4SLinus Torvalds 		info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale;
22201da177e4SLinus Torvalds 	}
22211da177e4SLinus Torvalds 
22221da177e4SLinus Torvalds 	if (tp->ecn_flags&TCP_ECN_OK)
22231da177e4SLinus Torvalds 		info->tcpi_options |= TCPI_OPT_ECN;
22241da177e4SLinus Torvalds 
2225463c84b9SArnaldo Carvalho de Melo 	info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);
2226463c84b9SArnaldo Carvalho de Melo 	info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato);
2227c1b4a7e6SDavid S. Miller 	info->tcpi_snd_mss = tp->mss_cache;
2228463c84b9SArnaldo Carvalho de Melo 	info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
22291da177e4SLinus Torvalds 
22305ee3afbaSRick Jones 	if (sk->sk_state == TCP_LISTEN) {
22315ee3afbaSRick Jones 		info->tcpi_unacked = sk->sk_ack_backlog;
22325ee3afbaSRick Jones 		info->tcpi_sacked = sk->sk_max_ack_backlog;
22335ee3afbaSRick Jones 	} else {
22341da177e4SLinus Torvalds 		info->tcpi_unacked = tp->packets_out;
22351da177e4SLinus Torvalds 		info->tcpi_sacked = tp->sacked_out;
22365ee3afbaSRick Jones 	}
22371da177e4SLinus Torvalds 	info->tcpi_lost = tp->lost_out;
22381da177e4SLinus Torvalds 	info->tcpi_retrans = tp->retrans_out;
22391da177e4SLinus Torvalds 	info->tcpi_fackets = tp->fackets_out;
22401da177e4SLinus Torvalds 
22411da177e4SLinus Torvalds 	info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime);
2242463c84b9SArnaldo Carvalho de Melo 	info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime);
22431da177e4SLinus Torvalds 	info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp);
22441da177e4SLinus Torvalds 
2245d83d8461SArnaldo Carvalho de Melo 	info->tcpi_pmtu = icsk->icsk_pmtu_cookie;
22461da177e4SLinus Torvalds 	info->tcpi_rcv_ssthresh = tp->rcv_ssthresh;
22471da177e4SLinus Torvalds 	info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3;
22481da177e4SLinus Torvalds 	info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2;
22491da177e4SLinus Torvalds 	info->tcpi_snd_ssthresh = tp->snd_ssthresh;
22501da177e4SLinus Torvalds 	info->tcpi_snd_cwnd = tp->snd_cwnd;
22511da177e4SLinus Torvalds 	info->tcpi_advmss = tp->advmss;
22521da177e4SLinus Torvalds 	info->tcpi_reordering = tp->reordering;
22531da177e4SLinus Torvalds 
22541da177e4SLinus Torvalds 	info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3;
22551da177e4SLinus Torvalds 	info->tcpi_rcv_space = tp->rcvq_space.space;
22561da177e4SLinus Torvalds 
22571da177e4SLinus Torvalds 	info->tcpi_total_retrans = tp->total_retrans;
22581da177e4SLinus Torvalds }
22591da177e4SLinus Torvalds 
22601da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(tcp_get_info);
22611da177e4SLinus Torvalds 
22623fdadf7dSDmitry Mishin static int do_tcp_getsockopt(struct sock *sk, int level,
22633fdadf7dSDmitry Mishin 		int optname, char __user *optval, int __user *optlen)
22641da177e4SLinus Torvalds {
2265295f7324SArnaldo Carvalho de Melo 	struct inet_connection_sock *icsk = inet_csk(sk);
22661da177e4SLinus Torvalds 	struct tcp_sock *tp = tcp_sk(sk);
22671da177e4SLinus Torvalds 	int val, len;
22681da177e4SLinus Torvalds 
22691da177e4SLinus Torvalds 	if (get_user(len, optlen))
22701da177e4SLinus Torvalds 		return -EFAULT;
22711da177e4SLinus Torvalds 
22721da177e4SLinus Torvalds 	len = min_t(unsigned int, len, sizeof(int));
22731da177e4SLinus Torvalds 
22741da177e4SLinus Torvalds 	if (len < 0)
22751da177e4SLinus Torvalds 		return -EINVAL;
22761da177e4SLinus Torvalds 
22771da177e4SLinus Torvalds 	switch (optname) {
22781da177e4SLinus Torvalds 	case TCP_MAXSEG:
2279c1b4a7e6SDavid S. Miller 		val = tp->mss_cache;
22801da177e4SLinus Torvalds 		if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
22811da177e4SLinus Torvalds 			val = tp->rx_opt.user_mss;
22821da177e4SLinus Torvalds 		break;
22831da177e4SLinus Torvalds 	case TCP_NODELAY:
22841da177e4SLinus Torvalds 		val = !!(tp->nonagle&TCP_NAGLE_OFF);
22851da177e4SLinus Torvalds 		break;
22861da177e4SLinus Torvalds 	case TCP_CORK:
22871da177e4SLinus Torvalds 		val = !!(tp->nonagle&TCP_NAGLE_CORK);
22881da177e4SLinus Torvalds 		break;
22891da177e4SLinus Torvalds 	case TCP_KEEPIDLE:
22901da177e4SLinus Torvalds 		val = (tp->keepalive_time ? : sysctl_tcp_keepalive_time) / HZ;
22911da177e4SLinus Torvalds 		break;
22921da177e4SLinus Torvalds 	case TCP_KEEPINTVL:
22931da177e4SLinus Torvalds 		val = (tp->keepalive_intvl ? : sysctl_tcp_keepalive_intvl) / HZ;
22941da177e4SLinus Torvalds 		break;
22951da177e4SLinus Torvalds 	case TCP_KEEPCNT:
22961da177e4SLinus Torvalds 		val = tp->keepalive_probes ? : sysctl_tcp_keepalive_probes;
22971da177e4SLinus Torvalds 		break;
22981da177e4SLinus Torvalds 	case TCP_SYNCNT:
2299295f7324SArnaldo Carvalho de Melo 		val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
23001da177e4SLinus Torvalds 		break;
23011da177e4SLinus Torvalds 	case TCP_LINGER2:
23021da177e4SLinus Torvalds 		val = tp->linger2;
23031da177e4SLinus Torvalds 		if (val >= 0)
23041da177e4SLinus Torvalds 			val = (val ? : sysctl_tcp_fin_timeout) / HZ;
23051da177e4SLinus Torvalds 		break;
23061da177e4SLinus Torvalds 	case TCP_DEFER_ACCEPT:
2307ec0a1966SDavid S. Miller 		val = !icsk->icsk_accept_queue.rskq_defer_accept ? 0 :
2308ec0a1966SDavid S. Miller 			((TCP_TIMEOUT_INIT / HZ) << (icsk->icsk_accept_queue.rskq_defer_accept - 1));
23091da177e4SLinus Torvalds 		break;
23101da177e4SLinus Torvalds 	case TCP_WINDOW_CLAMP:
23111da177e4SLinus Torvalds 		val = tp->window_clamp;
23121da177e4SLinus Torvalds 		break;
23131da177e4SLinus Torvalds 	case TCP_INFO: {
23141da177e4SLinus Torvalds 		struct tcp_info info;
23151da177e4SLinus Torvalds 
23161da177e4SLinus Torvalds 		if (get_user(len, optlen))
23171da177e4SLinus Torvalds 			return -EFAULT;
23181da177e4SLinus Torvalds 
23191da177e4SLinus Torvalds 		tcp_get_info(sk, &info);
23201da177e4SLinus Torvalds 
23211da177e4SLinus Torvalds 		len = min_t(unsigned int, len, sizeof(info));
23221da177e4SLinus Torvalds 		if (put_user(len, optlen))
23231da177e4SLinus Torvalds 			return -EFAULT;
23241da177e4SLinus Torvalds 		if (copy_to_user(optval, &info, len))
23251da177e4SLinus Torvalds 			return -EFAULT;
23261da177e4SLinus Torvalds 		return 0;
23271da177e4SLinus Torvalds 	}
23281da177e4SLinus Torvalds 	case TCP_QUICKACK:
2329295f7324SArnaldo Carvalho de Melo 		val = !icsk->icsk_ack.pingpong;
23301da177e4SLinus Torvalds 		break;
23315f8ef48dSStephen Hemminger 
23325f8ef48dSStephen Hemminger 	case TCP_CONGESTION:
23335f8ef48dSStephen Hemminger 		if (get_user(len, optlen))
23345f8ef48dSStephen Hemminger 			return -EFAULT;
23355f8ef48dSStephen Hemminger 		len = min_t(unsigned int, len, TCP_CA_NAME_MAX);
23365f8ef48dSStephen Hemminger 		if (put_user(len, optlen))
23375f8ef48dSStephen Hemminger 			return -EFAULT;
23386687e988SArnaldo Carvalho de Melo 		if (copy_to_user(optval, icsk->icsk_ca_ops->name, len))
23395f8ef48dSStephen Hemminger 			return -EFAULT;
23405f8ef48dSStephen Hemminger 		return 0;
23411da177e4SLinus Torvalds 	default:
23421da177e4SLinus Torvalds 		return -ENOPROTOOPT;
23433ff50b79SStephen Hemminger 	}
23441da177e4SLinus Torvalds 
23451da177e4SLinus Torvalds 	if (put_user(len, optlen))
23461da177e4SLinus Torvalds 		return -EFAULT;
23471da177e4SLinus Torvalds 	if (copy_to_user(optval, &val, len))
23481da177e4SLinus Torvalds 		return -EFAULT;
23491da177e4SLinus Torvalds 	return 0;
23501da177e4SLinus Torvalds }
23511da177e4SLinus Torvalds 
23523fdadf7dSDmitry Mishin int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval,
23533fdadf7dSDmitry Mishin 		   int __user *optlen)
23543fdadf7dSDmitry Mishin {
23553fdadf7dSDmitry Mishin 	struct inet_connection_sock *icsk = inet_csk(sk);
23563fdadf7dSDmitry Mishin 
23573fdadf7dSDmitry Mishin 	if (level != SOL_TCP)
23583fdadf7dSDmitry Mishin 		return icsk->icsk_af_ops->getsockopt(sk, level, optname,
23593fdadf7dSDmitry Mishin 						     optval, optlen);
23603fdadf7dSDmitry Mishin 	return do_tcp_getsockopt(sk, level, optname, optval, optlen);
23613fdadf7dSDmitry Mishin }
23623fdadf7dSDmitry Mishin 
23633fdadf7dSDmitry Mishin #ifdef CONFIG_COMPAT
2364543d9cfeSArnaldo Carvalho de Melo int compat_tcp_getsockopt(struct sock *sk, int level, int optname,
2365543d9cfeSArnaldo Carvalho de Melo 			  char __user *optval, int __user *optlen)
23663fdadf7dSDmitry Mishin {
2367dec73ff0SArnaldo Carvalho de Melo 	if (level != SOL_TCP)
2368dec73ff0SArnaldo Carvalho de Melo 		return inet_csk_compat_getsockopt(sk, level, optname,
2369dec73ff0SArnaldo Carvalho de Melo 						  optval, optlen);
23703fdadf7dSDmitry Mishin 	return do_tcp_getsockopt(sk, level, optname, optval, optlen);
23713fdadf7dSDmitry Mishin }
2372543d9cfeSArnaldo Carvalho de Melo 
2373543d9cfeSArnaldo Carvalho de Melo EXPORT_SYMBOL(compat_tcp_getsockopt);
23743fdadf7dSDmitry Mishin #endif
23751da177e4SLinus Torvalds 
2376576a30ebSHerbert Xu struct sk_buff *tcp_tso_segment(struct sk_buff *skb, int features)
2377f4c50d99SHerbert Xu {
2378f4c50d99SHerbert Xu 	struct sk_buff *segs = ERR_PTR(-EINVAL);
2379f4c50d99SHerbert Xu 	struct tcphdr *th;
2380f4c50d99SHerbert Xu 	unsigned thlen;
2381f4c50d99SHerbert Xu 	unsigned int seq;
2382d3bc23e7SAl Viro 	__be32 delta;
2383f4c50d99SHerbert Xu 	unsigned int oldlen;
2384f4c50d99SHerbert Xu 	unsigned int len;
2385f4c50d99SHerbert Xu 
2386f4c50d99SHerbert Xu 	if (!pskb_may_pull(skb, sizeof(*th)))
2387f4c50d99SHerbert Xu 		goto out;
2388f4c50d99SHerbert Xu 
2389aa8223c7SArnaldo Carvalho de Melo 	th = tcp_hdr(skb);
2390f4c50d99SHerbert Xu 	thlen = th->doff * 4;
2391f4c50d99SHerbert Xu 	if (thlen < sizeof(*th))
2392f4c50d99SHerbert Xu 		goto out;
2393f4c50d99SHerbert Xu 
2394f4c50d99SHerbert Xu 	if (!pskb_may_pull(skb, thlen))
2395f4c50d99SHerbert Xu 		goto out;
2396f4c50d99SHerbert Xu 
23970718bcc0SHerbert Xu 	oldlen = (u16)~skb->len;
2398f4c50d99SHerbert Xu 	__skb_pull(skb, thlen);
2399f4c50d99SHerbert Xu 
24003820c3f3SHerbert Xu 	if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
24013820c3f3SHerbert Xu 		/* Packet is from an untrusted source, reset gso_segs. */
2402bbcf467dSHerbert Xu 		int type = skb_shinfo(skb)->gso_type;
2403bbcf467dSHerbert Xu 		int mss;
24043820c3f3SHerbert Xu 
2405bbcf467dSHerbert Xu 		if (unlikely(type &
2406bbcf467dSHerbert Xu 			     ~(SKB_GSO_TCPV4 |
2407bbcf467dSHerbert Xu 			       SKB_GSO_DODGY |
2408bbcf467dSHerbert Xu 			       SKB_GSO_TCP_ECN |
2409bbcf467dSHerbert Xu 			       SKB_GSO_TCPV6 |
2410bbcf467dSHerbert Xu 			       0) ||
2411bbcf467dSHerbert Xu 			     !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))))
2412bbcf467dSHerbert Xu 			goto out;
2413bbcf467dSHerbert Xu 
2414bbcf467dSHerbert Xu 		mss = skb_shinfo(skb)->gso_size;
2415172589ccSIlpo Järvinen 		skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
24163820c3f3SHerbert Xu 
24173820c3f3SHerbert Xu 		segs = NULL;
24183820c3f3SHerbert Xu 		goto out;
24193820c3f3SHerbert Xu 	}
24203820c3f3SHerbert Xu 
2421576a30ebSHerbert Xu 	segs = skb_segment(skb, features);
2422f4c50d99SHerbert Xu 	if (IS_ERR(segs))
2423f4c50d99SHerbert Xu 		goto out;
2424f4c50d99SHerbert Xu 
2425f4c50d99SHerbert Xu 	len = skb_shinfo(skb)->gso_size;
24260718bcc0SHerbert Xu 	delta = htonl(oldlen + (thlen + len));
2427f4c50d99SHerbert Xu 
2428f4c50d99SHerbert Xu 	skb = segs;
2429aa8223c7SArnaldo Carvalho de Melo 	th = tcp_hdr(skb);
2430f4c50d99SHerbert Xu 	seq = ntohl(th->seq);
2431f4c50d99SHerbert Xu 
2432f4c50d99SHerbert Xu 	do {
2433f4c50d99SHerbert Xu 		th->fin = th->psh = 0;
2434f4c50d99SHerbert Xu 
2435d3bc23e7SAl Viro 		th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2436d3bc23e7SAl Viro 				       (__force u32)delta));
243784fa7933SPatrick McHardy 		if (skb->ip_summed != CHECKSUM_PARTIAL)
24389c70220bSArnaldo Carvalho de Melo 			th->check =
24399c70220bSArnaldo Carvalho de Melo 			     csum_fold(csum_partial(skb_transport_header(skb),
24409c70220bSArnaldo Carvalho de Melo 						    thlen, skb->csum));
2441f4c50d99SHerbert Xu 
2442f4c50d99SHerbert Xu 		seq += len;
2443f4c50d99SHerbert Xu 		skb = skb->next;
2444aa8223c7SArnaldo Carvalho de Melo 		th = tcp_hdr(skb);
2445f4c50d99SHerbert Xu 
2446f4c50d99SHerbert Xu 		th->seq = htonl(seq);
2447f4c50d99SHerbert Xu 		th->cwr = 0;
2448f4c50d99SHerbert Xu 	} while (skb->next);
2449f4c50d99SHerbert Xu 
245027a884dcSArnaldo Carvalho de Melo 	delta = htonl(oldlen + (skb->tail - skb->transport_header) +
24519c70220bSArnaldo Carvalho de Melo 		      skb->data_len);
2452d3bc23e7SAl Viro 	th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2453d3bc23e7SAl Viro 				(__force u32)delta));
245484fa7933SPatrick McHardy 	if (skb->ip_summed != CHECKSUM_PARTIAL)
24559c70220bSArnaldo Carvalho de Melo 		th->check = csum_fold(csum_partial(skb_transport_header(skb),
24569c70220bSArnaldo Carvalho de Melo 						   thlen, skb->csum));
2457f4c50d99SHerbert Xu 
2458f4c50d99SHerbert Xu out:
2459f4c50d99SHerbert Xu 	return segs;
2460f4c50d99SHerbert Xu }
2461adcfc7d0SHerbert Xu EXPORT_SYMBOL(tcp_tso_segment);
2462f4c50d99SHerbert Xu 
2463cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG
2464cfb6eeb4SYOSHIFUJI Hideaki static unsigned long tcp_md5sig_users;
2465cfb6eeb4SYOSHIFUJI Hideaki static struct tcp_md5sig_pool **tcp_md5sig_pool;
2466cfb6eeb4SYOSHIFUJI Hideaki static DEFINE_SPINLOCK(tcp_md5sig_pool_lock);
2467cfb6eeb4SYOSHIFUJI Hideaki 
2468cfb6eeb4SYOSHIFUJI Hideaki static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool **pool)
2469cfb6eeb4SYOSHIFUJI Hideaki {
2470cfb6eeb4SYOSHIFUJI Hideaki 	int cpu;
2471cfb6eeb4SYOSHIFUJI Hideaki 	for_each_possible_cpu(cpu) {
2472cfb6eeb4SYOSHIFUJI Hideaki 		struct tcp_md5sig_pool *p = *per_cpu_ptr(pool, cpu);
2473cfb6eeb4SYOSHIFUJI Hideaki 		if (p) {
2474cfb6eeb4SYOSHIFUJI Hideaki 			if (p->md5_desc.tfm)
2475cfb6eeb4SYOSHIFUJI Hideaki 				crypto_free_hash(p->md5_desc.tfm);
2476cfb6eeb4SYOSHIFUJI Hideaki 			kfree(p);
2477cfb6eeb4SYOSHIFUJI Hideaki 			p = NULL;
2478cfb6eeb4SYOSHIFUJI Hideaki 		}
2479cfb6eeb4SYOSHIFUJI Hideaki 	}
2480cfb6eeb4SYOSHIFUJI Hideaki 	free_percpu(pool);
2481cfb6eeb4SYOSHIFUJI Hideaki }
2482cfb6eeb4SYOSHIFUJI Hideaki 
2483cfb6eeb4SYOSHIFUJI Hideaki void tcp_free_md5sig_pool(void)
2484cfb6eeb4SYOSHIFUJI Hideaki {
2485cfb6eeb4SYOSHIFUJI Hideaki 	struct tcp_md5sig_pool **pool = NULL;
2486cfb6eeb4SYOSHIFUJI Hideaki 
24872c4f6219SDavid S. Miller 	spin_lock_bh(&tcp_md5sig_pool_lock);
2488cfb6eeb4SYOSHIFUJI Hideaki 	if (--tcp_md5sig_users == 0) {
2489cfb6eeb4SYOSHIFUJI Hideaki 		pool = tcp_md5sig_pool;
2490cfb6eeb4SYOSHIFUJI Hideaki 		tcp_md5sig_pool = NULL;
2491cfb6eeb4SYOSHIFUJI Hideaki 	}
24922c4f6219SDavid S. Miller 	spin_unlock_bh(&tcp_md5sig_pool_lock);
2493cfb6eeb4SYOSHIFUJI Hideaki 	if (pool)
2494cfb6eeb4SYOSHIFUJI Hideaki 		__tcp_free_md5sig_pool(pool);
2495cfb6eeb4SYOSHIFUJI Hideaki }
2496cfb6eeb4SYOSHIFUJI Hideaki 
2497cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(tcp_free_md5sig_pool);
2498cfb6eeb4SYOSHIFUJI Hideaki 
2499f5b99bcdSAdrian Bunk static struct tcp_md5sig_pool **__tcp_alloc_md5sig_pool(void)
2500cfb6eeb4SYOSHIFUJI Hideaki {
2501cfb6eeb4SYOSHIFUJI Hideaki 	int cpu;
2502cfb6eeb4SYOSHIFUJI Hideaki 	struct tcp_md5sig_pool **pool;
2503cfb6eeb4SYOSHIFUJI Hideaki 
2504cfb6eeb4SYOSHIFUJI Hideaki 	pool = alloc_percpu(struct tcp_md5sig_pool *);
2505cfb6eeb4SYOSHIFUJI Hideaki 	if (!pool)
2506cfb6eeb4SYOSHIFUJI Hideaki 		return NULL;
2507cfb6eeb4SYOSHIFUJI Hideaki 
2508cfb6eeb4SYOSHIFUJI Hideaki 	for_each_possible_cpu(cpu) {
2509cfb6eeb4SYOSHIFUJI Hideaki 		struct tcp_md5sig_pool *p;
2510cfb6eeb4SYOSHIFUJI Hideaki 		struct crypto_hash *hash;
2511cfb6eeb4SYOSHIFUJI Hideaki 
2512cfb6eeb4SYOSHIFUJI Hideaki 		p = kzalloc(sizeof(*p), GFP_KERNEL);
2513cfb6eeb4SYOSHIFUJI Hideaki 		if (!p)
2514cfb6eeb4SYOSHIFUJI Hideaki 			goto out_free;
2515cfb6eeb4SYOSHIFUJI Hideaki 		*per_cpu_ptr(pool, cpu) = p;
2516cfb6eeb4SYOSHIFUJI Hideaki 
2517cfb6eeb4SYOSHIFUJI Hideaki 		hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
2518cfb6eeb4SYOSHIFUJI Hideaki 		if (!hash || IS_ERR(hash))
2519cfb6eeb4SYOSHIFUJI Hideaki 			goto out_free;
2520cfb6eeb4SYOSHIFUJI Hideaki 
2521cfb6eeb4SYOSHIFUJI Hideaki 		p->md5_desc.tfm = hash;
2522cfb6eeb4SYOSHIFUJI Hideaki 	}
2523cfb6eeb4SYOSHIFUJI Hideaki 	return pool;
2524cfb6eeb4SYOSHIFUJI Hideaki out_free:
2525cfb6eeb4SYOSHIFUJI Hideaki 	__tcp_free_md5sig_pool(pool);
2526cfb6eeb4SYOSHIFUJI Hideaki 	return NULL;
2527cfb6eeb4SYOSHIFUJI Hideaki }
2528cfb6eeb4SYOSHIFUJI Hideaki 
2529cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool **tcp_alloc_md5sig_pool(void)
2530cfb6eeb4SYOSHIFUJI Hideaki {
2531cfb6eeb4SYOSHIFUJI Hideaki 	struct tcp_md5sig_pool **pool;
2532cfb6eeb4SYOSHIFUJI Hideaki 	int alloc = 0;
2533cfb6eeb4SYOSHIFUJI Hideaki 
2534cfb6eeb4SYOSHIFUJI Hideaki retry:
25352c4f6219SDavid S. Miller 	spin_lock_bh(&tcp_md5sig_pool_lock);
2536cfb6eeb4SYOSHIFUJI Hideaki 	pool = tcp_md5sig_pool;
2537cfb6eeb4SYOSHIFUJI Hideaki 	if (tcp_md5sig_users++ == 0) {
2538cfb6eeb4SYOSHIFUJI Hideaki 		alloc = 1;
25392c4f6219SDavid S. Miller 		spin_unlock_bh(&tcp_md5sig_pool_lock);
2540cfb6eeb4SYOSHIFUJI Hideaki 	} else if (!pool) {
2541cfb6eeb4SYOSHIFUJI Hideaki 		tcp_md5sig_users--;
25422c4f6219SDavid S. Miller 		spin_unlock_bh(&tcp_md5sig_pool_lock);
2543cfb6eeb4SYOSHIFUJI Hideaki 		cpu_relax();
2544cfb6eeb4SYOSHIFUJI Hideaki 		goto retry;
2545cfb6eeb4SYOSHIFUJI Hideaki 	} else
25462c4f6219SDavid S. Miller 		spin_unlock_bh(&tcp_md5sig_pool_lock);
2547cfb6eeb4SYOSHIFUJI Hideaki 
2548cfb6eeb4SYOSHIFUJI Hideaki 	if (alloc) {
2549cfb6eeb4SYOSHIFUJI Hideaki 		/* we cannot hold spinlock here because this may sleep. */
2550cfb6eeb4SYOSHIFUJI Hideaki 		struct tcp_md5sig_pool **p = __tcp_alloc_md5sig_pool();
25512c4f6219SDavid S. Miller 		spin_lock_bh(&tcp_md5sig_pool_lock);
2552cfb6eeb4SYOSHIFUJI Hideaki 		if (!p) {
2553cfb6eeb4SYOSHIFUJI Hideaki 			tcp_md5sig_users--;
25542c4f6219SDavid S. Miller 			spin_unlock_bh(&tcp_md5sig_pool_lock);
2555cfb6eeb4SYOSHIFUJI Hideaki 			return NULL;
2556cfb6eeb4SYOSHIFUJI Hideaki 		}
2557cfb6eeb4SYOSHIFUJI Hideaki 		pool = tcp_md5sig_pool;
2558cfb6eeb4SYOSHIFUJI Hideaki 		if (pool) {
2559cfb6eeb4SYOSHIFUJI Hideaki 			/* oops, it has already been assigned. */
25602c4f6219SDavid S. Miller 			spin_unlock_bh(&tcp_md5sig_pool_lock);
2561cfb6eeb4SYOSHIFUJI Hideaki 			__tcp_free_md5sig_pool(p);
2562cfb6eeb4SYOSHIFUJI Hideaki 		} else {
2563cfb6eeb4SYOSHIFUJI Hideaki 			tcp_md5sig_pool = pool = p;
25642c4f6219SDavid S. Miller 			spin_unlock_bh(&tcp_md5sig_pool_lock);
2565cfb6eeb4SYOSHIFUJI Hideaki 		}
2566cfb6eeb4SYOSHIFUJI Hideaki 	}
2567cfb6eeb4SYOSHIFUJI Hideaki 	return pool;
2568cfb6eeb4SYOSHIFUJI Hideaki }
2569cfb6eeb4SYOSHIFUJI Hideaki 
2570cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(tcp_alloc_md5sig_pool);
2571cfb6eeb4SYOSHIFUJI Hideaki 
2572cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_pool *__tcp_get_md5sig_pool(int cpu)
2573cfb6eeb4SYOSHIFUJI Hideaki {
2574cfb6eeb4SYOSHIFUJI Hideaki 	struct tcp_md5sig_pool **p;
25752c4f6219SDavid S. Miller 	spin_lock_bh(&tcp_md5sig_pool_lock);
2576cfb6eeb4SYOSHIFUJI Hideaki 	p = tcp_md5sig_pool;
2577cfb6eeb4SYOSHIFUJI Hideaki 	if (p)
2578cfb6eeb4SYOSHIFUJI Hideaki 		tcp_md5sig_users++;
25792c4f6219SDavid S. Miller 	spin_unlock_bh(&tcp_md5sig_pool_lock);
2580cfb6eeb4SYOSHIFUJI Hideaki 	return (p ? *per_cpu_ptr(p, cpu) : NULL);
2581cfb6eeb4SYOSHIFUJI Hideaki }
2582cfb6eeb4SYOSHIFUJI Hideaki 
2583cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(__tcp_get_md5sig_pool);
2584cfb6eeb4SYOSHIFUJI Hideaki 
25856931ba7cSDavid S. Miller void __tcp_put_md5sig_pool(void)
25866931ba7cSDavid S. Miller {
25876931ba7cSDavid S. Miller 	tcp_free_md5sig_pool();
2588cfb6eeb4SYOSHIFUJI Hideaki }
2589cfb6eeb4SYOSHIFUJI Hideaki 
2590cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL(__tcp_put_md5sig_pool);
259149a72dfbSAdam Langley 
259249a72dfbSAdam Langley int tcp_md5_hash_header(struct tcp_md5sig_pool *hp,
259349a72dfbSAdam Langley 			struct tcphdr *th)
259449a72dfbSAdam Langley {
259549a72dfbSAdam Langley 	struct scatterlist sg;
259649a72dfbSAdam Langley 	int err;
259749a72dfbSAdam Langley 
259849a72dfbSAdam Langley 	__sum16 old_checksum = th->check;
259949a72dfbSAdam Langley 	th->check = 0;
260049a72dfbSAdam Langley 	/* options aren't included in the hash */
260149a72dfbSAdam Langley 	sg_init_one(&sg, th, sizeof(struct tcphdr));
260249a72dfbSAdam Langley 	err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(struct tcphdr));
260349a72dfbSAdam Langley 	th->check = old_checksum;
260449a72dfbSAdam Langley 	return err;
260549a72dfbSAdam Langley }
260649a72dfbSAdam Langley 
260749a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_header);
260849a72dfbSAdam Langley 
260949a72dfbSAdam Langley int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp,
261049a72dfbSAdam Langley 			  struct sk_buff *skb, unsigned header_len)
261149a72dfbSAdam Langley {
261249a72dfbSAdam Langley 	struct scatterlist sg;
261349a72dfbSAdam Langley 	const struct tcphdr *tp = tcp_hdr(skb);
261449a72dfbSAdam Langley 	struct hash_desc *desc = &hp->md5_desc;
261549a72dfbSAdam Langley 	unsigned i;
261649a72dfbSAdam Langley 	const unsigned head_data_len = skb_headlen(skb) > header_len ?
261749a72dfbSAdam Langley 				       skb_headlen(skb) - header_len : 0;
261849a72dfbSAdam Langley 	const struct skb_shared_info *shi = skb_shinfo(skb);
261949a72dfbSAdam Langley 
262049a72dfbSAdam Langley 	sg_init_table(&sg, 1);
262149a72dfbSAdam Langley 
262249a72dfbSAdam Langley 	sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len);
262349a72dfbSAdam Langley 	if (crypto_hash_update(desc, &sg, head_data_len))
262449a72dfbSAdam Langley 		return 1;
262549a72dfbSAdam Langley 
262649a72dfbSAdam Langley 	for (i = 0; i < shi->nr_frags; ++i) {
262749a72dfbSAdam Langley 		const struct skb_frag_struct *f = &shi->frags[i];
262849a72dfbSAdam Langley 		sg_set_page(&sg, f->page, f->size, f->page_offset);
262949a72dfbSAdam Langley 		if (crypto_hash_update(desc, &sg, f->size))
263049a72dfbSAdam Langley 			return 1;
263149a72dfbSAdam Langley 	}
263249a72dfbSAdam Langley 
263349a72dfbSAdam Langley 	return 0;
263449a72dfbSAdam Langley }
263549a72dfbSAdam Langley 
263649a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_skb_data);
263749a72dfbSAdam Langley 
263849a72dfbSAdam Langley int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, struct tcp_md5sig_key *key)
263949a72dfbSAdam Langley {
264049a72dfbSAdam Langley 	struct scatterlist sg;
264149a72dfbSAdam Langley 
264249a72dfbSAdam Langley 	sg_init_one(&sg, key->key, key->keylen);
264349a72dfbSAdam Langley 	return crypto_hash_update(&hp->md5_desc, &sg, key->keylen);
264449a72dfbSAdam Langley }
264549a72dfbSAdam Langley 
264649a72dfbSAdam Langley EXPORT_SYMBOL(tcp_md5_hash_key);
264749a72dfbSAdam Langley 
2648cfb6eeb4SYOSHIFUJI Hideaki #endif
2649cfb6eeb4SYOSHIFUJI Hideaki 
26504ac02babSAndi Kleen void tcp_done(struct sock *sk)
26514ac02babSAndi Kleen {
26524ac02babSAndi Kleen 	if(sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV)
265363231bddSPavel Emelyanov 		TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS);
26544ac02babSAndi Kleen 
26554ac02babSAndi Kleen 	tcp_set_state(sk, TCP_CLOSE);
26564ac02babSAndi Kleen 	tcp_clear_xmit_timers(sk);
26574ac02babSAndi Kleen 
26584ac02babSAndi Kleen 	sk->sk_shutdown = SHUTDOWN_MASK;
26594ac02babSAndi Kleen 
26604ac02babSAndi Kleen 	if (!sock_flag(sk, SOCK_DEAD))
26614ac02babSAndi Kleen 		sk->sk_state_change(sk);
26624ac02babSAndi Kleen 	else
26634ac02babSAndi Kleen 		inet_csk_destroy_sock(sk);
26644ac02babSAndi Kleen }
26654ac02babSAndi Kleen EXPORT_SYMBOL_GPL(tcp_done);
26664ac02babSAndi Kleen 
26675f8ef48dSStephen Hemminger extern struct tcp_congestion_ops tcp_reno;
26681da177e4SLinus Torvalds 
26691da177e4SLinus Torvalds static __initdata unsigned long thash_entries;
26701da177e4SLinus Torvalds static int __init set_thash_entries(char *str)
26711da177e4SLinus Torvalds {
26721da177e4SLinus Torvalds 	if (!str)
26731da177e4SLinus Torvalds 		return 0;
26741da177e4SLinus Torvalds 	thash_entries = simple_strtoul(str, &str, 0);
26751da177e4SLinus Torvalds 	return 1;
26761da177e4SLinus Torvalds }
26771da177e4SLinus Torvalds __setup("thash_entries=", set_thash_entries);
26781da177e4SLinus Torvalds 
26791da177e4SLinus Torvalds void __init tcp_init(void)
26801da177e4SLinus Torvalds {
26811da177e4SLinus Torvalds 	struct sk_buff *skb = NULL;
268257413ebcSMiquel van Smoorenburg 	unsigned long nr_pages, limit;
26837b4f4b5eSJohn Heffner 	int order, i, max_share;
26841da177e4SLinus Torvalds 
26851f9e636eSPavel Emelyanov 	BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
26861da177e4SLinus Torvalds 
26876e04e021SArnaldo Carvalho de Melo 	tcp_hashinfo.bind_bucket_cachep =
26886e04e021SArnaldo Carvalho de Melo 		kmem_cache_create("tcp_bind_bucket",
26896e04e021SArnaldo Carvalho de Melo 				  sizeof(struct inet_bind_bucket), 0,
269020c2df83SPaul Mundt 				  SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
26911da177e4SLinus Torvalds 
26921da177e4SLinus Torvalds 	/* Size and allocate the main established and bind bucket
26931da177e4SLinus Torvalds 	 * hash tables.
26941da177e4SLinus Torvalds 	 *
26951da177e4SLinus Torvalds 	 * The methodology is similar to that of the buffer cache.
26961da177e4SLinus Torvalds 	 */
26976e04e021SArnaldo Carvalho de Melo 	tcp_hashinfo.ehash =
26981da177e4SLinus Torvalds 		alloc_large_system_hash("TCP established",
26990f7ff927SArnaldo Carvalho de Melo 					sizeof(struct inet_ehash_bucket),
27001da177e4SLinus Torvalds 					thash_entries,
27011da177e4SLinus Torvalds 					(num_physpages >= 128 * 1024) ?
270218955cfcSMike Stroyan 					13 : 15,
27039e950efaSJohn Heffner 					0,
27046e04e021SArnaldo Carvalho de Melo 					&tcp_hashinfo.ehash_size,
27051da177e4SLinus Torvalds 					NULL,
27060ccfe618SJean Delvare 					thash_entries ? 0 : 512 * 1024);
2707dbca9b27SEric Dumazet 	tcp_hashinfo.ehash_size = 1 << tcp_hashinfo.ehash_size;
2708dbca9b27SEric Dumazet 	for (i = 0; i < tcp_hashinfo.ehash_size; i++) {
27096e04e021SArnaldo Carvalho de Melo 		INIT_HLIST_HEAD(&tcp_hashinfo.ehash[i].chain);
2710dbca9b27SEric Dumazet 		INIT_HLIST_HEAD(&tcp_hashinfo.ehash[i].twchain);
27111da177e4SLinus Torvalds 	}
2712230140cfSEric Dumazet 	if (inet_ehash_locks_alloc(&tcp_hashinfo))
2713230140cfSEric Dumazet 		panic("TCP: failed to alloc ehash_locks");
27146e04e021SArnaldo Carvalho de Melo 	tcp_hashinfo.bhash =
27151da177e4SLinus Torvalds 		alloc_large_system_hash("TCP bind",
27160f7ff927SArnaldo Carvalho de Melo 					sizeof(struct inet_bind_hashbucket),
27176e04e021SArnaldo Carvalho de Melo 					tcp_hashinfo.ehash_size,
27181da177e4SLinus Torvalds 					(num_physpages >= 128 * 1024) ?
271918955cfcSMike Stroyan 					13 : 15,
27209e950efaSJohn Heffner 					0,
27216e04e021SArnaldo Carvalho de Melo 					&tcp_hashinfo.bhash_size,
27221da177e4SLinus Torvalds 					NULL,
27231da177e4SLinus Torvalds 					64 * 1024);
27246e04e021SArnaldo Carvalho de Melo 	tcp_hashinfo.bhash_size = 1 << tcp_hashinfo.bhash_size;
27256e04e021SArnaldo Carvalho de Melo 	for (i = 0; i < tcp_hashinfo.bhash_size; i++) {
27266e04e021SArnaldo Carvalho de Melo 		spin_lock_init(&tcp_hashinfo.bhash[i].lock);
27276e04e021SArnaldo Carvalho de Melo 		INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain);
27281da177e4SLinus Torvalds 	}
27291da177e4SLinus Torvalds 
27301da177e4SLinus Torvalds 	/* Try to be a bit smarter and adjust defaults depending
27311da177e4SLinus Torvalds 	 * on available memory.
27321da177e4SLinus Torvalds 	 */
27331da177e4SLinus Torvalds 	for (order = 0; ((1 << order) << PAGE_SHIFT) <
27346e04e021SArnaldo Carvalho de Melo 			(tcp_hashinfo.bhash_size * sizeof(struct inet_bind_hashbucket));
27351da177e4SLinus Torvalds 			order++)
27361da177e4SLinus Torvalds 		;
2737e7626486SAndi Kleen 	if (order >= 4) {
2738295ff7edSArnaldo Carvalho de Melo 		tcp_death_row.sysctl_max_tw_buckets = 180000;
27391da177e4SLinus Torvalds 		sysctl_tcp_max_orphans = 4096 << (order - 4);
27401da177e4SLinus Torvalds 		sysctl_max_syn_backlog = 1024;
27411da177e4SLinus Torvalds 	} else if (order < 3) {
2742295ff7edSArnaldo Carvalho de Melo 		tcp_death_row.sysctl_max_tw_buckets >>= (3 - order);
27431da177e4SLinus Torvalds 		sysctl_tcp_max_orphans >>= (3 - order);
27441da177e4SLinus Torvalds 		sysctl_max_syn_backlog = 128;
27451da177e4SLinus Torvalds 	}
27461da177e4SLinus Torvalds 
274753cdcc04SJohn Heffner 	/* Set the pressure threshold to be a fraction of global memory that
274853cdcc04SJohn Heffner 	 * is up to 1/2 at 256 MB, decreasing toward zero with the amount of
274953cdcc04SJohn Heffner 	 * memory, with a floor of 128 pages.
275053cdcc04SJohn Heffner 	 */
275157413ebcSMiquel van Smoorenburg 	nr_pages = totalram_pages - totalhigh_pages;
275257413ebcSMiquel van Smoorenburg 	limit = min(nr_pages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT);
275357413ebcSMiquel van Smoorenburg 	limit = (limit * (nr_pages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11);
275453cdcc04SJohn Heffner 	limit = max(limit, 128UL);
275553cdcc04SJohn Heffner 	sysctl_tcp_mem[0] = limit / 4 * 3;
275653cdcc04SJohn Heffner 	sysctl_tcp_mem[1] = limit;
275752bf376cSJohn Heffner 	sysctl_tcp_mem[2] = sysctl_tcp_mem[0] * 2;
27581da177e4SLinus Torvalds 
275953cdcc04SJohn Heffner 	/* Set per-socket limits to no more than 1/128 the pressure threshold */
27607b4f4b5eSJohn Heffner 	limit = ((unsigned long)sysctl_tcp_mem[1]) << (PAGE_SHIFT - 7);
27617b4f4b5eSJohn Heffner 	max_share = min(4UL*1024*1024, limit);
27627b4f4b5eSJohn Heffner 
27633ab224beSHideo Aoki 	sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;
27647b4f4b5eSJohn Heffner 	sysctl_tcp_wmem[1] = 16*1024;
27657b4f4b5eSJohn Heffner 	sysctl_tcp_wmem[2] = max(64*1024, max_share);
27667b4f4b5eSJohn Heffner 
27673ab224beSHideo Aoki 	sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
27687b4f4b5eSJohn Heffner 	sysctl_tcp_rmem[1] = 87380;
27697b4f4b5eSJohn Heffner 	sysctl_tcp_rmem[2] = max(87380, max_share);
27701da177e4SLinus Torvalds 
27711da177e4SLinus Torvalds 	printk(KERN_INFO "TCP: Hash tables configured "
27721da177e4SLinus Torvalds 	       "(established %d bind %d)\n",
2773dbca9b27SEric Dumazet 	       tcp_hashinfo.ehash_size, tcp_hashinfo.bhash_size);
2774317a76f9SStephen Hemminger 
2775317a76f9SStephen Hemminger 	tcp_register_congestion_control(&tcp_reno);
27761da177e4SLinus Torvalds }
27771da177e4SLinus Torvalds 
27781da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_close);
27791da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_disconnect);
27801da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_getsockopt);
27811da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_ioctl);
27821da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_poll);
27831da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_read_sock);
27841da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_recvmsg);
27851da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sendmsg);
27869c55e01cSJens Axboe EXPORT_SYMBOL(tcp_splice_read);
27871da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sendpage);
27881da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_setsockopt);
27891da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_shutdown);
2790