/**************************************************************************** * net/tcp/tcp_finddev.c * * Copyright (C) 2015 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * 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 #if defined(CONFIG_NET) && defined(CONFIG_NET_TCP) #include #include #include #include #include "netdev/netdev.h" #include "inet/inet.h" #include "tcp/tcp.h" /**************************************************************************** * Private Functions ****************************************************************************/ /**************************************************************************** * Name: tcp_find_ipv4_device * * Description: * Select the network driver to use with the IPv4 TCP connection. * * Input Parameters: * conn - TCP connection structure. * addr - The IPv4 address to use * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -ENETUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv4 static int tcp_find_ipv4_device(FAR struct tcp_conn_s *conn, in_addr_t addr) { /* Do nothing if a device is already bound to the connection */ if (conn->dev != NULL) { return OK; } /* Return success without using device notification if the locally bound * address is INADDR_ANY. In this case, there may be multiple devices * that can provide data so the exceptional events from any particular * device are not important. */ if (net_ipv4addr_cmp(addr, INADDR_ANY)) { return OK; } /* We need to select the device that is going to route the TCP packet * based on the provided IP address. */ conn->dev = netdev_findby_ripv4addr(addr, addr); /* Return success if we found the device */ return conn->dev != NULL ? OK : -ENETUNREACH; } #endif /* CONFIG_NET_IPv4 */ /**************************************************************************** * Name: tcp_find_ipv6_device * * Description: * Select the network driver to use with the IPv6 TCP transaction. * * Input Parameters: * conn - TCP connection structure. * addr - The IPv6 address to use * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -ENETUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv6 static int tcp_find_ipv6_device(FAR struct tcp_conn_s *conn, const net_ipv6addr_t addr) { /* Do nothing if a device is already bound to the connection */ if (conn->dev != NULL) { return OK; } /* Return success without using device notification if the locally bound * address is the IPv6 unspecified address. In this case, there may be * multiple devices* that can provide data so the exceptional events from * any particular device are not important. */ if (net_ipv6addr_cmp(addr, g_ipv6_unspecaddr)) { return OK; } /* We need to select the device that is going to route the TCP packet * based on the provided IP address. */ conn->dev = netdev_findby_ripv6addr(addr, addr); /* Return success if we found the device */ return conn->dev != NULL ? OK : -ENETUNREACH; } #endif /* CONFIG_NET_IPv6 */ /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: tcp_local_ipv4_device * * Description: * Select the network driver to use with the IPv4 TCP transaction based * on the locally bound IPv4 address * * Input Parameters: * conn - TCP connection structure. The locally bound address, laddr, * should be set to a non-zero value in this structure. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -ENETUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv4 int tcp_local_ipv4_device(FAR struct tcp_conn_s *conn) { return tcp_find_ipv4_device(conn, conn->u.ipv4.laddr); } #endif /* CONFIG_NET_IPv4 */ /**************************************************************************** * Name: tcp_remote_ipv4_device * * Description: * Select the network driver to use with the IPv4 TCP transaction based * on the remotely connected IPv4 address * * Input Parameters: * conn - TCP connection structure. The remotely conected address, raddr, * should be set to a non-zero value in this structure. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -ENETUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv4 int tcp_remote_ipv4_device(FAR struct tcp_conn_s *conn) { return tcp_find_ipv4_device(conn, conn->u.ipv4.raddr); } #endif /**************************************************************************** * Name: tcp_local_ipv6_device * * Description: * Select the network driver to use with the IPv6 TCP transaction. * * Input Parameters: * conn - TCP connection structure. The locally bound address, laddr, * should be set to a non-zero value in this structure. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -ENETUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv6 int tcp_local_ipv6_device(FAR struct tcp_conn_s *conn) { return tcp_find_ipv6_device(conn, conn->u.ipv6.laddr); } #endif /* CONFIG_NET_IPv6 */ /**************************************************************************** * Name: tcp_remote_ipv6_device * * Description: * Select the network driver to use with the IPv6 TCP transaction based * on the remotely conected IPv6 address * * Input Parameters: * conn - TCP connection structure. The remotely connected address, raddr, * should be set to a non-zero value in this structure. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on failure. -EHOSTUNREACH is the only expected error value. * ****************************************************************************/ #ifdef CONFIG_NET_IPv6 int tcp_remote_ipv6_device(FAR struct tcp_conn_s *conn) { return tcp_find_ipv6_device(conn, conn->u.ipv6.raddr); } #endif /* CONFIG_NET_IPv6 */ #endif /* CONFIG_NET && CONFIG_NET_TCP */