2011-03-19 22:04:13 +01:00
|
|
|
/****************************************************************************
|
2021-06-11 12:06:42 +02:00
|
|
|
* apps/netutils/netlib/netlib_setdripv4addr.c
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
2021-06-11 06:22:42 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2019-02-11 23:23:55 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
|
2018-01-19 00:33:56 +01:00
|
|
|
#ifdef CONFIG_NET_ROUTE
|
|
|
|
# include <net/route.h>
|
|
|
|
#endif
|
|
|
|
|
2016-07-11 18:11:18 +02:00
|
|
|
#include "netutils/netlib.h"
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-18 22:56:14 +01:00
|
|
|
* Public Functions
|
2011-03-19 22:04:13 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-18 21:17:00 +01:00
|
|
|
* Name: netlib_set_dripv4addr
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2015-01-18 22:56:14 +01:00
|
|
|
* Set the default router IPv4 address
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* ifname The name of the interface to use
|
|
|
|
* ipaddr The address to set
|
|
|
|
*
|
|
|
|
* Return:
|
2015-01-18 22:56:14 +01:00
|
|
|
* 0 on success; -1 on failure
|
2011-03-19 22:04:13 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-18 22:56:14 +01:00
|
|
|
int netlib_set_dripv4addr(FAR const char *ifname,
|
|
|
|
FAR const struct in_addr *addr)
|
2011-03-19 22:04:13 +01:00
|
|
|
{
|
|
|
|
int ret = ERROR;
|
2015-01-18 22:56:14 +01:00
|
|
|
|
2018-01-19 00:33:56 +01:00
|
|
|
#ifdef CONFIG_NET_ROUTE
|
|
|
|
struct sockaddr_in target;
|
|
|
|
struct sockaddr_in netmask;
|
|
|
|
struct sockaddr_in router;
|
|
|
|
|
|
|
|
memset(&target, 0, sizeof(target));
|
|
|
|
target.sin_family = AF_INET;
|
|
|
|
|
|
|
|
memset(&netmask, 0, sizeof(netmask));
|
|
|
|
netmask.sin_family = AF_INET;
|
|
|
|
|
|
|
|
router.sin_addr = *addr;
|
|
|
|
router.sin_family = AF_INET;
|
|
|
|
#endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
if (ifname && addr)
|
|
|
|
{
|
2021-12-19 14:03:15 +01:00
|
|
|
int sockfd = socket(NET_SOCK_FAMILY, NET_SOCK_TYPE, NET_SOCK_PROTOCOL);
|
2011-03-19 22:04:13 +01:00
|
|
|
if (sockfd >= 0)
|
|
|
|
{
|
2015-01-18 22:56:14 +01:00
|
|
|
FAR struct sockaddr_in *inaddr;
|
2011-03-19 22:04:13 +01:00
|
|
|
struct ifreq req;
|
2015-01-18 22:56:14 +01:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
/* Add the device name to the request */
|
|
|
|
|
2022-02-13 07:46:40 +01:00
|
|
|
strlcpy(req.ifr_name, ifname, IFNAMSIZ);
|
2011-03-19 22:04:13 +01:00
|
|
|
|
|
|
|
/* Add the INET address to the request */
|
|
|
|
|
2015-01-18 22:56:14 +01:00
|
|
|
inaddr = (FAR struct sockaddr_in *)&req.ifr_addr;
|
2011-03-19 22:04:13 +01:00
|
|
|
inaddr->sin_family = AF_INET;
|
|
|
|
inaddr->sin_port = 0;
|
|
|
|
memcpy(&inaddr->sin_addr, addr, sizeof(struct in_addr));
|
2015-01-18 22:56:14 +01:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
ret = ioctl(sockfd, SIOCSIFDSTADDR, (unsigned long)&req);
|
2018-01-19 00:33:56 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_ROUTE
|
|
|
|
if (OK == ret)
|
|
|
|
{
|
|
|
|
/* Delete the default route first */
|
2021-06-11 12:06:42 +02:00
|
|
|
|
2018-01-19 00:33:56 +01:00
|
|
|
/* This call fails if no default route exists, but it's OK */
|
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
delroute(sockfd,
|
|
|
|
(FAR struct sockaddr_storage *)&target,
|
|
|
|
(FAR struct sockaddr_storage *)&netmask);
|
2018-01-19 00:33:56 +01:00
|
|
|
|
|
|
|
/* Then add the new default route */
|
|
|
|
|
|
|
|
ret = addroute(sockfd,
|
|
|
|
(FAR struct sockaddr_storage *)&target,
|
|
|
|
(FAR struct sockaddr_storage *)&netmask,
|
|
|
|
(FAR struct sockaddr_storage *)&router);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
close(sockfd);
|
|
|
|
}
|
|
|
|
}
|
2014-08-17 17:46:42 +02:00
|
|
|
|
2011-03-19 22:04:13 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-02-11 23:23:55 +01:00
|
|
|
#endif /* CONFIG_NET_IPv4 */
|