blob: d4aa90357d917416d78babbe5e378f2fcf89af8b [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 Dumazete425f032013-08-27 05:46:32 -0700288int sysctl_tcp_min_tso_segs __read_mostly = 2;
289
Eric Dumazetdd24c002008-11-25 21:17:14 -0800290struct percpu_counter tcp_orphan_count;
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -0700291EXPORT_SYMBOL_GPL(tcp_orphan_count);
292
David S. Millerb8059ea2006-03-25 01:36:56 -0800293int sysctl_tcp_wmem[3] __read_mostly;
294int sysctl_tcp_rmem[3] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296EXPORT_SYMBOL(sysctl_tcp_rmem);
297EXPORT_SYMBOL(sysctl_tcp_wmem);
298
Ravi Joshiee51cf02013-07-25 19:04:17 -0700299int sysctl_tcp_delack_seg __read_mostly = TCP_DELACK_SEG;
300EXPORT_SYMBOL(sysctl_tcp_delack_seg);
301
302int sysctl_tcp_use_userconfig __read_mostly;
303EXPORT_SYMBOL(sysctl_tcp_use_userconfig);
304
Eric Dumazet8d987e52010-11-09 23:24:26 +0000305atomic_long_t tcp_memory_allocated; /* Current allocated memory. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306EXPORT_SYMBOL(tcp_memory_allocated);
Eric Dumazet17483762008-11-25 21:16:35 -0800307
308/*
309 * Current number of TCP sockets.
310 */
311struct percpu_counter tcp_sockets_allocated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312EXPORT_SYMBOL(tcp_sockets_allocated);
313
314/*
Jens Axboe9c55e012007-11-06 23:30:13 -0800315 * TCP splice context
316 */
317struct tcp_splice_state {
318 struct pipe_inode_info *pipe;
319 size_t len;
320 unsigned int flags;
321};
322
323/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * Pressure flag: try to collapse.
325 * Technical note: it is used by multiple contexts non atomically.
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800326 * All the __sk_mem_schedule() is of this nature: accounting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * is strict, actions are advisory and have some latency.
328 */
Eric Dumazet4103f8c2007-03-27 13:58:31 -0700329int tcp_memory_pressure __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330EXPORT_SYMBOL(tcp_memory_pressure);
331
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700332void tcp_enter_memory_pressure(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 if (!tcp_memory_pressure) {
Pavel Emelyanov4e673442008-07-16 20:30:14 -0700335 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMEMORYPRESSURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 tcp_memory_pressure = 1;
337 }
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339EXPORT_SYMBOL(tcp_enter_memory_pressure);
340
Julian Anastasovb103cf32009-10-19 10:10:40 +0000341/* Convert seconds to retransmits based on initial and max timeout */
342static u8 secs_to_retrans(int seconds, int timeout, int rto_max)
343{
344 u8 res = 0;
345
346 if (seconds > 0) {
347 int period = timeout;
348
349 res = 1;
350 while (seconds > period && res < 255) {
351 res++;
352 timeout <<= 1;
353 if (timeout > rto_max)
354 timeout = rto_max;
355 period += timeout;
356 }
357 }
358 return res;
359}
360
361/* Convert retransmits to seconds based on initial and max timeout */
362static int retrans_to_secs(u8 retrans, int timeout, int rto_max)
363{
364 int period = 0;
365
366 if (retrans > 0) {
367 period = timeout;
368 while (--retrans) {
369 timeout <<= 1;
370 if (timeout > rto_max)
371 timeout = rto_max;
372 period += timeout;
373 }
374 }
375 return period;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Wait for a TCP event.
380 *
381 * Note that we don't need to lock the socket, as the upper poll layers
382 * take care of normal races (between the test and the event) and we don't
383 * go look at any of the socket buffers directly.
384 */
385unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
386{
387 unsigned int mask;
388 struct sock *sk = sock->sk;
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400389 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Eric Dumazetaa395142010-04-20 13:03:51 +0000391 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (sk->sk_state == TCP_LISTEN)
Arnaldo Carvalho de Melodc40c7b2005-08-23 21:52:58 -0700393 return inet_csk_listen_poll(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* Socket is not locked. We are protected from async events
Will Newton70efce22008-07-16 20:13:43 -0700396 * by poll logic and correct handling of state changes
397 * made by other threads is impossible in any case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
399
400 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /*
403 * POLLHUP is certainly not done right. But poll() doesn't
404 * have a notion of HUP in just one direction, and for a
405 * socket the read side is more interesting.
406 *
407 * Some poll() documentation says that POLLHUP is incompatible
408 * with the POLLOUT/POLLWR flags, so somebody should check this
409 * all. But careful, it tends to be safer to return too many
410 * bits than too few, and you can easily break real applications
411 * if you don't tell them that something has hung up!
412 *
413 * Check-me.
414 *
415 * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and
416 * our fs/select.c). It means that after we received EOF,
417 * poll always returns immediately, making impossible poll() on write()
418 * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP
419 * if and only if shutdown has been made in both directions.
420 * Actually, it is interesting to look how Solaris and DUX
Will Newton70efce22008-07-16 20:13:43 -0700421 * solve this dilemma. I would prefer, if POLLHUP were maskable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * then we could set it on SND_SHUTDOWN. BTW examples given
423 * in Stevens' books assume exactly this behaviour, it explains
Will Newton70efce22008-07-16 20:13:43 -0700424 * why POLLHUP is incompatible with POLLOUT. --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *
426 * NOTE. Check for TCP_CLOSE is added. The goal is to prevent
427 * blocking on fresh not-connected or disconnected socket. --ANK
428 */
429 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == TCP_CLOSE)
430 mask |= POLLHUP;
431 if (sk->sk_shutdown & RCV_SHUTDOWN)
Davide Libenzif348d702006-03-25 03:07:39 -0800432 mask |= POLLIN | POLLRDNORM | POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /* Connected? */
435 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV)) {
David S. Millerc7004482008-10-06 10:43:54 -0700436 int target = sock_rcvlowat(sk, 0, INT_MAX);
437
438 if (tp->urg_seq == tp->copied_seq &&
439 !sock_flag(sk, SOCK_URGINLINE) &&
440 tp->urg_data)
Alexandra Kossovskyb634f872010-03-18 20:29:24 -0700441 target++;
David S. Millerc7004482008-10-06 10:43:54 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* Potential race condition. If read of tp below will
444 * escape above sk->sk_state, we can be illegally awaken
445 * in SYN_* states. */
David S. Millerc7004482008-10-06 10:43:54 -0700446 if (tp->rcv_nxt - tp->copied_seq >= target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 mask |= POLLIN | POLLRDNORM;
448
449 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
450 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
451 mask |= POLLOUT | POLLWRNORM;
452 } else { /* send SIGIO later */
453 set_bit(SOCK_ASYNC_NOSPACE,
454 &sk->sk_socket->flags);
455 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
456
457 /* Race breaker. If space is freed after
458 * wspace test but before the flags are set,
459 * IO signal will be lost.
460 */
461 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
462 mask |= POLLOUT | POLLWRNORM;
463 }
KOSAKI Motohirod84ba632010-08-24 16:05:48 +0000464 } else
465 mask |= POLLOUT | POLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 if (tp->urg_data & TCP_URG_VALID)
468 mask |= POLLPRI;
469 }
Tom Marshalla4d25802010-09-20 15:42:05 -0700470 /* This barrier is coupled with smp_wmb() in tcp_reset() */
471 smp_rmb();
472 if (sk->sk_err)
473 mask |= POLLERR;
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return mask;
476}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000477EXPORT_SYMBOL(tcp_poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
480{
481 struct tcp_sock *tp = tcp_sk(sk);
482 int answ;
483
484 switch (cmd) {
485 case SIOCINQ:
486 if (sk->sk_state == TCP_LISTEN)
487 return -EINVAL;
488
489 lock_sock(sk);
490 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
491 answ = 0;
492 else if (sock_flag(sk, SOCK_URGINLINE) ||
493 !tp->urg_data ||
494 before(tp->urg_seq, tp->copied_seq) ||
495 !before(tp->urg_seq, tp->rcv_nxt)) {
David S. Miller91521942009-05-28 21:35:47 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 answ = tp->rcv_nxt - tp->copied_seq;
498
Eric Dumazet6bfa3862012-10-18 09:14:12 +0000499 /* Subtract 1, if FIN was received */
500 if (answ && sock_flag(sk, SOCK_DONE))
501 answ--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 } else
503 answ = tp->urg_seq - tp->copied_seq;
504 release_sock(sk);
505 break;
506 case SIOCATMARK:
507 answ = tp->urg_data && tp->urg_seq == tp->copied_seq;
508 break;
509 case SIOCOUTQ:
510 if (sk->sk_state == TCP_LISTEN)
511 return -EINVAL;
512
513 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
514 answ = 0;
515 else
516 answ = tp->write_seq - tp->snd_una;
517 break;
Mario Schuknecht2f4e1b32011-03-09 14:08:09 -0800518 case SIOCOUTQNSD:
519 if (sk->sk_state == TCP_LISTEN)
520 return -EINVAL;
521
522 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
523 answ = 0;
524 else
525 answ = tp->write_seq - tp->snd_nxt;
526 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 default:
528 return -ENOIOCTLCMD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 return put_user(answ, (int __user *)arg);
532}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000533EXPORT_SYMBOL(tcp_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535static inline void tcp_mark_push(struct tcp_sock *tp, struct sk_buff *skb)
536{
Eric Dumazet4de075e2011-09-27 13:25:05 -0400537 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 tp->pushed_seq = tp->write_seq;
539}
540
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400541static inline int forced_push(const struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
544}
545
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700546static inline void skb_entail(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700548 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200549 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
550
551 skb->csum = 0;
552 tcb->seq = tcb->end_seq = tp->write_seq;
Eric Dumazet4de075e2011-09-27 13:25:05 -0400553 tcb->tcp_flags = TCPHDR_ACK;
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200554 tcb->sacked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 skb_header_release(skb);
David S. Millerfe067e82007-03-07 12:12:44 -0800556 tcp_add_write_queue_tail(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800557 sk->sk_wmem_queued += skb->truesize;
558 sk_mem_charge(sk, skb->truesize);
David S. Miller89ebd192005-08-23 10:13:06 -0700559 if (tp->nonagle & TCP_NAGLE_PUSH)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900560 tp->nonagle &= ~TCP_NAGLE_PUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Krishna Kumarafeca342009-12-10 07:16:52 +0000563static inline void tcp_mark_urg(struct tcp_sock *tp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Ilpo Järvinen33f5f572008-10-07 14:43:06 -0700565 if (flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 tp->snd_up = tp->write_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700569static inline void tcp_push(struct sock *sk, int flags, int mss_now,
570 int nonagle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
David S. Millerfe067e82007-03-07 12:12:44 -0800572 if (tcp_send_head(sk)) {
Krishna Kumarafeca342009-12-10 07:16:52 +0000573 struct tcp_sock *tp = tcp_sk(sk);
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (!(flags & MSG_MORE) || forced_push(tp))
Krishna Kumarafeca342009-12-10 07:16:52 +0000576 tcp_mark_push(tp, tcp_write_queue_tail(sk));
577
578 tcp_mark_urg(tp, flags);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700579 __tcp_push_pending_frames(sk, mss_now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 (flags & MSG_MORE) ? TCP_NAGLE_CORK : nonagle);
581 }
582}
583
Adrian Bunk6ff77512007-11-06 23:32:26 -0800584static int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
585 unsigned int offset, size_t len)
Jens Axboe9c55e012007-11-06 23:30:13 -0800586{
587 struct tcp_splice_state *tss = rd_desc->arg.data;
Willy Tarreau33966dd2009-01-13 16:04:36 -0800588 int ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800589
Dimitris Michailidis9fa5fdf2009-01-26 22:15:31 -0800590 ret = skb_splice_bits(skb, offset, tss->pipe, min(rd_desc->count, len),
591 tss->flags);
Willy Tarreau33966dd2009-01-13 16:04:36 -0800592 if (ret > 0)
593 rd_desc->count -= ret;
594 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800595}
596
597static int __tcp_splice_read(struct sock *sk, struct tcp_splice_state *tss)
598{
599 /* Store TCP splice context information in read_descriptor_t. */
600 read_descriptor_t rd_desc = {
601 .arg.data = tss,
Willy Tarreau33966dd2009-01-13 16:04:36 -0800602 .count = tss->len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800603 };
604
605 return tcp_read_sock(sk, &rd_desc, tcp_splice_data_recv);
606}
607
608/**
609 * tcp_splice_read - splice data from TCP socket to a pipe
610 * @sock: socket to splice from
611 * @ppos: position (not valid)
612 * @pipe: pipe to splice to
613 * @len: number of bytes to splice
614 * @flags: splice modifier flags
615 *
616 * Description:
617 * Will read pages from given socket and fill them into a pipe.
618 *
619 **/
620ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos,
621 struct pipe_inode_info *pipe, size_t len,
622 unsigned int flags)
623{
624 struct sock *sk = sock->sk;
625 struct tcp_splice_state tss = {
626 .pipe = pipe,
627 .len = len,
628 .flags = flags,
629 };
630 long timeo;
631 ssize_t spliced;
632 int ret;
633
Changli Gao3a047bf2010-07-12 21:00:12 +0000634 sock_rps_record_flow(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -0800635 /*
636 * We can't seek on a socket input
637 */
638 if (unlikely(*ppos))
639 return -ESPIPE;
640
641 ret = spliced = 0;
642
643 lock_sock(sk);
644
Eric Dumazet42324c62009-10-01 15:26:00 -0700645 timeo = sock_rcvtimeo(sk, sock->file->f_flags & O_NONBLOCK);
Jens Axboe9c55e012007-11-06 23:30:13 -0800646 while (tss.len) {
647 ret = __tcp_splice_read(sk, &tss);
648 if (ret < 0)
649 break;
650 else if (!ret) {
651 if (spliced)
652 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800653 if (sock_flag(sk, SOCK_DONE))
654 break;
655 if (sk->sk_err) {
656 ret = sock_error(sk);
657 break;
658 }
659 if (sk->sk_shutdown & RCV_SHUTDOWN)
660 break;
661 if (sk->sk_state == TCP_CLOSE) {
662 /*
663 * This occurs when user tries to read
664 * from never connected socket.
665 */
666 if (!sock_flag(sk, SOCK_DONE))
667 ret = -ENOTCONN;
668 break;
669 }
670 if (!timeo) {
671 ret = -EAGAIN;
672 break;
673 }
Eric Dumazet483e06f2017-03-01 09:58:14 +0100674 /* if __tcp_splice_read() got nothing while we have
675 * an skb in receive queue, we do not want to loop.
676 * This might happen with URG data.
677 */
678 if (!skb_queue_empty(&sk->sk_receive_queue))
679 break;
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +0200680 sk_wait_data(sk, &timeo, NULL);
Jens Axboe9c55e012007-11-06 23:30:13 -0800681 if (signal_pending(current)) {
682 ret = sock_intr_errno(timeo);
683 break;
684 }
685 continue;
686 }
687 tss.len -= ret;
688 spliced += ret;
689
Willy Tarreau33966dd2009-01-13 16:04:36 -0800690 if (!timeo)
691 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800692 release_sock(sk);
693 lock_sock(sk);
694
695 if (sk->sk_err || sk->sk_state == TCP_CLOSE ||
Willy Tarreau33966dd2009-01-13 16:04:36 -0800696 (sk->sk_shutdown & RCV_SHUTDOWN) ||
Jens Axboe9c55e012007-11-06 23:30:13 -0800697 signal_pending(current))
698 break;
699 }
700
701 release_sock(sk);
702
703 if (spliced)
704 return spliced;
705
706 return ret;
707}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000708EXPORT_SYMBOL(tcp_splice_read);
Jens Axboe9c55e012007-11-06 23:30:13 -0800709
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100710struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp)
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100711{
712 struct sk_buff *skb;
713
714 /* The TCP header must be at least 32-bit aligned. */
715 size = ALIGN(size, 4);
716
717 skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp);
718 if (skb) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800719 if (sk_wmem_schedule(sk, skb->truesize)) {
Eric Dumazeta21d4572012-04-10 20:30:48 +0000720 skb_reserve(skb, sk->sk_prot->max_header);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100721 /*
722 * Make sure that we have exactly size bytes
723 * available to the caller, no more, no less.
724 */
Eric Dumazetd1862562013-03-14 05:40:32 +0000725 skb->reserved_tailroom = skb->end - skb->tail - size;
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100726 return skb;
727 }
728 __kfree_skb(skb);
729 } else {
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700730 sk->sk_prot->enter_memory_pressure(sk);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100731 sk_stream_moderate_sndbuf(sk);
732 }
733 return NULL;
734}
735
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000736static unsigned int tcp_xmit_size_goal(struct sock *sk, u32 mss_now,
737 int large_allowed)
738{
739 struct tcp_sock *tp = tcp_sk(sk);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000740 u32 xmit_size_goal, old_size_goal;
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000741
742 xmit_size_goal = mss_now;
743
744 if (large_allowed && sk_can_gso(sk)) {
Eric Dumazete425f032013-08-27 05:46:32 -0700745 u32 gso_size, hlen;
746
747 /* Maybe we should/could use sk->sk_prot->max_header here ? */
748 hlen = inet_csk(sk)->icsk_af_ops->net_header_len +
749 inet_csk(sk)->icsk_ext_hdr_len +
750 tp->tcp_header_len;
751
752 /* Goal is to send at least one packet per ms,
753 * not one big TSO packet every 100 ms.
754 * This preserves ACK clocking and is consistent
755 * with tcp_tso_should_defer() heuristic.
756 */
757 gso_size = sk->sk_pacing_rate / (2 * MSEC_PER_SEC);
758 gso_size = max_t(u32, gso_size,
759 sysctl_tcp_min_tso_segs * mss_now);
760
761 xmit_size_goal = min_t(u32, gso_size,
762 sk->sk_gso_max_size - 1 - hlen);
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000763
764 xmit_size_goal = tcp_bound_to_half_wnd(tp, xmit_size_goal);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000765
766 /* We try hard to avoid divides here */
767 old_size_goal = tp->xmit_size_goal_segs * mss_now;
768
769 if (likely(old_size_goal <= xmit_size_goal &&
770 old_size_goal + mss_now > xmit_size_goal)) {
771 xmit_size_goal = old_size_goal;
772 } else {
Ben Hutchingsd77ce5e2012-07-30 16:11:42 +0000773 tp->xmit_size_goal_segs =
774 min_t(u16, xmit_size_goal / mss_now,
775 sk->sk_gso_max_segs);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000776 xmit_size_goal = tp->xmit_size_goal_segs * mss_now;
777 }
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000778 }
779
Ilpo Järvinenafece1c2009-03-14 14:23:07 +0000780 return max(xmit_size_goal, mss_now);
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000781}
782
783static int tcp_send_mss(struct sock *sk, int *size_goal, int flags)
784{
785 int mss_now;
786
787 mss_now = tcp_current_mss(sk);
788 *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB));
789
790 return mss_now;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset,
794 size_t psize, int flags)
795{
796 struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700797 int mss_now, size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int err;
799 ssize_t copied;
800 long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
801
802 /* Wait for a connection to finish. */
803 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
804 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
805 goto out_err;
806
807 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
808
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000809 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 copied = 0;
811
812 err = -EPIPE;
813 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000814 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 while (psize > 0) {
David S. Millerfe067e82007-03-07 12:12:44 -0800817 struct sk_buff *skb = tcp_write_queue_tail(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct page *page = pages[poffset / PAGE_SIZE];
819 int copy, i, can_coalesce;
820 int offset = poffset % PAGE_SIZE;
821 int size = min_t(size_t, psize, PAGE_SIZE - offset);
822
David S. Millerfe067e82007-03-07 12:12:44 -0800823 if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824new_segment:
825 if (!sk_stream_memory_free(sk))
826 goto wait_for_sndbuf;
827
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100828 skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (!skb)
830 goto wait_for_memory;
831
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700832 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700833 copy = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
835
836 if (copy > size)
837 copy = size;
838
839 i = skb_shinfo(skb)->nr_frags;
840 can_coalesce = skb_can_coalesce(skb, i, page, offset);
841 if (!can_coalesce && i >= MAX_SKB_FRAGS) {
842 tcp_mark_push(tp, skb);
843 goto new_segment;
844 }
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800845 if (!sk_wmem_schedule(sk, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 goto wait_for_memory;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (can_coalesce) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000849 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 } else {
851 get_page(page);
852 skb_fill_page_desc(skb, i, page, offset, copy);
853 }
854
855 skb->len += copy;
856 skb->data_len += copy;
857 skb->truesize += copy;
858 sk->sk_wmem_queued += copy;
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800859 sk_mem_charge(sk, copy);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700860 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 tp->write_seq += copy;
862 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -0700863 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -0400866 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 copied += copy;
869 poffset += copy;
870 if (!(psize -= copy))
871 goto out;
872
Herbert Xu69d15062008-03-22 15:47:05 -0700873 if (skb->len < size_goal || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 continue;
875
876 if (forced_push(tp)) {
877 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700878 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -0800879 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 tcp_push_one(sk, mss_now);
881 continue;
882
883wait_for_sndbuf:
884 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
885wait_for_memory:
Willy Tarreaubad115c2012-05-17 11:14:14 +0000886 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
889 goto do_error;
890
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000891 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894out:
Eric Dumazet35f9c092012-04-05 03:05:35 +0000895 if (copied && !(flags & MSG_SENDPAGE_NOTLAST))
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700896 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return copied;
898
899do_error:
900 if (copied)
901 goto out;
902out_err:
903 return sk_stream_error(sk, flags, err);
904}
905
Changli Gao7ba42912010-07-10 20:41:55 +0000906int tcp_sendpage(struct sock *sk, struct page *page, int offset,
907 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!(sk->sk_route_caps & NETIF_F_SG) ||
Herbert Xu8648b302006-06-17 22:06:05 -0700912 !(sk->sk_route_caps & NETIF_F_ALL_CSUM))
Changli Gao7ba42912010-07-10 20:41:55 +0000913 return sock_no_sendpage(sk->sk_socket, page, offset, size,
914 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 res = do_tcp_sendpages(sk, &page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 release_sock(sk);
919 return res;
920}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000921EXPORT_SYMBOL(tcp_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Eric Dumazet690e99c2011-11-28 00:27:47 +0000923static inline int select_size(const struct sock *sk, bool sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400925 const struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700926 int tmp = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Krishna Kumardef87cf2009-12-10 07:16:59 +0000928 if (sg) {
Eric Dumazetf07d9602011-11-28 22:41:47 +0000929 if (sk_can_gso(sk)) {
930 /* Small frames wont use a full page:
931 * Payload will immediately follow tcp header.
932 */
933 tmp = SKB_WITH_OVERHEAD(2048 - MAX_TCP_HEADER);
934 } else {
David S. Millerb4e26f52005-07-05 15:20:27 -0700935 int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
936
937 if (tmp >= pgbreak &&
938 tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE)
939 tmp = pgbreak;
940 }
941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return tmp;
944}
945
Changli Gao7ba42912010-07-10 20:41:55 +0000946int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 size_t size)
948{
949 struct iovec *iov;
950 struct tcp_sock *tp = tcp_sk(sk);
951 struct sk_buff *skb;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000952 int iovlen, flags, err, copied;
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700953 int mss_now, size_goal;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000954 bool sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 long timeo;
956
957 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 flags = msg->msg_flags;
960 timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
961
962 /* Wait for a connection to finish. */
963 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
964 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
965 goto out_err;
966
967 /* This should be in poll */
968 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
969
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000970 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /* Ok commence sending. */
973 iovlen = msg->msg_iovlen;
974 iov = msg->msg_iov;
975 copied = 0;
976
977 err = -EPIPE;
978 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000979 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Eric Dumazet690e99c2011-11-28 00:27:47 +0000981 sg = !!(sk->sk_route_caps & NETIF_F_SG);
Krishna Kumardef87cf2009-12-10 07:16:59 +0000982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 while (--iovlen >= 0) {
David S. Miller01db4032010-09-27 20:24:54 -0700984 size_t seglen = iov->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 unsigned char __user *from = iov->iov_base;
986
987 iov++;
988
989 while (seglen > 0) {
Herbert Xu6828b922009-06-28 18:06:41 +0000990 int copy = 0;
991 int max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
David S. Millerfe067e82007-03-07 12:12:44 -0800993 skb = tcp_write_queue_tail(sk);
Herbert Xu6828b922009-06-28 18:06:41 +0000994 if (tcp_send_head(sk)) {
995 if (skb->ip_summed == CHECKSUM_NONE)
996 max = mss_now;
997 copy = max - skb->len;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Herbert Xu6828b922009-06-28 18:06:41 +00001000 if (copy <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001new_segment:
1002 /* Allocate new segment. If the interface is SG,
1003 * allocate skb fitting to single page.
1004 */
1005 if (!sk_stream_memory_free(sk))
1006 goto wait_for_sndbuf;
1007
Krishna Kumardef87cf2009-12-10 07:16:59 +00001008 skb = sk_stream_alloc_skb(sk,
1009 select_size(sk, sg),
1010 sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (!skb)
1012 goto wait_for_memory;
1013
1014 /*
1015 * Check whether we can use HW checksum.
1016 */
Herbert Xu8648b302006-06-17 22:06:05 -07001017 if (sk->sk_route_caps & NETIF_F_ALL_CSUM)
Patrick McHardy84fa7932006-08-29 16:44:56 -07001018 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001020 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001021 copy = size_goal;
Herbert Xu6828b922009-06-28 18:06:41 +00001022 max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
1024
1025 /* Try to append data to the end of skb. */
1026 if (copy > seglen)
1027 copy = seglen;
1028
1029 /* Where to copy to? */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001030 if (skb_availroom(skb) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /* We have some space in skb head. Superb! */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001032 copy = min_t(int, copy, skb_availroom(skb));
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001033 err = skb_add_data_nocache(sk, skb, from, copy);
1034 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 goto do_fault;
1036 } else {
1037 int merge = 0;
1038 int i = skb_shinfo(skb)->nr_frags;
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001039 struct page *page = sk->sk_sndmsg_page;
Eric Dumazet761965e2011-12-04 07:05:17 +00001040 int off;
1041
1042 if (page && page_count(page) == 1)
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001043 sk->sk_sndmsg_off = 0;
Eric Dumazet761965e2011-12-04 07:05:17 +00001044
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001045 off = sk->sk_sndmsg_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (skb_can_coalesce(skb, i, page, off) &&
1048 off != PAGE_SIZE) {
1049 /* We can extend the last page
1050 * fragment. */
1051 merge = 1;
Krishna Kumardef87cf2009-12-10 07:16:59 +00001052 } else if (i == MAX_SKB_FRAGS || !sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /* Need to add new fragment and cannot
1054 * do this because interface is non-SG,
1055 * or because all the page slots are
1056 * busy. */
1057 tcp_mark_push(tp, skb);
1058 goto new_segment;
1059 } else if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (off == PAGE_SIZE) {
1061 put_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001062 sk->sk_sndmsg_page = page = NULL;
Herbert Xufb5f5e62005-09-05 18:55:48 -07001063 off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
Herbert Xuef015782005-09-01 17:48:59 -07001065 } else
Herbert Xufb5f5e62005-09-05 18:55:48 -07001066 off = 0;
Herbert Xuef015782005-09-01 17:48:59 -07001067
1068 if (copy > PAGE_SIZE - off)
1069 copy = PAGE_SIZE - off;
1070
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001071 if (!sk_wmem_schedule(sk, copy))
Herbert Xuef015782005-09-01 17:48:59 -07001072 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 if (!page) {
1075 /* Allocate new cache page. */
1076 if (!(page = sk_stream_alloc_page(sk)))
1077 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /* Time to copy data. We are close to
1081 * the end! */
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001082 err = skb_copy_to_page_nocache(sk, from, skb,
1083 page, off, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (err) {
1085 /* If this page was new, give it to the
1086 * socket so it does not get leaked.
1087 */
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001088 if (!sk->sk_sndmsg_page) {
1089 sk->sk_sndmsg_page = page;
1090 sk->sk_sndmsg_off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092 goto do_error;
1093 }
1094
1095 /* Update the skb. */
1096 if (merge) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001097 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 } else {
1099 skb_fill_page_desc(skb, i, page, off, copy);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001100 if (sk->sk_sndmsg_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 get_page(page);
1102 } else if (off + copy < PAGE_SIZE) {
1103 get_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001104 sk->sk_sndmsg_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106 }
1107
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001108 sk->sk_sndmsg_off = off + copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
1111 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -04001112 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 tp->write_seq += copy;
1115 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -07001116 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 from += copy;
1119 copied += copy;
1120 if ((seglen -= copy) == 0 && iovlen == 0)
1121 goto out;
1122
Herbert Xu6828b922009-06-28 18:06:41 +00001123 if (skb->len < max || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 continue;
1125
1126 if (forced_push(tp)) {
1127 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001128 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -08001129 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 tcp_push_one(sk, mss_now);
1131 continue;
1132
1133wait_for_sndbuf:
1134 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1135wait_for_memory:
1136 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001137 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
1140 goto do_error;
1141
Ilpo Järvinen0c54b852009-03-14 14:23:05 +00001142 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144 }
1145
1146out:
1147 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001148 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001150
1151 if (copied > 0)
1152 uid_stat_tcp_snd(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return copied;
1154
1155do_fault:
1156 if (!skb->len) {
David S. Millerfe067e82007-03-07 12:12:44 -08001157 tcp_unlink_write_queue(skb, sk);
1158 /* It is the one place in all of TCP, except connection
1159 * reset, where we can be unlinking the send_head.
1160 */
1161 tcp_check_send_head(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001162 sk_wmem_free_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
1165do_error:
1166 if (copied)
1167 goto out;
1168out_err:
1169 err = sk_stream_error(sk, flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 release_sock(sk);
1171 return err;
1172}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001173EXPORT_SYMBOL(tcp_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175/*
1176 * Handle reading urgent data. BSD has very simple semantics for
1177 * this, no blocking and very strange errors 8)
1178 */
1179
Rami Rosen377f0a02009-03-31 14:43:17 -07001180static int tcp_recv_urg(struct sock *sk, struct msghdr *msg, int len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
1182 struct tcp_sock *tp = tcp_sk(sk);
1183
1184 /* No URG data to read. */
1185 if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data ||
1186 tp->urg_data == TCP_URG_READ)
1187 return -EINVAL; /* Yes this is right ! */
1188
1189 if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE))
1190 return -ENOTCONN;
1191
1192 if (tp->urg_data & TCP_URG_VALID) {
1193 int err = 0;
1194 char c = tp->urg_data;
1195
1196 if (!(flags & MSG_PEEK))
1197 tp->urg_data = TCP_URG_READ;
1198
1199 /* Read urgent data. */
1200 msg->msg_flags |= MSG_OOB;
1201
1202 if (len > 0) {
1203 if (!(flags & MSG_TRUNC))
1204 err = memcpy_toiovec(msg->msg_iov, &c, 1);
1205 len = 1;
1206 } else
1207 msg->msg_flags |= MSG_TRUNC;
1208
1209 return err ? -EFAULT : len;
1210 }
1211
1212 if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
1213 return 0;
1214
1215 /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and
1216 * the available implementations agree in this case:
1217 * this call should never block, independent of the
1218 * blocking state of the socket.
1219 * Mike <pall@rz.uni-karlsruhe.de>
1220 */
1221 return -EAGAIN;
1222}
1223
1224/* Clean up the receive buffer for full frames taken by the user,
1225 * then send an ACK if necessary. COPIED is the number of bytes
1226 * tcp_recvmsg has given to the user so far, it speeds up the
1227 * calculation of whether or not we must ACK for the sake of
1228 * a window update.
1229 */
Chris Leech0e4b4992006-05-23 18:00:16 -07001230void tcp_cleanup_rbuf(struct sock *sk, int copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 struct tcp_sock *tp = tcp_sk(sk);
1233 int time_to_ack = 0;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1236
Ilpo Järvinend792c102009-11-13 13:56:33 -08001237 WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001238 "cleanup rbuf bug: copied %X seq %X rcvnxt %X\n",
Ilpo Järvinend792c102009-11-13 13:56:33 -08001239 tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001241 if (inet_csk_ack_scheduled(sk)) {
1242 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /* Delayed ACKs frequently hit locked sockets during bulk
1244 * receive. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001245 if (icsk->icsk_ack.blocked ||
Ravi Joshiee51cf02013-07-25 19:04:17 -07001246 /* Once-per-sysctl_tcp_delack_seg segments
1247 * ACK was not sent by tcp_input.c
1248 */
1249 tp->rcv_nxt - tp->rcv_wup > (icsk->icsk_ack.rcv_mss) *
1250 sysctl_tcp_delack_seg ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 /*
1252 * If this read emptied read buffer, we send ACK, if
1253 * connection is not bidirectional, user drained
1254 * receive buffer and there was a small segment
1255 * in queue.
1256 */
Alexey Kuznetsov1ef96962006-09-19 12:52:50 -07001257 (copied > 0 &&
1258 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) ||
1259 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) &&
1260 !icsk->icsk_ack.pingpong)) &&
1261 !atomic_read(&sk->sk_rmem_alloc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 time_to_ack = 1;
1263 }
1264
1265 /* We send an ACK if we can now advertise a non-zero window
1266 * which has been raised "significantly".
1267 *
1268 * Even if window raised up to infinity, do not send window open ACK
1269 * in states, where we will not receive more. It is useless.
1270 */
1271 if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) {
1272 __u32 rcv_window_now = tcp_receive_window(tp);
1273
1274 /* Optimize, __tcp_select_window() is not cheap. */
1275 if (2*rcv_window_now <= tp->window_clamp) {
1276 __u32 new_window = __tcp_select_window(sk);
1277
1278 /* Send ACK now, if this read freed lots of space
1279 * in our buffer. Certainly, new_window is new window.
1280 * We can advertise it now, if it is not less than current one.
1281 * "Lots" means "at least twice" here.
1282 */
1283 if (new_window && new_window >= 2 * rcv_window_now)
1284 time_to_ack = 1;
1285 }
1286 }
1287 if (time_to_ack)
1288 tcp_send_ack(sk);
1289}
1290
1291static void tcp_prequeue_process(struct sock *sk)
1292{
1293 struct sk_buff *skb;
1294 struct tcp_sock *tp = tcp_sk(sk);
1295
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001296 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 /* RX process wants to run with disabled BHs, though it is not
1299 * necessary */
1300 local_bh_disable();
1301 while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
Peter Zijlstrac57943a2008-10-07 14:18:42 -07001302 sk_backlog_rcv(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 local_bh_enable();
1304
1305 /* Clear memory counter. */
1306 tp->ucopy.memory = 0;
1307}
1308
Steven J. Magnani73852e82010-03-16 05:22:44 +00001309#ifdef CONFIG_NET_DMA
1310static void tcp_service_net_dma(struct sock *sk, bool wait)
1311{
1312 dma_cookie_t done, used;
1313 dma_cookie_t last_issued;
1314 struct tcp_sock *tp = tcp_sk(sk);
1315
1316 if (!tp->ucopy.dma_chan)
1317 return;
1318
1319 last_issued = tp->ucopy.dma_cookie;
1320 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1321
1322 do {
1323 if (dma_async_memcpy_complete(tp->ucopy.dma_chan,
1324 last_issued, &done,
1325 &used) == DMA_SUCCESS) {
1326 /* Safe to free early-copied skbs now */
1327 __skb_queue_purge(&sk->sk_async_wait_queue);
1328 break;
1329 } else {
1330 struct sk_buff *skb;
1331 while ((skb = skb_peek(&sk->sk_async_wait_queue)) &&
1332 (dma_async_is_complete(skb->dma_cookie, done,
1333 used) == DMA_SUCCESS)) {
1334 __skb_dequeue(&sk->sk_async_wait_queue);
1335 kfree_skb(skb);
1336 }
1337 }
1338 } while (wait);
1339}
1340#endif
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
1343{
1344 struct sk_buff *skb;
1345 u32 offset;
1346
1347 skb_queue_walk(&sk->sk_receive_queue, skb) {
1348 offset = seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001349 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 offset--;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001351 if (offset < skb->len || tcp_hdr(skb)->fin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 *off = offset;
1353 return skb;
1354 }
1355 }
1356 return NULL;
1357}
1358
1359/*
1360 * This routine provides an alternative to tcp_recvmsg() for routines
1361 * that would like to handle copying from skbuffs directly in 'sendfile'
1362 * fashion.
1363 * Note:
1364 * - It is assumed that the socket was locked by the caller.
1365 * - The routine does not block.
1366 * - At present, there is no support for reading OOB data
1367 * or for 'peeking' the socket using this routine
1368 * (although both would be easy to implement).
1369 */
1370int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
1371 sk_read_actor_t recv_actor)
1372{
1373 struct sk_buff *skb;
1374 struct tcp_sock *tp = tcp_sk(sk);
1375 u32 seq = tp->copied_seq;
1376 u32 offset;
1377 int copied = 0;
1378
1379 if (sk->sk_state == TCP_LISTEN)
1380 return -ENOTCONN;
1381 while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
1382 if (offset < skb->len) {
Octavian Purdila374e7b52008-07-03 03:31:21 -07001383 int used;
1384 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 len = skb->len - offset;
1387 /* Stop reading if we hit a patch of urgent data */
1388 if (tp->urg_data) {
1389 u32 urg_offset = tp->urg_seq - seq;
1390 if (urg_offset < len)
1391 len = urg_offset;
1392 if (!len)
1393 break;
1394 }
1395 used = recv_actor(desc, skb, offset, len);
Jens Axboeddb61a52007-06-23 23:07:50 -07001396 if (used < 0) {
1397 if (!copied)
1398 copied = used;
1399 break;
1400 } else if (used <= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 seq += used;
1402 copied += used;
1403 offset += used;
1404 }
Octavian Purdila293ad602008-06-04 15:45:58 -07001405 /*
1406 * If recv_actor drops the lock (e.g. TCP splice
1407 * receive) the skb pointer might be invalid when
1408 * getting here: tcp_collapse might have deleted it
1409 * while aggregating skbs from the socket queue.
1410 */
1411 skb = tcp_recv_skb(sk, seq-1, &offset);
1412 if (!skb || (offset+1 != skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414 }
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001415 if (tcp_hdr(skb)->fin) {
Eric Dumazet48ede612012-05-16 22:48:15 +00001416 sk_eat_skb(sk, skb, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 ++seq;
1418 break;
1419 }
Eric Dumazet48ede612012-05-16 22:48:15 +00001420 sk_eat_skb(sk, skb, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (!desc->count)
1422 break;
Steven J. Magnanibaff42a2010-03-30 13:56:01 -07001423 tp->copied_seq = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425 tp->copied_seq = seq;
1426
1427 tcp_rcv_space_adjust(sk);
1428
1429 /* Clean up data we have read: This will do ACK frames. */
Mike Chan5a0b3542009-01-07 11:40:42 -08001430 if (copied > 0) {
Chris Leech0e4b4992006-05-23 18:00:16 -07001431 tcp_cleanup_rbuf(sk, copied);
Mike Chan5a0b3542009-01-07 11:40:42 -08001432 uid_stat_tcp_rcv(current_uid(), copied);
1433 }
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return copied;
1436}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001437EXPORT_SYMBOL(tcp_read_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439/*
1440 * This routine copies from a sock struct into the user buffer.
1441 *
1442 * Technical note: in 2.3 we work on _locked_ socket, so that
1443 * tricks with *seq access order and skb->users are not required.
1444 * Probably, code can be easily improved even more.
1445 */
1446
1447int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
1448 size_t len, int nonblock, int flags, int *addr_len)
1449{
1450 struct tcp_sock *tp = tcp_sk(sk);
1451 int copied = 0;
1452 u32 peek_seq;
1453 u32 *seq;
1454 unsigned long used;
1455 int err;
1456 int target; /* Read at least this many bytes */
1457 long timeo;
1458 struct task_struct *user_recv = NULL;
Eric Dumazet48ede612012-05-16 22:48:15 +00001459 bool copied_early = false;
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001460 struct sk_buff *skb, *last;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001461 u32 urg_hole = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 lock_sock(sk);
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 err = -ENOTCONN;
1466 if (sk->sk_state == TCP_LISTEN)
1467 goto out;
1468
1469 timeo = sock_rcvtimeo(sk, nonblock);
1470
1471 /* Urgent data needs to be handled specially. */
1472 if (flags & MSG_OOB)
1473 goto recv_urg;
1474
1475 seq = &tp->copied_seq;
1476 if (flags & MSG_PEEK) {
1477 peek_seq = tp->copied_seq;
1478 seq = &peek_seq;
1479 }
1480
1481 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
1482
Chris Leech1a2449a2006-05-23 18:05:53 -07001483#ifdef CONFIG_NET_DMA
1484 tp->ucopy.dma_chan = NULL;
1485 preempt_disable();
Chris Leech2b1244a2007-03-08 09:57:36 -08001486 skb = skb_peek_tail(&sk->sk_receive_queue);
Andrew Mortone00c5d82007-03-08 09:57:36 -08001487 {
1488 int available = 0;
1489
1490 if (skb)
1491 available = TCP_SKB_CB(skb)->seq + skb->len - (*seq);
1492 if ((available < target) &&
1493 (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) &&
1494 !sysctl_tcp_low_latency &&
Dave Jianga2bd1142012-04-04 16:10:46 -07001495 net_dma_find_channel()) {
Andrew Mortone00c5d82007-03-08 09:57:36 -08001496 preempt_enable_no_resched();
1497 tp->ucopy.pinned_list =
1498 dma_pin_iovec_pages(msg->msg_iov, len);
1499 } else {
1500 preempt_enable_no_resched();
1501 }
1502 }
Chris Leech1a2449a2006-05-23 18:05:53 -07001503#endif
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 u32 offset;
1507
1508 /* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */
1509 if (tp->urg_data && tp->urg_seq == *seq) {
1510 if (copied)
1511 break;
1512 if (signal_pending(current)) {
1513 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
1514 break;
1515 }
1516 }
1517
1518 /* Next get a buffer. */
1519
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001520 last = skb_peek_tail(&sk->sk_receive_queue);
David S. Miller91521942009-05-28 21:35:47 -07001521 skb_queue_walk(&sk->sk_receive_queue, skb) {
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001522 last = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 /* Now that we have two receive queues this
1524 * shouldn't happen.
1525 */
Ilpo Järvinend792c102009-11-13 13:56:33 -08001526 if (WARN(before(*seq, TCP_SKB_CB(skb)->seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001527 "recvmsg bug: copied %X seq %X rcvnxt %X fl %X\n",
1528 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt,
1529 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 break;
Ilpo Järvinend792c102009-11-13 13:56:33 -08001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 offset = *seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001533 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 offset--;
1535 if (offset < skb->len)
1536 goto found_ok_skb;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001537 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 goto found_fin_ok;
Joe Perches2af6fd82010-10-30 11:08:53 +00001539 WARN(!(flags & MSG_PEEK),
1540 "recvmsg bug 2: copied %X seq %X rcvnxt %X fl %X\n",
1541 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt, flags);
David S. Miller91521942009-05-28 21:35:47 -07001542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 /* Well, if we have backlog, try to process it now yet. */
1545
1546 if (copied >= target && !sk->sk_backlog.tail)
1547 break;
1548
1549 if (copied) {
1550 if (sk->sk_err ||
1551 sk->sk_state == TCP_CLOSE ||
1552 (sk->sk_shutdown & RCV_SHUTDOWN) ||
1553 !timeo ||
David S. Miller518a09e2008-11-05 03:36:01 -08001554 signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 break;
1556 } else {
1557 if (sock_flag(sk, SOCK_DONE))
1558 break;
1559
1560 if (sk->sk_err) {
1561 copied = sock_error(sk);
1562 break;
1563 }
1564
1565 if (sk->sk_shutdown & RCV_SHUTDOWN)
1566 break;
1567
1568 if (sk->sk_state == TCP_CLOSE) {
1569 if (!sock_flag(sk, SOCK_DONE)) {
1570 /* This occurs when user tries to read
1571 * from never connected socket.
1572 */
1573 copied = -ENOTCONN;
1574 break;
1575 }
1576 break;
1577 }
1578
1579 if (!timeo) {
1580 copied = -EAGAIN;
1581 break;
1582 }
1583
1584 if (signal_pending(current)) {
1585 copied = sock_intr_errno(timeo);
1586 break;
1587 }
1588 }
1589
Chris Leech0e4b4992006-05-23 18:00:16 -07001590 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
David S. Miller7df55122005-06-18 23:01:10 -07001592 if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 /* Install new reader */
1594 if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) {
1595 user_recv = current;
1596 tp->ucopy.task = user_recv;
1597 tp->ucopy.iov = msg->msg_iov;
1598 }
1599
1600 tp->ucopy.len = len;
1601
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001602 WARN_ON(tp->copied_seq != tp->rcv_nxt &&
1603 !(flags & (MSG_PEEK | MSG_TRUNC)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 /* Ugly... If prequeue is not empty, we have to
1606 * process it before releasing socket, otherwise
1607 * order will be broken at second iteration.
1608 * More elegant solution is required!!!
1609 *
1610 * Look: we have the following (pseudo)queues:
1611 *
1612 * 1. packets in flight
1613 * 2. backlog
1614 * 3. prequeue
1615 * 4. receive_queue
1616 *
1617 * Each queue can be processed only if the next ones
1618 * are empty. At this point we have empty receive_queue.
1619 * But prequeue _can_ be not empty after 2nd iteration,
1620 * when we jumped to start of loop because backlog
1621 * processing added something to receive_queue.
1622 * We cannot release_sock(), because backlog contains
1623 * packets arrived _after_ prequeued ones.
1624 *
1625 * Shortly, algorithm is clear --- to process all
1626 * the queues in order. We could make it more directly,
1627 * requeueing packets from backlog to prequeue, if
1628 * is not empty. It is more elegant, but eats cycles,
1629 * unfortunately.
1630 */
David S. Millerb03efcf2005-07-08 14:57:23 -07001631 if (!skb_queue_empty(&tp->ucopy.prequeue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 goto do_prequeue;
1633
1634 /* __ Set realtime policy in scheduler __ */
1635 }
1636
Steven J. Magnani73852e82010-03-16 05:22:44 +00001637#ifdef CONFIG_NET_DMA
Michal Kubeček3ecf44c2012-09-14 04:59:52 +00001638 if (tp->ucopy.dma_chan) {
1639 if (tp->rcv_wnd == 0 &&
1640 !skb_queue_empty(&sk->sk_async_wait_queue)) {
1641 tcp_service_net_dma(sk, true);
1642 tcp_cleanup_rbuf(sk, copied);
1643 } else
1644 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1645 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001646#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (copied >= target) {
1648 /* Do not sleep, just process backlog. */
1649 release_sock(sk);
1650 lock_sock(sk);
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001651 } else {
1652 sk_wait_data(sk, &timeo, last);
1653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Chris Leech1a2449a2006-05-23 18:05:53 -07001655#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001656 tcp_service_net_dma(sk, false); /* Don't block */
Chris Leech1a2449a2006-05-23 18:05:53 -07001657 tp->ucopy.wakeup = 0;
1658#endif
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (user_recv) {
1661 int chunk;
1662
1663 /* __ Restore normal policy in scheduler __ */
1664
1665 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001666 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 len -= chunk;
1668 copied += chunk;
1669 }
1670
1671 if (tp->rcv_nxt == tp->copied_seq &&
David S. Millerb03efcf2005-07-08 14:57:23 -07001672 !skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673do_prequeue:
1674 tcp_prequeue_process(sk);
1675
1676 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001677 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 len -= chunk;
1679 copied += chunk;
1680 }
1681 }
1682 }
Ilpo Järvinen77527312009-05-10 20:32:34 +00001683 if ((flags & MSG_PEEK) &&
1684 (peek_seq - copied - urg_hole != tp->copied_seq)) {
Joe Perches13f97a02012-05-13 21:56:26 +00001685 net_dbg_ratelimited("TCP(%s:%d): Application bug, race in MSG_PEEK\n",
1686 current->comm,
1687 task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 peek_seq = tp->copied_seq;
1689 }
1690 continue;
1691
1692 found_ok_skb:
1693 /* Ok so how much can we use? */
1694 used = skb->len - offset;
1695 if (len < used)
1696 used = len;
1697
1698 /* Do we have urgent data here? */
1699 if (tp->urg_data) {
1700 u32 urg_offset = tp->urg_seq - *seq;
1701 if (urg_offset < used) {
1702 if (!urg_offset) {
1703 if (!sock_flag(sk, SOCK_URGINLINE)) {
1704 ++*seq;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001705 urg_hole++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 offset++;
1707 used--;
1708 if (!used)
1709 goto skip_copy;
1710 }
1711 } else
1712 used = urg_offset;
1713 }
1714 }
1715
1716 if (!(flags & MSG_TRUNC)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001717#ifdef CONFIG_NET_DMA
1718 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
Dave Jianga2bd1142012-04-04 16:10:46 -07001719 tp->ucopy.dma_chan = net_dma_find_channel();
Chris Leech1a2449a2006-05-23 18:05:53 -07001720
1721 if (tp->ucopy.dma_chan) {
1722 tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec(
1723 tp->ucopy.dma_chan, skb, offset,
1724 msg->msg_iov, used,
1725 tp->ucopy.pinned_list);
1726
1727 if (tp->ucopy.dma_cookie < 0) {
1728
Joe Perchesafd465032012-03-12 07:03:32 +00001729 pr_alert("%s: dma_cookie < 0\n",
1730 __func__);
Chris Leech1a2449a2006-05-23 18:05:53 -07001731
1732 /* Exception. Bailout! */
1733 if (!copied)
1734 copied = -EFAULT;
1735 break;
1736 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001737
1738 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1739
Chris Leech1a2449a2006-05-23 18:05:53 -07001740 if ((offset + used) == skb->len)
Eric Dumazet48ede612012-05-16 22:48:15 +00001741 copied_early = true;
Chris Leech1a2449a2006-05-23 18:05:53 -07001742
1743 } else
1744#endif
1745 {
1746 err = skb_copy_datagram_iovec(skb, offset,
1747 msg->msg_iov, used);
1748 if (err) {
1749 /* Exception. Bailout! */
1750 if (!copied)
1751 copied = -EFAULT;
1752 break;
1753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755 }
1756
1757 *seq += used;
1758 copied += used;
1759 len -= used;
1760
1761 tcp_rcv_space_adjust(sk);
1762
1763skip_copy:
1764 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) {
1765 tp->urg_data = 0;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001766 tcp_fast_path_check(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768 if (used + offset < skb->len)
1769 continue;
1770
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001771 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 goto found_fin_ok;
Chris Leech1a2449a2006-05-23 18:05:53 -07001773 if (!(flags & MSG_PEEK)) {
1774 sk_eat_skb(sk, skb, copied_early);
Eric Dumazet48ede612012-05-16 22:48:15 +00001775 copied_early = false;
Chris Leech1a2449a2006-05-23 18:05:53 -07001776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 continue;
1778
1779 found_fin_ok:
1780 /* Process the FIN. */
1781 ++*seq;
Chris Leech1a2449a2006-05-23 18:05:53 -07001782 if (!(flags & MSG_PEEK)) {
1783 sk_eat_skb(sk, skb, copied_early);
Eric Dumazet48ede612012-05-16 22:48:15 +00001784 copied_early = false;
Chris Leech1a2449a2006-05-23 18:05:53 -07001785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 break;
1787 } while (len > 0);
1788
1789 if (user_recv) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001790 if (!skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 int chunk;
1792
1793 tp->ucopy.len = copied > 0 ? len : 0;
1794
1795 tcp_prequeue_process(sk);
1796
1797 if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001798 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 len -= chunk;
1800 copied += chunk;
1801 }
1802 }
1803
1804 tp->ucopy.task = NULL;
1805 tp->ucopy.len = 0;
1806 }
1807
Chris Leech1a2449a2006-05-23 18:05:53 -07001808#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001809 tcp_service_net_dma(sk, true); /* Wait for queue to drain */
1810 tp->ucopy.dma_chan = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001811
Chris Leech1a2449a2006-05-23 18:05:53 -07001812 if (tp->ucopy.pinned_list) {
1813 dma_unpin_iovec_pages(tp->ucopy.pinned_list);
1814 tp->ucopy.pinned_list = NULL;
1815 }
1816#endif
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 /* According to UNIX98, msg_name/msg_namelen are ignored
1819 * on connected socket. I was just happy when found this 8) --ANK
1820 */
1821
1822 /* Clean up data we have read: This will do ACK frames. */
Chris Leech0e4b4992006-05-23 18:00:16 -07001823 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001826
1827 if (copied > 0)
1828 uid_stat_tcp_rcv(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return copied;
1830
1831out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 release_sock(sk);
1833 return err;
1834
1835recv_urg:
Rami Rosen377f0a02009-03-31 14:43:17 -07001836 err = tcp_recv_urg(sk, msg, len, flags);
Mike Chan5a0b3542009-01-07 11:40:42 -08001837 if (err > 0)
1838 uid_stat_tcp_rcv(current_uid(), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 goto out;
1840}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001841EXPORT_SYMBOL(tcp_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001843void tcp_set_state(struct sock *sk, int state)
1844{
1845 int oldstate = sk->sk_state;
1846
1847 switch (state) {
1848 case TCP_ESTABLISHED:
1849 if (oldstate != TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001850 TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001851 break;
1852
1853 case TCP_CLOSE:
1854 if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001855 TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001856
1857 sk->sk_prot->unhash(sk);
1858 if (inet_csk(sk)->icsk_bind_hash &&
1859 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001860 inet_put_port(sk);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001861 /* fall through */
1862 default:
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001863 if (oldstate == TCP_ESTABLISHED)
Pavel Emelyanov74688e42008-07-16 20:22:46 -07001864 TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001865 }
1866
1867 /* Change state AFTER socket is unhashed to avoid closed
1868 * socket sitting in hash tables.
1869 */
1870 sk->sk_state = state;
1871
1872#ifdef STATE_TRACE
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001873 SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n", sk, statename[oldstate], statename[state]);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001874#endif
1875}
1876EXPORT_SYMBOL_GPL(tcp_set_state);
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878/*
1879 * State processing on a close. This implements the state shift for
1880 * sending our FIN frame. Note that we only send a FIN for some
1881 * states. A shutdown() may have already sent the FIN, or we may be
1882 * closed.
1883 */
1884
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001885static const unsigned char new_state[16] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 /* current state: new state: action: */
1887 /* (Invalid) */ TCP_CLOSE,
1888 /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1889 /* TCP_SYN_SENT */ TCP_CLOSE,
1890 /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1891 /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1,
1892 /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2,
1893 /* TCP_TIME_WAIT */ TCP_CLOSE,
1894 /* TCP_CLOSE */ TCP_CLOSE,
1895 /* TCP_CLOSE_WAIT */ TCP_LAST_ACK | TCP_ACTION_FIN,
1896 /* TCP_LAST_ACK */ TCP_LAST_ACK,
1897 /* TCP_LISTEN */ TCP_CLOSE,
1898 /* TCP_CLOSING */ TCP_CLOSING,
1899};
1900
1901static int tcp_close_state(struct sock *sk)
1902{
1903 int next = (int)new_state[sk->sk_state];
1904 int ns = next & TCP_STATE_MASK;
1905
1906 tcp_set_state(sk, ns);
1907
1908 return next & TCP_ACTION_FIN;
1909}
1910
1911/*
1912 * Shutdown the sending side of a connection. Much like close except
Satoru SATOH1f29b052008-04-21 02:27:58 -07001913 * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 */
1915
1916void tcp_shutdown(struct sock *sk, int how)
1917{
1918 /* We need to grab some memory, and put together a FIN,
1919 * and then put it into the queue to be sent.
1920 * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1921 */
1922 if (!(how & SEND_SHUTDOWN))
1923 return;
1924
1925 /* If we've already sent a FIN, or it's a closed state, skip this. */
1926 if ((1 << sk->sk_state) &
1927 (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1928 TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) {
1929 /* Clear out any half completed packets. FIN if needed. */
1930 if (tcp_close_state(sk))
1931 tcp_send_fin(sk);
1932 }
1933}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001934EXPORT_SYMBOL(tcp_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001936bool tcp_check_oom(struct sock *sk, int shift)
1937{
1938 bool too_many_orphans, out_of_socket_memory;
1939
1940 too_many_orphans = tcp_too_many_orphans(sk, shift);
1941 out_of_socket_memory = tcp_out_of_memory(sk);
1942
Joe Perches13f97a02012-05-13 21:56:26 +00001943 if (too_many_orphans)
1944 net_info_ratelimited("too many orphaned sockets\n");
1945 if (out_of_socket_memory)
1946 net_info_ratelimited("out of memory -- consider tuning tcp_mem\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001947 return too_many_orphans || out_of_socket_memory;
1948}
1949
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950void tcp_close(struct sock *sk, long timeout)
1951{
1952 struct sk_buff *skb;
1953 int data_was_unread = 0;
Herbert Xu75c2d9072006-05-03 23:31:35 -07001954 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 lock_sock(sk);
1957 sk->sk_shutdown = SHUTDOWN_MASK;
1958
1959 if (sk->sk_state == TCP_LISTEN) {
1960 tcp_set_state(sk, TCP_CLOSE);
1961
1962 /* Special case. */
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07001963 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 goto adjudge_to_death;
1966 }
1967
1968 /* We need to flush the recv. buffs. We do this only on the
1969 * descriptor close, not protocol-sourced closes, because the
1970 * reader process may not have drained the data yet!
1971 */
1972 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
1973 u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq -
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001974 tcp_hdr(skb)->fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 data_was_unread += len;
1976 __kfree_skb(skb);
1977 }
1978
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001979 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Konstantin Khorenko565b7b22010-06-24 21:54:58 -07001981 /* If socket has been already reset (e.g. in tcp_reset()) - kill it. */
1982 if (sk->sk_state == TCP_CLOSE)
1983 goto adjudge_to_death;
1984
Gerrit Renker65bb7232007-04-28 21:21:46 -07001985 /* As outlined in RFC 2525, section 2.17, we send a RST here because
1986 * data was lost. To witness the awful effects of the old behavior of
1987 * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk
1988 * GET in an FTP client, suspend the process, wait for the client to
1989 * advertise a zero window, then kill -9 the FTP client, wheee...
1990 * Note: timeout is always zero in such a case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 */
1992 if (data_was_unread) {
1993 /* Unread data was tossed, zap the connection. */
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001994 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 tcp_set_state(sk, TCP_CLOSE);
Wu Fengguangaa133072009-09-02 23:45:45 -07001996 tcp_send_active_reset(sk, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1998 /* Check zero linger _after_ checking for unread data. */
1999 sk->sk_prot->disconnect(sk, 0);
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07002000 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 } else if (tcp_close_state(sk)) {
2002 /* We FIN if the application ate all the data before
2003 * zapping the connection.
2004 */
2005
2006 /* RED-PEN. Formally speaking, we have broken TCP state
2007 * machine. State transitions:
2008 *
2009 * TCP_ESTABLISHED -> TCP_FIN_WAIT1
2010 * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible)
2011 * TCP_CLOSE_WAIT -> TCP_LAST_ACK
2012 *
2013 * are legal only when FIN has been sent (i.e. in window),
2014 * rather than queued out of window. Purists blame.
2015 *
2016 * F.e. "RFC state" is ESTABLISHED,
2017 * if Linux state is FIN-WAIT-1, but FIN is still not sent.
2018 *
2019 * The visible declinations are that sometimes
2020 * we enter time-wait state, when it is not required really
2021 * (harmless), do not send active resets, when they are
2022 * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
2023 * they look as CLOSING or LAST_ACK for Linux)
2024 * Probably, I missed some more holelets.
2025 * --ANK
2026 */
2027 tcp_send_fin(sk);
2028 }
2029
2030 sk_stream_wait_close(sk, timeout);
2031
2032adjudge_to_death:
Herbert Xu75c2d9072006-05-03 23:31:35 -07002033 state = sk->sk_state;
2034 sock_hold(sk);
2035 sock_orphan(sk);
Herbert Xu75c2d9072006-05-03 23:31:35 -07002036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* It is the last release_sock in its life. It will remove backlog. */
2038 release_sock(sk);
2039
2040
2041 /* Now socket is owned by kernel and we acquire BH lock
2042 to finish close. No need to check for user refs.
2043 */
2044 local_bh_disable();
2045 bh_lock_sock(sk);
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002046 WARN_ON(sock_owned_by_user(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Herbert Xueb4dea52008-12-29 23:04:08 -08002048 percpu_counter_inc(sk->sk_prot->orphan_count);
2049
Herbert Xu75c2d9072006-05-03 23:31:35 -07002050 /* Have we already been destroyed by a softirq or backlog? */
2051 if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE)
2052 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
2054 /* This is a (useful) BSD violating of the RFC. There is a
2055 * problem with TCP as specified in that the other end could
2056 * keep a socket open forever with no application left this end.
2057 * We use a 3 minute timeout (about the same as BSD) then kill
2058 * our end. If they send after that then tough - BUT: long enough
2059 * that we won't make the old 4*rto = almost no time - whoops
2060 * reset mistake.
2061 *
2062 * Nope, it was not mistake. It is really desired behaviour
2063 * f.e. on http servers, when such sockets are useless, but
2064 * consume significant resources. Let's do it with special
2065 * linger2 option. --ANK
2066 */
2067
2068 if (sk->sk_state == TCP_FIN_WAIT2) {
2069 struct tcp_sock *tp = tcp_sk(sk);
2070 if (tp->linger2 < 0) {
2071 tcp_set_state(sk, TCP_CLOSE);
2072 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002073 NET_INC_STATS_BH(sock_net(sk),
2074 LINUX_MIB_TCPABORTONLINGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002076 const int tmo = tcp_fin_time(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 if (tmo > TCP_TIMEWAIT_LEN) {
David S. Miller52499af2006-07-31 22:32:09 -07002079 inet_csk_reset_keepalive_timer(sk,
2080 tmo - TCP_TIMEWAIT_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
2083 goto out;
2084 }
2085 }
2086 }
2087 if (sk->sk_state != TCP_CLOSE) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002088 sk_mem_reclaim(sk);
Arun Sharmaefcdbf22012-01-30 14:16:06 -08002089 if (tcp_check_oom(sk, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 tcp_set_state(sk, TCP_CLOSE);
2091 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002092 NET_INC_STATS_BH(sock_net(sk),
2093 LINUX_MIB_TCPABORTONMEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
2095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 if (sk->sk_state == TCP_CLOSE)
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002098 inet_csk_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 /* Otherwise, socket is reprieved until protocol close. */
2100
2101out:
2102 bh_unlock_sock(sk);
2103 local_bh_enable();
2104 sock_put(sk);
2105}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002106EXPORT_SYMBOL(tcp_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108/* These states need RST on ABORT according to RFC793 */
2109
2110static inline int tcp_need_reset(int state)
2111{
2112 return (1 << state) &
2113 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 |
2114 TCPF_FIN_WAIT2 | TCPF_SYN_RECV);
2115}
2116
2117int tcp_disconnect(struct sock *sk, int flags)
2118{
2119 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002120 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 struct tcp_sock *tp = tcp_sk(sk);
2122 int err = 0;
2123 int old_state = sk->sk_state;
2124
2125 if (old_state != TCP_CLOSE)
2126 tcp_set_state(sk, TCP_CLOSE);
2127
2128 /* ABORT function of RFC793 */
2129 if (old_state == TCP_LISTEN) {
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002130 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 } else if (tcp_need_reset(old_state) ||
2132 (tp->snd_nxt != tp->write_seq &&
2133 (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002134 /* The last check adjusts for discrepancy of Linux wrt. RFC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 * states
2136 */
2137 tcp_send_active_reset(sk, gfp_any());
2138 sk->sk_err = ECONNRESET;
2139 } else if (old_state == TCP_SYN_SENT)
2140 sk->sk_err = ECONNRESET;
2141
2142 tcp_clear_xmit_timers(sk);
2143 __skb_queue_purge(&sk->sk_receive_queue);
David S. Millerfe067e82007-03-07 12:12:44 -08002144 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 __skb_queue_purge(&tp->out_of_order_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07002146#ifdef CONFIG_NET_DMA
2147 __skb_queue_purge(&sk->sk_async_wait_queue);
2148#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002150 inet->inet_dport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
2153 inet_reset_saddr(sk);
2154
2155 sk->sk_shutdown = 0;
2156 sock_reset_flag(sk, SOCK_DONE);
2157 tp->srtt = 0;
2158 if ((tp->write_seq += tp->max_window + 2) == 0)
2159 tp->write_seq = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002160 icsk->icsk_backoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 tp->snd_cwnd = 2;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002162 icsk->icsk_probes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 tp->packets_out = 0;
Ilpo Järvinen0b6a05c2009-09-15 01:30:10 -07002164 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 tp->snd_cwnd_cnt = 0;
Eric Dumazet1fdf4752009-11-30 12:53:30 -08002166 tp->window_clamp = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002167 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 tcp_clear_retrans(tp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002169 inet_csk_delack_init(sk);
Wei Wang7b983f12017-05-18 11:22:33 -07002170 /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0
2171 * issue in __tcp_select_window()
2172 */
2173 icsk->icsk_ack.rcv_mss = TCP_MIN_MSS;
David S. Millerfe067e82007-03-07 12:12:44 -08002174 tcp_init_send_head(sk);
Srinivas Ajib40b4f72007-05-03 17:32:28 -07002175 memset(&tp->rx_opt, 0, sizeof(tp->rx_opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 __sk_dst_reset(sk);
2177
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002178 WARN_ON(inet->inet_num && !icsk->icsk_bind_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 sk->sk_error_report(sk);
2181 return err;
2182}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002183EXPORT_SYMBOL(tcp_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 * Socket option code for TCP.
2187 */
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002188static int do_tcp_setsockopt(struct sock *sk, int level,
David S. Millerb7058842009-09-30 16:12:20 -07002189 int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
2191 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002192 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int val;
2194 int err = 0;
2195
William Allen Simpsone56fb502009-12-02 18:19:30 +00002196 /* These are data/string values, all the others are ints */
2197 switch (optname) {
2198 case TCP_CONGESTION: {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002199 char name[TCP_CA_NAME_MAX];
2200
2201 if (optlen < 1)
2202 return -EINVAL;
2203
2204 val = strncpy_from_user(name, optval,
Andrew Morton4fdb78d2009-10-01 15:02:20 -07002205 min_t(long, TCP_CA_NAME_MAX-1, optlen));
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002206 if (val < 0)
2207 return -EFAULT;
2208 name[val] = 0;
2209
2210 lock_sock(sk);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002211 err = tcp_set_congestion_control(sk, name);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002212 release_sock(sk);
2213 return err;
2214 }
William Allen Simpsone56fb502009-12-02 18:19:30 +00002215 case TCP_COOKIE_TRANSACTIONS: {
2216 struct tcp_cookie_transactions ctd;
2217 struct tcp_cookie_values *cvp = NULL;
2218
2219 if (sizeof(ctd) > optlen)
2220 return -EINVAL;
2221 if (copy_from_user(&ctd, optval, sizeof(ctd)))
2222 return -EFAULT;
2223
2224 if (ctd.tcpct_used > sizeof(ctd.tcpct_value) ||
2225 ctd.tcpct_s_data_desired > TCP_MSS_DESIRED)
2226 return -EINVAL;
2227
2228 if (ctd.tcpct_cookie_desired == 0) {
2229 /* default to global value */
2230 } else if ((0x1 & ctd.tcpct_cookie_desired) ||
2231 ctd.tcpct_cookie_desired > TCP_COOKIE_MAX ||
2232 ctd.tcpct_cookie_desired < TCP_COOKIE_MIN) {
2233 return -EINVAL;
2234 }
2235
2236 if (TCP_COOKIE_OUT_NEVER & ctd.tcpct_flags) {
2237 /* Supercedes all other values */
2238 lock_sock(sk);
2239 if (tp->cookie_values != NULL) {
2240 kref_put(&tp->cookie_values->kref,
2241 tcp_cookie_values_release);
2242 tp->cookie_values = NULL;
2243 }
2244 tp->rx_opt.cookie_in_always = 0; /* false */
2245 tp->rx_opt.cookie_out_never = 1; /* true */
2246 release_sock(sk);
2247 return err;
2248 }
2249
2250 /* Allocate ancillary memory before locking.
2251 */
2252 if (ctd.tcpct_used > 0 ||
2253 (tp->cookie_values == NULL &&
2254 (sysctl_tcp_cookie_size > 0 ||
2255 ctd.tcpct_cookie_desired > 0 ||
2256 ctd.tcpct_s_data_desired > 0))) {
2257 cvp = kzalloc(sizeof(*cvp) + ctd.tcpct_used,
2258 GFP_KERNEL);
2259 if (cvp == NULL)
2260 return -ENOMEM;
Dmitry Popova3bdb542010-07-29 01:59:36 +00002261
2262 kref_init(&cvp->kref);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002263 }
2264 lock_sock(sk);
2265 tp->rx_opt.cookie_in_always =
2266 (TCP_COOKIE_IN_ALWAYS & ctd.tcpct_flags);
2267 tp->rx_opt.cookie_out_never = 0; /* false */
2268
2269 if (tp->cookie_values != NULL) {
2270 if (cvp != NULL) {
2271 /* Changed values are recorded by a changed
2272 * pointer, ensuring the cookie will differ,
2273 * without separately hashing each value later.
2274 */
2275 kref_put(&tp->cookie_values->kref,
2276 tcp_cookie_values_release);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002277 } else {
2278 cvp = tp->cookie_values;
2279 }
2280 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002281
William Allen Simpsone56fb502009-12-02 18:19:30 +00002282 if (cvp != NULL) {
2283 cvp->cookie_desired = ctd.tcpct_cookie_desired;
2284
2285 if (ctd.tcpct_used > 0) {
2286 memcpy(cvp->s_data_payload, ctd.tcpct_value,
2287 ctd.tcpct_used);
2288 cvp->s_data_desired = ctd.tcpct_used;
2289 cvp->s_data_constant = 1; /* true */
2290 } else {
2291 /* No constant payload data. */
2292 cvp->s_data_desired = ctd.tcpct_s_data_desired;
2293 cvp->s_data_constant = 0; /* false */
2294 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002295
2296 tp->cookie_values = cvp;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002297 }
2298 release_sock(sk);
2299 return err;
2300 }
2301 default:
2302 /* fallthru */
2303 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002304 }
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (optlen < sizeof(int))
2307 return -EINVAL;
2308
2309 if (get_user(val, (int __user *)optval))
2310 return -EFAULT;
2311
2312 lock_sock(sk);
2313
2314 switch (optname) {
2315 case TCP_MAXSEG:
2316 /* Values greater than interface MTU won't take effect. However
2317 * at the point when this call is done we typically don't yet
2318 * know which interface is going to be used */
David S. Millerc39508d2010-11-24 11:47:22 -08002319 if (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 err = -EINVAL;
2321 break;
2322 }
2323 tp->rx_opt.user_mss = val;
2324 break;
2325
2326 case TCP_NODELAY:
2327 if (val) {
2328 /* TCP_NODELAY is weaker than TCP_CORK, so that
2329 * this option on corked socket is remembered, but
2330 * it is not activated until cork is cleared.
2331 *
2332 * However, when TCP_NODELAY is set we make
2333 * an explicit push, which overrides even TCP_CORK
2334 * for currently queued segments.
2335 */
2336 tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002337 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 } else {
2339 tp->nonagle &= ~TCP_NAGLE_OFF;
2340 }
2341 break;
2342
Andreas Petlund36e31b02010-02-18 02:47:01 +00002343 case TCP_THIN_LINEAR_TIMEOUTS:
2344 if (val < 0 || val > 1)
2345 err = -EINVAL;
2346 else
2347 tp->thin_lto = val;
2348 break;
2349
Andreas Petlund7e380172010-02-18 04:48:19 +00002350 case TCP_THIN_DUPACK:
2351 if (val < 0 || val > 1)
2352 err = -EINVAL;
2353 else
2354 tp->thin_dupack = val;
2355 break;
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 case TCP_CORK:
2358 /* When set indicates to always queue non-full frames.
2359 * Later the user clears this option and we transmit
2360 * any pending partial frames in the queue. This is
2361 * meant to be used alongside sendfile() to get properly
2362 * filled frames when the user (for example) must write
2363 * out headers with a write() call first and then use
2364 * sendfile to send out the data parts.
2365 *
2366 * TCP_CORK can be set together with TCP_NODELAY and it is
2367 * stronger than TCP_NODELAY.
2368 */
2369 if (val) {
2370 tp->nonagle |= TCP_NAGLE_CORK;
2371 } else {
2372 tp->nonagle &= ~TCP_NAGLE_CORK;
2373 if (tp->nonagle&TCP_NAGLE_OFF)
2374 tp->nonagle |= TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002375 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 break;
2378
2379 case TCP_KEEPIDLE:
2380 if (val < 1 || val > MAX_TCP_KEEPIDLE)
2381 err = -EINVAL;
2382 else {
2383 tp->keepalive_time = val * HZ;
2384 if (sock_flag(sk, SOCK_KEEPOPEN) &&
2385 !((1 << sk->sk_state) &
2386 (TCPF_CLOSE | TCPF_LISTEN))) {
Flavio Leitner6c37e5d2010-04-26 18:33:27 +00002387 u32 elapsed = keepalive_time_elapsed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (tp->keepalive_time > elapsed)
2389 elapsed = tp->keepalive_time - elapsed;
2390 else
2391 elapsed = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002392 inet_csk_reset_keepalive_timer(sk, elapsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394 }
2395 break;
2396 case TCP_KEEPINTVL:
2397 if (val < 1 || val > MAX_TCP_KEEPINTVL)
2398 err = -EINVAL;
2399 else
2400 tp->keepalive_intvl = val * HZ;
2401 break;
2402 case TCP_KEEPCNT:
2403 if (val < 1 || val > MAX_TCP_KEEPCNT)
2404 err = -EINVAL;
2405 else
2406 tp->keepalive_probes = val;
2407 break;
2408 case TCP_SYNCNT:
2409 if (val < 1 || val > MAX_TCP_SYNCNT)
2410 err = -EINVAL;
2411 else
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002412 icsk->icsk_syn_retries = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 break;
2414
2415 case TCP_LINGER2:
2416 if (val < 0)
2417 tp->linger2 = -1;
2418 else if (val > sysctl_tcp_fin_timeout / HZ)
2419 tp->linger2 = 0;
2420 else
2421 tp->linger2 = val * HZ;
2422 break;
2423
2424 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002425 /* Translate value in seconds to number of retransmits */
2426 icsk->icsk_accept_queue.rskq_defer_accept =
2427 secs_to_retrans(val, TCP_TIMEOUT_INIT / HZ,
2428 TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 break;
2430
2431 case TCP_WINDOW_CLAMP:
2432 if (!val) {
2433 if (sk->sk_state != TCP_CLOSE) {
2434 err = -EINVAL;
2435 break;
2436 }
2437 tp->window_clamp = 0;
2438 } else
2439 tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
2440 SOCK_MIN_RCVBUF / 2 : val;
2441 break;
2442
2443 case TCP_QUICKACK:
2444 if (!val) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002445 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002447 icsk->icsk_ack.pingpong = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 if ((1 << sk->sk_state) &
2449 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002450 inet_csk_ack_scheduled(sk)) {
2451 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
Chris Leech0e4b4992006-05-23 18:00:16 -07002452 tcp_cleanup_rbuf(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 if (!(val & 1))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002454 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
2456 }
2457 break;
2458
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002459#ifdef CONFIG_TCP_MD5SIG
2460 case TCP_MD5SIG:
2461 /* Read the IP->Key mappings from userspace */
2462 err = tp->af_specific->md5_parse(sk, optval, optlen);
2463 break;
2464#endif
Jerry Chudca43c72010-08-27 19:13:28 +00002465 case TCP_USER_TIMEOUT:
2466 /* Cap the max timeout in ms TCP will retry/retrans
2467 * before giving up and aborting (ETIMEDOUT) a connection.
2468 */
Hangbin Liube774312012-07-26 22:52:21 +00002469 if (val < 0)
2470 err = -EINVAL;
2471 else
2472 icsk->icsk_user_timeout = msecs_to_jiffies(val);
Jerry Chudca43c72010-08-27 19:13:28 +00002473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 default:
2475 err = -ENOPROTOOPT;
2476 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002477 }
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 release_sock(sk);
2480 return err;
2481}
2482
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002483int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002484 unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002485{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002486 const struct inet_connection_sock *icsk = inet_csk(sk);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002487
2488 if (level != SOL_TCP)
2489 return icsk->icsk_af_ops->setsockopt(sk, level, optname,
2490 optval, optlen);
2491 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2492}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002493EXPORT_SYMBOL(tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002494
2495#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002496int compat_tcp_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002497 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002498{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002499 if (level != SOL_TCP)
2500 return inet_csk_compat_setsockopt(sk, level, optname,
2501 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002502 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2503}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002504EXPORT_SYMBOL(compat_tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002505#endif
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507/* Return information about state of tcp endpoint in API format. */
Eric Dumazet43ebcb02015-04-28 15:28:17 -07002508void tcp_get_info(struct sock *sk, struct tcp_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002510 const struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002511 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 u32 now = tcp_time_stamp;
Eric Dumazet5785cf52015-05-21 21:51:19 -07002513 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 memset(info, 0, sizeof(*info));
2516
2517 info->tcpi_state = sk->sk_state;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002518 info->tcpi_ca_state = icsk->icsk_ca_state;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002519 info->tcpi_retransmits = icsk->icsk_retransmits;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002520 info->tcpi_probes = icsk->icsk_probes_out;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002521 info->tcpi_backoff = icsk->icsk_backoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 if (tp->rx_opt.tstamp_ok)
2524 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
Ilpo Järvinene60402d2007-08-09 15:14:46 +03002525 if (tcp_is_sack(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 info->tcpi_options |= TCPI_OPT_SACK;
2527 if (tp->rx_opt.wscale_ok) {
2528 info->tcpi_options |= TCPI_OPT_WSCALE;
2529 info->tcpi_snd_wscale = tp->rx_opt.snd_wscale;
2530 info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Eric Dumazetb5c56932011-10-03 14:01:21 -04002533 if (tp->ecn_flags & TCP_ECN_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 info->tcpi_options |= TCPI_OPT_ECN;
Eric Dumazetb5c56932011-10-03 14:01:21 -04002535 if (tp->ecn_flags & TCP_ECN_SEEN)
2536 info->tcpi_options |= TCPI_OPT_ECN_SEEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002538 info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);
2539 info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002540 info->tcpi_snd_mss = tp->mss_cache;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002541 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Rick Jones5ee3afb2007-09-18 13:26:31 -07002543 if (sk->sk_state == TCP_LISTEN) {
2544 info->tcpi_unacked = sk->sk_ack_backlog;
2545 info->tcpi_sacked = sk->sk_max_ack_backlog;
2546 } else {
2547 info->tcpi_unacked = tp->packets_out;
2548 info->tcpi_sacked = tp->sacked_out;
2549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 info->tcpi_lost = tp->lost_out;
2551 info->tcpi_retrans = tp->retrans_out;
2552 info->tcpi_fackets = tp->fackets_out;
2553
2554 info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002555 info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp);
2557
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08002558 info->tcpi_pmtu = icsk->icsk_pmtu_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 info->tcpi_rcv_ssthresh = tp->rcv_ssthresh;
2560 info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3;
2561 info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2;
2562 info->tcpi_snd_ssthresh = tp->snd_ssthresh;
2563 info->tcpi_snd_cwnd = tp->snd_cwnd;
2564 info->tcpi_advmss = tp->advmss;
2565 info->tcpi_reordering = tp->reordering;
2566
2567 info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3;
2568 info->tcpi_rcv_space = tp->rcvq_space.space;
2569
2570 info->tcpi_total_retrans = tp->total_retrans;
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002571
Eric Dumazet2698a9c2014-02-13 14:27:40 -08002572 info->tcpi_pacing_rate = sk->sk_pacing_rate != ~0U ?
2573 sk->sk_pacing_rate : ~0ULL;
2574 info->tcpi_max_pacing_rate = sk->sk_max_pacing_rate != ~0U ?
2575 sk->sk_max_pacing_rate : ~0ULL;
2576
Eric Dumazet5785cf52015-05-21 21:51:19 -07002577 do {
2578 start = u64_stats_fetch_begin_irq(&tp->syncp);
2579 info->tcpi_bytes_acked = tp->bytes_acked;
2580 info->tcpi_bytes_received = tp->bytes_received;
2581 } while (u64_stats_fetch_retry_irq(&tp->syncp, start));
Marcelo Ricardo Leitner42301152015-05-20 16:35:41 -07002582 info->tcpi_segs_out = tp->segs_out;
2583 info->tcpi_segs_in = tp->segs_in;
Eric Dumazet43ebcb02015-04-28 15:28:17 -07002584
Steve Mucklef132c6c2012-06-06 18:30:57 -07002585 if (sk->sk_socket) {
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002586 struct file *filep = sk->sk_socket->file;
Steve Mucklef132c6c2012-06-06 18:30:57 -07002587 if (filep)
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002588 info->tcpi_count = atomic_read(&filep->f_count);
2589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591EXPORT_SYMBOL_GPL(tcp_get_info);
2592
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002593static int do_tcp_getsockopt(struct sock *sk, int level,
2594 int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002596 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 struct tcp_sock *tp = tcp_sk(sk);
2598 int val, len;
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 if (get_user(len, optlen))
2601 return -EFAULT;
2602
2603 len = min_t(unsigned int, len, sizeof(int));
2604
2605 if (len < 0)
2606 return -EINVAL;
2607
2608 switch (optname) {
2609 case TCP_MAXSEG:
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002610 val = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
2612 val = tp->rx_opt.user_mss;
2613 break;
2614 case TCP_NODELAY:
2615 val = !!(tp->nonagle&TCP_NAGLE_OFF);
2616 break;
2617 case TCP_CORK:
2618 val = !!(tp->nonagle&TCP_NAGLE_CORK);
2619 break;
2620 case TCP_KEEPIDLE:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002621 val = keepalive_time_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 break;
2623 case TCP_KEEPINTVL:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002624 val = keepalive_intvl_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 break;
2626 case TCP_KEEPCNT:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002627 val = keepalive_probes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 break;
2629 case TCP_SYNCNT:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002630 val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 break;
2632 case TCP_LINGER2:
2633 val = tp->linger2;
2634 if (val >= 0)
2635 val = (val ? : sysctl_tcp_fin_timeout) / HZ;
2636 break;
2637 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002638 val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept,
2639 TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 break;
2641 case TCP_WINDOW_CLAMP:
2642 val = tp->window_clamp;
2643 break;
2644 case TCP_INFO: {
2645 struct tcp_info info;
2646
2647 if (get_user(len, optlen))
2648 return -EFAULT;
2649
2650 tcp_get_info(sk, &info);
2651
2652 len = min_t(unsigned int, len, sizeof(info));
2653 if (put_user(len, optlen))
2654 return -EFAULT;
2655 if (copy_to_user(optval, &info, len))
2656 return -EFAULT;
2657 return 0;
2658 }
2659 case TCP_QUICKACK:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002660 val = !icsk->icsk_ack.pingpong;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 break;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002662
2663 case TCP_CONGESTION:
2664 if (get_user(len, optlen))
2665 return -EFAULT;
2666 len = min_t(unsigned int, len, TCP_CA_NAME_MAX);
2667 if (put_user(len, optlen))
2668 return -EFAULT;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002669 if (copy_to_user(optval, icsk->icsk_ca_ops->name, len))
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002670 return -EFAULT;
2671 return 0;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002672
2673 case TCP_COOKIE_TRANSACTIONS: {
2674 struct tcp_cookie_transactions ctd;
2675 struct tcp_cookie_values *cvp = tp->cookie_values;
2676
2677 if (get_user(len, optlen))
2678 return -EFAULT;
2679 if (len < sizeof(ctd))
2680 return -EINVAL;
2681
2682 memset(&ctd, 0, sizeof(ctd));
2683 ctd.tcpct_flags = (tp->rx_opt.cookie_in_always ?
2684 TCP_COOKIE_IN_ALWAYS : 0)
2685 | (tp->rx_opt.cookie_out_never ?
2686 TCP_COOKIE_OUT_NEVER : 0);
2687
2688 if (cvp != NULL) {
2689 ctd.tcpct_flags |= (cvp->s_data_in ?
2690 TCP_S_DATA_IN : 0)
2691 | (cvp->s_data_out ?
2692 TCP_S_DATA_OUT : 0);
2693
2694 ctd.tcpct_cookie_desired = cvp->cookie_desired;
2695 ctd.tcpct_s_data_desired = cvp->s_data_desired;
2696
William Allen Simpsone56fb502009-12-02 18:19:30 +00002697 memcpy(&ctd.tcpct_value[0], &cvp->cookie_pair[0],
2698 cvp->cookie_pair_size);
2699 ctd.tcpct_used = cvp->cookie_pair_size;
2700 }
2701
2702 if (put_user(sizeof(ctd), optlen))
2703 return -EFAULT;
2704 if (copy_to_user(optval, &ctd, sizeof(ctd)))
2705 return -EFAULT;
2706 return 0;
2707 }
Josh Hunt3c0fef02010-07-30 13:49:35 +00002708 case TCP_THIN_LINEAR_TIMEOUTS:
2709 val = tp->thin_lto;
2710 break;
2711 case TCP_THIN_DUPACK:
2712 val = tp->thin_dupack;
2713 break;
Jerry Chudca43c72010-08-27 19:13:28 +00002714
2715 case TCP_USER_TIMEOUT:
2716 val = jiffies_to_msecs(icsk->icsk_user_timeout);
2717 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 default:
2719 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 if (put_user(len, optlen))
2723 return -EFAULT;
2724 if (copy_to_user(optval, &val, len))
2725 return -EFAULT;
2726 return 0;
2727}
2728
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002729int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval,
2730 int __user *optlen)
2731{
2732 struct inet_connection_sock *icsk = inet_csk(sk);
2733
2734 if (level != SOL_TCP)
2735 return icsk->icsk_af_ops->getsockopt(sk, level, optname,
2736 optval, optlen);
2737 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2738}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002739EXPORT_SYMBOL(tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002740
2741#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002742int compat_tcp_getsockopt(struct sock *sk, int level, int optname,
2743 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002744{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002745 if (level != SOL_TCP)
2746 return inet_csk_compat_getsockopt(sk, level, optname,
2747 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002748 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2749}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002750EXPORT_SYMBOL(compat_tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002751#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002753struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
2754 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002755{
2756 struct sk_buff *segs = ERR_PTR(-EINVAL);
Eric Dumazetcb237f42013-10-25 17:26:17 -07002757 unsigned int sum_truesize = 0;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002758 struct tcphdr *th;
2759 unsigned thlen;
2760 unsigned int seq;
Al Virod3bc23e2006-11-14 21:24:49 -08002761 __be32 delta;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002762 unsigned int oldlen;
Herbert Xu4e704ee2009-01-14 20:41:12 -08002763 unsigned int mss;
Eric Dumazet7d93f342013-04-12 11:31:52 +00002764 struct sk_buff *gso_skb = skb;
Eric Dumazetbb3fe142013-04-13 03:22:08 +00002765 __sum16 newcheck;
Eric Dumazet62f1b232013-05-15 15:38:01 +00002766 bool ooo_okay, copy_destructor;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002767
2768 if (!pskb_may_pull(skb, sizeof(*th)))
2769 goto out;
2770
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002771 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002772 thlen = th->doff * 4;
2773 if (thlen < sizeof(*th))
2774 goto out;
2775
2776 if (!pskb_may_pull(skb, thlen))
2777 goto out;
2778
Herbert Xu0718bcc2006-06-25 23:55:46 -07002779 oldlen = (u16)~skb->len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002780 __skb_pull(skb, thlen);
2781
Herbert Xu4e704ee2009-01-14 20:41:12 -08002782 mss = skb_shinfo(skb)->gso_size;
2783 if (unlikely(skb->len <= mss))
2784 goto out;
2785
Herbert Xu3820c3f2006-06-29 20:11:25 -07002786 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
2787 /* Packet is from an untrusted source, reset gso_segs. */
Herbert Xubbcf4672006-07-03 19:38:35 -07002788 int type = skb_shinfo(skb)->gso_type;
Herbert Xu3820c3f2006-06-29 20:11:25 -07002789
Herbert Xubbcf4672006-07-03 19:38:35 -07002790 if (unlikely(type &
2791 ~(SKB_GSO_TCPV4 |
2792 SKB_GSO_DODGY |
2793 SKB_GSO_TCP_ECN |
2794 SKB_GSO_TCPV6 |
2795 0) ||
2796 !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))))
2797 goto out;
2798
Ilpo Järvinen172589c2007-08-28 15:50:33 -07002799 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
Herbert Xu3820c3f2006-06-29 20:11:25 -07002800
2801 segs = NULL;
2802 goto out;
2803 }
2804
Eric Dumazet62f1b232013-05-15 15:38:01 +00002805 copy_destructor = gso_skb->destructor == tcp_wfree;
2806 ooo_okay = gso_skb->ooo_okay;
2807 /* All segments but the first should have ooo_okay cleared */
2808 skb->ooo_okay = 0;
2809
Herbert Xu576a30e2006-06-27 13:22:38 -07002810 segs = skb_segment(skb, features);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002811 if (IS_ERR(segs))
2812 goto out;
2813
Eric Dumazet62f1b232013-05-15 15:38:01 +00002814 /* Only first segment might have ooo_okay set */
2815 segs->ooo_okay = ooo_okay;
2816
Herbert Xu4e704ee2009-01-14 20:41:12 -08002817 delta = htonl(oldlen + (thlen + mss));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002818
2819 skb = segs;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002820 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002821 seq = ntohl(th->seq);
2822
Eric Dumazetbb3fe142013-04-13 03:22:08 +00002823 newcheck = ~csum_fold((__force __wsum)((__force u32)th->check +
2824 (__force u32)delta));
2825
Herbert Xuf4c50d92006-06-22 03:02:40 -07002826 do {
2827 th->fin = th->psh = 0;
Eric Dumazetbb3fe142013-04-13 03:22:08 +00002828 th->check = newcheck;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002829
Patrick McHardy84fa7932006-08-29 16:44:56 -07002830 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002831 th->check =
2832 csum_fold(csum_partial(skb_transport_header(skb),
2833 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002834
Herbert Xu4e704ee2009-01-14 20:41:12 -08002835 seq += mss;
Eric Dumazet62f1b232013-05-15 15:38:01 +00002836 if (copy_destructor) {
2837 skb->destructor = gso_skb->destructor;
2838 skb->sk = gso_skb->sk;
Eric Dumazetcb237f42013-10-25 17:26:17 -07002839 sum_truesize += skb->truesize;
Eric Dumazet62f1b232013-05-15 15:38:01 +00002840 }
Herbert Xuf4c50d92006-06-22 03:02:40 -07002841 skb = skb->next;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002842 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002843
2844 th->seq = htonl(seq);
2845 th->cwr = 0;
2846 } while (skb->next);
2847
Eric Dumazet7d93f342013-04-12 11:31:52 +00002848 /* Following permits TCP Small Queues to work well with GSO :
2849 * The callback to TCP stack will be called at the time last frag
2850 * is freed at TX completion, and not right now when gso_skb
2851 * is freed by GSO engine
2852 */
Eric Dumazet62f1b232013-05-15 15:38:01 +00002853 if (copy_destructor) {
Eric Dumazet7d93f342013-04-12 11:31:52 +00002854 swap(gso_skb->sk, skb->sk);
2855 swap(gso_skb->destructor, skb->destructor);
Eric Dumazetcb237f42013-10-25 17:26:17 -07002856 sum_truesize += skb->truesize;
2857 atomic_add(sum_truesize - gso_skb->truesize,
2858 &skb->sk->sk_wmem_alloc);
Eric Dumazet7d93f342013-04-12 11:31:52 +00002859 }
2860
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002861 delta = htonl(oldlen + (skb->tail - skb->transport_header) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002862 skb->data_len);
Al Virod3bc23e2006-11-14 21:24:49 -08002863 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2864 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002865 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002866 th->check = csum_fold(csum_partial(skb_transport_header(skb),
2867 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002868
2869out:
2870 return segs;
2871}
Herbert Xuadcfc7d2006-06-30 13:36:15 -07002872EXPORT_SYMBOL(tcp_tso_segment);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002873
Herbert Xubf296b12008-12-15 23:43:36 -08002874struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2875{
2876 struct sk_buff **pp = NULL;
2877 struct sk_buff *p;
2878 struct tcphdr *th;
2879 struct tcphdr *th2;
Herbert Xua0a69a02009-04-17 02:34:38 -07002880 unsigned int len;
Herbert Xubf296b12008-12-15 23:43:36 -08002881 unsigned int thlen;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002882 __be32 flags;
Herbert Xubf296b12008-12-15 23:43:36 -08002883 unsigned int mss = 1;
Herbert Xua5b1cf22009-05-26 18:50:28 +00002884 unsigned int hlen;
2885 unsigned int off;
Herbert Xubf296b12008-12-15 23:43:36 -08002886 int flush = 1;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002887 int i;
Herbert Xubf296b12008-12-15 23:43:36 -08002888
Herbert Xua5b1cf22009-05-26 18:50:28 +00002889 off = skb_gro_offset(skb);
2890 hlen = off + sizeof(*th);
2891 th = skb_gro_header_fast(skb, off);
2892 if (skb_gro_header_hard(skb, hlen)) {
2893 th = skb_gro_header_slow(skb, hlen, off);
2894 if (unlikely(!th))
2895 goto out;
2896 }
Herbert Xubf296b12008-12-15 23:43:36 -08002897
Herbert Xubf296b12008-12-15 23:43:36 -08002898 thlen = th->doff * 4;
2899 if (thlen < sizeof(*th))
2900 goto out;
2901
Herbert Xua5b1cf22009-05-26 18:50:28 +00002902 hlen = off + thlen;
2903 if (skb_gro_header_hard(skb, hlen)) {
2904 th = skb_gro_header_slow(skb, hlen, off);
2905 if (unlikely(!th))
2906 goto out;
2907 }
Herbert Xubf296b12008-12-15 23:43:36 -08002908
Herbert Xu86911732009-01-29 14:19:50 +00002909 skb_gro_pull(skb, thlen);
Herbert Xubf296b12008-12-15 23:43:36 -08002910
Herbert Xua0a69a02009-04-17 02:34:38 -07002911 len = skb_gro_len(skb);
Herbert Xubf296b12008-12-15 23:43:36 -08002912 flags = tcp_flag_word(th);
2913
2914 for (; (p = *head); head = &p->next) {
2915 if (!NAPI_GRO_CB(p)->same_flow)
2916 continue;
2917
2918 th2 = tcp_hdr(p);
2919
Herbert Xu745898e2009-05-26 18:50:24 +00002920 if (*(u32 *)&th->source ^ *(u32 *)&th2->source) {
Herbert Xubf296b12008-12-15 23:43:36 -08002921 NAPI_GRO_CB(p)->same_flow = 0;
2922 continue;
2923 }
2924
2925 goto found;
2926 }
2927
2928 goto out_check_final;
2929
2930found:
2931 flush = NAPI_GRO_CB(p)->flush;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002932 flush |= (__force int)(flags & TCP_FLAG_CWR);
2933 flush |= (__force int)((flags ^ tcp_flag_word(th2)) &
2934 ~(TCP_FLAG_CWR | TCP_FLAG_FIN | TCP_FLAG_PSH));
2935 flush |= (__force int)(th->ack_seq ^ th2->ack_seq);
Herbert Xua2a804c2009-05-26 18:50:34 +00002936 for (i = sizeof(*th); i < thlen; i += 4)
Herbert Xuaa6320d2009-02-08 18:00:40 +00002937 flush |= *(u32 *)((u8 *)th + i) ^
2938 *(u32 *)((u8 *)th2 + i);
Herbert Xubf296b12008-12-15 23:43:36 -08002939
Herbert Xub5302562009-01-04 16:13:19 -08002940 mss = skb_shinfo(p)->gso_size;
Herbert Xubf296b12008-12-15 23:43:36 -08002941
Herbert Xu30a3ae32009-05-26 18:50:26 +00002942 flush |= (len - 1) >= mss;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002943 flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
Herbert Xubf296b12008-12-15 23:43:36 -08002944
2945 if (flush || skb_gro_receive(head, skb)) {
2946 mss = 1;
2947 goto out_check_final;
2948 }
2949
2950 p = *head;
2951 th2 = tcp_hdr(p);
2952 tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH);
2953
2954out_check_final:
Herbert Xua0a69a02009-04-17 02:34:38 -07002955 flush = len < mss;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002956 flush |= (__force int)(flags & (TCP_FLAG_URG | TCP_FLAG_PSH |
2957 TCP_FLAG_RST | TCP_FLAG_SYN |
2958 TCP_FLAG_FIN));
Herbert Xubf296b12008-12-15 23:43:36 -08002959
2960 if (p && (!NAPI_GRO_CB(skb)->same_flow || flush))
2961 pp = head;
2962
2963out:
2964 NAPI_GRO_CB(skb)->flush |= flush;
2965
2966 return pp;
2967}
Herbert Xu684f2172009-01-08 10:41:23 -08002968EXPORT_SYMBOL(tcp_gro_receive);
Herbert Xubf296b12008-12-15 23:43:36 -08002969
2970int tcp_gro_complete(struct sk_buff *skb)
2971{
2972 struct tcphdr *th = tcp_hdr(skb);
2973
2974 skb->csum_start = skb_transport_header(skb) - skb->head;
2975 skb->csum_offset = offsetof(struct tcphdr, check);
2976 skb->ip_summed = CHECKSUM_PARTIAL;
2977
Herbert Xubf296b12008-12-15 23:43:36 -08002978 skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
2979
2980 if (th->cwr)
2981 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
2982
2983 return 0;
2984}
Herbert Xu684f2172009-01-08 10:41:23 -08002985EXPORT_SYMBOL(tcp_gro_complete);
Herbert Xubf296b12008-12-15 23:43:36 -08002986
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002987#ifdef CONFIG_TCP_MD5SIG
2988static unsigned long tcp_md5sig_users;
Eric Dumazet765cf992011-09-12 20:28:37 +00002989static struct tcp_md5sig_pool __percpu *tcp_md5sig_pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002990static DEFINE_SPINLOCK(tcp_md5sig_pool_lock);
2991
Eric Dumazet765cf992011-09-12 20:28:37 +00002992static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool __percpu *pool)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002993{
2994 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002995
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002996 for_each_possible_cpu(cpu) {
Eric Dumazet765cf992011-09-12 20:28:37 +00002997 struct tcp_md5sig_pool *p = per_cpu_ptr(pool, cpu);
2998
2999 if (p->md5_desc.tfm)
3000 crypto_free_hash(p->md5_desc.tfm);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003001 }
3002 free_percpu(pool);
3003}
3004
3005void tcp_free_md5sig_pool(void)
3006{
Eric Dumazet765cf992011-09-12 20:28:37 +00003007 struct tcp_md5sig_pool __percpu *pool = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003008
David S. Miller2c4f6212007-02-20 23:51:47 -08003009 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003010 if (--tcp_md5sig_users == 0) {
3011 pool = tcp_md5sig_pool;
3012 tcp_md5sig_pool = NULL;
3013 }
David S. Miller2c4f6212007-02-20 23:51:47 -08003014 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003015 if (pool)
3016 __tcp_free_md5sig_pool(pool);
3017}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003018EXPORT_SYMBOL(tcp_free_md5sig_pool);
3019
Eric Dumazet765cf992011-09-12 20:28:37 +00003020static struct tcp_md5sig_pool __percpu *
Tejun Heo7d720c32010-02-16 15:20:26 +00003021__tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003022{
3023 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00003024 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003025
Eric Dumazet765cf992011-09-12 20:28:37 +00003026 pool = alloc_percpu(struct tcp_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003027 if (!pool)
3028 return NULL;
3029
3030 for_each_possible_cpu(cpu) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003031 struct crypto_hash *hash;
3032
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003033 hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
3034 if (!hash || IS_ERR(hash))
3035 goto out_free;
3036
Eric Dumazet765cf992011-09-12 20:28:37 +00003037 per_cpu_ptr(pool, cpu)->md5_desc.tfm = hash;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003038 }
3039 return pool;
3040out_free:
3041 __tcp_free_md5sig_pool(pool);
3042 return NULL;
3043}
3044
Eric Dumazet765cf992011-09-12 20:28:37 +00003045struct tcp_md5sig_pool __percpu *tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003046{
Eric Dumazet765cf992011-09-12 20:28:37 +00003047 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003048 int alloc = 0;
3049
3050retry:
David S. Miller2c4f6212007-02-20 23:51:47 -08003051 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003052 pool = tcp_md5sig_pool;
3053 if (tcp_md5sig_users++ == 0) {
3054 alloc = 1;
David S. Miller2c4f6212007-02-20 23:51:47 -08003055 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003056 } else if (!pool) {
3057 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08003058 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003059 cpu_relax();
3060 goto retry;
3061 } else
David S. Miller2c4f6212007-02-20 23:51:47 -08003062 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003063
3064 if (alloc) {
3065 /* we cannot hold spinlock here because this may sleep. */
Eric Dumazet765cf992011-09-12 20:28:37 +00003066 struct tcp_md5sig_pool __percpu *p;
Tejun Heo7d720c32010-02-16 15:20:26 +00003067
3068 p = __tcp_alloc_md5sig_pool(sk);
David S. Miller2c4f6212007-02-20 23:51:47 -08003069 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003070 if (!p) {
3071 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08003072 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003073 return NULL;
3074 }
3075 pool = tcp_md5sig_pool;
3076 if (pool) {
3077 /* oops, it has already been assigned. */
David S. Miller2c4f6212007-02-20 23:51:47 -08003078 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003079 __tcp_free_md5sig_pool(p);
3080 } else {
3081 tcp_md5sig_pool = pool = p;
David S. Miller2c4f6212007-02-20 23:51:47 -08003082 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003083 }
3084 }
3085 return pool;
3086}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003087EXPORT_SYMBOL(tcp_alloc_md5sig_pool);
3088
Eric Dumazet35790c02010-05-16 00:34:04 -07003089
3090/**
3091 * tcp_get_md5sig_pool - get md5sig_pool for this user
3092 *
3093 * We use percpu structure, so if we succeed, we exit with preemption
3094 * and BH disabled, to make sure another thread or softirq handling
3095 * wont try to get same context.
3096 */
3097struct tcp_md5sig_pool *tcp_get_md5sig_pool(void)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003098{
Eric Dumazet765cf992011-09-12 20:28:37 +00003099 struct tcp_md5sig_pool __percpu *p;
Eric Dumazet35790c02010-05-16 00:34:04 -07003100
3101 local_bh_disable();
3102
3103 spin_lock(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003104 p = tcp_md5sig_pool;
3105 if (p)
3106 tcp_md5sig_users++;
Eric Dumazet35790c02010-05-16 00:34:04 -07003107 spin_unlock(&tcp_md5sig_pool_lock);
3108
3109 if (p)
Eric Dumazet765cf992011-09-12 20:28:37 +00003110 return this_cpu_ptr(p);
Eric Dumazet35790c02010-05-16 00:34:04 -07003111
3112 local_bh_enable();
3113 return NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003114}
Eric Dumazet35790c02010-05-16 00:34:04 -07003115EXPORT_SYMBOL(tcp_get_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003116
Eric Dumazet35790c02010-05-16 00:34:04 -07003117void tcp_put_md5sig_pool(void)
David S. Miller6931ba72006-12-13 16:25:44 -08003118{
Eric Dumazet35790c02010-05-16 00:34:04 -07003119 local_bh_enable();
David S. Miller6931ba72006-12-13 16:25:44 -08003120 tcp_free_md5sig_pool();
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003121}
Eric Dumazet35790c02010-05-16 00:34:04 -07003122EXPORT_SYMBOL(tcp_put_md5sig_pool);
Adam Langley49a72df2008-07-19 00:01:42 -07003123
3124int tcp_md5_hash_header(struct tcp_md5sig_pool *hp,
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003125 const struct tcphdr *th)
Adam Langley49a72df2008-07-19 00:01:42 -07003126{
3127 struct scatterlist sg;
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003128 struct tcphdr hdr;
Adam Langley49a72df2008-07-19 00:01:42 -07003129 int err;
3130
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003131 /* We are not allowed to change tcphdr, make a local copy */
3132 memcpy(&hdr, th, sizeof(hdr));
3133 hdr.check = 0;
3134
Adam Langley49a72df2008-07-19 00:01:42 -07003135 /* options aren't included in the hash */
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003136 sg_init_one(&sg, &hdr, sizeof(hdr));
3137 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr));
Adam Langley49a72df2008-07-19 00:01:42 -07003138 return err;
3139}
Adam Langley49a72df2008-07-19 00:01:42 -07003140EXPORT_SYMBOL(tcp_md5_hash_header);
3141
3142int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp,
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003143 const struct sk_buff *skb, unsigned int header_len)
Adam Langley49a72df2008-07-19 00:01:42 -07003144{
3145 struct scatterlist sg;
3146 const struct tcphdr *tp = tcp_hdr(skb);
3147 struct hash_desc *desc = &hp->md5_desc;
3148 unsigned i;
3149 const unsigned head_data_len = skb_headlen(skb) > header_len ?
3150 skb_headlen(skb) - header_len : 0;
3151 const struct skb_shared_info *shi = skb_shinfo(skb);
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003152 struct sk_buff *frag_iter;
Adam Langley49a72df2008-07-19 00:01:42 -07003153
3154 sg_init_table(&sg, 1);
3155
3156 sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len);
3157 if (crypto_hash_update(desc, &sg, head_data_len))
3158 return 1;
3159
3160 for (i = 0; i < shi->nr_frags; ++i) {
3161 const struct skb_frag_struct *f = &shi->frags[i];
Eric Dumazetc47ba752013-05-13 21:25:52 +00003162 unsigned int offset = f->page_offset;
3163 struct page *page = skb_frag_page(f) + (offset >> PAGE_SHIFT);
3164
3165 sg_set_page(&sg, page, skb_frag_size(f),
3166 offset_in_page(offset));
Eric Dumazet9e903e02011-10-18 21:00:24 +00003167 if (crypto_hash_update(desc, &sg, skb_frag_size(f)))
Adam Langley49a72df2008-07-19 00:01:42 -07003168 return 1;
3169 }
3170
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003171 skb_walk_frags(skb, frag_iter)
3172 if (tcp_md5_hash_skb_data(hp, frag_iter, 0))
3173 return 1;
3174
Adam Langley49a72df2008-07-19 00:01:42 -07003175 return 0;
3176}
Adam Langley49a72df2008-07-19 00:01:42 -07003177EXPORT_SYMBOL(tcp_md5_hash_skb_data);
3178
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003179int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key)
Adam Langley49a72df2008-07-19 00:01:42 -07003180{
3181 struct scatterlist sg;
3182
3183 sg_init_one(&sg, key->key, key->keylen);
3184 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen);
3185}
Adam Langley49a72df2008-07-19 00:01:42 -07003186EXPORT_SYMBOL(tcp_md5_hash_key);
3187
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003188#endif
3189
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003190/**
3191 * Each Responder maintains up to two secret values concurrently for
3192 * efficient secret rollover. Each secret value has 4 states:
3193 *
3194 * Generating. (tcp_secret_generating != tcp_secret_primary)
3195 * Generates new Responder-Cookies, but not yet used for primary
3196 * verification. This is a short-term state, typically lasting only
3197 * one round trip time (RTT).
3198 *
3199 * Primary. (tcp_secret_generating == tcp_secret_primary)
3200 * Used both for generation and primary verification.
3201 *
3202 * Retiring. (tcp_secret_retiring != tcp_secret_secondary)
3203 * Used for verification, until the first failure that can be
3204 * verified by the newer Generating secret. At that time, this
3205 * cookie's state is changed to Secondary, and the Generating
3206 * cookie's state is changed to Primary. This is a short-term state,
3207 * typically lasting only one round trip time (RTT).
3208 *
3209 * Secondary. (tcp_secret_retiring == tcp_secret_secondary)
3210 * Used for secondary verification, after primary verification
3211 * failures. This state lasts no more than twice the Maximum Segment
3212 * Lifetime (2MSL). Then, the secret is discarded.
3213 */
3214struct tcp_cookie_secret {
3215 /* The secret is divided into two parts. The digest part is the
3216 * equivalent of previously hashing a secret and saving the state,
3217 * and serves as an initialization vector (IV). The message part
3218 * serves as the trailing secret.
3219 */
3220 u32 secrets[COOKIE_WORKSPACE_WORDS];
3221 unsigned long expires;
3222};
3223
3224#define TCP_SECRET_1MSL (HZ * TCP_PAWS_MSL)
3225#define TCP_SECRET_2MSL (HZ * TCP_PAWS_MSL * 2)
3226#define TCP_SECRET_LIFE (HZ * 600)
3227
3228static struct tcp_cookie_secret tcp_secret_one;
3229static struct tcp_cookie_secret tcp_secret_two;
3230
3231/* Essentially a circular list, without dynamic allocation. */
3232static struct tcp_cookie_secret *tcp_secret_generating;
3233static struct tcp_cookie_secret *tcp_secret_primary;
3234static struct tcp_cookie_secret *tcp_secret_retiring;
3235static struct tcp_cookie_secret *tcp_secret_secondary;
3236
3237static DEFINE_SPINLOCK(tcp_secret_locker);
3238
3239/* Select a pseudo-random word in the cookie workspace.
3240 */
3241static inline u32 tcp_cookie_work(const u32 *ws, const int n)
3242{
3243 return ws[COOKIE_DIGEST_WORDS + ((COOKIE_MESSAGE_WORDS-1) & ws[n])];
3244}
3245
3246/* Fill bakery[COOKIE_WORKSPACE_WORDS] with generator, updating as needed.
3247 * Called in softirq context.
3248 * Returns: 0 for success.
3249 */
3250int tcp_cookie_generator(u32 *bakery)
3251{
3252 unsigned long jiffy = jiffies;
3253
3254 if (unlikely(time_after_eq(jiffy, tcp_secret_generating->expires))) {
3255 spin_lock_bh(&tcp_secret_locker);
3256 if (!time_after_eq(jiffy, tcp_secret_generating->expires)) {
3257 /* refreshed by another */
3258 memcpy(bakery,
3259 &tcp_secret_generating->secrets[0],
3260 COOKIE_WORKSPACE_WORDS);
3261 } else {
3262 /* still needs refreshing */
3263 get_random_bytes(bakery, COOKIE_WORKSPACE_WORDS);
3264
3265 /* The first time, paranoia assumes that the
3266 * randomization function isn't as strong. But,
3267 * this secret initialization is delayed until
3268 * the last possible moment (packet arrival).
3269 * Although that time is observable, it is
3270 * unpredictably variable. Mash in the most
3271 * volatile clock bits available, and expire the
3272 * secret extra quickly.
3273 */
3274 if (unlikely(tcp_secret_primary->expires ==
3275 tcp_secret_secondary->expires)) {
3276 struct timespec tv;
3277
3278 getnstimeofday(&tv);
3279 bakery[COOKIE_DIGEST_WORDS+0] ^=
3280 (u32)tv.tv_nsec;
3281
3282 tcp_secret_secondary->expires = jiffy
3283 + TCP_SECRET_1MSL
3284 + (0x0f & tcp_cookie_work(bakery, 0));
3285 } else {
3286 tcp_secret_secondary->expires = jiffy
3287 + TCP_SECRET_LIFE
3288 + (0xff & tcp_cookie_work(bakery, 1));
3289 tcp_secret_primary->expires = jiffy
3290 + TCP_SECRET_2MSL
3291 + (0x1f & tcp_cookie_work(bakery, 2));
3292 }
3293 memcpy(&tcp_secret_secondary->secrets[0],
3294 bakery, COOKIE_WORKSPACE_WORDS);
3295
3296 rcu_assign_pointer(tcp_secret_generating,
3297 tcp_secret_secondary);
3298 rcu_assign_pointer(tcp_secret_retiring,
3299 tcp_secret_primary);
3300 /*
3301 * Neither call_rcu() nor synchronize_rcu() needed.
3302 * Retiring data is not freed. It is replaced after
3303 * further (locked) pointer updates, and a quiet time
3304 * (minimum 1MSL, maximum LIFE - 2MSL).
3305 */
3306 }
3307 spin_unlock_bh(&tcp_secret_locker);
3308 } else {
3309 rcu_read_lock_bh();
3310 memcpy(bakery,
3311 &rcu_dereference(tcp_secret_generating)->secrets[0],
3312 COOKIE_WORKSPACE_WORDS);
3313 rcu_read_unlock_bh();
3314 }
3315 return 0;
3316}
3317EXPORT_SYMBOL(tcp_cookie_generator);
3318
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003319void tcp_done(struct sock *sk)
3320{
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08003321 if (sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV)
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07003322 TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS);
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003323
3324 tcp_set_state(sk, TCP_CLOSE);
3325 tcp_clear_xmit_timers(sk);
3326
3327 sk->sk_shutdown = SHUTDOWN_MASK;
3328
3329 if (!sock_flag(sk, SOCK_DEAD))
3330 sk->sk_state_change(sk);
3331 else
3332 inet_csk_destroy_sock(sk);
3333}
3334EXPORT_SYMBOL_GPL(tcp_done);
3335
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003336int tcp_abort(struct sock *sk, int err)
3337{
3338 if (sk->sk_state == TCP_TIME_WAIT) {
3339 inet_twsk_put((struct inet_timewait_sock *)sk);
3340 return -EOPNOTSUPP;
3341 }
3342
3343 /* Don't race with userspace socket closes such as tcp_close. */
3344 lock_sock(sk);
3345
Lorenzo Colitti496b6d02015-12-20 02:39:43 +09003346 if (sk->sk_state == TCP_LISTEN) {
3347 tcp_set_state(sk, TCP_CLOSE);
3348 inet_csk_listen_stop(sk);
3349 }
3350
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003351 /* Don't race with BH socket closes such as inet_csk_listen_stop. */
3352 local_bh_disable();
3353 bh_lock_sock(sk);
3354
3355 if (!sock_flag(sk, SOCK_DEAD)) {
3356 sk->sk_err = err;
3357 /* This barrier is coupled with smp_rmb() in tcp_poll() */
3358 smp_wmb();
3359 sk->sk_error_report(sk);
3360 if (tcp_need_reset(sk->sk_state))
3361 tcp_send_active_reset(sk, GFP_ATOMIC);
3362 tcp_done(sk);
3363 }
3364
3365 bh_unlock_sock(sk);
3366 local_bh_enable();
3367 release_sock(sk);
3368 sock_put(sk);
3369 return 0;
3370}
3371EXPORT_SYMBOL_GPL(tcp_abort);
3372
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07003373extern struct tcp_congestion_ops tcp_reno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374
3375static __initdata unsigned long thash_entries;
3376static int __init set_thash_entries(char *str)
3377{
3378 if (!str)
3379 return 0;
3380 thash_entries = simple_strtoul(str, &str, 0);
3381 return 1;
3382}
3383__setup("thash_entries=", set_thash_entries);
3384
Glauber Costa4acb4192012-01-30 01:20:17 +00003385void tcp_init_mem(struct net *net)
3386{
Glauber Costa4acb4192012-01-30 01:20:17 +00003387 unsigned long limit = nr_free_buffer_pages() / 8;
3388 limit = max(limit, 128UL);
3389 net->ipv4.sysctl_tcp_mem[0] = limit / 4 * 3;
3390 net->ipv4.sysctl_tcp_mem[1] = limit;
3391 net->ipv4.sysctl_tcp_mem[2] = net->ipv4.sysctl_tcp_mem[0] * 2;
3392}
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394void __init tcp_init(void)
3395{
3396 struct sk_buff *skb = NULL;
Eric Dumazetf03d78d2011-07-07 00:27:05 -07003397 unsigned long limit;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003398 int max_rshare, max_wshare, cnt;
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003399 unsigned int i;
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003400 unsigned long jiffy = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Eric Dumazet36a84b22019-05-17 17:17:22 -07003402 BUILD_BUG_ON(TCP_MIN_SND_MSS <= MAX_TCP_OPTION_SPACE);
Pavel Emelyanov1f9e6362007-12-11 02:12:04 -08003403 BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Eric Dumazet17483762008-11-25 21:16:35 -08003405 percpu_counter_init(&tcp_sockets_allocated, 0);
Eric Dumazetdd24c002008-11-25 21:17:14 -08003406 percpu_counter_init(&tcp_orphan_count, 0);
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003407 tcp_hashinfo.bind_bucket_cachep =
3408 kmem_cache_create("tcp_bind_bucket",
3409 sizeof(struct inet_bind_bucket), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003410 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 /* Size and allocate the main established and bind bucket
3413 * hash tables.
3414 *
3415 * The methodology is similar to that of the buffer cache.
3416 */
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003417 tcp_hashinfo.ehash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 alloc_large_system_hash("TCP established",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003419 sizeof(struct inet_ehash_bucket),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 thash_entries,
Jan Beulich44813742009-09-21 17:03:05 -07003421 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003422 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003423 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 NULL,
Eric Dumazetf373b532009-10-09 00:16:19 +00003425 &tcp_hashinfo.ehash_mask,
Jean Delvare0ccfe612007-10-30 00:59:25 -07003426 thash_entries ? 0 : 512 * 1024);
Eric Dumazetf373b532009-10-09 00:16:19 +00003427 for (i = 0; i <= tcp_hashinfo.ehash_mask; i++) {
Eric Dumazet3ab5aee2008-11-16 19:40:17 -08003428 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].chain, i);
3429 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].twchain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 }
Eric Dumazet230140c2007-11-07 02:40:20 -08003431 if (inet_ehash_locks_alloc(&tcp_hashinfo))
3432 panic("TCP: failed to alloc ehash_locks");
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003433 tcp_hashinfo.bhash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 alloc_large_system_hash("TCP bind",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003435 sizeof(struct inet_bind_hashbucket),
Eric Dumazetf373b532009-10-09 00:16:19 +00003436 tcp_hashinfo.ehash_mask + 1,
Jan Beulich44813742009-09-21 17:03:05 -07003437 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003438 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003439 0,
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003440 &tcp_hashinfo.bhash_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 NULL,
3442 64 * 1024);
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003443 tcp_hashinfo.bhash_size = 1U << tcp_hashinfo.bhash_size;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003444 for (i = 0; i < tcp_hashinfo.bhash_size; i++) {
3445 spin_lock_init(&tcp_hashinfo.bhash[i].lock);
3446 INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448
Eric Dumazetc5ed63d2010-08-25 23:02:17 -07003449
3450 cnt = tcp_hashinfo.ehash_mask + 1;
3451
3452 tcp_death_row.sysctl_max_tw_buckets = cnt / 2;
3453 sysctl_tcp_max_orphans = cnt / 2;
3454 sysctl_max_syn_backlog = max(128, cnt / 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Glauber Costa4acb4192012-01-30 01:20:17 +00003456 tcp_init_mem(&init_net);
Jason Wangc43b8742012-02-02 00:07:00 +00003457 /* Set per-socket limits to no more than 1/128 the pressure threshold */
Eric Dumazet5fb84b12012-04-10 00:56:42 +00003458 limit = nr_free_buffer_pages() << (PAGE_SHIFT - 7);
Eric Dumazetb49960a2012-05-02 02:28:41 +00003459 max_wshare = min(4UL*1024*1024, limit);
3460 max_rshare = min(6UL*1024*1024, limit);
John Heffner7b4f4b52006-03-25 01:34:07 -08003461
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003462 sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003463 sysctl_tcp_wmem[1] = 16*1024;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003464 sysctl_tcp_wmem[2] = max(64*1024, max_wshare);
John Heffner7b4f4b52006-03-25 01:34:07 -08003465
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003466 sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003467 sysctl_tcp_rmem[1] = 87380;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003468 sysctl_tcp_rmem[2] = max(87380, max_rshare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Joe Perchesafd465032012-03-12 07:03:32 +00003470 pr_info("Hash tables configured (established %u bind %u)\n",
Joe Perches058bd4d2012-03-11 18:36:11 +00003471 tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07003472
3473 tcp_register_congestion_control(&tcp_reno);
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003474
3475 memset(&tcp_secret_one.secrets[0], 0, sizeof(tcp_secret_one.secrets));
3476 memset(&tcp_secret_two.secrets[0], 0, sizeof(tcp_secret_two.secrets));
3477 tcp_secret_one.expires = jiffy; /* past due */
3478 tcp_secret_two.expires = jiffy; /* past due */
3479 tcp_secret_generating = &tcp_secret_one;
3480 tcp_secret_primary = &tcp_secret_one;
3481 tcp_secret_retiring = &tcp_secret_two;
3482 tcp_secret_secondary = &tcp_secret_two;
Eric Dumazetc75f2452012-07-11 05:50:31 +00003483 tcp_tasklet_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484}
Robert Love2365d052008-05-12 17:08:29 -04003485
3486static int tcp_is_local(struct net *net, __be32 addr) {
3487 struct rtable *rt;
3488 struct flowi4 fl4 = { .daddr = addr };
liping.zhang5d85af12016-02-18 12:16:53 +08003489 int is_local;
Robert Love2365d052008-05-12 17:08:29 -04003490 rt = ip_route_output_key(net, &fl4);
3491 if (IS_ERR_OR_NULL(rt))
3492 return 0;
liping.zhang5d85af12016-02-18 12:16:53 +08003493
3494 is_local = rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK);
3495 ip_rt_put(rt);
3496 return is_local;
Robert Love2365d052008-05-12 17:08:29 -04003497}
3498
3499#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3500static int tcp_is_local6(struct net *net, struct in6_addr *addr) {
3501 struct rt6_info *rt6 = rt6_lookup(net, addr, addr, 0, 0);
liping.zhang5d85af12016-02-18 12:16:53 +08003502 int is_local;
3503 if (rt6 == NULL)
3504 return 0;
3505
3506 is_local = rt6->dst.dev && (rt6->dst.dev->flags & IFF_LOOPBACK);
3507 dst_release(&rt6->dst);
3508 return is_local;
Robert Love2365d052008-05-12 17:08:29 -04003509}
3510#endif
3511
3512/*
3513 * tcp_nuke_addr - destroy all sockets on the given local address
3514 * if local address is the unspecified address (0.0.0.0 or ::), destroy all
3515 * sockets with local addresses that are not configured.
3516 */
3517int tcp_nuke_addr(struct net *net, struct sockaddr *addr)
3518{
3519 int family = addr->sa_family;
3520 unsigned int bucket;
3521
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003522 struct in_addr *in = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003523#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003524 struct in6_addr *in6 = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003525#endif
3526 if (family == AF_INET) {
3527 in = &((struct sockaddr_in *)addr)->sin_addr;
3528#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3529 } else if (family == AF_INET6) {
3530 in6 = &((struct sockaddr_in6 *)addr)->sin6_addr;
3531#endif
3532 } else {
3533 return -EAFNOSUPPORT;
3534 }
3535
Dmitry Torokhov8e5087e2015-07-09 17:17:57 -07003536 for (bucket = 0; bucket <= tcp_hashinfo.ehash_mask; bucket++) {
Robert Love2365d052008-05-12 17:08:29 -04003537 struct hlist_nulls_node *node;
3538 struct sock *sk;
3539 spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, bucket);
3540
3541restart:
3542 spin_lock_bh(lock);
3543 sk_nulls_for_each(sk, node, &tcp_hashinfo.ehash[bucket].chain) {
3544 struct inet_sock *inet = inet_sk(sk);
3545
3546 if (sysctl_ip_dynaddr && sk->sk_state == TCP_SYN_SENT)
3547 continue;
3548 if (sock_flag(sk, SOCK_DEAD))
3549 continue;
3550
3551 if (family == AF_INET) {
3552 __be32 s4 = inet->inet_rcv_saddr;
3553 if (s4 == LOOPBACK4_IPV6)
3554 continue;
3555
3556 if (in->s_addr != s4 &&
3557 !(in->s_addr == INADDR_ANY &&
3558 !tcp_is_local(net, s4)))
3559 continue;
3560 }
3561
3562#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3563 if (family == AF_INET6) {
3564 struct in6_addr *s6;
3565 if (!inet->pinet6)
3566 continue;
3567
3568 s6 = &inet->pinet6->rcv_saddr;
3569 if (ipv6_addr_type(s6) == IPV6_ADDR_MAPPED)
3570 continue;
3571
3572 if (!ipv6_addr_equal(in6, s6) &&
3573 !(ipv6_addr_equal(in6, &in6addr_any) &&
3574 !tcp_is_local6(net, s6)))
3575 continue;
3576 }
3577#endif
3578
3579 sock_hold(sk);
3580 spin_unlock_bh(lock);
3581
3582 local_bh_disable();
3583 bh_lock_sock(sk);
3584 sk->sk_err = ETIMEDOUT;
3585 sk->sk_error_report(sk);
3586
3587 tcp_done(sk);
3588 bh_unlock_sock(sk);
3589 local_bh_enable();
Osvaldo Banuelos66990962013-12-16 12:50:02 -08003590 sock_put(sk);
Robert Love2365d052008-05-12 17:08:29 -04003591
3592 goto restart;
3593 }
3594 spin_unlock_bh(lock);
3595 }
3596
3597 return 0;
3598}