summaryrefslogtreecommitdiff
path: root/builtin/unpack-file.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2015-09-24 21:06:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-25 17:18:18 (GMT)
commitdb85a8a9c2fb492d3cd528dbbcc52075c607cf79 (patch)
tree4327ae7e50a7f13fb1354203f6395d65d83aebfa /builtin/unpack-file.c
parent04724222d5aad4da48674e69aab715273f05dded (diff)
downloadgit-db85a8a9c2fb492d3cd528dbbcc52075c607cf79.zip
git-db85a8a9c2fb492d3cd528dbbcc52075c607cf79.tar.gz
git-db85a8a9c2fb492d3cd528dbbcc52075c607cf79.tar.bz2
compat/inet_ntop: fix off-by-one in inet_ntop4
Our compat inet_ntop4 function writes to a temporary buffer with snprintf, and then uses strcpy to put the result into the final "dst" buffer. We check the return value of snprintf against the size of "dst", but fail to account for the NUL terminator. As a result, we may overflow "dst" with a single NUL. In practice, this doesn't happen because the output of inet_ntop is limited, and we provide buffers that are way oversized. We can fix the off-by-one check easily, but while we are here let's also use strlcpy for increased safety, just in case there are other bugs lurking. As a side note, this compat code seems to be BSD-derived. Searching for "vixie inet_ntop" turns up NetBSD's latest version of the same code, which has an identical fix (and switches to strlcpy, too!). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/unpack-file.c')
0 files changed, 0 insertions, 0 deletions