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