root/net/ipv4/tcp.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. tcp_find_established
  2. tcp_dequeue_established
  3. tcp_close_pending
  4. tcp_time_wait
  5. tcp_err
  6. tcp_readable
  7. tcp_listen_select
  8. tcp_select
  9. tcp_ioctl
  10. tcp_send_check
  11. tcp_build_header
  12. wait_for_tcp_connect
  13. wait_for_tcp_memory
  14. do_tcp_sendmsg
  15. tcp_sendmsg
  16. tcp_read_wakeup
  17. tcp_recv_urg
  18. tcp_eat_skb
  19. cleanup_rbuf
  20. tcp_recvmsg
  21. tcp_close_state
  22. tcp_shutdown
  23. closing
  24. tcp_close
  25. tcp_accept
  26. tcp_connect
  27. tcp_setsockopt
  28. tcp_getsockopt

   1 /*
   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  *
   8  * Version:     @(#)tcp.c       1.0.16  05/25/93
   9  *
  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>
  21  *
  22  * Fixes:       
  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 
  27  *                                      (tcp_err()).
  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. select 
  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 
  38  *                                      unknown sockets.
  39  *              Alan Cox        :       tcp option processing.
  40  *              Alan Cox        :       Reset tweaked (still not 100%) [Had 
  41  *                                      syn rule wrong]
  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 
  47  *                                      escape still
  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 
  51  *                                      facilities
  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
  56  *                                      bit to skb ops.
  57  *              Alan Cox        :       Tidied tcp_data to avoid a potential 
  58  *                                      nasty.
  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 
  70  *                                      sockets.
  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 
  74  *                                      state ack error.
  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 
  79  *                                      fixes
  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
  85  *                                      completely
  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 
  93  *                                      (not yet usable)
  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 select() after URG properly in 
 106  *                                      all cases.
 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(), select() after URG 
 111  *                                      works now.
 112  *              Michael Pall    :       recv(...,MSG_OOB) never blocks in the 
 113  *                                      BSD api.
 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
 121  *                                      fixed ports.
 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
 127  *                                      socket close.
 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 selecting before an 
 132  *                                      accept.
 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 
 143  *                                      close.
 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
 149  *                                      comments.
 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
 157  *                                      resemble the RFC.
 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
 162  *                                      generates them.
 163  *              Alan Cox        :       Cache last socket.
 164  *              Alan Cox        :       Per route irtt.
 165  *              Matt Day        :       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 stat is TCP_CLOSED.
 173  *              Alan Cox        :       Look up device on a retransmit - routes may
 174  *                                      change. Doesn't yet cope with MSS shrink right
 175  *                                      but its a start!
 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 pathalogical 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  *
 192  * To Fix:
 193  *              Fast path the code. Two things here - fix the window calculation
 194  *              so it doesn't iterate over the queue, also spot packets with no funny
 195  *              options arriving in order and process directly.
 196  *
 197  *              Rewrite output state machine to use a single queue.
 198  *              Speed up input assembly algorithm.
 199  *              RFC1323 - PAWS and window scaling. PAWS is required for IPv6 so we
 200  *              could do with it working on IPv4
 201  *              User settable/learned rtt/max window/mtu
 202  *
 203  *              Change the fundamental structure to a single send queue maintained
 204  *              by TCP (removing the bogus ip stuff [thus fixing mtu drops on
 205  *              active routes too]). Cut the queue off in tcp_retransmit/
 206  *              tcp_transmit.
 207  *              Change the receive queue to assemble as it goes. This lets us
 208  *              dispose of most of tcp_sequence, half of tcp_ack and chunks of
 209  *              tcp_data/tcp_read as well as the window shrink crud.
 210  *              Separate out duplicated code - tcp_alloc_skb, tcp_build_ack
 211  *              tcp_queue_skb seem obvious routines to extract.
 212  *      
 213  *              This program is free software; you can redistribute it and/or
 214  *              modify it under the terms of the GNU General Public License
 215  *              as published by the Free Software Foundation; either version
 216  *              2 of the License, or(at your option) any later version.
 217  *
 218  * Description of States:
 219  *
 220  *      TCP_SYN_SENT            sent a connection request, waiting for ack
 221  *
 222  *      TCP_SYN_RECV            received a connection request, sent ack,
 223  *                              waiting for final ack in three-way handshake.
 224  *
 225  *      TCP_ESTABLISHED         connection established
 226  *
 227  *      TCP_FIN_WAIT1           our side has shutdown, waiting to complete
 228  *                              transmission of remaining buffered data
 229  *
 230  *      TCP_FIN_WAIT2           all buffered data sent, waiting for remote
 231  *                              to shutdown
 232  *
 233  *      TCP_CLOSING             both sides have shutdown but we still have
 234  *                              data we have to finish sending
 235  *
 236  *      TCP_TIME_WAIT           timeout to catch resent junk before entering
 237  *                              closed, can only be entered from FIN_WAIT2
 238  *                              or CLOSING.  Required because the other end
 239  *                              may not have gotten our last ACK causing it
 240  *                              to retransmit the data packet (which we ignore)
 241  *
 242  *      TCP_CLOSE_WAIT          remote side has shutdown and is waiting for
 243  *                              us to finish writing our data and to shutdown
 244  *                              (we have to close() to move on to LAST_ACK)
 245  *
 246  *      TCP_LAST_ACK            out side has shutdown after remote has
 247  *                              shutdown.  There may still be data in our
 248  *                              buffer that we have to finish sending
 249  *              
 250  *      TCP_CLOSE               socket is finished
 251  */
 252 
 253 /*
 254  * RFC1122 status:
 255  * NOTE: I'm not going to be doing comments in the code for this one except
 256  * for violations and the like.  tcp.c is just too big... If I say something
 257  * "does?" or "doesn't?", it means I'm not sure, and will have to hash it out
 258  * with Alan. -- MS 950903
 259  * 
 260  * Use of PSH (4.2.2.2)
 261  *   MAY aggregate data sent without the PSH flag. (does)
 262  *   MAY queue data received without the PSH flag. (does)
 263  *   SHOULD collapse successive PSH flags when it packetizes data. (doesn't)
 264  *   MAY implement PSH on send calls. (doesn't, thus:)
 265  *     MUST NOT buffer data indefinitely (doesn't [1 second])
 266  *     MUST set PSH on last segment (does)
 267  *   MAY pass received PSH to application layer (doesn't)
 268  *   SHOULD send maximum-sized segment whenever possible. (almost always does)
 269  * 
 270  * Window Size (4.2.2.3, 4.2.2.16)
 271  *   MUST treat window size as an unsigned number (does)
 272  *   SHOULD treat window size as a 32-bit number (does not)
 273  *   MUST NOT shrink window once it is offered (does not normally)
 274  *   
 275  * Urgent Pointer (4.2.2.4)
 276  * **MUST point urgent pointer to last byte of urgent data (not right
 277  *     after). (doesn't, to be like BSD)
 278  *   MUST inform application layer asynchronously of incoming urgent
 279  *     data. (does)
 280  *   MUST provide application with means of determining the amount of
 281  *     urgent data pending. (does)
 282  * **MUST support urgent data sequence of arbitrary length. (doesn't, but
 283  *   it's sort of tricky to fix, as urg_ptr is a 16-bit quantity)
 284  *      [Follows BSD 1 byte of urgent data]
 285  * 
 286  * TCP Options (4.2.2.5)
 287  *   MUST be able to receive TCP options in any segment. (does)
 288  *   MUST ignore unsupported options (does)
 289  *   
 290  * Maximum Segment Size Option (4.2.2.6)
 291  *   MUST implement both sending and receiving MSS. (does)
 292  *   SHOULD send an MSS with every SYN where receive MSS != 536 (MAY send
 293  *     it always). (does, even when MSS == 536, which is legal)
 294  *   MUST assume MSS == 536 if no MSS received at connection setup (does)
 295  *   MUST calculate "effective send MSS" correctly:
 296  *     min(physical_MTU, remote_MSS+20) - sizeof(tcphdr) - sizeof(ipopts)
 297  *     (does - but allows operator override)
 298  *  
 299  * TCP Checksum (4.2.2.7)
 300  *   MUST generate and check TCP checksum. (does)
 301  * 
 302  * Initial Sequence Number Selection (4.2.2.8)
 303  *   MUST use the RFC 793 clock selection mechanism.  (doesn't, but it's
 304  *     OK: RFC 793 specifies a 250KHz clock, while we use 1MHz, which is
 305  *     necessary for 10Mbps networks - and harder than BSD to spoof!)
 306  * 
 307  * Simultaneous Open Attempts (4.2.2.10)
 308  *   MUST support simultaneous open attempts (does)
 309  * 
 310  * Recovery from Old Duplicate SYN (4.2.2.11)
 311  *   MUST keep track of active vs. passive open (does)
 312  * 
 313  * RST segment (4.2.2.12)
 314  *   SHOULD allow an RST segment to contain data (does, but doesn't do
 315  *     anything with it, which is standard)
 316  * 
 317  * Closing a Connection (4.2.2.13)
 318  *   MUST inform application of whether connectin was closed by RST or
 319  *     normal close. (does)
 320  *   MAY allow "half-duplex" close (treat connection as closed for the
 321  *     local app, even before handshake is done). (does)
 322  *   MUST linger in TIME_WAIT for 2 * MSL (does)
 323  * 
 324  * Retransmission Timeout (4.2.2.15)
 325  *   MUST implement Jacobson's slow start and congestion avoidance
 326  *     stuff. (does) 
 327  * 
 328  * Probing Zero Windows (4.2.2.17)
 329  *   MUST support probing of zero windows. (does)
 330  *   MAY keep offered window closed indefinitely. (does)
 331  *   MUST allow remote window to stay closed indefinitely. (does)
 332  * 
 333  * Passive Open Calls (4.2.2.18)
 334  *   MUST NOT let new passive open affect other connections. (doesn't)
 335  *   MUST support passive opens (LISTENs) concurrently. (does)
 336  *   
 337  * Time to Live (4.2.2.19)
 338  *   MUST make TCP TTL configurable. (does - IP_TTL option)
 339  * 
 340  * Event Processing (4.2.2.20)
 341  *   SHOULD queue out-of-order segments. (does)
 342  *   MUST aggregate ACK segments whenever possible. (does but badly)
 343  *   
 344  * Retransmission Timeout Calculation (4.2.3.1)
 345  *   MUST implement Karn's algorithm and Jacobson's algorithm for RTO
 346  *     calculation. (does, or at least explains them in the comments 8*b)
 347  *  SHOULD initialize RTO to 0 and RTT to 3. (does)
 348  * 
 349  * When to Send an ACK Segment (4.2.3.2)
 350  *   SHOULD implement delayed ACK. (does)
 351  *   MUST keep ACK delay < 0.5 sec. (does)
 352  * 
 353  * When to Send a Window Update (4.2.3.3)
 354  *   MUST implement receiver-side SWS. (does)
 355  *   
 356  * When to Send Data (4.2.3.4)
 357  *   MUST implement sender-side SWS. (does)
 358  *   SHOULD implement Nagle algorithm. (does)
 359  * 
 360  * TCP Connection Failures (4.2.3.5)
 361  *  MUST handle excessive retransmissions "properly" (see the RFC). (does)
 362  *   SHOULD inform application layer of soft errors. (does)
 363  *   
 364  * TCP Keep-Alives (4.2.3.6)
 365  *   MAY provide keep-alives. (does)
 366  *   MUST make keep-alives configurable on a per-connection basis. (does)
 367  *   MUST default to no keep-alives. (does)
 368  * **MUST make keep-alive interval configurable. (doesn't)
 369  * **MUST make default keep-alive interval > 2 hours. (doesn't)
 370  *   MUST NOT interpret failure to ACK keep-alive packet as dead
 371  *     connection. (doesn't)
 372  *   SHOULD send keep-alive with no data. (does)
 373  * 
 374  * TCP Multihoming (4.2.3.7)
 375  *   MUST get source address from IP layer before sending first
 376  *     SYN. (does)
 377  *   MUST use same local address for all segments of a connection. (does)
 378  * 
 379  * IP Options (4.2.3.8)
 380  *   MUST ignore unsupported IP options. (does)
 381  *   MAY support Time Stamp and Record Route. (does)
 382  *   MUST allow application to specify a source route. (does)
 383  *   MUST allow receieved Source Route option to set route for all future
 384  *     segments on this connection. (does not (security issues))
 385  * 
 386  * ICMP messages (4.2.3.9)
 387  *   MUST act on ICMP errors. (does)
 388  *   MUST slow transmission upon receipt of a Source Quench. (does)
 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)
 394  *   SHOULD abort connection upon receipt of hard Destination Unreachable
 395  *     messages (2, 3, 4). (does)
 396  * 
 397  * Remote Address Validation (4.2.3.10)
 398  *   MUST reject as an error OPEN for invalid remote IP address. (does)
 399  *   MUST ignore SYN with invalid source address. (does)
 400  *   MUST silently discard incoming SYN for broadcast/multicast
 401  *     address. (does) 
 402  * 
 403  * Asynchronous Reports (4.2.4.1)
 404  * MUST provide mechanism for reporting soft errors to application
 405  *     layer. (does)
 406  * 
 407  * Type of Service (4.2.4.2)
 408  *   MUST allow application layer to set Type of Service. (does IP_TOS)
 409  * 
 410  * (Whew. -- MS 950903)
 411  **/
 412 
 413 #include <linux/config.h>
 414 #include <linux/types.h>
 415 #include <linux/fcntl.h>
 416 
 417 #include <net/icmp.h>
 418 #include <net/tcp.h>
 419 
 420 #include <asm/segment.h>
 421 
 422 unsigned long seq_offset;
 423 struct tcp_mib  tcp_statistics;
 424 
 425 static void tcp_close(struct sock *sk, unsigned long timeout);
 426 
 427 /*
 428  *      The less said about this the better, but it works and will do for 1.2  (and 1.4 ;))
 429  */
 430 
 431 struct wait_queue *master_select_wakeup;
 432 
 433 /*
 434  *      Find someone to 'accept'. Must be called with
 435  *      the socket locked or with interrupts disabled
 436  */ 
 437 
 438 static struct sk_buff *tcp_find_established(struct sock *s)
     /* [previous][next][first][last][top][bottom][index][help] */
 439 {
 440         struct sk_buff *p=skb_peek(&s->receive_queue);
 441         if(p==NULL)
 442                 return NULL;
 443         do
 444         {
 445                 if(p->sk->state == TCP_ESTABLISHED || p->sk->state >= TCP_FIN_WAIT1)
 446                         return p;
 447                 p=p->next;
 448         }
 449         while(p!=(struct sk_buff *)&s->receive_queue);
 450         return NULL;
 451 }
 452 
 453 /*
 454  *      Remove a completed connection and return it. This is used by
 455  *      tcp_accept() to get connections from the queue.
 456  */
 457 
 458 static struct sk_buff *tcp_dequeue_established(struct sock *s)
     /* [previous][next][first][last][top][bottom][index][help] */
 459 {
 460         struct sk_buff *skb;
 461         unsigned long flags;
 462         save_flags(flags);
 463         cli(); 
 464         skb=tcp_find_established(s);
 465         if(skb!=NULL)
 466                 skb_unlink(skb);        /* Take it off the queue */
 467         restore_flags(flags);
 468         return skb;
 469 }
 470 
 471 /* 
 472  *      This routine closes sockets which have been at least partially
 473  *      opened, but not yet accepted. Currently it is only called by
 474  *      tcp_close, and timeout mirrors the value there. 
 475  */
 476 
 477 static void tcp_close_pending (struct sock *sk) 
     /* [previous][next][first][last][top][bottom][index][help] */
 478 {
 479         struct sk_buff *skb;
 480 
 481         while ((skb = skb_dequeue(&sk->receive_queue)) != NULL) 
 482         {
 483                 tcp_close(skb->sk, 0);
 484                 kfree_skb(skb, FREE_READ);
 485         }
 486         return;
 487 }
 488 
 489 /*
 490  *      Enter the time wait state. 
 491  */
 492 
 493 void tcp_time_wait(struct sock *sk)
     /* [previous][next][first][last][top][bottom][index][help] */
 494 {
 495         tcp_set_state(sk,TCP_TIME_WAIT);
 496         sk->shutdown = SHUTDOWN_MASK;
 497         if (!sk->dead)
 498                 sk->state_change(sk);
 499         tcp_reset_msl_timer(sk, TIME_CLOSE, TCP_TIMEWAIT_LEN);
 500 }
 501 
 502 
 503 /*
 504  * This routine is called by the ICMP module when it gets some
 505  * sort of error condition.  If err < 0 then the socket should
 506  * be closed and the error returned to the user.  If err > 0
 507  * it's just the icmp type << 8 | icmp code.  After adjustment
 508  * header points to the first 8 bytes of the tcp header.  We need
 509  * to find the appropriate port.
 510  */
 511 
 512 void tcp_err(int type, int code, unsigned char *header, __u32 daddr,
     /* [previous][next][first][last][top][bottom][index][help] */
 513         __u32 saddr, struct inet_protocol *protocol)
 514 {
 515         struct tcphdr *th = (struct tcphdr *)header;
 516         struct sock *sk;
 517         
 518         /*
 519          *      This one is _WRONG_. FIXME urgently.
 520          */
 521 #ifndef CONFIG_NO_PATH_MTU_DISCOVERY     
 522         struct iphdr *iph=(struct iphdr *)(header-sizeof(struct iphdr));
 523 #endif  
 524         th =(struct tcphdr *)header;
 525         sk = get_sock(&tcp_prot, th->source, daddr, th->dest, saddr);
 526 
 527         if (sk == NULL) 
 528                 return;
 529   
 530         if (type == ICMP_SOURCE_QUENCH) 
 531         {
 532                 /*
 533                  * FIXME:
 534                  * For now we will just trigger a linear backoff.
 535                  * The slow start code should cause a real backoff here.
 536                  */
 537                 if (sk->cong_window > 4)
 538                         sk->cong_window--;
 539                 return;
 540         }
 541         
 542         if (type == ICMP_PARAMETERPROB)
 543         {
 544                 sk->err=EPROTO;
 545                 sk->error_report(sk);
 546         }
 547 
 548 #ifndef CONFIG_NO_PATH_MTU_DISCOVERY
 549         if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
 550         {
 551                 struct rtable * rt;
 552                 /*
 553                  * Ugly trick to pass MTU to protocol layer.
 554                  * Really we should add argument "info" to error handler.
 555                  */
 556                 unsigned short new_mtu = ntohs(iph->id);
 557 
 558                 if ((rt = sk->ip_route_cache) != NULL)
 559                         if (rt->rt_mtu > new_mtu)
 560                                 rt->rt_mtu = new_mtu;
 561 
 562                 if (sk->mtu > new_mtu - sizeof(struct iphdr) - sizeof(struct tcphdr)
 563                         && new_mtu > sizeof(struct iphdr)+sizeof(struct tcphdr))
 564                         sk->mtu = new_mtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
 565 
 566                 return;
 567         }
 568 #endif
 569 
 570         /*
 571          * If we've already connected we will keep trying
 572          * until we time out, or the user gives up.
 573          */
 574 
 575         if (code < 13)
 576         {       
 577                 if(icmp_err_convert[code].fatal || sk->state == TCP_SYN_SENT || sk->state == TCP_SYN_RECV)
 578                 {
 579                         sk->err = icmp_err_convert[code].errno;
 580                         if (sk->state == TCP_SYN_SENT || sk->state == TCP_SYN_RECV) 
 581                         {
 582                                 tcp_statistics.TcpAttemptFails++;
 583                                 tcp_set_state(sk,TCP_CLOSE);
 584                                 sk->error_report(sk);           /* Wake people up to see the error (see connect in sock.c) */
 585                         }
 586                 }
 587                 else    /* Only an error on timeout */
 588                         sk->err_soft = icmp_err_convert[code].errno;
 589         }
 590 }
 591 
 592 
 593 /*
 594  *      Walk down the receive queue counting readable data until we hit the end or we find a gap
 595  *      in the received data queue (ie a frame missing that needs sending to us). Not
 596  *      sorting using two queues as data arrives makes life so much harder.
 597  */
 598 
 599 static int tcp_readable(struct sock *sk)
     /* [previous][next][first][last][top][bottom][index][help] */
 600 {
 601         unsigned long counted;
 602         unsigned long amount;
 603         struct sk_buff *skb;
 604         int sum;
 605         unsigned long flags;
 606 
 607         if(sk && sk->debug)
 608                 printk("tcp_readable: %p - ",sk);
 609 
 610         save_flags(flags);
 611         cli();
 612         if (sk == NULL || (skb = skb_peek(&sk->receive_queue)) == NULL)
 613         {
 614                 restore_flags(flags);
 615                 if(sk && sk->debug) 
 616                         printk("empty\n");
 617                 return(0);
 618         }
 619   
 620         counted = sk->copied_seq;       /* Where we are at the moment */
 621         amount = 0;
 622   
 623         /* 
 624          *      Do until a push or until we are out of data. 
 625          */
 626          
 627         do 
 628         {
 629                 if (before(counted, skb->seq))          /* Found a hole so stops here */
 630                         break;
 631                 sum = skb->len - (counted - skb->seq);  /* Length - header but start from where we are up to (avoid overlaps) */
 632                 if (skb->h.th->syn)
 633                         sum++;
 634                 if (sum > 0) 
 635                 {                                       /* Add it up, move on */
 636                         amount += sum;
 637                         if (skb->h.th->syn) 
 638                                 amount--;
 639                         counted += sum;
 640                 }
 641                 /*
 642                  * Don't count urg data ... but do it in the right place!
 643                  * Consider: "old_data (ptr is here) URG PUSH data"
 644                  * The old code would stop at the first push because
 645                  * it counted the urg (amount==1) and then does amount--
 646                  * *after* the loop.  This means tcp_readable() always
 647                  * returned zero if any URG PUSH was in the queue, even
 648                  * though there was normal data available. If we subtract
 649                  * the urg data right here, we even get it to work for more
 650                  * than one URG PUSH skb without normal data.
 651                  * This means that select() finally works now with urg data
 652                  * in the queue.  Note that rlogin was never affected
 653                  * because it doesn't use select(); it uses two processes
 654                  * and a blocking read().  And the queue scan in tcp_read()
 655                  * was correct.  Mike <pall@rz.uni-karlsruhe.de>
 656                  */
 657                 if (skb->h.th->urg)
 658                         amount--;       /* don't count urg data */
 659                 if (amount && skb->h.th->psh) break;
 660                 skb = skb->next;
 661         }
 662         while(skb != (struct sk_buff *)&sk->receive_queue);
 663 
 664         restore_flags(flags);
 665         if(sk->debug)
 666                 printk("got %lu bytes.\n",amount);
 667         return(amount);
 668 }
 669 
 670 /*
 671  * LISTEN is a special case for select..
 672  */
 673 static int tcp_listen_select(struct sock *sk, int sel_type, select_table *wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 674 {
 675         if (sel_type == SEL_IN) {
 676                 int retval;
 677 
 678                 lock_sock(sk);
 679                 retval = (tcp_find_established(sk) != NULL);
 680                 release_sock(sk);
 681                 if (!retval)
 682                         select_wait(&master_select_wakeup,wait);
 683                 return retval;
 684         }
 685         return 0;
 686 }
 687 
 688 
 689 /*
 690  *      Wait for a TCP event.
 691  *
 692  *      Note that we don't need to lock the socket, as the upper select layers
 693  *      take care of normal races (between the test and the event) and we don't
 694  *      go look at any of the socket buffers directly.
 695  */
 696 static int tcp_select(struct sock *sk, int sel_type, select_table *wait)
     /* [previous][next][first][last][top][bottom][index][help] */
 697 {
 698         if (sk->state == TCP_LISTEN)
 699                 return tcp_listen_select(sk, sel_type, wait);
 700 
 701         switch(sel_type) {
 702         case SEL_IN:
 703                 if (sk->err)
 704                         return 1;
 705                 if (sk->state == TCP_SYN_SENT || sk->state == TCP_SYN_RECV)
 706                         break;
 707 
 708                 if (sk->shutdown & RCV_SHUTDOWN)
 709                         return 1;
 710                         
 711                 if (sk->acked_seq == sk->copied_seq)
 712                         break;
 713 
 714                 if (sk->urg_seq != sk->copied_seq ||
 715                     sk->acked_seq != sk->copied_seq+1 ||
 716                     sk->urginline || !sk->urg_data)
 717                         return 1;
 718                 break;
 719 
 720         case SEL_OUT:
 721                 if (sk->err)
 722                         return 1;
 723                 if (sk->shutdown & SEND_SHUTDOWN) 
 724                         return 0;
 725                 if (sk->state == TCP_SYN_SENT || sk->state == TCP_SYN_RECV)
 726                         break;
 727                 /*
 728                  * This is now right thanks to a small fix
 729                  * by Matt Dillon.
 730                  */
 731 
 732                 if (sock_wspace(sk) < sk->mtu+128+sk->prot->max_header)
 733                         break;
 734                 return 1;
 735 
 736         case SEL_EX:
 737                 if (sk->urg_data)
 738                         return 1;
 739                 break;
 740         }
 741         select_wait(sk->sleep, wait);
 742         return 0;
 743 }
 744 
 745 int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg)
     /* [previous][next][first][last][top][bottom][index][help] */
 746 {
 747         int err;
 748         switch(cmd) 
 749         {
 750 
 751                 case TIOCINQ:
 752 #ifdef FIXME    /* FIXME: */
 753                 case FIONREAD:
 754 #endif
 755                 {
 756                         unsigned long amount;
 757 
 758                         if (sk->state == TCP_LISTEN) 
 759                                 return(-EINVAL);
 760 
 761                         lock_sock(sk);
 762                         amount = tcp_readable(sk);
 763                         release_sock(sk);
 764                         err=verify_area(VERIFY_WRITE,(void *)arg, sizeof(int));
 765                         if(err)
 766                                 return err;
 767                         put_user(amount, (int *)arg);
 768                         return(0);
 769                 }
 770                 case SIOCATMARK:
 771                 {
 772                         int answ = sk->urg_data && sk->urg_seq == sk->copied_seq;
 773 
 774                         err = verify_area(VERIFY_WRITE,(void *) arg, sizeof(int));
 775                         if (err)
 776                                 return err;
 777                         put_user(answ,(int *) arg);
 778                         return(0);
 779                 }
 780                 case TIOCOUTQ:
 781                 {
 782                         unsigned long amount;
 783 
 784                         if (sk->state == TCP_LISTEN) return(-EINVAL);
 785                         amount = sock_wspace(sk);
 786                         err=verify_area(VERIFY_WRITE,(void *)arg, sizeof(int));
 787                         if(err)
 788                                 return err;
 789                         put_user(amount, (int *)arg);
 790                         return(0);
 791                 }
 792                 default:
 793                         return(-EINVAL);
 794         }
 795 }
 796 
 797 
 798 /*
 799  *      This routine computes a TCP checksum. 
 800  *
 801  *      Modified January 1995 from a go-faster DOS routine by
 802  *      Jorge Cwik <jorge@laser.satlink.net>
 803  */
 804 #undef DEBUG_TCP_CHECK
 805 void tcp_send_check(struct tcphdr *th, unsigned long saddr, 
     /* [previous][next][first][last][top][bottom][index][help] */
 806                 unsigned long daddr, int len, struct sk_buff *skb)
 807 {
 808 #ifdef DEBUG_TCP_CHECK
 809         u16 check;
 810 #endif
 811         th->check = 0;
 812         th->check = tcp_check(th, len, saddr, daddr,
 813                 csum_partial((char *)th,sizeof(*th),skb->csum));
 814 
 815 #ifdef DEBUG_TCP_CHECK
 816         check = th->check;
 817         th->check = 0;
 818         th->check = tcp_check(th, len, saddr, daddr,
 819                 csum_partial((char *)th,len,0));
 820         if (check != th->check) {
 821                 static int count = 0;
 822                 if (++count < 10) {
 823                         printk("Checksum %x (%x) from %p\n", th->check, check,
 824                                 (&th)[-1]);
 825                         printk("TCP=<off:%d a:%d s:%d f:%d>\n", th->doff*4, th->ack, th->syn, th->fin);
 826                 }
 827         }
 828 #endif
 829 }
 830 
 831 
 832 /* 
 833  *      This routine builds a generic TCP header. 
 834  */
 835  
 836 extern __inline int tcp_build_header(struct tcphdr *th, struct sock *sk, int push)
     /* [previous][next][first][last][top][bottom][index][help] */
 837 {
 838 
 839         memcpy(th,(void *) &(sk->dummy_th), sizeof(*th));
 840         th->seq = htonl(sk->write_seq);
 841         th->psh =(push == 0) ? 1 : 0;
 842         sk->ack_backlog = 0;
 843         sk->bytes_rcv = 0;
 844         sk->ack_timed = 0;
 845         th->ack_seq = htonl(sk->acked_seq);
 846         sk->window = tcp_select_window(sk);
 847         th->window = htons(sk->window);
 848 
 849         return(sizeof(*th));
 850 }
 851 
 852 /*
 853  *      Wait for a socket to get into the connected state
 854  */
 855 static void wait_for_tcp_connect(struct sock * sk)
     /* [previous][next][first][last][top][bottom][index][help] */
 856 {
 857         release_sock(sk);
 858         cli();                  
 859         if (sk->state != TCP_ESTABLISHED && sk->state != TCP_CLOSE_WAIT && sk->err == 0) 
 860         {
 861                 interruptible_sleep_on(sk->sleep);      
 862         }
 863         sti();
 864         lock_sock(sk);
 865 }
 866 
 867 /*
 868  *      Wait for more memory for a socket
 869  */
 870 static void wait_for_tcp_memory(struct sock * sk)
     /* [previous][next][first][last][top][bottom][index][help] */
 871 {
 872         release_sock(sk);
 873         cli();
 874         if (sk->wmem_alloc*2 > sk->sndbuf &&
 875             (sk->state == TCP_ESTABLISHED||sk->state == TCP_CLOSE_WAIT)
 876                 && sk->err == 0) 
 877         {
 878                 sk->socket->flags &= ~SO_NOSPACE;
 879                 interruptible_sleep_on(sk->sleep);
 880         }
 881         sti();
 882         lock_sock(sk);
 883 }
 884 
 885 
 886 /*
 887  *      This routine copies from a user buffer into a socket,
 888  *      and starts the transmit system.
 889  */
 890 
 891 static int do_tcp_sendmsg(struct sock *sk, struct msghdr *msg,
     /* [previous][next][first][last][top][bottom][index][help] */
 892           int len, int nonblock, int flags)
 893 {
 894         int copied = 0;
 895         int copy;
 896         int tmp;
 897         int seglen;
 898         int iovct=0;
 899         struct sk_buff *skb;
 900         struct sk_buff *send_tmp;
 901         struct proto *prot;
 902         struct device *dev = NULL;
 903         unsigned char *from;
 904         
 905         /*
 906          *      Ok commence sending
 907          */
 908         
 909         while(iovct<msg->msg_iovlen)
 910         {
 911                 seglen=msg->msg_iov[iovct].iov_len;
 912                 from=msg->msg_iov[iovct++].iov_base;
 913                 prot = sk->prot;
 914                 while(seglen > 0) 
 915                 {
 916                         /*
 917                          * Stop on errors
 918                          */
 919                         if (sk->err) 
 920                         {
 921                                 if (copied) 
 922                                         return copied;
 923                                 return sock_error(sk);
 924                         }
 925 
 926                         /*
 927                          *      Make sure that we are established. 
 928                          */
 929                         if (sk->shutdown & SEND_SHUTDOWN) 
 930                         {
 931                                 if (copied)
 932                                         return copied;
 933                                 return -EPIPE;
 934                         }
 935 
 936                         /* 
 937                          *      Wait for a connection to finish.
 938                          */
 939                         while (sk->state != TCP_ESTABLISHED && sk->state != TCP_CLOSE_WAIT) 
 940                         {
 941                                 if (copied)
 942                                         return copied;
 943 
 944                                 if (sk->err) 
 945                                         return sock_error(sk);
 946         
 947                                 if (sk->state != TCP_SYN_SENT && sk->state != TCP_SYN_RECV)
 948                                 {
 949                                         if (sk->keepopen)
 950                                                 send_sig(SIGPIPE, current, 0);
 951                                         return -EPIPE;
 952                                 }
 953         
 954                                 if (nonblock)
 955                                         return -EAGAIN;
 956 
 957                                 if (current->signal & ~current->blocked)
 958                                         return -ERESTARTSYS;
 959         
 960                                 wait_for_tcp_connect(sk);
 961                         }
 962         
 963                 /*
 964                  * The following code can result in copy <= if sk->mss is ever
 965                  * decreased.  It shouldn't be.  sk->mss is min(sk->mtu, sk->max_window).
 966                  * sk->mtu is constant once SYN processing is finished.  I.e. we
 967                  * had better not get here until we've seen his SYN and at least one
 968                  * valid ack.  (The SYN sets sk->mtu and the ack sets sk->max_window.)
 969                  * But ESTABLISHED should guarantee that.  sk->max_window is by definition
 970                  * non-decreasing.  Note that any ioctl to set user_mss must be done
 971                  * before the exchange of SYN's.  If the initial ack from the other
 972                  * end has a window of 0, max_window and thus mss will both be 0.
 973                  */
 974         
 975                 /* 
 976                  *      Now we need to check if we have a half built packet. 
 977                  */
 978 #ifndef CONFIG_NO_PATH_MTU_DISCOVERY
 979                 /*
 980                  *      FIXME:  I'm almost sure that this fragment is BUG,
 981                  *              but it works... I do not know why 8) --ANK
 982                  *
 983                  *      Really, we should rebuild all the queues...
 984                  *      It's difficult. Temprorary hack is to send all
 985                  *      queued segments with allowed fragmentation.
 986                  */
 987                 {
 988                         int new_mss = min(sk->mtu, sk->max_window);
 989                         if (new_mss < sk->mss)
 990                         {
 991                                 tcp_send_partial(sk);
 992                                 sk->mss = new_mss;
 993                         }
 994                 }
 995 #endif
 996         
 997                         if ((skb = tcp_dequeue_partial(sk)) != NULL) 
 998                         {
 999                                 int tcp_size;
1000 
1001                                 tcp_size = skb->tail - (unsigned char *)(skb->h.th + 1);
1002         
1003                                 /* Add more stuff to the end of skb->len */
1004                                 if (!(flags & MSG_OOB)) 
1005                                 {
1006                                         copy = min(sk->mss - tcp_size, seglen);
1007                                         if (copy <= 0) 
1008                                         {
1009                                                 printk("TCP: **bug**: \"copy\" <= 0\n");
1010                                                 return -EFAULT;
1011                                         }
1012                                         tcp_size += copy;
1013                                         memcpy_fromfs(skb_put(skb,copy), from, copy);
1014                                         skb->csum = csum_partial(skb->tail - tcp_size, tcp_size, 0);
1015                                         from += copy;
1016                                         copied += copy;
1017                                         len -= copy;
1018                                         sk->write_seq += copy;
1019                                         seglen -= copy;
1020                                 }
1021                                 if (tcp_size >= sk->mss || (flags & MSG_OOB) || !sk->packets_out)
1022                                         tcp_send_skb(sk, skb);
1023                                 else
1024                                         tcp_enqueue_partial(skb, sk);
1025                                 continue;
1026                         }
1027 
1028                 /*
1029                  * We also need to worry about the window.
1030                  * If window < 1/2 the maximum window we've seen from this
1031                  *   host, don't use it.  This is sender side
1032                  *   silly window prevention, as specified in RFC1122.
1033                  *   (Note that this is different than earlier versions of
1034                  *   SWS prevention, e.g. RFC813.).  What we actually do is 
1035                  *   use the whole MSS.  Since the results in the right
1036                  *   edge of the packet being outside the window, it will
1037                  *   be queued for later rather than sent.
1038                  */
1039 
1040                         copy = sk->window_seq - sk->write_seq;
1041                         if (copy <= 0 || copy < (sk->max_window >> 1) || copy > sk->mss)
1042                                 copy = sk->mss;
1043                         if (copy > seglen)
1044                                 copy = seglen;
1045                         if (copy <= 0) 
1046                         {
1047                                 printk("TCP: **bug**: copy=%d, sk->mss=%d\n", copy, sk->mss);
1048                                 return -EFAULT;
1049                         }
1050 
1051                 /*
1052                  *      We should really check the window here also. 
1053                  */
1054                  
1055                         send_tmp = NULL;
1056                         if (copy < sk->mss && !(flags & MSG_OOB) && sk->packets_out) 
1057                         {
1058                                 skb = sock_wmalloc(sk, sk->mtu + 128 + prot->max_header + 15, 0, GFP_KERNEL);
1059                                 send_tmp = skb;
1060                         } 
1061                         else 
1062                         {
1063                                 skb = sock_wmalloc(sk, copy + prot->max_header + 15 , 0, GFP_KERNEL);
1064                         }
1065         
1066                         /*
1067                          *      If we didn't get any memory, we need to sleep. 
1068                          */
1069         
1070                         if (skb == NULL) 
1071                         {
1072                                 sk->socket->flags |= SO_NOSPACE;
1073                                 if (nonblock) 
1074                                 {
1075                                         if (copied) 
1076                                                 return copied;
1077                                         return -EAGAIN;
1078                                 }
1079 
1080                                 if (current->signal & ~current->blocked)
1081                                 {
1082                                         if (copied)
1083                                                 return copied;
1084                                         return -ERESTARTSYS;
1085                                 }
1086 
1087                                 wait_for_tcp_memory(sk);
1088                                 continue;
1089                         }
1090 
1091                         skb->sk = sk;
1092                         skb->free = 0;
1093                         skb->localroute = sk->localroute|(flags&MSG_DONTROUTE);
1094         
1095                         /*
1096                          * FIXME: we need to optimize this.
1097                          * Perhaps some hints here would be good.
1098                          */
1099                 
1100                         tmp = prot->build_header(skb, sk->saddr, sk->daddr, &dev,
1101                                  IPPROTO_TCP, sk->opt, skb->truesize,sk->ip_tos,sk->ip_ttl,&sk->ip_route_cache);
1102                         if (tmp < 0 ) 
1103                         {
1104                                 sock_wfree(sk, skb);
1105                                 if (copied) 
1106                                         return(copied);
1107                                 return(tmp);
1108                         }
1109 #ifndef CONFIG_NO_PATH_MTU_DISCOVERY
1110                         skb->ip_hdr->frag_off |= htons(IP_DF);
1111 #endif
1112                         skb->dev = dev;
1113                         skb->h.th =(struct tcphdr *)skb_put(skb,sizeof(struct tcphdr));
1114                         tmp = tcp_build_header(skb->h.th, sk, seglen-copy);
1115                         if (tmp < 0) 
1116                         {
1117                                 sock_wfree(sk, skb);
1118                                 if (copied) 
1119                                         return(copied);
1120                                 return(tmp);
1121                         }
1122         
1123                         if (flags & MSG_OOB) 
1124                         {
1125                                 skb->h.th->urg = 1;
1126                                 skb->h.th->urg_ptr = ntohs(copy);
1127                         }
1128 
1129                         skb->csum = csum_partial_copy_fromuser(from,
1130                                 skb_put(skb,copy), copy, 0);
1131                 
1132                         from += copy;
1133                         copied += copy;
1134                         len -= copy;
1135                         seglen -= copy;
1136                         skb->free = 0;
1137                         sk->write_seq += copy;
1138                 
1139                         if (send_tmp != NULL) 
1140                         {
1141                                 tcp_enqueue_partial(send_tmp, sk);
1142                                 continue;
1143                         }
1144                         tcp_send_skb(sk, skb);
1145                 }
1146         }
1147         sk->err = 0;
1148 
1149         return copied;
1150 }
1151 
1152 
1153 static int tcp_sendmsg(struct sock *sk, struct msghdr *msg,
     /* [previous][next][first][last][top][bottom][index][help] */
1154           int len, int nonblock, int flags)
1155 {
1156         int retval = -EINVAL;
1157 
1158         /*
1159          *      Do sanity checking for sendmsg/sendto/send
1160          */
1161          
1162         if (flags & ~(MSG_OOB|MSG_DONTROUTE))
1163                 goto out;
1164         if (msg->msg_name) {
1165                 struct sockaddr_in *addr=(struct sockaddr_in *)msg->msg_name;
1166 
1167                 if (msg->msg_namelen < sizeof(*addr))
1168                         goto out;
1169                 if (addr->sin_family && addr->sin_family != AF_INET) 
1170                         goto out;
1171                 retval = -ENOTCONN;
1172                 if(sk->state == TCP_CLOSE)
1173                         goto out;
1174                 retval = -EISCONN;
1175                 if (addr->sin_port != sk->dummy_th.dest) 
1176                         goto out;
1177                 if (addr->sin_addr.s_addr != sk->daddr) 
1178                         goto out;
1179         }
1180 
1181         lock_sock(sk);
1182         retval = do_tcp_sendmsg(sk, msg, len, nonblock, flags);
1183 
1184 /*
1185  *      Nagle's rule. Turn Nagle off with TCP_NODELAY for highly
1186  *      interactive fast network servers. It's meant to be on and
1187  *      it really improves the throughput though not the echo time
1188  *      on my slow slip link - Alan
1189  *
1190  *      If not nagling we can send on the before case too..
1191  */
1192 
1193         if (sk->partial) {
1194                 if (!sk->packets_out ||
1195                     (sk->nonagle && before(sk->write_seq , sk->window_seq))) {
1196                         tcp_send_partial(sk);
1197                 }
1198         }
1199 
1200         release_sock(sk);
1201 
1202 out:
1203         return retval;
1204 }
1205         
1206 
1207 /*
1208  *      Send an ack if one is backlogged at this point. 
1209  *
1210  *      This is called for delayed acks also.
1211  */
1212  
1213 void tcp_read_wakeup(struct sock *sk)
     /* [previous][next][first][last][top][bottom][index][help] */
