110 lines
3.2 KiB
C
110 lines
3.2 KiB
C
|
/*-
|
||
|
* BSD LICENSE
|
||
|
*
|
||
|
* Copyright (c) Intel Corporation. All rights reserved.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without
|
||
|
* modification, are permitted provided that the following conditions
|
||
|
* are met:
|
||
|
*
|
||
|
* * Redistributions of source code must retain the above copyright
|
||
|
* notice, this list of conditions and the following disclaimer.
|
||
|
* * 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.
|
||
|
* * Neither the name of Intel Corporation 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.
|
||
|
*/
|
||
|
|
||
|
static int
|
||
|
get_addr_str(struct sockaddr *sa, char *host, size_t hlen)
|
||
|
{
|
||
|
const char *result = NULL;
|
||
|
|
||
|
if (sa == NULL || host == NULL) {
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
switch (sa->sa_family) {
|
||
|
case AF_INET:
|
||
|
result = inet_ntop(AF_INET, &(((struct sockaddr_in *)sa)->sin_addr),
|
||
|
host, hlen);
|
||
|
break;
|
||
|
case AF_INET6:
|
||
|
result = inet_ntop(AF_INET6, &(((struct sockaddr_in6 *)sa)->sin6_addr),
|
||
|
host, hlen);
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if (result != NULL) {
|
||
|
return 0;
|
||
|
} else {
|
||
|
return -1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static bool
|
||
|
sock_is_loopback(int fd)
|
||
|
{
|
||
|
struct ifaddrs *addrs, *tmp;
|
||
|
struct sockaddr_storage sa = {};
|
||
|
socklen_t salen;
|
||
|
struct ifreq ifr = {};
|
||
|
char ip_addr[256], ip_addr_tmp[256];
|
||
|
int rc;
|
||
|
bool is_loopback = false;
|
||
|
|
||
|
salen = sizeof(sa);
|
||
|
rc = getsockname(fd, (struct sockaddr *)&sa, &salen);
|
||
|
if (rc != 0) {
|
||
|
return is_loopback;
|
||
|
}
|
||
|
|
||
|
memset(ip_addr, 0, sizeof(ip_addr));
|
||
|
rc = get_addr_str((struct sockaddr *)&sa, ip_addr, sizeof(ip_addr));
|
||
|
if (rc != 0) {
|
||
|
return is_loopback;
|
||
|
}
|
||
|
|
||
|
getifaddrs(&addrs);
|
||
|
for (tmp = addrs; tmp != NULL; tmp = tmp->ifa_next) {
|
||
|
if (tmp->ifa_addr && (tmp->ifa_flags & IFF_UP) &&
|
||
|
(tmp->ifa_addr->sa_family == sa.ss_family)) {
|
||
|
memset(ip_addr_tmp, 0, sizeof(ip_addr_tmp));
|
||
|
rc = get_addr_str(tmp->ifa_addr, ip_addr_tmp, sizeof(ip_addr_tmp));
|
||
|
if (rc != 0) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
if (strncmp(ip_addr, ip_addr_tmp, sizeof(ip_addr)) == 0) {
|
||
|
memcpy(ifr.ifr_name, tmp->ifa_name, sizeof(ifr.ifr_name));
|
||
|
ioctl(fd, SIOCGIFFLAGS, &ifr);
|
||
|
if (ifr.ifr_flags & IFF_LOOPBACK) {
|
||
|
is_loopback = true;
|
||
|
}
|
||
|
goto end;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
end:
|
||
|
freeifaddrs(addrs);
|
||
|
return is_loopback;
|
||
|
}
|