aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Simmons-Talbott <josimmon@redhat.com>2023-09-06 13:32:46 +0000
committerJoe Simmons-Talbott <josimmon@redhat.com>2023-09-06 13:33:02 +0000
commit955a47a4bf517ac17d24829547bafd2a79e584e1 (patch)
tree8ee25c7dc617a12de20231c05e1eb4bcf72d155a
parent3d6fcf1bd7f462d333c36a14efc0e03f2fdd3f9e (diff)
downloadglibc-955a47a4bf517ac17d24829547bafd2a79e584e1.tar
glibc-955a47a4bf517ac17d24829547bafd2a79e584e1.tar.gz
glibc-955a47a4bf517ac17d24829547bafd2a79e584e1.tar.bz2
glibc-955a47a4bf517ac17d24829547bafd2a79e584e1.zip
getaddrinfo: Get rid of alloca
Use a scratch_buffer rather than alloca to avoid potential stack overflow.
-rw-r--r--sysdeps/posix/getaddrinfo.c24
1 files changed, 9 insertions, 15 deletions
diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
index d17b97d79a..6ae6744fe4 100644
--- a/sysdeps/posix/getaddrinfo.c
+++ b/sysdeps/posix/getaddrinfo.c
@@ -2404,22 +2404,17 @@ getaddrinfo (const char *name, const char *service,
struct addrinfo *q;
struct addrinfo *last = NULL;
char *canonname = NULL;
- bool malloc_results;
- size_t alloc_size = nresults * (sizeof (*results) + sizeof (size_t));
+ struct scratch_buffer buf;
+ scratch_buffer_init (&buf);
- malloc_results
- = !__libc_use_alloca (alloc_size);
- if (malloc_results)
+ if (!scratch_buffer_set_array_size (&buf, nresults,
+ sizeof (*results) + sizeof (size_t)))
{
- results = malloc (alloc_size);
- if (results == NULL)
- {
- __free_in6ai (in6ai);
- return EAI_MEMORY;
- }
+ __free_in6ai (in6ai);
+ return EAI_MEMORY;
}
- else
- results = alloca (alloc_size);
+ results = buf.data;
+
order = (size_t *) (results + nresults);
/* Now we definitely need the interface information. */
@@ -2590,8 +2585,7 @@ getaddrinfo (const char *name, const char *service,
/* Fill in the canonical name into the new first entry. */
p->ai_canonname = canonname;
- if (malloc_results)
- free (results);
+ scratch_buffer_free (&buf);
}
__free_in6ai (in6ai);