1214 {
1215         if (!sk->ack_backlog) 
1216                 return;
1217 
1218         /*
1219          * If we're closed, don't send an ack, or we'll get a RST
1220          * from the closed destination.
1221          */
1222         if ((sk->state == TCP_CLOSE) || (sk->state == TCP_TIME_WAIT))
1223                 return; 
1224 
1225         tcp_send_ack(sk);
1226 }
1227 
1228 
1229 /*
1230  *      Handle reading urgent data. BSD has very simple semantics for
1231  *      this, no blocking and very strange errors 8)
1232  */
1233  
1234 static int tcp_recv_urg(struct sock * sk, int nonblock,
     /* [previous][next][first][last][top][bottom][index][help] */
1235              struct msghdr *msg, int len, int flags, int *addr_len)
1236 {
1237         /*
1238          *      No URG data to read
1239          */
1240         if (sk->urginline || !sk->urg_data || sk->urg_data == URG_READ)
1241                 return -EINVAL; /* Yes this is right ! */
1242                 
1243         if (sk->err) 
1244                 return sock_error(sk);
1245                 
1246         if (sk->state == TCP_CLOSE || sk->done) 
1247         {
1248                 if (!sk->done) 
1249                 {
1250                         sk->done = 1;
1251                         return 0;
1252                 }
1253                 return -ENOTCONN;
1254         }
1255 
1256         if (sk->shutdown & RCV_SHUTDOWN) 
1257         {
1258                 sk->done = 1;
1259                 return 0;
1260         }
1261         lock_sock(sk);
1262         if (sk->urg_data & URG_VALID) 
1263         {
1264                 char c = sk->urg_data;
1265                 if (!(flags & MSG_PEEK))
1266                         sk->urg_data = URG_READ;
1267                 memcpy_toiovec(msg->msg_iov, &c, 1);
1268                 if(msg->msg_name)
1269                 {
1270                         struct sockaddr_in *sin=(struct sockaddr_in *)msg->msg_name;
1271                         sin->sin_family=AF_INET;
1272                         sin->sin_addr.s_addr=sk->daddr;
1273                         sin->sin_port=sk->dummy_th.dest;
1274                 }
1275                 if(addr_len)
1276                         *addr_len=sizeof(struct sockaddr_in);
1277                 release_sock(sk);
1278                 return 1;
1279         }
1280         release_sock(sk);
1281         
1282         /*
1283          * Fixed the recv(..., MSG_OOB) behaviour.  BSD docs and
1284          * the available implementations agree in this case:
1285          * this call should never block, independent of the
1286          * blocking state of the socket.
1287          * Mike <pall@rz.uni-karlsruhe.de>
1288          */
1289         return -EAGAIN;
1290 }
1291 
1292 /*
1293  *      Release a skb if it is no longer needed. This routine
1294  *      must be called with interrupts disabled or with the
1295  *      socket locked so that the sk_buff queue operation is ok.
1296  */
1297  
1298 static inline void tcp_eat_skb(struct sock *sk, struct sk_buff * skb)
     /* [previous][next][first][last][top][bottom][index][help] */
