2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-21 12:21:37 +01:00
|
|
|
#if defined(__linux__)
|
2018-03-28 19:46:27 +02:00
|
|
|
#include <errno.h>
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-09-24 15:33:01 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
const char *
|
|
|
|
ipv4(const char *iface)
|
|
|
|
{
|
|
|
|
struct ifaddrs *ifaddr, *ifa;
|
|
|
|
int s;
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
|
|
|
|
if (getifaddrs(&ifaddr) == -1) {
|
2018-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "getifaddrs: %s\n", strerror(errno));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
|
|
|
|
if (ifa->ifa_addr == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
|
|
|
|
if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
|
|
|
|
if (s != 0) {
|
2018-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "getnameinfo: %s\n", gai_strerror(s));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return bprintf("%s", host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
freeifaddrs(ifaddr);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
ipv6(const char *iface)
|
|
|
|
{
|
|
|
|
struct ifaddrs *ifaddr, *ifa;
|
|
|
|
int s;
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
|
|
|
|
if (getifaddrs(&ifaddr) == -1) {
|
2018-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "getifaddrs: %s\n", strerror(errno));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
|
|
|
|
if (ifa->ifa_addr == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
s = getnameinfo(ifa->ifa_addr, sizeof(struct sockaddr_in6), host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
|
|
|
|
if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET6)) {
|
|
|
|
if (s != 0) {
|
2018-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "getnameinfo: %s\n", gai_strerror(s));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return bprintf("%s", host);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
freeifaddrs(ifaddr);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-03-18 23:26:13 +01:00
|
|
|
#endif
|