blob: 9df4db493f1476deffccca6cd56cac3090b4c078 [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
Eric Dumazetc75f2452012-07-11 05:50:31 +0000764 /* TSQ : try to have at least two segments in flight
765 * (one in NIC TX ring, another in Qdisc)
766 */
767 xmit_size_goal = min_t(u32, xmit_size_goal,
768 sysctl_tcp_limit_output_bytes >> 1);
769
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000770 xmit_size_goal = tcp_bound_to_half_wnd(tp, xmit_size_goal);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000771
772 /* We try hard to avoid divides here */
773 old_size_goal = tp->xmit_size_goal_segs * mss_now;
774
775 if (likely(old_size_goal <= xmit_size_goal &&
776 old_size_goal + mss_now > xmit_size_goal)) {
777 xmit_size_goal = old_size_goal;
778 } else {
Ben Hutchingsd77ce5e2012-07-30 16:11:42 +0000779 tp->xmit_size_goal_segs =
780 min_t(u16, xmit_size_goal / mss_now,
781 sk->sk_gso_max_segs);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000782 xmit_size_goal = tp->xmit_size_goal_segs * mss_now;
783 }
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000784 }
785
Ilpo Järvinenafece1c2009-03-14 14:23:07 +0000786 return max(xmit_size_goal, mss_now);
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000787}
788
789static int tcp_send_mss(struct sock *sk, int *size_goal, int flags)
790{
791 int mss_now;
792
793 mss_now = tcp_current_mss(sk);
794 *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB));
795
796 return mss_now;
797}
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset,
800 size_t psize, int flags)
801{
802 struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700803 int mss_now, size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 int err;
805 ssize_t copied;
806 long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
807
808 /* Wait for a connection to finish. */
809 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
810 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
811 goto out_err;
812
813 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
814
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000815 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 copied = 0;
817
818 err = -EPIPE;
819 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000820 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 while (psize > 0) {
David S. Millerfe067e82007-03-07 12:12:44 -0800823 struct sk_buff *skb = tcp_write_queue_tail(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct page *page = pages[poffset / PAGE_SIZE];
825 int copy, i, can_coalesce;
826 int offset = poffset % PAGE_SIZE;
827 int size = min_t(size_t, psize, PAGE_SIZE - offset);
828
David S. Millerfe067e82007-03-07 12:12:44 -0800829 if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830new_segment:
831 if (!sk_stream_memory_free(sk))
832 goto wait_for_sndbuf;
833
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100834 skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (!skb)
836 goto wait_for_memory;
837
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700838 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700839 copy = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841
842 if (copy > size)
843 copy = size;
844
845 i = skb_shinfo(skb)->nr_frags;
846 can_coalesce = skb_can_coalesce(skb, i, page, offset);
847 if (!can_coalesce && i >= MAX_SKB_FRAGS) {
848 tcp_mark_push(tp, skb);
849 goto new_segment;
850 }
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800851 if (!sk_wmem_schedule(sk, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 goto wait_for_memory;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (can_coalesce) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000855 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 } else {
857 get_page(page);
858 skb_fill_page_desc(skb, i, page, offset, copy);
859 }
860
861 skb->len += copy;
862 skb->data_len += copy;
863 skb->truesize += copy;
864 sk->sk_wmem_queued += copy;
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800865 sk_mem_charge(sk, copy);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700866 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 tp->write_seq += copy;
868 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -0700869 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -0400872 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 copied += copy;
875 poffset += copy;
876 if (!(psize -= copy))
877 goto out;
878
Herbert Xu69d15062008-03-22 15:47:05 -0700879 if (skb->len < size_goal || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 continue;
881
882 if (forced_push(tp)) {
883 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700884 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -0800885 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 tcp_push_one(sk, mss_now);
887 continue;
888
889wait_for_sndbuf:
890 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
891wait_for_memory:
Willy Tarreaubad115c2012-05-17 11:14:14 +0000892 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
895 goto do_error;
896
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000897 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899
900out:
Eric Dumazet35f9c092012-04-05 03:05:35 +0000901 if (copied && !(flags & MSG_SENDPAGE_NOTLAST))
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700902 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return copied;
904
905do_error:
906 if (copied)
907 goto out;
908out_err:
909 return sk_stream_error(sk, flags, err);
910}
911
Changli Gao7ba42912010-07-10 20:41:55 +0000912int tcp_sendpage(struct sock *sk, struct page *page, int offset,
913 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (!(sk->sk_route_caps & NETIF_F_SG) ||
Herbert Xu8648b302006-06-17 22:06:05 -0700918 !(sk->sk_route_caps & NETIF_F_ALL_CSUM))
Changli Gao7ba42912010-07-10 20:41:55 +0000919 return sock_no_sendpage(sk->sk_socket, page, offset, size,
920 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 res = do_tcp_sendpages(sk, &page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 release_sock(sk);
925 return res;
926}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000927EXPORT_SYMBOL(tcp_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Eric Dumazet690e99c2011-11-28 00:27:47 +0000929static inline int select_size(const struct sock *sk, bool sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400931 const struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700932 int tmp = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Krishna Kumardef87cf2009-12-10 07:16:59 +0000934 if (sg) {
Eric Dumazetf07d9602011-11-28 22:41:47 +0000935 if (sk_can_gso(sk)) {
936 /* Small frames wont use a full page:
937 * Payload will immediately follow tcp header.
938 */
939 tmp = SKB_WITH_OVERHEAD(2048 - MAX_TCP_HEADER);
940 } else {
David S. Millerb4e26f52005-07-05 15:20:27 -0700941 int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
942
943 if (tmp >= pgbreak &&
944 tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE)
945 tmp = pgbreak;
946 }
947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return tmp;
950}
951
Changli Gao7ba42912010-07-10 20:41:55 +0000952int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 size_t size)
954{
955 struct iovec *iov;
956 struct tcp_sock *tp = tcp_sk(sk);
957 struct sk_buff *skb;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000958 int iovlen, flags, err, copied;
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700959 int mss_now, size_goal;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000960 bool sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 long timeo;
962
963 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 flags = msg->msg_flags;
966 timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
967
968 /* Wait for a connection to finish. */
969 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
970 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
971 goto out_err;
972
973 /* This should be in poll */
974 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
975
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000976 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 /* Ok commence sending. */
979 iovlen = msg->msg_iovlen;
980 iov = msg->msg_iov;
981 copied = 0;
982
983 err = -EPIPE;
984 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000985 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Eric Dumazet690e99c2011-11-28 00:27:47 +0000987 sg = !!(sk->sk_route_caps & NETIF_F_SG);
Krishna Kumardef87cf2009-12-10 07:16:59 +0000988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 while (--iovlen >= 0) {
David S. Miller01db4032010-09-27 20:24:54 -0700990 size_t seglen = iov->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 unsigned char __user *from = iov->iov_base;
992
993 iov++;
994
995 while (seglen > 0) {
Herbert Xu6828b922009-06-28 18:06:41 +0000996 int copy = 0;
997 int max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
David S. Millerfe067e82007-03-07 12:12:44 -0800999 skb = tcp_write_queue_tail(sk);
Herbert Xu6828b922009-06-28 18:06:41 +00001000 if (tcp_send_head(sk)) {
1001 if (skb->ip_summed == CHECKSUM_NONE)
1002 max = mss_now;
1003 copy = max - skb->len;
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Herbert Xu6828b922009-06-28 18:06:41 +00001006 if (copy <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007new_segment:
1008 /* Allocate new segment. If the interface is SG,
1009 * allocate skb fitting to single page.
1010 */
1011 if (!sk_stream_memory_free(sk))
1012 goto wait_for_sndbuf;
1013
Krishna Kumardef87cf2009-12-10 07:16:59 +00001014 skb = sk_stream_alloc_skb(sk,
1015 select_size(sk, sg),
1016 sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (!skb)
1018 goto wait_for_memory;
1019
1020 /*
1021 * Check whether we can use HW checksum.
1022 */
Herbert Xu8648b302006-06-17 22:06:05 -07001023 if (sk->sk_route_caps & NETIF_F_ALL_CSUM)
Patrick McHardy84fa7932006-08-29 16:44:56 -07001024 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001026 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001027 copy = size_goal;
Herbert Xu6828b922009-06-28 18:06:41 +00001028 max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030
1031 /* Try to append data to the end of skb. */
1032 if (copy > seglen)
1033 copy = seglen;
1034
1035 /* Where to copy to? */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001036 if (skb_availroom(skb) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* We have some space in skb head. Superb! */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001038 copy = min_t(int, copy, skb_availroom(skb));
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001039 err = skb_add_data_nocache(sk, skb, from, copy);
1040 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 goto do_fault;
1042 } else {
1043 int merge = 0;
1044 int i = skb_shinfo(skb)->nr_frags;
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001045 struct page *page = sk->sk_sndmsg_page;
Eric Dumazet761965e2011-12-04 07:05:17 +00001046 int off;
1047
1048 if (page && page_count(page) == 1)
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001049 sk->sk_sndmsg_off = 0;
Eric Dumazet761965e2011-12-04 07:05:17 +00001050
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001051 off = sk->sk_sndmsg_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 if (skb_can_coalesce(skb, i, page, off) &&
1054 off != PAGE_SIZE) {
1055 /* We can extend the last page
1056 * fragment. */
1057 merge = 1;
Krishna Kumardef87cf2009-12-10 07:16:59 +00001058 } else if (i == MAX_SKB_FRAGS || !sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /* Need to add new fragment and cannot
1060 * do this because interface is non-SG,
1061 * or because all the page slots are
1062 * busy. */
1063 tcp_mark_push(tp, skb);
1064 goto new_segment;
1065 } else if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (off == PAGE_SIZE) {
1067 put_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001068 sk->sk_sndmsg_page = page = NULL;
Herbert Xufb5f5e62005-09-05 18:55:48 -07001069 off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Herbert Xuef015782005-09-01 17:48:59 -07001071 } else
Herbert Xufb5f5e62005-09-05 18:55:48 -07001072 off = 0;
Herbert Xuef015782005-09-01 17:48:59 -07001073
1074 if (copy > PAGE_SIZE - off)
1075 copy = PAGE_SIZE - off;
1076
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001077 if (!sk_wmem_schedule(sk, copy))
Herbert Xuef015782005-09-01 17:48:59 -07001078 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 if (!page) {
1081 /* Allocate new cache page. */
1082 if (!(page = sk_stream_alloc_page(sk)))
1083 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /* Time to copy data. We are close to
1087 * the end! */
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001088 err = skb_copy_to_page_nocache(sk, from, skb,
1089 page, off, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (err) {
1091 /* If this page was new, give it to the
1092 * socket so it does not get leaked.
1093 */
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001094 if (!sk->sk_sndmsg_page) {
1095 sk->sk_sndmsg_page = page;
1096 sk->sk_sndmsg_off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098 goto do_error;
1099 }
1100
1101 /* Update the skb. */
1102 if (merge) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001103 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 } else {
1105 skb_fill_page_desc(skb, i, page, off, copy);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001106 if (sk->sk_sndmsg_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 get_page(page);
1108 } else if (off + copy < PAGE_SIZE) {
1109 get_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001110 sk->sk_sndmsg_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112 }
1113
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001114 sk->sk_sndmsg_off = off + copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116
1117 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -04001118 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 tp->write_seq += copy;
1121 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -07001122 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 from += copy;
1125 copied += copy;
1126 if ((seglen -= copy) == 0 && iovlen == 0)
1127 goto out;
1128
Herbert Xu6828b922009-06-28 18:06:41 +00001129 if (skb->len < max || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 continue;
1131
1132 if (forced_push(tp)) {
1133 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001134 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -08001135 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 tcp_push_one(sk, mss_now);
1137 continue;
1138
1139wait_for_sndbuf:
1140 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1141wait_for_memory:
1142 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001143 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
1146 goto do_error;
1147
Ilpo Järvinen0c54b852009-03-14 14:23:05 +00001148 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150 }
1151
1152out:
1153 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001154 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001156
1157 if (copied > 0)
1158 uid_stat_tcp_snd(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return copied;
1160
1161do_fault:
1162 if (!skb->len) {
David S. Millerfe067e82007-03-07 12:12:44 -08001163 tcp_unlink_write_queue(skb, sk);
1164 /* It is the one place in all of TCP, except connection
1165 * reset, where we can be unlinking the send_head.
1166 */
1167 tcp_check_send_head(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001168 sk_wmem_free_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
1171do_error:
1172 if (copied)
1173 goto out;
1174out_err:
1175 err = sk_stream_error(sk, flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 release_sock(sk);
1177 return err;
1178}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001179EXPORT_SYMBOL(tcp_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181/*
1182 * Handle reading urgent data. BSD has very simple semantics for
1183 * this, no blocking and very strange errors 8)
1184 */
1185
Rami Rosen377f0a02009-03-31 14:43:17 -07001186static int tcp_recv_urg(struct sock *sk, struct msghdr *msg, int len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 struct tcp_sock *tp = tcp_sk(sk);
1189
1190 /* No URG data to read. */
1191 if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data ||
1192 tp->urg_data == TCP_URG_READ)
1193 return -EINVAL; /* Yes this is right ! */
1194
1195 if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE))
1196 return -ENOTCONN;
1197
1198 if (tp->urg_data & TCP_URG_VALID) {
1199 int err = 0;
1200 char c = tp->urg_data;
1201
1202 if (!(flags & MSG_PEEK))
1203 tp->urg_data = TCP_URG_READ;
1204
1205 /* Read urgent data. */
1206 msg->msg_flags |= MSG_OOB;
1207
1208 if (len > 0) {
1209 if (!(flags & MSG_TRUNC))
1210 err = memcpy_toiovec(msg->msg_iov, &c, 1);
1211 len = 1;
1212 } else
1213 msg->msg_flags |= MSG_TRUNC;
1214
1215 return err ? -EFAULT : len;
1216 }
1217
1218 if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
1219 return 0;
1220
1221 /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and
1222 * the available implementations agree in this case:
1223 * this call should never block, independent of the
1224 * blocking state of the socket.
1225 * Mike <pall@rz.uni-karlsruhe.de>
1226 */
1227 return -EAGAIN;
1228}
1229
1230/* Clean up the receive buffer for full frames taken by the user,
1231 * then send an ACK if necessary. COPIED is the number of bytes
1232 * tcp_recvmsg has given to the user so far, it speeds up the
1233 * calculation of whether or not we must ACK for the sake of
1234 * a window update.
1235 */
Chris Leech0e4b4992006-05-23 18:00:16 -07001236void tcp_cleanup_rbuf(struct sock *sk, int copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
1238 struct tcp_sock *tp = tcp_sk(sk);
1239 int time_to_ack = 0;
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1242
Ilpo Järvinend792c102009-11-13 13:56:33 -08001243 WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001244 "cleanup rbuf bug: copied %X seq %X rcvnxt %X\n",
Ilpo Järvinend792c102009-11-13 13:56:33 -08001245 tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001247 if (inet_csk_ack_scheduled(sk)) {
1248 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /* Delayed ACKs frequently hit locked sockets during bulk
1250 * receive. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001251 if (icsk->icsk_ack.blocked ||
Ravi Joshiee51cf02013-07-25 19:04:17 -07001252 /* Once-per-sysctl_tcp_delack_seg segments
1253 * ACK was not sent by tcp_input.c
1254 */
1255 tp->rcv_nxt - tp->rcv_wup > (icsk->icsk_ack.rcv_mss) *
1256 sysctl_tcp_delack_seg ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
1258 * If this read emptied read buffer, we send ACK, if
1259 * connection is not bidirectional, user drained
1260 * receive buffer and there was a small segment
1261 * in queue.
1262 */
Alexey Kuznetsov1ef96962006-09-19 12:52:50 -07001263 (copied > 0 &&
1264 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) ||
1265 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) &&
1266 !icsk->icsk_ack.pingpong)) &&
1267 !atomic_read(&sk->sk_rmem_alloc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 time_to_ack = 1;
1269 }
1270
1271 /* We send an ACK if we can now advertise a non-zero window
1272 * which has been raised "significantly".
1273 *
1274 * Even if window raised up to infinity, do not send window open ACK
1275 * in states, where we will not receive more. It is useless.
1276 */
1277 if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) {
1278 __u32 rcv_window_now = tcp_receive_window(tp);
1279
1280 /* Optimize, __tcp_select_window() is not cheap. */
1281 if (2*rcv_window_now <= tp->window_clamp) {
1282 __u32 new_window = __tcp_select_window(sk);
1283
1284 /* Send ACK now, if this read freed lots of space
1285 * in our buffer. Certainly, new_window is new window.
1286 * We can advertise it now, if it is not less than current one.
1287 * "Lots" means "at least twice" here.
1288 */
1289 if (new_window && new_window >= 2 * rcv_window_now)
1290 time_to_ack = 1;
1291 }
1292 }
1293 if (time_to_ack)
1294 tcp_send_ack(sk);
1295}
1296
1297static void tcp_prequeue_process(struct sock *sk)
1298{
1299 struct sk_buff *skb;
1300 struct tcp_sock *tp = tcp_sk(sk);
1301
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001302 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /* RX process wants to run with disabled BHs, though it is not
1305 * necessary */
1306 local_bh_disable();
1307 while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
Peter Zijlstrac57943a2008-10-07 14:18:42 -07001308 sk_backlog_rcv(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 local_bh_enable();
1310
1311 /* Clear memory counter. */
1312 tp->ucopy.memory = 0;
1313}
1314
Steven J. Magnani73852e82010-03-16 05:22:44 +00001315#ifdef CONFIG_NET_DMA
1316static void tcp_service_net_dma(struct sock *sk, bool wait)
1317{
1318 dma_cookie_t done, used;
1319 dma_cookie_t last_issued;
1320 struct tcp_sock *tp = tcp_sk(sk);
1321
1322 if (!tp->ucopy.dma_chan)
1323 return;
1324
1325 last_issued = tp->ucopy.dma_cookie;
1326 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1327
1328 do {
1329 if (dma_async_memcpy_complete(tp->ucopy.dma_chan,
1330 last_issued, &done,
1331 &used) == DMA_SUCCESS) {
1332 /* Safe to free early-copied skbs now */
1333 __skb_queue_purge(&sk->sk_async_wait_queue);
1334 break;
1335 } else {
1336 struct sk_buff *skb;
1337 while ((skb = skb_peek(&sk->sk_async_wait_queue)) &&
1338 (dma_async_is_complete(skb->dma_cookie, done,
1339 used) == DMA_SUCCESS)) {
1340 __skb_dequeue(&sk->sk_async_wait_queue);
1341 kfree_skb(skb);
1342 }
1343 }
1344 } while (wait);
1345}
1346#endif
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
1349{
1350 struct sk_buff *skb;
1351 u32 offset;
1352
1353 skb_queue_walk(&sk->sk_receive_queue, skb) {
1354 offset = seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001355 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 offset--;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001357 if (offset < skb->len || tcp_hdr(skb)->fin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 *off = offset;
1359 return skb;
1360 }
1361 }
1362 return NULL;
1363}
1364
1365/*
1366 * This routine provides an alternative to tcp_recvmsg() for routines
1367 * that would like to handle copying from skbuffs directly in 'sendfile'
1368 * fashion.
1369 * Note:
1370 * - It is assumed that the socket was locked by the caller.
1371 * - The routine does not block.
1372 * - At present, there is no support for reading OOB data
1373 * or for 'peeking' the socket using this routine
1374 * (although both would be easy to implement).
1375 */
1376int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
1377 sk_read_actor_t recv_actor)
1378{
1379 struct sk_buff *skb;
1380 struct tcp_sock *tp = tcp_sk(sk);
1381 u32 seq = tp->copied_seq;
1382 u32 offset;
1383 int copied = 0;
1384
1385 if (sk->sk_state == TCP_LISTEN)
1386 return -ENOTCONN;
1387 while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
1388 if (offset < skb->len) {
Octavian Purdila374e7b52008-07-03 03:31:21 -07001389 int used;
1390 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 len = skb->len - offset;
1393 /* Stop reading if we hit a patch of urgent data */
1394 if (tp->urg_data) {
1395 u32 urg_offset = tp->urg_seq - seq;
1396 if (urg_offset < len)
1397 len = urg_offset;
1398 if (!len)
1399 break;
1400 }
1401 used = recv_actor(desc, skb, offset, len);
Jens Axboeddb61a52007-06-23 23:07:50 -07001402 if (used < 0) {
1403 if (!copied)
1404 copied = used;
1405 break;
1406 } else if (used <= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 seq += used;
1408 copied += used;
1409 offset += used;
1410 }
Octavian Purdila293ad602008-06-04 15:45:58 -07001411 /*
1412 * If recv_actor drops the lock (e.g. TCP splice
1413 * receive) the skb pointer might be invalid when
1414 * getting here: tcp_collapse might have deleted it
1415 * while aggregating skbs from the socket queue.
1416 */
1417 skb = tcp_recv_skb(sk, seq-1, &offset);
1418 if (!skb || (offset+1 != skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 break;
1420 }
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001421 if (tcp_hdr(skb)->fin) {
Eric Dumazet48ede612012-05-16 22:48:15 +00001422 sk_eat_skb(sk, skb, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 ++seq;
1424 break;
1425 }
Eric Dumazet48ede612012-05-16 22:48:15 +00001426 sk_eat_skb(sk, skb, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (!desc->count)
1428 break;
Steven J. Magnanibaff42a2010-03-30 13:56:01 -07001429 tp->copied_seq = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 tp->copied_seq = seq;
1432
1433 tcp_rcv_space_adjust(sk);
1434
1435 /* Clean up data we have read: This will do ACK frames. */
Mike Chan5a0b3542009-01-07 11:40:42 -08001436 if (copied > 0) {
Chris Leech0e4b4992006-05-23 18:00:16 -07001437 tcp_cleanup_rbuf(sk, copied);
Mike Chan5a0b3542009-01-07 11:40:42 -08001438 uid_stat_tcp_rcv(current_uid(), copied);
1439 }
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return copied;
1442}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001443EXPORT_SYMBOL(tcp_read_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445/*
1446 * This routine copies from a sock struct into the user buffer.
1447 *
1448 * Technical note: in 2.3 we work on _locked_ socket, so that
1449 * tricks with *seq access order and skb->users are not required.
1450 * Probably, code can be easily improved even more.
1451 */
1452
1453int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
1454 size_t len, int nonblock, int flags, int *addr_len)
1455{
1456 struct tcp_sock *tp = tcp_sk(sk);
1457 int copied = 0;
1458 u32 peek_seq;
1459 u32 *seq;
1460 unsigned long used;
1461 int err;
1462 int target; /* Read at least this many bytes */
1463 long timeo;
1464 struct task_struct *user_recv = NULL;
Eric Dumazet48ede612012-05-16 22:48:15 +00001465 bool copied_early = false;
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001466 struct sk_buff *skb, *last;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001467 u32 urg_hole = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 lock_sock(sk);
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 err = -ENOTCONN;
1472 if (sk->sk_state == TCP_LISTEN)
1473 goto out;
1474
1475 timeo = sock_rcvtimeo(sk, nonblock);
1476
1477 /* Urgent data needs to be handled specially. */
1478 if (flags & MSG_OOB)
1479 goto recv_urg;
1480
1481 seq = &tp->copied_seq;
1482 if (flags & MSG_PEEK) {
1483 peek_seq = tp->copied_seq;
1484 seq = &peek_seq;
1485 }
1486
1487 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
1488
Chris Leech1a2449a2006-05-23 18:05:53 -07001489#ifdef CONFIG_NET_DMA
1490 tp->ucopy.dma_chan = NULL;
1491 preempt_disable();
Chris Leech2b1244a2007-03-08 09:57:36 -08001492 skb = skb_peek_tail(&sk->sk_receive_queue);
Andrew Mortone00c5d82007-03-08 09:57:36 -08001493 {
1494 int available = 0;
1495
1496 if (skb)
1497 available = TCP_SKB_CB(skb)->seq + skb->len - (*seq);
1498 if ((available < target) &&
1499 (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) &&
1500 !sysctl_tcp_low_latency &&
Dave Jianga2bd1142012-04-04 16:10:46 -07001501 net_dma_find_channel()) {
Andrew Mortone00c5d82007-03-08 09:57:36 -08001502 preempt_enable_no_resched();
1503 tp->ucopy.pinned_list =
1504 dma_pin_iovec_pages(msg->msg_iov, len);
1505 } else {
1506 preempt_enable_no_resched();
1507 }
1508 }
Chris Leech1a2449a2006-05-23 18:05:53 -07001509#endif
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 u32 offset;
1513
1514 /* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */
1515 if (tp->urg_data && tp->urg_seq == *seq) {
1516 if (copied)
1517 break;
1518 if (signal_pending(current)) {
1519 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
1520 break;
1521 }
1522 }
1523
1524 /* Next get a buffer. */
1525
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001526 last = skb_peek_tail(&sk->sk_receive_queue);
David S. Miller91521942009-05-28 21:35:47 -07001527 skb_queue_walk(&sk->sk_receive_queue, skb) {
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001528 last = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* Now that we have two receive queues this
1530 * shouldn't happen.
1531 */
Ilpo Järvinend792c102009-11-13 13:56:33 -08001532 if (WARN(before(*seq, TCP_SKB_CB(skb)->seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001533 "recvmsg bug: copied %X seq %X rcvnxt %X fl %X\n",
1534 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt,
1535 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 break;
Ilpo Järvinend792c102009-11-13 13:56:33 -08001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 offset = *seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001539 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 offset--;
1541 if (offset < skb->len)
1542 goto found_ok_skb;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001543 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 goto found_fin_ok;
Joe Perches2af6fd82010-10-30 11:08:53 +00001545 WARN(!(flags & MSG_PEEK),
1546 "recvmsg bug 2: copied %X seq %X rcvnxt %X fl %X\n",
1547 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt, flags);
David S. Miller91521942009-05-28 21:35:47 -07001548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 /* Well, if we have backlog, try to process it now yet. */
1551
1552 if (copied >= target && !sk->sk_backlog.tail)
1553 break;
1554
1555 if (copied) {
1556 if (sk->sk_err ||
1557 sk->sk_state == TCP_CLOSE ||
1558 (sk->sk_shutdown & RCV_SHUTDOWN) ||
1559 !timeo ||
David S. Miller518a09e2008-11-05 03:36:01 -08001560 signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 break;
1562 } else {
1563 if (sock_flag(sk, SOCK_DONE))
1564 break;
1565
1566 if (sk->sk_err) {
1567 copied = sock_error(sk);
1568 break;
1569 }
1570
1571 if (sk->sk_shutdown & RCV_SHUTDOWN)
1572 break;
1573
1574 if (sk->sk_state == TCP_CLOSE) {
1575 if (!sock_flag(sk, SOCK_DONE)) {
1576 /* This occurs when user tries to read
1577 * from never connected socket.
1578 */
1579 copied = -ENOTCONN;
1580 break;
1581 }
1582 break;
1583 }
1584
1585 if (!timeo) {
1586 copied = -EAGAIN;
1587 break;
1588 }
1589
1590 if (signal_pending(current)) {
1591 copied = sock_intr_errno(timeo);
1592 break;
1593 }
1594 }
1595
Chris Leech0e4b4992006-05-23 18:00:16 -07001596 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
David S. Miller7df55122005-06-18 23:01:10 -07001598 if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 /* Install new reader */
1600 if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) {
1601 user_recv = current;
1602 tp->ucopy.task = user_recv;
1603 tp->ucopy.iov = msg->msg_iov;
1604 }
1605
1606 tp->ucopy.len = len;
1607
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001608 WARN_ON(tp->copied_seq != tp->rcv_nxt &&
1609 !(flags & (MSG_PEEK | MSG_TRUNC)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 /* Ugly... If prequeue is not empty, we have to
1612 * process it before releasing socket, otherwise
1613 * order will be broken at second iteration.
1614 * More elegant solution is required!!!
1615 *
1616 * Look: we have the following (pseudo)queues:
1617 *
1618 * 1. packets in flight
1619 * 2. backlog
1620 * 3. prequeue
1621 * 4. receive_queue
1622 *
1623 * Each queue can be processed only if the next ones
1624 * are empty. At this point we have empty receive_queue.
1625 * But prequeue _can_ be not empty after 2nd iteration,
1626 * when we jumped to start of loop because backlog
1627 * processing added something to receive_queue.
1628 * We cannot release_sock(), because backlog contains
1629 * packets arrived _after_ prequeued ones.
1630 *
1631 * Shortly, algorithm is clear --- to process all
1632 * the queues in order. We could make it more directly,
1633 * requeueing packets from backlog to prequeue, if
1634 * is not empty. It is more elegant, but eats cycles,
1635 * unfortunately.
1636 */
David S. Millerb03efcf2005-07-08 14:57:23 -07001637 if (!skb_queue_empty(&tp->ucopy.prequeue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 goto do_prequeue;
1639
1640 /* __ Set realtime policy in scheduler __ */
1641 }
1642
Steven J. Magnani73852e82010-03-16 05:22:44 +00001643#ifdef CONFIG_NET_DMA
Michal Kubeček3ecf44c2012-09-14 04:59:52 +00001644 if (tp->ucopy.dma_chan) {
1645 if (tp->rcv_wnd == 0 &&
1646 !skb_queue_empty(&sk->sk_async_wait_queue)) {
1647 tcp_service_net_dma(sk, true);
1648 tcp_cleanup_rbuf(sk, copied);
1649 } else
1650 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1651 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (copied >= target) {
1654 /* Do not sleep, just process backlog. */
1655 release_sock(sk);
1656 lock_sock(sk);
Sabrina Dubroca45acb7d2015-07-24 18:19:25 +02001657 } else {
1658 sk_wait_data(sk, &timeo, last);
1659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Chris Leech1a2449a2006-05-23 18:05:53 -07001661#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001662 tcp_service_net_dma(sk, false); /* Don't block */
Chris Leech1a2449a2006-05-23 18:05:53 -07001663 tp->ucopy.wakeup = 0;
1664#endif
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (user_recv) {
1667 int chunk;
1668
1669 /* __ Restore normal policy in scheduler __ */
1670
1671 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001672 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 len -= chunk;
1674 copied += chunk;
1675 }
1676
1677 if (tp->rcv_nxt == tp->copied_seq &&
David S. Millerb03efcf2005-07-08 14:57:23 -07001678 !skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679do_prequeue:
1680 tcp_prequeue_process(sk);
1681
1682 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001683 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 len -= chunk;
1685 copied += chunk;
1686 }
1687 }
1688 }
Ilpo Järvinen77527312009-05-10 20:32:34 +00001689 if ((flags & MSG_PEEK) &&
1690 (peek_seq - copied - urg_hole != tp->copied_seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (net_ratelimit())
1692 printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001693 current->comm, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 peek_seq = tp->copied_seq;
1695 }
1696 continue;
1697
1698 found_ok_skb:
1699 /* Ok so how much can we use? */
1700 used = skb->len - offset;
1701 if (len < used)
1702 used = len;
1703
1704 /* Do we have urgent data here? */
1705 if (tp->urg_data) {
1706 u32 urg_offset = tp->urg_seq - *seq;
1707 if (urg_offset < used) {
1708 if (!urg_offset) {
1709 if (!sock_flag(sk, SOCK_URGINLINE)) {
1710 ++*seq;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001711 urg_hole++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 offset++;
1713 used--;
1714 if (!used)
1715 goto skip_copy;
1716 }
1717 } else
1718 used = urg_offset;
1719 }
1720 }
1721
1722 if (!(flags & MSG_TRUNC)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001723#ifdef CONFIG_NET_DMA
1724 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
Dave Jianga2bd1142012-04-04 16:10:46 -07001725 tp->ucopy.dma_chan = net_dma_find_channel();
Chris Leech1a2449a2006-05-23 18:05:53 -07001726
1727 if (tp->ucopy.dma_chan) {
1728 tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec(
1729 tp->ucopy.dma_chan, skb, offset,
1730 msg->msg_iov, used,
1731 tp->ucopy.pinned_list);
1732
1733 if (tp->ucopy.dma_cookie < 0) {
1734
Joe Perchesafd465032012-03-12 07:03:32 +00001735 pr_alert("%s: dma_cookie < 0\n",
1736 __func__);
Chris Leech1a2449a2006-05-23 18:05:53 -07001737
1738 /* Exception. Bailout! */
1739 if (!copied)
1740 copied = -EFAULT;
1741 break;
1742 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001743
1744 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1745
Chris Leech1a2449a2006-05-23 18:05:53 -07001746 if ((offset + used) == skb->len)
Eric Dumazet48ede612012-05-16 22:48:15 +00001747 copied_early = true;
Chris Leech1a2449a2006-05-23 18:05:53 -07001748
1749 } else
1750#endif
1751 {
1752 err = skb_copy_datagram_iovec(skb, offset,
1753 msg->msg_iov, used);
1754 if (err) {
1755 /* Exception. Bailout! */
1756 if (!copied)
1757 copied = -EFAULT;
1758 break;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 }
1762
1763 *seq += used;
1764 copied += used;
1765 len -= used;
1766
1767 tcp_rcv_space_adjust(sk);
1768
1769skip_copy:
1770 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) {
1771 tp->urg_data = 0;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001772 tcp_fast_path_check(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774 if (used + offset < skb->len)
1775 continue;
1776
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001777 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 goto found_fin_ok;
Chris Leech1a2449a2006-05-23 18:05:53 -07001779 if (!(flags & MSG_PEEK)) {
1780 sk_eat_skb(sk, skb, copied_early);
Eric Dumazet48ede612012-05-16 22:48:15 +00001781 copied_early = false;
Chris Leech1a2449a2006-05-23 18:05:53 -07001782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 continue;
1784
1785 found_fin_ok:
1786 /* Process the FIN. */
1787 ++*seq;
Chris Leech1a2449a2006-05-23 18:05:53 -07001788 if (!(flags & MSG_PEEK)) {
1789 sk_eat_skb(sk, skb, copied_early);
Eric Dumazet48ede612012-05-16 22:48:15 +00001790 copied_early = false;
Chris Leech1a2449a2006-05-23 18:05:53 -07001791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 break;
1793 } while (len > 0);
1794
1795 if (user_recv) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001796 if (!skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 int chunk;
1798
1799 tp->ucopy.len = copied > 0 ? len : 0;
1800
1801 tcp_prequeue_process(sk);
1802
1803 if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001804 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 len -= chunk;
1806 copied += chunk;
1807 }
1808 }
1809
1810 tp->ucopy.task = NULL;
1811 tp->ucopy.len = 0;
1812 }
1813
Chris Leech1a2449a2006-05-23 18:05:53 -07001814#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001815 tcp_service_net_dma(sk, true); /* Wait for queue to drain */
1816 tp->ucopy.dma_chan = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001817
Chris Leech1a2449a2006-05-23 18:05:53 -07001818 if (tp->ucopy.pinned_list) {
1819 dma_unpin_iovec_pages(tp->ucopy.pinned_list);
1820 tp->ucopy.pinned_list = NULL;
1821 }
1822#endif
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 /* According to UNIX98, msg_name/msg_namelen are ignored
1825 * on connected socket. I was just happy when found this 8) --ANK
1826 */
1827
1828 /* Clean up data we have read: This will do ACK frames. */
Chris Leech0e4b4992006-05-23 18:00:16 -07001829 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001832
1833 if (copied > 0)
1834 uid_stat_tcp_rcv(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return copied;
1836
1837out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 release_sock(sk);
1839 return err;
1840
1841recv_urg:
Rami Rosen377f0a02009-03-31 14:43:17 -07001842 err = tcp_recv_urg(sk, msg, len, flags);
Mike Chan5a0b3542009-01-07 11:40:42 -08001843 if (err > 0)
1844 uid_stat_tcp_rcv(current_uid(), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto out;
1846}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001847EXPORT_SYMBOL(tcp_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001849void tcp_set_state(struct sock *sk, int state)
1850{
1851 int oldstate = sk->sk_state;
1852
1853 switch (state) {
1854 case TCP_ESTABLISHED:
1855 if (oldstate != TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001856 TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001857 break;
1858
1859 case TCP_CLOSE:
1860 if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001861 TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001862
1863 sk->sk_prot->unhash(sk);
1864 if (inet_csk(sk)->icsk_bind_hash &&
1865 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001866 inet_put_port(sk);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001867 /* fall through */
1868 default:
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001869 if (oldstate == TCP_ESTABLISHED)
Pavel Emelyanov74688e42008-07-16 20:22:46 -07001870 TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001871 }
1872
1873 /* Change state AFTER socket is unhashed to avoid closed
1874 * socket sitting in hash tables.
1875 */
1876 sk->sk_state = state;
1877
1878#ifdef STATE_TRACE
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001879 SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n", sk, statename[oldstate], statename[state]);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001880#endif
1881}
1882EXPORT_SYMBOL_GPL(tcp_set_state);
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884/*
1885 * State processing on a close. This implements the state shift for
1886 * sending our FIN frame. Note that we only send a FIN for some
1887 * states. A shutdown() may have already sent the FIN, or we may be
1888 * closed.
1889 */
1890
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001891static const unsigned char new_state[16] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /* current state: new state: action: */
1893 /* (Invalid) */ TCP_CLOSE,
1894 /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1895 /* TCP_SYN_SENT */ TCP_CLOSE,
1896 /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1897 /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1,
1898 /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2,
1899 /* TCP_TIME_WAIT */ TCP_CLOSE,
1900 /* TCP_CLOSE */ TCP_CLOSE,
1901 /* TCP_CLOSE_WAIT */ TCP_LAST_ACK | TCP_ACTION_FIN,
1902 /* TCP_LAST_ACK */ TCP_LAST_ACK,
1903 /* TCP_LISTEN */ TCP_CLOSE,
1904 /* TCP_CLOSING */ TCP_CLOSING,
1905};
1906
1907static int tcp_close_state(struct sock *sk)
1908{
1909 int next = (int)new_state[sk->sk_state];
1910 int ns = next & TCP_STATE_MASK;
1911
1912 tcp_set_state(sk, ns);
1913
1914 return next & TCP_ACTION_FIN;
1915}
1916
1917/*
1918 * Shutdown the sending side of a connection. Much like close except
Satoru SATOH1f29b052008-04-21 02:27:58 -07001919 * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 */
1921
1922void tcp_shutdown(struct sock *sk, int how)
1923{
1924 /* We need to grab some memory, and put together a FIN,
1925 * and then put it into the queue to be sent.
1926 * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1927 */
1928 if (!(how & SEND_SHUTDOWN))
1929 return;
1930
1931 /* If we've already sent a FIN, or it's a closed state, skip this. */
1932 if ((1 << sk->sk_state) &
1933 (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1934 TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) {
1935 /* Clear out any half completed packets. FIN if needed. */
1936 if (tcp_close_state(sk))
1937 tcp_send_fin(sk);
1938 }
1939}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001940EXPORT_SYMBOL(tcp_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001942bool tcp_check_oom(struct sock *sk, int shift)
1943{
1944 bool too_many_orphans, out_of_socket_memory;
1945
1946 too_many_orphans = tcp_too_many_orphans(sk, shift);
1947 out_of_socket_memory = tcp_out_of_memory(sk);
1948
1949 if (too_many_orphans && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001950 pr_info("too many orphaned sockets\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001951 if (out_of_socket_memory && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001952 pr_info("out of memory -- consider tuning tcp_mem\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001953 return too_many_orphans || out_of_socket_memory;
1954}
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956void tcp_close(struct sock *sk, long timeout)
1957{
1958 struct sk_buff *skb;
1959 int data_was_unread = 0;
Herbert Xu75c2d9072006-05-03 23:31:35 -07001960 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 lock_sock(sk);
1963 sk->sk_shutdown = SHUTDOWN_MASK;
1964
1965 if (sk->sk_state == TCP_LISTEN) {
1966 tcp_set_state(sk, TCP_CLOSE);
1967
1968 /* Special case. */
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07001969 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 goto adjudge_to_death;
1972 }
1973
1974 /* We need to flush the recv. buffs. We do this only on the
1975 * descriptor close, not protocol-sourced closes, because the
1976 * reader process may not have drained the data yet!
1977 */
1978 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
1979 u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq -
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001980 tcp_hdr(skb)->fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 data_was_unread += len;
1982 __kfree_skb(skb);
1983 }
1984
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001985 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
Konstantin Khorenko565b7b22010-06-24 21:54:58 -07001987 /* If socket has been already reset (e.g. in tcp_reset()) - kill it. */
1988 if (sk->sk_state == TCP_CLOSE)
1989 goto adjudge_to_death;
1990
Gerrit Renker65bb7232007-04-28 21:21:46 -07001991 /* As outlined in RFC 2525, section 2.17, we send a RST here because
1992 * data was lost. To witness the awful effects of the old behavior of
1993 * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk
1994 * GET in an FTP client, suspend the process, wait for the client to
1995 * advertise a zero window, then kill -9 the FTP client, wheee...
1996 * Note: timeout is always zero in such a case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 */
1998 if (data_was_unread) {
1999 /* Unread data was tossed, zap the connection. */
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07002000 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 tcp_set_state(sk, TCP_CLOSE);
Wu Fengguangaa133072009-09-02 23:45:45 -07002002 tcp_send_active_reset(sk, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
2004 /* Check zero linger _after_ checking for unread data. */
2005 sk->sk_prot->disconnect(sk, 0);
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07002006 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 } else if (tcp_close_state(sk)) {
2008 /* We FIN if the application ate all the data before
2009 * zapping the connection.
2010 */
2011
2012 /* RED-PEN. Formally speaking, we have broken TCP state
2013 * machine. State transitions:
2014 *
2015 * TCP_ESTABLISHED -> TCP_FIN_WAIT1
2016 * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible)
2017 * TCP_CLOSE_WAIT -> TCP_LAST_ACK
2018 *
2019 * are legal only when FIN has been sent (i.e. in window),
2020 * rather than queued out of window. Purists blame.
2021 *
2022 * F.e. "RFC state" is ESTABLISHED,
2023 * if Linux state is FIN-WAIT-1, but FIN is still not sent.
2024 *
2025 * The visible declinations are that sometimes
2026 * we enter time-wait state, when it is not required really
2027 * (harmless), do not send active resets, when they are
2028 * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
2029 * they look as CLOSING or LAST_ACK for Linux)
2030 * Probably, I missed some more holelets.
2031 * --ANK
2032 */
2033 tcp_send_fin(sk);
2034 }
2035
2036 sk_stream_wait_close(sk, timeout);
2037
2038adjudge_to_death:
Herbert Xu75c2d9072006-05-03 23:31:35 -07002039 state = sk->sk_state;
2040 sock_hold(sk);
2041 sock_orphan(sk);
Herbert Xu75c2d9072006-05-03 23:31:35 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /* It is the last release_sock in its life. It will remove backlog. */
2044 release_sock(sk);
2045
2046
2047 /* Now socket is owned by kernel and we acquire BH lock
2048 to finish close. No need to check for user refs.
2049 */
2050 local_bh_disable();
2051 bh_lock_sock(sk);
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002052 WARN_ON(sock_owned_by_user(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Herbert Xueb4dea52008-12-29 23:04:08 -08002054 percpu_counter_inc(sk->sk_prot->orphan_count);
2055
Herbert Xu75c2d9072006-05-03 23:31:35 -07002056 /* Have we already been destroyed by a softirq or backlog? */
2057 if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE)
2058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 /* This is a (useful) BSD violating of the RFC. There is a
2061 * problem with TCP as specified in that the other end could
2062 * keep a socket open forever with no application left this end.
2063 * We use a 3 minute timeout (about the same as BSD) then kill
2064 * our end. If they send after that then tough - BUT: long enough
2065 * that we won't make the old 4*rto = almost no time - whoops
2066 * reset mistake.
2067 *
2068 * Nope, it was not mistake. It is really desired behaviour
2069 * f.e. on http servers, when such sockets are useless, but
2070 * consume significant resources. Let's do it with special
2071 * linger2 option. --ANK
2072 */
2073
2074 if (sk->sk_state == TCP_FIN_WAIT2) {
2075 struct tcp_sock *tp = tcp_sk(sk);
2076 if (tp->linger2 < 0) {
2077 tcp_set_state(sk, TCP_CLOSE);
2078 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002079 NET_INC_STATS_BH(sock_net(sk),
2080 LINUX_MIB_TCPABORTONLINGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002082 const int tmo = tcp_fin_time(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084 if (tmo > TCP_TIMEWAIT_LEN) {
David S. Miller52499af2006-07-31 22:32:09 -07002085 inet_csk_reset_keepalive_timer(sk,
2086 tmo - TCP_TIMEWAIT_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
2089 goto out;
2090 }
2091 }
2092 }
2093 if (sk->sk_state != TCP_CLOSE) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002094 sk_mem_reclaim(sk);
Arun Sharmaefcdbf22012-01-30 14:16:06 -08002095 if (tcp_check_oom(sk, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 tcp_set_state(sk, TCP_CLOSE);
2097 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002098 NET_INC_STATS_BH(sock_net(sk),
2099 LINUX_MIB_TCPABORTONMEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
2101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 if (sk->sk_state == TCP_CLOSE)
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002104 inet_csk_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 /* Otherwise, socket is reprieved until protocol close. */
2106
2107out:
2108 bh_unlock_sock(sk);
2109 local_bh_enable();
2110 sock_put(sk);
2111}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002112EXPORT_SYMBOL(tcp_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114/* These states need RST on ABORT according to RFC793 */
2115
2116static inline int tcp_need_reset(int state)
2117{
2118 return (1 << state) &
2119 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 |
2120 TCPF_FIN_WAIT2 | TCPF_SYN_RECV);
2121}
2122
2123int tcp_disconnect(struct sock *sk, int flags)
2124{
2125 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002126 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 struct tcp_sock *tp = tcp_sk(sk);
2128 int err = 0;
2129 int old_state = sk->sk_state;
2130
2131 if (old_state != TCP_CLOSE)
2132 tcp_set_state(sk, TCP_CLOSE);
2133
2134 /* ABORT function of RFC793 */
2135 if (old_state == TCP_LISTEN) {
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002136 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 } else if (tcp_need_reset(old_state) ||
2138 (tp->snd_nxt != tp->write_seq &&
2139 (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002140 /* The last check adjusts for discrepancy of Linux wrt. RFC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 * states
2142 */
2143 tcp_send_active_reset(sk, gfp_any());
2144 sk->sk_err = ECONNRESET;
2145 } else if (old_state == TCP_SYN_SENT)
2146 sk->sk_err = ECONNRESET;
2147
2148 tcp_clear_xmit_timers(sk);
2149 __skb_queue_purge(&sk->sk_receive_queue);
David S. Millerfe067e82007-03-07 12:12:44 -08002150 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 __skb_queue_purge(&tp->out_of_order_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07002152#ifdef CONFIG_NET_DMA
2153 __skb_queue_purge(&sk->sk_async_wait_queue);
2154#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002156 inet->inet_dport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
2159 inet_reset_saddr(sk);
2160
2161 sk->sk_shutdown = 0;
2162 sock_reset_flag(sk, SOCK_DONE);
2163 tp->srtt = 0;
2164 if ((tp->write_seq += tp->max_window + 2) == 0)
2165 tp->write_seq = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002166 icsk->icsk_backoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 tp->snd_cwnd = 2;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002168 icsk->icsk_probes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 tp->packets_out = 0;
Ilpo Järvinen0b6a05c2009-09-15 01:30:10 -07002170 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 tp->snd_cwnd_cnt = 0;
Eric Dumazet1fdf4752009-11-30 12:53:30 -08002172 tp->window_clamp = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002173 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 tcp_clear_retrans(tp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002175 inet_csk_delack_init(sk);
Wei Wang7b983f12017-05-18 11:22:33 -07002176 /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0
2177 * issue in __tcp_select_window()
2178 */
2179 icsk->icsk_ack.rcv_mss = TCP_MIN_MSS;
David S. Millerfe067e82007-03-07 12:12:44 -08002180 tcp_init_send_head(sk);
Srinivas Ajib40b4f72007-05-03 17:32:28 -07002181 memset(&tp->rx_opt, 0, sizeof(tp->rx_opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 __sk_dst_reset(sk);
2183
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002184 WARN_ON(inet->inet_num && !icsk->icsk_bind_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 sk->sk_error_report(sk);
2187 return err;
2188}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002189EXPORT_SYMBOL(tcp_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 * Socket option code for TCP.
2193 */
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002194static int do_tcp_setsockopt(struct sock *sk, int level,
David S. Millerb7058842009-09-30 16:12:20 -07002195 int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
2197 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002198 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 int val;
2200 int err = 0;
2201
William Allen Simpsone56fb502009-12-02 18:19:30 +00002202 /* These are data/string values, all the others are ints */
2203 switch (optname) {
2204 case TCP_CONGESTION: {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002205 char name[TCP_CA_NAME_MAX];
2206
2207 if (optlen < 1)
2208 return -EINVAL;
2209
2210 val = strncpy_from_user(name, optval,
Andrew Morton4fdb78d2009-10-01 15:02:20 -07002211 min_t(long, TCP_CA_NAME_MAX-1, optlen));
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002212 if (val < 0)
2213 return -EFAULT;
2214 name[val] = 0;
2215
2216 lock_sock(sk);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002217 err = tcp_set_congestion_control(sk, name);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002218 release_sock(sk);
2219 return err;
2220 }
William Allen Simpsone56fb502009-12-02 18:19:30 +00002221 case TCP_COOKIE_TRANSACTIONS: {
2222 struct tcp_cookie_transactions ctd;
2223 struct tcp_cookie_values *cvp = NULL;
2224
2225 if (sizeof(ctd) > optlen)
2226 return -EINVAL;
2227 if (copy_from_user(&ctd, optval, sizeof(ctd)))
2228 return -EFAULT;
2229
2230 if (ctd.tcpct_used > sizeof(ctd.tcpct_value) ||
2231 ctd.tcpct_s_data_desired > TCP_MSS_DESIRED)
2232 return -EINVAL;
2233
2234 if (ctd.tcpct_cookie_desired == 0) {
2235 /* default to global value */
2236 } else if ((0x1 & ctd.tcpct_cookie_desired) ||
2237 ctd.tcpct_cookie_desired > TCP_COOKIE_MAX ||
2238 ctd.tcpct_cookie_desired < TCP_COOKIE_MIN) {
2239 return -EINVAL;
2240 }
2241
2242 if (TCP_COOKIE_OUT_NEVER & ctd.tcpct_flags) {
2243 /* Supercedes all other values */
2244 lock_sock(sk);
2245 if (tp->cookie_values != NULL) {
2246 kref_put(&tp->cookie_values->kref,
2247 tcp_cookie_values_release);
2248 tp->cookie_values = NULL;
2249 }
2250 tp->rx_opt.cookie_in_always = 0; /* false */
2251 tp->rx_opt.cookie_out_never = 1; /* true */
2252 release_sock(sk);
2253 return err;
2254 }
2255
2256 /* Allocate ancillary memory before locking.
2257 */
2258 if (ctd.tcpct_used > 0 ||
2259 (tp->cookie_values == NULL &&
2260 (sysctl_tcp_cookie_size > 0 ||
2261 ctd.tcpct_cookie_desired > 0 ||
2262 ctd.tcpct_s_data_desired > 0))) {
2263 cvp = kzalloc(sizeof(*cvp) + ctd.tcpct_used,
2264 GFP_KERNEL);
2265 if (cvp == NULL)
2266 return -ENOMEM;
Dmitry Popova3bdb542010-07-29 01:59:36 +00002267
2268 kref_init(&cvp->kref);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002269 }
2270 lock_sock(sk);
2271 tp->rx_opt.cookie_in_always =
2272 (TCP_COOKIE_IN_ALWAYS & ctd.tcpct_flags);
2273 tp->rx_opt.cookie_out_never = 0; /* false */
2274
2275 if (tp->cookie_values != NULL) {
2276 if (cvp != NULL) {
2277 /* Changed values are recorded by a changed
2278 * pointer, ensuring the cookie will differ,
2279 * without separately hashing each value later.
2280 */
2281 kref_put(&tp->cookie_values->kref,
2282 tcp_cookie_values_release);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002283 } else {
2284 cvp = tp->cookie_values;
2285 }
2286 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002287
William Allen Simpsone56fb502009-12-02 18:19:30 +00002288 if (cvp != NULL) {
2289 cvp->cookie_desired = ctd.tcpct_cookie_desired;
2290
2291 if (ctd.tcpct_used > 0) {
2292 memcpy(cvp->s_data_payload, ctd.tcpct_value,
2293 ctd.tcpct_used);
2294 cvp->s_data_desired = ctd.tcpct_used;
2295 cvp->s_data_constant = 1; /* true */
2296 } else {
2297 /* No constant payload data. */
2298 cvp->s_data_desired = ctd.tcpct_s_data_desired;
2299 cvp->s_data_constant = 0; /* false */
2300 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002301
2302 tp->cookie_values = cvp;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002303 }
2304 release_sock(sk);
2305 return err;
2306 }
2307 default:
2308 /* fallthru */
2309 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002310 }
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (optlen < sizeof(int))
2313 return -EINVAL;
2314
2315 if (get_user(val, (int __user *)optval))
2316 return -EFAULT;
2317
2318 lock_sock(sk);
2319
2320 switch (optname) {
2321 case TCP_MAXSEG:
2322 /* Values greater than interface MTU won't take effect. However
2323 * at the point when this call is done we typically don't yet
2324 * know which interface is going to be used */
David S. Millerc39508d2010-11-24 11:47:22 -08002325 if (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 err = -EINVAL;
2327 break;
2328 }
2329 tp->rx_opt.user_mss = val;
2330 break;
2331
2332 case TCP_NODELAY:
2333 if (val) {
2334 /* TCP_NODELAY is weaker than TCP_CORK, so that
2335 * this option on corked socket is remembered, but
2336 * it is not activated until cork is cleared.
2337 *
2338 * However, when TCP_NODELAY is set we make
2339 * an explicit push, which overrides even TCP_CORK
2340 * for currently queued segments.
2341 */
2342 tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002343 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 } else {
2345 tp->nonagle &= ~TCP_NAGLE_OFF;
2346 }
2347 break;
2348
Andreas Petlund36e31b02010-02-18 02:47:01 +00002349 case TCP_THIN_LINEAR_TIMEOUTS:
2350 if (val < 0 || val > 1)
2351 err = -EINVAL;
2352 else
2353 tp->thin_lto = val;
2354 break;
2355
Andreas Petlund7e380172010-02-18 04:48:19 +00002356 case TCP_THIN_DUPACK:
2357 if (val < 0 || val > 1)
2358 err = -EINVAL;
2359 else
2360 tp->thin_dupack = val;
2361 break;
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 case TCP_CORK:
2364 /* When set indicates to always queue non-full frames.
2365 * Later the user clears this option and we transmit
2366 * any pending partial frames in the queue. This is
2367 * meant to be used alongside sendfile() to get properly
2368 * filled frames when the user (for example) must write
2369 * out headers with a write() call first and then use
2370 * sendfile to send out the data parts.
2371 *
2372 * TCP_CORK can be set together with TCP_NODELAY and it is
2373 * stronger than TCP_NODELAY.
2374 */
2375 if (val) {
2376 tp->nonagle |= TCP_NAGLE_CORK;
2377 } else {
2378 tp->nonagle &= ~TCP_NAGLE_CORK;
2379 if (tp->nonagle&TCP_NAGLE_OFF)
2380 tp->nonagle |= TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002381 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
2383 break;
2384
2385 case TCP_KEEPIDLE:
2386 if (val < 1 || val > MAX_TCP_KEEPIDLE)
2387 err = -EINVAL;
2388 else {
2389 tp->keepalive_time = val * HZ;
2390 if (sock_flag(sk, SOCK_KEEPOPEN) &&
2391 !((1 << sk->sk_state) &
2392 (TCPF_CLOSE | TCPF_LISTEN))) {
Flavio Leitner6c37e5d2010-04-26 18:33:27 +00002393 u32 elapsed = keepalive_time_elapsed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 if (tp->keepalive_time > elapsed)
2395 elapsed = tp->keepalive_time - elapsed;
2396 else
2397 elapsed = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002398 inet_csk_reset_keepalive_timer(sk, elapsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 }
2400 }
2401 break;
2402 case TCP_KEEPINTVL:
2403 if (val < 1 || val > MAX_TCP_KEEPINTVL)
2404 err = -EINVAL;
2405 else
2406 tp->keepalive_intvl = val * HZ;
2407 break;
2408 case TCP_KEEPCNT:
2409 if (val < 1 || val > MAX_TCP_KEEPCNT)
2410 err = -EINVAL;
2411 else
2412 tp->keepalive_probes = val;
2413 break;
2414 case TCP_SYNCNT:
2415 if (val < 1 || val > MAX_TCP_SYNCNT)
2416 err = -EINVAL;
2417 else
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002418 icsk->icsk_syn_retries = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 break;
2420
2421 case TCP_LINGER2:
2422 if (val < 0)
2423 tp->linger2 = -1;
2424 else if (val > sysctl_tcp_fin_timeout / HZ)
2425 tp->linger2 = 0;
2426 else
2427 tp->linger2 = val * HZ;
2428 break;
2429
2430 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002431 /* Translate value in seconds to number of retransmits */
2432 icsk->icsk_accept_queue.rskq_defer_accept =
2433 secs_to_retrans(val, TCP_TIMEOUT_INIT / HZ,
2434 TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 break;
2436
2437 case TCP_WINDOW_CLAMP:
2438 if (!val) {
2439 if (sk->sk_state != TCP_CLOSE) {
2440 err = -EINVAL;
2441 break;
2442 }
2443 tp->window_clamp = 0;
2444 } else
2445 tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
2446 SOCK_MIN_RCVBUF / 2 : val;
2447 break;
2448
2449 case TCP_QUICKACK:
2450 if (!val) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002451 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002453 icsk->icsk_ack.pingpong = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 if ((1 << sk->sk_state) &
2455 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002456 inet_csk_ack_scheduled(sk)) {
2457 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
Chris Leech0e4b4992006-05-23 18:00:16 -07002458 tcp_cleanup_rbuf(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 if (!(val & 1))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002460 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 }
2462 }
2463 break;
2464
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002465#ifdef CONFIG_TCP_MD5SIG
2466 case TCP_MD5SIG:
2467 /* Read the IP->Key mappings from userspace */
2468 err = tp->af_specific->md5_parse(sk, optval, optlen);
2469 break;
2470#endif
Jerry Chudca43c72010-08-27 19:13:28 +00002471 case TCP_USER_TIMEOUT:
2472 /* Cap the max timeout in ms TCP will retry/retrans
2473 * before giving up and aborting (ETIMEDOUT) a connection.
2474 */
Hangbin Liube774312012-07-26 22:52:21 +00002475 if (val < 0)
2476 err = -EINVAL;
2477 else
2478 icsk->icsk_user_timeout = msecs_to_jiffies(val);
Jerry Chudca43c72010-08-27 19:13:28 +00002479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 default:
2481 err = -ENOPROTOOPT;
2482 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002483 }
2484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 release_sock(sk);
2486 return err;
2487}
2488
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002489int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002490 unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002491{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002492 const struct inet_connection_sock *icsk = inet_csk(sk);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002493
2494 if (level != SOL_TCP)
2495 return icsk->icsk_af_ops->setsockopt(sk, level, optname,
2496 optval, optlen);
2497 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2498}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002499EXPORT_SYMBOL(tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002500
2501#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002502int compat_tcp_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002503 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002504{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002505 if (level != SOL_TCP)
2506 return inet_csk_compat_setsockopt(sk, level, optname,
2507 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002508 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2509}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002510EXPORT_SYMBOL(compat_tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002511#endif
2512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513/* Return information about state of tcp endpoint in API format. */
Eric Dumazet43ebcb02015-04-28 15:28:17 -07002514void tcp_get_info(struct sock *sk, struct tcp_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002516 const struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002517 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 u32 now = tcp_time_stamp;
Eric Dumazet5785cf52015-05-21 21:51:19 -07002519 unsigned int start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 memset(info, 0, sizeof(*info));
2522
2523 info->tcpi_state = sk->sk_state;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002524 info->tcpi_ca_state = icsk->icsk_ca_state;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002525 info->tcpi_retransmits = icsk->icsk_retransmits;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002526 info->tcpi_probes = icsk->icsk_probes_out;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002527 info->tcpi_backoff = icsk->icsk_backoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 if (tp->rx_opt.tstamp_ok)
2530 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
Ilpo Järvinene60402d2007-08-09 15:14:46 +03002531 if (tcp_is_sack(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 info->tcpi_options |= TCPI_OPT_SACK;
2533 if (tp->rx_opt.wscale_ok) {
2534 info->tcpi_options |= TCPI_OPT_WSCALE;
2535 info->tcpi_snd_wscale = tp->rx_opt.snd_wscale;
2536 info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Eric Dumazetb5c56932011-10-03 14:01:21 -04002539 if (tp->ecn_flags & TCP_ECN_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 info->tcpi_options |= TCPI_OPT_ECN;
Eric Dumazetb5c56932011-10-03 14:01:21 -04002541 if (tp->ecn_flags & TCP_ECN_SEEN)
2542 info->tcpi_options |= TCPI_OPT_ECN_SEEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002544 info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);
2545 info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002546 info->tcpi_snd_mss = tp->mss_cache;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002547 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Rick Jones5ee3afb2007-09-18 13:26:31 -07002549 if (sk->sk_state == TCP_LISTEN) {
2550 info->tcpi_unacked = sk->sk_ack_backlog;
2551 info->tcpi_sacked = sk->sk_max_ack_backlog;
2552 } else {
2553 info->tcpi_unacked = tp->packets_out;
2554 info->tcpi_sacked = tp->sacked_out;
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 info->tcpi_lost = tp->lost_out;
2557 info->tcpi_retrans = tp->retrans_out;
2558 info->tcpi_fackets = tp->fackets_out;
2559
2560 info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002561 info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp);
2563
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08002564 info->tcpi_pmtu = icsk->icsk_pmtu_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 info->tcpi_rcv_ssthresh = tp->rcv_ssthresh;
2566 info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3;
2567 info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2;
2568 info->tcpi_snd_ssthresh = tp->snd_ssthresh;
2569 info->tcpi_snd_cwnd = tp->snd_cwnd;
2570 info->tcpi_advmss = tp->advmss;
2571 info->tcpi_reordering = tp->reordering;
2572
2573 info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3;
2574 info->tcpi_rcv_space = tp->rcvq_space.space;
2575
2576 info->tcpi_total_retrans = tp->total_retrans;
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002577
Eric Dumazet2698a9c2014-02-13 14:27:40 -08002578 info->tcpi_pacing_rate = sk->sk_pacing_rate != ~0U ?
2579 sk->sk_pacing_rate : ~0ULL;
2580 info->tcpi_max_pacing_rate = sk->sk_max_pacing_rate != ~0U ?
2581 sk->sk_max_pacing_rate : ~0ULL;
2582
Eric Dumazet5785cf52015-05-21 21:51:19 -07002583 do {
2584 start = u64_stats_fetch_begin_irq(&tp->syncp);
2585 info->tcpi_bytes_acked = tp->bytes_acked;
2586 info->tcpi_bytes_received = tp->bytes_received;
2587 } while (u64_stats_fetch_retry_irq(&tp->syncp, start));
Marcelo Ricardo Leitner42301152015-05-20 16:35:41 -07002588 info->tcpi_segs_out = tp->segs_out;
2589 info->tcpi_segs_in = tp->segs_in;
Eric Dumazet43ebcb02015-04-28 15:28:17 -07002590
Steve Mucklef132c6c2012-06-06 18:30:57 -07002591 if (sk->sk_socket) {
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002592 struct file *filep = sk->sk_socket->file;
Steve Mucklef132c6c2012-06-06 18:30:57 -07002593 if (filep)
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002594 info->tcpi_count = atomic_read(&filep->f_count);
2595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597EXPORT_SYMBOL_GPL(tcp_get_info);
2598
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002599static int do_tcp_getsockopt(struct sock *sk, int level,
2600 int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002602 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 struct tcp_sock *tp = tcp_sk(sk);
2604 int val, len;
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (get_user(len, optlen))
2607 return -EFAULT;
2608
2609 len = min_t(unsigned int, len, sizeof(int));
2610
2611 if (len < 0)
2612 return -EINVAL;
2613
2614 switch (optname) {
2615 case TCP_MAXSEG:
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002616 val = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
2618 val = tp->rx_opt.user_mss;
2619 break;
2620 case TCP_NODELAY:
2621 val = !!(tp->nonagle&TCP_NAGLE_OFF);
2622 break;
2623 case TCP_CORK:
2624 val = !!(tp->nonagle&TCP_NAGLE_CORK);
2625 break;
2626 case TCP_KEEPIDLE:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002627 val = keepalive_time_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 break;
2629 case TCP_KEEPINTVL:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002630 val = keepalive_intvl_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 break;
2632 case TCP_KEEPCNT:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002633 val = keepalive_probes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 break;
2635 case TCP_SYNCNT:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002636 val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 break;
2638 case TCP_LINGER2:
2639 val = tp->linger2;
2640 if (val >= 0)
2641 val = (val ? : sysctl_tcp_fin_timeout) / HZ;
2642 break;
2643 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002644 val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept,
2645 TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 break;
2647 case TCP_WINDOW_CLAMP:
2648 val = tp->window_clamp;
2649 break;
2650 case TCP_INFO: {
2651 struct tcp_info info;
2652
2653 if (get_user(len, optlen))
2654 return -EFAULT;
2655
2656 tcp_get_info(sk, &info);
2657
2658 len = min_t(unsigned int, len, sizeof(info));
2659 if (put_user(len, optlen))
2660 return -EFAULT;
2661 if (copy_to_user(optval, &info, len))
2662 return -EFAULT;
2663 return 0;
2664 }
2665 case TCP_QUICKACK:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002666 val = !icsk->icsk_ack.pingpong;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 break;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002668
2669 case TCP_CONGESTION:
2670 if (get_user(len, optlen))
2671 return -EFAULT;
2672 len = min_t(unsigned int, len, TCP_CA_NAME_MAX);
2673 if (put_user(len, optlen))
2674 return -EFAULT;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002675 if (copy_to_user(optval, icsk->icsk_ca_ops->name, len))
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002676 return -EFAULT;
2677 return 0;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002678
2679 case TCP_COOKIE_TRANSACTIONS: {
2680 struct tcp_cookie_transactions ctd;
2681 struct tcp_cookie_values *cvp = tp->cookie_values;
2682
2683 if (get_user(len, optlen))
2684 return -EFAULT;
2685 if (len < sizeof(ctd))
2686 return -EINVAL;
2687
2688 memset(&ctd, 0, sizeof(ctd));
2689 ctd.tcpct_flags = (tp->rx_opt.cookie_in_always ?
2690 TCP_COOKIE_IN_ALWAYS : 0)
2691 | (tp->rx_opt.cookie_out_never ?
2692 TCP_COOKIE_OUT_NEVER : 0);
2693
2694 if (cvp != NULL) {
2695 ctd.tcpct_flags |= (cvp->s_data_in ?
2696 TCP_S_DATA_IN : 0)
2697 | (cvp->s_data_out ?
2698 TCP_S_DATA_OUT : 0);
2699
2700 ctd.tcpct_cookie_desired = cvp->cookie_desired;
2701 ctd.tcpct_s_data_desired = cvp->s_data_desired;
2702
William Allen Simpsone56fb502009-12-02 18:19:30 +00002703 memcpy(&ctd.tcpct_value[0], &cvp->cookie_pair[0],
2704 cvp->cookie_pair_size);
2705 ctd.tcpct_used = cvp->cookie_pair_size;
2706 }
2707
2708 if (put_user(sizeof(ctd), optlen))
2709 return -EFAULT;
2710 if (copy_to_user(optval, &ctd, sizeof(ctd)))
2711 return -EFAULT;
2712 return 0;
2713 }
Josh Hunt3c0fef02010-07-30 13:49:35 +00002714 case TCP_THIN_LINEAR_TIMEOUTS:
2715 val = tp->thin_lto;
2716 break;
2717 case TCP_THIN_DUPACK:
2718 val = tp->thin_dupack;
2719 break;
Jerry Chudca43c72010-08-27 19:13:28 +00002720
2721 case TCP_USER_TIMEOUT:
2722 val = jiffies_to_msecs(icsk->icsk_user_timeout);
2723 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 default:
2725 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 if (put_user(len, optlen))
2729 return -EFAULT;
2730 if (copy_to_user(optval, &val, len))
2731 return -EFAULT;
2732 return 0;
2733}
2734
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002735int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval,
2736 int __user *optlen)
2737{
2738 struct inet_connection_sock *icsk = inet_csk(sk);
2739
2740 if (level != SOL_TCP)
2741 return icsk->icsk_af_ops->getsockopt(sk, level, optname,
2742 optval, optlen);
2743 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2744}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002745EXPORT_SYMBOL(tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002746
2747#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002748int compat_tcp_getsockopt(struct sock *sk, int level, int optname,
2749 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002750{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002751 if (level != SOL_TCP)
2752 return inet_csk_compat_getsockopt(sk, level, optname,
2753 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002754 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2755}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002756EXPORT_SYMBOL(compat_tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002759struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
2760 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002761{
2762 struct sk_buff *segs = ERR_PTR(-EINVAL);
2763 struct tcphdr *th;
2764 unsigned thlen;
2765 unsigned int seq;
Al Virod3bc23e2006-11-14 21:24:49 -08002766 __be32 delta;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002767 unsigned int oldlen;
Herbert Xu4e704ee2009-01-14 20:41:12 -08002768 unsigned int mss;
Eric Dumazet7d93f342013-04-12 11:31:52 +00002769 struct sk_buff *gso_skb = skb;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002770
2771 if (!pskb_may_pull(skb, sizeof(*th)))
2772 goto out;
2773
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002774 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002775 thlen = th->doff * 4;
2776 if (thlen < sizeof(*th))
2777 goto out;
2778
2779 if (!pskb_may_pull(skb, thlen))
2780 goto out;
2781
Herbert Xu0718bcc2006-06-25 23:55:46 -07002782 oldlen = (u16)~skb->len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002783 __skb_pull(skb, thlen);
2784
Herbert Xu4e704ee2009-01-14 20:41:12 -08002785 mss = skb_shinfo(skb)->gso_size;
2786 if (unlikely(skb->len <= mss))
2787 goto out;
2788
Herbert Xu3820c3f2006-06-29 20:11:25 -07002789 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
2790 /* Packet is from an untrusted source, reset gso_segs. */
Herbert Xubbcf4672006-07-03 19:38:35 -07002791 int type = skb_shinfo(skb)->gso_type;
Herbert Xu3820c3f2006-06-29 20:11:25 -07002792
Herbert Xubbcf4672006-07-03 19:38:35 -07002793 if (unlikely(type &
2794 ~(SKB_GSO_TCPV4 |
2795 SKB_GSO_DODGY |
2796 SKB_GSO_TCP_ECN |
2797 SKB_GSO_TCPV6 |
2798 0) ||
2799 !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))))
2800 goto out;
2801
Ilpo Järvinen172589c2007-08-28 15:50:33 -07002802 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
Herbert Xu3820c3f2006-06-29 20:11:25 -07002803
2804 segs = NULL;
2805 goto out;
2806 }
2807
Herbert Xu576a30e2006-06-27 13:22:38 -07002808 segs = skb_segment(skb, features);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002809 if (IS_ERR(segs))
2810 goto out;
2811
Herbert Xu4e704ee2009-01-14 20:41:12 -08002812 delta = htonl(oldlen + (thlen + mss));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002813
2814 skb = segs;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002815 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002816 seq = ntohl(th->seq);
2817
2818 do {
2819 th->fin = th->psh = 0;
2820
Al Virod3bc23e2006-11-14 21:24:49 -08002821 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2822 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002823 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002824 th->check =
2825 csum_fold(csum_partial(skb_transport_header(skb),
2826 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002827
Herbert Xu4e704ee2009-01-14 20:41:12 -08002828 seq += mss;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002829 skb = skb->next;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002830 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002831
2832 th->seq = htonl(seq);
2833 th->cwr = 0;
2834 } while (skb->next);
2835
Eric Dumazet7d93f342013-04-12 11:31:52 +00002836 /* Following permits TCP Small Queues to work well with GSO :
2837 * The callback to TCP stack will be called at the time last frag
2838 * is freed at TX completion, and not right now when gso_skb
2839 * is freed by GSO engine
2840 */
2841 if (gso_skb->destructor == tcp_wfree) {
2842 swap(gso_skb->sk, skb->sk);
2843 swap(gso_skb->destructor, skb->destructor);
2844 swap(gso_skb->truesize, skb->truesize);
2845 }
2846
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002847 delta = htonl(oldlen + (skb->tail - skb->transport_header) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002848 skb->data_len);
Al Virod3bc23e2006-11-14 21:24:49 -08002849 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2850 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002851 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002852 th->check = csum_fold(csum_partial(skb_transport_header(skb),
2853 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002854
2855out:
2856 return segs;
2857}
Herbert Xuadcfc7d2006-06-30 13:36:15 -07002858EXPORT_SYMBOL(tcp_tso_segment);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002859
Herbert Xubf296b12008-12-15 23:43:36 -08002860struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2861{
2862 struct sk_buff **pp = NULL;
2863 struct sk_buff *p;
2864 struct tcphdr *th;
2865 struct tcphdr *th2;
Herbert Xua0a69a02009-04-17 02:34:38 -07002866 unsigned int len;
Herbert Xubf296b12008-12-15 23:43:36 -08002867 unsigned int thlen;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002868 __be32 flags;
Herbert Xubf296b12008-12-15 23:43:36 -08002869 unsigned int mss = 1;
Herbert Xua5b1cf22009-05-26 18:50:28 +00002870 unsigned int hlen;
2871 unsigned int off;
Herbert Xubf296b12008-12-15 23:43:36 -08002872 int flush = 1;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002873 int i;
Herbert Xubf296b12008-12-15 23:43:36 -08002874
Herbert Xua5b1cf22009-05-26 18:50:28 +00002875 off = skb_gro_offset(skb);
2876 hlen = off + sizeof(*th);
2877 th = skb_gro_header_fast(skb, off);
2878 if (skb_gro_header_hard(skb, hlen)) {
2879 th = skb_gro_header_slow(skb, hlen, off);
2880 if (unlikely(!th))
2881 goto out;
2882 }
Herbert Xubf296b12008-12-15 23:43:36 -08002883
Herbert Xubf296b12008-12-15 23:43:36 -08002884 thlen = th->doff * 4;
2885 if (thlen < sizeof(*th))
2886 goto out;
2887
Herbert Xua5b1cf22009-05-26 18:50:28 +00002888 hlen = off + thlen;
2889 if (skb_gro_header_hard(skb, hlen)) {
2890 th = skb_gro_header_slow(skb, hlen, off);
2891 if (unlikely(!th))
2892 goto out;
2893 }
Herbert Xubf296b12008-12-15 23:43:36 -08002894
Herbert Xu86911732009-01-29 14:19:50 +00002895 skb_gro_pull(skb, thlen);
Herbert Xubf296b12008-12-15 23:43:36 -08002896
Herbert Xua0a69a02009-04-17 02:34:38 -07002897 len = skb_gro_len(skb);
Herbert Xubf296b12008-12-15 23:43:36 -08002898 flags = tcp_flag_word(th);
2899
2900 for (; (p = *head); head = &p->next) {
2901 if (!NAPI_GRO_CB(p)->same_flow)
2902 continue;
2903
2904 th2 = tcp_hdr(p);
2905
Herbert Xu745898e2009-05-26 18:50:24 +00002906 if (*(u32 *)&th->source ^ *(u32 *)&th2->source) {
Herbert Xubf296b12008-12-15 23:43:36 -08002907 NAPI_GRO_CB(p)->same_flow = 0;
2908 continue;
2909 }
2910
2911 goto found;
2912 }
2913
2914 goto out_check_final;
2915
2916found:
2917 flush = NAPI_GRO_CB(p)->flush;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002918 flush |= (__force int)(flags & TCP_FLAG_CWR);
2919 flush |= (__force int)((flags ^ tcp_flag_word(th2)) &
2920 ~(TCP_FLAG_CWR | TCP_FLAG_FIN | TCP_FLAG_PSH));
2921 flush |= (__force int)(th->ack_seq ^ th2->ack_seq);
Herbert Xua2a804c2009-05-26 18:50:34 +00002922 for (i = sizeof(*th); i < thlen; i += 4)
Herbert Xuaa6320d2009-02-08 18:00:40 +00002923 flush |= *(u32 *)((u8 *)th + i) ^
2924 *(u32 *)((u8 *)th2 + i);
Herbert Xubf296b12008-12-15 23:43:36 -08002925
Herbert Xub5302562009-01-04 16:13:19 -08002926 mss = skb_shinfo(p)->gso_size;
Herbert Xubf296b12008-12-15 23:43:36 -08002927
Herbert Xu30a3ae32009-05-26 18:50:26 +00002928 flush |= (len - 1) >= mss;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002929 flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
Herbert Xubf296b12008-12-15 23:43:36 -08002930
2931 if (flush || skb_gro_receive(head, skb)) {
2932 mss = 1;
2933 goto out_check_final;
2934 }
2935
2936 p = *head;
2937 th2 = tcp_hdr(p);
2938 tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH);
2939
2940out_check_final:
Herbert Xua0a69a02009-04-17 02:34:38 -07002941 flush = len < mss;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002942 flush |= (__force int)(flags & (TCP_FLAG_URG | TCP_FLAG_PSH |
2943 TCP_FLAG_RST | TCP_FLAG_SYN |
2944 TCP_FLAG_FIN));
Herbert Xubf296b12008-12-15 23:43:36 -08002945
2946 if (p && (!NAPI_GRO_CB(skb)->same_flow || flush))
2947 pp = head;
2948
2949out:
2950 NAPI_GRO_CB(skb)->flush |= flush;
2951
2952 return pp;
2953}
Herbert Xu684f2172009-01-08 10:41:23 -08002954EXPORT_SYMBOL(tcp_gro_receive);
Herbert Xubf296b12008-12-15 23:43:36 -08002955
2956int tcp_gro_complete(struct sk_buff *skb)
2957{
2958 struct tcphdr *th = tcp_hdr(skb);
2959
2960 skb->csum_start = skb_transport_header(skb) - skb->head;
2961 skb->csum_offset = offsetof(struct tcphdr, check);
2962 skb->ip_summed = CHECKSUM_PARTIAL;
2963
Herbert Xubf296b12008-12-15 23:43:36 -08002964 skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
2965
2966 if (th->cwr)
2967 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
2968
2969 return 0;
2970}
Herbert Xu684f2172009-01-08 10:41:23 -08002971EXPORT_SYMBOL(tcp_gro_complete);
Herbert Xubf296b12008-12-15 23:43:36 -08002972
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002973#ifdef CONFIG_TCP_MD5SIG
2974static unsigned long tcp_md5sig_users;
Eric Dumazet765cf992011-09-12 20:28:37 +00002975static struct tcp_md5sig_pool __percpu *tcp_md5sig_pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002976static DEFINE_SPINLOCK(tcp_md5sig_pool_lock);
2977
Eric Dumazet765cf992011-09-12 20:28:37 +00002978static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool __percpu *pool)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002979{
2980 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002981
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002982 for_each_possible_cpu(cpu) {
Eric Dumazet765cf992011-09-12 20:28:37 +00002983 struct tcp_md5sig_pool *p = per_cpu_ptr(pool, cpu);
2984
2985 if (p->md5_desc.tfm)
2986 crypto_free_hash(p->md5_desc.tfm);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002987 }
2988 free_percpu(pool);
2989}
2990
2991void tcp_free_md5sig_pool(void)
2992{
Eric Dumazet765cf992011-09-12 20:28:37 +00002993 struct tcp_md5sig_pool __percpu *pool = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002994
David S. Miller2c4f6212007-02-20 23:51:47 -08002995 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002996 if (--tcp_md5sig_users == 0) {
2997 pool = tcp_md5sig_pool;
2998 tcp_md5sig_pool = NULL;
2999 }
David S. Miller2c4f6212007-02-20 23:51:47 -08003000 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003001 if (pool)
3002 __tcp_free_md5sig_pool(pool);
3003}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003004EXPORT_SYMBOL(tcp_free_md5sig_pool);
3005
Eric Dumazet765cf992011-09-12 20:28:37 +00003006static struct tcp_md5sig_pool __percpu *
Tejun Heo7d720c32010-02-16 15:20:26 +00003007__tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003008{
3009 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00003010 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003011
Eric Dumazet765cf992011-09-12 20:28:37 +00003012 pool = alloc_percpu(struct tcp_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003013 if (!pool)
3014 return NULL;
3015
3016 for_each_possible_cpu(cpu) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003017 struct crypto_hash *hash;
3018
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003019 hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
3020 if (!hash || IS_ERR(hash))
3021 goto out_free;
3022
Eric Dumazet765cf992011-09-12 20:28:37 +00003023 per_cpu_ptr(pool, cpu)->md5_desc.tfm = hash;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003024 }
3025 return pool;
3026out_free:
3027 __tcp_free_md5sig_pool(pool);
3028 return NULL;
3029}
3030
Eric Dumazet765cf992011-09-12 20:28:37 +00003031struct tcp_md5sig_pool __percpu *tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003032{
Eric Dumazet765cf992011-09-12 20:28:37 +00003033 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003034 int alloc = 0;
3035
3036retry:
David S. Miller2c4f6212007-02-20 23:51:47 -08003037 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003038 pool = tcp_md5sig_pool;
3039 if (tcp_md5sig_users++ == 0) {
3040 alloc = 1;
David S. Miller2c4f6212007-02-20 23:51:47 -08003041 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003042 } else if (!pool) {
3043 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08003044 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003045 cpu_relax();
3046 goto retry;
3047 } else
David S. Miller2c4f6212007-02-20 23:51:47 -08003048 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003049
3050 if (alloc) {
3051 /* we cannot hold spinlock here because this may sleep. */
Eric Dumazet765cf992011-09-12 20:28:37 +00003052 struct tcp_md5sig_pool __percpu *p;
Tejun Heo7d720c32010-02-16 15:20:26 +00003053
3054 p = __tcp_alloc_md5sig_pool(sk);
David S. Miller2c4f6212007-02-20 23:51:47 -08003055 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003056 if (!p) {
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 return NULL;
3060 }
3061 pool = tcp_md5sig_pool;
3062 if (pool) {
3063 /* oops, it has already been assigned. */
David S. Miller2c4f6212007-02-20 23:51:47 -08003064 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003065 __tcp_free_md5sig_pool(p);
3066 } else {
3067 tcp_md5sig_pool = pool = p;
David S. Miller2c4f6212007-02-20 23:51:47 -08003068 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003069 }
3070 }
3071 return pool;
3072}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003073EXPORT_SYMBOL(tcp_alloc_md5sig_pool);
3074
Eric Dumazet35790c02010-05-16 00:34:04 -07003075
3076/**
3077 * tcp_get_md5sig_pool - get md5sig_pool for this user
3078 *
3079 * We use percpu structure, so if we succeed, we exit with preemption
3080 * and BH disabled, to make sure another thread or softirq handling
3081 * wont try to get same context.
3082 */
3083struct tcp_md5sig_pool *tcp_get_md5sig_pool(void)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003084{
Eric Dumazet765cf992011-09-12 20:28:37 +00003085 struct tcp_md5sig_pool __percpu *p;
Eric Dumazet35790c02010-05-16 00:34:04 -07003086
3087 local_bh_disable();
3088
3089 spin_lock(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003090 p = tcp_md5sig_pool;
3091 if (p)
3092 tcp_md5sig_users++;
Eric Dumazet35790c02010-05-16 00:34:04 -07003093 spin_unlock(&tcp_md5sig_pool_lock);
3094
3095 if (p)
Eric Dumazet765cf992011-09-12 20:28:37 +00003096 return this_cpu_ptr(p);
Eric Dumazet35790c02010-05-16 00:34:04 -07003097
3098 local_bh_enable();
3099 return NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003100}
Eric Dumazet35790c02010-05-16 00:34:04 -07003101EXPORT_SYMBOL(tcp_get_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003102
Eric Dumazet35790c02010-05-16 00:34:04 -07003103void tcp_put_md5sig_pool(void)
David S. Miller6931ba72006-12-13 16:25:44 -08003104{
Eric Dumazet35790c02010-05-16 00:34:04 -07003105 local_bh_enable();
David S. Miller6931ba72006-12-13 16:25:44 -08003106 tcp_free_md5sig_pool();
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003107}
Eric Dumazet35790c02010-05-16 00:34:04 -07003108EXPORT_SYMBOL(tcp_put_md5sig_pool);
Adam Langley49a72df2008-07-19 00:01:42 -07003109
3110int tcp_md5_hash_header(struct tcp_md5sig_pool *hp,
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003111 const struct tcphdr *th)
Adam Langley49a72df2008-07-19 00:01:42 -07003112{
3113 struct scatterlist sg;
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003114 struct tcphdr hdr;
Adam Langley49a72df2008-07-19 00:01:42 -07003115 int err;
3116
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003117 /* We are not allowed to change tcphdr, make a local copy */
3118 memcpy(&hdr, th, sizeof(hdr));
3119 hdr.check = 0;
3120
Adam Langley49a72df2008-07-19 00:01:42 -07003121 /* options aren't included in the hash */
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003122 sg_init_one(&sg, &hdr, sizeof(hdr));
3123 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr));
Adam Langley49a72df2008-07-19 00:01:42 -07003124 return err;
3125}
Adam Langley49a72df2008-07-19 00:01:42 -07003126EXPORT_SYMBOL(tcp_md5_hash_header);
3127
3128int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp,
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003129 const struct sk_buff *skb, unsigned int header_len)
Adam Langley49a72df2008-07-19 00:01:42 -07003130{
3131 struct scatterlist sg;
3132 const struct tcphdr *tp = tcp_hdr(skb);
3133 struct hash_desc *desc = &hp->md5_desc;
3134 unsigned i;
3135 const unsigned head_data_len = skb_headlen(skb) > header_len ?
3136 skb_headlen(skb) - header_len : 0;
3137 const struct skb_shared_info *shi = skb_shinfo(skb);
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003138 struct sk_buff *frag_iter;
Adam Langley49a72df2008-07-19 00:01:42 -07003139
3140 sg_init_table(&sg, 1);
3141
3142 sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len);
3143 if (crypto_hash_update(desc, &sg, head_data_len))
3144 return 1;
3145
3146 for (i = 0; i < shi->nr_frags; ++i) {
3147 const struct skb_frag_struct *f = &shi->frags[i];
Eric Dumazetc47ba752013-05-13 21:25:52 +00003148 unsigned int offset = f->page_offset;
3149 struct page *page = skb_frag_page(f) + (offset >> PAGE_SHIFT);
3150
3151 sg_set_page(&sg, page, skb_frag_size(f),
3152 offset_in_page(offset));
Eric Dumazet9e903e02011-10-18 21:00:24 +00003153 if (crypto_hash_update(desc, &sg, skb_frag_size(f)))
Adam Langley49a72df2008-07-19 00:01:42 -07003154 return 1;
3155 }
3156
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003157 skb_walk_frags(skb, frag_iter)
3158 if (tcp_md5_hash_skb_data(hp, frag_iter, 0))
3159 return 1;
3160
Adam Langley49a72df2008-07-19 00:01:42 -07003161 return 0;
3162}
Adam Langley49a72df2008-07-19 00:01:42 -07003163EXPORT_SYMBOL(tcp_md5_hash_skb_data);
3164
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003165int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key)
Adam Langley49a72df2008-07-19 00:01:42 -07003166{
3167 struct scatterlist sg;
3168
3169 sg_init_one(&sg, key->key, key->keylen);
3170 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen);
3171}
Adam Langley49a72df2008-07-19 00:01:42 -07003172EXPORT_SYMBOL(tcp_md5_hash_key);
3173
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003174#endif
3175
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003176/**
3177 * Each Responder maintains up to two secret values concurrently for
3178 * efficient secret rollover. Each secret value has 4 states:
3179 *
3180 * Generating. (tcp_secret_generating != tcp_secret_primary)
3181 * Generates new Responder-Cookies, but not yet used for primary
3182 * verification. This is a short-term state, typically lasting only
3183 * one round trip time (RTT).
3184 *
3185 * Primary. (tcp_secret_generating == tcp_secret_primary)
3186 * Used both for generation and primary verification.
3187 *
3188 * Retiring. (tcp_secret_retiring != tcp_secret_secondary)
3189 * Used for verification, until the first failure that can be
3190 * verified by the newer Generating secret. At that time, this
3191 * cookie's state is changed to Secondary, and the Generating
3192 * cookie's state is changed to Primary. This is a short-term state,
3193 * typically lasting only one round trip time (RTT).
3194 *
3195 * Secondary. (tcp_secret_retiring == tcp_secret_secondary)
3196 * Used for secondary verification, after primary verification
3197 * failures. This state lasts no more than twice the Maximum Segment
3198 * Lifetime (2MSL). Then, the secret is discarded.
3199 */
3200struct tcp_cookie_secret {
3201 /* The secret is divided into two parts. The digest part is the
3202 * equivalent of previously hashing a secret and saving the state,
3203 * and serves as an initialization vector (IV). The message part
3204 * serves as the trailing secret.
3205 */
3206 u32 secrets[COOKIE_WORKSPACE_WORDS];
3207 unsigned long expires;
3208};
3209
3210#define TCP_SECRET_1MSL (HZ * TCP_PAWS_MSL)
3211#define TCP_SECRET_2MSL (HZ * TCP_PAWS_MSL * 2)
3212#define TCP_SECRET_LIFE (HZ * 600)
3213
3214static struct tcp_cookie_secret tcp_secret_one;
3215static struct tcp_cookie_secret tcp_secret_two;
3216
3217/* Essentially a circular list, without dynamic allocation. */
3218static struct tcp_cookie_secret *tcp_secret_generating;
3219static struct tcp_cookie_secret *tcp_secret_primary;
3220static struct tcp_cookie_secret *tcp_secret_retiring;
3221static struct tcp_cookie_secret *tcp_secret_secondary;
3222
3223static DEFINE_SPINLOCK(tcp_secret_locker);
3224
3225/* Select a pseudo-random word in the cookie workspace.
3226 */
3227static inline u32 tcp_cookie_work(const u32 *ws, const int n)
3228{
3229 return ws[COOKIE_DIGEST_WORDS + ((COOKIE_MESSAGE_WORDS-1) & ws[n])];
3230}
3231
3232/* Fill bakery[COOKIE_WORKSPACE_WORDS] with generator, updating as needed.
3233 * Called in softirq context.
3234 * Returns: 0 for success.
3235 */
3236int tcp_cookie_generator(u32 *bakery)
3237{
3238 unsigned long jiffy = jiffies;
3239
3240 if (unlikely(time_after_eq(jiffy, tcp_secret_generating->expires))) {
3241 spin_lock_bh(&tcp_secret_locker);
3242 if (!time_after_eq(jiffy, tcp_secret_generating->expires)) {
3243 /* refreshed by another */
3244 memcpy(bakery,
3245 &tcp_secret_generating->secrets[0],
3246 COOKIE_WORKSPACE_WORDS);
3247 } else {
3248 /* still needs refreshing */
3249 get_random_bytes(bakery, COOKIE_WORKSPACE_WORDS);
3250
3251 /* The first time, paranoia assumes that the
3252 * randomization function isn't as strong. But,
3253 * this secret initialization is delayed until
3254 * the last possible moment (packet arrival).
3255 * Although that time is observable, it is
3256 * unpredictably variable. Mash in the most
3257 * volatile clock bits available, and expire the
3258 * secret extra quickly.
3259 */
3260 if (unlikely(tcp_secret_primary->expires ==
3261 tcp_secret_secondary->expires)) {
3262 struct timespec tv;
3263
3264 getnstimeofday(&tv);
3265 bakery[COOKIE_DIGEST_WORDS+0] ^=
3266 (u32)tv.tv_nsec;
3267
3268 tcp_secret_secondary->expires = jiffy
3269 + TCP_SECRET_1MSL
3270 + (0x0f & tcp_cookie_work(bakery, 0));
3271 } else {
3272 tcp_secret_secondary->expires = jiffy
3273 + TCP_SECRET_LIFE
3274 + (0xff & tcp_cookie_work(bakery, 1));
3275 tcp_secret_primary->expires = jiffy
3276 + TCP_SECRET_2MSL
3277 + (0x1f & tcp_cookie_work(bakery, 2));
3278 }
3279 memcpy(&tcp_secret_secondary->secrets[0],
3280 bakery, COOKIE_WORKSPACE_WORDS);
3281
3282 rcu_assign_pointer(tcp_secret_generating,
3283 tcp_secret_secondary);
3284 rcu_assign_pointer(tcp_secret_retiring,
3285 tcp_secret_primary);
3286 /*
3287 * Neither call_rcu() nor synchronize_rcu() needed.
3288 * Retiring data is not freed. It is replaced after
3289 * further (locked) pointer updates, and a quiet time
3290 * (minimum 1MSL, maximum LIFE - 2MSL).
3291 */
3292 }
3293 spin_unlock_bh(&tcp_secret_locker);
3294 } else {
3295 rcu_read_lock_bh();
3296 memcpy(bakery,
3297 &rcu_dereference(tcp_secret_generating)->secrets[0],
3298 COOKIE_WORKSPACE_WORDS);
3299 rcu_read_unlock_bh();
3300 }
3301 return 0;
3302}
3303EXPORT_SYMBOL(tcp_cookie_generator);
3304
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003305void tcp_done(struct sock *sk)
3306{
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08003307 if (sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV)
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07003308 TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS);
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003309
3310 tcp_set_state(sk, TCP_CLOSE);
3311 tcp_clear_xmit_timers(sk);
3312
3313 sk->sk_shutdown = SHUTDOWN_MASK;
3314
3315 if (!sock_flag(sk, SOCK_DEAD))
3316 sk->sk_state_change(sk);
3317 else
3318 inet_csk_destroy_sock(sk);
3319}
3320EXPORT_SYMBOL_GPL(tcp_done);
3321
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003322int tcp_abort(struct sock *sk, int err)
3323{
3324 if (sk->sk_state == TCP_TIME_WAIT) {
3325 inet_twsk_put((struct inet_timewait_sock *)sk);
3326 return -EOPNOTSUPP;
3327 }
3328
3329 /* Don't race with userspace socket closes such as tcp_close. */
3330 lock_sock(sk);
3331
Lorenzo Colitti496b6d02015-12-20 02:39:43 +09003332 if (sk->sk_state == TCP_LISTEN) {
3333 tcp_set_state(sk, TCP_CLOSE);
3334 inet_csk_listen_stop(sk);
3335 }
3336
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003337 /* Don't race with BH socket closes such as inet_csk_listen_stop. */
3338 local_bh_disable();
3339 bh_lock_sock(sk);
3340
3341 if (!sock_flag(sk, SOCK_DEAD)) {
3342 sk->sk_err = err;
3343 /* This barrier is coupled with smp_rmb() in tcp_poll() */
3344 smp_wmb();
3345 sk->sk_error_report(sk);
3346 if (tcp_need_reset(sk->sk_state))
3347 tcp_send_active_reset(sk, GFP_ATOMIC);
3348 tcp_done(sk);
3349 }
3350
3351 bh_unlock_sock(sk);
3352 local_bh_enable();
3353 release_sock(sk);
3354 sock_put(sk);
3355 return 0;
3356}
3357EXPORT_SYMBOL_GPL(tcp_abort);
3358
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07003359extern struct tcp_congestion_ops tcp_reno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360
3361static __initdata unsigned long thash_entries;
3362static int __init set_thash_entries(char *str)
3363{
3364 if (!str)
3365 return 0;
3366 thash_entries = simple_strtoul(str, &str, 0);
3367 return 1;
3368}
3369__setup("thash_entries=", set_thash_entries);
3370
Glauber Costa4acb4192012-01-30 01:20:17 +00003371void tcp_init_mem(struct net *net)
3372{
Glauber Costa4acb4192012-01-30 01:20:17 +00003373 unsigned long limit = nr_free_buffer_pages() / 8;
3374 limit = max(limit, 128UL);
3375 net->ipv4.sysctl_tcp_mem[0] = limit / 4 * 3;
3376 net->ipv4.sysctl_tcp_mem[1] = limit;
3377 net->ipv4.sysctl_tcp_mem[2] = net->ipv4.sysctl_tcp_mem[0] * 2;
3378}
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380void __init tcp_init(void)
3381{
3382 struct sk_buff *skb = NULL;
Eric Dumazetf03d78d2011-07-07 00:27:05 -07003383 unsigned long limit;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003384 int max_rshare, max_wshare, cnt;
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003385 unsigned int i;
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003386 unsigned long jiffy = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Eric Dumazet36a84b22019-05-17 17:17:22 -07003388 BUILD_BUG_ON(TCP_MIN_SND_MSS <= MAX_TCP_OPTION_SPACE);
Pavel Emelyanov1f9e6362007-12-11 02:12:04 -08003389 BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Eric Dumazet17483762008-11-25 21:16:35 -08003391 percpu_counter_init(&tcp_sockets_allocated, 0);
Eric Dumazetdd24c002008-11-25 21:17:14 -08003392 percpu_counter_init(&tcp_orphan_count, 0);
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003393 tcp_hashinfo.bind_bucket_cachep =
3394 kmem_cache_create("tcp_bind_bucket",
3395 sizeof(struct inet_bind_bucket), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003396 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 /* Size and allocate the main established and bind bucket
3399 * hash tables.
3400 *
3401 * The methodology is similar to that of the buffer cache.
3402 */
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003403 tcp_hashinfo.ehash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 alloc_large_system_hash("TCP established",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003405 sizeof(struct inet_ehash_bucket),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 thash_entries,
Jan Beulich44813742009-09-21 17:03:05 -07003407 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003408 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003409 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 NULL,
Eric Dumazetf373b532009-10-09 00:16:19 +00003411 &tcp_hashinfo.ehash_mask,
Jean Delvare0ccfe612007-10-30 00:59:25 -07003412 thash_entries ? 0 : 512 * 1024);
Eric Dumazetf373b532009-10-09 00:16:19 +00003413 for (i = 0; i <= tcp_hashinfo.ehash_mask; i++) {
Eric Dumazet3ab5aee2008-11-16 19:40:17 -08003414 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].chain, i);
3415 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].twchain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 }
Eric Dumazet230140c2007-11-07 02:40:20 -08003417 if (inet_ehash_locks_alloc(&tcp_hashinfo))
3418 panic("TCP: failed to alloc ehash_locks");
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003419 tcp_hashinfo.bhash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 alloc_large_system_hash("TCP bind",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003421 sizeof(struct inet_bind_hashbucket),
Eric Dumazetf373b532009-10-09 00:16:19 +00003422 tcp_hashinfo.ehash_mask + 1,
Jan Beulich44813742009-09-21 17:03:05 -07003423 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003424 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003425 0,
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003426 &tcp_hashinfo.bhash_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 NULL,
3428 64 * 1024);
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003429 tcp_hashinfo.bhash_size = 1U << tcp_hashinfo.bhash_size;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003430 for (i = 0; i < tcp_hashinfo.bhash_size; i++) {
3431 spin_lock_init(&tcp_hashinfo.bhash[i].lock);
3432 INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 }
3434
Eric Dumazetc5ed63d2010-08-25 23:02:17 -07003435
3436 cnt = tcp_hashinfo.ehash_mask + 1;
3437
3438 tcp_death_row.sysctl_max_tw_buckets = cnt / 2;
3439 sysctl_tcp_max_orphans = cnt / 2;
3440 sysctl_max_syn_backlog = max(128, cnt / 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Glauber Costa4acb4192012-01-30 01:20:17 +00003442 tcp_init_mem(&init_net);
Jason Wangc43b8742012-02-02 00:07:00 +00003443 /* Set per-socket limits to no more than 1/128 the pressure threshold */
Eric Dumazet5fb84b12012-04-10 00:56:42 +00003444 limit = nr_free_buffer_pages() << (PAGE_SHIFT - 7);
Eric Dumazetb49960a2012-05-02 02:28:41 +00003445 max_wshare = min(4UL*1024*1024, limit);
3446 max_rshare = min(6UL*1024*1024, limit);
John Heffner7b4f4b52006-03-25 01:34:07 -08003447
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003448 sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003449 sysctl_tcp_wmem[1] = 16*1024;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003450 sysctl_tcp_wmem[2] = max(64*1024, max_wshare);
John Heffner7b4f4b52006-03-25 01:34:07 -08003451
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003452 sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003453 sysctl_tcp_rmem[1] = 87380;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003454 sysctl_tcp_rmem[2] = max(87380, max_rshare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Joe Perchesafd465032012-03-12 07:03:32 +00003456 pr_info("Hash tables configured (established %u bind %u)\n",
Joe Perches058bd4d2012-03-11 18:36:11 +00003457 tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07003458
3459 tcp_register_congestion_control(&tcp_reno);
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003460
3461 memset(&tcp_secret_one.secrets[0], 0, sizeof(tcp_secret_one.secrets));
3462 memset(&tcp_secret_two.secrets[0], 0, sizeof(tcp_secret_two.secrets));
3463 tcp_secret_one.expires = jiffy; /* past due */
3464 tcp_secret_two.expires = jiffy; /* past due */
3465 tcp_secret_generating = &tcp_secret_one;
3466 tcp_secret_primary = &tcp_secret_one;
3467 tcp_secret_retiring = &tcp_secret_two;
3468 tcp_secret_secondary = &tcp_secret_two;
Eric Dumazetc75f2452012-07-11 05:50:31 +00003469 tcp_tasklet_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470}
Robert Love2365d052008-05-12 17:08:29 -04003471
3472static int tcp_is_local(struct net *net, __be32 addr) {
3473 struct rtable *rt;
3474 struct flowi4 fl4 = { .daddr = addr };
liping.zhang5d85af12016-02-18 12:16:53 +08003475 int is_local;
Robert Love2365d052008-05-12 17:08:29 -04003476 rt = ip_route_output_key(net, &fl4);
3477 if (IS_ERR_OR_NULL(rt))
3478 return 0;
liping.zhang5d85af12016-02-18 12:16:53 +08003479
3480 is_local = rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK);
3481 ip_rt_put(rt);
3482 return is_local;
Robert Love2365d052008-05-12 17:08:29 -04003483}
3484
3485#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3486static int tcp_is_local6(struct net *net, struct in6_addr *addr) {
3487 struct rt6_info *rt6 = rt6_lookup(net, addr, addr, 0, 0);
liping.zhang5d85af12016-02-18 12:16:53 +08003488 int is_local;
3489 if (rt6 == NULL)
3490 return 0;
3491
3492 is_local = rt6->dst.dev && (rt6->dst.dev->flags & IFF_LOOPBACK);
3493 dst_release(&rt6->dst);
3494 return is_local;
Robert Love2365d052008-05-12 17:08:29 -04003495}
3496#endif
3497
3498/*
3499 * tcp_nuke_addr - destroy all sockets on the given local address
3500 * if local address is the unspecified address (0.0.0.0 or ::), destroy all
3501 * sockets with local addresses that are not configured.
3502 */
3503int tcp_nuke_addr(struct net *net, struct sockaddr *addr)
3504{
3505 int family = addr->sa_family;
3506 unsigned int bucket;
3507
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003508 struct in_addr *in = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003509#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003510 struct in6_addr *in6 = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003511#endif
3512 if (family == AF_INET) {
3513 in = &((struct sockaddr_in *)addr)->sin_addr;
3514#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3515 } else if (family == AF_INET6) {
3516 in6 = &((struct sockaddr_in6 *)addr)->sin6_addr;
3517#endif
3518 } else {
3519 return -EAFNOSUPPORT;
3520 }
3521
Dmitry Torokhov8e5087e2015-07-09 17:17:57 -07003522 for (bucket = 0; bucket <= tcp_hashinfo.ehash_mask; bucket++) {
Robert Love2365d052008-05-12 17:08:29 -04003523 struct hlist_nulls_node *node;
3524 struct sock *sk;
3525 spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, bucket);
3526
3527restart:
3528 spin_lock_bh(lock);
3529 sk_nulls_for_each(sk, node, &tcp_hashinfo.ehash[bucket].chain) {
3530 struct inet_sock *inet = inet_sk(sk);
3531
3532 if (sysctl_ip_dynaddr && sk->sk_state == TCP_SYN_SENT)
3533 continue;
3534 if (sock_flag(sk, SOCK_DEAD))
3535 continue;
3536
3537 if (family == AF_INET) {
3538 __be32 s4 = inet->inet_rcv_saddr;
3539 if (s4 == LOOPBACK4_IPV6)
3540 continue;
3541
3542 if (in->s_addr != s4 &&
3543 !(in->s_addr == INADDR_ANY &&
3544 !tcp_is_local(net, s4)))
3545 continue;
3546 }
3547
3548#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3549 if (family == AF_INET6) {
3550 struct in6_addr *s6;
3551 if (!inet->pinet6)
3552 continue;
3553
3554 s6 = &inet->pinet6->rcv_saddr;
3555 if (ipv6_addr_type(s6) == IPV6_ADDR_MAPPED)
3556 continue;
3557
3558 if (!ipv6_addr_equal(in6, s6) &&
3559 !(ipv6_addr_equal(in6, &in6addr_any) &&
3560 !tcp_is_local6(net, s6)))
3561 continue;
3562 }
3563#endif
3564
3565 sock_hold(sk);
3566 spin_unlock_bh(lock);
3567
3568 local_bh_disable();
3569 bh_lock_sock(sk);
3570 sk->sk_err = ETIMEDOUT;
3571 sk->sk_error_report(sk);
3572
3573 tcp_done(sk);
3574 bh_unlock_sock(sk);
3575 local_bh_enable();
Osvaldo Banuelos66990962013-12-16 12:50:02 -08003576 sock_put(sk);
Robert Love2365d052008-05-12 17:08:29 -04003577
3578 goto restart;
3579 }
3580 spin_unlock_bh(lock);
3581 }
3582
3583 return 0;
3584}