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