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