1299 {
1300         skb->sk = sk;
1301         __skb_unlink(skb, &sk->receive_queue);
1302         kfree_skb(skb, FREE_READ);
1303 }
1304 
1305 /*
1306  *      FIXME:
1307  *      This routine frees used buffers.
1308  *      It should consider sending an ACK to let the
1309  *      other end know we now have a bigger window.
1310  */
1311 
1312 static void cleanup_rbuf(struct sock *sk)
     /* [previous][next][first][last][top][bottom][index][help] */
1313 {
1314         struct sk_buff *skb;
1315 
1316         /*
1317          * NOTE! The socket must be locked, so that we don't get
1318          * a messed-up receive queue.
1319          */
1320         while ((skb=skb_peek(&sk->receive_queue)) != NULL) {
1321                 if (!skb->used || skb->users)
1322                         break;
1323                 tcp_eat_skb(sk, skb);
1324         }
1325 
1326         /* If we raised the window due to cleaning up, tell the world.. */
1327         if (tcp_raise_window(sk)) {
1328                 sk->ack_backlog++;
1329                 tcp_read_wakeup(sk);
1330         }
1331 } 
1332 
1333 
1334 /*
1335  *      This routine copies from a sock struct into the user buffer. 
1336  */
1337  
1338 static int tcp_recvmsg(struct sock *sk, struct msghdr *msg,
     /* [previous][next][first][last][top][bottom][index][help] */
1339         int len, int nonblock, int flags, int *addr_len)
1340 {
1341         struct wait_queue wait = { current, NULL };
1342         int copied = 0;
1343         u32 peek_seq;
1344         volatile u32 *seq;      /* So gcc doesn't overoptimise */
1345         unsigned long used;
1346 
1347         /* 
1348          *      This error should be checked. 
1349          */
1350          
1351         if (sk->state == TCP_LISTEN)
1352                 return -ENOTCONN;
1353 
1354         /*
1355          *      Urgent data needs to be handled specially. 
1356          */
1357          
1358         if (flags & MSG_OOB)
1359                 return tcp_recv_urg(sk, nonblock, msg, len, flags, addr_len);
1360 
1361         /*
1362          *      Copying sequence to update. This is volatile to handle
1363          *      the multi-reader case neatly (memcpy_to/fromfs might be 
1364          *      inline and thus not flush cached variables otherwise).
1365          */
1366          
1367         peek_seq = sk->copied_seq;
1368         seq = &sk->copied_seq;
1369         if (flags & MSG_PEEK)
1370                 seq = &peek_seq;
1371 
1372         add_wait_queue(sk->sleep, &wait);
1373         lock_sock(sk);
1374         while (len > 0) 
1375         {
1376                 struct sk_buff * skb;
1377                 u32 offset;
1378         
1379                 /*
1380                  * Are we at urgent data? Stop if we have read anything.
1381                  */
1382                  
1383                 if (copied && sk->urg_data && sk->urg_seq == *seq)
1384                         break;
1385 
1386                 /*
1387                  * We need to check signals first, to get correct SIGURG
1388                  * handling.
1389                  */
1390                 if (current->signal & ~current->blocked) {
1391                         if (copied)
1392                                 break;
1393                         copied = -ERESTARTSYS;
1394                         break;
1395                 }
1396 
1397                 /*
1398                  *      Next get a buffer.
1399                  */
1400                  
1401                 current->state = TASK_INTERRUPTIBLE;
1402 
1403                 skb = skb_peek(&sk->receive_queue);
1404                 do 
1405                 {
1406                         if (!skb)
1407                                 break;
1408                         if (before(*seq, skb->seq))
1409                                 break;
1410                         offset = *seq - skb->seq;
1411                         if (skb->h.th->syn)
1412                                 offset--;
1413                         if (offset < skb->len)
1414                                 goto found_ok_skb;
1415                         if (skb->h.th->fin)
1416                                 goto found_fin_ok;
1417                         if (!(flags & MSG_PEEK))
1418                                 skb->used = 1;
1419                         skb = skb->next;
1420                 }
1421                 while (skb != (struct sk_buff *)&sk->receive_queue);
1422 
1423                 if (copied)
1424                         break;
1425 
1426                 if (sk->err) 
1427                 {
1428                         copied = sock_error(sk);
1429                         break;
1430                 }
1431 
1432                 if (sk->state == TCP_CLOSE) 
1433                 {
1434                         if (!sk->done) 
1435                         {
1436                                 sk->done = 1;
1437                                 break;
1438                         }
1439                         copied = -ENOTCONN;
1440                         break;
1441                 }
1442 
1443                 if (sk->shutdown & RCV_SHUTDOWN) 
1444                 {
1445                         sk->done = 1;
1446                         break;
1447                 }
1448                         
1449                 if (nonblock) 
1450                 {
1451                         copied = -EAGAIN;
1452                         break;
1453                 }
1454 
1455                 cleanup_rbuf(sk);
1456                 release_sock(sk);
1457                 sk->socket->flags |= SO_WAITDATA;
1458                 schedule();
1459                 sk->socket->flags &= ~SO_WAITDATA;
1460                 lock_sock(sk);
1461                 continue;
1462 
1463         found_ok_skb:
1464                 /*
1465                  *      Lock the buffer. We can be fairly relaxed as
1466                  *      an interrupt will never steal a buffer we are 
1467                  *      using unless I've missed something serious in
1468                  *      tcp_data.
1469                  */
1470                 
1471                 skb->users++;
1472                 
1473                 /*
1474                  *      Ok so how much can we use ? 
1475                  */
1476                  
1477                 used = skb->len - offset;
1478                 if (len < used)
1479                         used = len;
1480                 /*
1481                  *      Do we have urgent data here? 
1482                  */
1483                 
1484                 if (sk->urg_data) 
1485                 {
1486                         u32 urg_offset = sk->urg_seq - *seq;
1487                         if (urg_offset < used) 
1488                         {
1489                                 if (!urg_offset) 
1490                                 {
1491                                         if (!sk->urginline) 
1492                                         {
1493                                                 ++*seq;
1494                                                 offset++;
1495                                                 used--;
1496                                         }
1497                                 }
1498                                 else
1499                                         used = urg_offset;
1500                         }
1501                 }
1502                 
1503                 /*
1504                  *      Copy it - We _MUST_ update *seq first so that we
1505                  *      don't ever double read when we have dual readers
1506                  */
1507                  
1508                 *seq += used;
1509 
1510                 /*
1511                  *      This memcpy_tofs can sleep. If it sleeps and we
1512                  *      do a second read it relies on the skb->users to avoid
1513                  *      a crash when cleanup_rbuf() gets called.
1514                  */
1515                  
1516                 memcpy_toiovec(msg->msg_iov,((unsigned char *)skb->h.th) +
1517                         skb->h.th->doff*4 + offset, used);
1518                 copied += used;
1519                 len -= used;
1520                 
1521                 /*
1522                  *      We now will not sleep again until we are finished
1523                  *      with skb. Sorry if you are doing the SMP port
1524                  *      but you'll just have to fix it neatly ;)
1525                  */
1526                  
1527                 skb->users --;
1528                 
1529                 if (after(sk->copied_seq,sk->urg_seq))
1530                         sk->urg_data = 0;
1531                 if (used + offset < skb->len)
1532                         continue;
1533                 
1534                 /*
1535                  *      Process the FIN.
1536                  */
1537 
1538                 if (skb->h.th->fin)
1539                         goto found_fin_ok;
1540                 if (flags & MSG_PEEK)
1541                         continue;
1542                 skb->used = 1;
1543                 if (!skb->users)
1544                         tcp_eat_skb(sk, skb);           
1545                 continue;
1546 
1547         found_fin_ok:
1548                 ++*seq;
1549                 if (flags & MSG_PEEK)
1550                         break;
1551                         
1552                 /*
1553                  *      All is done
1554                  */
1555                  
1556                 skb->used = 1;
1557                 sk->shutdown |= RCV_SHUTDOWN;
1558                 break;
1559 
1560         }
1561         
1562         if(copied>0 && msg->msg_name)
1563         {
1564                 struct sockaddr_in *sin=(struct sockaddr_in *)msg->msg_name;
1565                 sin->sin_family=AF_INET;
1566                 sin->sin_addr.s_addr=sk->daddr;
1567                 sin->sin_port=sk->dummy_th.dest;
1568         }
1569         if(addr_len)
1570                 *addr_len=sizeof(struct sockaddr_in);
1571                 
1572         remove_wait_queue(sk->sleep, &wait);
1573         current->state = TASK_RUNNING;
1574 
1575         /* Clean up data we have read: This will do ACK frames */
1576         cleanup_rbuf(sk);
1577         release_sock(sk);
1578         return copied;
1579 }
1580 
1581 
1582 
1583 /*
1584  *      State processing on a close. This implements the state shift for
1585  *      sending our FIN frame. Note that we only send a FIN for some 
1586  *      states. A shutdown() may have already sent the FIN, or we may be
1587  *      closed.
1588  */
1589  
1590 static int tcp_close_state(struct sock *sk, int dead)
     /* [previous][next][first][last][top][bottom][index][help] */
