blob: 8add26afda3e45abd248dd4f31a4e0ffb622cb88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Implementation of the Transmission Control Protocol(TCP).
7 *
Jesper Juhl02c30a82005-05-05 16:16:16 -07008 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Mark Evans, <evansmp@uhura.aston.ac.uk>
11 * Corey Minyard <wf-rch!minyard@relay.EU.net>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
14 * Linus Torvalds, <torvalds@cs.helsinki.fi>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Matthew Dillon, <dillon@apollo.west.oic.com>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Jorge Cwik, <jorge@laser.satlink.net>
19 *
20 * Fixes:
21 * Alan Cox : Numerous verify_area() calls
22 * Alan Cox : Set the ACK bit on a reset
23 * Alan Cox : Stopped it crashing if it closed while
24 * sk->inuse=1 and was trying to connect
25 * (tcp_err()).
26 * Alan Cox : All icmp error handling was broken
27 * pointers passed where wrong and the
28 * socket was looked up backwards. Nobody
29 * tested any icmp error code obviously.
30 * Alan Cox : tcp_err() now handled properly. It
31 * wakes people on errors. poll
32 * behaves and the icmp error race
33 * has gone by moving it into sock.c
34 * Alan Cox : tcp_send_reset() fixed to work for
35 * everything not just packets for
36 * unknown sockets.
37 * Alan Cox : tcp option processing.
38 * Alan Cox : Reset tweaked (still not 100%) [Had
39 * syn rule wrong]
40 * Herp Rosmanith : More reset fixes
41 * Alan Cox : No longer acks invalid rst frames.
42 * Acking any kind of RST is right out.
43 * Alan Cox : Sets an ignore me flag on an rst
44 * receive otherwise odd bits of prattle
45 * escape still
46 * Alan Cox : Fixed another acking RST frame bug.
47 * Should stop LAN workplace lockups.
48 * Alan Cox : Some tidyups using the new skb list
49 * facilities
50 * Alan Cox : sk->keepopen now seems to work
51 * Alan Cox : Pulls options out correctly on accepts
52 * Alan Cox : Fixed assorted sk->rqueue->next errors
53 * Alan Cox : PSH doesn't end a TCP read. Switched a
54 * bit to skb ops.
55 * Alan Cox : Tidied tcp_data to avoid a potential
56 * nasty.
57 * Alan Cox : Added some better commenting, as the
58 * tcp is hard to follow
59 * Alan Cox : Removed incorrect check for 20 * psh
60 * Michael O'Reilly : ack < copied bug fix.
61 * Johannes Stille : Misc tcp fixes (not all in yet).
62 * Alan Cox : FIN with no memory -> CRASH
63 * Alan Cox : Added socket option proto entries.
64 * Also added awareness of them to accept.
65 * Alan Cox : Added TCP options (SOL_TCP)
66 * Alan Cox : Switched wakeup calls to callbacks,
67 * so the kernel can layer network
68 * sockets.
69 * Alan Cox : Use ip_tos/ip_ttl settings.
70 * Alan Cox : Handle FIN (more) properly (we hope).
71 * Alan Cox : RST frames sent on unsynchronised
72 * state ack error.
73 * Alan Cox : Put in missing check for SYN bit.
74 * Alan Cox : Added tcp_select_window() aka NET2E
75 * window non shrink trick.
76 * Alan Cox : Added a couple of small NET2E timer
77 * fixes
78 * Charles Hedrick : TCP fixes
79 * Toomas Tamm : TCP window fixes
80 * Alan Cox : Small URG fix to rlogin ^C ack fight
81 * Charles Hedrick : Rewrote most of it to actually work
82 * Linus : Rewrote tcp_read() and URG handling
83 * completely
84 * Gerhard Koerting: Fixed some missing timer handling
85 * Matthew Dillon : Reworked TCP machine states as per RFC
86 * Gerhard Koerting: PC/TCP workarounds
87 * Adam Caldwell : Assorted timer/timing errors
88 * Matthew Dillon : Fixed another RST bug
89 * Alan Cox : Move to kernel side addressing changes.
90 * Alan Cox : Beginning work on TCP fastpathing
91 * (not yet usable)
92 * Arnt Gulbrandsen: Turbocharged tcp_check() routine.
93 * Alan Cox : TCP fast path debugging
94 * Alan Cox : Window clamping
95 * Michael Riepe : Bug in tcp_check()
96 * Matt Dillon : More TCP improvements and RST bug fixes
97 * Matt Dillon : Yet more small nasties remove from the
98 * TCP code (Be very nice to this man if
99 * tcp finally works 100%) 8)
100 * Alan Cox : BSD accept semantics.
101 * Alan Cox : Reset on closedown bug.
102 * Peter De Schrijver : ENOTCONN check missing in tcp_sendto().
103 * Michael Pall : Handle poll() after URG properly in
104 * all cases.
105 * Michael Pall : Undo the last fix in tcp_read_urg()
106 * (multi URG PUSH broke rlogin).
107 * Michael Pall : Fix the multi URG PUSH problem in
108 * tcp_readable(), poll() after URG
109 * works now.
110 * Michael Pall : recv(...,MSG_OOB) never blocks in the
111 * BSD api.
112 * Alan Cox : Changed the semantics of sk->socket to
113 * fix a race and a signal problem with
114 * accept() and async I/O.
115 * Alan Cox : Relaxed the rules on tcp_sendto().
116 * Yury Shevchuk : Really fixed accept() blocking problem.
117 * Craig I. Hagan : Allow for BSD compatible TIME_WAIT for
118 * clients/servers which listen in on
119 * fixed ports.
120 * Alan Cox : Cleaned the above up and shrank it to
121 * a sensible code size.
122 * Alan Cox : Self connect lockup fix.
123 * Alan Cox : No connect to multicast.
124 * Ross Biro : Close unaccepted children on master
125 * socket close.
126 * Alan Cox : Reset tracing code.
127 * Alan Cox : Spurious resets on shutdown.
128 * Alan Cox : Giant 15 minute/60 second timer error
129 * Alan Cox : Small whoops in polling before an
130 * accept.
131 * Alan Cox : Kept the state trace facility since
132 * it's handy for debugging.
133 * Alan Cox : More reset handler fixes.
134 * Alan Cox : Started rewriting the code based on
135 * the RFC's for other useful protocol
136 * references see: Comer, KA9Q NOS, and
137 * for a reference on the difference
138 * between specifications and how BSD
139 * works see the 4.4lite source.
140 * A.N.Kuznetsov : Don't time wait on completion of tidy
141 * close.
142 * Linus Torvalds : Fin/Shutdown & copied_seq changes.
143 * Linus Torvalds : Fixed BSD port reuse to work first syn
144 * Alan Cox : Reimplemented timers as per the RFC
145 * and using multiple timers for sanity.
146 * Alan Cox : Small bug fixes, and a lot of new
147 * comments.
148 * Alan Cox : Fixed dual reader crash by locking
149 * the buffers (much like datagram.c)
150 * Alan Cox : Fixed stuck sockets in probe. A probe
151 * now gets fed up of retrying without
152 * (even a no space) answer.
153 * Alan Cox : Extracted closing code better
154 * Alan Cox : Fixed the closing state machine to
155 * resemble the RFC.
156 * Alan Cox : More 'per spec' fixes.
157 * Jorge Cwik : Even faster checksumming.
158 * Alan Cox : tcp_data() doesn't ack illegal PSH
159 * only frames. At least one pc tcp stack
160 * generates them.
161 * Alan Cox : Cache last socket.
162 * Alan Cox : Per route irtt.
163 * Matt Day : poll()->select() match BSD precisely on error
164 * Alan Cox : New buffers
165 * Marc Tamsky : Various sk->prot->retransmits and
166 * sk->retransmits misupdating fixed.
167 * Fixed tcp_write_timeout: stuck close,
168 * and TCP syn retries gets used now.
169 * Mark Yarvis : In tcp_read_wakeup(), don't send an
170 * ack if state is TCP_CLOSED.
171 * Alan Cox : Look up device on a retransmit - routes may
172 * change. Doesn't yet cope with MSS shrink right
173 * but it's a start!
174 * Marc Tamsky : Closing in closing fixes.
175 * Mike Shaver : RFC1122 verifications.
176 * Alan Cox : rcv_saddr errors.
177 * Alan Cox : Block double connect().
178 * Alan Cox : Small hooks for enSKIP.
179 * Alexey Kuznetsov: Path MTU discovery.
180 * Alan Cox : Support soft errors.
181 * Alan Cox : Fix MTU discovery pathological case
182 * when the remote claims no mtu!
183 * Marc Tamsky : TCP_CLOSE fix.
184 * Colin (G3TNE) : Send a reset on syn ack replies in
185 * window but wrong (fixes NT lpd problems)
186 * Pedro Roque : Better TCP window handling, delayed ack.
187 * Joerg Reuter : No modification of locked buffers in
188 * tcp_do_retransmit()
189 * Eric Schenk : Changed receiver side silly window
190 * avoidance algorithm to BSD style
191 * algorithm. This doubles throughput
192 * against machines running Solaris,
193 * and seems to result in general
194 * improvement.
195 * Stefan Magdalinski : adjusted tcp_readable() to fix FIONREAD
196 * Willy Konynenberg : Transparent proxying support.
197 * Mike McLagan : Routing by source
198 * Keith Owens : Do proper merging with partial SKB's in
199 * tcp_do_sendmsg to avoid burstiness.
200 * Eric Schenk : Fix fast close down bug with
201 * shutdown() followed by close().
202 * Andi Kleen : Make poll agree with SIGIO
203 * Salvatore Sanfilippo : Support SO_LINGER with linger == 1 and
204 * lingertime == 0 (RFC 793 ABORT Call)
205 * Hirokazu Takahashi : Use copy_from_user() instead of
206 * csum_and_copy_from_user() if possible.
207 *
208 * This program is free software; you can redistribute it and/or
209 * modify it under the terms of the GNU General Public License
210 * as published by the Free Software Foundation; either version
211 * 2 of the License, or(at your option) any later version.
212 *
213 * Description of States:
214 *
215 * TCP_SYN_SENT sent a connection request, waiting for ack
216 *
217 * TCP_SYN_RECV received a connection request, sent ack,
218 * waiting for final ack in three-way handshake.
219 *
220 * TCP_ESTABLISHED connection established
221 *
222 * TCP_FIN_WAIT1 our side has shutdown, waiting to complete
223 * transmission of remaining buffered data
224 *
225 * TCP_FIN_WAIT2 all buffered data sent, waiting for remote
226 * to shutdown
227 *
228 * TCP_CLOSING both sides have shutdown but we still have
229 * data we have to finish sending
230 *
231 * TCP_TIME_WAIT timeout to catch resent junk before entering
232 * closed, can only be entered from FIN_WAIT2
233 * or CLOSING. Required because the other end
234 * may not have gotten our last ACK causing it
235 * to retransmit the data packet (which we ignore)
236 *
237 * TCP_CLOSE_WAIT remote side has shutdown and is waiting for
238 * us to finish writing our data and to shutdown
239 * (we have to close() to move on to LAST_ACK)
240 *
241 * TCP_LAST_ACK out side has shutdown after remote has
242 * shutdown. There may still be data in our
243 * buffer that we have to finish sending
244 *
245 * TCP_CLOSE socket is finished
246 */
247
Joe Perchesafd465032012-03-12 07:03:32 +0000248#define pr_fmt(fmt) "TCP: " fmt
249
Ilpo Järvinen172589c2007-08-28 15:50:33 -0700250#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#include <linux/module.h>
252#include <linux/types.h>
253#include <linux/fcntl.h>
254#include <linux/poll.h>
255#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#include <linux/fs.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800257#include <linux/skbuff.h>
Andrew Morton81b23b42008-07-03 03:22:02 -0700258#include <linux/scatterlist.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800259#include <linux/splice.h>
260#include <linux/net.h>
261#include <linux/socket.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#include <linux/random.h>
263#include <linux/bootmem.h>
Miquel van Smoorenburg57413eb2008-06-27 17:23:57 -0700264#include <linux/highmem.h>
265#include <linux/swap.h>
David S. Millerb8059ea2006-03-25 01:36:56 -0800266#include <linux/cache.h>
Herbert Xuf4c50d92006-06-22 03:02:40 -0700267#include <linux/err.h>
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800268#include <linux/crypto.h>
William Allen Simpsonda5c78c2009-12-02 18:12:09 +0000269#include <linux/time.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900270#include <linux/slab.h>
Mike Chan5a0b3542009-01-07 11:40:42 -0800271#include <linux/uid_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273#include <net/icmp.h>
274#include <net/tcp.h>
275#include <net/xfrm.h>
276#include <net/ip.h>
Robert Love2365d052008-05-12 17:08:29 -0400277#include <net/ip6_route.h>
278#include <net/ipv6.h>
279#include <net/transp_v6.h>
Chris Leech1a2449a2006-05-23 18:05:53 -0700280#include <net/netdma.h>
Jens Axboe9c55e012007-11-06 23:30:13 -0800281#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283#include <asm/uaccess.h>
284#include <asm/ioctls.h>
285
Brian Haleyab32ea52006-09-22 14:15:41 -0700286int sysctl_tcp_fin_timeout __read_mostly = TCP_FIN_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Eric Dumazetdd24c002008-11-25 21:17:14 -0800288struct percpu_counter tcp_orphan_count;
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -0700289EXPORT_SYMBOL_GPL(tcp_orphan_count);
290
David S. Millerb8059ea2006-03-25 01:36:56 -0800291int sysctl_tcp_wmem[3] __read_mostly;
292int sysctl_tcp_rmem[3] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294EXPORT_SYMBOL(sysctl_tcp_rmem);
295EXPORT_SYMBOL(sysctl_tcp_wmem);
296
Ravi Joshiee51cf02013-07-25 19:04:17 -0700297int sysctl_tcp_delack_seg __read_mostly = TCP_DELACK_SEG;
298EXPORT_SYMBOL(sysctl_tcp_delack_seg);
299
300int sysctl_tcp_use_userconfig __read_mostly;
301EXPORT_SYMBOL(sysctl_tcp_use_userconfig);
302
Eric Dumazet8d987e52010-11-09 23:24:26 +0000303atomic_long_t tcp_memory_allocated; /* Current allocated memory. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304EXPORT_SYMBOL(tcp_memory_allocated);
Eric Dumazet17483762008-11-25 21:16:35 -0800305
306/*
307 * Current number of TCP sockets.
308 */
309struct percpu_counter tcp_sockets_allocated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310EXPORT_SYMBOL(tcp_sockets_allocated);
311
312/*
Jens Axboe9c55e012007-11-06 23:30:13 -0800313 * TCP splice context
314 */
315struct tcp_splice_state {
316 struct pipe_inode_info *pipe;
317 size_t len;
318 unsigned int flags;
319};
320
321/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * Pressure flag: try to collapse.
323 * Technical note: it is used by multiple contexts non atomically.
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800324 * All the __sk_mem_schedule() is of this nature: accounting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * is strict, actions are advisory and have some latency.
326 */
Eric Dumazet4103f8c2007-03-27 13:58:31 -0700327int tcp_memory_pressure __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328EXPORT_SYMBOL(tcp_memory_pressure);
329
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700330void tcp_enter_memory_pressure(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 if (!tcp_memory_pressure) {
Pavel Emelyanov4e673442008-07-16 20:30:14 -0700333 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMEMORYPRESSURES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 tcp_memory_pressure = 1;
335 }
336}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337EXPORT_SYMBOL(tcp_enter_memory_pressure);
338
Julian Anastasovb103cf32009-10-19 10:10:40 +0000339/* Convert seconds to retransmits based on initial and max timeout */
340static u8 secs_to_retrans(int seconds, int timeout, int rto_max)
341{
342 u8 res = 0;
343
344 if (seconds > 0) {
345 int period = timeout;
346
347 res = 1;
348 while (seconds > period && res < 255) {
349 res++;
350 timeout <<= 1;
351 if (timeout > rto_max)
352 timeout = rto_max;
353 period += timeout;
354 }
355 }
356 return res;
357}
358
359/* Convert retransmits to seconds based on initial and max timeout */
360static int retrans_to_secs(u8 retrans, int timeout, int rto_max)
361{
362 int period = 0;
363
364 if (retrans > 0) {
365 period = timeout;
366 while (--retrans) {
367 timeout <<= 1;
368 if (timeout > rto_max)
369 timeout = rto_max;
370 period += timeout;
371 }
372 }
373 return period;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * Wait for a TCP event.
378 *
379 * Note that we don't need to lock the socket, as the upper poll layers
380 * take care of normal races (between the test and the event) and we don't
381 * go look at any of the socket buffers directly.
382 */
383unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
384{
385 unsigned int mask;
386 struct sock *sk = sock->sk;
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400387 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Eric Dumazetaa395142010-04-20 13:03:51 +0000389 sock_poll_wait(file, sk_sleep(sk), wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (sk->sk_state == TCP_LISTEN)
Arnaldo Carvalho de Melodc40c7b2005-08-23 21:52:58 -0700391 return inet_csk_listen_poll(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* Socket is not locked. We are protected from async events
Will Newton70efce22008-07-16 20:13:43 -0700394 * by poll logic and correct handling of state changes
395 * made by other threads is impossible in any case.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
397
398 mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /*
401 * POLLHUP is certainly not done right. But poll() doesn't
402 * have a notion of HUP in just one direction, and for a
403 * socket the read side is more interesting.
404 *
405 * Some poll() documentation says that POLLHUP is incompatible
406 * with the POLLOUT/POLLWR flags, so somebody should check this
407 * all. But careful, it tends to be safer to return too many
408 * bits than too few, and you can easily break real applications
409 * if you don't tell them that something has hung up!
410 *
411 * Check-me.
412 *
413 * Check number 1. POLLHUP is _UNMASKABLE_ event (see UNIX98 and
414 * our fs/select.c). It means that after we received EOF,
415 * poll always returns immediately, making impossible poll() on write()
416 * in state CLOSE_WAIT. One solution is evident --- to set POLLHUP
417 * if and only if shutdown has been made in both directions.
418 * Actually, it is interesting to look how Solaris and DUX
Will Newton70efce22008-07-16 20:13:43 -0700419 * solve this dilemma. I would prefer, if POLLHUP were maskable,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * then we could set it on SND_SHUTDOWN. BTW examples given
421 * in Stevens' books assume exactly this behaviour, it explains
Will Newton70efce22008-07-16 20:13:43 -0700422 * why POLLHUP is incompatible with POLLOUT. --ANK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 *
424 * NOTE. Check for TCP_CLOSE is added. The goal is to prevent
425 * blocking on fresh not-connected or disconnected socket. --ANK
426 */
427 if (sk->sk_shutdown == SHUTDOWN_MASK || sk->sk_state == TCP_CLOSE)
428 mask |= POLLHUP;
429 if (sk->sk_shutdown & RCV_SHUTDOWN)
Davide Libenzif348d702006-03-25 03:07:39 -0800430 mask |= POLLIN | POLLRDNORM | POLLRDHUP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* Connected? */
433 if ((1 << sk->sk_state) & ~(TCPF_SYN_SENT | TCPF_SYN_RECV)) {
David S. Millerc7004482008-10-06 10:43:54 -0700434 int target = sock_rcvlowat(sk, 0, INT_MAX);
435
436 if (tp->urg_seq == tp->copied_seq &&
437 !sock_flag(sk, SOCK_URGINLINE) &&
438 tp->urg_data)
Alexandra Kossovskyb634f872010-03-18 20:29:24 -0700439 target++;
David S. Millerc7004482008-10-06 10:43:54 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* Potential race condition. If read of tp below will
442 * escape above sk->sk_state, we can be illegally awaken
443 * in SYN_* states. */
David S. Millerc7004482008-10-06 10:43:54 -0700444 if (tp->rcv_nxt - tp->copied_seq >= target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 mask |= POLLIN | POLLRDNORM;
446
447 if (!(sk->sk_shutdown & SEND_SHUTDOWN)) {
448 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk)) {
449 mask |= POLLOUT | POLLWRNORM;
450 } else { /* send SIGIO later */
451 set_bit(SOCK_ASYNC_NOSPACE,
452 &sk->sk_socket->flags);
453 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
454
455 /* Race breaker. If space is freed after
456 * wspace test but before the flags are set,
457 * IO signal will be lost.
458 */
459 if (sk_stream_wspace(sk) >= sk_stream_min_wspace(sk))
460 mask |= POLLOUT | POLLWRNORM;
461 }
KOSAKI Motohirod84ba632010-08-24 16:05:48 +0000462 } else
463 mask |= POLLOUT | POLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (tp->urg_data & TCP_URG_VALID)
466 mask |= POLLPRI;
467 }
Tom Marshalla4d25802010-09-20 15:42:05 -0700468 /* This barrier is coupled with smp_wmb() in tcp_reset() */
469 smp_rmb();
470 if (sk->sk_err)
471 mask |= POLLERR;
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return mask;
474}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000475EXPORT_SYMBOL(tcp_poll);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
478{
479 struct tcp_sock *tp = tcp_sk(sk);
480 int answ;
481
482 switch (cmd) {
483 case SIOCINQ:
484 if (sk->sk_state == TCP_LISTEN)
485 return -EINVAL;
486
487 lock_sock(sk);
488 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
489 answ = 0;
490 else if (sock_flag(sk, SOCK_URGINLINE) ||
491 !tp->urg_data ||
492 before(tp->urg_seq, tp->copied_seq) ||
493 !before(tp->urg_seq, tp->rcv_nxt)) {
David S. Miller91521942009-05-28 21:35:47 -0700494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 answ = tp->rcv_nxt - tp->copied_seq;
496
Eric Dumazet6bfa3862012-10-18 09:14:12 +0000497 /* Subtract 1, if FIN was received */
498 if (answ && sock_flag(sk, SOCK_DONE))
499 answ--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 } else
501 answ = tp->urg_seq - tp->copied_seq;
502 release_sock(sk);
503 break;
504 case SIOCATMARK:
505 answ = tp->urg_data && tp->urg_seq == tp->copied_seq;
506 break;
507 case SIOCOUTQ:
508 if (sk->sk_state == TCP_LISTEN)
509 return -EINVAL;
510
511 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
512 answ = 0;
513 else
514 answ = tp->write_seq - tp->snd_una;
515 break;
Mario Schuknecht2f4e1b32011-03-09 14:08:09 -0800516 case SIOCOUTQNSD:
517 if (sk->sk_state == TCP_LISTEN)
518 return -EINVAL;
519
520 if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV))
521 answ = 0;
522 else
523 answ = tp->write_seq - tp->snd_nxt;
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 default:
526 return -ENOIOCTLCMD;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 return put_user(answ, (int __user *)arg);
530}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000531EXPORT_SYMBOL(tcp_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static inline void tcp_mark_push(struct tcp_sock *tp, struct sk_buff *skb)
534{
Eric Dumazet4de075e2011-09-27 13:25:05 -0400535 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 tp->pushed_seq = tp->write_seq;
537}
538
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400539static inline int forced_push(const struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
542}
543
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700544static inline void skb_entail(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700546 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200547 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
548
549 skb->csum = 0;
550 tcb->seq = tcb->end_seq = tp->write_seq;
Eric Dumazet4de075e2011-09-27 13:25:05 -0400551 tcb->tcp_flags = TCPHDR_ACK;
Arnaldo Carvalho de Melo352d4802006-11-17 19:59:12 -0200552 tcb->sacked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 skb_header_release(skb);
David S. Millerfe067e82007-03-07 12:12:44 -0800554 tcp_add_write_queue_tail(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800555 sk->sk_wmem_queued += skb->truesize;
556 sk_mem_charge(sk, skb->truesize);
David S. Miller89ebd192005-08-23 10:13:06 -0700557 if (tp->nonagle & TCP_NAGLE_PUSH)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900558 tp->nonagle &= ~TCP_NAGLE_PUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Krishna Kumarafeca342009-12-10 07:16:52 +0000561static inline void tcp_mark_urg(struct tcp_sock *tp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Ilpo Järvinen33f5f572008-10-07 14:43:06 -0700563 if (flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 tp->snd_up = tp->write_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700567static inline void tcp_push(struct sock *sk, int flags, int mss_now,
568 int nonagle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
David S. Millerfe067e82007-03-07 12:12:44 -0800570 if (tcp_send_head(sk)) {
Krishna Kumarafeca342009-12-10 07:16:52 +0000571 struct tcp_sock *tp = tcp_sk(sk);
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!(flags & MSG_MORE) || forced_push(tp))
Krishna Kumarafeca342009-12-10 07:16:52 +0000574 tcp_mark_push(tp, tcp_write_queue_tail(sk));
575
576 tcp_mark_urg(tp, flags);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700577 __tcp_push_pending_frames(sk, mss_now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 (flags & MSG_MORE) ? TCP_NAGLE_CORK : nonagle);
579 }
580}
581
Adrian Bunk6ff77512007-11-06 23:32:26 -0800582static int tcp_splice_data_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
583 unsigned int offset, size_t len)
Jens Axboe9c55e012007-11-06 23:30:13 -0800584{
585 struct tcp_splice_state *tss = rd_desc->arg.data;
Willy Tarreau33966dd2009-01-13 16:04:36 -0800586 int ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800587
Dimitris Michailidis9fa5fdf2009-01-26 22:15:31 -0800588 ret = skb_splice_bits(skb, offset, tss->pipe, min(rd_desc->count, len),
589 tss->flags);
Willy Tarreau33966dd2009-01-13 16:04:36 -0800590 if (ret > 0)
591 rd_desc->count -= ret;
592 return ret;
Jens Axboe9c55e012007-11-06 23:30:13 -0800593}
594
595static int __tcp_splice_read(struct sock *sk, struct tcp_splice_state *tss)
596{
597 /* Store TCP splice context information in read_descriptor_t. */
598 read_descriptor_t rd_desc = {
599 .arg.data = tss,
Willy Tarreau33966dd2009-01-13 16:04:36 -0800600 .count = tss->len,
Jens Axboe9c55e012007-11-06 23:30:13 -0800601 };
602
603 return tcp_read_sock(sk, &rd_desc, tcp_splice_data_recv);
604}
605
606/**
607 * tcp_splice_read - splice data from TCP socket to a pipe
608 * @sock: socket to splice from
609 * @ppos: position (not valid)
610 * @pipe: pipe to splice to
611 * @len: number of bytes to splice
612 * @flags: splice modifier flags
613 *
614 * Description:
615 * Will read pages from given socket and fill them into a pipe.
616 *
617 **/
618ssize_t tcp_splice_read(struct socket *sock, loff_t *ppos,
619 struct pipe_inode_info *pipe, size_t len,
620 unsigned int flags)
621{
622 struct sock *sk = sock->sk;
623 struct tcp_splice_state tss = {
624 .pipe = pipe,
625 .len = len,
626 .flags = flags,
627 };
628 long timeo;
629 ssize_t spliced;
630 int ret;
631
Changli Gao3a047bf2010-07-12 21:00:12 +0000632 sock_rps_record_flow(sk);
Jens Axboe9c55e012007-11-06 23:30:13 -0800633 /*
634 * We can't seek on a socket input
635 */
636 if (unlikely(*ppos))
637 return -ESPIPE;
638
639 ret = spliced = 0;
640
641 lock_sock(sk);
642
Eric Dumazet42324c62009-10-01 15:26:00 -0700643 timeo = sock_rcvtimeo(sk, sock->file->f_flags & O_NONBLOCK);
Jens Axboe9c55e012007-11-06 23:30:13 -0800644 while (tss.len) {
645 ret = __tcp_splice_read(sk, &tss);
646 if (ret < 0)
647 break;
648 else if (!ret) {
649 if (spliced)
650 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800651 if (sock_flag(sk, SOCK_DONE))
652 break;
653 if (sk->sk_err) {
654 ret = sock_error(sk);
655 break;
656 }
657 if (sk->sk_shutdown & RCV_SHUTDOWN)
658 break;
659 if (sk->sk_state == TCP_CLOSE) {
660 /*
661 * This occurs when user tries to read
662 * from never connected socket.
663 */
664 if (!sock_flag(sk, SOCK_DONE))
665 ret = -ENOTCONN;
666 break;
667 }
668 if (!timeo) {
669 ret = -EAGAIN;
670 break;
671 }
Eric Dumazet483e06f2017-03-01 09:58:14 +0100672 /* if __tcp_splice_read() got nothing while we have
673 * an skb in receive queue, we do not want to loop.
674 * This might happen with URG data.
675 */
676 if (!skb_queue_empty(&sk->sk_receive_queue))
677 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800678 sk_wait_data(sk, &timeo);
679 if (signal_pending(current)) {
680 ret = sock_intr_errno(timeo);
681 break;
682 }
683 continue;
684 }
685 tss.len -= ret;
686 spliced += ret;
687
Willy Tarreau33966dd2009-01-13 16:04:36 -0800688 if (!timeo)
689 break;
Jens Axboe9c55e012007-11-06 23:30:13 -0800690 release_sock(sk);
691 lock_sock(sk);
692
693 if (sk->sk_err || sk->sk_state == TCP_CLOSE ||
Willy Tarreau33966dd2009-01-13 16:04:36 -0800694 (sk->sk_shutdown & RCV_SHUTDOWN) ||
Jens Axboe9c55e012007-11-06 23:30:13 -0800695 signal_pending(current))
696 break;
697 }
698
699 release_sock(sk);
700
701 if (spliced)
702 return spliced;
703
704 return ret;
705}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000706EXPORT_SYMBOL(tcp_splice_read);
Jens Axboe9c55e012007-11-06 23:30:13 -0800707
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100708struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp)
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100709{
710 struct sk_buff *skb;
711
712 /* The TCP header must be at least 32-bit aligned. */
713 size = ALIGN(size, 4);
714
715 skb = alloc_skb_fclone(size + sk->sk_prot->max_header, gfp);
716 if (skb) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800717 if (sk_wmem_schedule(sk, skb->truesize)) {
Eric Dumazeta21d4572012-04-10 20:30:48 +0000718 skb_reserve(skb, sk->sk_prot->max_header);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100719 /*
720 * Make sure that we have exactly size bytes
721 * available to the caller, no more, no less.
722 */
Eric Dumazeta21d4572012-04-10 20:30:48 +0000723 skb->avail_size = size;
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100724 return skb;
725 }
726 __kfree_skb(skb);
727 } else {
Pavel Emelyanov5c52ba12008-07-16 20:28:10 -0700728 sk->sk_prot->enter_memory_pressure(sk);
Pavel Emelyanovf561d0f2007-11-29 20:28:50 +1100729 sk_stream_moderate_sndbuf(sk);
730 }
731 return NULL;
732}
733
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000734static unsigned int tcp_xmit_size_goal(struct sock *sk, u32 mss_now,
735 int large_allowed)
736{
737 struct tcp_sock *tp = tcp_sk(sk);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000738 u32 xmit_size_goal, old_size_goal;
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000739
740 xmit_size_goal = mss_now;
741
742 if (large_allowed && sk_can_gso(sk)) {
743 xmit_size_goal = ((sk->sk_gso_max_size - 1) -
744 inet_csk(sk)->icsk_af_ops->net_header_len -
745 inet_csk(sk)->icsk_ext_hdr_len -
746 tp->tcp_header_len);
747
748 xmit_size_goal = tcp_bound_to_half_wnd(tp, xmit_size_goal);
Ilpo Järvinen2a3a0412009-03-14 22:45:16 +0000749
750 /* We try hard to avoid divides here */
751 old_size_goal = tp->xmit_size_goal_segs * mss_now;
752
753 if (likely(old_size_goal <= xmit_size_goal &&
754 old_size_goal + mss_now > xmit_size_goal)) {
755 xmit_size_goal = old_size_goal;
756 } else {
757 tp->xmit_size_goal_segs = xmit_size_goal / mss_now;
758 xmit_size_goal = tp->xmit_size_goal_segs * mss_now;
759 }
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000760 }
761
Ilpo Järvinenafece1c2009-03-14 14:23:07 +0000762 return max(xmit_size_goal, mss_now);
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000763}
764
765static int tcp_send_mss(struct sock *sk, int *size_goal, int flags)
766{
767 int mss_now;
768
769 mss_now = tcp_current_mss(sk);
770 *size_goal = tcp_xmit_size_goal(sk, mss_now, !(flags & MSG_OOB));
771
772 return mss_now;
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static ssize_t do_tcp_sendpages(struct sock *sk, struct page **pages, int poffset,
776 size_t psize, int flags)
777{
778 struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700779 int mss_now, size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int err;
781 ssize_t copied;
782 long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
783
784 /* Wait for a connection to finish. */
785 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
786 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
787 goto out_err;
788
789 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
790
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000791 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 copied = 0;
793
794 err = -EPIPE;
795 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000796 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 while (psize > 0) {
David S. Millerfe067e82007-03-07 12:12:44 -0800799 struct sk_buff *skb = tcp_write_queue_tail(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 struct page *page = pages[poffset / PAGE_SIZE];
801 int copy, i, can_coalesce;
802 int offset = poffset % PAGE_SIZE;
803 int size = min_t(size_t, psize, PAGE_SIZE - offset);
804
David S. Millerfe067e82007-03-07 12:12:44 -0800805 if (!tcp_send_head(sk) || (copy = size_goal - skb->len) <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806new_segment:
807 if (!sk_stream_memory_free(sk))
808 goto wait_for_sndbuf;
809
Pavel Emelyanovdf97c702007-11-29 21:22:33 +1100810 skb = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!skb)
812 goto wait_for_memory;
813
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700814 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700815 copy = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817
818 if (copy > size)
819 copy = size;
820
821 i = skb_shinfo(skb)->nr_frags;
822 can_coalesce = skb_can_coalesce(skb, i, page, offset);
823 if (!can_coalesce && i >= MAX_SKB_FRAGS) {
824 tcp_mark_push(tp, skb);
825 goto new_segment;
826 }
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800827 if (!sk_wmem_schedule(sk, copy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto wait_for_memory;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (can_coalesce) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000831 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 } else {
833 get_page(page);
834 skb_fill_page_desc(skb, i, page, offset, copy);
835 }
836
837 skb->len += copy;
838 skb->data_len += copy;
839 skb->truesize += copy;
840 sk->sk_wmem_queued += copy;
Hideo Aoki3ab224b2007-12-31 00:11:19 -0800841 sk_mem_charge(sk, copy);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700842 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 tp->write_seq += copy;
844 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -0700845 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -0400848 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 copied += copy;
851 poffset += copy;
852 if (!(psize -= copy))
853 goto out;
854
Herbert Xu69d15062008-03-22 15:47:05 -0700855 if (skb->len < size_goal || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 continue;
857
858 if (forced_push(tp)) {
859 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700860 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -0800861 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 tcp_push_one(sk, mss_now);
863 continue;
864
865wait_for_sndbuf:
866 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
867wait_for_memory:
Willy Tarreaubad115c2012-05-17 11:14:14 +0000868 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
871 goto do_error;
872
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000873 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876out:
Eric Dumazet35f9c092012-04-05 03:05:35 +0000877 if (copied && !(flags & MSG_SENDPAGE_NOTLAST))
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -0700878 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return copied;
880
881do_error:
882 if (copied)
883 goto out;
884out_err:
885 return sk_stream_error(sk, flags, err);
886}
887
Changli Gao7ba42912010-07-10 20:41:55 +0000888int tcp_sendpage(struct sock *sk, struct page *page, int offset,
889 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!(sk->sk_route_caps & NETIF_F_SG) ||
Herbert Xu8648b302006-06-17 22:06:05 -0700894 !(sk->sk_route_caps & NETIF_F_ALL_CSUM))
Changli Gao7ba42912010-07-10 20:41:55 +0000895 return sock_no_sendpage(sk->sk_socket, page, offset, size,
896 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 res = do_tcp_sendpages(sk, &page, offset, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 release_sock(sk);
901 return res;
902}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000903EXPORT_SYMBOL(tcp_sendpage);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Eric Dumazet690e99c2011-11-28 00:27:47 +0000905static inline int select_size(const struct sock *sk, bool sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Eric Dumazetcf533ea2011-10-21 05:22:42 -0400907 const struct tcp_sock *tp = tcp_sk(sk);
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700908 int tmp = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Krishna Kumardef87cf2009-12-10 07:16:59 +0000910 if (sg) {
Eric Dumazetf07d9602011-11-28 22:41:47 +0000911 if (sk_can_gso(sk)) {
912 /* Small frames wont use a full page:
913 * Payload will immediately follow tcp header.
914 */
915 tmp = SKB_WITH_OVERHEAD(2048 - MAX_TCP_HEADER);
916 } else {
David S. Millerb4e26f52005-07-05 15:20:27 -0700917 int pgbreak = SKB_MAX_HEAD(MAX_TCP_HEADER);
918
919 if (tmp >= pgbreak &&
920 tmp <= pgbreak + (MAX_SKB_FRAGS - 1) * PAGE_SIZE)
921 tmp = pgbreak;
922 }
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return tmp;
926}
927
Changli Gao7ba42912010-07-10 20:41:55 +0000928int tcp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 size_t size)
930{
931 struct iovec *iov;
932 struct tcp_sock *tp = tcp_sk(sk);
933 struct sk_buff *skb;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000934 int iovlen, flags, err, copied;
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700935 int mss_now, size_goal;
Eric Dumazet690e99c2011-11-28 00:27:47 +0000936 bool sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 long timeo;
938
939 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 flags = msg->msg_flags;
942 timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
943
944 /* Wait for a connection to finish. */
945 if ((1 << sk->sk_state) & ~(TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
946 if ((err = sk_stream_wait_connect(sk, &timeo)) != 0)
947 goto out_err;
948
949 /* This should be in poll */
950 clear_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
951
Ilpo Järvinen0c54b852009-03-14 14:23:05 +0000952 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /* Ok commence sending. */
955 iovlen = msg->msg_iovlen;
956 iov = msg->msg_iov;
957 copied = 0;
958
959 err = -EPIPE;
960 if (sk->sk_err || (sk->sk_shutdown & SEND_SHUTDOWN))
Ilpo Järvinen0d6a7752009-02-28 04:44:41 +0000961 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Eric Dumazet690e99c2011-11-28 00:27:47 +0000963 sg = !!(sk->sk_route_caps & NETIF_F_SG);
Krishna Kumardef87cf2009-12-10 07:16:59 +0000964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 while (--iovlen >= 0) {
David S. Miller01db4032010-09-27 20:24:54 -0700966 size_t seglen = iov->iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 unsigned char __user *from = iov->iov_base;
968
969 iov++;
970
971 while (seglen > 0) {
Herbert Xu6828b922009-06-28 18:06:41 +0000972 int copy = 0;
973 int max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
David S. Millerfe067e82007-03-07 12:12:44 -0800975 skb = tcp_write_queue_tail(sk);
Herbert Xu6828b922009-06-28 18:06:41 +0000976 if (tcp_send_head(sk)) {
977 if (skb->ip_summed == CHECKSUM_NONE)
978 max = mss_now;
979 copy = max - skb->len;
980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Herbert Xu6828b922009-06-28 18:06:41 +0000982 if (copy <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983new_segment:
984 /* Allocate new segment. If the interface is SG,
985 * allocate skb fitting to single page.
986 */
987 if (!sk_stream_memory_free(sk))
988 goto wait_for_sndbuf;
989
Krishna Kumardef87cf2009-12-10 07:16:59 +0000990 skb = sk_stream_alloc_skb(sk,
991 select_size(sk, sg),
992 sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (!skb)
994 goto wait_for_memory;
995
996 /*
997 * Check whether we can use HW checksum.
998 */
Herbert Xu8648b302006-06-17 22:06:05 -0700999 if (sk->sk_route_caps & NETIF_F_ALL_CSUM)
Patrick McHardy84fa7932006-08-29 16:44:56 -07001000 skb->ip_summed = CHECKSUM_PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001002 skb_entail(sk, skb);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001003 copy = size_goal;
Herbert Xu6828b922009-06-28 18:06:41 +00001004 max = size_goal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
1007 /* Try to append data to the end of skb. */
1008 if (copy > seglen)
1009 copy = seglen;
1010
1011 /* Where to copy to? */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001012 if (skb_availroom(skb) > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* We have some space in skb head. Superb! */
Eric Dumazeta21d4572012-04-10 20:30:48 +00001014 copy = min_t(int, copy, skb_availroom(skb));
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001015 err = skb_add_data_nocache(sk, skb, from, copy);
1016 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 goto do_fault;
1018 } else {
1019 int merge = 0;
1020 int i = skb_shinfo(skb)->nr_frags;
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001021 struct page *page = sk->sk_sndmsg_page;
Eric Dumazet761965e2011-12-04 07:05:17 +00001022 int off;
1023
1024 if (page && page_count(page) == 1)
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001025 sk->sk_sndmsg_off = 0;
Eric Dumazet761965e2011-12-04 07:05:17 +00001026
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001027 off = sk->sk_sndmsg_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (skb_can_coalesce(skb, i, page, off) &&
1030 off != PAGE_SIZE) {
1031 /* We can extend the last page
1032 * fragment. */
1033 merge = 1;
Krishna Kumardef87cf2009-12-10 07:16:59 +00001034 } else if (i == MAX_SKB_FRAGS || !sg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /* Need to add new fragment and cannot
1036 * do this because interface is non-SG,
1037 * or because all the page slots are
1038 * busy. */
1039 tcp_mark_push(tp, skb);
1040 goto new_segment;
1041 } else if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (off == PAGE_SIZE) {
1043 put_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001044 sk->sk_sndmsg_page = page = NULL;
Herbert Xufb5f5e62005-09-05 18:55:48 -07001045 off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
Herbert Xuef015782005-09-01 17:48:59 -07001047 } else
Herbert Xufb5f5e62005-09-05 18:55:48 -07001048 off = 0;
Herbert Xuef015782005-09-01 17:48:59 -07001049
1050 if (copy > PAGE_SIZE - off)
1051 copy = PAGE_SIZE - off;
1052
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001053 if (!sk_wmem_schedule(sk, copy))
Herbert Xuef015782005-09-01 17:48:59 -07001054 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (!page) {
1057 /* Allocate new cache page. */
1058 if (!(page = sk_stream_alloc_page(sk)))
1059 goto wait_for_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /* Time to copy data. We are close to
1063 * the end! */
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07001064 err = skb_copy_to_page_nocache(sk, from, skb,
1065 page, off, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (err) {
1067 /* If this page was new, give it to the
1068 * socket so it does not get leaked.
1069 */
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001070 if (!sk->sk_sndmsg_page) {
1071 sk->sk_sndmsg_page = page;
1072 sk->sk_sndmsg_off = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074 goto do_error;
1075 }
1076
1077 /* Update the skb. */
1078 if (merge) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001079 skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 } else {
1081 skb_fill_page_desc(skb, i, page, off, copy);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001082 if (sk->sk_sndmsg_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 get_page(page);
1084 } else if (off + copy < PAGE_SIZE) {
1085 get_page(page);
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001086 sk->sk_sndmsg_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 }
1089
Eric Dumazet0a5912d2011-12-05 01:07:15 +00001090 sk->sk_sndmsg_off = off + copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
1093 if (!copied)
Eric Dumazet4de075e2011-09-27 13:25:05 -04001094 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 tp->write_seq += copy;
1097 TCP_SKB_CB(skb)->end_seq += copy;
Herbert Xu79671682006-06-22 02:40:14 -07001098 skb_shinfo(skb)->gso_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 from += copy;
1101 copied += copy;
1102 if ((seglen -= copy) == 0 && iovlen == 0)
1103 goto out;
1104
Herbert Xu6828b922009-06-28 18:06:41 +00001105 if (skb->len < max || (flags & MSG_OOB))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 continue;
1107
1108 if (forced_push(tp)) {
1109 tcp_mark_push(tp, skb);
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001110 __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_PUSH);
David S. Millerfe067e82007-03-07 12:12:44 -08001111 } else if (skb == tcp_send_head(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 tcp_push_one(sk, mss_now);
1113 continue;
1114
1115wait_for_sndbuf:
1116 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
1117wait_for_memory:
1118 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001119 tcp_push(sk, flags & ~MSG_MORE, mss_now, TCP_NAGLE_PUSH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 if ((err = sk_stream_wait_memory(sk, &timeo)) != 0)
1122 goto do_error;
1123
Ilpo Järvinen0c54b852009-03-14 14:23:05 +00001124 mss_now = tcp_send_mss(sk, &size_goal, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 }
1127
1128out:
1129 if (copied)
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001130 tcp_push(sk, flags, mss_now, tp->nonagle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001132
1133 if (copied > 0)
1134 uid_stat_tcp_snd(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return copied;
1136
1137do_fault:
1138 if (!skb->len) {
David S. Millerfe067e82007-03-07 12:12:44 -08001139 tcp_unlink_write_queue(skb, sk);
1140 /* It is the one place in all of TCP, except connection
1141 * reset, where we can be unlinking the send_head.
1142 */
1143 tcp_check_send_head(sk, skb);
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001144 sk_wmem_free_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146
1147do_error:
1148 if (copied)
1149 goto out;
1150out_err:
1151 err = sk_stream_error(sk, flags, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 release_sock(sk);
1153 return err;
1154}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001155EXPORT_SYMBOL(tcp_sendmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157/*
1158 * Handle reading urgent data. BSD has very simple semantics for
1159 * this, no blocking and very strange errors 8)
1160 */
1161
Rami Rosen377f0a02009-03-31 14:43:17 -07001162static int tcp_recv_urg(struct sock *sk, struct msghdr *msg, int len, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
1164 struct tcp_sock *tp = tcp_sk(sk);
1165
1166 /* No URG data to read. */
1167 if (sock_flag(sk, SOCK_URGINLINE) || !tp->urg_data ||
1168 tp->urg_data == TCP_URG_READ)
1169 return -EINVAL; /* Yes this is right ! */
1170
1171 if (sk->sk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DONE))
1172 return -ENOTCONN;
1173
1174 if (tp->urg_data & TCP_URG_VALID) {
1175 int err = 0;
1176 char c = tp->urg_data;
1177
1178 if (!(flags & MSG_PEEK))
1179 tp->urg_data = TCP_URG_READ;
1180
1181 /* Read urgent data. */
1182 msg->msg_flags |= MSG_OOB;
1183
1184 if (len > 0) {
1185 if (!(flags & MSG_TRUNC))
1186 err = memcpy_toiovec(msg->msg_iov, &c, 1);
1187 len = 1;
1188 } else
1189 msg->msg_flags |= MSG_TRUNC;
1190
1191 return err ? -EFAULT : len;
1192 }
1193
1194 if (sk->sk_state == TCP_CLOSE || (sk->sk_shutdown & RCV_SHUTDOWN))
1195 return 0;
1196
1197 /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and
1198 * the available implementations agree in this case:
1199 * this call should never block, independent of the
1200 * blocking state of the socket.
1201 * Mike <pall@rz.uni-karlsruhe.de>
1202 */
1203 return -EAGAIN;
1204}
1205
1206/* Clean up the receive buffer for full frames taken by the user,
1207 * then send an ACK if necessary. COPIED is the number of bytes
1208 * tcp_recvmsg has given to the user so far, it speeds up the
1209 * calculation of whether or not we must ACK for the sake of
1210 * a window update.
1211 */
Chris Leech0e4b4992006-05-23 18:00:16 -07001212void tcp_cleanup_rbuf(struct sock *sk, int copied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 struct tcp_sock *tp = tcp_sk(sk);
1215 int time_to_ack = 0;
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
1218
Ilpo Järvinend792c102009-11-13 13:56:33 -08001219 WARN(skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001220 "cleanup rbuf bug: copied %X seq %X rcvnxt %X\n",
Ilpo Järvinend792c102009-11-13 13:56:33 -08001221 tp->copied_seq, TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001223 if (inet_csk_ack_scheduled(sk)) {
1224 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /* Delayed ACKs frequently hit locked sockets during bulk
1226 * receive. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001227 if (icsk->icsk_ack.blocked ||
Ravi Joshiee51cf02013-07-25 19:04:17 -07001228 /* Once-per-sysctl_tcp_delack_seg segments
1229 * ACK was not sent by tcp_input.c
1230 */
1231 tp->rcv_nxt - tp->rcv_wup > (icsk->icsk_ack.rcv_mss) *
1232 sysctl_tcp_delack_seg ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /*
1234 * If this read emptied read buffer, we send ACK, if
1235 * connection is not bidirectional, user drained
1236 * receive buffer and there was a small segment
1237 * in queue.
1238 */
Alexey Kuznetsov1ef96962006-09-19 12:52:50 -07001239 (copied > 0 &&
1240 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED2) ||
1241 ((icsk->icsk_ack.pending & ICSK_ACK_PUSHED) &&
1242 !icsk->icsk_ack.pingpong)) &&
1243 !atomic_read(&sk->sk_rmem_alloc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 time_to_ack = 1;
1245 }
1246
1247 /* We send an ACK if we can now advertise a non-zero window
1248 * which has been raised "significantly".
1249 *
1250 * Even if window raised up to infinity, do not send window open ACK
1251 * in states, where we will not receive more. It is useless.
1252 */
1253 if (copied > 0 && !time_to_ack && !(sk->sk_shutdown & RCV_SHUTDOWN)) {
1254 __u32 rcv_window_now = tcp_receive_window(tp);
1255
1256 /* Optimize, __tcp_select_window() is not cheap. */
1257 if (2*rcv_window_now <= tp->window_clamp) {
1258 __u32 new_window = __tcp_select_window(sk);
1259
1260 /* Send ACK now, if this read freed lots of space
1261 * in our buffer. Certainly, new_window is new window.
1262 * We can advertise it now, if it is not less than current one.
1263 * "Lots" means "at least twice" here.
1264 */
1265 if (new_window && new_window >= 2 * rcv_window_now)
1266 time_to_ack = 1;
1267 }
1268 }
1269 if (time_to_ack)
1270 tcp_send_ack(sk);
1271}
1272
1273static void tcp_prequeue_process(struct sock *sk)
1274{
1275 struct sk_buff *skb;
1276 struct tcp_sock *tp = tcp_sk(sk);
1277
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001278 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPPREQUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /* RX process wants to run with disabled BHs, though it is not
1281 * necessary */
1282 local_bh_disable();
1283 while ((skb = __skb_dequeue(&tp->ucopy.prequeue)) != NULL)
Peter Zijlstrac57943a2008-10-07 14:18:42 -07001284 sk_backlog_rcv(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 local_bh_enable();
1286
1287 /* Clear memory counter. */
1288 tp->ucopy.memory = 0;
1289}
1290
Steven J. Magnani73852e82010-03-16 05:22:44 +00001291#ifdef CONFIG_NET_DMA
1292static void tcp_service_net_dma(struct sock *sk, bool wait)
1293{
1294 dma_cookie_t done, used;
1295 dma_cookie_t last_issued;
1296 struct tcp_sock *tp = tcp_sk(sk);
1297
1298 if (!tp->ucopy.dma_chan)
1299 return;
1300
1301 last_issued = tp->ucopy.dma_cookie;
1302 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1303
1304 do {
1305 if (dma_async_memcpy_complete(tp->ucopy.dma_chan,
1306 last_issued, &done,
1307 &used) == DMA_SUCCESS) {
1308 /* Safe to free early-copied skbs now */
1309 __skb_queue_purge(&sk->sk_async_wait_queue);
1310 break;
1311 } else {
1312 struct sk_buff *skb;
1313 while ((skb = skb_peek(&sk->sk_async_wait_queue)) &&
1314 (dma_async_is_complete(skb->dma_cookie, done,
1315 used) == DMA_SUCCESS)) {
1316 __skb_dequeue(&sk->sk_async_wait_queue);
1317 kfree_skb(skb);
1318 }
1319 }
1320 } while (wait);
1321}
1322#endif
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324static inline struct sk_buff *tcp_recv_skb(struct sock *sk, u32 seq, u32 *off)
1325{
1326 struct sk_buff *skb;
1327 u32 offset;
1328
1329 skb_queue_walk(&sk->sk_receive_queue, skb) {
1330 offset = seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001331 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 offset--;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001333 if (offset < skb->len || tcp_hdr(skb)->fin) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 *off = offset;
1335 return skb;
1336 }
1337 }
1338 return NULL;
1339}
1340
1341/*
1342 * This routine provides an alternative to tcp_recvmsg() for routines
1343 * that would like to handle copying from skbuffs directly in 'sendfile'
1344 * fashion.
1345 * Note:
1346 * - It is assumed that the socket was locked by the caller.
1347 * - The routine does not block.
1348 * - At present, there is no support for reading OOB data
1349 * or for 'peeking' the socket using this routine
1350 * (although both would be easy to implement).
1351 */
1352int tcp_read_sock(struct sock *sk, read_descriptor_t *desc,
1353 sk_read_actor_t recv_actor)
1354{
1355 struct sk_buff *skb;
1356 struct tcp_sock *tp = tcp_sk(sk);
1357 u32 seq = tp->copied_seq;
1358 u32 offset;
1359 int copied = 0;
1360
1361 if (sk->sk_state == TCP_LISTEN)
1362 return -ENOTCONN;
1363 while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) {
1364 if (offset < skb->len) {
Octavian Purdila374e7b52008-07-03 03:31:21 -07001365 int used;
1366 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 len = skb->len - offset;
1369 /* Stop reading if we hit a patch of urgent data */
1370 if (tp->urg_data) {
1371 u32 urg_offset = tp->urg_seq - seq;
1372 if (urg_offset < len)
1373 len = urg_offset;
1374 if (!len)
1375 break;
1376 }
1377 used = recv_actor(desc, skb, offset, len);
Jens Axboeddb61a52007-06-23 23:07:50 -07001378 if (used < 0) {
1379 if (!copied)
1380 copied = used;
1381 break;
1382 } else if (used <= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 seq += used;
1384 copied += used;
1385 offset += used;
1386 }
Octavian Purdila293ad602008-06-04 15:45:58 -07001387 /*
1388 * If recv_actor drops the lock (e.g. TCP splice
1389 * receive) the skb pointer might be invalid when
1390 * getting here: tcp_collapse might have deleted it
1391 * while aggregating skbs from the socket queue.
1392 */
1393 skb = tcp_recv_skb(sk, seq-1, &offset);
1394 if (!skb || (offset+1 != skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 break;
1396 }
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001397 if (tcp_hdr(skb)->fin) {
Chris Leech624d1162006-05-23 18:01:28 -07001398 sk_eat_skb(sk, skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 ++seq;
1400 break;
1401 }
Chris Leech624d1162006-05-23 18:01:28 -07001402 sk_eat_skb(sk, skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (!desc->count)
1404 break;
Steven J. Magnanibaff42a2010-03-30 13:56:01 -07001405 tp->copied_seq = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407 tp->copied_seq = seq;
1408
1409 tcp_rcv_space_adjust(sk);
1410
1411 /* Clean up data we have read: This will do ACK frames. */
Mike Chan5a0b3542009-01-07 11:40:42 -08001412 if (copied > 0) {
Chris Leech0e4b4992006-05-23 18:00:16 -07001413 tcp_cleanup_rbuf(sk, copied);
Mike Chan5a0b3542009-01-07 11:40:42 -08001414 uid_stat_tcp_rcv(current_uid(), copied);
1415 }
1416
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return copied;
1418}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001419EXPORT_SYMBOL(tcp_read_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421/*
1422 * This routine copies from a sock struct into the user buffer.
1423 *
1424 * Technical note: in 2.3 we work on _locked_ socket, so that
1425 * tricks with *seq access order and skb->users are not required.
1426 * Probably, code can be easily improved even more.
1427 */
1428
1429int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
1430 size_t len, int nonblock, int flags, int *addr_len)
1431{
1432 struct tcp_sock *tp = tcp_sk(sk);
1433 int copied = 0;
1434 u32 peek_seq;
1435 u32 *seq;
1436 unsigned long used;
1437 int err;
1438 int target; /* Read at least this many bytes */
1439 long timeo;
1440 struct task_struct *user_recv = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001441 int copied_early = 0;
Chris Leech2b1244a2007-03-08 09:57:36 -08001442 struct sk_buff *skb;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001443 u32 urg_hole = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 lock_sock(sk);
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 err = -ENOTCONN;
1448 if (sk->sk_state == TCP_LISTEN)
1449 goto out;
1450
1451 timeo = sock_rcvtimeo(sk, nonblock);
1452
1453 /* Urgent data needs to be handled specially. */
1454 if (flags & MSG_OOB)
1455 goto recv_urg;
1456
1457 seq = &tp->copied_seq;
1458 if (flags & MSG_PEEK) {
1459 peek_seq = tp->copied_seq;
1460 seq = &peek_seq;
1461 }
1462
1463 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
1464
Chris Leech1a2449a2006-05-23 18:05:53 -07001465#ifdef CONFIG_NET_DMA
1466 tp->ucopy.dma_chan = NULL;
1467 preempt_disable();
Chris Leech2b1244a2007-03-08 09:57:36 -08001468 skb = skb_peek_tail(&sk->sk_receive_queue);
Andrew Mortone00c5d82007-03-08 09:57:36 -08001469 {
1470 int available = 0;
1471
1472 if (skb)
1473 available = TCP_SKB_CB(skb)->seq + skb->len - (*seq);
1474 if ((available < target) &&
1475 (len > sysctl_tcp_dma_copybreak) && !(flags & MSG_PEEK) &&
1476 !sysctl_tcp_low_latency &&
Dave Jianga2bd1142012-04-04 16:10:46 -07001477 net_dma_find_channel()) {
Andrew Mortone00c5d82007-03-08 09:57:36 -08001478 preempt_enable_no_resched();
1479 tp->ucopy.pinned_list =
1480 dma_pin_iovec_pages(msg->msg_iov, len);
1481 } else {
1482 preempt_enable_no_resched();
1483 }
1484 }
Chris Leech1a2449a2006-05-23 18:05:53 -07001485#endif
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 u32 offset;
1489
1490 /* Are we at urgent data? Stop if we have read anything or have SIGURG pending. */
1491 if (tp->urg_data && tp->urg_seq == *seq) {
1492 if (copied)
1493 break;
1494 if (signal_pending(current)) {
1495 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
1496 break;
1497 }
1498 }
1499
1500 /* Next get a buffer. */
1501
David S. Miller91521942009-05-28 21:35:47 -07001502 skb_queue_walk(&sk->sk_receive_queue, skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 /* Now that we have two receive queues this
1504 * shouldn't happen.
1505 */
Ilpo Järvinend792c102009-11-13 13:56:33 -08001506 if (WARN(before(*seq, TCP_SKB_CB(skb)->seq),
Joe Perches2af6fd82010-10-30 11:08:53 +00001507 "recvmsg bug: copied %X seq %X rcvnxt %X fl %X\n",
1508 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt,
1509 flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 break;
Ilpo Järvinend792c102009-11-13 13:56:33 -08001511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 offset = *seq - TCP_SKB_CB(skb)->seq;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001513 if (tcp_hdr(skb)->syn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 offset--;
1515 if (offset < skb->len)
1516 goto found_ok_skb;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001517 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 goto found_fin_ok;
Joe Perches2af6fd82010-10-30 11:08:53 +00001519 WARN(!(flags & MSG_PEEK),
1520 "recvmsg bug 2: copied %X seq %X rcvnxt %X fl %X\n",
1521 *seq, TCP_SKB_CB(skb)->seq, tp->rcv_nxt, flags);
David S. Miller91521942009-05-28 21:35:47 -07001522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 /* Well, if we have backlog, try to process it now yet. */
1525
1526 if (copied >= target && !sk->sk_backlog.tail)
1527 break;
1528
1529 if (copied) {
1530 if (sk->sk_err ||
1531 sk->sk_state == TCP_CLOSE ||
1532 (sk->sk_shutdown & RCV_SHUTDOWN) ||
1533 !timeo ||
David S. Miller518a09e2008-11-05 03:36:01 -08001534 signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 break;
1536 } else {
1537 if (sock_flag(sk, SOCK_DONE))
1538 break;
1539
1540 if (sk->sk_err) {
1541 copied = sock_error(sk);
1542 break;
1543 }
1544
1545 if (sk->sk_shutdown & RCV_SHUTDOWN)
1546 break;
1547
1548 if (sk->sk_state == TCP_CLOSE) {
1549 if (!sock_flag(sk, SOCK_DONE)) {
1550 /* This occurs when user tries to read
1551 * from never connected socket.
1552 */
1553 copied = -ENOTCONN;
1554 break;
1555 }
1556 break;
1557 }
1558
1559 if (!timeo) {
1560 copied = -EAGAIN;
1561 break;
1562 }
1563
1564 if (signal_pending(current)) {
1565 copied = sock_intr_errno(timeo);
1566 break;
1567 }
1568 }
1569
Chris Leech0e4b4992006-05-23 18:00:16 -07001570 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
David S. Miller7df55122005-06-18 23:01:10 -07001572 if (!sysctl_tcp_low_latency && tp->ucopy.task == user_recv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /* Install new reader */
1574 if (!user_recv && !(flags & (MSG_TRUNC | MSG_PEEK))) {
1575 user_recv = current;
1576 tp->ucopy.task = user_recv;
1577 tp->ucopy.iov = msg->msg_iov;
1578 }
1579
1580 tp->ucopy.len = len;
1581
Ilpo Järvinen547b7922008-07-25 21:43:18 -07001582 WARN_ON(tp->copied_seq != tp->rcv_nxt &&
1583 !(flags & (MSG_PEEK | MSG_TRUNC)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /* Ugly... If prequeue is not empty, we have to
1586 * process it before releasing socket, otherwise
1587 * order will be broken at second iteration.
1588 * More elegant solution is required!!!
1589 *
1590 * Look: we have the following (pseudo)queues:
1591 *
1592 * 1. packets in flight
1593 * 2. backlog
1594 * 3. prequeue
1595 * 4. receive_queue
1596 *
1597 * Each queue can be processed only if the next ones
1598 * are empty. At this point we have empty receive_queue.
1599 * But prequeue _can_ be not empty after 2nd iteration,
1600 * when we jumped to start of loop because backlog
1601 * processing added something to receive_queue.
1602 * We cannot release_sock(), because backlog contains
1603 * packets arrived _after_ prequeued ones.
1604 *
1605 * Shortly, algorithm is clear --- to process all
1606 * the queues in order. We could make it more directly,
1607 * requeueing packets from backlog to prequeue, if
1608 * is not empty. It is more elegant, but eats cycles,
1609 * unfortunately.
1610 */
David S. Millerb03efcf2005-07-08 14:57:23 -07001611 if (!skb_queue_empty(&tp->ucopy.prequeue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 goto do_prequeue;
1613
1614 /* __ Set realtime policy in scheduler __ */
1615 }
1616
Steven J. Magnani73852e82010-03-16 05:22:44 +00001617#ifdef CONFIG_NET_DMA
1618 if (tp->ucopy.dma_chan)
1619 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (copied >= target) {
1622 /* Do not sleep, just process backlog. */
1623 release_sock(sk);
1624 lock_sock(sk);
1625 } else
1626 sk_wait_data(sk, &timeo);
1627
Chris Leech1a2449a2006-05-23 18:05:53 -07001628#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001629 tcp_service_net_dma(sk, false); /* Don't block */
Chris Leech1a2449a2006-05-23 18:05:53 -07001630 tp->ucopy.wakeup = 0;
1631#endif
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (user_recv) {
1634 int chunk;
1635
1636 /* __ Restore normal policy in scheduler __ */
1637
1638 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001639 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMBACKLOG, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 len -= chunk;
1641 copied += chunk;
1642 }
1643
1644 if (tp->rcv_nxt == tp->copied_seq &&
David S. Millerb03efcf2005-07-08 14:57:23 -07001645 !skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646do_prequeue:
1647 tcp_prequeue_process(sk);
1648
1649 if ((chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001650 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 len -= chunk;
1652 copied += chunk;
1653 }
1654 }
1655 }
Ilpo Järvinen77527312009-05-10 20:32:34 +00001656 if ((flags & MSG_PEEK) &&
1657 (peek_seq - copied - urg_hole != tp->copied_seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (net_ratelimit())
1659 printk(KERN_DEBUG "TCP(%s:%d): Application bug, race in MSG_PEEK.\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001660 current->comm, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 peek_seq = tp->copied_seq;
1662 }
1663 continue;
1664
1665 found_ok_skb:
1666 /* Ok so how much can we use? */
1667 used = skb->len - offset;
1668 if (len < used)
1669 used = len;
1670
1671 /* Do we have urgent data here? */
1672 if (tp->urg_data) {
1673 u32 urg_offset = tp->urg_seq - *seq;
1674 if (urg_offset < used) {
1675 if (!urg_offset) {
1676 if (!sock_flag(sk, SOCK_URGINLINE)) {
1677 ++*seq;
Ilpo Järvinen77527312009-05-10 20:32:34 +00001678 urg_hole++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 offset++;
1680 used--;
1681 if (!used)
1682 goto skip_copy;
1683 }
1684 } else
1685 used = urg_offset;
1686 }
1687 }
1688
1689 if (!(flags & MSG_TRUNC)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001690#ifdef CONFIG_NET_DMA
1691 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
Dave Jianga2bd1142012-04-04 16:10:46 -07001692 tp->ucopy.dma_chan = net_dma_find_channel();
Chris Leech1a2449a2006-05-23 18:05:53 -07001693
1694 if (tp->ucopy.dma_chan) {
1695 tp->ucopy.dma_cookie = dma_skb_copy_datagram_iovec(
1696 tp->ucopy.dma_chan, skb, offset,
1697 msg->msg_iov, used,
1698 tp->ucopy.pinned_list);
1699
1700 if (tp->ucopy.dma_cookie < 0) {
1701
Joe Perchesafd465032012-03-12 07:03:32 +00001702 pr_alert("%s: dma_cookie < 0\n",
1703 __func__);
Chris Leech1a2449a2006-05-23 18:05:53 -07001704
1705 /* Exception. Bailout! */
1706 if (!copied)
1707 copied = -EFAULT;
1708 break;
1709 }
Steven J. Magnani73852e82010-03-16 05:22:44 +00001710
1711 dma_async_memcpy_issue_pending(tp->ucopy.dma_chan);
1712
Chris Leech1a2449a2006-05-23 18:05:53 -07001713 if ((offset + used) == skb->len)
1714 copied_early = 1;
1715
1716 } else
1717#endif
1718 {
1719 err = skb_copy_datagram_iovec(skb, offset,
1720 msg->msg_iov, used);
1721 if (err) {
1722 /* Exception. Bailout! */
1723 if (!copied)
1724 copied = -EFAULT;
1725 break;
1726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728 }
1729
1730 *seq += used;
1731 copied += used;
1732 len -= used;
1733
1734 tcp_rcv_space_adjust(sk);
1735
1736skip_copy:
1737 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq)) {
1738 tp->urg_data = 0;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07001739 tcp_fast_path_check(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741 if (used + offset < skb->len)
1742 continue;
1743
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001744 if (tcp_hdr(skb)->fin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto found_fin_ok;
Chris Leech1a2449a2006-05-23 18:05:53 -07001746 if (!(flags & MSG_PEEK)) {
1747 sk_eat_skb(sk, skb, copied_early);
1748 copied_early = 0;
1749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 continue;
1751
1752 found_fin_ok:
1753 /* Process the FIN. */
1754 ++*seq;
Chris Leech1a2449a2006-05-23 18:05:53 -07001755 if (!(flags & MSG_PEEK)) {
1756 sk_eat_skb(sk, skb, copied_early);
1757 copied_early = 0;
1758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 break;
1760 } while (len > 0);
1761
1762 if (user_recv) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001763 if (!skb_queue_empty(&tp->ucopy.prequeue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int chunk;
1765
1766 tp->ucopy.len = copied > 0 ? len : 0;
1767
1768 tcp_prequeue_process(sk);
1769
1770 if (copied > 0 && (chunk = len - tp->ucopy.len) != 0) {
Pavel Emelyanoved880982008-07-16 20:32:45 -07001771 NET_ADD_STATS_USER(sock_net(sk), LINUX_MIB_TCPDIRECTCOPYFROMPREQUEUE, chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 len -= chunk;
1773 copied += chunk;
1774 }
1775 }
1776
1777 tp->ucopy.task = NULL;
1778 tp->ucopy.len = 0;
1779 }
1780
Chris Leech1a2449a2006-05-23 18:05:53 -07001781#ifdef CONFIG_NET_DMA
Steven J. Magnani73852e82010-03-16 05:22:44 +00001782 tcp_service_net_dma(sk, true); /* Wait for queue to drain */
1783 tp->ucopy.dma_chan = NULL;
Chris Leech1a2449a2006-05-23 18:05:53 -07001784
Chris Leech1a2449a2006-05-23 18:05:53 -07001785 if (tp->ucopy.pinned_list) {
1786 dma_unpin_iovec_pages(tp->ucopy.pinned_list);
1787 tp->ucopy.pinned_list = NULL;
1788 }
1789#endif
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 /* According to UNIX98, msg_name/msg_namelen are ignored
1792 * on connected socket. I was just happy when found this 8) --ANK
1793 */
1794
1795 /* Clean up data we have read: This will do ACK frames. */
Chris Leech0e4b4992006-05-23 18:00:16 -07001796 tcp_cleanup_rbuf(sk, copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 release_sock(sk);
Mike Chan5a0b3542009-01-07 11:40:42 -08001799
1800 if (copied > 0)
1801 uid_stat_tcp_rcv(current_uid(), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return copied;
1803
1804out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 release_sock(sk);
1806 return err;
1807
1808recv_urg:
Rami Rosen377f0a02009-03-31 14:43:17 -07001809 err = tcp_recv_urg(sk, msg, len, flags);
Mike Chan5a0b3542009-01-07 11:40:42 -08001810 if (err > 0)
1811 uid_stat_tcp_rcv(current_uid(), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 goto out;
1813}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001814EXPORT_SYMBOL(tcp_recvmsg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001816void tcp_set_state(struct sock *sk, int state)
1817{
1818 int oldstate = sk->sk_state;
1819
1820 switch (state) {
1821 case TCP_ESTABLISHED:
1822 if (oldstate != TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001823 TCP_INC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001824 break;
1825
1826 case TCP_CLOSE:
1827 if (oldstate == TCP_CLOSE_WAIT || oldstate == TCP_ESTABLISHED)
Pavel Emelyanov81cc8a72008-07-16 20:22:04 -07001828 TCP_INC_STATS(sock_net(sk), TCP_MIB_ESTABRESETS);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001829
1830 sk->sk_prot->unhash(sk);
1831 if (inet_csk(sk)->icsk_bind_hash &&
1832 !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001833 inet_put_port(sk);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001834 /* fall through */
1835 default:
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001836 if (oldstate == TCP_ESTABLISHED)
Pavel Emelyanov74688e42008-07-16 20:22:46 -07001837 TCP_DEC_STATS(sock_net(sk), TCP_MIB_CURRESTAB);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001838 }
1839
1840 /* Change state AFTER socket is unhashed to avoid closed
1841 * socket sitting in hash tables.
1842 */
1843 sk->sk_state = state;
1844
1845#ifdef STATE_TRACE
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08001846 SOCK_DEBUG(sk, "TCP sk=%p, State %s -> %s\n", sk, statename[oldstate], statename[state]);
Ilpo Järvinen490d5042008-01-12 03:17:20 -08001847#endif
1848}
1849EXPORT_SYMBOL_GPL(tcp_set_state);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851/*
1852 * State processing on a close. This implements the state shift for
1853 * sending our FIN frame. Note that we only send a FIN for some
1854 * states. A shutdown() may have already sent the FIN, or we may be
1855 * closed.
1856 */
1857
Arjan van de Ven9b5b5cf2005-11-29 16:21:38 -08001858static const unsigned char new_state[16] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 /* current state: new state: action: */
1860 /* (Invalid) */ TCP_CLOSE,
1861 /* TCP_ESTABLISHED */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1862 /* TCP_SYN_SENT */ TCP_CLOSE,
1863 /* TCP_SYN_RECV */ TCP_FIN_WAIT1 | TCP_ACTION_FIN,
1864 /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1,
1865 /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2,
1866 /* TCP_TIME_WAIT */ TCP_CLOSE,
1867 /* TCP_CLOSE */ TCP_CLOSE,
1868 /* TCP_CLOSE_WAIT */ TCP_LAST_ACK | TCP_ACTION_FIN,
1869 /* TCP_LAST_ACK */ TCP_LAST_ACK,
1870 /* TCP_LISTEN */ TCP_CLOSE,
1871 /* TCP_CLOSING */ TCP_CLOSING,
1872};
1873
1874static int tcp_close_state(struct sock *sk)
1875{
1876 int next = (int)new_state[sk->sk_state];
1877 int ns = next & TCP_STATE_MASK;
1878
1879 tcp_set_state(sk, ns);
1880
1881 return next & TCP_ACTION_FIN;
1882}
1883
1884/*
1885 * Shutdown the sending side of a connection. Much like close except
Satoru SATOH1f29b052008-04-21 02:27:58 -07001886 * that we don't receive shut down or sock_set_flag(sk, SOCK_DEAD).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 */
1888
1889void tcp_shutdown(struct sock *sk, int how)
1890{
1891 /* We need to grab some memory, and put together a FIN,
1892 * and then put it into the queue to be sent.
1893 * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1894 */
1895 if (!(how & SEND_SHUTDOWN))
1896 return;
1897
1898 /* If we've already sent a FIN, or it's a closed state, skip this. */
1899 if ((1 << sk->sk_state) &
1900 (TCPF_ESTABLISHED | TCPF_SYN_SENT |
1901 TCPF_SYN_RECV | TCPF_CLOSE_WAIT)) {
1902 /* Clear out any half completed packets. FIN if needed. */
1903 if (tcp_close_state(sk))
1904 tcp_send_fin(sk);
1905 }
1906}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00001907EXPORT_SYMBOL(tcp_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001909bool tcp_check_oom(struct sock *sk, int shift)
1910{
1911 bool too_many_orphans, out_of_socket_memory;
1912
1913 too_many_orphans = tcp_too_many_orphans(sk, shift);
1914 out_of_socket_memory = tcp_out_of_memory(sk);
1915
1916 if (too_many_orphans && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001917 pr_info("too many orphaned sockets\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001918 if (out_of_socket_memory && net_ratelimit())
Joe Perchesafd465032012-03-12 07:03:32 +00001919 pr_info("out of memory -- consider tuning tcp_mem\n");
Arun Sharmaefcdbf22012-01-30 14:16:06 -08001920 return too_many_orphans || out_of_socket_memory;
1921}
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923void tcp_close(struct sock *sk, long timeout)
1924{
1925 struct sk_buff *skb;
1926 int data_was_unread = 0;
Herbert Xu75c2d9072006-05-03 23:31:35 -07001927 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 lock_sock(sk);
1930 sk->sk_shutdown = SHUTDOWN_MASK;
1931
1932 if (sk->sk_state == TCP_LISTEN) {
1933 tcp_set_state(sk, TCP_CLOSE);
1934
1935 /* Special case. */
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07001936 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 goto adjudge_to_death;
1939 }
1940
1941 /* We need to flush the recv. buffs. We do this only on the
1942 * descriptor close, not protocol-sourced closes, because the
1943 * reader process may not have drained the data yet!
1944 */
1945 while ((skb = __skb_dequeue(&sk->sk_receive_queue)) != NULL) {
1946 u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq -
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001947 tcp_hdr(skb)->fin;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 data_was_unread += len;
1949 __kfree_skb(skb);
1950 }
1951
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001952 sk_mem_reclaim(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Konstantin Khorenko565b7b22010-06-24 21:54:58 -07001954 /* If socket has been already reset (e.g. in tcp_reset()) - kill it. */
1955 if (sk->sk_state == TCP_CLOSE)
1956 goto adjudge_to_death;
1957
Gerrit Renker65bb7232007-04-28 21:21:46 -07001958 /* As outlined in RFC 2525, section 2.17, we send a RST here because
1959 * data was lost. To witness the awful effects of the old behavior of
1960 * always doing a FIN, run an older 2.1.x kernel or 2.0.x, start a bulk
1961 * GET in an FTP client, suspend the process, wait for the client to
1962 * advertise a zero window, then kill -9 the FTP client, wheee...
1963 * Note: timeout is always zero in such a case.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 */
1965 if (data_was_unread) {
1966 /* Unread data was tossed, zap the connection. */
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001967 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONCLOSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 tcp_set_state(sk, TCP_CLOSE);
Wu Fengguangaa133072009-09-02 23:45:45 -07001969 tcp_send_active_reset(sk, sk->sk_allocation);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 } else if (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime) {
1971 /* Check zero linger _after_ checking for unread data. */
1972 sk->sk_prot->disconnect(sk, 0);
Pavel Emelyanov6f67c812008-07-16 20:31:39 -07001973 NET_INC_STATS_USER(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 } else if (tcp_close_state(sk)) {
1975 /* We FIN if the application ate all the data before
1976 * zapping the connection.
1977 */
1978
1979 /* RED-PEN. Formally speaking, we have broken TCP state
1980 * machine. State transitions:
1981 *
1982 * TCP_ESTABLISHED -> TCP_FIN_WAIT1
1983 * TCP_SYN_RECV -> TCP_FIN_WAIT1 (forget it, it's impossible)
1984 * TCP_CLOSE_WAIT -> TCP_LAST_ACK
1985 *
1986 * are legal only when FIN has been sent (i.e. in window),
1987 * rather than queued out of window. Purists blame.
1988 *
1989 * F.e. "RFC state" is ESTABLISHED,
1990 * if Linux state is FIN-WAIT-1, but FIN is still not sent.
1991 *
1992 * The visible declinations are that sometimes
1993 * we enter time-wait state, when it is not required really
1994 * (harmless), do not send active resets, when they are
1995 * required by specs (TCP_ESTABLISHED, TCP_CLOSE_WAIT, when
1996 * they look as CLOSING or LAST_ACK for Linux)
1997 * Probably, I missed some more holelets.
1998 * --ANK
1999 */
2000 tcp_send_fin(sk);
2001 }
2002
2003 sk_stream_wait_close(sk, timeout);
2004
2005adjudge_to_death:
Herbert Xu75c2d9072006-05-03 23:31:35 -07002006 state = sk->sk_state;
2007 sock_hold(sk);
2008 sock_orphan(sk);
Herbert Xu75c2d9072006-05-03 23:31:35 -07002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 /* It is the last release_sock in its life. It will remove backlog. */
2011 release_sock(sk);
2012
2013
2014 /* Now socket is owned by kernel and we acquire BH lock
2015 to finish close. No need to check for user refs.
2016 */
2017 local_bh_disable();
2018 bh_lock_sock(sk);
Ilpo Järvinen547b7922008-07-25 21:43:18 -07002019 WARN_ON(sock_owned_by_user(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Herbert Xueb4dea52008-12-29 23:04:08 -08002021 percpu_counter_inc(sk->sk_prot->orphan_count);
2022
Herbert Xu75c2d9072006-05-03 23:31:35 -07002023 /* Have we already been destroyed by a softirq or backlog? */
2024 if (state != TCP_CLOSE && sk->sk_state == TCP_CLOSE)
2025 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 /* This is a (useful) BSD violating of the RFC. There is a
2028 * problem with TCP as specified in that the other end could
2029 * keep a socket open forever with no application left this end.
2030 * We use a 3 minute timeout (about the same as BSD) then kill
2031 * our end. If they send after that then tough - BUT: long enough
2032 * that we won't make the old 4*rto = almost no time - whoops
2033 * reset mistake.
2034 *
2035 * Nope, it was not mistake. It is really desired behaviour
2036 * f.e. on http servers, when such sockets are useless, but
2037 * consume significant resources. Let's do it with special
2038 * linger2 option. --ANK
2039 */
2040
2041 if (sk->sk_state == TCP_FIN_WAIT2) {
2042 struct tcp_sock *tp = tcp_sk(sk);
2043 if (tp->linger2 < 0) {
2044 tcp_set_state(sk, TCP_CLOSE);
2045 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002046 NET_INC_STATS_BH(sock_net(sk),
2047 LINUX_MIB_TCPABORTONLINGER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002049 const int tmo = tcp_fin_time(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 if (tmo > TCP_TIMEWAIT_LEN) {
David S. Miller52499af2006-07-31 22:32:09 -07002052 inet_csk_reset_keepalive_timer(sk,
2053 tmo - TCP_TIMEWAIT_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
2056 goto out;
2057 }
2058 }
2059 }
2060 if (sk->sk_state != TCP_CLOSE) {
Hideo Aoki3ab224b2007-12-31 00:11:19 -08002061 sk_mem_reclaim(sk);
Arun Sharmaefcdbf22012-01-30 14:16:06 -08002062 if (tcp_check_oom(sk, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 tcp_set_state(sk, TCP_CLOSE);
2064 tcp_send_active_reset(sk, GFP_ATOMIC);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07002065 NET_INC_STATS_BH(sock_net(sk),
2066 LINUX_MIB_TCPABORTONMEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
2070 if (sk->sk_state == TCP_CLOSE)
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002071 inet_csk_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 /* Otherwise, socket is reprieved until protocol close. */
2073
2074out:
2075 bh_unlock_sock(sk);
2076 local_bh_enable();
2077 sock_put(sk);
2078}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002079EXPORT_SYMBOL(tcp_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081/* These states need RST on ABORT according to RFC793 */
2082
2083static inline int tcp_need_reset(int state)
2084{
2085 return (1 << state) &
2086 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT | TCPF_FIN_WAIT1 |
2087 TCPF_FIN_WAIT2 | TCPF_SYN_RECV);
2088}
2089
2090int tcp_disconnect(struct sock *sk, int flags)
2091{
2092 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002093 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 struct tcp_sock *tp = tcp_sk(sk);
2095 int err = 0;
2096 int old_state = sk->sk_state;
2097
2098 if (old_state != TCP_CLOSE)
2099 tcp_set_state(sk, TCP_CLOSE);
2100
2101 /* ABORT function of RFC793 */
2102 if (old_state == TCP_LISTEN) {
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002103 inet_csk_listen_stop(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 } else if (tcp_need_reset(old_state) ||
2105 (tp->snd_nxt != tp->write_seq &&
2106 (1 << old_state) & (TCPF_CLOSING | TCPF_LAST_ACK))) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002107 /* The last check adjusts for discrepancy of Linux wrt. RFC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 * states
2109 */
2110 tcp_send_active_reset(sk, gfp_any());
2111 sk->sk_err = ECONNRESET;
2112 } else if (old_state == TCP_SYN_SENT)
2113 sk->sk_err = ECONNRESET;
2114
2115 tcp_clear_xmit_timers(sk);
2116 __skb_queue_purge(&sk->sk_receive_queue);
David S. Millerfe067e82007-03-07 12:12:44 -08002117 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 __skb_queue_purge(&tp->out_of_order_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07002119#ifdef CONFIG_NET_DMA
2120 __skb_queue_purge(&sk->sk_async_wait_queue);
2121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002123 inet->inet_dport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
2126 inet_reset_saddr(sk);
2127
2128 sk->sk_shutdown = 0;
2129 sock_reset_flag(sk, SOCK_DONE);
2130 tp->srtt = 0;
2131 if ((tp->write_seq += tp->max_window + 2) == 0)
2132 tp->write_seq = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002133 icsk->icsk_backoff = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 tp->snd_cwnd = 2;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002135 icsk->icsk_probes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 tp->packets_out = 0;
Ilpo Järvinen0b6a05c2009-09-15 01:30:10 -07002137 tp->snd_ssthresh = TCP_INFINITE_SSTHRESH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 tp->snd_cwnd_cnt = 0;
Stephen Hemminger9772efb2005-11-10 17:09:53 -08002139 tp->bytes_acked = 0;
Eric Dumazet1fdf4752009-11-30 12:53:30 -08002140 tp->window_clamp = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002141 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 tcp_clear_retrans(tp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002143 inet_csk_delack_init(sk);
Wei Wang7b983f12017-05-18 11:22:33 -07002144 /* Initialize rcv_mss to TCP_MIN_MSS to avoid division by 0
2145 * issue in __tcp_select_window()
2146 */
2147 icsk->icsk_ack.rcv_mss = TCP_MIN_MSS;
David S. Millerfe067e82007-03-07 12:12:44 -08002148 tcp_init_send_head(sk);
Srinivas Ajib40b4f72007-05-03 17:32:28 -07002149 memset(&tp->rx_opt, 0, sizeof(tp->rx_opt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 __sk_dst_reset(sk);
2151
Eric Dumazetc720c7e2009-10-15 06:30:45 +00002152 WARN_ON(inet->inet_num && !icsk->icsk_bind_hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
2154 sk->sk_error_report(sk);
2155 return err;
2156}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002157EXPORT_SYMBOL(tcp_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
2159/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 * Socket option code for TCP.
2161 */
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002162static int do_tcp_setsockopt(struct sock *sk, int level,
David S. Millerb7058842009-09-30 16:12:20 -07002163 int optname, char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
2165 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002166 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 int val;
2168 int err = 0;
2169
William Allen Simpsone56fb502009-12-02 18:19:30 +00002170 /* These are data/string values, all the others are ints */
2171 switch (optname) {
2172 case TCP_CONGESTION: {
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002173 char name[TCP_CA_NAME_MAX];
2174
2175 if (optlen < 1)
2176 return -EINVAL;
2177
2178 val = strncpy_from_user(name, optval,
Andrew Morton4fdb78d2009-10-01 15:02:20 -07002179 min_t(long, TCP_CA_NAME_MAX-1, optlen));
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002180 if (val < 0)
2181 return -EFAULT;
2182 name[val] = 0;
2183
2184 lock_sock(sk);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002185 err = tcp_set_congestion_control(sk, name);
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002186 release_sock(sk);
2187 return err;
2188 }
William Allen Simpsone56fb502009-12-02 18:19:30 +00002189 case TCP_COOKIE_TRANSACTIONS: {
2190 struct tcp_cookie_transactions ctd;
2191 struct tcp_cookie_values *cvp = NULL;
2192
2193 if (sizeof(ctd) > optlen)
2194 return -EINVAL;
2195 if (copy_from_user(&ctd, optval, sizeof(ctd)))
2196 return -EFAULT;
2197
2198 if (ctd.tcpct_used > sizeof(ctd.tcpct_value) ||
2199 ctd.tcpct_s_data_desired > TCP_MSS_DESIRED)
2200 return -EINVAL;
2201
2202 if (ctd.tcpct_cookie_desired == 0) {
2203 /* default to global value */
2204 } else if ((0x1 & ctd.tcpct_cookie_desired) ||
2205 ctd.tcpct_cookie_desired > TCP_COOKIE_MAX ||
2206 ctd.tcpct_cookie_desired < TCP_COOKIE_MIN) {
2207 return -EINVAL;
2208 }
2209
2210 if (TCP_COOKIE_OUT_NEVER & ctd.tcpct_flags) {
2211 /* Supercedes all other values */
2212 lock_sock(sk);
2213 if (tp->cookie_values != NULL) {
2214 kref_put(&tp->cookie_values->kref,
2215 tcp_cookie_values_release);
2216 tp->cookie_values = NULL;
2217 }
2218 tp->rx_opt.cookie_in_always = 0; /* false */
2219 tp->rx_opt.cookie_out_never = 1; /* true */
2220 release_sock(sk);
2221 return err;
2222 }
2223
2224 /* Allocate ancillary memory before locking.
2225 */
2226 if (ctd.tcpct_used > 0 ||
2227 (tp->cookie_values == NULL &&
2228 (sysctl_tcp_cookie_size > 0 ||
2229 ctd.tcpct_cookie_desired > 0 ||
2230 ctd.tcpct_s_data_desired > 0))) {
2231 cvp = kzalloc(sizeof(*cvp) + ctd.tcpct_used,
2232 GFP_KERNEL);
2233 if (cvp == NULL)
2234 return -ENOMEM;
Dmitry Popova3bdb542010-07-29 01:59:36 +00002235
2236 kref_init(&cvp->kref);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002237 }
2238 lock_sock(sk);
2239 tp->rx_opt.cookie_in_always =
2240 (TCP_COOKIE_IN_ALWAYS & ctd.tcpct_flags);
2241 tp->rx_opt.cookie_out_never = 0; /* false */
2242
2243 if (tp->cookie_values != NULL) {
2244 if (cvp != NULL) {
2245 /* Changed values are recorded by a changed
2246 * pointer, ensuring the cookie will differ,
2247 * without separately hashing each value later.
2248 */
2249 kref_put(&tp->cookie_values->kref,
2250 tcp_cookie_values_release);
William Allen Simpsone56fb502009-12-02 18:19:30 +00002251 } else {
2252 cvp = tp->cookie_values;
2253 }
2254 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002255
William Allen Simpsone56fb502009-12-02 18:19:30 +00002256 if (cvp != NULL) {
2257 cvp->cookie_desired = ctd.tcpct_cookie_desired;
2258
2259 if (ctd.tcpct_used > 0) {
2260 memcpy(cvp->s_data_payload, ctd.tcpct_value,
2261 ctd.tcpct_used);
2262 cvp->s_data_desired = ctd.tcpct_used;
2263 cvp->s_data_constant = 1; /* true */
2264 } else {
2265 /* No constant payload data. */
2266 cvp->s_data_desired = ctd.tcpct_s_data_desired;
2267 cvp->s_data_constant = 0; /* false */
2268 }
Dmitry Popova3bdb542010-07-29 01:59:36 +00002269
2270 tp->cookie_values = cvp;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002271 }
2272 release_sock(sk);
2273 return err;
2274 }
2275 default:
2276 /* fallthru */
2277 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +00002278 }
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (optlen < sizeof(int))
2281 return -EINVAL;
2282
2283 if (get_user(val, (int __user *)optval))
2284 return -EFAULT;
2285
2286 lock_sock(sk);
2287
2288 switch (optname) {
2289 case TCP_MAXSEG:
2290 /* Values greater than interface MTU won't take effect. However
2291 * at the point when this call is done we typically don't yet
2292 * know which interface is going to be used */
David S. Millerc39508d2010-11-24 11:47:22 -08002293 if (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 err = -EINVAL;
2295 break;
2296 }
2297 tp->rx_opt.user_mss = val;
2298 break;
2299
2300 case TCP_NODELAY:
2301 if (val) {
2302 /* TCP_NODELAY is weaker than TCP_CORK, so that
2303 * this option on corked socket is remembered, but
2304 * it is not activated until cork is cleared.
2305 *
2306 * However, when TCP_NODELAY is set we make
2307 * an explicit push, which overrides even TCP_CORK
2308 * for currently queued segments.
2309 */
2310 tp->nonagle |= TCP_NAGLE_OFF|TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002311 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 } else {
2313 tp->nonagle &= ~TCP_NAGLE_OFF;
2314 }
2315 break;
2316
Andreas Petlund36e31b02010-02-18 02:47:01 +00002317 case TCP_THIN_LINEAR_TIMEOUTS:
2318 if (val < 0 || val > 1)
2319 err = -EINVAL;
2320 else
2321 tp->thin_lto = val;
2322 break;
2323
Andreas Petlund7e380172010-02-18 04:48:19 +00002324 case TCP_THIN_DUPACK:
2325 if (val < 0 || val > 1)
2326 err = -EINVAL;
2327 else
2328 tp->thin_dupack = val;
2329 break;
2330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 case TCP_CORK:
2332 /* When set indicates to always queue non-full frames.
2333 * Later the user clears this option and we transmit
2334 * any pending partial frames in the queue. This is
2335 * meant to be used alongside sendfile() to get properly
2336 * filled frames when the user (for example) must write
2337 * out headers with a write() call first and then use
2338 * sendfile to send out the data parts.
2339 *
2340 * TCP_CORK can be set together with TCP_NODELAY and it is
2341 * stronger than TCP_NODELAY.
2342 */
2343 if (val) {
2344 tp->nonagle |= TCP_NAGLE_CORK;
2345 } else {
2346 tp->nonagle &= ~TCP_NAGLE_CORK;
2347 if (tp->nonagle&TCP_NAGLE_OFF)
2348 tp->nonagle |= TCP_NAGLE_PUSH;
Ilpo Järvinen9e412ba2007-04-20 22:18:02 -07002349 tcp_push_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 break;
2352
2353 case TCP_KEEPIDLE:
2354 if (val < 1 || val > MAX_TCP_KEEPIDLE)
2355 err = -EINVAL;
2356 else {
2357 tp->keepalive_time = val * HZ;
2358 if (sock_flag(sk, SOCK_KEEPOPEN) &&
2359 !((1 << sk->sk_state) &
2360 (TCPF_CLOSE | TCPF_LISTEN))) {
Flavio Leitner6c37e5d2010-04-26 18:33:27 +00002361 u32 elapsed = keepalive_time_elapsed(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (tp->keepalive_time > elapsed)
2363 elapsed = tp->keepalive_time - elapsed;
2364 else
2365 elapsed = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002366 inet_csk_reset_keepalive_timer(sk, elapsed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368 }
2369 break;
2370 case TCP_KEEPINTVL:
2371 if (val < 1 || val > MAX_TCP_KEEPINTVL)
2372 err = -EINVAL;
2373 else
2374 tp->keepalive_intvl = val * HZ;
2375 break;
2376 case TCP_KEEPCNT:
2377 if (val < 1 || val > MAX_TCP_KEEPCNT)
2378 err = -EINVAL;
2379 else
2380 tp->keepalive_probes = val;
2381 break;
2382 case TCP_SYNCNT:
2383 if (val < 1 || val > MAX_TCP_SYNCNT)
2384 err = -EINVAL;
2385 else
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002386 icsk->icsk_syn_retries = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 break;
2388
2389 case TCP_LINGER2:
2390 if (val < 0)
2391 tp->linger2 = -1;
2392 else if (val > sysctl_tcp_fin_timeout / HZ)
2393 tp->linger2 = 0;
2394 else
2395 tp->linger2 = val * HZ;
2396 break;
2397
2398 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002399 /* Translate value in seconds to number of retransmits */
2400 icsk->icsk_accept_queue.rskq_defer_accept =
2401 secs_to_retrans(val, TCP_TIMEOUT_INIT / HZ,
2402 TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 break;
2404
2405 case TCP_WINDOW_CLAMP:
2406 if (!val) {
2407 if (sk->sk_state != TCP_CLOSE) {
2408 err = -EINVAL;
2409 break;
2410 }
2411 tp->window_clamp = 0;
2412 } else
2413 tp->window_clamp = val < SOCK_MIN_RCVBUF / 2 ?
2414 SOCK_MIN_RCVBUF / 2 : val;
2415 break;
2416
2417 case TCP_QUICKACK:
2418 if (!val) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002419 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002421 icsk->icsk_ack.pingpong = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if ((1 << sk->sk_state) &
2423 (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT) &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002424 inet_csk_ack_scheduled(sk)) {
2425 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
Chris Leech0e4b4992006-05-23 18:00:16 -07002426 tcp_cleanup_rbuf(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (!(val & 1))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002428 icsk->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 }
2431 break;
2432
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002433#ifdef CONFIG_TCP_MD5SIG
2434 case TCP_MD5SIG:
2435 /* Read the IP->Key mappings from userspace */
2436 err = tp->af_specific->md5_parse(sk, optval, optlen);
2437 break;
2438#endif
Jerry Chudca43c72010-08-27 19:13:28 +00002439 case TCP_USER_TIMEOUT:
2440 /* Cap the max timeout in ms TCP will retry/retrans
2441 * before giving up and aborting (ETIMEDOUT) a connection.
2442 */
2443 icsk->icsk_user_timeout = msecs_to_jiffies(val);
2444 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 default:
2446 err = -ENOPROTOOPT;
2447 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002448 }
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 release_sock(sk);
2451 return err;
2452}
2453
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002454int tcp_setsockopt(struct sock *sk, int level, int optname, char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -07002455 unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002456{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002457 const struct inet_connection_sock *icsk = inet_csk(sk);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002458
2459 if (level != SOL_TCP)
2460 return icsk->icsk_af_ops->setsockopt(sk, level, optname,
2461 optval, optlen);
2462 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2463}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002464EXPORT_SYMBOL(tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002465
2466#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002467int compat_tcp_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07002468 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002469{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002470 if (level != SOL_TCP)
2471 return inet_csk_compat_setsockopt(sk, level, optname,
2472 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002473 return do_tcp_setsockopt(sk, level, optname, optval, optlen);
2474}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002475EXPORT_SYMBOL(compat_tcp_setsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002476#endif
2477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478/* Return information about state of tcp endpoint in API format. */
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002479void tcp_get_info(const struct sock *sk, struct tcp_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Eric Dumazetcf533ea2011-10-21 05:22:42 -04002481 const struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002482 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 u32 now = tcp_time_stamp;
2484
2485 memset(info, 0, sizeof(*info));
2486
2487 info->tcpi_state = sk->sk_state;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002488 info->tcpi_ca_state = icsk->icsk_ca_state;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002489 info->tcpi_retransmits = icsk->icsk_retransmits;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002490 info->tcpi_probes = icsk->icsk_probes_out;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002491 info->tcpi_backoff = icsk->icsk_backoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 if (tp->rx_opt.tstamp_ok)
2494 info->tcpi_options |= TCPI_OPT_TIMESTAMPS;
Ilpo Järvinene60402d2007-08-09 15:14:46 +03002495 if (tcp_is_sack(tp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 info->tcpi_options |= TCPI_OPT_SACK;
2497 if (tp->rx_opt.wscale_ok) {
2498 info->tcpi_options |= TCPI_OPT_WSCALE;
2499 info->tcpi_snd_wscale = tp->rx_opt.snd_wscale;
2500 info->tcpi_rcv_wscale = tp->rx_opt.rcv_wscale;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Eric Dumazetb5c56932011-10-03 14:01:21 -04002503 if (tp->ecn_flags & TCP_ECN_OK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 info->tcpi_options |= TCPI_OPT_ECN;
Eric Dumazetb5c56932011-10-03 14:01:21 -04002505 if (tp->ecn_flags & TCP_ECN_SEEN)
2506 info->tcpi_options |= TCPI_OPT_ECN_SEEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002508 info->tcpi_rto = jiffies_to_usecs(icsk->icsk_rto);
2509 info->tcpi_ato = jiffies_to_usecs(icsk->icsk_ack.ato);
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002510 info->tcpi_snd_mss = tp->mss_cache;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002511 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Rick Jones5ee3afb2007-09-18 13:26:31 -07002513 if (sk->sk_state == TCP_LISTEN) {
2514 info->tcpi_unacked = sk->sk_ack_backlog;
2515 info->tcpi_sacked = sk->sk_max_ack_backlog;
2516 } else {
2517 info->tcpi_unacked = tp->packets_out;
2518 info->tcpi_sacked = tp->sacked_out;
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 info->tcpi_lost = tp->lost_out;
2521 info->tcpi_retrans = tp->retrans_out;
2522 info->tcpi_fackets = tp->fackets_out;
2523
2524 info->tcpi_last_data_sent = jiffies_to_msecs(now - tp->lsndtime);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002525 info->tcpi_last_data_recv = jiffies_to_msecs(now - icsk->icsk_ack.lrcvtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 info->tcpi_last_ack_recv = jiffies_to_msecs(now - tp->rcv_tstamp);
2527
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08002528 info->tcpi_pmtu = icsk->icsk_pmtu_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 info->tcpi_rcv_ssthresh = tp->rcv_ssthresh;
2530 info->tcpi_rtt = jiffies_to_usecs(tp->srtt)>>3;
2531 info->tcpi_rttvar = jiffies_to_usecs(tp->mdev)>>2;
2532 info->tcpi_snd_ssthresh = tp->snd_ssthresh;
2533 info->tcpi_snd_cwnd = tp->snd_cwnd;
2534 info->tcpi_advmss = tp->advmss;
2535 info->tcpi_reordering = tp->reordering;
2536
2537 info->tcpi_rcv_rtt = jiffies_to_usecs(tp->rcv_rtt_est.rtt)>>3;
2538 info->tcpi_rcv_space = tp->rcvq_space.space;
2539
2540 info->tcpi_total_retrans = tp->total_retrans;
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002541
Steve Mucklef132c6c2012-06-06 18:30:57 -07002542 if (sk->sk_socket) {
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002543 struct file *filep = sk->sk_socket->file;
Steve Mucklef132c6c2012-06-06 18:30:57 -07002544 if (filep)
Chinh Tranbbebbfe2011-10-26 16:14:15 -07002545 info->tcpi_count = atomic_read(&filep->f_count);
2546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548EXPORT_SYMBOL_GPL(tcp_get_info);
2549
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002550static int do_tcp_getsockopt(struct sock *sk, int level,
2551 int optname, char __user *optval, int __user *optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002553 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 struct tcp_sock *tp = tcp_sk(sk);
2555 int val, len;
2556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 if (get_user(len, optlen))
2558 return -EFAULT;
2559
2560 len = min_t(unsigned int, len, sizeof(int));
2561
2562 if (len < 0)
2563 return -EINVAL;
2564
2565 switch (optname) {
2566 case TCP_MAXSEG:
David S. Millerc1b4a7e2005-07-05 15:24:38 -07002567 val = tp->mss_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
2569 val = tp->rx_opt.user_mss;
2570 break;
2571 case TCP_NODELAY:
2572 val = !!(tp->nonagle&TCP_NAGLE_OFF);
2573 break;
2574 case TCP_CORK:
2575 val = !!(tp->nonagle&TCP_NAGLE_CORK);
2576 break;
2577 case TCP_KEEPIDLE:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002578 val = keepalive_time_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 break;
2580 case TCP_KEEPINTVL:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002581 val = keepalive_intvl_when(tp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 break;
2583 case TCP_KEEPCNT:
Eric Dumazetdf19a622009-08-28 23:48:54 -07002584 val = keepalive_probes(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 break;
2586 case TCP_SYNCNT:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002587 val = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 break;
2589 case TCP_LINGER2:
2590 val = tp->linger2;
2591 if (val >= 0)
2592 val = (val ? : sysctl_tcp_fin_timeout) / HZ;
2593 break;
2594 case TCP_DEFER_ACCEPT:
Julian Anastasovb103cf32009-10-19 10:10:40 +00002595 val = retrans_to_secs(icsk->icsk_accept_queue.rskq_defer_accept,
2596 TCP_TIMEOUT_INIT / HZ, TCP_RTO_MAX / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 break;
2598 case TCP_WINDOW_CLAMP:
2599 val = tp->window_clamp;
2600 break;
2601 case TCP_INFO: {
2602 struct tcp_info info;
2603
2604 if (get_user(len, optlen))
2605 return -EFAULT;
2606
2607 tcp_get_info(sk, &info);
2608
2609 len = min_t(unsigned int, len, sizeof(info));
2610 if (put_user(len, optlen))
2611 return -EFAULT;
2612 if (copy_to_user(optval, &info, len))
2613 return -EFAULT;
2614 return 0;
2615 }
2616 case TCP_QUICKACK:
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07002617 val = !icsk->icsk_ack.pingpong;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 break;
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002619
2620 case TCP_CONGESTION:
2621 if (get_user(len, optlen))
2622 return -EFAULT;
2623 len = min_t(unsigned int, len, TCP_CA_NAME_MAX);
2624 if (put_user(len, optlen))
2625 return -EFAULT;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002626 if (copy_to_user(optval, icsk->icsk_ca_ops->name, len))
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07002627 return -EFAULT;
2628 return 0;
William Allen Simpsone56fb502009-12-02 18:19:30 +00002629
2630 case TCP_COOKIE_TRANSACTIONS: {
2631 struct tcp_cookie_transactions ctd;
2632 struct tcp_cookie_values *cvp = tp->cookie_values;
2633
2634 if (get_user(len, optlen))
2635 return -EFAULT;
2636 if (len < sizeof(ctd))
2637 return -EINVAL;
2638
2639 memset(&ctd, 0, sizeof(ctd));
2640 ctd.tcpct_flags = (tp->rx_opt.cookie_in_always ?
2641 TCP_COOKIE_IN_ALWAYS : 0)
2642 | (tp->rx_opt.cookie_out_never ?
2643 TCP_COOKIE_OUT_NEVER : 0);
2644
2645 if (cvp != NULL) {
2646 ctd.tcpct_flags |= (cvp->s_data_in ?
2647 TCP_S_DATA_IN : 0)
2648 | (cvp->s_data_out ?
2649 TCP_S_DATA_OUT : 0);
2650
2651 ctd.tcpct_cookie_desired = cvp->cookie_desired;
2652 ctd.tcpct_s_data_desired = cvp->s_data_desired;
2653
William Allen Simpsone56fb502009-12-02 18:19:30 +00002654 memcpy(&ctd.tcpct_value[0], &cvp->cookie_pair[0],
2655 cvp->cookie_pair_size);
2656 ctd.tcpct_used = cvp->cookie_pair_size;
2657 }
2658
2659 if (put_user(sizeof(ctd), optlen))
2660 return -EFAULT;
2661 if (copy_to_user(optval, &ctd, sizeof(ctd)))
2662 return -EFAULT;
2663 return 0;
2664 }
Josh Hunt3c0fef02010-07-30 13:49:35 +00002665 case TCP_THIN_LINEAR_TIMEOUTS:
2666 val = tp->thin_lto;
2667 break;
2668 case TCP_THIN_DUPACK:
2669 val = tp->thin_dupack;
2670 break;
Jerry Chudca43c72010-08-27 19:13:28 +00002671
2672 case TCP_USER_TIMEOUT:
2673 val = jiffies_to_msecs(icsk->icsk_user_timeout);
2674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 default:
2676 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679 if (put_user(len, optlen))
2680 return -EFAULT;
2681 if (copy_to_user(optval, &val, len))
2682 return -EFAULT;
2683 return 0;
2684}
2685
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002686int tcp_getsockopt(struct sock *sk, int level, int optname, char __user *optval,
2687 int __user *optlen)
2688{
2689 struct inet_connection_sock *icsk = inet_csk(sk);
2690
2691 if (level != SOL_TCP)
2692 return icsk->icsk_af_ops->getsockopt(sk, level, optname,
2693 optval, optlen);
2694 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2695}
Eric Dumazet4bc2f182010-07-09 21:22:10 +00002696EXPORT_SYMBOL(tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002697
2698#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002699int compat_tcp_getsockopt(struct sock *sk, int level, int optname,
2700 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002701{
Arnaldo Carvalho de Melodec73ff2006-03-20 22:46:16 -08002702 if (level != SOL_TCP)
2703 return inet_csk_compat_getsockopt(sk, level, optname,
2704 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002705 return do_tcp_getsockopt(sk, level, optname, optval, optlen);
2706}
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002707EXPORT_SYMBOL(compat_tcp_getsockopt);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08002708#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002710struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
2711 netdev_features_t features)
Herbert Xuf4c50d92006-06-22 03:02:40 -07002712{
2713 struct sk_buff *segs = ERR_PTR(-EINVAL);
2714 struct tcphdr *th;
2715 unsigned thlen;
2716 unsigned int seq;
Al Virod3bc23e2006-11-14 21:24:49 -08002717 __be32 delta;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002718 unsigned int oldlen;
Herbert Xu4e704ee2009-01-14 20:41:12 -08002719 unsigned int mss;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002720
2721 if (!pskb_may_pull(skb, sizeof(*th)))
2722 goto out;
2723
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002724 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002725 thlen = th->doff * 4;
2726 if (thlen < sizeof(*th))
2727 goto out;
2728
2729 if (!pskb_may_pull(skb, thlen))
2730 goto out;
2731
Herbert Xu0718bcc2006-06-25 23:55:46 -07002732 oldlen = (u16)~skb->len;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002733 __skb_pull(skb, thlen);
2734
Herbert Xu4e704ee2009-01-14 20:41:12 -08002735 mss = skb_shinfo(skb)->gso_size;
2736 if (unlikely(skb->len <= mss))
2737 goto out;
2738
Herbert Xu3820c3f2006-06-29 20:11:25 -07002739 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
2740 /* Packet is from an untrusted source, reset gso_segs. */
Herbert Xubbcf4672006-07-03 19:38:35 -07002741 int type = skb_shinfo(skb)->gso_type;
Herbert Xu3820c3f2006-06-29 20:11:25 -07002742
Herbert Xubbcf4672006-07-03 19:38:35 -07002743 if (unlikely(type &
2744 ~(SKB_GSO_TCPV4 |
2745 SKB_GSO_DODGY |
2746 SKB_GSO_TCP_ECN |
2747 SKB_GSO_TCPV6 |
2748 0) ||
2749 !(type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))))
2750 goto out;
2751
Ilpo Järvinen172589c2007-08-28 15:50:33 -07002752 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
Herbert Xu3820c3f2006-06-29 20:11:25 -07002753
2754 segs = NULL;
2755 goto out;
2756 }
2757
Herbert Xu576a30e2006-06-27 13:22:38 -07002758 segs = skb_segment(skb, features);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002759 if (IS_ERR(segs))
2760 goto out;
2761
Herbert Xu4e704ee2009-01-14 20:41:12 -08002762 delta = htonl(oldlen + (thlen + mss));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002763
2764 skb = segs;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002765 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002766 seq = ntohl(th->seq);
2767
2768 do {
2769 th->fin = th->psh = 0;
2770
Al Virod3bc23e2006-11-14 21:24:49 -08002771 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2772 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002773 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002774 th->check =
2775 csum_fold(csum_partial(skb_transport_header(skb),
2776 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002777
Herbert Xu4e704ee2009-01-14 20:41:12 -08002778 seq += mss;
Herbert Xuf4c50d92006-06-22 03:02:40 -07002779 skb = skb->next;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07002780 th = tcp_hdr(skb);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002781
2782 th->seq = htonl(seq);
2783 th->cwr = 0;
2784 } while (skb->next);
2785
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07002786 delta = htonl(oldlen + (skb->tail - skb->transport_header) +
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002787 skb->data_len);
Al Virod3bc23e2006-11-14 21:24:49 -08002788 th->check = ~csum_fold((__force __wsum)((__force u32)th->check +
2789 (__force u32)delta));
Patrick McHardy84fa7932006-08-29 16:44:56 -07002790 if (skb->ip_summed != CHECKSUM_PARTIAL)
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002791 th->check = csum_fold(csum_partial(skb_transport_header(skb),
2792 thlen, skb->csum));
Herbert Xuf4c50d92006-06-22 03:02:40 -07002793
2794out:
2795 return segs;
2796}
Herbert Xuadcfc7d2006-06-30 13:36:15 -07002797EXPORT_SYMBOL(tcp_tso_segment);
Herbert Xuf4c50d92006-06-22 03:02:40 -07002798
Herbert Xubf296b12008-12-15 23:43:36 -08002799struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
2800{
2801 struct sk_buff **pp = NULL;
2802 struct sk_buff *p;
2803 struct tcphdr *th;
2804 struct tcphdr *th2;
Herbert Xua0a69a02009-04-17 02:34:38 -07002805 unsigned int len;
Herbert Xubf296b12008-12-15 23:43:36 -08002806 unsigned int thlen;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002807 __be32 flags;
Herbert Xubf296b12008-12-15 23:43:36 -08002808 unsigned int mss = 1;
Herbert Xua5b1cf22009-05-26 18:50:28 +00002809 unsigned int hlen;
2810 unsigned int off;
Herbert Xubf296b12008-12-15 23:43:36 -08002811 int flush = 1;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002812 int i;
Herbert Xubf296b12008-12-15 23:43:36 -08002813
Herbert Xua5b1cf22009-05-26 18:50:28 +00002814 off = skb_gro_offset(skb);
2815 hlen = off + sizeof(*th);
2816 th = skb_gro_header_fast(skb, off);
2817 if (skb_gro_header_hard(skb, hlen)) {
2818 th = skb_gro_header_slow(skb, hlen, off);
2819 if (unlikely(!th))
2820 goto out;
2821 }
Herbert Xubf296b12008-12-15 23:43:36 -08002822
Herbert Xubf296b12008-12-15 23:43:36 -08002823 thlen = th->doff * 4;
2824 if (thlen < sizeof(*th))
2825 goto out;
2826
Herbert Xua5b1cf22009-05-26 18:50:28 +00002827 hlen = off + thlen;
2828 if (skb_gro_header_hard(skb, hlen)) {
2829 th = skb_gro_header_slow(skb, hlen, off);
2830 if (unlikely(!th))
2831 goto out;
2832 }
Herbert Xubf296b12008-12-15 23:43:36 -08002833
Herbert Xu86911732009-01-29 14:19:50 +00002834 skb_gro_pull(skb, thlen);
Herbert Xubf296b12008-12-15 23:43:36 -08002835
Herbert Xua0a69a02009-04-17 02:34:38 -07002836 len = skb_gro_len(skb);
Herbert Xubf296b12008-12-15 23:43:36 -08002837 flags = tcp_flag_word(th);
2838
2839 for (; (p = *head); head = &p->next) {
2840 if (!NAPI_GRO_CB(p)->same_flow)
2841 continue;
2842
2843 th2 = tcp_hdr(p);
2844
Herbert Xu745898e2009-05-26 18:50:24 +00002845 if (*(u32 *)&th->source ^ *(u32 *)&th2->source) {
Herbert Xubf296b12008-12-15 23:43:36 -08002846 NAPI_GRO_CB(p)->same_flow = 0;
2847 continue;
2848 }
2849
2850 goto found;
2851 }
2852
2853 goto out_check_final;
2854
2855found:
2856 flush = NAPI_GRO_CB(p)->flush;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002857 flush |= (__force int)(flags & TCP_FLAG_CWR);
2858 flush |= (__force int)((flags ^ tcp_flag_word(th2)) &
2859 ~(TCP_FLAG_CWR | TCP_FLAG_FIN | TCP_FLAG_PSH));
2860 flush |= (__force int)(th->ack_seq ^ th2->ack_seq);
Herbert Xua2a804c2009-05-26 18:50:34 +00002861 for (i = sizeof(*th); i < thlen; i += 4)
Herbert Xuaa6320d2009-02-08 18:00:40 +00002862 flush |= *(u32 *)((u8 *)th + i) ^
2863 *(u32 *)((u8 *)th2 + i);
Herbert Xubf296b12008-12-15 23:43:36 -08002864
Herbert Xub5302562009-01-04 16:13:19 -08002865 mss = skb_shinfo(p)->gso_size;
Herbert Xubf296b12008-12-15 23:43:36 -08002866
Herbert Xu30a3ae32009-05-26 18:50:26 +00002867 flush |= (len - 1) >= mss;
Herbert Xuaa6320d2009-02-08 18:00:40 +00002868 flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
Herbert Xubf296b12008-12-15 23:43:36 -08002869
2870 if (flush || skb_gro_receive(head, skb)) {
2871 mss = 1;
2872 goto out_check_final;
2873 }
2874
2875 p = *head;
2876 th2 = tcp_hdr(p);
2877 tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH);
2878
2879out_check_final:
Herbert Xua0a69a02009-04-17 02:34:38 -07002880 flush = len < mss;
Eric Dumazet0eae88f2010-04-20 19:06:52 -07002881 flush |= (__force int)(flags & (TCP_FLAG_URG | TCP_FLAG_PSH |
2882 TCP_FLAG_RST | TCP_FLAG_SYN |
2883 TCP_FLAG_FIN));
Herbert Xubf296b12008-12-15 23:43:36 -08002884
2885 if (p && (!NAPI_GRO_CB(skb)->same_flow || flush))
2886 pp = head;
2887
2888out:
2889 NAPI_GRO_CB(skb)->flush |= flush;
2890
2891 return pp;
2892}
Herbert Xu684f2172009-01-08 10:41:23 -08002893EXPORT_SYMBOL(tcp_gro_receive);
Herbert Xubf296b12008-12-15 23:43:36 -08002894
2895int tcp_gro_complete(struct sk_buff *skb)
2896{
2897 struct tcphdr *th = tcp_hdr(skb);
2898
2899 skb->csum_start = skb_transport_header(skb) - skb->head;
2900 skb->csum_offset = offsetof(struct tcphdr, check);
2901 skb->ip_summed = CHECKSUM_PARTIAL;
2902
Herbert Xubf296b12008-12-15 23:43:36 -08002903 skb_shinfo(skb)->gso_segs = NAPI_GRO_CB(skb)->count;
2904
2905 if (th->cwr)
2906 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
2907
2908 return 0;
2909}
Herbert Xu684f2172009-01-08 10:41:23 -08002910EXPORT_SYMBOL(tcp_gro_complete);
Herbert Xubf296b12008-12-15 23:43:36 -08002911
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002912#ifdef CONFIG_TCP_MD5SIG
2913static unsigned long tcp_md5sig_users;
Eric Dumazet765cf992011-09-12 20:28:37 +00002914static struct tcp_md5sig_pool __percpu *tcp_md5sig_pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002915static DEFINE_SPINLOCK(tcp_md5sig_pool_lock);
2916
Eric Dumazet765cf992011-09-12 20:28:37 +00002917static void __tcp_free_md5sig_pool(struct tcp_md5sig_pool __percpu *pool)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002918{
2919 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002920
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002921 for_each_possible_cpu(cpu) {
Eric Dumazet765cf992011-09-12 20:28:37 +00002922 struct tcp_md5sig_pool *p = per_cpu_ptr(pool, cpu);
2923
2924 if (p->md5_desc.tfm)
2925 crypto_free_hash(p->md5_desc.tfm);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002926 }
2927 free_percpu(pool);
2928}
2929
2930void tcp_free_md5sig_pool(void)
2931{
Eric Dumazet765cf992011-09-12 20:28:37 +00002932 struct tcp_md5sig_pool __percpu *pool = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002933
David S. Miller2c4f6212007-02-20 23:51:47 -08002934 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002935 if (--tcp_md5sig_users == 0) {
2936 pool = tcp_md5sig_pool;
2937 tcp_md5sig_pool = NULL;
2938 }
David S. Miller2c4f6212007-02-20 23:51:47 -08002939 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002940 if (pool)
2941 __tcp_free_md5sig_pool(pool);
2942}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002943EXPORT_SYMBOL(tcp_free_md5sig_pool);
2944
Eric Dumazet765cf992011-09-12 20:28:37 +00002945static struct tcp_md5sig_pool __percpu *
Tejun Heo7d720c32010-02-16 15:20:26 +00002946__tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002947{
2948 int cpu;
Eric Dumazet765cf992011-09-12 20:28:37 +00002949 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002950
Eric Dumazet765cf992011-09-12 20:28:37 +00002951 pool = alloc_percpu(struct tcp_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002952 if (!pool)
2953 return NULL;
2954
2955 for_each_possible_cpu(cpu) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002956 struct crypto_hash *hash;
2957
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002958 hash = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
2959 if (!hash || IS_ERR(hash))
2960 goto out_free;
2961
Eric Dumazet765cf992011-09-12 20:28:37 +00002962 per_cpu_ptr(pool, cpu)->md5_desc.tfm = hash;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002963 }
2964 return pool;
2965out_free:
2966 __tcp_free_md5sig_pool(pool);
2967 return NULL;
2968}
2969
Eric Dumazet765cf992011-09-12 20:28:37 +00002970struct tcp_md5sig_pool __percpu *tcp_alloc_md5sig_pool(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002971{
Eric Dumazet765cf992011-09-12 20:28:37 +00002972 struct tcp_md5sig_pool __percpu *pool;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002973 int alloc = 0;
2974
2975retry:
David S. Miller2c4f6212007-02-20 23:51:47 -08002976 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002977 pool = tcp_md5sig_pool;
2978 if (tcp_md5sig_users++ == 0) {
2979 alloc = 1;
David S. Miller2c4f6212007-02-20 23:51:47 -08002980 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002981 } else if (!pool) {
2982 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08002983 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002984 cpu_relax();
2985 goto retry;
2986 } else
David S. Miller2c4f6212007-02-20 23:51:47 -08002987 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002988
2989 if (alloc) {
2990 /* we cannot hold spinlock here because this may sleep. */
Eric Dumazet765cf992011-09-12 20:28:37 +00002991 struct tcp_md5sig_pool __percpu *p;
Tejun Heo7d720c32010-02-16 15:20:26 +00002992
2993 p = __tcp_alloc_md5sig_pool(sk);
David S. Miller2c4f6212007-02-20 23:51:47 -08002994 spin_lock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002995 if (!p) {
2996 tcp_md5sig_users--;
David S. Miller2c4f6212007-02-20 23:51:47 -08002997 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002998 return NULL;
2999 }
3000 pool = tcp_md5sig_pool;
3001 if (pool) {
3002 /* oops, it has already been assigned. */
David S. Miller2c4f6212007-02-20 23:51:47 -08003003 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003004 __tcp_free_md5sig_pool(p);
3005 } else {
3006 tcp_md5sig_pool = pool = p;
David S. Miller2c4f6212007-02-20 23:51:47 -08003007 spin_unlock_bh(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003008 }
3009 }
3010 return pool;
3011}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003012EXPORT_SYMBOL(tcp_alloc_md5sig_pool);
3013
Eric Dumazet35790c02010-05-16 00:34:04 -07003014
3015/**
3016 * tcp_get_md5sig_pool - get md5sig_pool for this user
3017 *
3018 * We use percpu structure, so if we succeed, we exit with preemption
3019 * and BH disabled, to make sure another thread or softirq handling
3020 * wont try to get same context.
3021 */
3022struct tcp_md5sig_pool *tcp_get_md5sig_pool(void)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003023{
Eric Dumazet765cf992011-09-12 20:28:37 +00003024 struct tcp_md5sig_pool __percpu *p;
Eric Dumazet35790c02010-05-16 00:34:04 -07003025
3026 local_bh_disable();
3027
3028 spin_lock(&tcp_md5sig_pool_lock);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003029 p = tcp_md5sig_pool;
3030 if (p)
3031 tcp_md5sig_users++;
Eric Dumazet35790c02010-05-16 00:34:04 -07003032 spin_unlock(&tcp_md5sig_pool_lock);
3033
3034 if (p)
Eric Dumazet765cf992011-09-12 20:28:37 +00003035 return this_cpu_ptr(p);
Eric Dumazet35790c02010-05-16 00:34:04 -07003036
3037 local_bh_enable();
3038 return NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003039}
Eric Dumazet35790c02010-05-16 00:34:04 -07003040EXPORT_SYMBOL(tcp_get_md5sig_pool);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003041
Eric Dumazet35790c02010-05-16 00:34:04 -07003042void tcp_put_md5sig_pool(void)
David S. Miller6931ba72006-12-13 16:25:44 -08003043{
Eric Dumazet35790c02010-05-16 00:34:04 -07003044 local_bh_enable();
David S. Miller6931ba72006-12-13 16:25:44 -08003045 tcp_free_md5sig_pool();
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003046}
Eric Dumazet35790c02010-05-16 00:34:04 -07003047EXPORT_SYMBOL(tcp_put_md5sig_pool);
Adam Langley49a72df2008-07-19 00:01:42 -07003048
3049int tcp_md5_hash_header(struct tcp_md5sig_pool *hp,
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003050 const struct tcphdr *th)
Adam Langley49a72df2008-07-19 00:01:42 -07003051{
3052 struct scatterlist sg;
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003053 struct tcphdr hdr;
Adam Langley49a72df2008-07-19 00:01:42 -07003054 int err;
3055
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003056 /* We are not allowed to change tcphdr, make a local copy */
3057 memcpy(&hdr, th, sizeof(hdr));
3058 hdr.check = 0;
3059
Adam Langley49a72df2008-07-19 00:01:42 -07003060 /* options aren't included in the hash */
Eric Dumazetca35a0e2011-10-24 01:52:35 -04003061 sg_init_one(&sg, &hdr, sizeof(hdr));
3062 err = crypto_hash_update(&hp->md5_desc, &sg, sizeof(hdr));
Adam Langley49a72df2008-07-19 00:01:42 -07003063 return err;
3064}
Adam Langley49a72df2008-07-19 00:01:42 -07003065EXPORT_SYMBOL(tcp_md5_hash_header);
3066
3067int tcp_md5_hash_skb_data(struct tcp_md5sig_pool *hp,
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003068 const struct sk_buff *skb, unsigned int header_len)
Adam Langley49a72df2008-07-19 00:01:42 -07003069{
3070 struct scatterlist sg;
3071 const struct tcphdr *tp = tcp_hdr(skb);
3072 struct hash_desc *desc = &hp->md5_desc;
3073 unsigned i;
3074 const unsigned head_data_len = skb_headlen(skb) > header_len ?
3075 skb_headlen(skb) - header_len : 0;
3076 const struct skb_shared_info *shi = skb_shinfo(skb);
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003077 struct sk_buff *frag_iter;
Adam Langley49a72df2008-07-19 00:01:42 -07003078
3079 sg_init_table(&sg, 1);
3080
3081 sg_set_buf(&sg, ((u8 *) tp) + header_len, head_data_len);
3082 if (crypto_hash_update(desc, &sg, head_data_len))
3083 return 1;
3084
3085 for (i = 0; i < shi->nr_frags; ++i) {
3086 const struct skb_frag_struct *f = &shi->frags[i];
Ian Campbellaff65da2011-08-22 23:44:59 +00003087 struct page *page = skb_frag_page(f);
Eric Dumazet9e903e02011-10-18 21:00:24 +00003088 sg_set_page(&sg, page, skb_frag_size(f), f->page_offset);
3089 if (crypto_hash_update(desc, &sg, skb_frag_size(f)))
Adam Langley49a72df2008-07-19 00:01:42 -07003090 return 1;
3091 }
3092
Eric Dumazetd7fd1b572010-05-17 20:40:51 +00003093 skb_walk_frags(skb, frag_iter)
3094 if (tcp_md5_hash_skb_data(hp, frag_iter, 0))
3095 return 1;
3096
Adam Langley49a72df2008-07-19 00:01:42 -07003097 return 0;
3098}
Adam Langley49a72df2008-07-19 00:01:42 -07003099EXPORT_SYMBOL(tcp_md5_hash_skb_data);
3100
Eric Dumazetcf533ea2011-10-21 05:22:42 -04003101int tcp_md5_hash_key(struct tcp_md5sig_pool *hp, const struct tcp_md5sig_key *key)
Adam Langley49a72df2008-07-19 00:01:42 -07003102{
3103 struct scatterlist sg;
3104
3105 sg_init_one(&sg, key->key, key->keylen);
3106 return crypto_hash_update(&hp->md5_desc, &sg, key->keylen);
3107}
Adam Langley49a72df2008-07-19 00:01:42 -07003108EXPORT_SYMBOL(tcp_md5_hash_key);
3109
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08003110#endif
3111
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003112/**
3113 * Each Responder maintains up to two secret values concurrently for
3114 * efficient secret rollover. Each secret value has 4 states:
3115 *
3116 * Generating. (tcp_secret_generating != tcp_secret_primary)
3117 * Generates new Responder-Cookies, but not yet used for primary
3118 * verification. This is a short-term state, typically lasting only
3119 * one round trip time (RTT).
3120 *
3121 * Primary. (tcp_secret_generating == tcp_secret_primary)
3122 * Used both for generation and primary verification.
3123 *
3124 * Retiring. (tcp_secret_retiring != tcp_secret_secondary)
3125 * Used for verification, until the first failure that can be
3126 * verified by the newer Generating secret. At that time, this
3127 * cookie's state is changed to Secondary, and the Generating
3128 * cookie's state is changed to Primary. This is a short-term state,
3129 * typically lasting only one round trip time (RTT).
3130 *
3131 * Secondary. (tcp_secret_retiring == tcp_secret_secondary)
3132 * Used for secondary verification, after primary verification
3133 * failures. This state lasts no more than twice the Maximum Segment
3134 * Lifetime (2MSL). Then, the secret is discarded.
3135 */
3136struct tcp_cookie_secret {
3137 /* The secret is divided into two parts. The digest part is the
3138 * equivalent of previously hashing a secret and saving the state,
3139 * and serves as an initialization vector (IV). The message part
3140 * serves as the trailing secret.
3141 */
3142 u32 secrets[COOKIE_WORKSPACE_WORDS];
3143 unsigned long expires;
3144};
3145
3146#define TCP_SECRET_1MSL (HZ * TCP_PAWS_MSL)
3147#define TCP_SECRET_2MSL (HZ * TCP_PAWS_MSL * 2)
3148#define TCP_SECRET_LIFE (HZ * 600)
3149
3150static struct tcp_cookie_secret tcp_secret_one;
3151static struct tcp_cookie_secret tcp_secret_two;
3152
3153/* Essentially a circular list, without dynamic allocation. */
3154static struct tcp_cookie_secret *tcp_secret_generating;
3155static struct tcp_cookie_secret *tcp_secret_primary;
3156static struct tcp_cookie_secret *tcp_secret_retiring;
3157static struct tcp_cookie_secret *tcp_secret_secondary;
3158
3159static DEFINE_SPINLOCK(tcp_secret_locker);
3160
3161/* Select a pseudo-random word in the cookie workspace.
3162 */
3163static inline u32 tcp_cookie_work(const u32 *ws, const int n)
3164{
3165 return ws[COOKIE_DIGEST_WORDS + ((COOKIE_MESSAGE_WORDS-1) & ws[n])];
3166}
3167
3168/* Fill bakery[COOKIE_WORKSPACE_WORDS] with generator, updating as needed.
3169 * Called in softirq context.
3170 * Returns: 0 for success.
3171 */
3172int tcp_cookie_generator(u32 *bakery)
3173{
3174 unsigned long jiffy = jiffies;
3175
3176 if (unlikely(time_after_eq(jiffy, tcp_secret_generating->expires))) {
3177 spin_lock_bh(&tcp_secret_locker);
3178 if (!time_after_eq(jiffy, tcp_secret_generating->expires)) {
3179 /* refreshed by another */
3180 memcpy(bakery,
3181 &tcp_secret_generating->secrets[0],
3182 COOKIE_WORKSPACE_WORDS);
3183 } else {
3184 /* still needs refreshing */
3185 get_random_bytes(bakery, COOKIE_WORKSPACE_WORDS);
3186
3187 /* The first time, paranoia assumes that the
3188 * randomization function isn't as strong. But,
3189 * this secret initialization is delayed until
3190 * the last possible moment (packet arrival).
3191 * Although that time is observable, it is
3192 * unpredictably variable. Mash in the most
3193 * volatile clock bits available, and expire the
3194 * secret extra quickly.
3195 */
3196 if (unlikely(tcp_secret_primary->expires ==
3197 tcp_secret_secondary->expires)) {
3198 struct timespec tv;
3199
3200 getnstimeofday(&tv);
3201 bakery[COOKIE_DIGEST_WORDS+0] ^=
3202 (u32)tv.tv_nsec;
3203
3204 tcp_secret_secondary->expires = jiffy
3205 + TCP_SECRET_1MSL
3206 + (0x0f & tcp_cookie_work(bakery, 0));
3207 } else {
3208 tcp_secret_secondary->expires = jiffy
3209 + TCP_SECRET_LIFE
3210 + (0xff & tcp_cookie_work(bakery, 1));
3211 tcp_secret_primary->expires = jiffy
3212 + TCP_SECRET_2MSL
3213 + (0x1f & tcp_cookie_work(bakery, 2));
3214 }
3215 memcpy(&tcp_secret_secondary->secrets[0],
3216 bakery, COOKIE_WORKSPACE_WORDS);
3217
3218 rcu_assign_pointer(tcp_secret_generating,
3219 tcp_secret_secondary);
3220 rcu_assign_pointer(tcp_secret_retiring,
3221 tcp_secret_primary);
3222 /*
3223 * Neither call_rcu() nor synchronize_rcu() needed.
3224 * Retiring data is not freed. It is replaced after
3225 * further (locked) pointer updates, and a quiet time
3226 * (minimum 1MSL, maximum LIFE - 2MSL).
3227 */
3228 }
3229 spin_unlock_bh(&tcp_secret_locker);
3230 } else {
3231 rcu_read_lock_bh();
3232 memcpy(bakery,
3233 &rcu_dereference(tcp_secret_generating)->secrets[0],
3234 COOKIE_WORKSPACE_WORDS);
3235 rcu_read_unlock_bh();
3236 }
3237 return 0;
3238}
3239EXPORT_SYMBOL(tcp_cookie_generator);
3240
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003241void tcp_done(struct sock *sk)
3242{
Jianjun Kong5a5f3a82008-11-03 00:24:34 -08003243 if (sk->sk_state == TCP_SYN_SENT || sk->sk_state == TCP_SYN_RECV)
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07003244 TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_ATTEMPTFAILS);
Andi Kleen4ac02ba2007-04-20 17:11:46 -07003245
3246 tcp_set_state(sk, TCP_CLOSE);
3247 tcp_clear_xmit_timers(sk);
3248
3249 sk->sk_shutdown = SHUTDOWN_MASK;
3250
3251 if (!sock_flag(sk, SOCK_DEAD))
3252 sk->sk_state_change(sk);
3253 else
3254 inet_csk_destroy_sock(sk);
3255}
3256EXPORT_SYMBOL_GPL(tcp_done);
3257
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003258int tcp_abort(struct sock *sk, int err)
3259{
3260 if (sk->sk_state == TCP_TIME_WAIT) {
3261 inet_twsk_put((struct inet_timewait_sock *)sk);
3262 return -EOPNOTSUPP;
3263 }
3264
3265 /* Don't race with userspace socket closes such as tcp_close. */
3266 lock_sock(sk);
3267
Lorenzo Colitti496b6d02015-12-20 02:39:43 +09003268 if (sk->sk_state == TCP_LISTEN) {
3269 tcp_set_state(sk, TCP_CLOSE);
3270 inet_csk_listen_stop(sk);
3271 }
3272
Lorenzo Colitti559b4f72015-12-16 12:30:05 +09003273 /* Don't race with BH socket closes such as inet_csk_listen_stop. */
3274 local_bh_disable();
3275 bh_lock_sock(sk);
3276
3277 if (!sock_flag(sk, SOCK_DEAD)) {
3278 sk->sk_err = err;
3279 /* This barrier is coupled with smp_rmb() in tcp_poll() */
3280 smp_wmb();
3281 sk->sk_error_report(sk);
3282 if (tcp_need_reset(sk->sk_state))
3283 tcp_send_active_reset(sk, GFP_ATOMIC);
3284 tcp_done(sk);
3285 }
3286
3287 bh_unlock_sock(sk);
3288 local_bh_enable();
3289 release_sock(sk);
3290 sock_put(sk);
3291 return 0;
3292}
3293EXPORT_SYMBOL_GPL(tcp_abort);
3294
Stephen Hemminger5f8ef482005-06-23 20:37:36 -07003295extern struct tcp_congestion_ops tcp_reno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297static __initdata unsigned long thash_entries;
3298static int __init set_thash_entries(char *str)
3299{
3300 if (!str)
3301 return 0;
3302 thash_entries = simple_strtoul(str, &str, 0);
3303 return 1;
3304}
3305__setup("thash_entries=", set_thash_entries);
3306
Glauber Costa4acb4192012-01-30 01:20:17 +00003307void tcp_init_mem(struct net *net)
3308{
Glauber Costa4acb4192012-01-30 01:20:17 +00003309 unsigned long limit = nr_free_buffer_pages() / 8;
3310 limit = max(limit, 128UL);
3311 net->ipv4.sysctl_tcp_mem[0] = limit / 4 * 3;
3312 net->ipv4.sysctl_tcp_mem[1] = limit;
3313 net->ipv4.sysctl_tcp_mem[2] = net->ipv4.sysctl_tcp_mem[0] * 2;
3314}
3315
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316void __init tcp_init(void)
3317{
3318 struct sk_buff *skb = NULL;
Eric Dumazetf03d78d2011-07-07 00:27:05 -07003319 unsigned long limit;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003320 int max_rshare, max_wshare, cnt;
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003321 unsigned int i;
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003322 unsigned long jiffy = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Pavel Emelyanov1f9e6362007-12-11 02:12:04 -08003324 BUILD_BUG_ON(sizeof(struct tcp_skb_cb) > sizeof(skb->cb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Eric Dumazet17483762008-11-25 21:16:35 -08003326 percpu_counter_init(&tcp_sockets_allocated, 0);
Eric Dumazetdd24c002008-11-25 21:17:14 -08003327 percpu_counter_init(&tcp_orphan_count, 0);
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003328 tcp_hashinfo.bind_bucket_cachep =
3329 kmem_cache_create("tcp_bind_bucket",
3330 sizeof(struct inet_bind_bucket), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09003331 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 /* Size and allocate the main established and bind bucket
3334 * hash tables.
3335 *
3336 * The methodology is similar to that of the buffer cache.
3337 */
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003338 tcp_hashinfo.ehash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 alloc_large_system_hash("TCP established",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003340 sizeof(struct inet_ehash_bucket),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 thash_entries,
Jan Beulich44813742009-09-21 17:03:05 -07003342 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003343 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003344 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 NULL,
Eric Dumazetf373b532009-10-09 00:16:19 +00003346 &tcp_hashinfo.ehash_mask,
Jean Delvare0ccfe612007-10-30 00:59:25 -07003347 thash_entries ? 0 : 512 * 1024);
Eric Dumazetf373b532009-10-09 00:16:19 +00003348 for (i = 0; i <= tcp_hashinfo.ehash_mask; i++) {
Eric Dumazet3ab5aee2008-11-16 19:40:17 -08003349 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].chain, i);
3350 INIT_HLIST_NULLS_HEAD(&tcp_hashinfo.ehash[i].twchain, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
Eric Dumazet230140c2007-11-07 02:40:20 -08003352 if (inet_ehash_locks_alloc(&tcp_hashinfo))
3353 panic("TCP: failed to alloc ehash_locks");
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003354 tcp_hashinfo.bhash =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 alloc_large_system_hash("TCP bind",
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07003356 sizeof(struct inet_bind_hashbucket),
Eric Dumazetf373b532009-10-09 00:16:19 +00003357 tcp_hashinfo.ehash_mask + 1,
Jan Beulich44813742009-09-21 17:03:05 -07003358 (totalram_pages >= 128 * 1024) ?
Mike Stroyan18955cf2005-11-29 16:12:55 -08003359 13 : 15,
John Heffner9e950ef2006-11-06 23:10:51 -08003360 0,
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003361 &tcp_hashinfo.bhash_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 NULL,
3363 64 * 1024);
Dimitri Sivanich074b8512012-02-08 12:39:07 -08003364 tcp_hashinfo.bhash_size = 1U << tcp_hashinfo.bhash_size;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07003365 for (i = 0; i < tcp_hashinfo.bhash_size; i++) {
3366 spin_lock_init(&tcp_hashinfo.bhash[i].lock);
3367 INIT_HLIST_HEAD(&tcp_hashinfo.bhash[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 }
3369
Eric Dumazetc5ed63d2010-08-25 23:02:17 -07003370
3371 cnt = tcp_hashinfo.ehash_mask + 1;
3372
3373 tcp_death_row.sysctl_max_tw_buckets = cnt / 2;
3374 sysctl_tcp_max_orphans = cnt / 2;
3375 sysctl_max_syn_backlog = max(128, cnt / 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Glauber Costa4acb4192012-01-30 01:20:17 +00003377 tcp_init_mem(&init_net);
Jason Wangc43b8742012-02-02 00:07:00 +00003378 /* Set per-socket limits to no more than 1/128 the pressure threshold */
Eric Dumazet5fb84b12012-04-10 00:56:42 +00003379 limit = nr_free_buffer_pages() << (PAGE_SHIFT - 7);
Eric Dumazetb49960a2012-05-02 02:28:41 +00003380 max_wshare = min(4UL*1024*1024, limit);
3381 max_rshare = min(6UL*1024*1024, limit);
John Heffner7b4f4b52006-03-25 01:34:07 -08003382
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003383 sysctl_tcp_wmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003384 sysctl_tcp_wmem[1] = 16*1024;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003385 sysctl_tcp_wmem[2] = max(64*1024, max_wshare);
John Heffner7b4f4b52006-03-25 01:34:07 -08003386
Hideo Aoki3ab224b2007-12-31 00:11:19 -08003387 sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
John Heffner7b4f4b52006-03-25 01:34:07 -08003388 sysctl_tcp_rmem[1] = 87380;
Eric Dumazetb49960a2012-05-02 02:28:41 +00003389 sysctl_tcp_rmem[2] = max(87380, max_rshare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Joe Perchesafd465032012-03-12 07:03:32 +00003391 pr_info("Hash tables configured (established %u bind %u)\n",
Joe Perches058bd4d2012-03-11 18:36:11 +00003392 tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07003393
3394 tcp_register_congestion_control(&tcp_reno);
William Allen Simpsonda5c78c2009-12-02 18:12:09 +00003395
3396 memset(&tcp_secret_one.secrets[0], 0, sizeof(tcp_secret_one.secrets));
3397 memset(&tcp_secret_two.secrets[0], 0, sizeof(tcp_secret_two.secrets));
3398 tcp_secret_one.expires = jiffy; /* past due */
3399 tcp_secret_two.expires = jiffy; /* past due */
3400 tcp_secret_generating = &tcp_secret_one;
3401 tcp_secret_primary = &tcp_secret_one;
3402 tcp_secret_retiring = &tcp_secret_two;
3403 tcp_secret_secondary = &tcp_secret_two;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404}
Robert Love2365d052008-05-12 17:08:29 -04003405
3406static int tcp_is_local(struct net *net, __be32 addr) {
3407 struct rtable *rt;
3408 struct flowi4 fl4 = { .daddr = addr };
3409 rt = ip_route_output_key(net, &fl4);
3410 if (IS_ERR_OR_NULL(rt))
3411 return 0;
3412 return rt->dst.dev && (rt->dst.dev->flags & IFF_LOOPBACK);
3413}
3414
3415#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3416static int tcp_is_local6(struct net *net, struct in6_addr *addr) {
3417 struct rt6_info *rt6 = rt6_lookup(net, addr, addr, 0, 0);
3418 return rt6 && rt6->dst.dev && (rt6->dst.dev->flags & IFF_LOOPBACK);
3419}
3420#endif
3421
3422/*
3423 * tcp_nuke_addr - destroy all sockets on the given local address
3424 * if local address is the unspecified address (0.0.0.0 or ::), destroy all
3425 * sockets with local addresses that are not configured.
3426 */
3427int tcp_nuke_addr(struct net *net, struct sockaddr *addr)
3428{
3429 int family = addr->sa_family;
3430 unsigned int bucket;
3431
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003432 struct in_addr *in = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003433#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003434 struct in6_addr *in6 = NULL;
Robert Love2365d052008-05-12 17:08:29 -04003435#endif
3436 if (family == AF_INET) {
3437 in = &((struct sockaddr_in *)addr)->sin_addr;
3438#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3439 } else if (family == AF_INET6) {
3440 in6 = &((struct sockaddr_in6 *)addr)->sin6_addr;
3441#endif
3442 } else {
3443 return -EAFNOSUPPORT;
3444 }
3445
3446 for (bucket = 0; bucket < tcp_hashinfo.ehash_mask; bucket++) {
3447 struct hlist_nulls_node *node;
3448 struct sock *sk;
3449 spinlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, bucket);
3450
3451restart:
3452 spin_lock_bh(lock);
3453 sk_nulls_for_each(sk, node, &tcp_hashinfo.ehash[bucket].chain) {
3454 struct inet_sock *inet = inet_sk(sk);
3455
3456 if (sysctl_ip_dynaddr && sk->sk_state == TCP_SYN_SENT)
3457 continue;
3458 if (sock_flag(sk, SOCK_DEAD))
3459 continue;
3460
3461 if (family == AF_INET) {
3462 __be32 s4 = inet->inet_rcv_saddr;
3463 if (s4 == LOOPBACK4_IPV6)
3464 continue;
3465
3466 if (in->s_addr != s4 &&
3467 !(in->s_addr == INADDR_ANY &&
3468 !tcp_is_local(net, s4)))
3469 continue;
3470 }
3471
3472#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
3473 if (family == AF_INET6) {
3474 struct in6_addr *s6;
3475 if (!inet->pinet6)
3476 continue;
3477
3478 s6 = &inet->pinet6->rcv_saddr;
3479 if (ipv6_addr_type(s6) == IPV6_ADDR_MAPPED)
3480 continue;
3481
3482 if (!ipv6_addr_equal(in6, s6) &&
3483 !(ipv6_addr_equal(in6, &in6addr_any) &&
3484 !tcp_is_local6(net, s6)))
3485 continue;
3486 }
3487#endif
3488
3489 sock_hold(sk);
3490 spin_unlock_bh(lock);
3491
3492 local_bh_disable();
3493 bh_lock_sock(sk);
3494 sk->sk_err = ETIMEDOUT;
3495 sk->sk_error_report(sk);
3496
3497 tcp_done(sk);
3498 bh_unlock_sock(sk);
3499 local_bh_enable();
Osvaldo Banuelos66990962013-12-16 12:50:02 -08003500 sock_put(sk);
Robert Love2365d052008-05-12 17:08:29 -04003501
3502 goto restart;
3503 }
3504 spin_unlock_bh(lock);
3505 }
3506
3507 return 0;
3508}