musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013年11月27日 00:54:03 -0500
committerRich Felker <dalias@aerifal.cx>2013年11月27日 00:54:03 -0500
commitcabe9aa974aca34c0fda91028c770dee96ba51dc (patch)
treeb42c3cad3efd6a219047a676ebf9dcaf2008cc1b /src
parenta663c930196b50194921e7ee685d0704ac32f6f4 (diff)
downloadmusl-cabe9aa974aca34c0fda91028c770dee96ba51dc.tar.gz
reject invalid address families in getaddrinfo
subsequent code assumes the address family requested is either unspecified or one of IPv4/IPv6, and could malfunction if this constraint is not met, so other address families should be explicitly rejected.
Diffstat (limited to 'src')
-rw-r--r--src/network/getaddrinfo.c 3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/network/getaddrinfo.c b/src/network/getaddrinfo.c
index e58db6cf..5d45be74 100644
--- a/src/network/getaddrinfo.c
+++ b/src/network/getaddrinfo.c
@@ -62,6 +62,9 @@ int getaddrinfo(const char *restrict host, const char *restrict serv, const stru
int result;
int cnt;
+ if (family != AF_INET && family != AF_INET6 && family != AF_UNSPEC)
+ return EAI_FAMILY;
+
if (host && strlen(host)>255) return EAI_NONAME;
if (serv && strlen(serv)>32) return EAI_SERVICE;
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月28日 19:54:21 +0000

AltStyle によって変換されたページ (->オリジナル) /