]> git.ipfire.org Git - thirdparty/git.git/blame - merge-ort.c
t4301: verify that merge-tree fails on missing blob objects
[thirdparty/git.git] / merge-ort.c
CommitLineData
17e5574b
EN
1/*
2 * "Ostensibly Recursive's Twin" merge strategy, or "ort" for short. Meant
3 * as a drop-in replacement for the "recursive" merge strategy, allowing one
4 * to replace
5 *
6 * git merge [-s recursive]
7 *
8 * with
9 *
10 * git merge -s ort
11 *
12 * Note: git's parser allows the space between '-s' and its argument to be
13 * missing. (Should I have backronymed "ham", "alsa", "kip", "nap, "alvo",
14 * "cale", "peedy", or "ins" instead of "ort"?)
15 */
16
bc5c5ec0 17#include "git-compat-util.h"
17e5574b
EN
18#include "merge-ort.h"
19
4296d8f1 20#include "alloc.h"
ea305a68 21#include "attr.h"
67845745 22#include "blob.h"
ef2b3693 23#include "cache-tree.h"
4296d8f1 24#include "commit.h"
67845745 25#include "commit-reach.h"
e4171b1b
EN
26#include "diff.h"
27#include "diffcore.h"
6681ce5c 28#include "dir.h"
32a8f510 29#include "environment.h"
f394e093 30#include "gettext.h"
41771fa4 31#include "hex.h"
7bec8e7f 32#include "entry.h"
67238999 33#include "merge-ll.h"
d4ff2072 34#include "match-trees.h"
5bc07225 35#include "mem-pool.h"
dabab1d6 36#include "object-name.h"
a034e910 37#include "object-store-ll.h"
6f2d7430 38#include "oid-array.h"
c339932b 39#include "path.h"
2bff554b 40#include "promisor-remote.h"
08c46a49 41#include "read-cache-ll.h"
4204cd59 42#include "revision.h"
baf889c2 43#include "sparse-index.h"
5b59c3db 44#include "strmap.h"
10a0d6ae 45#include "submodule-config.h"
c73cda76 46#include "submodule.h"
74ea5c95 47#include "trace2.h"
231e2dd4 48#include "tree.h"
6681ce5c 49#include "unpack-trees.h"
c8017176 50#include "xdiff-interface.h"
5b59c3db 51
d2bc1994
EN
52/*
53 * We have many arrays of size 3. Whenever we have such an array, the
54 * indices refer to one of the sides of the three-way merge. This is so
55 * pervasive that the constants 0, 1, and 2 are used in many places in the
56 * code (especially in arithmetic operations to find the other side's index
57 * or to compute a relevant mask), but sometimes these enum names are used
58 * to aid code clarity.
59 *
60 * See also 'filemask' and 'dirmask' in struct conflict_info; the "ith side"
61 * referred to there is one of these three sides.
62 */
63enum merge_side {
64 MERGE_BASE = 0,
65 MERGE_SIDE1 = 1,
66 MERGE_SIDE2 = 2
67};
68
19ceb486
EN
69static unsigned RESULT_INITIALIZED = 0x1abe11ed; /* unlikely accidental value */
70
beb06145
EN
71struct traversal_callback_data {
72 unsigned long mask;
73 unsigned long dirmask;
74 struct name_entry names[3];
75};
76
d478f567
EN
77struct deferred_traversal_data {
78 /*
79 * possible_trivial_merges: directories to be explored only when needed
80 *
81 * possible_trivial_merges is a map of directory names to
82 * dir_rename_mask. When we detect that a directory is unchanged on
83 * one side, we can sometimes resolve the directory without recursing
84 * into it. Renames are the only things that can prevent such an
85 * optimization. However, for rename sources:
86 * - If no parent directory needed directory rename detection, then
87 * no path under such a directory can be a relevant_source.
88 * and for rename destinations:
89 * - If no cached rename has a target path under the directory AND
90 * - If there are no unpaired relevant_sources elsewhere in the
91 * repository
92 * then we don't need any path under this directory for a rename
93 * destination. The only way to know the last item above is to defer
94 * handling such directories until the end of collect_merge_info(),
95 * in handle_deferred_entries().
96 *
97 * For each we store dir_rename_mask, since that's the only bit of
98 * information we need, other than the path, to resume the recursive
99 * traversal.
100 */
101 struct strintmap possible_trivial_merges;
102
103 /*
104 * trivial_merges_okay: if trivial directory merges are okay
105 *
106 * See possible_trivial_merges above. The "no unpaired
107 * relevant_sources elsewhere in the repository" is a single boolean
108 * per merge side, which we store here. Note that while 0 means no,
109 * 1 only means "maybe" rather than "yes"; we optimistically set it
110 * to 1 initially and only clear when we determine it is unsafe to
111 * do trivial directory merges.
112 */
113 unsigned trivial_merges_okay;
114
115 /*
116 * target_dirs: ancestor directories of rename targets
117 *
118 * target_dirs contains all directory names that are an ancestor of
119 * any rename destination.
120 */
121 struct strset target_dirs;
122};
123
864075ec 124struct rename_info {
c09376d5
EN
125 /*
126 * All variables that are arrays of size 3 correspond to data tracked
127 * for the sides in enum merge_side. Index 0 is almost always unused
128 * because we often only need to track information for MERGE_SIDE1 and
129 * MERGE_SIDE2 (MERGE_BASE can't have rename information since renames
130 * are determined relative to what changed since the MERGE_BASE).
131 */
132
864075ec
EN
133 /*
134 * pairs: pairing of filenames from diffcore_rename()
864075ec
EN
135 */
136 struct diff_queue_struct pairs[3];
137
c09376d5
EN
138 /*
139 * dirs_removed: directories removed on a given side of history.
fb52938e
EN
140 *
141 * The keys of dirs_removed[side] are the directories that were removed
142 * on the given side of history. The value of the strintmap for each
143 * directory is a value from enum dir_rename_relevance.
c09376d5 144 */
a49b55d5 145 struct strintmap dirs_removed[3];
c09376d5
EN
146
147 /*
148 * dir_rename_count: tracking where parts of a directory were renamed to
149 *
150 * When files in a directory are renamed, they may not all go to the
151 * same location. Each strmap here tracks:
152 * old_dir => {new_dir => int}
153 * That is, dir_rename_count[side] is a strmap to a strintmap.
154 */
155 struct strmap dir_rename_count[3];
156
157 /*
158 * dir_renames: computed directory renames
159 *
160 * This is a map of old_dir => new_dir and is derived in part from
161 * dir_rename_count.
162 */
163 struct strmap dir_renames[3];
164
32a56dfb 165 /*
ec59da60 166 * relevant_sources: deleted paths wanted in rename detection, and why
32a56dfb
EN
167 *
168 * relevant_sources is a set of deleted paths on each side of
169 * history for which we need rename detection. If a path is deleted
170 * on one side of history, we need to detect if it is part of a
171 * rename if either
32a56dfb 172 * * the file is modified/deleted on the other side of history
ec59da60 173 * * we need to detect renames for an ancestor directory
32a56dfb 174 * If neither of those are true, we can skip rename detection for
ec59da60
EN
175 * that path. The reason is stored as a value from enum
176 * file_rename_relevance, as the reason can inform the algorithm in
177 * diffcore_rename_extended().
32a56dfb 178 */
a49b55d5 179 struct strintmap relevant_sources[3];
32a56dfb 180
d478f567
EN
181 struct deferred_traversal_data deferred[3];
182
2fd9eda4
EN
183 /*
184 * dir_rename_mask:
185 * 0: optimization removing unmodified potential rename source okay
186 * 2 or 4: optimization okay, but must check for files added to dir
187 * 7: optimization forbidden; need rename source in case of dir rename
188 */
189 unsigned dir_rename_mask:3;
190
beb06145
EN
191 /*
192 * callback_data_*: supporting data structures for alternate traversal
193 *
194 * We sometimes need to be able to traverse through all the files
195 * in a given tree before all immediate subdirectories within that
196 * tree. Since traverse_trees() doesn't do that naturally, we have
197 * a traverse_trees_wrapper() that stores any immediate
198 * subdirectories while traversing files, then traverses the
199 * immediate subdirectories later. These callback_data* variables
200 * store the information for the subdirectories so that we can do
201 * that traversal order.
202 */
203 struct traversal_callback_data *callback_data;
204 int callback_data_nr, callback_data_alloc;
205 char *callback_data_traverse_path;
206
64aceb6d
EN
207 /*
208 * merge_trees: trees passed to the merge algorithm for the merge
209 *
210 * merge_trees records the trees passed to the merge algorithm. But,
211 * this data also is stored in merge_result->priv. If a sequence of
212 * merges are being done (such as when cherry-picking or rebasing),
213 * the next merge can look at this and re-use information from
214 * previous merges under certain circumstances.
215 *
216 * See also all the cached_* variables.
217 */
218 struct tree *merge_trees[3];
219
220 /*
221 * cached_pairs_valid_side: which side's cached info can be reused
222 *
223 * See the description for merge_trees. For repeated merges, at most
224 * only one side's cached information can be used. Valid values:
225 * MERGE_SIDE2: cached data from side2 can be reused
226 * MERGE_SIDE1: cached data from side1 can be reused
227 * 0: no cached data can be reused
8b09a900 228 * -1: See redo_after_renames; both sides can be reused.
64aceb6d
EN
229 */
230 int cached_pairs_valid_side;
231
d29bd6d7
EN
232 /*
233 * cached_pairs: Caching of renames and deletions.
234 *
235 * These are mappings recording renames and deletions of individual
236 * files (not directories). They are thus a map from an old
237 * filename to either NULL (for deletions) or a new filename (for
238 * renames).
239 */
240 struct strmap cached_pairs[3];
241
242 /*
243 * cached_target_names: just the destinations from cached_pairs
244 *
245 * We sometimes want a fast lookup to determine if a given filename
246 * is one of the destinations in cached_pairs. cached_target_names
247 * is thus duplicative information, but it provides a fast lookup.
248 */
249 struct strset cached_target_names[3];
250
251 /*
252 * cached_irrelevant: Caching of rename_sources that aren't relevant.
253 *
254 * If we try to detect a rename for a source path and succeed, it's
255 * part of a rename. If we try to detect a rename for a source path
256 * and fail, then it's a delete. If we do not try to detect a rename
257 * for a path, then we don't know if it's a rename or a delete. If
258 * merge-ort doesn't think the path is relevant, then we just won't
259 * cache anything for that path. But there's a slight problem in
260 * that merge-ort can think a path is RELEVANT_LOCATION, but due to
261 * commit 9bd342137e ("diffcore-rename: determine which
262 * relevant_sources are no longer relevant", 2021-03-13),
263 * diffcore-rename can downgrade the path to RELEVANT_NO_MORE. To
264 * avoid excessive calls to diffcore_rename_extended() we still need
265 * to cache such paths, though we cannot record them as either
266 * renames or deletes. So we cache them here as a "turned out to be
267 * irrelevant *for this commit*" as they are often also irrelevant
268 * for subsequent commits, though we will have to do some extra
269 * checking to see whether such paths become relevant for rename
270 * detection when cherry-picking/rebasing subsequent commits.
271 */
272 struct strset cached_irrelevant[3];
273
8b09a900
EN
274 /*
275 * redo_after_renames: optimization flag for "restarting" the merge
276 *
277 * Sometimes it pays to detect renames, cache them, and then
278 * restart the merge operation from the beginning. The reason for
279 * this is that when we know where all the renames are, we know
280 * whether a certain directory has any paths under it affected --
281 * and if a directory is not affected then it permits us to do
282 * trivial tree merging in more cases. Doing trivial tree merging
283 * prevents the need to run process_entry() on every path
284 * underneath trees that can be trivially merged, and
285 * process_entry() is more expensive than collect_merge_info() --
286 * plus, the second collect_merge_info() will be much faster since
287 * it doesn't have to recurse into the relevant trees.
288 *
289 * Values for this flag:
290 * 0 = don't bother, not worth it (or conditions not yet checked)
291 * 1 = conditions for optimization met, optimization worthwhile
292 * 2 = we already did it (don't restart merge yet again)
293 */
294 unsigned redo_after_renames;
295
864075ec
EN
296 /*
297 * needed_limit: value needed for inexact rename detection to run
298 *
299 * If the current rename limit wasn't high enough for inexact
300 * rename detection to run, this records the limit needed. Otherwise,
301 * this value remains 0.
302 */
303 int needed_limit;
304};
305
5b59c3db
EN
306struct merge_options_internal {
307 /*
308 * paths: primary data structure in all of merge ort.
309 *
310 * The keys of paths:
311 * * are full relative paths from the toplevel of the repository
312 * (e.g. "drivers/firmware/raspberrypi.c").
313 * * store all relevant paths in the repo, both directories and
314 * files (e.g. drivers, drivers/firmware would also be included)
315 * * these keys serve to intern all the path strings, which allows
316 * us to do pointer comparison on directory names instead of
317 * strcmp; we just have to be careful to use the interned strings.
318 *
319 * The values of paths:
320 * * either a pointer to a merged_info, or a conflict_info struct
321 * * merged_info contains all relevant information for a
322 * non-conflicted entry.
323 * * conflict_info contains a merged_info, plus any additional
324 * information about a conflict such as the higher orders stages
325 * involved and the names of the paths those came from (handy
326 * once renames get involved).
327 * * a path may start "conflicted" (i.e. point to a conflict_info)
328 * and then a later step (e.g. three-way content merge) determines
329 * it can be cleanly merged, at which point it'll be marked clean
330 * and the algorithm will ignore any data outside the contained
331 * merged_info for that entry
332 * * If an entry remains conflicted, the merged_info portion of a
333 * conflict_info will later be filled with whatever version of
334 * the file should be placed in the working directory (e.g. an
335 * as-merged-as-possible variation that contains conflict markers).
336 */
337 struct strmap paths;
338
339 /*
340 * conflicted: a subset of keys->values from "paths"
341 *
342 * conflicted is basically an optimization between process_entries()
343 * and record_conflicted_index_entries(); the latter could loop over
344 * ALL the entries in paths AGAIN and look for the ones that are
345 * still conflicted, but since process_entries() has to loop over
346 * all of them, it saves the ones it couldn't resolve in this strmap
347 * so that record_conflicted_index_entries() can iterate just the
348 * relevant entries.
349 */
350 struct strmap conflicted;
351
43c1dccb 352 /*
4137c54b 353 * pool: memory pool for fast allocation/deallocation
43c1dccb 354 *
4137c54b
EN
355 * We allocate room for lots of filenames and auxiliary data
356 * structures in merge_options_internal, and it tends to all be
357 * freed together too. Using a memory pool for these provides a
358 * nice speedup.
43c1dccb 359 */
62a15162 360 struct mem_pool pool;
43c1dccb 361
c5a6f655 362 /*
6debb752 363 * conflicts: logical conflicts and messages stored by _primary_ path
c5a6f655
EN
364 *
365 * This is a map of pathnames (a subset of the keys in "paths" above)
6debb752
JS
366 * to struct string_list, with each item's `util` containing a
367 * `struct logical_conflict_info`. Note, though, that for each path,
368 * it only stores the logical conflicts for which that path is the
369 * primary path; the path might be part of additional conflicts.
c5a6f655 370 */
6debb752 371 struct strmap conflicts;
c5a6f655 372
5b59c3db 373 /*
864075ec
EN
374 * renames: various data relating to rename detection
375 */
376 struct rename_info renames;
377
ea305a68
EN
378 /*
379 * attr_index: hacky minimal index used for renormalization
380 *
381 * renormalization code _requires_ an index, though it only needs to
382 * find a .gitattributes file within the index. So, when
383 * renormalization is important, we create a special index with just
384 * that one file.
385 */
386 struct index_state attr_index;
387
5b59c3db 388 /*
05b85c6e 389 * current_dir_name, toplevel_dir: temporary vars
5b59c3db 390 *
05b85c6e
EN
391 * These are used in collect_merge_info_callback(), and will set the
392 * various merged_info.directory_name for the various paths we get;
393 * see documentation for that variable and the requirements placed on
394 * that field.
5b59c3db
EN
395 */
396 const char *current_dir_name;
05b85c6e 397 const char *toplevel_dir;
5b59c3db
EN
398
399 /* call_depth: recursion level counter for merging merge bases */
400 int call_depth;
4057523a
CW
401
402 /* field that holds submodule conflict information */
403 struct string_list conflicted_submodules;
404};
405
406struct conflicted_submodule_item {
407 char *abbrev;
408 int flag;
5b59c3db
EN
409};
410
1ee34710 411static void conflicted_submodule_item_free(void *util, const char *str UNUSED)
4057523a
CW
412{
413 struct conflicted_submodule_item *item = util;
414
415 free(item->abbrev);
416 free(item);
417}
418
5b59c3db
EN
419struct version_info {
420 struct object_id oid;
421 unsigned short mode;
422};
423
424struct merged_info {
425 /* if is_null, ignore result. otherwise result has oid & mode */
426 struct version_info result;
427 unsigned is_null:1;
428
429 /*
430 * clean: whether the path in question is cleanly merged.
431 *
432 * see conflict_info.merged for more details.
433 */
434 unsigned clean:1;
435
436 /*
437 * basename_offset: offset of basename of path.
438 *
439 * perf optimization to avoid recomputing offset of final '/'
440 * character in pathname (0 if no '/' in pathname).
441 */
442 size_t basename_offset;
443
444 /*
445 * directory_name: containing directory name.
446 *
447 * Note that we assume directory_name is constructed such that
448 * strcmp(dir1_name, dir2_name) == 0 iff dir1_name == dir2_name,
449 * i.e. string equality is equivalent to pointer equality. For this
450 * to hold, we have to be careful setting directory_name.
451 */
452 const char *directory_name;
453};
454
455struct conflict_info {
456 /*
457 * merged: the version of the path that will be written to working tree
458 *
459 * WARNING: It is critical to check merged.clean and ensure it is 0
460 * before reading any conflict_info fields outside of merged.
461 * Allocated merge_info structs will always have clean set to 1.
462 * Allocated conflict_info structs will have merged.clean set to 0
463 * initially. The merged.clean field is how we know if it is safe
464 * to access other parts of conflict_info besides merged; if a
465 * conflict_info's merged.clean is changed to 1, the rest of the
466 * algorithm is not allowed to look at anything outside of the
467 * merged member anymore.
468 */
469 struct merged_info merged;
470
471 /* oids & modes from each of the three trees for this path */
472 struct version_info stages[3];
473
474 /* pathnames for each stage; may differ due to rename detection */
475 const char *pathnames[3];
476
477 /* Whether this path is/was involved in a directory/file conflict */
478 unsigned df_conflict:1;
479
1c7873cd
EN
480 /*
481 * Whether this path is/was involved in a non-content conflict other
482 * than a directory/file conflict (e.g. rename/rename, rename/delete,
483 * file location based on possible directory rename).
484 */
485 unsigned path_conflict:1;
486
5b59c3db
EN
487 /*
488 * For filemask and dirmask, the ith bit corresponds to whether the
489 * ith entry is a file (filemask) or a directory (dirmask). Thus,
490 * filemask & dirmask is always zero, and filemask | dirmask is at
491 * most 7 but can be less when a path does not appear as either a
492 * file or a directory on at least one side of history.
493 *
494 * Note that these masks are related to enum merge_side, as the ith
495 * entry corresponds to side i.
496 *
497 * These values come from a traverse_trees() call; more info may be
498 * found looking at tree-walk.h's struct traverse_info,
499 * particularly the documentation above the "fn" member (note that
500 * filemask = mask & ~dirmask from that documentation).
501 */
502 unsigned filemask:3;
503 unsigned dirmask:3;
504
505 /*
506 * Optimization to track which stages match, to avoid the need to
507 * recompute it in multiple steps. Either 0 or at least 2 bits are
508 * set; if at least 2 bits are set, their corresponding stages match.
509 */
510 unsigned match_mask:3;
511};
512
cb260775
EN
513enum conflict_and_info_types {
514 /* "Simple" conflicts and informational messages */
515 INFO_AUTO_MERGING = 0,
516 CONFLICT_CONTENTS, /* text file that failed to merge */
517 CONFLICT_BINARY,
518 CONFLICT_FILE_DIRECTORY,
519 CONFLICT_DISTINCT_MODES,
520 CONFLICT_MODIFY_DELETE,
cb260775
EN
521
522 /* Regular rename */
523 CONFLICT_RENAME_RENAME, /* same file renamed differently */
524 CONFLICT_RENAME_COLLIDES, /* rename/add or two files renamed to 1 */
525 CONFLICT_RENAME_DELETE,
526
527 /* Basic directory rename */
528 CONFLICT_DIR_RENAME_SUGGESTED,
529 INFO_DIR_RENAME_APPLIED,
530
531 /* Special directory rename cases */
532 INFO_DIR_RENAME_SKIPPED_DUE_TO_RERENAME,
533 CONFLICT_DIR_RENAME_FILE_IN_WAY,
534 CONFLICT_DIR_RENAME_COLLISION,
535 CONFLICT_DIR_RENAME_SPLIT,
536
537 /* Basic submodule */
538 INFO_SUBMODULE_FAST_FORWARDING,
539 CONFLICT_SUBMODULE_FAILED_TO_MERGE,
540
541 /* Special submodule cases broken out from FAILED_TO_MERGE */
542 CONFLICT_SUBMODULE_FAILED_TO_MERGE_BUT_POSSIBLE_RESOLUTION,
543 CONFLICT_SUBMODULE_NOT_INITIALIZED,
544 CONFLICT_SUBMODULE_HISTORY_NOT_AVAILABLE,
545 CONFLICT_SUBMODULE_MAY_HAVE_REWINDS,
4057523a 546 CONFLICT_SUBMODULE_NULL_MERGE_BASE,
cb260775
EN
547
548 /* Keep this entry _last_ in the list */
549 NB_CONFLICT_TYPES,
550};
551
552/*
553 * Short description of conflict type, relied upon by external tools.
554 *
555 * We can add more entries, but DO NOT change any of these strings. Also,
556 * Order MUST match conflict_info_and_types.
557 */
558static const char *type_short_descriptions[] = {
559 /*** "Simple" conflicts and informational messages ***/
560 [INFO_AUTO_MERGING] = "Auto-merging",
561 [CONFLICT_CONTENTS] = "CONFLICT (contents)",
562 [CONFLICT_BINARY] = "CONFLICT (binary)",
563 [CONFLICT_FILE_DIRECTORY] = "CONFLICT (file/directory)",
564 [CONFLICT_DISTINCT_MODES] = "CONFLICT (distinct modes)",
565 [CONFLICT_MODIFY_DELETE] = "CONFLICT (modify/delete)",
cb260775
EN
566
567 /*** Regular rename ***/
568 [CONFLICT_RENAME_RENAME] = "CONFLICT (rename/rename)",
569 [CONFLICT_RENAME_COLLIDES] = "CONFLICT (rename involved in collision)",
570 [CONFLICT_RENAME_DELETE] = "CONFLICT (rename/delete)",
571
572 /*** Basic directory rename ***/
573 [CONFLICT_DIR_RENAME_SUGGESTED] =
574 "CONFLICT (directory rename suggested)",
575 [INFO_DIR_RENAME_APPLIED] = "Path updated due to directory rename",
576
577 /*** Special directory rename cases ***/
578 [INFO_DIR_RENAME_SKIPPED_DUE_TO_RERENAME] =
579 "Directory rename skipped since directory was renamed on both sides",
580 [CONFLICT_DIR_RENAME_FILE_IN_WAY] =
581 "CONFLICT (file in way of directory rename)",
582 [CONFLICT_DIR_RENAME_COLLISION] = "CONFLICT(directory rename collision)",
583 [CONFLICT_DIR_RENAME_SPLIT] = "CONFLICT(directory rename unclear split)",
584
585 /*** Basic submodule ***/
586 [INFO_SUBMODULE_FAST_FORWARDING] = "Fast forwarding submodule",
587 [CONFLICT_SUBMODULE_FAILED_TO_MERGE] = "CONFLICT (submodule)",
588
589 /*** Special submodule cases broken out from FAILED_TO_MERGE ***/
590 [CONFLICT_SUBMODULE_FAILED_TO_MERGE_BUT_POSSIBLE_RESOLUTION] =
591 "CONFLICT (submodule with possible resolution)",
592 [CONFLICT_SUBMODULE_NOT_INITIALIZED] =
593 "CONFLICT (submodule not initialized)",
594 [CONFLICT_SUBMODULE_HISTORY_NOT_AVAILABLE] =
595 "CONFLICT (submodule history not available)",
596 [CONFLICT_SUBMODULE_MAY_HAVE_REWINDS] =
597 "CONFLICT (submodule may have rewinds)",
4057523a
CW
598 [CONFLICT_SUBMODULE_NULL_MERGE_BASE] =
599 "CONFLICT (submodule lacks merge base)"
cb260775
EN
600};
601
602struct logical_conflict_info {
603 enum conflict_and_info_types type;
604 struct strvec paths;
605};
606
04af1879
EN
607/*** Function Grouping: various utility functions ***/
608
98bf9841
EN
609/*
610 * For the next three macros, see warning for conflict_info.merged.
611 *
612 * In each of the below, mi is a struct merged_info*, and ci was defined
613 * as a struct conflict_info* (but we need to verify ci isn't actually
614 * pointed at a struct merged_info*).
615 *
616 * INITIALIZE_CI: Assign ci to mi but only if it's safe; set to NULL otherwise.
617 * VERIFY_CI: Ensure that something we assigned to a conflict_info* is one.
618 * ASSIGN_AND_VERIFY_CI: Similar to VERIFY_CI but do assignment first.
619 */
620#define INITIALIZE_CI(ci, mi) do { \
621 (ci) = (!(mi) || (mi)->clean) ? NULL : (struct conflict_info *)(mi); \
622} while (0)
623#define VERIFY_CI(ci) assert(ci && !ci->merged.clean);
624#define ASSIGN_AND_VERIFY_CI(ci, mi) do { \
625 (ci) = (struct conflict_info *)(mi); \
626 assert((ci) && !(mi)->clean); \
627} while (0)
628
89422d29
EN
629static void free_strmap_strings(struct strmap *map)
630{
631 struct hashmap_iter iter;
632 struct strmap_entry *entry;
633
634 strmap_for_each_entry(map, &iter, entry) {
635 free((char*)entry->key);
636 }
637}
638
43e9c4ee
EN
639static void clear_or_reinit_internal_opts(struct merge_options_internal *opti,
640 int reinitialize)
101bc5bc 641{
f5d9fbc2
EN
642 struct rename_info *renames = &opti->renames;
643 int i;
7afc0b03 644 void (*strmap_clear_func)(struct strmap *, int) =
43e9c4ee 645 reinitialize ? strmap_partial_clear : strmap_clear;
7afc0b03 646 void (*strintmap_clear_func)(struct strintmap *) =
a49b55d5 647 reinitialize ? strintmap_partial_clear : strintmap_clear;
7afc0b03 648 void (*strset_clear_func)(struct strset *) =
d29bd6d7 649 reinitialize ? strset_partial_clear : strset_clear;
101bc5bc 650
62a15162 651 strmap_clear_func(&opti->paths, 0);
101bc5bc
EN
652
653 /*
654 * All keys and values in opti->conflicted are a subset of those in
655 * opti->paths. We don't want to deallocate anything twice, so we
656 * don't free the keys and we pass 0 for free_values.
657 */
7afc0b03 658 strmap_clear_func(&opti->conflicted, 0);
c5a6f655 659
1218b3ab 660 if (opti->attr_index.cache_nr) /* true iff opt->renormalize */
ea305a68
EN
661 discard_index(&opti->attr_index);
662
f5d9fbc2
EN
663 /* Free memory used by various renames maps */
664 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; ++i) {
7afc0b03
EN
665 strintmap_clear_func(&renames->dirs_removed[i]);
666 strmap_clear_func(&renames->dir_renames[i], 0);
667 strintmap_clear_func(&renames->relevant_sources[i]);
d5098029
EN
668 if (!reinitialize)
669 assert(renames->cached_pairs_valid_side == 0);
8b09a900
EN
670 if (i != renames->cached_pairs_valid_side &&
671 -1 != renames->cached_pairs_valid_side) {
7afc0b03
EN
672 strset_clear_func(&renames->cached_target_names[i]);
673 strmap_clear_func(&renames->cached_pairs[i], 1);
674 strset_clear_func(&renames->cached_irrelevant[i]);
d5098029
EN
675 partial_clear_dir_rename_count(&renames->dir_rename_count[i]);
676 if (!reinitialize)
677 strmap_clear(&renames->dir_rename_count[i], 1);
678 }
f5d9fbc2 679 }
d478f567 680 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; ++i) {
7afc0b03
EN
681 strintmap_clear_func(&renames->deferred[i].possible_trivial_merges);
682 strset_clear_func(&renames->deferred[i].target_dirs);
d478f567
EN
683 renames->deferred[i].trivial_merges_okay = 1; /* 1 == maybe */
684 }
64aceb6d
EN
685 renames->cached_pairs_valid_side = 0;
686 renames->dir_rename_mask = 0;
f5d9fbc2 687
c5a6f655
EN
688 if (!reinitialize) {
689 struct hashmap_iter iter;
690 struct strmap_entry *e;
691
692 /* Release and free each strbuf found in output */
6debb752
JS
693 strmap_for_each_entry(&opti->conflicts, &iter, e) {
694 struct string_list *list = e->value;
cb260775
EN
695 for (int i = 0; i < list->nr; i++) {
696 struct logical_conflict_info *info =
697 list->items[i].util;
698 strvec_clear(&info->paths);
699 }
c5a6f655 700 /*
6debb752
JS
701 * While strictly speaking we don't need to
702 * free(conflicts) here because we could pass
703 * free_values=1 when calling strmap_clear() on
704 * opti->conflicts, that would require strmap_clear
705 * to do another strmap_for_each_entry() loop, so we
706 * just free it while we're iterating anyway.
c5a6f655 707 */
6debb752
JS
708 string_list_clear(list, 1);
709 free(list);
c5a6f655 710 }
6debb752 711 strmap_clear(&opti->conflicts, 0);
c5a6f655 712 }
beb06145 713
62a15162 714 mem_pool_discard(&opti->pool, 0);
4137c54b 715
4057523a
CW
716 string_list_clear_func(&opti->conflicted_submodules,
717 conflicted_submodule_item_free);
718
beb06145
EN
719 /* Clean out callback_data as well. */
720 FREE_AND_NULL(renames->callback_data);
721 renames->callback_data_nr = renames->callback_data_alloc = 0;
101bc5bc
EN
722}
723
c73cda76
EN
724static void format_commit(struct strbuf *sb,
725 int indent,
155b517d 726 struct repository *repo,
c73cda76
EN
727 struct commit *commit)
728{
70f19c7f
EN
729 struct merge_remote_desc *desc;
730 struct pretty_print_context ctx = {0};
731 ctx.abbrev = DEFAULT_ABBREV;
732
733 strbuf_addchars(sb, ' ', indent);
734 desc = merge_remote_util(commit);
735 if (desc) {
736 strbuf_addf(sb, "virtual %s\n", desc->name);
737 return;
738 }
739
155b517d 740 repo_format_commit_message(repo, commit, "%h %s", sb, &ctx);
70f19c7f 741 strbuf_addch(sb, '\n');
c73cda76
EN
742}
743
cb260775 744__attribute__((format (printf, 8, 9)))
c5a6f655 745static void path_msg(struct merge_options *opt,
cb260775 746 enum conflict_and_info_types type,
c5a6f655 747 int omittable_hint, /* skippable under --remerge-diff */
cb260775
EN
748 const char *primary_path,
749 const char *other_path_1, /* may be NULL */
750 const char *other_path_2, /* may be NULL */
751 struct string_list *other_paths, /* may be NULL */
c5a6f655
EN
752 const char *fmt, ...)
753{
754 va_list ap;
6debb752 755 struct string_list *path_conflicts;
cb260775 756 struct logical_conflict_info *info;
6debb752
JS
757 struct strbuf buf = STRBUF_INIT;
758 struct strbuf *dest;
6054d1aa
EN
759 struct strbuf tmp = STRBUF_INIT;
760
cb260775
EN
761 /* Sanity checks */
762 assert(omittable_hint ==
763 !starts_with(type_short_descriptions[type], "CONFLICT") ||
ff033db7 764 type == CONFLICT_DIR_RENAME_SUGGESTED);
6054d1aa 765 if (opt->record_conflict_msgs_as_headers && omittable_hint)
0d83d824 766 return; /* Do not record mere hints in headers */
624a9350
EN
767 if (opt->priv->call_depth && opt->verbosity < 5)
768 return; /* Ignore messages from inner merges */
769
6debb752 770 /* Ensure path_conflicts (ptr to array of logical_conflict) allocated */
cb260775 771 path_conflicts = strmap_get(&opt->priv->conflicts, primary_path);
6debb752
JS
772 if (!path_conflicts) {
773 path_conflicts = xmalloc(sizeof(*path_conflicts));
774 string_list_init_dup(path_conflicts);
cb260775 775 strmap_put(&opt->priv->conflicts, primary_path, path_conflicts);
c5a6f655
EN
776 }
777
cb260775
EN
778 /* Add a logical_conflict at the end to store info from this call */
779 info = xcalloc(1, sizeof(*info));
780 info->type = type;
781 strvec_init(&info->paths);
782
783 /* Handle the list of paths */
784 strvec_push(&info->paths, primary_path);
785 if (other_path_1)
786 strvec_push(&info->paths, other_path_1);
787 if (other_path_2)
788 strvec_push(&info->paths, other_path_2);
789 if (other_paths)
790 for (int i = 0; i < other_paths->nr; i++)
791 strvec_push(&info->paths, other_paths->items[i].string);
792
6debb752
JS
793 /* Handle message and its format, in normal case */
794 dest = (opt->record_conflict_msgs_as_headers ? &tmp : &buf);
6054d1aa 795
c5a6f655 796 va_start(ap, fmt);
4a3d86e1
EN
797 if (opt->priv->call_depth) {
798 strbuf_addchars(dest, ' ', 2);
799 strbuf_addstr(dest, "From inner merge:");
800 strbuf_addchars(dest, ' ', opt->priv->call_depth * 2);
801 }
6054d1aa 802 strbuf_vaddf(dest, fmt, ap);
c5a6f655
EN
803 va_end(ap);
804
6debb752 805 /* Handle specialized formatting of message under --remerge-diff */
6054d1aa
EN
806 if (opt->record_conflict_msgs_as_headers) {
807 int i_sb = 0, i_tmp = 0;
808
809 /* Start with the specified prefix */
810 if (opt->msg_header_prefix)
6debb752 811 strbuf_addf(&buf, "%s ", opt->msg_header_prefix);
6054d1aa
EN
812
813 /* Copy tmp to sb, adding spaces after newlines */
6debb752 814 strbuf_grow(&buf, buf.len + 2*tmp.len); /* more than sufficient */
6054d1aa
EN
815 for (; i_tmp < tmp.len; i_tmp++, i_sb++) {
816 /* Copy next character from tmp to sb */
6debb752 817 buf.buf[buf.len + i_sb] = tmp.buf[i_tmp];
6054d1aa
EN
818
819 /* If we copied a newline, add a space */
820 if (tmp.buf[i_tmp] == '\n')
6debb752 821 buf.buf[++i_sb] = ' ';
6054d1aa
EN
822 }
823 /* Update length and ensure it's NUL-terminated */
6debb752
JS
824 buf.len += i_sb;
825 buf.buf[buf.len] = '\0';
6054d1aa
EN
826
827 strbuf_release(&tmp);
828 }
cb260775
EN
829 string_list_append_nodup(path_conflicts, strbuf_detach(&buf, NULL))
830 ->util = info;
c5a6f655
EN
831}
832
a8791ef6
EN
833static struct diff_filespec *pool_alloc_filespec(struct mem_pool *pool,
834 const char *path)
835{
62a15162 836 /* Similar to alloc_filespec(), but allocate from pool and reuse path */
a8791ef6 837 struct diff_filespec *spec;
a8791ef6 838
092e5115
EN
839 spec = mem_pool_calloc(pool, 1, sizeof(*spec));
840 spec->path = (char*)path; /* spec won't modify it */
a8791ef6
EN
841
842 spec->count = 1;
843 spec->is_binary = -1;
844 return spec;
845}
846
a8791ef6
EN
847static struct diff_filepair *pool_diff_queue(struct mem_pool *pool,
848 struct diff_queue_struct *queue,
849 struct diff_filespec *one,
850 struct diff_filespec *two)
851{
62a15162 852 /* Same code as diff_queue(), except allocate from pool */
a8791ef6
EN
853 struct diff_filepair *dp;
854
a8791ef6
EN
855 dp = mem_pool_calloc(pool, 1, sizeof(*dp));
856 dp->one = one;
857 dp->two = two;
858 if (queue)
859 diff_q(queue, dp);
860 return dp;
861}
862
5a1a1e8e
EN
863/* add a string to a strbuf, but converting "/" to "_" */
864static void add_flattened_path(struct strbuf *out, const char *s)
865{
866 size_t i = out->len;
867 strbuf_addstr(out, s);
868 for (; i < out->len; i++)
869 if (out->buf[i] == '/')
870 out->buf[i] = '_';
871}
872
81afc794 873static char *unique_path(struct merge_options *opt,
23366d2a
EN
874 const char *path,
875 const char *branch)
876{
81afc794 877 char *ret = NULL;
5a1a1e8e
EN
878 struct strbuf newpath = STRBUF_INIT;
879 int suffix = 0;
880 size_t base_len;
81afc794 881 struct strmap *existing_paths = &opt->priv->paths;
5a1a1e8e
EN
882
883 strbuf_addf(&newpath, "%s~", path);
884 add_flattened_path(&newpath, branch);
885
886 base_len = newpath.len;
887 while (strmap_contains(existing_paths, newpath.buf)) {
888 strbuf_setlen(&newpath, base_len);
889 strbuf_addf(&newpath, "_%d", suffix++);
890 }
891
81afc794
EN
892 /* Track the new path in our memory pool */
893 ret = mem_pool_alloc(&opt->priv->pool, newpath.len + 1);
894 memcpy(ret, newpath.buf, newpath.len + 1);
895 strbuf_release(&newpath);
896 return ret;
23366d2a
EN
897}
898
04af1879
EN
899/*** Function Grouping: functions related to collect_merge_info() ***/
900
a68e6cea
EN
901static int traverse_trees_wrapper_callback(int n,
902 unsigned long mask,
903 unsigned long dirmask,
904 struct name_entry *names,
905 struct traverse_info *info)
906{
907 struct merge_options *opt = info->data;
908 struct rename_info *renames = &opt->priv->renames;
2fd9eda4 909 unsigned filemask = mask & ~dirmask;
a68e6cea
EN
910
911 assert(n==3);
912
913 if (!renames->callback_data_traverse_path)
914 renames->callback_data_traverse_path = xstrdup(info->traverse_path);
915
2fd9eda4
EN
916 if (filemask && filemask == renames->dir_rename_mask)
917 renames->dir_rename_mask = 0x07;
918
a68e6cea
EN
919 ALLOC_GROW(renames->callback_data, renames->callback_data_nr + 1,
920 renames->callback_data_alloc);
921 renames->callback_data[renames->callback_data_nr].mask = mask;
922 renames->callback_data[renames->callback_data_nr].dirmask = dirmask;
923 COPY_ARRAY(renames->callback_data[renames->callback_data_nr].names,
924 names, 3);
925 renames->callback_data_nr++;
926
927 return mask;
928}
929
930/*
931 * Much like traverse_trees(), BUT:
932 * - read all the tree entries FIRST, saving them
933 * - note that the above step provides an opportunity to compute necessary
934 * additional details before the "real" traversal
935 * - loop through the saved entries and call the original callback on them
936 */
a68e6cea
EN
937static int traverse_trees_wrapper(struct index_state *istate,
938 int n,
939 struct tree_desc *t,
940 struct traverse_info *info)
941{
942 int ret, i, old_offset;
943 traverse_callback_t old_fn;
944 char *old_callback_data_traverse_path;
945 struct merge_options *opt = info->data;
946 struct rename_info *renames = &opt->priv->renames;
947
2fd9eda4
EN
948 assert(renames->dir_rename_mask == 2 || renames->dir_rename_mask == 4);
949
a68e6cea
EN
950 old_callback_data_traverse_path = renames->callback_data_traverse_path;
951 old_fn = info->fn;
952 old_offset = renames->callback_data_nr;
953
954 renames->callback_data_traverse_path = NULL;
955 info->fn = traverse_trees_wrapper_callback;
956 ret = traverse_trees(istate, n, t, info);
957 if (ret < 0)
958 return ret;
959
960 info->traverse_path = renames->callback_data_traverse_path;
961 info->fn = old_fn;
962 for (i = old_offset; i < renames->callback_data_nr; ++i) {
963 info->fn(n,
964 renames->callback_data[i].mask,
965 renames->callback_data[i].dirmask,
966 renames->callback_data[i].names,
967 info);
968 }
969
970 renames->callback_data_nr = old_offset;
971 free(renames->callback_data_traverse_path);
972 renames->callback_data_traverse_path = old_callback_data_traverse_path;
973 info->traverse_path = NULL;
974 return 0;
975}
976
98bf9841
EN
977static void setup_path_info(struct merge_options *opt,
978 struct string_list_item *result,
979 const char *current_dir_name,
980 int current_dir_name_len,
981 char *fullpath, /* we'll take over ownership */
982 struct name_entry *names,
983 struct name_entry *merged_version,
984 unsigned is_null, /* boolean */
985 unsigned df_conflict, /* boolean */
986 unsigned filemask,
987 unsigned dirmask,
988 int resolved /* boolean */)
989{
990 /* result->util is void*, so mi is a convenience typed variable */
991 struct merged_info *mi;
992
993 assert(!is_null || resolved);
994 assert(!df_conflict || !resolved); /* df_conflict implies !resolved */
995 assert(resolved == (merged_version != NULL));
996
62a15162
EN
997 mi = mem_pool_calloc(&opt->priv->pool, 1,
998 resolved ? sizeof(struct merged_info) :
999 sizeof(struct conflict_info));
98bf9841
EN
1000 mi->directory_name = current_dir_name;
1001 mi->basename_offset = current_dir_name_len;
1002 mi->clean = !!resolved;
1003 if (resolved) {
1004 mi->result.mode = merged_version->mode;
1005 oidcpy(&mi->result.oid, &merged_version->oid);
1006 mi->is_null = !!is_null;
1007 } else {
1008 int i;
1009 struct conflict_info *ci;
1010
1011 ASSIGN_AND_VERIFY_CI(ci, mi);
1012 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
1013 ci->pathnames[i] = fullpath;
1014 ci->stages[i].mode = names[i].mode;
1015 oidcpy(&ci->stages[i].oid, &names[i].oid);
1016 }
1017 ci->filemask = filemask;
1018 ci->dirmask = dirmask;
1019 ci->df_conflict = !!df_conflict;
1020 if (dirmask)
1021 /*
1022 * Assume is_null for now, but if we have entries
1023 * under the directory then when it is complete in
1024 * write_completed_directory() it'll update this.
1025 * Also, for D/F conflicts, we have to handle the
1026 * directory first, then clear this bit and process
1027 * the file to see how it is handled -- that occurs
1028 * near the top of process_entry().
1029 */
1030 mi->is_null = 1;
1031 }
1032 strmap_put(&opt->priv->paths, fullpath, mi);
1033 result->string = fullpath;
1034 result->util = mi;
1035}
1036
f78cf976
EN
1037static void add_pair(struct merge_options *opt,
1038 struct name_entry *names,
1039 const char *pathname,
1040 unsigned side,
32a56dfb 1041 unsigned is_add /* if false, is_delete */,
2fd9eda4
EN
1042 unsigned match_mask,
1043 unsigned dir_rename_mask)
f78cf976
EN
1044{
1045 struct diff_filespec *one, *two;
1046 struct rename_info *renames = &opt->priv->renames;
1047 int names_idx = is_add ? side : 0;
1048
25e65b6d 1049 if (is_add) {
ef68c3d8 1050 assert(match_mask == 0 || match_mask == 6);
25e65b6d
EN
1051 if (strset_contains(&renames->cached_target_names[side],
1052 pathname))
1053 return;
1054 } else {
32a56dfb 1055 unsigned content_relevant = (match_mask == 0);
2fd9eda4 1056 unsigned location_relevant = (dir_rename_mask == 0x07);
32a56dfb 1057
ef68c3d8
EN
1058 assert(match_mask == 0 || match_mask == 3 || match_mask == 5);
1059
25e65b6d
EN
1060 /*
1061 * If pathname is found in cached_irrelevant[side] due to
1062 * previous pick but for this commit content is relevant,
1063 * then we need to remove it from cached_irrelevant.
1064 */
1065 if (content_relevant)
1066 /* strset_remove is no-op if strset doesn't have key */
1067 strset_remove(&renames->cached_irrelevant[side],
1068 pathname);
1069
1070 /*
1071 * We do not need to re-detect renames for paths that we already
1072 * know the pairing, i.e. for cached_pairs (or
1073 * cached_irrelevant). However, handle_deferred_entries() needs
1074 * to loop over the union of keys from relevant_sources[side] and
1075 * cached_pairs[side], so for simplicity we set relevant_sources
1076 * for all the cached_pairs too and then strip them back out in
1077 * prune_cached_from_relevant() at the beginning of
1078 * detect_regular_renames().
1079 */
ec59da60
EN
1080 if (content_relevant || location_relevant) {
1081 /* content_relevant trumps location_relevant */
1082 strintmap_set(&renames->relevant_sources[side], pathname,
1083 content_relevant ? RELEVANT_CONTENT : RELEVANT_LOCATION);
1084 }
25e65b6d
EN
1085
1086 /*
1087 * Avoid creating pair if we've already cached rename results.
1088 * Note that we do this after setting relevant_sources[side]
1089 * as noted in the comment above.
1090 */
1091 if (strmap_contains(&renames->cached_pairs[side], pathname) ||
1092 strset_contains(&renames->cached_irrelevant[side], pathname))
1093 return;
32a56dfb
EN
1094 }
1095
62a15162
EN
1096 one = pool_alloc_filespec(&opt->priv->pool, pathname);
1097 two = pool_alloc_filespec(&opt->priv->pool, pathname);
f78cf976
EN
1098 fill_filespec(is_add ? two : one,
1099 &names[names_idx].oid, 1, names[names_idx].mode);
62a15162 1100 pool_diff_queue(&opt->priv->pool, &renames->pairs[side], one, two);
f78cf976
EN
1101}
1102
eb3e3e1d
EN
1103static void collect_rename_info(struct merge_options *opt,
1104 struct name_entry *names,
1105 const char *dirname,
1106 const char *fullname,
1107 unsigned filemask,
1108 unsigned dirmask,
1109 unsigned match_mask)
1110{
1111 struct rename_info *renames = &opt->priv->renames;
f78cf976 1112 unsigned side;
eb3e3e1d 1113
2fd9eda4
EN
1114 /*
1115 * Update dir_rename_mask (determines ignore-rename-source validity)
1116 *
1117 * dir_rename_mask helps us keep track of when directory rename
1118 * detection may be relevant. Basically, whenver a directory is
1119 * removed on one side of history, and a file is added to that
1120 * directory on the other side of history, directory rename
1121 * detection is relevant (meaning we have to detect renames for all
1122 * files within that directory to deduce where the directory
1123 * moved). Also, whenever a directory needs directory rename
1124 * detection, due to the "majority rules" choice for where to move
1125 * it (see t6423 testcase 1f), we also need to detect renames for
1126 * all files within subdirectories of that directory as well.
1127 *
1128 * Here we haven't looked at files within the directory yet, we are
1129 * just looking at the directory itself. So, if we aren't yet in
1130 * a case where a parent directory needed directory rename detection
1131 * (i.e. dir_rename_mask != 0x07), and if the directory was removed
1132 * on one side of history, record the mask of the other side of
1133 * history in dir_rename_mask.
1134 */
1135 if (renames->dir_rename_mask != 0x07 &&
1136 (dirmask == 3 || dirmask == 5)) {
1137 /* simple sanity check */
1138 assert(renames->dir_rename_mask == 0 ||
1139 renames->dir_rename_mask == (dirmask & ~1));
1140 /* update dir_rename_mask; have it record mask of new side */
1141 renames->dir_rename_mask = (dirmask & ~1);
1142 }
1143
eb3e3e1d
EN
1144 /* Update dirs_removed, as needed */
1145 if (dirmask == 1 || dirmask == 3 || dirmask == 5) {
1146 /* absent_mask = 0x07 - dirmask; sides = absent_mask/2 */
1147 unsigned sides = (0x07 - dirmask)/2;
fb52938e
EN
1148 unsigned relevance = (renames->dir_rename_mask == 0x07) ?
1149 RELEVANT_FOR_ANCESTOR : NOT_RELEVANT;
1150 /*
1151 * Record relevance of this directory. However, note that
1152 * when collect_merge_info_callback() recurses into this
1153 * directory and calls collect_rename_info() on paths
1154 * within that directory, if we find a path that was added
1155 * to this directory on the other side of history, we will
1156 * upgrade this value to RELEVANT_FOR_SELF; see below.
1157 */
eb3e3e1d 1158 if (sides & 1)
fb52938e
EN
1159 strintmap_set(&renames->dirs_removed[1], fullname,
1160 relevance);
eb3e3e1d 1161 if (sides & 2)
fb52938e
EN
1162 strintmap_set(&renames->dirs_removed[2], fullname,
1163 relevance);
1164 }
1165
1166 /*
1167 * Here's the block that potentially upgrades to RELEVANT_FOR_SELF.
1168 * When we run across a file added to a directory. In such a case,
1169 * find the directory of the file and upgrade its relevance.
1170 */
1171 if (renames->dir_rename_mask == 0x07 &&
1172 (filemask == 2 || filemask == 4)) {
1173 /*
1174 * Need directory rename for parent directory on other side
1175 * of history from added file. Thus
1176 * side = (~filemask & 0x06) >> 1
1177 * or
1178 * side = 3 - (filemask/2).
1179 */
1180 unsigned side = 3 - (filemask >> 1);
1181 strintmap_set(&renames->dirs_removed[side], dirname,
1182 RELEVANT_FOR_SELF);
eb3e3e1d 1183 }
f78cf976
EN
1184
1185 if (filemask == 0 || filemask == 7)
1186 return;
1187
1188 for (side = MERGE_SIDE1; side <= MERGE_SIDE2; ++side) {
1189 unsigned side_mask = (1 << side);
1190
1191 /* Check for deletion on side */
1192 if ((filemask & 1) && !(filemask & side_mask))
32a56dfb 1193 add_pair(opt, names, fullname, side, 0 /* delete */,
2fd9eda4
EN
1194 match_mask & filemask,
1195 renames->dir_rename_mask);
f78cf976
EN
1196
1197 /* Check for addition on side */
1198 if (!(filemask & 1) && (filemask & side_mask))
32a56dfb 1199 add_pair(opt, names, fullname, side, 1 /* add */,
2fd9eda4
EN
1200 match_mask & filemask,
1201 renames->dir_rename_mask);
f78cf976 1202 }
eb3e3e1d
EN
1203}
1204
d2bc1994
EN
1205static int collect_merge_info_callback(int n,
1206 unsigned long mask,
1207 unsigned long dirmask,
1208 struct name_entry *names,
1209 struct traverse_info *info)
1210{
1211 /*
1212 * n is 3. Always.
1213 * common ancestor (mbase) has mask 1, and stored in index 0 of names
1214 * head of side 1 (side1) has mask 2, and stored in index 1 of names
1215 * head of side 2 (side2) has mask 4, and stored in index 2 of names
1216 */
1217 struct merge_options *opt = info->data;
1218 struct merge_options_internal *opti = opt->priv;
2fd9eda4 1219 struct rename_info *renames = &opt->priv->renames;
98bf9841
EN
1220 struct string_list_item pi; /* Path Info */
1221 struct conflict_info *ci; /* typed alias to pi.util (which is void*) */
d2bc1994
EN
1222 struct name_entry *p;
1223 size_t len;
1224 char *fullpath;
98bf9841 1225 const char *dirname = opti->current_dir_name;
2fd9eda4 1226 unsigned prev_dir_rename_mask = renames->dir_rename_mask;
d2bc1994 1227 unsigned filemask = mask & ~dirmask;
34e557af 1228 unsigned match_mask = 0; /* will be updated below */
d2bc1994
EN
1229 unsigned mbase_null = !(mask & 1);
1230 unsigned side1_null = !(mask & 2);
1231 unsigned side2_null = !(mask & 4);
885f0063
EN
1232 unsigned side1_matches_mbase = (!side1_null && !mbase_null &&
1233 names[0].mode == names[1].mode &&
1234 oideq(&names[0].oid, &names[1].oid));
1235 unsigned side2_matches_mbase = (!side2_null && !mbase_null &&
1236 names[0].mode == names[2].mode &&
1237 oideq(&names[0].oid, &names[2].oid));
1238 unsigned sides_match = (!side1_null && !side2_null &&
1239 names[1].mode == names[2].mode &&
1240 oideq(&names[1].oid, &names[2].oid));
d2bc1994 1241
34e557af
EN
1242 /*
1243 * Note: When a path is a file on one side of history and a directory
1244 * in another, we have a directory/file conflict. In such cases, if
1245 * the conflict doesn't resolve from renames and deletions, then we
1246 * always leave directories where they are and move files out of the
1247 * way. Thus, while struct conflict_info has a df_conflict field to
1248 * track such conflicts, we ignore that field for any directories at
1249 * a path and only pay attention to it for files at the given path.
1250 * The fact that we leave directories were they are also means that
1251 * we do not need to worry about getting additional df_conflict
1252 * information propagated from parent directories down to children
1253 * (unlike, say traverse_trees_recursive() in unpack-trees.c, which
1254 * sets a newinfo.df_conflicts field specifically to propagate it).
1255 */
1256 unsigned df_conflict = (filemask != 0) && (dirmask != 0);
1257
d2bc1994
EN
1258 /* n = 3 is a fundamental assumption. */
1259 if (n != 3)
1260 BUG("Called collect_merge_info_callback wrong");
1261
1262 /*
1263 * A bunch of sanity checks verifying that traverse_trees() calls
1264 * us the way I expect. Could just remove these at some point,
1265 * though maybe they are helpful to future code readers.
1266 */
1267 assert(mbase_null == is_null_oid(&names[0].oid));
1268 assert(side1_null == is_null_oid(&names[1].oid));
1269 assert(side2_null == is_null_oid(&names[2].oid));
1270 assert(!mbase_null || !side1_null || !side2_null);
1271 assert(mask > 0 && mask < 8);
1272
34e557af
EN
1273 /* Determine match_mask */
1274 if (side1_matches_mbase)
1275 match_mask = (side2_matches_mbase ? 7 : 3);
1276 else if (side2_matches_mbase)
1277 match_mask = 5;
1278 else if (sides_match)
1279 match_mask = 6;
1280
d2bc1994
EN
1281 /*
1282 * Get the name of the relevant filepath, which we'll pass to
1283 * setup_path_info() for tracking.
1284 */
1285 p = names;
1286 while (!p->mode)
1287 p++;
1288 len = traverse_path_len(info, p->pathlen);
1289
1290 /* +1 in both of the following lines to include the NUL byte */
62a15162 1291 fullpath = mem_pool_alloc(&opt->priv->pool, len + 1);
d2bc1994
EN
1292 make_traverse_path(fullpath, len + 1, info, p->path, p->pathlen);
1293
291f29ca
EN
1294 /*
1295 * If mbase, side1, and side2 all match, we can resolve early. Even
1296 * if these are trees, there will be no renames or anything
1297 * underneath.
1298 */
1299 if (side1_matches_mbase && side2_matches_mbase) {
1300 /* mbase, side1, & side2 all match; use mbase as resolution */
1301 setup_path_info(opt, &pi, dirname, info->pathlen, fullpath,
528fc51b
EN
1302 names, names+0, mbase_null, 0 /* df_conflict */,
1303 filemask, dirmask, 1 /* resolved */);
291f29ca
EN
1304 return mask;
1305 }
1306
785bf208
EN
1307 /*
1308 * If the sides match, and all three paths are present and are
1309 * files, then we can take either as the resolution. We can't do
1310 * this with trees, because there may be rename sources from the
1311 * merge_base.
1312 */
1313 if (sides_match && filemask == 0x07) {
1314 /* use side1 (== side2) version as resolution */
1315 setup_path_info(opt, &pi, dirname, info->pathlen, fullpath,
1316 names, names+1, side1_null, 0,
1317 filemask, dirmask, 1);
1318 return mask;
1319 }
1320
1321 /*
1322 * If side1 matches mbase and all three paths are present and are
1323 * files, then we can use side2 as the resolution. We cannot
1324 * necessarily do so this for trees, because there may be rename
1325 * destinations within side2.
1326 */
1327 if (side1_matches_mbase && filemask == 0x07) {
1328 /* use side2 version as resolution */
1329 setup_path_info(opt, &pi, dirname, info->pathlen, fullpath,
1330 names, names+2, side2_null, 0,
1331 filemask, dirmask, 1);
1332 return mask;
1333 }
1334
1335 /* Similar to above but swapping sides 1 and 2 */
1336 if (side2_matches_mbase && filemask == 0x07) {
1337 /* use side1 version as resolution */
1338 setup_path_info(opt, &pi, dirname, info->pathlen, fullpath,
1339 names, names+1, side1_null, 0,
291f29ca
EN
1340 filemask, dirmask, 1);
1341 return mask;
1342 }
1343
eb3e3e1d 1344 /*
528fc51b
EN
1345 * Sometimes we can tell that a source path need not be included in
1346 * rename detection -- namely, whenever either
1347 * side1_matches_mbase && side2_null
1348 * or
1349 * side2_matches_mbase && side1_null
1350 * However, we call collect_rename_info() even in those cases,
1351 * because exact renames are cheap and would let us remove both a
1352 * source and destination path. We'll cull the unneeded sources
1353 * later.
eb3e3e1d
EN
1354 */
1355 collect_rename_info(opt, names, dirname, fullpath,
1356 filemask, dirmask, match_mask);
1357
d2bc1994 1358 /*
528fc51b
EN
1359 * None of the special cases above matched, so we have a
1360 * provisional conflict. (Rename detection might allow us to
1361 * unconflict some more cases, but that comes later so all we can
1362 * do now is record the different non-null file hashes.)
d2bc1994 1363 */
98bf9841
EN
1364 setup_path_info(opt, &pi, dirname, info->pathlen, fullpath,
1365 names, NULL, 0, df_conflict, filemask, dirmask, 0);
1366
1367 ci = pi.util;
1368 VERIFY_CI(ci);
34e557af 1369 ci->match_mask = match_mask;
d2bc1994
EN
1370
1371 /* If dirmask, recurse into subdirectories */
1372 if (dirmask) {
1373 struct traverse_info newinfo;
1374 struct tree_desc t[3];
1375 void *buf[3] = {NULL, NULL, NULL};
1376 const char *original_dir_name;
5e1ca57a 1377 int i, ret, side;
d2bc1994 1378
5e1ca57a
EN
1379 /*
1380 * Check for whether we can avoid recursing due to one side
1381 * matching the merge base. The side that does NOT match is
1382 * the one that might have a rename destination we need.
1383 */
1384 assert(!side1_matches_mbase || !side2_matches_mbase);
1385 side = side1_matches_mbase ? MERGE_SIDE2 :
1386 side2_matches_mbase ? MERGE_SIDE1 : MERGE_BASE;
1387 if (filemask == 0 && (dirmask == 2 || dirmask == 4)) {
1388 /*
1389 * Also defer recursing into new directories; set up a
1390 * few variables to let us do so.
1391 */
1392 ci->match_mask = (7 - dirmask);
1393 side = dirmask / 2;
1394 }
1395 if (renames->dir_rename_mask != 0x07 &&
1396 side != MERGE_BASE &&
1397 renames->deferred[side].trivial_merges_okay &&
1398 !strset_contains(&renames->deferred[side].target_dirs,
1399 pi.string)) {
1400 strintmap_set(&renames->deferred[side].possible_trivial_merges,
1401 pi.string, renames->dir_rename_mask);
1402 renames->dir_rename_mask = prev_dir_rename_mask;
1403 return mask;
1404 }
1405
1406 /* We need to recurse */
d2bc1994
EN
1407 ci->match_mask &= filemask;
1408 newinfo = *info;
1409 newinfo.prev = info;
1410 newinfo.name = p->path;
1411 newinfo.namelen = p->pathlen;
1412 newinfo.pathlen = st_add3(newinfo.pathlen, p->pathlen, 1);
34e557af
EN
1413 /*
1414 * If this directory we are about to recurse into cared about
1415 * its parent directory (the current directory) having a D/F
1416 * conflict, then we'd propagate the masks in this way:
1417 * newinfo.df_conflicts |= (mask & ~dirmask);
1418 * But we don't worry about propagating D/F conflicts. (See
1419 * comment near setting of local df_conflict variable near
1420 * the beginning of this function).
1421 */
d2bc1994
EN
1422
1423 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
885f0063
EN
1424 if (i == 1 && side1_matches_mbase)
1425 t[1] = t[0];
1426 else if (i == 2 && side2_matches_mbase)
1427 t[2] = t[0];
1428 else if (i == 2 && sides_match)
1429 t[2] = t[1];
1430 else {
1431 const struct object_id *oid = NULL;
1432 if (dirmask & 1)
1433 oid = &names[i].oid;
1434 buf[i] = fill_tree_descriptor(opt->repo,
1435 t + i, oid);
1436 }
d2bc1994
EN
1437 dirmask >>= 1;
1438 }
1439
1440 original_dir_name = opti->current_dir_name;
98bf9841 1441 opti->current_dir_name = pi.string;
2fd9eda4
EN
1442 if (renames->dir_rename_mask == 0 ||
1443 renames->dir_rename_mask == 0x07)
1444 ret = traverse_trees(NULL, 3, t, &newinfo);
1445 else
1446 ret = traverse_trees_wrapper(NULL, 3, t, &newinfo);
d2bc1994 1447 opti->current_dir_name = original_dir_name;
2fd9eda4 1448 renames->dir_rename_mask = prev_dir_rename_mask;
d2bc1994
EN
1449
1450 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++)
1451 free(buf[i]);
1452
1453 if (ret < 0)
1454 return -1;
1455 }
1456
1457 return mask;
1458}
1459
7bee6c10
EN
1460static void resolve_trivial_directory_merge(struct conflict_info *ci, int side)
1461{
1462 VERIFY_CI(ci);
1463 assert((side == 1 && ci->match_mask == 5) ||
1464 (side == 2 && ci->match_mask == 3));
1465 oidcpy(&ci->merged.result.oid, &ci->stages[side].oid);
1466 ci->merged.result.mode = ci->stages[side].mode;
1467 ci->merged.is_null = is_null_oid(&ci->stages[side].oid);
1468 ci->match_mask = 0;
1469 ci->merged.clean = 1; /* (ci->filemask == 0); */
1470}
1471
e0ef578e
EN
1472static int handle_deferred_entries(struct merge_options *opt,
1473 struct traverse_info *info)
1474{
1475 struct rename_info *renames = &opt->priv->renames;
1476 struct hashmap_iter iter;
1477 struct strmap_entry *entry;
1478 int side, ret = 0;
8b09a900 1479 int path_count_before, path_count_after = 0;
e0ef578e 1480
8b09a900 1481 path_count_before = strmap_get_size(&opt->priv->paths);
e0ef578e 1482 for (side = MERGE_SIDE1; side <= MERGE_SIDE2; side++) {
7bee6c10
EN
1483 unsigned optimization_okay = 1;
1484 struct strintmap copy;
1485
1486 /* Loop over the set of paths we need to know rename info for */
1487 strset_for_each_entry(&renames->relevant_sources[side],
1488 &iter, entry) {
1489 char *rename_target, *dir, *dir_marker;
1490 struct strmap_entry *e;
1491
1492 /*
1493 * If we don't know delete/rename info for this path,
1494 * then we need to recurse into all trees to get all
1495 * adds to make sure we have it.
1496 */
1497 if (strset_contains(&renames->cached_irrelevant[side],
1498 entry->key))
1499 continue;
1500 e = strmap_get_entry(&renames->cached_pairs[side],
1501 entry->key);
1502 if (!e) {
1503 optimization_okay = 0;
1504 break;
1505 }
1506
1507 /* If this is a delete, we have enough info already */
1508 rename_target = e->value;
1509 if (!rename_target)
1510 continue;
1511
1512 /* If we already walked the rename target, we're good */
1513 if (strmap_contains(&opt->priv->paths, rename_target))
1514 continue;
1515
1516 /*
1517 * Otherwise, we need to get a list of directories that
1518 * will need to be recursed into to get this
1519 * rename_target.
1520 */
1521 dir = xstrdup(rename_target);
1522 while ((dir_marker = strrchr(dir, '/'))) {
1523 *dir_marker = '\0';
1524 if (strset_contains(&renames->deferred[side].target_dirs,
1525 dir))
1526 break;
1527 strset_add(&renames->deferred[side].target_dirs,
1528 dir);
1529 }
1530 free(dir);
1531 }
1532 renames->deferred[side].trivial_merges_okay = optimization_okay;
1533 /*
1534 * We need to recurse into any directories in
1535 * possible_trivial_merges[side] found in target_dirs[side].
1536 * But when we recurse, we may need to queue up some of the
1537 * subdirectories for possible_trivial_merges[side]. Since
1538 * we can't safely iterate through a hashmap while also adding
1539 * entries, move the entries into 'copy', iterate over 'copy',
1540 * and then we'll also iterate anything added into
1541 * possible_trivial_merges[side] once this loop is done.
1542 */
1543 copy = renames->deferred[side].possible_trivial_merges;
1544 strintmap_init_with_options(&renames->deferred[side].possible_trivial_merges,
1545 0,
62a15162 1546 &opt->priv->pool,
7bee6c10
EN
1547 0);
1548 strintmap_for_each_entry(&copy, &iter, entry) {
e0ef578e
EN
1549 const char *path = entry->key;
1550 unsigned dir_rename_mask = (intptr_t)entry->value;
1551 struct conflict_info *ci;
1552 unsigned dirmask;
1553 struct tree_desc t[3];
1554 void *buf[3] = {NULL,};
1555 int i;
1556
1557 ci = strmap_get(&opt->priv->paths, path);
1558 VERIFY_CI(ci);
1559 dirmask = ci->dirmask;
1560
7bee6c10
EN
1561 if (optimization_okay &&
1562 !strset_contains(&renames->deferred[side].target_dirs,
1563 path)) {
1564 resolve_trivial_directory_merge(ci, side);
1565 continue;
1566 }
1567
e0ef578e
EN
1568 info->name = path;
1569 info->namelen = strlen(path);
1570 info->pathlen = info->namelen + 1;
1571
1572 for (i = 0; i < 3; i++, dirmask >>= 1) {
1573 if (i == 1 && ci->match_mask == 3)
1574 t[1] = t[0];
1575 else if (i == 2 && ci->match_mask == 5)
1576 t[2] = t[0];
1577 else if (i == 2 && ci->match_mask == 6)
1578 t[2] = t[1];
1579 else {
1580 const struct object_id *oid = NULL;
1581 if (dirmask & 1)
1582 oid = &ci->stages[i].oid;
1583 buf[i] = fill_tree_descriptor(opt->repo,
1584 t+i, oid);
1585 }
1586 }
1587
1588 ci->match_mask &= ci->filemask;
1589 opt->priv->current_dir_name = path;
1590 renames->dir_rename_mask = dir_rename_mask;
1591 if (renames->dir_rename_mask == 0 ||
1592 renames->dir_rename_mask == 0x07)
1593 ret = traverse_trees(NULL, 3, t, info);
1594 else
1595 ret = traverse_trees_wrapper(NULL, 3, t, info);
1596
1597 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++)
1598 free(buf[i]);
1599
1600 if (ret < 0)
1601 return ret;
1602 }
7bee6c10
EN
1603 strintmap_clear(&copy);
1604 strintmap_for_each_entry(&renames->deferred[side].possible_trivial_merges,
1605 &iter, entry) {
1606 const char *path = entry->key;
1607 struct conflict_info *ci;
1608
1609 ci = strmap_get(&opt->priv->paths, path);
1610 VERIFY_CI(ci);
1611
1612 assert(renames->deferred[side].trivial_merges_okay &&
1613 !strset_contains(&renames->deferred[side].target_dirs,
1614 path));
1615 resolve_trivial_directory_merge(ci, side);
1616 }
8b09a900
EN
1617 if (!optimization_okay || path_count_after)
1618 path_count_after = strmap_get_size(&opt->priv->paths);
e0ef578e 1619 }
8b09a900
EN
1620 if (path_count_after) {
1621 /*
1622 * The choice of wanted_factor here does not affect
1623 * correctness, only performance. When the
1624 * path_count_after / path_count_before
1625 * ratio is high, redoing after renames is a big
1626 * performance boost. I suspect that redoing is a wash
1627 * somewhere near a value of 2, and below that redoing will
1628 * slow things down. I applied a fudge factor and picked
1629 * 3; see the commit message when this was introduced for
1630 * back of the envelope calculations for this ratio.
1631 */
1632 const int wanted_factor = 3;
1633
1634 /* We should only redo collect_merge_info one time */
1635 assert(renames->redo_after_renames == 0);
1636
1637 if (path_count_after / path_count_before >= wanted_factor) {
1638 renames->redo_after_renames = 1;
1639 renames->cached_pairs_valid_side = -1;
1640 }
1641 } else if (renames->redo_after_renames == 2)
1642 renames->redo_after_renames = 0;
e0ef578e
EN
1643 return ret;
1644}
1645
231e2dd4
EN
1646static int collect_merge_info(struct merge_options *opt,
1647 struct tree *merge_base,
1648 struct tree *side1,
1649 struct tree *side2)
1650{
d2bc1994
EN
1651 int ret;
1652 struct tree_desc t[3];
1653 struct traverse_info info;
d2bc1994 1654
05b85c6e
EN
1655 opt->priv->toplevel_dir = "";
1656 opt->priv->current_dir_name = opt->priv->toplevel_dir;
1657 setup_traverse_info(&info, opt->priv->toplevel_dir);
d2bc1994
EN
1658 info.fn = collect_merge_info_callback;
1659 info.data = opt;
1660 info.show_all_errors = 1;
1661
d4bf1930
JS
1662 if (parse_tree(merge_base) < 0 ||
1663 parse_tree(side1) < 0 ||
1664 parse_tree(side2) < 0)
1665 return -1;
d2bc1994
EN
1666 init_tree_desc(t + 0, merge_base->buffer, merge_base->size);
1667 init_tree_desc(t + 1, side1->buffer, side1->size);
1668 init_tree_desc(t + 2, side2->buffer, side2->size);
1669
557ac035 1670 trace2_region_enter("merge", "traverse_trees", opt->repo);
d2bc1994 1671 ret = traverse_trees(NULL, 3, t, &info);
5e1ca57a
EN
1672 if (ret == 0)
1673 ret = handle_deferred_entries(opt, &info);
557ac035 1674 trace2_region_leave("merge", "traverse_trees", opt->repo);
d2bc1994
EN
1675
1676 return ret;
231e2dd4
EN
1677}
1678
04af1879
EN
1679/*** Function Grouping: functions related to threeway content merges ***/
1680
c73cda76
EN
1681static int find_first_merges(struct repository *repo,
1682 const char *path,
1683 struct commit *a,
1684 struct commit *b,
1685 struct object_array *result)
1686{
4204cd59
EN
1687 int i, j;
1688 struct object_array merges = OBJECT_ARRAY_INIT;
1689 struct commit *commit;
1690 int contains_another;
1691
1692 char merged_revision[GIT_MAX_HEXSZ + 2];
1693 const char *rev_args[] = { "rev-list", "--merges", "--ancestry-path",
1694 "--all", merged_revision, NULL };
1695 struct rev_info revs;
1696 struct setup_revision_opt rev_opts;
1697
1698 memset(result, 0, sizeof(struct object_array));
1699 memset(&rev_opts, 0, sizeof(rev_opts));
1700
1701 /* get all revisions that merge commit a */
1702 xsnprintf(merged_revision, sizeof(merged_revision), "^%s",
1703 oid_to_hex(&a->object.oid));
1704 repo_init_revisions(repo, &revs, NULL);
4204cd59
EN
1705 /* FIXME: can't handle linked worktrees in submodules yet */
1706 revs.single_worktree = path != NULL;
1707 setup_revisions(ARRAY_SIZE(rev_args)-1, rev_args, &revs, &rev_opts);
1708
1709 /* save all revisions from the above list that contain b */
1710 if (prepare_revision_walk(&revs))
1711 die("revision walk setup failed");
1712 while ((commit = get_revision(&revs)) != NULL) {
1713 struct object *o = &(commit->object);
10a0d6ae 1714 if (repo_in_merge_bases(repo, b, commit))
4204cd59
EN
1715 add_object_array(o, NULL, &merges);
1716 }
1717 reset_revision_walk();
1718
1719 /* Now we've got all merges that contain a and b. Prune all
1720 * merges that contain another found merge and save them in
1721 * result.
1722 */
1723 for (i = 0; i < merges.nr; i++) {
1724 struct commit *m1 = (struct commit *) merges.objects[i].item;
1725
1726 contains_another = 0;
1727 for (j = 0; j < merges.nr; j++) {
1728 struct commit *m2 = (struct commit *) merges.objects[j].item;
10a0d6ae 1729 if (i != j && repo_in_merge_bases(repo, m2, m1)) {
4204cd59
EN
1730 contains_another = 1;
1731 break;
1732 }
1733 }
1734
1735 if (!contains_another)
1736 add_object_array(merges.objects[i].item, NULL, result);
1737 }
1738
1739 object_array_clear(&merges);
2108fe4a 1740 release_revisions(&revs);
4204cd59 1741 return result->nr;
c73cda76
EN
1742}
1743
62fdec17
EN
1744static int merge_submodule(struct merge_options *opt,
1745 const char *path,
1746 const struct object_id *o,
1747 const struct object_id *a,
1748 const struct object_id *b,
1749 struct object_id *result)
1750{
10a0d6ae
JT
1751 struct repository subrepo;
1752 struct strbuf sb = STRBUF_INIT;
1753 int ret = 0;
c73cda76
EN
1754 struct commit *commit_o, *commit_a, *commit_b;
1755 int parent_count;
1756 struct object_array merges;
c73cda76
EN
1757
1758 int i;
1759 int search = !opt->priv->call_depth;
4057523a 1760 int sub_not_initialized = 1;
34ce504a 1761 int sub_flag = CONFLICT_SUBMODULE_FAILED_TO_MERGE;
c73cda76
EN
1762
1763 /* store fallback answer in result in case we fail */
1764 oidcpy(result, opt->priv->call_depth ? o : a);
1765
1766 /* we can not handle deletion conflicts */
4057523a
CW
1767 if (is_null_oid(a) || is_null_oid(b))
1768 BUG("submodule deleted on one side; this should be handled outside of merge_submodule()");
c73cda76 1769
4057523a
CW
1770 if ((sub_not_initialized = repo_submodule_init(&subrepo,
1771 opt->repo, path, null_oid()))) {
cb260775
EN
1772 path_msg(opt, CONFLICT_SUBMODULE_NOT_INITIALIZED, 0,
1773 path, NULL, NULL, NULL,
1774 _("Failed to merge submodule %s (not checked out)"),
1775 path);
4057523a
CW
1776 sub_flag = CONFLICT_SUBMODULE_NOT_INITIALIZED;
1777 goto cleanup;
1778 }
1779
1780 if (is_null_oid(o)) {
1781 path_msg(opt, CONFLICT_SUBMODULE_NULL_MERGE_BASE, 0,
1782 path, NULL, NULL, NULL,
1783 _("Failed to merge submodule %s (no merge base)"),
1784 path);
1785 goto cleanup;
10a0d6ae
JT
1786 }
1787
1788 if (!(commit_o = lookup_commit_reference(&subrepo, o)) ||
1789 !(commit_a = lookup_commit_reference(&subrepo, a)) ||
1790 !(commit_b = lookup_commit_reference(&subrepo, b))) {
cb260775
EN
1791 path_msg(opt, CONFLICT_SUBMODULE_HISTORY_NOT_AVAILABLE, 0,
1792 path, NULL, NULL, NULL,
c73cda76
EN
1793 _("Failed to merge submodule %s (commits not present)"),
1794 path);
4057523a 1795 sub_flag = CONFLICT_SUBMODULE_HISTORY_NOT_AVAILABLE;
10a0d6ae 1796 goto cleanup;
c73cda76
EN
1797 }
1798
1799 /* check whether both changes are forward */
10a0d6ae
JT
1800 if (!repo_in_merge_bases(&subrepo, commit_o, commit_a) ||
1801 !repo_in_merge_bases(&subrepo, commit_o, commit_b)) {
cb260775
EN
1802 path_msg(opt, CONFLICT_SUBMODULE_MAY_HAVE_REWINDS, 0,
1803 path, NULL, NULL, NULL,
c73cda76
EN
1804 _("Failed to merge submodule %s "
1805 "(commits don't follow merge-base)"),
1806 path);
10a0d6ae 1807 goto cleanup;
c73cda76
EN
1808 }
1809
1810 /* Case #1: a is contained in b or vice versa */
10a0d6ae 1811 if (repo_in_merge_bases(&subrepo, commit_a, commit_b)) {
c73cda76 1812 oidcpy(result, b);
cb260775
EN
1813 path_msg(opt, INFO_SUBMODULE_FAST_FORWARDING, 1,
1814 path, NULL, NULL, NULL,
c73cda76
EN
1815 _("Note: Fast-forwarding submodule %s to %s"),
1816 path, oid_to_hex(b));
10a0d6ae
JT
1817 ret = 1;
1818 goto cleanup;
c73cda76 1819 }
10a0d6ae 1820 if (repo_in_merge_bases(&subrepo, commit_b, commit_a)) {
c73cda76 1821 oidcpy(result, a);
cb260775
EN
1822 path_msg(opt, INFO_SUBMODULE_FAST_FORWARDING, 1,
1823 path, NULL, NULL, NULL,
c73cda76
EN
1824 _("Note: Fast-forwarding submodule %s to %s"),
1825 path, oid_to_hex(a));
10a0d6ae
JT
1826 ret = 1;
1827 goto cleanup;
c73cda76
EN
1828 }
1829
1830 /*
1831 * Case #2: There are one or more merges that contain a and b in
1832 * the submodule. If there is only one, then present it as a
1833 * suggestion to the user, but leave it marked unmerged so the
1834 * user needs to confirm the resolution.
1835 */
1836
1837 /* Skip the search if makes no sense to the calling context. */
1838 if (!search)
10a0d6ae 1839 goto cleanup;
c73cda76
EN
1840
1841 /* find commit which merges them */
10a0d6ae 1842 parent_count = find_first_merges(&subrepo, path, commit_a, commit_b,
c73cda76
EN
1843 &merges);
1844 switch (parent_count) {
1845 case 0:
cb260775
EN
1846 path_msg(opt, CONFLICT_SUBMODULE_FAILED_TO_MERGE, 0,
1847 path, NULL, NULL, NULL,
1848 _("Failed to merge submodule %s"), path);
c73cda76
EN
1849 break;
1850
1851 case 1:
155b517d 1852 format_commit(&sb, 4, &subrepo,
c73cda76 1853 (struct commit *)merges.objects[0].item);
cb260775
EN
1854 path_msg(opt, CONFLICT_SUBMODULE_FAILED_TO_MERGE_BUT_POSSIBLE_RESOLUTION, 0,
1855 path, NULL, NULL, NULL,
c73cda76 1856 _("Failed to merge submodule %s, but a possible merge "
a4040cfa 1857 "resolution exists: %s"),
c73cda76 1858 path, sb.buf);
c73cda76
EN
1859 strbuf_release(&sb);
1860 break;
1861 default:
1862 for (i = 0; i < merges.nr; i++)
155b517d 1863 format_commit(&sb, 4, &subrepo,
c73cda76 1864 (struct commit *)merges.objects[i].item);
cb260775
EN
1865 path_msg(opt, CONFLICT_SUBMODULE_FAILED_TO_MERGE_BUT_POSSIBLE_RESOLUTION, 0,
1866 path, NULL, NULL, NULL,
c73cda76
EN
1867 _("Failed to merge submodule %s, but multiple "
1868 "possible merges exist:\n%s"), path, sb.buf);
1869 strbuf_release(&sb);
1870 }
1871
1872 object_array_clear(&merges);
10a0d6ae 1873cleanup:
4057523a
CW
1874 if (!opt->priv->call_depth && !ret) {
1875 struct string_list *csub = &opt->priv->conflicted_submodules;
1876 struct conflicted_submodule_item *util;
1877 const char *abbrev;
1878
1879 util = xmalloc(sizeof(*util));
1880 util->flag = sub_flag;
1881 util->abbrev = NULL;
1882 if (!sub_not_initialized) {
1883 abbrev = repo_find_unique_abbrev(&subrepo, b, DEFAULT_ABBREV);
1884 util->abbrev = xstrdup(abbrev);
1885 }
1886 string_list_append(csub, path)->util = util;
1887 }
1888
1889 if (!sub_not_initialized)
1890 repo_clear(&subrepo);
10a0d6ae 1891 return ret;
62fdec17
EN
1892}
1893
1218b3ab
EN
1894static void initialize_attr_index(struct merge_options *opt)
1895{
1896 /*
1897 * The renormalize_buffer() functions require attributes, and
1898 * annoyingly those can only be read from the working tree or from
1899 * an index_state. merge-ort doesn't have an index_state, so we
1900 * generate a fake one containing only attribute information.
1901 */
1902 struct merged_info *mi;
1903 struct index_state *attr_index = &opt->priv->attr_index;
1904 struct cache_entry *ce;
1905
e95bafc5 1906 attr_index->repo = opt->repo;
1218b3ab
EN
1907 attr_index->initialized = 1;
1908
1909 if (!opt->renormalize)
1910 return;
1911
1912 mi = strmap_get(&opt->priv->paths, GITATTRIBUTES_FILE);
1913 if (!mi)
1914 return;
1915
1916 if (mi->clean) {
1917 int len = strlen(GITATTRIBUTES_FILE);
1918 ce = make_empty_cache_entry(attr_index, len);
1919 ce->ce_mode = create_ce_mode(mi->result.mode);
1920 ce->ce_flags = create_ce_flags(0);
1921 ce->ce_namelen = len;
1922 oidcpy(&ce->oid, &mi->result.oid);
1923 memcpy(ce->name, GITATTRIBUTES_FILE, len);
1924 add_index_entry(attr_index, ce,
1925 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
1926 get_stream_filter(attr_index, GITATTRIBUTES_FILE, &ce->oid);
1927 } else {
1928 int stage, len;
1929 struct conflict_info *ci;
1930
1931 ASSIGN_AND_VERIFY_CI(ci, mi);
1932 for (stage = 0; stage < 3; stage++) {
1933 unsigned stage_mask = (1 << stage);
1934
1935 if (!(ci->filemask & stage_mask))
1936 continue;
1937 len = strlen(GITATTRIBUTES_FILE);
1938 ce = make_empty_cache_entry(attr_index, len);
1939 ce->ce_mode = create_ce_mode(ci->stages[stage].mode);
1940 ce->ce_flags = create_ce_flags(stage);
1941 ce->ce_namelen = len;
1942 oidcpy(&ce->oid, &ci->stages[stage].oid);
1943 memcpy(ce->name, GITATTRIBUTES_FILE, len);
1944 add_index_entry(attr_index, ce,
1945 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
1946 get_stream_filter(attr_index, GITATTRIBUTES_FILE,
1947 &ce->oid);
1948 }
1949 }
1950}
1951
62fdec17
EN
1952static int merge_3way(struct merge_options *opt,
1953 const char *path,
1954 const struct object_id *o,
1955 const struct object_id *a,
1956 const struct object_id *b,
1957 const char *pathnames[3],
1958 const int extra_marker_size,
1959 mmbuffer_t *result_buf)
1960{
f591c472
EN
1961 mmfile_t orig, src1, src2;
1962 struct ll_merge_options ll_opts = {0};
1963 char *base, *name1, *name2;
35f69671 1964 enum ll_merge_result merge_status;
f591c472 1965
1218b3ab
EN
1966 if (!opt->priv->attr_index.initialized)
1967 initialize_attr_index(opt);
1968
f591c472
EN
1969 ll_opts.renormalize = opt->renormalize;
1970 ll_opts.extra_marker_size = extra_marker_size;
1971 ll_opts.xdl_opts = opt->xdl_opts;
1972
1973 if (opt->priv->call_depth) {
1974 ll_opts.virtual_ancestor = 1;
1975 ll_opts.variant = 0;
1976 } else {
1977 switch (opt->recursive_variant) {
1978 case MERGE_VARIANT_OURS:
1979 ll_opts.variant = XDL_MERGE_FAVOR_OURS;
1980 break;
1981 case MERGE_VARIANT_THEIRS:
1982 ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
1983 break;
1984 default:
1985 ll_opts.variant = 0;
1986 break;
1987 }
1988 }
1989
1990 assert(pathnames[0] && pathnames[1] && pathnames[2] && opt->ancestor);
1991 if (pathnames[0] == pathnames[1] && pathnames[1] == pathnames[2]) {
1992 base = mkpathdup("%s", opt->ancestor);
1993 name1 = mkpathdup("%s", opt->branch1);
1994 name2 = mkpathdup("%s", opt->branch2);
1995 } else {
1996 base = mkpathdup("%s:%s", opt->ancestor, pathnames[0]);
1997 name1 = mkpathdup("%s:%s", opt->branch1, pathnames[1]);
1998 name2 = mkpathdup("%s:%s", opt->branch2, pathnames[2]);
1999 }
2000
2001 read_mmblob(&orig, o);
2002 read_mmblob(&src1, a);
2003 read_mmblob(&src2, b);
2004
2005 merge_status = ll_merge(result_buf, path, &orig, base,
2006 &src1, name1, &src2, name2,
1218b3ab 2007 &opt->priv->attr_index, &ll_opts);
35f69671 2008 if (merge_status == LL_MERGE_BINARY_CONFLICT)
cb260775
EN
2009 path_msg(opt, CONFLICT_BINARY, 0,
2010 path, NULL, NULL, NULL,
24dbdab5
EN
2011 "warning: Cannot merge binary files: %s (%s vs. %s)",
2012 path, name1, name2);
f591c472
EN
2013
2014 free(base);
2015 free(name1);
2016 free(name2);
2017 free(orig.ptr);
2018 free(src1.ptr);
2019 free(src2.ptr);
2020 return merge_status;
62fdec17
EN
2021}
2022
e2e9dc03
EN
2023static int handle_content_merge(struct merge_options *opt,
2024 const char *path,
2025 const struct version_info *o,
2026 const struct version_info *a,
2027 const struct version_info *b,
2028 const char *pathnames[3],
2029 const int extra_marker_size,
2030 struct version_info *result)
2031{
991bbdca 2032 /*
62fdec17
EN
2033 * path is the target location where we want to put the file, and
2034 * is used to determine any normalization rules in ll_merge.
2035 *
2036 * The normal case is that path and all entries in pathnames are
2037 * identical, though renames can affect which path we got one of
2038 * the three blobs to merge on various sides of history.
2039 *
2040 * extra_marker_size is the amount to extend conflict markers in
243c79fd 2041 * ll_merge; this is needed if we have content merges of content
62fdec17
EN
2042 * merges, which happens for example with rename/rename(2to1) and
2043 * rename/add conflicts.
2044 */
2045 unsigned clean = 1;
2046
2047 /*
2048 * handle_content_merge() needs both files to be of the same type, i.e.
2049 * both files OR both submodules OR both symlinks. Conflicting types
2050 * needs to be handled elsewhere.
991bbdca 2051 */
62fdec17
EN
2052 assert((S_IFMT & a->mode) == (S_IFMT & b->mode));
2053
2054 /* Merge modes */
2055 if (a->mode == b->mode || a->mode == o->mode)
2056 result->mode = b->mode;
2057 else {
2058 /* must be the 100644/100755 case */
2059 assert(S_ISREG(a->mode));
2060 result->mode = a->mode;
2061 clean = (b->mode == o->mode);
2062 /*
2063 * FIXME: If opt->priv->call_depth && !clean, then we really
2064 * should not make result->mode match either a->mode or
2065 * b->mode; that causes t6036 "check conflicting mode for
2066 * regular file" to fail. It would be best to use some other
2067 * mode, but we'll confuse all kinds of stuff if we use one
2068 * where S_ISREG(result->mode) isn't true, and if we use
2069 * something like 0100666, then tree-walk.c's calls to
2070 * canon_mode() will just normalize that to 100644 for us and
2071 * thus not solve anything.
2072 *
2073 * Figure out if there's some kind of way we can work around
2074 * this...
2075 */
2076 }
2077
2078 /*
2079 * Trivial oid merge.
2080 *
2081 * Note: While one might assume that the next four lines would
2082 * be unnecessary due to the fact that match_mask is often
2083 * setup and already handled, renames don't always take care
2084 * of that.
2085 */
2086 if (oideq(&a->oid, &b->oid) || oideq(&a->oid, &o->oid))
2087 oidcpy(&result->oid, &b->oid);
2088 else if (oideq(&b->oid, &o->oid))
2089 oidcpy(&result->oid, &a->oid);
2090
2091 /* Remaining rules depend on file vs. submodule vs. symlink. */
2092 else if (S_ISREG(a->mode)) {
2093 mmbuffer_t result_buf;
2094 int ret = 0, merge_status;
2095 int two_way;
2096
2097 /*
2098 * If 'o' is different type, treat it as null so we do a
2099 * two-way merge.
2100 */
2101 two_way = ((S_IFMT & o->mode) != (S_IFMT & a->mode));
2102
2103 merge_status = merge_3way(opt, path,
14228447 2104 two_way ? null_oid() : &o->oid,
62fdec17
EN
2105 &a->oid, &b->oid,
2106 pathnames, extra_marker_size,
2107 &result_buf);
2108
2109 if ((merge_status < 0) || !result_buf.ptr)
24c5a270 2110 ret = error(_("failed to execute internal merge"));
62fdec17
EN
2111
2112 if (!ret &&
2113 write_object_file(result_buf.ptr, result_buf.size,
c80d226a 2114 OBJ_BLOB, &result->oid))
24c5a270 2115 ret = error(_("unable to add %s to database"), path);
62fdec17
EN
2116
2117 free(result_buf.ptr);
2118 if (ret)
2119 return -1;
2120 clean &= (merge_status == 0);
cb260775
EN
2121 path_msg(opt, INFO_AUTO_MERGING, 1, path, NULL, NULL, NULL,
2122 _("Auto-merging %s"), path);
62fdec17
EN
2123 } else if (S_ISGITLINK(a->mode)) {
2124 int two_way = ((S_IFMT & o->mode) != (S_IFMT & a->mode));
2125 clean = merge_submodule(opt, pathnames[0],
14228447 2126 two_way ? null_oid() : &o->oid,
62fdec17
EN
2127 &a->oid, &b->oid, &result->oid);
2128 if (opt->priv->call_depth && two_way && !clean) {
2129 result->mode = o->mode;
2130 oidcpy(&result->oid, &o->oid);
2131 }
2132 } else if (S_ISLNK(a->mode)) {
2133 if (opt->priv->call_depth) {
2134 clean = 0;
2135 result->mode = o->mode;
2136 oidcpy(&result->oid, &o->oid);
2137 } else {
2138 switch (opt->recursive_variant) {
2139 case MERGE_VARIANT_NORMAL:
2140 clean = 0;
2141 oidcpy(&result->oid, &a->oid);
2142 break;
2143 case MERGE_VARIANT_OURS:
2144 oidcpy(&result->oid, &a->oid);
2145 break;
2146 case MERGE_VARIANT_THEIRS:
2147 oidcpy(&result->oid, &b->oid);
2148 break;
2149 }
2150 }
2151 } else
2152 BUG("unsupported object type in the tree: %06o for %s",
2153 a->mode, path);
2154
991bbdca 2155 return clean;
e2e9dc03
EN
2156}
2157
04af1879
EN
2158/*** Function Grouping: functions related to detect_and_process_renames(), ***
2159 *** which are split into directory and regular rename detection sections. ***/
2160
2161/*** Function Grouping: functions related to directory rename detection ***/
2162
fa5e06d6
EN
2163struct collision_info {
2164 struct string_list source_files;
2165 unsigned reported_already:1;
2166};
2167
d9d015df
EN
2168/*
2169 * Return a new string that replaces the beginning portion (which matches
2170 * rename_info->key), with rename_info->util.new_dir. In perl-speak:
2171 * new_path_name = (old_path =~ s/rename_info->key/rename_info->value/);
2172 * NOTE:
2173 * Caller must ensure that old_path starts with rename_info->key + '/'.
2174 */
2175static char *apply_dir_rename(struct strmap_entry *rename_info,
2176 const char *old_path)
2177{
fbcfc0cc
EN
2178 struct strbuf new_path = STRBUF_INIT;
2179 const char *old_dir = rename_info->key;
2180 const char *new_dir = rename_info->value;
2181 int oldlen, newlen, new_dir_len;
2182
2183 oldlen = strlen(old_dir);
2184 if (*new_dir == '\0')
2185 /*
2186 * If someone renamed/merged a subdirectory into the root
2187 * directory (e.g. 'some/subdir' -> ''), then we want to
2188 * avoid returning
2189 * '' + '/filename'
2190 * as the rename; we need to make old_path + oldlen advance
2191 * past the '/' character.
2192 */
2193 oldlen++;
2194 new_dir_len = strlen(new_dir);
2195 newlen = new_dir_len + (strlen(old_path) - oldlen) + 1;
2196 strbuf_grow(&new_path, newlen);
2197 strbuf_add(&new_path, new_dir, new_dir_len);
2198 strbuf_addstr(&new_path, &old_path[oldlen]);
2199
2200 return strbuf_detach(&new_path, NULL);
d9d015df
EN
2201}
2202
bea43365
EN
2203static int path_in_way(struct strmap *paths, const char *path, unsigned side_mask)
2204{
2205 struct merged_info *mi = strmap_get(paths, path);
2206 struct conflict_info *ci;
2207 if (!mi)
2208 return 0;
2209 INITIALIZE_CI(ci, mi);
2210 return mi->clean || (side_mask & (ci->filemask | ci->dirmask));
2211}
2212
47325e85
EN
2213/*
2214 * See if there is a directory rename for path, and if there are any file
2215 * level conflicts on the given side for the renamed location. If there is
2216 * a rename and there are no conflicts, return the new name. Otherwise,
2217 * return NULL.
2218 */
2219static char *handle_path_level_conflicts(struct merge_options *opt,
2220 const char *path,
2221 unsigned side_index,
2222 struct strmap_entry *rename_info,
2223 struct strmap *collisions)
2224{
bea43365
EN
2225 char *new_path = NULL;
2226 struct collision_info *c_info;
2227 int clean = 1;
2228 struct strbuf collision_paths = STRBUF_INIT;
2229
2230 /*
2231 * entry has the mapping of old directory name to new directory name
2232 * that we want to apply to path.
2233 */
2234 new_path = apply_dir_rename(rename_info, path);
2235 if (!new_path)
2236 BUG("Failed to apply directory rename!");
2237
2238 /*
2239 * The caller needs to have ensured that it has pre-populated
2240 * collisions with all paths that map to new_path. Do a quick check
2241 * to ensure that's the case.
2242 */
2243 c_info = strmap_get(collisions, new_path);
afe8a907 2244 if (!c_info)
bea43365
EN
2245 BUG("c_info is NULL");
2246
2247 /*
2248 * Check for one-sided add/add/.../add conflicts, i.e.
2249 * where implicit renames from the other side doing
2250 * directory rename(s) can affect this side of history
2251 * to put multiple paths into the same location. Warn
2252 * and bail on directory renames for such paths.
2253 */
2254 if (c_info->reported_already) {
2255 clean = 0;
2256 } else if (path_in_way(&opt->priv->paths, new_path, 1 << side_index)) {
2257 c_info->reported_already = 1;
2258 strbuf_add_separated_string_list(&collision_paths, ", ",
2259 &c_info->source_files);
cb260775
EN
2260 path_msg(opt, CONFLICT_DIR_RENAME_FILE_IN_WAY, 0,
2261 new_path, NULL, NULL, &c_info->source_files,
2262 _("CONFLICT (implicit dir rename): Existing "
2263 "file/dir at %s in the way of implicit "
2264 "directory rename(s) putting the following "
2265 "path(s) there: %s."),
2266 new_path, collision_paths.buf);
bea43365
EN
2267 clean = 0;
2268 } else if (c_info->source_files.nr > 1) {
2269 c_info->reported_already = 1;
2270 strbuf_add_separated_string_list(&collision_paths, ", ",
2271 &c_info->source_files);
cb260775
EN
2272 path_msg(opt, CONFLICT_DIR_RENAME_COLLISION, 0,
2273 new_path, NULL, NULL, &c_info->source_files,
2274 _("CONFLICT (implicit dir rename): Cannot map "
2275 "more than one path to %s; implicit directory "
2276 "renames tried to put these paths there: %s"),
2277 new_path, collision_paths.buf);
bea43365
EN
2278 clean = 0;
2279 }
2280
2281 /* Free memory we no longer need */
2282 strbuf_release(&collision_paths);
2283 if (!clean && new_path) {
2284 free(new_path);
2285 return NULL;
2286 }
2287
2288 return new_path;
47325e85
EN
2289}
2290
112e1112
EN
2291static void get_provisional_directory_renames(struct merge_options *opt,
2292 unsigned side,
2293 int *clean)
2294{
04264d40
EN
2295 struct hashmap_iter iter;
2296 struct strmap_entry *entry;
2297 struct rename_info *renames = &opt->priv->renames;
2298
04264d40
EN
2299 /*
2300 * Collapse
2301 * dir_rename_count: old_directory -> {new_directory -> count}
2302 * down to
2303 * dir_renames: old_directory -> best_new_directory
2304 * where best_new_directory is the one with the unique highest count.
2305 */
2306 strmap_for_each_entry(&renames->dir_rename_count[side], &iter, entry) {
2307 const char *source_dir = entry->key;
2308 struct strintmap *counts = entry->value;
2309 struct hashmap_iter count_iter;
2310 struct strmap_entry *count_entry;
2311 int max = 0;
2312 int bad_max = 0;
2313 const char *best = NULL;
2314
2315 strintmap_for_each_entry(counts, &count_iter, count_entry) {
2316 const char *target_dir = count_entry->key;
2317 intptr_t count = (intptr_t)count_entry->value;
2318
2319 if (count == max)
2320 bad_max = max;
2321 else if (count > max) {
2322 max = count;
2323 best = target_dir;
2324 }
2325 }
2326
bf238b71
EN
2327 if (max == 0)
2328 continue;
2329
04264d40 2330 if (bad_max == max) {
cb260775
EN
2331 path_msg(opt, CONFLICT_DIR_RENAME_SPLIT, 0,
2332 source_dir, NULL, NULL, NULL,
2333 _("CONFLICT (directory rename split): "
2334 "Unclear where to rename %s to; it was "
2335 "renamed to multiple other directories, "
2336 "with no destination getting a majority of "
2337 "the files."),
2338 source_dir);
41376b58 2339 *clean = 0;
04264d40
EN
2340 } else {
2341 strmap_put(&renames->dir_renames[side],
2342 source_dir, (void*)best);
2343 }
2344 }
112e1112
EN
2345}
2346
2347static void handle_directory_level_conflicts(struct merge_options *opt)
2348{
98d0d081
EN
2349 struct hashmap_iter iter;
2350 struct strmap_entry *entry;
2351 struct string_list duplicated = STRING_LIST_INIT_NODUP;
2352 struct rename_info *renames = &opt->priv->renames;
2353 struct strmap *side1_dir_renames = &renames->dir_renames[MERGE_SIDE1];
2354 struct strmap *side2_dir_renames = &renames->dir_renames[MERGE_SIDE2];
2355 int i;
2356
2357 strmap_for_each_entry(side1_dir_renames, &iter, entry) {
2358 if (strmap_contains(side2_dir_renames, entry->key))
2359 string_list_append(&duplicated, entry->key);
2360 }
2361
2362 for (i = 0; i < duplicated.nr; i++) {
2363 strmap_remove(side1_dir_renames, duplicated.items[i].string, 0);
2364 strmap_remove(side2_dir_renames, duplicated.items[i].string, 0);
2365 }
2366 string_list_clear(&duplicated, 0);
112e1112
EN
2367}
2368
d9d015df
EN
2369static struct strmap_entry *check_dir_renamed(const char *path,
2370 struct strmap *dir_renames)
2371{
fbcfc0cc
EN
2372 char *temp = xstrdup(path);
2373 char *end;
2374 struct strmap_entry *e = NULL;
2375
2376 while ((end = strrchr(temp, '/'))) {
2377 *end = '\0';
2378 e = strmap_get_entry(dir_renames, temp);
2379 if (e)
2380 break;
2381 }
2382 free(temp);
2383 return e;
d9d015df
EN
2384}
2385
fa5e06d6
EN
2386static void compute_collisions(struct strmap *collisions,
2387 struct strmap *dir_renames,
2388 struct diff_queue_struct *pairs)
2389{
d9d015df
EN
2390 int i;
2391
2392 strmap_init_with_options(collisions, NULL, 0);
2393 if (strmap_empty(dir_renames))
2394 return;
2395
2396 /*
2397 * Multiple files can be mapped to the same path due to directory
2398 * renames done by the other side of history. Since that other
2399 * side of history could have merged multiple directories into one,
2400 * if our side of history added the same file basename to each of
2401 * those directories, then all N of them would get implicitly
2402 * renamed by the directory rename detection into the same path,
2403 * and we'd get an add/add/.../add conflict, and all those adds
2404 * from *this* side of history. This is not representable in the
2405 * index, and users aren't going to easily be able to make sense of
2406 * it. So we need to provide a good warning about what's
2407 * happening, and fall back to no-directory-rename detection
2408 * behavior for those paths.
2409 *
2410 * See testcases 9e and all of section 5 from t6043 for examples.
2411 */
2412 for (i = 0; i < pairs->nr; ++i) {
2413 struct strmap_entry *rename_info;
2414 struct collision_info *collision_info;
2415 char *new_path;
2416 struct diff_filepair *pair = pairs->queue[i];
2417
2418 if (pair->status != 'A' && pair->status != 'R')
2419 continue;
2420 rename_info = check_dir_renamed(pair->two->path, dir_renames);
2421 if (!rename_info)
2422 continue;
2423
2424 new_path = apply_dir_rename(rename_info, pair->two->path);
2425 assert(new_path);
2426 collision_info = strmap_get(collisions, new_path);
2427 if (collision_info) {
2428 free(new_path);
2429 } else {
ca56dadb 2430 CALLOC_ARRAY(collision_info, 1);
bc40dfb1 2431 string_list_init_nodup(&collision_info->source_files);
d9d015df
EN
2432 strmap_put(collisions, new_path, collision_info);
2433 }
2434 string_list_insert(&collision_info->source_files,
2435 pair->two->path);
2436 }
fa5e06d6
EN
2437}
2438
6dd1f0e9
EN
2439static void free_collisions(struct strmap *collisions)
2440{
2441 struct hashmap_iter iter;
2442 struct strmap_entry *entry;
2443
2444 /* Free each value in the collisions map */
2445 strmap_for_each_entry(collisions, &iter, entry) {
2446 struct collision_info *info = entry->value;
2447 string_list_clear(&info->source_files, 0);
2448 }
2449 /*
2450 * In compute_collisions(), we set collisions.strdup_strings to 0
2451 * so that we wouldn't have to make another copy of the new_path
2452 * allocated by apply_dir_rename(). But now that we've used them
2453 * and have no other references to these strings, it is time to
2454 * deallocate them.
2455 */
2456 free_strmap_strings(collisions);
2457 strmap_clear(collisions, 1);
2458}
2459
fa5e06d6
EN
2460static char *check_for_directory_rename(struct merge_options *opt,
2461 const char *path,
2462 unsigned side_index,
2463 struct strmap *dir_renames,
2464 struct strmap *dir_rename_exclusions,
2465 struct strmap *collisions,
2466 int *clean_merge)
2467{
51e41e4e 2468 char *new_path;
47325e85 2469 struct strmap_entry *rename_info;
51e41e4e 2470 struct strmap_entry *otherinfo;
47325e85 2471 const char *new_dir;
751e1654 2472 int other_side = 3 - side_index;
47325e85 2473
751e1654
EN
2474 /*
2475 * Cases where we don't have or don't want a directory rename for
2476 * this path.
2477 */
47325e85 2478 if (strmap_empty(dir_renames))
51e41e4e 2479 return NULL;
751e1654
EN
2480 if (strmap_get(&collisions[other_side], path))
2481 return NULL;
47325e85
EN
2482 rename_info = check_dir_renamed(path, dir_renames);
2483 if (!rename_info)
51e41e4e 2484 return NULL;
47325e85
EN
2485
2486 /*
2487 * This next part is a little weird. We do not want to do an
2488 * implicit rename into a directory we renamed on our side, because
2489 * that will result in a spurious rename/rename(1to2) conflict. An
2490 * example:
2491 * Base commit: dumbdir/afile, otherdir/bfile
2492 * Side 1: smrtdir/afile, otherdir/bfile
2493 * Side 2: dumbdir/afile, dumbdir/bfile
2494 * Here, while working on Side 1, we could notice that otherdir was
2495 * renamed/merged to dumbdir, and change the diff_filepair for
2496 * otherdir/bfile into a rename into dumbdir/bfile. However, Side
2497 * 2 will notice the rename from dumbdir to smrtdir, and do the
2498 * transitive rename to move it from dumbdir/bfile to
2499 * smrtdir/bfile. That gives us bfile in dumbdir vs being in
2500 * smrtdir, a rename/rename(1to2) conflict. We really just want
2501 * the file to end up in smrtdir. And the way to achieve that is
2502 * to not let Side1 do the rename to dumbdir, since we know that is
2503 * the source of one of our directory renames.
2504 *
2505 * That's why otherinfo and dir_rename_exclusions is here.
2506 *
2507 * As it turns out, this also prevents N-way transient rename
2508 * confusion; See testcases 9c and 9d of t6043.
2509 */
51e41e4e 2510 new_dir = rename_info->value; /* old_dir = rename_info->key; */
47325e85
EN
2511 otherinfo = strmap_get_entry(dir_rename_exclusions, new_dir);
2512 if (otherinfo) {
cb260775
EN
2513 path_msg(opt, INFO_DIR_RENAME_SKIPPED_DUE_TO_RERENAME, 1,
2514 rename_info->key, path, new_dir, NULL,
47325e85
EN
2515 _("WARNING: Avoiding applying %s -> %s rename "
2516 "to %s, because %s itself was renamed."),
2517 rename_info->key, new_dir, path, new_dir);
2518 return NULL;
2519 }
2520
2521 new_path = handle_path_level_conflicts(opt, path, side_index,
3ffbe5a2
EN
2522 rename_info,
2523 &collisions[side_index]);
47325e85
EN
2524 *clean_merge &= (new_path != NULL);
2525
2526 return new_path;
fa5e06d6
EN
2527}
2528
2529static void apply_directory_rename_modifications(struct merge_options *opt,
2530 struct diff_filepair *pair,
2531 char *new_path)
2532{
089d82bc
EN
2533 /*
2534 * The basic idea is to get the conflict_info from opt->priv->paths
2535 * at old path, and insert it into new_path; basically just this:
2536 * ci = strmap_get(&opt->priv->paths, old_path);
2537 * strmap_remove(&opt->priv->paths, old_path, 0);
2538 * strmap_put(&opt->priv->paths, new_path, ci);
2539 * However, there are some factors complicating this:
2540 * - opt->priv->paths may already have an entry at new_path
2541 * - Each ci tracks its containing directory, so we need to
2542 * update that
2543 * - If another ci has the same containing directory, then
2544 * the two char*'s MUST point to the same location. See the
2545 * comment in struct merged_info. strcmp equality is not
2546 * enough; we need pointer equality.
2547 * - opt->priv->paths must hold the parent directories of any
2548 * entries that are added. So, if this directory rename
2549 * causes entirely new directories, we must recursively add
2550 * parent directories.
2551 * - For each parent directory added to opt->priv->paths, we
2552 * also need to get its parent directory stored in its
2553 * conflict_info->merged.directory_name with all the same
2554 * requirements about pointer equality.
2555 */
2556 struct string_list dirs_to_insert = STRING_LIST_INIT_NODUP;
2557 struct conflict_info *ci, *new_ci;
2558 struct strmap_entry *entry;
2559 const char *branch_with_new_path, *branch_with_dir_rename;
2560 const char *old_path = pair->two->path;
2561 const char *parent_name;
2562 const char *cur_path;
2563 int i, len;
2564
2565 entry = strmap_get_entry(&opt->priv->paths, old_path);
2566 old_path = entry->key;
2567 ci = entry->value;
2568 VERIFY_CI(ci);
2569
2570 /* Find parent directories missing from opt->priv->paths */
62a15162
EN
2571 cur_path = mem_pool_strdup(&opt->priv->pool, new_path);
2572 free((char*)new_path);
2573 new_path = (char *)cur_path;
6697ee01 2574
089d82bc
EN
2575 while (1) {
2576 /* Find the parent directory of cur_path */
2577 char *last_slash = strrchr(cur_path, '/');
2578 if (last_slash) {
62a15162
EN
2579 parent_name = mem_pool_strndup(&opt->priv->pool,
2580 cur_path,
2581 last_slash - cur_path);
089d82bc
EN
2582 } else {
2583 parent_name = opt->priv->toplevel_dir;
2584 break;
2585 }
2586
2587 /* Look it up in opt->priv->paths */
2588 entry = strmap_get_entry(&opt->priv->paths, parent_name);
2589 if (entry) {
089d82bc
EN
2590 parent_name = entry->key; /* reuse known pointer */
2591 break;
2592 }
2593
2594 /* Record this is one of the directories we need to insert */
2595 string_list_append(&dirs_to_insert, parent_name);
2596 cur_path = parent_name;
2597 }
2598
2599 /* Traverse dirs_to_insert and insert them into opt->priv->paths */
2600 for (i = dirs_to_insert.nr-1; i >= 0; --i) {
2601 struct conflict_info *dir_ci;
2602 char *cur_dir = dirs_to_insert.items[i].string;
2603
ca56dadb 2604 CALLOC_ARRAY(dir_ci, 1);
089d82bc
EN
2605
2606 dir_ci->merged.directory_name = parent_name;
2607 len = strlen(parent_name);
2608 /* len+1 because of trailing '/' character */
2609 dir_ci->merged.basename_offset = (len > 0 ? len+1 : len);
2610 dir_ci->dirmask = ci->filemask;
2611 strmap_put(&opt->priv->paths, cur_dir, dir_ci);
2612
2613 parent_name = cur_dir;
2614 }
2615
089d82bc 2616 assert(ci->filemask == 2 || ci->filemask == 4);
2b86c100
EN
2617 assert(ci->dirmask == 0 || ci->dirmask == 1);
2618 if (ci->dirmask == 0)
2619 strmap_remove(&opt->priv->paths, old_path, 0);
2620 else {
2621 /*
2622 * This file exists on one side, but we still had a directory
2623 * at the old location that we can't remove until after
2624 * processing all paths below it. So, make a copy of ci in
2625 * new_ci and only put the file information into it.
2626 */
2627 new_ci = mem_pool_calloc(&opt->priv->pool, 1, sizeof(*new_ci));
2628 memcpy(new_ci, ci, sizeof(*ci));
2629 assert(!new_ci->match_mask);
2630 new_ci->dirmask = 0;
2631 new_ci->stages[1].mode = 0;
2632 oidcpy(&new_ci->stages[1].oid, null_oid());
2633
2634 /*
2635 * Now that we have the file information in new_ci, make sure
2636 * ci only has the directory information.
2637 */
2638 ci->filemask = 0;
2639 ci->merged.clean = 1;
2640 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
2641 if (ci->dirmask & (1 << i))
2642 continue;
2643 /* zero out any entries related to files */
2644 ci->stages[i].mode = 0;
2645 oidcpy(&ci->stages[i].oid, null_oid());
2646 }
2647
2648 // Now we want to focus on new_ci, so reassign ci to it
2649 ci = new_ci;
2650 }
089d82bc
EN
2651
2652 branch_with_new_path = (ci->filemask == 2) ? opt->branch1 : opt->branch2;
2653 branch_with_dir_rename = (ci->filemask == 2) ? opt->branch2 : opt->branch1;
2654
2655 /* Now, finally update ci and stick it into opt->priv->paths */
2656 ci->merged.directory_name = parent_name;
2657 len = strlen(parent_name);
2658 ci->merged.basename_offset = (len > 0 ? len+1 : len);
2659 new_ci = strmap_get(&opt->priv->paths, new_path);
2660 if (!new_ci) {
2661 /* Place ci back into opt->priv->paths, but at new_path */
2662 strmap_put(&opt->priv->paths, new_path, ci);
2663 } else {
2664 int index;
2665
2666 /* A few sanity checks */
2667 VERIFY_CI(new_ci);
2668 assert(ci->filemask == 2 || ci->filemask == 4);
2669 assert((new_ci->filemask & ci->filemask) == 0);
2670 assert(!new_ci->merged.clean);
2671
2672 /* Copy stuff from ci into new_ci */
2673 new_ci->filemask |= ci->filemask;
2674 if (new_ci->dirmask)
2675 new_ci->df_conflict = 1;
2676 index = (ci->filemask >> 1);
2677 new_ci->pathnames[index] = ci->pathnames[index];
2678 new_ci->stages[index].mode = ci->stages[index].mode;
2679 oidcpy(&new_ci->stages[index].oid, &ci->stages[index].oid);
2680
089d82bc
EN
2681 ci = new_ci;
2682 }
2683
2684 if (opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_TRUE) {
2685 /* Notify user of updated path */
2686 if (pair->status == 'A')
cb260775
EN
2687 path_msg(opt, INFO_DIR_RENAME_APPLIED, 1,
2688 new_path, old_path, NULL, NULL,
089d82bc
EN
2689 _("Path updated: %s added in %s inside a "
2690 "directory that was renamed in %s; moving "
2691 "it to %s."),
2692 old_path, branch_with_new_path,
2693 branch_with_dir_rename, new_path);
2694 else
cb260775
EN
2695 path_msg(opt, INFO_DIR_RENAME_APPLIED, 1,
2696 new_path, old_path, NULL, NULL,
089d82bc
EN
2697 _("Path updated: %s renamed to %s in %s, "
2698 "inside a directory that was renamed in %s; "
2699 "moving it to %s."),
2700 pair->one->path, old_path, branch_with_new_path,
2701 branch_with_dir_rename, new_path);
2702 } else {
2703 /*
2704 * opt->detect_directory_renames has the value
2705 * MERGE_DIRECTORY_RENAMES_CONFLICT, so mark these as conflicts.
2706 */
2707 ci->path_conflict = 1;
2708 if (pair->status == 'A')
cb260775
EN
2709 path_msg(opt, CONFLICT_DIR_RENAME_SUGGESTED, 1,
2710 new_path, old_path, NULL, NULL,
089d82bc
EN
2711 _("CONFLICT (file location): %s added in %s "
2712 "inside a directory that was renamed in %s, "
2713 "suggesting it should perhaps be moved to "
2714 "%s."),
2715 old_path, branch_with_new_path,
2716 branch_with_dir_rename, new_path);
2717 else
cb260775
EN
2718 path_msg(opt, CONFLICT_DIR_RENAME_SUGGESTED, 1,
2719 new_path, old_path, NULL, NULL,
089d82bc
EN
2720 _("CONFLICT (file location): %s renamed to %s "
2721 "in %s, inside a directory that was renamed "
2722 "in %s, suggesting it should perhaps be "
2723 "moved to %s."),
2724 pair->one->path, old_path, branch_with_new_path,
2725 branch_with_dir_rename, new_path);
2726 }
2727
2728 /*
2729 * Finally, record the new location.
2730 */
2731 pair->two->path = new_path;
fa5e06d6
EN
2732}
2733
04af1879
EN
2734/*** Function Grouping: functions related to regular rename detection ***/
2735
e1a124e8
EN
2736static int process_renames(struct merge_options *opt,
2737 struct diff_queue_struct *renames)
2738{
c2d267df
EN
2739 int clean_merge = 1, i;
2740
2741 for (i = 0; i < renames->nr; ++i) {
2742 const char *oldpath = NULL, *newpath;
2743 struct diff_filepair *pair = renames->queue[i];
2744 struct conflict_info *oldinfo = NULL, *newinfo = NULL;
2745 struct strmap_entry *old_ent, *new_ent;
2746 unsigned int old_sidemask;
2747 int target_index, other_source_index;
2748 int source_deleted, collision, type_changed;
2e91ddd2 2749 const char *rename_branch = NULL, *delete_branch = NULL;
c2d267df
EN
2750
2751 old_ent = strmap_get_entry(&opt->priv->paths, pair->one->path);
c2d267df 2752 new_ent = strmap_get_entry(&opt->priv->paths, pair->two->path);
1b6b902d
EN
2753 if (old_ent) {
2754 oldpath = old_ent->key;
2755 oldinfo = old_ent->value;
2756 }
2757 newpath = pair->two->path;
2758 if (new_ent) {
2759 newpath = new_ent->key;
2760 newinfo = new_ent->value;
2761 }
2762
2763 /*
2764 * If pair->one->path isn't in opt->priv->paths, that means
2765 * that either directory rename detection removed that
2766 * path, or a parent directory of oldpath was resolved and
2767 * we don't even need the rename; in either case, we can
2768 * skip it. If oldinfo->merged.clean, then the other side
2769 * of history had no changes to oldpath and we don't need
2770 * the rename and can skip it.
2771 */
2772 if (!oldinfo || oldinfo->merged.clean)
2773 continue;
c2d267df
EN
2774
2775 /*
2776 * diff_filepairs have copies of pathnames, thus we have to
2777 * use standard 'strcmp()' (negated) instead of '=='.
2778 */
2779 if (i + 1 < renames->nr &&
2780 !strcmp(oldpath, renames->queue[i+1]->one->path)) {
2781 /* Handle rename/rename(1to2) or rename/rename(1to1) */
2782 const char *pathnames[3];
af1e56c4
EN
2783 struct version_info merged;
2784 struct conflict_info *base, *side1, *side2;
53e88a03 2785 unsigned was_binary_blob = 0;
c2d267df
EN
2786
2787 pathnames[0] = oldpath;
2788 pathnames[1] = newpath;
2789 pathnames[2] = renames->queue[i+1]->two->path;
2790
af1e56c4
EN
2791 base = strmap_get(&opt->priv->paths, pathnames[0]);
2792 side1 = strmap_get(&opt->priv->paths, pathnames[1]);
2793 side2 = strmap_get(&opt->priv->paths, pathnames[2]);
2794
2795 VERIFY_CI(base);
2796 VERIFY_CI(side1);
2797 VERIFY_CI(side2);
2798
c2d267df 2799 if (!strcmp(pathnames[1], pathnames[2])) {
cbdca289
EN
2800 struct rename_info *ri = &opt->priv->renames;
2801 int j;
2802
af1e56c4
EN
2803 /* Both sides renamed the same way */
2804 assert(side1 == side2);
2805 memcpy(&side1->stages[0], &base->stages[0],
2806 sizeof(merged));
2807 side1->filemask |= (1 << MERGE_BASE);
2808 /* Mark base as resolved by removal */
2809 base->merged.is_null = 1;
2810 base->merged.clean = 1;
c2d267df 2811
cbdca289
EN
2812 /*
2813 * Disable remembering renames optimization;
2814 * rename/rename(1to1) is incredibly rare, and
2815 * just disabling the optimization is easier
2816 * than purging cached_pairs,
2817 * cached_target_names, and dir_rename_counts.
2818 */
2819 for (j = 0; j < 3; j++)
2820 ri->merge_trees[j] = NULL;
2821
c2d267df
EN
2822 /* We handled both renames, i.e. i+1 handled */
2823 i++;
2824 /* Move to next rename */
2825 continue;
2826 }
2827
2828 /* This is a rename/rename(1to2) */
53e88a03
EN
2829 clean_merge = handle_content_merge(opt,
2830 pair->one->path,
2831 &base->stages[0],
2832 &side1->stages[1],
2833 &side2->stages[2],
2834 pathnames,
2835 1 + 2 * opt->priv->call_depth,
2836 &merged);
92481d1b
JS
2837 if (clean_merge < 0)
2838 return -1;
53e88a03
EN
2839 if (!clean_merge &&
2840 merged.mode == side1->stages[1].mode &&
2841 oideq(&merged.oid, &side1->stages[1].oid))
2842 was_binary_blob = 1;
2843 memcpy(&side1->stages[1], &merged, sizeof(merged));
2844 if (was_binary_blob) {
2845 /*
2846 * Getting here means we were attempting to
2847 * merge a binary blob.
2848 *
2849 * Since we can't merge binaries,
2850 * handle_content_merge() just takes one
2851 * side. But we don't want to copy the
2852 * contents of one side to both paths. We
2853 * used the contents of side1 above for
2854 * side1->stages, let's use the contents of
2855 * side2 for side2->stages below.
2856 */
2857 oidcpy(&merged.oid, &side2->stages[2].oid);
2858 merged.mode = side2->stages[2].mode;
2859 }
2860 memcpy(&side2->stages[2], &merged, sizeof(merged));
2861
2862 side1->path_conflict = 1;
2863 side2->path_conflict = 1;
2864 /*
2865 * TODO: For renames we normally remove the path at the
2866 * old name. It would thus seem consistent to do the
2867 * same for rename/rename(1to2) cases, but we haven't
2868 * done so traditionally and a number of the regression
2869 * tests now encode an expectation that the file is
2870 * left there at stage 1. If we ever decide to change
2871 * this, add the following two lines here:
2872 * base->merged.is_null = 1;
2873 * base->merged.clean = 1;
2874 * and remove the setting of base->path_conflict to 1.
2875 */
2876 base->path_conflict = 1;
cb260775
EN
2877 path_msg(opt, CONFLICT_RENAME_RENAME, 0,
2878 pathnames[0], pathnames[1], pathnames[2], NULL,
53e88a03
EN
2879 _("CONFLICT (rename/rename): %s renamed to "
2880 "%s in %s and to %s in %s."),
2881 pathnames[0],
2882 pathnames[1], opt->branch1,
2883 pathnames[2], opt->branch2);
c2d267df
EN
2884
2885 i++; /* We handled both renames, i.e. i+1 handled */
2886 continue;
2887 }
2888
2889 VERIFY_CI(oldinfo);
2890 VERIFY_CI(newinfo);
2891 target_index = pair->score; /* from collect_renames() */
2892 assert(target_index == 1 || target_index == 2);
2893 other_source_index = 3 - target_index;
2894 old_sidemask = (1 << other_source_index); /* 2 or 4 */
2895 source_deleted = (oldinfo->filemask == 1);
2896 collision = ((newinfo->filemask & old_sidemask) != 0);
2897 type_changed = !source_deleted &&
2898 (S_ISREG(oldinfo->stages[other_source_index].mode) !=
2899 S_ISREG(newinfo->stages[target_index].mode));
2900 if (type_changed && collision) {
6fcccbd7
EN
2901 /*
2902 * special handling so later blocks can handle this...
2903 *
2904 * if type_changed && collision are both true, then this
2905 * was really a double rename, but one side wasn't
2906 * detected due to lack of break detection. I.e.
2907 * something like
2908 * orig: has normal file 'foo'
2909 * side1: renames 'foo' to 'bar', adds 'foo' symlink
2910 * side2: renames 'foo' to 'bar'
2911 * In this case, the foo->bar rename on side1 won't be
2912 * detected because the new symlink named 'foo' is
2913 * there and we don't do break detection. But we detect
2914 * this here because we don't want to merge the content
2915 * of the foo symlink with the foo->bar file, so we
2916 * have some logic to handle this special case. The
2917 * easiest way to do that is make 'bar' on side1 not
2918 * be considered a colliding file but the other part
2919 * of a normal rename. If the file is very different,
2920 * well we're going to get content merge conflicts
2921 * anyway so it doesn't hurt. And if the colliding
2922 * file also has a different type, that'll be handled
2923 * by the content merge logic in process_entry() too.
2924 *
2925 * See also t6430, 'rename vs. rename/symlink'
2926 */
2927 collision = 0;
c2d267df 2928 }
2e91ddd2
EN
2929 if (source_deleted) {
2930 if (target_index == 1) {
2931 rename_branch = opt->branch1;
2932 delete_branch = opt->branch2;
2933 } else {
2934 rename_branch = opt->branch2;
2935 delete_branch = opt->branch1;
2936 }
2937 }
c2d267df
EN
2938
2939 assert(source_deleted || oldinfo->filemask & old_sidemask);
2940
2941 /* Need to check for special types of rename conflicts... */
2942 if (collision && !source_deleted) {
2943 /* collision: rename/add or rename/rename(2to1) */
35e47e35
EN
2944 const char *pathnames[3];
2945 struct version_info merged;
2946
2947 struct conflict_info *base, *side1, *side2;
92481d1b 2948 int clean;
35e47e35
EN
2949
2950 pathnames[0] = oldpath;
2951 pathnames[other_source_index] = oldpath;
2952 pathnames[target_index] = newpath;
2953
2954 base = strmap_get(&opt->priv->paths, pathnames[0]);
2955 side1 = strmap_get(&opt->priv->paths, pathnames[1]);
2956 side2 = strmap_get(&opt->priv->paths, pathnames[2]);
2957
2958 VERIFY_CI(base);
2959 VERIFY_CI(side1);
2960 VERIFY_CI(side2);
2961
2962 clean = handle_content_merge(opt, pair->one->path,
2963 &base->stages[0],
2964 &side1->stages[1],
2965 &side2->stages[2],
2966 pathnames,
2967 1 + 2 * opt->priv->call_depth,
2968 &merged);
92481d1b
JS
2969 if (clean < 0)
2970 return -1;
35e47e35
EN
2971
2972 memcpy(&newinfo->stages[target_index], &merged,
2973 sizeof(merged));
2974 if (!clean) {
cb260775
EN
2975 path_msg(opt, CONFLICT_RENAME_COLLIDES, 0,
2976 newpath, oldpath, NULL, NULL,
35e47e35
EN
2977 _("CONFLICT (rename involved in "
2978 "collision): rename of %s -> %s has "
2979 "content conflicts AND collides "
2980 "with another path; this may result "
2981 "in nested conflict markers."),
2982 oldpath, newpath);
2983 }
c2d267df 2984 } else if (collision && source_deleted) {
35e47e35
EN
2985 /*
2986 * rename/add/delete or rename/rename(2to1)/delete:
2987 * since oldpath was deleted on the side that didn't
2988 * do the rename, there's not much of a content merge
2989 * we can do for the rename. oldinfo->merged.is_null
2990 * was already set, so we just leave things as-is so
2991 * they look like an add/add conflict.
2992 */
2993
2994 newinfo->path_conflict = 1;
cb260775
EN
2995 path_msg(opt, CONFLICT_RENAME_DELETE, 0,
2996 newpath, oldpath, NULL, NULL,
35e47e35
EN
2997 _("CONFLICT (rename/delete): %s renamed "
2998 "to %s in %s, but deleted in %s."),
2999 oldpath, newpath, rename_branch, delete_branch);
c2d267df 3000 } else {
2e91ddd2
EN
3001 /*
3002 * a few different cases...start by copying the
3003 * existing stage(s) from oldinfo over the newinfo
3004 * and update the pathname(s).
3005 */
3006 memcpy(&newinfo->stages[0], &oldinfo->stages[0],
3007 sizeof(newinfo->stages[0]));
3008 newinfo->filemask |= (1 << MERGE_BASE);
3009 newinfo->pathnames[0] = oldpath;
c2d267df
EN
3010 if (type_changed) {
3011 /* rename vs. typechange */
6fcccbd7 3012 /* Mark the original as resolved by removal */
14228447 3013 memcpy(&oldinfo->stages[0].oid, null_oid(),
6fcccbd7
EN
3014 sizeof(oldinfo->stages[0].oid));
3015 oldinfo->stages[0].mode = 0;
3016 oldinfo->filemask &= 0x06;
c2d267df
EN
3017 } else if (source_deleted) {
3018 /* rename/delete */
2e91ddd2 3019 newinfo->path_conflict = 1;
cb260775
EN
3020 path_msg(opt, CONFLICT_RENAME_DELETE, 0,
3021 newpath, oldpath, NULL, NULL,
2e91ddd2
EN
3022 _("CONFLICT (rename/delete): %s renamed"
3023 " to %s in %s, but deleted in %s."),
3024 oldpath, newpath,
3025 rename_branch, delete_branch);
c2d267df
EN
3026 } else {
3027 /* normal rename */
f1665e69
EN
3028 memcpy(&newinfo->stages[other_source_index],
3029 &oldinfo->stages[other_source_index],
3030 sizeof(newinfo->stages[0]));
3031 newinfo->filemask |= (1 << other_source_index);
3032 newinfo->pathnames[other_source_index] = oldpath;
c2d267df
EN
3033 }
3034 }
3035
3036 if (!type_changed) {
3037 /* Mark the original as resolved by removal */
3038 oldinfo->merged.is_null = 1;
3039 oldinfo->merged.clean = 1;
3040 }
3041
3042 }
3043
3044 return clean_merge;
e1a124e8
EN
3045}
3046
f89b4f2b
EN
3047static inline int possible_side_renames(struct rename_info *renames,
3048 unsigned side_index)
3049{
3050 return renames->pairs[side_index].nr > 0 &&
a49b55d5 3051 !strintmap_empty(&renames->relevant_sources[side_index]);
f89b4f2b
EN
3052}
3053
3054static inline int possible_renames(struct rename_info *renames)
3055{
3056 return possible_side_renames(renames, 1) ||
25e65b6d
EN
3057 possible_side_renames(renames, 2) ||
3058 !strmap_empty(&renames->cached_pairs[1]) ||
3059 !strmap_empty(&renames->cached_pairs[2]);
f89b4f2b
EN
3060}
3061
f78cf976
EN
3062static void resolve_diffpair_statuses(struct diff_queue_struct *q)
3063{
3064 /*
3065 * A simplified version of diff_resolve_rename_copy(); would probably
3066 * just use that function but it's static...
3067 */
3068 int i;
3069 struct diff_filepair *p;
3070
3071 for (i = 0; i < q->nr; ++i) {
3072 p = q->queue[i];
3073 p->status = 0; /* undecided */
3074 if (!DIFF_FILE_VALID(p->one))
3075 p->status = DIFF_STATUS_ADDED;
3076 else if (!DIFF_FILE_VALID(p->two))
3077 p->status = DIFF_STATUS_DELETED;
3078 else if (DIFF_PAIR_RENAME(p))
3079 p->status = DIFF_STATUS_RENAMED;
3080 }
3081}
3082
86b41b38
EN
3083static void prune_cached_from_relevant(struct rename_info *renames,
3084 unsigned side)
3085{
3086 /* Reason for this function described in add_pair() */
3087 struct hashmap_iter iter;
3088 struct strmap_entry *entry;
3089
3090 /* Remove from relevant_sources all entries in cached_pairs[side] */
3091 strmap_for_each_entry(&renames->cached_pairs[side], &iter, entry) {
3092 strintmap_remove(&renames->relevant_sources[side],
3093 entry->key);
3094 }
3095 /* Remove from relevant_sources all entries in cached_irrelevant[side] */
3096 strset_for_each_entry(&renames->cached_irrelevant[side], &iter, entry) {
3097 strintmap_remove(&renames->relevant_sources[side],
3098 entry->key);
3099 }
3100}
3101
86b41b38
EN
3102static void use_cached_pairs(struct merge_options *opt,
3103 struct strmap *cached_pairs,
3104 struct diff_queue_struct *pairs)
3105{
3106 struct hashmap_iter iter;
3107 struct strmap_entry *entry;
3108
3109 /*
3110 * Add to side_pairs all entries from renames->cached_pairs[side_index].
3111 * (Info in cached_irrelevant[side_index] is not relevant here.)
3112 */
3113 strmap_for_each_entry(cached_pairs, &iter, entry) {
3114 struct diff_filespec *one, *two;
3115 const char *old_name = entry->key;
3116 const char *new_name = entry->value;
3117 if (!new_name)
3118 new_name = old_name;
3119
62a15162
EN
3120 /*
3121 * cached_pairs has *copies* of old_name and new_name,
3122 * because it has to persist across merges. Since
3123 * pool_alloc_filespec() will just re-use the existing
3124 * filenames, which will also get re-used by
3125 * opt->priv->paths if they become renames, and then
3126 * get freed at the end of the merge, that would leave
3127 * the copy in cached_pairs dangling. Avoid this by
3128 * making a copy here.
3129 */
3130 old_name = mem_pool_strdup(&opt->priv->pool, old_name);
3131 new_name = mem_pool_strdup(&opt->priv->pool, new_name);
86b41b38
EN
3132
3133 /* We don't care about oid/mode, only filenames and status */
62a15162
EN
3134 one = pool_alloc_filespec(&opt->priv->pool, old_name);
3135 two = pool_alloc_filespec(&opt->priv->pool, new_name);
3136 pool_diff_queue(&opt->priv->pool, pairs, one, two);
86b41b38
EN
3137 pairs->queue[pairs->nr-1]->status = entry->value ? 'R' : 'D';
3138 }
3139}
3140
2734f2e3
EN
3141static void cache_new_pair(struct rename_info *renames,
3142 int side,
3143 char *old_path,
3144 char *new_path,
3145 int free_old_value)
3146{
3147 char *old_value;
3148 new_path = xstrdup(new_path);
3149 old_value = strmap_put(&renames->cached_pairs[side],
3150 old_path, new_path);
3151 strset_add(&renames->cached_target_names[side], new_path);
3152 if (free_old_value)
3153 free(old_value);
3154 else
3155 assert(!old_value);
3156}
3157
3158static void possibly_cache_new_pair(struct rename_info *renames,
3159 struct diff_filepair *p,
3160 unsigned side,
3161 char *new_path)
3162{
3163 int dir_renamed_side = 0;
3164
3165 if (new_path) {
3166 /*
3167 * Directory renames happen on the other side of history from
3168 * the side that adds new files to the old directory.
3169 */
3170 dir_renamed_side = 3 - side;
3171 } else {
3172 int val = strintmap_get(&renames->relevant_sources[side],
3173 p->one->path);
3174 if (val == RELEVANT_NO_MORE) {
3175 assert(p->status == 'D');
3176 strset_add(&renames->cached_irrelevant[side],
3177 p->one->path);
3178 }
3179 if (val <= 0)
3180 return;
3181 }
3182
3183 if (p->status == 'D') {
3184 /*
3185 * If we already had this delete, we'll just set it's value
3186 * to NULL again, so no harm.
3187 */
3188 strmap_put(&renames->cached_pairs[side], p->one->path, NULL);
3189 } else if (p->status == 'R') {
3190 if (!new_path)
3191 new_path = p->two->path;
3192 else
3193 cache_new_pair(renames, dir_renamed_side,
3194 p->two->path, new_path, 0);
3195 cache_new_pair(renames, side, p->one->path, new_path, 1);
3196 } else if (p->status == 'A' && new_path) {
3197 cache_new_pair(renames, dir_renamed_side,
3198 p->two->path, new_path, 0);
3199 }
3200}
3201
e1a124e8
EN
3202static int compare_pairs(const void *a_, const void *b_)
3203{
965a7bc2
EN
3204 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
3205 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
3206
3207 return strcmp(a->one->path, b->one->path);
e1a124e8
EN
3208}
3209
356da0f9 3210/* Call diffcore_rename() to update deleted/added pairs into rename pairs */
8b09a900
EN
3211static int detect_regular_renames(struct merge_options *opt,
3212 unsigned side_index)
e1a124e8 3213{
f39d05ca
EN
3214 struct diff_options diff_opts;
3215 struct rename_info *renames = &opt->priv->renames;
3216
25e65b6d 3217 prune_cached_from_relevant(renames, side_index);
f89b4f2b
EN
3218 if (!possible_side_renames(renames, side_index)) {
3219 /*
3220 * No rename detection needed for this side, but we still need
3221 * to make sure 'adds' are marked correctly in case the other
3222 * side had directory renames.
3223 */
3224 resolve_diffpair_statuses(&renames->pairs[side_index]);
8b09a900 3225 return 0;
f89b4f2b
EN
3226 }
3227
d5098029 3228 partial_clear_dir_rename_count(&renames->dir_rename_count[side_index]);
f39d05ca
EN
3229 repo_diff_setup(opt->repo, &diff_opts);
3230 diff_opts.flags.recursive = 1;
3231 diff_opts.flags.rename_empty = 0;
3232 diff_opts.detect_rename = DIFF_DETECT_RENAME;
3233 diff_opts.rename_limit = opt->rename_limit;
3234 if (opt->rename_limit <= 0)
94b82d56 3235 diff_opts.rename_limit = 7000;
f39d05ca
EN
3236 diff_opts.rename_score = opt->rename_score;
3237 diff_opts.show_rename_progress = opt->show_rename_progress;
3238 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
3239 diff_setup_done(&diff_opts);
557ac035 3240
f78cf976 3241 diff_queued_diff = renames->pairs[side_index];
557ac035 3242 trace2_region_enter("diff", "diffcore_rename", opt->repo);
0c4fd732 3243 diffcore_rename_extended(&diff_opts,
62a15162 3244 &opt->priv->pool,
174791f0 3245 &renames->relevant_sources[side_index],
0c4fd732 3246 &renames->dirs_removed[side_index],
25e65b6d
EN
3247 &renames->dir_rename_count[side_index],
3248 &renames->cached_pairs[side_index]);
557ac035 3249 trace2_region_leave("diff", "diffcore_rename", opt->repo);
f78cf976 3250 resolve_diffpair_statuses(&diff_queued_diff);
f39d05ca 3251
8b09a900
EN
3252 if (diff_opts.needed_rename_limit > 0)
3253 renames->redo_after_renames = 0;
f39d05ca
EN
3254 if (diff_opts.needed_rename_limit > renames->needed_limit)
3255 renames->needed_limit = diff_opts.needed_rename_limit;
3256
3257 renames->pairs[side_index] = diff_queued_diff;
3258
3259 diff_opts.output_format = DIFF_FORMAT_NO_OUTPUT;
3260 diff_queued_diff.nr = 0;
3261 diff_queued_diff.queue = NULL;
3262 diff_flush(&diff_opts);
8b09a900
EN
3263
3264 return 1;
e1a124e8
EN
3265}
3266
3267/*
356da0f9
EN
3268 * Get information of all renames which occurred in 'side_pairs', making use
3269 * of any implicit directory renames in side_dir_renames (also making use of
3270 * implicit directory renames rename_exclusions as needed by
3271 * check_for_directory_rename()). Add all (updated) renames into result.
e1a124e8
EN
3272 */
3273static int collect_renames(struct merge_options *opt,
3274 struct diff_queue_struct *result,
fa5e06d6 3275 unsigned side_index,
3ffbe5a2 3276 struct strmap *collisions,
fa5e06d6
EN
3277 struct strmap *dir_renames_for_side,
3278 struct strmap *rename_exclusions)
e1a124e8 3279{
965a7bc2
EN
3280 int i, clean = 1;
3281 struct diff_queue_struct *side_pairs;
3282 struct rename_info *renames = &opt->priv->renames;
3283
3284 side_pairs = &renames->pairs[side_index];
3285
3286 for (i = 0; i < side_pairs->nr; ++i) {
3287 struct diff_filepair *p = side_pairs->queue[i];
fa5e06d6 3288 char *new_path; /* non-NULL only with directory renames */
965a7bc2 3289
fa5e06d6 3290 if (p->status != 'A' && p->status != 'R') {
2734f2e3 3291 possibly_cache_new_pair(renames, p, side_index, NULL);
62a15162 3292 pool_diff_free_filepair(&opt->priv->pool, p);
965a7bc2
EN
3293 continue;
3294 }
3295
fa5e06d6
EN
3296 new_path = check_for_directory_rename(opt, p->two->path,
3297 side_index,
3298 dir_renames_for_side,
3299 rename_exclusions,
3ffbe5a2 3300 collisions,
fa5e06d6
EN
3301 &clean);
3302
2734f2e3 3303 possibly_cache_new_pair(renames, p, side_index, new_path);
fa5e06d6 3304 if (p->status != 'R' && !new_path) {
62a15162 3305 pool_diff_free_filepair(&opt->priv->pool, p);
fa5e06d6
EN
3306 continue;
3307 }
3308
3309 if (new_path)
3310 apply_directory_rename_modifications(opt, p, new_path);
3311
965a7bc2
EN
3312 /*
3313 * p->score comes back from diffcore_rename_extended() with
3314 * the similarity of the renamed file. The similarity is
3315 * was used to determine that the two files were related
3316 * and are a rename, which we have already used, but beyond
3317 * that we have no use for the similarity. So p->score is
3318 * now irrelevant. However, process_renames() will need to
3319 * know which side of the merge this rename was associated
3320 * with, so overwrite p->score with that value.
3321 */
3322 p->score = side_index;
3323 result->queue[result->nr++] = p;
3324 }
3325
3326 return clean;
e1a124e8
EN
3327}
3328
fce9ffb2 3329static int detect_and_process_renames(struct merge_options *opt)
231e2dd4 3330{
8d60e9d2 3331 struct diff_queue_struct combined = { 0 };
e1a124e8 3332 struct rename_info *renames = &opt->priv->renames;
3ffbe5a2 3333 struct strmap collisions[3];
8d60e9d2 3334 int need_dir_renames, s, i, clean = 1;
8b09a900 3335 unsigned detection_run = 0;
e1a124e8 3336
f89b4f2b
EN
3337 if (!possible_renames(renames))
3338 goto cleanup;
e1a124e8 3339
557ac035 3340 trace2_region_enter("merge", "regular renames", opt->repo);
8b09a900
EN
3341 detection_run |= detect_regular_renames(opt, MERGE_SIDE1);
3342 detection_run |= detect_regular_renames(opt, MERGE_SIDE2);
9ae39fef
EN
3343 if (renames->needed_limit) {
3344 renames->cached_pairs_valid_side = 0;
3345 renames->redo_after_renames = 0;
3346 }
8b09a900
EN
3347 if (renames->redo_after_renames && detection_run) {
3348 int i, side;
3349 struct diff_filepair *p;
3350
3351 /* Cache the renames, we found */
3352 for (side = MERGE_SIDE1; side <= MERGE_SIDE2; side++) {
3353 for (i = 0; i < renames->pairs[side].nr; ++i) {
3354 p = renames->pairs[side].queue[i];
3355 possibly_cache_new_pair(renames, p, side, NULL);
3356 }
3357 }
3358
3359 /* Restart the merge with the cached renames */
3360 renames->redo_after_renames = 2;
3361 trace2_region_leave("merge", "regular renames", opt->repo);
3362 goto cleanup;
3363 }
25e65b6d
EN
3364 use_cached_pairs(opt, &renames->cached_pairs[1], &renames->pairs[1]);
3365 use_cached_pairs(opt, &renames->cached_pairs[2], &renames->pairs[2]);
557ac035 3366 trace2_region_leave("merge", "regular renames", opt->repo);
e1a124e8 3367
557ac035 3368 trace2_region_enter("merge", "directory renames", opt->repo);
112e1112
EN
3369 need_dir_renames =
3370 !opt->priv->call_depth &&
3371 (opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_TRUE ||
3372 opt->detect_directory_renames == MERGE_DIRECTORY_RENAMES_CONFLICT);
3373
3374 if (need_dir_renames) {
3375 get_provisional_directory_renames(opt, MERGE_SIDE1, &clean);
3376 get_provisional_directory_renames(opt, MERGE_SIDE2, &clean);
3377 handle_directory_level_conflicts(opt);
3378 }
3379
e1a124e8
EN
3380 ALLOC_GROW(combined.queue,
3381 renames->pairs[1].nr + renames->pairs[2].nr,
3382 combined.alloc);
3ffbe5a2
EN
3383 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; i++) {
3384 int other_side = 3 - i;
3385 compute_collisions(&collisions[i],
3386 &renames->dir_renames[other_side],
3387 &renames->pairs[i]);
3388 }
fa5e06d6 3389 clean &= collect_renames(opt, &combined, MERGE_SIDE1,
3ffbe5a2 3390 collisions,
fa5e06d6
EN
3391 &renames->dir_renames[2],
3392 &renames->dir_renames[1]);
3393 clean &= collect_renames(opt, &combined, MERGE_SIDE2,
3ffbe5a2 3394 collisions,
fa5e06d6
EN
3395 &renames->dir_renames[1],
3396 &renames->dir_renames[2]);
3ffbe5a2
EN
3397 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; i++)
3398 free_collisions(&collisions[i]);
72b30910 3399 STABLE_QSORT(combined.queue, combined.nr, compare_pairs);
557ac035 3400 trace2_region_leave("merge", "directory renames", opt->repo);
e1a124e8 3401
557ac035 3402 trace2_region_enter("merge", "process renames", opt->repo);
e1a124e8 3403 clean &= process_renames(opt, &combined);
557ac035 3404 trace2_region_leave("merge", "process renames", opt->repo);
e1a124e8 3405
f89b4f2b
EN
3406 goto simple_cleanup; /* collect_renames() handles some of cleanup */
3407
3408cleanup:
3409 /*
3410 * Free now unneeded filepairs, which would have been handled
3411 * in collect_renames() normally but we skipped that code.
3412 */
3413 for (s = MERGE_SIDE1; s <= MERGE_SIDE2; s++) {
3414 struct diff_queue_struct *side_pairs;
3415 int i;
3416
3417 side_pairs = &renames->pairs[s];
3418 for (i = 0; i < side_pairs->nr; ++i) {
3419 struct diff_filepair *p = side_pairs->queue[i];
62a15162 3420 pool_diff_free_filepair(&opt->priv->pool, p);
f89b4f2b
EN
3421 }
3422 }
3423
3424simple_cleanup:
e1a124e8
EN
3425 /* Free memory for renames->pairs[] and combined */
3426 for (s = MERGE_SIDE1; s <= MERGE_SIDE2; s++) {
3427 free(renames->pairs[s].queue);
3428 DIFF_QUEUE_CLEAR(&renames->pairs[s]);
3429 }
8d60e9d2
EN
3430 for (i = 0; i < combined.nr; i++)
3431 pool_diff_free_filepair(&opt->priv->pool, combined.queue[i]);
3432 free(combined.queue);
231e2dd4 3433
231e2dd4
EN
3434 return clean;
3435}
3436
04af1879
EN
3437/*** Function Grouping: functions related to process_entries() ***/
3438
5a3743da 3439static int sort_dirs_next_to_their_children(const char *one, const char *two)
8adffaa8 3440{
5a3743da
EN
3441 unsigned char c1, c2;
3442
3443 /*
3444 * Here we only care that entries for directories appear adjacent
3445 * to and before files underneath the directory. We can achieve
3446 * that by pretending to add a trailing slash to every file and
3447 * then sorting. In other words, we do not want the natural
3448 * sorting of
3449 * foo
3450 * foo.txt
3451 * foo/bar
3452 * Instead, we want "foo" to sort as though it were "foo/", so that
3453 * we instead get
3454 * foo.txt
3455 * foo
3456 * foo/bar
3457 * To achieve this, we basically implement our own strcmp, except that
3458 * if we get to the end of either string instead of comparing NUL to
3459 * another character, we compare '/' to it.
3460 *
3461 * If this unusual "sort as though '/' were appended" perplexes
3462 * you, perhaps it will help to note that this is not the final
3463 * sort. write_tree() will sort again without the trailing slash
3464 * magic, but just on paths immediately under a given tree.
8adffaa8 3465 *
5a3743da
EN
3466 * The reason to not use df_name_compare directly was that it was
3467 * just too expensive (we don't have the string lengths handy), so
3468 * it was reimplemented.
8adffaa8 3469 */
5a3743da 3470
8adffaa8 3471 /*
5a3743da
EN
3472 * NOTE: This function will never be called with two equal strings,
3473 * because it is used to sort the keys of a strmap, and strmaps have
3474 * unique keys by construction. That simplifies our c1==c2 handling
3475 * below.
8adffaa8 3476 */
5a3743da
EN
3477
3478 while (*one && (*one == *two)) {
3479 one++;
3480 two++;
3481 }
3482
3483 c1 = *one ? *one : '/';
3484 c2 = *two ? *two : '/';
3485
3486 if (c1 == c2) {
3487 /* Getting here means one is a leading directory of the other */
3488 return (*one) ? 1 : -1;
3489 } else
3490 return c1 - c2;
8adffaa8
EN
3491}
3492
1c9419ae 3493static int read_oid_strbuf(const struct object_id *oid,
3860220b
EN
3494 struct strbuf *dst)
3495{
3496 void *buf;
3497 enum object_type type;
3498 unsigned long size;
bc726bd0 3499 buf = repo_read_object_file(the_repository, oid, &type, &size);
3860220b 3500 if (!buf)
808e83f2 3501 return error(_("cannot read object %s"), oid_to_hex(oid));
3860220b
EN
3502 if (type != OBJ_BLOB) {
3503 free(buf);
808e83f2 3504 return error(_("object %s is not a blob"), oid_to_hex(oid));
3860220b
EN
3505 }
3506 strbuf_attach(dst, buf, size, size + 1);
3507 return 0;
3508}
3509
3510static int blob_unchanged(struct merge_options *opt,
3511 const struct version_info *base,
3512 const struct version_info *side,
3513 const char *path)
3514{
3515 struct strbuf basebuf = STRBUF_INIT;
3516 struct strbuf sidebuf = STRBUF_INIT;
3517 int ret = 0; /* assume changed for safety */
8e978529 3518 struct index_state *idx = &opt->priv->attr_index;
3860220b
EN
3519
3520 if (!idx->initialized)
3521 initialize_attr_index(opt);
3522
3523 if (base->mode != side->mode)
3524 return 0;
3525 if (oideq(&base->oid, &side->oid))
3526 return 1;
3527
1c9419ae
JK
3528 if (read_oid_strbuf(&base->oid, &basebuf) ||
3529 read_oid_strbuf(&side->oid, &sidebuf))
3860220b
EN
3530 goto error_return;
3531 /*
3532 * Note: binary | is used so that both renormalizations are
3533 * performed. Comparison can be skipped if both files are
3534 * unchanged since their sha1s have already been compared.
3535 */
3536 if (renormalize_buffer(idx, path, basebuf.buf, basebuf.len, &basebuf) |
3537 renormalize_buffer(idx, path, sidebuf.buf, sidebuf.len, &sidebuf))
3538 ret = (basebuf.len == sidebuf.len &&
3539 !memcmp(basebuf.buf, sidebuf.buf, basebuf.len));
3540
3541error_return:
3542 strbuf_release(&basebuf);
3543 strbuf_release(&sidebuf);
3544 return ret;
3545}
3546
a9945bba 3547struct directory_versions {
bb470f4e
EN
3548 /*
3549 * versions: list of (basename -> version_info)
3550 *
3551 * The basenames are in reverse lexicographic order of full pathnames,
3552 * as processed in process_entries(). This puts all entries within
3553 * a directory together, and covers the directory itself after
3554 * everything within it, allowing us to write subtrees before needing
3555 * to record information for the tree itself.
3556 */
a9945bba 3557 struct string_list versions;
bb470f4e
EN
3558
3559 /*
3560 * offsets: list of (full relative path directories -> integer offsets)
3561 *
3562 * Since versions contains basenames from files in multiple different
3563 * directories, we need to know which entries in versions correspond
3564 * to which directories. Values of e.g.
3565 * "" 0
3566 * src 2
3567 * src/moduleA 5
3568 * Would mean that entries 0-1 of versions are files in the toplevel
3569 * directory, entries 2-4 are files under src/, and the remaining
3570 * entries starting at index 5 are files under src/moduleA/.
3571 */
3572 struct string_list offsets;
3573
3574 /*
3575 * last_directory: directory that previously processed file found in
3576 *
3577 * last_directory starts NULL, but records the directory in which the
3578 * previous file was found within. As soon as
3579 * directory(current_file) != last_directory
3580 * then we need to start updating accounting in versions & offsets.
3581 * Note that last_directory is always the last path in "offsets" (or
3582 * NULL if "offsets" is empty) so this exists just for quick access.
3583 */
3584 const char *last_directory;
3585
3586 /* last_directory_len: cached computation of strlen(last_directory) */
3587 unsigned last_directory_len;
a9945bba
EN
3588};
3589
ee4012dc
EN
3590static int tree_entry_order(const void *a_, const void *b_)
3591{
3592 const struct string_list_item *a = a_;
3593 const struct string_list_item *b = b_;
3594
3595 const struct merged_info *ami = a->util;
3596 const struct merged_info *bmi = b->util;
3597 return base_name_compare(a->string, strlen(a->string), ami->result.mode,
3598 b->string, strlen(b->string), bmi->result.mode);
3599}
3600
0b55d930
JS
3601static int write_tree(struct object_id *result_oid,
3602 struct string_list *versions,
3603 unsigned int offset,
3604 size_t hash_size)
ee4012dc
EN
3605{
3606 size_t maxlen = 0, extra;
c1ea48a8 3607 unsigned int nr;
ee4012dc 3608 struct strbuf buf = STRBUF_INIT;
0b55d930 3609 int i, ret = 0;
ee4012dc 3610
c1ea48a8
AH
3611 assert(offset <= versions->nr);
3612 nr = versions->nr - offset;
3613 if (versions->nr)
257ae76b 3614 /* No need for STABLE_QSORT -- filenames must be unique */
c1ea48a8 3615 QSORT(versions->items + offset, nr, tree_entry_order);
ee4012dc
EN
3616
3617 /* Pre-allocate some space in buf */
3618 extra = hash_size + 8; /* 8: 6 for mode, 1 for space, 1 for NUL char */
3619 for (i = 0; i < nr; i++) {
3620 maxlen += strlen(versions->items[offset+i].string) + extra;
3621 }
3622 strbuf_grow(&buf, maxlen);
3623
3624 /* Write each entry out to buf */
3625 for (i = 0; i < nr; i++) {
3626 struct merged_info *mi = versions->items[offset+i].util;
3627 struct version_info *ri = &mi->result;
3628 strbuf_addf(&buf, "%o %s%c",
3629 ri->mode,
3630 versions->items[offset+i].string, '\0');
3631 strbuf_add(&buf, ri->oid.hash, hash_size);
3632 }
3633
3634 /* Write this object file out, and record in result_oid */
0b55d930
JS
3635 if (write_object_file(buf.buf, buf.len, OBJ_TREE, result_oid))
3636 ret = -1;
ee4012dc 3637 strbuf_release(&buf);
0b55d930 3638 return ret;
ee4012dc
EN
3639}
3640
a9945bba
EN
3641static void record_entry_for_tree(struct directory_versions *dir_metadata,
3642 const char *path,
3643 struct merged_info *mi)
3644{
3645 const char *basename;
3646
3647 if (mi->is_null)
3648 /* nothing to record */
3649 return;
3650
3651 basename = path + mi->basename_offset;
3652 assert(strchr(basename, '/') == NULL);
3653 string_list_append(&dir_metadata->versions,
3654 basename)->util = &mi->result;
3655}
3656
0b55d930
JS
3657static int write_completed_directory(struct merge_options *opt,
3658 const char *new_directory_name,
3659 struct directory_versions *info)
bb470f4e
EN
3660{
3661 const char *prev_dir;
3662 struct merged_info *dir_info = NULL;
0b55d930 3663 unsigned int offset, ret = 0;
bb470f4e
EN
3664
3665 /*
3666 * Some explanation of info->versions and info->offsets...
3667 *
3668 * process_entries() iterates over all relevant files AND
3669 * directories in reverse lexicographic order, and calls this
3670 * function. Thus, an example of the paths that process_entries()
3671 * could operate on (along with the directories for those paths
3672 * being shown) is:
3673 *
3674 * xtract.c ""
3675 * tokens.txt ""
3676 * src/moduleB/umm.c src/moduleB
3677 * src/moduleB/stuff.h src/moduleB
3678 * src/moduleB/baz.c src/moduleB
3679 * src/moduleB src
3680 * src/moduleA/foo.c src/moduleA
3681 * src/moduleA/bar.c src/moduleA
3682 * src/moduleA src
3683 * src ""
3684 * Makefile ""
3685 *
3686 * info->versions:
3687 *
3688 * always contains the unprocessed entries and their
3689 * version_info information. For example, after the first five
3690 * entries above, info->versions would be:
3691 *
3692 * xtract.c <xtract.c's version_info>
3693 * token.txt <token.txt's version_info>
3694 * umm.c <src/moduleB/umm.c's version_info>
3695 * stuff.h <src/moduleB/stuff.h's version_info>
3696 * baz.c <src/moduleB/baz.c's version_info>
3697 *
3698 * Once a subdirectory is completed we remove the entries in
3699 * that subdirectory from info->versions, writing it as a tree
3700 * (write_tree()). Thus, as soon as we get to src/moduleB,
3701 * info->versions would be updated to
3702 *
3703 * xtract.c <xtract.c's version_info>
3704 * token.txt <token.txt's version_info>
3705 * moduleB <src/moduleB's version_info>
3706 *
3707 * info->offsets:
3708 *
3709 * helps us track which entries in info->versions correspond to
3710 * which directories. When we are N directories deep (e.g. 4
3711 * for src/modA/submod/subdir/), we have up to N+1 unprocessed
3712 * directories (+1 because of toplevel dir). Corresponding to
3713 * the info->versions example above, after processing five entries
3714 * info->offsets will be:
3715 *
3716 * "" 0
3717 * src/moduleB 2
3718 *
3719 * which is used to know that xtract.c & token.txt are from the
3720 * toplevel dirctory, while umm.c & stuff.h & baz.c are from the
3721 * src/moduleB directory. Again, following the example above,
3722 * once we need to process src/moduleB, then info->offsets is
3723 * updated to
3724 *
3725 * "" 0
3726 * src 2
3727 *
3728 * which says that moduleB (and only moduleB so far) is in the
3729 * src directory.
3730 *
3731 * One unique thing to note about info->offsets here is that
3732 * "src" was not added to info->offsets until there was a path
3733 * (a file OR directory) immediately below src/ that got
3734 * processed.
3735 *
3736 * Since process_entry() just appends new entries to info->versions,
3737 * write_completed_directory() only needs to do work if the next path
3738 * is in a directory that is different than the last directory found
3739 * in info->offsets.
3740 */
3741
3742 /*
3743 * If we are working with the same directory as the last entry, there
3744 * is no work to do. (See comments above the directory_name member of
3745 * struct merged_info for why we can use pointer comparison instead of
3746 * strcmp here.)
3747 */
3748 if (new_directory_name == info->last_directory)
0b55d930 3749 return 0;
bb470f4e
EN
3750
3751 /*
3752 * If we are just starting (last_directory is NULL), or last_directory
3753 * is a prefix of the current directory, then we can just update
3754 * info->offsets to record the offset where we started this directory
3755 * and update last_directory to have quick access to it.
3756 */
3757 if (info->last_directory == NULL ||
3758 !strncmp(new_directory_name, info->last_directory,
3759 info->last_directory_len)) {
3760 uintptr_t offset = info->versions.nr;
3761
3762 info->last_directory = new_directory_name;
3763 info->last_directory_len = strlen(info->last_directory);
3764 /*
3765 * Record the offset into info->versions where we will
3766 * start recording basenames of paths found within
3767 * new_directory_name.
3768 */
3769 string_list_append(&info->offsets,
3770 info->last_directory)->util = (void*)offset;
0b55d930 3771 return 0;
bb470f4e
EN
3772 }
3773
3774 /*
3775 * The next entry that will be processed will be within
3776 * new_directory_name. Since at this point we know that
3777 * new_directory_name is within a different directory than
3778 * info->last_directory, we have all entries for info->last_directory
3779 * in info->versions and we need to create a tree object for them.
3780 */
3781 dir_info = strmap_get(&opt->priv->paths, info->last_directory);
3782 assert(dir_info);
3783 offset = (uintptr_t)info->offsets.items[info->offsets.nr-1].util;
3784 if (offset == info->versions.nr) {
3785 /*
3786 * Actually, we don't need to create a tree object in this
3787 * case. Whenever all files within a directory disappear
3788 * during the merge (e.g. unmodified on one side and
3789 * deleted on the other, or files were renamed elsewhere),
3790 * then we get here and the directory itself needs to be
3791 * omitted from its parent tree as well.
3792 */
3793 dir_info->is_null = 1;
3794 } else {
3795 /*
3796 * Write out the tree to the git object directory, and also
3797 * record the mode and oid in dir_info->result.
3798 */
3799 dir_info->is_null = 0;
3800 dir_info->result.mode = S_IFDIR;
0b55d930
JS
3801 if (write_tree(&dir_info->result.oid, &info->versions, offset,
3802 opt->repo->hash_algo->rawsz) < 0)
3803 ret = -1;
bb470f4e
EN
3804 }
3805
3806 /*
3807 * We've now used several entries from info->versions and one entry
3808 * from info->offsets, so we get rid of those values.
3809 */
3810 info->offsets.nr--;
3811 info->versions.nr = offset;
3812
3813 /*
3814 * Now we've taken care of the completed directory, but we need to
3815 * prepare things since future entries will be in
3816 * new_directory_name. (In particular, process_entry() will be
3817 * appending new entries to info->versions.) So, we need to make
3818 * sure new_directory_name is the last entry in info->offsets.
3819 */
3820 prev_dir = info->offsets.nr == 0 ? NULL :
3821 info->offsets.items[info->offsets.nr-1].string;
3822 if (new_directory_name != prev_dir) {
3823 uintptr_t c = info->versions.nr;
3824 string_list_append(&info->offsets,
3825 new_directory_name)->util = (void*)c;
3826 }
3827
3828 /* And, of course, we need to update last_directory to match. */
3829 info->last_directory = new_directory_name;
3830 info->last_directory_len = strlen(info->last_directory);
0b55d930
JS
3831
3832 return ret;
bb470f4e
EN
3833}
3834
6a02dd90 3835/* Per entry merge function */
92481d1b
JS
3836static int process_entry(struct merge_options *opt,
3837 const char *path,
3838 struct conflict_info *ci,
3839 struct directory_versions *dir_metadata)
6a02dd90 3840{
23366d2a
EN
3841 int df_file_index = 0;
3842
6a02dd90
EN
3843 VERIFY_CI(ci);
3844 assert(ci->filemask >= 0 && ci->filemask <= 7);
3845 /* ci->match_mask == 7 was handled in collect_merge_info_callback() */
3846 assert(ci->match_mask == 0 || ci->match_mask == 3 ||
3847 ci->match_mask == 5 || ci->match_mask == 6);
3848
a9945bba
EN
3849 if (ci->dirmask) {
3850 record_entry_for_tree(dir_metadata, path, &ci->merged);
3851 if (ci->filemask == 0)
3852 /* nothing else to handle */
92481d1b 3853 return 0;
a9945bba
EN
3854 assert(ci->df_conflict);
3855 }
3856
0ccfa4e5
EN
3857 if (ci->df_conflict && ci->merged.result.mode == 0) {
3858 int i;
3859
3860 /*
3861 * directory no longer in the way, but we do have a file we
3862 * need to place here so we need to clean away the "directory
3863 * merges to nothing" result.
3864 */
3865 ci->df_conflict = 0;
3866 assert(ci->filemask != 0);
3867 ci->merged.clean = 0;
3868 ci->merged.is_null = 0;
3869 /* and we want to zero out any directory-related entries */
3870 ci->match_mask = (ci->match_mask & ~ci->dirmask);
3871 ci->dirmask = 0;
3872 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
3873 if (ci->filemask & (1 << i))
3874 continue;
3875 ci->stages[i].mode = 0;
14228447 3876 oidcpy(&ci->stages[i].oid, null_oid());
0ccfa4e5
EN
3877 }
3878 } else if (ci->df_conflict && ci->merged.result.mode != 0) {
23366d2a
EN
3879 /*
3880 * This started out as a D/F conflict, and the entries in
3881 * the competing directory were not removed by the merge as
3882 * evidenced by write_completed_directory() writing a value
3883 * to ci->merged.result.mode.
3884 */
3885 struct conflict_info *new_ci;
3886 const char *branch;
3887 const char *old_path = path;
3888 int i;
3889
3890 assert(ci->merged.result.mode == S_IFDIR);
3891
3892 /*
3893 * If filemask is 1, we can just ignore the file as having
3894 * been deleted on both sides. We do not want to overwrite
3895 * ci->merged.result, since it stores the tree for all the
3896 * files under it.
3897 */
3898 if (ci->filemask == 1) {
3899 ci->filemask = 0;
92481d1b 3900 return 0;
23366d2a
EN
3901 }
3902
3903 /*
3904 * This file still exists on at least one side, and we want
3905 * the directory to remain here, so we need to move this
3906 * path to some new location.
3907 */
62a15162 3908 new_ci = mem_pool_calloc(&opt->priv->pool, 1, sizeof(*new_ci));
6697ee01 3909
23366d2a
EN
3910 /* We don't really want new_ci->merged.result copied, but it'll
3911 * be overwritten below so it doesn't matter. We also don't
3912 * want any directory mode/oid values copied, but we'll zero
3913 * those out immediately. We do want the rest of ci copied.
3914 */
3915 memcpy(new_ci, ci, sizeof(*ci));
3916 new_ci->match_mask = (new_ci->match_mask & ~new_ci->dirmask);
3917 new_ci->dirmask = 0;
3918 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
3919 if (new_ci->filemask & (1 << i))
3920 continue;
3921 /* zero out any entries related to directories */
3922 new_ci->stages[i].mode = 0;
14228447 3923 oidcpy(&new_ci->stages[i].oid, null_oid());
23366d2a
EN
3924 }
3925
3926 /*
3927 * Find out which side this file came from; note that we
3928 * cannot just use ci->filemask, because renames could cause
3929 * the filemask to go back to 7. So we use dirmask, then
3930 * pick the opposite side's index.
3931 */
3932 df_file_index = (ci->dirmask & (1 << 1)) ? 2 : 1;
3933 branch = (df_file_index == 1) ? opt->branch1 : opt->branch2;
81afc794 3934 path = unique_path(opt, path, branch);
23366d2a
EN
3935 strmap_put(&opt->priv->paths, path, new_ci);
3936
cb260775
EN
3937 path_msg(opt, CONFLICT_FILE_DIRECTORY, 0,
3938 path, old_path, NULL, NULL,
23366d2a
EN
3939 _("CONFLICT (file/directory): directory in the way "
3940 "of %s from %s; moving it to %s instead."),
3941 old_path, branch, path);
3942
3943 /*
3944 * Zero out the filemask for the old ci. At this point, ci
3945 * was just an entry for a directory, so we don't need to
3946 * do anything more with it.
3947 */
3948 ci->filemask = 0;
3949
3950 /*
3951 * Now note that we're working on the new entry (path was
3952 * updated above.
3953 */
3954 ci = new_ci;
6a02dd90
EN
3955 }
3956
3957 /*
3958 * NOTE: Below there is a long switch-like if-elseif-elseif... block
3959 * which the code goes through even for the df_conflict cases
23366d2a 3960 * above.
6a02dd90
EN
3961 */
3962 if (ci->match_mask) {
a492d533 3963 ci->merged.clean = !ci->df_conflict && !ci->path_conflict;
6a02dd90
EN
3964 if (ci->match_mask == 6) {
3965 /* stages[1] == stages[2] */
3966 ci->merged.result.mode = ci->stages[1].mode;
3967 oidcpy(&ci->merged.result.oid, &ci->stages[1].oid);
3968 } else {
3969 /* determine the mask of the side that didn't match */
3970 unsigned int othermask = 7 & ~ci->match_mask;
3971 int side = (othermask == 4) ? 2 : 1;
3972
3973 ci->merged.result.mode = ci->stages[side].mode;
3974 ci->merged.is_null = !ci->merged.result.mode;
a492d533
EN
3975 if (ci->merged.is_null)
3976 ci->merged.clean = 1;
6a02dd90
EN
3977 oidcpy(&ci->merged.result.oid, &ci->stages[side].oid);
3978
3979 assert(othermask == 2 || othermask == 4);
3980 assert(ci->merged.is_null ==
3981 (ci->filemask == ci->match_mask));
3982 }
3983 } else if (ci->filemask >= 6 &&
3984 (S_IFMT & ci->stages[1].mode) !=
3985 (S_IFMT & ci->stages[2].mode)) {
4ef88fc3
EN
3986 /* Two different items from (file/submodule/symlink) */
3987 if (opt->priv->call_depth) {
3988 /* Just use the version from the merge base */
3989 ci->merged.clean = 0;
3990 oidcpy(&ci->merged.result.oid, &ci->stages[0].oid);
3991 ci->merged.result.mode = ci->stages[0].mode;
3992 ci->merged.is_null = (ci->merged.result.mode == 0);
3993 } else {
3994 /* Handle by renaming one or both to separate paths. */
3995 unsigned o_mode = ci->stages[0].mode;
3996 unsigned a_mode = ci->stages[1].mode;
3997 unsigned b_mode = ci->stages[2].mode;
3998 struct conflict_info *new_ci;
3999 const char *a_path = NULL, *b_path = NULL;
4000 int rename_a = 0, rename_b = 0;
4001
62a15162
EN
4002 new_ci = mem_pool_alloc(&opt->priv->pool,
4003 sizeof(*new_ci));
4ef88fc3
EN
4004
4005 if (S_ISREG(a_mode))
4006 rename_a = 1;
4007 else if (S_ISREG(b_mode))
4008 rename_b = 1;
4009 else {
4010 rename_a = 1;
4011 rename_b = 1;
4012 }
4013
cb260775
EN
4014 if (rename_a)
4015 a_path = unique_path(opt, path, opt->branch1);
4016 if (rename_b)
4017 b_path = unique_path(opt, path, opt->branch2);
4018
0e59f7ad 4019 if (rename_a && rename_b) {
cb260775
EN
4020 path_msg(opt, CONFLICT_DISTINCT_MODES, 0,
4021 path, a_path, b_path, NULL,
0e59f7ad
AH
4022 _("CONFLICT (distinct types): %s had "
4023 "different types on each side; "
4024 "renamed both of them so each can "
4025 "be recorded somewhere."),
4026 path);
4027 } else {
cb260775
EN
4028 path_msg(opt, CONFLICT_DISTINCT_MODES, 0,
4029 path, rename_a ? a_path : b_path,
4030 NULL, NULL,
0e59f7ad
AH
4031 _("CONFLICT (distinct types): %s had "
4032 "different types on each side; "
4033 "renamed one of them so each can be "
4034 "recorded somewhere."),
4035 path);
4036 }
4ef88fc3
EN
4037
4038 ci->merged.clean = 0;
4039 memcpy(new_ci, ci, sizeof(*new_ci));
4040
4041 /* Put b into new_ci, removing a from stages */
4042 new_ci->merged.result.mode = ci->stages[2].mode;
4043 oidcpy(&new_ci->merged.result.oid, &ci->stages[2].oid);
4044 new_ci->stages[1].mode = 0;
14228447 4045 oidcpy(&new_ci->stages[1].oid, null_oid());
4ef88fc3
EN
4046 new_ci->filemask = 5;
4047 if ((S_IFMT & b_mode) != (S_IFMT & o_mode)) {
4048 new_ci->stages[0].mode = 0;
14228447 4049 oidcpy(&new_ci->stages[0].oid, null_oid());
4ef88fc3
EN
4050 new_ci->filemask = 4;
4051 }
4052
4053 /* Leave only a in ci, fixing stages. */
4054 ci->merged.result.mode = ci->stages[1].mode;
4055 oidcpy(&ci->merged.result.oid, &ci->stages[1].oid);
4056 ci->stages[2].mode = 0;
14228447 4057 oidcpy(&ci->stages[2].oid, null_oid());
4ef88fc3
EN
4058 ci->filemask = 3;
4059 if ((S_IFMT & a_mode) != (S_IFMT & o_mode)) {
4060 ci->stages[0].mode = 0;
14228447 4061 oidcpy(&ci->stages[0].oid, null_oid());
4ef88fc3
EN
4062 ci->filemask = 2;
4063 }
4064
4065 /* Insert entries into opt->priv_paths */
4066 assert(rename_a || rename_b);
cb260775 4067 if (rename_a)
4ef88fc3 4068 strmap_put(&opt->priv->paths, a_path, ci);
4ef88fc3 4069
cb260775 4070 if (!rename_b)
4ef88fc3
EN
4071 b_path = path;
4072 strmap_put(&opt->priv->paths, b_path, new_ci);
4073
62a15162 4074 if (rename_a && rename_b)
4ef88fc3 4075 strmap_remove(&opt->priv->paths, path, 0);
4ef88fc3
EN
4076
4077 /*
4078 * Do special handling for b_path since process_entry()
4079 * won't be called on it specially.
4080 */
4081 strmap_put(&opt->priv->conflicted, b_path, new_ci);
4082 record_entry_for_tree(dir_metadata, b_path,
4083 &new_ci->merged);
4084
4085 /*
4086 * Remaining code for processing this entry should
4087 * think in terms of processing a_path.
4088 */
4089 if (a_path)
4090 path = a_path;
4091 }
6a02dd90 4092 } else if (ci->filemask >= 6) {
991bbdca
EN
4093 /* Need a two-way or three-way content merge */
4094 struct version_info merged_file;
92481d1b 4095 int clean_merge;
991bbdca
EN
4096 struct version_info *o = &ci->stages[0];
4097 struct version_info *a = &ci->stages[1];
4098 struct version_info *b = &ci->stages[2];
4099
4100 clean_merge = handle_content_merge(opt, path, o, a, b,
4101 ci->pathnames,
4102 opt->priv->call_depth * 2,
4103 &merged_file);
92481d1b
JS
4104 if (clean_merge < 0)
4105 return -1;
991bbdca
EN
4106 ci->merged.clean = clean_merge &&
4107 !ci->df_conflict && !ci->path_conflict;
4108 ci->merged.result.mode = merged_file.mode;
4109 ci->merged.is_null = (merged_file.mode == 0);
4110 oidcpy(&ci->merged.result.oid, &merged_file.oid);
4111 if (clean_merge && ci->df_conflict) {
4112 assert(df_file_index == 1 || df_file_index == 2);
4113 ci->filemask = 1 << df_file_index;
4114 ci->stages[df_file_index].mode = merged_file.mode;
4115 oidcpy(&ci->stages[df_file_index].oid, &merged_file.oid);
4116 }
4117 if (!clean_merge) {
4118 const char *reason = _("content");
4119 if (ci->filemask == 6)
4120 reason = _("add/add");
4121 if (S_ISGITLINK(merged_file.mode))
4122 reason = _("submodule");
cb260775
EN
4123 path_msg(opt, CONFLICT_CONTENTS, 0,
4124 path, NULL, NULL, NULL,
991bbdca
EN
4125 _("CONFLICT (%s): Merge conflict in %s"),
4126 reason, path);
4127 }
6a02dd90
EN
4128 } else if (ci->filemask == 3 || ci->filemask == 5) {
4129 /* Modify/delete */
c5a6f655
EN
4130 const char *modify_branch, *delete_branch;
4131 int side = (ci->filemask == 5) ? 2 : 1;
4132 int index = opt->priv->call_depth ? 0 : side;
4133
4134 ci->merged.result.mode = ci->stages[index].mode;
4135 oidcpy(&ci->merged.result.oid, &ci->stages[index].oid);
4136 ci->merged.clean = 0;
4137
4138 modify_branch = (side == 1) ? opt->branch1 : opt->branch2;
4139 delete_branch = (side == 1) ? opt->branch2 : opt->branch1;
4140
3860220b
EN
4141 if (opt->renormalize &&
4142 blob_unchanged(opt, &ci->stages[0], &ci->stages[side],
4143 path)) {
d30126c2
EN
4144 if (!ci->path_conflict) {
4145 /*
4146 * Blob unchanged after renormalization, so
4147 * there's no modify/delete conflict after all;
4148 * we can just remove the file.
4149 */
4150 ci->merged.is_null = 1;
4151 ci->merged.clean = 1;
4152 /*
4153 * file goes away => even if there was a
4154 * directory/file conflict there isn't one now.
4155 */
4156 ci->df_conflict = 0;
4157 } else {
4158 /* rename/delete, so conflict remains */
4159 }
3860220b
EN
4160 } else if (ci->path_conflict &&
4161 oideq(&ci->stages[0].oid, &ci->stages[side].oid)) {
2e91ddd2
EN
4162 /*
4163 * This came from a rename/delete; no action to take,
4164 * but avoid printing "modify/delete" conflict notice
4165 * since the contents were not modified.
4166 */
4167 } else {
cb260775
EN
4168 path_msg(opt, CONFLICT_MODIFY_DELETE, 0,
4169 path, NULL, NULL, NULL,
2e91ddd2
EN
4170 _("CONFLICT (modify/delete): %s deleted in %s "
4171 "and modified in %s. Version %s of %s left "
4172 "in tree."),
4173 path, delete_branch, modify_branch,
4174 modify_branch, path);
4175 }
6a02dd90
EN
4176 } else if (ci->filemask == 2 || ci->filemask == 4) {
4177 /* Added on one side */
4178 int side = (ci->filemask == 4) ? 2 : 1;
4179 ci->merged.result.mode = ci->stages[side].mode;
4180 oidcpy(&ci->merged.result.oid, &ci->stages[side].oid);
53e88a03 4181 ci->merged.clean = !ci->df_conflict && !ci->path_conflict;
6a02dd90
EN
4182 } else if (ci->filemask == 1) {
4183 /* Deleted on both sides */
4184 ci->merged.is_null = 1;
4185 ci->merged.result.mode = 0;
14228447 4186 oidcpy(&ci->merged.result.oid, null_oid());
a492d533 4187 assert(!ci->df_conflict);
53e88a03 4188 ci->merged.clean = !ci->path_conflict;
6a02dd90
EN
4189 }
4190
4191 /*
4192 * If still conflicted, record it separately. This allows us to later
4193 * iterate over just conflicted entries when updating the index instead
4194 * of iterating over all entries.
4195 */
4196 if (!ci->merged.clean)
4197 strmap_put(&opt->priv->conflicted, path, ci);
ef68c3d8
EN
4198
4199 /* Record metadata for ci->merged in dir_metadata */
a9945bba 4200 record_entry_for_tree(dir_metadata, path, &ci->merged);
92481d1b 4201 return 0;
6a02dd90
EN
4202}
4203
2bff554b
EN
4204static void prefetch_for_content_merges(struct merge_options *opt,
4205 struct string_list *plist)
4206{
4207 struct string_list_item *e;
4208 struct oid_array to_fetch = OID_ARRAY_INIT;
4209
a5183d76 4210 if (opt->repo != the_repository || !repo_has_promisor_remote(the_repository))
2bff554b
EN
4211 return;
4212
4213 for (e = &plist->items[plist->nr-1]; e >= plist->items; --e) {
4214 /* char *path = e->string; */
4215 struct conflict_info *ci = e->util;
4216 int i;
4217
4218 /* Ignore clean entries */
4219 if (ci->merged.clean)
4220 continue;
4221
4222 /* Ignore entries that don't need a content merge */
4223 if (ci->match_mask || ci->filemask < 6 ||
4224 !S_ISREG(ci->stages[1].mode) ||
4225 !S_ISREG(ci->stages[2].mode) ||
4226 oideq(&ci->stages[1].oid, &ci->stages[2].oid))
4227 continue;
4228
4229 /* Also don't need content merge if base matches either side */
4230 if (ci->filemask == 7 &&
4231 S_ISREG(ci->stages[0].mode) &&
4232 (oideq(&ci->stages[0].oid, &ci->stages[1].oid) ||
4233 oideq(&ci->stages[0].oid, &ci->stages[2].oid)))
4234 continue;
4235
4236 for (i = 0; i < 3; i++) {
4237 unsigned side_mask = (1 << i);
4238 struct version_info *vi = &ci->stages[i];
4239
4240 if ((ci->filemask & side_mask) &&
4241 S_ISREG(vi->mode) &&
4242 oid_object_info_extended(opt->repo, &vi->oid, NULL,
4243 OBJECT_INFO_FOR_PREFETCH))
4244 oid_array_append(&to_fetch, &vi->oid);
4245 }
4246 }
4247
4248 promisor_remote_get_direct(opt->repo, to_fetch.oid, to_fetch.nr);
4249 oid_array_clear(&to_fetch);
4250}
4251
0b55d930
JS
4252static int process_entries(struct merge_options *opt,
4253 struct object_id *result_oid)
231e2dd4 4254{
6a02dd90
EN
4255 struct hashmap_iter iter;
4256 struct strmap_entry *e;
8adffaa8
EN
4257 struct string_list plist = STRING_LIST_INIT_NODUP;
4258 struct string_list_item *entry;
bb470f4e
EN
4259 struct directory_versions dir_metadata = { STRING_LIST_INIT_NODUP,
4260 STRING_LIST_INIT_NODUP,
4261 NULL, 0 };
0b55d930 4262 int ret = 0;
6a02dd90 4263
557ac035 4264 trace2_region_enter("merge", "process_entries setup", opt->repo);
6a02dd90
EN
4265 if (strmap_empty(&opt->priv->paths)) {
4266 oidcpy(result_oid, opt->repo->hash_algo->empty_tree);
0b55d930 4267 return 0;
6a02dd90
EN
4268 }
4269
8adffaa8 4270 /* Hack to pre-allocate plist to the desired size */
557ac035 4271 trace2_region_enter("merge", "plist grow", opt->repo);
8adffaa8 4272 ALLOC_GROW(plist.items, strmap_get_size(&opt->priv->paths), plist.alloc);
557ac035 4273 trace2_region_leave("merge", "plist grow", opt->repo);
8adffaa8
EN
4274
4275 /* Put every entry from paths into plist, then sort */
557ac035 4276 trace2_region_enter("merge", "plist copy", opt->repo);
6a02dd90 4277 strmap_for_each_entry(&opt->priv->paths, &iter, e) {
8adffaa8
EN
4278 string_list_append(&plist, e->key)->util = e->value;
4279 }
557ac035
EN
4280 trace2_region_leave("merge", "plist copy", opt->repo);
4281
4282 trace2_region_enter("merge", "plist special sort", opt->repo);
5a3743da 4283 plist.cmp = sort_dirs_next_to_their_children;
8adffaa8 4284 string_list_sort(&plist);
557ac035
EN
4285 trace2_region_leave("merge", "plist special sort", opt->repo);
4286
4287 trace2_region_leave("merge", "process_entries setup", opt->repo);
8adffaa8
EN
4288
4289 /*
4290 * Iterate over the items in reverse order, so we can handle paths
4291 * below a directory before needing to handle the directory itself.
bb470f4e
EN
4292 *
4293 * This allows us to write subtrees before we need to write trees,
4294 * and it also enables sane handling of directory/file conflicts
4295 * (because it allows us to know whether the directory is still in
4296 * the way when it is time to process the file at the same path).
8adffaa8 4297 */
557ac035 4298 trace2_region_enter("merge", "processing", opt->repo);
2bff554b 4299 prefetch_for_content_merges(opt, &plist);
8adffaa8
EN
4300 for (entry = &plist.items[plist.nr-1]; entry >= plist.items; --entry) {
4301 char *path = entry->string;
6a02dd90
EN
4302 /*
4303 * NOTE: mi may actually be a pointer to a conflict_info, but
4304 * we have to check mi->clean first to see if it's safe to
4305 * reassign to such a pointer type.
4306 */
8adffaa8 4307 struct merged_info *mi = entry->util;
6a02dd90 4308
0b55d930
JS
4309 if (write_completed_directory(opt, mi->directory_name,
4310 &dir_metadata) < 0) {
4311 ret = -1;
4312 goto cleanup;
4313 }
a9945bba
EN
4314 if (mi->clean)
4315 record_entry_for_tree(&dir_metadata, path, mi);
4316 else {
8adffaa8 4317 struct conflict_info *ci = (struct conflict_info *)mi;
92481d1b
JS
4318 if (process_entry(opt, path, ci, &dir_metadata) < 0) {
4319 ret = -1;
4320 goto cleanup;
4321 };
8adffaa8 4322 }
6a02dd90 4323 }
557ac035 4324 trace2_region_leave("merge", "processing", opt->repo);
6a02dd90 4325
557ac035 4326 trace2_region_enter("merge", "process_entries cleanup", opt->repo);
bb470f4e
EN
4327 if (dir_metadata.offsets.nr != 1 ||
4328 (uintptr_t)dir_metadata.offsets.items[0].util != 0) {
99d60545
ÆAB
4329 printf("dir_metadata.offsets.nr = %"PRIuMAX" (should be 1)\n",
4330 (uintmax_t)dir_metadata.offsets.nr);
bb470f4e
EN
4331 printf("dir_metadata.offsets.items[0].util = %u (should be 0)\n",
4332 (unsigned)(uintptr_t)dir_metadata.offsets.items[0].util);
4333 fflush(stdout);
4334 BUG("dir_metadata accounting completely off; shouldn't happen");
4335 }
0b55d930
JS
4336 if (write_tree(result_oid, &dir_metadata.versions, 0,
4337 opt->repo->hash_algo->rawsz) < 0)
4338 ret = -1;
4339cleanup:
8adffaa8 4340 string_list_clear(&plist, 0);
a9945bba 4341 string_list_clear(&dir_metadata.versions, 0);
bb470f4e 4342 string_list_clear(&dir_metadata.offsets, 0);
557ac035 4343 trace2_region_leave("merge", "process_entries cleanup", opt->repo);
0b55d930
JS
4344
4345 return ret;
231e2dd4
EN
4346}
4347
04af1879
EN
4348/*** Function Grouping: functions related to merge_switch_to_result() ***/
4349
9fefce68
EN
4350static int checkout(struct merge_options *opt,
4351 struct tree *prev,
4352 struct tree *next)
4353{
6681ce5c
EN
4354 /* Switch the index/working copy from old to new */
4355 int ret;
4356 struct tree_desc trees[2];
4357 struct unpack_trees_options unpack_opts;
4358
4359 memset(&unpack_opts, 0, sizeof(unpack_opts));
4360 unpack_opts.head_idx = -1;
4361 unpack_opts.src_index = opt->repo->index;
4362 unpack_opts.dst_index = opt->repo->index;
4363
4364 setup_unpack_trees_porcelain(&unpack_opts, "merge");
4365
4366 /*
4367 * NOTE: if this were just "git checkout" code, we would probably
4368 * read or refresh the cache and check for a conflicted index, but
4369 * builtin/merge.c or sequencer.c really needs to read the index
4370 * and check for conflicted entries before starting merging for a
4371 * good user experience (no sense waiting for merges/rebases before
4372 * erroring out), so there's no reason to duplicate that work here.
4373 */
4374
4375 /* 2-way merge to the new branch */
4376 unpack_opts.update = 1;
4377 unpack_opts.merge = 1;
4378 unpack_opts.quiet = 0; /* FIXME: sequencer might want quiet? */
4379 unpack_opts.verbose_update = (opt->verbosity > 2);
4380 unpack_opts.fn = twoway_merge;
1b5f3733 4381 unpack_opts.preserve_ignored = 0; /* FIXME: !opts->overwrite_ignore */
f30e6c32
JS
4382 if (parse_tree(prev) < 0)
4383 return -1;
6681ce5c 4384 init_tree_desc(&trees[0], prev->buffer, prev->size);
f30e6c32
JS
4385 if (parse_tree(next) < 0)
4386 return -1;
6681ce5c
EN
4387 init_tree_desc(&trees[1], next->buffer, next->size);
4388
4389 ret = unpack_trees(2, trees, &unpack_opts);
4390 clear_unpack_trees_porcelain(&unpack_opts);
6681ce5c 4391 return ret;
9fefce68
EN
4392}
4393
66b209b8 4394static int record_conflicted_index_entries(struct merge_options *opt)
9fefce68 4395{
ef2b3693
EN
4396 struct hashmap_iter iter;
4397 struct strmap_entry *e;
66b209b8
EN
4398 struct index_state *index = opt->repo->index;
4399 struct checkout state = CHECKOUT_INIT;
ef2b3693
EN
4400 int errs = 0;
4401 int original_cache_nr;
4402
66b209b8 4403 if (strmap_empty(&opt->priv->conflicted))
9fefce68
EN
4404 return 0;
4405
a3380639
DS
4406 /*
4407 * We are in a conflicted state. These conflicts might be inside
69576367
DS
4408 * sparse-directory entries, so check if any entries are outside
4409 * of the sparse-checkout cone preemptively.
4410 *
4411 * We set original_cache_nr below, but that might change if
a3380639
DS
4412 * index_name_pos() calls ask for paths within sparse directories.
4413 */
69576367
DS
4414 strmap_for_each_entry(&opt->priv->conflicted, &iter, e) {
4415 if (!path_in_sparse_checkout(e->key, index)) {
4416 ensure_full_index(index);
4417 break;
4418 }
4419 }
a3380639 4420
66b209b8
EN
4421 /* If any entries have skip_worktree set, we'll have to check 'em out */
4422 state.force = 1;
4423 state.quiet = 1;
4424 state.refresh_cache = 1;
4425 state.istate = index;
ef2b3693
EN
4426 original_cache_nr = index->cache_nr;
4427
3584cff7 4428 /* Append every entry from conflicted into index, then sort */
66b209b8 4429 strmap_for_each_entry(&opt->priv->conflicted, &iter, e) {
ef2b3693
EN
4430 const char *path = e->key;
4431 struct conflict_info *ci = e->value;
4432 int pos;
4433 struct cache_entry *ce;
4434 int i;
4435
4436 VERIFY_CI(ci);
4437
4438 /*
4439 * The index will already have a stage=0 entry for this path,
4440 * because we created an as-merged-as-possible version of the
4441 * file and checkout() moved the working copy and index over
4442 * to that version.
4443 *
4444 * However, previous iterations through this loop will have
4445 * added unstaged entries to the end of the cache which
4446 * ignore the standard alphabetical ordering of cache
4447 * entries and break invariants needed for index_name_pos()
4448 * to work. However, we know the entry we want is before
4449 * those appended cache entries, so do a temporary swap on
4450 * cache_nr to only look through entries of interest.
4451 */
4452 SWAP(index->cache_nr, original_cache_nr);
4453 pos = index_name_pos(index, path, strlen(path));
4454 SWAP(index->cache_nr, original_cache_nr);
4455 if (pos < 0) {
4456 if (ci->filemask != 1)
4457 BUG("Conflicted %s but nothing in basic working tree or index; this shouldn't happen", path);
4458 cache_tree_invalidate_path(index, path);
4459 } else {
4460 ce = index->cache[pos];
4461
4462 /*
4463 * Clean paths with CE_SKIP_WORKTREE set will not be
4464 * written to the working tree by the unpack_trees()
4465 * call in checkout(). Our conflicted entries would
4466 * have appeared clean to that code since we ignored
4467 * the higher order stages. Thus, we need override
4468 * the CE_SKIP_WORKTREE bit and manually write those
4469 * files to the working disk here.
ef2b3693 4470 */
ff033db7 4471 if (ce_skip_worktree(ce))
66b209b8 4472 errs |= checkout_entry(ce, &state, NULL, NULL);
ef2b3693
EN
4473
4474 /*
4475 * Mark this cache entry for removal and instead add
4476 * new stage>0 entries corresponding to the
4477 * conflicts. If there are many conflicted entries, we
4478 * want to avoid memmove'ing O(NM) entries by
4479 * inserting the new entries one at a time. So,
4480 * instead, we just add the new cache entries to the
4481 * end (ignoring normal index requirements on sort
4482 * order) and sort the index once we're all done.
4483 */
4484 ce->ce_flags |= CE_REMOVE;
4485 }
4486
4487 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
4488 struct version_info *vi;
4489 if (!(ci->filemask & (1ul << i)))
4490 continue;
4491 vi = &ci->stages[i];
4492 ce = make_cache_entry(index, vi->mode, &vi->oid,
4493 path, i+1, 0);
4494 add_index_entry(index, ce, ADD_CACHE_JUST_APPEND);
4495 }
4496 }
4497
4498 /*
4499 * Remove the unused cache entries (and invalidate the relevant
4500 * cache-trees), then sort the index entries to get the conflicted
4501 * entries we added to the end into their right locations.
4502 */
4503 remove_marked_cache_entries(index, 1);
72b30910
EN
4504 /*
4505 * No need for STABLE_QSORT -- cmp_cache_name_compare sorts primarily
4506 * on filename and secondarily on stage, and (name, stage #) are a
4507 * unique tuple.
4508 */
ef2b3693
EN
4509 QSORT(index->cache, index->cache_nr, cmp_cache_name_compare);
4510
4511 return errs;
9fefce68
EN
4512}
4513
4057523a
CW
4514static void print_submodule_conflict_suggestion(struct string_list *csub) {
4515 struct string_list_item *item;
4516 struct strbuf msg = STRBUF_INIT;
4517 struct strbuf tmp = STRBUF_INIT;
4518 struct strbuf subs = STRBUF_INIT;
4519
4520 if (!csub->nr)
4521 return;
4522
565577ed 4523 strbuf_add_separated_string_list(&subs, " ", csub);
4057523a
CW
4524 for_each_string_list_item(item, csub) {
4525 struct conflicted_submodule_item *util = item->util;
4526
565577ed
EN
4527 /*
4528 * NEEDSWORK: The steps to resolve these errors deserve a more
4529 * detailed explanation than what is currently printed below.
4530 */
4057523a 4531 if (util->flag == CONFLICT_SUBMODULE_NOT_INITIALIZED ||
565577ed
EN
4532 util->flag == CONFLICT_SUBMODULE_HISTORY_NOT_AVAILABLE)
4533 continue;
a5834b77 4534
4057523a 4535 /*
a5834b77
EN
4536 * TRANSLATORS: This is a line of advice to resolve a merge
4537 * conflict in a submodule. The first argument is the submodule
4538 * name, and the second argument is the abbreviated id of the
4539 * commit that needs to be merged. For example:
4540 * - go to submodule (mysubmodule), and either merge commit abc1234"
4057523a 4541 */
a5834b77
EN
4542 strbuf_addf(&tmp, _(" - go to submodule (%s), and either merge commit %s\n"
4543 " or update to an existing commit which has merged those changes\n"),
4544 item->string, util->abbrev);
4057523a 4545 }
a5834b77
EN
4546
4547 /*
4548 * TRANSLATORS: This is a detailed message for resolving submodule
4549 * conflicts. The first argument is string containing one step per
4550 * submodule. The second is a space-separated list of submodule names.
4551 */
4552 strbuf_addf(&msg,
4553 _("Recursive merging with submodules currently only supports trivial cases.\n"
4554 "Please manually handle the merging of each conflicted submodule.\n"
4555 "This can be accomplished with the following steps:\n"
4556 "%s"
4557 " - come back to superproject and run:\n\n"
4558 " git add %s\n\n"
4559 " to record the above merge or update\n"
4560 " - resolve any other conflicts in the superproject\n"
4561 " - commit the resulting index in the superproject\n"),
4562 tmp.buf, subs.buf);
4057523a
CW
4563
4564 printf("%s", msg.buf);
a5834b77 4565
4057523a
CW
4566 strbuf_release(&subs);
4567 strbuf_release(&tmp);
4568 strbuf_release(&msg);
4569}
4570
a34edae6 4571void merge_display_update_messages(struct merge_options *opt,
de905811 4572 int detailed,
a34edae6
EN
4573 struct merge_result *result)
4574{
4575 struct merge_options_internal *opti = result->priv;
4576 struct hashmap_iter iter;
4577 struct strmap_entry *e;
4578 struct string_list olist = STRING_LIST_INIT_NODUP;
a34edae6
EN
4579
4580 if (opt->record_conflict_msgs_as_headers)
4581 BUG("Either display conflict messages or record them as headers, not both");
4582
4583 trace2_region_enter("merge", "display messages", opt->repo);
4584
4585 /* Hack to pre-allocate olist to the desired size */
6debb752 4586 ALLOC_GROW(olist.items, strmap_get_size(&opti->conflicts),
a34edae6
EN
4587 olist.alloc);
4588
4589 /* Put every entry from output into olist, then sort */
6debb752 4590 strmap_for_each_entry(&opti->conflicts, &iter, e) {
a34edae6
EN
4591 string_list_append(&olist, e->key)->util = e->value;
4592 }
4593 string_list_sort(&olist);
4594
4595 /* Iterate over the items, printing them */
6debb752
JS
4596 for (int path_nr = 0; path_nr < olist.nr; ++path_nr) {
4597 struct string_list *conflicts = olist.items[path_nr].util;
de905811
EN
4598 for (int i = 0; i < conflicts->nr; i++) {
4599 struct logical_conflict_info *info =
4600 conflicts->items[i].util;
4601
4602 if (detailed) {
4603 printf("%lu", (unsigned long)info->paths.nr);
4604 putchar('\0');
4605 for (int n = 0; n < info->paths.nr; n++) {
4606 fputs(info->paths.v[n], stdout);
4607 putchar('\0');
4608 }
4609 fputs(type_short_descriptions[info->type],
4610 stdout);
4611 putchar('\0');
4612 }
6debb752 4613 puts(conflicts->items[i].string);
de905811
EN
4614 if (detailed)
4615 putchar('\0');
4616 }
a34edae6
EN
4617 }
4618 string_list_clear(&olist, 0);
4619
4057523a
CW
4620 print_submodule_conflict_suggestion(&opti->conflicted_submodules);
4621
a34edae6
EN
4622 /* Also include needed rename limit adjustment now */
4623 diff_warn_rename_limit("merge.renamelimit",
4624 opti->renames.needed_limit, 0);
4625
4626 trace2_region_leave("merge", "display messages", opt->repo);
4627}
4628
fae26ce7
EN
4629void merge_get_conflicted_files(struct merge_result *result,
4630 struct string_list *conflicted_files)
4631{
4632 struct hashmap_iter iter;
4633 struct strmap_entry *e;
4634 struct merge_options_internal *opti = result->priv;
4635
4636 strmap_for_each_entry(&opti->conflicted, &iter, e) {
4637 const char *path = e->key;
4638 struct conflict_info *ci = e->value;
4639 int i;
4640
4641 VERIFY_CI(ci);
4642
4643 for (i = MERGE_BASE; i <= MERGE_SIDE2; i++) {
4644 struct stage_info *si;
4645
4646 if (!(ci->filemask & (1ul << i)))
4647 continue;
4648
4649 si = xmalloc(sizeof(*si));
4650 si->stage = i+1;
4651 si->mode = ci->stages[i].mode;
4652 oidcpy(&si->oid, &ci->stages[i].oid);
4653 string_list_append(conflicted_files, path)->util = si;
4654 }
4655 }
4656 /* string_list_sort() uses a stable sort, so we're good */
4657 string_list_sort(conflicted_files);
4658}
4659
17e5574b
EN
4660void merge_switch_to_result(struct merge_options *opt,
4661 struct tree *head,
4662 struct merge_result *result,
4663 int update_worktree_and_index,
4664 int display_update_msgs)
4665{
9fefce68
EN
4666 assert(opt->priv == NULL);
4667 if (result->clean >= 0 && update_worktree_and_index) {
5291828d
EN
4668 const char *filename;
4669 FILE *fp;
9fefce68 4670
557ac035 4671 trace2_region_enter("merge", "checkout", opt->repo);
9fefce68
EN
4672 if (checkout(opt, head, result->tree)) {
4673 /* failure to function */
4674 result->clean = -1;
fef2b6da 4675 merge_finalize(opt, result);
1250dff3 4676 trace2_region_leave("merge", "checkout", opt->repo);
9fefce68
EN
4677 return;
4678 }
557ac035 4679 trace2_region_leave("merge", "checkout", opt->repo);
9fefce68 4680
557ac035 4681 trace2_region_enter("merge", "record_conflicted", opt->repo);
66b209b8
EN
4682 opt->priv = result->priv;
4683 if (record_conflicted_index_entries(opt)) {
9fefce68 4684 /* failure to function */
66b209b8 4685 opt->priv = NULL;
9fefce68 4686 result->clean = -1;
fef2b6da 4687 merge_finalize(opt, result);
1250dff3
JS
4688 trace2_region_leave("merge", "record_conflicted",
4689 opt->repo);
9fefce68
EN
4690 return;
4691 }
66b209b8 4692 opt->priv = NULL;
557ac035 4693 trace2_region_leave("merge", "record_conflicted", opt->repo);
5291828d
EN
4694
4695 trace2_region_enter("merge", "write_auto_merge", opt->repo);
4696 filename = git_path_auto_merge(opt->repo);
4697 fp = xfopen(filename, "w");
4698 fprintf(fp, "%s\n", oid_to_hex(&result->tree->object.oid));
4699 fclose(fp);
4700 trace2_region_leave("merge", "write_auto_merge", opt->repo);
9fefce68 4701 }
a34edae6 4702 if (display_update_msgs)
de905811 4703 merge_display_update_messages(opt, /* detailed */ 0, result);
9fefce68 4704
17e5574b
EN
4705 merge_finalize(opt, result);
4706}
4707
4708void merge_finalize(struct merge_options *opt,
4709 struct merge_result *result)
4710{
ea305a68
EN
4711 if (opt->renormalize)
4712 git_attr_set_direction(GIT_ATTR_CHECKIN);
89422d29
EN
4713 assert(opt->priv == NULL);
4714
000c4cec
EN
4715 if (result->priv) {
4716 clear_or_reinit_internal_opts(result->priv, 0);
4717 FREE_AND_NULL(result->priv);
4718 }
17e5574b
EN
4719}
4720
04af1879
EN
4721/*** Function Grouping: helper functions for merge_incore_*() ***/
4722
3639dfb3
EN
4723static struct tree *shift_tree_object(struct repository *repo,
4724 struct tree *one, struct tree *two,
4725 const char *subtree_shift)
4726{
4727 struct object_id shifted;
4728
4729 if (!*subtree_shift) {
4730 shift_tree(repo, &one->object.oid, &two->object.oid, &shifted, 0);
4731 } else {
4732 shift_tree_by(repo, &one->object.oid, &two->object.oid, &shifted,
4733 subtree_shift);
4734 }
4735 if (oideq(&two->object.oid, &shifted))
4736 return two;
4737 return lookup_tree(repo, &shifted);
4738}
4739
4296d8f1
EN
4740static inline void set_commit_tree(struct commit *c, struct tree *t)
4741{
4742 c->maybe_tree = t;
4743}
4744
4296d8f1
EN
4745static struct commit *make_virtual_commit(struct repository *repo,
4746 struct tree *tree,
4747 const char *comment)
4748{
4749 struct commit *commit = alloc_commit_node(repo);
4750
4751 set_merge_remote_desc(commit, comment, (struct object *)commit);
4752 set_commit_tree(commit, tree);
4753 commit->object.parsed = 1;
4754 return commit;
4755}
4756
231e2dd4
EN
4757static void merge_start(struct merge_options *opt, struct merge_result *result)
4758{
f5d9fbc2
EN
4759 struct rename_info *renames;
4760 int i;
6697ee01 4761 struct mem_pool *pool = NULL;
f5d9fbc2 4762
e4171b1b 4763 /* Sanity checks on opt */
557ac035 4764 trace2_region_enter("merge", "sanity checks", opt->repo);
e4171b1b
EN
4765 assert(opt->repo);
4766
4767 assert(opt->branch1 && opt->branch2);
4768
4769 assert(opt->detect_directory_renames >= MERGE_DIRECTORY_RENAMES_NONE &&
4770 opt->detect_directory_renames <= MERGE_DIRECTORY_RENAMES_TRUE);
4771 assert(opt->rename_limit >= -1);
4772 assert(opt->rename_score >= 0 && opt->rename_score <= MAX_SCORE);
4773 assert(opt->show_rename_progress >= 0 && opt->show_rename_progress <= 1);
4774
4775 assert(opt->xdl_opts >= 0);
4776 assert(opt->recursive_variant >= MERGE_VARIANT_NORMAL &&
4777 opt->recursive_variant <= MERGE_VARIANT_THEIRS);
4778
6054d1aa
EN
4779 if (opt->msg_header_prefix)
4780 assert(opt->record_conflict_msgs_as_headers);
4781
e4171b1b
EN
4782 /*
4783 * detect_renames, verbosity, buffer_output, and obuf are ignored
4784 * fields that were used by "recursive" rather than "ort" -- but
4785 * sanity check them anyway.
4786 */
4787 assert(opt->detect_renames >= -1 &&
4788 opt->detect_renames <= DIFF_DETECT_COPY);
4789 assert(opt->verbosity >= 0 && opt->verbosity <= 5);
4790 assert(opt->buffer_output <= 2);
4791 assert(opt->obuf.len == 0);
4792
4793 assert(opt->priv == NULL);
19ceb486
EN
4794 if (result->_properly_initialized != 0 &&
4795 result->_properly_initialized != RESULT_INITIALIZED)
4796 BUG("struct merge_result passed to merge_incore_*recursive() must be zeroed or filled with values from a previous run");
4797 assert(!!result->priv == !!result->_properly_initialized);
cf8937ac
EN
4798 if (result->priv) {
4799 opt->priv = result->priv;
4800 result->priv = NULL;
4801 /*
4802 * opt->priv non-NULL means we had results from a previous
4803 * run; do a few sanity checks that user didn't mess with
4804 * it in an obvious fashion.
4805 */
4806 assert(opt->priv->call_depth == 0);
4807 assert(!opt->priv->toplevel_dir ||
4808 0 == strlen(opt->priv->toplevel_dir));
4809 }
557ac035 4810 trace2_region_leave("merge", "sanity checks", opt->repo);
e4171b1b 4811
c8017176
EN
4812 /* Default to histogram diff. Actually, just hardcode it...for now. */
4813 opt->xdl_opts = DIFF_WITH_ALG(opt, HISTOGRAM_DIFF);
4814
ea305a68
EN
4815 /* Handle attr direction stuff for renormalization */
4816 if (opt->renormalize)
4817 git_attr_set_direction(GIT_ATTR_CHECKOUT);
4818
e4171b1b 4819 /* Initialization of opt->priv, our internal merge data */
557ac035 4820 trace2_region_enter("merge", "allocate/init", opt->repo);
cf8937ac
EN
4821 if (opt->priv) {
4822 clear_or_reinit_internal_opts(opt->priv, 1);
4057523a 4823 string_list_init_nodup(&opt->priv->conflicted_submodules);
cf8937ac
EN
4824 trace2_region_leave("merge", "allocate/init", opt->repo);
4825 return;
4826 }
e4171b1b
EN
4827 opt->priv = xcalloc(1, sizeof(*opt->priv));
4828
f5d9fbc2
EN
4829 /* Initialization of various renames fields */
4830 renames = &opt->priv->renames;
62a15162
EN
4831 mem_pool_init(&opt->priv->pool, 0);
4832 pool = &opt->priv->pool;
f5d9fbc2 4833 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; i++) {
a49b55d5 4834 strintmap_init_with_options(&renames->dirs_removed[i],
6697ee01 4835 NOT_RELEVANT, pool, 0);
f5d9fbc2
EN
4836 strmap_init_with_options(&renames->dir_rename_count[i],
4837 NULL, 1);
4838 strmap_init_with_options(&renames->dir_renames[i],
4839 NULL, 0);
2734f2e3
EN
4840 /*
4841 * relevant_sources uses -1 for the default, because we need
4842 * to be able to distinguish not-in-strintmap from valid
4843 * relevant_source values from enum file_rename_relevance.
4844 * In particular, possibly_cache_new_pair() expects a negative
4845 * value for not-found entries.
4846 */
a49b55d5 4847 strintmap_init_with_options(&renames->relevant_sources[i],
2734f2e3 4848 -1 /* explicitly invalid */,
6697ee01 4849 pool, 0);
d29bd6d7
EN
4850 strmap_init_with_options(&renames->cached_pairs[i],
4851 NULL, 1);
4852 strset_init_with_options(&renames->cached_irrelevant[i],
4853 NULL, 1);
4854 strset_init_with_options(&renames->cached_target_names[i],
4855 NULL, 0);
f5d9fbc2 4856 }
d478f567
EN
4857 for (i = MERGE_SIDE1; i <= MERGE_SIDE2; i++) {
4858 strintmap_init_with_options(&renames->deferred[i].possible_trivial_merges,
6697ee01 4859 0, pool, 0);
d478f567 4860 strset_init_with_options(&renames->deferred[i].target_dirs,
6697ee01 4861 pool, 1);
d478f567
EN
4862 renames->deferred[i].trivial_merges_okay = 1; /* 1 == maybe */
4863 }
f5d9fbc2 4864
e4171b1b
EN
4865 /*
4866 * Although we initialize opt->priv->paths with strdup_strings=0,
4867 * that's just to avoid making yet another copy of an allocated
4868 * string. Putting the entry into paths means we are taking
62a15162 4869 * ownership, so we will later free it.
e4171b1b
EN
4870 *
4871 * In contrast, conflicted just has a subset of keys from paths, so
4872 * we don't want to free those (it'd be a duplicate free).
4873 */
6697ee01
EN
4874 strmap_init_with_options(&opt->priv->paths, pool, 0);
4875 strmap_init_with_options(&opt->priv->conflicted, pool, 0);
c5a6f655
EN
4876
4877 /*
6debb752
JS
4878 * keys & string_lists in conflicts will sometimes need to outlive
4879 * "paths", so it will have a copy of relevant keys. It's probably
4880 * a small subset of the overall paths that have special output.
c5a6f655 4881 */
6debb752 4882 strmap_init(&opt->priv->conflicts);
557ac035
EN
4883
4884 trace2_region_leave("merge", "allocate/init", opt->repo);
231e2dd4
EN
4885}
4886
6eb0c0eb 4887static void merge_check_renames_reusable(struct merge_result *result,
64aceb6d
EN
4888 struct tree *merge_base,
4889 struct tree *side1,
4890 struct tree *side2)
4891{
4892 struct rename_info *renames;
4893 struct tree **merge_trees;
4894 struct merge_options_internal *opti = result->priv;
4895
4896 if (!opti)
4897 return;
4898
4899 renames = &opti->renames;
4900 merge_trees = renames->merge_trees;
cbdca289
EN
4901
4902 /*
4903 * Handle case where previous merge operation did not want cache to
4904 * take effect, e.g. because rename/rename(1to1) makes it invalid.
4905 */
4906 if (!merge_trees[0]) {
4907 assert(!merge_trees[0] && !merge_trees[1] && !merge_trees[2]);
4908 renames->cached_pairs_valid_side = 0; /* neither side valid */
4909 return;
4910 }
4911
4912 /*
4913 * Handle other cases; note that merge_trees[0..2] will only
4914 * be NULL if opti is, or if all three were manually set to
4915 * NULL by e.g. rename/rename(1to1) handling.
4916 */
64aceb6d
EN
4917 assert(merge_trees[0] && merge_trees[1] && merge_trees[2]);
4918
4919 /* Check if we meet a condition for re-using cached_pairs */
4920 if (oideq(&merge_base->object.oid, &merge_trees[2]->object.oid) &&
4921 oideq(&side1->object.oid, &result->tree->object.oid))
4922 renames->cached_pairs_valid_side = MERGE_SIDE1;
4923 else if (oideq(&merge_base->object.oid, &merge_trees[1]->object.oid) &&
4924 oideq(&side2->object.oid, &result->tree->object.oid))
4925 renames->cached_pairs_valid_side = MERGE_SIDE2;
4926 else
4927 renames->cached_pairs_valid_side = 0; /* neither side valid */
4928}
4929
04af1879
EN
4930/*** Function Grouping: merge_incore_*() and their internal variants ***/
4931
231e2dd4
EN
4932/*
4933 * Originally from merge_trees_internal(); heavily adapted, though.
4934 */
4935static void merge_ort_nonrecursive_internal(struct merge_options *opt,
4936 struct tree *merge_base,
4937 struct tree *side1,
4938 struct tree *side2,
4939 struct merge_result *result)
4940{
4941 struct object_id working_tree_oid;
4942
3639dfb3
EN
4943 if (opt->subtree_shift) {
4944 side2 = shift_tree_object(opt->repo, side1, side2,
4945 opt->subtree_shift);
4946 merge_base = shift_tree_object(opt->repo, side1, merge_base,
4947 opt->subtree_shift);
4948 }
4949
8b09a900 4950redo:
557ac035 4951 trace2_region_enter("merge", "collect_merge_info", opt->repo);
0c0d705b
EN
4952 if (collect_merge_info(opt, merge_base, side1, side2) != 0) {
4953 /*
4954 * TRANSLATORS: The %s arguments are: 1) tree hash of a merge
4955 * base, and 2-3) the trees for the two trees we're merging.
4956 */
808e83f2 4957 error(_("collecting merge info failed for trees %s, %s, %s"),
0c0d705b
EN
4958 oid_to_hex(&merge_base->object.oid),
4959 oid_to_hex(&side1->object.oid),
4960 oid_to_hex(&side2->object.oid));
4961 result->clean = -1;
4962 return;
4963 }
557ac035 4964 trace2_region_leave("merge", "collect_merge_info", opt->repo);
0c0d705b 4965
557ac035 4966 trace2_region_enter("merge", "renames", opt->repo);
fce9ffb2 4967 result->clean = detect_and_process_renames(opt);
557ac035 4968 trace2_region_leave("merge", "renames", opt->repo);
8b09a900
EN
4969 if (opt->priv->renames.redo_after_renames == 2) {
4970 trace2_region_enter("merge", "reset_maps", opt->repo);
4971 clear_or_reinit_internal_opts(opt->priv, 1);
4972 trace2_region_leave("merge", "reset_maps", opt->repo);
4973 goto redo;
4974 }
557ac035
EN
4975
4976 trace2_region_enter("merge", "process_entries", opt->repo);
0b55d930
JS
4977 if (process_entries(opt, &working_tree_oid) < 0)
4978 result->clean = -1;
557ac035 4979 trace2_region_leave("merge", "process_entries", opt->repo);
231e2dd4
EN
4980
4981 /* Set return values */
2715e8a9 4982 result->path_messages = &opt->priv->conflicts;
6debb752 4983
0b55d930
JS
4984 if (result->clean >= 0) {
4985 result->tree = parse_tree_indirect(&working_tree_oid);
4986 /* existence of conflicted entries implies unclean */
4987 result->clean &= strmap_empty(&opt->priv->conflicted);
4988 }
231e2dd4
EN
4989 if (!opt->priv->call_depth) {
4990 result->priv = opt->priv;
19ceb486 4991 result->_properly_initialized = RESULT_INITIALIZED;
231e2dd4
EN
4992 opt->priv = NULL;
4993 }
4994}
4995
8119214f
EN
4996/*
4997 * Originally from merge_recursive_internal(); somewhat adapted, though.
4998 */
4999static void merge_ort_internal(struct merge_options *opt,
5000 struct commit_list *merge_bases,
5001 struct commit *h1,
5002 struct commit *h2,
5003 struct merge_result *result)
5004{
a59b8dd9 5005 struct commit *next;
8119214f
EN
5006 struct commit *merged_merge_bases;
5007 const char *ancestor_name;
5008 struct strbuf merge_base_abbrev = STRBUF_INIT;
5009
5010 if (!merge_bases) {
cb338c23 5011 merge_bases = repo_get_merge_bases(the_repository, h1, h2);
8119214f
EN
5012 /* See merge-ort.h:merge_incore_recursive() declaration NOTE */
5013 merge_bases = reverse_commit_list(merge_bases);
5014 }
5015
5016 merged_merge_bases = pop_commit(&merge_bases);
afe8a907 5017 if (!merged_merge_bases) {
8119214f
EN
5018 /* if there is no common ancestor, use an empty tree */
5019 struct tree *tree;
5020
5021 tree = lookup_tree(opt->repo, opt->repo->hash_algo->empty_tree);
5022 merged_merge_bases = make_virtual_commit(opt->repo, tree,
5023 "ancestor");
5024 ancestor_name = "empty tree";
5025 } else if (merge_bases) {
5026 ancestor_name = "merged common ancestors";
5027 } else {
5028 strbuf_add_unique_abbrev(&merge_base_abbrev,
5029 &merged_merge_bases->object.oid,
5030 DEFAULT_ABBREV);
5031 ancestor_name = merge_base_abbrev.buf;
5032 }
5033
a59b8dd9
EN
5034 for (next = pop_commit(&merge_bases); next;
5035 next = pop_commit(&merge_bases)) {
8119214f
EN
5036 const char *saved_b1, *saved_b2;
5037 struct commit *prev = merged_merge_bases;
5038
5039 opt->priv->call_depth++;
5040 /*
5041 * When the merge fails, the result contains files
5042 * with conflict markers. The cleanness flag is
5043 * ignored (unless indicating an error), it was never
5044 * actually used, as result of merge_trees has always
5045 * overwritten it: the committed "conflicts" were
5046 * already resolved.
5047 */
5048 saved_b1 = opt->branch1;
5049 saved_b2 = opt->branch2;
5050 opt->branch1 = "Temporary merge branch 1";
5051 opt->branch2 = "Temporary merge branch 2";
a59b8dd9 5052 merge_ort_internal(opt, NULL, prev, next, result);
8119214f
EN
5053 if (result->clean < 0)
5054 return;
5055 opt->branch1 = saved_b1;
5056 opt->branch2 = saved_b2;
5057 opt->priv->call_depth--;
5058
5059 merged_merge_bases = make_virtual_commit(opt->repo,
5060 result->tree,
5061 "merged tree");
5062 commit_list_insert(prev, &merged_merge_bases->parents);
a59b8dd9 5063 commit_list_insert(next, &merged_merge_bases->parents->next);
8119214f
EN
5064
5065 clear_or_reinit_internal_opts(opt->priv, 1);
5066 }
5067
5068 opt->ancestor = ancestor_name;
5069 merge_ort_nonrecursive_internal(opt,
5070 repo_get_commit_tree(opt->repo,
5071 merged_merge_bases),
5072 repo_get_commit_tree(opt->repo, h1),
5073 repo_get_commit_tree(opt->repo, h2),
5074 result);
5075 strbuf_release(&merge_base_abbrev);
5076 opt->ancestor = NULL; /* avoid accidental re-use of opt->ancestor */
5077}
5078
17e5574b
EN
5079void merge_incore_nonrecursive(struct merge_options *opt,
5080 struct tree *merge_base,
5081 struct tree *side1,
5082 struct tree *side2,
5083 struct merge_result *result)
5084{
557ac035
EN
5085 trace2_region_enter("merge", "incore_nonrecursive", opt->repo);
5086
5087 trace2_region_enter("merge", "merge_start", opt->repo);
231e2dd4 5088 assert(opt->ancestor != NULL);
6eb0c0eb 5089 merge_check_renames_reusable(result, merge_base, side1, side2);
231e2dd4 5090 merge_start(opt, result);
64aceb6d
EN
5091 /*
5092 * Record the trees used in this merge, so if there's a next merge in
5093 * a cherry-pick or rebase sequence it might be able to take advantage
5094 * of the cached_pairs in that next merge.
5095 */
5096 opt->priv->renames.merge_trees[0] = merge_base;
5097 opt->priv->renames.merge_trees[1] = side1;
5098 opt->priv->renames.merge_trees[2] = side2;
557ac035
EN
5099 trace2_region_leave("merge", "merge_start", opt->repo);
5100
231e2dd4 5101 merge_ort_nonrecursive_internal(opt, merge_base, side1, side2, result);
557ac035 5102 trace2_region_leave("merge", "incore_nonrecursive", opt->repo);
17e5574b
EN
5103}
5104
5105void merge_incore_recursive(struct merge_options *opt,
5106 struct commit_list *merge_bases,
5107 struct commit *side1,
5108 struct commit *side2,
5109 struct merge_result *result)
5110{
557ac035
EN
5111 trace2_region_enter("merge", "incore_recursive", opt->repo);
5112
8119214f
EN
5113 /* We set the ancestor label based on the merge_bases */
5114 assert(opt->ancestor == NULL);
5115
557ac035 5116 trace2_region_enter("merge", "merge_start", opt->repo);
8119214f 5117 merge_start(opt, result);
557ac035
EN
5118 trace2_region_leave("merge", "merge_start", opt->repo);
5119
8119214f 5120 merge_ort_internal(opt, merge_bases, side1, side2, result);
557ac035 5121 trace2_region_leave("merge", "incore_recursive", opt->repo);
17e5574b 5122}