1#include "../cache.h" 2#include "../config.h" 3#include "../refs.h" 4#include "refs-internal.h" 5#include "ref-cache.h" 6#include "packed-backend.h" 7#include "../iterator.h" 8#include "../dir-iterator.h" 9#include "../lockfile.h" 10#include "../object.h" 11#include "../dir.h" 12 13/* 14 * This backend uses the following flags in `ref_update::flags` for 15 * internal bookkeeping purposes. Their numerical values must not 16 * conflict with REF_NODEREF, REF_FORCE_CREATE_REFLOG, REF_HAVE_NEW, 17 * REF_HAVE_OLD, or REF_ISPRUNING, which are also stored in 18 * `ref_update::flags`. 19 */ 20 21/* 22 * Used as a flag in ref_update::flags when a loose ref is being 23 * pruned. This flag must only be used when REF_NODEREF is set. 24 */ 25#define REF_ISPRUNING (1 << 4) 26 27/* 28 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken 29 * refs (i.e., because the reference is about to be deleted anyway). 30 */ 31#define REF_DELETING (1 << 5) 32 33/* 34 * Used as a flag in ref_update::flags when the lockfile needs to be 35 * committed. 36 */ 37#define REF_NEEDS_COMMIT (1 << 6) 38 39/* 40 * Used as a flag in ref_update::flags when we want to log a ref 41 * update but not actually perform it. This is used when a symbolic 42 * ref update is split up. 43 */ 44#define REF_LOG_ONLY (1 << 7) 45 46/* 47 * Used as a flag in ref_update::flags when the ref_update was via an 48 * update to HEAD. 49 */ 50#define REF_UPDATE_VIA_HEAD (1 << 8) 51 52/* 53 * Used as a flag in ref_update::flags when the loose reference has 54 * been deleted. 55 */ 56#define REF_DELETED_LOOSE (1 << 9) 57 58struct ref_lock { 59 char *ref_name; 60 struct lock_file lk; 61 struct object_id old_oid; 62}; 63 64/* 65 * Future: need to be in "struct repository" 66 * when doing a full libification. 67 */ 68struct files_ref_store { 69 struct ref_store base; 70 unsigned int store_flags; 71 72 char *gitdir; 73 char *gitcommondir; 74 75 struct ref_cache *loose; 76 77 struct ref_store *packed_ref_store; 78}; 79 80static void clear_loose_ref_cache(struct files_ref_store *refs) 81{ 82 if (refs->loose) { 83 free_ref_cache(refs->loose); 84 refs->loose = NULL; 85 } 86} 87 88/* 89 * Create a new submodule ref cache and add it to the internal 90 * set of caches. 91 */ 92static struct ref_store *files_ref_store_create(const char *gitdir, 93 unsigned int flags) 94{ 95 struct files_ref_store *refs = xcalloc(1, sizeof(*refs)); 96 struct ref_store *ref_store = (struct ref_store *)refs; 97 struct strbuf sb = STRBUF_INIT; 98 99 base_ref_store_init(ref_store, &refs_be_files); 100 refs->store_flags = flags; 101 102 refs->gitdir = xstrdup(gitdir); 103 get_common_dir_noenv(&sb, gitdir); 104 refs->gitcommondir = strbuf_detach(&sb, NULL); 105 strbuf_addf(&sb, "%s/packed-refs", refs->gitcommondir); 106 refs->packed_ref_store = packed_ref_store_create(sb.buf, flags); 107 strbuf_release(&sb); 108 109 return ref_store; 110} 111 112/* 113 * Die if refs is not the main ref store. caller is used in any 114 * necessary error messages. 115 */ 116static void files_assert_main_repository(struct files_ref_store *refs, 117 const char *caller) 118{ 119 if (refs->store_flags & REF_STORE_MAIN) 120 return; 121 122 die("BUG: operation %s only allowed for main ref store", caller); 123} 124 125/* 126 * Downcast ref_store to files_ref_store. Die if ref_store is not a 127 * files_ref_store. required_flags is compared with ref_store's 128 * store_flags to ensure the ref_store has all required capabilities. 129 * "caller" is used in any necessary error messages. 130 */ 131static struct files_ref_store *files_downcast(struct ref_store *ref_store, 132 unsigned int required_flags, 133 const char *caller) 134{ 135 struct files_ref_store *refs; 136 137 if (ref_store->be != &refs_be_files) 138 die("BUG: ref_store is type \"%s\" not \"files\" in %s", 139 ref_store->be->name, caller); 140 141 refs = (struct files_ref_store *)ref_store; 142 143 if ((refs->store_flags & required_flags) != required_flags) 144 die("BUG: operation %s requires abilities 0x%x, but only have 0x%x", 145 caller, required_flags, refs->store_flags); 146 147 return refs; 148} 149 150static void files_reflog_path(struct files_ref_store *refs, 151 struct strbuf *sb, 152 const char *refname) 153{ 154 switch (ref_type(refname)) { 155 case REF_TYPE_PER_WORKTREE: 156 case REF_TYPE_PSEUDOREF: 157 strbuf_addf(sb, "%s/logs/%s", refs->gitdir, refname); 158 break; 159 case REF_TYPE_NORMAL: 160 strbuf_addf(sb, "%s/logs/%s", refs->gitcommondir, refname); 161 break; 162 default: 163 die("BUG: unknown ref type %d of ref %s", 164 ref_type(refname), refname); 165 } 166} 167 168static void files_ref_path(struct files_ref_store *refs, 169 struct strbuf *sb, 170 const char *refname) 171{ 172 switch (ref_type(refname)) { 173 case REF_TYPE_PER_WORKTREE: 174 case REF_TYPE_PSEUDOREF: 175 strbuf_addf(sb, "%s/%s", refs->gitdir, refname); 176 break; 177 case REF_TYPE_NORMAL: 178 strbuf_addf(sb, "%s/%s", refs->gitcommondir, refname); 179 break; 180 default: 181 die("BUG: unknown ref type %d of ref %s", 182 ref_type(refname), refname); 183 } 184} 185 186/* 187 * Read the loose references from the namespace dirname into dir 188 * (without recursing). dirname must end with '/'. dir must be the 189 * directory entry corresponding to dirname. 190 */ 191static void loose_fill_ref_dir(struct ref_store *ref_store, 192 struct ref_dir *dir, const char *dirname) 193{ 194 struct files_ref_store *refs = 195 files_downcast(ref_store, REF_STORE_READ, "fill_ref_dir"); 196 DIR *d; 197 struct dirent *de; 198 int dirnamelen = strlen(dirname); 199 struct strbuf refname; 200 struct strbuf path = STRBUF_INIT; 201 size_t path_baselen; 202 203 files_ref_path(refs, &path, dirname); 204 path_baselen = path.len; 205 206 d = opendir(path.buf); 207 if (!d) { 208 strbuf_release(&path); 209 return; 210 } 211 212 strbuf_init(&refname, dirnamelen + 257); 213 strbuf_add(&refname, dirname, dirnamelen); 214 215 while ((de = readdir(d)) != NULL) { 216 struct object_id oid; 217 struct stat st; 218 int flag; 219 220 if (de->d_name[0] == '.') 221 continue; 222 if (ends_with(de->d_name, ".lock")) 223 continue; 224 strbuf_addstr(&refname, de->d_name); 225 strbuf_addstr(&path, de->d_name); 226 if (stat(path.buf, &st) < 0) { 227 ; /* silently ignore */ 228 } else if (S_ISDIR(st.st_mode)) { 229 strbuf_addch(&refname, '/'); 230 add_entry_to_dir(dir, 231 create_dir_entry(dir->cache, refname.buf, 232 refname.len, 1)); 233 } else { 234 if (!refs_resolve_ref_unsafe(&refs->base, 235 refname.buf, 236 RESOLVE_REF_READING, 237 &oid, &flag)) { 238 oidclr(&oid); 239 flag |= REF_ISBROKEN; 240 } else if (is_null_oid(&oid)) { 241 /* 242 * It is so astronomically unlikely 243 * that NULL_SHA1 is the SHA-1 of an 244 * actual object that we consider its 245 * appearance in a loose reference 246 * file to be repo corruption 247 * (probably due to a software bug). 248 */ 249 flag |= REF_ISBROKEN; 250 } 251 252 if (check_refname_format(refname.buf, 253 REFNAME_ALLOW_ONELEVEL)) { 254 if (!refname_is_safe(refname.buf)) 255 die("loose refname is dangerous: %s", refname.buf); 256 oidclr(&oid); 257 flag |= REF_BAD_NAME | REF_ISBROKEN; 258 } 259 add_entry_to_dir(dir, 260 create_ref_entry(refname.buf, &oid, flag)); 261 } 262 strbuf_setlen(&refname, dirnamelen); 263 strbuf_setlen(&path, path_baselen); 264 } 265 strbuf_release(&refname); 266 strbuf_release(&path); 267 closedir(d); 268 269 /* 270 * Manually add refs/bisect, which, being per-worktree, might 271 * not appear in the directory listing for refs/ in the main 272 * repo. 273 */ 274 if (!strcmp(dirname, "refs/")) { 275 int pos = search_ref_dir(dir, "refs/bisect/", 12); 276 277 if (pos < 0) { 278 struct ref_entry *child_entry = create_dir_entry( 279 dir->cache, "refs/bisect/", 12, 1); 280 add_entry_to_dir(dir, child_entry); 281 } 282 } 283} 284 285static struct ref_cache *get_loose_ref_cache(struct files_ref_store *refs) 286{ 287 if (!refs->loose) { 288 /* 289 * Mark the top-level directory complete because we 290 * are about to read the only subdirectory that can 291 * hold references: 292 */ 293 refs->loose = create_ref_cache(&refs->base, loose_fill_ref_dir); 294 295 /* We're going to fill the top level ourselves: */ 296 refs->loose->root->flag &= ~REF_INCOMPLETE; 297 298 /* 299 * Add an incomplete entry for "refs/" (to be filled 300 * lazily): 301 */ 302 add_entry_to_dir(get_ref_dir(refs->loose->root), 303 create_dir_entry(refs->loose, "refs/", 5, 1)); 304 } 305 return refs->loose; 306} 307 308static int files_read_raw_ref(struct ref_store *ref_store, 309 const char *refname, struct object_id *oid, 310 struct strbuf *referent, unsigned int *type) 311{ 312 struct files_ref_store *refs = 313 files_downcast(ref_store, REF_STORE_READ, "read_raw_ref"); 314 struct strbuf sb_contents = STRBUF_INIT; 315 struct strbuf sb_path = STRBUF_INIT; 316 const char *path; 317 const char *buf; 318 const char *p; 319 struct stat st; 320 int fd; 321 int ret = -1; 322 int save_errno; 323 int remaining_retries = 3; 324 325 *type = 0; 326 strbuf_reset(&sb_path); 327 328 files_ref_path(refs, &sb_path, refname); 329 330 path = sb_path.buf; 331 332stat_ref: 333 /* 334 * We might have to loop back here to avoid a race 335 * condition: first we lstat() the file, then we try 336 * to read it as a link or as a file. But if somebody 337 * changes the type of the file (file <-> directory 338 * <-> symlink) between the lstat() and reading, then 339 * we don't want to report that as an error but rather 340 * try again starting with the lstat(). 341 * 342 * We'll keep a count of the retries, though, just to avoid 343 * any confusing situation sending us into an infinite loop. 344 */ 345 346 if (remaining_retries-- <= 0) 347 goto out; 348 349 if (lstat(path, &st) < 0) { 350 if (errno != ENOENT) 351 goto out; 352 if (refs_read_raw_ref(refs->packed_ref_store, refname, 353 oid, referent, type)) { 354 errno = ENOENT; 355 goto out; 356 } 357 ret = 0; 358 goto out; 359 } 360 361 /* Follow "normalized" - ie "refs/.." symlinks by hand */ 362 if (S_ISLNK(st.st_mode)) { 363 strbuf_reset(&sb_contents); 364 if (strbuf_readlink(&sb_contents, path, 0) < 0) { 365 if (errno == ENOENT || errno == EINVAL) 366 /* inconsistent with lstat; retry */ 367 goto stat_ref; 368 else 369 goto out; 370 } 371 if (starts_with(sb_contents.buf, "refs/") && 372 !check_refname_format(sb_contents.buf, 0)) { 373 strbuf_swap(&sb_contents, referent); 374 *type |= REF_ISSYMREF; 375 ret = 0; 376 goto out; 377 } 378 /* 379 * It doesn't look like a refname; fall through to just 380 * treating it like a non-symlink, and reading whatever it 381 * points to. 382 */ 383 } 384 385 /* Is it a directory? */ 386 if (S_ISDIR(st.st_mode)) { 387 /* 388 * Even though there is a directory where the loose 389 * ref is supposed to be, there could still be a 390 * packed ref: 391 */ 392 if (refs_read_raw_ref(refs->packed_ref_store, refname, 393 oid, referent, type)) { 394 errno = EISDIR; 395 goto out; 396 } 397 ret = 0; 398 goto out; 399 } 400 401 /* 402 * Anything else, just open it and try to use it as 403 * a ref 404 */ 405 fd = open(path, O_RDONLY); 406 if (fd < 0) { 407 if (errno == ENOENT && !S_ISLNK(st.st_mode)) 408 /* inconsistent with lstat; retry */ 409 goto stat_ref; 410 else 411 goto out; 412 } 413 strbuf_reset(&sb_contents); 414 if (strbuf_read(&sb_contents, fd, 256) < 0) { 415 int save_errno = errno; 416 close(fd); 417 errno = save_errno; 418 goto out; 419 } 420 close(fd); 421 strbuf_rtrim(&sb_contents); 422 buf = sb_contents.buf; 423 if (starts_with(buf, "ref:")) { 424 buf += 4; 425 while (isspace(*buf)) 426 buf++; 427 428 strbuf_reset(referent); 429 strbuf_addstr(referent, buf); 430 *type |= REF_ISSYMREF; 431 ret = 0; 432 goto out; 433 } 434 435 /* 436 * Please note that FETCH_HEAD has additional 437 * data after the sha. 438 */ 439 if (parse_oid_hex(buf, oid, &p) || 440 (*p != '\0' && !isspace(*p))) { 441 *type |= REF_ISBROKEN; 442 errno = EINVAL; 443 goto out; 444 } 445 446 ret = 0; 447 448out: 449 save_errno = errno; 450 strbuf_release(&sb_path); 451 strbuf_release(&sb_contents); 452 errno = save_errno; 453 return ret; 454} 455 456static void unlock_ref(struct ref_lock *lock) 457{ 458 rollback_lock_file(&lock->lk); 459 free(lock->ref_name); 460 free(lock); 461} 462 463/* 464 * Lock refname, without following symrefs, and set *lock_p to point 465 * at a newly-allocated lock object. Fill in lock->old_oid, referent, 466 * and type similarly to read_raw_ref(). 467 * 468 * The caller must verify that refname is a "safe" reference name (in 469 * the sense of refname_is_safe()) before calling this function. 470 * 471 * If the reference doesn't already exist, verify that refname doesn't 472 * have a D/F conflict with any existing references. extras and skip 473 * are passed to refs_verify_refname_available() for this check. 474 * 475 * If mustexist is not set and the reference is not found or is 476 * broken, lock the reference anyway but clear sha1. 477 * 478 * Return 0 on success. On failure, write an error message to err and 479 * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR. 480 * 481 * Implementation note: This function is basically 482 * 483 * lock reference 484 * read_raw_ref() 485 * 486 * but it includes a lot more code to 487 * - Deal with possible races with other processes 488 * - Avoid calling refs_verify_refname_available() when it can be 489 * avoided, namely if we were successfully able to read the ref 490 * - Generate informative error messages in the case of failure 491 */ 492static int lock_raw_ref(struct files_ref_store *refs, 493 const char *refname, int mustexist, 494 const struct string_list *extras, 495 const struct string_list *skip, 496 struct ref_lock **lock_p, 497 struct strbuf *referent, 498 unsigned int *type, 499 struct strbuf *err) 500{ 501 struct ref_lock *lock; 502 struct strbuf ref_file = STRBUF_INIT; 503 int attempts_remaining = 3; 504 int ret = TRANSACTION_GENERIC_ERROR; 505 506 assert(err); 507 files_assert_main_repository(refs, "lock_raw_ref"); 508 509 *type = 0; 510 511 /* First lock the file so it can't change out from under us. */ 512 513 *lock_p = lock = xcalloc(1, sizeof(*lock)); 514 515 lock->ref_name = xstrdup(refname); 516 files_ref_path(refs, &ref_file, refname); 517 518retry: 519 switch (safe_create_leading_directories(ref_file.buf)) { 520 case SCLD_OK: 521 break; /* success */ 522 case SCLD_EXISTS: 523 /* 524 * Suppose refname is "refs/foo/bar". We just failed 525 * to create the containing directory, "refs/foo", 526 * because there was a non-directory in the way. This 527 * indicates a D/F conflict, probably because of 528 * another reference such as "refs/foo". There is no 529 * reason to expect this error to be transitory. 530 */ 531 if (refs_verify_refname_available(&refs->base, refname, 532 extras, skip, err)) { 533 if (mustexist) { 534 /* 535 * To the user the relevant error is 536 * that the "mustexist" reference is 537 * missing: 538 */ 539 strbuf_reset(err); 540 strbuf_addf(err, "unable to resolve reference '%s'", 541 refname); 542 } else { 543 /* 544 * The error message set by 545 * refs_verify_refname_available() is 546 * OK. 547 */ 548 ret = TRANSACTION_NAME_CONFLICT; 549 } 550 } else { 551 /* 552 * The file that is in the way isn't a loose 553 * reference. Report it as a low-level 554 * failure. 555 */ 556 strbuf_addf(err, "unable to create lock file %s.lock; " 557 "non-directory in the way", 558 ref_file.buf); 559 } 560 goto error_return; 561 case SCLD_VANISHED: 562 /* Maybe another process was tidying up. Try again. */ 563 if (--attempts_remaining > 0) 564 goto retry; 565 /* fall through */ 566 default: 567 strbuf_addf(err, "unable to create directory for %s", 568 ref_file.buf); 569 goto error_return; 570 } 571 572 if (hold_lock_file_for_update_timeout( 573 &lock->lk, ref_file.buf, LOCK_NO_DEREF, 574 get_files_ref_lock_timeout_ms()) < 0) { 575 if (errno == ENOENT && --attempts_remaining > 0) { 576 /* 577 * Maybe somebody just deleted one of the 578 * directories leading to ref_file. Try 579 * again: 580 */ 581 goto retry; 582 } else { 583 unable_to_lock_message(ref_file.buf, errno, err); 584 goto error_return; 585 } 586 } 587 588 /* 589 * Now we hold the lock and can read the reference without 590 * fear that its value will change. 591 */ 592 593 if (files_read_raw_ref(&refs->base, refname, 594 &lock->old_oid, referent, type)) { 595 if (errno == ENOENT) { 596 if (mustexist) { 597 /* Garden variety missing reference. */ 598 strbuf_addf(err, "unable to resolve reference '%s'", 599 refname); 600 goto error_return; 601 } else { 602 /* 603 * Reference is missing, but that's OK. We 604 * know that there is not a conflict with 605 * another loose reference because 606 * (supposing that we are trying to lock 607 * reference "refs/foo/bar"): 608 * 609 * - We were successfully able to create 610 * the lockfile refs/foo/bar.lock, so we 611 * know there cannot be a loose reference 612 * named "refs/foo". 613 * 614 * - We got ENOENT and not EISDIR, so we 615 * know that there cannot be a loose 616 * reference named "refs/foo/bar/baz". 617 */ 618 } 619 } else if (errno == EISDIR) { 620 /* 621 * There is a directory in the way. It might have 622 * contained references that have been deleted. If 623 * we don't require that the reference already 624 * exists, try to remove the directory so that it 625 * doesn't cause trouble when we want to rename the 626 * lockfile into place later. 627 */ 628 if (mustexist) { 629 /* Garden variety missing reference. */ 630 strbuf_addf(err, "unable to resolve reference '%s'", 631 refname); 632 goto error_return; 633 } else if (remove_dir_recursively(&ref_file, 634 REMOVE_DIR_EMPTY_ONLY)) { 635 if (refs_verify_refname_available( 636 &refs->base, refname, 637 extras, skip, err)) { 638 /* 639 * The error message set by 640 * verify_refname_available() is OK. 641 */ 642 ret = TRANSACTION_NAME_CONFLICT; 643 goto error_return; 644 } else { 645 /* 646 * We can't delete the directory, 647 * but we also don't know of any 648 * references that it should 649 * contain. 650 */ 651 strbuf_addf(err, "there is a non-empty directory '%s' " 652 "blocking reference '%s'", 653 ref_file.buf, refname); 654 goto error_return; 655 } 656 } 657 } else if (errno == EINVAL && (*type & REF_ISBROKEN)) { 658 strbuf_addf(err, "unable to resolve reference '%s': " 659 "reference broken", refname); 660 goto error_return; 661 } else { 662 strbuf_addf(err, "unable to resolve reference '%s': %s", 663 refname, strerror(errno)); 664 goto error_return; 665 } 666 667 /* 668 * If the ref did not exist and we are creating it, 669 * make sure there is no existing packed ref that 670 * conflicts with refname: 671 */ 672 if (refs_verify_refname_available( 673 refs->packed_ref_store, refname, 674 extras, skip, err)) 675 goto error_return; 676 } 677 678 ret = 0; 679 goto out; 680 681error_return: 682 unlock_ref(lock); 683 *lock_p = NULL; 684 685out: 686 strbuf_release(&ref_file); 687 return ret; 688} 689 690struct files_ref_iterator { 691 struct ref_iterator base; 692 693 struct ref_iterator *iter0; 694 unsigned int flags; 695}; 696 697static int files_ref_iterator_advance(struct ref_iterator *ref_iterator) 698{ 699 struct files_ref_iterator *iter = 700 (struct files_ref_iterator *)ref_iterator; 701 int ok; 702 703 while ((ok = ref_iterator_advance(iter->iter0)) == ITER_OK) { 704 if (iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY && 705 ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE) 706 continue; 707 708 if (!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 709 !ref_resolves_to_object(iter->iter0->refname, 710 iter->iter0->oid, 711 iter->iter0->flags)) 712 continue; 713 714 iter->base.refname = iter->iter0->refname; 715 iter->base.oid = iter->iter0->oid; 716 iter->base.flags = iter->iter0->flags; 717 return ITER_OK; 718 } 719 720 iter->iter0 = NULL; 721 if (ref_iterator_abort(ref_iterator) != ITER_DONE) 722 ok = ITER_ERROR; 723 724 return ok; 725} 726 727static int files_ref_iterator_peel(struct ref_iterator *ref_iterator, 728 struct object_id *peeled) 729{ 730 struct files_ref_iterator *iter = 731 (struct files_ref_iterator *)ref_iterator; 732 733 return ref_iterator_peel(iter->iter0, peeled); 734} 735 736static int files_ref_iterator_abort(struct ref_iterator *ref_iterator) 737{ 738 struct files_ref_iterator *iter = 739 (struct files_ref_iterator *)ref_iterator; 740 int ok = ITER_DONE; 741 742 if (iter->iter0) 743 ok = ref_iterator_abort(iter->iter0); 744 745 base_ref_iterator_free(ref_iterator); 746 return ok; 747} 748 749static struct ref_iterator_vtable files_ref_iterator_vtable = { 750 files_ref_iterator_advance, 751 files_ref_iterator_peel, 752 files_ref_iterator_abort 753}; 754 755static struct ref_iterator *files_ref_iterator_begin( 756 struct ref_store *ref_store, 757 const char *prefix, unsigned int flags) 758{ 759 struct files_ref_store *refs; 760 struct ref_iterator *loose_iter, *packed_iter, *overlay_iter; 761 struct files_ref_iterator *iter; 762 struct ref_iterator *ref_iterator; 763 unsigned int required_flags = REF_STORE_READ; 764 765 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) 766 required_flags |= REF_STORE_ODB; 767 768 refs = files_downcast(ref_store, required_flags, "ref_iterator_begin"); 769 770 /* 771 * We must make sure that all loose refs are read before 772 * accessing the packed-refs file; this avoids a race 773 * condition if loose refs are migrated to the packed-refs 774 * file by a simultaneous process, but our in-memory view is 775 * from before the migration. We ensure this as follows: 776 * First, we call start the loose refs iteration with its 777 * `prime_ref` argument set to true. This causes the loose 778 * references in the subtree to be pre-read into the cache. 779 * (If they've already been read, that's OK; we only need to 780 * guarantee that they're read before the packed refs, not 781 * *how much* before.) After that, we call 782 * packed_ref_iterator_begin(), which internally checks 783 * whether the packed-ref cache is up to date with what is on 784 * disk, and re-reads it if not. 785 */ 786 787 loose_iter = cache_ref_iterator_begin(get_loose_ref_cache(refs), 788 prefix, 1); 789 790 /* 791 * The packed-refs file might contain broken references, for 792 * example an old version of a reference that points at an 793 * object that has since been garbage-collected. This is OK as 794 * long as there is a corresponding loose reference that 795 * overrides it, and we don't want to emit an error message in 796 * this case. So ask the packed_ref_store for all of its 797 * references, and (if needed) do our own check for broken 798 * ones in files_ref_iterator_advance(), after we have merged 799 * the packed and loose references. 800 */ 801 packed_iter = refs_ref_iterator_begin( 802 refs->packed_ref_store, prefix, 0, 803 DO_FOR_EACH_INCLUDE_BROKEN); 804 805 overlay_iter = overlay_ref_iterator_begin(loose_iter, packed_iter); 806 807 iter = xcalloc(1, sizeof(*iter)); 808 ref_iterator = &iter->base; 809 base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable, 810 overlay_iter->ordered); 811 iter->iter0 = overlay_iter; 812 iter->flags = flags; 813 814 return ref_iterator; 815} 816 817/* 818 * Verify that the reference locked by lock has the value old_oid 819 * (unless it is NULL). Fail if the reference doesn't exist and 820 * mustexist is set. Return 0 on success. On error, write an error 821 * message to err, set errno, and return a negative value. 822 */ 823static int verify_lock(struct ref_store *ref_store, struct ref_lock *lock, 824 const struct object_id *old_oid, int mustexist, 825 struct strbuf *err) 826{ 827 assert(err); 828 829 if (refs_read_ref_full(ref_store, lock->ref_name, 830 mustexist ? RESOLVE_REF_READING : 0, 831 &lock->old_oid, NULL)) { 832 if (old_oid) { 833 int save_errno = errno; 834 strbuf_addf(err, "can't verify ref '%s'", lock->ref_name); 835 errno = save_errno; 836 return -1; 837 } else { 838 oidclr(&lock->old_oid); 839 return 0; 840 } 841 } 842 if (old_oid && oidcmp(&lock->old_oid, old_oid)) { 843 strbuf_addf(err, "ref '%s' is at %s but expected %s", 844 lock->ref_name, 845 oid_to_hex(&lock->old_oid), 846 oid_to_hex(old_oid)); 847 errno = EBUSY; 848 return -1; 849 } 850 return 0; 851} 852 853static int remove_empty_directories(struct strbuf *path) 854{ 855 /* 856 * we want to create a file but there is a directory there; 857 * if that is an empty directory (or a directory that contains 858 * only empty directories), remove them. 859 */ 860 return remove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY); 861} 862 863static int create_reflock(const char *path, void *cb) 864{ 865 struct lock_file *lk = cb; 866 867 return hold_lock_file_for_update_timeout( 868 lk, path, LOCK_NO_DEREF, 869 get_files_ref_lock_timeout_ms()) < 0 ? -1 : 0; 870} 871 872/* 873 * Locks a ref returning the lock on success and NULL on failure. 874 * On failure errno is set to something meaningful. 875 */ 876static struct ref_lock *lock_ref_oid_basic(struct files_ref_store *refs, 877 const char *refname, 878 const struct object_id *old_oid, 879 const struct string_list *extras, 880 const struct string_list *skip, 881 unsigned int flags, int *type, 882 struct strbuf *err) 883{ 884 struct strbuf ref_file = STRBUF_INIT; 885 struct ref_lock *lock; 886 int last_errno = 0; 887 int mustexist = (old_oid && !is_null_oid(old_oid)); 888 int resolve_flags = RESOLVE_REF_NO_RECURSE; 889 int resolved; 890 891 files_assert_main_repository(refs, "lock_ref_oid_basic"); 892 assert(err); 893 894 lock = xcalloc(1, sizeof(struct ref_lock)); 895 896 if (mustexist) 897 resolve_flags |= RESOLVE_REF_READING; 898 if (flags & REF_DELETING) 899 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME; 900 901 files_ref_path(refs, &ref_file, refname); 902 resolved = !!refs_resolve_ref_unsafe(&refs->base, 903 refname, resolve_flags, 904 &lock->old_oid, type); 905 if (!resolved && errno == EISDIR) { 906 /* 907 * we are trying to lock foo but we used to 908 * have foo/bar which now does not exist; 909 * it is normal for the empty directory 'foo' 910 * to remain. 911 */ 912 if (remove_empty_directories(&ref_file)) { 913 last_errno = errno; 914 if (!refs_verify_refname_available( 915 &refs->base, 916 refname, extras, skip, err)) 917 strbuf_addf(err, "there are still refs under '%s'", 918 refname); 919 goto error_return; 920 } 921 resolved = !!refs_resolve_ref_unsafe(&refs->base, 922 refname, resolve_flags, 923 &lock->old_oid, type); 924 } 925 if (!resolved) { 926 last_errno = errno; 927 if (last_errno != ENOTDIR || 928 !refs_verify_refname_available(&refs->base, refname, 929 extras, skip, err)) 930 strbuf_addf(err, "unable to resolve reference '%s': %s", 931 refname, strerror(last_errno)); 932 933 goto error_return; 934 } 935 936 /* 937 * If the ref did not exist and we are creating it, make sure 938 * there is no existing packed ref whose name begins with our 939 * refname, nor a packed ref whose name is a proper prefix of 940 * our refname. 941 */ 942 if (is_null_oid(&lock->old_oid) && 943 refs_verify_refname_available(refs->packed_ref_store, refname, 944 extras, skip, err)) { 945 last_errno = ENOTDIR; 946 goto error_return; 947 } 948 949 lock->ref_name = xstrdup(refname); 950 951 if (raceproof_create_file(ref_file.buf, create_reflock, &lock->lk)) { 952 last_errno = errno; 953 unable_to_lock_message(ref_file.buf, errno, err); 954 goto error_return; 955 } 956 957 if (verify_lock(&refs->base, lock, old_oid, mustexist, err)) { 958 last_errno = errno; 959 goto error_return; 960 } 961 goto out; 962 963 error_return: 964 unlock_ref(lock); 965 lock = NULL; 966 967 out: 968 strbuf_release(&ref_file); 969 errno = last_errno; 970 return lock; 971} 972 973struct ref_to_prune { 974 struct ref_to_prune *next; 975 struct object_id oid; 976 char name[FLEX_ARRAY]; 977}; 978 979enum { 980 REMOVE_EMPTY_PARENTS_REF = 0x01, 981 REMOVE_EMPTY_PARENTS_REFLOG = 0x02 982}; 983 984/* 985 * Remove empty parent directories associated with the specified 986 * reference and/or its reflog, but spare [logs/]refs/ and immediate 987 * subdirs. flags is a combination of REMOVE_EMPTY_PARENTS_REF and/or 988 * REMOVE_EMPTY_PARENTS_REFLOG. 989 */ 990static void try_remove_empty_parents(struct files_ref_store *refs, 991 const char *refname, 992 unsigned int flags) 993{ 994 struct strbuf buf = STRBUF_INIT; 995 struct strbuf sb = STRBUF_INIT; 996 char *p, *q; 997 int i; 998 999 strbuf_addstr(&buf, refname);1000 p = buf.buf;1001 for (i = 0; i < 2; i++) { /* refs/{heads,tags,...}/ */1002 while (*p && *p != '/')1003 p++;1004 /* tolerate duplicate slashes; see check_refname_format() */1005 while (*p == '/')1006 p++;1007 }1008 q = buf.buf + buf.len;1009 while (flags & (REMOVE_EMPTY_PARENTS_REF | REMOVE_EMPTY_PARENTS_REFLOG)) {1010 while (q > p && *q != '/')1011 q--;1012 while (q > p && *(q-1) == '/')1013 q--;1014 if (q == p)1015 break;1016 strbuf_setlen(&buf, q - buf.buf);10171018 strbuf_reset(&sb);1019 files_ref_path(refs, &sb, buf.buf);1020 if ((flags & REMOVE_EMPTY_PARENTS_REF) && rmdir(sb.buf))1021 flags &= ~REMOVE_EMPTY_PARENTS_REF;10221023 strbuf_reset(&sb);1024 files_reflog_path(refs, &sb, buf.buf);1025 if ((flags & REMOVE_EMPTY_PARENTS_REFLOG) && rmdir(sb.buf))1026 flags &= ~REMOVE_EMPTY_PARENTS_REFLOG;1027 }1028 strbuf_release(&buf);1029 strbuf_release(&sb);1030}10311032/* make sure nobody touched the ref, and unlink */1033static void prune_ref(struct files_ref_store *refs, struct ref_to_prune *r)1034{1035 struct ref_transaction *transaction;1036 struct strbuf err = STRBUF_INIT;1037 int ret = -1;10381039 if (check_refname_format(r->name, 0))1040 return;10411042 transaction = ref_store_transaction_begin(&refs->base, &err);1043 if (!transaction)1044 goto cleanup;1045 ref_transaction_add_update(1046 transaction, r->name,1047 REF_NODEREF | REF_HAVE_NEW | REF_HAVE_OLD | REF_ISPRUNING,1048 &null_oid, &r->oid, NULL);1049 if (ref_transaction_commit(transaction, &err))1050 goto cleanup;10511052 ret = 0;10531054cleanup:1055 if (ret)1056 error("%s", err.buf);1057 strbuf_release(&err);1058 ref_transaction_free(transaction);1059 return;1060}10611062/*1063 * Prune the loose versions of the references in the linked list1064 * `*refs_to_prune`, freeing the entries in the list as we go.1065 */1066static void prune_refs(struct files_ref_store *refs, struct ref_to_prune **refs_to_prune)1067{1068 while (*refs_to_prune) {1069 struct ref_to_prune *r = *refs_to_prune;1070 *refs_to_prune = r->next;1071 prune_ref(refs, r);1072 free(r);1073 }1074}10751076/*1077 * Return true if the specified reference should be packed.1078 */1079static int should_pack_ref(const char *refname,1080 const struct object_id *oid, unsigned int ref_flags,1081 unsigned int pack_flags)1082{1083 /* Do not pack per-worktree refs: */1084 if (ref_type(refname) != REF_TYPE_NORMAL)1085 return 0;10861087 /* Do not pack non-tags unless PACK_REFS_ALL is set: */1088 if (!(pack_flags & PACK_REFS_ALL) && !starts_with(refname, "refs/tags/"))1089 return 0;10901091 /* Do not pack symbolic refs: */1092 if (ref_flags & REF_ISSYMREF)1093 return 0;10941095 /* Do not pack broken refs: */1096 if (!ref_resolves_to_object(refname, oid, ref_flags))1097 return 0;10981099 return 1;1100}11011102static int files_pack_refs(struct ref_store *ref_store, unsigned int flags)1103{1104 struct files_ref_store *refs =1105 files_downcast(ref_store, REF_STORE_WRITE | REF_STORE_ODB,1106 "pack_refs");1107 struct ref_iterator *iter;1108 int ok;1109 struct ref_to_prune *refs_to_prune = NULL;1110 struct strbuf err = STRBUF_INIT;1111 struct ref_transaction *transaction;11121113 transaction = ref_store_transaction_begin(refs->packed_ref_store, &err);1114 if (!transaction)1115 return -1;11161117 packed_refs_lock(refs->packed_ref_store, LOCK_DIE_ON_ERROR, &err);11181119 iter = cache_ref_iterator_begin(get_loose_ref_cache(refs), NULL, 0);1120 while ((ok = ref_iterator_advance(iter)) == ITER_OK) {1121 /*1122 * If the loose reference can be packed, add an entry1123 * in the packed ref cache. If the reference should be1124 * pruned, also add it to refs_to_prune.1125 */1126 if (!should_pack_ref(iter->refname, iter->oid, iter->flags,1127 flags))1128 continue;11291130 /*1131 * Add a reference creation for this reference to the1132 * packed-refs transaction:1133 */1134 if (ref_transaction_update(transaction, iter->refname,1135 iter->oid, NULL,1136 REF_NODEREF, NULL, &err))1137 die("failure preparing to create packed reference %s: %s",1138 iter->refname, err.buf);11391140 /* Schedule the loose reference for pruning if requested. */1141 if ((flags & PACK_REFS_PRUNE)) {1142 struct ref_to_prune *n;1143 FLEX_ALLOC_STR(n, name, iter->refname);1144 oidcpy(&n->oid, iter->oid);1145 n->next = refs_to_prune;1146 refs_to_prune = n;1147 }1148 }1149 if (ok != ITER_DONE)1150 die("error while iterating over references");11511152 if (ref_transaction_commit(transaction, &err))1153 die("unable to write new packed-refs: %s", err.buf);11541155 ref_transaction_free(transaction);11561157 packed_refs_unlock(refs->packed_ref_store);11581159 prune_refs(refs, &refs_to_prune);1160 strbuf_release(&err);1161 return 0;1162}11631164static int files_delete_refs(struct ref_store *ref_store, const char *msg,1165 struct string_list *refnames, unsigned int flags)1166{1167 struct files_ref_store *refs =1168 files_downcast(ref_store, REF_STORE_WRITE, "delete_refs");1169 struct strbuf err = STRBUF_INIT;1170 int i, result = 0;11711172 if (!refnames->nr)1173 return 0;11741175 if (packed_refs_lock(refs->packed_ref_store, 0, &err))1176 goto error;11771178 if (refs_delete_refs(refs->packed_ref_store, msg, refnames, flags)) {1179 packed_refs_unlock(refs->packed_ref_store);1180 goto error;1181 }11821183 packed_refs_unlock(refs->packed_ref_store);11841185 for (i = 0; i < refnames->nr; i++) {1186 const char *refname = refnames->items[i].string;11871188 if (refs_delete_ref(&refs->base, msg, refname, NULL, flags))1189 result |= error(_("could not remove reference %s"), refname);1190 }11911192 strbuf_release(&err);1193 return result;11941195error:1196 /*1197 * If we failed to rewrite the packed-refs file, then it is1198 * unsafe to try to remove loose refs, because doing so might1199 * expose an obsolete packed value for a reference that might1200 * even point at an object that has been garbage collected.1201 */1202 if (refnames->nr == 1)1203 error(_("could not delete reference %s: %s"),1204 refnames->items[0].string, err.buf);1205 else1206 error(_("could not delete references: %s"), err.buf);12071208 strbuf_release(&err);1209 return -1;1210}12111212/*1213 * People using contrib's git-new-workdir have .git/logs/refs ->1214 * /some/other/path/.git/logs/refs, and that may live on another device.1215 *1216 * IOW, to avoid cross device rename errors, the temporary renamed log must1217 * live into logs/refs.1218 */1219#define TMP_RENAMED_LOG "refs/.tmp-renamed-log"12201221struct rename_cb {1222 const char *tmp_renamed_log;1223 int true_errno;1224};12251226static int rename_tmp_log_callback(const char *path, void *cb_data)1227{1228 struct rename_cb *cb = cb_data;12291230 if (rename(cb->tmp_renamed_log, path)) {1231 /*1232 * rename(a, b) when b is an existing directory ought1233 * to result in ISDIR, but Solaris 5.8 gives ENOTDIR.1234 * Sheesh. Record the true errno for error reporting,1235 * but report EISDIR to raceproof_create_file() so1236 * that it knows to retry.1237 */1238 cb->true_errno = errno;1239 if (errno == ENOTDIR)1240 errno = EISDIR;1241 return -1;1242 } else {1243 return 0;1244 }1245}12461247static int rename_tmp_log(struct files_ref_store *refs, const char *newrefname)1248{1249 struct strbuf path = STRBUF_INIT;1250 struct strbuf tmp = STRBUF_INIT;1251 struct rename_cb cb;1252 int ret;12531254 files_reflog_path(refs, &path, newrefname);1255 files_reflog_path(refs, &tmp, TMP_RENAMED_LOG);1256 cb.tmp_renamed_log = tmp.buf;1257 ret = raceproof_create_file(path.buf, rename_tmp_log_callback, &cb);1258 if (ret) {1259 if (errno == EISDIR)1260 error("directory not empty: %s", path.buf);1261 else1262 error("unable to move logfile %s to %s: %s",1263 tmp.buf, path.buf,1264 strerror(cb.true_errno));1265 }12661267 strbuf_release(&path);1268 strbuf_release(&tmp);1269 return ret;1270}12711272static int write_ref_to_lockfile(struct ref_lock *lock,1273 const struct object_id *oid, struct strbuf *err);1274static int commit_ref_update(struct files_ref_store *refs,1275 struct ref_lock *lock,1276 const struct object_id *oid, const char *logmsg,1277 struct strbuf *err);12781279static int files_copy_or_rename_ref(struct ref_store *ref_store,1280 const char *oldrefname, const char *newrefname,1281 const char *logmsg, int copy)1282{1283 struct files_ref_store *refs =1284 files_downcast(ref_store, REF_STORE_WRITE, "rename_ref");1285 struct object_id oid, orig_oid;1286 int flag = 0, logmoved = 0;1287 struct ref_lock *lock;1288 struct stat loginfo;1289 struct strbuf sb_oldref = STRBUF_INIT;1290 struct strbuf sb_newref = STRBUF_INIT;1291 struct strbuf tmp_renamed_log = STRBUF_INIT;1292 int log, ret;1293 struct strbuf err = STRBUF_INIT;12941295 files_reflog_path(refs, &sb_oldref, oldrefname);1296 files_reflog_path(refs, &sb_newref, newrefname);1297 files_reflog_path(refs, &tmp_renamed_log, TMP_RENAMED_LOG);12981299 log = !lstat(sb_oldref.buf, &loginfo);1300 if (log && S_ISLNK(loginfo.st_mode)) {1301 ret = error("reflog for %s is a symlink", oldrefname);1302 goto out;1303 }13041305 if (!refs_resolve_ref_unsafe(&refs->base, oldrefname,1306 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1307 &orig_oid, &flag)) {1308 ret = error("refname %s not found", oldrefname);1309 goto out;1310 }13111312 if (flag & REF_ISSYMREF) {1313 if (copy)1314 ret = error("refname %s is a symbolic ref, copying it is not supported",1315 oldrefname);1316 else1317 ret = error("refname %s is a symbolic ref, renaming it is not supported",1318 oldrefname);1319 goto out;1320 }1321 if (!refs_rename_ref_available(&refs->base, oldrefname, newrefname)) {1322 ret = 1;1323 goto out;1324 }13251326 if (!copy && log && rename(sb_oldref.buf, tmp_renamed_log.buf)) {1327 ret = error("unable to move logfile logs/%s to logs/"TMP_RENAMED_LOG": %s",1328 oldrefname, strerror(errno));1329 goto out;1330 }13311332 if (copy && log && copy_file(tmp_renamed_log.buf, sb_oldref.buf, 0644)) {1333 ret = error("unable to copy logfile logs/%s to logs/"TMP_RENAMED_LOG": %s",1334 oldrefname, strerror(errno));1335 goto out;1336 }13371338 if (!copy && refs_delete_ref(&refs->base, logmsg, oldrefname,1339 &orig_oid, REF_NODEREF)) {1340 error("unable to delete old %s", oldrefname);1341 goto rollback;1342 }13431344 /*1345 * Since we are doing a shallow lookup, oid is not the1346 * correct value to pass to delete_ref as old_oid. But that1347 * doesn't matter, because an old_oid check wouldn't add to1348 * the safety anyway; we want to delete the reference whatever1349 * its current value.1350 */1351 if (!copy && !refs_read_ref_full(&refs->base, newrefname,1352 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1353 &oid, NULL) &&1354 refs_delete_ref(&refs->base, NULL, newrefname,1355 NULL, REF_NODEREF)) {1356 if (errno == EISDIR) {1357 struct strbuf path = STRBUF_INIT;1358 int result;13591360 files_ref_path(refs, &path, newrefname);1361 result = remove_empty_directories(&path);1362 strbuf_release(&path);13631364 if (result) {1365 error("Directory not empty: %s", newrefname);1366 goto rollback;1367 }1368 } else {1369 error("unable to delete existing %s", newrefname);1370 goto rollback;1371 }1372 }13731374 if (log && rename_tmp_log(refs, newrefname))1375 goto rollback;13761377 logmoved = log;13781379 lock = lock_ref_oid_basic(refs, newrefname, NULL, NULL, NULL,1380 REF_NODEREF, NULL, &err);1381 if (!lock) {1382 if (copy)1383 error("unable to copy '%s' to '%s': %s", oldrefname, newrefname, err.buf);1384 else1385 error("unable to rename '%s' to '%s': %s", oldrefname, newrefname, err.buf);1386 strbuf_release(&err);1387 goto rollback;1388 }1389 oidcpy(&lock->old_oid, &orig_oid);13901391 if (write_ref_to_lockfile(lock, &orig_oid, &err) ||1392 commit_ref_update(refs, lock, &orig_oid, logmsg, &err)) {1393 error("unable to write current sha1 into %s: %s", newrefname, err.buf);1394 strbuf_release(&err);1395 goto rollback;1396 }13971398 ret = 0;1399 goto out;14001401 rollback:1402 lock = lock_ref_oid_basic(refs, oldrefname, NULL, NULL, NULL,1403 REF_NODEREF, NULL, &err);1404 if (!lock) {1405 error("unable to lock %s for rollback: %s", oldrefname, err.buf);1406 strbuf_release(&err);1407 goto rollbacklog;1408 }14091410 flag = log_all_ref_updates;1411 log_all_ref_updates = LOG_REFS_NONE;1412 if (write_ref_to_lockfile(lock, &orig_oid, &err) ||1413 commit_ref_update(refs, lock, &orig_oid, NULL, &err)) {1414 error("unable to write current sha1 into %s: %s", oldrefname, err.buf);1415 strbuf_release(&err);1416 }1417 log_all_ref_updates = flag;14181419 rollbacklog:1420 if (logmoved && rename(sb_newref.buf, sb_oldref.buf))1421 error("unable to restore logfile %s from %s: %s",1422 oldrefname, newrefname, strerror(errno));1423 if (!logmoved && log &&1424 rename(tmp_renamed_log.buf, sb_oldref.buf))1425 error("unable to restore logfile %s from logs/"TMP_RENAMED_LOG": %s",1426 oldrefname, strerror(errno));1427 ret = 1;1428 out:1429 strbuf_release(&sb_newref);1430 strbuf_release(&sb_oldref);1431 strbuf_release(&tmp_renamed_log);14321433 return ret;1434}14351436static int files_rename_ref(struct ref_store *ref_store,1437 const char *oldrefname, const char *newrefname,1438 const char *logmsg)1439{1440 return files_copy_or_rename_ref(ref_store, oldrefname,1441 newrefname, logmsg, 0);1442}14431444static int files_copy_ref(struct ref_store *ref_store,1445 const char *oldrefname, const char *newrefname,1446 const char *logmsg)1447{1448 return files_copy_or_rename_ref(ref_store, oldrefname,1449 newrefname, logmsg, 1);1450}14511452static int close_ref_gently(struct ref_lock *lock)1453{1454 if (close_lock_file_gently(&lock->lk))1455 return -1;1456 return 0;1457}14581459static int commit_ref(struct ref_lock *lock)1460{1461 char *path = get_locked_file_path(&lock->lk);1462 struct stat st;14631464 if (!lstat(path, &st) && S_ISDIR(st.st_mode)) {1465 /*1466 * There is a directory at the path we want to rename1467 * the lockfile to. Hopefully it is empty; try to1468 * delete it.1469 */1470 size_t len = strlen(path);1471 struct strbuf sb_path = STRBUF_INIT;14721473 strbuf_attach(&sb_path, path, len, len);14741475 /*1476 * If this fails, commit_lock_file() will also fail1477 * and will report the problem.1478 */1479 remove_empty_directories(&sb_path);1480 strbuf_release(&sb_path);1481 } else {1482 free(path);1483 }14841485 if (commit_lock_file(&lock->lk))1486 return -1;1487 return 0;1488}14891490static int open_or_create_logfile(const char *path, void *cb)1491{1492 int *fd = cb;14931494 *fd = open(path, O_APPEND | O_WRONLY | O_CREAT, 0666);1495 return (*fd < 0) ? -1 : 0;1496}14971498/*1499 * Create a reflog for a ref. If force_create = 0, only create the1500 * reflog for certain refs (those for which should_autocreate_reflog1501 * returns non-zero). Otherwise, create it regardless of the reference1502 * name. If the logfile already existed or was created, return 0 and1503 * set *logfd to the file descriptor opened for appending to the file.1504 * If no logfile exists and we decided not to create one, return 0 and1505 * set *logfd to -1. On failure, fill in *err, set *logfd to -1, and1506 * return -1.1507 */1508static int log_ref_setup(struct files_ref_store *refs,1509 const char *refname, int force_create,1510 int *logfd, struct strbuf *err)1511{1512 struct strbuf logfile_sb = STRBUF_INIT;1513 char *logfile;15141515 files_reflog_path(refs, &logfile_sb, refname);1516 logfile = strbuf_detach(&logfile_sb, NULL);15171518 if (force_create || should_autocreate_reflog(refname)) {1519 if (raceproof_create_file(logfile, open_or_create_logfile, logfd)) {1520 if (errno == ENOENT)1521 strbuf_addf(err, "unable to create directory for '%s': "1522 "%s", logfile, strerror(errno));1523 else if (errno == EISDIR)1524 strbuf_addf(err, "there are still logs under '%s'",1525 logfile);1526 else1527 strbuf_addf(err, "unable to append to '%s': %s",1528 logfile, strerror(errno));15291530 goto error;1531 }1532 } else {1533 *logfd = open(logfile, O_APPEND | O_WRONLY, 0666);1534 if (*logfd < 0) {1535 if (errno == ENOENT || errno == EISDIR) {1536 /*1537 * The logfile doesn't already exist,1538 * but that is not an error; it only1539 * means that we won't write log1540 * entries to it.1541 */1542 ;1543 } else {1544 strbuf_addf(err, "unable to append to '%s': %s",1545 logfile, strerror(errno));1546 goto error;1547 }1548 }1549 }15501551 if (*logfd >= 0)1552 adjust_shared_perm(logfile);15531554 free(logfile);1555 return 0;15561557error:1558 free(logfile);1559 return -1;1560}15611562static int files_create_reflog(struct ref_store *ref_store,1563 const char *refname, int force_create,1564 struct strbuf *err)1565{1566 struct files_ref_store *refs =1567 files_downcast(ref_store, REF_STORE_WRITE, "create_reflog");1568 int fd;15691570 if (log_ref_setup(refs, refname, force_create, &fd, err))1571 return -1;15721573 if (fd >= 0)1574 close(fd);15751576 return 0;1577}15781579static int log_ref_write_fd(int fd, const struct object_id *old_oid,1580 const struct object_id *new_oid,1581 const char *committer, const char *msg)1582{1583 int msglen, written;1584 unsigned maxlen, len;1585 char *logrec;15861587 msglen = msg ? strlen(msg) : 0;1588 maxlen = strlen(committer) + msglen + 100;1589 logrec = xmalloc(maxlen);1590 len = xsnprintf(logrec, maxlen, "%s %s %s\n",1591 oid_to_hex(old_oid),1592 oid_to_hex(new_oid),1593 committer);1594 if (msglen)1595 len += copy_reflog_msg(logrec + len - 1, msg) - 1;15961597 written = len <= maxlen ? write_in_full(fd, logrec, len) : -1;1598 free(logrec);1599 if (written < 0)1600 return -1;16011602 return 0;1603}16041605static int files_log_ref_write(struct files_ref_store *refs,1606 const char *refname, const struct object_id *old_oid,1607 const struct object_id *new_oid, const char *msg,1608 int flags, struct strbuf *err)1609{1610 int logfd, result;16111612 if (log_all_ref_updates == LOG_REFS_UNSET)1613 log_all_ref_updates = is_bare_repository() ? LOG_REFS_NONE : LOG_REFS_NORMAL;16141615 result = log_ref_setup(refs, refname,1616 flags & REF_FORCE_CREATE_REFLOG,1617 &logfd, err);16181619 if (result)1620 return result;16211622 if (logfd < 0)1623 return 0;1624 result = log_ref_write_fd(logfd, old_oid, new_oid,1625 git_committer_info(0), msg);1626 if (result) {1627 struct strbuf sb = STRBUF_INIT;1628 int save_errno = errno;16291630 files_reflog_path(refs, &sb, refname);1631 strbuf_addf(err, "unable to append to '%s': %s",1632 sb.buf, strerror(save_errno));1633 strbuf_release(&sb);1634 close(logfd);1635 return -1;1636 }1637 if (close(logfd)) {1638 struct strbuf sb = STRBUF_INIT;1639 int save_errno = errno;16401641 files_reflog_path(refs, &sb, refname);1642 strbuf_addf(err, "unable to append to '%s': %s",1643 sb.buf, strerror(save_errno));1644 strbuf_release(&sb);1645 return -1;1646 }1647 return 0;1648}16491650/*1651 * Write sha1 into the open lockfile, then close the lockfile. On1652 * errors, rollback the lockfile, fill in *err and1653 * return -1.1654 */1655static int write_ref_to_lockfile(struct ref_lock *lock,1656 const struct object_id *oid, struct strbuf *err)1657{1658 static char term = '\n';1659 struct object *o;1660 int fd;16611662 o = parse_object(oid);1663 if (!o) {1664 strbuf_addf(err,1665 "trying to write ref '%s' with nonexistent object %s",1666 lock->ref_name, oid_to_hex(oid));1667 unlock_ref(lock);1668 return -1;1669 }1670 if (o->type != OBJ_COMMIT && is_branch(lock->ref_name)) {1671 strbuf_addf(err,1672 "trying to write non-commit object %s to branch '%s'",1673 oid_to_hex(oid), lock->ref_name);1674 unlock_ref(lock);1675 return -1;1676 }1677 fd = get_lock_file_fd(&lock->lk);1678 if (write_in_full(fd, oid_to_hex(oid), GIT_SHA1_HEXSZ) < 0 ||1679 write_in_full(fd, &term, 1) < 0 ||1680 close_ref_gently(lock) < 0) {1681 strbuf_addf(err,1682 "couldn't write '%s'", get_lock_file_path(&lock->lk));1683 unlock_ref(lock);1684 return -1;1685 }1686 return 0;1687}16881689/*1690 * Commit a change to a loose reference that has already been written1691 * to the loose reference lockfile. Also update the reflogs if1692 * necessary, using the specified lockmsg (which can be NULL).1693 */1694static int commit_ref_update(struct files_ref_store *refs,1695 struct ref_lock *lock,1696 const struct object_id *oid, const char *logmsg,1697 struct strbuf *err)1698{1699 files_assert_main_repository(refs, "commit_ref_update");17001701 clear_loose_ref_cache(refs);1702 if (files_log_ref_write(refs, lock->ref_name,1703 &lock->old_oid, oid,1704 logmsg, 0, err)) {1705 char *old_msg = strbuf_detach(err, NULL);1706 strbuf_addf(err, "cannot update the ref '%s': %s",1707 lock->ref_name, old_msg);1708 free(old_msg);1709 unlock_ref(lock);1710 return -1;1711 }17121713 if (strcmp(lock->ref_name, "HEAD") != 0) {1714 /*1715 * Special hack: If a branch is updated directly and HEAD1716 * points to it (may happen on the remote side of a push1717 * for example) then logically the HEAD reflog should be1718 * updated too.1719 * A generic solution implies reverse symref information,1720 * but finding all symrefs pointing to the given branch1721 * would be rather costly for this rare event (the direct1722 * update of a branch) to be worth it. So let's cheat and1723 * check with HEAD only which should cover 99% of all usage1724 * scenarios (even 100% of the default ones).1725 */1726 int head_flag;1727 const char *head_ref;17281729 head_ref = refs_resolve_ref_unsafe(&refs->base, "HEAD",1730 RESOLVE_REF_READING,1731 NULL, &head_flag);1732 if (head_ref && (head_flag & REF_ISSYMREF) &&1733 !strcmp(head_ref, lock->ref_name)) {1734 struct strbuf log_err = STRBUF_INIT;1735 if (files_log_ref_write(refs, "HEAD",1736 &lock->old_oid, oid,1737 logmsg, 0, &log_err)) {1738 error("%s", log_err.buf);1739 strbuf_release(&log_err);1740 }1741 }1742 }17431744 if (commit_ref(lock)) {1745 strbuf_addf(err, "couldn't set '%s'", lock->ref_name);1746 unlock_ref(lock);1747 return -1;1748 }17491750 unlock_ref(lock);1751 return 0;1752}17531754static int create_ref_symlink(struct ref_lock *lock, const char *target)1755{1756 int ret = -1;1757#ifndef NO_SYMLINK_HEAD1758 char *ref_path = get_locked_file_path(&lock->lk);1759 unlink(ref_path);1760 ret = symlink(target, ref_path);1761 free(ref_path);17621763 if (ret)1764 fprintf(stderr, "no symlink - falling back to symbolic ref\n");1765#endif1766 return ret;1767}17681769static void update_symref_reflog(struct files_ref_store *refs,1770 struct ref_lock *lock, const char *refname,1771 const char *target, const char *logmsg)1772{1773 struct strbuf err = STRBUF_INIT;1774 struct object_id new_oid;1775 if (logmsg &&1776 !refs_read_ref_full(&refs->base, target,1777 RESOLVE_REF_READING, &new_oid, NULL) &&1778 files_log_ref_write(refs, refname, &lock->old_oid,1779 &new_oid, logmsg, 0, &err)) {1780 error("%s", err.buf);1781 strbuf_release(&err);1782 }1783}17841785static int create_symref_locked(struct files_ref_store *refs,1786 struct ref_lock *lock, const char *refname,1787 const char *target, const char *logmsg)1788{1789 if (prefer_symlink_refs && !create_ref_symlink(lock, target)) {1790 update_symref_reflog(refs, lock, refname, target, logmsg);1791 return 0;1792 }17931794 if (!fdopen_lock_file(&lock->lk, "w"))1795 return error("unable to fdopen %s: %s",1796 lock->lk.tempfile->filename.buf, strerror(errno));17971798 update_symref_reflog(refs, lock, refname, target, logmsg);17991800 /* no error check; commit_ref will check ferror */1801 fprintf(lock->lk.tempfile->fp, "ref: %s\n", target);1802 if (commit_ref(lock) < 0)1803 return error("unable to write symref for %s: %s", refname,1804 strerror(errno));1805 return 0;1806}18071808static int files_create_symref(struct ref_store *ref_store,1809 const char *refname, const char *target,1810 const char *logmsg)1811{1812 struct files_ref_store *refs =1813 files_downcast(ref_store, REF_STORE_WRITE, "create_symref");1814 struct strbuf err = STRBUF_INIT;1815 struct ref_lock *lock;1816 int ret;18171818 lock = lock_ref_oid_basic(refs, refname, NULL,1819 NULL, NULL, REF_NODEREF, NULL,1820 &err);1821 if (!lock) {1822 error("%s", err.buf);1823 strbuf_release(&err);1824 return -1;1825 }18261827 ret = create_symref_locked(refs, lock, refname, target, logmsg);1828 unlock_ref(lock);1829 return ret;1830}18311832static int files_reflog_exists(struct ref_store *ref_store,1833 const char *refname)1834{1835 struct files_ref_store *refs =1836 files_downcast(ref_store, REF_STORE_READ, "reflog_exists");1837 struct strbuf sb = STRBUF_INIT;1838 struct stat st;1839 int ret;18401841 files_reflog_path(refs, &sb, refname);1842 ret = !lstat(sb.buf, &st) && S_ISREG(st.st_mode);1843 strbuf_release(&sb);1844 return ret;1845}18461847static int files_delete_reflog(struct ref_store *ref_store,1848 const char *refname)1849{1850 struct files_ref_store *refs =1851 files_downcast(ref_store, REF_STORE_WRITE, "delete_reflog");1852 struct strbuf sb = STRBUF_INIT;1853 int ret;18541855 files_reflog_path(refs, &sb, refname);1856 ret = remove_path(sb.buf);1857 strbuf_release(&sb);1858 return ret;1859}18601861static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)1862{1863 struct object_id ooid, noid;1864 char *email_end, *message;1865 timestamp_t timestamp;1866 int tz;1867 const char *p = sb->buf;18681869 /* old SP new SP name <email> SP time TAB msg LF */1870 if (!sb->len || sb->buf[sb->len - 1] != '\n' ||1871 parse_oid_hex(p, &ooid, &p) || *p++ != ' ' ||1872 parse_oid_hex(p, &noid, &p) || *p++ != ' ' ||1873 !(email_end = strchr(p, '>')) ||1874 email_end[1] != ' ' ||1875 !(timestamp = parse_timestamp(email_end + 2, &message, 10)) ||1876 !message || message[0] != ' ' ||1877 (message[1] != '+' && message[1] != '-') ||1878 !isdigit(message[2]) || !isdigit(message[3]) ||1879 !isdigit(message[4]) || !isdigit(message[5]))1880 return 0; /* corrupt? */1881 email_end[1] = '\0';1882 tz = strtol(message + 1, NULL, 10);1883 if (message[6] != '\t')1884 message += 6;1885 else1886 message += 7;1887 return fn(&ooid, &noid, p, timestamp, tz, message, cb_data);1888}18891890static char *find_beginning_of_line(char *bob, char *scan)1891{1892 while (bob < scan && *(--scan) != '\n')1893 ; /* keep scanning backwards */1894 /*1895 * Return either beginning of the buffer, or LF at the end of1896 * the previous line.1897 */1898 return scan;1899}19001901static int files_for_each_reflog_ent_reverse(struct ref_store *ref_store,1902 const char *refname,1903 each_reflog_ent_fn fn,1904 void *cb_data)1905{1906 struct files_ref_store *refs =1907 files_downcast(ref_store, REF_STORE_READ,1908 "for_each_reflog_ent_reverse");1909 struct strbuf sb = STRBUF_INIT;1910 FILE *logfp;1911 long pos;1912 int ret = 0, at_tail = 1;19131914 files_reflog_path(refs, &sb, refname);1915 logfp = fopen(sb.buf, "r");1916 strbuf_release(&sb);1917 if (!logfp)1918 return -1;19191920 /* Jump to the end */1921 if (fseek(logfp, 0, SEEK_END) < 0)1922 ret = error("cannot seek back reflog for %s: %s",1923 refname, strerror(errno));1924 pos = ftell(logfp);1925 while (!ret && 0 < pos) {1926 int cnt;1927 size_t nread;1928 char buf[BUFSIZ];1929 char *endp, *scanp;19301931 /* Fill next block from the end */1932 cnt = (sizeof(buf) < pos) ? sizeof(buf) : pos;1933 if (fseek(logfp, pos - cnt, SEEK_SET)) {1934 ret = error("cannot seek back reflog for %s: %s",1935 refname, strerror(errno));1936 break;1937 }1938 nread = fread(buf, cnt, 1, logfp);1939 if (nread != 1) {1940 ret = error("cannot read %d bytes from reflog for %s: %s",1941 cnt, refname, strerror(errno));1942 break;1943 }1944 pos -= cnt;19451946 scanp = endp = buf + cnt;1947 if (at_tail && scanp[-1] == '\n')1948 /* Looking at the final LF at the end of the file */1949 scanp--;1950 at_tail = 0;19511952 while (buf < scanp) {1953 /*1954 * terminating LF of the previous line, or the beginning1955 * of the buffer.1956 */1957 char *bp;19581959 bp = find_beginning_of_line(buf, scanp);19601961 if (*bp == '\n') {1962 /*1963 * The newline is the end of the previous line,1964 * so we know we have complete line starting1965 * at (bp + 1). Prefix it onto any prior data1966 * we collected for the line and process it.1967 */1968 strbuf_splice(&sb, 0, 0, bp + 1, endp - (bp + 1));1969 scanp = bp;1970 endp = bp + 1;1971 ret = show_one_reflog_ent(&sb, fn, cb_data);1972 strbuf_reset(&sb);1973 if (ret)1974 break;1975 } else if (!pos) {1976 /*1977 * We are at the start of the buffer, and the1978 * start of the file; there is no previous1979 * line, and we have everything for this one.1980 * Process it, and we can end the loop.1981 */1982 strbuf_splice(&sb, 0, 0, buf, endp - buf);1983 ret = show_one_reflog_ent(&sb, fn, cb_data);1984 strbuf_reset(&sb);1985 break;1986 }19871988 if (bp == buf) {1989 /*1990 * We are at the start of the buffer, and there1991 * is more file to read backwards. Which means1992 * we are in the middle of a line. Note that we1993 * may get here even if *bp was a newline; that1994 * just means we are at the exact end of the1995 * previous line, rather than some spot in the1996 * middle.1997 *1998 * Save away what we have to be combined with1999 * the data from the next read.2000 */2001 strbuf_splice(&sb, 0, 0, buf, endp - buf);2002 break;2003 }2004 }20052006 }2007 if (!ret && sb.len)2008 die("BUG: reverse reflog parser had leftover data");20092010 fclose(logfp);2011 strbuf_release(&sb);2012 return ret;2013}20142015static int files_for_each_reflog_ent(struct ref_store *ref_store,2016 const char *refname,2017 each_reflog_ent_fn fn, void *cb_data)2018{2019 struct files_ref_store *refs =2020 files_downcast(ref_store, REF_STORE_READ,2021 "for_each_reflog_ent");2022 FILE *logfp;2023 struct strbuf sb = STRBUF_INIT;2024 int ret = 0;20252026 files_reflog_path(refs, &sb, refname);2027 logfp = fopen(sb.buf, "r");2028 strbuf_release(&sb);2029 if (!logfp)2030 return -1;20312032 while (!ret && !strbuf_getwholeline(&sb, logfp, '\n'))2033 ret = show_one_reflog_ent(&sb, fn, cb_data);2034 fclose(logfp);2035 strbuf_release(&sb);2036 return ret;2037}20382039struct files_reflog_iterator {2040 struct ref_iterator base;20412042 struct ref_store *ref_store;2043 struct dir_iterator *dir_iterator;2044 struct object_id oid;2045};20462047static int files_reflog_iterator_advance(struct ref_iterator *ref_iterator)2048{2049 struct files_reflog_iterator *iter =2050 (struct files_reflog_iterator *)ref_iterator;2051 struct dir_iterator *diter = iter->dir_iterator;2052 int ok;20532054 while ((ok = dir_iterator_advance(diter)) == ITER_OK) {2055 int flags;20562057 if (!S_ISREG(diter->st.st_mode))2058 continue;2059 if (diter->basename[0] == '.')2060 continue;2061 if (ends_with(diter->basename, ".lock"))2062 continue;20632064 if (refs_read_ref_full(iter->ref_store,2065 diter->relative_path, 0,2066 &iter->oid, &flags)) {2067 error("bad ref for %s", diter->path.buf);2068 continue;2069 }20702071 iter->base.refname = diter->relative_path;2072 iter->base.oid = &iter->oid;2073 iter->base.flags = flags;2074 return ITER_OK;2075 }20762077 iter->dir_iterator = NULL;2078 if (ref_iterator_abort(ref_iterator) == ITER_ERROR)2079 ok = ITER_ERROR;2080 return ok;2081}20822083static int files_reflog_iterator_peel(struct ref_iterator *ref_iterator,2084 struct object_id *peeled)2085{2086 die("BUG: ref_iterator_peel() called for reflog_iterator");2087}20882089static int files_reflog_iterator_abort(struct ref_iterator *ref_iterator)2090{2091 struct files_reflog_iterator *iter =2092 (struct files_reflog_iterator *)ref_iterator;2093 int ok = ITER_DONE;20942095 if (iter->dir_iterator)2096 ok = dir_iterator_abort(iter->dir_iterator);20972098 base_ref_iterator_free(ref_iterator);2099 return ok;2100}21012102static struct ref_iterator_vtable files_reflog_iterator_vtable = {2103 files_reflog_iterator_advance,2104 files_reflog_iterator_peel,2105 files_reflog_iterator_abort2106};21072108static struct ref_iterator *reflog_iterator_begin(struct ref_store *ref_store,2109 const char *gitdir)2110{2111 struct files_reflog_iterator *iter = xcalloc(1, sizeof(*iter));2112 struct ref_iterator *ref_iterator = &iter->base;2113 struct strbuf sb = STRBUF_INIT;21142115 base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable, 0);2116 strbuf_addf(&sb, "%s/logs", gitdir);2117 iter->dir_iterator = dir_iterator_begin(sb.buf);2118 iter->ref_store = ref_store;2119 strbuf_release(&sb);21202121 return ref_iterator;2122}21232124static enum iterator_selection reflog_iterator_select(2125 struct ref_iterator *iter_worktree,2126 struct ref_iterator *iter_common,2127 void *cb_data)2128{2129 if (iter_worktree) {2130 /*2131 * We're a bit loose here. We probably should ignore2132 * common refs if they are accidentally added as2133 * per-worktree refs.2134 */2135 return ITER_SELECT_0;2136 } else if (iter_common) {2137 if (ref_type(iter_common->refname) == REF_TYPE_NORMAL)2138 return ITER_SELECT_1;21392140 /*2141 * The main ref store may contain main worktree's2142 * per-worktree refs, which should be ignored2143 */2144 return ITER_SKIP_1;2145 } else2146 return ITER_DONE;2147}21482149static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store)2150{2151 struct files_ref_store *refs =2152 files_downcast(ref_store, REF_STORE_READ,2153 "reflog_iterator_begin");21542155 if (!strcmp(refs->gitdir, refs->gitcommondir)) {2156 return reflog_iterator_begin(ref_store, refs->gitcommondir);2157 } else {2158 return merge_ref_iterator_begin(2159 0,2160 reflog_iterator_begin(ref_store, refs->gitdir),2161 reflog_iterator_begin(ref_store, refs->gitcommondir),2162 reflog_iterator_select, refs);2163 }2164}21652166/*2167 * If update is a direct update of head_ref (the reference pointed to2168 * by HEAD), then add an extra REF_LOG_ONLY update for HEAD.2169 */2170static int split_head_update(struct ref_update *update,2171 struct ref_transaction *transaction,2172 const char *head_ref,2173 struct string_list *affected_refnames,2174 struct strbuf *err)2175{2176 struct string_list_item *item;2177 struct ref_update *new_update;21782179 if ((update->flags & REF_LOG_ONLY) ||2180 (update->flags & REF_ISPRUNING) ||2181 (update->flags & REF_UPDATE_VIA_HEAD))2182 return 0;21832184 if (strcmp(update->refname, head_ref))2185 return 0;21862187 /*2188 * First make sure that HEAD is not already in the2189 * transaction. This check is O(lg N) in the transaction2190 * size, but it happens at most once per transaction.2191 */2192 if (string_list_has_string(affected_refnames, "HEAD")) {2193 /* An entry already existed */2194 strbuf_addf(err,2195 "multiple updates for 'HEAD' (including one "2196 "via its referent '%s') are not allowed",2197 update->refname);2198 return TRANSACTION_NAME_CONFLICT;2199 }22002201 new_update = ref_transaction_add_update(2202 transaction, "HEAD",2203 update->flags | REF_LOG_ONLY | REF_NODEREF,2204 &update->new_oid, &update->old_oid,2205 update->msg);22062207 /*2208 * Add "HEAD". This insertion is O(N) in the transaction2209 * size, but it happens at most once per transaction.2210 * Add new_update->refname instead of a literal "HEAD".2211 */2212 if (strcmp(new_update->refname, "HEAD"))2213 BUG("%s unexpectedly not 'HEAD'", new_update->refname);2214 item = string_list_insert(affected_refnames, new_update->refname);2215 item->util = new_update;22162217 return 0;2218}22192220/*2221 * update is for a symref that points at referent and doesn't have2222 * REF_NODEREF set. Split it into two updates:2223 * - The original update, but with REF_LOG_ONLY and REF_NODEREF set2224 * - A new, separate update for the referent reference2225 * Note that the new update will itself be subject to splitting when2226 * the iteration gets to it.2227 */2228static int split_symref_update(struct files_ref_store *refs,2229 struct ref_update *update,2230 const char *referent,2231 struct ref_transaction *transaction,2232 struct string_list *affected_refnames,2233 struct strbuf *err)2234{2235 struct string_list_item *item;2236 struct ref_update *new_update;2237 unsigned int new_flags;22382239 /*2240 * First make sure that referent is not already in the2241 * transaction. This check is O(lg N) in the transaction2242 * size, but it happens at most once per symref in a2243 * transaction.2244 */2245 if (string_list_has_string(affected_refnames, referent)) {2246 /* An entry already exists */2247 strbuf_addf(err,2248 "multiple updates for '%s' (including one "2249 "via symref '%s') are not allowed",2250 referent, update->refname);2251 return TRANSACTION_NAME_CONFLICT;2252 }22532254 new_flags = update->flags;2255 if (!strcmp(update->refname, "HEAD")) {2256 /*2257 * Record that the new update came via HEAD, so that2258 * when we process it, split_head_update() doesn't try2259 * to add another reflog update for HEAD. Note that2260 * this bit will be propagated if the new_update2261 * itself needs to be split.2262 */2263 new_flags |= REF_UPDATE_VIA_HEAD;2264 }22652266 new_update = ref_transaction_add_update(2267 transaction, referent, new_flags,2268 &update->new_oid, &update->old_oid,2269 update->msg);22702271 new_update->parent_update = update;22722273 /*2274 * Change the symbolic ref update to log only. Also, it2275 * doesn't need to check its old SHA-1 value, as that will be2276 * done when new_update is processed.2277 */2278 update->flags |= REF_LOG_ONLY | REF_NODEREF;2279 update->flags &= ~REF_HAVE_OLD;22802281 /*2282 * Add the referent. This insertion is O(N) in the transaction2283 * size, but it happens at most once per symref in a2284 * transaction. Make sure to add new_update->refname, which will2285 * be valid as long as affected_refnames is in use, and NOT2286 * referent, which might soon be freed by our caller.2287 */2288 item = string_list_insert(affected_refnames, new_update->refname);2289 if (item->util)2290 BUG("%s unexpectedly found in affected_refnames",2291 new_update->refname);2292 item->util = new_update;22932294 return 0;2295}22962297/*2298 * Return the refname under which update was originally requested.2299 */2300static const char *original_update_refname(struct ref_update *update)2301{2302 while (update->parent_update)2303 update = update->parent_update;23042305 return update->refname;2306}23072308/*2309 * Check whether the REF_HAVE_OLD and old_oid values stored in update2310 * are consistent with oid, which is the reference's current value. If2311 * everything is OK, return 0; otherwise, write an error message to2312 * err and return -1.2313 */2314static int check_old_oid(struct ref_update *update, struct object_id *oid,2315 struct strbuf *err)2316{2317 if (!(update->flags & REF_HAVE_OLD) ||2318 !oidcmp(oid, &update->old_oid))2319 return 0;23202321 if (is_null_oid(&update->old_oid))2322 strbuf_addf(err, "cannot lock ref '%s': "2323 "reference already exists",2324 original_update_refname(update));2325 else if (is_null_oid(oid))2326 strbuf_addf(err, "cannot lock ref '%s': "2327 "reference is missing but expected %s",2328 original_update_refname(update),2329 oid_to_hex(&update->old_oid));2330 else2331 strbuf_addf(err, "cannot lock ref '%s': "2332 "is at %s but expected %s",2333 original_update_refname(update),2334 oid_to_hex(oid),2335 oid_to_hex(&update->old_oid));23362337 return -1;2338}23392340/*2341 * Prepare for carrying out update:2342 * - Lock the reference referred to by update.2343 * - Read the reference under lock.2344 * - Check that its old SHA-1 value (if specified) is correct, and in2345 * any case record it in update->lock->old_oid for later use when2346 * writing the reflog.2347 * - If it is a symref update without REF_NODEREF, split it up into a2348 * REF_LOG_ONLY update of the symref and add a separate update for2349 * the referent to transaction.2350 * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY2351 * update of HEAD.2352 */2353static int lock_ref_for_update(struct files_ref_store *refs,2354 struct ref_update *update,2355 struct ref_transaction *transaction,2356 const char *head_ref,2357 struct string_list *affected_refnames,2358 struct strbuf *err)2359{2360 struct strbuf referent = STRBUF_INIT;2361 int mustexist = (update->flags & REF_HAVE_OLD) &&2362 !is_null_oid(&update->old_oid);2363 int ret = 0;2364 struct ref_lock *lock;23652366 files_assert_main_repository(refs, "lock_ref_for_update");23672368 if ((update->flags & REF_HAVE_NEW) && is_null_oid(&update->new_oid))2369 update->flags |= REF_DELETING;23702371 if (head_ref) {2372 ret = split_head_update(update, transaction, head_ref,2373 affected_refnames, err);2374 if (ret)2375 goto out;2376 }23772378 ret = lock_raw_ref(refs, update->refname, mustexist,2379 affected_refnames, NULL,2380 &lock, &referent,2381 &update->type, err);2382 if (ret) {2383 char *reason;23842385 reason = strbuf_detach(err, NULL);2386 strbuf_addf(err, "cannot lock ref '%s': %s",2387 original_update_refname(update), reason);2388 free(reason);2389 goto out;2390 }23912392 update->backend_data = lock;23932394 if (update->type & REF_ISSYMREF) {2395 if (update->flags & REF_NODEREF) {2396 /*2397 * We won't be reading the referent as part of2398 * the transaction, so we have to read it here2399 * to record and possibly check old_sha1:2400 */2401 if (refs_read_ref_full(&refs->base,2402 referent.buf, 0,2403 &lock->old_oid, NULL)) {2404 if (update->flags & REF_HAVE_OLD) {2405 strbuf_addf(err, "cannot lock ref '%s': "2406 "error reading reference",2407 original_update_refname(update));2408 ret = TRANSACTION_GENERIC_ERROR;2409 goto out;2410 }2411 } else if (check_old_oid(update, &lock->old_oid, err)) {2412 ret = TRANSACTION_GENERIC_ERROR;2413 goto out;2414 }2415 } else {2416 /*2417 * Create a new update for the reference this2418 * symref is pointing at. Also, we will record2419 * and verify old_sha1 for this update as part2420 * of processing the split-off update, so we2421 * don't have to do it here.2422 */2423 ret = split_symref_update(refs, update,2424 referent.buf, transaction,2425 affected_refnames, err);2426 if (ret)2427 goto out;2428 }2429 } else {2430 struct ref_update *parent_update;24312432 if (check_old_oid(update, &lock->old_oid, err)) {2433 ret = TRANSACTION_GENERIC_ERROR;2434 goto out;2435 }24362437 /*2438 * If this update is happening indirectly because of a2439 * symref update, record the old SHA-1 in the parent2440 * update:2441 */2442 for (parent_update = update->parent_update;2443 parent_update;2444 parent_update = parent_update->parent_update) {2445 struct ref_lock *parent_lock = parent_update->backend_data;2446 oidcpy(&parent_lock->old_oid, &lock->old_oid);2447 }2448 }24492450 if ((update->flags & REF_HAVE_NEW) &&2451 !(update->flags & REF_DELETING) &&2452 !(update->flags & REF_LOG_ONLY)) {2453 if (!(update->type & REF_ISSYMREF) &&2454 !oidcmp(&lock->old_oid, &update->new_oid)) {2455 /*2456 * The reference already has the desired2457 * value, so we don't need to write it.2458 */2459 } else if (write_ref_to_lockfile(lock, &update->new_oid,2460 err)) {2461 char *write_err = strbuf_detach(err, NULL);24622463 /*2464 * The lock was freed upon failure of2465 * write_ref_to_lockfile():2466 */2467 update->backend_data = NULL;2468 strbuf_addf(err,2469 "cannot update ref '%s': %s",2470 update->refname, write_err);2471 free(write_err);2472 ret = TRANSACTION_GENERIC_ERROR;2473 goto out;2474 } else {2475 update->flags |= REF_NEEDS_COMMIT;2476 }2477 }2478 if (!(update->flags & REF_NEEDS_COMMIT)) {2479 /*2480 * We didn't call write_ref_to_lockfile(), so2481 * the lockfile is still open. Close it to2482 * free up the file descriptor:2483 */2484 if (close_ref_gently(lock)) {2485 strbuf_addf(err, "couldn't close '%s.lock'",2486 update->refname);2487 ret = TRANSACTION_GENERIC_ERROR;2488 goto out;2489 }2490 }24912492out:2493 strbuf_release(&referent);2494 return ret;2495}24962497struct files_transaction_backend_data {2498 struct ref_transaction *packed_transaction;2499 int packed_refs_locked;2500};25012502/*2503 * Unlock any references in `transaction` that are still locked, and2504 * mark the transaction closed.2505 */2506static void files_transaction_cleanup(struct files_ref_store *refs,2507 struct ref_transaction *transaction)2508{2509 size_t i;2510 struct files_transaction_backend_data *backend_data =2511 transaction->backend_data;2512 struct strbuf err = STRBUF_INIT;25132514 for (i = 0; i < transaction->nr; i++) {2515 struct ref_update *update = transaction->updates[i];2516 struct ref_lock *lock = update->backend_data;25172518 if (lock) {2519 unlock_ref(lock);2520 update->backend_data = NULL;2521 }2522 }25232524 if (backend_data->packed_transaction &&2525 ref_transaction_abort(backend_data->packed_transaction, &err)) {2526 error("error aborting transaction: %s", err.buf);2527 strbuf_release(&err);2528 }25292530 if (backend_data->packed_refs_locked)2531 packed_refs_unlock(refs->packed_ref_store);25322533 free(backend_data);25342535 transaction->state = REF_TRANSACTION_CLOSED;2536}25372538static int files_transaction_prepare(struct ref_store *ref_store,2539 struct ref_transaction *transaction,2540 struct strbuf *err)2541{2542 struct files_ref_store *refs =2543 files_downcast(ref_store, REF_STORE_WRITE,2544 "ref_transaction_prepare");2545 size_t i;2546 int ret = 0;2547 struct string_list affected_refnames = STRING_LIST_INIT_NODUP;2548 char *head_ref = NULL;2549 int head_type;2550 struct files_transaction_backend_data *backend_data;2551 struct ref_transaction *packed_transaction = NULL;25522553 assert(err);25542555 if (!transaction->nr)2556 goto cleanup;25572558 backend_data = xcalloc(1, sizeof(*backend_data));2559 transaction->backend_data = backend_data;25602561 /*2562 * Fail if a refname appears more than once in the2563 * transaction. (If we end up splitting up any updates using2564 * split_symref_update() or split_head_update(), those2565 * functions will check that the new updates don't have the2566 * same refname as any existing ones.) Also fail if any of the2567 * updates use REF_ISPRUNING without REF_NODEREF.2568 */2569 for (i = 0; i < transaction->nr; i++) {2570 struct ref_update *update = transaction->updates[i];2571 struct string_list_item *item =2572 string_list_append(&affected_refnames, update->refname);25732574 if ((update->flags & REF_ISPRUNING) &&2575 !(update->flags & REF_NODEREF))2576 BUG("REF_ISPRUNING set without REF_NODEREF");25772578 /*2579 * We store a pointer to update in item->util, but at2580 * the moment we never use the value of this field2581 * except to check whether it is non-NULL.2582 */2583 item->util = update;2584 }2585 string_list_sort(&affected_refnames);2586 if (ref_update_reject_duplicates(&affected_refnames, err)) {2587 ret = TRANSACTION_GENERIC_ERROR;2588 goto cleanup;2589 }25902591 /*2592 * Special hack: If a branch is updated directly and HEAD2593 * points to it (may happen on the remote side of a push2594 * for example) then logically the HEAD reflog should be2595 * updated too.2596 *2597 * A generic solution would require reverse symref lookups,2598 * but finding all symrefs pointing to a given branch would be2599 * rather costly for this rare event (the direct update of a2600 * branch) to be worth it. So let's cheat and check with HEAD2601 * only, which should cover 99% of all usage scenarios (even2602 * 100% of the default ones).2603 *2604 * So if HEAD is a symbolic reference, then record the name of2605 * the reference that it points to. If we see an update of2606 * head_ref within the transaction, then split_head_update()2607 * arranges for the reflog of HEAD to be updated, too.2608 */2609 head_ref = refs_resolve_refdup(ref_store, "HEAD",2610 RESOLVE_REF_NO_RECURSE,2611 NULL, &head_type);26122613 if (head_ref && !(head_type & REF_ISSYMREF)) {2614 FREE_AND_NULL(head_ref);2615 }26162617 /*2618 * Acquire all locks, verify old values if provided, check2619 * that new values are valid, and write new values to the2620 * lockfiles, ready to be activated. Only keep one lockfile2621 * open at a time to avoid running out of file descriptors.2622 * Note that lock_ref_for_update() might append more updates2623 * to the transaction.2624 */2625 for (i = 0; i < transaction->nr; i++) {2626 struct ref_update *update = transaction->updates[i];26272628 ret = lock_ref_for_update(refs, update, transaction,2629 head_ref, &affected_refnames, err);2630 if (ret)2631 goto cleanup;26322633 if (update->flags & REF_DELETING &&2634 !(update->flags & REF_LOG_ONLY) &&2635 !(update->flags & REF_ISPRUNING)) {2636 /*2637 * This reference has to be deleted from2638 * packed-refs if it exists there.2639 */2640 if (!packed_transaction) {2641 packed_transaction = ref_store_transaction_begin(2642 refs->packed_ref_store, err);2643 if (!packed_transaction) {2644 ret = TRANSACTION_GENERIC_ERROR;2645 goto cleanup;2646 }26472648 backend_data->packed_transaction =2649 packed_transaction;2650 }26512652 ref_transaction_add_update(2653 packed_transaction, update->refname,2654 REF_HAVE_NEW | REF_NODEREF,2655 &update->new_oid, NULL,2656 NULL);2657 }2658 }26592660 if (packed_transaction) {2661 if (packed_refs_lock(refs->packed_ref_store, 0, err)) {2662 ret = TRANSACTION_GENERIC_ERROR;2663 goto cleanup;2664 }2665 backend_data->packed_refs_locked = 1;2666 ret = ref_transaction_prepare(packed_transaction, err);2667 }26682669cleanup:2670 free(head_ref);2671 string_list_clear(&affected_refnames, 0);26722673 if (ret)2674 files_transaction_cleanup(refs, transaction);2675 else2676 transaction->state = REF_TRANSACTION_PREPARED;26772678 return ret;2679}26802681static int files_transaction_finish(struct ref_store *ref_store,2682 struct ref_transaction *transaction,2683 struct strbuf *err)2684{2685 struct files_ref_store *refs =2686 files_downcast(ref_store, 0, "ref_transaction_finish");2687 size_t i;2688 int ret = 0;2689 struct strbuf sb = STRBUF_INIT;2690 struct files_transaction_backend_data *backend_data;2691 struct ref_transaction *packed_transaction;269226932694 assert(err);26952696 if (!transaction->nr) {2697 transaction->state = REF_TRANSACTION_CLOSED;2698 return 0;2699 }27002701 backend_data = transaction->backend_data;2702 packed_transaction = backend_data->packed_transaction;27032704 /* Perform updates first so live commits remain referenced */2705 for (i = 0; i < transaction->nr; i++) {2706 struct ref_update *update = transaction->updates[i];2707 struct ref_lock *lock = update->backend_data;27082709 if (update->flags & REF_NEEDS_COMMIT ||2710 update->flags & REF_LOG_ONLY) {2711 if (files_log_ref_write(refs,2712 lock->ref_name,2713 &lock->old_oid,2714 &update->new_oid,2715 update->msg, update->flags,2716 err)) {2717 char *old_msg = strbuf_detach(err, NULL);27182719 strbuf_addf(err, "cannot update the ref '%s': %s",2720 lock->ref_name, old_msg);2721 free(old_msg);2722 unlock_ref(lock);2723 update->backend_data = NULL;2724 ret = TRANSACTION_GENERIC_ERROR;2725 goto cleanup;2726 }2727 }2728 if (update->flags & REF_NEEDS_COMMIT) {2729 clear_loose_ref_cache(refs);2730 if (commit_ref(lock)) {2731 strbuf_addf(err, "couldn't set '%s'", lock->ref_name);2732 unlock_ref(lock);2733 update->backend_data = NULL;2734 ret = TRANSACTION_GENERIC_ERROR;2735 goto cleanup;2736 }2737 }2738 }27392740 /*2741 * Now that updates are safely completed, we can perform2742 * deletes. First delete the reflogs of any references that2743 * will be deleted, since (in the unexpected event of an2744 * error) leaving a reference without a reflog is less bad2745 * than leaving a reflog without a reference (the latter is a2746 * mildly invalid repository state):2747 */2748 for (i = 0; i < transaction->nr; i++) {2749 struct ref_update *update = transaction->updates[i];2750 if (update->flags & REF_DELETING &&2751 !(update->flags & REF_LOG_ONLY) &&2752 !(update->flags & REF_ISPRUNING)) {2753 strbuf_reset(&sb);2754 files_reflog_path(refs, &sb, update->refname);2755 if (!unlink_or_warn(sb.buf))2756 try_remove_empty_parents(refs, update->refname,2757 REMOVE_EMPTY_PARENTS_REFLOG);2758 }2759 }27602761 /*2762 * Perform deletes now that updates are safely completed.2763 *2764 * First delete any packed versions of the references, while2765 * retaining the packed-refs lock:2766 */2767 if (packed_transaction) {2768 ret = ref_transaction_commit(packed_transaction, err);2769 ref_transaction_free(packed_transaction);2770 packed_transaction = NULL;2771 backend_data->packed_transaction = NULL;2772 if (ret)2773 goto cleanup;2774 }27752776 /* Now delete the loose versions of the references: */2777 for (i = 0; i < transaction->nr; i++) {2778 struct ref_update *update = transaction->updates[i];2779 struct ref_lock *lock = update->backend_data;27802781 if (update->flags & REF_DELETING &&2782 !(update->flags & REF_LOG_ONLY)) {2783 if (!(update->type & REF_ISPACKED) ||2784 update->type & REF_ISSYMREF) {2785 /* It is a loose reference. */2786 strbuf_reset(&sb);2787 files_ref_path(refs, &sb, lock->ref_name);2788 if (unlink_or_msg(sb.buf, err)) {2789 ret = TRANSACTION_GENERIC_ERROR;2790 goto cleanup;2791 }2792 update->flags |= REF_DELETED_LOOSE;2793 }2794 }2795 }27962797 clear_loose_ref_cache(refs);27982799cleanup:2800 files_transaction_cleanup(refs, transaction);28012802 for (i = 0; i < transaction->nr; i++) {2803 struct ref_update *update = transaction->updates[i];28042805 if (update->flags & REF_DELETED_LOOSE) {2806 /*2807 * The loose reference was deleted. Delete any2808 * empty parent directories. (Note that this2809 * can only work because we have already2810 * removed the lockfile.)2811 */2812 try_remove_empty_parents(refs, update->refname,2813 REMOVE_EMPTY_PARENTS_REF);2814 }2815 }28162817 strbuf_release(&sb);2818 return ret;2819}28202821static int files_transaction_abort(struct ref_store *ref_store,2822 struct ref_transaction *transaction,2823 struct strbuf *err)2824{2825 struct files_ref_store *refs =2826 files_downcast(ref_store, 0, "ref_transaction_abort");28272828 files_transaction_cleanup(refs, transaction);2829 return 0;2830}28312832static int ref_present(const char *refname,2833 const struct object_id *oid, int flags, void *cb_data)2834{2835 struct string_list *affected_refnames = cb_data;28362837 return string_list_has_string(affected_refnames, refname);2838}28392840static int files_initial_transaction_commit(struct ref_store *ref_store,2841 struct ref_transaction *transaction,2842 struct strbuf *err)2843{2844 struct files_ref_store *refs =2845 files_downcast(ref_store, REF_STORE_WRITE,2846 "initial_ref_transaction_commit");2847 size_t i;2848 int ret = 0;2849 struct string_list affected_refnames = STRING_LIST_INIT_NODUP;2850 struct ref_transaction *packed_transaction = NULL;28512852 assert(err);28532854 if (transaction->state != REF_TRANSACTION_OPEN)2855 die("BUG: commit called for transaction that is not open");28562857 /* Fail if a refname appears more than once in the transaction: */2858 for (i = 0; i < transaction->nr; i++)2859 string_list_append(&affected_refnames,2860 transaction->updates[i]->refname);2861 string_list_sort(&affected_refnames);2862 if (ref_update_reject_duplicates(&affected_refnames, err)) {2863 ret = TRANSACTION_GENERIC_ERROR;2864 goto cleanup;2865 }28662867 /*2868 * It's really undefined to call this function in an active2869 * repository or when there are existing references: we are2870 * only locking and changing packed-refs, so (1) any2871 * simultaneous processes might try to change a reference at2872 * the same time we do, and (2) any existing loose versions of2873 * the references that we are setting would have precedence2874 * over our values. But some remote helpers create the remote2875 * "HEAD" and "master" branches before calling this function,2876 * so here we really only check that none of the references2877 * that we are creating already exists.2878 */2879 if (refs_for_each_rawref(&refs->base, ref_present,2880 &affected_refnames))2881 die("BUG: initial ref transaction called with existing refs");28822883 packed_transaction = ref_store_transaction_begin(refs->packed_ref_store, err);2884 if (!packed_transaction) {2885 ret = TRANSACTION_GENERIC_ERROR;2886 goto cleanup;2887 }28882889 for (i = 0; i < transaction->nr; i++) {2890 struct ref_update *update = transaction->updates[i];28912892 if ((update->flags & REF_HAVE_OLD) &&2893 !is_null_oid(&update->old_oid))2894 die("BUG: initial ref transaction with old_sha1 set");2895 if (refs_verify_refname_available(&refs->base, update->refname,2896 &affected_refnames, NULL,2897 err)) {2898 ret = TRANSACTION_NAME_CONFLICT;2899 goto cleanup;2900 }29012902 /*2903 * Add a reference creation for this reference to the2904 * packed-refs transaction:2905 */2906 ref_transaction_add_update(packed_transaction, update->refname,2907 update->flags & ~REF_HAVE_OLD,2908 &update->new_oid, &update->old_oid,2909 NULL);2910 }29112912 if (packed_refs_lock(refs->packed_ref_store, 0, err)) {2913 ret = TRANSACTION_GENERIC_ERROR;2914 goto cleanup;2915 }29162917 if (initial_ref_transaction_commit(packed_transaction, err)) {2918 ret = TRANSACTION_GENERIC_ERROR;2919 goto cleanup;2920 }29212922cleanup:2923 if (packed_transaction)2924 ref_transaction_free(packed_transaction);2925 packed_refs_unlock(refs->packed_ref_store);2926 transaction->state = REF_TRANSACTION_CLOSED;2927 string_list_clear(&affected_refnames, 0);2928 return ret;2929}29302931struct expire_reflog_cb {2932 unsigned int flags;2933 reflog_expiry_should_prune_fn *should_prune_fn;2934 void *policy_cb;2935 FILE *newlog;2936 struct object_id last_kept_oid;2937};29382939static int expire_reflog_ent(struct object_id *ooid, struct object_id *noid,2940 const char *email, timestamp_t timestamp, int tz,2941 const char *message, void *cb_data)2942{2943 struct expire_reflog_cb *cb = cb_data;2944 struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;29452946 if (cb->flags & EXPIRE_REFLOGS_REWRITE)2947 ooid = &cb->last_kept_oid;29482949 if ((*cb->should_prune_fn)(ooid, noid, email, timestamp, tz,2950 message, policy_cb)) {2951 if (!cb->newlog)2952 printf("would prune %s", message);2953 else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)2954 printf("prune %s", message);2955 } else {2956 if (cb->newlog) {2957 fprintf(cb->newlog, "%s %s %s %"PRItime" %+05d\t%s",2958 oid_to_hex(ooid), oid_to_hex(noid),2959 email, timestamp, tz, message);2960 oidcpy(&cb->last_kept_oid, noid);2961 }2962 if (cb->flags & EXPIRE_REFLOGS_VERBOSE)2963 printf("keep %s", message);2964 }2965 return 0;2966}29672968static int files_reflog_expire(struct ref_store *ref_store,2969 const char *refname, const struct object_id *oid,2970 unsigned int flags,2971 reflog_expiry_prepare_fn prepare_fn,2972 reflog_expiry_should_prune_fn should_prune_fn,2973 reflog_expiry_cleanup_fn cleanup_fn,2974 void *policy_cb_data)2975{2976 struct files_ref_store *refs =2977 files_downcast(ref_store, REF_STORE_WRITE, "reflog_expire");2978 static struct lock_file reflog_lock;2979 struct expire_reflog_cb cb;2980 struct ref_lock *lock;2981 struct strbuf log_file_sb = STRBUF_INIT;2982 char *log_file;2983 int status = 0;2984 int type;2985 struct strbuf err = STRBUF_INIT;29862987 memset(&cb, 0, sizeof(cb));2988 cb.flags = flags;2989 cb.policy_cb = policy_cb_data;2990 cb.should_prune_fn = should_prune_fn;29912992 /*2993 * The reflog file is locked by holding the lock on the2994 * reference itself, plus we might need to update the2995 * reference if --updateref was specified:2996 */2997 lock = lock_ref_oid_basic(refs, refname, oid,2998 NULL, NULL, REF_NODEREF,2999 &type, &err);3000 if (!lock) {3001 error("cannot lock ref '%s': %s", refname, err.buf);3002 strbuf_release(&err);3003 return -1;3004 }3005 if (!refs_reflog_exists(ref_store, refname)) {3006 unlock_ref(lock);3007 return 0;3008 }30093010 files_reflog_path(refs, &log_file_sb, refname);3011 log_file = strbuf_detach(&log_file_sb, NULL);3012 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3013 /*3014 * Even though holding $GIT_DIR/logs/$reflog.lock has3015 * no locking implications, we use the lock_file3016 * machinery here anyway because it does a lot of the3017 * work we need, including cleaning up if the program3018 * exits unexpectedly.3019 */3020 if (hold_lock_file_for_update(&reflog_lock, log_file, 0) < 0) {3021 struct strbuf err = STRBUF_INIT;3022 unable_to_lock_message(log_file, errno, &err);3023 error("%s", err.buf);3024 strbuf_release(&err);3025 goto failure;3026 }3027 cb.newlog = fdopen_lock_file(&reflog_lock, "w");3028 if (!cb.newlog) {3029 error("cannot fdopen %s (%s)",3030 get_lock_file_path(&reflog_lock), strerror(errno));3031 goto failure;3032 }3033 }30343035 (*prepare_fn)(refname, oid, cb.policy_cb);3036 refs_for_each_reflog_ent(ref_store, refname, expire_reflog_ent, &cb);3037 (*cleanup_fn)(cb.policy_cb);30383039 if (!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3040 /*3041 * It doesn't make sense to adjust a reference pointed3042 * to by a symbolic ref based on expiring entries in3043 * the symbolic reference's reflog. Nor can we update3044 * a reference if there are no remaining reflog3045 * entries.3046 */3047 int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&3048 !(type & REF_ISSYMREF) &&3049 !is_null_oid(&cb.last_kept_oid);30503051 if (close_lock_file_gently(&reflog_lock)) {3052 status |= error("couldn't write %s: %s", log_file,3053 strerror(errno));3054 rollback_lock_file(&reflog_lock);3055 } else if (update &&3056 (write_in_full(get_lock_file_fd(&lock->lk),3057 oid_to_hex(&cb.last_kept_oid), GIT_SHA1_HEXSZ) < 0 ||3058 write_str_in_full(get_lock_file_fd(&lock->lk), "\n") < 0 ||3059 close_ref_gently(lock) < 0)) {3060 status |= error("couldn't write %s",3061 get_lock_file_path(&lock->lk));3062 rollback_lock_file(&reflog_lock);3063 } else if (commit_lock_file(&reflog_lock)) {3064 status |= error("unable to write reflog '%s' (%s)",3065 log_file, strerror(errno));3066 } else if (update && commit_ref(lock)) {3067 status |= error("couldn't set %s", lock->ref_name);3068 }3069 }3070 free(log_file);3071 unlock_ref(lock);3072 return status;30733074 failure:3075 rollback_lock_file(&reflog_lock);3076 free(log_file);3077 unlock_ref(lock);3078 return -1;3079}30803081static int files_init_db(struct ref_store *ref_store, struct strbuf *err)3082{3083 struct files_ref_store *refs =3084 files_downcast(ref_store, REF_STORE_WRITE, "init_db");3085 struct strbuf sb = STRBUF_INIT;30863087 /*3088 * Create .git/refs/{heads,tags}3089 */3090 files_ref_path(refs, &sb, "refs/heads");3091 safe_create_dir(sb.buf, 1);30923093 strbuf_reset(&sb);3094 files_ref_path(refs, &sb, "refs/tags");3095 safe_create_dir(sb.buf, 1);30963097 strbuf_release(&sb);3098 return 0;3099}31003101struct ref_storage_be refs_be_files = {3102 NULL,3103 "files",3104 files_ref_store_create,3105 files_init_db,3106 files_transaction_prepare,3107 files_transaction_finish,3108 files_transaction_abort,3109 files_initial_transaction_commit,31103111 files_pack_refs,3112 files_create_symref,3113 files_delete_refs,3114 files_rename_ref,3115 files_copy_ref,31163117 files_ref_iterator_begin,3118 files_read_raw_ref,31193120 files_reflog_iterator_begin,3121 files_for_each_reflog_ent,3122 files_for_each_reflog_ent_reverse,3123 files_reflog_exists,3124 files_create_reflog,3125 files_delete_reflog,3126 files_reflog_expire3127};