2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2014-06-18 18:50:09 +02:00
|
|
|
* net/udp/udp_conn.c
|
2007-09-02 23:58:35 +02:00
|
|
|
*
|
2016-02-25 02:02:51 +01:00
|
|
|
* Copyright (C) 2007-2009, 2011-2012, 2016 Gregory Nutt. All rights reserved.
|
2012-06-08 20:56:01 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-09-02 23:58:35 +02:00
|
|
|
*
|
2007-09-03 01:11:10 +02:00
|
|
|
* Large parts of this file were leveraged from uIP logic:
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001-2003, Adam Dunkels.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
2007-09-02 23:58:35 +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
|
2007-09-03 01:11:10 +02:00
|
|
|
* 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.
|
2007-09-02 23:58:35 +02:00
|
|
|
*
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2007-09-02 23:58:35 +02:00
|
|
|
* Included Files
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_UDP)
|
|
|
|
|
2009-12-15 15:53:45 +01:00
|
|
|
#include <stdint.h>
|
2007-09-03 01:11:10 +02:00
|
|
|
#include <string.h>
|
2007-09-03 22:34:44 +02:00
|
|
|
#include <semaphore.h>
|
|
|
|
#include <assert.h>
|
2007-09-03 01:11:10 +02:00
|
|
|
#include <errno.h>
|
2007-11-23 20:25:39 +01:00
|
|
|
#include <debug.h>
|
|
|
|
|
2015-05-29 23:16:11 +02:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
2007-09-03 01:11:10 +02:00
|
|
|
#include <arch/irq.h>
|
|
|
|
|
2014-06-24 16:53:28 +02:00
|
|
|
#include <nuttx/net/netconfig.h>
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <nuttx/net/net.h>
|
2014-06-24 17:28:44 +02:00
|
|
|
#include <nuttx/net/netdev.h>
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <nuttx/net/ip.h>
|
2014-06-26 17:32:39 +02:00
|
|
|
#include <nuttx/net/udp.h>
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2014-06-29 02:07:02 +02:00
|
|
|
#include "devif/devif.h"
|
2014-11-21 21:21:30 +01:00
|
|
|
#include "netdev/netdev.h"
|
2017-08-07 19:50:50 +02:00
|
|
|
#include "inet/inet.h"
|
2014-06-25 02:55:01 +02:00
|
|
|
#include "udp/udp.h"
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-18 15:56:05 +01:00
|
|
|
#define IPv4BUF ((struct ipv4_hdr_s *)&dev->d_buf[NET_LL_HDRLEN(dev)])
|
|
|
|
#define IPv6BUF ((struct ipv6_hdr_s *)&dev->d_buf[NET_LL_HDRLEN(dev)])
|
2015-01-15 22:06:46 +01:00
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2007-09-03 01:11:10 +02:00
|
|
|
* Private Data
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2016-05-30 17:31:44 +02:00
|
|
|
/* The array containing all UDP connections. */
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2014-06-25 02:55:01 +02:00
|
|
|
struct udp_conn_s g_udp_connections[CONFIG_NET_UDP_CONNS];
|
2007-09-03 22:34:44 +02:00
|
|
|
|
|
|
|
/* A list of all free UDP connections */
|
|
|
|
|
|
|
|
static dq_queue_t g_free_udp_connections;
|
|
|
|
static sem_t g_free_sem;
|
|
|
|
|
|
|
|
/* A list of all allocated UDP connections */
|
|
|
|
|
|
|
|
static dq_queue_t g_active_udp_connections;
|
2007-09-03 01:11:10 +02:00
|
|
|
|
|
|
|
/* Last port used by a UDP connection connection. */
|
|
|
|
|
2009-12-15 15:53:45 +01:00
|
|
|
static uint16_t g_last_udp_port;
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2007-09-02 23:58:35 +02:00
|
|
|
* Private Functions
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2014-06-29 03:26:16 +02:00
|
|
|
* Name: _udp_semtake() and _udp_semgive()
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Take/give semaphore
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-29 03:26:16 +02:00
|
|
|
static inline void _udp_semtake(FAR sem_t *sem)
|
2007-09-03 22:34:44 +02:00
|
|
|
{
|
2017-09-04 14:55:28 +02:00
|
|
|
int ret;
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/* Take the semaphore (perhaps waiting) */
|
|
|
|
|
2017-09-04 14:55:28 +02:00
|
|
|
while ((ret = net_lockedwait(sem)) < 0)
|
2007-09-03 22:34:44 +02:00
|
|
|
{
|
2011-03-15 21:26:34 +01:00
|
|
|
/* The only case that an error should occur here is if
|
2007-09-03 22:34:44 +02:00
|
|
|
* the wait was awakened by a signal.
|
|
|
|
*/
|
|
|
|
|
2017-09-04 14:55:28 +02:00
|
|
|
ASSERT(ret == -EINTR);
|
2007-09-03 22:34:44 +02:00
|
|
|
}
|
2017-09-04 14:55:28 +02:00
|
|
|
|
|
|
|
UNUSED(ret);
|
2007-09-03 22:34:44 +02:00
|
|
|
}
|
|
|
|
|
2014-06-29 03:26:16 +02:00
|
|
|
#define _udp_semgive(sem) sem_post(sem)
|
2007-09-03 22:34:44 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-29 03:26:16 +02:00
|
|
|
* Name: udp_find_conn()
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2017-09-02 18:27:03 +02:00
|
|
|
* Find the UDP connection that uses this local port number.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function must be called with the network locked.
|
2007-09-03 22:34:44 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
static FAR struct udp_conn_s *udp_find_conn(uint8_t domain,
|
|
|
|
FAR union ip_binding_u *ipaddr,
|
|
|
|
uint16_t portno)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2014-11-21 21:21:30 +01:00
|
|
|
FAR struct udp_conn_s *conn;
|
2007-09-09 21:47:52 +02:00
|
|
|
int i;
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2015-10-08 23:10:04 +02:00
|
|
|
/* Now search each connection structure. */
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2007-11-20 00:09:39 +01:00
|
|
|
for (i = 0; i < CONFIG_NET_UDP_CONNS; i++)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2014-11-21 21:21:30 +01:00
|
|
|
conn = &g_udp_connections[i];
|
|
|
|
|
|
|
|
/* If the port local port number assigned to the connections matches
|
|
|
|
* AND the IP address of the connection matches, then return a
|
2014-11-22 14:55:45 +01:00
|
|
|
* reference to the connection structure. INADDR_ANY is a special
|
|
|
|
* case: There can only be instance of a port number with INADDR_ANY.
|
2014-11-21 21:21:30 +01:00
|
|
|
*/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2014-11-22 14:55:45 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2015-01-17 21:13:56 +01:00
|
|
|
if (domain == PF_INET)
|
2014-11-22 14:55:45 +01:00
|
|
|
#endif
|
2014-11-21 21:21:30 +01:00
|
|
|
{
|
2015-01-17 21:13:56 +01:00
|
|
|
if (conn->lport == portno &&
|
|
|
|
(net_ipv4addr_cmp(conn->u.ipv4.laddr, ipaddr->ipv4.laddr) ||
|
|
|
|
net_ipv4addr_cmp(conn->u.ipv4.laddr, INADDR_ANY)))
|
|
|
|
{
|
|
|
|
return conn;
|
|
|
|
}
|
2014-11-21 21:21:30 +01:00
|
|
|
}
|
2015-01-17 21:13:56 +01:00
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
if (conn->lport == portno &&
|
|
|
|
(net_ipv6addr_cmp(conn->u.ipv6.laddr, ipaddr->ipv6.laddr) ||
|
|
|
|
net_ipv6addr_cmp(conn->u.ipv6.laddr, g_ipv6_allzeroaddr)))
|
|
|
|
{
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
2007-09-09 21:47:52 +02:00
|
|
|
return NULL;
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
2009-03-19 01:18:21 +01:00
|
|
|
/****************************************************************************
|
2015-01-17 21:13:56 +01:00
|
|
|
* Name: udp_select_port
|
2009-03-19 01:18:21 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Select an unused port number.
|
|
|
|
*
|
2014-04-12 20:13:01 +02:00
|
|
|
* NOTE that in principle this function could fail if there is no available
|
2009-03-19 01:18:21 +01:00
|
|
|
* port number. There is no check for that case and it would actually
|
|
|
|
* in an infinite loop if that were the case. In this simple, small UDP
|
|
|
|
* implementation, it is reasonable to assume that that error cannot happen
|
|
|
|
* and that a port number will always be available.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* Next available port number
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
static uint16_t udp_select_port(uint8_t domain, FAR union ip_binding_u *u)
|
2009-03-19 01:18:21 +01:00
|
|
|
{
|
2009-12-15 15:53:45 +01:00
|
|
|
uint16_t portno;
|
2009-03-19 01:18:21 +01:00
|
|
|
|
|
|
|
/* Find an unused local port number. Loop until we find a valid
|
|
|
|
* listen port number that is not being used by any other connection.
|
|
|
|
*/
|
|
|
|
|
2016-12-03 23:28:19 +01:00
|
|
|
net_lock();
|
2009-03-19 01:18:21 +01:00
|
|
|
do
|
|
|
|
{
|
|
|
|
/* Guess that the next available port number will be the one after
|
|
|
|
* the last port number assigned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
++g_last_udp_port;
|
|
|
|
|
|
|
|
/* Make sure that the port number is within range */
|
|
|
|
|
|
|
|
if (g_last_udp_port >= 32000)
|
|
|
|
{
|
|
|
|
g_last_udp_port = 4096;
|
|
|
|
}
|
|
|
|
}
|
2017-09-13 20:12:57 +02:00
|
|
|
while (udp_find_conn(domain, u, htons(g_last_udp_port)) != NULL);
|
2009-03-19 01:18:21 +01:00
|
|
|
|
|
|
|
/* Initialize and return the connection structure, bind it to the
|
|
|
|
* port number
|
|
|
|
*/
|
|
|
|
|
|
|
|
portno = g_last_udp_port;
|
2016-12-03 23:28:19 +01:00
|
|
|
net_unlock();
|
2009-03-19 01:18:21 +01:00
|
|
|
|
|
|
|
return portno;
|
|
|
|
}
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: udp_ipv4_active
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a connection structure that is the appropriate connection to be
|
|
|
|
* used within the provided UDP header
|
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-09-02 18:27:03 +02:00
|
|
|
* This function must be called with the network locked.
|
2015-01-17 21:13:56 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
static inline FAR struct udp_conn_s *
|
|
|
|
udp_ipv4_active(FAR struct net_driver_s *dev, FAR struct udp_hdr_s *udp)
|
|
|
|
{
|
2017-08-08 15:48:07 +02:00
|
|
|
#ifdef CONFIG_NET_BROADCAST
|
2017-08-08 22:24:12 +02:00
|
|
|
static const in_addr_t bcast = INADDR_BROADCAST;
|
2017-08-08 15:48:07 +02:00
|
|
|
#endif
|
2015-01-18 15:56:05 +01:00
|
|
|
FAR struct ipv4_hdr_s *ip = IPv4BUF;
|
2015-01-17 21:13:56 +01:00
|
|
|
FAR struct udp_conn_s *conn;
|
|
|
|
|
|
|
|
conn = (FAR struct udp_conn_s *)g_active_udp_connections.head;
|
|
|
|
while (conn)
|
|
|
|
{
|
|
|
|
/* If the local UDP port is non-zero, the connection is considered
|
|
|
|
* to be used. If so, then the following checks are performed:
|
|
|
|
*
|
|
|
|
* - The local port number is checked against the destination port
|
|
|
|
* number in the received packet.
|
|
|
|
* - The remote port number is checked if the connection is bound
|
|
|
|
* to a remote port.
|
|
|
|
* - If multiple network interfaces are supported, then the local
|
|
|
|
* IP address is available and we will insist that the
|
|
|
|
* destination IP matches the bound address (or the destination
|
|
|
|
* IP address is a broadcast address). If a socket is bound to
|
|
|
|
* INADDRY_ANY (laddr), then it should receive all packets
|
|
|
|
* directed to the port.
|
|
|
|
* - Finally, if the connection is bound to a remote IP address,
|
|
|
|
* the source IP address of the packet is checked. Broadcast
|
|
|
|
* addresses are also accepted.
|
|
|
|
*
|
|
|
|
* If all of the above are true then the newly received UDP packet
|
|
|
|
* is destined for this UDP connection.
|
2017-08-07 19:50:50 +02:00
|
|
|
*
|
|
|
|
* To send and receive broadcast packets, the application should:
|
|
|
|
*
|
|
|
|
* - Bind socket to INADDR_ANY
|
|
|
|
* - setsockopt to SO_BROADCAST
|
|
|
|
* - call sendto with sendaddr.sin_addr.s_addr = <broadcast-address>
|
|
|
|
* - call recvfrom.
|
|
|
|
*
|
|
|
|
* REVIST: SO_BROADCAST flag is currently ignored.
|
2015-01-17 21:13:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (conn->lport != 0 && udp->destport == conn->lport &&
|
|
|
|
(conn->rport == 0 || udp->srcport == conn->rport) &&
|
2017-08-08 15:48:07 +02:00
|
|
|
|
|
|
|
/* Local port accepts any address on this port or there
|
|
|
|
* is an exact match in destipaddr and the bound local
|
|
|
|
* address. This catches the receipt of a broadcast when
|
|
|
|
* the socket is bound to INADDR_ANY.
|
|
|
|
*/
|
|
|
|
|
2015-05-29 23:16:11 +02:00
|
|
|
(net_ipv4addr_cmp(conn->u.ipv4.laddr, INADDR_ANY) ||
|
2015-01-17 21:13:56 +01:00
|
|
|
net_ipv4addr_hdrcmp(ip->destipaddr, &conn->u.ipv4.laddr)) &&
|
2017-08-08 22:24:12 +02:00
|
|
|
|
2017-08-08 15:48:07 +02:00
|
|
|
/* If not connected to a remote address, or a broadcast address
|
|
|
|
* destipaddr was received, or there is an exact match between the
|
|
|
|
* srcipaddr and the bound IP address, then accept the packet.
|
|
|
|
*/
|
|
|
|
|
2015-05-29 23:16:11 +02:00
|
|
|
(net_ipv4addr_cmp(conn->u.ipv4.raddr, INADDR_ANY) ||
|
2017-08-08 15:48:07 +02:00
|
|
|
#ifdef CONFIG_NET_BROADCAST
|
|
|
|
net_ipv4addr_hdrcmp(ip->destipaddr, &bcast) ||
|
|
|
|
#endif
|
2015-01-17 21:13:56 +01:00
|
|
|
net_ipv4addr_hdrcmp(ip->srcipaddr, &conn->u.ipv4.raddr)))
|
|
|
|
{
|
|
|
|
/* Matching connection found.. return a reference to it */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look at the next active connection */
|
|
|
|
|
|
|
|
conn = (FAR struct udp_conn_s *)conn->node.flink;
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: udp_ipv6_active
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a connection structure that is the appropriate connection to be
|
|
|
|
* used within the provided UDP header
|
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-09-02 18:27:03 +02:00
|
|
|
* This function must be called with the network locked.
|
2015-01-17 21:13:56 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
static inline FAR struct udp_conn_s *
|
|
|
|
udp_ipv6_active(FAR struct net_driver_s *dev, FAR struct udp_hdr_s *udp)
|
|
|
|
{
|
2015-01-18 15:56:05 +01:00
|
|
|
FAR struct ipv6_hdr_s *ip = IPv6BUF;
|
2015-01-17 21:13:56 +01:00
|
|
|
FAR struct udp_conn_s *conn;
|
|
|
|
|
|
|
|
conn = (FAR struct udp_conn_s *)g_active_udp_connections.head;
|
|
|
|
while (conn)
|
|
|
|
{
|
|
|
|
/* If the local UDP port is non-zero, the connection is considered
|
|
|
|
* to be used. If so, then the following checks are performed:
|
|
|
|
*
|
|
|
|
* - The local port number is checked against the destination port
|
|
|
|
* number in the received packet.
|
|
|
|
* - The remote port number is checked if the connection is bound
|
|
|
|
* to a remote port.
|
|
|
|
* - If multiple network interfaces are supported, then the local
|
|
|
|
* IP address is available and we will insist that the
|
2017-08-07 19:50:50 +02:00
|
|
|
* destination IP matches the bound address. If a socket is bound to
|
2017-08-08 15:48:07 +02:00
|
|
|
* INADDR6_ANY (laddr), then it should receive all packets directed
|
2017-08-07 19:50:50 +02:00
|
|
|
* to the port. REVISIT: Should also depend on SO_BROADCAST.
|
2015-01-17 21:13:56 +01:00
|
|
|
* - Finally, if the connection is bound to a remote IP address,
|
2017-08-07 19:50:50 +02:00
|
|
|
* the source IP address of the packet is checked.
|
2015-01-17 21:13:56 +01:00
|
|
|
*
|
|
|
|
* If all of the above are true then the newly received UDP packet
|
|
|
|
* is destined for this UDP connection.
|
2017-08-07 19:50:50 +02:00
|
|
|
*
|
2017-08-07 21:03:23 +02:00
|
|
|
* To send and receive multicast packets, the application should:
|
2017-08-07 19:50:50 +02:00
|
|
|
*
|
2017-08-08 15:48:07 +02:00
|
|
|
* - Bind socket to INADDR6_ANY (for the all-nodes multicast address)
|
|
|
|
* or to a specific <multicast-address>
|
2017-08-07 21:03:23 +02:00
|
|
|
* - setsockopt to SO_BROADCAST (for all-nodes address)
|
|
|
|
* - call sendto with sendaddr.sin_addr.s_addr = <multicast-address>
|
2017-08-07 19:50:50 +02:00
|
|
|
* - call recvfrom.
|
|
|
|
*
|
|
|
|
* REVIST: SO_BROADCAST flag is currently ignored.
|
2015-01-17 21:13:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (conn->lport != 0 && udp->destport == conn->lport &&
|
|
|
|
(conn->rport == 0 || udp->srcport == conn->rport) &&
|
2017-08-08 15:48:07 +02:00
|
|
|
|
|
|
|
/* Local port accepts any address on this port or there
|
|
|
|
* is an exact match in destipaddr and the bound local
|
|
|
|
* address. This catches the cast of the all nodes multicast
|
|
|
|
* when the socket is bound to INADDR6_ANY.
|
|
|
|
*/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
(net_ipv6addr_cmp(conn->u.ipv6.laddr, g_ipv6_allzeroaddr) ||
|
|
|
|
net_ipv6addr_hdrcmp(ip->destipaddr, conn->u.ipv6.laddr)) &&
|
2017-08-08 22:24:12 +02:00
|
|
|
|
2017-08-08 15:48:07 +02:00
|
|
|
/* If not connected to a remote address, or a all-nodes multicast
|
|
|
|
* destipaddr was received, or there is an exact match between the
|
|
|
|
* srcipaddr and the bound remote IP address, then accept the
|
|
|
|
* packet.
|
|
|
|
*/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
(net_ipv6addr_cmp(conn->u.ipv6.raddr, g_ipv6_allzeroaddr) ||
|
2017-08-08 15:48:07 +02:00
|
|
|
#ifdef CONFIG_NET_BROADCAST
|
|
|
|
net_ipv6addr_hdrcmp(ip->destipaddr, g_ipv6_allnodes) ||
|
|
|
|
#endif
|
2015-01-17 21:13:56 +01:00
|
|
|
net_ipv6addr_hdrcmp(ip->srcipaddr, conn->u.ipv6.raddr)))
|
|
|
|
{
|
|
|
|
/* Matching connection found.. return a reference to it */
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look at the next active connection */
|
|
|
|
|
|
|
|
conn = (FAR struct udp_conn_s *)conn->node.flink;
|
|
|
|
}
|
|
|
|
|
|
|
|
return conn;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
/****************************************************************************
|
2007-09-02 23:58:35 +02:00
|
|
|
* Public Functions
|
2007-09-03 22:34:44 +02:00
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2007-09-03 01:11:10 +02:00
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_initialize
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the UDP connection structures. Called once and only from
|
|
|
|
* the UIP layer.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2014-06-25 02:55:01 +02:00
|
|
|
void udp_initialize(void)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
|
|
|
int i;
|
2007-09-03 22:34:44 +02:00
|
|
|
|
|
|
|
/* Initialize the queues */
|
|
|
|
|
|
|
|
dq_init(&g_free_udp_connections);
|
|
|
|
dq_init(&g_active_udp_connections);
|
2017-10-03 20:51:15 +02:00
|
|
|
nxsem_init(&g_free_sem, 0, 1);
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2007-11-20 00:09:39 +01:00
|
|
|
for (i = 0; i < CONFIG_NET_UDP_CONNS; i++)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2007-09-03 22:34:44 +02:00
|
|
|
/* Mark the connection closed and move it to the free list */
|
|
|
|
|
|
|
|
g_udp_connections[i].lport = 0;
|
|
|
|
dq_addlast(&g_udp_connections[i].node, &g_free_udp_connections);
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_last_udp_port = 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_alloc
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2014-07-05 22:40:29 +02:00
|
|
|
* Allocate a new, uninitialized UDP connection structure. This is
|
|
|
|
* normally something done by the implementation of the socket() API
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-17 20:07:48 +01:00
|
|
|
FAR struct udp_conn_s *udp_alloc(uint8_t domain)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2014-06-25 02:55:01 +02:00
|
|
|
FAR struct udp_conn_s *conn;
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2017-09-02 18:27:03 +02:00
|
|
|
/* The free list is protected by a semaphore (that behaves like a mutex). */
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2014-06-29 03:26:16 +02:00
|
|
|
_udp_semtake(&g_free_sem);
|
2014-06-25 02:55:01 +02:00
|
|
|
conn = (FAR struct udp_conn_s *)dq_remfirst(&g_free_udp_connections);
|
2007-09-03 22:34:44 +02:00
|
|
|
if (conn)
|
|
|
|
{
|
2007-09-09 21:47:52 +02:00
|
|
|
/* Make sure that the connection is marked as uninitialized */
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
#if defined(CONFIG_NET_IPv4) && defined(CONFIG_NET_IPv6)
|
2015-01-17 20:07:48 +01:00
|
|
|
conn->domain = domain;
|
2015-01-17 21:13:56 +01:00
|
|
|
#endif
|
2015-01-17 20:07:48 +01:00
|
|
|
conn->lport = 0;
|
2017-07-04 20:05:21 +02:00
|
|
|
conn->ttl = IP_TTL;
|
2013-10-11 18:48:00 +02:00
|
|
|
|
|
|
|
/* Enqueue the connection into the active list */
|
|
|
|
|
|
|
|
dq_addlast(&conn->node, &g_active_udp_connections);
|
2007-09-03 22:34:44 +02:00
|
|
|
}
|
2014-04-12 20:13:01 +02:00
|
|
|
|
2014-06-29 03:26:16 +02:00
|
|
|
_udp_semgive(&g_free_sem);
|
2007-09-03 22:34:44 +02:00
|
|
|
return conn;
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_free
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Free a UDP connection structure that is no longer in use. This should be
|
2014-07-05 22:40:29 +02:00
|
|
|
* done by the implementation of close().
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-25 02:55:01 +02:00
|
|
|
void udp_free(FAR struct udp_conn_s *conn)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2017-09-02 18:27:03 +02:00
|
|
|
/* The free list is protected by a semaphore (that behaves like a mutex). */
|
2007-09-03 22:34:44 +02:00
|
|
|
|
2009-06-15 20:58:22 +02:00
|
|
|
DEBUGASSERT(conn->crefs == 0);
|
|
|
|
|
2014-06-29 03:26:16 +02:00
|
|
|
_udp_semtake(&g_free_sem);
|
2007-09-03 22:34:44 +02:00
|
|
|
conn->lport = 0;
|
2013-10-11 18:48:00 +02:00
|
|
|
|
|
|
|
/* Remove the connection from the active list */
|
|
|
|
|
|
|
|
dq_rem(&conn->node, &g_active_udp_connections);
|
|
|
|
|
2015-01-30 16:44:00 +01:00
|
|
|
#ifdef CONFIG_NET_UDP_READAHEAD
|
|
|
|
/* Release any read-ahead buffers attached to the connection */
|
|
|
|
|
|
|
|
iob_free_queue(&conn->readahead);
|
|
|
|
#endif
|
|
|
|
|
2013-10-11 18:48:00 +02:00
|
|
|
/* Free the connection */
|
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
dq_addlast(&conn->node, &g_free_udp_connections);
|
2014-06-29 03:26:16 +02:00
|
|
|
_udp_semgive(&g_free_sem);
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_active
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a connection structure that is the appropriate
|
2014-11-08 13:18:21 +01:00
|
|
|
* connection to be used within the provided UDP header
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-09-02 18:27:03 +02:00
|
|
|
* This function must be called with the network locked.
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-15 22:06:46 +01:00
|
|
|
FAR struct udp_conn_s *udp_active(FAR struct net_driver_s *dev,
|
|
|
|
FAR struct udp_hdr_s *udp)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
if (IFF_IS_IPv6(dev->d_flags))
|
|
|
|
#endif
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2015-01-17 21:13:56 +01:00
|
|
|
return udp_ipv6_active(dev, udp);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2007-09-03 01:11:10 +02:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
else
|
2014-11-22 00:44:12 +01:00
|
|
|
#endif
|
2015-01-17 21:13:56 +01:00
|
|
|
{
|
|
|
|
return udp_ipv4_active(dev, udp);
|
2007-09-03 22:34:44 +02:00
|
|
|
}
|
2015-01-17 21:13:56 +01:00
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_nextconn
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2007-11-06 00:04:16 +01:00
|
|
|
* Traverse the list of allocated UDP connections
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-09-02 18:27:03 +02:00
|
|
|
* This function must be called with the network locked.
|
2007-09-03 01:11:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-07-01 02:03:58 +02:00
|
|
|
FAR struct udp_conn_s *udp_nextconn(FAR struct udp_conn_s *conn)
|
2007-09-03 01:11:10 +02:00
|
|
|
{
|
2007-11-06 00:04:16 +01:00
|
|
|
if (!conn)
|
|
|
|
{
|
2014-06-25 02:55:01 +02:00
|
|
|
return (FAR struct udp_conn_s *)g_active_udp_connections.head;
|
2007-11-06 00:04:16 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-25 02:55:01 +02:00
|
|
|
return (FAR struct udp_conn_s *)conn->node.flink;
|
2007-11-06 00:04:16 +01:00
|
|
|
}
|
2007-09-03 01:11:10 +02:00
|
|
|
}
|
|
|
|
|
2007-10-31 01:13:07 +01:00
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_bind
|
2007-10-31 01:13:07 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2014-11-17 22:34:50 +01:00
|
|
|
* This function implements the low level parts of the standard UDP
|
2007-10-31 01:13:07 +01:00
|
|
|
* bind() operation.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called from normal user level code.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
int udp_bind(FAR struct udp_conn_s *conn, FAR const struct sockaddr *addr)
|
2007-10-31 01:13:07 +01:00
|
|
|
{
|
2015-01-17 21:13:56 +01:00
|
|
|
uint16_t portno;
|
2014-11-21 21:21:30 +01:00
|
|
|
int ret;
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2014-11-21 21:21:30 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2015-01-17 21:13:56 +01:00
|
|
|
if (conn->domain == PF_INET)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
FAR const struct sockaddr_in *inaddr =
|
|
|
|
(FAR const struct sockaddr_in *)addr;
|
2014-11-21 21:21:30 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
/* Get the port number that we are binding to */
|
2014-11-21 21:21:30 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
portno = inaddr->sin_port;
|
2014-11-21 21:21:30 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
/* Bind the local IP address to the connection. NOTE this address may
|
|
|
|
* be INADDR_ANY meaning, essentially, that we are binding to all
|
|
|
|
* interfaces for receiving (Sending will use the default port).
|
|
|
|
*/
|
|
|
|
|
2015-02-10 01:15:34 +01:00
|
|
|
net_ipv4addr_copy(conn->u.ipv4.laddr, inaddr->sin_addr.s_addr);
|
2015-01-17 21:13:56 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
2014-11-21 21:21:30 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
else
|
2014-11-21 21:21:30 +01:00
|
|
|
#endif
|
2015-01-17 21:13:56 +01:00
|
|
|
{
|
|
|
|
FAR const struct sockaddr_in6 *inaddr =
|
|
|
|
(FAR const struct sockaddr_in6 *)addr;
|
2014-11-21 21:21:30 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
/* Get the port number that we are binding to */
|
2014-11-22 00:00:08 +01:00
|
|
|
|
2015-01-21 01:14:09 +01:00
|
|
|
portno = inaddr->sin6_port;
|
2015-01-17 21:13:56 +01:00
|
|
|
|
|
|
|
/* Bind the local IP address to the connection. NOTE this address may
|
|
|
|
* be INADDR_ANY meaning, essentially, that we are binding to all
|
|
|
|
* interfaces for receiving (Sending will use the default port).
|
|
|
|
*/
|
|
|
|
|
2015-02-10 13:54:10 +01:00
|
|
|
net_ipv6addr_copy(conn->u.ipv6.laddr, inaddr->sin6_addr.in6_u.u6_addr16);
|
2015-01-17 21:13:56 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2007-11-23 20:25:39 +01:00
|
|
|
|
2009-03-19 01:18:21 +01:00
|
|
|
/* Is the user requesting to bind to any port? */
|
2007-11-23 20:25:39 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
if (portno == 0)
|
2009-03-19 01:18:21 +01:00
|
|
|
{
|
2014-11-21 21:21:30 +01:00
|
|
|
/* Yes.. Select any unused local port number */
|
2009-03-19 01:18:21 +01:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
conn->lport = htons(udp_select_port(conn->domain, &conn->u));
|
2009-03-19 01:18:21 +01:00
|
|
|
ret = OK;
|
|
|
|
}
|
|
|
|
else
|
2007-10-31 01:13:07 +01:00
|
|
|
{
|
2007-11-23 20:25:39 +01:00
|
|
|
/* Interrupts must be disabled while access the UDP connection list */
|
|
|
|
|
2016-12-03 23:28:19 +01:00
|
|
|
net_lock();
|
2007-11-23 20:25:39 +01:00
|
|
|
|
2014-11-21 21:21:30 +01:00
|
|
|
/* Is any other UDP connection already bound to this address and port? */
|
2007-11-23 20:25:39 +01:00
|
|
|
|
2017-09-13 20:12:57 +02:00
|
|
|
if (udp_find_conn(conn->domain, &conn->u, portno) == NULL)
|
2007-11-23 20:25:39 +01:00
|
|
|
{
|
|
|
|
/* No.. then bind the socket to the port */
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
conn->lport = portno;
|
2009-03-19 01:18:21 +01:00
|
|
|
ret = OK;
|
2007-11-23 20:25:39 +01:00
|
|
|
}
|
2017-09-13 20:12:57 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = -EADDRINUSE;
|
|
|
|
}
|
2007-11-23 20:25:39 +01:00
|
|
|
|
2016-12-03 23:28:19 +01:00
|
|
|
net_unlock();
|
2007-10-31 01:13:07 +01:00
|
|
|
}
|
2014-04-12 20:13:01 +02:00
|
|
|
|
2007-10-31 01:13:07 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-09-09 21:47:52 +02:00
|
|
|
/****************************************************************************
|
2015-01-17 20:07:48 +01:00
|
|
|
* Name: udp_connect
|
2007-09-09 21:47:52 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2014-11-17 22:34:50 +01:00
|
|
|
* This function simply assigns a remote address to UDP "connection"
|
|
|
|
* structure. This function is called as part of the implementation of:
|
|
|
|
*
|
|
|
|
* - connect(). If connect() is called for a SOCK_DGRAM socket, then
|
|
|
|
* this logic performs the moral equivalent of connec() operation
|
|
|
|
* for the UDP socket.
|
|
|
|
* - recvfrom() and sendto(). This function is called to set the
|
|
|
|
* remote address of the peer.
|
|
|
|
*
|
|
|
|
* The function will automatically allocate an unused local port for the
|
|
|
|
* new connection if the socket is not yet bound to a local address.
|
|
|
|
* However, another port can be chosen by using the udp_bind() call,
|
|
|
|
* after the udp_connect() function has been called.
|
2007-09-09 21:47:52 +02:00
|
|
|
*
|
2014-07-05 22:40:29 +02:00
|
|
|
* Input Parameters:
|
|
|
|
* conn - A reference to UDP connection structure
|
|
|
|
* addr - The address of the remote host.
|
2007-09-09 21:47:52 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function is called user code. Interrupts may be enabled.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
int udp_connect(FAR struct udp_conn_s *conn, FAR const struct sockaddr *addr)
|
2007-09-02 23:58:35 +02:00
|
|
|
{
|
2009-03-19 01:18:21 +01:00
|
|
|
/* Has this address already been bound to a local port (lport)? */
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2007-10-31 01:13:07 +01:00
|
|
|
if (!conn->lport)
|
2007-09-02 23:58:35 +02:00
|
|
|
{
|
2009-03-19 01:18:21 +01:00
|
|
|
/* No.. Find an unused local port number and bind it to the
|
|
|
|
* connection structure.
|
2007-09-02 23:58:35 +02:00
|
|
|
*/
|
|
|
|
|
2015-01-17 21:13:56 +01:00
|
|
|
conn->lport = htons(udp_select_port(conn->domain, &conn->u));
|
2007-10-31 01:13:07 +01:00
|
|
|
}
|
2007-09-02 23:58:35 +02:00
|
|
|
|
2014-11-21 21:21:30 +01:00
|
|
|
/* Is there a remote port (rport)? */
|
2009-03-19 01:18:21 +01:00
|
|
|
|
2007-09-03 22:34:44 +02:00
|
|
|
if (addr)
|
2007-09-02 23:58:35 +02:00
|
|
|
{
|
2015-01-17 21:13:56 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
if (conn->domain == PF_INET)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
FAR const struct sockaddr_in *inaddr =
|
|
|
|
(FAR const struct sockaddr_in *)addr;
|
|
|
|
|
|
|
|
conn->rport = inaddr->sin_port;
|
|
|
|
net_ipv4addr_copy(conn->u.ipv4.raddr, inaddr->sin_addr.s_addr);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
FAR const struct sockaddr_in6 *inaddr =
|
|
|
|
(FAR const struct sockaddr_in6 *)addr;
|
|
|
|
|
2015-01-21 01:14:09 +01:00
|
|
|
conn->rport = inaddr->sin6_port;
|
2015-01-17 21:13:56 +01:00
|
|
|
net_ipv6addr_copy(conn->u.ipv6.raddr, inaddr->sin6_addr.s6_addr16);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2007-09-02 23:58:35 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-09-09 21:47:52 +02:00
|
|
|
conn->rport = 0;
|
2015-01-17 21:13:56 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
if (conn->domain == PF_INET)
|
|
|
|
#endif
|
|
|
|
{
|
2015-05-29 23:16:11 +02:00
|
|
|
net_ipv4addr_copy(conn->u.ipv4.raddr, INADDR_ANY);
|
2015-01-17 21:13:56 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
net_ipv6addr_copy(conn->u.ipv6.raddr, g_ipv6_allzeroaddr);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2007-09-09 21:47:52 +02:00
|
|
|
}
|
2007-10-31 01:13:07 +01:00
|
|
|
|
2007-09-09 21:47:52 +02:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2007-09-03 01:11:10 +02:00
|
|
|
#endif /* CONFIG_NET && CONFIG_NET_UDP */
|