1591 {
1592         int ns=TCP_CLOSE;
1593         int send_fin=0;
1594         switch(sk->state)
1595         {
1596                 case TCP_SYN_SENT:      /* No SYN back, no FIN needed */
1597                         break;
1598                 case TCP_SYN_RECV:
1599                 case TCP_ESTABLISHED:   /* Closedown begin */
1600                         ns=TCP_FIN_WAIT1;
1601                         send_fin=1;
1602                         break;
1603                 case TCP_FIN_WAIT1:     /* Already closing, or FIN sent: no change */
1604                 case TCP_FIN_WAIT2:
1605                 case TCP_CLOSING:
1606                         ns=sk->state;
1607                         break;
1608                 case TCP_CLOSE:
1609                 case TCP_LISTEN:
1610                         break;
1611                 case TCP_CLOSE_WAIT:    /* They have FIN'd us. We send our FIN and
1612                                            wait only for the ACK */
1613                         ns=TCP_LAST_ACK;
1614                         send_fin=1;
1615         }
1616         
1617         tcp_set_state(sk,ns);
1618                 
1619         /*
1620          *      This is a (useful) BSD violating of the RFC. There is a
1621          *      problem with TCP as specified in that the other end could
1622          *      keep a socket open forever with no application left this end.
1623          *      We use a 3 minute timeout (about the same as BSD) then kill
1624          *      our end. If they send after that then tough - BUT: long enough
1625          *      that we won't make the old 4*rto = almost no time - whoops
1626          *      reset mistake.
1627          */
1628         if(dead && ns==TCP_FIN_WAIT2)
1629         {
1630                 int timer_active=del_timer(&sk->timer);
1631                 if(timer_active)
1632                         add_timer(&sk->timer);
1633                 else
1634                         tcp_reset_msl_timer(sk, TIME_CLOSE, TCP_FIN_TIMEOUT);
1635         }
1636         
1637         return send_fin;
1638 }
1639 
1640 /*
1641  *      Shutdown the sending side of a connection. Much like close except
1642  *      that we don't receive shut down or set sk->dead.
1643  */
1644 
1645 void tcp_shutdown(struct sock *sk, int how)
     /* [previous][next][first][last][top][bottom][index][help] */
