1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

SOCK: Fix buffer overreach when simplifying IPv4-mapped IPv6 addresses

This commit is contained in:
J. David Bryan 2025-12-24 07:31:16 -10:00 committed by Mark Pizzolato
parent 99a9a74e48
commit 0bb4a9a4cd

View File

@ -1192,7 +1192,7 @@ if (connectaddr != NULL) {
p_getnameinfo((struct sockaddr *)&clientname, size, *connectaddr, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
if (0 == memcmp("::ffff:", *connectaddr, 7)) /* is this a IPv4-mapped IPv6 address? */
memmove(*connectaddr, 7+*connectaddr, /* prefer bare IPv4 address */
strlen(*connectaddr) - 7 + 1); /* length to include terminating \0 */
strlen(7+*connectaddr) + 1); /* length to include terminating \0 */
}
if (!(opt_flags & SIM_SOCK_OPT_BLOCKING)) {
@ -1278,7 +1278,7 @@ int ret = 0;
ret = p_getnameinfo(addr, size, hostnamebuf, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
if (0 == memcmp("::ffff:", hostnamebuf, 7)) /* is this a IPv4-mapped IPv6 address? */
memmove(hostnamebuf, 7+hostnamebuf, /* prefer bare IPv4 address */
strlen(hostnamebuf) + 7 - 1); /* length to include terminating \0 */
strlen(7+hostnamebuf) + 1); /* length to include terminating \0 */
if (!ret)
ret = p_getnameinfo(addr, size, NULL, 0, portnamebuf, NI_MAXSERV, NI_NUMERICSERV);
return ret;