]> git.proxmox.com Git - libgit2.git/blob - src/checkout.c
deeee62e05b18a0b3513b07b3aa4977f6deececd
[libgit2.git] / src / checkout.c
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #include <assert.h>
9
10 #include "checkout.h"
11
12 #include "git2/repository.h"
13 #include "git2/refs.h"
14 #include "git2/tree.h"
15 #include "git2/blob.h"
16 #include "git2/config.h"
17 #include "git2/diff.h"
18 #include "git2/submodule.h"
19 #include "git2/sys/index.h"
20 #include "git2/sys/filter.h"
21 #include "git2/merge.h"
22
23 #include "refs.h"
24 #include "repository.h"
25 #include "index.h"
26 #include "filter.h"
27 #include "blob.h"
28 #include "diff.h"
29 #include "pathspec.h"
30 #include "buf_text.h"
31 #include "diff_xdiff.h"
32 #include "path.h"
33 #include "attr.h"
34 #include "pool.h"
35 #include "strmap.h"
36
37 GIT__USE_STRMAP
38
39 /* See docs/checkout-internals.md for more information */
40
41 enum {
42 CHECKOUT_ACTION__NONE = 0,
43 CHECKOUT_ACTION__REMOVE = 1,
44 CHECKOUT_ACTION__UPDATE_BLOB = 2,
45 CHECKOUT_ACTION__UPDATE_SUBMODULE = 4,
46 CHECKOUT_ACTION__CONFLICT = 8,
47 CHECKOUT_ACTION__REMOVE_CONFLICT = 16,
48 CHECKOUT_ACTION__UPDATE_CONFLICT = 32,
49 CHECKOUT_ACTION__MAX = 32,
50 CHECKOUT_ACTION__DEFER_REMOVE = 64,
51 CHECKOUT_ACTION__REMOVE_AND_UPDATE =
52 (CHECKOUT_ACTION__UPDATE_BLOB | CHECKOUT_ACTION__REMOVE),
53 };
54
55 typedef struct {
56 git_repository *repo;
57 git_iterator *target;
58 git_diff *diff;
59 git_checkout_options opts;
60 bool opts_free_baseline;
61 char *pfx;
62 git_index *index;
63 git_pool pool;
64 git_vector removes;
65 git_vector remove_conflicts;
66 git_vector update_conflicts;
67 git_vector *update_reuc;
68 git_vector *update_names;
69 git_buf path;
70 size_t workdir_len;
71 git_buf tmp;
72 unsigned int strategy;
73 int can_symlink;
74 bool reload_submodules;
75 size_t total_steps;
76 size_t completed_steps;
77 git_checkout_perfdata perfdata;
78 git_strmap *mkdir_map;
79 git_attr_session attr_session;
80 } checkout_data;
81
82 typedef struct {
83 const git_index_entry *ancestor;
84 const git_index_entry *ours;
85 const git_index_entry *theirs;
86
87 int name_collision:1,
88 directoryfile:1,
89 one_to_two:1,
90 binary:1,
91 submodule:1;
92 } checkout_conflictdata;
93
94 static int checkout_notify(
95 checkout_data *data,
96 git_checkout_notify_t why,
97 const git_diff_delta *delta,
98 const git_index_entry *wditem)
99 {
100 git_diff_file wdfile;
101 const git_diff_file *baseline = NULL, *target = NULL, *workdir = NULL;
102 const char *path = NULL;
103
104 if (!data->opts.notify_cb ||
105 (why & data->opts.notify_flags) == 0)
106 return 0;
107
108 if (wditem) {
109 memset(&wdfile, 0, sizeof(wdfile));
110
111 git_oid_cpy(&wdfile.id, &wditem->id);
112 wdfile.path = wditem->path;
113 wdfile.size = wditem->file_size;
114 wdfile.flags = GIT_DIFF_FLAG_VALID_ID;
115 wdfile.mode = wditem->mode;
116
117 workdir = &wdfile;
118
119 path = wditem->path;
120 }
121
122 if (delta) {
123 switch (delta->status) {
124 case GIT_DELTA_UNMODIFIED:
125 case GIT_DELTA_MODIFIED:
126 case GIT_DELTA_TYPECHANGE:
127 default:
128 baseline = &delta->old_file;
129 target = &delta->new_file;
130 break;
131 case GIT_DELTA_ADDED:
132 case GIT_DELTA_IGNORED:
133 case GIT_DELTA_UNTRACKED:
134 case GIT_DELTA_UNREADABLE:
135 target = &delta->new_file;
136 break;
137 case GIT_DELTA_DELETED:
138 baseline = &delta->old_file;
139 break;
140 }
141
142 path = delta->old_file.path;
143 }
144
145 {
146 int error = data->opts.notify_cb(
147 why, path, baseline, target, workdir, data->opts.notify_payload);
148
149 return giterr_set_after_callback_function(
150 error, "git_checkout notification");
151 }
152 }
153
154 GIT_INLINE(bool) is_workdir_base_or_new(
155 const git_oid *workdir_id,
156 const git_diff_file *baseitem,
157 const git_diff_file *newitem)
158 {
159 return (git_oid__cmp(&baseitem->id, workdir_id) == 0 ||
160 git_oid__cmp(&newitem->id, workdir_id) == 0);
161 }
162
163 static bool checkout_is_workdir_modified(
164 checkout_data *data,
165 const git_diff_file *baseitem,
166 const git_diff_file *newitem,
167 const git_index_entry *wditem)
168 {
169 git_oid oid;
170 const git_index_entry *ie;
171
172 /* handle "modified" submodule */
173 if (wditem->mode == GIT_FILEMODE_COMMIT) {
174 git_submodule *sm;
175 unsigned int sm_status = 0;
176 const git_oid *sm_oid = NULL;
177 bool rval = false;
178
179 if (git_submodule_lookup(&sm, data->repo, wditem->path) < 0) {
180 giterr_clear();
181 return true;
182 }
183
184 if (git_submodule_status(&sm_status, data->repo, wditem->path, GIT_SUBMODULE_IGNORE_UNSPECIFIED) < 0 ||
185 GIT_SUBMODULE_STATUS_IS_WD_DIRTY(sm_status))
186 rval = true;
187 else if ((sm_oid = git_submodule_wd_id(sm)) == NULL)
188 rval = false;
189 else
190 rval = (git_oid__cmp(&baseitem->id, sm_oid) != 0);
191
192 git_submodule_free(sm);
193 return rval;
194 }
195
196 /* Look at the cache to decide if the workdir is modified. If not,
197 * we can simply compare the oid in the cache to the baseitem instead
198 * of hashing the file. If so, we allow the checkout to proceed if the
199 * oid is identical (ie, the staged item is what we're trying to check
200 * out.)
201 */
202 if ((ie = git_index_get_bypath(data->index, wditem->path, 0)) != NULL) {
203 if (git_index_time_eq(&wditem->mtime, &ie->mtime) &&
204 wditem->file_size == ie->file_size)
205 return !is_workdir_base_or_new(&ie->id, baseitem, newitem);
206 }
207
208 /* depending on where base is coming from, we may or may not know
209 * the actual size of the data, so we can't rely on this shortcut.
210 */
211 if (baseitem->size && wditem->file_size != baseitem->size)
212 return true;
213
214 if (git_diff__oid_for_entry(&oid, data->diff, wditem, wditem->mode, NULL) < 0)
215 return false;
216
217 /* Allow the checkout if the workdir is not modified *or* if the checkout
218 * target's contents are already in the working directory.
219 */
220 return !is_workdir_base_or_new(&oid, baseitem, newitem);
221 }
222
223 #define CHECKOUT_ACTION_IF(FLAG,YES,NO) \
224 ((data->strategy & GIT_CHECKOUT_##FLAG) ? CHECKOUT_ACTION__##YES : CHECKOUT_ACTION__##NO)
225
226 static int checkout_action_common(
227 int *action,
228 checkout_data *data,
229 const git_diff_delta *delta,
230 const git_index_entry *wd)
231 {
232 git_checkout_notify_t notify = GIT_CHECKOUT_NOTIFY_NONE;
233
234 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0)
235 *action = (*action & ~CHECKOUT_ACTION__REMOVE);
236
237 if ((*action & CHECKOUT_ACTION__UPDATE_BLOB) != 0) {
238 if (S_ISGITLINK(delta->new_file.mode))
239 *action = (*action & ~CHECKOUT_ACTION__UPDATE_BLOB) |
240 CHECKOUT_ACTION__UPDATE_SUBMODULE;
241
242 /* to "update" a symlink, we must remove the old one first */
243 if (delta->new_file.mode == GIT_FILEMODE_LINK && wd != NULL)
244 *action |= CHECKOUT_ACTION__REMOVE;
245
246 /* if the file is on disk and doesn't match our mode, force update */
247 if (wd &&
248 GIT_PERMS_IS_EXEC(wd->mode) !=
249 GIT_PERMS_IS_EXEC(delta->new_file.mode))
250 *action |= CHECKOUT_ACTION__REMOVE;
251
252 notify = GIT_CHECKOUT_NOTIFY_UPDATED;
253 }
254
255 if ((*action & CHECKOUT_ACTION__CONFLICT) != 0)
256 notify = GIT_CHECKOUT_NOTIFY_CONFLICT;
257
258 return checkout_notify(data, notify, delta, wd);
259 }
260
261 static int checkout_action_no_wd(
262 int *action,
263 checkout_data *data,
264 const git_diff_delta *delta)
265 {
266 int error = 0;
267
268 *action = CHECKOUT_ACTION__NONE;
269
270 switch (delta->status) {
271 case GIT_DELTA_UNMODIFIED: /* case 12 */
272 error = checkout_notify(data, GIT_CHECKOUT_NOTIFY_DIRTY, delta, NULL);
273 if (error)
274 return error;
275 *action = CHECKOUT_ACTION_IF(RECREATE_MISSING, UPDATE_BLOB, NONE);
276 break;
277 case GIT_DELTA_ADDED: /* case 2 or 28 (and 5 but not really) */
278 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
279 break;
280 case GIT_DELTA_MODIFIED: /* case 13 (and 35 but not really) */
281 *action = CHECKOUT_ACTION_IF(RECREATE_MISSING, UPDATE_BLOB, CONFLICT);
282 break;
283 case GIT_DELTA_TYPECHANGE: /* case 21 (B->T) and 28 (T->B)*/
284 if (delta->new_file.mode == GIT_FILEMODE_TREE)
285 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
286 break;
287 case GIT_DELTA_DELETED: /* case 8 or 25 */
288 *action = CHECKOUT_ACTION_IF(SAFE, REMOVE, NONE);
289 break;
290 default: /* impossible */
291 break;
292 }
293
294 return checkout_action_common(action, data, delta, NULL);
295 }
296
297 static bool wd_item_is_removable(git_iterator *iter, const git_index_entry *wd)
298 {
299 git_buf *full = NULL;
300
301 if (wd->mode != GIT_FILEMODE_TREE)
302 return true;
303 if (git_iterator_current_workdir_path(&full, iter) < 0)
304 return true;
305 return !full || !git_path_contains(full, DOT_GIT);
306 }
307
308 static int checkout_queue_remove(checkout_data *data, const char *path)
309 {
310 char *copy = git_pool_strdup(&data->pool, path);
311 GITERR_CHECK_ALLOC(copy);
312 return git_vector_insert(&data->removes, copy);
313 }
314
315 /* note that this advances the iterator over the wd item */
316 static int checkout_action_wd_only(
317 checkout_data *data,
318 git_iterator *workdir,
319 const git_index_entry **wditem,
320 git_vector *pathspec)
321 {
322 int error = 0;
323 bool remove = false;
324 git_checkout_notify_t notify = GIT_CHECKOUT_NOTIFY_NONE;
325 const git_index_entry *wd = *wditem;
326
327 if (!git_pathspec__match(
328 pathspec, wd->path,
329 (data->strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH) != 0,
330 git_iterator_ignore_case(workdir), NULL, NULL))
331 return git_iterator_advance(wditem, workdir);
332
333 /* check if item is tracked in the index but not in the checkout diff */
334 if (data->index != NULL) {
335 size_t pos;
336
337 error = git_index__find_pos(
338 &pos, data->index, wd->path, 0, GIT_INDEX_STAGE_ANY);
339
340 if (wd->mode != GIT_FILEMODE_TREE) {
341 if (!error) { /* found by git_index__find_pos call */
342 notify = GIT_CHECKOUT_NOTIFY_DIRTY;
343 remove = ((data->strategy & GIT_CHECKOUT_FORCE) != 0);
344 } else if (error != GIT_ENOTFOUND)
345 return error;
346 else
347 error = 0; /* git_index__find_pos does not set error msg */
348 } else {
349 /* for tree entries, we have to see if there are any index
350 * entries that are contained inside that tree
351 */
352 const git_index_entry *e = git_index_get_byindex(data->index, pos);
353
354 if (e != NULL && data->diff->pfxcomp(e->path, wd->path) == 0) {
355 notify = GIT_CHECKOUT_NOTIFY_DIRTY;
356 remove = ((data->strategy & GIT_CHECKOUT_FORCE) != 0);
357 }
358 }
359 }
360
361 if (notify != GIT_CHECKOUT_NOTIFY_NONE) {
362 /* if we found something in the index, notify and advance */
363 if ((error = checkout_notify(data, notify, NULL, wd)) != 0)
364 return error;
365
366 if (remove && wd_item_is_removable(workdir, wd))
367 error = checkout_queue_remove(data, wd->path);
368
369 if (!error)
370 error = git_iterator_advance(wditem, workdir);
371 } else {
372 /* untracked or ignored - can't know which until we advance through */
373 bool over = false, removable = wd_item_is_removable(workdir, wd);
374 git_iterator_status_t untracked_state;
375
376 /* copy the entry for issuing notification callback later */
377 git_index_entry saved_wd = *wd;
378 git_buf_sets(&data->tmp, wd->path);
379 saved_wd.path = data->tmp.ptr;
380
381 error = git_iterator_advance_over_with_status(
382 wditem, &untracked_state, workdir);
383 if (error == GIT_ITEROVER)
384 over = true;
385 else if (error < 0)
386 return error;
387
388 if (untracked_state == GIT_ITERATOR_STATUS_IGNORED) {
389 notify = GIT_CHECKOUT_NOTIFY_IGNORED;
390 remove = ((data->strategy & GIT_CHECKOUT_REMOVE_IGNORED) != 0);
391 } else {
392 notify = GIT_CHECKOUT_NOTIFY_UNTRACKED;
393 remove = ((data->strategy & GIT_CHECKOUT_REMOVE_UNTRACKED) != 0);
394 }
395
396 if ((error = checkout_notify(data, notify, NULL, &saved_wd)) != 0)
397 return error;
398
399 if (remove && removable)
400 error = checkout_queue_remove(data, saved_wd.path);
401
402 if (!error && over) /* restore ITEROVER if needed */
403 error = GIT_ITEROVER;
404 }
405
406 return error;
407 }
408
409 static bool submodule_is_config_only(
410 checkout_data *data,
411 const char *path)
412 {
413 git_submodule *sm = NULL;
414 unsigned int sm_loc = 0;
415 bool rval = false;
416
417 if (git_submodule_lookup(&sm, data->repo, path) < 0)
418 return true;
419
420 if (git_submodule_location(&sm_loc, sm) < 0 ||
421 sm_loc == GIT_SUBMODULE_STATUS_IN_CONFIG)
422 rval = true;
423
424 git_submodule_free(sm);
425
426 return rval;
427 }
428
429 static bool checkout_is_empty_dir(checkout_data *data, const char *path)
430 {
431 git_buf_truncate(&data->path, data->workdir_len);
432 if (git_buf_puts(&data->path, path) < 0)
433 return false;
434 return git_path_is_empty_dir(data->path.ptr);
435 }
436
437 static int checkout_action_with_wd(
438 int *action,
439 checkout_data *data,
440 const git_diff_delta *delta,
441 git_iterator *workdir,
442 const git_index_entry *wd)
443 {
444 *action = CHECKOUT_ACTION__NONE;
445
446 switch (delta->status) {
447 case GIT_DELTA_UNMODIFIED: /* case 14/15 or 33 */
448 if (checkout_is_workdir_modified(data, &delta->old_file, &delta->new_file, wd)) {
449 GITERR_CHECK_ERROR(
450 checkout_notify(data, GIT_CHECKOUT_NOTIFY_DIRTY, delta, wd) );
451 *action = CHECKOUT_ACTION_IF(FORCE, UPDATE_BLOB, NONE);
452 }
453 break;
454 case GIT_DELTA_ADDED: /* case 3, 4 or 6 */
455 if (git_iterator_current_is_ignored(workdir))
456 *action = CHECKOUT_ACTION_IF(DONT_OVERWRITE_IGNORED, CONFLICT, UPDATE_BLOB);
457 else
458 *action = CHECKOUT_ACTION_IF(FORCE, UPDATE_BLOB, CONFLICT);
459 break;
460 case GIT_DELTA_DELETED: /* case 9 or 10 (or 26 but not really) */
461 if (checkout_is_workdir_modified(data, &delta->old_file, &delta->new_file, wd))
462 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE, CONFLICT);
463 else
464 *action = CHECKOUT_ACTION_IF(SAFE, REMOVE, NONE);
465 break;
466 case GIT_DELTA_MODIFIED: /* case 16, 17, 18 (or 36 but not really) */
467 if (checkout_is_workdir_modified(data, &delta->old_file, &delta->new_file, wd))
468 *action = CHECKOUT_ACTION_IF(FORCE, UPDATE_BLOB, CONFLICT);
469 else
470 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
471 break;
472 case GIT_DELTA_TYPECHANGE: /* case 22, 23, 29, 30 */
473 if (delta->old_file.mode == GIT_FILEMODE_TREE) {
474 if (wd->mode == GIT_FILEMODE_TREE)
475 /* either deleting items in old tree will delete the wd dir,
476 * or we'll get a conflict when we attempt blob update...
477 */
478 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
479 else if (wd->mode == GIT_FILEMODE_COMMIT) {
480 /* workdir is possibly a "phantom" submodule - treat as a
481 * tree if the only submodule info came from the config
482 */
483 if (submodule_is_config_only(data, wd->path))
484 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
485 else
486 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
487 } else
488 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE, CONFLICT);
489 }
490 else if (checkout_is_workdir_modified(data, &delta->old_file, &delta->new_file, wd))
491 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
492 else
493 *action = CHECKOUT_ACTION_IF(SAFE, REMOVE_AND_UPDATE, NONE);
494
495 /* don't update if the typechange is to a tree */
496 if (delta->new_file.mode == GIT_FILEMODE_TREE)
497 *action = (*action & ~CHECKOUT_ACTION__UPDATE_BLOB);
498 break;
499 default: /* impossible */
500 break;
501 }
502
503 return checkout_action_common(action, data, delta, wd);
504 }
505
506 static int checkout_action_with_wd_blocker(
507 int *action,
508 checkout_data *data,
509 const git_diff_delta *delta,
510 const git_index_entry *wd)
511 {
512 *action = CHECKOUT_ACTION__NONE;
513
514 switch (delta->status) {
515 case GIT_DELTA_UNMODIFIED:
516 /* should show delta as dirty / deleted */
517 GITERR_CHECK_ERROR(
518 checkout_notify(data, GIT_CHECKOUT_NOTIFY_DIRTY, delta, wd) );
519 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, NONE);
520 break;
521 case GIT_DELTA_ADDED:
522 case GIT_DELTA_MODIFIED:
523 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
524 break;
525 case GIT_DELTA_DELETED:
526 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE, CONFLICT);
527 break;
528 case GIT_DELTA_TYPECHANGE:
529 /* not 100% certain about this... */
530 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
531 break;
532 default: /* impossible */
533 break;
534 }
535
536 return checkout_action_common(action, data, delta, wd);
537 }
538
539 static int checkout_action_with_wd_dir(
540 int *action,
541 checkout_data *data,
542 const git_diff_delta *delta,
543 git_iterator *workdir,
544 const git_index_entry *wd)
545 {
546 *action = CHECKOUT_ACTION__NONE;
547
548 switch (delta->status) {
549 case GIT_DELTA_UNMODIFIED: /* case 19 or 24 (or 34 but not really) */
550 GITERR_CHECK_ERROR(
551 checkout_notify(data, GIT_CHECKOUT_NOTIFY_DIRTY, delta, NULL));
552 GITERR_CHECK_ERROR(
553 checkout_notify(data, GIT_CHECKOUT_NOTIFY_UNTRACKED, NULL, wd));
554 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, NONE);
555 break;
556 case GIT_DELTA_ADDED:/* case 4 (and 7 for dir) */
557 case GIT_DELTA_MODIFIED: /* case 20 (or 37 but not really) */
558 if (delta->old_file.mode == GIT_FILEMODE_COMMIT)
559 /* expected submodule (and maybe found one) */;
560 else if (delta->new_file.mode != GIT_FILEMODE_TREE)
561 *action = git_iterator_current_is_ignored(workdir) ?
562 CHECKOUT_ACTION_IF(DONT_OVERWRITE_IGNORED, CONFLICT, REMOVE_AND_UPDATE) :
563 CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
564 break;
565 case GIT_DELTA_DELETED: /* case 11 (and 27 for dir) */
566 if (delta->old_file.mode != GIT_FILEMODE_TREE)
567 GITERR_CHECK_ERROR(
568 checkout_notify(data, GIT_CHECKOUT_NOTIFY_UNTRACKED, NULL, wd));
569 break;
570 case GIT_DELTA_TYPECHANGE: /* case 24 or 31 */
571 if (delta->old_file.mode == GIT_FILEMODE_TREE) {
572 /* For typechange from dir, remove dir and add blob, but it is
573 * not safe to remove dir if it contains modified files.
574 * However, safely removing child files will remove the parent
575 * directory if is it left empty, so we can defer removing the
576 * dir and it will succeed if no children are left.
577 */
578 *action = CHECKOUT_ACTION_IF(SAFE, UPDATE_BLOB, NONE);
579 }
580 else if (delta->new_file.mode != GIT_FILEMODE_TREE)
581 /* For typechange to dir, dir is already created so no action */
582 *action = CHECKOUT_ACTION_IF(FORCE, REMOVE_AND_UPDATE, CONFLICT);
583 break;
584 default: /* impossible */
585 break;
586 }
587
588 return checkout_action_common(action, data, delta, wd);
589 }
590
591 static int checkout_action_with_wd_dir_empty(
592 int *action,
593 checkout_data *data,
594 const git_diff_delta *delta)
595 {
596 int error = checkout_action_no_wd(action, data, delta);
597
598 /* We can always safely remove an empty directory. */
599 if (error == 0 && *action != CHECKOUT_ACTION__NONE)
600 *action |= CHECKOUT_ACTION__REMOVE;
601
602 return error;
603 }
604
605 static int checkout_action(
606 int *action,
607 checkout_data *data,
608 git_diff_delta *delta,
609 git_iterator *workdir,
610 const git_index_entry **wditem,
611 git_vector *pathspec)
612 {
613 int cmp = -1, error;
614 int (*strcomp)(const char *, const char *) = data->diff->strcomp;
615 int (*pfxcomp)(const char *str, const char *pfx) = data->diff->pfxcomp;
616 int (*advance)(const git_index_entry **, git_iterator *) = NULL;
617
618 /* move workdir iterator to follow along with deltas */
619
620 while (1) {
621 const git_index_entry *wd = *wditem;
622
623 if (!wd)
624 return checkout_action_no_wd(action, data, delta);
625
626 cmp = strcomp(wd->path, delta->old_file.path);
627
628 /* 1. wd before delta ("a/a" before "a/b")
629 * 2. wd prefixes delta & should expand ("a/" before "a/b")
630 * 3. wd prefixes delta & cannot expand ("a/b" before "a/b/c")
631 * 4. wd equals delta ("a/b" and "a/b")
632 * 5. wd after delta & delta prefixes wd ("a/b/c" after "a/b/" or "a/b")
633 * 6. wd after delta ("a/c" after "a/b")
634 */
635
636 if (cmp < 0) {
637 cmp = pfxcomp(delta->old_file.path, wd->path);
638
639 if (cmp == 0) {
640 if (wd->mode == GIT_FILEMODE_TREE) {
641 /* case 2 - entry prefixed by workdir tree */
642 error = git_iterator_advance_into_or_over(wditem, workdir);
643 if (error < 0 && error != GIT_ITEROVER)
644 goto done;
645 continue;
646 }
647
648 /* case 3 maybe - wd contains non-dir where dir expected */
649 if (delta->old_file.path[strlen(wd->path)] == '/') {
650 error = checkout_action_with_wd_blocker(
651 action, data, delta, wd);
652 advance = git_iterator_advance;
653 goto done;
654 }
655 }
656
657 /* case 1 - handle wd item (if it matches pathspec) */
658 error = checkout_action_wd_only(data, workdir, wditem, pathspec);
659 if (error && error != GIT_ITEROVER)
660 goto done;
661 continue;
662 }
663
664 if (cmp == 0) {
665 /* case 4 */
666 error = checkout_action_with_wd(action, data, delta, workdir, wd);
667 advance = git_iterator_advance;
668 goto done;
669 }
670
671 cmp = pfxcomp(wd->path, delta->old_file.path);
672
673 if (cmp == 0) { /* case 5 */
674 if (wd->path[strlen(delta->old_file.path)] != '/')
675 return checkout_action_no_wd(action, data, delta);
676
677 if (delta->status == GIT_DELTA_TYPECHANGE) {
678 if (delta->old_file.mode == GIT_FILEMODE_TREE) {
679 error = checkout_action_with_wd(action, data, delta, workdir, wd);
680 advance = git_iterator_advance_into;
681 goto done;
682 }
683
684 if (delta->new_file.mode == GIT_FILEMODE_TREE ||
685 delta->new_file.mode == GIT_FILEMODE_COMMIT ||
686 delta->old_file.mode == GIT_FILEMODE_COMMIT)
687 {
688 error = checkout_action_with_wd(action, data, delta, workdir, wd);
689 advance = git_iterator_advance;
690 goto done;
691 }
692 }
693
694 return checkout_is_empty_dir(data, wd->path) ?
695 checkout_action_with_wd_dir_empty(action, data, delta) :
696 checkout_action_with_wd_dir(action, data, delta, workdir, wd);
697 }
698
699 /* case 6 - wd is after delta */
700 return checkout_action_no_wd(action, data, delta);
701 }
702
703 done:
704 if (!error && advance != NULL &&
705 (error = advance(wditem, workdir)) < 0) {
706 *wditem = NULL;
707 if (error == GIT_ITEROVER)
708 error = 0;
709 }
710
711 return error;
712 }
713
714 static int checkout_remaining_wd_items(
715 checkout_data *data,
716 git_iterator *workdir,
717 const git_index_entry *wd,
718 git_vector *spec)
719 {
720 int error = 0;
721
722 while (wd && !error)
723 error = checkout_action_wd_only(data, workdir, &wd, spec);
724
725 if (error == GIT_ITEROVER)
726 error = 0;
727
728 return error;
729 }
730
731 GIT_INLINE(int) checkout_idxentry_cmp(
732 const git_index_entry *a,
733 const git_index_entry *b)
734 {
735 if (!a && !b)
736 return 0;
737 else if (!a && b)
738 return -1;
739 else if(a && !b)
740 return 1;
741 else
742 return strcmp(a->path, b->path);
743 }
744
745 static int checkout_conflictdata_cmp(const void *a, const void *b)
746 {
747 const checkout_conflictdata *ca = a;
748 const checkout_conflictdata *cb = b;
749 int diff;
750
751 if ((diff = checkout_idxentry_cmp(ca->ancestor, cb->ancestor)) == 0 &&
752 (diff = checkout_idxentry_cmp(ca->ours, cb->theirs)) == 0)
753 diff = checkout_idxentry_cmp(ca->theirs, cb->theirs);
754
755 return diff;
756 }
757
758 int checkout_conflictdata_empty(
759 const git_vector *conflicts, size_t idx, void *payload)
760 {
761 checkout_conflictdata *conflict;
762
763 GIT_UNUSED(payload);
764
765 if ((conflict = git_vector_get(conflicts, idx)) == NULL)
766 return -1;
767
768 if (conflict->ancestor || conflict->ours || conflict->theirs)
769 return 0;
770
771 git__free(conflict);
772 return 1;
773 }
774
775 GIT_INLINE(bool) conflict_pathspec_match(
776 checkout_data *data,
777 git_iterator *workdir,
778 git_vector *pathspec,
779 const git_index_entry *ancestor,
780 const git_index_entry *ours,
781 const git_index_entry *theirs)
782 {
783 /* if the pathspec matches ours *or* theirs, proceed */
784 if (ours && git_pathspec__match(pathspec, ours->path,
785 (data->strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH) != 0,
786 git_iterator_ignore_case(workdir), NULL, NULL))
787 return true;
788
789 if (theirs && git_pathspec__match(pathspec, theirs->path,
790 (data->strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH) != 0,
791 git_iterator_ignore_case(workdir), NULL, NULL))
792 return true;
793
794 if (ancestor && git_pathspec__match(pathspec, ancestor->path,
795 (data->strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH) != 0,
796 git_iterator_ignore_case(workdir), NULL, NULL))
797 return true;
798
799 return false;
800 }
801
802 GIT_INLINE(int) checkout_conflict_detect_submodule(checkout_conflictdata *conflict)
803 {
804 conflict->submodule = ((conflict->ancestor && S_ISGITLINK(conflict->ancestor->mode)) ||
805 (conflict->ours && S_ISGITLINK(conflict->ours->mode)) ||
806 (conflict->theirs && S_ISGITLINK(conflict->theirs->mode)));
807 return 0;
808 }
809
810 GIT_INLINE(int) checkout_conflict_detect_binary(git_repository *repo, checkout_conflictdata *conflict)
811 {
812 git_blob *ancestor_blob = NULL, *our_blob = NULL, *their_blob = NULL;
813 int error = 0;
814
815 if (conflict->submodule)
816 return 0;
817
818 if (conflict->ancestor) {
819 if ((error = git_blob_lookup(&ancestor_blob, repo, &conflict->ancestor->id)) < 0)
820 goto done;
821
822 conflict->binary = git_blob_is_binary(ancestor_blob);
823 }
824
825 if (!conflict->binary && conflict->ours) {
826 if ((error = git_blob_lookup(&our_blob, repo, &conflict->ours->id)) < 0)
827 goto done;
828
829 conflict->binary = git_blob_is_binary(our_blob);
830 }
831
832 if (!conflict->binary && conflict->theirs) {
833 if ((error = git_blob_lookup(&their_blob, repo, &conflict->theirs->id)) < 0)
834 goto done;
835
836 conflict->binary = git_blob_is_binary(their_blob);
837 }
838
839 done:
840 git_blob_free(ancestor_blob);
841 git_blob_free(our_blob);
842 git_blob_free(their_blob);
843
844 return error;
845 }
846
847 static int checkout_conflict_append_update(
848 const git_index_entry *ancestor,
849 const git_index_entry *ours,
850 const git_index_entry *theirs,
851 void *payload)
852 {
853 checkout_data *data = payload;
854 checkout_conflictdata *conflict;
855 int error;
856
857 conflict = git__calloc(1, sizeof(checkout_conflictdata));
858 GITERR_CHECK_ALLOC(conflict);
859
860 conflict->ancestor = ancestor;
861 conflict->ours = ours;
862 conflict->theirs = theirs;
863
864 if ((error = checkout_conflict_detect_submodule(conflict)) < 0 ||
865 (error = checkout_conflict_detect_binary(data->repo, conflict)) < 0)
866 {
867 git__free(conflict);
868 return error;
869 }
870
871 if (git_vector_insert(&data->update_conflicts, conflict))
872 return -1;
873
874 return 0;
875 }
876
877 static int checkout_conflicts_foreach(
878 checkout_data *data,
879 git_index *index,
880 git_iterator *workdir,
881 git_vector *pathspec,
882 int (*cb)(const git_index_entry *, const git_index_entry *, const git_index_entry *, void *),
883 void *payload)
884 {
885 git_index_conflict_iterator *iterator = NULL;
886 const git_index_entry *ancestor, *ours, *theirs;
887 int error = 0;
888
889 if ((error = git_index_conflict_iterator_new(&iterator, index)) < 0)
890 goto done;
891
892 /* Collect the conflicts */
893 while ((error = git_index_conflict_next(&ancestor, &ours, &theirs, iterator)) == 0) {
894 if (!conflict_pathspec_match(data, workdir, pathspec, ancestor, ours, theirs))
895 continue;
896
897 if ((error = cb(ancestor, ours, theirs, payload)) < 0)
898 goto done;
899 }
900
901 if (error == GIT_ITEROVER)
902 error = 0;
903
904 done:
905 git_index_conflict_iterator_free(iterator);
906
907 return error;
908 }
909
910 static int checkout_conflicts_load(checkout_data *data, git_iterator *workdir, git_vector *pathspec)
911 {
912 git_index *index;
913
914 /* Only write conficts from sources that have them: indexes. */
915 if ((index = git_iterator_get_index(data->target)) == NULL)
916 return 0;
917
918 data->update_conflicts._cmp = checkout_conflictdata_cmp;
919
920 if (checkout_conflicts_foreach(data, index, workdir, pathspec, checkout_conflict_append_update, data) < 0)
921 return -1;
922
923 /* Collect the REUC and NAME entries */
924 data->update_reuc = &index->reuc;
925 data->update_names = &index->names;
926
927 return 0;
928 }
929
930 GIT_INLINE(int) checkout_conflicts_cmp_entry(
931 const char *path,
932 const git_index_entry *entry)
933 {
934 return strcmp((const char *)path, entry->path);
935 }
936
937 static int checkout_conflicts_cmp_ancestor(const void *p, const void *c)
938 {
939 const char *path = p;
940 const checkout_conflictdata *conflict = c;
941
942 if (!conflict->ancestor)
943 return 1;
944
945 return checkout_conflicts_cmp_entry(path, conflict->ancestor);
946 }
947
948 static checkout_conflictdata *checkout_conflicts_search_ancestor(
949 checkout_data *data,
950 const char *path)
951 {
952 size_t pos;
953
954 if (git_vector_bsearch2(&pos, &data->update_conflicts, checkout_conflicts_cmp_ancestor, path) < 0)
955 return NULL;
956
957 return git_vector_get(&data->update_conflicts, pos);
958 }
959
960 static checkout_conflictdata *checkout_conflicts_search_branch(
961 checkout_data *data,
962 const char *path)
963 {
964 checkout_conflictdata *conflict;
965 size_t i;
966
967 git_vector_foreach(&data->update_conflicts, i, conflict) {
968 int cmp = -1;
969
970 if (conflict->ancestor)
971 break;
972
973 if (conflict->ours)
974 cmp = checkout_conflicts_cmp_entry(path, conflict->ours);
975 else if (conflict->theirs)
976 cmp = checkout_conflicts_cmp_entry(path, conflict->theirs);
977
978 if (cmp == 0)
979 return conflict;
980 }
981
982 return NULL;
983 }
984
985 static int checkout_conflicts_load_byname_entry(
986 checkout_conflictdata **ancestor_out,
987 checkout_conflictdata **ours_out,
988 checkout_conflictdata **theirs_out,
989 checkout_data *data,
990 const git_index_name_entry *name_entry)
991 {
992 checkout_conflictdata *ancestor, *ours = NULL, *theirs = NULL;
993 int error = 0;
994
995 *ancestor_out = NULL;
996 *ours_out = NULL;
997 *theirs_out = NULL;
998
999 if (!name_entry->ancestor) {
1000 giterr_set(GITERR_INDEX, "A NAME entry exists without an ancestor");
1001 error = -1;
1002 goto done;
1003 }
1004
1005 if (!name_entry->ours && !name_entry->theirs) {
1006 giterr_set(GITERR_INDEX, "A NAME entry exists without an ours or theirs");
1007 error = -1;
1008 goto done;
1009 }
1010
1011 if ((ancestor = checkout_conflicts_search_ancestor(data,
1012 name_entry->ancestor)) == NULL) {
1013 giterr_set(GITERR_INDEX,
1014 "A NAME entry referenced ancestor entry '%s' which does not exist in the main index",
1015 name_entry->ancestor);
1016 error = -1;
1017 goto done;
1018 }
1019
1020 if (name_entry->ours) {
1021 if (strcmp(name_entry->ancestor, name_entry->ours) == 0)
1022 ours = ancestor;
1023 else if ((ours = checkout_conflicts_search_branch(data, name_entry->ours)) == NULL ||
1024 ours->ours == NULL) {
1025 giterr_set(GITERR_INDEX,
1026 "A NAME entry referenced our entry '%s' which does not exist in the main index",
1027 name_entry->ours);
1028 error = -1;
1029 goto done;
1030 }
1031 }
1032
1033 if (name_entry->theirs) {
1034 if (strcmp(name_entry->ancestor, name_entry->theirs) == 0)
1035 theirs = ancestor;
1036 else if (name_entry->ours && strcmp(name_entry->ours, name_entry->theirs) == 0)
1037 theirs = ours;
1038 else if ((theirs = checkout_conflicts_search_branch(data, name_entry->theirs)) == NULL ||
1039 theirs->theirs == NULL) {
1040 giterr_set(GITERR_INDEX,
1041 "A NAME entry referenced their entry '%s' which does not exist in the main index",
1042 name_entry->theirs);
1043 error = -1;
1044 goto done;
1045 }
1046 }
1047
1048 *ancestor_out = ancestor;
1049 *ours_out = ours;
1050 *theirs_out = theirs;
1051
1052 done:
1053 return error;
1054 }
1055
1056 static int checkout_conflicts_coalesce_renames(
1057 checkout_data *data)
1058 {
1059 git_index *index;
1060 const git_index_name_entry *name_entry;
1061 checkout_conflictdata *ancestor_conflict, *our_conflict, *their_conflict;
1062 size_t i, names;
1063 int error = 0;
1064
1065 if ((index = git_iterator_get_index(data->target)) == NULL)
1066 return 0;
1067
1068 /* Juggle entries based on renames */
1069 names = git_index_name_entrycount(index);
1070
1071 for (i = 0; i < names; i++) {
1072 name_entry = git_index_name_get_byindex(index, i);
1073
1074 if ((error = checkout_conflicts_load_byname_entry(
1075 &ancestor_conflict, &our_conflict, &their_conflict,
1076 data, name_entry)) < 0)
1077 goto done;
1078
1079 if (our_conflict && our_conflict != ancestor_conflict) {
1080 ancestor_conflict->ours = our_conflict->ours;
1081 our_conflict->ours = NULL;
1082
1083 if (our_conflict->theirs)
1084 our_conflict->name_collision = 1;
1085
1086 if (our_conflict->name_collision)
1087 ancestor_conflict->name_collision = 1;
1088 }
1089
1090 if (their_conflict && their_conflict != ancestor_conflict) {
1091 ancestor_conflict->theirs = their_conflict->theirs;
1092 their_conflict->theirs = NULL;
1093
1094 if (their_conflict->ours)
1095 their_conflict->name_collision = 1;
1096
1097 if (their_conflict->name_collision)
1098 ancestor_conflict->name_collision = 1;
1099 }
1100
1101 if (our_conflict && our_conflict != ancestor_conflict &&
1102 their_conflict && their_conflict != ancestor_conflict)
1103 ancestor_conflict->one_to_two = 1;
1104 }
1105
1106 git_vector_remove_matching(
1107 &data->update_conflicts, checkout_conflictdata_empty, NULL);
1108
1109 done:
1110 return error;
1111 }
1112
1113 static int checkout_conflicts_mark_directoryfile(
1114 checkout_data *data)
1115 {
1116 git_index *index;
1117 checkout_conflictdata *conflict;
1118 const git_index_entry *entry;
1119 size_t i, j, len;
1120 const char *path;
1121 int prefixed, error = 0;
1122
1123 if ((index = git_iterator_get_index(data->target)) == NULL)
1124 return 0;
1125
1126 len = git_index_entrycount(index);
1127
1128 /* Find d/f conflicts */
1129 git_vector_foreach(&data->update_conflicts, i, conflict) {
1130 if ((conflict->ours && conflict->theirs) ||
1131 (!conflict->ours && !conflict->theirs))
1132 continue;
1133
1134 path = conflict->ours ?
1135 conflict->ours->path : conflict->theirs->path;
1136
1137 if ((error = git_index_find(&j, index, path)) < 0) {
1138 if (error == GIT_ENOTFOUND)
1139 giterr_set(GITERR_INDEX,
1140 "Index inconsistency, could not find entry for expected conflict '%s'", path);
1141
1142 goto done;
1143 }
1144
1145 for (; j < len; j++) {
1146 if ((entry = git_index_get_byindex(index, j)) == NULL) {
1147 giterr_set(GITERR_INDEX,
1148 "Index inconsistency, truncated index while loading expected conflict '%s'", path);
1149 error = -1;
1150 goto done;
1151 }
1152
1153 prefixed = git_path_equal_or_prefixed(path, entry->path, NULL);
1154
1155 if (prefixed == GIT_PATH_EQUAL)
1156 continue;
1157
1158 if (prefixed == GIT_PATH_PREFIX)
1159 conflict->directoryfile = 1;
1160
1161 break;
1162 }
1163 }
1164
1165 done:
1166 return error;
1167 }
1168
1169 static int checkout_get_update_conflicts(
1170 checkout_data *data,
1171 git_iterator *workdir,
1172 git_vector *pathspec)
1173 {
1174 int error = 0;
1175
1176 if (data->strategy & GIT_CHECKOUT_SKIP_UNMERGED)
1177 return 0;
1178
1179 if ((error = checkout_conflicts_load(data, workdir, pathspec)) < 0 ||
1180 (error = checkout_conflicts_coalesce_renames(data)) < 0 ||
1181 (error = checkout_conflicts_mark_directoryfile(data)) < 0)
1182 goto done;
1183
1184 done:
1185 return error;
1186 }
1187
1188 static int checkout_conflict_append_remove(
1189 const git_index_entry *ancestor,
1190 const git_index_entry *ours,
1191 const git_index_entry *theirs,
1192 void *payload)
1193 {
1194 checkout_data *data = payload;
1195 const char *name;
1196
1197 assert(ancestor || ours || theirs);
1198
1199 if (ancestor)
1200 name = git__strdup(ancestor->path);
1201 else if (ours)
1202 name = git__strdup(ours->path);
1203 else if (theirs)
1204 name = git__strdup(theirs->path);
1205 else
1206 abort();
1207
1208 GITERR_CHECK_ALLOC(name);
1209
1210 return git_vector_insert(&data->remove_conflicts, (char *)name);
1211 }
1212
1213 static int checkout_get_remove_conflicts(
1214 checkout_data *data,
1215 git_iterator *workdir,
1216 git_vector *pathspec)
1217 {
1218 if ((data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) != 0)
1219 return 0;
1220
1221 return checkout_conflicts_foreach(data, data->index, workdir, pathspec, checkout_conflict_append_remove, data);
1222 }
1223
1224 static int checkout_verify_paths(
1225 git_repository *repo,
1226 int action,
1227 git_diff_delta *delta)
1228 {
1229 unsigned int flags = GIT_PATH_REJECT_WORKDIR_DEFAULTS;
1230
1231 if (action & CHECKOUT_ACTION__REMOVE) {
1232 if (!git_path_isvalid(repo, delta->old_file.path, flags)) {
1233 giterr_set(GITERR_CHECKOUT, "Cannot remove invalid path '%s'", delta->old_file.path);
1234 return -1;
1235 }
1236 }
1237
1238 if (action & ~CHECKOUT_ACTION__REMOVE) {
1239 if (!git_path_isvalid(repo, delta->new_file.path, flags)) {
1240 giterr_set(GITERR_CHECKOUT, "Cannot checkout to invalid path '%s'", delta->new_file.path);
1241 return -1;
1242 }
1243 }
1244
1245 return 0;
1246 }
1247
1248 static int checkout_get_actions(
1249 uint32_t **actions_ptr,
1250 size_t **counts_ptr,
1251 checkout_data *data,
1252 git_iterator *workdir)
1253 {
1254 int error = 0, act;
1255 const git_index_entry *wditem;
1256 git_vector pathspec = GIT_VECTOR_INIT, *deltas;
1257 git_pool pathpool;
1258 git_diff_delta *delta;
1259 size_t i, *counts = NULL;
1260 uint32_t *actions = NULL;
1261
1262 git_pool_init(&pathpool, 1);
1263
1264 if (data->opts.paths.count > 0 &&
1265 git_pathspec__vinit(&pathspec, &data->opts.paths, &pathpool) < 0)
1266 return -1;
1267
1268 if ((error = git_iterator_current(&wditem, workdir)) < 0 &&
1269 error != GIT_ITEROVER)
1270 goto fail;
1271
1272 deltas = &data->diff->deltas;
1273
1274 *counts_ptr = counts = git__calloc(CHECKOUT_ACTION__MAX+1, sizeof(size_t));
1275 *actions_ptr = actions = git__calloc(
1276 deltas->length ? deltas->length : 1, sizeof(uint32_t));
1277 if (!counts || !actions) {
1278 error = -1;
1279 goto fail;
1280 }
1281
1282 git_vector_foreach(deltas, i, delta) {
1283 if ((error = checkout_action(&act, data, delta, workdir, &wditem, &pathspec)) == 0)
1284 error = checkout_verify_paths(data->repo, act, delta);
1285
1286 if (error != 0)
1287 goto fail;
1288
1289 actions[i] = act;
1290
1291 if (act & CHECKOUT_ACTION__REMOVE)
1292 counts[CHECKOUT_ACTION__REMOVE]++;
1293 if (act & CHECKOUT_ACTION__UPDATE_BLOB)
1294 counts[CHECKOUT_ACTION__UPDATE_BLOB]++;
1295 if (act & CHECKOUT_ACTION__UPDATE_SUBMODULE)
1296 counts[CHECKOUT_ACTION__UPDATE_SUBMODULE]++;
1297 if (act & CHECKOUT_ACTION__CONFLICT)
1298 counts[CHECKOUT_ACTION__CONFLICT]++;
1299 }
1300
1301 error = checkout_remaining_wd_items(data, workdir, wditem, &pathspec);
1302 if (error)
1303 goto fail;
1304
1305 counts[CHECKOUT_ACTION__REMOVE] += data->removes.length;
1306
1307 if (counts[CHECKOUT_ACTION__CONFLICT] > 0 &&
1308 (data->strategy & GIT_CHECKOUT_ALLOW_CONFLICTS) == 0)
1309 {
1310 giterr_set(GITERR_CHECKOUT, "%"PRIuZ" %s checkout",
1311 counts[CHECKOUT_ACTION__CONFLICT],
1312 counts[CHECKOUT_ACTION__CONFLICT] == 1 ?
1313 "conflict prevents" : "conflicts prevent");
1314 error = GIT_ECONFLICT;
1315 goto fail;
1316 }
1317
1318
1319 if ((error = checkout_get_remove_conflicts(data, workdir, &pathspec)) < 0 ||
1320 (error = checkout_get_update_conflicts(data, workdir, &pathspec)) < 0)
1321 goto fail;
1322
1323 counts[CHECKOUT_ACTION__REMOVE_CONFLICT] = git_vector_length(&data->remove_conflicts);
1324 counts[CHECKOUT_ACTION__UPDATE_CONFLICT] = git_vector_length(&data->update_conflicts);
1325
1326 git_pathspec__vfree(&pathspec);
1327 git_pool_clear(&pathpool);
1328
1329 return 0;
1330
1331 fail:
1332 *counts_ptr = NULL;
1333 git__free(counts);
1334 *actions_ptr = NULL;
1335 git__free(actions);
1336
1337 git_pathspec__vfree(&pathspec);
1338 git_pool_clear(&pathpool);
1339
1340 return error;
1341 }
1342
1343 static bool should_remove_existing(checkout_data *data)
1344 {
1345 int ignorecase = 0;
1346
1347 git_repository__cvar(&ignorecase, data->repo, GIT_CVAR_IGNORECASE);
1348
1349 return (ignorecase &&
1350 (data->strategy & GIT_CHECKOUT_DONT_REMOVE_EXISTING) == 0);
1351 }
1352
1353 #define MKDIR_NORMAL \
1354 GIT_MKDIR_PATH | GIT_MKDIR_VERIFY_DIR
1355 #define MKDIR_REMOVE_EXISTING \
1356 MKDIR_NORMAL | GIT_MKDIR_REMOVE_FILES | GIT_MKDIR_REMOVE_SYMLINKS
1357
1358 static int checkout_mkdir(
1359 checkout_data *data,
1360 const char *path,
1361 const char *base,
1362 mode_t mode,
1363 unsigned int flags)
1364 {
1365 struct git_futils_mkdir_options mkdir_opts = {0};
1366 int error;
1367
1368 mkdir_opts.dir_map = data->mkdir_map;
1369 mkdir_opts.pool = &data->pool;
1370
1371 error = git_futils_mkdir_relative(
1372 path, base, mode, flags, &mkdir_opts);
1373
1374 data->perfdata.mkdir_calls += mkdir_opts.perfdata.mkdir_calls;
1375 data->perfdata.stat_calls += mkdir_opts.perfdata.stat_calls;
1376 data->perfdata.chmod_calls += mkdir_opts.perfdata.chmod_calls;
1377
1378 return error;
1379 }
1380
1381 static int mkpath2file(
1382 checkout_data *data, const char *path, unsigned int mode)
1383 {
1384 struct stat st;
1385 bool remove_existing = should_remove_existing(data);
1386 unsigned int flags =
1387 (remove_existing ? MKDIR_REMOVE_EXISTING : MKDIR_NORMAL) |
1388 GIT_MKDIR_SKIP_LAST;
1389 int error;
1390
1391 if ((error = checkout_mkdir(
1392 data, path, data->opts.target_directory, mode, flags)) < 0)
1393 return error;
1394
1395 if (remove_existing) {
1396 data->perfdata.stat_calls++;
1397
1398 if (p_lstat(path, &st) == 0) {
1399
1400 /* Some file, symlink or folder already exists at this name.
1401 * We would have removed it in remove_the_old unless we're on
1402 * a case inensitive filesystem (or the user has asked us not
1403 * to). Remove the similarly named file to write the new.
1404 */
1405 error = git_futils_rmdir_r(path, NULL, GIT_RMDIR_REMOVE_FILES);
1406 } else if (errno != ENOENT) {
1407 giterr_set(GITERR_OS, "Failed to stat file '%s'", path);
1408 return GIT_EEXISTS;
1409 } else {
1410 giterr_clear();
1411 }
1412 }
1413
1414 return error;
1415 }
1416
1417 struct checkout_stream {
1418 git_writestream base;
1419 const char *path;
1420 int fd;
1421 int open;
1422 };
1423
1424 static int checkout_stream_write(
1425 git_writestream *s, const char *buffer, size_t len)
1426 {
1427 struct checkout_stream *stream = (struct checkout_stream *)s;
1428 int ret;
1429
1430 if ((ret = p_write(stream->fd, buffer, len)) < 0)
1431 giterr_set(GITERR_OS, "Could not write to '%s'", stream->path);
1432
1433 return ret;
1434 }
1435
1436 static int checkout_stream_close(git_writestream *s)
1437 {
1438 struct checkout_stream *stream = (struct checkout_stream *)s;
1439 assert(stream && stream->open);
1440
1441 stream->open = 0;
1442 return p_close(stream->fd);
1443 }
1444
1445 static void checkout_stream_free(git_writestream *s)
1446 {
1447 GIT_UNUSED(s);
1448 }
1449
1450 static int blob_content_to_file(
1451 checkout_data *data,
1452 struct stat *st,
1453 git_blob *blob,
1454 const char *path,
1455 const char *hint_path,
1456 mode_t entry_filemode)
1457 {
1458 int flags = data->opts.file_open_flags;
1459 mode_t file_mode = data->opts.file_mode ?
1460 data->opts.file_mode : entry_filemode;
1461 git_filter_options filter_opts = GIT_FILTER_OPTIONS_INIT;
1462 struct checkout_stream writer;
1463 mode_t mode;
1464 git_filter_list *fl = NULL;
1465 int fd;
1466 int error = 0;
1467
1468 if (hint_path == NULL)
1469 hint_path = path;
1470
1471 if ((error = mkpath2file(data, path, data->opts.dir_mode)) < 0)
1472 return error;
1473
1474 if (flags <= 0)
1475 flags = O_CREAT | O_TRUNC | O_WRONLY;
1476 if (!(mode = file_mode))
1477 mode = GIT_FILEMODE_BLOB;
1478
1479 if ((fd = p_open(path, flags, mode)) < 0) {
1480 giterr_set(GITERR_OS, "Could not open '%s' for writing", path);
1481 return fd;
1482 }
1483
1484 filter_opts.attr_session = &data->attr_session;
1485 filter_opts.temp_buf = &data->tmp;
1486
1487 if (!data->opts.disable_filters &&
1488 (error = git_filter_list__load_ext(
1489 &fl, data->repo, blob, hint_path,
1490 GIT_FILTER_TO_WORKTREE, &filter_opts))) {
1491 p_close(fd);
1492 return error;
1493 }
1494
1495 /* setup the writer */
1496 memset(&writer, 0, sizeof(struct checkout_stream));
1497 writer.base.write = checkout_stream_write;
1498 writer.base.close = checkout_stream_close;
1499 writer.base.free = checkout_stream_free;
1500 writer.path = path;
1501 writer.fd = fd;
1502 writer.open = 1;
1503
1504 error = git_filter_list_stream_blob(fl, blob, &writer.base);
1505
1506 assert(writer.open == 0);
1507
1508 git_filter_list_free(fl);
1509
1510 if (error < 0)
1511 return error;
1512
1513 if (st) {
1514 data->perfdata.stat_calls++;
1515
1516 if ((error = p_stat(path, st)) < 0) {
1517 giterr_set(GITERR_OS, "Error statting '%s'", path);
1518 return error;
1519 }
1520
1521 st->st_mode = entry_filemode;
1522 }
1523
1524 return 0;
1525 }
1526
1527 static int blob_content_to_link(
1528 checkout_data *data,
1529 struct stat *st,
1530 git_blob *blob,
1531 const char *path)
1532 {
1533 git_buf linktarget = GIT_BUF_INIT;
1534 int error;
1535
1536 if ((error = mkpath2file(data, path, data->opts.dir_mode)) < 0)
1537 return error;
1538
1539 if ((error = git_blob__getbuf(&linktarget, blob)) < 0)
1540 return error;
1541
1542 if (data->can_symlink) {
1543 if ((error = p_symlink(git_buf_cstr(&linktarget), path)) < 0)
1544 giterr_set(GITERR_OS, "Could not create symlink %s", path);
1545 } else {
1546 error = git_futils_fake_symlink(git_buf_cstr(&linktarget), path);
1547 }
1548
1549 if (!error) {
1550 data->perfdata.stat_calls++;
1551
1552 if ((error = p_lstat(path, st)) < 0)
1553 giterr_set(GITERR_CHECKOUT, "Could not stat symlink %s", path);
1554
1555 st->st_mode = GIT_FILEMODE_LINK;
1556 }
1557
1558 git_buf_free(&linktarget);
1559
1560 return error;
1561 }
1562
1563 static int checkout_update_index(
1564 checkout_data *data,
1565 const git_diff_file *file,
1566 struct stat *st)
1567 {
1568 git_index_entry entry;
1569
1570 if (!data->index)
1571 return 0;
1572
1573 memset(&entry, 0, sizeof(entry));
1574 entry.path = (char *)file->path; /* cast to prevent warning */
1575 git_index_entry__init_from_stat(&entry, st, true);
1576 git_oid_cpy(&entry.id, &file->id);
1577
1578 return git_index_add(data->index, &entry);
1579 }
1580
1581 static int checkout_submodule_update_index(
1582 checkout_data *data,
1583 const git_diff_file *file)
1584 {
1585 struct stat st;
1586
1587 /* update the index unless prevented */
1588 if ((data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) != 0)
1589 return 0;
1590
1591 git_buf_truncate(&data->path, data->workdir_len);
1592 if (git_buf_puts(&data->path, file->path) < 0)
1593 return -1;
1594
1595 data->perfdata.stat_calls++;
1596 if (p_stat(git_buf_cstr(&data->path), &st) < 0) {
1597 giterr_set(
1598 GITERR_CHECKOUT, "Could not stat submodule %s\n", file->path);
1599 return GIT_ENOTFOUND;
1600 }
1601
1602 st.st_mode = GIT_FILEMODE_COMMIT;
1603
1604 return checkout_update_index(data, file, &st);
1605 }
1606
1607 static int checkout_submodule(
1608 checkout_data *data,
1609 const git_diff_file *file)
1610 {
1611 bool remove_existing = should_remove_existing(data);
1612 int error = 0;
1613
1614 /* Until submodules are supported, UPDATE_ONLY means do nothing here */
1615 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0)
1616 return 0;
1617
1618 if ((error = checkout_mkdir(
1619 data,
1620 file->path, data->opts.target_directory, data->opts.dir_mode,
1621 remove_existing ? MKDIR_REMOVE_EXISTING : MKDIR_NORMAL)) < 0)
1622 return error;
1623
1624 if ((error = git_submodule_lookup(NULL, data->repo, file->path)) < 0) {
1625 /* I've observed repos with submodules in the tree that do not
1626 * have a .gitmodules - core Git just makes an empty directory
1627 */
1628 if (error == GIT_ENOTFOUND) {
1629 giterr_clear();
1630 return checkout_submodule_update_index(data, file);
1631 }
1632
1633 return error;
1634 }
1635
1636 /* TODO: Support checkout_strategy options. Two circumstances:
1637 * 1 - submodule already checked out, but we need to move the HEAD
1638 * to the new OID, or
1639 * 2 - submodule not checked out and we should recursively check it out
1640 *
1641 * Checkout will not execute a pull on the submodule, but a clone
1642 * command should probably be able to. Do we need a submodule callback?
1643 */
1644
1645 return checkout_submodule_update_index(data, file);
1646 }
1647
1648 static void report_progress(
1649 checkout_data *data,
1650 const char *path)
1651 {
1652 if (data->opts.progress_cb)
1653 data->opts.progress_cb(
1654 path, data->completed_steps, data->total_steps,
1655 data->opts.progress_payload);
1656 }
1657
1658 static int checkout_safe_for_update_only(
1659 checkout_data *data, const char *path, mode_t expected_mode)
1660 {
1661 struct stat st;
1662
1663 data->perfdata.stat_calls++;
1664
1665 if (p_lstat(path, &st) < 0) {
1666 /* if doesn't exist, then no error and no update */
1667 if (errno == ENOENT || errno == ENOTDIR)
1668 return 0;
1669
1670 /* otherwise, stat error and no update */
1671 giterr_set(GITERR_OS, "Failed to stat file '%s'", path);
1672 return -1;
1673 }
1674
1675 /* only safe for update if this is the same type of file */
1676 if ((st.st_mode & ~0777) == (expected_mode & ~0777))
1677 return 1;
1678
1679 return 0;
1680 }
1681
1682 static int checkout_write_content(
1683 checkout_data *data,
1684 const git_oid *oid,
1685 const char *full_path,
1686 const char *hint_path,
1687 unsigned int mode,
1688 struct stat *st)
1689 {
1690 int error = 0;
1691 git_blob *blob;
1692
1693 if ((error = git_blob_lookup(&blob, data->repo, oid)) < 0)
1694 return error;
1695
1696 if (S_ISLNK(mode))
1697 error = blob_content_to_link(data, st, blob, full_path);
1698 else
1699 error = blob_content_to_file(data, st, blob, full_path, hint_path, mode);
1700
1701 git_blob_free(blob);
1702
1703 /* if we try to create the blob and an existing directory blocks it from
1704 * being written, then there must have been a typechange conflict in a
1705 * parent directory - suppress the error and try to continue.
1706 */
1707 if ((data->strategy & GIT_CHECKOUT_ALLOW_CONFLICTS) != 0 &&
1708 (error == GIT_ENOTFOUND || error == GIT_EEXISTS))
1709 {
1710 giterr_clear();
1711 error = 0;
1712 }
1713
1714 return error;
1715 }
1716
1717 static int checkout_blob(
1718 checkout_data *data,
1719 const git_diff_file *file)
1720 {
1721 int error = 0;
1722 struct stat st;
1723
1724 git_buf_truncate(&data->path, data->workdir_len);
1725 if (git_buf_puts(&data->path, file->path) < 0)
1726 return -1;
1727
1728 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0) {
1729 int rval = checkout_safe_for_update_only(
1730 data, git_buf_cstr(&data->path), file->mode);
1731 if (rval <= 0)
1732 return rval;
1733 }
1734
1735 error = checkout_write_content(
1736 data, &file->id, git_buf_cstr(&data->path), NULL, file->mode, &st);
1737
1738 /* update the index unless prevented */
1739 if (!error && (data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) == 0)
1740 error = checkout_update_index(data, file, &st);
1741
1742 /* update the submodule data if this was a new .gitmodules file */
1743 if (!error && strcmp(file->path, ".gitmodules") == 0)
1744 data->reload_submodules = true;
1745
1746 return error;
1747 }
1748
1749 static int checkout_remove_the_old(
1750 unsigned int *actions,
1751 checkout_data *data)
1752 {
1753 int error = 0;
1754 git_diff_delta *delta;
1755 const char *str;
1756 size_t i;
1757 const char *workdir = git_buf_cstr(&data->path);
1758 uint32_t flg = GIT_RMDIR_EMPTY_PARENTS |
1759 GIT_RMDIR_REMOVE_FILES | GIT_RMDIR_REMOVE_BLOCKERS;
1760
1761 if (data->opts.checkout_strategy & GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES)
1762 flg |= GIT_RMDIR_SKIP_NONEMPTY;
1763
1764 git_buf_truncate(&data->path, data->workdir_len);
1765
1766 git_vector_foreach(&data->diff->deltas, i, delta) {
1767 if (actions[i] & CHECKOUT_ACTION__REMOVE) {
1768 error = git_futils_rmdir_r(delta->old_file.path, workdir, flg);
1769 if (error < 0)
1770 return error;
1771
1772 data->completed_steps++;
1773 report_progress(data, delta->old_file.path);
1774
1775 if ((actions[i] & CHECKOUT_ACTION__UPDATE_BLOB) == 0 &&
1776 (data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) == 0 &&
1777 data->index != NULL)
1778 {
1779 (void)git_index_remove(data->index, delta->old_file.path, 0);
1780 }
1781 }
1782 }
1783
1784 git_vector_foreach(&data->removes, i, str) {
1785 error = git_futils_rmdir_r(str, workdir, flg);
1786 if (error < 0)
1787 return error;
1788
1789 data->completed_steps++;
1790 report_progress(data, str);
1791
1792 if ((data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) == 0 &&
1793 data->index != NULL)
1794 {
1795 if (str[strlen(str) - 1] == '/')
1796 (void)git_index_remove_directory(data->index, str, 0);
1797 else
1798 (void)git_index_remove(data->index, str, 0);
1799 }
1800 }
1801
1802 return 0;
1803 }
1804
1805 static int checkout_deferred_remove(git_repository *repo, const char *path)
1806 {
1807 #if 0
1808 int error = git_futils_rmdir_r(
1809 path, data->opts.target_directory, GIT_RMDIR_EMPTY_PARENTS);
1810
1811 if (error == GIT_ENOTFOUND) {
1812 error = 0;
1813 giterr_clear();
1814 }
1815
1816 return error;
1817 #else
1818 GIT_UNUSED(repo);
1819 GIT_UNUSED(path);
1820 assert(false);
1821 return 0;
1822 #endif
1823 }
1824
1825 static int checkout_create_the_new(
1826 unsigned int *actions,
1827 checkout_data *data)
1828 {
1829 int error = 0;
1830 git_diff_delta *delta;
1831 size_t i;
1832
1833 git_vector_foreach(&data->diff->deltas, i, delta) {
1834 if (actions[i] & CHECKOUT_ACTION__DEFER_REMOVE) {
1835 /* this had a blocker directory that should only be removed iff
1836 * all of the contents of the directory were safely removed
1837 */
1838 if ((error = checkout_deferred_remove(
1839 data->repo, delta->old_file.path)) < 0)
1840 return error;
1841 }
1842
1843 if (actions[i] & CHECKOUT_ACTION__UPDATE_BLOB) {
1844 error = checkout_blob(data, &delta->new_file);
1845 if (error < 0)
1846 return error;
1847
1848 data->completed_steps++;
1849 report_progress(data, delta->new_file.path);
1850 }
1851 }
1852
1853 return 0;
1854 }
1855
1856 static int checkout_create_submodules(
1857 unsigned int *actions,
1858 checkout_data *data)
1859 {
1860 int error = 0;
1861 git_diff_delta *delta;
1862 size_t i;
1863
1864 git_vector_foreach(&data->diff->deltas, i, delta) {
1865 if (actions[i] & CHECKOUT_ACTION__DEFER_REMOVE) {
1866 /* this has a blocker directory that should only be removed iff
1867 * all of the contents of the directory were safely removed
1868 */
1869 if ((error = checkout_deferred_remove(
1870 data->repo, delta->old_file.path)) < 0)
1871 return error;
1872 }
1873
1874 if (actions[i] & CHECKOUT_ACTION__UPDATE_SUBMODULE) {
1875 int error = checkout_submodule(data, &delta->new_file);
1876 if (error < 0)
1877 return error;
1878
1879 data->completed_steps++;
1880 report_progress(data, delta->new_file.path);
1881 }
1882 }
1883
1884 return 0;
1885 }
1886
1887 static int checkout_lookup_head_tree(git_tree **out, git_repository *repo)
1888 {
1889 int error = 0;
1890 git_reference *ref = NULL;
1891 git_object *head;
1892
1893 if (!(error = git_repository_head(&ref, repo)) &&
1894 !(error = git_reference_peel(&head, ref, GIT_OBJ_TREE)))
1895 *out = (git_tree *)head;
1896
1897 git_reference_free(ref);
1898
1899 return error;
1900 }
1901
1902
1903 static int conflict_entry_name(
1904 git_buf *out,
1905 const char *side_name,
1906 const char *filename)
1907 {
1908 if (git_buf_puts(out, side_name) < 0 ||
1909 git_buf_putc(out, ':') < 0 ||
1910 git_buf_puts(out, filename) < 0)
1911 return -1;
1912
1913 return 0;
1914 }
1915
1916 static int checkout_path_suffixed(git_buf *path, const char *suffix)
1917 {
1918 size_t path_len;
1919 int i = 0, error = 0;
1920
1921 if ((error = git_buf_putc(path, '~')) < 0 || (error = git_buf_puts(path, suffix)) < 0)
1922 return -1;
1923
1924 path_len = git_buf_len(path);
1925
1926 while (git_path_exists(git_buf_cstr(path)) && i < INT_MAX) {
1927 git_buf_truncate(path, path_len);
1928
1929 if ((error = git_buf_putc(path, '_')) < 0 ||
1930 (error = git_buf_printf(path, "%d", i)) < 0)
1931 return error;
1932
1933 i++;
1934 }
1935
1936 if (i == INT_MAX) {
1937 git_buf_truncate(path, path_len);
1938
1939 giterr_set(GITERR_CHECKOUT, "Could not write '%s': working directory file exists", path);
1940 return GIT_EEXISTS;
1941 }
1942
1943 return 0;
1944 }
1945
1946 static int checkout_write_entry(
1947 checkout_data *data,
1948 checkout_conflictdata *conflict,
1949 const git_index_entry *side)
1950 {
1951 const char *hint_path = NULL, *suffix;
1952 struct stat st;
1953 int error;
1954
1955 assert (side == conflict->ours || side == conflict->theirs);
1956
1957 git_buf_truncate(&data->path, data->workdir_len);
1958 if (git_buf_puts(&data->path, side->path) < 0)
1959 return -1;
1960
1961 if ((conflict->name_collision || conflict->directoryfile) &&
1962 (data->strategy & GIT_CHECKOUT_USE_OURS) == 0 &&
1963 (data->strategy & GIT_CHECKOUT_USE_THEIRS) == 0) {
1964
1965 if (side == conflict->ours)
1966 suffix = data->opts.our_label ? data->opts.our_label :
1967 "ours";
1968 else
1969 suffix = data->opts.their_label ? data->opts.their_label :
1970 "theirs";
1971
1972 if (checkout_path_suffixed(&data->path, suffix) < 0)
1973 return -1;
1974
1975 hint_path = side->path;
1976 }
1977
1978 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0 &&
1979 (error = checkout_safe_for_update_only(data, git_buf_cstr(&data->path), side->mode)) <= 0)
1980 return error;
1981
1982 return checkout_write_content(data,
1983 &side->id, git_buf_cstr(&data->path), hint_path, side->mode, &st);
1984 }
1985
1986 static int checkout_write_entries(
1987 checkout_data *data,
1988 checkout_conflictdata *conflict)
1989 {
1990 int error = 0;
1991
1992 if ((error = checkout_write_entry(data, conflict, conflict->ours)) >= 0)
1993 error = checkout_write_entry(data, conflict, conflict->theirs);
1994
1995 return error;
1996 }
1997
1998 static int checkout_merge_path(
1999 git_buf *out,
2000 checkout_data *data,
2001 checkout_conflictdata *conflict,
2002 git_merge_file_result *result)
2003 {
2004 const char *our_label_raw, *their_label_raw, *suffix;
2005 int error = 0;
2006
2007 if ((error = git_buf_joinpath(out, git_repository_workdir(data->repo), result->path)) < 0)
2008 return error;
2009
2010 /* Most conflicts simply use the filename in the index */
2011 if (!conflict->name_collision)
2012 return 0;
2013
2014 /* Rename 2->1 conflicts need the branch name appended */
2015 our_label_raw = data->opts.our_label ? data->opts.our_label : "ours";
2016 their_label_raw = data->opts.their_label ? data->opts.their_label : "theirs";
2017 suffix = strcmp(result->path, conflict->ours->path) == 0 ? our_label_raw : their_label_raw;
2018
2019 if ((error = checkout_path_suffixed(out, suffix)) < 0)
2020 return error;
2021
2022 return 0;
2023 }
2024
2025 static int checkout_write_merge(
2026 checkout_data *data,
2027 checkout_conflictdata *conflict)
2028 {
2029 git_buf our_label = GIT_BUF_INIT, their_label = GIT_BUF_INIT,
2030 path_suffixed = GIT_BUF_INIT, path_workdir = GIT_BUF_INIT,
2031 in_data = GIT_BUF_INIT, out_data = GIT_BUF_INIT;
2032 git_merge_file_options opts = GIT_MERGE_FILE_OPTIONS_INIT;
2033 git_merge_file_result result = {0};
2034 git_filebuf output = GIT_FILEBUF_INIT;
2035 git_filter_list *fl = NULL;
2036 git_filter_options filter_opts = GIT_FILTER_OPTIONS_INIT;
2037 int error = 0;
2038
2039 if (data->opts.checkout_strategy & GIT_CHECKOUT_CONFLICT_STYLE_DIFF3)
2040 opts.flags |= GIT_MERGE_FILE_STYLE_DIFF3;
2041
2042 opts.ancestor_label = data->opts.ancestor_label ?
2043 data->opts.ancestor_label : "ancestor";
2044 opts.our_label = data->opts.our_label ?
2045 data->opts.our_label : "ours";
2046 opts.their_label = data->opts.their_label ?
2047 data->opts.their_label : "theirs";
2048
2049 /* If all the paths are identical, decorate the diff3 file with the branch
2050 * names. Otherwise, append branch_name:path.
2051 */
2052 if (conflict->ours && conflict->theirs &&
2053 strcmp(conflict->ours->path, conflict->theirs->path) != 0) {
2054
2055 if ((error = conflict_entry_name(
2056 &our_label, opts.our_label, conflict->ours->path)) < 0 ||
2057 (error = conflict_entry_name(
2058 &their_label, opts.their_label, conflict->theirs->path)) < 0)
2059 goto done;
2060
2061 opts.our_label = git_buf_cstr(&our_label);
2062 opts.their_label = git_buf_cstr(&their_label);
2063 }
2064
2065 if ((error = git_merge_file_from_index(&result, data->repo,
2066 conflict->ancestor, conflict->ours, conflict->theirs, &opts)) < 0)
2067 goto done;
2068
2069 if (result.path == NULL || result.mode == 0) {
2070 giterr_set(GITERR_CHECKOUT, "Could not merge contents of file");
2071 error = GIT_ECONFLICT;
2072 goto done;
2073 }
2074
2075 if ((error = checkout_merge_path(&path_workdir, data, conflict, &result)) < 0)
2076 goto done;
2077
2078 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0 &&
2079 (error = checkout_safe_for_update_only(data, git_buf_cstr(&path_workdir), result.mode)) <= 0)
2080 goto done;
2081
2082 if (!data->opts.disable_filters) {
2083 in_data.ptr = (char *)result.ptr;
2084 in_data.size = result.len;
2085
2086 filter_opts.attr_session = &data->attr_session;
2087 filter_opts.temp_buf = &data->tmp;
2088
2089 if ((error = git_filter_list__load_ext(
2090 &fl, data->repo, NULL, git_buf_cstr(&path_workdir),
2091 GIT_FILTER_TO_WORKTREE, &filter_opts)) < 0 ||
2092 (error = git_filter_list_apply_to_data(&out_data, fl, &in_data)) < 0)
2093 goto done;
2094 } else {
2095 out_data.ptr = (char *)result.ptr;
2096 out_data.size = result.len;
2097 }
2098
2099 if ((error = mkpath2file(data, path_workdir.ptr, data->opts.dir_mode)) < 0 ||
2100 (error = git_filebuf_open(&output, git_buf_cstr(&path_workdir), GIT_FILEBUF_DO_NOT_BUFFER, result.mode)) < 0 ||
2101 (error = git_filebuf_write(&output, out_data.ptr, out_data.size)) < 0 ||
2102 (error = git_filebuf_commit(&output)) < 0)
2103 goto done;
2104
2105 done:
2106 git_filter_list_free(fl);
2107
2108 git_buf_free(&out_data);
2109 git_buf_free(&our_label);
2110 git_buf_free(&their_label);
2111
2112 git_merge_file_result_free(&result);
2113 git_buf_free(&path_workdir);
2114 git_buf_free(&path_suffixed);
2115
2116 return error;
2117 }
2118
2119 static int checkout_conflict_add(
2120 checkout_data *data,
2121 const git_index_entry *conflict)
2122 {
2123 int error = git_index_remove(data->index, conflict->path, 0);
2124
2125 if (error == GIT_ENOTFOUND)
2126 giterr_clear();
2127 else if (error < 0)
2128 return error;
2129
2130 return git_index_add(data->index, conflict);
2131 }
2132
2133 static int checkout_conflict_update_index(
2134 checkout_data *data,
2135 checkout_conflictdata *conflict)
2136 {
2137 int error = 0;
2138
2139 if (conflict->ancestor)
2140 error = checkout_conflict_add(data, conflict->ancestor);
2141
2142 if (!error && conflict->ours)
2143 error = checkout_conflict_add(data, conflict->ours);
2144
2145 if (!error && conflict->theirs)
2146 error = checkout_conflict_add(data, conflict->theirs);
2147
2148 return error;
2149 }
2150
2151 static int checkout_create_conflicts(checkout_data *data)
2152 {
2153 checkout_conflictdata *conflict;
2154 size_t i;
2155 int error = 0;
2156
2157 git_vector_foreach(&data->update_conflicts, i, conflict) {
2158
2159 /* Both deleted: nothing to do */
2160 if (conflict->ours == NULL && conflict->theirs == NULL)
2161 error = 0;
2162
2163 else if ((data->strategy & GIT_CHECKOUT_USE_OURS) &&
2164 conflict->ours)
2165 error = checkout_write_entry(data, conflict, conflict->ours);
2166 else if ((data->strategy & GIT_CHECKOUT_USE_THEIRS) &&
2167 conflict->theirs)
2168 error = checkout_write_entry(data, conflict, conflict->theirs);
2169
2170 /* Ignore the other side of name collisions. */
2171 else if ((data->strategy & GIT_CHECKOUT_USE_OURS) &&
2172 !conflict->ours && conflict->name_collision)
2173 error = 0;
2174 else if ((data->strategy & GIT_CHECKOUT_USE_THEIRS) &&
2175 !conflict->theirs && conflict->name_collision)
2176 error = 0;
2177
2178 /* For modify/delete, name collisions and d/f conflicts, write
2179 * the file (potentially with the name mangled.
2180 */
2181 else if (conflict->ours != NULL && conflict->theirs == NULL)
2182 error = checkout_write_entry(data, conflict, conflict->ours);
2183 else if (conflict->ours == NULL && conflict->theirs != NULL)
2184 error = checkout_write_entry(data, conflict, conflict->theirs);
2185
2186 /* Add/add conflicts and rename 1->2 conflicts, write the
2187 * ours/theirs sides (potentially name mangled).
2188 */
2189 else if (conflict->one_to_two)
2190 error = checkout_write_entries(data, conflict);
2191
2192 /* If all sides are links, write the ours side */
2193 else if (S_ISLNK(conflict->ours->mode) &&
2194 S_ISLNK(conflict->theirs->mode))
2195 error = checkout_write_entry(data, conflict, conflict->ours);
2196 /* Link/file conflicts, write the file side */
2197 else if (S_ISLNK(conflict->ours->mode))
2198 error = checkout_write_entry(data, conflict, conflict->theirs);
2199 else if (S_ISLNK(conflict->theirs->mode))
2200 error = checkout_write_entry(data, conflict, conflict->ours);
2201
2202 /* If any side is a gitlink, do nothing. */
2203 else if (conflict->submodule)
2204 error = 0;
2205
2206 /* If any side is binary, write the ours side */
2207 else if (conflict->binary)
2208 error = checkout_write_entry(data, conflict, conflict->ours);
2209
2210 else if (!error)
2211 error = checkout_write_merge(data, conflict);
2212
2213 /* Update the index extensions (REUC and NAME) if we're checking
2214 * out a different index. (Otherwise just leave them there.)
2215 */
2216 if (!error && (data->strategy & GIT_CHECKOUT_DONT_UPDATE_INDEX) == 0)
2217 error = checkout_conflict_update_index(data, conflict);
2218
2219 if (error)
2220 break;
2221
2222 data->completed_steps++;
2223 report_progress(data,
2224 conflict->ours ? conflict->ours->path :
2225 (conflict->theirs ? conflict->theirs->path : conflict->ancestor->path));
2226 }
2227
2228 return error;
2229 }
2230
2231 static int checkout_remove_conflicts(checkout_data *data)
2232 {
2233 const char *conflict;
2234 size_t i;
2235
2236 git_vector_foreach(&data->remove_conflicts, i, conflict) {
2237 if (git_index_conflict_remove(data->index, conflict) < 0)
2238 return -1;
2239
2240 data->completed_steps++;
2241 }
2242
2243 return 0;
2244 }
2245
2246 static int checkout_extensions_update_index(checkout_data *data)
2247 {
2248 const git_index_reuc_entry *reuc_entry;
2249 const git_index_name_entry *name_entry;
2250 size_t i;
2251 int error = 0;
2252
2253 if ((data->strategy & GIT_CHECKOUT_UPDATE_ONLY) != 0)
2254 return 0;
2255
2256 if (data->update_reuc) {
2257 git_vector_foreach(data->update_reuc, i, reuc_entry) {
2258 if ((error = git_index_reuc_add(data->index, reuc_entry->path,
2259 reuc_entry->mode[0], &reuc_entry->oid[0],
2260 reuc_entry->mode[1], &reuc_entry->oid[1],
2261 reuc_entry->mode[2], &reuc_entry->oid[2])) < 0)
2262 goto done;
2263 }
2264 }
2265
2266 if (data->update_names) {
2267 git_vector_foreach(data->update_names, i, name_entry) {
2268 if ((error = git_index_name_add(data->index, name_entry->ancestor,
2269 name_entry->ours, name_entry->theirs)) < 0)
2270 goto done;
2271 }
2272 }
2273
2274 done:
2275 return error;
2276 }
2277
2278 static void checkout_data_clear(checkout_data *data)
2279 {
2280 if (data->opts_free_baseline) {
2281 git_tree_free(data->opts.baseline);
2282 data->opts.baseline = NULL;
2283 }
2284
2285 git_vector_free(&data->removes);
2286 git_pool_clear(&data->pool);
2287
2288 git_vector_free_deep(&data->remove_conflicts);
2289 git_vector_free_deep(&data->update_conflicts);
2290
2291 git__free(data->pfx);
2292 data->pfx = NULL;
2293
2294 git_strmap_free(data->mkdir_map);
2295
2296 git_buf_free(&data->path);
2297 git_buf_free(&data->tmp);
2298
2299 git_index_free(data->index);
2300 data->index = NULL;
2301
2302 git_strmap_free(data->mkdir_map);
2303
2304 git_attr_session__free(&data->attr_session);
2305 }
2306
2307 static int checkout_data_init(
2308 checkout_data *data,
2309 git_iterator *target,
2310 const git_checkout_options *proposed)
2311 {
2312 int error = 0;
2313 git_repository *repo = git_iterator_owner(target);
2314
2315 memset(data, 0, sizeof(*data));
2316
2317 if (!repo) {
2318 giterr_set(GITERR_CHECKOUT, "Cannot checkout nothing");
2319 return -1;
2320 }
2321
2322 if ((!proposed || !proposed->target_directory) &&
2323 (error = git_repository__ensure_not_bare(repo, "checkout")) < 0)
2324 return error;
2325
2326 data->repo = repo;
2327 data->target = target;
2328
2329 GITERR_CHECK_VERSION(
2330 proposed, GIT_CHECKOUT_OPTIONS_VERSION, "git_checkout_options");
2331
2332 if (!proposed)
2333 GIT_INIT_STRUCTURE(&data->opts, GIT_CHECKOUT_OPTIONS_VERSION);
2334 else
2335 memmove(&data->opts, proposed, sizeof(git_checkout_options));
2336
2337 if (!data->opts.target_directory)
2338 data->opts.target_directory = git_repository_workdir(repo);
2339 else if (!git_path_isdir(data->opts.target_directory) &&
2340 (error = checkout_mkdir(data,
2341 data->opts.target_directory, NULL,
2342 GIT_DIR_MODE, GIT_MKDIR_VERIFY_DIR)) < 0)
2343 goto cleanup;
2344
2345 /* refresh config and index content unless NO_REFRESH is given */
2346 if ((data->opts.checkout_strategy & GIT_CHECKOUT_NO_REFRESH) == 0) {
2347 git_config *cfg;
2348
2349 if ((error = git_repository_config__weakptr(&cfg, repo)) < 0)
2350 goto cleanup;
2351
2352 /* Get the repository index and reload it (unless we're checking
2353 * out the index; then it has the changes we're trying to check
2354 * out and those should not be overwritten.)
2355 */
2356 if ((error = git_repository_index(&data->index, data->repo)) < 0)
2357 goto cleanup;
2358
2359 if (data->index != git_iterator_get_index(target)) {
2360 if ((error = git_index_read(data->index, true)) < 0)
2361 goto cleanup;
2362
2363 /* cannot checkout if unresolved conflicts exist */
2364 if ((data->opts.checkout_strategy & GIT_CHECKOUT_FORCE) == 0 &&
2365 git_index_has_conflicts(data->index)) {
2366 error = GIT_ECONFLICT;
2367 giterr_set(GITERR_CHECKOUT,
2368 "unresolved conflicts exist in the index");
2369 goto cleanup;
2370 }
2371
2372 /* clean conflict data in the current index */
2373 git_index_name_clear(data->index);
2374 git_index_reuc_clear(data->index);
2375 }
2376 }
2377
2378 /* if you are forcing, allow all safe updates, plus recreate missing */
2379 if ((data->opts.checkout_strategy & GIT_CHECKOUT_FORCE) != 0)
2380 data->opts.checkout_strategy |= GIT_CHECKOUT_SAFE |
2381 GIT_CHECKOUT_RECREATE_MISSING;
2382
2383 /* if the repository does not actually have an index file, then this
2384 * is an initial checkout (perhaps from clone), so we allow safe updates
2385 */
2386 if (!data->index->on_disk &&
2387 (data->opts.checkout_strategy & GIT_CHECKOUT_SAFE) != 0)
2388 data->opts.checkout_strategy |= GIT_CHECKOUT_RECREATE_MISSING;
2389
2390 data->strategy = data->opts.checkout_strategy;
2391
2392 /* opts->disable_filters is false by default */
2393
2394 if (!data->opts.dir_mode)
2395 data->opts.dir_mode = GIT_DIR_MODE;
2396
2397 if (!data->opts.file_open_flags)
2398 data->opts.file_open_flags = O_CREAT | O_TRUNC | O_WRONLY;
2399
2400 data->pfx = git_pathspec_prefix(&data->opts.paths);
2401
2402 if ((error = git_repository__cvar(
2403 &data->can_symlink, repo, GIT_CVAR_SYMLINKS)) < 0)
2404 goto cleanup;
2405
2406 if (!data->opts.baseline && !data->opts.baseline_index) {
2407 data->opts_free_baseline = true;
2408
2409 error = checkout_lookup_head_tree(&data->opts.baseline, repo);
2410
2411 if (error == GIT_EUNBORNBRANCH) {
2412 error = 0;
2413 giterr_clear();
2414 }
2415
2416 if (error < 0)
2417 goto cleanup;
2418 }
2419
2420 if ((data->opts.checkout_strategy &
2421 (GIT_CHECKOUT_CONFLICT_STYLE_MERGE | GIT_CHECKOUT_CONFLICT_STYLE_DIFF3)) == 0) {
2422 git_config_entry *conflict_style = NULL;
2423 git_config *cfg = NULL;
2424
2425 if ((error = git_repository_config__weakptr(&cfg, repo)) < 0 ||
2426 (error = git_config_get_entry(&conflict_style, cfg, "merge.conflictstyle")) < 0 ||
2427 error == GIT_ENOTFOUND)
2428 ;
2429 else if (error)
2430 goto cleanup;
2431 else if (strcmp(conflict_style->value, "merge") == 0)
2432 data->opts.checkout_strategy |= GIT_CHECKOUT_CONFLICT_STYLE_MERGE;
2433 else if (strcmp(conflict_style->value, "diff3") == 0)
2434 data->opts.checkout_strategy |= GIT_CHECKOUT_CONFLICT_STYLE_DIFF3;
2435 else {
2436 giterr_set(GITERR_CHECKOUT, "unknown style '%s' given for 'merge.conflictstyle'",
2437 conflict_style);
2438 error = -1;
2439 git_config_entry_free(conflict_style);
2440 goto cleanup;
2441 }
2442 git_config_entry_free(conflict_style);
2443 }
2444
2445 git_pool_init(&data->pool, 1);
2446
2447 if ((error = git_vector_init(&data->removes, 0, git__strcmp_cb)) < 0 ||
2448 (error = git_vector_init(&data->remove_conflicts, 0, NULL)) < 0 ||
2449 (error = git_vector_init(&data->update_conflicts, 0, NULL)) < 0 ||
2450 (error = git_buf_puts(&data->path, data->opts.target_directory)) < 0 ||
2451 (error = git_path_to_dir(&data->path)) < 0 ||
2452 (error = git_strmap_alloc(&data->mkdir_map)) < 0)
2453 goto cleanup;
2454
2455 data->workdir_len = git_buf_len(&data->path);
2456
2457 git_attr_session__init(&data->attr_session, data->repo);
2458
2459 cleanup:
2460 if (error < 0)
2461 checkout_data_clear(data);
2462
2463 return error;
2464 }
2465
2466 #define CHECKOUT_INDEX_DONT_WRITE_MASK \
2467 (GIT_CHECKOUT_DONT_UPDATE_INDEX | GIT_CHECKOUT_DONT_WRITE_INDEX)
2468
2469 int git_checkout_iterator(
2470 git_iterator *target,
2471 git_index *index,
2472 const git_checkout_options *opts)
2473 {
2474 int error = 0;
2475 git_iterator *baseline = NULL, *workdir = NULL;
2476 git_iterator_options baseline_opts = GIT_ITERATOR_OPTIONS_INIT,
2477 workdir_opts = GIT_ITERATOR_OPTIONS_INIT;
2478 checkout_data data = {0};
2479 git_diff_options diff_opts = GIT_DIFF_OPTIONS_INIT;
2480 uint32_t *actions = NULL;
2481 size_t *counts = NULL;
2482
2483 /* initialize structures and options */
2484 error = checkout_data_init(&data, target, opts);
2485 if (error < 0)
2486 return error;
2487
2488 diff_opts.flags =
2489 GIT_DIFF_INCLUDE_UNMODIFIED |
2490 GIT_DIFF_INCLUDE_UNREADABLE |
2491 GIT_DIFF_INCLUDE_UNTRACKED |
2492 GIT_DIFF_RECURSE_UNTRACKED_DIRS | /* needed to match baseline */
2493 GIT_DIFF_INCLUDE_IGNORED |
2494 GIT_DIFF_INCLUDE_TYPECHANGE |
2495 GIT_DIFF_INCLUDE_TYPECHANGE_TREES |
2496 GIT_DIFF_SKIP_BINARY_CHECK |
2497 GIT_DIFF_INCLUDE_CASECHANGE;
2498 if (data.opts.checkout_strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH)
2499 diff_opts.flags |= GIT_DIFF_DISABLE_PATHSPEC_MATCH;
2500 if (data.opts.paths.count > 0)
2501 diff_opts.pathspec = data.opts.paths;
2502
2503 /* set up iterators */
2504
2505 workdir_opts.flags = git_iterator_ignore_case(target) ?
2506 GIT_ITERATOR_IGNORE_CASE : GIT_ITERATOR_DONT_IGNORE_CASE;
2507 workdir_opts.flags |= GIT_ITERATOR_DONT_AUTOEXPAND;
2508 workdir_opts.start = data.pfx;
2509 workdir_opts.end = data.pfx;
2510
2511 if ((error = git_iterator_reset(target, data.pfx, data.pfx)) < 0 ||
2512 (error = git_iterator_for_workdir_ext(
2513 &workdir, data.repo, data.opts.target_directory, index, NULL,
2514 &workdir_opts)) < 0)
2515 goto cleanup;
2516
2517 baseline_opts.flags = git_iterator_ignore_case(target) ?
2518 GIT_ITERATOR_IGNORE_CASE : GIT_ITERATOR_DONT_IGNORE_CASE;
2519 baseline_opts.start = data.pfx;
2520 baseline_opts.end = data.pfx;
2521
2522 if (data.opts.baseline_index) {
2523 if ((error = git_iterator_for_index(
2524 &baseline, git_index_owner(data.opts.baseline_index),
2525 data.opts.baseline_index, &baseline_opts)) < 0)
2526 goto cleanup;
2527 } else {
2528 if ((error = git_iterator_for_tree(
2529 &baseline, data.opts.baseline, &baseline_opts)) < 0)
2530 goto cleanup;
2531 }
2532
2533 /* Should not have case insensitivity mismatch */
2534 assert(git_iterator_ignore_case(workdir) == git_iterator_ignore_case(baseline));
2535
2536 /* Generate baseline-to-target diff which will include an entry for
2537 * every possible update that might need to be made.
2538 */
2539 if ((error = git_diff__from_iterators(
2540 &data.diff, data.repo, baseline, target, &diff_opts)) < 0)
2541 goto cleanup;
2542
2543 /* Loop through diff (and working directory iterator) building a list of
2544 * actions to be taken, plus look for conflicts and send notifications,
2545 * then loop through conflicts.
2546 */
2547 if ((error = checkout_get_actions(&actions, &counts, &data, workdir)) != 0)
2548 goto cleanup;
2549
2550 data.total_steps = counts[CHECKOUT_ACTION__REMOVE] +
2551 counts[CHECKOUT_ACTION__REMOVE_CONFLICT] +
2552 counts[CHECKOUT_ACTION__UPDATE_BLOB] +
2553 counts[CHECKOUT_ACTION__UPDATE_SUBMODULE] +
2554 counts[CHECKOUT_ACTION__UPDATE_CONFLICT];
2555
2556 report_progress(&data, NULL); /* establish 0 baseline */
2557
2558 /* To deal with some order dependencies, perform remaining checkout
2559 * in three passes: removes, then update blobs, then update submodules.
2560 */
2561 if (counts[CHECKOUT_ACTION__REMOVE] > 0 &&
2562 (error = checkout_remove_the_old(actions, &data)) < 0)
2563 goto cleanup;
2564
2565 if (counts[CHECKOUT_ACTION__REMOVE_CONFLICT] > 0 &&
2566 (error = checkout_remove_conflicts(&data)) < 0)
2567 goto cleanup;
2568
2569 if (counts[CHECKOUT_ACTION__UPDATE_BLOB] > 0 &&
2570 (error = checkout_create_the_new(actions, &data)) < 0)
2571 goto cleanup;
2572
2573 if (counts[CHECKOUT_ACTION__UPDATE_SUBMODULE] > 0 &&
2574 (error = checkout_create_submodules(actions, &data)) < 0)
2575 goto cleanup;
2576
2577 if (counts[CHECKOUT_ACTION__UPDATE_CONFLICT] > 0 &&
2578 (error = checkout_create_conflicts(&data)) < 0)
2579 goto cleanup;
2580
2581 if (data.index != git_iterator_get_index(target) &&
2582 (error = checkout_extensions_update_index(&data)) < 0)
2583 goto cleanup;
2584
2585 assert(data.completed_steps == data.total_steps);
2586
2587 if (data.opts.perfdata_cb)
2588 data.opts.perfdata_cb(&data.perfdata, data.opts.perfdata_payload);
2589
2590 cleanup:
2591 if (!error && data.index != NULL &&
2592 (data.strategy & CHECKOUT_INDEX_DONT_WRITE_MASK) == 0)
2593 error = git_index_write(data.index);
2594
2595 git_diff_free(data.diff);
2596 git_iterator_free(workdir);
2597 git_iterator_free(baseline);
2598 git__free(actions);
2599 git__free(counts);
2600 checkout_data_clear(&data);
2601
2602 return error;
2603 }
2604
2605 int git_checkout_index(
2606 git_repository *repo,
2607 git_index *index,
2608 const git_checkout_options *opts)
2609 {
2610 int error, owned = 0;
2611 git_iterator *index_i;
2612
2613 if (!index && !repo) {
2614 giterr_set(GITERR_CHECKOUT,
2615 "Must provide either repository or index to checkout");
2616 return -1;
2617 }
2618
2619 if (index && repo &&
2620 git_index_owner(index) &&
2621 git_index_owner(index) != repo) {
2622 giterr_set(GITERR_CHECKOUT,
2623 "Index to checkout does not match repository");
2624 return -1;
2625 } else if(index && repo && !git_index_owner(index)) {
2626 GIT_REFCOUNT_OWN(index, repo);
2627 owned = 1;
2628 }
2629
2630 if (!repo)
2631 repo = git_index_owner(index);
2632
2633 if (!index && (error = git_repository_index__weakptr(&index, repo)) < 0)
2634 return error;
2635 GIT_REFCOUNT_INC(index);
2636
2637 if (!(error = git_iterator_for_index(&index_i, repo, index, NULL)))
2638 error = git_checkout_iterator(index_i, index, opts);
2639
2640 if (owned)
2641 GIT_REFCOUNT_OWN(index, NULL);
2642
2643 git_iterator_free(index_i);
2644 git_index_free(index);
2645
2646 return error;
2647 }
2648
2649 int git_checkout_tree(
2650 git_repository *repo,
2651 const git_object *treeish,
2652 const git_checkout_options *opts)
2653 {
2654 int error;
2655 git_index *index;
2656 git_tree *tree = NULL;
2657 git_iterator *tree_i = NULL;
2658 git_iterator_options iter_opts = GIT_ITERATOR_OPTIONS_INIT;
2659
2660 if (!treeish && !repo) {
2661 giterr_set(GITERR_CHECKOUT,
2662 "Must provide either repository or tree to checkout");
2663 return -1;
2664 }
2665 if (treeish && repo && git_object_owner(treeish) != repo) {
2666 giterr_set(GITERR_CHECKOUT,
2667 "Object to checkout does not match repository");
2668 return -1;
2669 }
2670
2671 if (!repo)
2672 repo = git_object_owner(treeish);
2673
2674 if (treeish) {
2675 if (git_object_peel((git_object **)&tree, treeish, GIT_OBJ_TREE) < 0) {
2676 giterr_set(
2677 GITERR_CHECKOUT, "Provided object cannot be peeled to a tree");
2678 return -1;
2679 }
2680 }
2681 else {
2682 if ((error = checkout_lookup_head_tree(&tree, repo)) < 0) {
2683 if (error != GIT_EUNBORNBRANCH)
2684 giterr_set(
2685 GITERR_CHECKOUT,
2686 "HEAD could not be peeled to a tree and no treeish given");
2687 return error;
2688 }
2689 }
2690
2691 if ((error = git_repository_index(&index, repo)) < 0)
2692 return error;
2693
2694 if ((opts->checkout_strategy & GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH)) {
2695 iter_opts.pathlist.count = opts->paths.count;
2696 iter_opts.pathlist.strings = opts->paths.strings;
2697 }
2698
2699 if (!(error = git_iterator_for_tree(&tree_i, tree, &iter_opts)))
2700 error = git_checkout_iterator(tree_i, index, opts);
2701
2702 git_iterator_free(tree_i);
2703 git_index_free(index);
2704 git_tree_free(tree);
2705
2706 return error;
2707 }
2708
2709 int git_checkout_head(
2710 git_repository *repo,
2711 const git_checkout_options *opts)
2712 {
2713 assert(repo);
2714 return git_checkout_tree(repo, NULL, opts);
2715 }
2716
2717 int git_checkout_init_options(git_checkout_options *opts, unsigned int version)
2718 {
2719 GIT_INIT_STRUCTURE_FROM_TEMPLATE(
2720 opts, version, git_checkout_options, GIT_CHECKOUT_OPTIONS_INIT);
2721 return 0;
2722 }