#include "namespace.h"
#include <netdb.h>
#if defined(NLS)
#include <nl_types.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "reentrant.h"
#endif
#include "un-namespace.h"
static const char *const ai_errlist[] = {
[0] = "Success",
[EAI_ADDRFAMILY] = "Address family for hostname not supported",
[EAI_AGAIN] = "Name could not be resolved at this time",
[EAI_BADFLAGS] = "Flags parameter had an invalid value",
[EAI_FAIL] = "Non-recoverable failure in name resolution",
[EAI_FAMILY] = "Address family not recognized",
[EAI_MEMORY] = "Memory allocation failure",
[EAI_NODATA] = "No address associated with hostname",
[EAI_NONAME] = "Name does not resolve",
[EAI_SERVICE] = "Service was not recognized for socket type",
[EAI_SOCKTYPE] = "Intended socket type was not recognized",
[EAI_SYSTEM] = "System error returned in errno",
[EAI_BADHINTS] = "Invalid value for hints",
[EAI_PROTOCOL] = "Resolved protocol is unknown",
[EAI_OVERFLOW] = "Argument buffer overflow",
};
#if defined(NLS)
static char gai_buf[NL_TEXTMAX];
static once_t gai_init_once = ONCE_INITIALIZER;
static thread_key_t gai_key;
static int gai_keycreated = 0;
static void
gai_keycreate(void)
{
gai_keycreated = thr_keycreate(&gai_key, free) == 0;
}
#endif
const char *
gai_strerror(int ecode)
{
#if defined(NLS)
nl_catd catd;
char *buf;
int saved_errno;
saved_errno = errno;
if (thr_main() != 0)
buf = gai_buf;
else {
if (thr_once(&gai_init_once, gai_keycreate) != 0 ||
!gai_keycreated)
goto thr_err;
if ((buf = thr_getspecific(gai_key)) == NULL) {
if ((buf = malloc(sizeof(gai_buf))) == NULL)
goto thr_err;
if (thr_setspecific(gai_key, buf) != 0) {
free(buf);
goto thr_err;
}
}
}
catd = catopen("libc", NL_CAT_LOCALE);
if (ecode > 0 && ecode < EAI_MAX)
strlcpy(buf, catgets(catd, 3, ecode, ai_errlist[ecode]),
sizeof(gai_buf));
else if (ecode == 0)
strlcpy(buf, catgets(catd, 3, NL_MSGMAX - 1, "Success"),
sizeof(gai_buf));
else
strlcpy(buf, catgets(catd, 3, NL_MSGMAX, "Unknown error"),
sizeof(gai_buf));
catclose(catd);
errno = saved_errno;
return (buf);
thr_err:
errno = saved_errno;
#endif
if (ecode >= 0 && ecode < EAI_MAX)
return (ai_errlist[ecode]);
return ("Unknown error");
}