2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2008-12-12 19:33:36 +01:00
|
|
|
* net/net_close.c
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
2014-01-13 18:58:45 +01:00
|
|
|
* Copyright (C) 2007-2014 Gregory Nutt. All rights reserved.
|
2012-01-30 22:29:59 +01:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* 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. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "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
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS 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>
|
|
|
|
#ifdef CONFIG_NET
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2009-12-15 16:57:25 +01:00
|
|
|
#include <stdint.h>
|
2014-01-13 18:58:45 +01:00
|
|
|
#include <stdbool.h>
|
2007-09-03 22:34:44 +02:00
|
|
|
#include <errno.h>
|
2007-11-24 14:02:03 +01:00
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <arch/irq.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/tcp.h>
|
|
|
|
#include <nuttx/net/udp.h>
|
|
|
|
#include <nuttx/net/pkt.h>
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
# include <nuttx/clock.h>
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 18:14:15 +02:00
|
|
|
#include "net.h"
|
2014-06-27 17:56:45 +02:00
|
|
|
#include "netdev/netdev.h"
|
2014-06-24 18:14:15 +02:00
|
|
|
#include "uip/uip.h"
|
2014-06-25 18:34:52 +02:00
|
|
|
#include "pkt/pkt.h"
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2007-11-24 14:02:03 +01:00
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_TCP
|
|
|
|
struct tcp_close_s
|
|
|
|
{
|
|
|
|
FAR struct uip_callback_s *cl_cb; /* Reference to TCP callback instance */
|
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
FAR struct socket *cl_psock; /* Reference to the TCP socket */
|
|
|
|
sem_t cl_sem; /* Signals disconnect completion */
|
|
|
|
int cl_result; /* The result of the close */
|
|
|
|
#ifndef CONFIG_DISABLE_CLOCK
|
|
|
|
uint32_t cl_start; /* Time close started (in ticks) */
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2007-11-24 14:02:03 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Function: close_timeout
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Check for a timeout on a lingering close.
|
|
|
|
*
|
|
|
|
* Parameters:
|
2014-01-13 19:04:01 +01:00
|
|
|
* pstate - close state structure
|
2014-01-13 18:58:45 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* TRUE:timeout FALSE:no timeout
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Running at the interrupt level
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(CONFIG_NET_TCP) && defined(CONFIG_NET_SOLINGER) && \
|
|
|
|
!defined(CONFIG_DISABLE_CLOCK)
|
|
|
|
static inline int close_timeout(FAR struct tcp_close_s *pstate)
|
|
|
|
{
|
|
|
|
FAR struct socket *psock = 0;
|
|
|
|
|
|
|
|
/* Make sure that we are performing a lingering close */
|
|
|
|
|
|
|
|
if (pstate)
|
|
|
|
{
|
|
|
|
/* Yes Check for a timeout configured via setsockopts(SO_LINGER).
|
|
|
|
* If none... we well let the send wait forever.
|
|
|
|
*/
|
|
|
|
|
|
|
|
psock = pstate->cl_psock;
|
|
|
|
if (psock && psock->s_linger != 0)
|
|
|
|
{
|
|
|
|
/* Check if the configured timeout has elapsed */
|
|
|
|
|
|
|
|
return net_timeo(pstate->cl_start, psock->s_linger);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No timeout */
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_SOCKOPTS && CONFIG_NET_SOLINGER && !CONFIG_DISABLE_CLOCK */
|
|
|
|
|
2007-11-24 14:02:03 +01:00
|
|
|
/****************************************************************************
|
2012-01-31 21:32:49 +01:00
|
|
|
* Function: netclose_interrupt
|
2007-11-24 14:02:03 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2012-01-31 21:32:49 +01:00
|
|
|
* Handle uIP callback events.
|
2007-11-24 14:02:03 +01:00
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* conn - uIP TCP connection structure
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called from normal user-level logic
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP
|
2014-06-28 00:48:12 +02:00
|
|
|
static uint16_t netclose_interrupt(FAR struct net_driver_s *dev,
|
2013-10-06 17:48:54 +02:00
|
|
|
FAR void *pvconn, FAR void *pvpriv,
|
|
|
|
uint16_t flags)
|
2007-11-24 14:02:03 +01:00
|
|
|
{
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
2014-06-25 02:12:49 +02:00
|
|
|
FAR struct tcp_close_s *pstate = (FAR struct tcp_close_s *)pvpriv;
|
2014-01-13 18:58:45 +01:00
|
|
|
#endif
|
2014-06-25 02:12:49 +02:00
|
|
|
FAR struct tcp_conn_s *conn = (FAR struct tcp_conn_s *)pvconn;
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2013-10-06 17:48:54 +02:00
|
|
|
DEBUGASSERT(conn != NULL);
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2013-10-17 17:13:31 +02:00
|
|
|
nllvdbg("conn: %p flags: %04x\n", conn, flags);
|
2013-10-06 17:48:54 +02:00
|
|
|
|
|
|
|
/* UIP_CLOSE: The remote host has closed the connection
|
|
|
|
* UIP_ABORT: The remote host has aborted the connection
|
|
|
|
* UIP_TIMEDOUT: The remote did not respond, the connection timed out
|
|
|
|
*/
|
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
if ((flags & (UIP_CLOSE | UIP_ABORT | UIP_TIMEDOUT)) != 0)
|
2007-11-24 14:02:03 +01:00
|
|
|
{
|
2014-01-13 18:58:45 +01:00
|
|
|
/* The disconnection is complete */
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
/* pstate non-NULL means that we are performing a LINGERing close.*/
|
|
|
|
|
|
|
|
if (pstate)
|
|
|
|
{
|
2014-01-14 16:43:59 +01:00
|
|
|
/* Wake up the waiting thread with a successful result */
|
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
pstate->cl_result = OK;
|
|
|
|
goto end_wait;
|
|
|
|
}
|
2013-10-08 17:14:27 +02:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
/* Otherwise, nothing is waiting on the close event and we can perform
|
|
|
|
* the completion actions here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Free connection resources */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_free(conn);
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
/* Stop further callbacks */
|
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-14 00:11:01 +01:00
|
|
|
#if defined(CONFIG_NET_SOLINGER) && !defined(CONFIG_DISABLE_CLOCK)
|
2014-01-13 18:58:45 +01:00
|
|
|
/* Check for a timeout. */
|
|
|
|
|
|
|
|
else if (pstate && close_timeout(pstate))
|
|
|
|
{
|
2014-01-14 16:43:59 +01:00
|
|
|
/* Yes.. Wake up the waiting thread and report the timeout */
|
2013-10-08 17:14:27 +02:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
nlldbg("CLOSE timeout\n");
|
|
|
|
pstate->cl_result = -ETIMEDOUT;
|
|
|
|
goto end_wait;
|
2013-10-06 17:48:54 +02:00
|
|
|
}
|
2014-01-13 18:58:45 +01:00
|
|
|
|
2014-01-14 00:11:01 +01:00
|
|
|
#endif /* CONFIG_NET_SOLINGER && !CONFIG_DISABLE_CLOCK */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
2014-01-13 18:58:45 +01:00
|
|
|
/* Check if all outstanding bytes have been ACKed */
|
|
|
|
|
2014-01-14 16:43:59 +01:00
|
|
|
else if (conn->unacked != 0)
|
2014-01-13 18:58:45 +01:00
|
|
|
{
|
|
|
|
/* No... we are still waiting for ACKs. Drop any received data, but
|
|
|
|
* do not yet report UIP_CLOSE in the response.
|
|
|
|
*/
|
|
|
|
|
2014-04-13 22:32:20 +02:00
|
|
|
dev->d_len = 0;
|
|
|
|
flags = (flags & ~UIP_NEWDATA);
|
2014-01-13 18:58:45 +01:00
|
|
|
}
|
|
|
|
|
2014-01-14 00:11:01 +01:00
|
|
|
#endif /* CONFIG_NET_TCP_WRITE_BUFFERS */
|
2014-01-13 18:58:45 +01:00
|
|
|
|
2013-10-06 17:48:54 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Drop data received in this state and make sure that UIP_CLOSE
|
|
|
|
* is set in the response
|
|
|
|
*/
|
|
|
|
|
|
|
|
dev->d_len = 0;
|
2013-10-08 17:14:27 +02:00
|
|
|
flags = (flags & ~UIP_NEWDATA) | UIP_CLOSE;
|
2007-11-24 14:02:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return flags;
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
end_wait:
|
|
|
|
pstate->cl_cb->flags = 0;
|
|
|
|
pstate->cl_cb->priv = NULL;
|
|
|
|
pstate->cl_cb->event = NULL;
|
|
|
|
sem_post(&pstate->cl_sem);
|
|
|
|
|
|
|
|
nllvdbg("Resuming\n");
|
|
|
|
return 0;
|
|
|
|
#endif
|
2007-11-24 14:02:03 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_TCP */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Function: netclose_disconnect
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Break any current TCP connection
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* conn - uIP TCP connection structure
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called from normal user-level logic
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP
|
2014-01-13 18:58:45 +01:00
|
|
|
static inline int netclose_disconnect(FAR struct socket *psock)
|
2007-11-24 14:02:03 +01:00
|
|
|
{
|
2014-01-13 18:58:45 +01:00
|
|
|
struct tcp_close_s state;
|
2014-06-25 02:12:49 +02:00
|
|
|
FAR struct tcp_conn_s *conn;
|
2014-06-26 22:23:21 +02:00
|
|
|
net_lock_t flags;
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
bool linger;
|
|
|
|
#endif
|
|
|
|
int ret = OK;
|
2007-11-24 14:02:03 +01:00
|
|
|
|
|
|
|
/* Interrupts are disabled here to avoid race conditions */
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
flags = net_lock();
|
2014-06-25 02:12:49 +02:00
|
|
|
conn = (FAR struct tcp_conn_s *)psock->s_conn;
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2014-01-15 01:19:43 +01:00
|
|
|
/* If we have a semi-permanent write buffer callback in place, then
|
|
|
|
* release it now.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_TCP_WRITE_BUFFERS
|
|
|
|
if (psock->s_sndcb)
|
|
|
|
{
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_callbackfree(conn, psock->s_sndcb);
|
2014-01-15 01:19:43 +01:00
|
|
|
psock->s_sndcb = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* There shouldn't be any callbacks registered. */
|
2013-10-06 17:48:54 +02:00
|
|
|
|
2014-01-15 01:19:43 +01:00
|
|
|
DEBUGASSERT(conn && conn->list == NULL);
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2013-10-08 17:14:27 +02:00
|
|
|
/* Check for the case where the host beat us and disconnected first */
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2013-10-17 17:13:31 +02:00
|
|
|
if (conn->tcpstateflags == UIP_ESTABLISHED &&
|
2014-06-25 02:12:49 +02:00
|
|
|
(state.cl_cb = tcp_callbackalloc(conn)) != NULL)
|
2013-10-08 17:14:27 +02:00
|
|
|
{
|
|
|
|
/* Set up to receive TCP data event callbacks */
|
2007-11-28 16:25:09 +01:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
state.cl_cb->flags = (UIP_NEWDATA | UIP_POLL | UIP_CLOSE | UIP_ABORT | \
|
|
|
|
UIP_TIMEDOUT);
|
|
|
|
state.cl_cb->event = netclose_interrupt;
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
/* Check for a lingering close */
|
|
|
|
|
|
|
|
linger = _SO_GETOPT(psock->s_options, SO_LINGER);
|
|
|
|
|
|
|
|
/* Has a lingering close been requested */
|
|
|
|
|
|
|
|
if (linger)
|
|
|
|
{
|
|
|
|
/* A non-NULL value of the priv field means that lingering is
|
|
|
|
* enabled.
|
|
|
|
*/
|
|
|
|
|
2014-01-13 19:04:01 +01:00
|
|
|
state.cl_cb->priv = (FAR void *)&state;
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
/* Set up for the lingering wait */
|
|
|
|
|
|
|
|
state.cl_psock = psock;
|
|
|
|
state.cl_result = -EBUSY;
|
|
|
|
sem_init(&state.cl_sem, 0, 0);
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_CLOCK
|
|
|
|
/* Record the time that we started the wait (in ticks) */
|
|
|
|
|
|
|
|
state.cl_start = clock_systimer();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* CONFIG_NET_SOLINGER */
|
|
|
|
|
|
|
|
{
|
|
|
|
/* We will close immediately. The NULL priv field signals this */
|
|
|
|
|
|
|
|
state.cl_cb->priv = NULL;
|
2007-11-28 16:25:09 +01:00
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
/* No further references on the connection */
|
|
|
|
|
|
|
|
conn->crefs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notify the device driver of the availability of TX data */
|
2007-11-24 14:02:03 +01:00
|
|
|
|
2013-10-08 17:14:27 +02:00
|
|
|
netdev_txnotify(conn->ripaddr);
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_SOLINGER
|
|
|
|
/* Wait only if we are lingering */
|
|
|
|
|
|
|
|
if (linger)
|
|
|
|
{
|
|
|
|
/* Wait for the disconnect event */
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
(void)net_lockedwait(&state.cl_sem);
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
/* We are now disconnected */
|
|
|
|
|
|
|
|
sem_destroy(&state.cl_sem);
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_callbackfree(conn, state.cl_cb);
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
/* Free the connection */
|
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
conn->crefs = 0; /* No more references on the connection */
|
|
|
|
tcp_free(conn); /* Free uIP resources */
|
2014-01-13 18:58:45 +01:00
|
|
|
|
|
|
|
/* Get the result of the close */
|
|
|
|
|
|
|
|
ret = state.cl_result;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_SOLINGER */
|
2013-10-08 17:14:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_free(conn);
|
2007-11-24 14:02:03 +01:00
|
|
|
}
|
|
|
|
|
2014-06-26 22:23:21 +02:00
|
|
|
net_unlock(flags);
|
2014-01-13 18:58:45 +01:00
|
|
|
return ret;
|
2007-11-24 14:02:03 +01:00
|
|
|
}
|
2014-01-13 18:58:45 +01:00
|
|
|
#endif /* CONFIG_NET_TCP */
|
2007-11-24 14:02:03 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-01-30 22:29:59 +01:00
|
|
|
* Function: psock_close
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2012-01-30 22:29:59 +01:00
|
|
|
* Performs the close operation on a socket instance
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Parameters:
|
2009-09-16 22:29:00 +02:00
|
|
|
* psock Socket instance
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; -1 on error with errno set appropriately.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-01-30 22:29:59 +01:00
|
|
|
int psock_close(FAR struct socket *psock)
|
2007-09-03 22:34:44 +02:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/* Verify that the sockfd corresponds to valid, allocated socket */
|
|
|
|
|
|
|
|
if (!psock || psock->s_crefs <= 0)
|
|
|
|
{
|
|
|
|
err = EBADF;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
/* We perform the uIP close operation only if this is the last count on the socket.
|
|
|
|
* (actually, I think the socket crefs only takes the values 0 and 1 right now).
|
|
|
|
*/
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
if (psock->s_crefs <= 1)
|
2007-09-03 22:34:44 +02:00
|
|
|
{
|
2009-06-15 20:58:22 +02:00
|
|
|
/* Perform uIP side of the close depending on the protocol type */
|
|
|
|
|
|
|
|
switch (psock->s_type)
|
2007-11-22 00:29:14 +01:00
|
|
|
{
|
2014-06-18 17:46:45 +02:00
|
|
|
#ifdef CONFIG_NET_PKT
|
|
|
|
case SOCK_RAW:
|
|
|
|
{
|
2014-06-25 18:34:52 +02:00
|
|
|
FAR struct pkt_conn_s *conn = psock->s_conn;
|
2014-06-18 17:46:45 +02:00
|
|
|
|
|
|
|
/* Is this the last reference to the connection structure (there
|
|
|
|
* could be more if the socket was dup'ed).
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (conn->crefs <= 1)
|
|
|
|
{
|
|
|
|
/* Yes... free the connection structure */
|
|
|
|
|
2014-06-25 18:34:52 +02:00
|
|
|
conn->crefs = 0; /* No more references on the connection */
|
|
|
|
pkt_free(psock->s_conn); /* Free uIP resources */
|
2014-06-18 17:46:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No.. Just decrement the reference count */
|
|
|
|
|
|
|
|
conn->crefs--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
#ifdef CONFIG_NET_TCP
|
|
|
|
case SOCK_STREAM:
|
|
|
|
{
|
2014-06-25 02:12:49 +02:00
|
|
|
FAR struct tcp_conn_s *conn = psock->s_conn;
|
2009-06-15 20:58:22 +02:00
|
|
|
|
|
|
|
/* Is this the last reference to the connection structure (there
|
2013-10-06 17:48:54 +02:00
|
|
|
* could be more if the socket was dup'ed).
|
2009-06-15 20:58:22 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (conn->crefs <= 1)
|
|
|
|
{
|
2013-10-06 17:48:54 +02:00
|
|
|
/* Yes... then perform the disconnection now */
|
2009-06-15 20:58:22 +02:00
|
|
|
|
2014-06-25 02:12:49 +02:00
|
|
|
tcp_unlisten(conn); /* No longer accepting connections */
|
2014-02-25 23:41:11 +01:00
|
|
|
conn->crefs = 0; /* Discard our reference to the connection */
|
2014-01-13 18:58:45 +01:00
|
|
|
err = netclose_disconnect(psock); /* Break any current connections */
|
|
|
|
if (err < 0)
|
|
|
|
{
|
|
|
|
/* This would normally occur only if there is a timeout
|
|
|
|
* from a lingering close.
|
|
|
|
*/
|
|
|
|
|
|
|
|
goto errout_with_psock;
|
|
|
|
}
|
2009-06-15 20:58:22 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No.. Just decrement the reference count */
|
|
|
|
|
|
|
|
conn->crefs--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2007-11-22 19:36:46 +01:00
|
|
|
#endif
|
2007-09-03 22:34:44 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_UDP
|
2009-06-15 20:58:22 +02:00
|
|
|
case SOCK_DGRAM:
|
|
|
|
{
|
2014-06-25 02:55:01 +02:00
|
|
|
FAR struct udp_conn_s *conn = psock->s_conn;
|
2009-06-15 20:58:22 +02:00
|
|
|
|
|
|
|
/* Is this the last reference to the connection structure (there
|
2014-01-13 18:58:45 +01:00
|
|
|
* could be more if the socket was dup'ed).
|
2009-06-15 20:58:22 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (conn->crefs <= 1)
|
|
|
|
{
|
|
|
|
/* Yes... free the connection structure */
|
|
|
|
|
2014-06-25 02:55:01 +02:00
|
|
|
conn->crefs = 0; /* No more references on the connection */
|
|
|
|
udp_free(psock->s_conn); /* Free uIP resources */
|
2009-06-15 20:58:22 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No.. Just decrement the reference count */
|
|
|
|
|
|
|
|
conn->crefs--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2007-09-03 22:34:44 +02:00
|
|
|
#endif
|
2007-11-22 19:36:46 +01:00
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
default:
|
|
|
|
err = EBADF;
|
|
|
|
goto errout;
|
|
|
|
}
|
2007-09-03 22:34:44 +02:00
|
|
|
}
|
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
/* Then release our reference on the socket structure containing the connection */
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2009-09-16 22:29:00 +02:00
|
|
|
sock_release(psock);
|
2007-09-03 22:34:44 +02:00
|
|
|
return OK;
|
|
|
|
|
2014-01-13 18:58:45 +01:00
|
|
|
#ifdef CONFIG_NET_TCP
|
|
|
|
errout_with_psock:
|
|
|
|
sock_release(psock);
|
|
|
|
#endif
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
errout:
|
2014-01-13 18:58:45 +01:00
|
|
|
set_errno(err);
|
2007-09-03 22:34:44 +02:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:29:00 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Function: net_close
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Performs the close operation on socket descriptors
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* sockfd Socket descriptor of socket
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 on success; -1 on error with errno set appropriately.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int net_close(int sockfd)
|
|
|
|
{
|
2012-01-30 22:29:59 +01:00
|
|
|
return psock_close(sockfd_socket(sockfd));
|
2009-09-16 22:29:00 +02:00
|
|
|
}
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
#endif /* CONFIG_NET */
|