135 lines
4.3 KiB
C
135 lines
4.3 KiB
C
/****************************************************************************
|
|
* netutils/netlib/netlib_ipv4router.c
|
|
*
|
|
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* 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>
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
#include <arpa/inet.h>
|
|
#include <nuttx/net/ip.h>
|
|
|
|
#include "netutils/netlib.h"
|
|
|
|
#if defined(CONFIG_NET_IPv4) && defined(HAVE_ROUTE_PROCFS)
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: netlib_ipv4router
|
|
*
|
|
* Description:
|
|
* Given a destination address that is not on a local network, query the
|
|
* IPv4 routing table, and return the IPv4 address of the routing that
|
|
* will provide access to the correct sub-net.
|
|
*
|
|
* Input Parameters:
|
|
* destipaddr - The destination address to use in the look-up (in network
|
|
* byte order).
|
|
* router - The location to return that the IP address of the router
|
|
* (in network byte order)
|
|
*
|
|
* Returned Value:
|
|
* Zero is returned on success; a negated errno value is returned on any
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int netlib_ipv4router(FAR const struct in_addr *destipaddr,
|
|
FAR struct in_addr *router)
|
|
{
|
|
struct netlib_ipv4_route_s route;
|
|
FILE *stream;
|
|
in_addr_t hdest;
|
|
ssize_t nbytes;
|
|
int ret = -ENOENT;
|
|
|
|
/* Open the routing table file */
|
|
|
|
stream = netlib_open_ipv4route();
|
|
if (stream == NULL)
|
|
{
|
|
return -errno;
|
|
}
|
|
|
|
/* Convert the destination IP address to host byte order for the
|
|
* comparison.
|
|
*/
|
|
|
|
hdest = ntohl(destipaddr->s_addr);
|
|
|
|
/* Find the routing table entry that provides the router for this sub-net. */
|
|
|
|
for (; ; )
|
|
{
|
|
/* Read the route (in host byte order) */
|
|
|
|
nbytes = netlib_read_ipv4route(stream, &route);
|
|
if (nbytes == 0)
|
|
{
|
|
/* End of file with no match */
|
|
|
|
break;
|
|
}
|
|
else if (nbytes < 0)
|
|
{
|
|
/* Read error */
|
|
|
|
ret = (int)nbytes;
|
|
break;
|
|
}
|
|
|
|
/* Compare the prefix and the destination address under the mask */
|
|
|
|
if (net_ipv4addr_maskcmp(route.prefix, hdest, route.netmask))
|
|
{
|
|
/* Found it! Return the router address in network byte order */
|
|
|
|
router->s_addr = htonl(route.router);
|
|
ret = OK;
|
|
break;
|
|
}
|
|
}
|
|
|
|
netlib_close_ipv4route(stream);
|
|
return ret;
|
|
}
|
|
|
|
#endif /* CONFIG_NET_IPv4 && HAVE_ROUTE_PROCFS */
|