2007-11-07 19:54:35 +01:00
|
|
|
/****************************************************************************
|
2014-06-18 18:18:53 +02:00
|
|
|
* net/tcp/tcp_input.c
|
2007-11-07 19:54:35 +01:00
|
|
|
* Handling incoming TCP input
|
|
|
|
*
|
2014-01-14 15:30:35 +01:00
|
|
|
* Copyright (C) 2007-2014 Gregory Nutt. All rights reserved.
|
2012-02-23 16:53:27 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-11-07 19:54:35 +01:00
|
|
|
*
|
|
|
|
* Adapted for NuttX from logic in uIP which also has a BSD-like license:
|
|
|
|
*
|
|
|
|
* Original author Adam Dunkels <adam@dunkels.com>
|
|
|
|
* Copyright () 2001-2003, Adam Dunkels.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
|
|
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2012-02-23 16:53:27 +01:00
|
|
|
|
2007-11-22 19:36:46 +01:00
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_TCP)
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2009-12-15 15:53:45 +01:00
|
|
|
#include <stdint.h>
|
2007-12-11 15:27:11 +01:00
|
|
|
#include <string.h>
|
2007-11-07 19:54:35 +01:00
|
|
|
#include <debug.h>
|
|
|
|
|
2014-06-24 16:53:28 +02:00
|
|
|
#include <nuttx/net/netconfig.h>
|
2014-06-24 17:28:44 +02:00
|
|
|
#include <nuttx/net/netdev.h>
|
2014-06-26 17:32:39 +02:00
|
|
|
#include <nuttx/net/netstats.h>
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <nuttx/net/ip.h>
|
|
|
|
#include <nuttx/net/tcp.h>
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-06-29 02:07:02 +02:00
|
|
|
#include "devif/devif.h"
|
2014-06-28 01:51:32 +02:00
|
|
|
#include "utils/utils.h"
|
2014-06-25 02:12:49 +02:00
|
|
|
#include "tcp/tcp.h"
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-25 02:12:49 +02:00
|
|
|
* Name: tcp_input
|
2007-11-07 19:54:35 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Handle incoming TCP input
|
|
|
|
*
|
|
|
|
* Parameters:
|
2016-06-10 17:36:23 +02:00
|
|
|
* dev - The device driver structure containing the received TCP packet.
|
|
|
|
* tcp - A pointer to the TCP header in the packet
|
|
|
|
* iplen - Combined length of the IP and TCP headers
|
2007-11-07 19:54:35 +01:00
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called from the interrupt level or with interrupts disabled.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-16 22:03:10 +01:00
|
|
|
static void tcp_input(FAR struct net_driver_s *dev, unsigned int iplen)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-16 22:03:10 +01:00
|
|
|
FAR struct tcp_hdr_s *tcp;
|
2014-07-06 20:34:27 +02:00
|
|
|
FAR struct tcp_conn_s *conn = NULL;
|
2015-01-16 22:03:10 +01:00
|
|
|
unsigned int tcpiplen;
|
2015-01-15 22:06:46 +01:00
|
|
|
unsigned int hdrlen;
|
2009-12-15 15:53:45 +01:00
|
|
|
uint16_t tmp16;
|
|
|
|
uint16_t flags;
|
2015-05-28 01:17:42 +02:00
|
|
|
uint16_t result;
|
2009-12-15 15:53:45 +01:00
|
|
|
uint8_t opt;
|
|
|
|
int len;
|
|
|
|
int i;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_STATISTICS
|
2015-01-15 22:06:46 +01:00
|
|
|
/* Bump up the count of TCP packets received */
|
|
|
|
|
2014-06-26 17:32:39 +02:00
|
|
|
g_netstats.tcp.recv++;
|
2007-11-07 19:54:35 +01:00
|
|
|
#endif
|
|
|
|
|
2015-01-16 22:03:10 +01:00
|
|
|
/* Get a pointer to the TCP header. The TCP header lies just after the
|
|
|
|
* the link layer header and the IP header.
|
|
|
|
*/
|
|
|
|
|
|
|
|
tcp = (FAR struct tcp_hdr_s *)&dev->d_buf[iplen + NET_LL_HDRLEN(dev)];
|
|
|
|
|
|
|
|
/* Get the size of the IP header and the TCP header */
|
|
|
|
|
|
|
|
tcpiplen = iplen + TCP_HDRLEN;
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
/* Get the size of the link layer header, the IP header, and the TCP header */
|
|
|
|
|
|
|
|
hdrlen = tcpiplen + NET_LL_HDRLEN(dev);
|
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
/* Start of TCP input header processing code. */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
if (tcp_chksum(dev) != 0xffff)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* Compute and check the TCP checksum. */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_STATISTICS
|
2014-06-26 17:32:39 +02:00
|
|
|
g_netstats.tcp.drop++;
|
|
|
|
g_netstats.tcp.chkerr++;
|
2007-11-07 19:54:35 +01:00
|
|
|
#endif
|
2016-06-20 17:37:08 +02:00
|
|
|
nwarn("WARNING: Bad TCP checksum\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Demultiplex this segment. First check any active connections. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
conn = tcp_active(dev, tcp);
|
2007-11-08 17:01:18 +01:00
|
|
|
if (conn)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2011-01-23 18:40:10 +01:00
|
|
|
/* We found an active connection.. Check for the subsequent SYN
|
2014-07-07 00:10:26 +02:00
|
|
|
* arriving in TCP_SYN_RCVD state after the SYNACK packet was
|
2011-01-23 18:40:10 +01:00
|
|
|
* lost. To avoid other issues, reset any active connection
|
2014-07-07 00:10:26 +02:00
|
|
|
* where a SYN arrives in a state != TCP_SYN_RCVD.
|
2011-01-23 18:40:10 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
if ((conn->tcpstateflags & TCP_STATE_MASK) != TCP_SYN_RCVD &&
|
2015-01-15 22:06:46 +01:00
|
|
|
(tcp->flags & TCP_CTL) == TCP_SYN)
|
2011-01-23 18:40:10 +01:00
|
|
|
{
|
|
|
|
goto reset;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
goto found;
|
|
|
|
}
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2016-03-20 15:19:00 +01:00
|
|
|
/* If we didn't find an active connection that expected the packet,
|
2007-11-07 19:54:35 +01:00
|
|
|
* either (1) this packet is an old duplicate, or (2) this is a SYN packet
|
|
|
|
* destined for a connection in LISTEN. If the SYN flag isn't set,
|
|
|
|
* it is an old packet and we send a RST.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_CTL) == TCP_SYN)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2007-11-08 17:01:18 +01:00
|
|
|
/* This is a SYN packet for a connection. Find the connection
|
|
|
|
* listening on this port.
|
|
|
|
*/
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
tmp16 = tcp->destport;
|
2014-06-25 02:12:49 +02:00
|
|
|
if (tcp_islistener(tmp16))
|
2007-11-08 17:01:18 +01:00
|
|
|
{
|
|
|
|
/* We matched the incoming packet with a connection in LISTEN.
|
|
|
|
* We now need to create a new connection and send a SYNACK in
|
|
|
|
* response.
|
|
|
|
*/
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* First allocate a new connection structure and see if there is any
|
|
|
|
* user application to accept it.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
conn = tcp_alloc_accept(dev, tcp);
|
2007-11-08 17:01:18 +01:00
|
|
|
if (conn)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2009-09-11 20:21:57 +02:00
|
|
|
/* The connection structure was successfully allocated. Now see if
|
2007-11-07 19:54:35 +01:00
|
|
|
* there is an application waiting to accept the connection (or at
|
|
|
|
* least queue it it for acceptance).
|
|
|
|
*/
|
|
|
|
|
2012-02-27 18:22:10 +01:00
|
|
|
conn->crefs = 1;
|
2014-06-25 02:12:49 +02:00
|
|
|
if (tcp_accept_connection(dev, conn, tmp16) != OK)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2012-02-28 00:14:43 +01:00
|
|
|
/* No, then we have to give the connection back and drop the packet */
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2012-02-27 18:22:10 +01:00
|
|
|
conn->crefs = 0;
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_free(conn);
|
2007-11-08 17:01:18 +01:00
|
|
|
conn = NULL;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-08 17:01:18 +01:00
|
|
|
if (!conn)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* Either (1) all available connections are in use, or (2) there is no
|
|
|
|
* application in place to accept the connection. We drop packet and hope that
|
|
|
|
* the remote end will retransmit the packet at a time when we
|
|
|
|
* have more spare connections or someone waiting to accept the connection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_STATISTICS
|
2014-06-26 17:32:39 +02:00
|
|
|
g_netstats.tcp.syndrop++;
|
2007-11-07 19:54:35 +01:00
|
|
|
#endif
|
2016-06-20 17:37:08 +02:00
|
|
|
nerr("ERROR: No free TCP connections\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, 1);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* Parse the TCP MSS option, if present. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->tcpoffset & 0xf0) > 0x50)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-10-08 23:10:04 +02:00
|
|
|
for (i = 0; i < ((tcp->tcpoffset >> 4) - 5) << 2 ; )
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
opt = dev->d_buf[hdrlen + i];
|
2007-11-07 19:54:35 +01:00
|
|
|
if (opt == TCP_OPT_END)
|
|
|
|
{
|
|
|
|
/* End of options. */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (opt == TCP_OPT_NOOP)
|
|
|
|
{
|
|
|
|
/* NOP option. */
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else if (opt == TCP_OPT_MSS &&
|
2015-01-15 22:06:46 +01:00
|
|
|
dev->d_buf[hdrlen + 1 + i] == TCP_OPT_MSS_LEN)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-16 22:03:10 +01:00
|
|
|
uint16_t tcp_mss = TCP_MSS(dev, iplen);
|
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
/* An MSS option with the right option length. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
tmp16 = ((uint16_t)dev->d_buf[hdrlen + 2 + i] << 8) |
|
|
|
|
(uint16_t)dev->d_buf[hdrlen + 3 + i];
|
2015-01-16 22:03:10 +01:00
|
|
|
conn->mss = tmp16 > tcp_mss ? tcp_mss : tmp16;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* And we are done processing options. */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* All other options have a length field, so that we easily
|
|
|
|
* can skip past them.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if (dev->d_buf[hdrlen + 1 + i] == 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* If the length field is zero, the options are malformed
|
|
|
|
* and we don't process them further.
|
|
|
|
*/
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2015-01-15 22:06:46 +01:00
|
|
|
i += dev->d_buf[hdrlen + 1 + i];
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Our response will be a SYNACK. */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_ack(dev, conn, TCP_ACK | TCP_SYN);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is (1) an old duplicate packet or (2) a SYN packet but with
|
|
|
|
* no matching listener found. Send RST packet in either case.
|
|
|
|
*/
|
|
|
|
|
2011-01-23 18:40:10 +01:00
|
|
|
reset:
|
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
/* We do not send resets in response to resets. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_RST) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_STATISTICS
|
2014-06-26 17:32:39 +02:00
|
|
|
g_netstats.tcp.synrst++;
|
2007-11-07 19:54:35 +01:00
|
|
|
#endif
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_reset(dev);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
found:
|
|
|
|
|
2013-09-30 22:37:04 +02:00
|
|
|
/* Update the connection's window size */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
conn->winsize = ((uint16_t)tcp->wnd[0] << 8) + (uint16_t)tcp->wnd[1];
|
2013-09-30 22:37:04 +02:00
|
|
|
|
2007-11-20 00:09:39 +01:00
|
|
|
flags = 0;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* We do a very naive form of TCP reset processing; we just accept
|
|
|
|
* any RST and kill our connection. We should in fact check if the
|
2011-01-23 18:40:10 +01:00
|
|
|
* sequence number of this reset is within our advertised window
|
2007-11-07 19:54:35 +01:00
|
|
|
* before we accept the reset.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_RST) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_CLOSED;
|
2016-06-20 17:37:08 +02:00
|
|
|
nwarn("WARNING: RESET - TCP state: TCP_CLOSED\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
(void)tcp_callback(dev, conn, TCP_ABORT);
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculated the length of the data, if the application has sent
|
|
|
|
* any data to us.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
len = (tcp->tcpoffset >> 4) << 2;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* d_len will contain the length of the actual TCP data. This is
|
2007-12-10 17:28:08 +01:00
|
|
|
* calculated by subtracting the length of the TCP header (in
|
2015-01-16 22:03:10 +01:00
|
|
|
* len) and the length of the IP header.
|
2007-11-07 19:54:35 +01:00
|
|
|
*/
|
|
|
|
|
2015-01-16 22:03:10 +01:00
|
|
|
dev->d_len -= (len + iplen);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* First, check if the sequence number of the incoming packet is
|
|
|
|
* what we're expecting next. If not, we send out an ACK with the
|
2011-01-23 18:40:10 +01:00
|
|
|
* correct numbers in, unless we are in the SYN_RCVD state and
|
|
|
|
* receive a SYN, in which case we should retransmit our SYNACK
|
|
|
|
* (which is done further down).
|
2007-11-07 19:54:35 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
if (!((((conn->tcpstateflags & TCP_STATE_MASK) == TCP_SYN_SENT) &&
|
2015-01-15 22:06:46 +01:00
|
|
|
((tcp->flags & TCP_CTL) == (TCP_SYN | TCP_ACK))) ||
|
2014-07-07 00:10:26 +02:00
|
|
|
(((conn->tcpstateflags & TCP_STATE_MASK) == TCP_SYN_RCVD) &&
|
2015-01-15 22:06:46 +01:00
|
|
|
((tcp->flags & TCP_CTL) == TCP_SYN))))
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((dev->d_len > 0 || ((tcp->flags & (TCP_SYN | TCP_FIN)) != 0)) &&
|
|
|
|
memcmp(tcp->seqno, conn->rcvseq, 4) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2011-01-23 18:40:10 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next, check if the incoming segment acknowledges any outstanding
|
|
|
|
* data. If so, we update the sequence number, reset the length of
|
|
|
|
* the outstanding data, calculate RTT estimations, and reset the
|
|
|
|
* retransmission timer.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_ACK) != 0 && conn->unacked > 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2010-11-27 19:01:54 +01:00
|
|
|
uint32_t unackseq;
|
|
|
|
uint32_t ackseq;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2009-12-19 23:05:12 +01:00
|
|
|
/* The next sequence number is equal to the current sequence
|
2014-04-12 20:13:01 +02:00
|
|
|
* number (sndseq) plus the size of the outstanding, unacknowledged
|
2010-11-27 19:01:54 +01:00
|
|
|
* data (unacked).
|
2009-12-19 23:05:12 +01:00
|
|
|
*/
|
|
|
|
|
2014-01-14 15:30:35 +01:00
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
While working with version 7.10 I discovered a problem in TCP stack that could be observed on high network load. Generally speaking, the problem is that RST flag is set in unnecessary case, in which between loss of some TCP packet and its proper retransmission, another packets had been successfully sent. The scenario is as follows: NuttX did not receive ACK for some sent packet, so it has been probably lost somewhere. But before its retransmission starts, NuttX is correctly issuing next TCP packets, with sequence numbers increasing properly. When the retransmission of previously lost packet finally succeeds, tcp_input receives the accumulated ACK value, which acknowledges also the packets sent in the meantime (i.e. between unsuccessful sending of lost packet and its proper retransmission). However, variable unackseq is still set to conn->isn + conn->sent, which is truth only if no further packets transmission occurred in the meantime. Because of incorrect (in such specific case) unackseq value, few lines further condition if (ackseq <= unackseq)is not met, and, as a result, we are going to reset label.
2016-06-20 14:55:29 +02:00
|
|
|
unackseq = conn->sndseq_max;
|
2014-01-14 15:30:35 +01:00
|
|
|
#else
|
2014-06-25 02:12:49 +02:00
|
|
|
unackseq = tcp_addsequence(conn->sndseq, conn->unacked);
|
2014-01-14 15:30:35 +01:00
|
|
|
#endif
|
2009-12-19 23:05:12 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* Get the sequence number of that has just been acknowledged by this
|
|
|
|
* incoming packet.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
ackseq = tcp_getsequence(tcp->ackno);
|
2010-11-27 19:01:54 +01:00
|
|
|
|
|
|
|
/* Check how many of the outstanding bytes have been acknowledged. For
|
2016-05-30 17:31:44 +02:00
|
|
|
* most send operations, this should always be true. However,
|
2009-12-19 23:05:12 +01:00
|
|
|
* the send() API sends data ahead when it can without waiting for
|
2010-11-27 19:01:54 +01:00
|
|
|
* the ACK. In this case, the 'ackseq' could be less than then the
|
2009-12-19 23:05:12 +01:00
|
|
|
* new sequence number.
|
|
|
|
*/
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
if (ackseq <= unackseq)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-04-12 20:13:01 +02:00
|
|
|
/* Calculate the new number of outstanding, unacknowledged bytes */
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
conn->unacked = unackseq - ackseq;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* What would it mean if ackseq > unackseq? The peer has ACKed
|
|
|
|
* more bytes than we think we have sent? Someone has lost it.
|
2014-01-14 15:30:35 +01:00
|
|
|
* Complain and reset the number of outstanding, unacknowledged
|
2010-11-27 19:01:54 +01:00
|
|
|
* bytes
|
|
|
|
*/
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
if ((conn->tcpstateflags & TCP_STATE_MASK) == TCP_ESTABLISHED)
|
2014-01-14 15:30:35 +01:00
|
|
|
{
|
2016-06-20 17:37:08 +02:00
|
|
|
nwarn("WARNING: conn->sndseq %d, conn->unacked %d\n",
|
|
|
|
tcp_getsequence(conn->sndseq), conn->unacked);
|
2014-01-14 15:30:35 +01:00
|
|
|
goto reset;
|
|
|
|
}
|
2010-11-27 19:01:54 +01:00
|
|
|
}
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* Update sequence number to the unacknowledge sequence number. If
|
|
|
|
* there is still outstanding, unacknowledged data, then this will
|
|
|
|
* be beyond ackseq.
|
|
|
|
*/
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("sndseq: %08x->%08x unackseq: %08x new unacked: %d\n",
|
|
|
|
conn->sndseq, ackseq, unackseq, conn->unacked);
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_setsequence(conn->sndseq, ackseq);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* Do RTT estimation, unless we have done retransmissions. */
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
if (conn->nrtx == 0)
|
|
|
|
{
|
|
|
|
signed char m;
|
|
|
|
m = conn->rto - conn->timer;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* This is taken directly from VJs original code in his paper */
|
|
|
|
|
|
|
|
m = m - (conn->sa >> 3);
|
|
|
|
conn->sa += m;
|
|
|
|
if (m < 0)
|
|
|
|
{
|
|
|
|
m = -m;
|
|
|
|
}
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
m = m - (conn->sv >> 2);
|
|
|
|
conn->sv += m;
|
|
|
|
conn->rto = (conn->sa >> 3) + conn->sv;
|
|
|
|
}
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* Set the acknowledged flag. */
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
flags |= TCP_ACKDATA;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
/* Reset the retransmission timer. */
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2010-11-27 19:01:54 +01:00
|
|
|
conn->timer = conn->rto;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Do different things depending on in what state the connection is. */
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
switch (conn->tcpstateflags & TCP_STATE_MASK)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* CLOSED and LISTEN are not handled here. CLOSE_WAIT is not
|
|
|
|
* implemented, since we force the application to close when the
|
|
|
|
* peer sends a FIN (hence the application goes directly from
|
|
|
|
* ESTABLISHED to LAST_ACK).
|
|
|
|
*/
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_SYN_RCVD:
|
2007-11-07 19:54:35 +01:00
|
|
|
/* In SYN_RCVD we have sent out a SYNACK in response to a SYN, and
|
|
|
|
* we are waiting for an ACK that acknowledges the data we sent
|
2014-07-07 01:22:02 +02:00
|
|
|
* out the last time. Therefore, we want to have the TCP_ACKDATA
|
2007-11-07 19:54:35 +01:00
|
|
|
* flag set. If so, we enter the ESTABLISHED state.
|
|
|
|
*/
|
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((flags & TCP_ACKDATA) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_ESTABLISHED;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-01-14 15:30:35 +01:00
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
2015-01-15 22:06:46 +01:00
|
|
|
conn->isn = tcp_getsequence(tcp->ackno);
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_setsequence(conn->sndseq, conn->isn);
|
2014-01-14 15:30:35 +01:00
|
|
|
conn->sent = 0;
|
While working with version 7.10 I discovered a problem in TCP stack that could be observed on high network load. Generally speaking, the problem is that RST flag is set in unnecessary case, in which between loss of some TCP packet and its proper retransmission, another packets had been successfully sent. The scenario is as follows: NuttX did not receive ACK for some sent packet, so it has been probably lost somewhere. But before its retransmission starts, NuttX is correctly issuing next TCP packets, with sequence numbers increasing properly. When the retransmission of previously lost packet finally succeeds, tcp_input receives the accumulated ACK value, which acknowledges also the packets sent in the meantime (i.e. between unsuccessful sending of lost packet and its proper retransmission). However, variable unackseq is still set to conn->isn + conn->sent, which is truth only if no further packets transmission occurred in the meantime. Because of incorrect (in such specific case) unackseq value, few lines further condition if (ackseq <= unackseq)is not met, and, as a result, we are going to reset label.
2016-06-20 14:55:29 +02:00
|
|
|
conn->sndseq_max = 0;
|
2014-01-14 15:30:35 +01:00
|
|
|
#endif
|
|
|
|
conn->unacked = 0;
|
2014-07-07 01:22:02 +02:00
|
|
|
flags = TCP_CONNECTED;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_ESTABLISHED\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2014-07-07 01:22:02 +02:00
|
|
|
flags |= TCP_NEWDATA;
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, dev->d_len);
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2007-11-08 17:01:18 +01:00
|
|
|
dev->d_sndlen = 0;
|
2014-06-25 02:12:49 +02:00
|
|
|
result = tcp_callback(dev, conn, flags);
|
|
|
|
tcp_appsend(dev, conn, result);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2011-01-23 18:40:10 +01:00
|
|
|
|
|
|
|
/* We need to retransmit the SYNACK */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_CTL) == TCP_SYN)
|
2011-01-23 18:40:10 +01:00
|
|
|
{
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_ack(dev, conn, TCP_ACK | TCP_SYN);
|
2011-01-23 18:40:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-04-12 20:13:01 +02:00
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_SYN_SENT:
|
2007-11-07 19:54:35 +01:00
|
|
|
/* In SYN_SENT, we wait for a SYNACK that is sent in response to
|
2010-11-27 02:01:26 +01:00
|
|
|
* our SYN. The rcvseq is set to sequence number in the SYNACK
|
2007-11-07 19:54:35 +01:00
|
|
|
* plus one, and we send an ACK. We move into the ESTABLISHED
|
|
|
|
* state.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((flags & TCP_ACKDATA) != 0 && (tcp->flags & TCP_CTL) == (TCP_SYN | TCP_ACK))
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* Parse the TCP MSS option, if present. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->tcpoffset & 0xf0) > 0x50)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-10-08 23:10:04 +02:00
|
|
|
for (i = 0; i < ((tcp->tcpoffset >> 4) - 5) << 2 ; )
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
opt = dev->d_buf[hdrlen + i];
|
2007-11-07 19:54:35 +01:00
|
|
|
if (opt == TCP_OPT_END)
|
|
|
|
{
|
|
|
|
/* End of options. */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (opt == TCP_OPT_NOOP)
|
|
|
|
{
|
|
|
|
/* NOP option. */
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
else if (opt == TCP_OPT_MSS &&
|
2015-01-15 22:06:46 +01:00
|
|
|
dev->d_buf[hdrlen + 1 + i] == TCP_OPT_MSS_LEN)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2015-01-16 22:03:10 +01:00
|
|
|
uint16_t tcp_mss = TCP_MSS(dev, iplen);
|
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
/* An MSS option with the right option length. */
|
|
|
|
|
|
|
|
tmp16 =
|
2015-01-15 22:06:46 +01:00
|
|
|
(dev->d_buf[hdrlen + 2 + i] << 8) |
|
|
|
|
dev->d_buf[hdrlen + 3 + i];
|
2015-01-16 22:03:10 +01:00
|
|
|
conn->mss = tmp16 > tcp_mss ? tcp_mss : tmp16;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* And we are done processing options. */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* All other options have a length field, so that we
|
|
|
|
* easily can skip past them.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if (dev->d_buf[hdrlen + 1 + i] == 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* If the length field is zero, the options are
|
|
|
|
* malformed and we don't process them further.
|
|
|
|
*/
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2015-01-15 22:06:46 +01:00
|
|
|
i += dev->d_buf[hdrlen + 1 + i];
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_ESTABLISHED;
|
2015-01-15 22:06:46 +01:00
|
|
|
memcpy(conn->rcvseq, tcp->seqno, 4);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, 1);
|
2010-11-27 02:01:26 +01:00
|
|
|
conn->unacked = 0;
|
2014-01-14 15:30:35 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
2015-01-15 22:06:46 +01:00
|
|
|
conn->isn = tcp_getsequence(tcp->ackno);
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_setsequence(conn->sndseq, conn->isn);
|
2014-01-14 15:30:35 +01:00
|
|
|
#endif
|
2007-11-08 17:01:18 +01:00
|
|
|
dev->d_len = 0;
|
|
|
|
dev->d_sndlen = 0;
|
2014-01-14 15:30:35 +01:00
|
|
|
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_ESTABLISHED\n");
|
2014-07-07 01:22:02 +02:00
|
|
|
result = tcp_callback(dev, conn, TCP_CONNECTED | TCP_NEWDATA);
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_appsend(dev, conn, result);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Inform the application that the connection failed */
|
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
(void)tcp_callback(dev, conn, TCP_ABORT);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* The connection is closed after we send the RST */
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_CLOSED;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("Connection failed - TCP state: TCP_CLOSED\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
/* We do not send resets in response to resets. */
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_RST) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
goto drop;
|
|
|
|
}
|
2014-04-12 20:13:01 +02:00
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_reset(dev);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_ESTABLISHED:
|
2007-11-07 19:54:35 +01:00
|
|
|
/* In the ESTABLISHED state, we call upon the application to feed
|
2014-07-07 01:22:02 +02:00
|
|
|
* data into the d_buf. If the TCP_ACKDATA flag is set, the
|
2007-11-07 19:54:35 +01:00
|
|
|
* application should put new data into the buffer, otherwise we are
|
|
|
|
* retransmitting an old segment, and the application should put that
|
|
|
|
* data into the buffer.
|
|
|
|
*
|
|
|
|
* If the incoming packet is a FIN, we should close the connection on
|
|
|
|
* this side as well, and we send out a FIN and enter the LAST_ACK
|
|
|
|
* state. We require that there is no outstanding data; otherwise the
|
|
|
|
* sequence numbers will be screwed up.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_FIN) != 0 && (conn->tcpstateflags & TCP_STOPPED) == 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2013-10-17 17:45:38 +02:00
|
|
|
/* Needs to be investigated further.
|
|
|
|
* Windows often sends FIN packets together with the last ACK for
|
|
|
|
* the received data. So the socket layer has to get this ACK even
|
|
|
|
* if the connection is going to be closed.
|
|
|
|
*/
|
|
|
|
#if 0
|
2010-11-27 02:01:26 +01:00
|
|
|
if (conn->unacked > 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
goto drop;
|
|
|
|
}
|
2013-10-17 17:45:38 +02:00
|
|
|
#endif
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2012-02-23 16:53:27 +01:00
|
|
|
/* Update the sequence number and indicate that the connection has
|
|
|
|
* been closed.
|
|
|
|
*/
|
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, dev->d_len + 1);
|
2014-07-07 01:22:02 +02:00
|
|
|
flags |= TCP_CLOSE;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2014-07-07 01:22:02 +02:00
|
|
|
flags |= TCP_NEWDATA;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
(void)tcp_callback(dev, conn, flags);
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_LAST_ACK;
|
2010-11-27 02:01:26 +01:00
|
|
|
conn->unacked = 1;
|
2007-11-08 17:01:18 +01:00
|
|
|
conn->nrtx = 0;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_LAST_ACK\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_FIN | TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the URG flag. If this is set, the segment carries urgent
|
2007-11-22 15:42:52 +01:00
|
|
|
* data that we must pass to the application.
|
|
|
|
*/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_URG) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2007-11-22 15:42:52 +01:00
|
|
|
#ifdef CONFIG_NET_TCPURGDATA
|
2015-01-15 22:06:46 +01:00
|
|
|
dev->d_urglen = (tcp->urgp[0] << 8) | tcp->urgp[1];
|
2007-11-22 15:42:52 +01:00
|
|
|
if (dev->d_urglen > dev->d_len)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
|
|
|
/* There is more urgent data in the next segment to come. */
|
|
|
|
|
2007-11-22 15:42:52 +01:00
|
|
|
dev->d_urglen = dev->d_len;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, dev->d_urglen);
|
2007-11-22 15:42:52 +01:00
|
|
|
dev->d_len -= dev->d_urglen;
|
|
|
|
dev->d_urgdata = dev->d_appdata;
|
|
|
|
dev->d_appdata += dev->d_urglen;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-22 15:42:52 +01:00
|
|
|
dev->d_urglen = 0;
|
|
|
|
#else /* CONFIG_NET_TCPURGDATA */
|
2015-10-08 23:10:04 +02:00
|
|
|
dev->d_appdata = ((FAR uint8_t *)dev->d_appdata) + ((tcp->urgp[0] << 8) |
|
|
|
|
tcp->urgp[1]);
|
2015-01-15 22:06:46 +01:00
|
|
|
dev->d_len -= (tcp->urgp[0] << 8) | tcp->urgp[1];
|
2007-11-22 15:42:52 +01:00
|
|
|
#endif /* CONFIG_NET_TCPURGDATA */
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If d_len > 0 we have TCP data in the packet, and we flag this
|
2014-07-07 01:22:02 +02:00
|
|
|
* by setting the TCP_NEWDATA flag. If the application has stopped
|
2014-07-07 00:10:26 +02:00
|
|
|
* the data flow using TCP_STOPPED, we must not accept any data
|
2012-02-23 16:53:27 +01:00
|
|
|
* packets from the remote host.
|
2007-11-07 19:54:35 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
if (dev->d_len > 0 && (conn->tcpstateflags & TCP_STOPPED) == 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 01:22:02 +02:00
|
|
|
flags |= TCP_NEWDATA;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If this packet constitutes an ACK for outstanding data (flagged
|
2014-07-07 01:22:02 +02:00
|
|
|
* by the TCP_ACKDATA flag), we should call the application since it
|
2007-11-07 19:54:35 +01:00
|
|
|
* might want to send more data. If the incoming packet had data
|
2014-07-07 01:22:02 +02:00
|
|
|
* from the peer (as flagged by the TCP_NEWDATA flag), the
|
2007-11-07 19:54:35 +01:00
|
|
|
* application must also be notified.
|
|
|
|
*
|
|
|
|
* When the application is called, the d_len field
|
|
|
|
* contains the length of the incoming data. The application can
|
|
|
|
* access the incoming data through the global pointer
|
2015-01-16 22:03:10 +01:00
|
|
|
* d_appdata, which usually points hdrlen bytes into the d_buf
|
|
|
|
* array.
|
2007-11-07 19:54:35 +01:00
|
|
|
*
|
|
|
|
* If the application wishes to send any data, this data should be
|
|
|
|
* put into the d_appdata and the length of the data should be
|
|
|
|
* put into d_len. If the application don't have any data to
|
|
|
|
* send, d_len must be set to 0.
|
|
|
|
*/
|
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((flags & (TCP_NEWDATA | TCP_ACKDATA)) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2012-02-23 16:53:27 +01:00
|
|
|
/* Clear sndlen and remember the size in d_len. The application
|
|
|
|
* may modify d_len and we will need this value later when we
|
|
|
|
* update the sequence number.
|
|
|
|
*/
|
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
dev->d_sndlen = 0;
|
2012-02-23 16:53:27 +01:00
|
|
|
len = dev->d_len;
|
|
|
|
|
|
|
|
/* Provide the packet to the application */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
result = tcp_callback(dev, conn, flags);
|
2012-02-23 16:53:27 +01:00
|
|
|
|
|
|
|
/* If the application successfully handled the incoming data,
|
2014-07-07 01:22:02 +02:00
|
|
|
* then TCP_SNDACK will be set in the result. In this case,
|
2012-02-23 16:53:27 +01:00
|
|
|
* we need to update the sequence number. The ACK will be
|
2014-06-25 02:12:49 +02:00
|
|
|
* send by tcp_appsend().
|
2012-02-23 16:53:27 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((result & TCP_SNDACK) != 0)
|
2012-02-23 16:53:27 +01:00
|
|
|
{
|
|
|
|
/* Update the sequence number using the saved length */
|
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, len);
|
2012-02-23 16:53:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Send the response, ACKing the data or not, as appropriate */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_appsend(dev, conn, result);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2014-04-12 20:13:01 +02:00
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_LAST_ACK:
|
2007-11-07 19:54:35 +01:00
|
|
|
/* We can close this connection if the peer has acknowledged our
|
2014-07-07 01:22:02 +02:00
|
|
|
* FIN. This is indicated by the TCP_ACKDATA flag.
|
2007-11-07 19:54:35 +01:00
|
|
|
*/
|
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((flags & TCP_ACKDATA) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_CLOSED;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP_LAST_ACK TCP state: TCP_CLOSED\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 01:22:02 +02:00
|
|
|
(void)tcp_callback(dev, conn, TCP_CLOSE);
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_FIN_WAIT_1:
|
2007-11-07 19:54:35 +01:00
|
|
|
/* The application has closed the connection, but the remote host
|
2014-01-14 15:30:35 +01:00
|
|
|
* hasn't closed its end yet. Thus we stay in the FIN_WAIT_1 state
|
|
|
|
* until we receive a FIN from the remote.
|
2007-11-07 19:54:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, dev->d_len);
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2010-11-27 19:01:54 +01:00
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_FIN) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((flags & TCP_ACKDATA) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_TIME_WAIT;
|
2007-11-08 17:01:18 +01:00
|
|
|
conn->timer = 0;
|
2010-11-27 02:01:26 +01:00
|
|
|
conn->unacked = 0;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_TIME_WAIT\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_CLOSING;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_CLOSING\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, 1);
|
2014-07-07 01:22:02 +02:00
|
|
|
(void)tcp_callback(dev, conn, TCP_CLOSE);
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2014-07-07 01:22:02 +02:00
|
|
|
else if ((flags & TCP_ACKDATA) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_FIN_WAIT_2;
|
2010-11-27 02:01:26 +01:00
|
|
|
conn->unacked = 0;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_FIN_WAIT_2\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2014-01-14 15:30:35 +01:00
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_FIN_WAIT_2:
|
2007-11-07 19:54:35 +01:00
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, dev->d_len);
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
if ((tcp->flags & TCP_FIN) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_TIME_WAIT;
|
2007-11-08 17:01:18 +01:00
|
|
|
conn->timer = 0;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_TIME_WAIT\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-06-28 01:51:32 +02:00
|
|
|
net_incr32(conn->rcvseq, 1);
|
2014-07-07 01:22:02 +02:00
|
|
|
(void)tcp_callback(dev, conn, TCP_CLOSE);
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dev->d_len > 0)
|
|
|
|
{
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
2014-01-14 15:30:35 +01:00
|
|
|
|
2007-11-07 19:54:35 +01:00
|
|
|
goto drop;
|
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_TIME_WAIT:
|
2015-01-15 22:06:46 +01:00
|
|
|
tcp_send(dev, conn, TCP_ACK, tcpiplen);
|
2007-11-08 17:01:18 +01:00
|
|
|
return;
|
2007-11-07 19:54:35 +01:00
|
|
|
|
2014-07-07 00:10:26 +02:00
|
|
|
case TCP_CLOSING:
|
2014-07-07 01:22:02 +02:00
|
|
|
if ((flags & TCP_ACKDATA) != 0)
|
2007-11-07 19:54:35 +01:00
|
|
|
{
|
2014-07-07 00:10:26 +02:00
|
|
|
conn->tcpstateflags = TCP_TIME_WAIT;
|
2007-11-08 17:01:18 +01:00
|
|
|
conn->timer = 0;
|
2016-06-20 17:37:08 +02:00
|
|
|
ninfo("TCP state: TCP_TIME_WAIT\n");
|
2007-11-07 19:54:35 +01:00
|
|
|
}
|
|
|
|
|
2007-11-08 17:01:18 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-11-07 19:54:35 +01:00
|
|
|
|
|
|
|
drop:
|
|
|
|
dev->d_len = 0;
|
|
|
|
}
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tcp_ipv4_input
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Handle incoming TCP input with IPv4 header
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* dev - The device driver structure containing the received TCP packet.
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called from the Ethernet driver with the network stack locked
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
void tcp_ipv4_input(FAR struct net_driver_s *dev)
|
|
|
|
{
|
2015-01-17 14:42:09 +01:00
|
|
|
/* Configure to receive an TCP IPv4 packet */
|
|
|
|
|
|
|
|
tcp_ipv4_select(dev);
|
|
|
|
|
|
|
|
/* Then process in the TCP IPv4 input */
|
|
|
|
|
2015-01-16 22:03:10 +01:00
|
|
|
tcp_input(dev, IPv4_HDRLEN);
|
2015-01-15 22:06:46 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: tcp_ipv6_input
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Handle incoming TCP input with IPv4 header
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* dev - The device driver structure containing the received TCP packet.
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called from the Ethernet driver with the network stack locked
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
void tcp_ipv6_input(FAR struct net_driver_s *dev)
|
|
|
|
{
|
2015-01-17 14:42:09 +01:00
|
|
|
/* Configure to receive an TCP IPv6 packet */
|
|
|
|
|
|
|
|
tcp_ipv6_select(dev);
|
|
|
|
|
|
|
|
/* Then process in the TCP IPv6 input */
|
|
|
|
|
2015-01-16 22:03:10 +01:00
|
|
|
tcp_input(dev, IPv6_HDRLEN);
|
2015-01-15 22:06:46 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-11-22 19:36:46 +01:00
|
|
|
#endif /* CONFIG_NET && CONFIG_NET_TCP */
|