tcp_out.c
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:22k
开发平台:

C/C++

  1. /**
  2.  * @file
  3.  *
  4.  * Transmission Control Protocol, outgoing traffic
  5.  *
  6.  * The output functions of TCP.
  7.  *
  8.  */
  9. /*
  10.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  11.  * All rights reserved.
  12.  *
  13.  * Redistribution and use in source and binary forms, with or without modification,
  14.  * are permitted provided that the following conditions are met:
  15.  *
  16.  * 1. Redistributions of source code must retain the above copyright notice,
  17.  *    this list of conditions and the following disclaimer.
  18.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  19.  *    this list of conditions and the following disclaimer in the documentation
  20.  *    and/or other materials provided with the distribution.
  21.  * 3. The name of the author may not be used to endorse or promote products
  22.  *    derived from this software without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  25.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  26.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  27.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  28.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  29.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  32.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  33.  * OF SUCH DAMAGE.
  34.  *
  35.  * This file is part of the lwIP TCP/IP stack.
  36.  *
  37.  * Author: Adam Dunkels <adam@sics.se>
  38.  *
  39.  */
  40. #include "lwip/def.h"
  41. #include "lwip/opt.h"
  42. #include "lwip/mem.h"
  43. #include "lwip/memp.h"
  44. #include "lwip/sys.h"
  45. #include "lwip/ip_addr.h"
  46. #include "lwip/netif.h"
  47. #include "lwip/inet.h"
  48. #include "lwip/tcp.h"
  49. #include "lwip/stats.h"
  50. #if LWIP_TCP
  51. /* Forward declarations.*/
  52. static void tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb);
  53. err_t
  54. tcp_send_ctrl(struct tcp_pcb *pcb, u8_t flags)
  55. {
  56.   /* no data, no length, flags, copy=1, no optdata, no optdatalen */
  57.   return tcp_enqueue(pcb, NULL, 0, flags, 1, NULL, 0);
  58. }
  59. /**
  60.  * Write data for sending (but does not send it immediately).
  61.  *
  62.  * It waits in the expectation of more data being sent soon (as
  63.  * it can send them more efficiently by combining them together).
  64.  * To prompt the system to send data now, call tcp_output() after
  65.  * calling tcp_write().
  66.  * 
  67.  * @arg pcb Protocol control block of the TCP connection to enqueue data for. 
  68.  * 
  69.  * @see tcp_write()
  70.  */
  71. err_t
  72. tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t copy)
  73. {
  74.   LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_write(pcb=%p, arg=%p, len=%u, copy=%d)n", (void *)pcb,
  75.     arg, len, (unsigned int)copy));
  76.   /* connection is in valid state for data transmission? */
  77.   if (pcb->state == ESTABLISHED ||
  78.      pcb->state == CLOSE_WAIT ||
  79.      pcb->state == SYN_SENT ||
  80.      pcb->state == SYN_RCVD) {
  81.     if (len > 0) {
  82.       return tcp_enqueue(pcb, (void *)arg, len, 0, copy, NULL, 0);
  83.     }
  84.     return ERR_OK;
  85.   } else {
  86.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG | DBG_STATE | 3, ("tcp_write() called in invalid staten"));
  87.     return ERR_CONN;
  88.   }
  89. }
  90. /**
  91.  * Enqueue either data or TCP options (but not both) for tranmission
  92.  * 
  93.  * 
  94.  * 
  95.  * @arg pcb Protocol control block for the TCP connection to enqueue data for.
  96.  * @arg arg Pointer to the data to be enqueued for sending.
  97.  * @arg len Data length in bytes
  98.  * @arg flags
  99.  * @arg copy 1 if data must be copied, 0 if data is non-volatile and can be
  100.  * referenced.
  101.  * @arg optdata
  102.  * @arg optlen
  103.  */
  104. err_t
  105. tcp_enqueue(struct tcp_pcb *pcb, void *arg, u16_t len,
  106.   u8_t flags, u8_t copy,
  107.   u8_t *optdata, u8_t optlen)
  108. {
  109.   struct pbuf *p;
  110.   struct tcp_seg *seg, *useg, *queue;
  111.   u32_t left, seqno;
  112.   u16_t seglen;
  113.   void *ptr;
  114.   u8_t queuelen;
  115.   LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_enqueue(pcb=%p, arg=%p, len=%u, flags=%x, copy=%u)n",
  116.     (void *)pcb, arg, len, (unsigned int)flags, (unsigned int)copy));
  117.   LWIP_ASSERT("tcp_enqueue: len == 0 || optlen == 0 (programmer violates API)",
  118.       len == 0 || optlen == 0);
  119.   LWIP_ASSERT("tcp_enqueue: arg == NULL || optdata == NULL (programmer violates API)",
  120.       arg == NULL || optdata == NULL);
  121.   /* fail on too much data */
  122.   if (len > pcb->snd_buf) {
  123.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_enqueue: too much data (len=%u > snd_buf=%u)n", len, pcb->snd_buf));
  124.     return ERR_MEM;
  125.   }
  126.   left = len;
  127.   ptr = arg;
  128.   /* seqno will be the sequence number of the first segment enqueued
  129.    * by the call to this function. */
  130.   seqno = pcb->snd_lbb;
  131. /*
  132. *Added by skier, because it will bring unexpeced err
  133. *maybe system break;
  134. */
  135.   queue = NULL;
  136. //skier:end
  137.   LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_enqueue: queuelen: %un", (unsigned int)pcb->snd_queuelen));
  138.   /* If total number of pbufs on the unsent/unacked queues exceeds the
  139.    * configured maximum, return an error */
  140.   queuelen = pcb->snd_queuelen;
  141.   if (queuelen >= TCP_SND_QUEUELEN) {
  142.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_enqueue: too long queue %u (max %u)n", queuelen, TCP_SND_QUEUELEN));
  143.     goto memerr;
  144.   }
  145.   if (queuelen != 0) {
  146.     LWIP_ASSERT("tcp_enqueue: pbufs on queue => at least one queue non-empty",
  147.       pcb->unacked != NULL || pcb->unsent != NULL);
  148.   } else {
  149.     LWIP_ASSERT("tcp_enqueue: no pbufs on queue => both queues empty",
  150.       pcb->unacked == NULL && pcb->unsent == NULL);
  151.   }
  152.   /* First, break up the data into segments and tuck them together in
  153.    * the local "queue" variable. */
  154.   useg = queue = seg = NULL;
  155.   seglen = 0;
  156.   while (queue == NULL || left > 0) {
  157.     /* The segment length should be the MSS if the data to be enqueued
  158.      * is larger than the MSS. */
  159.     seglen = left > pcb->mss? pcb->mss: left;
  160.     /* Allocate memory for tcp_seg, and fill in fields. */
  161.     seg = memp_malloc(MEMP_TCP_SEG);
  162.     if (seg == NULL) {
  163.       LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: could not allocate memory for tcp_segn"));
  164.       goto memerr;
  165.     }
  166.     seg->next = NULL;
  167.     seg->p = NULL;
  168.     /* first segment of to-be-queued data? */
  169.     if (queue == NULL) {
  170.       queue = seg;
  171.     }
  172.     /* subsequent segments of to-be-queued data */
  173.     else {
  174.       /* Attach the segment to the end of the queued segments */
  175.       LWIP_ASSERT("useg != NULL", useg != NULL);
  176.       useg->next = seg;
  177.     }
  178.     /* remember last segment of to-be-queued data for next iteration */
  179.     useg = seg;
  180.     /* If copy is set, memory should be allocated
  181.      * and data copied into pbuf, otherwise data comes from
  182.      * ROM or other static memory, and need not be copied. If
  183.      * optdata is != NULL, we have options instead of data. */
  184.      
  185.     /* options? */
  186.     if (optdata != NULL) {
  187.       if ((seg->p = pbuf_alloc(PBUF_TRANSPORT, optlen, PBUF_RAM)) == NULL) {
  188.         goto memerr;
  189.       }
  190.       ++queuelen;
  191.       seg->dataptr = seg->p->payload;
  192.     }
  193.     /* copy from volatile memory? */
  194.     else if (copy) {
  195.       if ((seg->p = pbuf_alloc(PBUF_TRANSPORT, seglen, PBUF_RAM)) == NULL) {
  196.         LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue : could not allocate memory for pbuf copy size %un", seglen));
  197.         goto memerr;
  198.       }
  199.       ++queuelen;
  200.       if (arg != NULL) {
  201.         memcpy(seg->p->payload, ptr, seglen);
  202.       }
  203.       seg->dataptr = seg->p->payload;
  204.     }
  205.     /* do not copy data */
  206.     else {
  207.       /* First, allocate a pbuf for holding the data.
  208.        * since the referenced data is available at least until it is sent out on the
  209.        * link (as it has to be ACKed by the remote party) we can safely use PBUF_ROM
  210.        * instead of PBUF_REF here.
  211.        */
  212.       if ((p = pbuf_alloc(PBUF_TRANSPORT, seglen, PBUF_ROM)) == NULL) {
  213.         LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: could not allocate memory for zero-copy pbufn"));
  214.         goto memerr;
  215.       }
  216.       ++queuelen;
  217.       /* reference the non-volatile payload data */
  218.       p->payload = ptr;
  219.       seg->dataptr = ptr;
  220.       /* Second, allocate a pbuf for the headers. */
  221.       if ((seg->p = pbuf_alloc(PBUF_TRANSPORT, 0, PBUF_RAM)) == NULL) {
  222.         /* If allocation fails, we have to deallocate the data pbuf as
  223.          * well. */
  224.         pbuf_free(p);
  225.         LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: could not allocate memory for header pbufn"));
  226.         goto memerr;
  227.       }
  228.       ++queuelen;
  229.       /* Concatenate the headers and data pbufs together. */
  230.       pbuf_cat(seg->p/*header*/, p/*data*/);
  231.       p = NULL;
  232.     }
  233.     /* Now that there are more segments queued, we check again if the
  234.     length of the queue exceeds the configured maximum. */
  235.     if (queuelen > TCP_SND_QUEUELEN) {
  236.       LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: queue too long %u (%u)n", queuelen, TCP_SND_QUEUELEN));
  237.       goto memerr;
  238.     }
  239.     seg->len = seglen;
  240.     /* build TCP header */
  241.     if (pbuf_header(seg->p, TCP_HLEN)) {
  242.       LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: no room for TCP header in pbuf.n"));
  243.       TCP_STATS_INC(tcp.err);
  244.       goto memerr;
  245.     }
  246.     seg->tcphdr = seg->p->payload;
  247.     seg->tcphdr->src = htons(pcb->local_port);
  248.     seg->tcphdr->dest = htons(pcb->remote_port);
  249.     seg->tcphdr->seqno = htonl(seqno);
  250.     seg->tcphdr->urgp = 0;
  251.     TCPH_FLAGS_SET(seg->tcphdr, flags);
  252.     /* don't fill in tcphdr->ackno and tcphdr->wnd until later */
  253.     /* Copy the options into the header, if they are present. */
  254.     if (optdata == NULL) {
  255.       TCPH_HDRLEN_SET(seg->tcphdr, 5);
  256.     }
  257.     else {
  258.       TCPH_HDRLEN_SET(seg->tcphdr, (5 + optlen / 4));
  259.       /* Copy options into data portion of segment.
  260.        Options can thus only be sent in non data carrying
  261.        segments such as SYN|ACK. */
  262.       memcpy(seg->dataptr, optdata, optlen);
  263.     }
  264.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG | DBG_TRACE, ("tcp_enqueue: queueing %lu:%lu (0x%x)n",
  265.       ntohl(seg->tcphdr->seqno),
  266.       ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg),
  267.       flags));
  268.     left -= seglen;
  269.     seqno += seglen;
  270.     ptr = (void *)((char *)ptr + seglen);
  271.   }
  272.   /* Now that the data to be enqueued has been broken up into TCP
  273.   segments in the queue variable, we add them to the end of the
  274.   pcb->unsent queue. */
  275.   if (pcb->unsent == NULL) {
  276.     useg = NULL;
  277.   }
  278.   else {
  279.     for (useg = pcb->unsent; useg->next != NULL; useg = useg->next);
  280.   }
  281.   /* { useg is last segment on the unsent queue, NULL if list is empty } */
  282.   /* If there is room in the last pbuf on the unsent queue,
  283.   chain the first pbuf on the queue together with that. */
  284.   if (useg != NULL &&
  285.     TCP_TCPLEN(useg) != 0 &&
  286.     !(TCPH_FLAGS(useg->tcphdr) & (TCP_SYN | TCP_FIN)) &&
  287.     !(flags & (TCP_SYN | TCP_FIN)) &&
  288.     /* fit within max seg size */
  289.     useg->len + queue->len <= pcb->mss) {
  290.     /* Remove TCP header from first segment of our to-be-queued list */
  291.     pbuf_header(queue->p, -TCP_HLEN);
  292.     pbuf_cat(useg->p, queue->p);
  293.     useg->len += queue->len;
  294.     useg->next = queue->next;
  295.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG | DBG_TRACE | DBG_STATE, ("tcp_enqueue: chaining segments, new len %un", useg->len));
  296.     if (seg == queue) {
  297.       seg = NULL;
  298.     }
  299.     memp_free(MEMP_TCP_SEG, queue);
  300.   }
  301.   else {
  302.     /* empty list */
  303.     if (useg == NULL) {
  304.       /* initialize list with this segment */
  305.       pcb->unsent = queue;
  306.     }
  307.     /* enqueue segment */
  308.     else {
  309.       useg->next = queue;
  310.     }
  311.   }
  312.   if ((flags & TCP_SYN) || (flags & TCP_FIN)) {
  313.     ++len;
  314.   }
  315.   pcb->snd_lbb += len;
  316.   pcb->snd_buf -= len;
  317.   /* update number of segments on the queues */
  318.   pcb->snd_queuelen = queuelen;
  319.   LWIP_DEBUGF(TCP_QLEN_DEBUG, ("tcp_enqueue: %d (after enqueued)n", pcb->snd_queuelen));
  320.   if (pcb->snd_queuelen != 0) {
  321.     LWIP_ASSERT("tcp_enqueue: valid queue length",
  322.       pcb->unacked != NULL || pcb->unsent != NULL);
  323.   }
  324.   /* Set the PSH flag in the last segment that we enqueued, but only
  325.   if the segment has data (indicated by seglen > 0). */
  326.   if (seg != NULL && seglen > 0 && seg->tcphdr != NULL) {
  327.     TCPH_SET_FLAG(seg->tcphdr, TCP_PSH);
  328.   }
  329.   return ERR_OK;
  330.   memerr:
  331.   TCP_STATS_INC(tcp.memerr);
  332.   if (queue != NULL) {
  333.     tcp_segs_free(queue);
  334.   }
  335.   if (pcb->snd_queuelen != 0) {
  336.     LWIP_ASSERT("tcp_enqueue: valid queue length", pcb->unacked != NULL ||
  337.       pcb->unsent != NULL);
  338.   }
  339.   LWIP_DEBUGF(TCP_QLEN_DEBUG | DBG_STATE, ("tcp_enqueue: %d (with mem err)n", pcb->snd_queuelen));
  340.   return ERR_MEM;
  341. }
  342. /* find out what we can send and send it */
  343. err_t
  344. tcp_output(struct tcp_pcb *pcb)
  345. {
  346.   struct pbuf *p;
  347.   struct tcp_hdr *tcphdr;
  348.   struct tcp_seg *seg, *useg;
  349.   u32_t wnd;
  350. #if TCP_CWND_DEBUG
  351.   int i = 0;
  352. #endif /* TCP_CWND_DEBUG */
  353.   /* First, check if we are invoked by the TCP input processing
  354.      code. If so, we do not output anything. Instead, we rely on the
  355.      input processing code to call us when input processing is done
  356.      with. */
  357.   if (tcp_input_pcb == pcb) {
  358.     return ERR_OK;
  359.   }
  360.   wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd);
  361.   seg = pcb->unsent;
  362.   /* useg should point to last segment on unacked queue */
  363.   useg = pcb->unacked;
  364.   if (useg != NULL) {
  365.     for (; useg->next != NULL; useg = useg->next);
  366.   }                                                                             
  367.    
  368.   /* If the TF_ACK_NOW flag is set and no data will be sent (either
  369.    * because the ->unsent queue is empty or because the window does
  370.    * not allow it), construct an empty ACK segment and send it.
  371.    *
  372.    * If data is to be sent, we will just piggyback the ACK (see below).
  373.    */
  374.   if (pcb->flags & TF_ACK_NOW &&
  375.      (seg == NULL ||
  376.       ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) {
  377.     p = pbuf_alloc(PBUF_IP, TCP_HLEN, PBUF_RAM);
  378.     if (p == NULL) {
  379.       LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: (ACK) could not allocate pbufn"));
  380.       return ERR_BUF;
  381.     }
  382.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: sending ACK for %lun", pcb->rcv_nxt));
  383.     /* remove ACK flags from the PCB, as we send an empty ACK now */
  384.     pcb->flags &= ~(TF_ACK_DELAY | TF_ACK_NOW);
  385.     tcphdr = p->payload;
  386.     tcphdr->src = htons(pcb->local_port);
  387.     tcphdr->dest = htons(pcb->remote_port);
  388.     tcphdr->seqno = htonl(pcb->snd_nxt);
  389.     tcphdr->ackno = htonl(pcb->rcv_nxt);
  390.     TCPH_FLAGS_SET(tcphdr, TCP_ACK);
  391.     tcphdr->wnd = htons(pcb->rcv_wnd);
  392.     tcphdr->urgp = 0;
  393.     TCPH_HDRLEN_SET(tcphdr, 5);
  394.     tcphdr->chksum = 0;
  395. #if CHECKSUM_GEN_TCP
  396.     tcphdr->chksum = inet_chksum_pseudo(p, &(pcb->local_ip), &(pcb->remote_ip),
  397.           IP_PROTO_TCP, p->tot_len);
  398. #endif
  399.     ip_output(p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos,
  400.         IP_PROTO_TCP);
  401.     pbuf_free(p);
  402.     return ERR_OK;
  403.   }
  404. #if TCP_OUTPUT_DEBUG
  405.   if (seg == NULL) {
  406.     LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output: nothing to send (%p)n", pcb->unsent));
  407.   }
  408. #endif /* TCP_OUTPUT_DEBUG */
  409. #if TCP_CWND_DEBUG
  410.   if (seg == NULL) {
  411.     LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %lu, cwnd %lu, wnd %lu, seg == NULL, ack %lun",
  412.                             pcb->snd_wnd, pcb->cwnd, wnd,
  413.                             pcb->lastack));
  414.   } else {
  415.     LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %lu, cwnd %lu, wnd %lu, effwnd %lu, seq %lu, ack %lun",
  416.                             pcb->snd_wnd, pcb->cwnd, wnd,
  417.                             ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len,
  418.                             ntohl(seg->tcphdr->seqno), pcb->lastack));
  419.   }
  420. #endif /* TCP_CWND_DEBUG */
  421.   /* data available and window allows it to be sent? */
  422.   while (seg != NULL &&
  423.   ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
  424. #if TCP_CWND_DEBUG
  425.     LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %lu, cwnd %lu, wnd %lu, effwnd %lu, seq %lu, ack %lu, i%dn",
  426.                             pcb->snd_wnd, pcb->cwnd, wnd,
  427.                             ntohl(seg->tcphdr->seqno) + seg->len -
  428.                             pcb->lastack,
  429.                             ntohl(seg->tcphdr->seqno), pcb->lastack, i));
  430.     ++i;
  431. #endif /* TCP_CWND_DEBUG */
  432.     pcb->unsent = seg->next;
  433.     if (pcb->state != SYN_SENT) {
  434.       TCPH_SET_FLAG(seg->tcphdr, TCP_ACK);
  435.       pcb->flags &= ~(TF_ACK_DELAY | TF_ACK_NOW);
  436.     }
  437.     tcp_output_segment(seg, pcb);
  438.     pcb->snd_nxt = ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg);
  439.     if (TCP_SEQ_LT(pcb->snd_max, pcb->snd_nxt)) {
  440.       pcb->snd_max = pcb->snd_nxt;
  441.     }
  442.     /* put segment on unacknowledged list if length > 0 */
  443.     if (TCP_TCPLEN(seg) > 0) {
  444.       seg->next = NULL;
  445.       /* unacked list is empty? */
  446.       if (pcb->unacked == NULL) {
  447.         pcb->unacked = seg;
  448.         useg = seg;
  449.       /* unacked list is not empty? */
  450.       } else {
  451.         /* In the case of fast retransmit, the packet should not go to the tail
  452.          * of the unacked queue, but rather at the head. We need to check for
  453.          * this case. -STJ Jul 27, 2004 */
  454.         if (TCP_SEQ_LT(ntohl(seg->tcphdr->seqno), ntohl(useg->tcphdr->seqno))){
  455.           /* add segment to head of unacked list */
  456.           seg->next = pcb->unacked;
  457.           pcb->unacked = seg;
  458.         } else {
  459.           /* add segment to tail of unacked list */
  460.           useg->next = seg;
  461.           useg = useg->next;
  462.         }
  463.       }
  464.     /* do not queue empty segments on the unacked list */
  465.     } else {
  466.       tcp_seg_free(seg);
  467.     }
  468.     seg = pcb->unsent;
  469.   }
  470.   return ERR_OK;
  471. }
  472. /**
  473.  * Actually send a TCP segment over IP
  474.  */
  475. static void
  476. tcp_output_segment(struct tcp_seg *seg, struct tcp_pcb *pcb)
  477. {
  478.   u16_t len;
  479.   struct netif *netif;
  480.   /* The TCP header has already been constructed, but the ackno and
  481.    wnd fields remain. */
  482.   seg->tcphdr->ackno = htonl(pcb->rcv_nxt);
  483.   /* silly window avoidance */
  484.   if (pcb->rcv_wnd < pcb->mss) {
  485.     seg->tcphdr->wnd = 0;
  486.   } else {
  487.     /* advertise our receive window size in this TCP segment */
  488.     seg->tcphdr->wnd = htons(pcb->rcv_wnd);
  489.   }
  490.   /* If we don't have a local IP address, we get one by
  491.      calling ip_route(). */
  492.   if (ip_addr_isany(&(pcb->local_ip))) {
  493.     netif = ip_route(&(pcb->remote_ip));
  494.     if (netif == NULL) {
  495.       return;
  496.     }
  497.     ip_addr_set(&(pcb->local_ip), &(netif->ip_addr));
  498.   }
  499.   pcb->rtime = 0;
  500.   if (pcb->rttest == 0) {
  501.     pcb->rttest = tcp_ticks;
  502.     pcb->rtseq = ntohl(seg->tcphdr->seqno);
  503.     LWIP_DEBUGF(TCP_RTO_DEBUG, ("tcp_output_segment: rtseq %lun", pcb->rtseq));
  504.   }
  505.   LWIP_DEBUGF(TCP_OUTPUT_DEBUG, ("tcp_output_segment: %lu:%lun",
  506.           htonl(seg->tcphdr->seqno), htonl(seg->tcphdr->seqno) +
  507.           seg->len));
  508.   len = (u16_t)((u8_t *)seg->tcphdr - (u8_t *)seg->p->payload);
  509.   seg->p->len -= len;
  510.   seg->p->tot_len -= len;
  511.   seg->p->payload = seg->tcphdr;
  512.   seg->tcphdr->chksum = 0;
  513. #if CHECKSUM_GEN_TCP
  514.   seg->tcphdr->chksum = inet_chksum_pseudo(seg->p,
  515.              &(pcb->local_ip),
  516.              &(pcb->remote_ip),
  517.              IP_PROTO_TCP, seg->p->tot_len);
  518. #endif
  519.   TCP_STATS_INC(tcp.xmit);
  520.   ip_output(seg->p, &(pcb->local_ip), &(pcb->remote_ip), pcb->ttl, pcb->tos,
  521.       IP_PROTO_TCP);
  522. }
  523. void
  524. tcp_rst(u32_t seqno, u32_t ackno,
  525.   struct ip_addr *local_ip, struct ip_addr *remote_ip,
  526.   u16_t local_port, u16_t remote_port)
  527. {
  528.   struct pbuf *p;
  529.   struct tcp_hdr *tcphdr;
  530.   p = pbuf_alloc(PBUF_IP, TCP_HLEN, PBUF_RAM);
  531.   if (p == NULL) {
  532.       LWIP_DEBUGF(TCP_DEBUG, ("tcp_rst: could not allocate memory for pbufn"));
  533.       return;
  534.   }
  535.   tcphdr = p->payload;
  536.   tcphdr->src = htons(local_port);
  537.   tcphdr->dest = htons(remote_port);
  538.   tcphdr->seqno = htonl(seqno);
  539.   tcphdr->ackno = htonl(ackno);
  540.   TCPH_FLAGS_SET(tcphdr, TCP_RST | TCP_ACK);
  541.   tcphdr->wnd = htons(TCP_WND);
  542.   tcphdr->urgp = 0;
  543.   TCPH_HDRLEN_SET(tcphdr, 5);
  544.   tcphdr->chksum = 0;
  545. #if CHECKSUM_GEN_TCP
  546.   tcphdr->chksum = inet_chksum_pseudo(p, local_ip, remote_ip,
  547.               IP_PROTO_TCP, p->tot_len);
  548. #endif
  549.   TCP_STATS_INC(tcp.xmit);
  550.    /* Send output with hardcoded TTL since we have no access to the pcb */
  551.   ip_output(p, local_ip, remote_ip, TCP_TTL, 0, IP_PROTO_TCP);
  552.   pbuf_free(p);
  553.   LWIP_DEBUGF(TCP_RST_DEBUG, ("tcp_rst: seqno %lu ackno %lu.n", seqno, ackno));
  554. }
  555. /* requeue all unacked segments for retransmission */
  556. void
  557. tcp_rexmit_rto(struct tcp_pcb *pcb)
  558. {
  559.   struct tcp_seg *seg;
  560.   if (pcb->unacked == NULL) {
  561.     return;
  562.   }
  563.   /* Move all unacked segments to the head of the unsent queue */
  564.   for (seg = pcb->unacked; seg->next != NULL; seg = seg->next);
  565.   /* concatenate unsent queue after unacked queue */
  566.   seg->next = pcb->unsent;
  567.   /* unsent queue is the concatenated queue (of unacked, unsent) */
  568.   pcb->unsent = pcb->unacked;
  569.   /* unacked queue is now empty */
  570.   pcb->unacked = NULL;
  571.   pcb->snd_nxt = ntohl(pcb->unsent->tcphdr->seqno);
  572.   /* increment number of retransmissions */
  573.   ++pcb->nrtx;
  574.   /* Don't take any RTT measurements after retransmitting. */
  575.   pcb->rttest = 0;
  576.   /* Do the actual retransmission */
  577.   tcp_output(pcb);
  578. }
  579. void
  580. tcp_rexmit(struct tcp_pcb *pcb)
  581. {
  582.   struct tcp_seg *seg;
  583.   if (pcb->unacked == NULL) {
  584.     return;
  585.   }
  586.   /* Move the first unacked segment to the unsent queue */
  587.   seg = pcb->unacked->next;
  588.   pcb->unacked->next = pcb->unsent;
  589.   pcb->unsent = pcb->unacked;
  590.   pcb->unacked = seg;
  591.   pcb->snd_nxt = ntohl(pcb->unsent->tcphdr->seqno);
  592.   ++pcb->nrtx;
  593.   /* Don't take any rtt measurements after retransmitting. */
  594.   pcb->rttest = 0;
  595.   /* Do the actual retransmission. */
  596.   tcp_output(pcb);
  597. }
  598. void
  599. tcp_keepalive(struct tcp_pcb *pcb)
  600. {
  601.    struct pbuf *p;
  602.    struct tcp_hdr *tcphdr;
  603.    LWIP_DEBUGF(TCP_DEBUG, ("tcp_keepalive: sending KEEPALIVE probe to %u.%u.%u.%un",
  604.                            ip4_addr1(&pcb->remote_ip), ip4_addr2(&pcb->remote_ip),
  605.                            ip4_addr3(&pcb->remote_ip), ip4_addr4(&pcb->remote_ip)));
  606.    LWIP_DEBUGF(TCP_DEBUG, ("tcp_keepalive: tcp_ticks %lu   pcb->tmr %lu  pcb->keep_cnt %un", tcp_ticks, pcb->tmr, pcb->keep_cnt));
  607.    
  608.    p = pbuf_alloc(PBUF_IP, TCP_HLEN, PBUF_RAM);
  609.    if(p == NULL) {
  610.       LWIP_DEBUGF(TCP_DEBUG, ("tcp_keepalive: could not allocate memory for pbufn"));
  611.       return;
  612.    }
  613.    tcphdr = p->payload;
  614.    tcphdr->src = htons(pcb->local_port);
  615.    tcphdr->dest = htons(pcb->remote_port);
  616.    tcphdr->seqno = htonl(pcb->snd_nxt - 1);
  617.    tcphdr->ackno = htonl(pcb->rcv_nxt);
  618.    tcphdr->wnd = htons(pcb->rcv_wnd);
  619.    tcphdr->urgp = 0;
  620.    TCPH_HDRLEN_SET(tcphdr, 5);
  621.    
  622.    tcphdr->chksum = 0;
  623. #if CHECKSUM_GEN_TCP
  624.    tcphdr->chksum = inet_chksum_pseudo(p, &pcb->local_ip, &pcb->remote_ip, IP_PROTO_TCP, p->tot_len);
  625. #endif
  626.   TCP_STATS_INC(tcp.xmit);
  627.    /* Send output to IP */
  628.   ip_output(p, &pcb->local_ip, &pcb->remote_ip, pcb->ttl, 0, IP_PROTO_TCP);
  629.   pbuf_free(p);
  630.   LWIP_DEBUGF(TCP_RST_DEBUG, ("tcp_keepalive: seqno %lu ackno %lu.n", pcb->snd_nxt - 1, pcb->rcv_nxt));
  631. }
  632. #endif /* LWIP_TCP */