net_startmonitor.c always returned zero. In the case where a socket has already been closed, it correctly handled the disconnetion event but still returned OK. Returning OK causes the callers of net_startmonitor to assume that the connection was okay, undoing the good things that net_startmonitor did and causing the socket to be marked as connected. This behavior was noted by Pelle Windestam.
This commit is contained in:
parent
0e2b6929b4
commit
01d176af76
@ -299,7 +299,19 @@ int accept(int sockfd, FAR struct sockaddr *addr, FAR socklen_t *addrlen)
|
|||||||
* socket
|
* socket
|
||||||
*/
|
*/
|
||||||
|
|
||||||
net_startmonitor(pnewsock);
|
ret = net_startmonitor(pnewsock);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
/* net_startmonitor() can only fail on certain race conditions
|
||||||
|
* where the connection was lost just before this function was
|
||||||
|
* called. Undo everything we have done and return a failure.
|
||||||
|
*/
|
||||||
|
|
||||||
|
net_unlock(state);
|
||||||
|
err = -ret;
|
||||||
|
goto errout_after_accept;
|
||||||
|
}
|
||||||
|
|
||||||
net_unlock(state);
|
net_unlock(state);
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_NET_TCP */
|
#endif /* CONFIG_NET_TCP */
|
||||||
@ -310,6 +322,9 @@ int accept(int sockfd, FAR struct sockaddr *addr, FAR socklen_t *addrlen)
|
|||||||
pnewsock->s_flags &= ~_SF_CLOSED;
|
pnewsock->s_flags &= ~_SF_CLOSED;
|
||||||
return newfd;
|
return newfd;
|
||||||
|
|
||||||
|
errout_after_accept:
|
||||||
|
psock_close(pnewsock);
|
||||||
|
|
||||||
errout_with_socket:
|
errout_with_socket:
|
||||||
sockfd_release(newfd);
|
sockfd_release(newfd);
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ struct tcp_connect_s
|
|||||||
#ifdef CONFIG_NET_TCP
|
#ifdef CONFIG_NET_TCP
|
||||||
static inline int psock_setup_callbacks(FAR struct socket *psock,
|
static inline int psock_setup_callbacks(FAR struct socket *psock,
|
||||||
FAR struct tcp_connect_s *pstate);
|
FAR struct tcp_connect_s *pstate);
|
||||||
static inline void psock_teardown_callbacks(FAR struct tcp_connect_s *pstate,
|
static void psock_teardown_callbacks(FAR struct tcp_connect_s *pstate,
|
||||||
int status);
|
int status);
|
||||||
static uint16_t psock_connect_interrupt(FAR struct net_driver_s *dev,
|
static uint16_t psock_connect_interrupt(FAR struct net_driver_s *dev,
|
||||||
FAR void *pvconn, FAR void *pvpriv,
|
FAR void *pvconn, FAR void *pvpriv,
|
||||||
@ -124,9 +124,18 @@ static inline int psock_setup_callbacks(FAR struct socket *psock,
|
|||||||
|
|
||||||
/* Set up the connection event monitor */
|
/* Set up the connection event monitor */
|
||||||
|
|
||||||
net_startmonitor(psock);
|
ret = net_startmonitor(psock);
|
||||||
ret = OK;
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
/* net_startmonitor() can only fail on certain race conditions
|
||||||
|
* where the connection was lost just before this function was
|
||||||
|
* called. Undo everything we have done and return a failure.
|
||||||
|
*/
|
||||||
|
|
||||||
|
psock_teardown_callbacks(pstate, ret);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_NET_TCP */
|
#endif /* CONFIG_NET_TCP */
|
||||||
@ -136,7 +145,7 @@ static inline int psock_setup_callbacks(FAR struct socket *psock,
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_NET_TCP
|
#ifdef CONFIG_NET_TCP
|
||||||
static inline void psock_teardown_callbacks(FAR struct tcp_connect_s *pstate,
|
static void psock_teardown_callbacks(FAR struct tcp_connect_s *pstate,
|
||||||
int status)
|
int status)
|
||||||
{
|
{
|
||||||
FAR struct tcp_conn_s *conn = pstate->tc_conn;
|
FAR struct tcp_conn_s *conn = pstate->tc_conn;
|
||||||
@ -144,7 +153,6 @@ static inline void psock_teardown_callbacks(FAR struct tcp_connect_s *pstate,
|
|||||||
/* Make sure that no further interrupts are processed */
|
/* Make sure that no further interrupts are processed */
|
||||||
|
|
||||||
tcp_callback_free(conn, pstate->tc_cb);
|
tcp_callback_free(conn, pstate->tc_cb);
|
||||||
|
|
||||||
pstate->tc_cb = NULL;
|
pstate->tc_cb = NULL;
|
||||||
|
|
||||||
/* If we successfully connected, we will continue to monitor the connection
|
/* If we successfully connected, we will continue to monitor the connection
|
||||||
|
@ -523,8 +523,9 @@ int psock_close(FAR struct socket *psock)
|
|||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We perform the uIP close operation only if this is the last count on the socket.
|
/* We perform the uIP close operation only if this is the last count on
|
||||||
* (actually, I think the socket crefs only takes the values 0 and 1 right now).
|
* the socket. (actually, I think the socket crefs only takes the values
|
||||||
|
* 0 and 1 right now).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (psock->s_crefs <= 1)
|
if (psock->s_crefs <= 1)
|
||||||
|
@ -121,7 +121,13 @@ static void connection_event(FAR struct tcp_conn_s *conn, uint16_t flags)
|
|||||||
* psock - The socket of interest
|
* psock - The socket of interest
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* For now, this function always returns OK.
|
* On success, net_startmonitor returns OK; On any failure,
|
||||||
|
* net_startmonitor will return a negated errno value. The only failure
|
||||||
|
* that can occur is if the socket has already been closed and, in this
|
||||||
|
* case, -ENOTCONN is returned.
|
||||||
|
*
|
||||||
|
* Assumptions:
|
||||||
|
* The caller holds the network lock.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
@ -131,22 +137,35 @@ int net_startmonitor(FAR struct socket *psock)
|
|||||||
|
|
||||||
DEBUGASSERT(psock && conn);
|
DEBUGASSERT(psock && conn);
|
||||||
|
|
||||||
/* Set up to receive callbacks on connection-related events */
|
/* Check if the connection has already been closed before any callbacks
|
||||||
|
* have been registered. (Maybe the connection is lost before accept has
|
||||||
conn->connection_private = (void*)psock;
|
* registered the monitoring callback.)
|
||||||
conn->connection_event = connection_event;
|
|
||||||
|
|
||||||
/* Check if the connection has already been closed before any callbacks have
|
|
||||||
* been registered. (Maybe the connection is lost before accept has registered
|
|
||||||
* the monitoring callback.)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!(conn->tcpstateflags == TCP_ESTABLISHED ||
|
if (!(conn->tcpstateflags == TCP_ESTABLISHED ||
|
||||||
conn->tcpstateflags == TCP_SYN_RCVD))
|
conn->tcpstateflags == TCP_SYN_RCVD))
|
||||||
{
|
{
|
||||||
|
/* Invoke the TCP_CLOSE connection event now */
|
||||||
|
|
||||||
connection_event(conn, TCP_CLOSE);
|
connection_event(conn, TCP_CLOSE);
|
||||||
|
|
||||||
|
/* Make sure that the monitor is stopped */
|
||||||
|
|
||||||
|
conn->connection_private = NULL;
|
||||||
|
conn->connection_event = NULL;
|
||||||
|
|
||||||
|
/* And return -ENOTCONN to indicate the the monitor was not started
|
||||||
|
* because the socket was already disconnected.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return -ENOTCONN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Set up to receive callbacks on connection-related events */
|
||||||
|
|
||||||
|
conn->connection_private = (void*)psock;
|
||||||
|
conn->connection_event = connection_event;
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -231,7 +231,13 @@ FAR struct socket *sockfd_socket(int sockfd);
|
|||||||
* psock - The socket of interest
|
* psock - The socket of interest
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* For now, this function always returns OK.
|
* On success, net_startmonitor returns OK; On any failure,
|
||||||
|
* net_startmonitor will return a negated errno value. The only failure
|
||||||
|
* that can occur is if the socket has already been closed and, in this
|
||||||
|
* case, -ENOTCONN is returned.
|
||||||
|
*
|
||||||
|
* Assumptions:
|
||||||
|
* The caller holds the network lock.
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -219,7 +219,8 @@ static int accept_interrupt(FAR struct tcp_conn_s *listener,
|
|||||||
* Parameters:
|
* Parameters:
|
||||||
* psock The listening TCP socket structure
|
* psock The listening TCP socket structure
|
||||||
* addr Receives the address of the connecting client
|
* addr Receives the address of the connecting client
|
||||||
* addrlen Input: allocated size of 'addr', Return: returned size of 'addr'
|
* addrlen Input: allocated size of 'addr', Return: returned size of
|
||||||
|
* 'addr'
|
||||||
* newconn The new, accepted TCP connection structure
|
* newconn The new, accepted TCP connection structure
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
@ -259,9 +260,9 @@ int psock_tcp_accept(FAR struct socket *psock, FAR struct sockaddr *addr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* In general, this uIP-based implementation will not support non-blocking
|
/* In general, this uIP-based implementation will not support non-blocking
|
||||||
* socket operations... except in a few cases: Here for TCP accept with backlog
|
* socket operations... except in a few cases: Here for TCP accept with
|
||||||
* enabled. If this socket is configured as non-blocking then return EAGAIN
|
* backlog enabled. If this socket is configured as non-blocking then
|
||||||
* if there is no pending connection in the backlog.
|
* return EAGAIN if there is no pending connection in the backlog.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
else if (_SS_ISNONBLOCK(psock->s_flags))
|
else if (_SS_ISNONBLOCK(psock->s_flags))
|
||||||
|
Loading…
Reference in New Issue
Block a user