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