Skip to content

Commit 19bed3e

Browse files
committed
smart_pkt: fix potential OOB-read when processing ng packet
OSS-fuzz has reported a potential out-of-bounds read when processing a "ng" smart packet: ==1==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x6310000249c0 at pc 0x000000493a92 bp 0x7ffddc882cd0 sp 0x7ffddc882480 READ of size 65529 at 0x6310000249c0 thread T0 SCARINESS: 26 (multi-byte-read-heap-buffer-overflow) #0 0x493a91 in __interceptor_strchr.part.35 /src/llvm/projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc:673 #1 0x813960 in ng_pkt libgit2/src/transports/smart_pkt.c:320:14 #2 0x810f79 in git_pkt_parse_line libgit2/src/transports/smart_pkt.c:478:9 #3 0x82c3c9 in git_smart__store_refs libgit2/src/transports/smart_protocol.c:47:12 #4 0x6373a2 in git_smart__connect libgit2/src/transports/smart.c:251:15 #5 0x57688f in git_remote_connect libgit2/src/remote.c:708:15 #6 0x52e59b in LLVMFuzzerTestOneInput /src/download_refs_fuzzer.cc:145:9 #7 0x52ef3f in ExecuteFilesOnyByOne(int, char**) /src/libfuzzer/afl/afl_driver.cpp:301:5 #8 0x52f4ee in main /src/libfuzzer/afl/afl_driver.cpp:339:12 #9 0x7f6c910db82f in __libc_start_main /build/glibc-Cl5G7W/glibc-2.23/csu/libc-start.c:291 #10 0x41d518 in _start When parsing an "ng" packet, we keep track of both the current position as well as the remaining length of the packet itself. But instead of taking care not to exceed the length, we pass the current pointer's position to `strchr`, which will search for a certain character until hitting NUL. It is thus possible to create a crafted packet which doesn't contain a NUL byte to trigger an out-of-bounds read. Fix the issue by instead using `memchr`, passing the remaining length as restriction. Furthermore, verify that we actually have enough bytes left to produce a match at all. OSS-Fuzz-Issue: 9406
1 parent fa401a3 commit 19bed3e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/transports/smart_pkt.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,11 @@ static int ng_pkt(git_pkt **out, const char *line, size_t len)
291291
pkt->ref = NULL;
292292
pkt->type = GIT_PKT_NG;
293293

294+
if (len < 3)
295+
goto out_err;
294296
line += 3; /* skip "ng " */
295-
if (!(ptr = strchr(line, ' ')))
297+
len -= 3;
298+
if (!(ptr = memchr(line, ' ', len)))
296299
goto out_err;
297300
len = ptr - line;
298301

@@ -303,8 +306,11 @@ static int ng_pkt(git_pkt **out, const char *line, size_t len)
303306
memcpy(pkt->ref, line, len);
304307
pkt->ref[len] = '\0';
305308

309+
if (len < 1)
310+
goto out_err;
306311
line = ptr + 1;
307-
if (!(ptr = strchr(line, '\n')))
312+
len -= 1;
313+
if (!(ptr = memchr(line, '\n', len)))
308314
goto out_err;
309315
len = ptr - line;
310316

0 commit comments

Comments
 (0)