mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
receive-pack, fetch-pack: reject bogus pack that records objects twice
When receive-pack & fetch-pack are run and store the pack obtained over the wire to a local repository, they internally run the index-pack command with the --strict option. Make sure that we reject incoming packfile that records objects twice to avoid spreading such a damage. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
6f62cd7ab1
commit
68be2fea50
@ -1122,8 +1122,10 @@ int cmd_index_pack(int argc, const char **argv, const char *prefix)
|
||||
if (!index_name)
|
||||
die("--verify with no packfile name given");
|
||||
read_idx_option(&opts, index_name);
|
||||
opts.flags |= WRITE_IDX_VERIFY;
|
||||
opts.flags |= WRITE_IDX_VERIFY | WRITE_IDX_STRICT;
|
||||
}
|
||||
if (strict)
|
||||
opts.flags |= WRITE_IDX_STRICT;
|
||||
|
||||
curr_pack = open_pack_file(pack_name);
|
||||
parse_pack_header();
|
||||
|
2
object.c
2
object.c
@ -149,6 +149,8 @@ struct object *parse_object_buffer(const unsigned char *sha1, enum object_type t
|
||||
struct tree *tree = lookup_tree(sha1);
|
||||
if (tree) {
|
||||
obj = &tree->object;
|
||||
if (!tree->buffer)
|
||||
tree->object.parsed = 0;
|
||||
if (!tree->object.parsed) {
|
||||
if (parse_tree_buffer(tree, buffer, size))
|
||||
return NULL;
|
||||
|
@ -129,6 +129,10 @@ const char *write_idx_file(const char *index_name, struct pack_idx_entry **objec
|
||||
}
|
||||
sha1write(f, obj->sha1, 20);
|
||||
git_SHA1_Update(&ctx, obj->sha1, 20);
|
||||
if ((opts->flags & WRITE_IDX_STRICT) &&
|
||||
(i && !hashcmp(list[-2]->sha1, obj->sha1)))
|
||||
die("The same object %s appears twice in the pack",
|
||||
sha1_to_hex(obj->sha1));
|
||||
}
|
||||
|
||||
if (index_version >= 2) {
|
||||
|
Loading…
Reference in New Issue
Block a user