From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: Jacek Wielemborek <d33tah@gmail.com>, git@vger.kernel.org
Subject: Re: Segmentation fault found while fuzzing .pack file under 2.7.0.rc3
Date: Mon, 11 Jan 2016 16:33:51 -0500 [thread overview]
Message-ID: <20160111213351.GA21131@sigill.intra.peff.net> (raw)
In-Reply-To: <xmqqtwmp2e6d.fsf@gitster.mtv.corp.google.com>
On Thu, Jan 07, 2016 at 02:54:50PM -0800, Junio C Hamano wrote:
> This is not even compile tested; I just wanted to prevent people
> from adding two unnecessary checks to this function following my
> analysis in the previous message. I think returning bogus value
> stored in a crafted .idx file from this function is OK, as the
> offset will be first used by use_pack() and the sanity of the
> offset, relative to the packfile size, is checked there, and an
> offset that points to a random point in the packfile will be caught
> by the pack reading code, either by unpack_compressed_entry() or by
> patch_delta(), so that is also safe.
>
> We do need to check the unprotected access here. Nobody else in
> the current codepath protects us from this access attempting to
> read an unmapped memory and segfault.
I think this is the right track, and it does indeed catch the bogus .idx
that started this thread. I agree that we should be OK to hand back a
bogus offset to the pack code, which already handles bounds-checking due
to the sliding window code.
> diff --git a/sha1_file.c b/sha1_file.c
> index 73ccd49..8aca1f6 100644
> --- a/sha1_file.c
> +++ b/sha1_file.c
> @@ -2458,6 +2458,13 @@ off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
> off = ntohl(*((uint32_t *)(index + 4 * n)));
> if (!(off & 0x80000000))
> return off;
> +
> + /* 8-byte offset table */
> + if ((p->index_size - (8 + 256 * 4 + 28 * p->num_objects + 40))
> + <
> + (off & 0x7fffffff) * 8)
> + die("offset beyond end of .idx file");
> +
> index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
> return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
> ntohl(*((uint32_t *)(index + 4)));
It's hard to verify that this is right due to all the magic numbers. :)
This function advances the "index" pointer to access the data, and it
has already handled the initial header, v2 object names, etc. I think it
might be simpler to compute:
const unsigned char *end = p->index_data + p->index_size;
and compare the computed "index" against that. I suspect the earlier
accesses of "index" can also be fooled using integer overflows (e.g.,
claim that we have a huge number of objects, and (20 * p->num_objects)
may overflow to arbitrary memory, especially on 32-bit systems where
it's easy to wrap).
-Peff
next prev parent reply other threads:[~2016-01-11 21:34 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-05 13:44 Segmentation fault found while fuzzing .pack file under 2.7.0.rc3 Jacek Wielemborek
2016-01-05 15:24 ` Jeff King
2016-01-06 0:23 ` Jonathan Nieder
2016-01-06 7:23 ` Jeff King
2016-01-06 9:27 ` Jacek Wielemborek
2016-01-06 9:46 ` Duy Nguyen
2016-01-06 12:51 ` Jacek Wielemborek
2016-01-07 19:37 ` Junio C Hamano
2016-01-07 22:54 ` Junio C Hamano
2016-01-11 21:33 ` Jeff King [this message]
2016-02-24 11:05 ` Jeff King
2016-02-24 18:48 ` Junio C Hamano
2016-02-25 14:12 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160111213351.GA21131@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=d33tah@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).