2022-01-01 18:54:23 +00:00
|
|
|
/* Copyright (C) 2007-2022 Free Software Foundation, Inc.
|
2007-01-14 05:26:04 +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/>. */
|
2007-01-14 05:26:04 +00:00
|
|
|
|
2011-05-23 03:04:16 +00:00
|
|
|
#include <assert.h>
|
2007-01-14 05:26:04 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <not-cancel.h>
|
2012-03-20 23:00:23 +00:00
|
|
|
#include <_itoa.h>
|
2013-05-01 15:46:34 +00:00
|
|
|
#include <stdint.h>
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
#include "nscd-client.h"
|
|
|
|
#include "nscd_proto.h"
|
|
|
|
|
|
|
|
|
|
|
|
int __nss_not_use_nscd_services;
|
|
|
|
|
|
|
|
|
|
|
|
static int nscd_getserv_r (const char *crit, size_t critlen, const char *proto,
|
|
|
|
request_type type, struct servent *resultbuf,
|
|
|
|
char *buf, size_t buflen, struct servent **result);
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
__nscd_getservbyname_r (const char *name, const char *proto,
|
|
|
|
struct servent *result_buf, char *buf, size_t buflen,
|
|
|
|
struct servent **result)
|
|
|
|
{
|
|
|
|
return nscd_getserv_r (name, strlen (name), proto, GETSERVBYNAME, result_buf,
|
|
|
|
buf, buflen, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
__nscd_getservbyport_r (int port, const char *proto,
|
|
|
|
struct servent *result_buf, char *buf, size_t buflen,
|
|
|
|
struct servent **result)
|
|
|
|
{
|
|
|
|
char portstr[3 * sizeof (int) + 2];
|
|
|
|
portstr[sizeof (portstr) - 1] = '\0';
|
|
|
|
char *cp = _itoa_word (port, portstr + sizeof (portstr) - 1, 10, 0);
|
|
|
|
|
2013-11-11 11:24:42 +00:00
|
|
|
return nscd_getserv_r (cp, portstr + sizeof (portstr) - 1 - cp, proto,
|
2007-01-14 05:26:04 +00:00
|
|
|
GETSERVBYPORT, result_buf, buf, buflen, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
libc_locked_map_ptr (, __serv_map_handle) attribute_hidden;
|
|
|
|
/* Note that we only free the structure if necessary. The memory
|
|
|
|
mapping is not removed since it is not visible to the malloc
|
|
|
|
handling. */
|
|
|
|
libc_freeres_fn (serv_map_free)
|
|
|
|
{
|
|
|
|
if (__serv_map_handle.mapped != NO_MAPPING)
|
|
|
|
{
|
|
|
|
void *p = __serv_map_handle.mapped;
|
|
|
|
__serv_map_handle.mapped = NO_MAPPING;
|
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
nscd_getserv_r (const char *crit, size_t critlen, const char *proto,
|
|
|
|
request_type type, struct servent *resultbuf,
|
|
|
|
char *buf, size_t buflen, struct servent **result)
|
|
|
|
{
|
|
|
|
int gc_cycle;
|
|
|
|
int nretries = 0;
|
2011-05-23 03:04:16 +00:00
|
|
|
size_t alloca_used = 0;
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
/* If the mapping is available, try to search there instead of
|
|
|
|
communicating with the nscd. */
|
|
|
|
struct mapped_database *mapped;
|
|
|
|
mapped = __nscd_get_map_ref (GETFDSERV, "services", &__serv_map_handle,
|
|
|
|
&gc_cycle);
|
|
|
|
size_t protolen = proto == NULL ? 0 : strlen (proto);
|
|
|
|
size_t keylen = critlen + 1 + protolen + 1;
|
2011-05-23 03:04:16 +00:00
|
|
|
int alloca_key = __libc_use_alloca (keylen);
|
|
|
|
char *key;
|
|
|
|
if (alloca_key)
|
|
|
|
key = alloca_account (keylen, alloca_used);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key = malloc (keylen);
|
|
|
|
if (key == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
memcpy (__mempcpy (__mempcpy (key, crit, critlen),
|
|
|
|
"/", 1), proto ?: "", protolen + 1);
|
|
|
|
|
|
|
|
retry:;
|
|
|
|
const char *s_name = NULL;
|
|
|
|
const char *s_proto = NULL;
|
2011-05-23 03:04:16 +00:00
|
|
|
int alloca_aliases_len = 0;
|
2007-01-14 05:26:04 +00:00
|
|
|
const uint32_t *aliases_len = NULL;
|
|
|
|
const char *aliases_list = NULL;
|
|
|
|
int retval = -1;
|
|
|
|
const char *recend = (const char *) ~UINTMAX_C (0);
|
|
|
|
int sock = -1;
|
2007-01-31 09:14:21 +00:00
|
|
|
serv_response_header serv_resp;
|
|
|
|
|
2007-01-14 05:26:04 +00:00
|
|
|
if (mapped != NO_MAPPING)
|
|
|
|
{
|
2009-05-16 04:17:08 +00:00
|
|
|
struct datahead *found = __nscd_cache_search (type, key, keylen, mapped,
|
|
|
|
sizeof serv_resp);
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
if (found != NULL)
|
|
|
|
{
|
2007-01-31 09:14:21 +00:00
|
|
|
s_name = (char *) (&found->data[0].servdata + 1);
|
|
|
|
serv_resp = found->data[0].servdata;
|
|
|
|
s_proto = s_name + serv_resp.s_name_len;
|
2011-05-31 12:45:44 +00:00
|
|
|
alloca_aliases_len = 1;
|
2007-01-31 09:14:21 +00:00
|
|
|
aliases_len = (uint32_t *) (s_proto + serv_resp.s_proto_len);
|
2007-01-14 05:26:04 +00:00
|
|
|
aliases_list = ((char *) aliases_len
|
2007-01-31 09:14:21 +00:00
|
|
|
+ serv_resp.s_aliases_cnt * sizeof (uint32_t));
|
|
|
|
recend = (const char *) found->data + found->recsize;
|
|
|
|
/* Now check if we can trust serv_resp fields. If GC is
|
|
|
|
in progress, it can contain anything. */
|
|
|
|
if (mapped->head->gc_cycle != gc_cycle)
|
|
|
|
{
|
|
|
|
retval = -2;
|
|
|
|
goto out;
|
|
|
|
}
|
2007-01-31 10:45:15 +00:00
|
|
|
if (__builtin_expect ((const char *) aliases_len
|
|
|
|
+ serv_resp.s_aliases_cnt * sizeof (uint32_t)
|
|
|
|
> recend, 0))
|
|
|
|
goto out;
|
2007-01-14 05:26:04 +00:00
|
|
|
|
2014-03-26 20:37:35 +00:00
|
|
|
#if !_STRING_ARCH_unaligned
|
2007-01-14 05:26:04 +00:00
|
|
|
/* The aliases_len array in the mapped database might very
|
|
|
|
well be unaligned. We will access it word-wise so on
|
|
|
|
platforms which do not tolerate unaligned accesses we
|
|
|
|
need to make an aligned copy. */
|
|
|
|
if (((uintptr_t) aliases_len & (__alignof__ (*aliases_len) - 1))
|
|
|
|
!= 0)
|
|
|
|
{
|
2011-05-23 03:04:16 +00:00
|
|
|
uint32_t *tmp;
|
|
|
|
alloca_aliases_len
|
|
|
|
= __libc_use_alloca (alloca_used
|
|
|
|
+ (serv_resp.s_aliases_cnt
|
|
|
|
* sizeof (uint32_t)));
|
|
|
|
if (alloca_aliases_len)
|
2011-05-31 12:45:44 +00:00
|
|
|
tmp = alloca_account (serv_resp.s_aliases_cnt
|
|
|
|
* sizeof (uint32_t),
|
|
|
|
alloca_used);
|
2011-05-23 03:04:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
tmp = malloc (serv_resp.s_aliases_cnt * sizeof (uint32_t));
|
|
|
|
if (tmp == NULL)
|
|
|
|
{
|
|
|
|
retval = ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
aliases_len = memcpy (tmp, aliases_len,
|
2007-01-31 09:14:21 +00:00
|
|
|
serv_resp.s_aliases_cnt
|
2007-01-14 05:26:04 +00:00
|
|
|
* sizeof (uint32_t));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-31 09:14:21 +00:00
|
|
|
if (s_name == NULL)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
2007-01-31 09:14:21 +00:00
|
|
|
sock = __nscd_open_socket (key, keylen, type, &serv_resp,
|
|
|
|
sizeof (serv_resp));
|
2007-01-14 05:26:04 +00:00
|
|
|
if (sock == -1)
|
|
|
|
{
|
|
|
|
__nss_not_use_nscd_services = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No value found so far. */
|
|
|
|
*result = NULL;
|
|
|
|
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (serv_resp.found == -1))
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
/* The daemon does not cache this database. */
|
|
|
|
__nss_not_use_nscd_services = 1;
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
|
2007-01-31 09:14:21 +00:00
|
|
|
if (serv_resp.found == 1)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
char *cp = buf;
|
|
|
|
uintptr_t align1;
|
|
|
|
uintptr_t align2;
|
|
|
|
size_t total_len;
|
|
|
|
ssize_t cnt;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
/* A first check whether the buffer is sufficiently large is possible. */
|
|
|
|
/* Now allocate the buffer the array for the group members. We must
|
|
|
|
align the pointer and the base of the h_addr_list pointers. */
|
|
|
|
align1 = ((__alignof__ (char *) - (cp - ((char *) 0)))
|
|
|
|
& (__alignof__ (char *) - 1));
|
2007-01-31 09:14:21 +00:00
|
|
|
align2 = ((__alignof__ (char *) - ((cp + align1 + serv_resp.s_name_len
|
|
|
|
+ serv_resp.s_proto_len)
|
2007-01-14 05:26:04 +00:00
|
|
|
- ((char *) 0)))
|
|
|
|
& (__alignof__ (char *) - 1));
|
2007-01-31 09:14:21 +00:00
|
|
|
if (buflen < (align1 + serv_resp.s_name_len + serv_resp.s_proto_len
|
2007-01-14 05:26:04 +00:00
|
|
|
+ align2
|
2007-01-31 09:14:21 +00:00
|
|
|
+ (serv_resp.s_aliases_cnt + 1) * sizeof (char *)))
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
no_room:
|
|
|
|
__set_errno (ERANGE);
|
|
|
|
retval = ERANGE;
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
cp += align1;
|
|
|
|
|
|
|
|
/* Prepare the result as far as we can. */
|
|
|
|
resultbuf->s_aliases = (char **) cp;
|
2007-01-31 09:14:21 +00:00
|
|
|
cp += (serv_resp.s_aliases_cnt + 1) * sizeof (char *);
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
resultbuf->s_name = cp;
|
2007-01-31 09:14:21 +00:00
|
|
|
cp += serv_resp.s_name_len;
|
2007-01-14 05:26:04 +00:00
|
|
|
resultbuf->s_proto = cp;
|
2007-01-31 09:14:21 +00:00
|
|
|
cp += serv_resp.s_proto_len + align2;
|
|
|
|
resultbuf->s_port = serv_resp.s_port;
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
if (s_name == NULL)
|
|
|
|
{
|
|
|
|
struct iovec vec[2];
|
|
|
|
|
|
|
|
vec[0].iov_base = resultbuf->s_name;
|
2007-01-31 09:14:21 +00:00
|
|
|
vec[0].iov_len = serv_resp.s_name_len + serv_resp.s_proto_len;
|
2007-01-14 05:26:04 +00:00
|
|
|
total_len = vec[0].iov_len;
|
|
|
|
n = 1;
|
|
|
|
|
2007-01-31 09:14:21 +00:00
|
|
|
if (serv_resp.s_aliases_cnt > 0)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
2011-05-23 03:04:16 +00:00
|
|
|
assert (alloca_aliases_len == 0);
|
|
|
|
alloca_aliases_len
|
|
|
|
= __libc_use_alloca (alloca_used
|
|
|
|
+ (serv_resp.s_aliases_cnt
|
|
|
|
* sizeof (uint32_t)));
|
|
|
|
if (alloca_aliases_len)
|
2011-05-31 12:45:44 +00:00
|
|
|
aliases_len = alloca_account (serv_resp.s_aliases_cnt
|
|
|
|
* sizeof (uint32_t),
|
|
|
|
alloca_used);
|
2011-05-23 03:04:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
aliases_len = malloc (serv_resp.s_aliases_cnt
|
|
|
|
* sizeof (uint32_t));
|
|
|
|
if (aliases_len == NULL)
|
|
|
|
{
|
|
|
|
retval = ENOMEM;
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
vec[n].iov_base = (void *) aliases_len;
|
2007-01-31 09:14:21 +00:00
|
|
|
vec[n].iov_len = serv_resp.s_aliases_cnt * sizeof (uint32_t);
|
2007-01-14 05:26:04 +00:00
|
|
|
|
2007-01-31 09:14:21 +00:00
|
|
|
total_len += serv_resp.s_aliases_cnt * sizeof (uint32_t);
|
2007-01-14 05:26:04 +00:00
|
|
|
++n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((size_t) __readvall (sock, vec, n) != total_len)
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
memcpy (resultbuf->s_name, s_name,
|
2007-01-31 09:14:21 +00:00
|
|
|
serv_resp.s_name_len + serv_resp.s_proto_len);
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
/* Now we also can read the aliases. */
|
|
|
|
total_len = 0;
|
2007-01-31 09:14:21 +00:00
|
|
|
for (cnt = 0; cnt < serv_resp.s_aliases_cnt; ++cnt)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
resultbuf->s_aliases[cnt] = cp;
|
|
|
|
cp += aliases_len[cnt];
|
|
|
|
total_len += aliases_len[cnt];
|
|
|
|
}
|
|
|
|
resultbuf->s_aliases[cnt] = NULL;
|
|
|
|
|
|
|
|
if (__builtin_expect ((const char *) aliases_list + total_len > recend,
|
|
|
|
0))
|
2007-01-31 09:14:21 +00:00
|
|
|
{
|
|
|
|
/* aliases_len array might contain garbage during nscd GC cycle,
|
|
|
|
retry rather than fail in that case. */
|
|
|
|
if (aliases_list != NULL && mapped->head->gc_cycle != gc_cycle)
|
|
|
|
retval = -2;
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
|
2007-01-14 05:26:04 +00:00
|
|
|
/* See whether this would exceed the buffer capacity. */
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (cp > buf + buflen))
|
2007-01-31 09:14:21 +00:00
|
|
|
{
|
|
|
|
/* aliases_len array might contain garbage during nscd GC cycle,
|
|
|
|
retry rather than fail in that case. */
|
|
|
|
if (aliases_list != NULL && mapped->head->gc_cycle != gc_cycle)
|
|
|
|
{
|
|
|
|
retval = -2;
|
|
|
|
goto out_close;
|
|
|
|
}
|
|
|
|
goto no_room;
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
/* And finally read the aliases. */
|
|
|
|
if (aliases_list == NULL)
|
|
|
|
{
|
|
|
|
if (total_len == 0
|
|
|
|
|| ((size_t) __readall (sock, resultbuf->s_aliases[0], total_len)
|
|
|
|
== total_len))
|
|
|
|
{
|
|
|
|
retval = 0;
|
|
|
|
*result = resultbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (resultbuf->s_aliases[0], aliases_list, total_len);
|
|
|
|
|
|
|
|
/* Try to detect corrupt databases. */
|
2007-01-31 09:14:21 +00:00
|
|
|
if (resultbuf->s_name[serv_resp.s_name_len - 1] != '\0'
|
|
|
|
|| resultbuf->s_proto[serv_resp.s_proto_len - 1] != '\0'
|
|
|
|
|| ({for (cnt = 0; cnt < serv_resp.s_aliases_cnt; ++cnt)
|
2007-01-14 05:26:04 +00:00
|
|
|
if (resultbuf->s_aliases[cnt][aliases_len[cnt] - 1]
|
|
|
|
!= '\0')
|
|
|
|
break;
|
2007-01-31 09:14:21 +00:00
|
|
|
cnt < serv_resp.s_aliases_cnt; }))
|
|
|
|
{
|
|
|
|
/* We cannot use the database. */
|
|
|
|
if (mapped->head->gc_cycle != gc_cycle)
|
|
|
|
retval = -2;
|
|
|
|
goto out_close;
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
*result = resultbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-13 23:04:40 +00:00
|
|
|
/* Set errno to 0 to indicate no error, just no found record. */
|
|
|
|
__set_errno (0);
|
2007-01-14 05:26:04 +00:00
|
|
|
/* Even though we have not found anything, the result is zero. */
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
out_close:
|
|
|
|
if (sock != -1)
|
2017-07-03 18:22:58 +00:00
|
|
|
__close_nocancel_nostatus (sock);
|
2007-01-14 05:26:04 +00:00
|
|
|
out:
|
2007-01-31 09:14:21 +00:00
|
|
|
if (__nscd_drop_map_ref (mapped, &gc_cycle) != 0)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
/* When we come here this means there has been a GC cycle while we
|
|
|
|
were looking for the data. This means the data might have been
|
|
|
|
inconsistent. Retry if possible. */
|
2007-01-31 09:14:21 +00:00
|
|
|
if ((gc_cycle & 1) != 0 || ++nretries == 5 || retval == -1)
|
2007-01-14 05:26:04 +00:00
|
|
|
{
|
|
|
|
/* nscd is just running gc now. Disable using the mapping. */
|
2022-09-09 13:22:26 +00:00
|
|
|
if (atomic_fetch_add_relaxed (&mapped->counter, -1) == 1)
|
2007-01-31 09:14:21 +00:00
|
|
|
__nscd_unmap (mapped);
|
2007-01-14 05:26:04 +00:00
|
|
|
mapped = NO_MAPPING;
|
|
|
|
}
|
|
|
|
|
2007-01-31 09:14:21 +00:00
|
|
|
if (retval != -1)
|
2011-05-31 12:45:44 +00:00
|
|
|
{
|
|
|
|
if (!alloca_aliases_len)
|
2011-07-05 10:56:12 +00:00
|
|
|
free ((void *) aliases_len);
|
2011-05-31 12:45:44 +00:00
|
|
|
goto retry;
|
|
|
|
}
|
2007-01-14 05:26:04 +00:00
|
|
|
}
|
|
|
|
|
2011-05-23 03:04:16 +00:00
|
|
|
if (!alloca_aliases_len)
|
|
|
|
free ((void *) aliases_len);
|
|
|
|
if (!alloca_key)
|
|
|
|
free (key);
|
|
|
|
|
2007-01-14 05:26:04 +00:00
|
|
|
return retval;
|
|
|
|
}
|