blob: 7fab414e361414ea74247f3f3545eec20d45ebc9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Implementation of the Transmission Control Protocol(TCP).
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Mark Evans, <evansmp@uhura.aston.ac.uk>
11 * Corey Minyard <wf-rch!minyard@relay.EU.net>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
14 * Linus Torvalds, <torvalds@cs.helsinki.fi>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Matthew Dillon, <dillon@apollo.west.oic.com>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Jorge Cwik, <jorge@laser.satlink.net>
19 *
20 * Fixes:
21 * Alan Cox : Numerous verify_area() calls
22 * Alan Cox : Set the ACK bit on a reset
23 * Alan Cox : Stopped it crashing if it closed while
24 * sk->inuse=1 and was trying to connect
25 * (tcp_err()).
26 * Alan Cox : All icmp error handling was broken
27 * pointers passed where wrong and the
28 * socket was looked up backwards. Nobody
29 * tested any icmp error code obviously.
30 * Alan Cox : tcp_err() now handled properly. It
31 * wakes people on errors. poll
32 * behaves and the icmp error race
33 * has gone by moving it into sock.c
34 * Alan Cox : tcp_send_reset() fixed to work for
35 * everything not just packets for
36 * unknown sockets.
37 * Alan Cox : tcp option processing.
38 * Alan Cox : Reset tweaked (still not 100%) [Had
39 * syn rule wrong]
40 * Herp Rosmanith : More reset fixes
41 * Alan Cox : No longer acks invalid rst frames.
42 * Acking any kind of RST is right out.
43 * Alan Cox : Sets an ignore me flag on an rst
44 * receive otherwise odd bits of prattle
45 * escape still
46 * Alan Cox : Fixed another acking RST frame bug.
47 * Should stop LAN workplace lockups.
48 * Alan Cox : Some tidyups using the new skb list
49 * facilities
50 * Alan Cox : sk->keepopen now seems to work
51 * Alan Cox : Pulls options out correctly on accepts
52 * Alan Cox : Fixed assorted sk->rqueue->next errors
53 * Alan Cox : PSH doesn't end a TCP read. Switched a
54 * bit to skb ops.
55 * Alan Cox : Tidied tcp_data to avoid a potential
56 * nasty.
57 * Alan Cox : Added some better commenting, as the
58 * tcp is hard to follow
59 * Alan Cox : Removed incorrect check for 20 * psh
60 * Michael O'Reilly : ack < copied bug fix.
61 * Johannes Stille : Misc tcp fixes (not all in yet).
62 * Alan Cox : FIN with no memory -> CRASH
63 * Alan Cox : Added socket option proto entries.
64 * Also added awareness of them to accept.
65 * Alan Cox : Added TCP options (SOL_TCP)
66 * Alan Cox : Switched wakeup calls to callbacks,
67 * so the kernel can layer network
68 * sockets.
69 * Alan Cox : Use ip_tos/ip_ttl settings.
70 * Alan Cox : Handle FIN (more) properly (we hope).
71 * Alan Cox : RST frames sent on unsynchronised
72 * state ack error.
73 * Alan Cox : Put in missing check for SYN bit.
74 * Alan Cox : Added tcp_select_window() aka NET2E
75 * window non shrink trick.
76 * Alan Cox : Added a couple of small NET2E timer
77 * fixes
78 * Charles Hedrick : TCP fixes
79 * Toomas Tamm : TCP window fixes
80 * Alan Cox : Small URG fix to rlogin ^C ack fight
81 * Charles Hedrick : Rewrote most of it to actually work
82 * Linus : Rewrote tcp_read() and URG handling
83 * completely
84 * Gerhard Koerting: Fixed some missing timer handling
85 * Matthew Dillon : Reworked TCP machine states as per RFC
86 * Gerhard Koerting: PC/TCP workarounds
87 * Adam Caldwell : Assorted timer/timing errors
88 * Matthew Dillon : Fixed another RST bug
89 * Alan Cox : Move to kernel side addressing changes.
90 * Alan Cox : Beginning work on TCP fastpathing
91 * (not yet usable)
92 * Arnt Gulbrandsen: Turbocharged tcp_check() routine.
93 * Alan Cox : TCP fast path debugging
94 * Alan Cox : Window clamping
95 * Michael Riepe : Bug in tcp_check()
96 * Matt Dillon : More TCP improvements and RST bug fixes
97 * Matt Dillon : Yet more small nasties remove from the
98 * TCP code (Be very nice to this man if
99 * tcp finally works 100%) 8)
100 * Alan Cox : BSD accept semantics.
101 * Alan Cox : Reset on closedown bug.
102 * Peter De Schrijver : ENOTCONN check missing in tcp_sendto().
103 * Michael Pall : Handle poll() after URG properly in
104 * all cases.
105 * Michael Pall : Undo the last fix in tcp_read_urg()
106 * (multi URG PUSH broke rlogin).
107 * Michael Pall : Fix the multi URG PUSH problem in
108 * tcp_readable(), poll() after URG
109 * works now.
110 * Michael Pall : recv(...,MSG_OOB) never blocks in the
111 * BSD api.
112 * Alan Cox : Changed the semantics of sk->socket to
113 * fix a race and a signal problem with
114 * accept() and async I/O.
115 * Alan Cox : Relaxed the rules on tcp_sendto().
116 * Yury Shevchuk : Really fixed accept() blocking problem.
117 * Craig I. Hagan : Allow for BSD compatible TIME_WAIT for
118 * clients/servers which listen in on
119 * fixed ports.
120 * Alan Cox : Cleaned the above up and shrank it to
121 * a sensible code size.
122 * Alan Cox : Self connect lockup fix.
123 * Alan Cox : No connect to multicast.
124 * Ross Biro : Close unaccepted children on master
125 * socket close.
126 * Alan Cox : Reset tracing code.
127 * Alan Cox : Spurious resets on shutdown.
128 * Alan Cox : Giant 15 minute/60 second timer error
129 * Alan Cox : Small whoops in polling before an
130 * accept.
131 * Alan Cox : Kept the state trace facility since
132 * it's handy for debugging.
133 * Alan Cox : More reset handler fixes.
134 * Alan Cox : Started rewriting the code based on
135 * the RFC's for other useful protocol
136 * references see: Comer, KA9Q NOS, and
137 * for a reference on the difference
138 * between specifications and how BSD
139 * works see the 4.4lite source.
140 * A.N.Kuznetsov : Don't time wait on completion of tidy
141 * close.
142 * Linus Torvalds : Fin/Shutdown & copied_seq changes.
143 * Linus Torvalds : Fixed BSD port reuse to work first syn
144 * Alan Cox : Reimplemented timers as per the RFC
145 * and using multiple timers for sanity.
146 * Alan Cox : Small bug fixes, and a lot of new
147 * comments.
148 * Alan Cox : Fixed dual reader crash by locking
149 * the buffers (much like datagram.c)
150 * Alan Cox : Fixed stuck sockets in probe. A probe
151 * now gets fed up of retrying without
152 * (even a no space) answer.
153 * Alan Cox : Extracted closing code better
154 * Alan Cox : Fixed the closing state machine to
155 * resemble the RFC.
156 * Alan Cox : More 'per spec' fixes.
157 * Jorge Cwik : Even faster checksumming.
158 * Alan Cox : tcp_data() doesn't ack illegal PSH
159 * only frames. At least one pc tcp stack
160 * generates them.
161 * Alan Cox : Cache last socket.
162 * Alan Cox : Per route irtt.
163 * Matt Day : poll()->select() match BSD precisely on error
164 * Alan Cox : New buffers
165 * Marc Tamsky : Various sk->prot->retransmits and
166 * sk->retransmits misupdating fixed.
167 * Fixed tcp_write_timeout: stuck close,
168 * and TCP syn retries gets used now.
169 * Mark Yarvis : In tcp_read_wakeup(), don't send an
170 * ack if state is TCP_CLOSED.
171 * Alan Cox : Look up device on a retransmit - routes may
172 * change. Doesn't yet cope with MSS shrink right
173 * but it's a start!
174 * Marc Tamsky : Closing in closing fixes.
175 * Mike Shaver : RFC1122 verifications.
176 * Alan Cox : rcv_saddr errors.
177 * Alan Cox : Block double connect().
178 * Alan Cox : Small hooks for enSKIP.
179 * Alexey Kuznetsov: Path MTU discovery.
180 * Alan Cox : Support soft errors.
181 * Alan Cox : Fix MTU discovery pathological case
182 * when the remote claims no mtu!
183 * Marc Tamsky : TCP_CLOSE fix.
184 * Colin (G3TNE) : Send a reset on syn ack replies in
185 * window but wrong (fixes NT lpd problems)
186 * Pedro Roque : Better TCP window handling, delayed ack.
187 * Joerg Reuter : No modification of locked buffers in
188 * tcp_do_retransmit()
189 * Eric Schenk : Changed receiver side silly window
190 * avoidance algorithm to BSD style
191 * algorithm. This doubles throughput
192 * against machines running Solaris,
193 * and seems to result in general
194 * improvement.
195 * Stefan Magdalinski : adjusted tcp_readable() to fix FIONREAD
196 * Willy Konynenberg : Transparent proxying support.
197 * Mike McLagan : Routing by source
198 * Keith Owens : Do proper merging with partial SKB's in
199 * tcp_do_sendmsg to avoid burstiness.
200 * Eric Schenk : Fix fast close down bug with
201 * shutdown() followed by close().
202 * Andi Kleen : Make poll agree with SIGIO
203 * Salvatore Sanfilippo : Support SO_LINGER with linger == 1 and
204 * lingertime == 0 (RFC 793 ABORT Call)
205 * Hirokazu Takahashi : Use copy_from_user() instead of
206 * csum_and_copy_from_user() if possible.
207 *
208 * This program is free software; you can redistribute it and/or
209 * modify it under the terms of the GNU General Public License
210 * as published by the Free Software Foundation; either version
211 * 2 of the License, or(at your option) any later version.
212 *
213 * Description of States:
214 *
215 * TCP_SYN_SENT sent a connection request, waiting for ack
216 *
217 * TCP_SYN_RECV received a connection request, sent ack,
218 * waiting for final ack in three-way handshake.
219 *
220 * TCP_ESTABLISHED connection established
221 *
222 * TCP_FIN_WAIT1 our side has shutdown, waiting to complete
223 * transmission of remaining buffered data
224 *
225 * TCP_FIN_WAIT2 all buffered data sent, waiting for remote
226 * to shutdown
227 *
228 * TCP_CLOSING both sides have shutdown but we still have
229 * data we have to finish sending
230 *
231 * TCP_TIME_WAIT timeout to catch resent junk before entering
232 * closed, can only be entered from FIN_WAIT2
233 * or CLOSING. Required because the other end
234 * may not have gotten our last ACK causing it
235 * to retransmit the data packet (which we ignore)
236 *
237 * TCP_CLOSE_WAIT remote side has shutdown and is waiting for
238 * us to finish writing our data and to shutdown
239 * (we have to close() to move on to LAST_ACK)
240 *
241 * TCP_LAST_ACK out side has shutdown after remote has
242 * shutdown. There may still be data in our
243 * buffer that we have to finish sending
244 *
245 * TCP_CLOSE socket is finished
246 */
247
Joe Perchesafd465032012-03-12 07:03:32 +0000248#define pr_fmt(fmt) "TCP: " fmt
249
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700250#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#include <linux/module.h>
252#include <linux/types.h>
253#include <linux/fcntl.h>
254#include <linux/poll.h>
255#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#include <linux/fs.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800257#include <linux/skbuff.h>
Andrew Morton81b23b42008-07-03 03:22:02 -0700258#include <linux/scatterlist.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800259#include <linux/splice.h>
260#include <linux/net.h>
261#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#include <linux/random.h>
263#include <linux/bootmem.h>
Miquel van Smoorenburg57413eb2008-06-27 17:23:57 -0700264#include <linux/highmem.h>
265#include <linux/swap.h>
David S. Millerb8059ea2006-03-25 01:36:56 -0800266#include <linux/cache.h>
Herbert Xuf4c50d92006-06-22 03:02:40 -0700267#include <linux/err.h>
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800268#include <linux/crypto.h>
William Allen Simpsonda5c78c2009-12-02 18:12:09 +0000269#include <linux/time.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900270#include <linux/slab.h>
Mike Chan5a0b3542009-01-07 11:40:42 -0800271#include <linux/uid_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273#include <net/icmp.h>
274#include <net/tcp.h>
275#include <net/xfrm.h>
276#include <net/ip.h>
Robert Love2365d052008-05-12 17:08:29 -0400277#include <net/ip6_route.h>
278#include <net/ipv6.h>
279#include <net/transp_v6.h>
Chris Leech1a2449a2006-05-23 18:05:53 -0700280#include <net/netdma.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800281#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283#include <asm/uaccess.h>
284#include <asm/ioctls.h>
285
Brian Haleyab32ea52006-09-22 14:15:41 -0700286int sysctl_tcp_fin_timeout __read_mostly = TCP_FIN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Eric Dumazetdd24c002008-11-25 21:17:14 -0800288struct percpu_counter tcp_orphan_count;
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -0700289EXPORT_SYMBOL_GPL(tcp_orphan_count);
290
David S. Millerb8059ea2006-03-25 01:36:56 -0800291int sysctl_tcp_wmem[3] __read_mostly;
292int sysctl_tcp_rmem[3] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294EXPORT_SYMBOL(sysctl_tcp_rmem);
295EXPORT_SYMBOL(sysctl_tcp_wmem);
296
Ravi Joshiee51cf02013-07-25 19:04:17 -0700297int sysctl_tcp_delack_seg __read_mostly = TCP_DELACK_SEG;
298EXPORT_SYMBOL(sysctl_tcp_delack_seg);
299
300int sysctl_tcp_use_userconfig __read_mostly;
301EXPORT_SYMBOL(sysctl_tcp_use_userconfig);
302
Eric Dumazet8d987e52010-11-09 23:24:26 +0000303atomic_long_t tcp_memory_allocated; /* Current allocated memory. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304EXPORT_SYMBOL(tcp_memory_allocated);
Eric Dumazet17483762008-11-25 21:16:35 -0800305
306/*
307 * Current number of TCP sockets.
308 */
309struct percpu_counter tcp_sockets_allocated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310EXPORT_SYMBOL(tcp_sockets_allocated);
311
312/*
Jens Axboe9c55e012007-11-06 23:30:13 -0800313 * TCP splice context
314 */
315struct tcp_splice_state {
316 struct pipe_inode_info *pipe;
317 size_t len;
318 unsigned int flags;
319};
320
321/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * Pressure flag: try to collapse.
323 * Technical note: it is used by multiple contexts non atomically.
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800324 * All the __sk_mem_schedule() is of this nature: accounting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * is strict, actions are advisory and have some latency.
326 */
Eric Dumazet4103f8c2007-03-27 13:58:31 -0700327int tcp_memory_pressure __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328EXPORT_SYMBOL(tcp_memory_pressure);
329
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700330void tcp_enter_memory_pressure(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 if (!tcp_memory_pressure) {
Pavel Emelyanov4e673442008-07-16 20:30:14 -0700333 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMEMORYPRESSURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 tcp_memory_pressure = 1;
335 }
336}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337EXPORT_SYMBOL(tcp_enter_memory_pressure);
338
Julian Anastasovb103cf32009-10-19 10:10:40 +0000339/* Convert seconds to retransmits based on initial and max timeout */
340static u8 secs_to_retrans(int seconds, int timeout, int rto_max)
341{
342 u8 res = 0;
343
344 if (seconds > 0) {
345 int period = timeout;
346
347 res = 1;
348 while (seconds > period && res < 255) {
349 res++;
350 timeout <<= 1;
351 if (timeout > rto_max)
352 timeout = rto_max;
353 period += timeout;
354 }
355 }
356 return res;
357}
358
359/* Convert retransmits to seconds based on initial and max timeout */
360static int retrans_to_secs(u8 retrans, int timeout, int rto_max)
361{
362 int period = 0;
363
364 if (retrans > 0) {
365 period = timeout;
366 while (--retrans) {
367 timeout <<= 1;
368 if (timeout > rto_max)
369 timeout = rto_max;
370 period += timeout;
371 }
372 }
373 return period;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * Wait for a TCP event.
378 *
379 * Note that we don't need to lock the socket, as the upper poll layers
380 * take care of normal races (between the test and the event) and we don't
381 * go look at any of the socket buffers directly.
382 */
383unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
384{
385 unsigned int mask;
386 struct sock *sk = sock->sk;
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400387 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Eric Dumazetaa395142010-04-20 13:03:51 +0000389 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (sk->sk_state == TCP_LISTEN)
Arnaldo Carvalho de Melodc40c7b2005-08-23 21:52:58 -0700391 return inet_csk_listen_poll(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* Socket is not locked. We are protected from async events
Will Newton70efce22008-07-16 20:13:43 -0700394 * by poll logic and correct handling of state changes
395 * made by other threads is impossible in any case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
397
398 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /*
401 * POLLHUP is certainly not done right. But poll() doesn't
402 * have a notion of HUP in just one direction, and for a
403 * socket the read side is more interesting.
404 *
405 * Some poll() documentation says that POLLHUP is incompatible
406 * with the POLLOUT/POLLWR flags, so somebody should check this
407 * all. But careful, it tends to be safer to return too many
408 * bits than too few, and you can easily break real applications
409 * if you don't tell them that something has hung up!
410 *
411 * Check-me.
412 *
413 * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and
414 * our fs/select.c). It means that after we received EOF,
415 * poll always returns immediately, making impossible poll() on write()
416 * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP
417 * if and only if shutdown has been made in both directions.
418 * Actually, it is interesting to look how Solaris and DUX
Will Newton70efce22008-07-16 20:13:43 -0700419 * solve this dilemma. I would prefer, if POLLHUP were maskable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * then we could set it on SND_SHUTDOWN. BTW examples given
421 * in Stevens' books assume exactly this behaviour, it explains
Will Newton70efce22008-07-16 20:13:43 -0700422 * why POLLHUP is incompatible with POLLOUT. --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 *
424 * NOTE. Check for TCP_CLOSE is added. The goal is to prevent
425 * blocking on fresh not-connected or disconnected socket. --ANK
426 */
427 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == TCP_CLOSE)
428 mask |= POLLHUP;
429 if (sk->sk_shutdown & RCV_SHUTDOWN)
Davide Libenzif348d702006-03-25 03:07:39 -0800430 mask |= POLLIN | POLLRDNORM | POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* Connected? */
433 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV)) {
David S. Millerc7004482008-10-06 10:43:54 -0700434 int target = sock_rcvlowat(sk, 0, INT_MAX);
435
436 if (tp->urg_seq == tp->copied_seq &&
437 !sock_flag(sk, SOCK_URGINLINE) &&
438 tp->urg_data)
Alexandra Kossovskyb634f872010-03-18 20:29:24 -0700439 target++;
David S. Millerc7004482008-10-06 10:43:54 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Potential race condition. If read of tp below will
442 * escape above sk->sk_state, we can be illegally awaken
443 * in SYN_* states. */
David S. Millerc7004482008-10-06 10:43:54 -0700444 if (tp->rcv_nxt - tp->copied_seq >= target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 mask |= POLLIN | POLLRDNORM;
446
447 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
448 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
449 mask |= POLLOUT | POLLWRNORM;
450 } else { /* send SIGIO later */
451 set_bit(SOCK_ASYNC_NOSPACE,
452 &sk->sk_socket->flags);
453 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
454
455 /* Race breaker. If space is freed after
456 * wspace test but before the flags are set,
457 * IO signal will be lost.
458 */
459 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
460 mask |= POLLOUT | POLLWRNORM;
461 }
KOSAKI Motohirod84ba632010-08-24 16:05:48 +0000462 } else
463 mask |= POLLOUT | POLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (tp->urg_data & TCP_URG_VALID)
466 mask |= POLLPRI;
467 }
Tom Marshalla4d25802010-09-20 15:42:05 -0700468 /* This barrier is coupled with smp_wmb() in tcp_reset() */
469 smp_rmb();
470 if (sk->sk_err)
471 mask |= POLLERR;
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return mask;
474}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000475EXPORT_SYMBOL(tcp_poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
478{
479 struct tcp_sock *tp = tcp_sk(sk);
480 int answ;
481
482 switch (cmd) {
483 case SIOCINQ:
484 if (sk->sk_state == TCP_LISTEN)
485 return -EINVAL;
486
487 lock_sock(sk);
488 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
489 answ = 0;
490 else if (sock_flag(sk, SOCK_URGINLINE) ||
491 !tp->urg_data ||
492 before(tp->urg_seq, tp->copied_seq) ||
493 !before(tp->urg_seq, tp->rcv_nxt)) {
David S. Miller91521942009-05-28 21:35:47 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 answ = tp->rcv_nxt - tp->copied_seq;
496
Eric Dumazet6bfa3862012-10-18 09:14:12 +0000497 /* Subtract 1, if FIN was received */
498 if (answ && sock_flag(sk, SOCK_DONE))
499 answ--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 } else
501 answ = tp->urg_seq - tp->copied_seq;
502 release_sock(sk);
503 break;
504 case SIOCATMARK:
505 answ = tp->urg_data && tp->urg_seq == tp->copied_seq;
506 break;
507 case SIOCOUTQ:
508 if (sk->sk_state == TCP_LISTEN)
509 return -EINVAL;
510
511 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
512 answ = 0;
513 else
514 answ = tp->write_seq - tp->snd_una;
515 break;
Mario Schuknecht2f4e1b32011-03-09 14:08:09 -0800516 case SIOCOUTQNSD:
517 if (sk->sk_state == TCP_LISTEN)
518 return -EINVAL;
519
520 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
521 answ = 0;
522 else
523 answ = tp->write_seq - tp->snd_nxt;
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 default:
526 return -ENOIOCTLCMD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 return put_user(answ, (int __user *)arg);
530}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000531EXPORT_SYMBOL(tcp_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static inline void tcp_mark_push(struct tcp_sock *tp, struct sk_buff *skb)
534{
Eric Dumazet4de075e2011-09-27 13:25:05 -0400535 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 tp->pushed_seq = tp->write_seq;
537}
538
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400539static inline int forced_push(const struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
542}
543
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700544static inline void skb_entail(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700546 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200547 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
548
549 skb->csum = 0;
550 tcb->seq = tcb->end_seq = tp->write_seq;
Eric Dumazet4de075e2011-09-27 13:25:05 -0400551 tcb->tcp_flags = TCPHDR_ACK;
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200552 tcb->sacked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 skb_header_release(skb);
David S. Millerfe067e82007-03-07 12:12:44 -0800554 tcp_add_write_queue_tail(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800555 sk->sk_wmem_queued += skb->truesize;
556 sk_mem_charge(sk, skb->truesize);
David S. Miller89ebd192005-08-23 10:13:06 -0700557 if (tp->nonagle & TCP_NAGLE_PUSH)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900558 tp->nonagle &= ~TCP_NAGLE_PUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Krishna Kumarafeca342009-12-10 07:16:52 +0000561static inline void tcp_mark_urg(struct tcp_sock *tp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Ilpo Järvinen33f5f572008-10-07 14:43:06 -0700563 if (flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 tp->snd_up = tp->write_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700567static inline void tcp_push(struct sock *sk, int flags, int mss_now,
568 int nonagle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
David S. Millerfe067e82007-03-07 12:12:44 -0800570 if (tcp_send_head(sk)) {
Krishna Kumarafeca342009-12-10 07:16:52 +0000571 struct tcp_sock *tp = tcp_sk(sk);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!(flags & MSG_MORE) || forced_push(tp))
Krishna Kumarafeca342009-12-10 07:16:52 +0000574 tcp_mark_push(tp, tcp_write_queue_tail(sk));
575
576 tcp_mark_urg(tp, flags);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700577 __tcp_push_pending_frames(sk, mss_now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 (flags & MSG_MORE) ? TCP_NAGLE_CORK : nonagle);
579 }
580}
581
Adrian Bunk6ff77512007-11-06 23:32:26 -0800582static int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
583 unsigned int offset, size_t len)
Jens Axboe9c55e012007-11-06 23:30:13 -0800584{
585 struct tcp_splice_state *tss = rd_desc->arg.data;
Willy Tarreau33966dd2009-01-13 16:04:36 -0800586 int ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800587
Dimitris Michailidis9fa5fdf2009-01-26 22:15:31 -0800588 ret = skb_splice_bits(skb, offset, tss->pipe, min(rd_desc->count, len),
589 tss->flags);
Willy Tarreau33966dd2009-01-13 16:04:36 -0800590 if (ret > 0)
591 rd_desc->count -= ret;
592 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800593}
594
595static int __tcp_splice_read(struct sock *sk, struct tcp_splice_state *tss)
596{
597 /* Store TCP splice context information in read_descriptor_t. */
598 read_descriptor_t rd_desc = {
599 .arg.data = tss,
Willy Tarreau33966dd2009-01-13 16:04:36 -0800600 .count = tss->len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800601 };
602
603 return tcp_read_sock(sk, &rd_desc, tcp_splice_data_recv);
604}
605
606/**
607 * tcp_splice_read - splice data from TCP socket to a pipe
608 * @sock: socket to splice from
609 * @ppos: position (not valid)
610 * @pipe: pipe to splice to
611 * @len: number of bytes to splice
612 * @flags: splice modifier flags
613 *
614 * Description:
615 * Will read pages from given socket and fill them into a pipe.
616 *
617 **/
618ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos,
619 struct pipe_inode_info *pipe, size_t len,
620 unsigned int flags)
621{
622 struct sock *sk = sock->sk;
623 struct tcp_splice_state tss = {
624 .pipe = pipe,
625 .len = len,
626 .flags = flags,
627 };
628 long timeo;
629 ssize_t spliced;
630 int ret;
631
Changli Gao3a047bf2010-07-12 21:00:12 +0000632 sock_rps_record_flow(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -0800633 /*
634 * We can't seek on a socket input
635 */
636 if (unlikely(*ppos))
637 return -ESPIPE;
638
639 ret = spliced = 0;
640
641 lock_sock(sk);
642
Eric Dumazet42324c62009-10-01 15:26:00 -0700643 timeo = sock_rcvtimeo(sk, sock->file->f_flags & O_NONBLOCK);
Jens Axboe9c55e012007-11-06 23:30:13 -0800644 while (tss.len) {
645 ret = __tcp_splice_read(sk, &tss);
646 if (ret < 0)
647 break;
648 else if (!ret) {
649 if (spliced)
650 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800651 if (sock_flag(sk, SOCK_DONE))
652 break;
653 if (sk->sk_err) {
654 ret = sock_error(sk);
655 break;
656 }
657 if (sk->sk_shutdown & RCV_SHUTDOWN)
658 break;
659 if (sk->sk_state == TCP_CLOSE) {
660 /*
661 * This occurs when user tries to read
662 * from never connected socket.
663 */
664 if (!sock_flag(sk, SOCK_DONE))
665 ret = -ENOTCONN;
666 break;
667 }
668 if (!timeo) {
669 ret = -EAGAIN;
670 break;
671 }
Eric Dumazet483e06f2017-03-01 09:58:14 +0100672 /* if __tcp_splice_read() got nothing while we have
673 * an skb in receive queue, we do not want to loop.
674 * This might happen with URG data.
675 */
676 if (!skb_queue_empty(&sk->sk_receive_queue))
677 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800678 sk_wait_data(sk, &timeo);
679 if (signal_pending(current)) {
680 ret = sock_intr_errno(timeo);
681 break;
682 }
683 continue;
684 }
685 tss.len -= ret;
686 spliced += ret;
687
Willy Tarreau33966dd2009-01-13 16:04:36 -0800688 if (!timeo)
689 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800690 release_sock(sk);
691 lock_sock(sk);
692
693 if (sk->sk_err || sk->sk_state == TCP_CLOSE ||
Willy Tarreau33966dd2009-01-13 16:04:36 -0800694 (sk->sk_shutdown & RCV_SHUTDOWN) ||
Jens Axboe9c55e012007-11-06 23:30:13 -0800695 signal_pending(current))
696 break;
697 }
698
699 release_sock(sk);
700
701 if (spliced)
702 return spliced;
703
704 return ret;
705}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000706EXPORT_SYMBOL(tcp_splice_read);
Jens Axboe9c55e012007-11-06 23:30:13 -0800707
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100708struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp)
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100709{
710 struct sk_buff *skb;
711
712 /* The TCP header must be at least 32-bit aligned. */
713 size = ALIGN(size, 4);
714
715 skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp);
716 if (skb) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800717 if (sk_wmem_schedule(sk, skb->truesize)) {
Eric Dumazeta21d4572012-04-10 20:30:48 +0000718 skb_reserve(skb, sk->sk_prot->max_header);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100719 /*
720 * Make sure that we have exactly size bytes
721 * available to the caller, no more, no less.
722 */
Eric Dumazeta21d4572012-04-10 20:30:48 +0000723 skb->avail_size = size;
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100724 return skb;
725 }
726 __kfree_skb(skb);
727 } else {
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700728 sk->sk_prot->enter_memory_pressure(sk);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100729 sk_stream_moderate_sndbuf(sk);
730 }
731 return NULL;
732}
733
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000734static unsigned int tcp_xmit_size_goal(struct sock *sk, u32 mss_now,
735 int large_allowed)
736{
737 struct tcp_sock *tp = tcp_sk(sk);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000738 u32 xmit_size_goal, old_size_goal;
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000739
740 xmit_size_goal = mss_now;
741
742 if (large_allowed && sk_can_gso(sk)) {
743 xmit_size_goal = ((sk->sk_gso_max_size - 1) -
744 inet_csk(sk)->icsk_af_ops->net_header_len -
745 inet_csk(sk)->icsk_ext_hdr_len -
746 tp->tcp_header_len);
747
748 xmit_size_goal = tcp_bound_to_half_wnd(tp, xmit_size_goal);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000749
750 /* We try hard to avoid divides here */
751 old_size_goal = tp->xmit_size_goal_segs * mss_now;
752
753 if (likely(old_size_goal <= xmit_size_goal &&
754 old_size_goal + mss_now > xmit_size_goal)) {
755 xmit_size_goal = old_size_goal;
756 } else {
Ben Hutchingsd77ce5e2012-07-30 16:11:42 +0000757 tp->xmit_size_goal_segs =
758 min_t(u16, xmit_size_goal / mss_now,
759 sk->sk_gso_max_segs);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000760 xmit_size_goal = tp->xmit_size_goal_segs * mss_now;
761 }
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000762 }
763
Ilpo Järvinenafece1c2009-03-14 14:23:07 +0000764 return max(xmit_size_goal, mss_now);
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000765}
766
767static int tcp_send_mss(struct sock *sk, int *size_goal, int flags)
768{
769 int mss_now;
770
771 mss_now = tcp_current_mss(sk);
772 *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB));
773
774 return mss_now;
775}
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset,
778 size_t psize, int flags)
779{
780 struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700781 int mss_now, size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 int err;
783 ssize_t copied;
784 long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
785
786 /* Wait for a connection to finish. */
787 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
788 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
789 goto out_err;
790
791 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
792
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000793 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 copied = 0;
795
796 err = -EPIPE;
797 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000798 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 while (psize > 0) {
David S. Millerfe067e82007-03-07 12:12:44 -0800801 struct sk_buff *skb = tcp_write_queue_tail(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct page *page = pages[poffset / PAGE_SIZE];
803 int copy, i, can_coalesce;
804 int offset = poffset % PAGE_SIZE;
805 int size = min_t(size_t, psize, PAGE_SIZE - offset);
806
David S. Millerfe067e82007-03-07 12:12:44 -0800807 if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808new_segment:
809 if (!sk_stream_memory_free(sk))
810 goto wait_for_sndbuf;
811
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100812 skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!skb)
814 goto wait_for_memory;
815
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700816 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700817 copy = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819
820 if (copy > size)
821 copy = size;
822
823 i = skb_shinfo(skb)->nr_frags;
824 can_coalesce = skb_can_coalesce(skb, i, page, offset);
825 if (!can_coalesce && i >= MAX_SKB_FRAGS) {
826 tcp_mark_push(tp, skb);
827 goto new_segment;
828 }
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800829 if (!sk_wmem_schedule(sk, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto wait_for_memory;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (can_coalesce) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000833 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 } else {
835 get_page(page);
836 skb_fill_page_desc(skb, i, page, offset, copy);
837 }
838
839 skb->len += copy;
840 skb->data_len += copy;
841 skb->truesize += copy;
842 sk->sk_wmem_queued += copy;
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800843 sk_mem_charge(sk, copy);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700844 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 tp->write_seq += copy;
846 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -0700847 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -0400850 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 copied += copy;
853 poffset += copy;
854 if (!(psize -= copy))
855 goto out;
856
Herbert Xu69d15062008-03-22 15:47:05 -0700857 if (skb->len < size_goal || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 continue;
859
860 if (forced_push(tp)) {
861 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700862 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -0800863 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 tcp_push_one(sk, mss_now);
865 continue;
866
867wait_for_sndbuf:
868 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
869wait_for_memory:
Willy Tarreaubad115c2012-05-17 11:14:14 +0000870 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
873 goto do_error;
874
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000875 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878out:
Eric Dumazet35f9c092012-04-05 03:05:35 +0000879 if (copied && !(flags & MSG_SENDPAGE_NOTLAST))
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700880 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return copied;
882
883do_error:
884 if (copied)
885 goto out;
886out_err:
887 return sk_stream_error(sk, flags, err);
888}
889
Changli Gao7ba42912010-07-10 20:41:55 +0000890int tcp_sendpage(struct sock *sk, struct page *page, int offset,
891 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!(sk->sk_route_caps & NETIF_F_SG) ||
Herbert Xu8648b302006-06-17 22:06:05 -0700896 !(sk->sk_route_caps & NETIF_F_ALL_CSUM))
Changli Gao7ba42912010-07-10 20:41:55 +0000897 return sock_no_sendpage(sk->sk_socket, page, offset, size,
898 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 res = do_tcp_sendpages(sk, &page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 release_sock(sk);
903 return res;
904}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000905EXPORT_SYMBOL(tcp_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Eric Dumazet690e99c2011-11-28 00:27:47 +0000907static inline int select_size(const struct sock *sk, bool sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400909 const struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700910 int tmp = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Krishna Kumardef87cf2009-12-10 07:16:59 +0000912 if (sg) {
Eric Dumazetf07d9602011-11-28 22:41:47 +0000913 if (sk_can_gso(sk)) {
914 /* Small frames wont use a full page:
915 * Payload will immediately follow tcp header.
916 */
917 tmp = SKB_WITH_OVERHEAD(2048 - MAX_TCP_HEADER);
918 } else {
David S. Millerb4e26f52005-07-05 15:20:27 -0700919 int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
920
921 if (tmp >= pgbreak &&
922 tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE)
923 tmp = pgbreak;
924 }
925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return tmp;
928}
929
Changli Gao7ba42912010-07-10 20:41:55 +0000930int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 size_t size)
932{
933 struct iovec *iov;
934 struct tcp_sock *tp = tcp_sk(sk);
935 struct sk_buff *skb;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000936 int iovlen, flags, err, copied;
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700937 int mss_now, size_goal;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000938 bool sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 long timeo;
940
941 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 flags = msg->msg_flags;
944 timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
945
946 /* Wait for a connection to finish. */
947 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
948 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
949 goto out_err;
950
951 /* This should be in poll */
952 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
953
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000954 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 /* Ok commence sending. */
957 iovlen = msg->msg_iovlen;
958 iov = msg->msg_iov;
959 copied = 0;
960
961 err = -EPIPE;
962 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000963 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Eric Dumazet690e99c2011-11-28 00:27:47 +0000965 sg = !!(sk->sk_route_caps & NETIF_F_SG);
Krishna Kumardef87cf2009-12-10 07:16:59 +0000966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 while (--iovlen >= 0) {
David S. Miller01db4032010-09-27 20:24:54 -0700968 size_t seglen = iov->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 unsigned char __user *from = iov->iov_base;
970
971 iov++;
972
973 while (seglen > 0) {
Herbert Xu6828b922009-06-28 18:06:41 +0000974 int copy = 0;
975 int max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
David S. Millerfe067e82007-03-07 12:12:44 -0800977 skb = tcp_write_queue_tail(sk);
Herbert Xu6828b922009-06-28 18:06:41 +0000978 if (tcp_send_head(sk)) {
979 if (skb->ip_summed == CHECKSUM_NONE)
980 max = mss_now;
981 copy = max - skb->len;
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Herbert Xu6828b922009-06-28 18:06:41 +0000984 if (copy <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985new_segment:
986 /* Allocate new segment. If the interface is SG,
987 * allocate skb fitting to single page.
988 */
989 if (!sk_stream_memory_free(sk))
990 goto wait_for_sndbuf;
991
Krishna Kumardef87cf2009-12-10 07:16:59 +0000992 skb = sk_stream_alloc_skb(sk,
993 select_size(sk, sg),
994 sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (!skb)
996 goto wait_for_memory;
997
998 /*
999 * Check whether we can use HW checksum.
1000 */
Herbert Xu8648b302006-06-17 22:06:05 -07001001 if (sk->sk_route_caps & NETIF_F_ALL_CSUM)
Patrick McHardy84fa7932006-08-29 16:44:56 -07001002 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001004 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001005 copy = size_goal;
Herbert Xu6828b922009-06-28 18:06:41 +00001006 max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
1009 /* Try to append data to the end of skb. */
1010 if (copy > seglen)
1011 copy = seglen;
1012
1013 /* Where to copy to? */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001014 if (skb_availroom(skb) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /* We have some space in skb head. Superb! */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001016 copy = min_t(int, copy, skb_availroom(skb));
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001017 err = skb_add_data_nocache(sk, skb, from, copy);
1018 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 goto do_fault;
1020 } else {
1021 int merge = 0;
1022 int i = skb_shinfo(skb)->nr_frags;
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001023 struct page *page = sk->sk_sndmsg_page;
Eric Dumazet761965e2011-12-04 07:05:17 +00001024 int off;
1025
1026 if (page && page_count(page) == 1)
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001027 sk->sk_sndmsg_off = 0;
Eric Dumazet761965e2011-12-04 07:05:17 +00001028
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001029 off = sk->sk_sndmsg_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 if (skb_can_coalesce(skb, i, page, off) &&
1032 off != PAGE_SIZE) {
1033 /* We can extend the last page
1034 * fragment. */
1035 merge = 1;
Krishna Kumardef87cf2009-12-10 07:16:59 +00001036 } else if (i == MAX_SKB_FRAGS || !sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* Need to add new fragment and cannot
1038 * do this because interface is non-SG,
1039 * or because all the page slots are
1040 * busy. */
1041 tcp_mark_push(tp, skb);
1042 goto new_segment;
1043 } else if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (off == PAGE_SIZE) {
1045 put_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001046 sk->sk_sndmsg_page = page = NULL;
Herbert Xufb5f5e62005-09-05 18:55:48 -07001047 off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
Herbert Xuef015782005-09-01 17:48:59 -07001049 } else
Herbert Xufb5f5e62005-09-05 18:55:48 -07001050 off = 0;
Herbert Xuef015782005-09-01 17:48:59 -07001051
1052 if (copy > PAGE_SIZE - off)
1053 copy = PAGE_SIZE - off;
1054
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001055 if (!sk_wmem_schedule(sk, copy))
Herbert Xuef015782005-09-01 17:48:59 -07001056 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
1058 if (!page) {
1059 /* Allocate new cache page. */
1060 if (!(page = sk_stream_alloc_page(sk)))
1061 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 /* Time to copy data. We are close to
1065 * the end! */
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001066 err = skb_copy_to_page_nocache(sk, from, skb,
1067 page, off, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (err) {
1069 /* If this page was new, give it to the
1070 * socket so it does not get leaked.
1071 */
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001072 if (!sk->sk_sndmsg_page) {
1073 sk->sk_sndmsg_page = page;
1074 sk->sk_sndmsg_off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076 goto do_error;
1077 }
1078
1079 /* Update the skb. */
1080 if (merge) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001081 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 } else {
1083 skb_fill_page_desc(skb, i, page, off, copy);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001084 if (sk->sk_sndmsg_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 get_page(page);
1086 } else if (off + copy < PAGE_SIZE) {
1087 get_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001088 sk->sk_sndmsg_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 }
1091
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001092 sk->sk_sndmsg_off = off + copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
1095 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -04001096 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 tp->write_seq += copy;
1099 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -07001100 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 from += copy;
1103 copied += copy;
1104 if ((seglen -= copy) == 0 && iovlen == 0)
1105 goto out;
1106
Herbert Xu6828b922009-06-28 18:06:41 +00001107 if (skb->len < max || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 continue;
1109
1110 if (forced_push(tp)) {
1111 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001112 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -08001113 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 tcp_push_one(sk, mss_now);
1115 continue;
1116
1117wait_for_sndbuf:
1118 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1119wait_for_memory:
1120 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001121 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
1124 goto do_error;
1125
Ilpo Järvinen0c54b852009-03-14 14:23:05 +00001126 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128 }
1129
1130out:
1131 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001132 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001134
1135 if (copied > 0)
1136 uid_stat_tcp_snd(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return copied;
1138
1139do_fault:
1140 if (!skb->len) {
David S. Millerfe067e82007-03-07 12:12:44 -08001141 tcp_unlink_write_queue(skb, sk);
1142 /* It is the one place in all of TCP, except connection
1143 * reset, where we can be unlinking the send_head.
1144 */
1145 tcp_check_send_head(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001146 sk_wmem_free_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
1149do_error:
1150 if (copied)
1151 goto out;
1152out_err:
1153 err = sk_stream_error(sk, flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 release_sock(sk);
1155 return err;
1156}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001157EXPORT_SYMBOL(tcp_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159/*
1160 * Handle reading urgent data. BSD has very simple semantics for
1161 * this, no blocking and very strange errors 8)
1162 */
1163
Rami Rosen377f0a02009-03-31 14:43:17 -07001164static int tcp_recv_urg(struct sock *sk, struct msghdr *msg, int len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 struct tcp_sock *tp = tcp_sk(sk);
1167
1168 /* No URG data to read. */
1169 if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data ||
1170 tp->urg_data == TCP_URG_READ)
1171 return -EINVAL; /* Yes this is right ! */
1172
1173 if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE))
1174 return -ENOTCONN;
1175
1176 if (tp->urg_data & TCP_URG_VALID) {
1177 int err = 0;
1178 char c = tp->urg_data;
1179
1180 if (!(flags & MSG_PEEK))
1181 tp->urg_data = TCP_URG_READ;
1182
1183 /* Read urgent data. */
1184 msg->msg_flags |= MSG_OOB;
1185
1186 if (len > 0) {
1187 if (!(flags & MSG_TRUNC))
1188 err = memcpy_toiovec(msg->msg_iov, &c, 1);
1189 len = 1;
1190 } else
1191 msg->msg_flags |= MSG_TRUNC;
1192
1193 return err ? -EFAULT : len;
1194 }
1195
1196 if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
1197 return 0;
1198
1199 /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and
1200 * the available implementations agree in this case:
1201 * this call should never block, independent of the
1202 * blocking state of the socket.
1203 * Mike <pall@rz.uni-karlsruhe.de>
1204 */
1205 return -EAGAIN;
1206}
1207
1208/* Clean up the receive buffer for full frames taken by the user,
1209 * then send an ACK if necessary. COPIED is the number of bytes
1210 * tcp_recvmsg has given to the user so far, it speeds up the
1211 * calculation of whether or not we must ACK for the sake of
1212 * a window update.
1213 */
Chris Leech0e4b4992006-05-23 18:00:16 -07001214void tcp_cleanup_rbuf(struct sock *sk, int copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
1216 struct tcp_sock *tp = tcp_sk(sk);
1217 int time_to_ack = 0;
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1220
Ilpo Järvinend792c102009-11-13 13:56:33 -08001221 WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001222 "cleanup rbuf bug: copied %X seq %X rcvnxt %X\n",
Ilpo Järvinend792c102009-11-13 13:56:33 -08001223 tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001225 if (inet_csk_ack_scheduled(sk)) {
1226 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* Delayed ACKs frequently hit locked sockets during bulk
1228 * receive. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001229 if (icsk->icsk_ack.blocked ||
Ravi Joshiee51cf02013-07-25 19:04:17 -07001230 /* Once-per-sysctl_tcp_delack_seg segments
1231 * ACK was not sent by tcp_input.c
1232 */
1233 tp->rcv_nxt - tp->rcv_wup > (icsk->icsk_ack.rcv_mss) *
1234 sysctl_tcp_delack_seg ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /*
1236 * If this read emptied read buffer, we send ACK, if
1237 * connection is not bidirectional, user drained
1238 * receive buffer and there was a small segment
1239 * in queue.
1240 */
Alexey Kuznetsov1ef96962006-09-19 12:52:50 -07001241 (copied > 0 &&
1242 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) ||
1243 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) &&
1244 !icsk->icsk_ack.pingpong)) &&
1245 !atomic_read(&sk->sk_rmem_alloc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 time_to_ack = 1;
1247 }
1248
1249 /* We send an ACK if we can now advertise a non-zero window
1250 * which has been raised "significantly".
1251 *
1252 * Even if window raised up to infinity, do not send window open ACK
1253 * in states, where we will not receive more. It is useless.
1254 */
1255 if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) {
1256 __u32 rcv_window_now = tcp_receive_window(tp);
1257
1258 /* Optimize, __tcp_select_window() is not cheap. */
1259 if (2*rcv_window_now <= tp->window_clamp) {
1260 __u32 new_window = __tcp_select_window(sk);
1261
1262 /* Send ACK now, if this read freed lots of space
1263 * in our buffer. Certainly, new_window is new window.
1264 * We can advertise it now, if it is not less than current one.
1265 * "Lots" means "at least twice" here.
1266 */
1267 if (new_window && new_window >= 2 * rcv_window_now)
1268 time_to_ack = 1;
1269 }
1270 }
1271 if (time_to_ack)
1272 tcp_send_ack(sk);
1273}
1274
1275static void tcp_prequeue_process(struct sock *sk)
1276{
1277 struct sk_buff *skb;
1278 struct tcp_sock *tp = tcp_sk(sk);
1279
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001280 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* RX process wants to run with disabled BHs, though it is not
1283 * necessary */
1284 local_bh_disable();
1285 while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
Peter Zijlstrac57943a2008-10-07 14:18:42 -07001286 sk_backlog_rcv(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 local_bh_enable();
1288
1289 /* Clear memory counter. */
1290 tp->ucopy.memory = 0;
1291}
1292
Steven J. Magnani73852e82010-03-16 05:22:44 +00001293#ifdef CONFIG_NET_DMA
1294static void tcp_service_net_dma(struct sock *sk, bool wait)
1295{
1296 dma_cookie_t done, used;
1297 dma_cookie_t last_issued;
1298 struct tcp_sock *tp = tcp_sk(sk);
1299
1300 if (!tp->ucopy.dma_chan)
1301 return;
1302
1303 last_issued = tp->ucopy.dma_cookie;
1304 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1305
1306 do {
1307 if (dma_async_memcpy_complete(tp->ucopy.dma_chan,
1308 last_issued, &done,
1309 &used) == DMA_SUCCESS) {
1310 /* Safe to free early-copied skbs now */
1311 __skb_queue_purge(&sk->sk_async_wait_queue);
1312 break;
1313 } else {
1314 struct sk_buff *skb;
1315 while ((skb = skb_peek(&sk->sk_async_wait_queue)) &&
1316 (dma_async_is_complete(skb->dma_cookie, done,
1317 used) == DMA_SUCCESS)) {
1318 __skb_dequeue(&sk->sk_async_wait_queue);
1319 kfree_skb(skb);
1320 }
1321 }
1322 } while (wait);
1323}
1324#endif
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
1327{
1328 struct sk_buff *skb;
1329 u32 offset;
1330
1331 skb_queue_walk(&sk->sk_receive_queue, skb) {
1332 offset = seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001333 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 offset--;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001335 if (offset < skb->len || tcp_hdr(skb)->fin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 *off = offset;
1337 return skb;
1338 }
1339 }
1340 return NULL;
1341}
1342
1343/*
1344 * This routine provides an alternative to tcp_recvmsg() for routines
1345 * that would like to handle copying from skbuffs directly in 'sendfile'
1346 * fashion.
1347 * Note:
1348 * - It is assumed that the socket was locked by the caller.
1349 * - The routine does not block.
1350 * - At present, there is no support for reading OOB data
1351 * or for 'peeking' the socket using this routine
1352 * (although both would be easy to implement).
1353 */
1354int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
1355 sk_read_actor_t recv_actor)
1356{
1357 struct sk_buff *skb;
1358 struct tcp_sock *tp = tcp_sk(sk);
1359 u32 seq = tp->copied_seq;
1360 u32 offset;
1361 int copied = 0;
1362
1363 if (sk->sk_state == TCP_LISTEN)
1364 return -ENOTCONN;
1365 while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
1366 if (offset < skb->len) {
Octavian Purdila374e7b52008-07-03 03:31:21 -07001367 int used;
1368 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 len = skb->len - offset;
1371 /* Stop reading if we hit a patch of urgent data */
1372 if (tp->urg_data) {
1373 u32 urg_offset = tp->urg_seq - seq;
1374 if (urg_offset < len)
1375 len = urg_offset;
1376 if (!len)
1377 break;
1378 }
1379 used = recv_actor(desc, skb, offset, len);
Jens Axboeddb61a52007-06-23 23:07:50 -07001380 if (used < 0) {
1381 if (!copied)
1382 copied = used;
1383 break;
1384 } else if (used <= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 seq += used;
1386 copied += used;
1387 offset += used;
1388 }
Octavian Purdila293ad602008-06-04 15:45:58 -07001389 /*
1390 * If recv_actor drops the lock (e.g. TCP splice
1391 * receive) the skb pointer might be invalid when
1392 * getting here: tcp_collapse might have deleted it
1393 * while aggregating skbs from the socket queue.
1394 */
1395 skb = tcp_recv_skb(sk, seq-1, &offset);
1396 if (!skb || (offset+1 != skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 break;
1398 }
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001399 if (tcp_hdr(skb)->fin) {
Chris Leech624d1162006-05-23 18:01:28 -07001400 sk_eat_skb(sk, skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 ++seq;
1402 break;
1403 }
Chris Leech624d1162006-05-23 18:01:28 -07001404 sk_eat_skb(sk, skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (!desc->count)
1406 break;
Steven J. Magnanibaff42a2010-03-30 13:56:01 -07001407 tp->copied_seq = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409 tp->copied_seq = seq;
1410
1411 tcp_rcv_space_adjust(sk);
1412
1413 /* Clean up data we have read: This will do ACK frames. */
Mike Chan5a0b3542009-01-07 11:40:42 -08001414 if (copied > 0) {
Chris Leech0e4b4992006-05-23 18:00:16 -07001415 tcp_cleanup_rbuf(sk, copied);
Mike Chan5a0b3542009-01-07 11:40:42 -08001416 uid_stat_tcp_rcv(current_uid(), copied);
1417 }
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return copied;
1420}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001421EXPORT_SYMBOL(tcp_read_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423/*
1424 * This routine copies from a sock struct into the user buffer.
1425 *
1426 * Technical note: in 2.3 we work on _locked_ socket, so that
1427 * tricks with *seq access order and skb->users are not required.
1428 * Probably, code can be easily improved even more.
1429 */
1430
1431int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
1432 size_t len, int nonblock, int flags, int *addr_len)
1433{
1434 struct tcp_sock *tp = tcp_sk(sk);
1435 int copied = 0;
1436 u32 peek_seq;
1437 u32 *seq;
1438 unsigned long used;
1439 int err;
1440 int target; /* Read at least this many bytes */
1441 long timeo;
1442 struct task_struct *user_recv = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001443 int copied_early = 0;
Chris Leech2b1244a2007-03-08 09:57:36 -08001444 struct sk_buff *skb;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001445 u32 urg_hole = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 lock_sock(sk);
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 err = -ENOTCONN;
1450 if (sk->sk_state == TCP_LISTEN)
1451 goto out;
1452
1453 timeo = sock_rcvtimeo(sk, nonblock);
1454
1455 /* Urgent data needs to be handled specially. */
1456 if (flags & MSG_OOB)
1457 goto recv_urg;
1458
1459 seq = &tp->copied_seq;
1460 if (flags & MSG_PEEK) {
1461 peek_seq = tp->copied_seq;
1462 seq = &peek_seq;
1463 }
1464
1465 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
1466
Chris Leech1a2449a2006-05-23 18:05:53 -07001467#ifdef CONFIG_NET_DMA
1468 tp->ucopy.dma_chan = NULL;
1469 preempt_disable();
Chris Leech2b1244a2007-03-08 09:57:36 -08001470 skb = skb_peek_tail(&sk->sk_receive_queue);
Andrew Mortone00c5d82007-03-08 09:57:36 -08001471 {
1472 int available = 0;
1473
1474 if (skb)
1475 available = TCP_SKB_CB(skb)->seq + skb->len - (*seq);
1476 if ((available < target) &&
1477 (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) &&
1478 !sysctl_tcp_low_latency &&
Dave Jianga2bd1142012-04-04 16:10:46 -07001479 net_dma_find_channel()) {
Andrew Mortone00c5d82007-03-08 09:57:36 -08001480 preempt_enable_no_resched();
1481 tp->ucopy.pinned_list =
1482 dma_pin_iovec_pages(msg->msg_iov, len);
1483 } else {
1484 preempt_enable_no_resched();
1485 }
1486 }
Chris Leech1a2449a2006-05-23 18:05:53 -07001487#endif
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 u32 offset;
1491
1492 /* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */
1493 if (tp->urg_data && tp->urg_seq == *seq) {
1494 if (copied)
1495 break;
1496 if (signal_pending(current)) {
1497 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
1498 break;
1499 }
1500 }
1501
1502 /* Next get a buffer. */
1503
David S. Miller91521942009-05-28 21:35:47 -07001504 skb_queue_walk(&sk->sk_receive_queue, skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 /* Now that we have two receive queues this
1506 * shouldn't happen.
1507 */
Ilpo Järvinend792c102009-11-13 13:56:33 -08001508 if (WARN(before(*seq, TCP_SKB_CB(skb)->seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001509 "recvmsg bug: copied %X seq %X rcvnxt %X fl %X\n",
1510 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt,
1511 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 break;
Ilpo Järvinend792c102009-11-13 13:56:33 -08001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 offset = *seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001515 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 offset--;
1517 if (offset < skb->len)
1518 goto found_ok_skb;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001519 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 goto found_fin_ok;
Joe Perches2af6fd82010-10-30 11:08:53 +00001521 WARN(!(flags & MSG_PEEK),
1522 "recvmsg bug 2: copied %X seq %X rcvnxt %X fl %X\n",
1523 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt, flags);
David S. Miller91521942009-05-28 21:35:47 -07001524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 /* Well, if we have backlog, try to process it now yet. */
1527
1528 if (copied >= target && !sk->sk_backlog.tail)
1529 break;
1530
1531 if (copied) {
1532 if (sk->sk_err ||
1533 sk->sk_state == TCP_CLOSE ||
1534 (sk->sk_shutdown & RCV_SHUTDOWN) ||
1535 !timeo ||
David S. Miller518a09e2008-11-05 03:36:01 -08001536 signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 break;
1538 } else {
1539 if (sock_flag(sk, SOCK_DONE))
1540 break;
1541
1542 if (sk->sk_err) {
1543 copied = sock_error(sk);
1544 break;
1545 }
1546
1547 if (sk->sk_shutdown & RCV_SHUTDOWN)
1548 break;
1549
1550 if (sk->sk_state == TCP_CLOSE) {
1551 if (!sock_flag(sk, SOCK_DONE)) {
1552 /* This occurs when user tries to read
1553 * from never connected socket.
1554 */
1555 copied = -ENOTCONN;
1556 break;
1557 }
1558 break;
1559 }
1560
1561 if (!timeo) {
1562 copied = -EAGAIN;
1563 break;
1564 }
1565
1566 if (signal_pending(current)) {
1567 copied = sock_intr_errno(timeo);
1568 break;
1569 }
1570 }
1571
Chris Leech0e4b4992006-05-23 18:00:16 -07001572 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
David S. Miller7df55122005-06-18 23:01:10 -07001574 if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /* Install new reader */
1576 if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) {
1577 user_recv = current;
1578 tp->ucopy.task = user_recv;
1579 tp->ucopy.iov = msg->msg_iov;
1580 }
1581
1582 tp->ucopy.len = len;
1583
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001584 WARN_ON(tp->copied_seq != tp->rcv_nxt &&
1585 !(flags & (MSG_PEEK | MSG_TRUNC)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /* Ugly... If prequeue is not empty, we have to
1588 * process it before releasing socket, otherwise
1589 * order will be broken at second iteration.
1590 * More elegant solution is required!!!
1591 *
1592 * Look: we have the following (pseudo)queues:
1593 *
1594 * 1. packets in flight
1595 * 2. backlog
1596 * 3. prequeue
1597 * 4. receive_queue
1598 *
1599 * Each queue can be processed only if the next ones
1600 * are empty. At this point we have empty receive_queue.
1601 * But prequeue _can_ be not empty after 2nd iteration,
1602 * when we jumped to start of loop because backlog
1603 * processing added something to receive_queue.
1604 * We cannot release_sock(), because backlog contains
1605 * packets arrived _after_ prequeued ones.
1606 *
1607 * Shortly, algorithm is clear --- to process all
1608 * the queues in order. We could make it more directly,
1609 * requeueing packets from backlog to prequeue, if
1610 * is not empty. It is more elegant, but eats cycles,
1611 * unfortunately.
1612 */
David S. Millerb03efcf2005-07-08 14:57:23 -07001613 if (!skb_queue_empty(&tp->ucopy.prequeue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 goto do_prequeue;
1615
1616 /* __ Set realtime policy in scheduler __ */
1617 }
1618
Steven J. Magnani73852e82010-03-16 05:22:44 +00001619#ifdef CONFIG_NET_DMA
1620 if (tp->ucopy.dma_chan)
1621 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1622#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (copied >= target) {
1624 /* Do not sleep, just process backlog. */
1625 release_sock(sk);
1626 lock_sock(sk);
1627 } else
1628 sk_wait_data(sk, &timeo);
1629
Chris Leech1a2449a2006-05-23 18:05:53 -07001630#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001631 tcp_service_net_dma(sk, false); /* Don't block */
Chris Leech1a2449a2006-05-23 18:05:53 -07001632 tp->ucopy.wakeup = 0;
1633#endif
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (user_recv) {
1636 int chunk;
1637
1638 /* __ Restore normal policy in scheduler __ */
1639
1640 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001641 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 len -= chunk;
1643 copied += chunk;
1644 }
1645
1646 if (tp->rcv_nxt == tp->copied_seq &&
David S. Millerb03efcf2005-07-08 14:57:23 -07001647 !skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648do_prequeue:
1649 tcp_prequeue_process(sk);
1650
1651 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001652 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 len -= chunk;
1654 copied += chunk;
1655 }
1656 }
1657 }
Ilpo Järvinen77527312009-05-10 20:32:34 +00001658 if ((flags & MSG_PEEK) &&
1659 (peek_seq - copied - urg_hole != tp->copied_seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (net_ratelimit())
1661 printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001662 current->comm, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 peek_seq = tp->copied_seq;
1664 }
1665 continue;
1666
1667 found_ok_skb:
1668 /* Ok so how much can we use? */
1669 used = skb->len - offset;
1670 if (len < used)
1671 used = len;
1672
1673 /* Do we have urgent data here? */
1674 if (tp->urg_data) {
1675 u32 urg_offset = tp->urg_seq - *seq;
1676 if (urg_offset < used) {
1677 if (!urg_offset) {
1678 if (!sock_flag(sk, SOCK_URGINLINE)) {
1679 ++*seq;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001680 urg_hole++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 offset++;
1682 used--;
1683 if (!used)
1684 goto skip_copy;
1685 }
1686 } else
1687 used = urg_offset;
1688 }
1689 }
1690
1691 if (!(flags & MSG_TRUNC)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001692#ifdef CONFIG_NET_DMA
1693 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
Dave Jianga2bd1142012-04-04 16:10:46 -07001694 tp->ucopy.dma_chan = net_dma_find_channel();
Chris Leech1a2449a2006-05-23 18:05:53 -07001695
1696 if (tp->ucopy.dma_chan) {
1697 tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec(
1698 tp->ucopy.dma_chan, skb, offset,
1699 msg->msg_iov, used,
1700 tp->ucopy.pinned_list);
1701
1702 if (tp->ucopy.dma_cookie < 0) {
1703
Joe Perchesafd465032012-03-12 07:03:32 +00001704 pr_alert("%s: dma_cookie < 0\n",
1705 __func__);
Chris Leech1a2449a2006-05-23 18:05:53 -07001706
1707 /* Exception. Bailout! */
1708 if (!copied)
1709 copied = -EFAULT;
1710 break;
1711 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001712
1713 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1714
Chris Leech1a2449a2006-05-23 18:05:53 -07001715 if ((offset + used) == skb->len)
1716 copied_early = 1;
1717
1718 } else
1719#endif
1720 {
1721 err = skb_copy_datagram_iovec(skb, offset,
1722 msg->msg_iov, used);
1723 if (err) {
1724 /* Exception. Bailout! */
1725 if (!copied)
1726 copied = -EFAULT;
1727 break;
1728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 }
1730 }
1731
1732 *seq += used;
1733 copied += used;
1734 len -= used;
1735
1736 tcp_rcv_space_adjust(sk);
1737
1738skip_copy:
1739 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) {
1740 tp->urg_data = 0;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001741 tcp_fast_path_check(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 if (used + offset < skb->len)
1744 continue;
1745
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001746 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 goto found_fin_ok;
Chris Leech1a2449a2006-05-23 18:05:53 -07001748 if (!(flags & MSG_PEEK)) {
1749 sk_eat_skb(sk, skb, copied_early);
1750 copied_early = 0;
1751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 continue;
1753
1754 found_fin_ok:
1755 /* Process the FIN. */
1756 ++*seq;
Chris Leech1a2449a2006-05-23 18:05:53 -07001757 if (!(flags & MSG_PEEK)) {
1758 sk_eat_skb(sk, skb, copied_early);
1759 copied_early = 0;
1760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 break;
1762 } while (len > 0);
1763
1764 if (user_recv) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001765 if (!skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 int chunk;
1767
1768 tp->ucopy.len = copied > 0 ? len : 0;
1769
1770 tcp_prequeue_process(sk);
1771
1772 if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001773 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 len -= chunk;
1775 copied += chunk;
1776 }
1777 }
1778
1779 tp->ucopy.task = NULL;
1780 tp->ucopy.len = 0;
1781 }
1782
Chris Leech1a2449a2006-05-23 18:05:53 -07001783#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001784 tcp_service_net_dma(sk, true); /* Wait for queue to drain */
1785 tp->ucopy.dma_chan = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001786
Chris Leech1a2449a2006-05-23 18:05:53 -07001787 if (tp->ucopy.pinned_list) {
1788 dma_unpin_iovec_pages(tp->ucopy.pinned_list);
1789 tp->ucopy.pinned_list = NULL;
1790 }
1791#endif
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /* According to UNIX98, msg_name/msg_namelen are ignored
1794 * on connected socket. I was just happy when found this 8) --ANK
1795 */
1796
1797 /* Clean up data we have read: This will do ACK frames. */
Chris Leech0e4b4992006-05-23 18:00:16 -07001798 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001801
1802 if (copied > 0)
1803 uid_stat_tcp_rcv(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return copied;
1805
1806out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 release_sock(sk);
1808 return err;
1809
1810recv_urg:
Rami Rosen377f0a02009-03-31 14:43:17 -07001811 err = tcp_recv_urg(sk, msg, len, flags);
Mike Chan5a0b3542009-01-07 11:40:42 -08001812 if (err > 0)
1813 uid_stat_tcp_rcv(current_uid(), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 goto out;
1815}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001816EXPORT_SYMBOL(tcp_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001818void tcp_set_state(struct sock *sk, int state)
1819{
1820 int oldstate = sk->sk_state;
1821
1822 switch (state) {
1823 case TCP_ESTABLISHED:
1824 if (oldstate != TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001825 TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001826 break;
1827
1828 case TCP_CLOSE:
1829 if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001830 TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001831
1832 sk->sk_prot->unhash(sk);
1833 if (inet_csk(sk)->icsk_bind_hash &&
1834 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001835 inet_put_port(sk);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001836 /* fall through */
1837 default:
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001838 if (oldstate == TCP_ESTABLISHED)
Pavel Emelyanov74688e42008-07-16 20:22:46 -07001839 TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001840 }
1841
1842 /* Change state AFTER socket is unhashed to avoid closed
1843 * socket sitting in hash tables.
1844 */
1845 sk->sk_state = state;
1846
1847#ifdef STATE_TRACE
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001848 SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n", sk, statename[oldstate], statename[state]);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001849#endif
1850}
1851EXPORT_SYMBOL_GPL(tcp_set_state);
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853/*
1854 * State processing on a close. This implements the state shift for
1855 * sending our FIN frame. Note that we only send a FIN for some
1856 * states. A shutdown() may have already sent the FIN, or we may be
1857 * closed.
1858 */
1859
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001860static const unsigned char new_state[16] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /* current state: new state: action: */
1862 /* (Invalid) */ TCP_CLOSE,
1863 /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1864 /* TCP_SYN_SENT */ TCP_CLOSE,
1865 /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1866 /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1,
1867 /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2,
1868 /* TCP_TIME_WAIT */ TCP_CLOSE,
1869 /* TCP_CLOSE */ TCP_CLOSE,
1870 /* TCP_CLOSE_WAIT */ TCP_LAST_ACK | TCP_ACTION_FIN,
1871 /* TCP_LAST_ACK */ TCP_LAST_ACK,
1872 /* TCP_LISTEN */ TCP_CLOSE,
1873 /* TCP_CLOSING */ TCP_CLOSING,
1874};
1875
1876static int tcp_close_state(struct sock *sk)
1877{
1878 int next = (int)new_state[sk->sk_state];
1879 int ns = next & TCP_STATE_MASK;
1880
1881 tcp_set_state(sk, ns);
1882
1883 return next & TCP_ACTION_FIN;
1884}
1885
1886/*
1887 * Shutdown the sending side of a connection. Much like close except
Satoru SATOH1f29b052008-04-21 02:27:58 -07001888 * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
1890
1891void tcp_shutdown(struct sock *sk, int how)
1892{
1893 /* We need to grab some memory, and put together a FIN,
1894 * and then put it into the queue to be sent.
1895 * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1896 */
1897 if (!(how & SEND_SHUTDOWN))
1898 return;
1899
1900 /* If we've already sent a FIN, or it's a closed state, skip this. */
1901 if ((1 << sk->sk_state) &
1902 (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1903 TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) {
1904 /* Clear out any half completed packets. FIN if needed. */
1905 if (tcp_close_state(sk))
1906 tcp_send_fin(sk);
1907 }
1908}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001909EXPORT_SYMBOL(tcp_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001911bool tcp_check_oom(struct sock *sk, int shift)
1912{
1913 bool too_many_orphans, out_of_socket_memory;
1914
1915 too_many_orphans = tcp_too_many_orphans(sk, shift);
1916 out_of_socket_memory = tcp_out_of_memory(sk);
1917
1918 if (too_many_orphans && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001919 pr_info("too many orphaned sockets\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001920 if (out_of_socket_memory && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001921 pr_info("out of memory -- consider tuning tcp_mem\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001922 return too_many_orphans || out_of_socket_memory;
1923}
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925void tcp_close(struct sock *sk, long timeout)
1926{
1927 struct sk_buff *skb;
1928 int data_was_unread = 0;
Herbert Xu75c2d9072006-05-03 23:31:35 -07001929 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 lock_sock(sk);
1932 sk->sk_shutdown = SHUTDOWN_MASK;
1933
1934 if (sk->sk_state == TCP_LISTEN) {
1935 tcp_set_state(sk, TCP_CLOSE);
1936
1937 /* Special case. */
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07001938 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 goto adjudge_to_death;
1941 }
1942
1943 /* We need to flush the recv. buffs. We do this only on the
1944 * descriptor close, not protocol-sourced closes, because the
1945 * reader process may not have drained the data yet!
1946 */
1947 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
1948 u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq -
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001949 tcp_hdr(skb)->fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 data_was_unread += len;
1951 __kfree_skb(skb);
1952 }
1953
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001954 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Konstantin Khorenko565b7b22010-06-24 21:54:58 -07001956 /* If socket has been already reset (e.g. in tcp_reset()) - kill it. */
1957 if (sk->sk_state == TCP_CLOSE)
1958 goto adjudge_to_death;
1959
Gerrit Renker65bb7232007-04-28 21:21:46 -07001960 /* As outlined in RFC 2525, section 2.17, we send a RST here because
1961 * data was lost. To witness the awful effects of the old behavior of
1962 * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk
1963 * GET in an FTP client, suspend the process, wait for the client to
1964 * advertise a zero window, then kill -9 the FTP client, wheee...
1965 * Note: timeout is always zero in such a case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 */
1967 if (data_was_unread) {
1968 /* Unread data was tossed, zap the connection. */
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001969 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 tcp_set_state(sk, TCP_CLOSE);
Wu Fengguangaa133072009-09-02 23:45:45 -07001971 tcp_send_active_reset(sk, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1973 /* Check zero linger _after_ checking for unread data. */
1974 sk->sk_prot->disconnect(sk, 0);
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001975 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 } else if (tcp_close_state(sk)) {
1977 /* We FIN if the application ate all the data before
1978 * zapping the connection.
1979 */
1980
1981 /* RED-PEN. Formally speaking, we have broken TCP state
1982 * machine. State transitions:
1983 *
1984 * TCP_ESTABLISHED -> TCP_FIN_WAIT1
1985 * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible)
1986 * TCP_CLOSE_WAIT -> TCP_LAST_ACK
1987 *
1988 * are legal only when FIN has been sent (i.e. in window),
1989 * rather than queued out of window. Purists blame.
1990 *
1991 * F.e. "RFC state" is ESTABLISHED,
1992 * if Linux state is FIN-WAIT-1, but FIN is still not sent.
1993 *
1994 * The visible declinations are that sometimes
1995 * we enter time-wait state, when it is not required really
1996 * (harmless), do not send active resets, when they are
1997 * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
1998 * they look as CLOSING or LAST_ACK for Linux)
1999 * Probably, I missed some more holelets.
2000 * --ANK
2001 */
2002 tcp_send_fin(sk);
2003 }
2004
2005 sk_stream_wait_close(sk, timeout);
2006
2007adjudge_to_death:
Herbert Xu75c2d9072006-05-03 23:31:35 -07002008 state = sk->sk_state;
2009 sock_hold(sk);
2010 sock_orphan(sk);
Herbert Xu75c2d9072006-05-03 23:31:35 -07002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /* It is the last release_sock in its life. It will remove backlog. */
2013 release_sock(sk);
2014
2015
2016 /* Now socket is owned by kernel and we acquire BH lock
2017 to finish close. No need to check for user refs.
2018 */
2019 local_bh_disable();
2020 bh_lock_sock(sk);
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002021 WARN_ON(sock_owned_by_user(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Herbert Xueb4dea52008-12-29 23:04:08 -08002023 percpu_counter_inc(sk->sk_prot->orphan_count);
2024
Herbert Xu75c2d9072006-05-03 23:31:35 -07002025 /* Have we already been destroyed by a softirq or backlog? */
2026 if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE)
2027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 /* This is a (useful) BSD violating of the RFC. There is a
2030 * problem with TCP as specified in that the other end could
2031 * keep a socket open forever with no application left this end.
2032 * We use a 3 minute timeout (about the same as BSD) then kill
2033 * our end. If they send after that then tough - BUT: long enough
2034 * that we won't make the old 4*rto = almost no time - whoops
2035 * reset mistake.
2036 *
2037 * Nope, it was not mistake. It is really desired behaviour
2038 * f.e. on http servers, when such sockets are useless, but
2039 * consume significant resources. Let's do it with special
2040 * linger2 option. --ANK
2041 */
2042
2043 if (sk->sk_state == TCP_FIN_WAIT2) {
2044 struct tcp_sock *tp = tcp_sk(sk);
2045 if (tp->linger2 < 0) {
2046 tcp_set_state(sk, TCP_CLOSE);
2047 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002048 NET_INC_STATS_BH(sock_net(sk),
2049 LINUX_MIB_TCPABORTONLINGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002051 const int tmo = tcp_fin_time(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 if (tmo > TCP_TIMEWAIT_LEN) {
David S. Miller52499af2006-07-31 22:32:09 -07002054 inet_csk_reset_keepalive_timer(sk,
2055 tmo - TCP_TIMEWAIT_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
2058 goto out;
2059 }
2060 }
2061 }
2062 if (sk->sk_state != TCP_CLOSE) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002063 sk_mem_reclaim(sk);
Arun Sharmaefcdbf22012-01-30 14:16:06 -08002064 if (tcp_check_oom(sk, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 tcp_set_state(sk, TCP_CLOSE);
2066 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002067 NET_INC_STATS_BH(sock_net(sk),
2068 LINUX_MIB_TCPABORTONMEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 if (sk->sk_state == TCP_CLOSE)
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002073 inet_csk_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /* Otherwise, socket is reprieved until protocol close. */
2075
2076out:
2077 bh_unlock_sock(sk);
2078 local_bh_enable();
2079 sock_put(sk);
2080}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002081EXPORT_SYMBOL(tcp_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083/* These states need RST on ABORT according to RFC793 */
2084
2085static inline int tcp_need_reset(int state)
2086{
2087 return (1 << state) &
2088 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 |
2089 TCPF_FIN_WAIT2 | TCPF_SYN_RECV);
2090}
2091
2092int tcp_disconnect(struct sock *sk, int flags)
2093{
2094 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002095 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct tcp_sock *tp = tcp_sk(sk);
2097 int err = 0;
2098 int old_state = sk->sk_state;
2099
2100 if (old_state != TCP_CLOSE)
2101 tcp_set_state(sk, TCP_CLOSE);
2102
2103 /* ABORT function of RFC793 */
2104 if (old_state == TCP_LISTEN) {
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002105 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 } else if (tcp_need_reset(old_state) ||
2107 (tp->snd_nxt != tp->write_seq &&
2108 (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002109 /* The last check adjusts for discrepancy of Linux wrt. RFC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * states
2111 */
2112 tcp_send_active_reset(sk, gfp_any());
2113 sk->sk_err = ECONNRESET;
2114 } else if (old_state == TCP_SYN_SENT)
2115 sk->sk_err = ECONNRESET;
2116
2117 tcp_clear_xmit_timers(sk);
2118 __skb_queue_purge(&sk->sk_receive_queue);
David S. Millerfe067e82007-03-07 12:12:44 -08002119 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 __skb_queue_purge(&tp->out_of_order_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07002121#ifdef CONFIG_NET_DMA
2122 __skb_queue_purge(&sk->sk_async_wait_queue);
2123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002125 inet->inet_dport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
2128 inet_reset_saddr(sk);
2129
2130 sk->sk_shutdown = 0;
2131 sock_reset_flag(sk, SOCK_DONE);
2132 tp->srtt = 0;
2133 if ((tp->write_seq += tp->max_window + 2) == 0)
2134 tp->write_seq = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002135 icsk->icsk_backoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 tp->snd_cwnd = 2;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002137 icsk->icsk_probes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 tp->packets_out = 0;
Ilpo Järvinen0b6a05c2009-09-15 01:30:10 -07002139 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 tp->snd_cwnd_cnt = 0;
Stephen Hemminger9772efb2005-11-10 17:09:53 -08002141 tp->bytes_acked = 0;
Eric Dumazet1fdf4752009-11-30 12:53:30 -08002142 tp->window_clamp = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002143 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 tcp_clear_retrans(tp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002145 inet_csk_delack_init(sk);
Wei Wang7b983f12017-05-18 11:22:33 -07002146 /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0
2147 * issue in __tcp_select_window()
2148 */
2149 icsk->icsk_ack.rcv_mss = TCP_MIN_MSS;
David S. Millerfe067e82007-03-07 12:12:44 -08002150 tcp_init_send_head(sk);
Srinivas Ajib40b4f72007-05-03 17:32:28 -07002151 memset(&tp->rx_opt, 0, sizeof(tp->rx_opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 __sk_dst_reset(sk);
2153
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002154 WARN_ON(inet->inet_num && !icsk->icsk_bind_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 sk->sk_error_report(sk);
2157 return err;
2158}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002159EXPORT_SYMBOL(tcp_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 * Socket option code for TCP.
2163 */
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002164static int do_tcp_setsockopt(struct sock *sk, int level,
David S. Millerb7058842009-09-30 16:12:20 -07002165 int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002168 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 int val;
2170 int err = 0;
2171
William Allen Simpsone56fb502009-12-02 18:19:30 +00002172 /* These are data/string values, all the others are ints */
2173 switch (optname) {
2174 case TCP_CONGESTION: {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002175 char name[TCP_CA_NAME_MAX];
2176
2177 if (optlen < 1)
2178 return -EINVAL;
2179
2180 val = strncpy_from_user(name, optval,
Andrew Morton4fdb78d2009-10-01 15:02:20 -07002181 min_t(long, TCP_CA_NAME_MAX-1, optlen));
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002182 if (val < 0)
2183 return -EFAULT;
2184 name[val] = 0;
2185
2186 lock_sock(sk);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002187 err = tcp_set_congestion_control(sk, name);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002188 release_sock(sk);
2189 return err;
2190 }
William Allen Simpsone56fb502009-12-02 18:19:30 +00002191 case TCP_COOKIE_TRANSACTIONS: {
2192 struct tcp_cookie_transactions ctd;
2193 struct tcp_cookie_values *cvp = NULL;
2194
2195 if (sizeof(ctd) > optlen)
2196 return -EINVAL;
2197 if (copy_from_user(&ctd, optval, sizeof(ctd)))
2198 return -EFAULT;
2199
2200 if (ctd.tcpct_used > sizeof(ctd.tcpct_value) ||
2201 ctd.tcpct_s_data_desired > TCP_MSS_DESIRED)
2202 return -EINVAL;
2203
2204 if (ctd.tcpct_cookie_desired == 0) {
2205 /* default to global value */
2206 } else if ((0x1 & ctd.tcpct_cookie_desired) ||
2207 ctd.tcpct_cookie_desired > TCP_COOKIE_MAX ||
2208 ctd.tcpct_cookie_desired < TCP_COOKIE_MIN) {
2209 return -EINVAL;
2210 }
2211
2212 if (TCP_COOKIE_OUT_NEVER & ctd.tcpct_flags) {
2213 /* Supercedes all other values */
2214 lock_sock(sk);
2215 if (tp->cookie_values != NULL) {
2216 kref_put(&tp->cookie_values->kref,
2217 tcp_cookie_values_release);
2218 tp->cookie_values = NULL;
2219 }
2220 tp->rx_opt.cookie_in_always = 0; /* false */
2221 tp->rx_opt.cookie_out_never = 1; /* true */
2222 release_sock(sk);
2223 return err;
2224 }
2225
2226 /* Allocate ancillary memory before locking.
2227 */
2228 if (ctd.tcpct_used > 0 ||
2229 (tp->cookie_values == NULL &&
2230 (sysctl_tcp_cookie_size > 0 ||
2231 ctd.tcpct_cookie_desired > 0 ||
2232 ctd.tcpct_s_data_desired > 0))) {
2233 cvp = kzalloc(sizeof(*cvp) + ctd.tcpct_used,
2234 GFP_KERNEL);
2235 if (cvp == NULL)
2236 return -ENOMEM;
Dmitry Popova3bdb542010-07-29 01:59:36 +00002237
2238 kref_init(&cvp->kref);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002239 }
2240 lock_sock(sk);
2241 tp->rx_opt.cookie_in_always =
2242 (TCP_COOKIE_IN_ALWAYS & ctd.tcpct_flags);
2243 tp->rx_opt.cookie_out_never = 0; /* false */
2244
2245 if (tp->cookie_values != NULL) {
2246 if (cvp != NULL) {
2247 /* Changed values are recorded by a changed
2248 * pointer, ensuring the cookie will differ,
2249 * without separately hashing each value later.
2250 */
2251 kref_put(&tp->cookie_values->kref,
2252 tcp_cookie_values_release);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002253 } else {
2254 cvp = tp->cookie_values;
2255 }
2256 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002257
William Allen Simpsone56fb502009-12-02 18:19:30 +00002258 if (cvp != NULL) {
2259 cvp->cookie_desired = ctd.tcpct_cookie_desired;
2260
2261 if (ctd.tcpct_used > 0) {
2262 memcpy(cvp->s_data_payload, ctd.tcpct_value,
2263 ctd.tcpct_used);
2264 cvp->s_data_desired = ctd.tcpct_used;
2265 cvp->s_data_constant = 1; /* true */
2266 } else {
2267 /* No constant payload data. */
2268 cvp->s_data_desired = ctd.tcpct_s_data_desired;
2269 cvp->s_data_constant = 0; /* false */
2270 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002271
2272 tp->cookie_values = cvp;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002273 }
2274 release_sock(sk);
2275 return err;
2276 }
2277 default:
2278 /* fallthru */
2279 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002280 }
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (optlen < sizeof(int))
2283 return -EINVAL;
2284
2285 if (get_user(val, (int __user *)optval))
2286 return -EFAULT;
2287
2288 lock_sock(sk);
2289
2290 switch (optname) {
2291 case TCP_MAXSEG:
2292 /* Values greater than interface MTU won't take effect. However
2293 * at the point when this call is done we typically don't yet
2294 * know which interface is going to be used */
David S. Millerc39508d2010-11-24 11:47:22 -08002295 if (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 err = -EINVAL;
2297 break;
2298 }
2299 tp->rx_opt.user_mss = val;
2300 break;
2301
2302 case TCP_NODELAY:
2303 if (val) {
2304 /* TCP_NODELAY is weaker than TCP_CORK, so that
2305 * this option on corked socket is remembered, but
2306 * it is not activated until cork is cleared.
2307 *
2308 * However, when TCP_NODELAY is set we make
2309 * an explicit push, which overrides even TCP_CORK
2310 * for currently queued segments.
2311 */
2312 tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002313 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 } else {
2315 tp->nonagle &= ~TCP_NAGLE_OFF;
2316 }
2317 break;
2318
Andreas Petlund36e31b02010-02-18 02:47:01 +00002319 case TCP_THIN_LINEAR_TIMEOUTS:
2320 if (val < 0 || val > 1)
2321 err = -EINVAL;
2322 else
2323 tp->thin_lto = val;
2324 break;
2325
Andreas Petlund7e380172010-02-18 04:48:19 +00002326 case TCP_THIN_DUPACK:
2327 if (val < 0 || val > 1)
2328 err = -EINVAL;
2329 else
2330 tp->thin_dupack = val;
2331 break;
2332
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 case TCP_CORK:
2334 /* When set indicates to always queue non-full frames.
2335 * Later the user clears this option and we transmit
2336 * any pending partial frames in the queue. This is
2337 * meant to be used alongside sendfile() to get properly
2338 * filled frames when the user (for example) must write
2339 * out headers with a write() call first and then use
2340 * sendfile to send out the data parts.
2341 *
2342 * TCP_CORK can be set together with TCP_NODELAY and it is
2343 * stronger than TCP_NODELAY.
2344 */
2345 if (val) {
2346 tp->nonagle |= TCP_NAGLE_CORK;
2347 } else {
2348 tp->nonagle &= ~TCP_NAGLE_CORK;
2349 if (tp->nonagle&TCP_NAGLE_OFF)
2350 tp->nonagle |= TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002351 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
2353 break;
2354
2355 case TCP_KEEPIDLE:
2356 if (val < 1 || val > MAX_TCP_KEEPIDLE)
2357 err = -EINVAL;
2358 else {
2359 tp->keepalive_time = val * HZ;
2360 if (sock_flag(sk, SOCK_KEEPOPEN) &&
2361 !((1 << sk->sk_state) &
2362 (TCPF_CLOSE | TCPF_LISTEN))) {
Flavio Leitner6c37e5d2010-04-26 18:33:27 +00002363 u32 elapsed = keepalive_time_elapsed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 if (tp->keepalive_time > elapsed)
2365 elapsed = tp->keepalive_time - elapsed;
2366 else
2367 elapsed = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002368 inet_csk_reset_keepalive_timer(sk, elapsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
2370 }
2371 break;
2372 case TCP_KEEPINTVL:
2373 if (val < 1 || val > MAX_TCP_KEEPINTVL)
2374 err = -EINVAL;
2375 else
2376 tp->keepalive_intvl = val * HZ;
2377 break;
2378 case TCP_KEEPCNT:
2379 if (val < 1 || val > MAX_TCP_KEEPCNT)
2380 err = -EINVAL;
2381 else
2382 tp->keepalive_probes = val;
2383 break;
2384 case TCP_SYNCNT:
2385 if (val < 1 || val > MAX_TCP_SYNCNT)
2386 err = -EINVAL;
2387 else
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002388 icsk->icsk_syn_retries = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 break;
2390
2391 case TCP_LINGER2:
2392 if (val < 0)
2393 tp->linger2 = -1;
2394 else if (val > sysctl_tcp_fin_timeout / HZ)
2395 tp->linger2 = 0;
2396 else
2397 tp->linger2 = val * HZ;
2398 break;
2399
2400 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002401 /* Translate value in seconds to number of retransmits */
2402 icsk->icsk_accept_queue.rskq_defer_accept =
2403 secs_to_retrans(val, TCP_TIMEOUT_INIT / HZ,
2404 TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 break;
2406
2407 case TCP_WINDOW_CLAMP:
2408 if (!val) {
2409 if (sk->sk_state != TCP_CLOSE) {
2410 err = -EINVAL;
2411 break;
2412 }
2413 tp->window_clamp = 0;
2414 } else
2415 tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
2416 SOCK_MIN_RCVBUF / 2 : val;
2417 break;
2418
2419 case TCP_QUICKACK:
2420 if (!val) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002421 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002423 icsk->icsk_ack.pingpong = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if ((1 << sk->sk_state) &
2425 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002426 inet_csk_ack_scheduled(sk)) {
2427 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
Chris Leech0e4b4992006-05-23 18:00:16 -07002428 tcp_cleanup_rbuf(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 if (!(val & 1))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002430 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 }
2432 }
2433 break;
2434
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002435#ifdef CONFIG_TCP_MD5SIG
2436 case TCP_MD5SIG:
2437 /* Read the IP->Key mappings from userspace */
2438 err = tp->af_specific->md5_parse(sk, optval, optlen);
2439 break;
2440#endif
Jerry Chudca43c72010-08-27 19:13:28 +00002441 case TCP_USER_TIMEOUT:
2442 /* Cap the max timeout in ms TCP will retry/retrans
2443 * before giving up and aborting (ETIMEDOUT) a connection.
2444 */
Hangbin Liube774312012-07-26 22:52:21 +00002445 if (val < 0)
2446 err = -EINVAL;
2447 else
2448 icsk->icsk_user_timeout = msecs_to_jiffies(val);
Jerry Chudca43c72010-08-27 19:13:28 +00002449 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 default:
2451 err = -ENOPROTOOPT;
2452 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002453 }
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 release_sock(sk);
2456 return err;
2457}
2458
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002459int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002460 unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002461{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002462 const struct inet_connection_sock *icsk = inet_csk(sk);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002463
2464 if (level != SOL_TCP)
2465 return icsk->icsk_af_ops->setsockopt(sk, level, optname,
2466 optval, optlen);
2467 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2468}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002469EXPORT_SYMBOL(tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002470
2471#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002472int compat_tcp_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002473 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002474{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002475 if (level != SOL_TCP)
2476 return inet_csk_compat_setsockopt(sk, level, optname,
2477 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002478 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2479}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002480EXPORT_SYMBOL(compat_tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002481#endif
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483/* Return information about state of tcp endpoint in API format. */
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002484void tcp_get_info(const struct sock *sk, struct tcp_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002486 const struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002487 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 u32 now = tcp_time_stamp;
2489
2490 memset(info, 0, sizeof(*info));
2491
2492 info->tcpi_state = sk->sk_state;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002493 info->tcpi_ca_state = icsk->icsk_ca_state;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002494 info->tcpi_retransmits = icsk->icsk_retransmits;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002495 info->tcpi_probes = icsk->icsk_probes_out;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002496 info->tcpi_backoff = icsk->icsk_backoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 if (tp->rx_opt.tstamp_ok)
2499 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
Ilpo Järvinene60402d2007-08-09 15:14:46 +03002500 if (tcp_is_sack(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 info->tcpi_options |= TCPI_OPT_SACK;
2502 if (tp->rx_opt.wscale_ok) {
2503 info->tcpi_options |= TCPI_OPT_WSCALE;
2504 info->tcpi_snd_wscale = tp->rx_opt.snd_wscale;
2505 info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Eric Dumazetb5c56932011-10-03 14:01:21 -04002508 if (tp->ecn_flags & TCP_ECN_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 info->tcpi_options |= TCPI_OPT_ECN;
Eric Dumazetb5c56932011-10-03 14:01:21 -04002510 if (tp->ecn_flags & TCP_ECN_SEEN)
2511 info->tcpi_options |= TCPI_OPT_ECN_SEEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002513 info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);
2514 info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002515 info->tcpi_snd_mss = tp->mss_cache;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002516 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Rick Jones5ee3afb2007-09-18 13:26:31 -07002518 if (sk->sk_state == TCP_LISTEN) {
2519 info->tcpi_unacked = sk->sk_ack_backlog;
2520 info->tcpi_sacked = sk->sk_max_ack_backlog;
2521 } else {
2522 info->tcpi_unacked = tp->packets_out;
2523 info->tcpi_sacked = tp->sacked_out;
2524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 info->tcpi_lost = tp->lost_out;
2526 info->tcpi_retrans = tp->retrans_out;
2527 info->tcpi_fackets = tp->fackets_out;
2528
2529 info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002530 info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp);
2532
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08002533 info->tcpi_pmtu = icsk->icsk_pmtu_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 info->tcpi_rcv_ssthresh = tp->rcv_ssthresh;
2535 info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3;
2536 info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2;
2537 info->tcpi_snd_ssthresh = tp->snd_ssthresh;
2538 info->tcpi_snd_cwnd = tp->snd_cwnd;
2539 info->tcpi_advmss = tp->advmss;
2540 info->tcpi_reordering = tp->reordering;
2541
2542 info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3;
2543 info->tcpi_rcv_space = tp->rcvq_space.space;
2544
2545 info->tcpi_total_retrans = tp->total_retrans;
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002546
Steve Mucklef132c6c2012-06-06 18:30:57 -07002547 if (sk->sk_socket) {
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002548 struct file *filep = sk->sk_socket->file;
Steve Mucklef132c6c2012-06-06 18:30:57 -07002549 if (filep)
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002550 info->tcpi_count = atomic_read(&filep->f_count);
2551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553EXPORT_SYMBOL_GPL(tcp_get_info);
2554
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002555static int do_tcp_getsockopt(struct sock *sk, int level,
2556 int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557{
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002558 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 struct tcp_sock *tp = tcp_sk(sk);
2560 int val, len;
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (get_user(len, optlen))
2563 return -EFAULT;
2564
2565 len = min_t(unsigned int, len, sizeof(int));
2566
2567 if (len < 0)
2568 return -EINVAL;
2569
2570 switch (optname) {
2571 case TCP_MAXSEG:
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002572 val = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
2574 val = tp->rx_opt.user_mss;
2575 break;
2576 case TCP_NODELAY:
2577 val = !!(tp->nonagle&TCP_NAGLE_OFF);
2578 break;
2579 case TCP_CORK:
2580 val = !!(tp->nonagle&TCP_NAGLE_CORK);
2581 break;
2582 case TCP_KEEPIDLE:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002583 val = keepalive_time_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 break;
2585 case TCP_KEEPINTVL:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002586 val = keepalive_intvl_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 break;
2588 case TCP_KEEPCNT:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002589 val = keepalive_probes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 break;
2591 case TCP_SYNCNT:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002592 val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 break;
2594 case TCP_LINGER2:
2595 val = tp->linger2;
2596 if (val >= 0)
2597 val = (val ? : sysctl_tcp_fin_timeout) / HZ;
2598 break;
2599 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002600 val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept,
2601 TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 break;
2603 case TCP_WINDOW_CLAMP:
2604 val = tp->window_clamp;
2605 break;
2606 case TCP_INFO: {
2607 struct tcp_info info;
2608
2609 if (get_user(len, optlen))
2610 return -EFAULT;
2611
2612 tcp_get_info(sk, &info);
2613
2614 len = min_t(unsigned int, len, sizeof(info));
2615 if (put_user(len, optlen))
2616 return -EFAULT;
2617 if (copy_to_user(optval, &info, len))
2618 return -EFAULT;
2619 return 0;
2620 }
2621 case TCP_QUICKACK:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002622 val = !icsk->icsk_ack.pingpong;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 break;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002624
2625 case TCP_CONGESTION:
2626 if (get_user(len, optlen))
2627 return -EFAULT;
2628 len = min_t(unsigned int, len, TCP_CA_NAME_MAX);
2629 if (put_user(len, optlen))
2630 return -EFAULT;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002631 if (copy_to_user(optval, icsk->icsk_ca_ops->name, len))
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002632 return -EFAULT;
2633 return 0;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002634
2635 case TCP_COOKIE_TRANSACTIONS: {
2636 struct tcp_cookie_transactions ctd;
2637 struct tcp_cookie_values *cvp = tp->cookie_values;
2638
2639 if (get_user(len, optlen))
2640 return -EFAULT;
2641 if (len < sizeof(ctd))
2642 return -EINVAL;
2643
2644 memset(&ctd, 0, sizeof(ctd));
2645 ctd.tcpct_flags = (tp->rx_opt.cookie_in_always ?
2646 TCP_COOKIE_IN_ALWAYS : 0)
2647 | (tp->rx_opt.cookie_out_never ?
2648 TCP_COOKIE_OUT_NEVER : 0);
2649
2650 if (cvp != NULL) {
2651 ctd.tcpct_flags |= (cvp->s_data_in ?
2652 TCP_S_DATA_IN : 0)
2653 | (cvp->s_data_out ?
2654 TCP_S_DATA_OUT : 0);
2655
2656 ctd.tcpct_cookie_desired = cvp->cookie_desired;
2657 ctd.tcpct_s_data_desired = cvp->s_data_desired;
2658
William Allen Simpsone56fb502009-12-02 18:19:30 +00002659 memcpy(&ctd.tcpct_value[0], &cvp->cookie_pair[0],
2660 cvp->cookie_pair_size);
2661 ctd.tcpct_used = cvp->cookie_pair_size;
2662 }
2663
2664 if (put_user(sizeof(ctd), optlen))
2665 return -EFAULT;
2666 if (copy_to_user(optval, &ctd, sizeof(ctd)))
2667 return -EFAULT;
2668 return 0;
2669 }
Josh Hunt3c0fef02010-07-30 13:49:35 +00002670 case TCP_THIN_LINEAR_TIMEOUTS:
2671 val = tp->thin_lto;
2672 break;
2673 case TCP_THIN_DUPACK:
2674 val = tp->thin_dupack;
2675 break;
Jerry Chudca43c72010-08-27 19:13:28 +00002676
2677 case TCP_USER_TIMEOUT:
2678 val = jiffies_to_msecs(icsk->icsk_user_timeout);
2679 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 default:
2681 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 if (put_user(len, optlen))
2685 return -EFAULT;
2686 if (copy_to_user(optval, &val, len))
2687 return -EFAULT;
2688 return 0;
2689}
2690
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002691int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval,
2692 int __user *optlen)
2693{
2694 struct inet_connection_sock *icsk = inet_csk(sk);
2695
2696 if (level != SOL_TCP)
2697 return icsk->icsk_af_ops->getsockopt(sk, level, optname,
2698 optval, optlen);
2699 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2700}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002701EXPORT_SYMBOL(tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002702
2703#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002704int compat_tcp_getsockopt(struct sock *sk, int level, int optname,
2705 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002706{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002707 if (level != SOL_TCP)
2708 return inet_csk_compat_getsockopt(sk, level, optname,
2709 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002710 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2711}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002712EXPORT_SYMBOL(compat_tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002715struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
2716 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002717{
2718 struct sk_buff *segs = ERR_PTR(-EINVAL);
2719 struct tcphdr *th;
2720 unsigned thlen;
2721 unsigned int seq;
Al Virod3bc23e2006-11-14 21:24:49 -08002722 __be32 delta;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002723 unsigned int oldlen;
Herbert Xu4e704ee2009-01-14 20:41:12 -08002724 unsigned int mss;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002725
2726 if (!pskb_may_pull(skb, sizeof(*th)))
2727 goto out;
2728
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002729 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002730 thlen = th->doff * 4;
2731 if (thlen < sizeof(*th))
2732 goto out;
2733
2734 if (!pskb_may_pull(skb, thlen))
2735 goto out;
2736
Herbert Xu0718bcc2006-06-25 23:55:46 -07002737 oldlen = (u16)~skb->len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002738 __skb_pull(skb, thlen);
2739
Herbert Xu4e704ee2009-01-14 20:41:12 -08002740 mss = skb_shinfo(skb)->gso_size;
2741 if (unlikely(skb->len <= mss))
2742 goto out;
2743
Herbert Xu3820c3f2006-06-29 20:11:25 -07002744 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
2745 /* Packet is from an untrusted source, reset gso_segs. */
Herbert Xubbcf4672006-07-03 19:38:35 -07002746 int type = skb_shinfo(skb)->gso_type;
Herbert Xu3820c3f2006-06-29 20:11:25 -07002747
Herbert Xubbcf4672006-07-03 19:38:35 -07002748 if (unlikely(type &
2749 ~(SKB_GSO_TCPV4 |
2750 SKB_GSO_DODGY |
2751 SKB_GSO_TCP_ECN |
2752 SKB_GSO_TCPV6 |
2753 0) ||
2754 !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))))
2755 goto out;
2756
Ilpo Järvinen172589c2007-08-28 15:50:33 -07002757 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
Herbert Xu3820c3f2006-06-29 20:11:25 -07002758
2759 segs = NULL;
2760 goto out;
2761 }
2762
Herbert Xu576a30e2006-06-27 13:22:38 -07002763 segs = skb_segment(skb, features);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002764 if (IS_ERR(segs))
2765 goto out;
2766
Herbert Xu4e704ee2009-01-14 20:41:12 -08002767 delta = htonl(oldlen + (thlen + mss));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002768
2769 skb = segs;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002770 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002771 seq = ntohl(th->seq);
2772
2773 do {
2774 th->fin = th->psh = 0;
2775
Al Virod3bc23e2006-11-14 21:24:49 -08002776 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2777 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002778 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002779 th->check =
2780 csum_fold(csum_partial(skb_transport_header(skb),
2781 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002782
Herbert Xu4e704ee2009-01-14 20:41:12 -08002783 seq += mss;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002784 skb = skb->next;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002785 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002786
2787 th->seq = htonl(seq);
2788 th->cwr = 0;
2789 } while (skb->next);
2790
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002791 delta = htonl(oldlen + (skb->tail - skb->transport_header) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002792 skb->data_len);
Al Virod3bc23e2006-11-14 21:24:49 -08002793 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2794 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002795 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002796 th->check = csum_fold(csum_partial(skb_transport_header(skb),
2797 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002798
2799out:
2800 return segs;
2801}
Herbert Xuadcfc7d2006-06-30 13:36:15 -07002802EXPORT_SYMBOL(tcp_tso_segment);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002803
Herbert Xubf296b12008-12-15 23:43:36 -08002804struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2805{
2806 struct sk_buff **pp = NULL;
2807 struct sk_buff *p;
2808 struct tcphdr *th;
2809 struct tcphdr *th2;
Herbert Xua0a69a02009-04-17 02:34:38 -07002810 unsigned int len;
Herbert Xubf296b12008-12-15 23:43:36 -08002811 unsigned int thlen;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002812 __be32 flags;
Herbert Xubf296b12008-12-15 23:43:36 -08002813 unsigned int mss = 1;
Herbert Xua5b1cf22009-05-26 18:50:28 +00002814 unsigned int hlen;
2815 unsigned int off;
Herbert Xubf296b12008-12-15 23:43:36 -08002816 int flush = 1;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002817 int i;
Herbert Xubf296b12008-12-15 23:43:36 -08002818
Herbert Xua5b1cf22009-05-26 18:50:28 +00002819 off = skb_gro_offset(skb);
2820 hlen = off + sizeof(*th);
2821 th = skb_gro_header_fast(skb, off);
2822 if (skb_gro_header_hard(skb, hlen)) {
2823 th = skb_gro_header_slow(skb, hlen, off);
2824 if (unlikely(!th))
2825 goto out;
2826 }
Herbert Xubf296b12008-12-15 23:43:36 -08002827
Herbert Xubf296b12008-12-15 23:43:36 -08002828 thlen = th->doff * 4;
2829 if (thlen < sizeof(*th))
2830 goto out;
2831
Herbert Xua5b1cf22009-05-26 18:50:28 +00002832 hlen = off + thlen;
2833 if (skb_gro_header_hard(skb, hlen)) {
2834 th = skb_gro_header_slow(skb, hlen, off);
2835 if (unlikely(!th))
2836 goto out;
2837 }
Herbert Xubf296b12008-12-15 23:43:36 -08002838
Herbert Xu86911732009-01-29 14:19:50 +00002839 skb_gro_pull(skb, thlen);
Herbert Xubf296b12008-12-15 23:43:36 -08002840
Herbert Xua0a69a02009-04-17 02:34:38 -07002841 len = skb_gro_len(skb);
Herbert Xubf296b12008-12-15 23:43:36 -08002842 flags = tcp_flag_word(th);
2843
2844 for (; (p = *head); head = &p->next) {
2845 if (!NAPI_GRO_CB(p)->same_flow)
2846 continue;
2847
2848 th2 = tcp_hdr(p);
2849
Herbert Xu745898e2009-05-26 18:50:24 +00002850 if (*(u32 *)&th->source ^ *(u32 *)&th2->source) {
Herbert Xubf296b12008-12-15 23:43:36 -08002851 NAPI_GRO_CB(p)->same_flow = 0;
2852 continue;
2853 }
2854
2855 goto found;
2856 }
2857
2858 goto out_check_final;
2859
2860found:
2861 flush = NAPI_GRO_CB(p)->flush;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002862 flush |= (__force int)(flags & TCP_FLAG_CWR);
2863 flush |= (__force int)((flags ^ tcp_flag_word(th2)) &
2864 ~(TCP_FLAG_CWR | TCP_FLAG_FIN | TCP_FLAG_PSH));
2865 flush |= (__force int)(th->ack_seq ^ th2->ack_seq);
Herbert Xua2a804c2009-05-26 18:50:34 +00002866 for (i = sizeof(*th); i < thlen; i += 4)
Herbert Xuaa6320d2009-02-08 18:00:40 +00002867 flush |= *(u32 *)((u8 *)th + i) ^
2868 *(u32 *)((u8 *)th2 + i);
Herbert Xubf296b12008-12-15 23:43:36 -08002869
Herbert Xub5302562009-01-04 16:13:19 -08002870 mss = skb_shinfo(p)->gso_size;
Herbert Xubf296b12008-12-15 23:43:36 -08002871
Herbert Xu30a3ae32009-05-26 18:50:26 +00002872 flush |= (len - 1) >= mss;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002873 flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
Herbert Xubf296b12008-12-15 23:43:36 -08002874
2875 if (flush || skb_gro_receive(head, skb)) {
2876 mss = 1;
2877 goto out_check_final;
2878 }
2879
2880 p = *head;
2881 th2 = tcp_hdr(p);
2882 tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH);
2883
2884out_check_final:
Herbert Xua0a69a02009-04-17 02:34:38 -07002885 flush = len < mss;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002886 flush |= (__force int)(flags & (TCP_FLAG_URG | TCP_FLAG_PSH |
2887 TCP_FLAG_RST | TCP_FLAG_SYN |
2888 TCP_FLAG_FIN));
Herbert Xubf296b12008-12-15 23:43:36 -08002889
2890 if (p && (!NAPI_GRO_CB(skb)->same_flow || flush))
2891 pp = head;
2892
2893out:
2894 NAPI_GRO_CB(skb)->flush |= flush;
2895
2896 return pp;
2897}
Herbert Xu684f2172009-01-08 10:41:23 -08002898EXPORT_SYMBOL(tcp_gro_receive);
Herbert Xubf296b12008-12-15 23:43:36 -08002899
2900int tcp_gro_complete(struct sk_buff *skb)
2901{
2902 struct tcphdr *th = tcp_hdr(skb);
2903
2904 skb->csum_start = skb_transport_header(skb) - skb->head;
2905 skb->csum_offset = offsetof(struct tcphdr, check);
2906 skb->ip_summed = CHECKSUM_PARTIAL;
2907
Herbert Xubf296b12008-12-15 23:43:36 -08002908 skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
2909
2910 if (th->cwr)
2911 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
2912
2913 return 0;
2914}
Herbert Xu684f2172009-01-08 10:41:23 -08002915EXPORT_SYMBOL(tcp_gro_complete);
Herbert Xubf296b12008-12-15 23:43:36 -08002916
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002917#ifdef CONFIG_TCP_MD5SIG
2918static unsigned long tcp_md5sig_users;
Eric Dumazet765cf992011-09-12 20:28:37 +00002919static struct tcp_md5sig_pool __percpu *tcp_md5sig_pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002920static DEFINE_SPINLOCK(tcp_md5sig_pool_lock);
2921
Eric Dumazet765cf992011-09-12 20:28:37 +00002922static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool __percpu *pool)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002923{
2924 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002925
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002926 for_each_possible_cpu(cpu) {
Eric Dumazet765cf992011-09-12 20:28:37 +00002927 struct tcp_md5sig_pool *p = per_cpu_ptr(pool, cpu);
2928
2929 if (p->md5_desc.tfm)
2930 crypto_free_hash(p->md5_desc.tfm);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002931 }
2932 free_percpu(pool);
2933}
2934
2935void tcp_free_md5sig_pool(void)
2936{
Eric Dumazet765cf992011-09-12 20:28:37 +00002937 struct tcp_md5sig_pool __percpu *pool = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002938
David S. Miller2c4f6212007-02-20 23:51:47 -08002939 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002940 if (--tcp_md5sig_users == 0) {
2941 pool = tcp_md5sig_pool;
2942 tcp_md5sig_pool = NULL;
2943 }
David S. Miller2c4f6212007-02-20 23:51:47 -08002944 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002945 if (pool)
2946 __tcp_free_md5sig_pool(pool);
2947}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002948EXPORT_SYMBOL(tcp_free_md5sig_pool);
2949
Eric Dumazet765cf992011-09-12 20:28:37 +00002950static struct tcp_md5sig_pool __percpu *
Tejun Heo7d720c32010-02-16 15:20:26 +00002951__tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002952{
2953 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002954 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002955
Eric Dumazet765cf992011-09-12 20:28:37 +00002956 pool = alloc_percpu(struct tcp_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002957 if (!pool)
2958 return NULL;
2959
2960 for_each_possible_cpu(cpu) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002961 struct crypto_hash *hash;
2962
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002963 hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
2964 if (!hash || IS_ERR(hash))
2965 goto out_free;
2966
Eric Dumazet765cf992011-09-12 20:28:37 +00002967 per_cpu_ptr(pool, cpu)->md5_desc.tfm = hash;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002968 }
2969 return pool;
2970out_free:
2971 __tcp_free_md5sig_pool(pool);
2972 return NULL;
2973}
2974
Eric Dumazet765cf992011-09-12 20:28:37 +00002975struct tcp_md5sig_pool __percpu *tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002976{
Eric Dumazet765cf992011-09-12 20:28:37 +00002977 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002978 int alloc = 0;
2979
2980retry:
David S. Miller2c4f6212007-02-20 23:51:47 -08002981 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002982 pool = tcp_md5sig_pool;
2983 if (tcp_md5sig_users++ == 0) {
2984 alloc = 1;
David S. Miller2c4f6212007-02-20 23:51:47 -08002985 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002986 } else if (!pool) {
2987 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08002988 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002989 cpu_relax();
2990 goto retry;
2991 } else
David S. Miller2c4f6212007-02-20 23:51:47 -08002992 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002993
2994 if (alloc) {
2995 /* we cannot hold spinlock here because this may sleep. */
Eric Dumazet765cf992011-09-12 20:28:37 +00002996 struct tcp_md5sig_pool __percpu *p;
Tejun Heo7d720c32010-02-16 15:20:26 +00002997
2998 p = __tcp_alloc_md5sig_pool(sk);
David S. Miller2c4f6212007-02-20 23:51:47 -08002999 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003000 if (!p) {
3001 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08003002 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003003 return NULL;
3004 }
3005 pool = tcp_md5sig_pool;
3006 if (pool) {
3007 /* oops, it has already been assigned. */
David S. Miller2c4f6212007-02-20 23:51:47 -08003008 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003009 __tcp_free_md5sig_pool(p);
3010 } else {
3011 tcp_md5sig_pool = pool = p;
David S. Miller2c4f6212007-02-20 23:51:47 -08003012 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003013 }
3014 }
3015 return pool;
3016}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003017EXPORT_SYMBOL(tcp_alloc_md5sig_pool);
3018
Eric Dumazet35790c02010-05-16 00:34:04 -07003019
3020/**
3021 * tcp_get_md5sig_pool - get md5sig_pool for this user
3022 *
3023 * We use percpu structure, so if we succeed, we exit with preemption
3024 * and BH disabled, to make sure another thread or softirq handling
3025 * wont try to get same context.
3026 */
3027struct tcp_md5sig_pool *tcp_get_md5sig_pool(void)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003028{
Eric Dumazet765cf992011-09-12 20:28:37 +00003029 struct tcp_md5sig_pool __percpu *p;
Eric Dumazet35790c02010-05-16 00:34:04 -07003030
3031 local_bh_disable();
3032
3033 spin_lock(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003034 p = tcp_md5sig_pool;
3035 if (p)
3036 tcp_md5sig_users++;
Eric Dumazet35790c02010-05-16 00:34:04 -07003037 spin_unlock(&tcp_md5sig_pool_lock);
3038
3039 if (p)
Eric Dumazet765cf992011-09-12 20:28:37 +00003040 return this_cpu_ptr(p);
Eric Dumazet35790c02010-05-16 00:34:04 -07003041
3042 local_bh_enable();
3043 return NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003044}
Eric Dumazet35790c02010-05-16 00:34:04 -07003045EXPORT_SYMBOL(tcp_get_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003046
Eric Dumazet35790c02010-05-16 00:34:04 -07003047void tcp_put_md5sig_pool(void)
David S. Miller6931ba72006-12-13 16:25:44 -08003048{
Eric Dumazet35790c02010-05-16 00:34:04 -07003049 local_bh_enable();
David S. Miller6931ba72006-12-13 16:25:44 -08003050 tcp_free_md5sig_pool();
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003051}
Eric Dumazet35790c02010-05-16 00:34:04 -07003052EXPORT_SYMBOL(tcp_put_md5sig_pool);
Adam Langley49a72df2008-07-19 00:01:42 -07003053
3054int tcp_md5_hash_header(struct tcp_md5sig_pool *hp,
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003055 const struct tcphdr *th)
Adam Langley49a72df2008-07-19 00:01:42 -07003056{
3057 struct scatterlist sg;
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003058 struct tcphdr hdr;
Adam Langley49a72df2008-07-19 00:01:42 -07003059 int err;
3060
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003061 /* We are not allowed to change tcphdr, make a local copy */
3062 memcpy(&hdr, th, sizeof(hdr));
3063 hdr.check = 0;
3064
Adam Langley49a72df2008-07-19 00:01:42 -07003065 /* options aren't included in the hash */
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003066 sg_init_one(&sg, &hdr, sizeof(hdr));
3067 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr));
Adam Langley49a72df2008-07-19 00:01:42 -07003068 return err;
3069}
Adam Langley49a72df2008-07-19 00:01:42 -07003070EXPORT_SYMBOL(tcp_md5_hash_header);
3071
3072int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp,
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003073 const struct sk_buff *skb, unsigned int header_len)
Adam Langley49a72df2008-07-19 00:01:42 -07003074{
3075 struct scatterlist sg;
3076 const struct tcphdr *tp = tcp_hdr(skb);
3077 struct hash_desc *desc = &hp->md5_desc;
3078 unsigned i;
3079 const unsigned head_data_len = skb_headlen(skb) > header_len ?
3080 skb_headlen(skb) - header_len : 0;
3081 const struct skb_shared_info *shi = skb_shinfo(skb);
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003082 struct sk_buff *frag_iter;
Adam Langley49a72df2008-07-19 00:01:42 -07003083
3084 sg_init_table(&sg, 1);
3085
3086 sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len);
3087 if (crypto_hash_update(desc, &sg, head_data_len))
3088 return 1;
3089
3090 for (i = 0; i < shi->nr_frags; ++i) {
3091 const struct skb_frag_struct *f = &shi->frags[i];
Ian Campbellaff65da2011-08-22 23:44:59 +00003092 struct page *page = skb_frag_page(f);
Eric Dumazet9e903e02011-10-18 21:00:24 +00003093 sg_set_page(&sg, page, skb_frag_size(f), f->page_offset);
3094 if (crypto_hash_update(desc, &sg, skb_frag_size(f)))
Adam Langley49a72df2008-07-19 00:01:42 -07003095 return 1;
3096 }
3097
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003098 skb_walk_frags(skb, frag_iter)
3099 if (tcp_md5_hash_skb_data(hp, frag_iter, 0))
3100 return 1;
3101
Adam Langley49a72df2008-07-19 00:01:42 -07003102 return 0;
3103}
Adam Langley49a72df2008-07-19 00:01:42 -07003104EXPORT_SYMBOL(tcp_md5_hash_skb_data);
3105
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003106int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key)
Adam Langley49a72df2008-07-19 00:01:42 -07003107{
3108 struct scatterlist sg;
3109
3110 sg_init_one(&sg, key->key, key->keylen);
3111 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen);
3112}
Adam Langley49a72df2008-07-19 00:01:42 -07003113EXPORT_SYMBOL(tcp_md5_hash_key);
3114
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003115#endif
3116
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003117/**
3118 * Each Responder maintains up to two secret values concurrently for
3119 * efficient secret rollover. Each secret value has 4 states:
3120 *
3121 * Generating. (tcp_secret_generating != tcp_secret_primary)
3122 * Generates new Responder-Cookies, but not yet used for primary
3123 * verification. This is a short-term state, typically lasting only
3124 * one round trip time (RTT).
3125 *
3126 * Primary. (tcp_secret_generating == tcp_secret_primary)
3127 * Used both for generation and primary verification.
3128 *
3129 * Retiring. (tcp_secret_retiring != tcp_secret_secondary)
3130 * Used for verification, until the first failure that can be
3131 * verified by the newer Generating secret. At that time, this
3132 * cookie's state is changed to Secondary, and the Generating
3133 * cookie's state is changed to Primary. This is a short-term state,
3134 * typically lasting only one round trip time (RTT).
3135 *
3136 * Secondary. (tcp_secret_retiring == tcp_secret_secondary)
3137 * Used for secondary verification, after primary verification
3138 * failures. This state lasts no more than twice the Maximum Segment
3139 * Lifetime (2MSL). Then, the secret is discarded.
3140 */
3141struct tcp_cookie_secret {
3142 /* The secret is divided into two parts. The digest part is the
3143 * equivalent of previously hashing a secret and saving the state,
3144 * and serves as an initialization vector (IV). The message part
3145 * serves as the trailing secret.
3146 */
3147 u32 secrets[COOKIE_WORKSPACE_WORDS];
3148 unsigned long expires;
3149};
3150
3151#define TCP_SECRET_1MSL (HZ * TCP_PAWS_MSL)
3152#define TCP_SECRET_2MSL (HZ * TCP_PAWS_MSL * 2)
3153#define TCP_SECRET_LIFE (HZ * 600)
3154
3155static struct tcp_cookie_secret tcp_secret_one;
3156static struct tcp_cookie_secret tcp_secret_two;
3157
3158/* Essentially a circular list, without dynamic allocation. */
3159static struct tcp_cookie_secret *tcp_secret_generating;
3160static struct tcp_cookie_secret *tcp_secret_primary;
3161static struct tcp_cookie_secret *tcp_secret_retiring;
3162static struct tcp_cookie_secret *tcp_secret_secondary;
3163
3164static DEFINE_SPINLOCK(tcp_secret_locker);
3165
3166/* Select a pseudo-random word in the cookie workspace.
3167 */
3168static inline u32 tcp_cookie_work(const u32 *ws, const int n)
3169{
3170 return ws[COOKIE_DIGEST_WORDS + ((COOKIE_MESSAGE_WORDS-1) & ws[n])];
3171}
3172
3173/* Fill bakery[COOKIE_WORKSPACE_WORDS] with generator, updating as needed.
3174 * Called in softirq context.
3175 * Returns: 0 for success.
3176 */
3177int tcp_cookie_generator(u32 *bakery)
3178{
3179 unsigned long jiffy = jiffies;
3180
3181 if (unlikely(time_after_eq(jiffy, tcp_secret_generating->expires))) {
3182 spin_lock_bh(&tcp_secret_locker);
3183 if (!time_after_eq(jiffy, tcp_secret_generating->expires)) {
3184 /* refreshed by another */
3185 memcpy(bakery,
3186 &tcp_secret_generating->secrets[0],
3187 COOKIE_WORKSPACE_WORDS);
3188 } else {
3189 /* still needs refreshing */
3190 get_random_bytes(bakery, COOKIE_WORKSPACE_WORDS);
3191
3192 /* The first time, paranoia assumes that the
3193 * randomization function isn't as strong. But,
3194 * this secret initialization is delayed until
3195 * the last possible moment (packet arrival).
3196 * Although that time is observable, it is
3197 * unpredictably variable. Mash in the most
3198 * volatile clock bits available, and expire the
3199 * secret extra quickly.
3200 */
3201 if (unlikely(tcp_secret_primary->expires ==
3202 tcp_secret_secondary->expires)) {
3203 struct timespec tv;
3204
3205 getnstimeofday(&tv);
3206 bakery[COOKIE_DIGEST_WORDS+0] ^=
3207 (u32)tv.tv_nsec;
3208
3209 tcp_secret_secondary->expires = jiffy
3210 + TCP_SECRET_1MSL
3211 + (0x0f & tcp_cookie_work(bakery, 0));
3212 } else {
3213 tcp_secret_secondary->expires = jiffy
3214 + TCP_SECRET_LIFE
3215 + (0xff & tcp_cookie_work(bakery, 1));
3216 tcp_secret_primary->expires = jiffy
3217 + TCP_SECRET_2MSL
3218 + (0x1f & tcp_cookie_work(bakery, 2));
3219 }
3220 memcpy(&tcp_secret_secondary->secrets[0],
3221 bakery, COOKIE_WORKSPACE_WORDS);
3222
3223 rcu_assign_pointer(tcp_secret_generating,
3224 tcp_secret_secondary);
3225 rcu_assign_pointer(tcp_secret_retiring,
3226 tcp_secret_primary);
3227 /*
3228 * Neither call_rcu() nor synchronize_rcu() needed.
3229 * Retiring data is not freed. It is replaced after
3230 * further (locked) pointer updates, and a quiet time
3231 * (minimum 1MSL, maximum LIFE - 2MSL).
3232 */
3233 }
3234 spin_unlock_bh(&tcp_secret_locker);
3235 } else {
3236 rcu_read_lock_bh();
3237 memcpy(bakery,
3238 &rcu_dereference(tcp_secret_generating)->secrets[0],
3239 COOKIE_WORKSPACE_WORDS);
3240 rcu_read_unlock_bh();
3241 }
3242 return 0;
3243}
3244EXPORT_SYMBOL(tcp_cookie_generator);
3245
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003246void tcp_done(struct sock *sk)
3247{
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08003248 if (sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV)
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07003249 TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS);
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003250
3251 tcp_set_state(sk, TCP_CLOSE);
3252 tcp_clear_xmit_timers(sk);
3253
3254 sk->sk_shutdown = SHUTDOWN_MASK;
3255
3256 if (!sock_flag(sk, SOCK_DEAD))
3257 sk->sk_state_change(sk);
3258 else
3259 inet_csk_destroy_sock(sk);
3260}
3261EXPORT_SYMBOL_GPL(tcp_done);
3262
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003263int tcp_abort(struct sock *sk, int err)
3264{
3265 if (sk->sk_state == TCP_TIME_WAIT) {
3266 inet_twsk_put((struct inet_timewait_sock *)sk);
3267 return -EOPNOTSUPP;
3268 }
3269
3270 /* Don't race with userspace socket closes such as tcp_close. */
3271 lock_sock(sk);
3272
Lorenzo Colitti496b6d02015-12-20 02:39:43 +09003273 if (sk->sk_state == TCP_LISTEN) {
3274 tcp_set_state(sk, TCP_CLOSE);
3275 inet_csk_listen_stop(sk);
3276 }
3277
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003278 /* Don't race with BH socket closes such as inet_csk_listen_stop. */
3279 local_bh_disable();
3280 bh_lock_sock(sk);
3281
3282 if (!sock_flag(sk, SOCK_DEAD)) {
3283 sk->sk_err = err;
3284 /* This barrier is coupled with smp_rmb() in tcp_poll() */
3285 smp_wmb();
3286 sk->sk_error_report(sk);
3287 if (tcp_need_reset(sk->sk_state))
3288 tcp_send_active_reset(sk, GFP_ATOMIC);
3289 tcp_done(sk);
3290 }
3291
3292 bh_unlock_sock(sk);
3293 local_bh_enable();
3294 release_sock(sk);
3295 sock_put(sk);
3296 return 0;
3297}
3298EXPORT_SYMBOL_GPL(tcp_abort);
3299
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07003300extern struct tcp_congestion_ops tcp_reno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302static __initdata unsigned long thash_entries;
3303static int __init set_thash_entries(char *str)
3304{
3305 if (!str)
3306 return 0;
3307 thash_entries = simple_strtoul(str, &str, 0);
3308 return 1;
3309}
3310__setup("thash_entries=", set_thash_entries);
3311
Glauber Costa4acb4192012-01-30 01:20:17 +00003312void tcp_init_mem(struct net *net)
3313{
Glauber Costa4acb4192012-01-30 01:20:17 +00003314 unsigned long limit = nr_free_buffer_pages() / 8;
3315 limit = max(limit, 128UL);
3316 net->ipv4.sysctl_tcp_mem[0] = limit / 4 * 3;
3317 net->ipv4.sysctl_tcp_mem[1] = limit;
3318 net->ipv4.sysctl_tcp_mem[2] = net->ipv4.sysctl_tcp_mem[0] * 2;
3319}
3320
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321void __init tcp_init(void)
3322{
3323 struct sk_buff *skb = NULL;
Eric Dumazetf03d78d2011-07-07 00:27:05 -07003324 unsigned long limit;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003325 int max_rshare, max_wshare, cnt;
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003326 unsigned int i;
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003327 unsigned long jiffy = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Pavel Emelyanov1f9e6362007-12-11 02:12:04 -08003329 BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Eric Dumazet17483762008-11-25 21:16:35 -08003331 percpu_counter_init(&tcp_sockets_allocated, 0);
Eric Dumazetdd24c002008-11-25 21:17:14 -08003332 percpu_counter_init(&tcp_orphan_count, 0);
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003333 tcp_hashinfo.bind_bucket_cachep =
3334 kmem_cache_create("tcp_bind_bucket",
3335 sizeof(struct inet_bind_bucket), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003336 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 /* Size and allocate the main established and bind bucket
3339 * hash tables.
3340 *
3341 * The methodology is similar to that of the buffer cache.
3342 */
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003343 tcp_hashinfo.ehash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 alloc_large_system_hash("TCP established",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003345 sizeof(struct inet_ehash_bucket),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 thash_entries,
Jan Beulich44813742009-09-21 17:03:05 -07003347 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003348 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003349 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 NULL,
Eric Dumazetf373b532009-10-09 00:16:19 +00003351 &tcp_hashinfo.ehash_mask,
Jean Delvare0ccfe612007-10-30 00:59:25 -07003352 thash_entries ? 0 : 512 * 1024);
Eric Dumazetf373b532009-10-09 00:16:19 +00003353 for (i = 0; i <= tcp_hashinfo.ehash_mask; i++) {
Eric Dumazet3ab5aee2008-11-16 19:40:17 -08003354 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].chain, i);
3355 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].twchain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 }
Eric Dumazet230140c2007-11-07 02:40:20 -08003357 if (inet_ehash_locks_alloc(&tcp_hashinfo))
3358 panic("TCP: failed to alloc ehash_locks");
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003359 tcp_hashinfo.bhash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 alloc_large_system_hash("TCP bind",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003361 sizeof(struct inet_bind_hashbucket),
Eric Dumazetf373b532009-10-09 00:16:19 +00003362 tcp_hashinfo.ehash_mask + 1,
Jan Beulich44813742009-09-21 17:03:05 -07003363 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003364 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003365 0,
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003366 &tcp_hashinfo.bhash_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 NULL,
3368 64 * 1024);
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003369 tcp_hashinfo.bhash_size = 1U << tcp_hashinfo.bhash_size;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003370 for (i = 0; i < tcp_hashinfo.bhash_size; i++) {
3371 spin_lock_init(&tcp_hashinfo.bhash[i].lock);
3372 INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
3374
Eric Dumazetc5ed63d2010-08-25 23:02:17 -07003375
3376 cnt = tcp_hashinfo.ehash_mask + 1;
3377
3378 tcp_death_row.sysctl_max_tw_buckets = cnt / 2;
3379 sysctl_tcp_max_orphans = cnt / 2;
3380 sysctl_max_syn_backlog = max(128, cnt / 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Glauber Costa4acb4192012-01-30 01:20:17 +00003382 tcp_init_mem(&init_net);
Jason Wangc43b8742012-02-02 00:07:00 +00003383 /* Set per-socket limits to no more than 1/128 the pressure threshold */
Eric Dumazet5fb84b12012-04-10 00:56:42 +00003384 limit = nr_free_buffer_pages() << (PAGE_SHIFT - 7);
Eric Dumazetb49960a2012-05-02 02:28:41 +00003385 max_wshare = min(4UL*1024*1024, limit);
3386 max_rshare = min(6UL*1024*1024, limit);
John Heffner7b4f4b52006-03-25 01:34:07 -08003387
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003388 sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003389 sysctl_tcp_wmem[1] = 16*1024;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003390 sysctl_tcp_wmem[2] = max(64*1024, max_wshare);
John Heffner7b4f4b52006-03-25 01:34:07 -08003391
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003392 sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003393 sysctl_tcp_rmem[1] = 87380;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003394 sysctl_tcp_rmem[2] = max(87380, max_rshare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
Joe Perchesafd465032012-03-12 07:03:32 +00003396 pr_info("Hash tables configured (established %u bind %u)\n",
Joe Perches058bd4d2012-03-11 18:36:11 +00003397 tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07003398
3399 tcp_register_congestion_control(&tcp_reno);
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003400
3401 memset(&tcp_secret_one.secrets[0], 0, sizeof(tcp_secret_one.secrets));
3402 memset(&tcp_secret_two.secrets[0], 0, sizeof(tcp_secret_two.secrets));
3403 tcp_secret_one.expires = jiffy; /* past due */
3404 tcp_secret_two.expires = jiffy; /* past due */
3405 tcp_secret_generating = &tcp_secret_one;
3406 tcp_secret_primary = &tcp_secret_one;
3407 tcp_secret_retiring = &tcp_secret_two;
3408 tcp_secret_secondary = &tcp_secret_two;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409}
Robert Love2365d052008-05-12 17:08:29 -04003410
3411static int tcp_is_local(struct net *net, __be32 addr) {
3412 struct rtable *rt;
3413 struct flowi4 fl4 = { .daddr = addr };
3414 rt = ip_route_output_key(net, &fl4);
3415 if (IS_ERR_OR_NULL(rt))
3416 return 0;
3417 return rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK);
3418}
3419
3420#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3421static int tcp_is_local6(struct net *net, struct in6_addr *addr) {
3422 struct rt6_info *rt6 = rt6_lookup(net, addr, addr, 0, 0);
3423 return rt6 && rt6->dst.dev && (rt6->dst.dev->flags & IFF_LOOPBACK);
3424}
3425#endif
3426
3427/*
3428 * tcp_nuke_addr - destroy all sockets on the given local address
3429 * if local address is the unspecified address (0.0.0.0 or ::), destroy all
3430 * sockets with local addresses that are not configured.
3431 */
3432int tcp_nuke_addr(struct net *net, struct sockaddr *addr)
3433{
3434 int family = addr->sa_family;
3435 unsigned int bucket;
3436
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003437 struct in_addr *in = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003438#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003439 struct in6_addr *in6 = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003440#endif
3441 if (family == AF_INET) {
3442 in = &((struct sockaddr_in *)addr)->sin_addr;
3443#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3444 } else if (family == AF_INET6) {
3445 in6 = &((struct sockaddr_in6 *)addr)->sin6_addr;
3446#endif
3447 } else {
3448 return -EAFNOSUPPORT;
3449 }
3450
3451 for (bucket = 0; bucket < tcp_hashinfo.ehash_mask; bucket++) {
3452 struct hlist_nulls_node *node;
3453 struct sock *sk;
3454 spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, bucket);
3455
3456restart:
3457 spin_lock_bh(lock);
3458 sk_nulls_for_each(sk, node, &tcp_hashinfo.ehash[bucket].chain) {
3459 struct inet_sock *inet = inet_sk(sk);
3460
3461 if (sysctl_ip_dynaddr && sk->sk_state == TCP_SYN_SENT)
3462 continue;
3463 if (sock_flag(sk, SOCK_DEAD))
3464 continue;
3465
3466 if (family == AF_INET) {
3467 __be32 s4 = inet->inet_rcv_saddr;
3468 if (s4 == LOOPBACK4_IPV6)
3469 continue;
3470
3471 if (in->s_addr != s4 &&
3472 !(in->s_addr == INADDR_ANY &&
3473 !tcp_is_local(net, s4)))
3474 continue;
3475 }
3476
3477#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3478 if (family == AF_INET6) {
3479 struct in6_addr *s6;
3480 if (!inet->pinet6)
3481 continue;
3482
3483 s6 = &inet->pinet6->rcv_saddr;
3484 if (ipv6_addr_type(s6) == IPV6_ADDR_MAPPED)
3485 continue;
3486
3487 if (!ipv6_addr_equal(in6, s6) &&
3488 !(ipv6_addr_equal(in6, &in6addr_any) &&
3489 !tcp_is_local6(net, s6)))
3490 continue;
3491 }
3492#endif
3493
3494 sock_hold(sk);
3495 spin_unlock_bh(lock);
3496
3497 local_bh_disable();
3498 bh_lock_sock(sk);
3499 sk->sk_err = ETIMEDOUT;
3500 sk->sk_error_report(sk);
3501
3502 tcp_done(sk);
3503 bh_unlock_sock(sk);
3504 local_bh_enable();
Osvaldo Banuelos66990962013-12-16 12:50:02 -08003505 sock_put(sk);
Robert Love2365d052008-05-12 17:08:29 -04003506
3507 goto restart;
3508 }
3509 spin_unlock_bh(lock);
3510 }
3511
3512 return 0;
3513}