1/*
2 * The backend-independent part of the reference module.
3 */
4
5#include "cache.h"
6#include "config.h"
7#include "hashmap.h"
8#include "lockfile.h"
9#include "iterator.h"
10#include "refs.h"
11#include "refs/refs-internal.h"
12#include "object.h"
13#include "tag.h"
14#include "submodule.h"
15#include "worktree.h"
16
17/*
18 * List of all available backends
19 */
20static struct ref_storage_be *refs_backends = &refs_be_files;
21
22static struct ref_storage_be *find_ref_storage_backend(const char *name)
23{
24 struct ref_storage_be *be;
25 for (be = refs_backends; be; be = be->next)
26 if (!strcmp(be->name, name))
27 return be;
28 return NULL;
29}
30
31int ref_storage_backend_exists(const char *name)
32{
33 return find_ref_storage_backend(name) != NULL;
34}
35
36/*
37 * How to handle various characters in refnames:
38 * 0: An acceptable character for refs
39 * 1: End-of-component
40 * 2: ., look for a preceding . to reject .. in refs
41 * 3: {, look for a preceding @ to reject @{ in refs
42 * 4: A bad character: ASCII control characters, and
43 * ":", "?", "[", "\", "^", "~", SP, or TAB
44 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
45 */
46static unsigned char refname_disposition[256] = {
47 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
48 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
49 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
50 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
51 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
52 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
53 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
55};
56
57/*
58 * Try to read one refname component from the front of refname.
59 * Return the length of the component found, or -1 if the component is
60 * not legal. It is legal if it is something reasonable to have under
61 * ".git/refs/"; We do not like it if:
62 *
63 * - any path component of it begins with ".", or
64 * - it has double dots "..", or
65 * - it has ASCII control characters, or
66 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
67 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
68 * - it ends with a "/", or
69 * - it ends with ".lock", or
70 * - it contains a "@{" portion
71 */
72static int check_refname_component(const char *refname, int *flags)
73{
74 const char *cp;
75 char last = '\0';
76
77 for (cp = refname; ; cp++) {
78 int ch = *cp & 255;
79 unsigned char disp = refname_disposition[ch];
80 switch (disp) {
81 case 1:
82 goto out;
83 case 2:
84 if (last == '.')
85 return -1; /* Refname contains "..". */
86 break;
87 case 3:
88 if (last == '@')
89 return -1; /* Refname contains "@{". */
90 break;
91 case 4:
92 return -1;
93 case 5:
94 if (!(*flags & REFNAME_REFSPEC_PATTERN))
95 return -1; /* refspec can't be a pattern */
96
97 /*
98 * Unset the pattern flag so that we only accept
99 * a single asterisk for one side of refspec.
100 */
101 *flags &= ~ REFNAME_REFSPEC_PATTERN;
102 break;
103 }
104 last = ch;
105 }
106out:
107 if (cp == refname)
108 return 0; /* Component has zero length. */
109 if (refname[0] == '.')
110 return -1; /* Component starts with '.'. */
111 if (cp - refname >= LOCK_SUFFIX_LEN &&
112 !memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN))
113 return -1; /* Refname ends with ".lock". */
114 return cp - refname;
115}
116
117int check_refname_format(const char *refname, int flags)
118{
119 int component_len, component_count = 0;
120
121 if (!strcmp(refname, "@"))
122 /* Refname is a single character '@'. */
123 return -1;
124
125 while (1) {
126 /* We are at the start of a path component. */
127 component_len = check_refname_component(refname, &flags);
128 if (component_len <= 0)
129 return -1;
130
131 component_count++;
132 if (refname[component_len] == '\0')
133 break;
134 /* Skip to next component. */
135 refname += component_len + 1;
136 }
137
138 if (refname[component_len - 1] == '.')
139 return -1; /* Refname ends with '.'. */
140 if (!(flags & REFNAME_ALLOW_ONELEVEL) && component_count < 2)
141 return -1; /* Refname has only one component. */
142 return 0;
143}
144
145int refname_is_safe(const char *refname)
146{
147 const char *rest;
148
149 if (skip_prefix(refname, "refs/", &rest)) {
150 char *buf;
151 int result;
152 size_t restlen = strlen(rest);
153
154 /* rest must not be empty, or start or end with "/" */
155 if (!restlen || *rest == '/' || rest[restlen - 1] == '/')
156 return 0;
157
158 /*
159 * Does the refname try to escape refs/?
160 * For example: refs/foo/../bar is safe but refs/foo/../../bar
161 * is not.
162 */
163 buf = xmallocz(restlen);
164 result = !normalize_path_copy(buf, rest) && !strcmp(buf, rest);
165 free(buf);
166 return result;
167 }
168
169 do {
170 if (!isupper(*refname) && *refname != '_')
171 return 0;
172 refname++;
173 } while (*refname);
174 return 1;
175}
176
177/*
178 * Return true if refname, which has the specified oid and flags, can
179 * be resolved to an object in the database. If the referred-to object
180 * does not exist, emit a warning and return false.
181 */
182int ref_resolves_to_object(const char *refname,
183 const struct object_id *oid,
184 unsigned int flags)
185{
186 if (flags & REF_ISBROKEN)
187 return 0;
188 if (!has_sha1_file(oid->hash)) {
189 error("%s does not point to a valid object!", refname);
190 return 0;
191 }
192 return 1;
193}
194
195char *refs_resolve_refdup(struct ref_store *refs,
196 const char *refname, int resolve_flags,
197 unsigned char *sha1, int *flags)
198{
199 const char *result;
200
201 result = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
202 sha1, flags);
203 return xstrdup_or_null(result);
204}
205
206char *resolve_refdup(const char *refname, int resolve_flags,
207 unsigned char *sha1, int *flags)
208{
209 return refs_resolve_refdup(get_main_ref_store(),
210 refname, resolve_flags,
211 sha1, flags);
212}
213
214/* The argument to filter_refs */
215struct ref_filter {
216 const char *pattern;
217 each_ref_fn *fn;
218 void *cb_data;
219};
220
221int refs_read_ref_full(struct ref_store *refs, const char *refname,
222 int resolve_flags, unsigned char *sha1, int *flags)
223{
224 if (refs_resolve_ref_unsafe(refs, refname, resolve_flags, sha1, flags))
225 return 0;
226 return -1;
227}
228
229int read_ref_full(const char *refname, int resolve_flags, unsigned char *sha1, int *flags)
230{
231 return refs_read_ref_full(get_main_ref_store(), refname,
232 resolve_flags, sha1, flags);
233}
234
235int read_ref(const char *refname, unsigned char *sha1)
236{
237 return read_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);
238}
239
240int ref_exists(const char *refname)
241{
242 unsigned char sha1[20];
243 return !!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);
244}
245
246static int filter_refs(const char *refname, const struct object_id *oid,
247 int flags, void *data)
248{
249 struct ref_filter *filter = (struct ref_filter *)data;
250
251 if (wildmatch(filter->pattern, refname, 0))
252 return 0;
253 return filter->fn(refname, oid, flags, filter->cb_data);
254}
255
256enum peel_status peel_object(const unsigned char *name, unsigned char *sha1)
257{
258 struct object *o = lookup_unknown_object(name);
259
260 if (o->type == OBJ_NONE) {
261 int type = sha1_object_info(name, NULL);
262 if (type < 0 || !object_as_type(o, type, 0))
263 return PEEL_INVALID;
264 }
265
266 if (o->type != OBJ_TAG)
267 return PEEL_NON_TAG;
268
269 o = deref_tag_noverify(o);
270 if (!o)
271 return PEEL_INVALID;
272
273 hashcpy(sha1, o->oid.hash);
274 return PEEL_PEELED;
275}
276
277struct warn_if_dangling_data {
278 FILE *fp;
279 const char *refname;
280 const struct string_list *refnames;
281 const char *msg_fmt;
282};
283
284static int warn_if_dangling_symref(const char *refname, const struct object_id *oid,
285 int flags, void *cb_data)
286{
287 struct warn_if_dangling_data *d = cb_data;
288 const char *resolves_to;
289 struct object_id junk;
290
291 if (!(flags & REF_ISSYMREF))
292 return 0;
293
294 resolves_to = resolve_ref_unsafe(refname, 0, junk.hash, NULL);
295 if (!resolves_to
296 || (d->refname
297 ? strcmp(resolves_to, d->refname)
298 : !string_list_has_string(d->refnames, resolves_to))) {
299 return 0;
300 }
301
302 fprintf(d->fp, d->msg_fmt, refname);
303 fputc('\n', d->fp);
304 return 0;
305}
306
307void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname)
308{
309 struct warn_if_dangling_data data;
310
311 data.fp = fp;
312 data.refname = refname;
313 data.refnames = NULL;
314 data.msg_fmt = msg_fmt;
315 for_each_rawref(warn_if_dangling_symref, &data);
316}
317
318void warn_dangling_symrefs(FILE *fp, const char *msg_fmt, const struct string_list *refnames)
319{
320 struct warn_if_dangling_data data;
321
322 data.fp = fp;
323 data.refname = NULL;
324 data.refnames = refnames;
325 data.msg_fmt = msg_fmt;
326 for_each_rawref(warn_if_dangling_symref, &data);
327}
328
329int refs_for_each_tag_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
330{
331 return refs_for_each_ref_in(refs, "refs/tags/", fn, cb_data);
332}
333
334int for_each_tag_ref(each_ref_fn fn, void *cb_data)
335{
336 return refs_for_each_tag_ref(get_main_ref_store(), fn, cb_data);
337}
338
339int for_each_tag_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
340{
341 return refs_for_each_tag_ref(get_submodule_ref_store(submodule),
342 fn, cb_data);
343}
344
345int refs_for_each_branch_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
346{
347 return refs_for_each_ref_in(refs, "refs/heads/", fn, cb_data);
348}
349
350int for_each_branch_ref(each_ref_fn fn, void *cb_data)
351{
352 return refs_for_each_branch_ref(get_main_ref_store(), fn, cb_data);
353}
354
355int for_each_branch_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
356{
357 return refs_for_each_branch_ref(get_submodule_ref_store(submodule),
358 fn, cb_data);
359}
360
361int refs_for_each_remote_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
362{
363 return refs_for_each_ref_in(refs, "refs/remotes/", fn, cb_data);
364}
365
366int for_each_remote_ref(each_ref_fn fn, void *cb_data)
367{
368 return refs_for_each_remote_ref(get_main_ref_store(), fn, cb_data);
369}
370
371int for_each_remote_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
372{
373 return refs_for_each_remote_ref(get_submodule_ref_store(submodule),
374 fn, cb_data);
375}
376
377int head_ref_namespaced(each_ref_fn fn, void *cb_data)
378{
379 struct strbuf buf = STRBUF_INIT;
380 int ret = 0;
381 struct object_id oid;
382 int flag;
383
384 strbuf_addf(&buf, "%sHEAD", get_git_namespace());
385 if (!read_ref_full(buf.buf, RESOLVE_REF_READING, oid.hash, &flag))
386 ret = fn(buf.buf, &oid, flag, cb_data);
387 strbuf_release(&buf);
388
389 return ret;
390}
391
392int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
393 const char *prefix, void *cb_data)
394{
395 struct strbuf real_pattern = STRBUF_INIT;
396 struct ref_filter filter;
397 int ret;
398
399 if (!prefix && !starts_with(pattern, "refs/"))
400 strbuf_addstr(&real_pattern, "refs/");
401 else if (prefix)
402 strbuf_addstr(&real_pattern, prefix);
403 strbuf_addstr(&real_pattern, pattern);
404
405 if (!has_glob_specials(pattern)) {
406 /* Append implied '/' '*' if not present. */
407 strbuf_complete(&real_pattern, '/');
408 /* No need to check for '*', there is none. */
409 strbuf_addch(&real_pattern, '*');
410 }
411
412 filter.pattern = real_pattern.buf;
413 filter.fn = fn;
414 filter.cb_data = cb_data;
415 ret = for_each_ref(filter_refs, &filter);
416
417 strbuf_release(&real_pattern);
418 return ret;
419}
420
421int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data)
422{
423 return for_each_glob_ref_in(fn, pattern, NULL, cb_data);
424}
425
426const char *prettify_refname(const char *name)
427{
428 if (skip_prefix(name, "refs/heads/", &name) ||
429 skip_prefix(name, "refs/tags/", &name) ||
430 skip_prefix(name, "refs/remotes/", &name))
431 ; /* nothing */
432 return name;
433}
434
435static const char *ref_rev_parse_rules[] = {
436 "%.*s",
437 "refs/%.*s",
438 "refs/tags/%.*s",
439 "refs/heads/%.*s",
440 "refs/remotes/%.*s",
441 "refs/remotes/%.*s/HEAD",
442 NULL
443};
444
445int refname_match(const char *abbrev_name, const char *full_name)
446{
447 const char **p;
448 const int abbrev_name_len = strlen(abbrev_name);
449
450 for (p = ref_rev_parse_rules; *p; p++) {
451 if (!strcmp(full_name, mkpath(*p, abbrev_name_len, abbrev_name))) {
452 return 1;
453 }
454 }
455
456 return 0;
457}
458
459/*
460 * *string and *len will only be substituted, and *string returned (for
461 * later free()ing) if the string passed in is a magic short-hand form
462 * to name a branch.
463 */
464static char *substitute_branch_name(const char **string, int *len)
465{
466 struct strbuf buf = STRBUF_INIT;
467 int ret = interpret_branch_name(*string, *len, &buf, 0);
468
469 if (ret == *len) {
470 size_t size;
471 *string = strbuf_detach(&buf, &size);
472 *len = size;
473 return (char *)*string;
474 }
475
476 return NULL;
477}
478
479int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
480{
481 char *last_branch = substitute_branch_name(&str, &len);
482 int refs_found = expand_ref(str, len, sha1, ref);
483 free(last_branch);
484 return refs_found;
485}
486
487int expand_ref(const char *str, int len, unsigned char *sha1, char **ref)
488{
489 const char **p, *r;
490 int refs_found = 0;
491 struct strbuf fullref = STRBUF_INIT;
492
493 *ref = NULL;
494 for (p = ref_rev_parse_rules; *p; p++) {
495 unsigned char sha1_from_ref[20];
496 unsigned char *this_result;
497 int flag;
498
499 this_result = refs_found ? sha1_from_ref : sha1;
500 strbuf_reset(&fullref);
501 strbuf_addf(&fullref, *p, len, str);
502 r = resolve_ref_unsafe(fullref.buf, RESOLVE_REF_READING,
503 this_result, &flag);
504 if (r) {
505 if (!refs_found++)
506 *ref = xstrdup(r);
507 if (!warn_ambiguous_refs)
508 break;
509 } else if ((flag & REF_ISSYMREF) && strcmp(fullref.buf, "HEAD")) {
510 warning("ignoring dangling symref %s.", fullref.buf);
511 } else if ((flag & REF_ISBROKEN) && strchr(fullref.buf, '/')) {
512 warning("ignoring broken ref %s.", fullref.buf);
513 }
514 }
515 strbuf_release(&fullref);
516 return refs_found;
517}
518
519int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
520{
521 char *last_branch = substitute_branch_name(&str, &len);
522 const char **p;
523 int logs_found = 0;
524 struct strbuf path = STRBUF_INIT;
525
526 *log = NULL;
527 for (p = ref_rev_parse_rules; *p; p++) {
528 unsigned char hash[20];
529 const char *ref, *it;
530
531 strbuf_reset(&path);
532 strbuf_addf(&path, *p, len, str);
533 ref = resolve_ref_unsafe(path.buf, RESOLVE_REF_READING,
534 hash, NULL);
535 if (!ref)
536 continue;
537 if (reflog_exists(path.buf))
538 it = path.buf;
539 else if (strcmp(ref, path.buf) && reflog_exists(ref))
540 it = ref;
541 else
542 continue;
543 if (!logs_found++) {
544 *log = xstrdup(it);
545 hashcpy(sha1, hash);
546 }
547 if (!warn_ambiguous_refs)
548 break;
549 }
550 strbuf_release(&path);
551 free(last_branch);
552 return logs_found;
553}
554
555static int is_per_worktree_ref(const char *refname)
556{
557 return !strcmp(refname, "HEAD") ||
558 starts_with(refname, "refs/bisect/");
559}
560
561static int is_pseudoref_syntax(const char *refname)
562{
563 const char *c;
564
565 for (c = refname; *c; c++) {
566 if (!isupper(*c) && *c != '-' && *c != '_')
567 return 0;
568 }
569
570 return 1;
571}
572
573enum ref_type ref_type(const char *refname)
574{
575 if (is_per_worktree_ref(refname))
576 return REF_TYPE_PER_WORKTREE;
577 if (is_pseudoref_syntax(refname))
578 return REF_TYPE_PSEUDOREF;
579 return REF_TYPE_NORMAL;
580}
581
582long get_files_ref_lock_timeout_ms(void)
583{
584 static int configured = 0;
585
586 /* The default timeout is 100 ms: */
587 static int timeout_ms = 100;
588
589 if (!configured) {
590 git_config_get_int("core.filesreflocktimeout", &timeout_ms);
591 configured = 1;
592 }
593
594 return timeout_ms;
595}
596
597static int write_pseudoref(const char *pseudoref, const unsigned char *sha1,
598 const unsigned char *old_sha1, struct strbuf *err)
599{
600 const char *filename;
601 int fd;
602 static struct lock_file lock;
603 struct strbuf buf = STRBUF_INIT;
604 int ret = -1;
605
606 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
607
608 filename = git_path("%s", pseudoref);
609 fd = hold_lock_file_for_update_timeout(&lock, filename,
610 LOCK_DIE_ON_ERROR,
611 get_files_ref_lock_timeout_ms());
612 if (fd < 0) {
613 strbuf_addf(err, "could not open '%s' for writing: %s",
614 filename, strerror(errno));
615 return -1;
616 }
617
618 if (old_sha1) {
619 unsigned char actual_old_sha1[20];
620
621 if (read_ref(pseudoref, actual_old_sha1))
622 die("could not read ref '%s'", pseudoref);
623 if (hashcmp(actual_old_sha1, old_sha1)) {
624 strbuf_addf(err, "unexpected sha1 when writing '%s'", pseudoref);
625 rollback_lock_file(&lock);
626 goto done;
627 }
628 }
629
630 if (write_in_full(fd, buf.buf, buf.len) != buf.len) {
631 strbuf_addf(err, "could not write to '%s'", filename);
632 rollback_lock_file(&lock);
633 goto done;
634 }
635
636 commit_lock_file(&lock);
637 ret = 0;
638done:
639 strbuf_release(&buf);
640 return ret;
641}
642
643static int delete_pseudoref(const char *pseudoref, const unsigned char *old_sha1)
644{
645 static struct lock_file lock;
646 const char *filename;
647
648 filename = git_path("%s", pseudoref);
649
650 if (old_sha1 && !is_null_sha1(old_sha1)) {
651 int fd;
652 unsigned char actual_old_sha1[20];
653
654 fd = hold_lock_file_for_update_timeout(
655 &lock, filename, LOCK_DIE_ON_ERROR,
656 get_files_ref_lock_timeout_ms());
657 if (fd < 0)
658 die_errno(_("Could not open '%s' for writing"), filename);
659 if (read_ref(pseudoref, actual_old_sha1))
660 die("could not read ref '%s'", pseudoref);
661 if (hashcmp(actual_old_sha1, old_sha1)) {
662 warning("Unexpected sha1 when deleting %s", pseudoref);
663 rollback_lock_file(&lock);
664 return -1;
665 }
666
667 unlink(filename);
668 rollback_lock_file(&lock);
669 } else {
670 unlink(filename);
671 }
672
673 return 0;
674}
675
676int refs_delete_ref(struct ref_store *refs, const char *msg,
677 const char *refname,
678 const unsigned char *old_sha1,
679 unsigned int flags)
680{
681 struct ref_transaction *transaction;
682 struct strbuf err = STRBUF_INIT;
683
684 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
685 assert(refs == get_main_ref_store());
686 return delete_pseudoref(refname, old_sha1);
687 }
688
689 transaction = ref_store_transaction_begin(refs, &err);
690 if (!transaction ||
691 ref_transaction_delete(transaction, refname, old_sha1,
692 flags, msg, &err) ||
693 ref_transaction_commit(transaction, &err)) {
694 error("%s", err.buf);
695 ref_transaction_free(transaction);
696 strbuf_release(&err);
697 return 1;
698 }
699 ref_transaction_free(transaction);
700 strbuf_release(&err);
701 return 0;
702}
703
704int delete_ref(const char *msg, const char *refname,
705 const unsigned char *old_sha1, unsigned int flags)
706{
707 return refs_delete_ref(get_main_ref_store(), msg, refname,
708 old_sha1, flags);
709}
710
711int copy_reflog_msg(char *buf, const char *msg)
712{
713 char *cp = buf;
714 char c;
715 int wasspace = 1;
716
717 *cp++ = '\t';
718 while ((c = *msg++)) {
719 if (wasspace && isspace(c))
720 continue;
721 wasspace = isspace(c);
722 if (wasspace)
723 c = ' ';
724 *cp++ = c;
725 }
726 while (buf < cp && isspace(cp[-1]))
727 cp--;
728 *cp++ = '\n';
729 return cp - buf;
730}
731
732int should_autocreate_reflog(const char *refname)
733{
734 switch (log_all_ref_updates) {
735 case LOG_REFS_ALWAYS:
736 return 1;
737 case LOG_REFS_NORMAL:
738 return starts_with(refname, "refs/heads/") ||
739 starts_with(refname, "refs/remotes/") ||
740 starts_with(refname, "refs/notes/") ||
741 !strcmp(refname, "HEAD");
742 default:
743 return 0;
744 }
745}
746
747int is_branch(const char *refname)
748{
749 return !strcmp(refname, "HEAD") || starts_with(refname, "refs/heads/");
750}
751
752struct read_ref_at_cb {
753 const char *refname;
754 timestamp_t at_time;
755 int cnt;
756 int reccnt;
757 unsigned char *sha1;
758 int found_it;
759
760 unsigned char osha1[20];
761 unsigned char nsha1[20];
762 int tz;
763 timestamp_t date;
764 char **msg;
765 timestamp_t *cutoff_time;
766 int *cutoff_tz;
767 int *cutoff_cnt;
768};
769
770static int read_ref_at_ent(struct object_id *ooid, struct object_id *noid,
771 const char *email, timestamp_t timestamp, int tz,
772 const char *message, void *cb_data)
773{
774 struct read_ref_at_cb *cb = cb_data;
775
776 cb->reccnt++;
777 cb->tz = tz;
778 cb->date = timestamp;
779
780 if (timestamp <= cb->at_time || cb->cnt == 0) {
781 if (cb->msg)
782 *cb->msg = xstrdup(message);
783 if (cb->cutoff_time)
784 *cb->cutoff_time = timestamp;
785 if (cb->cutoff_tz)
786 *cb->cutoff_tz = tz;
787 if (cb->cutoff_cnt)
788 *cb->cutoff_cnt = cb->reccnt - 1;
789 /*
790 * we have not yet updated cb->[n|o]sha1 so they still
791 * hold the values for the previous record.
792 */
793 if (!is_null_sha1(cb->osha1)) {
794 hashcpy(cb->sha1, noid->hash);
795 if (hashcmp(cb->osha1, noid->hash))
796 warning("Log for ref %s has gap after %s.",
797 cb->refname, show_date(cb->date, cb->tz, DATE_MODE(RFC2822)));
798 }
799 else if (cb->date == cb->at_time)
800 hashcpy(cb->sha1, noid->hash);
801 else if (hashcmp(noid->hash, cb->sha1))
802 warning("Log for ref %s unexpectedly ended on %s.",
803 cb->refname, show_date(cb->date, cb->tz,
804 DATE_MODE(RFC2822)));
805 hashcpy(cb->osha1, ooid->hash);
806 hashcpy(cb->nsha1, noid->hash);
807 cb->found_it = 1;
808 return 1;
809 }
810 hashcpy(cb->osha1, ooid->hash);
811 hashcpy(cb->nsha1, noid->hash);
812 if (cb->cnt > 0)
813 cb->cnt--;
814 return 0;
815}
816
817static int read_ref_at_ent_oldest(struct object_id *ooid, struct object_id *noid,
818 const char *email, timestamp_t timestamp,
819 int tz, const char *message, void *cb_data)
820{
821 struct read_ref_at_cb *cb = cb_data;
822
823 if (cb->msg)
824 *cb->msg = xstrdup(message);
825 if (cb->cutoff_time)
826 *cb->cutoff_time = timestamp;
827 if (cb->cutoff_tz)
828 *cb->cutoff_tz = tz;
829 if (cb->cutoff_cnt)
830 *cb->cutoff_cnt = cb->reccnt;
831 hashcpy(cb->sha1, ooid->hash);
832 if (is_null_sha1(cb->sha1))
833 hashcpy(cb->sha1, noid->hash);
834 /* We just want the first entry */
835 return 1;
836}
837
838int read_ref_at(const char *refname, unsigned int flags, timestamp_t at_time, int cnt,
839 unsigned char *sha1, char **msg,
840 timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt)
841{
842 struct read_ref_at_cb cb;
843
844 memset(&cb, 0, sizeof(cb));
845 cb.refname = refname;
846 cb.at_time = at_time;
847 cb.cnt = cnt;
848 cb.msg = msg;
849 cb.cutoff_time = cutoff_time;
850 cb.cutoff_tz = cutoff_tz;
851 cb.cutoff_cnt = cutoff_cnt;
852 cb.sha1 = sha1;
853
854 for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);
855
856 if (!cb.reccnt) {
857 if (flags & GET_OID_QUIETLY)
858 exit(128);
859 else
860 die("Log for %s is empty.", refname);
861 }
862 if (cb.found_it)
863 return 0;
864
865 for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);
866
867 return 1;
868}
869
870struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
871 struct strbuf *err)
872{
873 struct ref_transaction *tr;
874 assert(err);
875
876 tr = xcalloc(1, sizeof(struct ref_transaction));
877 tr->ref_store = refs;
878 return tr;
879}
880
881struct ref_transaction *ref_transaction_begin(struct strbuf *err)
882{
883 return ref_store_transaction_begin(get_main_ref_store(), err);
884}
885
886void ref_transaction_free(struct ref_transaction *transaction)
887{
888 size_t i;
889
890 if (!transaction)
891 return;
892
893 switch (transaction->state) {
894 case REF_TRANSACTION_OPEN:
895 case REF_TRANSACTION_CLOSED:
896 /* OK */
897 break;
898 case REF_TRANSACTION_PREPARED:
899 die("BUG: free called on a prepared reference transaction");
900 break;
901 default:
902 die("BUG: unexpected reference transaction state");
903 break;
904 }
905
906 for (i = 0; i < transaction->nr; i++) {
907 free(transaction->updates[i]->msg);
908 free(transaction->updates[i]);
909 }
910 free(transaction->updates);
911 free(transaction);
912}
913
914struct ref_update *ref_transaction_add_update(
915 struct ref_transaction *transaction,
916 const char *refname, unsigned int flags,
917 const unsigned char *new_sha1,
918 const unsigned char *old_sha1,
919 const char *msg)
920{
921 struct ref_update *update;
922
923 if (transaction->state != REF_TRANSACTION_OPEN)
924 die("BUG: update called for transaction that is not open");
925
926 if ((flags & REF_ISPRUNING) && !(flags & REF_NODEREF))
927 die("BUG: REF_ISPRUNING set without REF_NODEREF");
928
929 FLEX_ALLOC_STR(update, refname, refname);
930 ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
931 transaction->updates[transaction->nr++] = update;
932
933 update->flags = flags;
934
935 if (flags & REF_HAVE_NEW)
936 hashcpy(update->new_oid.hash, new_sha1);
937 if (flags & REF_HAVE_OLD)
938 hashcpy(update->old_oid.hash, old_sha1);
939 update->msg = xstrdup_or_null(msg);
940 return update;
941}
942
943int ref_transaction_update(struct ref_transaction *transaction,
944 const char *refname,
945 const unsigned char *new_sha1,
946 const unsigned char *old_sha1,
947 unsigned int flags, const char *msg,
948 struct strbuf *err)
949{
950 assert(err);
951
952 if ((new_sha1 && !is_null_sha1(new_sha1)) ?
953 check_refname_format(refname, REFNAME_ALLOW_ONELEVEL) :
954 !refname_is_safe(refname)) {
955 strbuf_addf(err, "refusing to update ref with bad name '%s'",
956 refname);
957 return -1;
958 }
959
960 flags |= (new_sha1 ? REF_HAVE_NEW : 0) | (old_sha1 ? REF_HAVE_OLD : 0);
961
962 ref_transaction_add_update(transaction, refname, flags,
963 new_sha1, old_sha1, msg);
964 return 0;
965}
966
967int ref_transaction_create(struct ref_transaction *transaction,
968 const char *refname,
969 const unsigned char *new_sha1,
970 unsigned int flags, const char *msg,
971 struct strbuf *err)
972{
973 if (!new_sha1 || is_null_sha1(new_sha1))
974 die("BUG: create called without valid new_sha1");
975 return ref_transaction_update(transaction, refname, new_sha1,
976 null_sha1, flags, msg, err);
977}
978
979int ref_transaction_delete(struct ref_transaction *transaction,
980 const char *refname,
981 const unsigned char *old_sha1,
982 unsigned int flags, const char *msg,
983 struct strbuf *err)
984{
985 if (old_sha1 && is_null_sha1(old_sha1))
986 die("BUG: delete called with old_sha1 set to zeros");
987 return ref_transaction_update(transaction, refname,
988 null_sha1, old_sha1,
989 flags, msg, err);
990}
991
992int ref_transaction_verify(struct ref_transaction *transaction,
993 const char *refname,
994 const unsigned char *old_sha1,
995 unsigned int flags,
996 struct strbuf *err)
997{
998 if (!old_sha1)
999 die("BUG: verify called with old_sha1 set to NULL");
1000 return ref_transaction_update(transaction, refname,
1001 NULL, old_sha1,
1002 flags, NULL, err);
1003}
1004
1005int update_ref_oid(const char *msg, const char *refname,
1006 const struct object_id *new_oid, const struct object_id *old_oid,
1007 unsigned int flags, enum action_on_err onerr)
1008{
1009 return update_ref(msg, refname, new_oid ? new_oid->hash : NULL,
1010 old_oid ? old_oid->hash : NULL, flags, onerr);
1011}
1012
1013int refs_update_ref(struct ref_store *refs, const char *msg,
1014 const char *refname, const unsigned char *new_sha1,
1015 const unsigned char *old_sha1, unsigned int flags,
1016 enum action_on_err onerr)
1017{
1018 struct ref_transaction *t = NULL;
1019 struct strbuf err = STRBUF_INIT;
1020 int ret = 0;
1021
1022 if (ref_type(refname) == REF_TYPE_PSEUDOREF) {
1023 assert(refs == get_main_ref_store());
1024 ret = write_pseudoref(refname, new_sha1, old_sha1, &err);
1025 } else {
1026 t = ref_store_transaction_begin(refs, &err);
1027 if (!t ||
1028 ref_transaction_update(t, refname, new_sha1, old_sha1,
1029 flags, msg, &err) ||
1030 ref_transaction_commit(t, &err)) {
1031 ret = 1;
1032 ref_transaction_free(t);
1033 }
1034 }
1035 if (ret) {
1036 const char *str = "update_ref failed for ref '%s': %s";
1037
1038 switch (onerr) {
1039 case UPDATE_REFS_MSG_ON_ERR:
1040 error(str, refname, err.buf);
1041 break;
1042 case UPDATE_REFS_DIE_ON_ERR:
1043 die(str, refname, err.buf);
1044 break;
1045 case UPDATE_REFS_QUIET_ON_ERR:
1046 break;
1047 }
1048 strbuf_release(&err);
1049 return 1;
1050 }
1051 strbuf_release(&err);
1052 if (t)
1053 ref_transaction_free(t);
1054 return 0;
1055}
1056
1057int update_ref(const char *msg, const char *refname,
1058 const unsigned char *new_sha1,
1059 const unsigned char *old_sha1,
1060 unsigned int flags, enum action_on_err onerr)
1061{
1062 return refs_update_ref(get_main_ref_store(), msg, refname, new_sha1,
1063 old_sha1, flags, onerr);
1064}
1065
1066char *shorten_unambiguous_ref(const char *refname, int strict)
1067{
1068 int i;
1069 static char **scanf_fmts;
1070 static int nr_rules;
1071 char *short_name;
1072 struct strbuf resolved_buf = STRBUF_INIT;
1073
1074 if (!nr_rules) {
1075 /*
1076 * Pre-generate scanf formats from ref_rev_parse_rules[].
1077 * Generate a format suitable for scanf from a
1078 * ref_rev_parse_rules rule by interpolating "%s" at the
1079 * location of the "%.*s".
1080 */
1081 size_t total_len = 0;
1082 size_t offset = 0;
1083
1084 /* the rule list is NULL terminated, count them first */
1085 for (nr_rules = 0; ref_rev_parse_rules[nr_rules]; nr_rules++)
1086 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1087 total_len += strlen(ref_rev_parse_rules[nr_rules]) - 2 + 1;
1088
1089 scanf_fmts = xmalloc(st_add(st_mult(sizeof(char *), nr_rules), total_len));
1090
1091 offset = 0;
1092 for (i = 0; i < nr_rules; i++) {
1093 assert(offset < total_len);
1094 scanf_fmts[i] = (char *)&scanf_fmts[nr_rules] + offset;
1095 offset += snprintf(scanf_fmts[i], total_len - offset,
1096 ref_rev_parse_rules[i], 2, "%s") + 1;
1097 }
1098 }
1099
1100 /* bail out if there are no rules */
1101 if (!nr_rules)
1102 return xstrdup(refname);
1103
1104 /* buffer for scanf result, at most refname must fit */
1105 short_name = xstrdup(refname);
1106
1107 /* skip first rule, it will always match */
1108 for (i = nr_rules - 1; i > 0 ; --i) {
1109 int j;
1110 int rules_to_fail = i;
1111 int short_name_len;
1112
1113 if (1 != sscanf(refname, scanf_fmts[i], short_name))
1114 continue;
1115
1116 short_name_len = strlen(short_name);
1117
1118 /*
1119 * in strict mode, all (except the matched one) rules
1120 * must fail to resolve to a valid non-ambiguous ref
1121 */
1122 if (strict)
1123 rules_to_fail = nr_rules;
1124
1125 /*
1126 * check if the short name resolves to a valid ref,
1127 * but use only rules prior to the matched one
1128 */
1129 for (j = 0; j < rules_to_fail; j++) {
1130 const char *rule = ref_rev_parse_rules[j];
1131
1132 /* skip matched rule */
1133 if (i == j)
1134 continue;
1135
1136 /*
1137 * the short name is ambiguous, if it resolves
1138 * (with this previous rule) to a valid ref
1139 * read_ref() returns 0 on success
1140 */
1141 strbuf_reset(&resolved_buf);
1142 strbuf_addf(&resolved_buf, rule,
1143 short_name_len, short_name);
1144 if (ref_exists(resolved_buf.buf))
1145 break;
1146 }
1147
1148 /*
1149 * short name is non-ambiguous if all previous rules
1150 * haven't resolved to a valid ref
1151 */
1152 if (j == rules_to_fail) {
1153 strbuf_release(&resolved_buf);
1154 return short_name;
1155 }
1156 }
1157
1158 strbuf_release(&resolved_buf);
1159 free(short_name);
1160 return xstrdup(refname);
1161}
1162
1163static struct string_list *hide_refs;
1164
1165int parse_hide_refs_config(const char *var, const char *value, const char *section)
1166{
1167 const char *key;
1168 if (!strcmp("transfer.hiderefs", var) ||
1169 (!parse_config_key(var, section, NULL, NULL, &key) &&
1170 !strcmp(key, "hiderefs"))) {
1171 char *ref;
1172 int len;
1173
1174 if (!value)
1175 return config_error_nonbool(var);
1176 ref = xstrdup(value);
1177 len = strlen(ref);
1178 while (len && ref[len - 1] == '/')
1179 ref[--len] = '\0';
1180 if (!hide_refs) {
1181 hide_refs = xcalloc(1, sizeof(*hide_refs));
1182 hide_refs->strdup_strings = 1;
1183 }
1184 string_list_append(hide_refs, ref);
1185 }
1186 return 0;
1187}
1188
1189int ref_is_hidden(const char *refname, const char *refname_full)
1190{
1191 int i;
1192
1193 if (!hide_refs)
1194 return 0;
1195 for (i = hide_refs->nr - 1; i >= 0; i--) {
1196 const char *match = hide_refs->items[i].string;
1197 const char *subject;
1198 int neg = 0;
1199 const char *p;
1200
1201 if (*match == '!') {
1202 neg = 1;
1203 match++;
1204 }
1205
1206 if (*match == '^') {
1207 subject = refname_full;
1208 match++;
1209 } else {
1210 subject = refname;
1211 }
1212
1213 /* refname can be NULL when namespaces are used. */
1214 if (subject &&
1215 skip_prefix(subject, match, &p) &&
1216 (!*p || *p == '/'))
1217 return !neg;
1218 }
1219 return 0;
1220}
1221
1222const char *find_descendant_ref(const char *dirname,
1223 const struct string_list *extras,
1224 const struct string_list *skip)
1225{
1226 int pos;
1227
1228 if (!extras)
1229 return NULL;
1230
1231 /*
1232 * Look at the place where dirname would be inserted into
1233 * extras. If there is an entry at that position that starts
1234 * with dirname (remember, dirname includes the trailing
1235 * slash) and is not in skip, then we have a conflict.
1236 */
1237 for (pos = string_list_find_insert_index(extras, dirname, 0);
1238 pos < extras->nr; pos++) {
1239 const char *extra_refname = extras->items[pos].string;
1240
1241 if (!starts_with(extra_refname, dirname))
1242 break;
1243
1244 if (!skip || !string_list_has_string(skip, extra_refname))
1245 return extra_refname;
1246 }
1247 return NULL;
1248}
1249
1250int refs_rename_ref_available(struct ref_store *refs,
1251 const char *old_refname,
1252 const char *new_refname)
1253{
1254 struct string_list skip = STRING_LIST_INIT_NODUP;
1255 struct strbuf err = STRBUF_INIT;
1256 int ok;
1257
1258 string_list_insert(&skip, old_refname);
1259 ok = !refs_verify_refname_available(refs, new_refname,
1260 NULL, &skip, &err);
1261 if (!ok)
1262 error("%s", err.buf);
1263
1264 string_list_clear(&skip, 0);
1265 strbuf_release(&err);
1266 return ok;
1267}
1268
1269int head_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1270{
1271 struct object_id oid;
1272 int flag;
1273
1274 if (submodule) {
1275 if (resolve_gitlink_ref(submodule, "HEAD", oid.hash) == 0)
1276 return fn("HEAD", &oid, 0, cb_data);
1277
1278 return 0;
1279 }
1280
1281 if (!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))
1282 return fn("HEAD", &oid, flag, cb_data);
1283
1284 return 0;
1285}
1286
1287int head_ref(each_ref_fn fn, void *cb_data)
1288{
1289 return head_ref_submodule(NULL, fn, cb_data);
1290}
1291
1292struct ref_iterator *refs_ref_iterator_begin(
1293 struct ref_store *refs,
1294 const char *prefix, int trim, int flags)
1295{
1296 struct ref_iterator *iter;
1297
1298 if (ref_paranoia < 0)
1299 ref_paranoia = git_env_bool("GIT_REF_PARANOIA", 0);
1300 if (ref_paranoia)
1301 flags |= DO_FOR_EACH_INCLUDE_BROKEN;
1302
1303 iter = refs->be->iterator_begin(refs, prefix, flags);
1304
1305 /*
1306 * `iterator_begin()` already takes care of prefix, but we
1307 * might need to do some trimming:
1308 */
1309 if (trim)
1310 iter = prefix_ref_iterator_begin(iter, "", trim);
1311
1312 /* Sanity check for subclasses: */
1313 if (!iter->ordered)
1314 BUG("reference iterator is not ordered");
1315
1316 return iter;
1317}
1318
1319/*
1320 * Call fn for each reference in the specified submodule for which the
1321 * refname begins with prefix. If trim is non-zero, then trim that
1322 * many characters off the beginning of each refname before passing
1323 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1324 * include broken references in the iteration. If fn ever returns a
1325 * non-zero value, stop the iteration and return that value;
1326 * otherwise, return 0.
1327 */
1328static int do_for_each_ref(struct ref_store *refs, const char *prefix,
1329 each_ref_fn fn, int trim, int flags, void *cb_data)
1330{
1331 struct ref_iterator *iter;
1332
1333 if (!refs)
1334 return 0;
1335
1336 iter = refs_ref_iterator_begin(refs, prefix, trim, flags);
1337
1338 return do_for_each_ref_iterator(iter, fn, cb_data);
1339}
1340
1341int refs_for_each_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1342{
1343 return do_for_each_ref(refs, "", fn, 0, 0, cb_data);
1344}
1345
1346int for_each_ref(each_ref_fn fn, void *cb_data)
1347{
1348 return refs_for_each_ref(get_main_ref_store(), fn, cb_data);
1349}
1350
1351int for_each_ref_submodule(const char *submodule, each_ref_fn fn, void *cb_data)
1352{
1353 return refs_for_each_ref(get_submodule_ref_store(submodule), fn, cb_data);
1354}
1355
1356int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
1357 each_ref_fn fn, void *cb_data)
1358{
1359 return do_for_each_ref(refs, prefix, fn, strlen(prefix), 0, cb_data);
1360}
1361
1362int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data)
1363{
1364 return refs_for_each_ref_in(get_main_ref_store(), prefix, fn, cb_data);
1365}
1366
1367int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data, unsigned int broken)
1368{
1369 unsigned int flag = 0;
1370
1371 if (broken)
1372 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1373 return do_for_each_ref(get_main_ref_store(),
1374 prefix, fn, 0, flag, cb_data);
1375}
1376
1377int for_each_ref_in_submodule(const char *submodule, const char *prefix,
1378 each_ref_fn fn, void *cb_data)
1379{
1380 return refs_for_each_ref_in(get_submodule_ref_store(submodule),
1381 prefix, fn, cb_data);
1382}
1383
1384int for_each_fullref_in_submodule(const char *submodule, const char *prefix,
1385 each_ref_fn fn, void *cb_data,
1386 unsigned int broken)
1387{
1388 unsigned int flag = 0;
1389
1390 if (broken)
1391 flag = DO_FOR_EACH_INCLUDE_BROKEN;
1392 return do_for_each_ref(get_submodule_ref_store(submodule),
1393 prefix, fn, 0, flag, cb_data);
1394}
1395
1396int for_each_replace_ref(each_ref_fn fn, void *cb_data)
1397{
1398 return do_for_each_ref(get_main_ref_store(),
1399 git_replace_ref_base, fn,
1400 strlen(git_replace_ref_base),
1401 0, cb_data);
1402}
1403
1404int for_each_namespaced_ref(each_ref_fn fn, void *cb_data)
1405{
1406 struct strbuf buf = STRBUF_INIT;
1407 int ret;
1408 strbuf_addf(&buf, "%srefs/", get_git_namespace());
1409 ret = do_for_each_ref(get_main_ref_store(),
1410 buf.buf, fn, 0, 0, cb_data);
1411 strbuf_release(&buf);
1412 return ret;
1413}
1414
1415int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1416{
1417 return do_for_each_ref(refs, "", fn, 0,
1418 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);
1419}
1420
1421int for_each_rawref(each_ref_fn fn, void *cb_data)
1422{
1423 return refs_for_each_rawref(get_main_ref_store(), fn, cb_data);
1424}
1425
1426int refs_read_raw_ref(struct ref_store *ref_store,
1427 const char *refname, unsigned char *sha1,
1428 struct strbuf *referent, unsigned int *type)
1429{
1430 return ref_store->be->read_raw_ref(ref_store, refname, sha1, referent, type);
1431}
1432
1433/* This function needs to return a meaningful errno on failure */
1434const char *refs_resolve_ref_unsafe(struct ref_store *refs,
1435 const char *refname,
1436 int resolve_flags,
1437 unsigned char *sha1, int *flags)
1438{
1439 static struct strbuf sb_refname = STRBUF_INIT;
1440 int unused_flags;
1441 int symref_count;
1442
1443 if (!flags)
1444 flags = &unused_flags;
1445
1446 *flags = 0;
1447
1448 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1449 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1450 !refname_is_safe(refname)) {
1451 errno = EINVAL;
1452 return NULL;
1453 }
1454
1455 /*
1456 * dwim_ref() uses REF_ISBROKEN to distinguish between
1457 * missing refs and refs that were present but invalid,
1458 * to complain about the latter to stderr.
1459 *
1460 * We don't know whether the ref exists, so don't set
1461 * REF_ISBROKEN yet.
1462 */
1463 *flags |= REF_BAD_NAME;
1464 }
1465
1466 for (symref_count = 0; symref_count < SYMREF_MAXDEPTH; symref_count++) {
1467 unsigned int read_flags = 0;
1468
1469 if (refs_read_raw_ref(refs, refname,
1470 sha1, &sb_refname, &read_flags)) {
1471 *flags |= read_flags;
1472 if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
1473 return NULL;
1474 hashclr(sha1);
1475 if (*flags & REF_BAD_NAME)
1476 *flags |= REF_ISBROKEN;
1477 return refname;
1478 }
1479
1480 *flags |= read_flags;
1481
1482 if (!(read_flags & REF_ISSYMREF)) {
1483 if (*flags & REF_BAD_NAME) {
1484 hashclr(sha1);
1485 *flags |= REF_ISBROKEN;
1486 }
1487 return refname;
1488 }
1489
1490 refname = sb_refname.buf;
1491 if (resolve_flags & RESOLVE_REF_NO_RECURSE) {
1492 hashclr(sha1);
1493 return refname;
1494 }
1495 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
1496 if (!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||
1497 !refname_is_safe(refname)) {
1498 errno = EINVAL;
1499 return NULL;
1500 }
1501
1502 *flags |= REF_ISBROKEN | REF_BAD_NAME;
1503 }
1504 }
1505
1506 errno = ELOOP;
1507 return NULL;
1508}
1509
1510/* backend functions */
1511int refs_init_db(struct strbuf *err)
1512{
1513 struct ref_store *refs = get_main_ref_store();
1514
1515 return refs->be->init_db(refs, err);
1516}
1517
1518const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
1519 unsigned char *sha1, int *flags)
1520{
1521 return refs_resolve_ref_unsafe(get_main_ref_store(), refname,
1522 resolve_flags, sha1, flags);
1523}
1524
1525int resolve_gitlink_ref(const char *submodule, const char *refname,
1526 unsigned char *sha1)
1527{
1528 size_t len = strlen(submodule);
1529 struct ref_store *refs;
1530 int flags;
1531
1532 while (len && submodule[len - 1] == '/')
1533 len--;
1534
1535 if (!len)
1536 return -1;
1537
1538 if (submodule[len]) {
1539 /* We need to strip off one or more trailing slashes */
1540 char *stripped = xmemdupz(submodule, len);
1541
1542 refs = get_submodule_ref_store(stripped);
1543 free(stripped);
1544 } else {
1545 refs = get_submodule_ref_store(submodule);
1546 }
1547
1548 if (!refs)
1549 return -1;
1550
1551 if (!refs_resolve_ref_unsafe(refs, refname, 0, sha1, &flags) ||
1552 is_null_sha1(sha1))
1553 return -1;
1554 return 0;
1555}
1556
1557struct ref_store_hash_entry
1558{
1559 struct hashmap_entry ent; /* must be the first member! */
1560
1561 struct ref_store *refs;
1562
1563 /* NUL-terminated identifier of the ref store: */
1564 char name[FLEX_ARRAY];
1565};
1566
1567static int ref_store_hash_cmp(const void *unused_cmp_data,
1568 const void *entry, const void *entry_or_key,
1569 const void *keydata)
1570{
1571 const struct ref_store_hash_entry *e1 = entry, *e2 = entry_or_key;
1572 const char *name = keydata ? keydata : e2->name;
1573
1574 return strcmp(e1->name, name);
1575}
1576
1577static struct ref_store_hash_entry *alloc_ref_store_hash_entry(
1578 const char *name, struct ref_store *refs)
1579{
1580 struct ref_store_hash_entry *entry;
1581
1582 FLEX_ALLOC_STR(entry, name, name);
1583 hashmap_entry_init(entry, strhash(name));
1584 entry->refs = refs;
1585 return entry;
1586}
1587
1588/* A pointer to the ref_store for the main repository: */
1589static struct ref_store *main_ref_store;
1590
1591/* A hashmap of ref_stores, stored by submodule name: */
1592static struct hashmap submodule_ref_stores;
1593
1594/* A hashmap of ref_stores, stored by worktree id: */
1595static struct hashmap worktree_ref_stores;
1596
1597/*
1598 * Look up a ref store by name. If that ref_store hasn't been
1599 * registered yet, return NULL.
1600 */
1601static struct ref_store *lookup_ref_store_map(struct hashmap *map,
1602 const char *name)
1603{
1604 struct ref_store_hash_entry *entry;
1605
1606 if (!map->tablesize)
1607 /* It's initialized on demand in register_ref_store(). */
1608 return NULL;
1609
1610 entry = hashmap_get_from_hash(map, strhash(name), name);
1611 return entry ? entry->refs : NULL;
1612}
1613
1614/*
1615 * Create, record, and return a ref_store instance for the specified
1616 * gitdir.
1617 */
1618static struct ref_store *ref_store_init(const char *gitdir,
1619 unsigned int flags)
1620{
1621 const char *be_name = "files";
1622 struct ref_storage_be *be = find_ref_storage_backend(be_name);
1623 struct ref_store *refs;
1624
1625 if (!be)
1626 die("BUG: reference backend %s is unknown", be_name);
1627
1628 refs = be->init(gitdir, flags);
1629 return refs;
1630}
1631
1632struct ref_store *get_main_ref_store(void)
1633{
1634 if (main_ref_store)
1635 return main_ref_store;
1636
1637 main_ref_store = ref_store_init(get_git_dir(), REF_STORE_ALL_CAPS);
1638 return main_ref_store;
1639}
1640
1641/*
1642 * Associate a ref store with a name. It is a fatal error to call this
1643 * function twice for the same name.
1644 */
1645static void register_ref_store_map(struct hashmap *map,
1646 const char *type,
1647 struct ref_store *refs,
1648 const char *name)
1649{
1650 if (!map->tablesize)
1651 hashmap_init(map, ref_store_hash_cmp, NULL, 0);
1652
1653 if (hashmap_put(map, alloc_ref_store_hash_entry(name, refs)))
1654 die("BUG: %s ref_store '%s' initialized twice", type, name);
1655}
1656
1657struct ref_store *get_submodule_ref_store(const char *submodule)
1658{
1659 struct strbuf submodule_sb = STRBUF_INIT;
1660 struct ref_store *refs;
1661 int ret;
1662
1663 if (!submodule || !*submodule) {
1664 /*
1665 * FIXME: This case is ideally not allowed. But that
1666 * can't happen until we clean up all the callers.
1667 */
1668 return get_main_ref_store();
1669 }
1670
1671 refs = lookup_ref_store_map(&submodule_ref_stores, submodule);
1672 if (refs)
1673 return refs;
1674
1675 strbuf_addstr(&submodule_sb, submodule);
1676 ret = is_nonbare_repository_dir(&submodule_sb);
1677 strbuf_release(&submodule_sb);
1678 if (!ret)
1679 return NULL;
1680
1681 ret = submodule_to_gitdir(&submodule_sb, submodule);
1682 if (ret) {
1683 strbuf_release(&submodule_sb);
1684 return NULL;
1685 }
1686
1687 /* assume that add_submodule_odb() has been called */
1688 refs = ref_store_init(submodule_sb.buf,
1689 REF_STORE_READ | REF_STORE_ODB);
1690 register_ref_store_map(&submodule_ref_stores, "submodule",
1691 refs, submodule);
1692
1693 strbuf_release(&submodule_sb);
1694 return refs;
1695}
1696
1697struct ref_store *get_worktree_ref_store(const struct worktree *wt)
1698{
1699 struct ref_store *refs;
1700 const char *id;
1701
1702 if (wt->is_current)
1703 return get_main_ref_store();
1704
1705 id = wt->id ? wt->id : "/";
1706 refs = lookup_ref_store_map(&worktree_ref_stores, id);
1707 if (refs)
1708 return refs;
1709
1710 if (wt->id)
1711 refs = ref_store_init(git_common_path("worktrees/%s", wt->id),
1712 REF_STORE_ALL_CAPS);
1713 else
1714 refs = ref_store_init(get_git_common_dir(),
1715 REF_STORE_ALL_CAPS);
1716
1717 if (refs)
1718 register_ref_store_map(&worktree_ref_stores, "worktree",
1719 refs, id);
1720 return refs;
1721}
1722
1723void base_ref_store_init(struct ref_store *refs,
1724 const struct ref_storage_be *be)
1725{
1726 refs->be = be;
1727}
1728
1729/* backend functions */
1730int refs_pack_refs(struct ref_store *refs, unsigned int flags)
1731{
1732 return refs->be->pack_refs(refs, flags);
1733}
1734
1735int refs_peel_ref(struct ref_store *refs, const char *refname,
1736 unsigned char *sha1)
1737{
1738 int flag;
1739 unsigned char base[20];
1740
1741 if (current_ref_iter && current_ref_iter->refname == refname) {
1742 struct object_id peeled;
1743
1744 if (ref_iterator_peel(current_ref_iter, &peeled))
1745 return -1;
1746 hashcpy(sha1, peeled.hash);
1747 return 0;
1748 }
1749
1750 if (refs_read_ref_full(refs, refname,
1751 RESOLVE_REF_READING, base, &flag))
1752 return -1;
1753
1754 return peel_object(base, sha1);
1755}
1756
1757int peel_ref(const char *refname, unsigned char *sha1)
1758{
1759 return refs_peel_ref(get_main_ref_store(), refname, sha1);
1760}
1761
1762int refs_create_symref(struct ref_store *refs,
1763 const char *ref_target,
1764 const char *refs_heads_master,
1765 const char *logmsg)
1766{
1767 return refs->be->create_symref(refs, ref_target,
1768 refs_heads_master,
1769 logmsg);
1770}
1771
1772int create_symref(const char *ref_target, const char *refs_heads_master,
1773 const char *logmsg)
1774{
1775 return refs_create_symref(get_main_ref_store(), ref_target,
1776 refs_heads_master, logmsg);
1777}
1778
1779int ref_update_reject_duplicates(struct string_list *refnames,
1780 struct strbuf *err)
1781{
1782 size_t i, n = refnames->nr;
1783
1784 assert(err);
1785
1786 for (i = 1; i < n; i++) {
1787 int cmp = strcmp(refnames->items[i - 1].string,
1788 refnames->items[i].string);
1789
1790 if (!cmp) {
1791 strbuf_addf(err,
1792 "multiple updates for ref '%s' not allowed.",
1793 refnames->items[i].string);
1794 return 1;
1795 } else if (cmp > 0) {
1796 die("BUG: ref_update_reject_duplicates() received unsorted list");
1797 }
1798 }
1799 return 0;
1800}
1801
1802int ref_transaction_prepare(struct ref_transaction *transaction,
1803 struct strbuf *err)
1804{
1805 struct ref_store *refs = transaction->ref_store;
1806
1807 switch (transaction->state) {
1808 case REF_TRANSACTION_OPEN:
1809 /* Good. */
1810 break;
1811 case REF_TRANSACTION_PREPARED:
1812 die("BUG: prepare called twice on reference transaction");
1813 break;
1814 case REF_TRANSACTION_CLOSED:
1815 die("BUG: prepare called on a closed reference transaction");
1816 break;
1817 default:
1818 die("BUG: unexpected reference transaction state");
1819 break;
1820 }
1821
1822 if (getenv(GIT_QUARANTINE_ENVIRONMENT)) {
1823 strbuf_addstr(err,
1824 _("ref updates forbidden inside quarantine environment"));
1825 return -1;
1826 }
1827
1828 return refs->be->transaction_prepare(refs, transaction, err);
1829}
1830
1831int ref_transaction_abort(struct ref_transaction *transaction,
1832 struct strbuf *err)
1833{
1834 struct ref_store *refs = transaction->ref_store;
1835 int ret = 0;
1836
1837 switch (transaction->state) {
1838 case REF_TRANSACTION_OPEN:
1839 /* No need to abort explicitly. */
1840 break;
1841 case REF_TRANSACTION_PREPARED:
1842 ret = refs->be->transaction_abort(refs, transaction, err);
1843 break;
1844 case REF_TRANSACTION_CLOSED:
1845 die("BUG: abort called on a closed reference transaction");
1846 break;
1847 default:
1848 die("BUG: unexpected reference transaction state");
1849 break;
1850 }
1851
1852 ref_transaction_free(transaction);
1853 return ret;
1854}
1855
1856int ref_transaction_commit(struct ref_transaction *transaction,
1857 struct strbuf *err)
1858{
1859 struct ref_store *refs = transaction->ref_store;
1860 int ret;
1861
1862 switch (transaction->state) {
1863 case REF_TRANSACTION_OPEN:
1864 /* Need to prepare first. */
1865 ret = ref_transaction_prepare(transaction, err);
1866 if (ret)
1867 return ret;
1868 break;
1869 case REF_TRANSACTION_PREPARED:
1870 /* Fall through to finish. */
1871 break;
1872 case REF_TRANSACTION_CLOSED:
1873 die("BUG: commit called on a closed reference transaction");
1874 break;
1875 default:
1876 die("BUG: unexpected reference transaction state");
1877 break;
1878 }
1879
1880 return refs->be->transaction_finish(refs, transaction, err);
1881}
1882
1883int refs_verify_refname_available(struct ref_store *refs,
1884 const char *refname,
1885 const struct string_list *extras,
1886 const struct string_list *skip,
1887 struct strbuf *err)
1888{
1889 const char *slash;
1890 const char *extra_refname;
1891 struct strbuf dirname = STRBUF_INIT;
1892 struct strbuf referent = STRBUF_INIT;
1893 struct object_id oid;
1894 unsigned int type;
1895 struct ref_iterator *iter;
1896 int ok;
1897 int ret = -1;
1898
1899 /*
1900 * For the sake of comments in this function, suppose that
1901 * refname is "refs/foo/bar".
1902 */
1903
1904 assert(err);
1905
1906 strbuf_grow(&dirname, strlen(refname) + 1);
1907 for (slash = strchr(refname, '/'); slash; slash = strchr(slash + 1, '/')) {
1908 /* Expand dirname to the new prefix, not including the trailing slash: */
1909 strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len);
1910
1911 /*
1912 * We are still at a leading dir of the refname (e.g.,
1913 * "refs/foo"; if there is a reference with that name,
1914 * it is a conflict, *unless* it is in skip.
1915 */
1916 if (skip && string_list_has_string(skip, dirname.buf))
1917 continue;
1918
1919 if (!refs_read_raw_ref(refs, dirname.buf, oid.hash, &referent, &type)) {
1920 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1921 dirname.buf, refname);
1922 goto cleanup;
1923 }
1924
1925 if (extras && string_list_has_string(extras, dirname.buf)) {
1926 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1927 refname, dirname.buf);
1928 goto cleanup;
1929 }
1930 }
1931
1932 /*
1933 * We are at the leaf of our refname (e.g., "refs/foo/bar").
1934 * There is no point in searching for a reference with that
1935 * name, because a refname isn't considered to conflict with
1936 * itself. But we still need to check for references whose
1937 * names are in the "refs/foo/bar/" namespace, because they
1938 * *do* conflict.
1939 */
1940 strbuf_addstr(&dirname, refname + dirname.len);
1941 strbuf_addch(&dirname, '/');
1942
1943 iter = refs_ref_iterator_begin(refs, dirname.buf, 0,
1944 DO_FOR_EACH_INCLUDE_BROKEN);
1945 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {
1946 if (skip &&
1947 string_list_has_string(skip, iter->refname))
1948 continue;
1949
1950 strbuf_addf(err, "'%s' exists; cannot create '%s'",
1951 iter->refname, refname);
1952 ref_iterator_abort(iter);
1953 goto cleanup;
1954 }
1955
1956 if (ok != ITER_DONE)
1957 die("BUG: error while iterating over references");
1958
1959 extra_refname = find_descendant_ref(dirname.buf, extras, skip);
1960 if (extra_refname)
1961 strbuf_addf(err, "cannot process '%s' and '%s' at the same time",
1962 refname, extra_refname);
1963 else
1964 ret = 0;
1965
1966cleanup:
1967 strbuf_release(&referent);
1968 strbuf_release(&dirname);
1969 return ret;
1970}
1971
1972int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data)
1973{
1974 struct ref_iterator *iter;
1975
1976 iter = refs->be->reflog_iterator_begin(refs);
1977
1978 return do_for_each_ref_iterator(iter, fn, cb_data);
1979}
1980
1981int for_each_reflog(each_ref_fn fn, void *cb_data)
1982{
1983 return refs_for_each_reflog(get_main_ref_store(), fn, cb_data);
1984}
1985
1986int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
1987 const char *refname,
1988 each_reflog_ent_fn fn,
1989 void *cb_data)
1990{
1991 return refs->be->for_each_reflog_ent_reverse(refs, refname,
1992 fn, cb_data);
1993}
1994
1995int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn,
1996 void *cb_data)
1997{
1998 return refs_for_each_reflog_ent_reverse(get_main_ref_store(),
1999 refname, fn, cb_data);
2000}
2001
2002int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
2003 each_reflog_ent_fn fn, void *cb_data)
2004{
2005 return refs->be->for_each_reflog_ent(refs, refname, fn, cb_data);
2006}
2007
2008int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn,
2009 void *cb_data)
2010{
2011 return refs_for_each_reflog_ent(get_main_ref_store(), refname,
2012 fn, cb_data);
2013}
2014
2015int refs_reflog_exists(struct ref_store *refs, const char *refname)
2016{
2017 return refs->be->reflog_exists(refs, refname);
2018}
2019
2020int reflog_exists(const char *refname)
2021{
2022 return refs_reflog_exists(get_main_ref_store(), refname);
2023}
2024
2025int refs_create_reflog(struct ref_store *refs, const char *refname,
2026 int force_create, struct strbuf *err)
2027{
2028 return refs->be->create_reflog(refs, refname, force_create, err);
2029}
2030
2031int safe_create_reflog(const char *refname, int force_create,
2032 struct strbuf *err)
2033{
2034 return refs_create_reflog(get_main_ref_store(), refname,
2035 force_create, err);
2036}
2037
2038int refs_delete_reflog(struct ref_store *refs, const char *refname)
2039{
2040 return refs->be->delete_reflog(refs, refname);
2041}
2042
2043int delete_reflog(const char *refname)
2044{
2045 return refs_delete_reflog(get_main_ref_store(), refname);
2046}
2047
2048int refs_reflog_expire(struct ref_store *refs,
2049 const char *refname, const unsigned char *sha1,
2050 unsigned int flags,
2051 reflog_expiry_prepare_fn prepare_fn,
2052 reflog_expiry_should_prune_fn should_prune_fn,
2053 reflog_expiry_cleanup_fn cleanup_fn,
2054 void *policy_cb_data)
2055{
2056 return refs->be->reflog_expire(refs, refname, sha1, flags,
2057 prepare_fn, should_prune_fn,
2058 cleanup_fn, policy_cb_data);
2059}
2060
2061int reflog_expire(const char *refname, const unsigned char *sha1,
2062 unsigned int flags,
2063 reflog_expiry_prepare_fn prepare_fn,
2064 reflog_expiry_should_prune_fn should_prune_fn,
2065 reflog_expiry_cleanup_fn cleanup_fn,
2066 void *policy_cb_data)
2067{
2068 return refs_reflog_expire(get_main_ref_store(),
2069 refname, sha1, flags,
2070 prepare_fn, should_prune_fn,
2071 cleanup_fn, policy_cb_data);
2072}
2073
2074int initial_ref_transaction_commit(struct ref_transaction *transaction,
2075 struct strbuf *err)
2076{
2077 struct ref_store *refs = transaction->ref_store;
2078
2079 return refs->be->initial_transaction_commit(refs, transaction, err);
2080}
2081
2082int refs_delete_refs(struct ref_store *refs, const char *msg,
2083 struct string_list *refnames, unsigned int flags)
2084{
2085 return refs->be->delete_refs(refs, msg, refnames, flags);
2086}
2087
2088int delete_refs(const char *msg, struct string_list *refnames,
2089 unsigned int flags)
2090{
2091 return refs_delete_refs(get_main_ref_store(), msg, refnames, flags);
2092}
2093
2094int refs_rename_ref(struct ref_store *refs, const char *oldref,
2095 const char *newref, const char *logmsg)
2096{
2097 return refs->be->rename_ref(refs, oldref, newref, logmsg);
2098}
2099
2100int rename_ref(const char *oldref, const char *newref, const char *logmsg)
2101{
2102 return refs_rename_ref(get_main_ref_store(), oldref, newref, logmsg);
2103}