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.
6 * Implementation of the Transmission Control Protocol(TCP).
8 * Version: $Id: tcp.c,v 1.145 1999/06/29 12:35:56 davem Exp $
10 * Authors: Ross Biro, <bir7@leland.Stanford.Edu>
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 * Corey Minyard <wf-rch!minyard@relay.EU.net>
14 * Florian La Roche, <flla@stud.uni-sb.de>
15 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
16 * Linus Torvalds, <torvalds@cs.helsinki.fi>
17 * Alan Cox, <gw4pts@gw4pts.ampr.org>
18 * Matthew Dillon, <dillon@apollo.west.oic.com>
19 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
20 * Jorge Cwik, <jorge@laser.satlink.net>
23 * Alan Cox : Numerous verify_area() calls
24 * Alan Cox : Set the ACK bit on a reset
25 * Alan Cox : Stopped it crashing if it closed while
26 * sk->inuse=1 and was trying to connect
28 * Alan Cox : All icmp error handling was broken
29 * pointers passed where wrong and the
30 * socket was looked up backwards. Nobody
31 * tested any icmp error code obviously.
32 * Alan Cox : tcp_err() now handled properly. It
33 * wakes people on errors. poll
34 * behaves and the icmp error race
35 * has gone by moving it into sock.c
36 * Alan Cox : tcp_send_reset() fixed to work for
37 * everything not just packets for
39 * Alan Cox : tcp option processing.
40 * Alan Cox : Reset tweaked (still not 100%) [Had
42 * Herp Rosmanith : More reset fixes
43 * Alan Cox : No longer acks invalid rst frames.
44 * Acking any kind of RST is right out.
45 * Alan Cox : Sets an ignore me flag on an rst
46 * receive otherwise odd bits of prattle
48 * Alan Cox : Fixed another acking RST frame bug.
49 * Should stop LAN workplace lockups.
50 * Alan Cox : Some tidyups using the new skb list
52 * Alan Cox : sk->keepopen now seems to work
53 * Alan Cox : Pulls options out correctly on accepts
54 * Alan Cox : Fixed assorted sk->rqueue->next errors
55 * Alan Cox : PSH doesn't end a TCP read. Switched a
57 * Alan Cox : Tidied tcp_data to avoid a potential
59 * Alan Cox : Added some better commenting, as the
60 * tcp is hard to follow
61 * Alan Cox : Removed incorrect check for 20 * psh
62 * Michael O'Reilly : ack < copied bug fix.
63 * Johannes Stille : Misc tcp fixes (not all in yet).
64 * Alan Cox : FIN with no memory -> CRASH
65 * Alan Cox : Added socket option proto entries.
66 * Also added awareness of them to accept.
67 * Alan Cox : Added TCP options (SOL_TCP)
68 * Alan Cox : Switched wakeup calls to callbacks,
69 * so the kernel can layer network
71 * Alan Cox : Use ip_tos/ip_ttl settings.
72 * Alan Cox : Handle FIN (more) properly (we hope).
73 * Alan Cox : RST frames sent on unsynchronised
75 * Alan Cox : Put in missing check for SYN bit.
76 * Alan Cox : Added tcp_select_window() aka NET2E
77 * window non shrink trick.
78 * Alan Cox : Added a couple of small NET2E timer
80 * Charles Hedrick : TCP fixes
81 * Toomas Tamm : TCP window fixes
82 * Alan Cox : Small URG fix to rlogin ^C ack fight
83 * Charles Hedrick : Rewrote most of it to actually work
84 * Linus : Rewrote tcp_read() and URG handling
86 * Gerhard Koerting: Fixed some missing timer handling
87 * Matthew Dillon : Reworked TCP machine states as per RFC
88 * Gerhard Koerting: PC/TCP workarounds
89 * Adam Caldwell : Assorted timer/timing errors
90 * Matthew Dillon : Fixed another RST bug
91 * Alan Cox : Move to kernel side addressing changes.
92 * Alan Cox : Beginning work on TCP fastpathing
94 * Arnt Gulbrandsen: Turbocharged tcp_check() routine.
95 * Alan Cox : TCP fast path debugging
96 * Alan Cox : Window clamping
97 * Michael Riepe : Bug in tcp_check()
98 * Matt Dillon : More TCP improvements and RST bug fixes
99 * Matt Dillon : Yet more small nasties remove from the
100 * TCP code (Be very nice to this man if
101 * tcp finally works 100%) 8)
102 * Alan Cox : BSD accept semantics.
103 * Alan Cox : Reset on closedown bug.
104 * Peter De Schrijver : ENOTCONN check missing in tcp_sendto().
105 * Michael Pall : Handle poll() after URG properly in
107 * Michael Pall : Undo the last fix in tcp_read_urg()
108 * (multi URG PUSH broke rlogin).
109 * Michael Pall : Fix the multi URG PUSH problem in
110 * tcp_readable(), poll() after URG
112 * Michael Pall : recv(...,MSG_OOB) never blocks in the
114 * Alan Cox : Changed the semantics of sk->socket to
115 * fix a race and a signal problem with
116 * accept() and async I/O.
117 * Alan Cox : Relaxed the rules on tcp_sendto().
118 * Yury Shevchuk : Really fixed accept() blocking problem.
119 * Craig I. Hagan : Allow for BSD compatible TIME_WAIT for
120 * clients/servers which listen in on
122 * Alan Cox : Cleaned the above up and shrank it to
123 * a sensible code size.
124 * Alan Cox : Self connect lockup fix.
125 * Alan Cox : No connect to multicast.
126 * Ross Biro : Close unaccepted children on master
128 * Alan Cox : Reset tracing code.
129 * Alan Cox : Spurious resets on shutdown.
130 * Alan Cox : Giant 15 minute/60 second timer error
131 * Alan Cox : Small whoops in polling before an
133 * Alan Cox : Kept the state trace facility since
134 * it's handy for debugging.
135 * Alan Cox : More reset handler fixes.
136 * Alan Cox : Started rewriting the code based on
137 * the RFC's for other useful protocol
138 * references see: Comer, KA9Q NOS, and
139 * for a reference on the difference
140 * between specifications and how BSD
141 * works see the 4.4lite source.
142 * A.N.Kuznetsov : Don't time wait on completion of tidy
144 * Linus Torvalds : Fin/Shutdown & copied_seq changes.
145 * Linus Torvalds : Fixed BSD port reuse to work first syn
146 * Alan Cox : Reimplemented timers as per the RFC
147 * and using multiple timers for sanity.
148 * Alan Cox : Small bug fixes, and a lot of new
150 * Alan Cox : Fixed dual reader crash by locking
151 * the buffers (much like datagram.c)
152 * Alan Cox : Fixed stuck sockets in probe. A probe
153 * now gets fed up of retrying without
154 * (even a no space) answer.
155 * Alan Cox : Extracted closing code better
156 * Alan Cox : Fixed the closing state machine to
158 * Alan Cox : More 'per spec' fixes.
159 * Jorge Cwik : Even faster checksumming.
160 * Alan Cox : tcp_data() doesn't ack illegal PSH
161 * only frames. At least one pc tcp stack
163 * Alan Cox : Cache last socket.
164 * Alan Cox : Per route irtt.
165 * Matt Day : poll()->select() match BSD precisely on error
166 * Alan Cox : New buffers
167 * Marc Tamsky : Various sk->prot->retransmits and
168 * sk->retransmits misupdating fixed.
169 * Fixed tcp_write_timeout: stuck close,
170 * and TCP syn retries gets used now.
171 * Mark Yarvis : In tcp_read_wakeup(), don't send an
172 * ack if state is TCP_CLOSED.
173 * Alan Cox : Look up device on a retransmit - routes may
174 * change. Doesn't yet cope with MSS shrink right
176 * Marc Tamsky : Closing in closing fixes.
177 * Mike Shaver : RFC1122 verifications.
178 * Alan Cox : rcv_saddr errors.
179 * Alan Cox : Block double connect().
180 * Alan Cox : Small hooks for enSKIP.
181 * Alexey Kuznetsov: Path MTU discovery.
182 * Alan Cox : Support soft errors.
183 * Alan Cox : Fix MTU discovery pathological case
184 * when the remote claims no mtu!
185 * Marc Tamsky : TCP_CLOSE fix.
186 * Colin (G3TNE) : Send a reset on syn ack replies in
187 * window but wrong (fixes NT lpd problems)
188 * Pedro Roque : Better TCP window handling, delayed ack.
189 * Joerg Reuter : No modification of locked buffers in
190 * tcp_do_retransmit()
191 * Eric Schenk : Changed receiver side silly window
192 * avoidance algorithm to BSD style
193 * algorithm. This doubles throughput
194 * against machines running Solaris,
195 * and seems to result in general
197 * Stefan Magdalinski : adjusted tcp_readable() to fix FIONREAD
198 * Willy Konynenberg : Transparent proxying support.
199 * Mike McLagan : Routing by source
200 * Keith Owens : Do proper merging with partial SKB's in
201 * tcp_do_sendmsg to avoid burstiness.
202 * Eric Schenk : Fix fast close down bug with
203 * shutdown() followed by close().
204 * Andi Kleen : Make poll agree with SIGIO
206 * This program is free software; you can redistribute it and/or
207 * modify it under the terms of the GNU General Public License
208 * as published by the Free Software Foundation; either version
209 * 2 of the License, or(at your option) any later version.
211 * Description of States:
213 * TCP_SYN_SENT sent a connection request, waiting for ack
215 * TCP_SYN_RECV received a connection request, sent ack,
216 * waiting for final ack in three-way handshake.
218 * TCP_ESTABLISHED connection established
220 * TCP_FIN_WAIT1 our side has shutdown, waiting to complete
221 * transmission of remaining buffered data
223 * TCP_FIN_WAIT2 all buffered data sent, waiting for remote
226 * TCP_CLOSING both sides have shutdown but we still have
227 * data we have to finish sending
229 * TCP_TIME_WAIT timeout to catch resent junk before entering
230 * closed, can only be entered from FIN_WAIT2
231 * or CLOSING. Required because the other end
232 * may not have gotten our last ACK causing it
233 * to retransmit the data packet (which we ignore)
235 * TCP_CLOSE_WAIT remote side has shutdown and is waiting for
236 * us to finish writing our data and to shutdown
237 * (we have to close() to move on to LAST_ACK)
239 * TCP_LAST_ACK out side has shutdown after remote has
240 * shutdown. There may still be data in our
241 * buffer that we have to finish sending
243 * TCP_CLOSE socket is finished
248 * NOTE: I'm not going to be doing comments in the code for this one except
249 * for violations and the like. tcp.c is just too big... If I say something
250 * "does?" or "doesn't?", it means I'm not sure, and will have to hash it out
251 * with Alan. -- MS 950903
252 * [Note: Most of the TCP code has been rewriten/redesigned since this
253 * RFC1122 check. It is probably not correct anymore. It should be redone
256 * Use of PSH (4.2.2.2)
257 * MAY aggregate data sent without the PSH flag. (does)
258 * MAY queue data received without the PSH flag. (does)
259 * SHOULD collapse successive PSH flags when it packetizes data. (doesn't)
260 * MAY implement PSH on send calls. (doesn't, thus:)
261 * MUST NOT buffer data indefinitely (doesn't [1 second])
262 * MUST set PSH on last segment (does)
263 * MAY pass received PSH to application layer (doesn't)
264 * SHOULD send maximum-sized segment whenever possible. (almost always does)
266 * Window Size (4.2.2.3, 4.2.2.16)
267 * MUST treat window size as an unsigned number (does)
268 * SHOULD treat window size as a 32-bit number (does not)
269 * MUST NOT shrink window once it is offered (does not normally)
271 * Urgent Pointer (4.2.2.4)
272 * **MUST point urgent pointer to last byte of urgent data (not right
273 * after). (doesn't, to be like BSD. That's configurable, but defaults
275 * MUST inform application layer asynchronously of incoming urgent
277 * MUST provide application with means of determining the amount of
278 * urgent data pending. (does)
279 * **MUST support urgent data sequence of arbitrary length. (doesn't, but
280 * it's sort of tricky to fix, as urg_ptr is a 16-bit quantity)
281 * [Follows BSD 1 byte of urgent data]
283 * TCP Options (4.2.2.5)
284 * MUST be able to receive TCP options in any segment. (does)
285 * MUST ignore unsupported options (does)
287 * Maximum Segment Size Option (4.2.2.6)
288 * MUST implement both sending and receiving MSS. (does, but currently
289 * only uses the smaller of both of them)
290 * SHOULD send an MSS with every SYN where receive MSS != 536 (MAY send
291 * it always). (does, even when MSS == 536, which is legal)
292 * MUST assume MSS == 536 if no MSS received at connection setup (does)
293 * MUST calculate "effective send MSS" correctly:
294 * min(physical_MTU, remote_MSS+20) - sizeof(tcphdr) - sizeof(ipopts)
295 * (does - but allows operator override)
297 * TCP Checksum (4.2.2.7)
298 * MUST generate and check TCP checksum. (does)
300 * Initial Sequence Number Selection (4.2.2.8)
301 * MUST use the RFC 793 clock selection mechanism. (doesn't, but it's
302 * OK: RFC 793 specifies a 250KHz clock, while we use 1MHz, which is
303 * necessary for 10Mbps networks - and harder than BSD to spoof!
304 * With syncookies we don't)
306 * Simultaneous Open Attempts (4.2.2.10)
307 * MUST support simultaneous open attempts (does)
309 * Recovery from Old Duplicate SYN (4.2.2.11)
310 * MUST keep track of active vs. passive open (does)
312 * RST segment (4.2.2.12)
313 * SHOULD allow an RST segment to contain data (does, but doesn't do
314 * anything with it, which is standard)
316 * Closing a Connection (4.2.2.13)
317 * MUST inform application of whether connection was closed by RST or
318 * normal close. (does)
319 * MAY allow "half-duplex" close (treat connection as closed for the
320 * local app, even before handshake is done). (does)
321 * MUST linger in TIME_WAIT for 2 * MSL (does)
323 * Retransmission Timeout (4.2.2.15)
324 * MUST implement Jacobson's slow start and congestion avoidance
327 * Probing Zero Windows (4.2.2.17)
328 * MUST support probing of zero windows. (does)
329 * MAY keep offered window closed indefinitely. (does)
330 * MUST allow remote window to stay closed indefinitely. (does)
332 * Passive Open Calls (4.2.2.18)
333 * MUST NOT let new passive open affect other connections. (doesn't)
334 * MUST support passive opens (LISTENs) concurrently. (does)
336 * Time to Live (4.2.2.19)
337 * MUST make TCP TTL configurable. (does - IP_TTL option)
339 * Event Processing (4.2.2.20)
340 * SHOULD queue out-of-order segments. (does)
341 * MUST aggregate ACK segments whenever possible. (does but badly)
343 * Retransmission Timeout Calculation (4.2.3.1)
344 * MUST implement Karn's algorithm and Jacobson's algorithm for RTO
345 * calculation. (does, or at least explains them in the comments 8*b)
346 * SHOULD initialize RTO to 0 and RTT to 3. (does)
348 * When to Send an ACK Segment (4.2.3.2)
349 * SHOULD implement delayed ACK. (does)
350 * MUST keep ACK delay < 0.5 sec. (does)
352 * When to Send a Window Update (4.2.3.3)
353 * MUST implement receiver-side SWS. (does)
355 * When to Send Data (4.2.3.4)
356 * MUST implement sender-side SWS. (does)
357 * SHOULD implement Nagle algorithm. (does)
359 * TCP Connection Failures (4.2.3.5)
360 * MUST handle excessive retransmissions "properly" (see the RFC). (does)
361 * SHOULD inform application layer of soft errors. (does)
363 * TCP Keep-Alives (4.2.3.6)
364 * MAY provide keep-alives. (does)
365 * MUST make keep-alives configurable on a per-connection basis. (does)
366 * MUST default to no keep-alives. (does)
367 * MUST make keep-alive interval configurable. (does)
368 * MUST make default keep-alive interval > 2 hours. (does)
369 * MUST NOT interpret failure to ACK keep-alive packet as dead
370 * connection. (doesn't)
371 * SHOULD send keep-alive with no data. (does)
373 * TCP Multihoming (4.2.3.7)
374 * MUST get source address from IP layer before sending first
376 * MUST use same local address for all segments of a connection. (does)
378 * IP Options (4.2.3.8)
379 * MUST ignore unsupported IP options. (does)
380 * MAY support Time Stamp and Record Route. (does)
381 * MUST allow application to specify a source route. (does)
382 * MUST allow received Source Route option to set route for all future
383 * segments on this connection. (does not (security issues))
385 * ICMP messages (4.2.3.9)
386 * MUST act on ICMP errors. (does)
387 * MUST slow transmission upon receipt of a Source Quench. (doesn't anymore
388 * because that is deprecated now by the IETF, can be turned on)
389 * MUST NOT abort connection upon receipt of soft Destination
390 * Unreachables (0, 1, 5), Time Exceededs and Parameter
391 * Problems. (doesn't)
392 * SHOULD report soft Destination Unreachables etc. to the
393 * application. (does, except during SYN_RECV and may drop messages
394 * in some rare cases before accept() - ICMP is unreliable)
395 * SHOULD abort connection upon receipt of hard Destination Unreachable
396 * messages (2, 3, 4). (does, but see above)
398 * Remote Address Validation (4.2.3.10)
399 * MUST reject as an error OPEN for invalid remote IP address. (does)
400 * MUST ignore SYN with invalid source address. (does)
401 * MUST silently discard incoming SYN for broadcast/multicast
404 * Asynchronous Reports (4.2.4.1)
405 * MUST provide mechanism for reporting soft errors to application
408 * Type of Service (4.2.4.2)
409 * MUST allow application layer to set Type of Service. (does IP_TOS)
411 * (Whew. -- MS 950903)
412 * (Updated by AK, but not complete yet.)
415 #include <linux/types.h>
416 #include <linux/fcntl.h>
417 #include <linux/poll.h>
418 #include <linux/init.h>
419 #include <linux/smp_lock.h>
421 #include <net/icmp.h>
424 #include <asm/uaccess.h>
426 int sysctl_tcp_fin_timeout
= TCP_FIN_TIMEOUT
;
428 struct tcp_mib tcp_statistics
;
430 kmem_cache_t
*tcp_openreq_cachep
;
431 kmem_cache_t
*tcp_bucket_cachep
;
432 kmem_cache_t
*tcp_timewait_cachep
;
435 * Find someone to 'accept'. Must be called with
436 * the listening socket locked.
439 static struct open_request
*tcp_find_established(struct tcp_opt
*tp
,
440 struct open_request
**prevp
)
442 struct open_request
*req
= tp
->syn_wait_queue
;
443 struct open_request
*prev
= (struct open_request
*)&tp
->syn_wait_queue
;
446 if((1 << req
->sk
->state
) &
447 ~(TCPF_SYN_SENT
|TCPF_SYN_RECV
))
458 * Walk down the receive queue counting readable data.
460 * Must be called with the socket lock held.
463 static int tcp_readable(struct sock
*sk
)
465 unsigned long counted
;
466 unsigned long amount
;
470 SOCK_DEBUG(sk
, "tcp_readable: %p - ",sk
);
472 skb
= skb_peek(&sk
->receive_queue
);
474 SOCK_DEBUG(sk
, "empty\n");
478 counted
= sk
->tp_pinfo
.af_tcp
.copied_seq
; /* Where we are at the moment */
481 /* Do until a push or until we are out of data. */
483 /* Found a hole so stops here. */
484 if (before(counted
, TCP_SKB_CB(skb
)->seq
)) /* should not happen */
487 /* Length - header but start from where we are up to
490 sum
= skb
->len
- (counted
- TCP_SKB_CB(skb
)->seq
);
492 /* Add it up, move on. */
499 /* Don't count urg data ... but do it in the right place!
500 * Consider: "old_data (ptr is here) URG PUSH data"
501 * The old code would stop at the first push because
502 * it counted the urg (amount==1) and then does amount--
503 * *after* the loop. This means tcp_readable() always
504 * returned zero if any URG PUSH was in the queue, even
505 * though there was normal data available. If we subtract
506 * the urg data right here, we even get it to work for more
507 * than one URG PUSH skb without normal data.
508 * This means that poll() finally works now with urg data
509 * in the queue. Note that rlogin was never affected
510 * because it doesn't use poll(); it uses two processes
511 * and a blocking read(). And the queue scan in tcp_read()
512 * was correct. Mike <pall@rz.uni-karlsruhe.de>
515 /* Don't count urg data. */
519 if (amount
&& skb
->h
.th
->psh
) break;
522 } while(skb
!= (struct sk_buff
*)&sk
->receive_queue
);
524 SOCK_DEBUG(sk
, "got %lu bytes.\n",amount
);
529 * LISTEN is a special case for poll..
531 static unsigned int tcp_listen_poll(struct sock
*sk
, poll_table
*wait
)
533 struct open_request
*req
, *dummy
;
536 req
= tcp_find_established(&sk
->tp_pinfo
.af_tcp
, &dummy
);
539 return POLLIN
| POLLRDNORM
;
544 * Compute minimal free write space needed to queue new packets.
546 #define tcp_min_write_space(__sk) \
547 (atomic_read(&(__sk)->wmem_alloc) / 2)
550 * Wait for a TCP event.
552 * Note that we don't need to lock the socket, as the upper poll layers
553 * take care of normal races (between the test and the event) and we don't
554 * go look at any of the socket buffers directly.
556 unsigned int tcp_poll(struct file
* file
, struct socket
*sock
, poll_table
*wait
)
559 struct sock
*sk
= sock
->sk
;
560 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
562 poll_wait(file
, sk
->sleep
, wait
);
563 if (sk
->state
== TCP_LISTEN
)
564 return tcp_listen_poll(sk
, wait
);
571 * POLLHUP is certainly not done right. But poll() doesn't
572 * have a notion of HUP in just one direction, and for a
573 * socket the read side is more interesting.
575 * Some poll() documentation says that POLLHUP is incompatible
576 * with the POLLOUT/POLLWR flags, so somebody should check this
577 * all. But careful, it tends to be safer to return too many
578 * bits than too few, and you can easily break real applications
579 * if you don't tell them that something has hung up!
583 if (sk
->shutdown
& RCV_SHUTDOWN
)
587 if ((1 << sk
->state
) & ~(TCPF_SYN_SENT
|TCPF_SYN_RECV
)) {
588 if ((tp
->rcv_nxt
!= tp
->copied_seq
) &&
589 (tp
->urg_seq
!= tp
->copied_seq
||
590 tp
->rcv_nxt
!= tp
->copied_seq
+1 ||
591 sk
->urginline
|| !tp
->urg_data
))
592 mask
|= POLLIN
| POLLRDNORM
;
594 if (!(sk
->shutdown
& SEND_SHUTDOWN
)) {
595 if (sock_wspace(sk
) >= tcp_min_write_space(sk
)) {
596 mask
|= POLLOUT
| POLLWRNORM
;
597 } else { /* send SIGIO later */
598 sk
->socket
->flags
|= SO_NOSPACE
;
602 if (tp
->urg_data
& URG_VALID
)
609 * Socket write_space callback.
610 * This (or rather the sock_wake_async) should agree with poll.
612 void tcp_write_space(struct sock
*sk
)
617 wake_up_interruptible(sk
->sleep
);
618 if (sock_wspace(sk
) >=
619 tcp_min_write_space(sk
))
620 sock_wake_async(sk
->socket
, 2);
624 int tcp_ioctl(struct sock
*sk
, int cmd
, unsigned long arg
)
630 #ifdef FIXME /* FIXME: */
633 if (sk
->state
== TCP_LISTEN
)
636 answ
= tcp_readable(sk
);
641 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
642 answ
= tp
->urg_data
&& tp
->urg_seq
== tp
->copied_seq
;
646 if (sk
->state
== TCP_LISTEN
)
648 answ
= sock_wspace(sk
);
651 return(-ENOIOCTLCMD
);
654 return put_user(answ
, (int *)arg
);
658 * Wait for a socket to get into the connected state
660 * Note: Must be called with the socket locked, and it
661 * runs with the kernel fully unlocked.
663 static int wait_for_tcp_connect(struct sock
* sk
, int flags
)
665 struct task_struct
*tsk
= current
;
666 DECLARE_WAITQUEUE(wait
, tsk
);
668 while((1 << sk
->state
) & ~(TCPF_ESTABLISHED
| TCPF_CLOSE_WAIT
)) {
670 return sock_error(sk
);
671 if((1 << sk
->state
) &
672 ~(TCPF_SYN_SENT
| TCPF_SYN_RECV
)) {
673 if(sk
->keepopen
&& !(flags
&MSG_NOSIGNAL
))
674 send_sig(SIGPIPE
, tsk
, 0);
677 if(flags
& MSG_DONTWAIT
)
679 if(signal_pending(tsk
))
682 tsk
->state
= TASK_INTERRUPTIBLE
;
683 add_wait_queue(sk
->sleep
, &wait
);
686 if (((1 << sk
->state
) & ~(TCPF_ESTABLISHED
|TCPF_CLOSE_WAIT
)) &&
690 tsk
->state
= TASK_RUNNING
;
691 remove_wait_queue(sk
->sleep
, &wait
);
697 static inline int tcp_memory_free(struct sock
*sk
)
699 return atomic_read(&sk
->wmem_alloc
) < sk
->sndbuf
;
703 * Wait for more memory for a socket
705 * NOTE: This runs with the kernel fully unlocked.
707 static void wait_for_tcp_memory(struct sock
* sk
)
710 if (!tcp_memory_free(sk
)) {
711 DECLARE_WAITQUEUE(wait
, current
);
713 sk
->socket
->flags
&= ~SO_NOSPACE
;
714 add_wait_queue(sk
->sleep
, &wait
);
716 if (signal_pending(current
))
718 current
->state
= TASK_INTERRUPTIBLE
;
719 if (tcp_memory_free(sk
))
721 if (sk
->shutdown
& SEND_SHUTDOWN
)
727 current
->state
= TASK_RUNNING
;
728 remove_wait_queue(sk
->sleep
, &wait
);
733 /* When all user supplied data has been queued set the PSH bit */
734 #define PSH_NEEDED (seglen == 0 && iovlen == 0)
737 * This routine copies from a user buffer into a socket,
738 * and starts the transmit system.
740 * Note: must be called with the socket locked.
743 int tcp_do_sendmsg(struct sock
*sk
, struct msghdr
*msg
)
755 tp
= &(sk
->tp_pinfo
.af_tcp
);
757 /* Wait for a connection to finish. */
758 flags
= msg
->msg_flags
;
759 if ((1 << sk
->state
) & ~(TCPF_ESTABLISHED
| TCPF_CLOSE_WAIT
))
760 if((err
= wait_for_tcp_connect(sk
, flags
)) != 0)
763 /* This should be in poll */
764 sk
->socket
->flags
&= ~SO_NOSPACE
; /* clear SIGIO XXX */
766 mss_now
= tcp_current_mss(sk
);
768 /* Ok commence sending. */
769 iovlen
= msg
->msg_iovlen
;
773 while(--iovlen
>= 0) {
774 int seglen
=iov
->iov_len
;
775 unsigned char * from
=iov
->iov_base
;
780 int copy
, tmp
, queue_it
, psh
;
785 /* Stop on errors. */
789 /* Make sure that we are established. */
790 if (sk
->shutdown
& SEND_SHUTDOWN
)
793 /* Now we need to check if we have a half
794 * built packet we can tack some data onto.
796 if (tp
->send_head
&& !(flags
& MSG_OOB
)) {
797 skb
= sk
->write_queue
.prev
;
799 /* If the remote does SWS avoidance we should
800 * queue the best we can if not we should in
801 * fact send multiple packets...
802 * A method for detecting this would be most
805 if (skb_tailroom(skb
) > 0 &&
806 (mss_now
- copy
) > 0 &&
807 tp
->snd_nxt
< TCP_SKB_CB(skb
)->end_seq
) {
808 int last_byte_was_odd
= (copy
% 4);
810 copy
= mss_now
- copy
;
811 if(copy
> skb_tailroom(skb
))
812 copy
= skb_tailroom(skb
);
815 if(last_byte_was_odd
) {
816 if(copy_from_user(skb_put(skb
, copy
),
819 skb
->csum
= csum_partial(skb
->data
,
823 csum_and_copy_from_user(
824 from
, skb_put(skb
, copy
),
825 copy
, skb
->csum
, &err
);
828 * FIXME: the *_user functions should
829 * return how much data was
830 * copied before the fault
831 * occurred and then a partial
832 * packet with this data should
833 * be sent. Unfortunately
834 * csum_and_copy_from_user doesn't
835 * return this information.
836 * ATM it might send partly zeroed
839 tp
->write_seq
+= copy
;
840 TCP_SKB_CB(skb
)->end_seq
+= copy
;
845 TCP_SKB_CB(skb
)->flags
|= TCPCB_FLAG_PSH
;
850 /* We also need to worry about the window. If
851 * window < 1/2 the maximum window we've seen
852 * from this host, don't use it. This is
853 * sender side silly window prevention, as
854 * specified in RFC1122. (Note that this is
855 * different than earlier versions of SWS
856 * prevention, e.g. RFC813.). What we
857 * actually do is use the whole MSS. Since
858 * the results in the right edge of the packet
859 * being outside the window, it will be queued
860 * for later rather than sent.
863 copy
= tp
->snd_wnd
- (tp
->snd_nxt
- tp
->snd_una
);
864 if(copy
> (tp
->max_window
>> 1)) {
865 copy
= min(copy
, mss_now
);
873 /* Determine how large of a buffer to allocate. */
874 tmp
= MAX_HEADER
+ sk
->prot
->max_header
;
875 if (copy
< min(mss_now
, tp
->max_window
>> 1) &&
876 !(flags
& MSG_OOB
)) {
877 tmp
+= min(mss_now
, tp
->max_window
);
879 /* What is happening here is that we want to
880 * tack on later members of the users iovec
881 * if possible into a single frame. When we
882 * leave this loop our caller checks to see if
883 * we can send queued frames onto the wire.
884 * See tcp_v[46]_sendmsg() for this.
891 skb
= sock_wmalloc(sk
, tmp
, 0, GFP_KERNEL
);
893 /* If we didn't get any memory, we need to sleep. */
895 sk
->socket
->flags
|= SO_NOSPACE
;
896 if (flags
&MSG_DONTWAIT
) {
900 if (signal_pending(current
)) {
904 tcp_push_pending_frames(sk
, tp
);
905 wait_for_tcp_memory(sk
);
907 /* If SACK's were formed or PMTU events happened,
908 * we must find out about it.
910 mss_now
= tcp_current_mss(sk
);
916 /* Prepare control bits for TCP header creation engine. */
917 TCP_SKB_CB(skb
)->flags
= (TCPCB_FLAG_ACK
|
918 ((PSH_NEEDED
|| psh
) ?
919 TCPCB_FLAG_PSH
: 0));
920 TCP_SKB_CB(skb
)->sacked
= 0;
921 if (flags
& MSG_OOB
) {
922 TCP_SKB_CB(skb
)->flags
|= TCPCB_FLAG_URG
;
923 TCP_SKB_CB(skb
)->urg_ptr
= copy
;
925 TCP_SKB_CB(skb
)->urg_ptr
= 0;
927 /* TCP data bytes are SKB_PUT() on top, later
928 * TCP+IP+DEV headers are SKB_PUSH()'d beneath.
929 * Reserve header space and checksum the data.
931 skb_reserve(skb
, MAX_HEADER
+ sk
->prot
->max_header
);
932 skb
->csum
= csum_and_copy_from_user(from
,
933 skb_put(skb
, copy
), copy
, 0, &err
);
941 TCP_SKB_CB(skb
)->seq
= tp
->write_seq
;
942 TCP_SKB_CB(skb
)->end_seq
= TCP_SKB_CB(skb
)->seq
+ copy
;
944 /* This advances tp->write_seq for us. */
945 tcp_send_skb(sk
, skb
, queue_it
);
956 err
= sock_error(sk
);
962 if (!(flags
&MSG_NOSIGNAL
))
963 send_sig(SIGPIPE
, current
, 0);
976 tcp_push_pending_frames(sk
, tp
);
984 * Send an ack if one is backlogged at this point. Ought to merge
985 * this with tcp_send_ack().
986 * This is called for delayed acks also.
989 void tcp_read_wakeup(struct sock
*sk
)
991 /* If we're closed, don't send an ack, or we'll get a RST
992 * from the closed destination.
994 if (sk
->state
!= TCP_CLOSE
)
999 * Handle reading urgent data. BSD has very simple semantics for
1000 * this, no blocking and very strange errors 8)
1003 static int tcp_recv_urg(struct sock
* sk
, int nonblock
,
1004 struct msghdr
*msg
, int len
, int flags
,
1007 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1009 /* No URG data to read. */
1010 if (sk
->urginline
|| !tp
->urg_data
|| tp
->urg_data
== URG_READ
)
1011 return -EINVAL
; /* Yes this is right ! */
1014 return sock_error(sk
);
1019 if (sk
->state
== TCP_CLOSE
|| (sk
->shutdown
& RCV_SHUTDOWN
)) {
1025 if (tp
->urg_data
& URG_VALID
) {
1027 char c
= tp
->urg_data
;
1029 if (!(flags
& MSG_PEEK
))
1030 tp
->urg_data
= URG_READ
;
1033 tp
->af_specific
->addr2sockaddr(sk
, (struct sockaddr
*)
1037 *addr_len
= tp
->af_specific
->sockaddr_len
;
1039 /* Read urgent data. */
1040 msg
->msg_flags
|=MSG_OOB
;
1045 err
= memcpy_toiovec(msg
->msg_iov
, &c
, 1);
1046 /* N.B. already set above ... */
1047 msg
->msg_flags
|=MSG_OOB
;
1050 msg
->msg_flags
|=MSG_TRUNC
;
1052 /* N.B. Is this right?? If len == 0 we didn't read any data */
1053 return err
? -EFAULT
: 1;
1057 /* Fixed the recv(..., MSG_OOB) behaviour. BSD docs and
1058 * the available implementations agree in this case:
1059 * this call should never block, independent of the
1060 * blocking state of the socket.
1061 * Mike <pall@rz.uni-karlsruhe.de>
1067 * Release a skb if it is no longer needed. This routine
1068 * must be called with interrupts disabled or with the
1069 * socket locked so that the sk_buff queue operation is ok.
1072 static inline void tcp_eat_skb(struct sock
*sk
, struct sk_buff
* skb
)
1074 __skb_unlink(skb
, &sk
->receive_queue
);
1078 /* Clean up the receive buffer for full frames taken by the user,
1079 * then send an ACK if necessary. COPIED is the number of bytes
1080 * tcp_recvmsg has given to the user so far, it speeds up the
1081 * calculation of whether or not we must ACK for the sake of
1084 static void cleanup_rbuf(struct sock
*sk
, int copied
)
1086 struct sk_buff
*skb
;
1088 /* NOTE! The socket must be locked, so that we don't get
1089 * a messed-up receive queue.
1091 while ((skb
=skb_peek(&sk
->receive_queue
)) != NULL
) {
1092 if (!skb
->used
|| atomic_read(&skb
->users
) > 1)
1094 tcp_eat_skb(sk
, skb
);
1097 /* We send an ACK if we can now advertise a non-zero window
1098 * which has been raised "significantly".
1101 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1102 __u32 rcv_window_now
= tcp_receive_window(tp
);
1103 __u32 new_window
= __tcp_select_window(sk
);
1105 /* We won't be raising the window any further than
1106 * the window-clamp allows. Our window selection
1107 * also keeps things a nice multiple of MSS. These
1108 * checks are necessary to prevent spurious ACKs
1109 * which don't advertize a larger window.
1111 if((new_window
&& (new_window
>= rcv_window_now
* 2)) &&
1112 ((rcv_window_now
+ tp
->mss_cache
) <= tp
->window_clamp
))
1113 tcp_read_wakeup(sk
);
1119 * This routine copies from a sock struct into the user buffer.
1122 int tcp_recvmsg(struct sock
*sk
, struct msghdr
*msg
,
1123 int len
, int nonblock
, int flags
, int *addr_len
)
1125 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1126 DECLARE_WAITQUEUE(wait
, current
);
1129 volatile u32
*seq
; /* So gcc doesn't overoptimise */
1132 int target
= 1; /* Read at least this many bytes */
1135 return sock_error(sk
);
1137 if (sk
->state
== TCP_LISTEN
)
1140 /* Urgent data needs to be handled specially. */
1141 if (flags
& MSG_OOB
)
1142 return tcp_recv_urg(sk
, nonblock
, msg
, len
, flags
, addr_len
);
1144 /* Copying sequence to update. This is volatile to handle
1145 * the multi-reader case neatly (memcpy_to/fromfs might be
1146 * inline and thus not flush cached variables otherwise).
1148 peek_seq
= tp
->copied_seq
;
1149 seq
= &tp
->copied_seq
;
1150 if (flags
& MSG_PEEK
)
1153 /* Handle the POSIX bogosity MSG_WAITALL. */
1154 if (flags
& MSG_WAITALL
)
1157 add_wait_queue(sk
->sleep
, &wait
);
1162 * This violates 1003.1g compliance. We must wait for
1163 * data to exist even if we read none!
1167 struct sk_buff
* skb
;
1170 /* Are we at urgent data? Stop if we have read anything. */
1171 if (copied
&& tp
->urg_data
&& tp
->urg_seq
== *seq
)
1174 /* We need to check signals first, to get correct SIGURG
1175 * handling. FIXME: Need to check this doesnt impact 1003.1g
1176 * and move it down to the bottom of the loop
1178 if (signal_pending(current
)) {
1181 copied
= -ERESTARTSYS
;
1187 /* Next get a buffer. */
1188 current
->state
= TASK_INTERRUPTIBLE
;
1190 skb
= skb_peek(&sk
->receive_queue
);
1195 /* Now that we have two receive queues this
1198 if (before(*seq
, TCP_SKB_CB(skb
)->seq
)) {
1199 printk(KERN_INFO
"recvmsg bug: copied %X seq %X\n",
1200 *seq
, TCP_SKB_CB(skb
)->seq
);
1203 offset
= *seq
- TCP_SKB_CB(skb
)->seq
;
1206 if (offset
< skb
->len
)
1210 if (!(flags
& MSG_PEEK
))
1213 } while (skb
!= (struct sk_buff
*)&sk
->receive_queue
);
1215 if (copied
>= target
)
1219 These three lines and clause if (sk->state == TCP_CLOSE)
1220 are unlikely to be correct, if target > 1.
1221 I DO NOT FIX IT, because I have no idea, what
1222 POSIX prescribes to make here. Probably, it really
1223 wants to lose data 8), if not all target is received.
1226 if (sk
->err
&& !(flags
&MSG_PEEK
)) {
1227 copied
= sock_error(sk
);
1231 if (sk
->shutdown
& RCV_SHUTDOWN
) {
1236 if (sk
->state
== TCP_CLOSE
) {
1250 cleanup_rbuf(sk
, copied
);
1252 sk
->socket
->flags
|= SO_WAITDATA
;
1254 sk
->socket
->flags
&= ~SO_WAITDATA
;
1259 /* Lock the buffer. We can be fairly relaxed as
1260 * an interrupt will never steal a buffer we are
1261 * using unless I've missed something serious in
1264 atomic_inc(&skb
->users
);
1266 /* Ok so how much can we use? */
1267 used
= skb
->len
- offset
;
1271 /* Do we have urgent data here? */
1273 u32 urg_offset
= tp
->urg_seq
- *seq
;
1274 if (urg_offset
< used
) {
1276 if (!sk
->urginline
) {
1286 /* Copy it - We _MUST_ update *seq first so that we
1287 * don't ever double read when we have dual readers
1291 /* This memcpy_toiovec can sleep. If it sleeps and we
1292 * do a second read it relies on the skb->users to avoid
1293 * a crash when cleanup_rbuf() gets called.
1295 err
= memcpy_toiovec(msg
->msg_iov
, ((unsigned char *)skb
->h
.th
) + skb
->h
.th
->doff
*4 + offset
, used
);
1297 /* Exception. Bailout! */
1298 atomic_dec(&skb
->users
);
1306 /* We now will not sleep again until we are finished
1307 * with skb. Sorry if you are doing the SMP port
1308 * but you'll just have to fix it neatly ;)
1310 * Very funny Alan... -DaveM
1312 atomic_dec(&skb
->users
);
1314 if (after(tp
->copied_seq
,tp
->urg_seq
))
1316 if (used
+ offset
< skb
->len
)
1319 /* Process the FIN. We may also need to handle PSH
1320 * here and make it break out of MSG_WAITALL.
1324 if (flags
& MSG_PEEK
)
1327 if (atomic_read(&skb
->users
) == 1)
1328 tcp_eat_skb(sk
, skb
);
1333 if (flags
& MSG_PEEK
)
1338 sk
->shutdown
|= RCV_SHUTDOWN
;
1342 if (copied
> 0 && msg
->msg_name
)
1343 tp
->af_specific
->addr2sockaddr(sk
, (struct sockaddr
*)
1347 *addr_len
= tp
->af_specific
->sockaddr_len
;
1349 remove_wait_queue(sk
->sleep
, &wait
);
1350 current
->state
= TASK_RUNNING
;
1352 /* Clean up data we have read: This will do ACK frames. */
1353 cleanup_rbuf(sk
, copied
);
1359 * Check whether to renew the timer.
1361 static inline void tcp_check_fin_timer(struct sock
*sk
)
1363 if (sk
->state
== TCP_FIN_WAIT2
&& !sk
->timer
.prev
)
1364 tcp_reset_msl_timer(sk
, TIME_CLOSE
, sysctl_tcp_fin_timeout
);
1368 * State processing on a close. This implements the state shift for
1369 * sending our FIN frame. Note that we only send a FIN for some
1370 * states. A shutdown() may have already sent the FIN, or we may be
1374 static unsigned char new_state
[16] = {
1375 /* current state: new state: action: */
1376 /* (Invalid) */ TCP_CLOSE
,
1377 /* TCP_ESTABLISHED */ TCP_FIN_WAIT1
| TCP_ACTION_FIN
,
1378 /* TCP_SYN_SENT */ TCP_CLOSE
,
1379 /* TCP_SYN_RECV */ TCP_FIN_WAIT1
| TCP_ACTION_FIN
,
1380 /* TCP_FIN_WAIT1 */ TCP_FIN_WAIT1
,
1381 /* TCP_FIN_WAIT2 */ TCP_FIN_WAIT2
,
1382 /* TCP_TIME_WAIT */ TCP_CLOSE
,
1383 /* TCP_CLOSE */ TCP_CLOSE
,
1384 /* TCP_CLOSE_WAIT */ TCP_LAST_ACK
| TCP_ACTION_FIN
,
1385 /* TCP_LAST_ACK */ TCP_LAST_ACK
,
1386 /* TCP_LISTEN */ TCP_CLOSE
,
1387 /* TCP_CLOSING */ TCP_CLOSING
,
1390 static int tcp_close_state(struct sock
*sk
, int dead
)
1392 int next
= (int) new_state
[sk
->state
];
1393 int ns
= (next
& TCP_STATE_MASK
);
1395 tcp_set_state(sk
, ns
);
1397 /* This is a (useful) BSD violating of the RFC. There is a
1398 * problem with TCP as specified in that the other end could
1399 * keep a socket open forever with no application left this end.
1400 * We use a 3 minute timeout (about the same as BSD) then kill
1401 * our end. If they send after that then tough - BUT: long enough
1402 * that we won't make the old 4*rto = almost no time - whoops
1406 tcp_check_fin_timer(sk
);
1408 return (next
& TCP_ACTION_FIN
);
1412 * Shutdown the sending side of a connection. Much like close except
1413 * that we don't receive shut down or set sk->dead.
1416 void tcp_shutdown(struct sock
*sk
, int how
)
1418 /* We need to grab some memory, and put together a FIN,
1419 * and then put it into the queue to be sent.
1420 * Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1422 if (!(how
& SEND_SHUTDOWN
))
1425 /* If we've already sent a FIN, or it's a closed state, skip this. */
1427 if ((1 << sk
->state
) &
1428 (TCPF_ESTABLISHED
|TCPF_SYN_SENT
|TCPF_SYN_RECV
|TCPF_CLOSE_WAIT
)) {
1430 /* Clear out any half completed packets. FIN if needed. */
1431 if (tcp_close_state(sk
,0))
1439 * Return 1 if we still have things to send in our buffers.
1442 static inline int closing(struct sock
* sk
)
1444 return ((1 << sk
->state
) & (TCPF_FIN_WAIT1
|TCPF_CLOSING
|TCPF_LAST_ACK
));
1448 * This routine closes sockets which have been at least partially
1449 * opened, but not yet accepted. Currently it is only called by
1450 * tcp_close, and timeout mirrors the value there.
1453 static void tcp_close_pending (struct sock
*sk
)
1455 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1456 struct open_request
*req
= tp
->syn_wait_queue
;
1459 struct open_request
*iter
;
1462 tcp_close(req
->sk
, 0);
1467 (*iter
->class->destructor
)(iter
);
1468 tcp_dec_slow_timer(TCP_SLT_SYNACK
);
1470 tcp_openreq_free(iter
);
1476 void tcp_close(struct sock
*sk
, long timeout
)
1478 struct sk_buff
*skb
;
1479 int data_was_unread
= 0;
1481 /* We need to grab some memory, and put together a FIN,
1482 * and then put it into the queue to be sent.
1485 if(sk
->state
== TCP_LISTEN
) {
1487 tcp_set_state(sk
, TCP_CLOSE
);
1488 tcp_close_pending(sk
);
1496 /* It is questionable, what the role of this is now.
1497 * In any event either it should be removed, or
1498 * increment of SLT_KEEPALIVE be done, this is causing
1499 * big problems. For now I comment it out. -DaveM
1501 /* sk->keepopen = 1; */
1502 sk
->shutdown
= SHUTDOWN_MASK
;
1505 sk
->state_change(sk
);
1507 /* We need to flush the recv. buffs. We do this only on the
1508 * descriptor close, not protocol-sourced closes, because the
1509 * reader process may not have drained the data yet!
1511 while((skb
=__skb_dequeue(&sk
->receive_queue
))!=NULL
) {
1512 u32 len
= TCP_SKB_CB(skb
)->end_seq
- TCP_SKB_CB(skb
)->seq
- skb
->h
.th
->fin
;
1513 data_was_unread
+= len
;
1517 /* As outlined in draft-ietf-tcpimpl-prob-03.txt, section
1518 * 3.10, we send a RST here because data was lost. To
1519 * witness the awful effects of the old behavior of always
1520 * doing a FIN, run an older 2.1.x kernel or 2.0.x, start
1521 * a bulk GET in an FTP client, suspend the process, wait
1522 * for the client to advertise a zero window, then kill -9
1523 * the FTP client, wheee... Note: timeout is always zero
1526 if(data_was_unread
!= 0) {
1527 /* Unread data was tossed, zap the connection. */
1528 tcp_set_state(sk
, TCP_CLOSE
);
1529 tcp_send_active_reset(sk
);
1530 } else if (tcp_close_state(sk
,1)) {
1531 /* We FIN if the application ate all the data before
1532 * zapping the connection.
1538 struct task_struct
*tsk
= current
;
1539 DECLARE_WAITQUEUE(wait
, current
);
1541 add_wait_queue(sk
->sleep
, &wait
);
1544 tsk
->state
= TASK_INTERRUPTIBLE
;
1548 timeout
= schedule_timeout(timeout
);
1550 if (signal_pending(tsk
) || !timeout
)
1554 tsk
->state
= TASK_RUNNING
;
1555 remove_wait_queue(sk
->sleep
, &wait
);
1558 /* Now that the socket is dead, if we are in the FIN_WAIT2 state
1559 * we may need to set up a timer.
1561 tcp_check_fin_timer(sk
);
1570 * Wait for an incoming connection, avoid race
1571 * conditions. This must be called with the socket locked,
1572 * and without the kernel lock held.
1574 static struct open_request
* wait_for_connect(struct sock
* sk
,
1575 struct open_request
**pprev
)
1577 DECLARE_WAITQUEUE(wait
, current
);
1578 struct open_request
*req
;
1581 * True wake-one mechanism for incoming connections: only
1582 * one process gets woken up, not the 'whole herd'.
1583 * Since we do not 'race & poll' for established sockets
1584 * anymore, the common case will execute the loop only once.
1586 * Subtle issue: "add_wait_queue_exclusive()" will be added
1587 * after any current non-exclusive waiters, and we know that
1588 * it will always _stay_ after any new non-exclusive waiters
1589 * because all non-exclusive waiters are added at the
1590 * beginning of the wait-queue. As such, it's ok to "drop"
1591 * our exclusiveness temporarily when we get woken up without
1592 * having to remove and re-insert us on the wait queue.
1594 add_wait_queue_exclusive(sk
->sleep
, &wait
);
1596 current
->state
= TASK_EXCLUSIVE
| TASK_INTERRUPTIBLE
;
1600 req
= tcp_find_established(&(sk
->tp_pinfo
.af_tcp
), pprev
);
1603 if (signal_pending(current
))
1606 current
->state
= TASK_RUNNING
;
1607 remove_wait_queue(sk
->sleep
, &wait
);
1612 * This will accept the next outstanding connection.
1614 * Be careful about race conditions here - this is subtle.
1617 struct sock
*tcp_accept(struct sock
*sk
, int flags
)
1619 struct tcp_opt
*tp
= &sk
->tp_pinfo
.af_tcp
;
1620 struct open_request
*req
, *prev
;
1621 struct sock
*newsk
= NULL
;
1627 /* We need to make sure that this socket is listening,
1628 * and that it has something pending.
1631 if (sk
->state
!= TCP_LISTEN
)
1634 /* Find already established connection */
1635 req
= tcp_find_established(tp
, &prev
);
1637 /* If this is a non blocking socket don't sleep */
1639 if (flags
& O_NONBLOCK
)
1642 error
= ERESTARTSYS
;
1643 req
= wait_for_connect(sk
, &prev
);
1648 tcp_synq_unlink(tp
, req
, prev
);
1650 req
->class->destructor(req
);
1651 tcp_openreq_free(req
);
1654 tcp_inc_slow_timer(TCP_SLT_KEEPALIVE
);
1660 /* sk should be in LISTEN state, thus accept can use sk->err for
1661 * internal purposes without stomping on anyone's feed.
1670 * Socket option code for TCP.
1673 int tcp_setsockopt(struct sock
*sk
, int level
, int optname
, char *optval
,
1676 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1679 if (level
!= SOL_TCP
)
1680 return tp
->af_specific
->setsockopt(sk
, level
, optname
,
1683 if(optlen
<sizeof(int))
1686 if (get_user(val
, (int *)optval
))
1691 /* values greater than interface MTU won't take effect. however at
1692 * the point when this call is done we typically don't yet know
1693 * which interface is going to be used
1695 if(val
< 1 || val
> MAX_WINDOW
)
1701 /* You cannot try to use this and TCP_CORK in
1702 * tandem, so let the user know.
1704 if (sk
->nonagle
== 2)
1706 sk
->nonagle
= (val
== 0) ? 0 : 1;
1710 /* When set indicates to always queue non-full frames.
1711 * Later the user clears this option and we transmit
1712 * any pending partial frames in the queue. This is
1713 * meant to be used alongside sendfile() to get properly
1714 * filled frames when the user (for example) must write
1715 * out headers with a write() call first and then use
1716 * sendfile to send out the data parts.
1718 * You cannot try to use TCP_NODELAY and this mechanism
1719 * at the same time, so let the user know.
1721 if (sk
->nonagle
== 1)
1729 tcp_push_pending_frames(sk
, tp
);
1735 return -ENOPROTOOPT
;
1739 int tcp_getsockopt(struct sock
*sk
, int level
, int optname
, char *optval
,
1742 struct tcp_opt
*tp
= &(sk
->tp_pinfo
.af_tcp
);
1745 if(level
!= SOL_TCP
)
1746 return tp
->af_specific
->getsockopt(sk
, level
, optname
,
1749 if(get_user(len
,optlen
))
1752 len
= min(len
, sizeof(int));
1759 val
= (sk
->nonagle
== 1);
1762 val
= (sk
->nonagle
== 2);
1765 return -ENOPROTOOPT
;
1768 if(put_user(len
, optlen
))
1770 if(copy_to_user(optval
, &val
,len
))
1775 void tcp_set_keepalive(struct sock
*sk
, int val
)
1777 if (!sk
->keepopen
&& val
)
1778 tcp_inc_slow_timer(TCP_SLT_KEEPALIVE
);
1779 else if (sk
->keepopen
&& !val
)
1780 tcp_dec_slow_timer(TCP_SLT_KEEPALIVE
);
1783 extern void __skb_cb_too_small_for_tcp(int, int);
1785 void __init
tcp_init(void)
1787 struct sk_buff
*skb
= NULL
;
1791 if(sizeof(struct tcp_skb_cb
) > sizeof(skb
->cb
))
1792 __skb_cb_too_small_for_tcp(sizeof(struct tcp_skb_cb
),
1795 tcp_openreq_cachep
= kmem_cache_create("tcp_open_request",
1796 sizeof(struct open_request
),
1797 0, SLAB_HWCACHE_ALIGN
,
1799 if(!tcp_openreq_cachep
)
1800 panic("tcp_init: Cannot alloc open_request cache.");
1802 tcp_bucket_cachep
= kmem_cache_create("tcp_bind_bucket",
1803 sizeof(struct tcp_bind_bucket
),
1804 0, SLAB_HWCACHE_ALIGN
,
1806 if(!tcp_bucket_cachep
)
1807 panic("tcp_init: Cannot alloc tcp_bind_bucket cache.");
1809 tcp_timewait_cachep
= kmem_cache_create("tcp_tw_bucket",
1810 sizeof(struct tcp_tw_bucket
),
1811 0, SLAB_HWCACHE_ALIGN
,
1813 if(!tcp_timewait_cachep
)
1814 panic("tcp_init: Cannot alloc tcp_tw_bucket cache.");
1816 /* Size and allocate the main established and bind bucket
1819 * The methodology is similar to that of the buffer cache.
1821 goal
= num_physpages
>> (20 - PAGE_SHIFT
);
1822 for(order
= 5; (1UL << order
) < goal
; order
++)
1825 tcp_ehash_size
= (1UL << order
) * PAGE_SIZE
/
1826 sizeof(struct sock
*);
1827 tcp_ehash
= (struct sock
**)
1828 __get_free_pages(GFP_ATOMIC
, order
);
1829 } while (tcp_ehash
== NULL
&& --order
> 4);
1832 panic("Failed to allocate TCP established hash table\n");
1833 memset(tcp_ehash
, 0, tcp_ehash_size
* sizeof(struct sock
*));
1836 tcp_bhash_size
= (1UL << order
) * PAGE_SIZE
/
1837 sizeof(struct tcp_bind_bucket
*);
1838 tcp_bhash
= (struct tcp_bind_bucket
**)
1839 __get_free_pages(GFP_ATOMIC
, order
);
1840 } while (tcp_bhash
== NULL
&& --order
> 4);
1843 panic("Failed to allocate TCP bind hash table\n");
1844 memset(tcp_bhash
, 0, tcp_bhash_size
* sizeof(struct tcp_bind_bucket
*));
1846 printk("TCP: Hash tables configured (established %d bind %d)\n",
1847 tcp_ehash_size
, tcp_bhash_size
);