1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/netutils/util.c
Martine Lenders 81c927f80a
netutils: get interface by name rather than ID
The zone ID part in a host part is the name of the network interface
(which by chance is the string representation of the ID with GNRC), not
the ID.
2021-07-22 17:26:47 +02:00

79 lines
1.7 KiB
C

/*
* Copyright (C) 2021 ML!PA Consulting GmbH
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @{
*
* @file
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*/
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include "net/utils.h"
#ifdef MODULE_SOCK_DNS
#include "net/af.h"
#include "net/sock/dns.h"
#endif
/* get the next netif, returns true if there are more */
static bool _netif_get(netif_t **current_netif)
{
netif_t *netif = *current_netif;
netif = netif_iter(netif);
*current_netif = netif;
return netif_iter(netif);
}
int netutils_get_ipv6(ipv6_addr_t *addr, netif_t **netif, const char *hostname)
{
*netif = NULL;
if (hostname == NULL) {
return -EINVAL;
}
#ifdef MODULE_SOCK_DNS
/* hostname is not an IPv6 address */
if (strchr(hostname, ':') == NULL) {
int res = sock_dns_query(hostname, addr, AF_INET6);
if (res < 0) {
return res;
}
return 0;
}
#endif
/* search for interface ID */
size_t len = strlen(hostname);
char *iface = strchr(hostname, '%');
if (iface) {
*netif = netif_get_by_name(iface + 1);
len -= strlen(iface);
if (*netif == NULL) {
return -EINVAL;
}
}
/* preliminary select the first interface */
else if (_netif_get(netif)) {
/* don't take it if there is more than one interface */
*netif = NULL;
}
if (ipv6_addr_from_buf(addr, hostname, len) == NULL) {
return -EINVAL;
}
return 0;
}
/** @} */