gaih_inet: make gethosts into a function

The macro is quite a pain to debug, so make gethosts into a function to
make it easier to maintain.

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
Siddhesh Poyarekar 2022-03-07 19:48:48 +05:30
parent 906cecbe08
commit cfa3bd48cb
1 changed files with 59 additions and 58 deletions

View File

@ -268,63 +268,54 @@ convert_hostent_to_gaih_addrtuple (const struct addrinfo *req, int family,
return true; return true;
} }
#define gethosts(_family) \ static int
{ \ gethosts (nss_gethostbyname3_r fct, int family, const char *name,
struct hostent th; \ const struct addrinfo *req, struct scratch_buffer *tmpbuf,
char *localcanon = NULL; \ struct gaih_result *res, enum nss_status *statusp, int *no_datap)
no_data = 0; \ {
while (1) \ struct hostent th;
{ \ char *localcanon = NULL;
status = DL_CALL_FCT (fct, (name, _family, &th, \ enum nss_status status;
tmpbuf->data, tmpbuf->length, \
&errno, &h_errno, NULL, &localcanon)); \ *no_datap = 0;
if (status != NSS_STATUS_TRYAGAIN || h_errno != NETDB_INTERNAL \ while (1)
|| errno != ERANGE) \ {
break; \ *statusp = status = DL_CALL_FCT (fct, (name, family, &th,
if (!scratch_buffer_grow (tmpbuf)) \ tmpbuf->data, tmpbuf->length,
{ \ &errno, &h_errno, NULL,
__resolv_context_put (res_ctx); \ &localcanon));
result = -EAI_MEMORY; \ if (status != NSS_STATUS_TRYAGAIN || h_errno != NETDB_INTERNAL
goto out; \ || errno != ERANGE)
} \ break;
} \ if (!scratch_buffer_grow (tmpbuf))
if (status == NSS_STATUS_NOTFOUND \ return -EAI_MEMORY;
|| status == NSS_STATUS_TRYAGAIN || status == NSS_STATUS_UNAVAIL) \ }
{ \ if (status == NSS_STATUS_NOTFOUND
if (h_errno == NETDB_INTERNAL) \ || status == NSS_STATUS_TRYAGAIN || status == NSS_STATUS_UNAVAIL)
{ \ {
__resolv_context_put (res_ctx); \ if (h_errno == NETDB_INTERNAL)
result = -EAI_SYSTEM; \ return -EAI_SYSTEM;
goto out; \ if (h_errno == TRY_AGAIN)
} \ *no_datap = EAI_AGAIN;
if (h_errno == TRY_AGAIN) \ else
no_data = EAI_AGAIN; \ *no_datap = h_errno == NO_DATA;
else \ }
no_data = h_errno == NO_DATA; \ else if (status == NSS_STATUS_SUCCESS)
} \ {
else if (status == NSS_STATUS_SUCCESS) \ if (!convert_hostent_to_gaih_addrtuple (req, family, &th, res))
{ \ return -EAI_SYSTEM;
if (!convert_hostent_to_gaih_addrtuple (req, _family, &th, res)) \
{ \ if (localcanon != NULL && res->canon == NULL)
__resolv_context_put (res_ctx); \ {
result = -EAI_SYSTEM; \ char *canonbuf = __strdup (localcanon);
goto out; \ if (canonbuf == NULL)
} \ return -EAI_SYSTEM;
\ res->canon = canonbuf;
if (localcanon != NULL && res->canon == NULL) \ }
{ \
char *canonbuf = __strdup (localcanon); \
if (canonbuf == NULL) \
{ \
__resolv_context_put (res_ctx); \
result = -EAI_SYSTEM; \
goto out; \
} \
res->canon = canonbuf; \
} \
} \
} }
return 0;
}
/* This function is called if a canonical name is requested, but if /* This function is called if a canonical name is requested, but if
the service function did not provide it. It tries to obtain the the service function did not provide it. It tries to obtain the
@ -741,7 +732,12 @@ get_nss_addresses (const char *name, const struct addrinfo *req,
if (req->ai_family == AF_INET6 if (req->ai_family == AF_INET6
|| req->ai_family == AF_UNSPEC) || req->ai_family == AF_UNSPEC)
{ {
gethosts (AF_INET6); if ((result = gethosts (fct, AF_INET6, name, req, tmpbuf,
res, &status, &no_data)) != 0)
{
__resolv_context_put (res_ctx);
goto out;
}
no_inet6_data = no_data; no_inet6_data = no_data;
inet6_status = status; inet6_status = status;
} }
@ -753,7 +749,12 @@ get_nss_addresses (const char *name, const struct addrinfo *req,
know we are not going to need them. */ know we are not going to need them. */
&& ((req->ai_flags & AI_ALL) || !res->got_ipv6))) && ((req->ai_flags & AI_ALL) || !res->got_ipv6)))
{ {
gethosts (AF_INET); if ((result = gethosts (fct, AF_INET, name, req, tmpbuf,
res, &status, &no_data)) != 0)
{
__resolv_context_put (res_ctx);
goto out;
}
if (req->ai_family == AF_INET) if (req->ai_family == AF_INET)
{ {