1646 {
1647         /*
1648          *      We need to grab some memory, and put together a FIN,
1649          *      and then put it into the queue to be sent.
1650          *              Tim MacKenzie(tym@dibbler.cs.monash.edu.au) 4 Dec '92.
1651          */
1652 
1653         if (!(how & SEND_SHUTDOWN)) 
1654                 return;
1655          
1656         /*
1657          *      If we've already sent a FIN, or it's a closed state
1658          */
1659          
1660         if (sk->state == TCP_FIN_WAIT1 ||
1661             sk->state == TCP_FIN_WAIT2 ||
1662             sk->state == TCP_CLOSING ||
1663             sk->state == TCP_LAST_ACK ||
1664             sk->state == TCP_TIME_WAIT || 
1665             sk->state == TCP_CLOSE ||
1666             sk->state == TCP_LISTEN
1667           )
1668         {
1669                 return;
1670         }
1671         lock_sock(sk);
1672 
1673         /*
1674          * flag that the sender has shutdown
1675          */
1676 
1677         sk->shutdown |= SEND_SHUTDOWN;
1678 
1679         /*
1680          *  Clear out any half completed packets. 
1681          */
1682 
1683         if (sk->partial)
1684                 tcp_send_partial(sk);
1685                 
1686         /*
1687          *      FIN if needed
1688          */
1689          
1690         if (tcp_close_state(sk,0))
1691                 tcp_send_fin(sk);
1692                 
1693         release_sock(sk);
1694 }
1695 
1696 
1697 /*
1698  *      Return 1 if we still have things to send in our buffers.
1699  */
1700  
1701 static inline int closing(struct sock * sk)
     /* [previous][next][first][last][top][bottom][index][help] */
