object-file.c: return ULHR_TOO_LONG on "header too long"

Split up the return code for "header too long" from the generic
negative return value unpack_loose_header() returns, and report via
error() if we exceed MAX_HEADER_LEN.

As a test added earlier in this series in t1006-cat-file.sh shows
we'll correctly emit zlib errors from zlib.c already in this case, so
we have no need to carry those return codes further down the
stack. Let's instead just return ULHR_TOO_LONG saying we ran into the
MAX_HEADER_LEN limit, or other negative values for "unable to unpack
<OID> header".

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2021-10-01 11:16:50 +02:00 committed by Junio C Hamano
parent 3b6a8db3b0
commit 5848fb11ac
4 changed files with 13 additions and 5 deletions

View File

@ -1311,16 +1311,19 @@ int git_open_cloexec(const char *name, int flags);
* *
* - ULHR_OK on success * - ULHR_OK on success
* - ULHR_BAD on error * - ULHR_BAD on error
* - ULHR_TOO_LONG if the header was too long
* *
* It will only parse up to MAX_HEADER_LEN bytes unless an optional * It will only parse up to MAX_HEADER_LEN bytes unless an optional
* "hdrbuf" argument is non-NULL. This is intended for use with * "hdrbuf" argument is non-NULL. This is intended for use with
* OBJECT_INFO_ALLOW_UNKNOWN_TYPE to extract the bad type for (error) * OBJECT_INFO_ALLOW_UNKNOWN_TYPE to extract the bad type for (error)
* reporting. The full header will be extracted to "hdrbuf" for use * reporting. The full header will be extracted to "hdrbuf" for use
* with parse_loose_header(). * with parse_loose_header(), ULHR_TOO_LONG will still be returned
* from this function to indicate that the header was too long.
*/ */
enum unpack_loose_header_result { enum unpack_loose_header_result {
ULHR_OK, ULHR_OK,
ULHR_BAD, ULHR_BAD,
ULHR_TOO_LONG,
}; };
enum unpack_loose_header_result unpack_loose_header(git_zstream *stream, enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
unsigned char *map, unsigned char *map,

View File

@ -1245,7 +1245,7 @@ enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
* --allow-unknown-type". * --allow-unknown-type".
*/ */
if (!header) if (!header)
return ULHR_BAD; return ULHR_TOO_LONG;
/* /*
* buffer[0..bufsiz] was not large enough. Copy the partial * buffer[0..bufsiz] was not large enough. Copy the partial
@ -1266,7 +1266,7 @@ enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
stream->next_out = buffer; stream->next_out = buffer;
stream->avail_out = bufsiz; stream->avail_out = bufsiz;
} while (status != Z_STREAM_END); } while (status != Z_STREAM_END);
return ULHR_BAD; return ULHR_TOO_LONG;
} }
static void *unpack_loose_rest(git_zstream *stream, static void *unpack_loose_rest(git_zstream *stream,
@ -1439,6 +1439,10 @@ static int loose_object_info(struct repository *r,
status = error(_("unable to unpack %s header"), status = error(_("unable to unpack %s header"),
oid_to_hex(oid)); oid_to_hex(oid));
break; break;
case ULHR_TOO_LONG:
status = error(_("header for %s too long, exceeds %d bytes"),
oid_to_hex(oid), MAX_HEADER_LEN);
break;
} }
if (status < 0) { if (status < 0) {

View File

@ -235,6 +235,7 @@ static int open_istream_loose(struct git_istream *st, struct repository *r,
case ULHR_OK: case ULHR_OK:
break; break;
case ULHR_BAD: case ULHR_BAD:
case ULHR_TOO_LONG:
goto error; goto error;
} }
if (parse_loose_header(st->u.loose.hdr, &oi, 0) < 0) if (parse_loose_header(st->u.loose.hdr, &oi, 0) < 0)

View File

@ -356,12 +356,12 @@ do
if test "$arg2" = "-p" if test "$arg2" = "-p"
then then
cat >expect <<-EOF cat >expect <<-EOF
error: unable to unpack $bogus_long_sha1 header error: header for $bogus_long_sha1 too long, exceeds 32 bytes
fatal: Not a valid object name $bogus_long_sha1 fatal: Not a valid object name $bogus_long_sha1
EOF EOF
else else
cat >expect <<-EOF cat >expect <<-EOF
error: unable to unpack $bogus_long_sha1 header error: header for $bogus_long_sha1 too long, exceeds 32 bytes
fatal: git cat-file: could not get object info fatal: git cat-file: could not get object info
EOF EOF
fi && fi &&