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