1702 {
1703         switch (sk->state) {
1704                 case TCP_FIN_WAIT1:
1705                 case TCP_CLOSING:
1706                 case TCP_LAST_ACK:
1707                         return 1;
1708         }
1709         return 0;
1710 }
1711 
1712 
1713 static void tcp_close(struct sock *sk, unsigned long timeout)
     /* [previous][next][first][last][top][bottom][index][help] */
1714 {
1715         struct sk_buff *skb;
1716 
1717         /*
1718          * We need to grab some memory, and put together a FIN, 
1719          * and then put it into the queue to be sent.
1720          */
1721         
1722         lock_sock(sk);
1723         
1724         tcp_cache_zap();
1725         if(sk->state == TCP_LISTEN)
1726         {
1727                 /* Special case */
1728                 tcp_set_state(sk, TCP_CLOSE);
1729                 tcp_close_pending(sk);
1730                 release_sock(sk);
1731                 sk->dead = 1;
1732                 return;
1733         }
1734         
1735         sk->keepopen = 1;
1736         sk->shutdown = SHUTDOWN_MASK;
1737 
1738         if (!sk->dead) 
1739                 sk->state_change(sk);
1740 
1741         /*
1742          *  We need to flush the recv. buffs.  We do this only on the
1743          *  descriptor close, not protocol-sourced closes, because the
1744          *  reader process may not have drained the data yet!
1745          */
1746                  
1747         while((skb=skb_dequeue(&sk->receive_queue))!=NULL)
1748                 kfree_skb(skb, FREE_READ);
1749 
1750         /*
1751          *      Get rid off any half-completed packets. 
1752          */
1753 
1754         if (sk->partial) 
1755                 tcp_send_partial(sk);
1756                 
1757         /*
1758          *      Timeout is not the same thing - however the code likes
1759          *      to send both the same way (sigh).
1760          */
1761          
1762         if (tcp_close_state(sk,1)==1)
1763         {
1764                 tcp_send_fin(sk);
1765         }
1766 
1767         if (timeout) {
1768                 cli();
1769                 release_sock(sk);
1770                 current->timeout = timeout;
1771                 while(closing(sk) && current->timeout)
1772                 {
1773                         interruptible_sleep_on(sk->sleep);
1774                         if (current->signal & ~current->blocked) 
1775                         {
1776                                 break;
1777                         }
1778                 }
1779                 current->timeout=0;
1780                 lock_sock(sk);
1781                 sti();
1782         }
1783 
1784         /*
1785          * This will destroy it. The timers will take care of actually
1786          * free'ing up the memory.
1787          */
1788         tcp_cache_zap();        /* Kill the cache again. */
1789         release_sock(sk);
1790         sk->dead = 1;
1791 }
1792 
1793 
1794 /*
1795  *      This will accept the next outstanding connection. 
1796  */
1797  
1798 static struct sock *tcp_accept(struct sock *sk, int flags)
     /* [previous][next][first][last][top][bottom][index][help] */
