]> git.ipfire.org Git - thirdparty/git.git/blob - worktree.c
worktree: drop pointless strbuf_release()
[thirdparty/git.git] / worktree.c
1 #include "cache.h"
2 #include "repository.h"
3 #include "refs.h"
4 #include "strbuf.h"
5 #include "worktree.h"
6 #include "dir.h"
7 #include "wt-status.h"
8
9 void free_worktrees(struct worktree **worktrees)
10 {
11 int i = 0;
12
13 for (i = 0; worktrees[i]; i++) {
14 free(worktrees[i]->path);
15 free(worktrees[i]->id);
16 free(worktrees[i]->head_ref);
17 free(worktrees[i]->lock_reason);
18 free(worktrees[i]);
19 }
20 free (worktrees);
21 }
22
23 /**
24 * Update head_sha1, head_ref and is_detached of the given worktree
25 */
26 static void add_head_info(struct worktree *wt)
27 {
28 int flags;
29 const char *target;
30
31 target = refs_resolve_ref_unsafe(get_worktree_ref_store(wt),
32 "HEAD",
33 0,
34 &wt->head_oid, &flags);
35 if (!target)
36 return;
37
38 if (flags & REF_ISSYMREF)
39 wt->head_ref = xstrdup(target);
40 else
41 wt->is_detached = 1;
42 }
43
44 /**
45 * get the main worktree
46 */
47 static struct worktree *get_main_worktree(void)
48 {
49 struct worktree *worktree = NULL;
50 struct strbuf worktree_path = STRBUF_INIT;
51
52 strbuf_add_absolute_path(&worktree_path, get_git_common_dir());
53 if (!strbuf_strip_suffix(&worktree_path, "/.git/.") && /* in .git */
54 !strbuf_strip_suffix(&worktree_path, "/.git")) /* in worktree */
55 strbuf_strip_suffix(&worktree_path, "/."); /* in bare repo */
56
57 worktree = xcalloc(1, sizeof(*worktree));
58 worktree->path = strbuf_detach(&worktree_path, NULL);
59 /*
60 * NEEDSWORK: If this function is called from a secondary worktree and
61 * config.worktree is present, is_bare_repository_cfg will reflect the
62 * contents of config.worktree, not the contents of the main worktree.
63 * This means that worktree->is_bare may be set to 0 even if the main
64 * worktree is configured to be bare.
65 */
66 worktree->is_bare = (is_bare_repository_cfg == 1) ||
67 is_bare_repository();
68 add_head_info(worktree);
69 return worktree;
70 }
71
72 static struct worktree *get_linked_worktree(const char *id)
73 {
74 struct worktree *worktree = NULL;
75 struct strbuf path = STRBUF_INIT;
76 struct strbuf worktree_path = STRBUF_INIT;
77
78 if (!id)
79 die("Missing linked worktree name");
80
81 strbuf_git_common_path(&path, the_repository, "worktrees/%s/gitdir", id);
82 if (strbuf_read_file(&worktree_path, path.buf, 0) <= 0)
83 /* invalid gitdir file */
84 goto done;
85
86 strbuf_rtrim(&worktree_path);
87 if (!strbuf_strip_suffix(&worktree_path, "/.git")) {
88 strbuf_reset(&worktree_path);
89 strbuf_add_absolute_path(&worktree_path, ".");
90 strbuf_strip_suffix(&worktree_path, "/.");
91 }
92
93 strbuf_reset(&path);
94 strbuf_addf(&path, "%s/worktrees/%s/HEAD", get_git_common_dir(), id);
95
96 worktree = xcalloc(1, sizeof(*worktree));
97 worktree->path = strbuf_detach(&worktree_path, NULL);
98 worktree->id = xstrdup(id);
99 add_head_info(worktree);
100
101 done:
102 strbuf_release(&path);
103 strbuf_release(&worktree_path);
104 return worktree;
105 }
106
107 static void mark_current_worktree(struct worktree **worktrees)
108 {
109 char *git_dir = absolute_pathdup(get_git_dir());
110 int i;
111
112 for (i = 0; worktrees[i]; i++) {
113 struct worktree *wt = worktrees[i];
114 const char *wt_git_dir = get_worktree_git_dir(wt);
115
116 if (!fspathcmp(git_dir, absolute_path(wt_git_dir))) {
117 wt->is_current = 1;
118 break;
119 }
120 }
121 free(git_dir);
122 }
123
124 struct worktree **get_worktrees(void)
125 {
126 struct worktree **list = NULL;
127 struct strbuf path = STRBUF_INIT;
128 DIR *dir;
129 struct dirent *d;
130 int counter = 0, alloc = 2;
131
132 ALLOC_ARRAY(list, alloc);
133
134 list[counter++] = get_main_worktree();
135
136 strbuf_addf(&path, "%s/worktrees", get_git_common_dir());
137 dir = opendir(path.buf);
138 strbuf_release(&path);
139 if (dir) {
140 while ((d = readdir(dir)) != NULL) {
141 struct worktree *linked = NULL;
142 if (is_dot_or_dotdot(d->d_name))
143 continue;
144
145 if ((linked = get_linked_worktree(d->d_name))) {
146 ALLOC_GROW(list, counter + 1, alloc);
147 list[counter++] = linked;
148 }
149 }
150 closedir(dir);
151 }
152 ALLOC_GROW(list, counter + 1, alloc);
153 list[counter] = NULL;
154
155 mark_current_worktree(list);
156 return list;
157 }
158
159 const char *get_worktree_git_dir(const struct worktree *wt)
160 {
161 if (!wt)
162 return get_git_dir();
163 else if (!wt->id)
164 return get_git_common_dir();
165 else
166 return git_common_path("worktrees/%s", wt->id);
167 }
168
169 static struct worktree *find_worktree_by_suffix(struct worktree **list,
170 const char *suffix)
171 {
172 struct worktree *found = NULL;
173 int nr_found = 0, suffixlen;
174
175 suffixlen = strlen(suffix);
176 if (!suffixlen)
177 return NULL;
178
179 for (; *list && nr_found < 2; list++) {
180 const char *path = (*list)->path;
181 int pathlen = strlen(path);
182 int start = pathlen - suffixlen;
183
184 /* suffix must start at directory boundary */
185 if ((!start || (start > 0 && is_dir_sep(path[start - 1]))) &&
186 !fspathcmp(suffix, path + start)) {
187 found = *list;
188 nr_found++;
189 }
190 }
191 return nr_found == 1 ? found : NULL;
192 }
193
194 struct worktree *find_worktree(struct worktree **list,
195 const char *prefix,
196 const char *arg)
197 {
198 struct worktree *wt;
199 char *to_free = NULL;
200
201 if ((wt = find_worktree_by_suffix(list, arg)))
202 return wt;
203
204 if (prefix)
205 arg = to_free = prefix_filename(prefix, arg);
206 wt = find_worktree_by_path(list, arg);
207 free(to_free);
208 return wt;
209 }
210
211 struct worktree *find_worktree_by_path(struct worktree **list, const char *p)
212 {
213 struct strbuf wt_path = STRBUF_INIT;
214 char *path = real_pathdup(p, 0);
215
216 if (!path)
217 return NULL;
218 for (; *list; list++) {
219 if (!strbuf_realpath(&wt_path, (*list)->path, 0))
220 continue;
221
222 if (!fspathcmp(path, wt_path.buf))
223 break;
224 }
225 free(path);
226 strbuf_release(&wt_path);
227 return *list;
228 }
229
230 int is_main_worktree(const struct worktree *wt)
231 {
232 return !wt->id;
233 }
234
235 const char *worktree_lock_reason(struct worktree *wt)
236 {
237 assert(!is_main_worktree(wt));
238
239 if (!wt->lock_reason_valid) {
240 struct strbuf path = STRBUF_INIT;
241
242 strbuf_addstr(&path, worktree_git_path(wt, "locked"));
243 if (file_exists(path.buf)) {
244 struct strbuf lock_reason = STRBUF_INIT;
245 if (strbuf_read_file(&lock_reason, path.buf, 0) < 0)
246 die_errno(_("failed to read '%s'"), path.buf);
247 strbuf_trim(&lock_reason);
248 wt->lock_reason = strbuf_detach(&lock_reason, NULL);
249 } else
250 wt->lock_reason = NULL;
251 wt->lock_reason_valid = 1;
252 strbuf_release(&path);
253 }
254
255 return wt->lock_reason;
256 }
257
258 /* convenient wrapper to deal with NULL strbuf */
259 static void strbuf_addf_gently(struct strbuf *buf, const char *fmt, ...)
260 {
261 va_list params;
262
263 if (!buf)
264 return;
265
266 va_start(params, fmt);
267 strbuf_vaddf(buf, fmt, params);
268 va_end(params);
269 }
270
271 int validate_worktree(const struct worktree *wt, struct strbuf *errmsg,
272 unsigned flags)
273 {
274 struct strbuf wt_path = STRBUF_INIT;
275 struct strbuf realpath = STRBUF_INIT;
276 char *path = NULL;
277 int err, ret = -1;
278
279 strbuf_addf(&wt_path, "%s/.git", wt->path);
280
281 if (is_main_worktree(wt)) {
282 if (is_directory(wt_path.buf)) {
283 ret = 0;
284 goto done;
285 }
286 /*
287 * Main worktree using .git file to point to the
288 * repository would make it impossible to know where
289 * the actual worktree is if this function is executed
290 * from another worktree. No .git file support for now.
291 */
292 strbuf_addf_gently(errmsg,
293 _("'%s' at main working tree is not the repository directory"),
294 wt_path.buf);
295 goto done;
296 }
297
298 /*
299 * Make sure "gitdir" file points to a real .git file and that
300 * file points back here.
301 */
302 if (!is_absolute_path(wt->path)) {
303 strbuf_addf_gently(errmsg,
304 _("'%s' file does not contain absolute path to the working tree location"),
305 git_common_path("worktrees/%s/gitdir", wt->id));
306 goto done;
307 }
308
309 if (flags & WT_VALIDATE_WORKTREE_MISSING_OK &&
310 !file_exists(wt->path)) {
311 ret = 0;
312 goto done;
313 }
314
315 if (!file_exists(wt_path.buf)) {
316 strbuf_addf_gently(errmsg, _("'%s' does not exist"), wt_path.buf);
317 goto done;
318 }
319
320 path = xstrdup_or_null(read_gitfile_gently(wt_path.buf, &err));
321 if (!path) {
322 strbuf_addf_gently(errmsg, _("'%s' is not a .git file, error code %d"),
323 wt_path.buf, err);
324 goto done;
325 }
326
327 strbuf_realpath(&realpath, git_common_path("worktrees/%s", wt->id), 1);
328 ret = fspathcmp(path, realpath.buf);
329
330 if (ret)
331 strbuf_addf_gently(errmsg, _("'%s' does not point back to '%s'"),
332 wt->path, git_common_path("worktrees/%s", wt->id));
333 done:
334 free(path);
335 strbuf_release(&wt_path);
336 strbuf_release(&realpath);
337 return ret;
338 }
339
340 void update_worktree_location(struct worktree *wt, const char *path_)
341 {
342 struct strbuf path = STRBUF_INIT;
343
344 if (is_main_worktree(wt))
345 BUG("can't relocate main worktree");
346
347 strbuf_realpath(&path, path_, 1);
348 if (fspathcmp(wt->path, path.buf)) {
349 write_file(git_common_path("worktrees/%s/gitdir", wt->id),
350 "%s/.git", path.buf);
351 free(wt->path);
352 wt->path = strbuf_detach(&path, NULL);
353 }
354 strbuf_release(&path);
355 }
356
357 int is_worktree_being_rebased(const struct worktree *wt,
358 const char *target)
359 {
360 struct wt_status_state state;
361 int found_rebase;
362
363 memset(&state, 0, sizeof(state));
364 found_rebase = wt_status_check_rebase(wt, &state) &&
365 ((state.rebase_in_progress ||
366 state.rebase_interactive_in_progress) &&
367 state.branch &&
368 starts_with(target, "refs/heads/") &&
369 !strcmp(state.branch, target + strlen("refs/heads/")));
370 free(state.branch);
371 free(state.onto);
372 return found_rebase;
373 }
374
375 int is_worktree_being_bisected(const struct worktree *wt,
376 const char *target)
377 {
378 struct wt_status_state state;
379 int found_rebase;
380
381 memset(&state, 0, sizeof(state));
382 found_rebase = wt_status_check_bisect(wt, &state) &&
383 state.branch &&
384 starts_with(target, "refs/heads/") &&
385 !strcmp(state.branch, target + strlen("refs/heads/"));
386 free(state.branch);
387 return found_rebase;
388 }
389
390 /*
391 * note: this function should be able to detect shared symref even if
392 * HEAD is temporarily detached (e.g. in the middle of rebase or
393 * bisect). New commands that do similar things should update this
394 * function as well.
395 */
396 const struct worktree *find_shared_symref(const char *symref,
397 const char *target)
398 {
399 const struct worktree *existing = NULL;
400 static struct worktree **worktrees;
401 int i = 0;
402
403 if (worktrees)
404 free_worktrees(worktrees);
405 worktrees = get_worktrees();
406
407 for (i = 0; worktrees[i]; i++) {
408 struct worktree *wt = worktrees[i];
409 const char *symref_target;
410 struct ref_store *refs;
411 int flags;
412
413 if (wt->is_bare)
414 continue;
415
416 if (wt->is_detached && !strcmp(symref, "HEAD")) {
417 if (is_worktree_being_rebased(wt, target)) {
418 existing = wt;
419 break;
420 }
421 if (is_worktree_being_bisected(wt, target)) {
422 existing = wt;
423 break;
424 }
425 }
426
427 refs = get_worktree_ref_store(wt);
428 symref_target = refs_resolve_ref_unsafe(refs, symref, 0,
429 NULL, &flags);
430 if ((flags & REF_ISSYMREF) &&
431 symref_target && !strcmp(symref_target, target)) {
432 existing = wt;
433 break;
434 }
435 }
436
437 return existing;
438 }
439
440 int submodule_uses_worktrees(const char *path)
441 {
442 char *submodule_gitdir;
443 struct strbuf sb = STRBUF_INIT, err = STRBUF_INIT;
444 DIR *dir;
445 struct dirent *d;
446 int ret = 0;
447 struct repository_format format = REPOSITORY_FORMAT_INIT;
448
449 submodule_gitdir = git_pathdup_submodule(path, "%s", "");
450 if (!submodule_gitdir)
451 return 0;
452
453 /* The env would be set for the superproject. */
454 get_common_dir_noenv(&sb, submodule_gitdir);
455 free(submodule_gitdir);
456
457 strbuf_addstr(&sb, "/config");
458 read_repository_format(&format, sb.buf);
459 if (verify_repository_format(&format, &err)) {
460 strbuf_release(&err);
461 strbuf_release(&sb);
462 clear_repository_format(&format);
463 return 1;
464 }
465 clear_repository_format(&format);
466 strbuf_release(&err);
467
468 /* Replace config by worktrees. */
469 strbuf_setlen(&sb, sb.len - strlen("config"));
470 strbuf_addstr(&sb, "worktrees");
471
472 /* See if there is any file inside the worktrees directory. */
473 dir = opendir(sb.buf);
474 strbuf_release(&sb);
475
476 if (!dir)
477 return 0;
478
479 while ((d = readdir(dir)) != NULL) {
480 if (is_dot_or_dotdot(d->d_name))
481 continue;
482
483 ret = 1;
484 break;
485 }
486 closedir(dir);
487 return ret;
488 }
489
490 int parse_worktree_ref(const char *worktree_ref, const char **name,
491 int *name_length, const char **ref)
492 {
493 if (skip_prefix(worktree_ref, "main-worktree/", &worktree_ref)) {
494 if (!*worktree_ref)
495 return -1;
496 if (name)
497 *name = NULL;
498 if (name_length)
499 *name_length = 0;
500 if (ref)
501 *ref = worktree_ref;
502 return 0;
503 }
504 if (skip_prefix(worktree_ref, "worktrees/", &worktree_ref)) {
505 const char *slash = strchr(worktree_ref, '/');
506
507 if (!slash || slash == worktree_ref || !slash[1])
508 return -1;
509 if (name)
510 *name = worktree_ref;
511 if (name_length)
512 *name_length = slash - worktree_ref;
513 if (ref)
514 *ref = slash + 1;
515 return 0;
516 }
517 return -1;
518 }
519
520 void strbuf_worktree_ref(const struct worktree *wt,
521 struct strbuf *sb,
522 const char *refname)
523 {
524 switch (ref_type(refname)) {
525 case REF_TYPE_PSEUDOREF:
526 case REF_TYPE_PER_WORKTREE:
527 if (wt && !wt->is_current) {
528 if (is_main_worktree(wt))
529 strbuf_addstr(sb, "main-worktree/");
530 else
531 strbuf_addf(sb, "worktrees/%s/", wt->id);
532 }
533 break;
534
535 case REF_TYPE_MAIN_PSEUDOREF:
536 case REF_TYPE_OTHER_PSEUDOREF:
537 break;
538
539 case REF_TYPE_NORMAL:
540 /*
541 * For shared refs, don't prefix worktrees/ or
542 * main-worktree/. It's not necessary and
543 * files-backend.c can't handle it anyway.
544 */
545 break;
546 }
547 strbuf_addstr(sb, refname);
548 }
549
550 const char *worktree_ref(const struct worktree *wt, const char *refname)
551 {
552 static struct strbuf sb = STRBUF_INIT;
553
554 strbuf_reset(&sb);
555 strbuf_worktree_ref(wt, &sb, refname);
556 return sb.buf;
557 }
558
559 int other_head_refs(each_ref_fn fn, void *cb_data)
560 {
561 struct worktree **worktrees, **p;
562 int ret = 0;
563
564 worktrees = get_worktrees();
565 for (p = worktrees; *p; p++) {
566 struct worktree *wt = *p;
567 struct object_id oid;
568 int flag;
569
570 if (wt->is_current)
571 continue;
572
573 if (!refs_read_ref_full(get_main_ref_store(the_repository),
574 worktree_ref(wt, "HEAD"),
575 RESOLVE_REF_READING,
576 &oid, &flag))
577 ret = fn(worktree_ref(wt, "HEAD"), &oid, flag, cb_data);
578 if (ret)
579 break;
580 }
581 free_worktrees(worktrees);
582 return ret;
583 }