5 #include "cache-tree.h"
6 #include "unpack-trees.h"
12 struct tree_entry_list
{
13 struct tree_entry_list
*next
;
16 const unsigned char *sha1
;
19 static struct tree_entry_list
*create_tree_entry_list(struct tree_desc
*desc
)
21 struct name_entry one
;
22 struct tree_entry_list
*ret
= NULL
;
23 struct tree_entry_list
**list_p
= &ret
;
25 while (tree_entry(desc
, &one
)) {
26 struct tree_entry_list
*entry
;
28 entry
= xmalloc(sizeof(struct tree_entry_list
));
29 entry
->name
= one
.path
;
30 entry
->sha1
= one
.sha1
;
31 entry
->mode
= one
.mode
;
35 list_p
= &entry
->next
;
40 static int entcmp(const char *name1
, int dir1
, const char *name2
, int dir2
)
42 int len1
= strlen(name1
);
43 int len2
= strlen(name2
);
44 int len
= len1
< len2
? len1
: len2
;
45 int ret
= memcmp(name1
, name2
, len
);
55 ret
= (c1
< c2
) ? -1 : (c1
> c2
) ? 1 : 0;
61 static inline void remove_entry(int remove
)
64 remove_cache_entry_at(remove
);
67 static int unpack_trees_rec(struct tree_entry_list
**posns
, int len
,
68 const char *base
, struct unpack_trees_options
*o
,
69 struct tree_entry_list
*df_conflict_list
)
72 int baselen
= strlen(base
);
73 int src_size
= len
+ 1;
82 struct tree_entry_list
**subposns
;
83 struct cache_entry
**src
;
89 /* Find the first name in the input. */
95 if (o
->merge
&& o
->pos
< active_nr
) {
96 /* This is a bit tricky: */
97 /* If the index has a subdirectory (with
98 * contents) as the first name, it'll get a
99 * filename like "foo/bar". But that's after
100 * "foo", so the entry in trees will get
101 * handled first, at which point we'll go into
102 * "foo", and deal with "bar" from the index,
103 * because the base will be "foo/". The only
104 * way we can actually have "foo/bar" first of
105 * all the things is if the trees don't
106 * contain "foo" at all, in which case we'll
107 * handle "foo/bar" without going into the
108 * directory, but that's fine (and will return
109 * an error anyway, with the added unknown
113 cache_name
= active_cache
[o
->pos
]->name
;
114 if (strlen(cache_name
) > baselen
&&
115 !memcmp(cache_name
, base
, baselen
)) {
116 cache_name
+= baselen
;
125 printf("index %s\n", first
);
127 for (i
= 0; i
< len
; i
++) {
128 if (!posns
[i
] || posns
[i
] == df_conflict_list
)
131 printf("%d %s\n", i
+ 1, posns
[i
]->name
);
133 if (!first
|| entcmp(first
, firstdir
,
135 S_ISDIR(posns
[i
]->mode
)) > 0) {
136 first
= posns
[i
]->name
;
137 firstdir
= S_ISDIR(posns
[i
]->mode
);
140 /* No name means we're done */
142 goto leave_directory
;
144 pathlen
= strlen(first
);
145 ce_size
= cache_entry_size(baselen
+ pathlen
);
147 src
= xcalloc(src_size
, sizeof(struct cache_entry
*));
149 subposns
= xcalloc(len
, sizeof(struct tree_list_entry
*));
152 if (cache_name
&& !strcmp(cache_name
, first
)) {
154 src
[0] = active_cache
[o
->pos
];
158 for (i
= 0; i
< len
; i
++) {
159 struct cache_entry
*ce
;
162 (posns
[i
] != df_conflict_list
&&
163 strcmp(first
, posns
[i
]->name
))) {
167 if (posns
[i
] == df_conflict_list
) {
168 src
[i
+ o
->merge
] = o
->df_conflict_entry
;
172 if (S_ISDIR(posns
[i
]->mode
)) {
173 struct tree
*tree
= lookup_tree(posns
[i
]->sha1
);
177 init_tree_desc(&t
, tree
->buffer
, tree
->size
);
178 subposns
[i
] = create_tree_entry_list(&t
);
179 posns
[i
] = posns
[i
]->next
;
180 src
[i
+ o
->merge
] = o
->df_conflict_entry
;
186 else if (i
+ 1 < o
->head_idx
)
188 else if (i
+ 1 > o
->head_idx
)
193 ce
= xcalloc(1, ce_size
);
194 ce
->ce_mode
= create_ce_mode(posns
[i
]->mode
);
195 ce
->ce_flags
= create_ce_flags(baselen
+ pathlen
,
197 memcpy(ce
->name
, base
, baselen
);
198 memcpy(ce
->name
+ baselen
, first
, pathlen
+ 1);
202 hashcpy(ce
->sha1
, posns
[i
]->sha1
);
203 src
[i
+ o
->merge
] = ce
;
204 subposns
[i
] = df_conflict_list
;
205 posns
[i
] = posns
[i
]->next
;
212 printf("%s:\n", first
);
213 for (i
= 0; i
< src_size
; i
++) {
216 printf("%s\n", sha1_to_hex(src
[i
]->sha1
));
221 ret
= o
->fn(src
, o
, remove
);
226 printf("Added %d entries\n", ret
);
230 remove_entry(remove
);
231 for (i
= 0; i
< src_size
; i
++) {
233 add_cache_entry(src
[i
], ADD_CACHE_OK_TO_ADD
|ADD_CACHE_SKIP_DFCHECK
);
239 char *newbase
= xmalloc(baselen
+ 2 + pathlen
);
240 memcpy(newbase
, base
, baselen
);
241 memcpy(newbase
+ baselen
, first
, pathlen
);
242 newbase
[baselen
+ pathlen
] = '/';
243 newbase
[baselen
+ pathlen
+ 1] = '\0';
244 if (unpack_trees_rec(subposns
, len
, newbase
, o
,
247 goto leave_directory
;
259 /* Unlink the last component and attempt to remove leading
260 * directories, in case this unlink is the removal of the
261 * last entry in the directory -- empty directories are removed.
263 static void unlink_entry(char *name
, char *last_symlink
)
267 if (has_symlink_leading_path(name
, last_symlink
))
274 cp
= strrchr(name
, '/');
281 status
= rmdir(name
);
290 static struct checkout state
;
291 static void check_updates(struct cache_entry
**src
, int nr
,
292 struct unpack_trees_options
*o
)
294 unsigned cnt
= 0, total
= 0;
295 struct progress
*progress
= NULL
;
296 char last_symlink
[PATH_MAX
];
298 if (o
->update
&& o
->verbose_update
) {
299 for (total
= cnt
= 0; cnt
< nr
; cnt
++) {
300 struct cache_entry
*ce
= src
[cnt
];
301 if (ce
->ce_flags
& (CE_UPDATE
| CE_REMOVE
))
305 progress
= start_progress_delay("Checking out files",
310 *last_symlink
= '\0';
312 struct cache_entry
*ce
= *src
++;
314 if (ce
->ce_flags
& (CE_UPDATE
| CE_REMOVE
))
315 display_progress(progress
, ++cnt
);
316 if (ce
->ce_flags
& CE_REMOVE
) {
318 unlink_entry(ce
->name
, last_symlink
);
321 if (ce
->ce_flags
& CE_UPDATE
) {
322 ce
->ce_flags
&= ~CE_UPDATE
;
324 checkout_entry(ce
, &state
, NULL
);
325 *last_symlink
= '\0';
329 stop_progress(&progress
);
332 int unpack_trees(unsigned len
, struct tree_desc
*t
, struct unpack_trees_options
*o
)
334 struct tree_entry_list
**posns
;
336 struct tree_entry_list df_conflict_list
;
337 static struct cache_entry
*dfc
;
339 memset(&df_conflict_list
, 0, sizeof(df_conflict_list
));
340 df_conflict_list
.next
= &df_conflict_list
;
341 memset(&state
, 0, sizeof(state
));
345 state
.refresh_cache
= 1;
350 dfc
= xcalloc(1, sizeof(struct cache_entry
) + 1);
351 o
->df_conflict_entry
= dfc
;
354 posns
= xmalloc(len
* sizeof(struct tree_entry_list
*));
355 for (i
= 0; i
< len
; i
++)
356 posns
[i
] = create_tree_entry_list(t
+i
);
358 if (unpack_trees_rec(posns
, len
, o
->prefix
? o
->prefix
: "",
359 o
, &df_conflict_list
)) {
368 if (o
->trivial_merges_only
&& o
->nontrivial_merge
) {
373 return o
->gently
? -1 :
374 error("Merge requires file-level merging");
377 check_updates(active_cache
, active_nr
, o
);
381 /* Here come the merge functions */
383 static int reject_merge(struct cache_entry
*ce
)
385 return error("Entry '%s' would be overwritten by merge. Cannot merge.",
389 static int same(struct cache_entry
*a
, struct cache_entry
*b
)
395 return a
->ce_mode
== b
->ce_mode
&&
396 !hashcmp(a
->sha1
, b
->sha1
);
401 * When a CE gets turned into an unmerged entry, we
402 * want it to be up-to-date
404 static int verify_uptodate(struct cache_entry
*ce
,
405 struct unpack_trees_options
*o
)
409 if (o
->index_only
|| o
->reset
)
412 if (!lstat(ce
->name
, &st
)) {
413 unsigned changed
= ce_match_stat(ce
, &st
, CE_MATCH_IGNORE_VALID
);
417 * NEEDSWORK: the current default policy is to allow
418 * submodule to be out of sync wrt the supermodule
419 * index. This needs to be tightened later for
420 * submodules that are marked to be automatically
423 if (S_ISGITLINK(ce
->ce_mode
))
429 return o
->gently
? -1 :
430 error("Entry '%s' not uptodate. Cannot merge.", ce
->name
);
433 static void invalidate_ce_path(struct cache_entry
*ce
)
436 cache_tree_invalidate_path(active_cache_tree
, ce
->name
);
440 * Check that checking out ce->sha1 in subdir ce->name is not
441 * going to overwrite any working files.
443 * Currently, git does not checkout subprojects during a superproject
444 * checkout, so it is not going to overwrite anything.
446 static int verify_clean_submodule(struct cache_entry
*ce
, const char *action
,
447 struct unpack_trees_options
*o
)
452 static int verify_clean_subdirectory(struct cache_entry
*ce
, const char *action
,
453 struct unpack_trees_options
*o
)
456 * we are about to extract "ce->name"; we would not want to lose
457 * anything in the existing directory there.
464 unsigned char sha1
[20];
466 if (S_ISGITLINK(ce
->ce_mode
) &&
467 resolve_gitlink_ref(ce
->name
, "HEAD", sha1
) == 0) {
468 /* If we are not going to update the submodule, then
471 if (!hashcmp(sha1
, ce
->sha1
))
473 return verify_clean_submodule(ce
, action
, o
);
477 * First let's make sure we do not have a local modification
480 namelen
= strlen(ce
->name
);
481 pos
= cache_name_pos(ce
->name
, namelen
);
483 return cnt
; /* we have it as nondirectory */
485 for (i
= pos
; i
< active_nr
; i
++) {
486 struct cache_entry
*ce
= active_cache
[i
];
487 int len
= ce_namelen(ce
);
489 strncmp(ce
->name
, ce
->name
, namelen
) ||
490 ce
->name
[namelen
] != '/')
493 * ce->name is an entry in the subdirectory.
496 if (verify_uptodate(ce
, o
))
498 ce
->ce_flags
|= CE_REMOVE
;
504 * Then we need to make sure that we do not lose a locally
505 * present file that is not ignored.
507 pathbuf
= xmalloc(namelen
+ 2);
508 memcpy(pathbuf
, ce
->name
, namelen
);
509 strcpy(pathbuf
+namelen
, "/");
511 memset(&d
, 0, sizeof(d
));
513 d
.exclude_per_dir
= o
->dir
->exclude_per_dir
;
514 i
= read_directory(&d
, ce
->name
, pathbuf
, namelen
+1, NULL
);
516 return o
->gently
? -1 :
517 error("Updating '%s' would lose untracked files in it",
524 * We do not want to remove or overwrite a working tree file that
525 * is not tracked, unless it is ignored.
527 static int verify_absent(struct cache_entry
*ce
, const char *action
,
528 struct unpack_trees_options
*o
)
532 if (o
->index_only
|| o
->reset
|| !o
->update
)
535 if (has_symlink_leading_path(ce
->name
, NULL
))
538 if (!lstat(ce
->name
, &st
)) {
541 if (o
->dir
&& excluded(o
->dir
, ce
->name
))
543 * ce->name is explicitly excluded, so it is Ok to
547 if (S_ISDIR(st
.st_mode
)) {
549 * We are checking out path "foo" and
550 * found "foo/." in the working tree.
551 * This is tricky -- if we have modified
552 * files that are in "foo/" we would lose
555 cnt
= verify_clean_subdirectory(ce
, action
, o
);
558 * If this removed entries from the index,
559 * what that means is:
561 * (1) the caller unpack_trees_rec() saw path/foo
562 * in the index, and it has not removed it because
563 * it thinks it is handling 'path' as blob with
565 * (2) we will return "ok, we placed a merged entry
566 * in the index" which would cause o->pos to be
567 * incremented by one;
568 * (3) however, original o->pos now has 'path/foo'
569 * marked with "to be removed".
571 * We need to increment it by the number of
572 * deleted entries here.
579 * The previous round may already have decided to
580 * delete this path, which is in a subdirectory that
581 * is being replaced with a blob.
583 cnt
= cache_name_pos(ce
->name
, strlen(ce
->name
));
585 struct cache_entry
*ce
= active_cache
[cnt
];
586 if (ce
->ce_flags
& CE_REMOVE
)
590 return o
->gently
? -1 :
591 error("Untracked working tree file '%s' "
592 "would be %s by merge.", ce
->name
, action
);
597 static int merged_entry(struct cache_entry
*merge
, struct cache_entry
*old
,
598 struct unpack_trees_options
*o
)
600 merge
->ce_flags
|= CE_UPDATE
;
603 * See if we can re-use the old CE directly?
604 * That way we get the uptodate stat info.
606 * This also removes the UPDATE flag on
609 if (same(old
, merge
)) {
610 memcpy(merge
, old
, offsetof(struct cache_entry
, name
));
612 if (verify_uptodate(old
, o
))
614 invalidate_ce_path(old
);
618 if (verify_absent(merge
, "overwritten", o
))
620 invalidate_ce_path(merge
);
623 merge
->ce_flags
&= ~CE_STAGEMASK
;
624 add_cache_entry(merge
, ADD_CACHE_OK_TO_ADD
|ADD_CACHE_OK_TO_REPLACE
);
628 static int deleted_entry(struct cache_entry
*ce
, struct cache_entry
*old
,
629 struct unpack_trees_options
*o
)
632 if (verify_uptodate(old
, o
))
635 if (verify_absent(ce
, "removed", o
))
637 ce
->ce_flags
|= CE_REMOVE
;
638 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
|ADD_CACHE_OK_TO_REPLACE
);
639 invalidate_ce_path(ce
);
643 static int keep_entry(struct cache_entry
*ce
, struct unpack_trees_options
*o
)
645 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
);
650 static void show_stage_entry(FILE *o
,
651 const char *label
, const struct cache_entry
*ce
)
654 fprintf(o
, "%s (missing)\n", label
);
656 fprintf(o
, "%s%06o %s %d\t%s\n",
659 sha1_to_hex(ce
->sha1
),
665 int threeway_merge(struct cache_entry
**stages
,
666 struct unpack_trees_options
*o
,
669 struct cache_entry
*index
;
670 struct cache_entry
*head
;
671 struct cache_entry
*remote
= stages
[o
->head_idx
+ 1];
674 int remote_match
= 0;
676 int df_conflict_head
= 0;
677 int df_conflict_remote
= 0;
679 int any_anc_missing
= 0;
680 int no_anc_exists
= 1;
683 for (i
= 1; i
< o
->head_idx
; i
++) {
684 if (!stages
[i
] || stages
[i
] == o
->df_conflict_entry
)
691 head
= stages
[o
->head_idx
];
693 if (head
== o
->df_conflict_entry
) {
694 df_conflict_head
= 1;
698 if (remote
== o
->df_conflict_entry
) {
699 df_conflict_remote
= 1;
703 /* First, if there's a #16 situation, note that to prevent #13
706 if (!same(remote
, head
)) {
707 for (i
= 1; i
< o
->head_idx
; i
++) {
708 if (same(stages
[i
], head
)) {
711 if (same(stages
[i
], remote
)) {
717 /* We start with cases where the index is allowed to match
718 * something other than the head: #14(ALT) and #2ALT, where it
719 * is permitted to match the result instead.
721 /* #14, #14ALT, #2ALT */
722 if (remote
&& !df_conflict_head
&& head_match
&& !remote_match
) {
723 if (index
&& !same(index
, remote
) && !same(index
, head
))
724 return o
->gently
? -1 : reject_merge(index
);
725 return merged_entry(remote
, index
, o
);
728 * If we have an entry in the index cache, then we want to
729 * make sure that it matches head.
731 if (index
&& !same(index
, head
)) {
732 return o
->gently
? -1 : reject_merge(index
);
737 if (same(head
, remote
))
738 return merged_entry(head
, index
, o
);
740 if (!df_conflict_remote
&& remote_match
&& !head_match
)
741 return merged_entry(head
, index
, o
);
745 if (!head
&& !remote
&& any_anc_missing
) {
746 remove_entry(remove
);
750 /* Under the new "aggressive" rule, we resolve mostly trivial
751 * cases that we historically had git-merge-one-file resolve.
754 int head_deleted
= !head
&& !df_conflict_head
;
755 int remote_deleted
= !remote
&& !df_conflict_remote
;
756 struct cache_entry
*ce
= NULL
;
765 for (i
= 1; i
< o
->head_idx
; i
++) {
766 if (stages
[i
] && stages
[i
] != o
->df_conflict_entry
) {
775 * Deleted in one and unchanged in the other.
777 if ((head_deleted
&& remote_deleted
) ||
778 (head_deleted
&& remote
&& remote_match
) ||
779 (remote_deleted
&& head
&& head_match
)) {
780 remove_entry(remove
);
782 return deleted_entry(index
, index
, o
);
783 else if (ce
&& !head_deleted
) {
784 if (verify_absent(ce
, "removed", o
))
790 * Added in both, identically.
792 if (no_anc_exists
&& head
&& remote
&& same(head
, remote
))
793 return merged_entry(head
, index
, o
);
797 /* Below are "no merge" cases, which require that the index be
798 * up-to-date to avoid the files getting overwritten with
799 * conflict resolution files.
802 if (verify_uptodate(index
, o
))
806 remove_entry(remove
);
807 o
->nontrivial_merge
= 1;
809 /* #2, #3, #4, #6, #7, #9, #10, #11. */
811 if (!head_match
|| !remote_match
) {
812 for (i
= 1; i
< o
->head_idx
; i
++) {
813 if (stages
[i
] && stages
[i
] != o
->df_conflict_entry
) {
814 keep_entry(stages
[i
], o
);
822 fprintf(stderr
, "read-tree: warning #16 detected\n");
823 show_stage_entry(stderr
, "head ", stages
[head_match
]);
824 show_stage_entry(stderr
, "remote ", stages
[remote_match
]);
827 if (head
) { count
+= keep_entry(head
, o
); }
828 if (remote
) { count
+= keep_entry(remote
, o
); }
835 * The rule is to "carry forward" what is in the index without losing
836 * information across a "fast forward", favoring a successful merge
837 * over a merge failure when it makes sense. For details of the
838 * "carry forward" rule, please see <Documentation/git-read-tree.txt>.
841 int twoway_merge(struct cache_entry
**src
,
842 struct unpack_trees_options
*o
,
845 struct cache_entry
*current
= src
[0];
846 struct cache_entry
*oldtree
= src
[1];
847 struct cache_entry
*newtree
= src
[2];
849 if (o
->merge_size
!= 2)
850 return error("Cannot do a twoway merge of %d trees",
853 if (oldtree
== o
->df_conflict_entry
)
855 if (newtree
== o
->df_conflict_entry
)
859 if ((!oldtree
&& !newtree
) || /* 4 and 5 */
860 (!oldtree
&& newtree
&&
861 same(current
, newtree
)) || /* 6 and 7 */
862 (oldtree
&& newtree
&&
863 same(oldtree
, newtree
)) || /* 14 and 15 */
864 (oldtree
&& newtree
&&
865 !same(oldtree
, newtree
) && /* 18 and 19 */
866 same(current
, newtree
))) {
867 return keep_entry(current
, o
);
869 else if (oldtree
&& !newtree
&& same(current
, oldtree
)) {
871 remove_entry(remove
);
872 return deleted_entry(oldtree
, current
, o
);
874 else if (oldtree
&& newtree
&&
875 same(current
, oldtree
) && !same(current
, newtree
)) {
877 return merged_entry(newtree
, current
, o
);
880 /* all other failures */
881 remove_entry(remove
);
883 return o
->gently
? -1 : reject_merge(oldtree
);
885 return o
->gently
? -1 : reject_merge(current
);
887 return o
->gently
? -1 : reject_merge(newtree
);
892 return merged_entry(newtree
, current
, o
);
893 remove_entry(remove
);
894 return deleted_entry(oldtree
, current
, o
);
900 * Keep the index entries at stage0, collapse stage1 but make sure
901 * stage0 does not have anything there.
903 int bind_merge(struct cache_entry
**src
,
904 struct unpack_trees_options
*o
,
907 struct cache_entry
*old
= src
[0];
908 struct cache_entry
*a
= src
[1];
910 if (o
->merge_size
!= 1)
911 return error("Cannot do a bind merge of %d trees\n",
914 return o
->gently
? -1 :
915 error("Entry '%s' overlaps. Cannot bind.", a
->name
);
917 return keep_entry(old
, o
);
919 return merged_entry(a
, NULL
, o
);
926 * - take the stat information from stage0, take the data from stage1
928 int oneway_merge(struct cache_entry
**src
,
929 struct unpack_trees_options
*o
,
932 struct cache_entry
*old
= src
[0];
933 struct cache_entry
*a
= src
[1];
935 if (o
->merge_size
!= 1)
936 return error("Cannot do a oneway merge of %d trees",
940 remove_entry(remove
);
941 return deleted_entry(old
, old
, o
);
943 if (old
&& same(old
, a
)) {
946 if (lstat(old
->name
, &st
) ||
947 ce_match_stat(old
, &st
, CE_MATCH_IGNORE_VALID
))
948 old
->ce_flags
|= CE_UPDATE
;
950 return keep_entry(old
, o
);
952 return merged_entry(a
, old
, o
);