1799 {
1800         struct sock *newsk;
1801         struct sk_buff *skb;
1802   
1803   /*
1804    * We need to make sure that this socket is listening,
1805    * and that it has something pending.
1806    */
1807 
1808         if (sk->state != TCP_LISTEN) 
1809         {
1810                 sk->err = EINVAL;
1811                 return(NULL); 
1812         }
1813 
1814         /* Avoid the race. */
1815         cli();
1816         lock_sock(sk);
1817 
1818         while((skb = tcp_dequeue_established(sk)) == NULL) 
1819         {
1820                 if (flags & O_NONBLOCK) 
1821                 {
1822                         sti();
1823                         release_sock(sk);
1824                         sk->err = EAGAIN;
1825                         return(NULL);
1826                 }
1827 
1828                 release_sock(sk);
1829                 interruptible_sleep_on(sk->sleep);
1830                 if (current->signal & ~current->blocked) 
1831                 {
1832                         sti();
1833                         sk->err = ERESTARTSYS;
1834                         return(NULL);
1835                 }
1836                 lock_sock(sk);
1837         }
1838         sti();
1839 
1840         /*
1841          *      Now all we need to do is return skb->sk. 
1842          */
1843 
1844         newsk = skb->sk;
1845 
1846         kfree_skb(skb, FREE_READ);
1847         sk->ack_backlog--;
1848         release_sock(sk);
1849         return(newsk);
1850 }
1851 
1852 /*
1853  *      This will initiate an outgoing connection. 
1854  */
1855  
1856 static int tcp_connect(struct sock *sk, struct sockaddr_in *usin, int addr_len)
     /* [previous][next][first][last][top][bottom][index][help] */
