]> git.ipfire.org Git - thirdparty/git.git/blob - refs.c
Merge branch 'ja/doc-placeholders-markup-rules' into HEAD
[thirdparty/git.git] / refs.c
1 /*
2 * The backend-independent part of the reference module.
3 */
4
5 #include "git-compat-util.h"
6 #include "advice.h"
7 #include "config.h"
8 #include "environment.h"
9 #include "hashmap.h"
10 #include "gettext.h"
11 #include "hex.h"
12 #include "lockfile.h"
13 #include "iterator.h"
14 #include "refs.h"
15 #include "refs/refs-internal.h"
16 #include "run-command.h"
17 #include "hook.h"
18 #include "object-name.h"
19 #include "object-store-ll.h"
20 #include "object.h"
21 #include "path.h"
22 #include "tag.h"
23 #include "submodule.h"
24 #include "worktree.h"
25 #include "strvec.h"
26 #include "repository.h"
27 #include "setup.h"
28 #include "sigchain.h"
29 #include "date.h"
30 #include "commit.h"
31 #include "wildmatch.h"
32
33 /*
34 * List of all available backends
35 */
36 static const struct ref_storage_be *refs_backends[] = {
37 [REF_STORAGE_FORMAT_FILES] = &refs_be_files,
38 [REF_STORAGE_FORMAT_REFTABLE] = &refs_be_reftable,
39 };
40
41 static const struct ref_storage_be *find_ref_storage_backend(unsigned int ref_storage_format)
42 {
43 if (ref_storage_format < ARRAY_SIZE(refs_backends))
44 return refs_backends[ref_storage_format];
45 return NULL;
46 }
47
48 unsigned int ref_storage_format_by_name(const char *name)
49 {
50 for (unsigned int i = 0; i < ARRAY_SIZE(refs_backends); i++)
51 if (refs_backends[i] && !strcmp(refs_backends[i]->name, name))
52 return i;
53 return REF_STORAGE_FORMAT_UNKNOWN;
54 }
55
56 const char *ref_storage_format_to_name(unsigned int ref_storage_format)
57 {
58 const struct ref_storage_be *be = find_ref_storage_backend(ref_storage_format);
59 if (!be)
60 return "unknown";
61 return be->name;
62 }
63
64 /*
65 * How to handle various characters in refnames:
66 * 0: An acceptable character for refs
67 * 1: End-of-component
68 * 2: ., look for a preceding . to reject .. in refs
69 * 3: {, look for a preceding @ to reject @{ in refs
70 * 4: A bad character: ASCII control characters, and
71 * ":", "?", "[", "\", "^", "~", SP, or TAB
72 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
73 */
74 static unsigned char refname_disposition[256] = {
75 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
76 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
77 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
78 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
79 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
80 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
81 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
82 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
83 };
84
85 struct ref_namespace_info ref_namespace[] = {
86 [NAMESPACE_HEAD] = {
87 .ref = "HEAD",
88 .decoration = DECORATION_REF_HEAD,
89 .exact = 1,
90 },
91 [NAMESPACE_BRANCHES] = {
92 .ref = "refs/heads/",
93 .decoration = DECORATION_REF_LOCAL,
94 },
95 [NAMESPACE_TAGS] = {
96 .ref = "refs/tags/",
97 .decoration = DECORATION_REF_TAG,
98 },
99 [NAMESPACE_REMOTE_REFS] = {
100 /*
101 * The default refspec for new remotes copies refs from
102 * refs/heads/ on the remote into refs/remotes/<remote>/.
103 * As such, "refs/remotes/" has special handling.
104 */
105 .ref = "refs/remotes/",
106 .decoration = DECORATION_REF_REMOTE,
107 },
108 [NAMESPACE_STASH] = {
109 /*
110 * The single ref "refs/stash" stores the latest stash.
111 * Older stashes can be found in the reflog.
112 */
113 .ref = "refs/stash",
114 .exact = 1,
115 .decoration = DECORATION_REF_STASH,
116 },
117 [NAMESPACE_REPLACE] = {
118 /*
119 * This namespace allows Git to act as if one object ID
120 * points to the content of another. Unlike the other
121 * ref namespaces, this one can be changed by the
122 * GIT_REPLACE_REF_BASE environment variable. This
123 * .namespace value will be overwritten in setup_git_env().
124 */
125 .ref = "refs/replace/",
126 .decoration = DECORATION_GRAFTED,
127 },
128 [NAMESPACE_NOTES] = {
129 /*
130 * The refs/notes/commit ref points to the tip of a
131 * parallel commit history that adds metadata to commits
132 * in the normal history. This ref can be overwritten
133 * by the core.notesRef config variable or the
134 * GIT_NOTES_REFS environment variable.
135 */
136 .ref = "refs/notes/commit",
137 .exact = 1,
138 },
139 [NAMESPACE_PREFETCH] = {
140 /*
141 * Prefetch refs are written by the background 'fetch'
142 * maintenance task. It allows faster foreground fetches
143 * by advertising these previously-downloaded tips without
144 * updating refs/remotes/ without user intervention.
145 */
146 .ref = "refs/prefetch/",
147 },
148 [NAMESPACE_REWRITTEN] = {
149 /*
150 * Rewritten refs are used by the 'label' command in the
151 * sequencer. These are particularly useful during an
152 * interactive rebase that uses the 'merge' command.
153 */
154 .ref = "refs/rewritten/",
155 },
156 };
157
158 void update_ref_namespace(enum ref_namespace namespace, char *ref)
159 {
160 struct ref_namespace_info *info = &ref_namespace[namespace];
161 if (info->ref_updated)
162 free(info->ref);
163 info->ref = ref;
164 info->ref_updated = 1;
165 }
166
167 /*
168 * Try to read one refname component from the front of refname.
169 * Return the length of the component found, or -1 if the component is
170 * not legal. It is legal if it is something reasonable to have under
171 * ".git/refs/"; We do not like it if:
172 *
173 * - it begins with ".", or
174 * - it has double dots "..", or
175 * - it has ASCII control characters, or
176 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
177 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
178 * - it ends with a "/", or
179 * - it ends with ".lock", or
180 * - it contains a "@{" portion
181 *
182 * When sanitized is not NULL, instead of rejecting the input refname
183 * as an error, try to come up with a usable replacement for the input
184 * refname in it.
185 */
186 static int check_refname_component(const char *refname, int *flags,
187 struct strbuf *sanitized)
188 {
189 const char *cp;
190 char last = '\0';
191 size_t component_start = 0; /* garbage - not a reasonable initial value */
192
193 if (sanitized)
194 component_start = sanitized->len;
195
196 for (cp = refname; ; cp++) {
197 int ch = *cp & 255;
198 unsigned char disp = refname_disposition[ch];
199
200 if (sanitized && disp != 1)
201 strbuf_addch(sanitized, ch);
202
203 switch (disp) {
204 case 1:
205 goto out;
206 case 2:
207 if (last == '.') { /* Refname contains "..". */
208 if (sanitized)
209 /* collapse ".." to single "." */
210 strbuf_setlen(sanitized, sanitized->len - 1);
211 else
212 return -1;
213 }
214 break;
215 case 3:
216 if (last == '@') { /* Refname contains "@{". */
217 if (sanitized)
218 sanitized->buf[sanitized->len-1] = '-';
219 else
220 return -1;
221 }
222 break;
223 case 4:
224 /* forbidden char */
225 if (sanitized)
226 sanitized->buf[sanitized->len-1] = '-';
227 else
228 return -1;
229 break;
230 case 5:
231 if (!(*flags & REFNAME_REFSPEC_PATTERN)) {
232 /* refspec can't be a pattern */
233 if (sanitized)
234 sanitized->buf[sanitized->len-1] = '-';
235 else
236 return -1;
237 }
238
239 /*
240 * Unset the pattern flag so that we only accept
241 * a single asterisk for one side of refspec.
242 */
243 *flags &= ~ REFNAME_REFSPEC_PATTERN;
244 break;
245 }
246 last = ch;
247 }
248 out:
249 if (cp == refname)
250 return 0; /* Component has zero length. */
251
252 if (refname[0] == '.') { /* Component starts with '.'. */
253 if (sanitized)
254 sanitized->buf[component_start] = '-';
255 else
256 return -1;
257 }
258 if (cp - refname >= LOCK_SUFFIX_LEN &&
259 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN)) {
260 if (!sanitized)
261 return -1;
262 /* Refname ends with ".lock". */
263 while (strbuf_strip_suffix(sanitized, LOCK_SUFFIX)) {
264 /* try again in case we have .lock.lock */
265 }
266 }
267 return cp - refname;
268 }
269
270 static int check_or_sanitize_refname(const char *refname, int flags,
271 struct strbuf *sanitized)
272 {
273 int component_len, component_count = 0;
274
275 if (!strcmp(refname, "@")) {
276 /* Refname is a single character '@'. */
277 if (sanitized)
278 strbuf_addch(sanitized, '-');
279 else
280 return -1;
281 }
282
283 while (1) {
284 if (sanitized && sanitized->len)
285 strbuf_complete(sanitized, '/');
286
287 /* We are at the start of a path component. */
288 component_len = check_refname_component(refname, &flags,
289 sanitized);
290 if (sanitized && component_len == 0)
291 ; /* OK, omit empty component */
292 else if (component_len <= 0)
293 return -1;
294
295 component_count++;
296 if (refname[component_len] == '\0')
297 break;
298 /* Skip to next component. */
299 refname += component_len + 1;
300 }
301
302 if (refname[component_len - 1] == '.') {
303 /* Refname ends with '.'. */
304 if (sanitized)
305 ; /* omit ending dot */
306 else
307 return -1;
308 }
309 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
310 return -1; /* Refname has only one component. */
311 return 0;
312 }
313
314 int check_refname_format(const char *refname, int flags)
315 {
316 return check_or_sanitize_refname(refname, flags, NULL);
317 }
318
319 void sanitize_refname_component(const char *refname, struct strbuf *out)
320 {
321 if (check_or_sanitize_refname(refname, REFNAME_ALLOW_ONELEVEL, out))
322 BUG("sanitizing refname '%s' check returned error", refname);
323 }
324
325 int refname_is_safe(const char *refname)
326 {
327 const char *rest;
328
329 if (skip_prefix(refname, "refs/", &rest)) {
330 char *buf;
331 int result;
332 size_t restlen = strlen(rest);
333
334 /* rest must not be empty, or start or end with "/" */
335 if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
336 return 0;
337
338 /*
339 * Does the refname try to escape refs/?
340 * For example: refs/foo/../bar is safe but refs/foo/../../bar
341 * is not.
342 */
343 buf = xmallocz(restlen);
344 result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
345 free(buf);
346 return result;
347 }
348
349 do {
350 if (!isupper(*refname) && *refname != '_')
351 return 0;
352 refname++;
353 } while (*refname);
354 return 1;
355 }
356
357 /*
358 * Return true if refname, which has the specified oid and flags, can
359 * be resolved to an object in the database. If the referred-to object
360 * does not exist, emit a warning and return false.
361 */
362 int ref_resolves_to_object(const char *refname,
363 struct repository *repo,
364 const struct object_id *oid,
365 unsigned int flags)
366 {
367 if (flags & REF_ISBROKEN)
368 return 0;
369 if (!repo_has_object_file(repo, oid)) {
370 error(_("%s does not point to a valid object!"), refname);
371 return 0;
372 }
373 return 1;
374 }
375
376 char *refs_resolve_refdup(struct ref_store *refs,
377 const char *refname, int resolve_flags,
378 struct object_id *oid, int *flags)
379 {
380 const char *result;
381
382 result = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
383 oid, flags);
384 return xstrdup_or_null(result);
385 }
386
387 char *resolve_refdup(const char *refname, int resolve_flags,
388 struct object_id *oid, int *flags)
389 {
390 return refs_resolve_refdup(get_main_ref_store(the_repository),
391 refname, resolve_flags,
392 oid, flags);
393 }
394
395 /* The argument to for_each_filter_refs */
396 struct for_each_ref_filter {
397 const char *pattern;
398 const char *prefix;
399 each_ref_fn *fn;
400 void *cb_data;
401 };
402
403 int read_ref_full(const char *refname, int resolve_flags, struct object_id *oid, int *flags)
404 {
405 struct ref_store *refs = get_main_ref_store(the_repository);
406
407 if (refs_resolve_ref_unsafe(refs, refname, resolve_flags,
408 oid, flags))
409 return 0;
410 return -1;
411 }
412
413 int read_ref(const char *refname, struct object_id *oid)
414 {
415 return read_ref_full(refname, RESOLVE_REF_READING, oid, NULL);
416 }
417
418 int refs_ref_exists(struct ref_store *refs, const char *refname)
419 {
420 return !!refs_resolve_ref_unsafe(refs, refname, RESOLVE_REF_READING,
421 NULL, NULL);
422 }
423
424 int ref_exists(const char *refname)
425 {
426 return refs_ref_exists(get_main_ref_store(the_repository), refname);
427 }
428
429 static int for_each_filter_refs(const char *refname,
430 const struct object_id *oid,
431 int flags, void *data)
432 {
433 struct for_each_ref_filter *filter = data;
434
435 if (wildmatch(filter->pattern, refname, 0))
436 return 0;
437 if (filter->prefix)
438 skip_prefix(refname, filter->prefix, &refname);
439 return filter->fn(refname, oid, flags, filter->cb_data);
440 }
441
442 enum peel_status peel_object(const struct object_id *name, struct object_id *oid)
443 {
444 struct object *o = lookup_unknown_object(the_repository, name);
445
446 if (o->type == OBJ_NONE) {
447 int type = oid_object_info(the_repository, name, NULL);
448 if (type < 0 || !object_as_type(o, type, 0))
449 return PEEL_INVALID;
450 }
451
452 if (o->type != OBJ_TAG)
453 return PEEL_NON_TAG;
454
455 o = deref_tag_noverify(o);
456 if (!o)
457 return PEEL_INVALID;
458
459 oidcpy(oid, &o->oid);
460 return PEEL_PEELED;
461 }
462
463 struct warn_if_dangling_data {
464 FILE *fp;
465 const char *refname;
466 const struct string_list *refnames;
467 const char *msg_fmt;
468 };
469
470 static int warn_if_dangling_symref(const char *refname,
471 const struct object_id *oid UNUSED,
472 int flags, void *cb_data)
473 {
474 struct warn_if_dangling_data *d = cb_data;
475 const char *resolves_to;
476
477 if (!(flags & REF_ISSYMREF))
478 return 0;
479
480 resolves_to = resolve_ref_unsafe(refname, 0, NULL, NULL);
481 if (!resolves_to
482 || (d->refname
483 ? strcmp(resolves_to, d->refname)
484 : !string_list_has_string(d->refnames, resolves_to))) {
485 return 0;
486 }
487
488 fprintf(d->fp, d->msg_fmt, refname);
489 fputc('\n', d->fp);
490 return 0;
491 }
492
493 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
494 {
495 struct warn_if_dangling_data data;
496
497 data.fp = fp;
498 data.refname = refname;
499 data.refnames = NULL;
500 data.msg_fmt = msg_fmt;
501 for_each_rawref(warn_if_dangling_symref, &data);
502 }
503
504 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
505 {
506 struct warn_if_dangling_data data;
507
508 data.fp = fp;
509 data.refname = NULL;
510 data.refnames = refnames;
511 data.msg_fmt = msg_fmt;
512 for_each_rawref(warn_if_dangling_symref, &data);
513 }
514
515 int refs_for_each_tag_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
516 {
517 return refs_for_each_ref_in(refs, "refs/tags/", fn, cb_data);
518 }
519
520 int for_each_tag_ref(each_ref_fn fn, void *cb_data)
521 {
522 return refs_for_each_tag_ref(get_main_ref_store(the_repository), fn, cb_data);
523 }
524
525 int refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
526 {
527 return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
528 }
529
530 int for_each_branch_ref(each_ref_fn fn, void *cb_data)
531 {
532 return refs_for_each_branch_ref(get_main_ref_store(the_repository), fn, cb_data);
533 }
534
535 int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
536 {
537 return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
538 }
539
540 int for_each_remote_ref(each_ref_fn fn, void *cb_data)
541 {
542 return refs_for_each_remote_ref(get_main_ref_store(the_repository), fn, cb_data);
543 }
544
545 int head_ref_namespaced(each_ref_fn fn, void *cb_data)
546 {
547 struct strbuf buf = STRBUF_INIT;
548 int ret = 0;
549 struct object_id oid;
550 int flag;
551
552 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
553 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, &oid, &flag))
554 ret = fn(buf.buf, &oid, flag, cb_data);
555 strbuf_release(&buf);
556
557 return ret;
558 }
559
560 void normalize_glob_ref(struct string_list_item *item, const char *prefix,
561 const char *pattern)
562 {
563 struct strbuf normalized_pattern = STRBUF_INIT;
564
565 if (*pattern == '/')
566 BUG("pattern must not start with '/'");
567
568 if (prefix)
569 strbuf_addstr(&normalized_pattern, prefix);
570 else if (!starts_with(pattern, "refs/") &&
571 strcmp(pattern, "HEAD"))
572 strbuf_addstr(&normalized_pattern, "refs/");
573 /*
574 * NEEDSWORK: Special case other symrefs such as REBASE_HEAD,
575 * MERGE_HEAD, etc.
576 */
577
578 strbuf_addstr(&normalized_pattern, pattern);
579 strbuf_strip_suffix(&normalized_pattern, "/");
580
581 item->string = strbuf_detach(&normalized_pattern, NULL);
582 item->util = has_glob_specials(pattern) ? NULL : item->string;
583 strbuf_release(&normalized_pattern);
584 }
585
586 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
587 const char *prefix, void *cb_data)
588 {
589 struct strbuf real_pattern = STRBUF_INIT;
590 struct for_each_ref_filter filter;
591 int ret;
592
593 if (!prefix && !starts_with(pattern, "refs/"))
594 strbuf_addstr(&real_pattern, "refs/");
595 else if (prefix)
596 strbuf_addstr(&real_pattern, prefix);
597 strbuf_addstr(&real_pattern, pattern);
598
599 if (!has_glob_specials(pattern)) {
600 /* Append implied '/' '*' if not present. */
601 strbuf_complete(&real_pattern, '/');
602 /* No need to check for '*', there is none. */
603 strbuf_addch(&real_pattern, '*');
604 }
605
606 filter.pattern = real_pattern.buf;
607 filter.prefix = prefix;
608 filter.fn = fn;
609 filter.cb_data = cb_data;
610 ret = for_each_ref(for_each_filter_refs, &filter);
611
612 strbuf_release(&real_pattern);
613 return ret;
614 }
615
616 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
617 {
618 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
619 }
620
621 const char *prettify_refname(const char *name)
622 {
623 if (skip_prefix(name, "refs/heads/", &name) ||
624 skip_prefix(name, "refs/tags/", &name) ||
625 skip_prefix(name, "refs/remotes/", &name))
626 ; /* nothing */
627 return name;
628 }
629
630 static const char *ref_rev_parse_rules[] = {
631 "%.*s",
632 "refs/%.*s",
633 "refs/tags/%.*s",
634 "refs/heads/%.*s",
635 "refs/remotes/%.*s",
636 "refs/remotes/%.*s/HEAD",
637 NULL
638 };
639
640 #define NUM_REV_PARSE_RULES (ARRAY_SIZE(ref_rev_parse_rules) - 1)
641
642 /*
643 * Is it possible that the caller meant full_name with abbrev_name?
644 * If so return a non-zero value to signal "yes"; the magnitude of
645 * the returned value gives the precedence used for disambiguation.
646 *
647 * If abbrev_name cannot mean full_name, return 0.
648 */
649 int refname_match(const char *abbrev_name, const char *full_name)
650 {
651 const char **p;
652 const int abbrev_name_len = strlen(abbrev_name);
653 const int num_rules = NUM_REV_PARSE_RULES;
654
655 for (p = ref_rev_parse_rules; *p; p++)
656 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name)))
657 return &ref_rev_parse_rules[num_rules] - p;
658
659 return 0;
660 }
661
662 /*
663 * Given a 'prefix' expand it by the rules in 'ref_rev_parse_rules' and add
664 * the results to 'prefixes'
665 */
666 void expand_ref_prefix(struct strvec *prefixes, const char *prefix)
667 {
668 const char **p;
669 int len = strlen(prefix);
670
671 for (p = ref_rev_parse_rules; *p; p++)
672 strvec_pushf(prefixes, *p, len, prefix);
673 }
674
675 static const char default_branch_name_advice[] = N_(
676 "Using '%s' as the name for the initial branch. This default branch name\n"
677 "is subject to change. To configure the initial branch name to use in all\n"
678 "of your new repositories, which will suppress this warning, call:\n"
679 "\n"
680 "\tgit config --global init.defaultBranch <name>\n"
681 "\n"
682 "Names commonly chosen instead of 'master' are 'main', 'trunk' and\n"
683 "'development'. The just-created branch can be renamed via this command:\n"
684 "\n"
685 "\tgit branch -m <name>\n"
686 );
687
688 char *repo_default_branch_name(struct repository *r, int quiet)
689 {
690 const char *config_key = "init.defaultbranch";
691 const char *config_display_key = "init.defaultBranch";
692 char *ret = NULL, *full_ref;
693 const char *env = getenv("GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME");
694
695 if (env && *env)
696 ret = xstrdup(env);
697 else if (repo_config_get_string(r, config_key, &ret) < 0)
698 die(_("could not retrieve `%s`"), config_display_key);
699
700 if (!ret) {
701 ret = xstrdup("master");
702 if (!quiet)
703 advise(_(default_branch_name_advice), ret);
704 }
705
706 full_ref = xstrfmt("refs/heads/%s", ret);
707 if (check_refname_format(full_ref, 0))
708 die(_("invalid branch name: %s = %s"), config_display_key, ret);
709 free(full_ref);
710
711 return ret;
712 }
713
714 const char *git_default_branch_name(int quiet)
715 {
716 static char *ret;
717
718 if (!ret)
719 ret = repo_default_branch_name(the_repository, quiet);
720
721 return ret;
722 }
723
724 /*
725 * *string and *len will only be substituted, and *string returned (for
726 * later free()ing) if the string passed in is a magic short-hand form
727 * to name a branch.
728 */
729 static char *substitute_branch_name(struct repository *r,
730 const char **string, int *len,
731 int nonfatal_dangling_mark)
732 {
733 struct strbuf buf = STRBUF_INIT;
734 struct interpret_branch_name_options options = {
735 .nonfatal_dangling_mark = nonfatal_dangling_mark
736 };
737 int ret = repo_interpret_branch_name(r, *string, *len, &buf, &options);
738
739 if (ret == *len) {
740 size_t size;
741 *string = strbuf_detach(&buf, &size);
742 *len = size;
743 return (char *)*string;
744 }
745
746 return NULL;
747 }
748
749 int repo_dwim_ref(struct repository *r, const char *str, int len,
750 struct object_id *oid, char **ref, int nonfatal_dangling_mark)
751 {
752 char *last_branch = substitute_branch_name(r, &str, &len,
753 nonfatal_dangling_mark);
754 int refs_found = expand_ref(r, str, len, oid, ref);
755 free(last_branch);
756 return refs_found;
757 }
758
759 int expand_ref(struct repository *repo, const char *str, int len,
760 struct object_id *oid, char **ref)
761 {
762 const char **p, *r;
763 int refs_found = 0;
764 struct strbuf fullref = STRBUF_INIT;
765
766 *ref = NULL;
767 for (p = ref_rev_parse_rules; *p; p++) {
768 struct object_id oid_from_ref;
769 struct object_id *this_result;
770 int flag;
771 struct ref_store *refs = get_main_ref_store(repo);
772
773 this_result = refs_found ? &oid_from_ref : oid;
774 strbuf_reset(&fullref);
775 strbuf_addf(&fullref, *p, len, str);
776 r = refs_resolve_ref_unsafe(refs, fullref.buf,
777 RESOLVE_REF_READING,
778 this_result, &flag);
779 if (r) {
780 if (!refs_found++)
781 *ref = xstrdup(r);
782 if (!warn_ambiguous_refs)
783 break;
784 } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
785 warning(_("ignoring dangling symref %s"), fullref.buf);
786 } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
787 warning(_("ignoring broken ref %s"), fullref.buf);
788 }
789 }
790 strbuf_release(&fullref);
791 return refs_found;
792 }
793
794 int repo_dwim_log(struct repository *r, const char *str, int len,
795 struct object_id *oid, char **log)
796 {
797 struct ref_store *refs = get_main_ref_store(r);
798 char *last_branch = substitute_branch_name(r, &str, &len, 0);
799 const char **p;
800 int logs_found = 0;
801 struct strbuf path = STRBUF_INIT;
802
803 *log = NULL;
804 for (p = ref_rev_parse_rules; *p; p++) {
805 struct object_id hash;
806 const char *ref, *it;
807
808 strbuf_reset(&path);
809 strbuf_addf(&path, *p, len, str);
810 ref = refs_resolve_ref_unsafe(refs, path.buf,
811 RESOLVE_REF_READING,
812 oid ? &hash : NULL, NULL);
813 if (!ref)
814 continue;
815 if (refs_reflog_exists(refs, path.buf))
816 it = path.buf;
817 else if (strcmp(ref, path.buf) &&
818 refs_reflog_exists(refs, ref))
819 it = ref;
820 else
821 continue;
822 if (!logs_found++) {
823 *log = xstrdup(it);
824 if (oid)
825 oidcpy(oid, &hash);
826 }
827 if (!warn_ambiguous_refs)
828 break;
829 }
830 strbuf_release(&path);
831 free(last_branch);
832 return logs_found;
833 }
834
835 int dwim_log(const char *str, int len, struct object_id *oid, char **log)
836 {
837 return repo_dwim_log(the_repository, str, len, oid, log);
838 }
839
840 int is_per_worktree_ref(const char *refname)
841 {
842 return starts_with(refname, "refs/worktree/") ||
843 starts_with(refname, "refs/bisect/") ||
844 starts_with(refname, "refs/rewritten/");
845 }
846
847 static int is_pseudoref_syntax(const char *refname)
848 {
849 const char *c;
850
851 for (c = refname; *c; c++) {
852 if (!isupper(*c) && *c != '-' && *c != '_')
853 return 0;
854 }
855
856 /*
857 * HEAD is not a pseudoref, but it certainly uses the
858 * pseudoref syntax.
859 */
860 return 1;
861 }
862
863 static int is_current_worktree_ref(const char *ref) {
864 return is_pseudoref_syntax(ref) || is_per_worktree_ref(ref);
865 }
866
867 enum ref_worktree_type parse_worktree_ref(const char *maybe_worktree_ref,
868 const char **worktree_name, int *worktree_name_length,
869 const char **bare_refname)
870 {
871 const char *name_dummy;
872 int name_length_dummy;
873 const char *ref_dummy;
874
875 if (!worktree_name)
876 worktree_name = &name_dummy;
877 if (!worktree_name_length)
878 worktree_name_length = &name_length_dummy;
879 if (!bare_refname)
880 bare_refname = &ref_dummy;
881
882 if (skip_prefix(maybe_worktree_ref, "worktrees/", bare_refname)) {
883 const char *slash = strchr(*bare_refname, '/');
884
885 *worktree_name = *bare_refname;
886 if (!slash) {
887 *worktree_name_length = strlen(*worktree_name);
888
889 /* This is an error condition, and the caller tell because the bare_refname is "" */
890 *bare_refname = *worktree_name + *worktree_name_length;
891 return REF_WORKTREE_OTHER;
892 }
893
894 *worktree_name_length = slash - *bare_refname;
895 *bare_refname = slash + 1;
896
897 if (is_current_worktree_ref(*bare_refname))
898 return REF_WORKTREE_OTHER;
899 }
900
901 *worktree_name = NULL;
902 *worktree_name_length = 0;
903
904 if (skip_prefix(maybe_worktree_ref, "main-worktree/", bare_refname)
905 && is_current_worktree_ref(*bare_refname))
906 return REF_WORKTREE_MAIN;
907
908 *bare_refname = maybe_worktree_ref;
909 if (is_current_worktree_ref(maybe_worktree_ref))
910 return REF_WORKTREE_CURRENT;
911
912 return REF_WORKTREE_SHARED;
913 }
914
915 long get_files_ref_lock_timeout_ms(void)
916 {
917 static int configured = 0;
918
919 /* The default timeout is 100 ms: */
920 static int timeout_ms = 100;
921
922 if (!configured) {
923 git_config_get_int("core.filesreflocktimeout", &timeout_ms);
924 configured = 1;
925 }
926
927 return timeout_ms;
928 }
929
930 int refs_delete_ref(struct ref_store *refs, const char *msg,
931 const char *refname,
932 const struct object_id *old_oid,
933 unsigned int flags)
934 {
935 struct ref_transaction *transaction;
936 struct strbuf err = STRBUF_INIT;
937
938 transaction = ref_store_transaction_begin(refs, &err);
939 if (!transaction ||
940 ref_transaction_delete(transaction, refname, old_oid,
941 flags, msg, &err) ||
942 ref_transaction_commit(transaction, &err)) {
943 error("%s", err.buf);
944 ref_transaction_free(transaction);
945 strbuf_release(&err);
946 return 1;
947 }
948 ref_transaction_free(transaction);
949 strbuf_release(&err);
950 return 0;
951 }
952
953 int delete_ref(const char *msg, const char *refname,
954 const struct object_id *old_oid, unsigned int flags)
955 {
956 return refs_delete_ref(get_main_ref_store(the_repository), msg, refname,
957 old_oid, flags);
958 }
959
960 static void copy_reflog_msg(struct strbuf *sb, const char *msg)
961 {
962 char c;
963 int wasspace = 1;
964
965 while ((c = *msg++)) {
966 if (wasspace && isspace(c))
967 continue;
968 wasspace = isspace(c);
969 if (wasspace)
970 c = ' ';
971 strbuf_addch(sb, c);
972 }
973 strbuf_rtrim(sb);
974 }
975
976 static char *normalize_reflog_message(const char *msg)
977 {
978 struct strbuf sb = STRBUF_INIT;
979
980 if (msg && *msg)
981 copy_reflog_msg(&sb, msg);
982 return strbuf_detach(&sb, NULL);
983 }
984
985 int should_autocreate_reflog(const char *refname)
986 {
987 switch (log_all_ref_updates) {
988 case LOG_REFS_ALWAYS:
989 return 1;
990 case LOG_REFS_NORMAL:
991 return starts_with(refname, "refs/heads/") ||
992 starts_with(refname, "refs/remotes/") ||
993 starts_with(refname, "refs/notes/") ||
994 !strcmp(refname, "HEAD");
995 default:
996 return 0;
997 }
998 }
999
1000 int is_branch(const char *refname)
1001 {
1002 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
1003 }
1004
1005 struct read_ref_at_cb {
1006 const char *refname;
1007 timestamp_t at_time;
1008 int cnt;
1009 int reccnt;
1010 struct object_id *oid;
1011 int found_it;
1012
1013 struct object_id ooid;
1014 struct object_id noid;
1015 int tz;
1016 timestamp_t date;
1017 char **msg;
1018 timestamp_t *cutoff_time;
1019 int *cutoff_tz;
1020 int *cutoff_cnt;
1021 };
1022
1023 static void set_read_ref_cutoffs(struct read_ref_at_cb *cb,
1024 timestamp_t timestamp, int tz, const char *message)
1025 {
1026 if (cb->msg)
1027 *cb->msg = xstrdup(message);
1028 if (cb->cutoff_time)
1029 *cb->cutoff_time = timestamp;
1030 if (cb->cutoff_tz)
1031 *cb->cutoff_tz = tz;
1032 if (cb->cutoff_cnt)
1033 *cb->cutoff_cnt = cb->reccnt;
1034 }
1035
1036 static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
1037 const char *email UNUSED,
1038 timestamp_t timestamp, int tz,
1039 const char *message, void *cb_data)
1040 {
1041 struct read_ref_at_cb *cb = cb_data;
1042 int reached_count;
1043
1044 cb->tz = tz;
1045 cb->date = timestamp;
1046
1047 /*
1048 * It is not possible for cb->cnt == 0 on the first iteration because
1049 * that special case is handled in read_ref_at().
1050 */
1051 if (cb->cnt > 0)
1052 cb->cnt--;
1053 reached_count = cb->cnt == 0 && !is_null_oid(ooid);
1054 if (timestamp <= cb->at_time || reached_count) {
1055 set_read_ref_cutoffs(cb, timestamp, tz, message);
1056 /*
1057 * we have not yet updated cb->[n|o]oid so they still
1058 * hold the values for the previous record.
1059 */
1060 if (!is_null_oid(&cb->ooid) && !oideq(&cb->ooid, noid))
1061 warning(_("log for ref %s has gap after %s"),
1062 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
1063 if (reached_count)
1064 oidcpy(cb->oid, ooid);
1065 else if (!is_null_oid(&cb->ooid) || cb->date == cb->at_time)
1066 oidcpy(cb->oid, noid);
1067 else if (!oideq(noid, cb->oid))
1068 warning(_("log for ref %s unexpectedly ended on %s"),
1069 cb->refname, show_date(cb->date, cb->tz,
1070 DATE_MODE(RFC2822)));
1071 cb->found_it = 1;
1072 }
1073 cb->reccnt++;
1074 oidcpy(&cb->ooid, ooid);
1075 oidcpy(&cb->noid, noid);
1076 return cb->found_it;
1077 }
1078
1079 static int read_ref_at_ent_newest(struct object_id *ooid UNUSED,
1080 struct object_id *noid,
1081 const char *email UNUSED,
1082 timestamp_t timestamp, int tz,
1083 const char *message, void *cb_data)
1084 {
1085 struct read_ref_at_cb *cb = cb_data;
1086
1087 set_read_ref_cutoffs(cb, timestamp, tz, message);
1088 oidcpy(cb->oid, noid);
1089 /* We just want the first entry */
1090 return 1;
1091 }
1092
1093 static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
1094 const char *email UNUSED,
1095 timestamp_t timestamp, int tz,
1096 const char *message, void *cb_data)
1097 {
1098 struct read_ref_at_cb *cb = cb_data;
1099
1100 set_read_ref_cutoffs(cb, timestamp, tz, message);
1101 oidcpy(cb->oid, ooid);
1102 if (is_null_oid(cb->oid))
1103 oidcpy(cb->oid, noid);
1104 /* We just want the first entry */
1105 return 1;
1106 }
1107
1108 int read_ref_at(struct ref_store *refs, const char *refname,
1109 unsigned int flags, timestamp_t at_time, int cnt,
1110 struct object_id *oid, char **msg,
1111 timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
1112 {
1113 struct read_ref_at_cb cb;
1114
1115 memset(&cb, 0, sizeof(cb));
1116 cb.refname = refname;
1117 cb.at_time = at_time;
1118 cb.cnt = cnt;
1119 cb.msg = msg;
1120 cb.cutoff_time = cutoff_time;
1121 cb.cutoff_tz = cutoff_tz;
1122 cb.cutoff_cnt = cutoff_cnt;
1123 cb.oid = oid;
1124
1125 if (cb.cnt == 0) {
1126 refs_for_each_reflog_ent_reverse(refs, refname, read_ref_at_ent_newest, &cb);
1127 return 0;
1128 }
1129
1130 refs_for_each_reflog_ent_reverse(refs, refname, read_ref_at_ent, &cb);
1131
1132 if (!cb.reccnt) {
1133 if (flags & GET_OID_QUIETLY)
1134 exit(128);
1135 else
1136 die(_("log for %s is empty"), refname);
1137 }
1138 if (cb.found_it)
1139 return 0;
1140
1141 refs_for_each_reflog_ent(refs, refname, read_ref_at_ent_oldest, &cb);
1142
1143 return 1;
1144 }
1145
1146 struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
1147 struct strbuf *err)
1148 {
1149 struct ref_transaction *tr;
1150 assert(err);
1151
1152 CALLOC_ARRAY(tr, 1);
1153 tr->ref_store = refs;
1154 return tr;
1155 }
1156
1157 struct ref_transaction *ref_transaction_begin(struct strbuf *err)
1158 {
1159 return ref_store_transaction_begin(get_main_ref_store(the_repository), err);
1160 }
1161
1162 void ref_transaction_free(struct ref_transaction *transaction)
1163 {
1164 size_t i;
1165
1166 if (!transaction)
1167 return;
1168
1169 switch (transaction->state) {
1170 case REF_TRANSACTION_OPEN:
1171 case REF_TRANSACTION_CLOSED:
1172 /* OK */
1173 break;
1174 case REF_TRANSACTION_PREPARED:
1175 BUG("free called on a prepared reference transaction");
1176 break;
1177 default:
1178 BUG("unexpected reference transaction state");
1179 break;
1180 }
1181
1182 for (i = 0; i < transaction->nr; i++) {
1183 free(transaction->updates[i]->msg);
1184 free(transaction->updates[i]);
1185 }
1186 free(transaction->updates);
1187 free(transaction);
1188 }
1189
1190 struct ref_update *ref_transaction_add_update(
1191 struct ref_transaction *transaction,
1192 const char *refname, unsigned int flags,
1193 const struct object_id *new_oid,
1194 const struct object_id *old_oid,
1195 const char *msg)
1196 {
1197 struct ref_update *update;
1198
1199 if (transaction->state != REF_TRANSACTION_OPEN)
1200 BUG("update called for transaction that is not open");
1201
1202 FLEX_ALLOC_STR(update, refname, refname);
1203 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
1204 transaction->updates[transaction->nr++] = update;
1205
1206 update->flags = flags;
1207
1208 if (flags & REF_HAVE_NEW)
1209 oidcpy(&update->new_oid, new_oid);
1210 if (flags & REF_HAVE_OLD)
1211 oidcpy(&update->old_oid, old_oid);
1212 update->msg = normalize_reflog_message(msg);
1213 return update;
1214 }
1215
1216 int ref_transaction_update(struct ref_transaction *transaction,
1217 const char *refname,
1218 const struct object_id *new_oid,
1219 const struct object_id *old_oid,
1220 unsigned int flags, const char *msg,
1221 struct strbuf *err)
1222 {
1223 assert(err);
1224
1225 if (!(flags & REF_SKIP_REFNAME_VERIFICATION) &&
1226 ((new_oid && !is_null_oid(new_oid)) ?
1227 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
1228 !refname_is_safe(refname))) {
1229 strbuf_addf(err, _("refusing to update ref with bad name '%s'"),
1230 refname);
1231 return -1;
1232 }
1233
1234 if (flags & ~REF_TRANSACTION_UPDATE_ALLOWED_FLAGS)
1235 BUG("illegal flags 0x%x passed to ref_transaction_update()", flags);
1236
1237 /*
1238 * Clear flags outside the allowed set; this should be a noop because
1239 * of the BUG() check above, but it works around a -Wnonnull warning
1240 * with some versions of "gcc -O3".
1241 */
1242 flags &= REF_TRANSACTION_UPDATE_ALLOWED_FLAGS;
1243
1244 flags |= (new_oid ? REF_HAVE_NEW : 0) | (old_oid ? REF_HAVE_OLD : 0);
1245
1246 ref_transaction_add_update(transaction, refname, flags,
1247 new_oid, old_oid, msg);
1248 return 0;
1249 }
1250
1251 int ref_transaction_create(struct ref_transaction *transaction,
1252 const char *refname,
1253 const struct object_id *new_oid,
1254 unsigned int flags, const char *msg,
1255 struct strbuf *err)
1256 {
1257 if (!new_oid || is_null_oid(new_oid)) {
1258 strbuf_addf(err, "'%s' has a null OID", refname);
1259 return 1;
1260 }
1261 return ref_transaction_update(transaction, refname, new_oid,
1262 null_oid(), flags, msg, err);
1263 }
1264
1265 int ref_transaction_delete(struct ref_transaction *transaction,
1266 const char *refname,
1267 const struct object_id *old_oid,
1268 unsigned int flags, const char *msg,
1269 struct strbuf *err)
1270 {
1271 if (old_oid && is_null_oid(old_oid))
1272 BUG("delete called with old_oid set to zeros");
1273 return ref_transaction_update(transaction, refname,
1274 null_oid(), old_oid,
1275 flags, msg, err);
1276 }
1277
1278 int ref_transaction_verify(struct ref_transaction *transaction,
1279 const char *refname,
1280 const struct object_id *old_oid,
1281 unsigned int flags,
1282 struct strbuf *err)
1283 {
1284 if (!old_oid)
1285 BUG("verify called with old_oid set to NULL");
1286 return ref_transaction_update(transaction, refname,
1287 NULL, old_oid,
1288 flags, NULL, err);
1289 }
1290
1291 int refs_update_ref(struct ref_store *refs, const char *msg,
1292 const char *refname, const struct object_id *new_oid,
1293 const struct object_id *old_oid, unsigned int flags,
1294 enum action_on_err onerr)
1295 {
1296 struct ref_transaction *t = NULL;
1297 struct strbuf err = STRBUF_INIT;
1298 int ret = 0;
1299
1300 t = ref_store_transaction_begin(refs, &err);
1301 if (!t ||
1302 ref_transaction_update(t, refname, new_oid, old_oid, flags, msg,
1303 &err) ||
1304 ref_transaction_commit(t, &err)) {
1305 ret = 1;
1306 ref_transaction_free(t);
1307 }
1308 if (ret) {
1309 const char *str = _("update_ref failed for ref '%s': %s");
1310
1311 switch (onerr) {
1312 case UPDATE_REFS_MSG_ON_ERR:
1313 error(str, refname, err.buf);
1314 break;
1315 case UPDATE_REFS_DIE_ON_ERR:
1316 die(str, refname, err.buf);
1317 break;
1318 case UPDATE_REFS_QUIET_ON_ERR:
1319 break;
1320 }
1321 strbuf_release(&err);
1322 return 1;
1323 }
1324 strbuf_release(&err);
1325 if (t)
1326 ref_transaction_free(t);
1327 return 0;
1328 }
1329
1330 int update_ref(const char *msg, const char *refname,
1331 const struct object_id *new_oid,
1332 const struct object_id *old_oid,
1333 unsigned int flags, enum action_on_err onerr)
1334 {
1335 return refs_update_ref(get_main_ref_store(the_repository), msg, refname, new_oid,
1336 old_oid, flags, onerr);
1337 }
1338
1339 /*
1340 * Check that the string refname matches a rule of the form
1341 * "{prefix}%.*s{suffix}". So "foo/bar/baz" would match the rule
1342 * "foo/%.*s/baz", and return the string "bar".
1343 */
1344 static const char *match_parse_rule(const char *refname, const char *rule,
1345 size_t *len)
1346 {
1347 /*
1348 * Check that rule matches refname up to the first percent in the rule.
1349 * We can bail immediately if not, but otherwise we leave "rule" at the
1350 * %-placeholder, and "refname" at the start of the potential matched
1351 * name.
1352 */
1353 while (*rule != '%') {
1354 if (!*rule)
1355 BUG("rev-parse rule did not have percent");
1356 if (*refname++ != *rule++)
1357 return NULL;
1358 }
1359
1360 /*
1361 * Check that our "%" is the expected placeholder. This assumes there
1362 * are no other percents (placeholder or quoted) in the string, but
1363 * that is sufficient for our rev-parse rules.
1364 */
1365 if (!skip_prefix(rule, "%.*s", &rule))
1366 return NULL;
1367
1368 /*
1369 * And now check that our suffix (if any) matches.
1370 */
1371 if (!strip_suffix(refname, rule, len))
1372 return NULL;
1373
1374 return refname; /* len set by strip_suffix() */
1375 }
1376
1377 char *refs_shorten_unambiguous_ref(struct ref_store *refs,
1378 const char *refname, int strict)
1379 {
1380 int i;
1381 struct strbuf resolved_buf = STRBUF_INIT;
1382
1383 /* skip first rule, it will always match */
1384 for (i = NUM_REV_PARSE_RULES - 1; i > 0 ; --i) {
1385 int j;
1386 int rules_to_fail = i;
1387 const char *short_name;
1388 size_t short_name_len;
1389
1390 short_name = match_parse_rule(refname, ref_rev_parse_rules[i],
1391 &short_name_len);
1392 if (!short_name)
1393 continue;
1394
1395 /*
1396 * in strict mode, all (except the matched one) rules
1397 * must fail to resolve to a valid non-ambiguous ref
1398 */
1399 if (strict)
1400 rules_to_fail = NUM_REV_PARSE_RULES;
1401
1402 /*
1403 * check if the short name resolves to a valid ref,
1404 * but use only rules prior to the matched one
1405 */
1406 for (j = 0; j < rules_to_fail; j++) {
1407 const char *rule = ref_rev_parse_rules[j];
1408
1409 /* skip matched rule */
1410 if (i == j)
1411 continue;
1412
1413 /*
1414 * the short name is ambiguous, if it resolves
1415 * (with this previous rule) to a valid ref
1416 * read_ref() returns 0 on success
1417 */
1418 strbuf_reset(&resolved_buf);
1419 strbuf_addf(&resolved_buf, rule,
1420 cast_size_t_to_int(short_name_len),
1421 short_name);
1422 if (refs_ref_exists(refs, resolved_buf.buf))
1423 break;
1424 }
1425
1426 /*
1427 * short name is non-ambiguous if all previous rules
1428 * haven't resolved to a valid ref
1429 */
1430 if (j == rules_to_fail) {
1431 strbuf_release(&resolved_buf);
1432 return xmemdupz(short_name, short_name_len);
1433 }
1434 }
1435
1436 strbuf_release(&resolved_buf);
1437 return xstrdup(refname);
1438 }
1439
1440 char *shorten_unambiguous_ref(const char *refname, int strict)
1441 {
1442 return refs_shorten_unambiguous_ref(get_main_ref_store(the_repository),
1443 refname, strict);
1444 }
1445
1446 int parse_hide_refs_config(const char *var, const char *value, const char *section,
1447 struct strvec *hide_refs)
1448 {
1449 const char *key;
1450 if (!strcmp("transfer.hiderefs", var) ||
1451 (!parse_config_key(var, section, NULL, NULL, &key) &&
1452 !strcmp(key, "hiderefs"))) {
1453 char *ref;
1454 int len;
1455
1456 if (!value)
1457 return config_error_nonbool(var);
1458
1459 /* drop const to remove trailing '/' characters */
1460 ref = (char *)strvec_push(hide_refs, value);
1461 len = strlen(ref);
1462 while (len && ref[len - 1] == '/')
1463 ref[--len] = '\0';
1464 }
1465 return 0;
1466 }
1467
1468 int ref_is_hidden(const char *refname, const char *refname_full,
1469 const struct strvec *hide_refs)
1470 {
1471 int i;
1472
1473 for (i = hide_refs->nr - 1; i >= 0; i--) {
1474 const char *match = hide_refs->v[i];
1475 const char *subject;
1476 int neg = 0;
1477 const char *p;
1478
1479 if (*match == '!') {
1480 neg = 1;
1481 match++;
1482 }
1483
1484 if (*match == '^') {
1485 subject = refname_full;
1486 match++;
1487 } else {
1488 subject = refname;
1489 }
1490
1491 /* refname can be NULL when namespaces are used. */
1492 if (subject &&
1493 skip_prefix(subject, match, &p) &&
1494 (!*p || *p == '/'))
1495 return !neg;
1496 }
1497 return 0;
1498 }
1499
1500 const char **hidden_refs_to_excludes(const struct strvec *hide_refs)
1501 {
1502 const char **pattern;
1503 for (pattern = hide_refs->v; *pattern; pattern++) {
1504 /*
1505 * We can't feed any excludes from hidden refs config
1506 * sections, since later rules may override previous
1507 * ones. For example, with rules "refs/foo" and
1508 * "!refs/foo/bar", we should show "refs/foo/bar" (and
1509 * everything underneath it), but the earlier exclusion
1510 * would cause us to skip all of "refs/foo". We
1511 * likewise don't implement the namespace stripping
1512 * required for '^' rules.
1513 *
1514 * Both are possible to do, but complicated, so avoid
1515 * populating the jump list at all if we see either of
1516 * these patterns.
1517 */
1518 if (**pattern == '!' || **pattern == '^')
1519 return NULL;
1520 }
1521 return hide_refs->v;
1522 }
1523
1524 const char *find_descendant_ref(const char *dirname,
1525 const struct string_list *extras,
1526 const struct string_list *skip)
1527 {
1528 int pos;
1529
1530 if (!extras)
1531 return NULL;
1532
1533 /*
1534 * Look at the place where dirname would be inserted into
1535 * extras. If there is an entry at that position that starts
1536 * with dirname (remember, dirname includes the trailing
1537 * slash) and is not in skip, then we have a conflict.
1538 */
1539 for (pos = string_list_find_insert_index(extras, dirname, 0);
1540 pos < extras->nr; pos++) {
1541 const char *extra_refname = extras->items[pos].string;
1542
1543 if (!starts_with(extra_refname, dirname))
1544 break;
1545
1546 if (!skip || !string_list_has_string(skip, extra_refname))
1547 return extra_refname;
1548 }
1549 return NULL;
1550 }
1551
1552 int refs_head_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1553 {
1554 struct object_id oid;
1555 int flag;
1556
1557 if (refs_resolve_ref_unsafe(refs, "HEAD", RESOLVE_REF_READING,
1558 &oid, &flag))
1559 return fn("HEAD", &oid, flag, cb_data);
1560
1561 return 0;
1562 }
1563
1564 int head_ref(each_ref_fn fn, void *cb_data)
1565 {
1566 return refs_head_ref(get_main_ref_store(the_repository), fn, cb_data);
1567 }
1568
1569 struct ref_iterator *refs_ref_iterator_begin(
1570 struct ref_store *refs,
1571 const char *prefix,
1572 const char **exclude_patterns,
1573 int trim,
1574 enum do_for_each_ref_flags flags)
1575 {
1576 struct ref_iterator *iter;
1577
1578 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) {
1579 static int ref_paranoia = -1;
1580
1581 if (ref_paranoia < 0)
1582 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 1);
1583 if (ref_paranoia) {
1584 flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1585 flags |= DO_FOR_EACH_OMIT_DANGLING_SYMREFS;
1586 }
1587 }
1588
1589 iter = refs->be->iterator_begin(refs, prefix, exclude_patterns, flags);
1590 /*
1591 * `iterator_begin()` already takes care of prefix, but we
1592 * might need to do some trimming:
1593 */
1594 if (trim)
1595 iter = prefix_ref_iterator_begin(iter, "", trim);
1596
1597 return iter;
1598 }
1599
1600 /*
1601 * Call fn for each reference in the specified submodule for which the
1602 * refname begins with prefix. If trim is non-zero, then trim that
1603 * many characters off the beginning of each refname before passing
1604 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1605 * include broken references in the iteration. If fn ever returns a
1606 * non-zero value, stop the iteration and return that value;
1607 * otherwise, return 0.
1608 */
1609 static int do_for_each_repo_ref(struct repository *r, const char *prefix,
1610 each_repo_ref_fn fn, int trim, int flags,
1611 void *cb_data)
1612 {
1613 struct ref_iterator *iter;
1614 struct ref_store *refs = get_main_ref_store(r);
1615
1616 if (!refs)
1617 return 0;
1618
1619 iter = refs_ref_iterator_begin(refs, prefix, NULL, trim, flags);
1620
1621 return do_for_each_repo_ref_iterator(r, iter, fn, cb_data);
1622 }
1623
1624 struct do_for_each_ref_help {
1625 each_ref_fn *fn;
1626 void *cb_data;
1627 };
1628
1629 static int do_for_each_ref_helper(struct repository *r UNUSED,
1630 const char *refname,
1631 const struct object_id *oid,
1632 int flags,
1633 void *cb_data)
1634 {
1635 struct do_for_each_ref_help *hp = cb_data;
1636
1637 return hp->fn(refname, oid, flags, hp->cb_data);
1638 }
1639
1640 static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1641 const char **exclude_patterns,
1642 each_ref_fn fn, int trim,
1643 enum do_for_each_ref_flags flags, void *cb_data)
1644 {
1645 struct ref_iterator *iter;
1646 struct do_for_each_ref_help hp = { fn, cb_data };
1647
1648 if (!refs)
1649 return 0;
1650
1651 iter = refs_ref_iterator_begin(refs, prefix, exclude_patterns, trim,
1652 flags);
1653
1654 return do_for_each_repo_ref_iterator(the_repository, iter,
1655 do_for_each_ref_helper, &hp);
1656 }
1657
1658 int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1659 {
1660 return do_for_each_ref(refs, "", NULL, fn, 0, 0, cb_data);
1661 }
1662
1663 int for_each_ref(each_ref_fn fn, void *cb_data)
1664 {
1665 return refs_for_each_ref(get_main_ref_store(the_repository), fn, cb_data);
1666 }
1667
1668 int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1669 each_ref_fn fn, void *cb_data)
1670 {
1671 return do_for_each_ref(refs, prefix, NULL, fn, strlen(prefix), 0, cb_data);
1672 }
1673
1674 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1675 {
1676 return refs_for_each_ref_in(get_main_ref_store(the_repository), prefix, fn, cb_data);
1677 }
1678
1679 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1680 {
1681 return do_for_each_ref(get_main_ref_store(the_repository),
1682 prefix, NULL, fn, 0, 0, cb_data);
1683 }
1684
1685 int refs_for_each_fullref_in(struct ref_store *refs, const char *prefix,
1686 const char **exclude_patterns,
1687 each_ref_fn fn, void *cb_data)
1688 {
1689 return do_for_each_ref(refs, prefix, exclude_patterns, fn, 0, 0, cb_data);
1690 }
1691
1692 int for_each_replace_ref(struct repository *r, each_repo_ref_fn fn, void *cb_data)
1693 {
1694 const char *git_replace_ref_base = ref_namespace[NAMESPACE_REPLACE].ref;
1695 return do_for_each_repo_ref(r, git_replace_ref_base, fn,
1696 strlen(git_replace_ref_base),
1697 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1698 }
1699
1700 int for_each_namespaced_ref(const char **exclude_patterns,
1701 each_ref_fn fn, void *cb_data)
1702 {
1703 struct strbuf buf = STRBUF_INIT;
1704 int ret;
1705 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1706 ret = do_for_each_ref(get_main_ref_store(the_repository),
1707 buf.buf, exclude_patterns, fn, 0, 0, cb_data);
1708 strbuf_release(&buf);
1709 return ret;
1710 }
1711
1712 int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1713 {
1714 return do_for_each_ref(refs, "", NULL, fn, 0,
1715 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1716 }
1717
1718 int for_each_rawref(each_ref_fn fn, void *cb_data)
1719 {
1720 return refs_for_each_rawref(get_main_ref_store(the_repository), fn, cb_data);
1721 }
1722
1723 static int qsort_strcmp(const void *va, const void *vb)
1724 {
1725 const char *a = *(const char **)va;
1726 const char *b = *(const char **)vb;
1727
1728 return strcmp(a, b);
1729 }
1730
1731 static void find_longest_prefixes_1(struct string_list *out,
1732 struct strbuf *prefix,
1733 const char **patterns, size_t nr)
1734 {
1735 size_t i;
1736
1737 for (i = 0; i < nr; i++) {
1738 char c = patterns[i][prefix->len];
1739 if (!c || is_glob_special(c)) {
1740 string_list_append(out, prefix->buf);
1741 return;
1742 }
1743 }
1744
1745 i = 0;
1746 while (i < nr) {
1747 size_t end;
1748
1749 /*
1750 * Set "end" to the index of the element _after_ the last one
1751 * in our group.
1752 */
1753 for (end = i + 1; end < nr; end++) {
1754 if (patterns[i][prefix->len] != patterns[end][prefix->len])
1755 break;
1756 }
1757
1758 strbuf_addch(prefix, patterns[i][prefix->len]);
1759 find_longest_prefixes_1(out, prefix, patterns + i, end - i);
1760 strbuf_setlen(prefix, prefix->len - 1);
1761
1762 i = end;
1763 }
1764 }
1765
1766 static void find_longest_prefixes(struct string_list *out,
1767 const char **patterns)
1768 {
1769 struct strvec sorted = STRVEC_INIT;
1770 struct strbuf prefix = STRBUF_INIT;
1771
1772 strvec_pushv(&sorted, patterns);
1773 QSORT(sorted.v, sorted.nr, qsort_strcmp);
1774
1775 find_longest_prefixes_1(out, &prefix, sorted.v, sorted.nr);
1776
1777 strvec_clear(&sorted);
1778 strbuf_release(&prefix);
1779 }
1780
1781 int refs_for_each_fullref_in_prefixes(struct ref_store *ref_store,
1782 const char *namespace,
1783 const char **patterns,
1784 const char **exclude_patterns,
1785 each_ref_fn fn, void *cb_data)
1786 {
1787 struct string_list prefixes = STRING_LIST_INIT_DUP;
1788 struct string_list_item *prefix;
1789 struct strbuf buf = STRBUF_INIT;
1790 int ret = 0, namespace_len;
1791
1792 find_longest_prefixes(&prefixes, patterns);
1793
1794 if (namespace)
1795 strbuf_addstr(&buf, namespace);
1796 namespace_len = buf.len;
1797
1798 for_each_string_list_item(prefix, &prefixes) {
1799 strbuf_addstr(&buf, prefix->string);
1800 ret = refs_for_each_fullref_in(ref_store, buf.buf,
1801 exclude_patterns, fn, cb_data);
1802 if (ret)
1803 break;
1804 strbuf_setlen(&buf, namespace_len);
1805 }
1806
1807 string_list_clear(&prefixes, 0);
1808 strbuf_release(&buf);
1809 return ret;
1810 }
1811
1812 static int refs_read_special_head(struct ref_store *ref_store,
1813 const char *refname, struct object_id *oid,
1814 struct strbuf *referent, unsigned int *type,
1815 int *failure_errno)
1816 {
1817 struct strbuf full_path = STRBUF_INIT;
1818 struct strbuf content = STRBUF_INIT;
1819 int result = -1;
1820 strbuf_addf(&full_path, "%s/%s", ref_store->gitdir, refname);
1821
1822 if (strbuf_read_file(&content, full_path.buf, 0) < 0) {
1823 *failure_errno = errno;
1824 goto done;
1825 }
1826
1827 result = parse_loose_ref_contents(content.buf, oid, referent, type,
1828 failure_errno);
1829
1830 done:
1831 strbuf_release(&full_path);
1832 strbuf_release(&content);
1833 return result;
1834 }
1835
1836 static int is_special_ref(const char *refname)
1837 {
1838 /*
1839 * Special references are refs that have different semantics compared
1840 * to "normal" refs. These refs can thus not be stored in the ref
1841 * backend, but must always be accessed via the filesystem. The
1842 * following refs are special:
1843 *
1844 * - FETCH_HEAD may contain multiple object IDs, and each one of them
1845 * carries additional metadata like where it came from.
1846 *
1847 * - MERGE_HEAD may contain multiple object IDs when merging multiple
1848 * heads.
1849 *
1850 * Reading, writing or deleting references must consistently go either
1851 * through the filesystem (special refs) or through the reference
1852 * backend (normal ones).
1853 */
1854 static const char * const special_refs[] = {
1855 "FETCH_HEAD",
1856 "MERGE_HEAD",
1857 };
1858 size_t i;
1859
1860 for (i = 0; i < ARRAY_SIZE(special_refs); i++)
1861 if (!strcmp(refname, special_refs[i]))
1862 return 1;
1863
1864 return 0;
1865 }
1866
1867 int refs_read_raw_ref(struct ref_store *ref_store, const char *refname,
1868 struct object_id *oid, struct strbuf *referent,
1869 unsigned int *type, int *failure_errno)
1870 {
1871 assert(failure_errno);
1872 if (is_special_ref(refname))
1873 return refs_read_special_head(ref_store, refname, oid, referent,
1874 type, failure_errno);
1875
1876 return ref_store->be->read_raw_ref(ref_store, refname, oid, referent,
1877 type, failure_errno);
1878 }
1879
1880 int refs_read_symbolic_ref(struct ref_store *ref_store, const char *refname,
1881 struct strbuf *referent)
1882 {
1883 return ref_store->be->read_symbolic_ref(ref_store, refname, referent);
1884 }
1885
1886 const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1887 const char *refname,
1888 int resolve_flags,
1889 struct object_id *oid,
1890 int *flags)
1891 {
1892 static struct strbuf sb_refname = STRBUF_INIT;
1893 struct object_id unused_oid;
1894 int unused_flags;
1895 int symref_count;
1896
1897 if (!oid)
1898 oid = &unused_oid;
1899 if (!flags)
1900 flags = &unused_flags;
1901
1902 *flags = 0;
1903
1904 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1905 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1906 !refname_is_safe(refname))
1907 return NULL;
1908
1909 /*
1910 * repo_dwim_ref() uses REF_ISBROKEN to distinguish between
1911 * missing refs and refs that were present but invalid,
1912 * to complain about the latter to stderr.
1913 *
1914 * We don't know whether the ref exists, so don't set
1915 * REF_ISBROKEN yet.
1916 */
1917 *flags |= REF_BAD_NAME;
1918 }
1919
1920 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1921 unsigned int read_flags = 0;
1922 int failure_errno;
1923
1924 if (refs_read_raw_ref(refs, refname, oid, &sb_refname,
1925 &read_flags, &failure_errno)) {
1926 *flags |= read_flags;
1927
1928 /* In reading mode, refs must eventually resolve */
1929 if (resolve_flags & RESOLVE_REF_READING)
1930 return NULL;
1931
1932 /*
1933 * Otherwise a missing ref is OK. But the files backend
1934 * may show errors besides ENOENT if there are
1935 * similarly-named refs.
1936 */
1937 if (failure_errno != ENOENT &&
1938 failure_errno != EISDIR &&
1939 failure_errno != ENOTDIR)
1940 return NULL;
1941
1942 oidclr(oid);
1943 if (*flags & REF_BAD_NAME)
1944 *flags |= REF_ISBROKEN;
1945 return refname;
1946 }
1947
1948 *flags |= read_flags;
1949
1950 if (!(read_flags & REF_ISSYMREF)) {
1951 if (*flags & REF_BAD_NAME) {
1952 oidclr(oid);
1953 *flags |= REF_ISBROKEN;
1954 }
1955 return refname;
1956 }
1957
1958 refname = sb_refname.buf;
1959 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1960 oidclr(oid);
1961 return refname;
1962 }
1963 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1964 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1965 !refname_is_safe(refname))
1966 return NULL;
1967
1968 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1969 }
1970 }
1971
1972 return NULL;
1973 }
1974
1975 /* backend functions */
1976 int refs_init_db(struct ref_store *refs, int flags, struct strbuf *err)
1977 {
1978 return refs->be->init_db(refs, flags, err);
1979 }
1980
1981 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1982 struct object_id *oid, int *flags)
1983 {
1984 return refs_resolve_ref_unsafe(get_main_ref_store(the_repository), refname,
1985 resolve_flags, oid, flags);
1986 }
1987
1988 int resolve_gitlink_ref(const char *submodule, const char *refname,
1989 struct object_id *oid)
1990 {
1991 struct ref_store *refs;
1992 int flags;
1993
1994 refs = get_submodule_ref_store(submodule);
1995
1996 if (!refs)
1997 return -1;
1998
1999 if (!refs_resolve_ref_unsafe(refs, refname, 0, oid, &flags) ||
2000 is_null_oid(oid))
2001 return -1;
2002 return 0;
2003 }
2004
2005 struct ref_store_hash_entry
2006 {
2007 struct hashmap_entry ent;
2008
2009 struct ref_store *refs;
2010
2011 /* NUL-terminated identifier of the ref store: */
2012 char name[FLEX_ARRAY];
2013 };
2014
2015 static int ref_store_hash_cmp(const void *cmp_data UNUSED,
2016 const struct hashmap_entry *eptr,
2017 const struct hashmap_entry *entry_or_key,
2018 const void *keydata)
2019 {
2020 const struct ref_store_hash_entry *e1, *e2;
2021 const char *name;
2022
2023 e1 = container_of(eptr, const struct ref_store_hash_entry, ent);
2024 e2 = container_of(entry_or_key, const struct ref_store_hash_entry, ent);
2025 name = keydata ? keydata : e2->name;
2026
2027 return strcmp(e1->name, name);
2028 }
2029
2030 static struct ref_store_hash_entry *alloc_ref_store_hash_entry(
2031 const char *name, struct ref_store *refs)
2032 {
2033 struct ref_store_hash_entry *entry;
2034
2035 FLEX_ALLOC_STR(entry, name, name);
2036 hashmap_entry_init(&entry->ent, strhash(name));
2037 entry->refs = refs;
2038 return entry;
2039 }
2040
2041 /* A hashmap of ref_stores, stored by submodule name: */
2042 static struct hashmap submodule_ref_stores;
2043
2044 /* A hashmap of ref_stores, stored by worktree id: */
2045 static struct hashmap worktree_ref_stores;
2046
2047 /*
2048 * Look up a ref store by name. If that ref_store hasn't been
2049 * registered yet, return NULL.
2050 */
2051 static struct ref_store *lookup_ref_store_map(struct hashmap *map,
2052 const char *name)
2053 {
2054 struct ref_store_hash_entry *entry;
2055 unsigned int hash;
2056
2057 if (!map->tablesize)
2058 /* It's initialized on demand in register_ref_store(). */
2059 return NULL;
2060
2061 hash = strhash(name);
2062 entry = hashmap_get_entry_from_hash(map, hash, name,
2063 struct ref_store_hash_entry, ent);
2064 return entry ? entry->refs : NULL;
2065 }
2066
2067 /*
2068 * Create, record, and return a ref_store instance for the specified
2069 * gitdir.
2070 */
2071 static struct ref_store *ref_store_init(struct repository *repo,
2072 const char *gitdir,
2073 unsigned int flags)
2074 {
2075 const struct ref_storage_be *be;
2076 struct ref_store *refs;
2077
2078 be = find_ref_storage_backend(repo->ref_storage_format);
2079 if (!be)
2080 BUG("reference backend is unknown");
2081
2082 refs = be->init(repo, gitdir, flags);
2083 return refs;
2084 }
2085
2086 struct ref_store *get_main_ref_store(struct repository *r)
2087 {
2088 if (r->refs_private)
2089 return r->refs_private;
2090
2091 if (!r->gitdir)
2092 BUG("attempting to get main_ref_store outside of repository");
2093
2094 r->refs_private = ref_store_init(r, r->gitdir, REF_STORE_ALL_CAPS);
2095 r->refs_private = maybe_debug_wrap_ref_store(r->gitdir, r->refs_private);
2096 return r->refs_private;
2097 }
2098
2099 /*
2100 * Associate a ref store with a name. It is a fatal error to call this
2101 * function twice for the same name.
2102 */
2103 static void register_ref_store_map(struct hashmap *map,
2104 const char *type,
2105 struct ref_store *refs,
2106 const char *name)
2107 {
2108 struct ref_store_hash_entry *entry;
2109
2110 if (!map->tablesize)
2111 hashmap_init(map, ref_store_hash_cmp, NULL, 0);
2112
2113 entry = alloc_ref_store_hash_entry(name, refs);
2114 if (hashmap_put(map, &entry->ent))
2115 BUG("%s ref_store '%s' initialized twice", type, name);
2116 }
2117
2118 struct ref_store *get_submodule_ref_store(const char *submodule)
2119 {
2120 struct strbuf submodule_sb = STRBUF_INIT;
2121 struct ref_store *refs;
2122 char *to_free = NULL;
2123 size_t len;
2124 struct repository *subrepo;
2125
2126 if (!submodule)
2127 return NULL;
2128
2129 len = strlen(submodule);
2130 while (len && is_dir_sep(submodule[len - 1]))
2131 len--;
2132 if (!len)
2133 return NULL;
2134
2135 if (submodule[len])
2136 /* We need to strip off one or more trailing slashes */
2137 submodule = to_free = xmemdupz(submodule, len);
2138
2139 refs = lookup_ref_store_map(&submodule_ref_stores, submodule);
2140 if (refs)
2141 goto done;
2142
2143 strbuf_addstr(&submodule_sb, submodule);
2144 if (!is_nonbare_repository_dir(&submodule_sb))
2145 goto done;
2146
2147 if (submodule_to_gitdir(&submodule_sb, submodule))
2148 goto done;
2149
2150 subrepo = xmalloc(sizeof(*subrepo));
2151 /*
2152 * NEEDSWORK: Make get_submodule_ref_store() work with arbitrary
2153 * superprojects other than the_repository. This probably should be
2154 * done by making it take a struct repository * parameter instead of a
2155 * submodule path.
2156 */
2157 if (repo_submodule_init(subrepo, the_repository, submodule,
2158 null_oid())) {
2159 free(subrepo);
2160 goto done;
2161 }
2162 refs = ref_store_init(subrepo, submodule_sb.buf,
2163 REF_STORE_READ | REF_STORE_ODB);
2164 register_ref_store_map(&submodule_ref_stores, "submodule",
2165 refs, submodule);
2166
2167 done:
2168 strbuf_release(&submodule_sb);
2169 free(to_free);
2170
2171 return refs;
2172 }
2173
2174 struct ref_store *get_worktree_ref_store(const struct worktree *wt)
2175 {
2176 struct ref_store *refs;
2177 const char *id;
2178
2179 if (wt->is_current)
2180 return get_main_ref_store(the_repository);
2181
2182 id = wt->id ? wt->id : "/";
2183 refs = lookup_ref_store_map(&worktree_ref_stores, id);
2184 if (refs)
2185 return refs;
2186
2187 if (wt->id)
2188 refs = ref_store_init(the_repository,
2189 git_common_path("worktrees/%s", wt->id),
2190 REF_STORE_ALL_CAPS);
2191 else
2192 refs = ref_store_init(the_repository,
2193 get_git_common_dir(),
2194 REF_STORE_ALL_CAPS);
2195
2196 if (refs)
2197 register_ref_store_map(&worktree_ref_stores, "worktree",
2198 refs, id);
2199 return refs;
2200 }
2201
2202 void base_ref_store_init(struct ref_store *refs, struct repository *repo,
2203 const char *path, const struct ref_storage_be *be)
2204 {
2205 refs->be = be;
2206 refs->repo = repo;
2207 refs->gitdir = xstrdup(path);
2208 }
2209
2210 /* backend functions */
2211 int refs_pack_refs(struct ref_store *refs, struct pack_refs_opts *opts)
2212 {
2213 return refs->be->pack_refs(refs, opts);
2214 }
2215
2216 int peel_iterated_oid(const struct object_id *base, struct object_id *peeled)
2217 {
2218 if (current_ref_iter &&
2219 (current_ref_iter->oid == base ||
2220 oideq(current_ref_iter->oid, base)))
2221 return ref_iterator_peel(current_ref_iter, peeled);
2222
2223 return peel_object(base, peeled) ? -1 : 0;
2224 }
2225
2226 int refs_create_symref(struct ref_store *refs,
2227 const char *ref_target,
2228 const char *refs_heads_master,
2229 const char *logmsg)
2230 {
2231 char *msg;
2232 int retval;
2233
2234 msg = normalize_reflog_message(logmsg);
2235 retval = refs->be->create_symref(refs, ref_target, refs_heads_master,
2236 msg);
2237 free(msg);
2238 return retval;
2239 }
2240
2241 int create_symref(const char *ref_target, const char *refs_heads_master,
2242 const char *logmsg)
2243 {
2244 return refs_create_symref(get_main_ref_store(the_repository), ref_target,
2245 refs_heads_master, logmsg);
2246 }
2247
2248 int ref_update_reject_duplicates(struct string_list *refnames,
2249 struct strbuf *err)
2250 {
2251 size_t i, n = refnames->nr;
2252
2253 assert(err);
2254
2255 for (i = 1; i < n; i++) {
2256 int cmp = strcmp(refnames->items[i - 1].string,
2257 refnames->items[i].string);
2258
2259 if (!cmp) {
2260 strbuf_addf(err,
2261 _("multiple updates for ref '%s' not allowed"),
2262 refnames->items[i].string);
2263 return 1;
2264 } else if (cmp > 0) {
2265 BUG("ref_update_reject_duplicates() received unsorted list");
2266 }
2267 }
2268 return 0;
2269 }
2270
2271 static int run_transaction_hook(struct ref_transaction *transaction,
2272 const char *state)
2273 {
2274 struct child_process proc = CHILD_PROCESS_INIT;
2275 struct strbuf buf = STRBUF_INIT;
2276 const char *hook;
2277 int ret = 0, i;
2278
2279 hook = find_hook("reference-transaction");
2280 if (!hook)
2281 return ret;
2282
2283 strvec_pushl(&proc.args, hook, state, NULL);
2284 proc.in = -1;
2285 proc.stdout_to_stderr = 1;
2286 proc.trace2_hook_name = "reference-transaction";
2287
2288 ret = start_command(&proc);
2289 if (ret)
2290 return ret;
2291
2292 sigchain_push(SIGPIPE, SIG_IGN);
2293
2294 for (i = 0; i < transaction->nr; i++) {
2295 struct ref_update *update = transaction->updates[i];
2296
2297 strbuf_reset(&buf);
2298 strbuf_addf(&buf, "%s %s %s\n",
2299 oid_to_hex(&update->old_oid),
2300 oid_to_hex(&update->new_oid),
2301 update->refname);
2302
2303 if (write_in_full(proc.in, buf.buf, buf.len) < 0) {
2304 if (errno != EPIPE) {
2305 /* Don't leak errno outside this API */
2306 errno = 0;
2307 ret = -1;
2308 }
2309 break;
2310 }
2311 }
2312
2313 close(proc.in);
2314 sigchain_pop(SIGPIPE);
2315 strbuf_release(&buf);
2316
2317 ret |= finish_command(&proc);
2318 return ret;
2319 }
2320
2321 int ref_transaction_prepare(struct ref_transaction *transaction,
2322 struct strbuf *err)
2323 {
2324 struct ref_store *refs = transaction->ref_store;
2325 int ret;
2326
2327 switch (transaction->state) {
2328 case REF_TRANSACTION_OPEN:
2329 /* Good. */
2330 break;
2331 case REF_TRANSACTION_PREPARED:
2332 BUG("prepare called twice on reference transaction");
2333 break;
2334 case REF_TRANSACTION_CLOSED:
2335 BUG("prepare called on a closed reference transaction");
2336 break;
2337 default:
2338 BUG("unexpected reference transaction state");
2339 break;
2340 }
2341
2342 if (refs->repo->objects->odb->disable_ref_updates) {
2343 strbuf_addstr(err,
2344 _("ref updates forbidden inside quarantine environment"));
2345 return -1;
2346 }
2347
2348 ret = refs->be->transaction_prepare(refs, transaction, err);
2349 if (ret)
2350 return ret;
2351
2352 ret = run_transaction_hook(transaction, "prepared");
2353 if (ret) {
2354 ref_transaction_abort(transaction, err);
2355 die(_("ref updates aborted by hook"));
2356 }
2357
2358 return 0;
2359 }
2360
2361 int ref_transaction_abort(struct ref_transaction *transaction,
2362 struct strbuf *err)
2363 {
2364 struct ref_store *refs = transaction->ref_store;
2365 int ret = 0;
2366
2367 switch (transaction->state) {
2368 case REF_TRANSACTION_OPEN:
2369 /* No need to abort explicitly. */
2370 break;
2371 case REF_TRANSACTION_PREPARED:
2372 ret = refs->be->transaction_abort(refs, transaction, err);
2373 break;
2374 case REF_TRANSACTION_CLOSED:
2375 BUG("abort called on a closed reference transaction");
2376 break;
2377 default:
2378 BUG("unexpected reference transaction state");
2379 break;
2380 }
2381
2382 run_transaction_hook(transaction, "aborted");
2383
2384 ref_transaction_free(transaction);
2385 return ret;
2386 }
2387
2388 int ref_transaction_commit(struct ref_transaction *transaction,
2389 struct strbuf *err)
2390 {
2391 struct ref_store *refs = transaction->ref_store;
2392 int ret;
2393
2394 switch (transaction->state) {
2395 case REF_TRANSACTION_OPEN:
2396 /* Need to prepare first. */
2397 ret = ref_transaction_prepare(transaction, err);
2398 if (ret)
2399 return ret;
2400 break;
2401 case REF_TRANSACTION_PREPARED:
2402 /* Fall through to finish. */
2403 break;
2404 case REF_TRANSACTION_CLOSED:
2405 BUG("commit called on a closed reference transaction");
2406 break;
2407 default:
2408 BUG("unexpected reference transaction state");
2409 break;
2410 }
2411
2412 ret = refs->be->transaction_finish(refs, transaction, err);
2413 if (!ret)
2414 run_transaction_hook(transaction, "committed");
2415 return ret;
2416 }
2417
2418 int refs_verify_refname_available(struct ref_store *refs,
2419 const char *refname,
2420 const struct string_list *extras,
2421 const struct string_list *skip,
2422 struct strbuf *err)
2423 {
2424 const char *slash;
2425 const char *extra_refname;
2426 struct strbuf dirname = STRBUF_INIT;
2427 struct strbuf referent = STRBUF_INIT;
2428 struct object_id oid;
2429 unsigned int type;
2430 struct ref_iterator *iter;
2431 int ok;
2432 int ret = -1;
2433
2434 /*
2435 * For the sake of comments in this function, suppose that
2436 * refname is "refs/foo/bar".
2437 */
2438
2439 assert(err);
2440
2441 strbuf_grow(&dirname, strlen(refname) + 1);
2442 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
2443 /*
2444 * Just saying "Is a directory" when we e.g. can't
2445 * lock some multi-level ref isn't very informative,
2446 * the user won't be told *what* is a directory, so
2447 * let's not use strerror() below.
2448 */
2449 int ignore_errno;
2450 /* Expand dirname to the new prefix, not including the trailing slash: */
2451 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
2452
2453 /*
2454 * We are still at a leading dir of the refname (e.g.,
2455 * "refs/foo"; if there is a reference with that name,
2456 * it is a conflict, *unless* it is in skip.
2457 */
2458 if (skip && string_list_has_string(skip, dirname.buf))
2459 continue;
2460
2461 if (!refs_read_raw_ref(refs, dirname.buf, &oid, &referent,
2462 &type, &ignore_errno)) {
2463 strbuf_addf(err, _("'%s' exists; cannot create '%s'"),
2464 dirname.buf, refname);
2465 goto cleanup;
2466 }
2467
2468 if (extras && string_list_has_string(extras, dirname.buf)) {
2469 strbuf_addf(err, _("cannot process '%s' and '%s' at the same time"),
2470 refname, dirname.buf);
2471 goto cleanup;
2472 }
2473 }
2474
2475 /*
2476 * We are at the leaf of our refname (e.g., "refs/foo/bar").
2477 * There is no point in searching for a reference with that
2478 * name, because a refname isn't considered to conflict with
2479 * itself. But we still need to check for references whose
2480 * names are in the "refs/foo/bar/" namespace, because they
2481 * *do* conflict.
2482 */
2483 strbuf_addstr(&dirname, refname + dirname.len);
2484 strbuf_addch(&dirname, '/');
2485
2486 iter = refs_ref_iterator_begin(refs, dirname.buf, NULL, 0,
2487 DO_FOR_EACH_INCLUDE_BROKEN);
2488 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
2489 if (skip &&
2490 string_list_has_string(skip, iter->refname))
2491 continue;
2492
2493 strbuf_addf(err, _("'%s' exists; cannot create '%s'"),
2494 iter->refname, refname);
2495 ref_iterator_abort(iter);
2496 goto cleanup;
2497 }
2498
2499 if (ok != ITER_DONE)
2500 BUG("error while iterating over references");
2501
2502 extra_refname = find_descendant_ref(dirname.buf, extras, skip);
2503 if (extra_refname)
2504 strbuf_addf(err, _("cannot process '%s' and '%s' at the same time"),
2505 refname, extra_refname);
2506 else
2507 ret = 0;
2508
2509 cleanup:
2510 strbuf_release(&referent);
2511 strbuf_release(&dirname);
2512 return ret;
2513 }
2514
2515 struct do_for_each_reflog_help {
2516 each_reflog_fn *fn;
2517 void *cb_data;
2518 };
2519
2520 static int do_for_each_reflog_helper(struct repository *r UNUSED,
2521 const char *refname,
2522 const struct object_id *oid UNUSED,
2523 int flags,
2524 void *cb_data)
2525 {
2526 struct do_for_each_reflog_help *hp = cb_data;
2527 return hp->fn(refname, hp->cb_data);
2528 }
2529
2530 int refs_for_each_reflog(struct ref_store *refs, each_reflog_fn fn, void *cb_data)
2531 {
2532 struct ref_iterator *iter;
2533 struct do_for_each_reflog_help hp = { fn, cb_data };
2534
2535 iter = refs->be->reflog_iterator_begin(refs);
2536
2537 return do_for_each_repo_ref_iterator(the_repository, iter,
2538 do_for_each_reflog_helper, &hp);
2539 }
2540
2541 int for_each_reflog(each_reflog_fn fn, void *cb_data)
2542 {
2543 return refs_for_each_reflog(get_main_ref_store(the_repository), fn, cb_data);
2544 }
2545
2546 int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
2547 const char *refname,
2548 each_reflog_ent_fn fn,
2549 void *cb_data)
2550 {
2551 return refs->be->for_each_reflog_ent_reverse(refs, refname,
2552 fn, cb_data);
2553 }
2554
2555 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
2556 void *cb_data)
2557 {
2558 return refs_for_each_reflog_ent_reverse(get_main_ref_store(the_repository),
2559 refname, fn, cb_data);
2560 }
2561
2562 int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
2563 each_reflog_ent_fn fn, void *cb_data)
2564 {
2565 return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
2566 }
2567
2568 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
2569 void *cb_data)
2570 {
2571 return refs_for_each_reflog_ent(get_main_ref_store(the_repository), refname,
2572 fn, cb_data);
2573 }
2574
2575 int refs_reflog_exists(struct ref_store *refs, const char *refname)
2576 {
2577 return refs->be->reflog_exists(refs, refname);
2578 }
2579
2580 int reflog_exists(const char *refname)
2581 {
2582 return refs_reflog_exists(get_main_ref_store(the_repository), refname);
2583 }
2584
2585 int refs_create_reflog(struct ref_store *refs, const char *refname,
2586 struct strbuf *err)
2587 {
2588 return refs->be->create_reflog(refs, refname, err);
2589 }
2590
2591 int safe_create_reflog(const char *refname, struct strbuf *err)
2592 {
2593 return refs_create_reflog(get_main_ref_store(the_repository), refname,
2594 err);
2595 }
2596
2597 int refs_delete_reflog(struct ref_store *refs, const char *refname)
2598 {
2599 return refs->be->delete_reflog(refs, refname);
2600 }
2601
2602 int delete_reflog(const char *refname)
2603 {
2604 return refs_delete_reflog(get_main_ref_store(the_repository), refname);
2605 }
2606
2607 int refs_reflog_expire(struct ref_store *refs,
2608 const char *refname,
2609 unsigned int flags,
2610 reflog_expiry_prepare_fn prepare_fn,
2611 reflog_expiry_should_prune_fn should_prune_fn,
2612 reflog_expiry_cleanup_fn cleanup_fn,
2613 void *policy_cb_data)
2614 {
2615 return refs->be->reflog_expire(refs, refname, flags,
2616 prepare_fn, should_prune_fn,
2617 cleanup_fn, policy_cb_data);
2618 }
2619
2620 int reflog_expire(const char *refname,
2621 unsigned int flags,
2622 reflog_expiry_prepare_fn prepare_fn,
2623 reflog_expiry_should_prune_fn should_prune_fn,
2624 reflog_expiry_cleanup_fn cleanup_fn,
2625 void *policy_cb_data)
2626 {
2627 return refs_reflog_expire(get_main_ref_store(the_repository),
2628 refname, flags,
2629 prepare_fn, should_prune_fn,
2630 cleanup_fn, policy_cb_data);
2631 }
2632
2633 int initial_ref_transaction_commit(struct ref_transaction *transaction,
2634 struct strbuf *err)
2635 {
2636 struct ref_store *refs = transaction->ref_store;
2637
2638 return refs->be->initial_transaction_commit(refs, transaction, err);
2639 }
2640
2641 void ref_transaction_for_each_queued_update(struct ref_transaction *transaction,
2642 ref_transaction_for_each_queued_update_fn cb,
2643 void *cb_data)
2644 {
2645 int i;
2646
2647 for (i = 0; i < transaction->nr; i++) {
2648 struct ref_update *update = transaction->updates[i];
2649
2650 cb(update->refname,
2651 (update->flags & REF_HAVE_OLD) ? &update->old_oid : NULL,
2652 (update->flags & REF_HAVE_NEW) ? &update->new_oid : NULL,
2653 cb_data);
2654 }
2655 }
2656
2657 int refs_delete_refs(struct ref_store *refs, const char *logmsg,
2658 struct string_list *refnames, unsigned int flags)
2659 {
2660 struct ref_transaction *transaction;
2661 struct strbuf err = STRBUF_INIT;
2662 struct string_list_item *item;
2663 int ret = 0, failures = 0;
2664 char *msg;
2665
2666 if (!refnames->nr)
2667 return 0;
2668
2669 msg = normalize_reflog_message(logmsg);
2670
2671 /*
2672 * Since we don't check the references' old_oids, the
2673 * individual updates can't fail, so we can pack all of the
2674 * updates into a single transaction.
2675 */
2676 transaction = ref_store_transaction_begin(refs, &err);
2677 if (!transaction) {
2678 ret = error("%s", err.buf);
2679 goto out;
2680 }
2681
2682 for_each_string_list_item(item, refnames) {
2683 ret = ref_transaction_delete(transaction, item->string,
2684 NULL, flags, msg, &err);
2685 if (ret) {
2686 warning(_("could not delete reference %s: %s"),
2687 item->string, err.buf);
2688 strbuf_reset(&err);
2689 failures = 1;
2690 }
2691 }
2692
2693 ret = ref_transaction_commit(transaction, &err);
2694 if (ret) {
2695 if (refnames->nr == 1)
2696 error(_("could not delete reference %s: %s"),
2697 refnames->items[0].string, err.buf);
2698 else
2699 error(_("could not delete references: %s"), err.buf);
2700 }
2701
2702 out:
2703 if (!ret && failures)
2704 ret = -1;
2705 ref_transaction_free(transaction);
2706 strbuf_release(&err);
2707 free(msg);
2708 return ret;
2709 }
2710
2711 int delete_refs(const char *msg, struct string_list *refnames,
2712 unsigned int flags)
2713 {
2714 return refs_delete_refs(get_main_ref_store(the_repository), msg, refnames, flags);
2715 }
2716
2717 int refs_rename_ref(struct ref_store *refs, const char *oldref,
2718 const char *newref, const char *logmsg)
2719 {
2720 char *msg;
2721 int retval;
2722
2723 msg = normalize_reflog_message(logmsg);
2724 retval = refs->be->rename_ref(refs, oldref, newref, msg);
2725 free(msg);
2726 return retval;
2727 }
2728
2729 int rename_ref(const char *oldref, const char *newref, const char *logmsg)
2730 {
2731 return refs_rename_ref(get_main_ref_store(the_repository), oldref, newref, logmsg);
2732 }
2733
2734 int refs_copy_existing_ref(struct ref_store *refs, const char *oldref,
2735 const char *newref, const char *logmsg)
2736 {
2737 char *msg;
2738 int retval;
2739
2740 msg = normalize_reflog_message(logmsg);
2741 retval = refs->be->copy_ref(refs, oldref, newref, msg);
2742 free(msg);
2743 return retval;
2744 }
2745
2746 int copy_existing_ref(const char *oldref, const char *newref, const char *logmsg)
2747 {
2748 return refs_copy_existing_ref(get_main_ref_store(the_repository), oldref, newref, logmsg);
2749 }