home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / misc / tcpipsrc / tcpin.c < prev    next >
C/C++ Source or Header  |  1991-01-26  |  25KB  |  888 lines

  1. /* Process incoming TCP segments. Page number references are to ARPA RFC-793,
  2.  * the TCP specification.
  3.  *
  4.  * Copyright 1991 Phil Karn, KA9Q
  5.  */
  6. #include "global.h"
  7. #include "timer.h"
  8. #include "mbuf.h"
  9. #include "netuser.h"
  10. #include "internet.h"
  11. #include "tcp.h"
  12. #include "icmp.h"
  13. #include "iface.h"
  14. #include "ip.h"
  15.  
  16. static void update __ARGS((struct tcb *tcb,struct tcp *seg,int16 length));
  17. static void proc_syn __ARGS((struct tcb *tcb,char tos,struct tcp *seg));
  18. static void add_reseq __ARGS((struct tcb *tcb,char tos,struct tcp *seg,
  19.     struct mbuf *bp,int16 length));
  20. static void get_reseq __ARGS((struct tcb *tcb,char *tos,struct tcp *seq,
  21.     struct mbuf **bp,int16 *length));
  22. static int trim __ARGS((struct tcb *tcb,struct tcp *seg,struct mbuf **bpp,
  23.     int16 *length));
  24. static int in_window __ARGS((struct tcb *tcb,int32 seq));
  25.  
  26. /* This function is called from IP with the IP header in machine byte order,
  27.  * along with a mbuf chain pointing to the TCP header.
  28.  */
  29. void
  30. tcp_input(iface,ip,bp,rxbroadcast)
  31. struct iface *iface;    /* Incoming interface (ignored) */
  32. struct mbuf *bp;    /* Data field, if any */
  33. struct ip *ip;        /* IP header */
  34. int rxbroadcast;    /* Incoming broadcast - discard if true */
  35. {
  36.     struct tcb *ntcb;
  37.     register struct tcb *tcb;    /* TCP Protocol control block */
  38.     struct tcp seg;            /* Local copy of segment header */
  39.     struct connection conn;        /* Local copy of addresses */
  40.     struct pseudo_header ph;    /* Pseudo-header for checksumming */
  41.     int hdrlen;            /* Length of TCP header */
  42.     int16 length;
  43.  
  44.     if(bp == NULLBUF)
  45.         return;
  46.  
  47.     tcpInSegs++;
  48.     if(rxbroadcast){
  49.         /* Any TCP packet arriving as a broadcast is
  50.          * to be completely IGNORED!!
  51.          */
  52.         free_p(bp);
  53.         return;
  54.     }
  55.     length = ip->length - IPLEN - ip->optlen;
  56.     ph.source = ip->source;
  57.     ph.dest = ip->dest;
  58.     ph.protocol = ip->protocol;
  59.     ph.length = length;
  60.     if(cksum(&ph,bp,length) != 0){
  61.         /* Checksum failed, ignore segment completely */
  62.         tcpInErrs++;
  63.         free_p(bp);
  64.         return;
  65.     }
  66.     /* Form local copy of TCP header in host byte order */
  67.     if((hdrlen = ntohtcp(&seg,&bp)) < 0){
  68.         /* TCP header is too small */
  69.         free_p(bp);
  70.         return;
  71.     }
  72.     length -= hdrlen;
  73.  
  74.     /* Fill in connection structure and find TCB */
  75.     conn.local.address = ip->dest;
  76.     conn.local.port = seg.dest;
  77.     conn.remote.address = ip->source;
  78.     conn.remote.port = seg.source;
  79.     
  80.     if((tcb = lookup_tcb(&conn)) == NULLTCB){
  81.         /* If this segment doesn't carry a SYN, reject it */
  82.         if(!seg.flags.syn){
  83.             free_p(bp);
  84.             reset(ip,&seg);
  85.             return;
  86.         }
  87.         /* See if there's a TCP_LISTEN on this socket with
  88.          * unspecified remote address and port
  89.          */
  90.         conn.remote.address = 0;
  91.         conn.remote.port = 0;
  92.         if((tcb = lookup_tcb(&conn)) == NULLTCB){
  93.             /* Nope, try unspecified local address too */
  94.             conn.local.address = 0;
  95.             if((tcb = lookup_tcb(&conn)) == NULLTCB){
  96.                 /* No LISTENs, so reject */
  97.                 free_p(bp);
  98.                 reset(ip,&seg);
  99.                 return;
  100.             }
  101.         }
  102.         /* We've found an server listen socket, so clone the TCB */
  103.         if(tcb->flags.clone){
  104.             ntcb = (struct tcb *)mallocw(sizeof (struct tcb));
  105.             ASSIGN(*ntcb,*tcb);
  106.             tcb = ntcb;
  107.             tcb->timer.arg = tcb;
  108.         } else
  109.             unlink_tcb(tcb);    /* It'll be put back on later */
  110.  
  111.         /* Put all the socket info into the TCB */
  112.         tcb->conn.local.address = ip->dest;
  113.         tcb->conn.remote.address = ip->source;
  114.         tcb->conn.remote.port = seg.source;
  115.  
  116.         /* NOW put on right hash chain */
  117.         link_tcb(tcb);
  118.     }
  119.     /* Do unsynchronized-state processing (p. 65-68) */
  120.     switch(tcb->state){
  121.     case TCP_CLOSED:
  122.         free_p(bp);
  123.         reset(ip,&seg);
  124.         return;
  125.     case TCP_LISTEN:
  126.         if(seg.flags.rst){
  127.             free_p(bp);
  128.             return;
  129.         }
  130.         if(seg.flags.ack){
  131.             free_p(bp);
  132.             reset(ip,&seg);
  133.             return;
  134.         }
  135.         if(seg.flags.syn){
  136.             /* (Security check is bypassed) */
  137.             /* page 66 */
  138.             proc_syn(tcb,ip->tos,&seg);
  139.             send_syn(tcb);
  140.             setstate(tcb,TCP_SYN_RECEIVED);        
  141.             if(length != 0 || seg.flags.fin) {
  142.                 /* Continue processing if there's more */
  143.                 break;
  144.             }
  145.             tcp_output(tcb);
  146.         }
  147.         free_p(bp);    /* Unlikely to get here directly */
  148.         return;
  149.     case TCP_SYN_SENT:
  150.         if(seg.flags.ack){
  151.             if(!seq_within(seg.ack,tcb->iss+1,tcb->snd.nxt)){
  152.                 free_p(bp);
  153.                 reset(ip,&seg);
  154.                 return;
  155.             }
  156.         }
  157.         if(seg.flags.rst){    /* p 67 */
  158.             if(seg.flags.ack){
  159.                 /* The ack must be acceptable since we just checked it.
  160.                  * This is how the remote side refuses connect requests.
  161.                  */
  162.                 close_self(tcb,RESET);
  163.             }
  164.             free_p(bp);
  165.             return;
  166.         }
  167.         /* (Security check skipped here) */
  168.         /* Check incoming precedence; it must match if there's an ACK */
  169.         if(seg.flags.ack && PREC(ip->tos) != PREC(tcb->tos)){
  170.             free_p(bp);
  171.             reset(ip,&seg);
  172.             return;
  173.         }
  174.         if(seg.flags.syn){
  175.             proc_syn(tcb,ip->tos,&seg);
  176.             if(seg.flags.ack){
  177.                 /* Our SYN has been acked, otherwise the ACK
  178.                  * wouldn't have been valid.
  179.                  */
  180.                 update(tcb,&seg,length);
  181.                 setstate(tcb,TCP_ESTABLISHED);
  182.             } else {
  183.                 setstate(tcb,TCP_SYN_RECEIVED);
  184.             }
  185.             if(length != 0 || seg.flags.fin) {
  186.                 break;        /* Continue processing if there's more */
  187.             }
  188.             tcp_output(tcb);
  189.         } else {
  190.             free_p(bp);    /* Ignore if neither SYN or RST is set */
  191.         }
  192.         return;
  193.     }
  194.     /* We reach this point directly in any synchronized state. Note that
  195.      * if we fell through from LISTEN or SYN_SENT processing because of a
  196.      * data-bearing SYN, window trimming and sequence testing "cannot fail".
  197.      */
  198.  
  199.     /* Trim segment to fit receive window. */
  200.     if(trim(tcb,&seg,&bp,&length) == -1){
  201.         /* Segment is unacceptable */
  202.         if(!seg.flags.rst){    /* NEVER answer RSTs */
  203.             /* In SYN_RECEIVED state, answer a retransmitted SYN 
  204.              * with a retransmitted SYN/ACK.
  205.              */
  206.             if(tcb->state == TCP_SYN_RECEIVED)
  207.                 tcb->snd.ptr = tcb->snd.una;
  208.             tcb->flags.force = 1;
  209.             tcp_output(tcb);
  210.         }
  211.         return;
  212.     }
  213.     /* If segment isn't the next one expected, and there's data
  214.      * or flags associated with it, put it on the resequencing
  215.      * queue, ACK it and return.
  216.      *
  217.      * Processing the ACK in an out-of-sequence segment without
  218.      * flags or data should be safe, however.
  219.      */
  220.     if(seg.seq != tcb->rcv.nxt
  221.      && (length != 0 || seg.flags.syn || seg.flags.fin)){
  222.         add_reseq(tcb,ip->tos,&seg,bp,length);
  223.         tcb->flags.force = 1;
  224.         tcp_output(tcb);
  225.         return;
  226.     }
  227.     /* This loop first processes the current segment, and then
  228.      * repeats if it can process the resequencing queue.
  229.      */
  230.     for(;;){
  231.         /* We reach this point with an acceptable segment; all data and flags
  232.          * are in the window, and the starting sequence number equals rcv.nxt
  233.          * (p. 70)
  234.          */    
  235.         if(seg.flags.rst){
  236.             if(tcb->state == TCP_SYN_RECEIVED
  237.              && !tcb->flags.clone && !tcb->flags.active){
  238.                 /* Go back to listen state only if this was
  239.                  * not a cloned or active server TCB
  240.                  */
  241.                 setstate(tcb,TCP_LISTEN);
  242.             } else {
  243.                 close_self(tcb,RESET);
  244.             }
  245.             free_p(bp);
  246.             return;
  247.         }
  248.         /* (Security check skipped here) p. 71 */
  249.         /* Check for precedence mismatch or erroneous extra SYN */
  250.         if(PREC(ip->tos) != PREC(tcb->tos) || seg.flags.syn){
  251.             free_p(bp);
  252.             reset(ip,&seg);
  253.             return;
  254.         }
  255.         /* Check ack field p. 72 */
  256.         if(!seg.flags.ack){
  257.             free_p(bp);    /* All segments after synchronization must have ACK */
  258.             return;
  259.         }
  260.         /* Process ACK */
  261.         switch(tcb->state){
  262.         case TCP_SYN_RECEIVED:
  263.             if(seq_within(seg.ack,tcb->snd.una+1,tcb->snd.nxt)){
  264.                 update(tcb,&seg,length);
  265.                 setstate(tcb,TCP_ESTABLISHED);
  266.             } else {
  267.                 free_p(bp);
  268.                 reset(ip,&seg);
  269.                 return;
  270.             }
  271.             break;
  272.         case TCP_ESTABLISHED:
  273.         case TCP_CLOSE_WAIT:
  274.             update(tcb,&seg,length);
  275.             break;
  276.         case TCP_FINWAIT1:    /* p. 73 */
  277.             update(tcb,&seg,length);
  278.             if(tcb->sndcnt == 0){
  279.                 /* Our FIN is acknowledged */
  280.                 setstate(tcb,TCP_FINWAIT2);
  281.             }
  282.             break;
  283.         case TCP_FINWAIT2:
  284.             update(tcb,&seg,length);
  285.             break;
  286.         case TCP_CLOSING:
  287.             update(tcb,&seg,length);
  288.             if(tcb->sndcnt == 0){
  289.                 /* Our FIN is acknowledged */
  290.                 setstate(tcb,TCP_TIME_WAIT);
  291.                 set_timer(&tcb->timer,MSL2*1000L);
  292.                 start_timer(&tcb->timer);
  293.             }
  294.             break;
  295.         case TCP_LAST_ACK:
  296.             update(tcb,&seg,length);
  297.             if(tcb->sndcnt == 0){
  298.                 /* Our FIN is acknowledged, close connection */
  299.                 close_self(tcb,NORMAL);
  300.                 return;
  301.             }            
  302.             break;
  303.         case TCP_TIME_WAIT:
  304.             start_timer(&tcb->timer);
  305.             break;
  306.         }
  307.  
  308.         /* (URGent bit processing skipped here) */
  309.  
  310.         /* Process the segment text, if any, beginning at rcv.nxt (p. 74) */
  311.         if(length != 0){
  312.             switch(tcb->state){
  313.             case TCP_SYN_RECEIVED:
  314.             case TCP_ESTABLISHED:
  315.             case TCP_FINWAIT1:
  316.             case TCP_FINWAIT2:
  317.                 /* Place on receive queue */
  318.                 append(&tcb->rcvq,bp);
  319.                 tcb->rcvcnt += length;
  320.                 tcb->rcv.nxt += length;
  321.                 tcb->rcv.wnd -= length;
  322.                 tcb->flags.force = 1;
  323.                 /* Notify user */
  324.                 if(tcb->r_upcall)
  325.                     (*tcb->r_upcall)(tcb,tcb->rcvcnt);
  326.                 break;
  327.             default:
  328.                 /* Ignore segment text */
  329.                 free_p(bp);
  330.                 break;
  331.             }
  332.         }
  333.         /* process FIN bit (p 75) */
  334.         if(seg.flags.fin){
  335.             tcb->flags.force = 1;    /* Always respond with an ACK */
  336.  
  337.             switch(tcb->state){
  338.             case TCP_SYN_RECEIVED:
  339.             case TCP_ESTABLISHED:
  340.                 tcb->rcv.nxt++;
  341.                 setstate(tcb,TCP_CLOSE_WAIT);
  342.                 break;
  343.             case TCP_FINWAIT1:
  344.                 tcb->rcv.nxt++;
  345.                 if(tcb->sndcnt == 0){
  346.                     /* Our FIN has been acked; bypass TCP_CLOSING state */
  347.                     setstate(tcb,TCP_TIME_WAIT);
  348.                     set_timer(&tcb->timer,MSL2*1000L);
  349.                     start_timer(&tcb->timer);
  350.                 } else {
  351.                     setstate(tcb,TCP_CLOSING);
  352.                 }
  353.                 break;
  354.             case TCP_FINWAIT2:
  355.                 tcb->rcv.nxt++;
  356.                 setstate(tcb,TCP_TIME_WAIT);
  357.                 set_timer(&tcb->timer,MSL2*1000L);
  358.                 start_timer(&tcb->timer);
  359.                 break;
  360.             case TCP_CLOSE_WAIT:
  361.             case TCP_CLOSING:
  362.             case TCP_LAST_ACK:
  363.                 break;        /* Ignore */
  364.             case TCP_TIME_WAIT:    /* p 76 */
  365.                 start_timer(&tcb->timer);
  366.                 break;
  367.             }
  368.             /* Call the client again so he can see EOF */
  369.             if(tcb->r_upcall)
  370.                 (*tcb->r_upcall)(tcb,tcb->rcvcnt);
  371.         }
  372.         /* Scan the resequencing queue, looking for a segment we can handle,
  373.          * and freeing all those that are now obsolete.
  374.          */
  375.         while(tcb->reseq != NULLRESEQ && seq_ge(tcb->rcv.nxt,tcb->reseq->seg.seq)){
  376.             get_reseq(tcb,&ip->tos,&seg,&bp,&length);
  377.             if(trim(tcb,&seg,&bp,&length) == 0)
  378.                 goto gotone;
  379.             /* Segment is an old one; trim has freed it */
  380.         }
  381.         break;
  382. gotone:    ;
  383.     }
  384.     tcp_output(tcb);    /* Send any necessary ack */
  385. }
  386.  
  387. /* Process an incoming ICMP response */
  388. void
  389. tcp_icmp(icsource,source,dest,type,code,bpp)
  390. int32 icsource;            /* Sender of ICMP message (not used) */
  391. int32 source;            /* Original IP datagram source (i.e. us) */
  392. int32 dest;            /* Original IP datagram dest (i.e., them) */
  393. char type,code;            /* ICMP error codes */
  394. struct mbuf **bpp;        /* First 8 bytes of TCP header */
  395. {
  396.     struct tcp seg;
  397.     struct connection conn;
  398.     register struct tcb *tcb;
  399.  
  400.     /* Extract the socket info from the returned TCP header fragment
  401.      * Note that since this is a datagram we sent, the source fields
  402.      * refer to the local side.
  403.      */
  404.     ntohtcp(&seg,bpp);
  405.     conn.local.port = seg.source;
  406.     conn.remote.port = seg.dest;
  407.     conn.local.address = source;
  408.     conn.remote.address = dest;
  409.     if((tcb = lookup_tcb(&conn)) == NULLTCB)
  410.         return;    /* Unknown connection, ignore */
  411.  
  412.     /* Verify that the sequence number in the returned segment corresponds
  413.      * to something currently unacknowledged. If not, it can safely
  414.      * be ignored.
  415.      */
  416.     if(!seq_within(seg.seq,tcb->snd.una,tcb->snd.nxt))
  417.         return;
  418.  
  419.     /* Destination Unreachable and Time Exceeded messages never kill a
  420.      * connection; the info is merely saved for future reference.
  421.      */
  422.     switch(uchar(type)){
  423.     case ICMP_DEST_UNREACH:
  424.     case ICMP_TIME_EXCEED:
  425.         tcb->type = type;
  426.         tcb->code = code;
  427.         break;
  428.     case ICMP_QUENCH:
  429.         /* Source quench; cut the congestion window in half,
  430.          * but don't let it go below one packet
  431.          */
  432.         tcb->cwind /= 2;
  433.         tcb->cwind = max(tcb->mss,tcb->cwind);
  434.         break;
  435.     }
  436. }
  437. /* Send an acceptable reset (RST) response for this segment
  438.  * The RST reply is composed in place on the input segment
  439.  */
  440. void
  441. reset(ip,seg)
  442. struct ip *ip;            /* Offending IP header */
  443. register struct tcp *seg;    /* Offending TCP header */
  444. {
  445.     struct mbuf *hbp;
  446.     struct pseudo_header ph;
  447.     int16 tmp;
  448.  
  449.     if(seg->flags.rst)
  450.         return;    /* Never send an RST in response to an RST */
  451.  
  452.     /* Compose the RST IP pseudo-header, swapping addresses */
  453.     ph.source = ip->dest;
  454.     ph.dest = ip->source;
  455.     ph.protocol = TCP_PTCL;
  456.     ph.length = TCPLEN;
  457.  
  458.     /* Swap port numbers */
  459.     tmp = seg->source;
  460.     seg->source = seg->dest;
  461.     seg->dest = tmp;
  462.  
  463.     if(seg->flags.ack){
  464.         /* This reset is being sent to clear a half-open connection.
  465.          * Set the sequence number of the RST to the incoming ACK
  466.          * so it will be acceptable.
  467.          */
  468.         seg->flags.ack = 0;
  469.         seg->seq = seg->ack;
  470.         seg->ack = 0;
  471.     } else {
  472.         /* We're rejecting a connect request (SYN) from TCP_LISTEN state
  473.          * so we have to "acknowledge" their SYN.
  474.          */
  475.         seg->flags.ack = 1;
  476.         seg->ack = seg->seq;
  477.         seg->seq = 0;
  478.         if(seg->flags.syn)
  479.             seg->ack++;
  480.     }
  481.     /* Set remaining parts of packet */
  482.     seg->flags.urg = 0;
  483.     seg->flags.psh = 0;
  484.     seg->flags.rst = 1;
  485.     seg->flags.syn = 0;
  486.     seg->flags.fin = 0;
  487.     seg->wnd = 0;
  488.     seg->up = 0;
  489.     seg->mss = 0;
  490.     seg->optlen = 0;
  491.     if((hbp = htontcp(seg,NULLBUF,&ph)) == NULLBUF)
  492.         return;
  493.     /* Ship it out (note swap of addresses) */
  494.     ip_send(ip->dest,ip->source,TCP_PTCL,ip->tos,0,hbp,ph.length,0,0);
  495.     tcpOutRsts++;
  496. }
  497.  
  498. /* Process an incoming acknowledgement and window indication.
  499.  * From page 72.
  500.  */
  501. static void
  502. update(tcb,seg,length)
  503. register struct tcb *tcb;
  504. register struct tcp *seg;
  505. int16 length;
  506. {
  507.     int16 acked;
  508.     int16 expand;
  509.  
  510.     acked = 0;
  511.     if(seq_gt(seg->ack,tcb->snd.nxt)){
  512.         tcb->flags.force = 1;    /* Acks something not yet sent */
  513.         return;
  514.     }
  515.     /* Decide if we need to do a window update.
  516.      * This is always checked whenever a legal ACK is received,
  517.      * even if it doesn't actually acknowledge anything,
  518.      * because it might be a spontaneous window reopening.
  519.      */
  520.     if(seq_gt(seg->seq,tcb->snd.wl1) || ((seg->seq == tcb->snd.wl1) 
  521.      && seq_ge(seg->ack,tcb->snd.wl2))){
  522.         /* If the window had been closed, crank back the
  523.          * send pointer so we'll immediately resume transmission.
  524.          * Otherwise we'd have to wait until the next probe.
  525.          */
  526.         if(tcb->snd.wnd == 0 && seg->wnd != 0)
  527.             tcb->snd.ptr = tcb->snd.una;
  528.         tcb->snd.wnd = seg->wnd;
  529.         tcb->snd.wl1 = seg->seq;
  530.         tcb->snd.wl2 = seg->ack;
  531.     }
  532.     /* See if anything new is being acknowledged */
  533.     if(!seq_gt(seg->ack,tcb->snd.una)){
  534.         if(seg->ack != tcb->snd.una)
  535.             return;    /* Old ack, ignore */
  536.  
  537.         if(length != 0 || seg->flags.syn || seg->flags.fin)
  538.             return;    /* Nothing acked, but there is data */
  539.  
  540.         /* Van Jacobson "fast recovery" code */
  541.         if(++tcb->dupacks == TCPDUPACKS){
  542.             /* We've had a burst of do-nothing acks, so
  543.              * we almost certainly lost a packet.
  544.              * Resend it now to avoid a timeout. (This is
  545.              * Van Jacobson's 'quick recovery' algorithm.)
  546.              */
  547.             int32 ptrsave;
  548.  
  549.             /* Knock the threshold down just as though
  550.              * this were a timeout, since we've had
  551.              * network congestion.
  552.              */
  553.             tcb->ssthresh = tcb->cwind/2;
  554.             tcb->ssthresh = max(tcb->ssthresh,tcb->mss);
  555.  
  556.             /* Manipulate the machinery in tcp_output() to
  557.              * retransmit just the missing packet
  558.              */
  559.             ptrsave = tcb->snd.ptr;
  560.             tcb->snd.ptr = tcb->snd.una;
  561.             tcb->cwind = tcb->mss;
  562.             tcp_output(tcb);
  563.             tcb->snd.ptr = ptrsave;
  564.  
  565.             /* "Inflate" the congestion window, pretending as
  566.              * though the duplicate acks were normally acking
  567.              * the packets beyond the one that was lost.
  568.              */
  569.             tcb->cwind = tcb->ssthresh + TCPDUPACKS*tcb->mss;
  570.         } else if(tcb->dupacks > TCPDUPACKS){
  571.             /* Continue to inflate the congestion window
  572.              * until the acks finally get "unstuck".
  573.              */
  574.             tcb->cwind += tcb->mss;
  575.         }
  576.         return;
  577.     }
  578.     if(tcb->dupacks >= TCPDUPACKS && tcb->cwind > tcb->ssthresh){
  579.         /* The acks have finally gotten "unstuck". So now we
  580.          * can "deflate" the congestion window, i.e. take it
  581.          * back down to where it would be after slow start
  582.          * finishes.
  583.          */
  584.         tcb->cwind = tcb->ssthresh;
  585.     }
  586.     tcb->dupacks = 0;
  587.  
  588.     /* We're here, so the ACK must have actually acked something */
  589.     acked = seg->ack - tcb->snd.una;
  590.  
  591.     /* Expand congestion window if not already at limit */
  592.     if(tcb->cwind < tcb->snd.wnd){
  593.         if(tcb->cwind < tcb->ssthresh){
  594.             /* Still doing slow start/CUTE, expand by amount acked */
  595.             expand = min(acked,tcb->mss);
  596.         } else {
  597.             /* Steady-state test of extra path capacity */
  598.             expand = ((long)tcb->mss * tcb->mss) / tcb->cwind;
  599.         }
  600.         /* Guard against arithmetic overflow */
  601.         if(tcb->cwind + expand < tcb->cwind)
  602.             expand = MAXINT16 - tcb->cwind;
  603.  
  604.         /* Don't expand beyond the offered window */
  605.         if(tcb->cwind + expand > tcb->snd.wnd)
  606.             expand = tcb->snd.wnd - tcb->cwind;
  607.  
  608.         if(expand != 0){
  609. #ifdef    notdef
  610.             /* Kick up the mean deviation estimate to prevent
  611.              * unnecessary retransmission should we already be
  612.              * bandwidth limited
  613.              */
  614.             tcb->mdev += ((long)tcb->srtt * expand) / tcb->cwind;
  615. #endif
  616.             tcb->cwind += expand;
  617.         }
  618.     }
  619.     /* Round trip time estimation */
  620.     if(tcb->flags.rtt_run && seq_ge(seg->ack,tcb->rttseq)){
  621.         /* A timed sequence number has been acked */
  622.         tcb->flags.rtt_run = 0;
  623.         if(!(tcb->flags.retran)){
  624.             int32 rtt;    /* measured round trip time */
  625.             int32 abserr;    /* abs(rtt - srtt) */
  626.  
  627.             /* This packet was sent only once and now
  628.              * it's been acked, so process the round trip time
  629.              */
  630.             rtt = msclock() - tcb->rtt_time;
  631.  
  632.             abserr = (rtt > tcb->srtt) ? rtt - tcb->srtt : tcb->srtt - rtt;
  633.             /* Run SRTT and MDEV integrators, with rounding */
  634.             tcb->srtt = ((AGAIN-1)*tcb->srtt + rtt + (AGAIN/2)) >> LAGAIN;
  635.             tcb->mdev = ((DGAIN-1)*tcb->mdev + abserr + (DGAIN/2)) >> LDGAIN;
  636.  
  637.             rtt_add(tcb->conn.remote.address,rtt);
  638.             /* Reset the backoff level */
  639.             tcb->backoff = 0;
  640.         }
  641.     }
  642.     tcb->sndcnt -= acked;    /* Update virtual byte count on snd queue */
  643.     tcb->snd.una = seg->ack;
  644.  
  645.     /* If we're waiting for an ack of our SYN, note it and adjust count */
  646.     if(!(tcb->flags.synack)){
  647.         tcb->flags.synack = 1;
  648.         acked--;    /* One less byte to pull from real snd queue */
  649.     }
  650.     /* Remove acknowledged bytes from the send queue and update the
  651.      * unacknowledged pointer. If a FIN is being acked,
  652.      * pullup won't be able to remove it from the queue, but that
  653.      * causes no harm.
  654.      */
  655.     pullup(&tcb->sndq,NULLCHAR,acked);
  656.  
  657.     /* Stop retransmission timer, but restart it if there is still
  658.      * unacknowledged data. If there is no more unacked data,
  659.      * the transmitter has gone at least momentarily idle, so
  660.      * record the time for the VJ restart-slowstart rule.
  661.      */    
  662.     stop_timer(&tcb->timer);
  663.     if(tcb->snd.una != tcb->snd.nxt)
  664.         start_timer(&tcb->timer);
  665.     else
  666.         tcb->lastactive = msclock();
  667.  
  668.     /* If retransmissions have been occurring, make sure the
  669.      * send pointer doesn't repeat ancient history
  670.      */
  671.     if(seq_lt(tcb->snd.ptr,tcb->snd.una))
  672.         tcb->snd.ptr = tcb->snd.una;
  673.  
  674.     /* Clear the retransmission flag since the oldest
  675.      * unacknowledged segment (the only one that is ever retransmitted)
  676.      * has now been acked.
  677.      */
  678.     tcb->flags.retran = 0;
  679.  
  680.     /* If outgoing data was acked, notify the user so he can send more
  681.      * unless we've already sent a FIN.
  682.      */
  683.     if(acked != 0 && tcb->t_upcall
  684.      && (tcb->state == TCP_ESTABLISHED || tcb->state == TCP_CLOSE_WAIT)){
  685.         (*tcb->t_upcall)(tcb,tcb->window - tcb->sndcnt);
  686.     }
  687. }
  688.  
  689. /* Determine if the given sequence number is in our receiver window.
  690.  * NB: must not be used when window is closed!
  691.  */
  692. static
  693. int
  694. in_window(tcb,seq)
  695. struct tcb *tcb;
  696. int32 seq;
  697. {
  698.     return seq_within(seq,tcb->rcv.nxt,(int32)(tcb->rcv.nxt+tcb->rcv.wnd-1));
  699. }
  700.  
  701. /* Process an incoming SYN */
  702. static void
  703. proc_syn(tcb,tos,seg)
  704. register struct tcb *tcb;
  705. char tos;
  706. struct tcp *seg;
  707. {
  708.     int16 mtu;
  709.     struct tcp_rtt *tp;
  710.  
  711.     tcb->flags.force = 1;    /* Always send a response */
  712.  
  713.     /* Note: It's not specified in RFC 793, but SND.WL1 and
  714.      * SND.WND are initialized here since it's possible for the
  715.      * window update routine in update() to fail depending on the
  716.      * IRS if they are left unitialized.
  717.      */
  718.     /* Check incoming precedence and increase if higher */
  719.     if(PREC(tos) > PREC(tcb->tos))
  720.         tcb->tos = tos;
  721.     tcb->rcv.nxt = seg->seq + 1;    /* p 68 */
  722.     tcb->snd.wl1 = tcb->irs = seg->seq;
  723.     tcb->snd.wnd = seg->wnd;
  724.     if(seg->mss != 0)
  725.         tcb->mss = seg->mss;
  726.     /* Check the MTU of the interface we'll use to reach this guy
  727.      * and lower the MSS so that unnecessary fragmentation won't occur
  728.      */
  729.     if((mtu = ip_mtu(tcb->conn.remote.address)) != 0){
  730.         /* Allow space for the TCP and IP headers */
  731.         mtu -= TCPLEN + IPLEN;
  732.         tcb->cwind = tcb->mss = min(mtu,tcb->mss);
  733.     }
  734.     /* See if there's round-trip time experience */
  735.     if((tp = rtt_get(tcb->conn.remote.address)) != NULLRTT){
  736.         tcb->srtt = tp->srtt;
  737.         tcb->mdev = tp->mdev;
  738.     }
  739. }
  740.  
  741. /* Generate an initial sequence number and put a SYN on the send queue */
  742. void
  743. send_syn(tcb)
  744. register struct tcb *tcb;
  745. {
  746.     tcb->iss = geniss();
  747.     tcb->rttseq = tcb->snd.wl2 = tcb->snd.una = tcb->iss;
  748.     tcb->snd.ptr = tcb->snd.nxt = tcb->rttseq;
  749.     tcb->sndcnt++;
  750.     tcb->flags.force = 1;
  751. }
  752.  
  753. /* Add an entry to the resequencing queue in the proper place */
  754. static void
  755. add_reseq(tcb,tos,seg,bp,length)
  756. struct tcb *tcb;
  757. char tos;
  758. struct tcp *seg;
  759. struct mbuf *bp;
  760. int16 length;
  761. {
  762.     register struct reseq *rp,*rp1;
  763.  
  764.     /* Allocate reassembly descriptor */
  765.     if((rp = (struct reseq *)malloc(sizeof (struct reseq))) == NULLRESEQ){
  766.         /* No space, toss on floor */
  767.         free_p(bp);
  768.         return;
  769.     }
  770.     ASSIGN(rp->seg,*seg);
  771.     rp->tos = tos;
  772.     rp->bp = bp;
  773.     rp->length = length;
  774.  
  775.     /* Place on reassembly list sorting by starting seq number */
  776.     rp1 = tcb->reseq;
  777.     if(rp1 == NULLRESEQ || seq_lt(seg->seq,rp1->seg.seq)){
  778.         /* Either the list is empty, or we're less than all other
  779.          * entries; insert at beginning.
  780.          */
  781.         rp->next = rp1;
  782.         tcb->reseq = rp;
  783.     } else {
  784.         /* Find the last entry less than us */
  785.         for(;;){
  786.             if(rp1->next == NULLRESEQ || seq_lt(seg->seq,rp1->next->seg.seq)){
  787.                 /* We belong just after this one */
  788.                 rp->next = rp1->next;
  789.                 rp1->next = rp;
  790.                 break;
  791.             }
  792.             rp1 = rp1->next;
  793.         }
  794.     }
  795. }
  796.  
  797. /* Fetch the first entry off the resequencing queue */
  798. static void
  799. get_reseq(tcb,tos,seg,bp,length)
  800. register struct tcb *tcb;
  801. char *tos;
  802. struct tcp *seg;
  803. struct mbuf **bp;
  804. int16 *length;
  805. {
  806.     register struct reseq *rp;
  807.  
  808.     if((rp = tcb->reseq) == NULLRESEQ)
  809.         return;
  810.  
  811.     tcb->reseq = rp->next;
  812.  
  813.     *tos = rp->tos;
  814.     ASSIGN(*seg,rp->seg);
  815.     *bp = rp->bp;
  816.     *length = rp->length;
  817.     free((char *)rp);
  818. }
  819.  
  820. /* Trim segment to fit window. Return 0 if OK, -1 if segment is
  821.  * unacceptable.
  822.  */
  823. static int
  824. trim(tcb,seg,bpp,length)
  825. register struct tcb *tcb;
  826. register struct tcp *seg;
  827. struct mbuf **bpp;
  828. int16 *length;
  829. {
  830.     long dupcnt,excess;
  831.     int16 len;        /* Segment length including flags */
  832.     char accept = 0;
  833.  
  834.     len = *length;
  835.     if(seg->flags.syn)
  836.         len++;
  837.     if(seg->flags.fin)
  838.         len++;
  839.  
  840.     /* Acceptability tests */
  841.     if(tcb->rcv.wnd == 0){
  842.         /* Only in-order, zero-length segments are acceptable when
  843.          * our window is closed.
  844.          */
  845.         if(seg->seq == tcb->rcv.nxt && len == 0){
  846.             return 0;    /* Acceptable, no trimming needed */
  847.         }
  848.     } else {
  849.         /* Some part of the segment must be in the window */
  850.         if(in_window(tcb,seg->seq)){
  851.             accept++;    /* Beginning is */
  852.         } else if(len != 0){
  853.             if(in_window(tcb,(int32)(seg->seq+len-1)) || /* End is */
  854.              seq_within(tcb->rcv.nxt,seg->seq,(int32)(seg->seq+len-1))){ /* Straddles */
  855.                 accept++;
  856.             }
  857.         }
  858.     }
  859.     if(!accept){
  860.         tcb->rerecv += len;    /* Assume all of it was a duplicate */
  861.         free_p(*bpp);
  862.         return -1;
  863.     }
  864.     if((dupcnt = tcb->rcv.nxt - seg->seq) > 0){
  865.         tcb->rerecv += dupcnt;
  866.         /* Trim off SYN if present */
  867.         if(seg->flags.syn){
  868.             /* SYN is before first data byte */
  869.             seg->flags.syn = 0;
  870.             seg->seq++;
  871.             dupcnt--;
  872.         }
  873.         if(dupcnt > 0){
  874.             pullup(bpp,NULLCHAR,(int16)dupcnt);
  875.             seg->seq += dupcnt;
  876.             *length -= dupcnt;
  877.         }
  878.     }
  879.     if((excess = seg->seq + *length - (tcb->rcv.nxt + tcb->rcv.wnd)) > 0){
  880.         tcb->rerecv += excess;
  881.         /* Trim right edge */
  882.         *length -= excess;
  883.         trim_mbuf(bpp,*length);
  884.         seg->flags.fin = 0;    /* FIN follows last data byte */
  885.     }
  886.     return 0;
  887. }
  888.