2003-06-10 08:58:05 +00:00
|
|
|
/* Determine protocol families for which interfaces exist. Linux version.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 2003-2021 Free Software Foundation, Inc.
|
2003-06-10 08:58:05 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2006-05-06 22:07:31 +00:00
|
|
|
#include <assert.h>
|
2003-06-10 08:58:05 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <netdb.h>
|
2006-05-06 22:07:31 +00:00
|
|
|
#include <stddef.h>
|
2003-06-10 08:58:05 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2013-05-01 15:46:34 +00:00
|
|
|
#include <stdint.h>
|
2003-06-10 08:58:05 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <asm/types.h>
|
|
|
|
#include <linux/netlink.h>
|
|
|
|
#include <linux/rtnetlink.h>
|
|
|
|
|
2006-04-16 21:34:32 +00:00
|
|
|
#include <not-cancel.h>
|
2015-09-08 21:11:03 +00:00
|
|
|
#include <libc-lock.h>
|
2011-10-31 05:51:16 +00:00
|
|
|
#include <atomic.h>
|
|
|
|
#include <nscd/nscd-client.h>
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2015-11-09 11:48:41 +00:00
|
|
|
#include "netlinkaccess.h"
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2006-09-24 17:14:11 +00:00
|
|
|
#ifndef IFA_F_HOMEADDRESS
|
|
|
|
# define IFA_F_HOMEADDRESS 0
|
|
|
|
#endif
|
2007-08-29 16:50:11 +00:00
|
|
|
#ifndef IFA_F_OPTIMISTIC
|
|
|
|
# define IFA_F_OPTIMISTIC 0
|
|
|
|
#endif
|
2006-04-16 21:34:32 +00:00
|
|
|
|
|
|
|
|
2011-10-31 05:51:16 +00:00
|
|
|
struct cached_data
|
|
|
|
{
|
|
|
|
uint32_t timestamp;
|
|
|
|
uint32_t usecnt;
|
|
|
|
bool seen_ipv4;
|
|
|
|
bool seen_ipv6;
|
|
|
|
size_t in6ailen;
|
|
|
|
struct in6addrinfo in6ai[0];
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct cached_data noai6ai_cached =
|
|
|
|
{
|
2011-11-15 09:32:18 +00:00
|
|
|
.usecnt = 1, /* Make sure we never try to delete this entry. */
|
2011-10-31 05:51:16 +00:00
|
|
|
.in6ailen = 0
|
|
|
|
};
|
|
|
|
|
2014-07-10 08:45:16 +00:00
|
|
|
static struct cached_data *cache;
|
2011-10-31 05:51:16 +00:00
|
|
|
__libc_lock_define_initialized (static, lock);
|
|
|
|
|
|
|
|
|
2014-11-20 07:42:02 +00:00
|
|
|
#if IS_IN (nscd)
|
2011-10-31 05:51:16 +00:00
|
|
|
static uint32_t nl_timestamp;
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
__bump_nl_timestamp (void)
|
|
|
|
{
|
|
|
|
if (atomic_increment_val (&nl_timestamp) == 0)
|
|
|
|
atomic_increment (&nl_timestamp);
|
|
|
|
|
|
|
|
return nl_timestamp;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-22 20:31:12 +00:00
|
|
|
static inline uint32_t
|
|
|
|
get_nl_timestamp (void)
|
|
|
|
{
|
2014-11-20 07:42:02 +00:00
|
|
|
#if IS_IN (nscd)
|
2012-08-22 20:31:12 +00:00
|
|
|
return nl_timestamp;
|
|
|
|
#elif defined USE_NSCD
|
|
|
|
return __nscd_get_nl_timestamp ();
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
cache_valid_p (void)
|
|
|
|
{
|
|
|
|
if (cache != NULL)
|
|
|
|
{
|
|
|
|
uint32_t timestamp = get_nl_timestamp ();
|
|
|
|
return timestamp != 0 && cache->timestamp == timestamp;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-10-31 05:51:16 +00:00
|
|
|
|
|
|
|
static struct cached_data *
|
|
|
|
make_request (int fd, pid_t pid)
|
2003-06-10 08:58:05 +00:00
|
|
|
{
|
2015-01-06 16:26:44 +00:00
|
|
|
struct cached_data *result = NULL;
|
|
|
|
|
|
|
|
size_t result_len = 0;
|
|
|
|
size_t result_cap = 32;
|
|
|
|
|
2006-05-06 22:07:31 +00:00
|
|
|
struct req
|
2003-06-10 08:58:05 +00:00
|
|
|
{
|
|
|
|
struct nlmsghdr nlh;
|
|
|
|
struct rtgenmsg g;
|
2006-05-06 22:07:31 +00:00
|
|
|
/* struct rtgenmsg consists of a single byte. This means there
|
|
|
|
are three bytes of padding included in the REQ definition.
|
|
|
|
We make them explicit here. */
|
|
|
|
char pad[3];
|
2003-06-10 08:58:05 +00:00
|
|
|
} req;
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
|
|
|
|
req.nlh.nlmsg_len = sizeof (req);
|
|
|
|
req.nlh.nlmsg_type = RTM_GETADDR;
|
|
|
|
req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
|
|
|
|
req.nlh.nlmsg_pid = 0;
|
2019-10-24 21:01:40 +00:00
|
|
|
req.nlh.nlmsg_seq = time_now ();
|
2003-06-10 08:58:05 +00:00
|
|
|
req.g.rtgen_family = AF_UNSPEC;
|
|
|
|
|
2006-05-06 22:07:31 +00:00
|
|
|
assert (sizeof (req) - offsetof (struct req, pad) == 3);
|
|
|
|
memset (req.pad, '\0', sizeof (req.pad));
|
|
|
|
|
2003-06-10 08:58:05 +00:00
|
|
|
memset (&nladdr, '\0', sizeof (nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
|
|
|
|
2007-03-15 20:05:19 +00:00
|
|
|
#ifdef PAGE_SIZE
|
|
|
|
const size_t buf_size = PAGE_SIZE;
|
|
|
|
#else
|
2015-01-06 16:26:44 +00:00
|
|
|
const size_t buf_size = 4096;
|
2007-03-15 20:05:19 +00:00
|
|
|
#endif
|
2015-01-06 16:26:44 +00:00
|
|
|
char buf[buf_size];
|
2007-03-15 20:05:19 +00:00
|
|
|
|
|
|
|
struct iovec iov = { buf, buf_size };
|
|
|
|
|
2003-06-10 08:58:05 +00:00
|
|
|
if (TEMP_FAILURE_RETRY (__sendto (fd, (void *) &req, sizeof (req), 0,
|
|
|
|
(struct sockaddr *) &nladdr,
|
|
|
|
sizeof (nladdr))) < 0)
|
2007-03-15 20:05:19 +00:00
|
|
|
goto out_fail;
|
2003-06-10 08:58:05 +00:00
|
|
|
|
|
|
|
bool done = false;
|
2015-01-06 16:26:44 +00:00
|
|
|
|
2011-10-31 05:51:16 +00:00
|
|
|
bool seen_ipv4 = false;
|
|
|
|
bool seen_ipv6 = false;
|
2003-06-10 08:58:05 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
struct msghdr msg =
|
|
|
|
{
|
2016-03-18 20:34:33 +00:00
|
|
|
.msg_name = (void *) &nladdr,
|
|
|
|
.msg_namelen = sizeof (nladdr),
|
|
|
|
.msg_iov = &iov,
|
|
|
|
.msg_iovlen = 1,
|
|
|
|
.msg_control = NULL,
|
|
|
|
.msg_controllen = 0,
|
|
|
|
.msg_flags = 0
|
2003-06-10 08:58:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ssize_t read_len = TEMP_FAILURE_RETRY (__recvmsg (fd, &msg, 0));
|
2015-11-09 11:48:41 +00:00
|
|
|
__netlink_assert_response (fd, read_len);
|
|
|
|
if (read_len < 0)
|
2015-01-06 16:26:44 +00:00
|
|
|
goto out_fail;
|
2003-06-10 08:58:05 +00:00
|
|
|
|
|
|
|
if (msg.msg_flags & MSG_TRUNC)
|
2015-01-06 16:26:44 +00:00
|
|
|
goto out_fail;
|
2003-06-10 08:58:05 +00:00
|
|
|
|
|
|
|
struct nlmsghdr *nlmh;
|
|
|
|
for (nlmh = (struct nlmsghdr *) buf;
|
|
|
|
NLMSG_OK (nlmh, (size_t) read_len);
|
|
|
|
nlmh = (struct nlmsghdr *) NLMSG_NEXT (nlmh, read_len))
|
|
|
|
{
|
2003-11-13 23:39:31 +00:00
|
|
|
if (nladdr.nl_pid != 0 || (pid_t) nlmh->nlmsg_pid != pid
|
2003-06-10 08:58:05 +00:00
|
|
|
|| nlmh->nlmsg_seq != req.nlh.nlmsg_seq)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (nlmh->nlmsg_type == RTM_NEWADDR)
|
|
|
|
{
|
|
|
|
struct ifaddrmsg *ifam = (struct ifaddrmsg *) NLMSG_DATA (nlmh);
|
2007-06-16 16:54:40 +00:00
|
|
|
struct rtattr *rta = IFA_RTA (ifam);
|
|
|
|
size_t len = nlmh->nlmsg_len - NLMSG_LENGTH (sizeof (*ifam));
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2007-11-12 23:55:58 +00:00
|
|
|
if (ifam->ifa_family != AF_INET
|
|
|
|
&& ifam->ifa_family != AF_INET6)
|
|
|
|
continue;
|
2007-06-16 16:54:40 +00:00
|
|
|
|
2007-11-12 23:55:58 +00:00
|
|
|
const void *local = NULL;
|
|
|
|
const void *address = NULL;
|
|
|
|
while (RTA_OK (rta, len))
|
|
|
|
{
|
|
|
|
switch (rta->rta_type)
|
2007-06-16 16:54:40 +00:00
|
|
|
{
|
2007-11-12 23:55:58 +00:00
|
|
|
case IFA_LOCAL:
|
|
|
|
local = RTA_DATA (rta);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IFA_ADDRESS:
|
|
|
|
address = RTA_DATA (rta);
|
|
|
|
goto out;
|
2007-06-16 16:54:40 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 23:55:58 +00:00
|
|
|
rta = RTA_NEXT (rta, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local != NULL)
|
|
|
|
{
|
|
|
|
address = local;
|
|
|
|
out:
|
2008-01-03 00:25:03 +00:00
|
|
|
if (ifam->ifa_family == AF_INET)
|
2007-06-16 16:54:40 +00:00
|
|
|
{
|
2007-11-12 23:55:58 +00:00
|
|
|
if (*(const in_addr_t *) address
|
2007-06-16 16:54:40 +00:00
|
|
|
!= htonl (INADDR_LOOPBACK))
|
2011-10-31 05:51:16 +00:00
|
|
|
seen_ipv4 = true;
|
2007-06-16 16:54:40 +00:00
|
|
|
}
|
2007-11-12 23:55:58 +00:00
|
|
|
else
|
2007-06-16 16:54:40 +00:00
|
|
|
{
|
2007-11-12 23:55:58 +00:00
|
|
|
if (!IN6_IS_ADDR_LOOPBACK (address))
|
2011-10-31 05:51:16 +00:00
|
|
|
seen_ipv6 = true;
|
2007-06-16 16:54:40 +00:00
|
|
|
}
|
2007-11-12 23:55:58 +00:00
|
|
|
}
|
2006-04-16 21:34:32 +00:00
|
|
|
|
2015-01-06 16:26:44 +00:00
|
|
|
if (result_len == 0 || result_len == result_cap)
|
2014-03-24 10:06:30 +00:00
|
|
|
{
|
2015-01-06 16:26:44 +00:00
|
|
|
result_cap = 2 * result_cap;
|
|
|
|
result = realloc (result, sizeof (*result)
|
|
|
|
+ result_cap
|
|
|
|
* sizeof (struct in6addrinfo));
|
2014-03-24 10:06:30 +00:00
|
|
|
}
|
2015-01-06 16:26:44 +00:00
|
|
|
|
|
|
|
if (!result)
|
|
|
|
goto out_fail;
|
|
|
|
|
|
|
|
struct in6addrinfo *info = &result->in6ai[result_len++];
|
|
|
|
|
|
|
|
info->flags = (((ifam->ifa_flags
|
|
|
|
& (IFA_F_DEPRECATED | IFA_F_OPTIMISTIC))
|
|
|
|
? in6ai_deprecated : 0)
|
|
|
|
| ((ifam->ifa_flags & IFA_F_HOMEADDRESS)
|
|
|
|
? in6ai_homeaddress : 0));
|
|
|
|
info->prefixlen = ifam->ifa_prefixlen;
|
|
|
|
info->index = ifam->ifa_index;
|
2007-11-12 23:55:58 +00:00
|
|
|
if (ifam->ifa_family == AF_INET)
|
|
|
|
{
|
2015-01-06 16:26:44 +00:00
|
|
|
info->addr[0] = 0;
|
|
|
|
info->addr[1] = 0;
|
|
|
|
info->addr[2] = htonl (0xffff);
|
|
|
|
info->addr[3] = *(const in_addr_t *) address;
|
2003-06-10 08:58:05 +00:00
|
|
|
}
|
2007-11-12 23:55:58 +00:00
|
|
|
else
|
2015-01-06 16:26:44 +00:00
|
|
|
memcpy (info->addr, address, sizeof (info->addr));
|
2003-06-10 08:58:05 +00:00
|
|
|
}
|
|
|
|
else if (nlmh->nlmsg_type == NLMSG_DONE)
|
|
|
|
/* We found the end, leave the loop. */
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (! done);
|
|
|
|
|
2015-01-06 16:26:44 +00:00
|
|
|
if (seen_ipv6 && result != NULL)
|
2006-04-16 21:34:32 +00:00
|
|
|
{
|
2012-08-22 20:31:12 +00:00
|
|
|
result->timestamp = get_nl_timestamp ();
|
2011-10-31 05:51:16 +00:00
|
|
|
result->usecnt = 2;
|
|
|
|
result->seen_ipv4 = seen_ipv4;
|
|
|
|
result->seen_ipv6 = true;
|
2015-01-06 16:26:44 +00:00
|
|
|
result->in6ailen = result_len;
|
2006-04-16 21:34:32 +00:00
|
|
|
}
|
2011-10-31 05:51:16 +00:00
|
|
|
else
|
|
|
|
{
|
2015-01-06 16:26:44 +00:00
|
|
|
free (result);
|
|
|
|
|
2011-11-15 12:18:15 +00:00
|
|
|
atomic_add (&noai6ai_cached.usecnt, 2);
|
2011-10-31 05:51:16 +00:00
|
|
|
noai6ai_cached.seen_ipv4 = seen_ipv4;
|
|
|
|
noai6ai_cached.seen_ipv6 = seen_ipv6;
|
|
|
|
result = &noai6ai_cached;
|
|
|
|
}
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2011-10-31 05:51:16 +00:00
|
|
|
return result;
|
2007-03-15 20:05:19 +00:00
|
|
|
|
2014-03-25 07:51:59 +00:00
|
|
|
out_fail:
|
2015-01-06 16:26:44 +00:00
|
|
|
|
|
|
|
free (result);
|
2011-10-31 05:51:16 +00:00
|
|
|
return NULL;
|
2003-06-10 08:58:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
attribute_hidden
|
2006-04-16 21:34:32 +00:00
|
|
|
__check_pf (bool *seen_ipv4, bool *seen_ipv6,
|
|
|
|
struct in6addrinfo **in6ai, size_t *in6ailen)
|
2003-06-10 08:58:05 +00:00
|
|
|
{
|
2006-04-16 21:34:32 +00:00
|
|
|
*in6ai = NULL;
|
|
|
|
*in6ailen = 0;
|
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
struct cached_data *olddata = NULL;
|
|
|
|
struct cached_data *data = NULL;
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
__libc_lock_lock (lock);
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2012-08-22 20:31:12 +00:00
|
|
|
if (cache_valid_p ())
|
2012-07-25 21:19:13 +00:00
|
|
|
{
|
|
|
|
data = cache;
|
|
|
|
atomic_increment (&cache->usecnt);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-18 11:08:08 +00:00
|
|
|
int fd = __socket (PF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, NETLINK_ROUTE);
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_likely (fd >= 0))
|
2012-07-25 21:19:13 +00:00
|
|
|
{
|
|
|
|
struct sockaddr_nl nladdr;
|
|
|
|
memset (&nladdr, '\0', sizeof (nladdr));
|
|
|
|
nladdr.nl_family = AF_NETLINK;
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
socklen_t addr_len = sizeof (nladdr);
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
if (__bind (fd, (struct sockaddr *) &nladdr, sizeof (nladdr)) == 0
|
|
|
|
&& __getsockname (fd, (struct sockaddr *) &nladdr,
|
|
|
|
&addr_len) == 0)
|
|
|
|
data = make_request (fd, nladdr.nl_pid);
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2017-07-03 18:22:58 +00:00
|
|
|
__close_nocancel_nostatus (fd);
|
2011-10-31 05:51:16 +00:00
|
|
|
}
|
2003-06-10 08:58:05 +00:00
|
|
|
|
2011-10-31 05:51:16 +00:00
|
|
|
if (data != NULL)
|
|
|
|
{
|
2012-07-25 21:19:13 +00:00
|
|
|
olddata = cache;
|
|
|
|
cache = data;
|
2011-10-30 18:22:57 +00:00
|
|
|
}
|
2003-06-10 08:58:05 +00:00
|
|
|
}
|
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
__libc_lock_unlock (lock);
|
|
|
|
|
|
|
|
if (data != NULL)
|
2003-06-10 08:58:05 +00:00
|
|
|
{
|
2012-07-25 21:19:13 +00:00
|
|
|
/* It worked. */
|
|
|
|
*seen_ipv4 = data->seen_ipv4;
|
|
|
|
*seen_ipv6 = data->seen_ipv6;
|
|
|
|
*in6ailen = data->in6ailen;
|
|
|
|
*in6ai = data->in6ai;
|
|
|
|
|
|
|
|
if (olddata != NULL && olddata->usecnt > 0
|
|
|
|
&& atomic_add_zero (&olddata->usecnt, -1))
|
|
|
|
free (olddata);
|
|
|
|
|
2003-06-10 08:58:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-25 21:19:13 +00:00
|
|
|
/* We cannot determine what interfaces are available. Be
|
|
|
|
pessimistic. */
|
|
|
|
*seen_ipv4 = true;
|
|
|
|
*seen_ipv6 = true;
|
2003-06-10 08:58:05 +00:00
|
|
|
}
|
2011-10-31 05:51:16 +00:00
|
|
|
|
2014-07-10 08:45:16 +00:00
|
|
|
/* Free the cache if it has been allocated. */
|
|
|
|
libc_freeres_fn (freecache)
|
|
|
|
{
|
|
|
|
if (cache)
|
|
|
|
__free_in6ai (cache->in6ai);
|
|
|
|
}
|
2011-10-31 05:51:16 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
__free_in6ai (struct in6addrinfo *ai)
|
|
|
|
{
|
|
|
|
if (ai != NULL)
|
|
|
|
{
|
|
|
|
struct cached_data *data =
|
|
|
|
(struct cached_data *) ((char *) ai
|
|
|
|
- offsetof (struct cached_data, in6ai));
|
|
|
|
|
|
|
|
if (atomic_add_zero (&data->usecnt, -1))
|
|
|
|
{
|
|
|
|
__libc_lock_lock (lock);
|
|
|
|
|
|
|
|
if (data->usecnt == 0)
|
|
|
|
/* Still unused. */
|
|
|
|
free (data);
|
|
|
|
|
|
|
|
__libc_lock_unlock (lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|