1857 {
1858         struct sk_buff *buff;
1859         struct device *dev=NULL;
1860         unsigned char *ptr;
1861         int tmp;
1862         int atype;
1863         struct tcphdr *t1;
1864         struct rtable *rt;
1865 
1866         if (sk->state != TCP_CLOSE) 
1867                 return(-EISCONN);
1868 
1869         /*
1870          *      Don't allow a double connect.
1871          */
1872                 
1873         if(sk->daddr)
1874                 return -EINVAL;
1875         
1876         if (addr_len < 8) 
1877                 return(-EINVAL);
1878 
1879         if (usin->sin_family && usin->sin_family != AF_INET) 
1880                 return(-EAFNOSUPPORT);
1881 
1882         /*
1883          *      connect() to INADDR_ANY means loopback (BSD'ism).
1884          */
1885         
1886         if(usin->sin_addr.s_addr==INADDR_ANY)
1887                 usin->sin_addr.s_addr=ip_my_addr();
1888                   
1889         /*
1890          *      Don't want a TCP connection going to a broadcast address 
1891          */
1892 
1893         if ((atype=ip_chk_addr(usin->sin_addr.s_addr)) == IS_BROADCAST || atype==IS_MULTICAST) 
1894                 return -ENETUNREACH;
1895   
1896         lock_sock(sk);
1897         sk->daddr = usin->sin_addr.s_addr;
1898         sk->write_seq = tcp_init_seq();
1899         sk->window_seq = sk->write_seq;
1900         sk->rcv_ack_seq = sk->write_seq -1;
1901         sk->err = 0;
1902         sk->dummy_th.dest = usin->sin_port;
1903         release_sock(sk);
1904 
1905         buff = sock_wmalloc(sk,MAX_SYN_SIZE,0, GFP_KERNEL);
1906         if (buff == NULL) 
1907         {
1908                 return(-ENOMEM);
1909         }
1910         lock_sock(sk);
1911         buff->sk = sk;
1912         buff->free = 0;
1913         buff->localroute = sk->localroute;
1914         
1915 
1916         /*
1917          *      Put in the IP header and routing stuff.
1918          */
1919          
1920         tmp = sk->prot->build_header(buff, sk->saddr, sk->daddr, &dev,
1921                 IPPROTO_TCP, NULL, MAX_SYN_SIZE,sk->ip_tos,sk->ip_ttl,&sk->ip_route_cache);
1922         if (tmp < 0) 
1923         {
1924                 sock_wfree(sk, buff);
1925                 release_sock(sk);
1926                 return(-ENETUNREACH);
1927         }
1928         if ((rt = sk->ip_route_cache) != NULL && !sk->saddr)
1929                 sk->saddr = rt->rt_src;
1930         sk->rcv_saddr = sk->saddr;
1931 
1932         t1 = (struct tcphdr *) skb_put(buff,sizeof(struct tcphdr));
1933 
1934         memcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
1935         buff->seq = sk->write_seq++;
1936         t1->seq = htonl(buff->seq);
1937         sk->sent_seq = sk->write_seq;
1938         buff->end_seq = sk->write_seq;
1939         t1->ack = 0;
1940         t1->window = 2;
1941         t1->syn = 1;
1942         t1->doff = 6;
1943         /* use 512 or whatever user asked for */
1944         
1945         if(rt!=NULL && (rt->rt_flags&RTF_WINDOW))
1946                 sk->window_clamp=rt->rt_window;
1947         else
1948                 sk->window_clamp=0;
1949 
1950         if (sk->user_mss)
1951                 sk->mtu = sk->user_mss;
1952         else if (rt)
1953                 sk->mtu = rt->rt_mtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
1954         else 
1955                 sk->mtu = 576 - sizeof(struct iphdr) - sizeof(struct tcphdr);
1956 
1957         /*
1958          *      but not bigger than device MTU 
1959          */
1960 
1961         if(sk->mtu <32)
1962                 sk->mtu = 32;   /* Sanity limit */
1963                 
1964         sk->mtu = min(sk->mtu, dev->mtu - sizeof(struct iphdr) - sizeof(struct tcphdr));
1965 
1966 #ifdef CONFIG_SKIP
1967         
1968         /*
1969          *      SKIP devices set their MTU to 65535. This is so they can take packets
1970          *      unfragmented to security process then fragment. They could lie to the
1971          *      TCP layer about a suitable MTU, but its easier to let skip sort it out
1972          *      simply because the final package we want unfragmented is going to be
1973          *
1974          *      [IPHDR][IPSP][Security data][Modified TCP data][Security data]
1975          */
1976          
1977         if(skip_pick_mtu!=NULL)         /* If SKIP is loaded.. */
1978                 sk->mtu=skip_pick_mtu(sk->mtu,dev);
1979 #endif
1980         
1981         /*
1982          *      Put in the TCP options to say MTU. 
1983          */
1984 
1985         ptr = skb_put(buff,4);
1986         ptr[0] = 2;
1987         ptr[1] = 4;
1988         ptr[2] = (sk->mtu) >> 8;
1989         ptr[3] = (sk->mtu) & 0xff;
1990         buff->csum = csum_partial(ptr, 4, 0);
1991         tcp_send_check(t1, sk->saddr, sk->daddr,
1992                   sizeof(struct tcphdr) + 4, buff);
1993 
1994         /*
1995          *      This must go first otherwise a really quick response will get reset. 
1996          */
1997 
1998         tcp_cache_zap();
1999         tcp_set_state(sk,TCP_SYN_SENT);
2000         if(rt&&rt->rt_flags&RTF_IRTT)
2001                 sk->rto = rt->rt_irtt;
2002         else
2003                 sk->rto = TCP_TIMEOUT_INIT;
2004         sk->retransmit_timer.function=&tcp_retransmit_timer;
2005         sk->retransmit_timer.data = (unsigned long)sk;
2006         tcp_reset_xmit_timer(sk, TIME_WRITE, sk->rto);  /* Timer for repeating the SYN until an answer  */
2007         sk->retransmits = 0;                            /* Now works the right way instead of a hacked 
2008                                                                                         initial setting */
2009 
2010         sk->prot->queue_xmit(sk, dev, buff, 0);  
2011         tcp_reset_xmit_timer(sk, TIME_WRITE, sk->rto);
2012         tcp_statistics.TcpActiveOpens++;
2013         tcp_statistics.TcpOutSegs++;
2014   
2015         release_sock(sk);
2016         return(0);
2017 }
2018 
2019 /*
2020  *      Socket option code for TCP. 
2021  */
2022   
2023 int tcp_setsockopt(struct sock *sk, int level, int optname, char *optval, int optlen)
     /* [previous][next][first][last][top][bottom][index][help] */
2024 {
2025         int val,err;
2026 
2027         if(level!=SOL_TCP)
2028                 return ip_setsockopt(sk,level,optname,optval,optlen);
2029 
2030         if (optval == NULL) 
2031                 return(-EINVAL);
2032 
2033         err=verify_area(VERIFY_READ, optval, sizeof(int));
2034         if(err)
2035                 return err;
2036         
2037         val = get_user((int *)optval);
2038 
2039         switch(optname)
2040         {
2041                 case TCP_MAXSEG:
2042 /*
2043  * values greater than interface MTU won't take effect.  however at
2044  * the point when this call is done we typically don't yet know
2045  * which interface is going to be used
2046  */
2047                         if(val<1||val>MAX_WINDOW)
2048                                 return -EINVAL;
2049                         sk->user_mss=val;
2050                         return 0;
2051                 case TCP_NODELAY:
2052                         sk->nonagle=(val==0)?0:1;
2053                         return 0;
2054                 default:
2055                         return(-ENOPROTOOPT);
2056         }
2057 }
2058 
2059 int tcp_getsockopt(struct sock *sk, int level, int optname, char *optval, int *optlen)
     /* [previous][next][first][last][top][bottom][index][help] */
2060 {
2061         int val,err;
2062 
2063         if(level!=SOL_TCP)
2064                 return ip_getsockopt(sk,level,optname,optval,optlen);
2065                         
2066         switch(optname)
2067         {
2068                 case TCP_MAXSEG:
2069                         val=sk->user_mss;
2070                         break;
2071                 case TCP_NODELAY:
2072                         val=sk->nonagle;
2073                         break;
2074                 default:
2075                         return(-ENOPROTOOPT);
2076         }
2077         err=verify_area(VERIFY_WRITE, optlen, sizeof(int));
2078         if(err)
2079                 return err;
2080         put_user(sizeof(int),(int *) optlen);
2081 
2082         err=verify_area(VERIFY_WRITE, optval, sizeof(int));
2083         if(err)
2084                 return err;
2085         put_user(val,(int *)optval);
2086 
2087         return(0);
2088 }       
2089 
2090 
2091 struct proto tcp_prot = {
2092         tcp_close,
2093         ip_build_header,
2094         tcp_connect,
2095         tcp_accept,
2096         ip_queue_xmit,
2097         tcp_retransmit,
2098         tcp_write_wakeup,
2099         tcp_read_wakeup,
2100         tcp_rcv,
2101         tcp_select,
2102         tcp_ioctl,
2103         NULL,
2104         tcp_shutdown,
2105         tcp_setsockopt,
2106         tcp_getsockopt,
2107         tcp_sendmsg,
2108         tcp_recvmsg,
2109         NULL,           /* No special bind() */
2110         128,
2111         0,
2112         "TCP",
2113         0, 0,
2114         {NULL,}
2115 };

/* [previous][next][first][last][top][bottom][index][help] */