From: Junio C Hamano Date: Sun, 1 Feb 2009 01:42:17 +0000 (-0800) Subject: Merge branch 'maint-1.6.0' into maint X-Git-Tag: v1.6.1.3~13 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/6ac92294b30d7c8619cf15b531448f011dbdcdcc?ds=inline;hp=-c Merge branch 'maint-1.6.0' into maint * maint-1.6.0: merge: fix out-of-bounds memory access --- 6ac92294b30d7c8619cf15b531448f011dbdcdcc diff --combined unpack-trees.c index 15c9ef592b,4229eec123..3a4e181af4 --- a/unpack-trees.c +++ b/unpack-trees.c @@@ -240,8 -240,11 +240,11 @@@ static struct cache_entry *create_ce_en return ce; } - static int unpack_nondirectories(int n, unsigned long mask, unsigned long dirmask, struct cache_entry *src[5], - const struct name_entry *names, const struct traverse_info *info) + static int unpack_nondirectories(int n, unsigned long mask, + unsigned long dirmask, + struct cache_entry **src, + const struct name_entry *names, + const struct traverse_info *info) { int i; struct unpack_trees_options *o = info->data; @@@ -291,7 -294,7 +294,7 @@@ static int unpack_callback(int n, unsigned long mask, unsigned long dirmask, struct name_entry *names, struct traverse_info *info) { - struct cache_entry *src[5] = { NULL, }; + struct cache_entry *src[MAX_UNPACK_TREES + 1] = { NULL, }; struct unpack_trees_options *o = info->data; const struct name_entry *p = names; @@@ -494,7 -497,7 +497,7 @@@ static int verify_clean_subdirectory(st * anything in the existing directory there. */ int namelen; - int pos, i; + int i; struct dir_struct d; char *pathbuf; int cnt = 0; @@@ -515,20 -518,24 +518,20 @@@ * in that directory. */ namelen = strlen(ce->name); - pos = index_name_pos(o->src_index, ce->name, namelen); - if (0 <= pos) - return cnt; /* we have it as nondirectory */ - pos = -pos - 1; - for (i = pos; i < o->src_index->cache_nr; i++) { - struct cache_entry *ce = o->src_index->cache[i]; - int len = ce_namelen(ce); + for (i = o->pos; i < o->src_index->cache_nr; i++) { + struct cache_entry *ce2 = o->src_index->cache[i]; + int len = ce_namelen(ce2); if (len < namelen || - strncmp(ce->name, ce->name, namelen) || - ce->name[namelen] != '/') + strncmp(ce->name, ce2->name, namelen) || + ce2->name[namelen] != '/') break; /* - * ce->name is an entry in the subdirectory. + * ce2->name is an entry in the subdirectory. */ - if (!ce_stage(ce)) { - if (verify_uptodate(ce, o)) + if (!ce_stage(ce2)) { + if (verify_uptodate(ce2, o)) return -1; - add_entry(o, ce, CE_REMOVE, 0); + add_entry(o, ce2, CE_REMOVE, 0); } cnt++; } @@@ -584,7 -591,7 +587,7 @@@ static int verify_absent(struct cache_e return 0; if (!lstat(ce->name, &st)) { - int cnt; + int ret; int dtype = ce_to_dtype(ce); struct cache_entry *result; @@@ -612,15 -619,13 +615,15 @@@ * files that are in "foo/" we would lose * it. */ - cnt = verify_clean_subdirectory(ce, action, o); + ret = verify_clean_subdirectory(ce, action, o); + if (ret < 0) + return ret; /* * If this removed entries from the index, * what that means is: * - * (1) the caller unpack_trees_rec() saw path/foo + * (1) the caller unpack_callback() saw path/foo * in the index, and it has not removed it because * it thinks it is handling 'path' as blob with * D/F conflict; @@@ -633,7 -638,7 +636,7 @@@ * We need to increment it by the number of * deleted entries here. */ - o->pos += cnt; + o->pos += ret; return 0; }