1#include"../cache.h" 2#include"../refs.h" 3#include"refs-internal.h" 4#include"ref-cache.h" 5#include"packed-backend.h" 6#include"../iterator.h" 7#include"../dir-iterator.h" 8#include"../lockfile.h" 9#include"../object.h" 10#include"../dir.h" 11 12struct ref_lock { 13char*ref_name; 14struct lock_file *lk; 15struct object_id old_oid; 16}; 17 18/* 19 * Future: need to be in "struct repository" 20 * when doing a full libification. 21 */ 22struct files_ref_store { 23struct ref_store base; 24unsigned int store_flags; 25 26char*gitdir; 27char*gitcommondir; 28 29struct ref_cache *loose; 30 31struct ref_store *packed_ref_store; 32}; 33 34static voidclear_loose_ref_cache(struct files_ref_store *refs) 35{ 36if(refs->loose) { 37free_ref_cache(refs->loose); 38 refs->loose = NULL; 39} 40} 41 42/* 43 * Create a new submodule ref cache and add it to the internal 44 * set of caches. 45 */ 46static struct ref_store *files_ref_store_create(const char*gitdir, 47unsigned int flags) 48{ 49struct files_ref_store *refs =xcalloc(1,sizeof(*refs)); 50struct ref_store *ref_store = (struct ref_store *)refs; 51struct strbuf sb = STRBUF_INIT; 52 53base_ref_store_init(ref_store, &refs_be_files); 54 refs->store_flags = flags; 55 56 refs->gitdir =xstrdup(gitdir); 57get_common_dir_noenv(&sb, gitdir); 58 refs->gitcommondir =strbuf_detach(&sb, NULL); 59strbuf_addf(&sb,"%s/packed-refs", refs->gitcommondir); 60 refs->packed_ref_store =packed_ref_store_create(sb.buf, flags); 61strbuf_release(&sb); 62 63return ref_store; 64} 65 66/* 67 * Die if refs is not the main ref store. caller is used in any 68 * necessary error messages. 69 */ 70static voidfiles_assert_main_repository(struct files_ref_store *refs, 71const char*caller) 72{ 73if(refs->store_flags & REF_STORE_MAIN) 74return; 75 76die("BUG: operation%sonly allowed for main ref store", caller); 77} 78 79/* 80 * Downcast ref_store to files_ref_store. Die if ref_store is not a 81 * files_ref_store. required_flags is compared with ref_store's 82 * store_flags to ensure the ref_store has all required capabilities. 83 * "caller" is used in any necessary error messages. 84 */ 85static struct files_ref_store *files_downcast(struct ref_store *ref_store, 86unsigned int required_flags, 87const char*caller) 88{ 89struct files_ref_store *refs; 90 91if(ref_store->be != &refs_be_files) 92die("BUG: ref_store is type\"%s\"not\"files\"in%s", 93 ref_store->be->name, caller); 94 95 refs = (struct files_ref_store *)ref_store; 96 97if((refs->store_flags & required_flags) != required_flags) 98die("BUG: operation%srequires abilities 0x%x, but only have 0x%x", 99 caller, required_flags, refs->store_flags); 100 101return refs; 102} 103 104static voidfiles_reflog_path(struct files_ref_store *refs, 105struct strbuf *sb, 106const char*refname) 107{ 108if(!refname) { 109/* 110 * FIXME: of course this is wrong in multi worktree 111 * setting. To be fixed real soon. 112 */ 113strbuf_addf(sb,"%s/logs", refs->gitcommondir); 114return; 115} 116 117switch(ref_type(refname)) { 118case REF_TYPE_PER_WORKTREE: 119case REF_TYPE_PSEUDOREF: 120strbuf_addf(sb,"%s/logs/%s", refs->gitdir, refname); 121break; 122case REF_TYPE_NORMAL: 123strbuf_addf(sb,"%s/logs/%s", refs->gitcommondir, refname); 124break; 125default: 126die("BUG: unknown ref type%dof ref%s", 127ref_type(refname), refname); 128} 129} 130 131static voidfiles_ref_path(struct files_ref_store *refs, 132struct strbuf *sb, 133const char*refname) 134{ 135switch(ref_type(refname)) { 136case REF_TYPE_PER_WORKTREE: 137case REF_TYPE_PSEUDOREF: 138strbuf_addf(sb,"%s/%s", refs->gitdir, refname); 139break; 140case REF_TYPE_NORMAL: 141strbuf_addf(sb,"%s/%s", refs->gitcommondir, refname); 142break; 143default: 144die("BUG: unknown ref type%dof ref%s", 145ref_type(refname), refname); 146} 147} 148 149/* 150 * Read the loose references from the namespace dirname into dir 151 * (without recursing). dirname must end with '/'. dir must be the 152 * directory entry corresponding to dirname. 153 */ 154static voidloose_fill_ref_dir(struct ref_store *ref_store, 155struct ref_dir *dir,const char*dirname) 156{ 157struct files_ref_store *refs = 158files_downcast(ref_store, REF_STORE_READ,"fill_ref_dir"); 159DIR*d; 160struct dirent *de; 161int dirnamelen =strlen(dirname); 162struct strbuf refname; 163struct strbuf path = STRBUF_INIT; 164size_t path_baselen; 165 166files_ref_path(refs, &path, dirname); 167 path_baselen = path.len; 168 169 d =opendir(path.buf); 170if(!d) { 171strbuf_release(&path); 172return; 173} 174 175strbuf_init(&refname, dirnamelen +257); 176strbuf_add(&refname, dirname, dirnamelen); 177 178while((de =readdir(d)) != NULL) { 179struct object_id oid; 180struct stat st; 181int flag; 182 183if(de->d_name[0] =='.') 184continue; 185if(ends_with(de->d_name,".lock")) 186continue; 187strbuf_addstr(&refname, de->d_name); 188strbuf_addstr(&path, de->d_name); 189if(stat(path.buf, &st) <0) { 190;/* silently ignore */ 191}else if(S_ISDIR(st.st_mode)) { 192strbuf_addch(&refname,'/'); 193add_entry_to_dir(dir, 194create_dir_entry(dir->cache, refname.buf, 195 refname.len,1)); 196}else{ 197if(!refs_resolve_ref_unsafe(&refs->base, 198 refname.buf, 199 RESOLVE_REF_READING, 200 oid.hash, &flag)) { 201oidclr(&oid); 202 flag |= REF_ISBROKEN; 203}else if(is_null_oid(&oid)) { 204/* 205 * It is so astronomically unlikely 206 * that NULL_SHA1 is the SHA-1 of an 207 * actual object that we consider its 208 * appearance in a loose reference 209 * file to be repo corruption 210 * (probably due to a software bug). 211 */ 212 flag |= REF_ISBROKEN; 213} 214 215if(check_refname_format(refname.buf, 216 REFNAME_ALLOW_ONELEVEL)) { 217if(!refname_is_safe(refname.buf)) 218die("loose refname is dangerous:%s", refname.buf); 219oidclr(&oid); 220 flag |= REF_BAD_NAME | REF_ISBROKEN; 221} 222add_entry_to_dir(dir, 223create_ref_entry(refname.buf, &oid, flag)); 224} 225strbuf_setlen(&refname, dirnamelen); 226strbuf_setlen(&path, path_baselen); 227} 228strbuf_release(&refname); 229strbuf_release(&path); 230closedir(d); 231 232/* 233 * Manually add refs/bisect, which, being per-worktree, might 234 * not appear in the directory listing for refs/ in the main 235 * repo. 236 */ 237if(!strcmp(dirname,"refs/")) { 238int pos =search_ref_dir(dir,"refs/bisect/",12); 239 240if(pos <0) { 241struct ref_entry *child_entry =create_dir_entry( 242 dir->cache,"refs/bisect/",12,1); 243add_entry_to_dir(dir, child_entry); 244} 245} 246} 247 248static struct ref_cache *get_loose_ref_cache(struct files_ref_store *refs) 249{ 250if(!refs->loose) { 251/* 252 * Mark the top-level directory complete because we 253 * are about to read the only subdirectory that can 254 * hold references: 255 */ 256 refs->loose =create_ref_cache(&refs->base, loose_fill_ref_dir); 257 258/* We're going to fill the top level ourselves: */ 259 refs->loose->root->flag &= ~REF_INCOMPLETE; 260 261/* 262 * Add an incomplete entry for "refs/" (to be filled 263 * lazily): 264 */ 265add_entry_to_dir(get_ref_dir(refs->loose->root), 266create_dir_entry(refs->loose,"refs/",5,1)); 267} 268return refs->loose; 269} 270 271static intfiles_read_raw_ref(struct ref_store *ref_store, 272const char*refname,unsigned char*sha1, 273struct strbuf *referent,unsigned int*type) 274{ 275struct files_ref_store *refs = 276files_downcast(ref_store, REF_STORE_READ,"read_raw_ref"); 277struct strbuf sb_contents = STRBUF_INIT; 278struct strbuf sb_path = STRBUF_INIT; 279const char*path; 280const char*buf; 281struct stat st; 282int fd; 283int ret = -1; 284int save_errno; 285int remaining_retries =3; 286 287*type =0; 288strbuf_reset(&sb_path); 289 290files_ref_path(refs, &sb_path, refname); 291 292 path = sb_path.buf; 293 294stat_ref: 295/* 296 * We might have to loop back here to avoid a race 297 * condition: first we lstat() the file, then we try 298 * to read it as a link or as a file. But if somebody 299 * changes the type of the file (file <-> directory 300 * <-> symlink) between the lstat() and reading, then 301 * we don't want to report that as an error but rather 302 * try again starting with the lstat(). 303 * 304 * We'll keep a count of the retries, though, just to avoid 305 * any confusing situation sending us into an infinite loop. 306 */ 307 308if(remaining_retries-- <=0) 309goto out; 310 311if(lstat(path, &st) <0) { 312if(errno != ENOENT) 313goto out; 314if(refs_read_raw_ref(refs->packed_ref_store, refname, 315 sha1, referent, type)) { 316 errno = ENOENT; 317goto out; 318} 319 ret =0; 320goto out; 321} 322 323/* Follow "normalized" - ie "refs/.." symlinks by hand */ 324if(S_ISLNK(st.st_mode)) { 325strbuf_reset(&sb_contents); 326if(strbuf_readlink(&sb_contents, path,0) <0) { 327if(errno == ENOENT || errno == EINVAL) 328/* inconsistent with lstat; retry */ 329goto stat_ref; 330else 331goto out; 332} 333if(starts_with(sb_contents.buf,"refs/") && 334!check_refname_format(sb_contents.buf,0)) { 335strbuf_swap(&sb_contents, referent); 336*type |= REF_ISSYMREF; 337 ret =0; 338goto out; 339} 340/* 341 * It doesn't look like a refname; fall through to just 342 * treating it like a non-symlink, and reading whatever it 343 * points to. 344 */ 345} 346 347/* Is it a directory? */ 348if(S_ISDIR(st.st_mode)) { 349/* 350 * Even though there is a directory where the loose 351 * ref is supposed to be, there could still be a 352 * packed ref: 353 */ 354if(refs_read_raw_ref(refs->packed_ref_store, refname, 355 sha1, referent, type)) { 356 errno = EISDIR; 357goto out; 358} 359 ret =0; 360goto out; 361} 362 363/* 364 * Anything else, just open it and try to use it as 365 * a ref 366 */ 367 fd =open(path, O_RDONLY); 368if(fd <0) { 369if(errno == ENOENT && !S_ISLNK(st.st_mode)) 370/* inconsistent with lstat; retry */ 371goto stat_ref; 372else 373goto out; 374} 375strbuf_reset(&sb_contents); 376if(strbuf_read(&sb_contents, fd,256) <0) { 377int save_errno = errno; 378close(fd); 379 errno = save_errno; 380goto out; 381} 382close(fd); 383strbuf_rtrim(&sb_contents); 384 buf = sb_contents.buf; 385if(starts_with(buf,"ref:")) { 386 buf +=4; 387while(isspace(*buf)) 388 buf++; 389 390strbuf_reset(referent); 391strbuf_addstr(referent, buf); 392*type |= REF_ISSYMREF; 393 ret =0; 394goto out; 395} 396 397/* 398 * Please note that FETCH_HEAD has additional 399 * data after the sha. 400 */ 401if(get_sha1_hex(buf, sha1) || 402(buf[40] !='\0'&& !isspace(buf[40]))) { 403*type |= REF_ISBROKEN; 404 errno = EINVAL; 405goto out; 406} 407 408 ret =0; 409 410out: 411 save_errno = errno; 412strbuf_release(&sb_path); 413strbuf_release(&sb_contents); 414 errno = save_errno; 415return ret; 416} 417 418static voidunlock_ref(struct ref_lock *lock) 419{ 420/* Do not free lock->lk -- atexit() still looks at them */ 421if(lock->lk) 422rollback_lock_file(lock->lk); 423free(lock->ref_name); 424free(lock); 425} 426 427/* 428 * Lock refname, without following symrefs, and set *lock_p to point 429 * at a newly-allocated lock object. Fill in lock->old_oid, referent, 430 * and type similarly to read_raw_ref(). 431 * 432 * The caller must verify that refname is a "safe" reference name (in 433 * the sense of refname_is_safe()) before calling this function. 434 * 435 * If the reference doesn't already exist, verify that refname doesn't 436 * have a D/F conflict with any existing references. extras and skip 437 * are passed to refs_verify_refname_available() for this check. 438 * 439 * If mustexist is not set and the reference is not found or is 440 * broken, lock the reference anyway but clear sha1. 441 * 442 * Return 0 on success. On failure, write an error message to err and 443 * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR. 444 * 445 * Implementation note: This function is basically 446 * 447 * lock reference 448 * read_raw_ref() 449 * 450 * but it includes a lot more code to 451 * - Deal with possible races with other processes 452 * - Avoid calling refs_verify_refname_available() when it can be 453 * avoided, namely if we were successfully able to read the ref 454 * - Generate informative error messages in the case of failure 455 */ 456static intlock_raw_ref(struct files_ref_store *refs, 457const char*refname,int mustexist, 458const struct string_list *extras, 459const struct string_list *skip, 460struct ref_lock **lock_p, 461struct strbuf *referent, 462unsigned int*type, 463struct strbuf *err) 464{ 465struct ref_lock *lock; 466struct strbuf ref_file = STRBUF_INIT; 467int attempts_remaining =3; 468int ret = TRANSACTION_GENERIC_ERROR; 469 470assert(err); 471files_assert_main_repository(refs,"lock_raw_ref"); 472 473*type =0; 474 475/* First lock the file so it can't change out from under us. */ 476 477*lock_p = lock =xcalloc(1,sizeof(*lock)); 478 479 lock->ref_name =xstrdup(refname); 480files_ref_path(refs, &ref_file, refname); 481 482retry: 483switch(safe_create_leading_directories(ref_file.buf)) { 484case SCLD_OK: 485break;/* success */ 486case SCLD_EXISTS: 487/* 488 * Suppose refname is "refs/foo/bar". We just failed 489 * to create the containing directory, "refs/foo", 490 * because there was a non-directory in the way. This 491 * indicates a D/F conflict, probably because of 492 * another reference such as "refs/foo". There is no 493 * reason to expect this error to be transitory. 494 */ 495if(refs_verify_refname_available(&refs->base, refname, 496 extras, skip, err)) { 497if(mustexist) { 498/* 499 * To the user the relevant error is 500 * that the "mustexist" reference is 501 * missing: 502 */ 503strbuf_reset(err); 504strbuf_addf(err,"unable to resolve reference '%s'", 505 refname); 506}else{ 507/* 508 * The error message set by 509 * refs_verify_refname_available() is 510 * OK. 511 */ 512 ret = TRANSACTION_NAME_CONFLICT; 513} 514}else{ 515/* 516 * The file that is in the way isn't a loose 517 * reference. Report it as a low-level 518 * failure. 519 */ 520strbuf_addf(err,"unable to create lock file%s.lock; " 521"non-directory in the way", 522 ref_file.buf); 523} 524goto error_return; 525case SCLD_VANISHED: 526/* Maybe another process was tidying up. Try again. */ 527if(--attempts_remaining >0) 528goto retry; 529/* fall through */ 530default: 531strbuf_addf(err,"unable to create directory for%s", 532 ref_file.buf); 533goto error_return; 534} 535 536if(!lock->lk) 537 lock->lk =xcalloc(1,sizeof(struct lock_file)); 538 539if(hold_lock_file_for_update(lock->lk, ref_file.buf, LOCK_NO_DEREF) <0) { 540if(errno == ENOENT && --attempts_remaining >0) { 541/* 542 * Maybe somebody just deleted one of the 543 * directories leading to ref_file. Try 544 * again: 545 */ 546goto retry; 547}else{ 548unable_to_lock_message(ref_file.buf, errno, err); 549goto error_return; 550} 551} 552 553/* 554 * Now we hold the lock and can read the reference without 555 * fear that its value will change. 556 */ 557 558if(files_read_raw_ref(&refs->base, refname, 559 lock->old_oid.hash, referent, type)) { 560if(errno == ENOENT) { 561if(mustexist) { 562/* Garden variety missing reference. */ 563strbuf_addf(err,"unable to resolve reference '%s'", 564 refname); 565goto error_return; 566}else{ 567/* 568 * Reference is missing, but that's OK. We 569 * know that there is not a conflict with 570 * another loose reference because 571 * (supposing that we are trying to lock 572 * reference "refs/foo/bar"): 573 * 574 * - We were successfully able to create 575 * the lockfile refs/foo/bar.lock, so we 576 * know there cannot be a loose reference 577 * named "refs/foo". 578 * 579 * - We got ENOENT and not EISDIR, so we 580 * know that there cannot be a loose 581 * reference named "refs/foo/bar/baz". 582 */ 583} 584}else if(errno == EISDIR) { 585/* 586 * There is a directory in the way. It might have 587 * contained references that have been deleted. If 588 * we don't require that the reference already 589 * exists, try to remove the directory so that it 590 * doesn't cause trouble when we want to rename the 591 * lockfile into place later. 592 */ 593if(mustexist) { 594/* Garden variety missing reference. */ 595strbuf_addf(err,"unable to resolve reference '%s'", 596 refname); 597goto error_return; 598}else if(remove_dir_recursively(&ref_file, 599 REMOVE_DIR_EMPTY_ONLY)) { 600if(refs_verify_refname_available( 601&refs->base, refname, 602 extras, skip, err)) { 603/* 604 * The error message set by 605 * verify_refname_available() is OK. 606 */ 607 ret = TRANSACTION_NAME_CONFLICT; 608goto error_return; 609}else{ 610/* 611 * We can't delete the directory, 612 * but we also don't know of any 613 * references that it should 614 * contain. 615 */ 616strbuf_addf(err,"there is a non-empty directory '%s' " 617"blocking reference '%s'", 618 ref_file.buf, refname); 619goto error_return; 620} 621} 622}else if(errno == EINVAL && (*type & REF_ISBROKEN)) { 623strbuf_addf(err,"unable to resolve reference '%s': " 624"reference broken", refname); 625goto error_return; 626}else{ 627strbuf_addf(err,"unable to resolve reference '%s':%s", 628 refname,strerror(errno)); 629goto error_return; 630} 631 632/* 633 * If the ref did not exist and we are creating it, 634 * make sure there is no existing ref that conflicts 635 * with refname: 636 */ 637if(refs_verify_refname_available( 638&refs->base, refname, 639 extras, skip, err)) 640goto error_return; 641} 642 643 ret =0; 644goto out; 645 646error_return: 647unlock_ref(lock); 648*lock_p = NULL; 649 650out: 651strbuf_release(&ref_file); 652return ret; 653} 654 655static intfiles_peel_ref(struct ref_store *ref_store, 656const char*refname,unsigned char*sha1) 657{ 658struct files_ref_store *refs = 659files_downcast(ref_store, REF_STORE_READ | REF_STORE_ODB, 660"peel_ref"); 661int flag; 662unsigned char base[20]; 663 664if(current_ref_iter && current_ref_iter->refname == refname) { 665struct object_id peeled; 666 667if(ref_iterator_peel(current_ref_iter, &peeled)) 668return-1; 669hashcpy(sha1, peeled.hash); 670return0; 671} 672 673if(refs_read_ref_full(ref_store, refname, 674 RESOLVE_REF_READING, base, &flag)) 675return-1; 676 677/* 678 * If the reference is packed, read its ref_entry from the 679 * cache in the hope that we already know its peeled value. 680 * We only try this optimization on packed references because 681 * (a) forcing the filling of the loose reference cache could 682 * be expensive and (b) loose references anyway usually do not 683 * have REF_KNOWS_PEELED. 684 */ 685if(flag & REF_ISPACKED && 686!refs_peel_ref(refs->packed_ref_store, refname, sha1)) 687return0; 688 689returnpeel_object(base, sha1); 690} 691 692struct files_ref_iterator { 693struct ref_iterator base; 694 695struct ref_iterator *iter0; 696unsigned int flags; 697}; 698 699static intfiles_ref_iterator_advance(struct ref_iterator *ref_iterator) 700{ 701struct files_ref_iterator *iter = 702(struct files_ref_iterator *)ref_iterator; 703int ok; 704 705while((ok =ref_iterator_advance(iter->iter0)) == ITER_OK) { 706if(iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY && 707ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE) 708continue; 709 710if(!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 711!ref_resolves_to_object(iter->iter0->refname, 712 iter->iter0->oid, 713 iter->iter0->flags)) 714continue; 715 716 iter->base.refname = iter->iter0->refname; 717 iter->base.oid = iter->iter0->oid; 718 iter->base.flags = iter->iter0->flags; 719return ITER_OK; 720} 721 722 iter->iter0 = NULL; 723if(ref_iterator_abort(ref_iterator) != ITER_DONE) 724 ok = ITER_ERROR; 725 726return ok; 727} 728 729static intfiles_ref_iterator_peel(struct ref_iterator *ref_iterator, 730struct object_id *peeled) 731{ 732struct files_ref_iterator *iter = 733(struct files_ref_iterator *)ref_iterator; 734 735returnref_iterator_peel(iter->iter0, peeled); 736} 737 738static intfiles_ref_iterator_abort(struct ref_iterator *ref_iterator) 739{ 740struct files_ref_iterator *iter = 741(struct files_ref_iterator *)ref_iterator; 742int ok = ITER_DONE; 743 744if(iter->iter0) 745 ok =ref_iterator_abort(iter->iter0); 746 747base_ref_iterator_free(ref_iterator); 748return ok; 749} 750 751static struct ref_iterator_vtable files_ref_iterator_vtable = { 752 files_ref_iterator_advance, 753 files_ref_iterator_peel, 754 files_ref_iterator_abort 755}; 756 757static struct ref_iterator *files_ref_iterator_begin( 758struct ref_store *ref_store, 759const char*prefix,unsigned int flags) 760{ 761struct files_ref_store *refs; 762struct ref_iterator *loose_iter, *packed_iter; 763struct files_ref_iterator *iter; 764struct ref_iterator *ref_iterator; 765unsigned int required_flags = REF_STORE_READ; 766 767if(!(flags & DO_FOR_EACH_INCLUDE_BROKEN)) 768 required_flags |= REF_STORE_ODB; 769 770 refs =files_downcast(ref_store, required_flags,"ref_iterator_begin"); 771 772 iter =xcalloc(1,sizeof(*iter)); 773 ref_iterator = &iter->base; 774base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable); 775 776/* 777 * We must make sure that all loose refs are read before 778 * accessing the packed-refs file; this avoids a race 779 * condition if loose refs are migrated to the packed-refs 780 * file by a simultaneous process, but our in-memory view is 781 * from before the migration. We ensure this as follows: 782 * First, we call start the loose refs iteration with its 783 * `prime_ref` argument set to true. This causes the loose 784 * references in the subtree to be pre-read into the cache. 785 * (If they've already been read, that's OK; we only need to 786 * guarantee that they're read before the packed refs, not 787 * *how much* before.) After that, we call 788 * packed_ref_iterator_begin(), which internally checks 789 * whether the packed-ref cache is up to date with what is on 790 * disk, and re-reads it if not. 791 */ 792 793 loose_iter =cache_ref_iterator_begin(get_loose_ref_cache(refs), 794 prefix,1); 795 796/* 797 * The packed-refs file might contain broken references, for 798 * example an old version of a reference that points at an 799 * object that has since been garbage-collected. This is OK as 800 * long as there is a corresponding loose reference that 801 * overrides it, and we don't want to emit an error message in 802 * this case. So ask the packed_ref_store for all of its 803 * references, and (if needed) do our own check for broken 804 * ones in files_ref_iterator_advance(), after we have merged 805 * the packed and loose references. 806 */ 807 packed_iter =refs_ref_iterator_begin( 808 refs->packed_ref_store, prefix,0, 809 DO_FOR_EACH_INCLUDE_BROKEN); 810 811 iter->iter0 =overlay_ref_iterator_begin(loose_iter, packed_iter); 812 iter->flags = flags; 813 814return ref_iterator; 815} 816 817/* 818 * Verify that the reference locked by lock has the value old_sha1. 819 * Fail if the reference doesn't exist and mustexist is set. Return 0 820 * on success. On error, write an error message to err, set errno, and 821 * return a negative value. 822 */ 823static intverify_lock(struct ref_store *ref_store,struct ref_lock *lock, 824const unsigned char*old_sha1,int mustexist, 825struct strbuf *err) 826{ 827assert(err); 828 829if(refs_read_ref_full(ref_store, lock->ref_name, 830 mustexist ? RESOLVE_REF_READING :0, 831 lock->old_oid.hash, NULL)) { 832if(old_sha1) { 833int save_errno = errno; 834strbuf_addf(err,"can't verify ref '%s'", lock->ref_name); 835 errno = save_errno; 836return-1; 837}else{ 838oidclr(&lock->old_oid); 839return0; 840} 841} 842if(old_sha1 &&hashcmp(lock->old_oid.hash, old_sha1)) { 843strbuf_addf(err,"ref '%s' is at%sbut expected%s", 844 lock->ref_name, 845oid_to_hex(&lock->old_oid), 846sha1_to_hex(old_sha1)); 847 errno = EBUSY; 848return-1; 849} 850return0; 851} 852 853static intremove_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 */ 860returnremove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY); 861} 862 863static intcreate_reflock(const char*path,void*cb) 864{ 865struct lock_file *lk = cb; 866 867returnhold_lock_file_for_update(lk, path, LOCK_NO_DEREF) <0? -1:0; 868} 869 870/* 871 * Locks a ref returning the lock on success and NULL on failure. 872 * On failure errno is set to something meaningful. 873 */ 874static struct ref_lock *lock_ref_sha1_basic(struct files_ref_store *refs, 875const char*refname, 876const unsigned char*old_sha1, 877const struct string_list *extras, 878const struct string_list *skip, 879unsigned int flags,int*type, 880struct strbuf *err) 881{ 882struct strbuf ref_file = STRBUF_INIT; 883struct ref_lock *lock; 884int last_errno =0; 885int mustexist = (old_sha1 && !is_null_sha1(old_sha1)); 886int resolve_flags = RESOLVE_REF_NO_RECURSE; 887int resolved; 888 889files_assert_main_repository(refs,"lock_ref_sha1_basic"); 890assert(err); 891 892 lock =xcalloc(1,sizeof(struct ref_lock)); 893 894if(mustexist) 895 resolve_flags |= RESOLVE_REF_READING; 896if(flags & REF_DELETING) 897 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME; 898 899files_ref_path(refs, &ref_file, refname); 900 resolved = !!refs_resolve_ref_unsafe(&refs->base, 901 refname, resolve_flags, 902 lock->old_oid.hash, type); 903if(!resolved && errno == EISDIR) { 904/* 905 * we are trying to lock foo but we used to 906 * have foo/bar which now does not exist; 907 * it is normal for the empty directory 'foo' 908 * to remain. 909 */ 910if(remove_empty_directories(&ref_file)) { 911 last_errno = errno; 912if(!refs_verify_refname_available( 913&refs->base, 914 refname, extras, skip, err)) 915strbuf_addf(err,"there are still refs under '%s'", 916 refname); 917goto error_return; 918} 919 resolved = !!refs_resolve_ref_unsafe(&refs->base, 920 refname, resolve_flags, 921 lock->old_oid.hash, type); 922} 923if(!resolved) { 924 last_errno = errno; 925if(last_errno != ENOTDIR || 926!refs_verify_refname_available(&refs->base, refname, 927 extras, skip, err)) 928strbuf_addf(err,"unable to resolve reference '%s':%s", 929 refname,strerror(last_errno)); 930 931goto error_return; 932} 933 934/* 935 * If the ref did not exist and we are creating it, make sure 936 * there is no existing packed ref whose name begins with our 937 * refname, nor a packed ref whose name is a proper prefix of 938 * our refname. 939 */ 940if(is_null_oid(&lock->old_oid) && 941refs_verify_refname_available(&refs->base, refname, 942 extras, skip, err)) { 943 last_errno = ENOTDIR; 944goto error_return; 945} 946 947 lock->lk =xcalloc(1,sizeof(struct lock_file)); 948 949 lock->ref_name =xstrdup(refname); 950 951if(raceproof_create_file(ref_file.buf, create_reflock, lock->lk)) { 952 last_errno = errno; 953unable_to_lock_message(ref_file.buf, errno, err); 954goto error_return; 955} 956 957if(verify_lock(&refs->base, lock, old_sha1, mustexist, err)) { 958 last_errno = errno; 959goto error_return; 960} 961goto out; 962 963 error_return: 964unlock_ref(lock); 965 lock = NULL; 966 967 out: 968strbuf_release(&ref_file); 969 errno = last_errno; 970return lock; 971} 972 973struct ref_to_prune { 974struct ref_to_prune *next; 975unsigned char sha1[20]; 976char 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 voidtry_remove_empty_parents(struct files_ref_store *refs, 991const char*refname, 992unsigned int flags) 993{ 994struct strbuf buf = STRBUF_INIT; 995struct strbuf sb = STRBUF_INIT; 996char*p, *q; 997int i; 998 999strbuf_addstr(&buf, refname);1000 p = buf.buf;1001for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */1002while(*p && *p !='/')1003 p++;1004/* tolerate duplicate slashes; see check_refname_format() */1005while(*p =='/')1006 p++;1007}1008 q = buf.buf + buf.len;1009while(flags & (REMOVE_EMPTY_PARENTS_REF | REMOVE_EMPTY_PARENTS_REFLOG)) {1010while(q > p && *q !='/')1011 q--;1012while(q > p && *(q-1) =='/')1013 q--;1014if(q == p)1015break;1016strbuf_setlen(&buf, q - buf.buf);10171018strbuf_reset(&sb);1019files_ref_path(refs, &sb, buf.buf);1020if((flags & REMOVE_EMPTY_PARENTS_REF) &&rmdir(sb.buf))1021 flags &= ~REMOVE_EMPTY_PARENTS_REF;10221023strbuf_reset(&sb);1024files_reflog_path(refs, &sb, buf.buf);1025if((flags & REMOVE_EMPTY_PARENTS_REFLOG) &&rmdir(sb.buf))1026 flags &= ~REMOVE_EMPTY_PARENTS_REFLOG;1027}1028strbuf_release(&buf);1029strbuf_release(&sb);1030}10311032/* make sure nobody touched the ref, and unlink */1033static voidprune_ref(struct files_ref_store *refs,struct ref_to_prune *r)1034{1035struct ref_transaction *transaction;1036struct strbuf err = STRBUF_INIT;10371038if(check_refname_format(r->name,0))1039return;10401041 transaction =ref_store_transaction_begin(&refs->base, &err);1042if(!transaction ||1043ref_transaction_delete(transaction, r->name, r->sha1,1044 REF_ISPRUNING | REF_NODEREF, NULL, &err) ||1045ref_transaction_commit(transaction, &err)) {1046ref_transaction_free(transaction);1047error("%s", err.buf);1048strbuf_release(&err);1049return;1050}1051ref_transaction_free(transaction);1052strbuf_release(&err);1053}10541055static voidprune_refs(struct files_ref_store *refs,struct ref_to_prune *r)1056{1057while(r) {1058prune_ref(refs, r);1059 r = r->next;1060}1061}10621063/*1064 * Return true if the specified reference should be packed.1065 */1066static intshould_pack_ref(const char*refname,1067const struct object_id *oid,unsigned int ref_flags,1068unsigned int pack_flags)1069{1070/* Do not pack per-worktree refs: */1071if(ref_type(refname) != REF_TYPE_NORMAL)1072return0;10731074/* Do not pack non-tags unless PACK_REFS_ALL is set: */1075if(!(pack_flags & PACK_REFS_ALL) && !starts_with(refname,"refs/tags/"))1076return0;10771078/* Do not pack symbolic refs: */1079if(ref_flags & REF_ISSYMREF)1080return0;10811082/* Do not pack broken refs: */1083if(!ref_resolves_to_object(refname, oid, ref_flags))1084return0;10851086return1;1087}10881089static intfiles_pack_refs(struct ref_store *ref_store,unsigned int flags)1090{1091struct files_ref_store *refs =1092files_downcast(ref_store, REF_STORE_WRITE | REF_STORE_ODB,1093"pack_refs");1094struct ref_iterator *iter;1095int ok;1096struct ref_to_prune *refs_to_prune = NULL;1097struct strbuf err = STRBUF_INIT;10981099packed_refs_lock(refs->packed_ref_store, LOCK_DIE_ON_ERROR, &err);11001101 iter =cache_ref_iterator_begin(get_loose_ref_cache(refs), NULL,0);1102while((ok =ref_iterator_advance(iter)) == ITER_OK) {1103/*1104 * If the loose reference can be packed, add an entry1105 * in the packed ref cache. If the reference should be1106 * pruned, also add it to refs_to_prune.1107 */1108if(!should_pack_ref(iter->refname, iter->oid, iter->flags,1109 flags))1110continue;11111112/*1113 * Create an entry in the packed-refs cache equivalent1114 * to the one from the loose ref cache, except that1115 * we don't copy the peeled status, because we want it1116 * to be re-peeled.1117 */1118add_packed_ref(refs->packed_ref_store, iter->refname, iter->oid);11191120/* Schedule the loose reference for pruning if requested. */1121if((flags & PACK_REFS_PRUNE)) {1122struct ref_to_prune *n;1123FLEX_ALLOC_STR(n, name, iter->refname);1124hashcpy(n->sha1, iter->oid->hash);1125 n->next = refs_to_prune;1126 refs_to_prune = n;1127}1128}1129if(ok != ITER_DONE)1130die("error while iterating over references");11311132if(commit_packed_refs(refs->packed_ref_store, &err))1133die("unable to overwrite old ref-pack file:%s", err.buf);1134packed_refs_unlock(refs->packed_ref_store);11351136prune_refs(refs, refs_to_prune);1137strbuf_release(&err);1138return0;1139}11401141static intfiles_delete_refs(struct ref_store *ref_store,const char*msg,1142struct string_list *refnames,unsigned int flags)1143{1144struct files_ref_store *refs =1145files_downcast(ref_store, REF_STORE_WRITE,"delete_refs");1146struct strbuf err = STRBUF_INIT;1147int i, result =0;11481149if(!refnames->nr)1150return0;11511152 result =repack_without_refs(refs->packed_ref_store, refnames, &err);1153if(result) {1154/*1155 * If we failed to rewrite the packed-refs file, then1156 * it is unsafe to try to remove loose refs, because1157 * doing so might expose an obsolete packed value for1158 * a reference that might even point at an object that1159 * has been garbage collected.1160 */1161if(refnames->nr ==1)1162error(_("could not delete reference%s:%s"),1163 refnames->items[0].string, err.buf);1164else1165error(_("could not delete references:%s"), err.buf);11661167goto out;1168}11691170for(i =0; i < refnames->nr; i++) {1171const char*refname = refnames->items[i].string;11721173if(refs_delete_ref(&refs->base, msg, refname, NULL, flags))1174 result |=error(_("could not remove reference%s"), refname);1175}11761177out:1178strbuf_release(&err);1179return result;1180}11811182/*1183 * People using contrib's git-new-workdir have .git/logs/refs ->1184 * /some/other/path/.git/logs/refs, and that may live on another device.1185 *1186 * IOW, to avoid cross device rename errors, the temporary renamed log must1187 * live into logs/refs.1188 */1189#define TMP_RENAMED_LOG"refs/.tmp-renamed-log"11901191struct rename_cb {1192const char*tmp_renamed_log;1193int true_errno;1194};11951196static intrename_tmp_log_callback(const char*path,void*cb_data)1197{1198struct rename_cb *cb = cb_data;11991200if(rename(cb->tmp_renamed_log, path)) {1201/*1202 * rename(a, b) when b is an existing directory ought1203 * to result in ISDIR, but Solaris 5.8 gives ENOTDIR.1204 * Sheesh. Record the true errno for error reporting,1205 * but report EISDIR to raceproof_create_file() so1206 * that it knows to retry.1207 */1208 cb->true_errno = errno;1209if(errno == ENOTDIR)1210 errno = EISDIR;1211return-1;1212}else{1213return0;1214}1215}12161217static intrename_tmp_log(struct files_ref_store *refs,const char*newrefname)1218{1219struct strbuf path = STRBUF_INIT;1220struct strbuf tmp = STRBUF_INIT;1221struct rename_cb cb;1222int ret;12231224files_reflog_path(refs, &path, newrefname);1225files_reflog_path(refs, &tmp, TMP_RENAMED_LOG);1226 cb.tmp_renamed_log = tmp.buf;1227 ret =raceproof_create_file(path.buf, rename_tmp_log_callback, &cb);1228if(ret) {1229if(errno == EISDIR)1230error("directory not empty:%s", path.buf);1231else1232error("unable to move logfile%sto%s:%s",1233 tmp.buf, path.buf,1234strerror(cb.true_errno));1235}12361237strbuf_release(&path);1238strbuf_release(&tmp);1239return ret;1240}12411242static intwrite_ref_to_lockfile(struct ref_lock *lock,1243const struct object_id *oid,struct strbuf *err);1244static intcommit_ref_update(struct files_ref_store *refs,1245struct ref_lock *lock,1246const struct object_id *oid,const char*logmsg,1247struct strbuf *err);12481249static intfiles_rename_ref(struct ref_store *ref_store,1250const char*oldrefname,const char*newrefname,1251const char*logmsg)1252{1253struct files_ref_store *refs =1254files_downcast(ref_store, REF_STORE_WRITE,"rename_ref");1255struct object_id oid, orig_oid;1256int flag =0, logmoved =0;1257struct ref_lock *lock;1258struct stat loginfo;1259struct strbuf sb_oldref = STRBUF_INIT;1260struct strbuf sb_newref = STRBUF_INIT;1261struct strbuf tmp_renamed_log = STRBUF_INIT;1262int log, ret;1263struct strbuf err = STRBUF_INIT;12641265files_reflog_path(refs, &sb_oldref, oldrefname);1266files_reflog_path(refs, &sb_newref, newrefname);1267files_reflog_path(refs, &tmp_renamed_log, TMP_RENAMED_LOG);12681269 log = !lstat(sb_oldref.buf, &loginfo);1270if(log &&S_ISLNK(loginfo.st_mode)) {1271 ret =error("reflog for%sis a symlink", oldrefname);1272goto out;1273}12741275if(!refs_resolve_ref_unsafe(&refs->base, oldrefname,1276 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1277 orig_oid.hash, &flag)) {1278 ret =error("refname%snot found", oldrefname);1279goto out;1280}12811282if(flag & REF_ISSYMREF) {1283 ret =error("refname%sis a symbolic ref, renaming it is not supported",1284 oldrefname);1285goto out;1286}1287if(!refs_rename_ref_available(&refs->base, oldrefname, newrefname)) {1288 ret =1;1289goto out;1290}12911292if(log &&rename(sb_oldref.buf, tmp_renamed_log.buf)) {1293 ret =error("unable to move logfile logs/%sto logs/"TMP_RENAMED_LOG":%s",1294 oldrefname,strerror(errno));1295goto out;1296}12971298if(refs_delete_ref(&refs->base, logmsg, oldrefname,1299 orig_oid.hash, REF_NODEREF)) {1300error("unable to delete old%s", oldrefname);1301goto rollback;1302}13031304/*1305 * Since we are doing a shallow lookup, oid is not the1306 * correct value to pass to delete_ref as old_oid. But that1307 * doesn't matter, because an old_oid check wouldn't add to1308 * the safety anyway; we want to delete the reference whatever1309 * its current value.1310 */1311if(!refs_read_ref_full(&refs->base, newrefname,1312 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1313 oid.hash, NULL) &&1314refs_delete_ref(&refs->base, NULL, newrefname,1315 NULL, REF_NODEREF)) {1316if(errno == EISDIR) {1317struct strbuf path = STRBUF_INIT;1318int result;13191320files_ref_path(refs, &path, newrefname);1321 result =remove_empty_directories(&path);1322strbuf_release(&path);13231324if(result) {1325error("Directory not empty:%s", newrefname);1326goto rollback;1327}1328}else{1329error("unable to delete existing%s", newrefname);1330goto rollback;1331}1332}13331334if(log &&rename_tmp_log(refs, newrefname))1335goto rollback;13361337 logmoved = log;13381339 lock =lock_ref_sha1_basic(refs, newrefname, NULL, NULL, NULL,1340 REF_NODEREF, NULL, &err);1341if(!lock) {1342error("unable to rename '%s' to '%s':%s", oldrefname, newrefname, err.buf);1343strbuf_release(&err);1344goto rollback;1345}1346oidcpy(&lock->old_oid, &orig_oid);13471348if(write_ref_to_lockfile(lock, &orig_oid, &err) ||1349commit_ref_update(refs, lock, &orig_oid, logmsg, &err)) {1350error("unable to write current sha1 into%s:%s", newrefname, err.buf);1351strbuf_release(&err);1352goto rollback;1353}13541355 ret =0;1356goto out;13571358 rollback:1359 lock =lock_ref_sha1_basic(refs, oldrefname, NULL, NULL, NULL,1360 REF_NODEREF, NULL, &err);1361if(!lock) {1362error("unable to lock%sfor rollback:%s", oldrefname, err.buf);1363strbuf_release(&err);1364goto rollbacklog;1365}13661367 flag = log_all_ref_updates;1368 log_all_ref_updates = LOG_REFS_NONE;1369if(write_ref_to_lockfile(lock, &orig_oid, &err) ||1370commit_ref_update(refs, lock, &orig_oid, NULL, &err)) {1371error("unable to write current sha1 into%s:%s", oldrefname, err.buf);1372strbuf_release(&err);1373}1374 log_all_ref_updates = flag;13751376 rollbacklog:1377if(logmoved &&rename(sb_newref.buf, sb_oldref.buf))1378error("unable to restore logfile%sfrom%s:%s",1379 oldrefname, newrefname,strerror(errno));1380if(!logmoved && log &&1381rename(tmp_renamed_log.buf, sb_oldref.buf))1382error("unable to restore logfile%sfrom logs/"TMP_RENAMED_LOG":%s",1383 oldrefname,strerror(errno));1384 ret =1;1385 out:1386strbuf_release(&sb_newref);1387strbuf_release(&sb_oldref);1388strbuf_release(&tmp_renamed_log);13891390return ret;1391}13921393static intclose_ref(struct ref_lock *lock)1394{1395if(close_lock_file(lock->lk))1396return-1;1397return0;1398}13991400static intcommit_ref(struct ref_lock *lock)1401{1402char*path =get_locked_file_path(lock->lk);1403struct stat st;14041405if(!lstat(path, &st) &&S_ISDIR(st.st_mode)) {1406/*1407 * There is a directory at the path we want to rename1408 * the lockfile to. Hopefully it is empty; try to1409 * delete it.1410 */1411size_t len =strlen(path);1412struct strbuf sb_path = STRBUF_INIT;14131414strbuf_attach(&sb_path, path, len, len);14151416/*1417 * If this fails, commit_lock_file() will also fail1418 * and will report the problem.1419 */1420remove_empty_directories(&sb_path);1421strbuf_release(&sb_path);1422}else{1423free(path);1424}14251426if(commit_lock_file(lock->lk))1427return-1;1428return0;1429}14301431static intopen_or_create_logfile(const char*path,void*cb)1432{1433int*fd = cb;14341435*fd =open(path, O_APPEND | O_WRONLY | O_CREAT,0666);1436return(*fd <0) ? -1:0;1437}14381439/*1440 * Create a reflog for a ref. If force_create = 0, only create the1441 * reflog for certain refs (those for which should_autocreate_reflog1442 * returns non-zero). Otherwise, create it regardless of the reference1443 * name. If the logfile already existed or was created, return 0 and1444 * set *logfd to the file descriptor opened for appending to the file.1445 * If no logfile exists and we decided not to create one, return 0 and1446 * set *logfd to -1. On failure, fill in *err, set *logfd to -1, and1447 * return -1.1448 */1449static intlog_ref_setup(struct files_ref_store *refs,1450const char*refname,int force_create,1451int*logfd,struct strbuf *err)1452{1453struct strbuf logfile_sb = STRBUF_INIT;1454char*logfile;14551456files_reflog_path(refs, &logfile_sb, refname);1457 logfile =strbuf_detach(&logfile_sb, NULL);14581459if(force_create ||should_autocreate_reflog(refname)) {1460if(raceproof_create_file(logfile, open_or_create_logfile, logfd)) {1461if(errno == ENOENT)1462strbuf_addf(err,"unable to create directory for '%s': "1463"%s", logfile,strerror(errno));1464else if(errno == EISDIR)1465strbuf_addf(err,"there are still logs under '%s'",1466 logfile);1467else1468strbuf_addf(err,"unable to append to '%s':%s",1469 logfile,strerror(errno));14701471goto error;1472}1473}else{1474*logfd =open(logfile, O_APPEND | O_WRONLY,0666);1475if(*logfd <0) {1476if(errno == ENOENT || errno == EISDIR) {1477/*1478 * The logfile doesn't already exist,1479 * but that is not an error; it only1480 * means that we won't write log1481 * entries to it.1482 */1483;1484}else{1485strbuf_addf(err,"unable to append to '%s':%s",1486 logfile,strerror(errno));1487goto error;1488}1489}1490}14911492if(*logfd >=0)1493adjust_shared_perm(logfile);14941495free(logfile);1496return0;14971498error:1499free(logfile);1500return-1;1501}15021503static intfiles_create_reflog(struct ref_store *ref_store,1504const char*refname,int force_create,1505struct strbuf *err)1506{1507struct files_ref_store *refs =1508files_downcast(ref_store, REF_STORE_WRITE,"create_reflog");1509int fd;15101511if(log_ref_setup(refs, refname, force_create, &fd, err))1512return-1;15131514if(fd >=0)1515close(fd);15161517return0;1518}15191520static intlog_ref_write_fd(int fd,const struct object_id *old_oid,1521const struct object_id *new_oid,1522const char*committer,const char*msg)1523{1524int msglen, written;1525unsigned maxlen, len;1526char*logrec;15271528 msglen = msg ?strlen(msg) :0;1529 maxlen =strlen(committer) + msglen +100;1530 logrec =xmalloc(maxlen);1531 len =xsnprintf(logrec, maxlen,"%s %s %s\n",1532oid_to_hex(old_oid),1533oid_to_hex(new_oid),1534 committer);1535if(msglen)1536 len +=copy_reflog_msg(logrec + len -1, msg) -1;15371538 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;1539free(logrec);1540if(written != len)1541return-1;15421543return0;1544}15451546static intfiles_log_ref_write(struct files_ref_store *refs,1547const char*refname,const struct object_id *old_oid,1548const struct object_id *new_oid,const char*msg,1549int flags,struct strbuf *err)1550{1551int logfd, result;15521553if(log_all_ref_updates == LOG_REFS_UNSET)1554 log_all_ref_updates =is_bare_repository() ? LOG_REFS_NONE : LOG_REFS_NORMAL;15551556 result =log_ref_setup(refs, refname,1557 flags & REF_FORCE_CREATE_REFLOG,1558&logfd, err);15591560if(result)1561return result;15621563if(logfd <0)1564return0;1565 result =log_ref_write_fd(logfd, old_oid, new_oid,1566git_committer_info(0), msg);1567if(result) {1568struct strbuf sb = STRBUF_INIT;1569int save_errno = errno;15701571files_reflog_path(refs, &sb, refname);1572strbuf_addf(err,"unable to append to '%s':%s",1573 sb.buf,strerror(save_errno));1574strbuf_release(&sb);1575close(logfd);1576return-1;1577}1578if(close(logfd)) {1579struct strbuf sb = STRBUF_INIT;1580int save_errno = errno;15811582files_reflog_path(refs, &sb, refname);1583strbuf_addf(err,"unable to append to '%s':%s",1584 sb.buf,strerror(save_errno));1585strbuf_release(&sb);1586return-1;1587}1588return0;1589}15901591/*1592 * Write sha1 into the open lockfile, then close the lockfile. On1593 * errors, rollback the lockfile, fill in *err and1594 * return -1.1595 */1596static intwrite_ref_to_lockfile(struct ref_lock *lock,1597const struct object_id *oid,struct strbuf *err)1598{1599static char term ='\n';1600struct object *o;1601int fd;16021603 o =parse_object(oid);1604if(!o) {1605strbuf_addf(err,1606"trying to write ref '%s' with nonexistent object%s",1607 lock->ref_name,oid_to_hex(oid));1608unlock_ref(lock);1609return-1;1610}1611if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {1612strbuf_addf(err,1613"trying to write non-commit object%sto branch '%s'",1614oid_to_hex(oid), lock->ref_name);1615unlock_ref(lock);1616return-1;1617}1618 fd =get_lock_file_fd(lock->lk);1619if(write_in_full(fd,oid_to_hex(oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||1620write_in_full(fd, &term,1) !=1||1621close_ref(lock) <0) {1622strbuf_addf(err,1623"couldn't write '%s'",get_lock_file_path(lock->lk));1624unlock_ref(lock);1625return-1;1626}1627return0;1628}16291630/*1631 * Commit a change to a loose reference that has already been written1632 * to the loose reference lockfile. Also update the reflogs if1633 * necessary, using the specified lockmsg (which can be NULL).1634 */1635static intcommit_ref_update(struct files_ref_store *refs,1636struct ref_lock *lock,1637const struct object_id *oid,const char*logmsg,1638struct strbuf *err)1639{1640files_assert_main_repository(refs,"commit_ref_update");16411642clear_loose_ref_cache(refs);1643if(files_log_ref_write(refs, lock->ref_name,1644&lock->old_oid, oid,1645 logmsg,0, err)) {1646char*old_msg =strbuf_detach(err, NULL);1647strbuf_addf(err,"cannot update the ref '%s':%s",1648 lock->ref_name, old_msg);1649free(old_msg);1650unlock_ref(lock);1651return-1;1652}16531654if(strcmp(lock->ref_name,"HEAD") !=0) {1655/*1656 * Special hack: If a branch is updated directly and HEAD1657 * points to it (may happen on the remote side of a push1658 * for example) then logically the HEAD reflog should be1659 * updated too.1660 * A generic solution implies reverse symref information,1661 * but finding all symrefs pointing to the given branch1662 * would be rather costly for this rare event (the direct1663 * update of a branch) to be worth it. So let's cheat and1664 * check with HEAD only which should cover 99% of all usage1665 * scenarios (even 100% of the default ones).1666 */1667struct object_id head_oid;1668int head_flag;1669const char*head_ref;16701671 head_ref =refs_resolve_ref_unsafe(&refs->base,"HEAD",1672 RESOLVE_REF_READING,1673 head_oid.hash, &head_flag);1674if(head_ref && (head_flag & REF_ISSYMREF) &&1675!strcmp(head_ref, lock->ref_name)) {1676struct strbuf log_err = STRBUF_INIT;1677if(files_log_ref_write(refs,"HEAD",1678&lock->old_oid, oid,1679 logmsg,0, &log_err)) {1680error("%s", log_err.buf);1681strbuf_release(&log_err);1682}1683}1684}16851686if(commit_ref(lock)) {1687strbuf_addf(err,"couldn't set '%s'", lock->ref_name);1688unlock_ref(lock);1689return-1;1690}16911692unlock_ref(lock);1693return0;1694}16951696static intcreate_ref_symlink(struct ref_lock *lock,const char*target)1697{1698int ret = -1;1699#ifndef NO_SYMLINK_HEAD1700char*ref_path =get_locked_file_path(lock->lk);1701unlink(ref_path);1702 ret =symlink(target, ref_path);1703free(ref_path);17041705if(ret)1706fprintf(stderr,"no symlink - falling back to symbolic ref\n");1707#endif1708return ret;1709}17101711static voidupdate_symref_reflog(struct files_ref_store *refs,1712struct ref_lock *lock,const char*refname,1713const char*target,const char*logmsg)1714{1715struct strbuf err = STRBUF_INIT;1716struct object_id new_oid;1717if(logmsg &&1718!refs_read_ref_full(&refs->base, target,1719 RESOLVE_REF_READING, new_oid.hash, NULL) &&1720files_log_ref_write(refs, refname, &lock->old_oid,1721&new_oid, logmsg,0, &err)) {1722error("%s", err.buf);1723strbuf_release(&err);1724}1725}17261727static intcreate_symref_locked(struct files_ref_store *refs,1728struct ref_lock *lock,const char*refname,1729const char*target,const char*logmsg)1730{1731if(prefer_symlink_refs && !create_ref_symlink(lock, target)) {1732update_symref_reflog(refs, lock, refname, target, logmsg);1733return0;1734}17351736if(!fdopen_lock_file(lock->lk,"w"))1737returnerror("unable to fdopen%s:%s",1738 lock->lk->tempfile.filename.buf,strerror(errno));17391740update_symref_reflog(refs, lock, refname, target, logmsg);17411742/* no error check; commit_ref will check ferror */1743fprintf(lock->lk->tempfile.fp,"ref:%s\n", target);1744if(commit_ref(lock) <0)1745returnerror("unable to write symref for%s:%s", refname,1746strerror(errno));1747return0;1748}17491750static intfiles_create_symref(struct ref_store *ref_store,1751const char*refname,const char*target,1752const char*logmsg)1753{1754struct files_ref_store *refs =1755files_downcast(ref_store, REF_STORE_WRITE,"create_symref");1756struct strbuf err = STRBUF_INIT;1757struct ref_lock *lock;1758int ret;17591760 lock =lock_ref_sha1_basic(refs, refname, NULL,1761 NULL, NULL, REF_NODEREF, NULL,1762&err);1763if(!lock) {1764error("%s", err.buf);1765strbuf_release(&err);1766return-1;1767}17681769 ret =create_symref_locked(refs, lock, refname, target, logmsg);1770unlock_ref(lock);1771return ret;1772}17731774static intfiles_reflog_exists(struct ref_store *ref_store,1775const char*refname)1776{1777struct files_ref_store *refs =1778files_downcast(ref_store, REF_STORE_READ,"reflog_exists");1779struct strbuf sb = STRBUF_INIT;1780struct stat st;1781int ret;17821783files_reflog_path(refs, &sb, refname);1784 ret = !lstat(sb.buf, &st) &&S_ISREG(st.st_mode);1785strbuf_release(&sb);1786return ret;1787}17881789static intfiles_delete_reflog(struct ref_store *ref_store,1790const char*refname)1791{1792struct files_ref_store *refs =1793files_downcast(ref_store, REF_STORE_WRITE,"delete_reflog");1794struct strbuf sb = STRBUF_INIT;1795int ret;17961797files_reflog_path(refs, &sb, refname);1798 ret =remove_path(sb.buf);1799strbuf_release(&sb);1800return ret;1801}18021803static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)1804{1805struct object_id ooid, noid;1806char*email_end, *message;1807 timestamp_t timestamp;1808int tz;1809const char*p = sb->buf;18101811/* old SP new SP name <email> SP time TAB msg LF */1812if(!sb->len || sb->buf[sb->len -1] !='\n'||1813parse_oid_hex(p, &ooid, &p) || *p++ !=' '||1814parse_oid_hex(p, &noid, &p) || *p++ !=' '||1815!(email_end =strchr(p,'>')) ||1816 email_end[1] !=' '||1817!(timestamp =parse_timestamp(email_end +2, &message,10)) ||1818!message || message[0] !=' '||1819(message[1] !='+'&& message[1] !='-') ||1820!isdigit(message[2]) || !isdigit(message[3]) ||1821!isdigit(message[4]) || !isdigit(message[5]))1822return0;/* corrupt? */1823 email_end[1] ='\0';1824 tz =strtol(message +1, NULL,10);1825if(message[6] !='\t')1826 message +=6;1827else1828 message +=7;1829returnfn(&ooid, &noid, p, timestamp, tz, message, cb_data);1830}18311832static char*find_beginning_of_line(char*bob,char*scan)1833{1834while(bob < scan && *(--scan) !='\n')1835;/* keep scanning backwards */1836/*1837 * Return either beginning of the buffer, or LF at the end of1838 * the previous line.1839 */1840return scan;1841}18421843static intfiles_for_each_reflog_ent_reverse(struct ref_store *ref_store,1844const char*refname,1845 each_reflog_ent_fn fn,1846void*cb_data)1847{1848struct files_ref_store *refs =1849files_downcast(ref_store, REF_STORE_READ,1850"for_each_reflog_ent_reverse");1851struct strbuf sb = STRBUF_INIT;1852FILE*logfp;1853long pos;1854int ret =0, at_tail =1;18551856files_reflog_path(refs, &sb, refname);1857 logfp =fopen(sb.buf,"r");1858strbuf_release(&sb);1859if(!logfp)1860return-1;18611862/* Jump to the end */1863if(fseek(logfp,0, SEEK_END) <0)1864 ret =error("cannot seek back reflog for%s:%s",1865 refname,strerror(errno));1866 pos =ftell(logfp);1867while(!ret &&0< pos) {1868int cnt;1869size_t nread;1870char buf[BUFSIZ];1871char*endp, *scanp;18721873/* Fill next block from the end */1874 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;1875if(fseek(logfp, pos - cnt, SEEK_SET)) {1876 ret =error("cannot seek back reflog for%s:%s",1877 refname,strerror(errno));1878break;1879}1880 nread =fread(buf, cnt,1, logfp);1881if(nread !=1) {1882 ret =error("cannot read%dbytes from reflog for%s:%s",1883 cnt, refname,strerror(errno));1884break;1885}1886 pos -= cnt;18871888 scanp = endp = buf + cnt;1889if(at_tail && scanp[-1] =='\n')1890/* Looking at the final LF at the end of the file */1891 scanp--;1892 at_tail =0;18931894while(buf < scanp) {1895/*1896 * terminating LF of the previous line, or the beginning1897 * of the buffer.1898 */1899char*bp;19001901 bp =find_beginning_of_line(buf, scanp);19021903if(*bp =='\n') {1904/*1905 * The newline is the end of the previous line,1906 * so we know we have complete line starting1907 * at (bp + 1). Prefix it onto any prior data1908 * we collected for the line and process it.1909 */1910strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));1911 scanp = bp;1912 endp = bp +1;1913 ret =show_one_reflog_ent(&sb, fn, cb_data);1914strbuf_reset(&sb);1915if(ret)1916break;1917}else if(!pos) {1918/*1919 * We are at the start of the buffer, and the1920 * start of the file; there is no previous1921 * line, and we have everything for this one.1922 * Process it, and we can end the loop.1923 */1924strbuf_splice(&sb,0,0, buf, endp - buf);1925 ret =show_one_reflog_ent(&sb, fn, cb_data);1926strbuf_reset(&sb);1927break;1928}19291930if(bp == buf) {1931/*1932 * We are at the start of the buffer, and there1933 * is more file to read backwards. Which means1934 * we are in the middle of a line. Note that we1935 * may get here even if *bp was a newline; that1936 * just means we are at the exact end of the1937 * previous line, rather than some spot in the1938 * middle.1939 *1940 * Save away what we have to be combined with1941 * the data from the next read.1942 */1943strbuf_splice(&sb,0,0, buf, endp - buf);1944break;1945}1946}19471948}1949if(!ret && sb.len)1950die("BUG: reverse reflog parser had leftover data");19511952fclose(logfp);1953strbuf_release(&sb);1954return ret;1955}19561957static intfiles_for_each_reflog_ent(struct ref_store *ref_store,1958const char*refname,1959 each_reflog_ent_fn fn,void*cb_data)1960{1961struct files_ref_store *refs =1962files_downcast(ref_store, REF_STORE_READ,1963"for_each_reflog_ent");1964FILE*logfp;1965struct strbuf sb = STRBUF_INIT;1966int ret =0;19671968files_reflog_path(refs, &sb, refname);1969 logfp =fopen(sb.buf,"r");1970strbuf_release(&sb);1971if(!logfp)1972return-1;19731974while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))1975 ret =show_one_reflog_ent(&sb, fn, cb_data);1976fclose(logfp);1977strbuf_release(&sb);1978return ret;1979}19801981struct files_reflog_iterator {1982struct ref_iterator base;19831984struct ref_store *ref_store;1985struct dir_iterator *dir_iterator;1986struct object_id oid;1987};19881989static intfiles_reflog_iterator_advance(struct ref_iterator *ref_iterator)1990{1991struct files_reflog_iterator *iter =1992(struct files_reflog_iterator *)ref_iterator;1993struct dir_iterator *diter = iter->dir_iterator;1994int ok;19951996while((ok =dir_iterator_advance(diter)) == ITER_OK) {1997int flags;19981999if(!S_ISREG(diter->st.st_mode))2000continue;2001if(diter->basename[0] =='.')2002continue;2003if(ends_with(diter->basename,".lock"))2004continue;20052006if(refs_read_ref_full(iter->ref_store,2007 diter->relative_path,0,2008 iter->oid.hash, &flags)) {2009error("bad ref for%s", diter->path.buf);2010continue;2011}20122013 iter->base.refname = diter->relative_path;2014 iter->base.oid = &iter->oid;2015 iter->base.flags = flags;2016return ITER_OK;2017}20182019 iter->dir_iterator = NULL;2020if(ref_iterator_abort(ref_iterator) == ITER_ERROR)2021 ok = ITER_ERROR;2022return ok;2023}20242025static intfiles_reflog_iterator_peel(struct ref_iterator *ref_iterator,2026struct object_id *peeled)2027{2028die("BUG: ref_iterator_peel() called for reflog_iterator");2029}20302031static intfiles_reflog_iterator_abort(struct ref_iterator *ref_iterator)2032{2033struct files_reflog_iterator *iter =2034(struct files_reflog_iterator *)ref_iterator;2035int ok = ITER_DONE;20362037if(iter->dir_iterator)2038 ok =dir_iterator_abort(iter->dir_iterator);20392040base_ref_iterator_free(ref_iterator);2041return ok;2042}20432044static struct ref_iterator_vtable files_reflog_iterator_vtable = {2045 files_reflog_iterator_advance,2046 files_reflog_iterator_peel,2047 files_reflog_iterator_abort2048};20492050static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store)2051{2052struct files_ref_store *refs =2053files_downcast(ref_store, REF_STORE_READ,2054"reflog_iterator_begin");2055struct files_reflog_iterator *iter =xcalloc(1,sizeof(*iter));2056struct ref_iterator *ref_iterator = &iter->base;2057struct strbuf sb = STRBUF_INIT;20582059base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable);2060files_reflog_path(refs, &sb, NULL);2061 iter->dir_iterator =dir_iterator_begin(sb.buf);2062 iter->ref_store = ref_store;2063strbuf_release(&sb);2064return ref_iterator;2065}20662067/*2068 * If update is a direct update of head_ref (the reference pointed to2069 * by HEAD), then add an extra REF_LOG_ONLY update for HEAD.2070 */2071static intsplit_head_update(struct ref_update *update,2072struct ref_transaction *transaction,2073const char*head_ref,2074struct string_list *affected_refnames,2075struct strbuf *err)2076{2077struct string_list_item *item;2078struct ref_update *new_update;20792080if((update->flags & REF_LOG_ONLY) ||2081(update->flags & REF_ISPRUNING) ||2082(update->flags & REF_UPDATE_VIA_HEAD))2083return0;20842085if(strcmp(update->refname, head_ref))2086return0;20872088/*2089 * First make sure that HEAD is not already in the2090 * transaction. This insertion is O(N) in the transaction2091 * size, but it happens at most once per transaction.2092 */2093 item =string_list_insert(affected_refnames,"HEAD");2094if(item->util) {2095/* An entry already existed */2096strbuf_addf(err,2097"multiple updates for 'HEAD' (including one "2098"via its referent '%s') are not allowed",2099 update->refname);2100return TRANSACTION_NAME_CONFLICT;2101}21022103 new_update =ref_transaction_add_update(2104 transaction,"HEAD",2105 update->flags | REF_LOG_ONLY | REF_NODEREF,2106 update->new_oid.hash, update->old_oid.hash,2107 update->msg);21082109 item->util = new_update;21102111return0;2112}21132114/*2115 * update is for a symref that points at referent and doesn't have2116 * REF_NODEREF set. Split it into two updates:2117 * - The original update, but with REF_LOG_ONLY and REF_NODEREF set2118 * - A new, separate update for the referent reference2119 * Note that the new update will itself be subject to splitting when2120 * the iteration gets to it.2121 */2122static intsplit_symref_update(struct files_ref_store *refs,2123struct ref_update *update,2124const char*referent,2125struct ref_transaction *transaction,2126struct string_list *affected_refnames,2127struct strbuf *err)2128{2129struct string_list_item *item;2130struct ref_update *new_update;2131unsigned int new_flags;21322133/*2134 * First make sure that referent is not already in the2135 * transaction. This insertion is O(N) in the transaction2136 * size, but it happens at most once per symref in a2137 * transaction.2138 */2139 item =string_list_insert(affected_refnames, referent);2140if(item->util) {2141/* An entry already existed */2142strbuf_addf(err,2143"multiple updates for '%s' (including one "2144"via symref '%s') are not allowed",2145 referent, update->refname);2146return TRANSACTION_NAME_CONFLICT;2147}21482149 new_flags = update->flags;2150if(!strcmp(update->refname,"HEAD")) {2151/*2152 * Record that the new update came via HEAD, so that2153 * when we process it, split_head_update() doesn't try2154 * to add another reflog update for HEAD. Note that2155 * this bit will be propagated if the new_update2156 * itself needs to be split.2157 */2158 new_flags |= REF_UPDATE_VIA_HEAD;2159}21602161 new_update =ref_transaction_add_update(2162 transaction, referent, new_flags,2163 update->new_oid.hash, update->old_oid.hash,2164 update->msg);21652166 new_update->parent_update = update;21672168/*2169 * Change the symbolic ref update to log only. Also, it2170 * doesn't need to check its old SHA-1 value, as that will be2171 * done when new_update is processed.2172 */2173 update->flags |= REF_LOG_ONLY | REF_NODEREF;2174 update->flags &= ~REF_HAVE_OLD;21752176 item->util = new_update;21772178return0;2179}21802181/*2182 * Return the refname under which update was originally requested.2183 */2184static const char*original_update_refname(struct ref_update *update)2185{2186while(update->parent_update)2187 update = update->parent_update;21882189return update->refname;2190}21912192/*2193 * Check whether the REF_HAVE_OLD and old_oid values stored in update2194 * are consistent with oid, which is the reference's current value. If2195 * everything is OK, return 0; otherwise, write an error message to2196 * err and return -1.2197 */2198static intcheck_old_oid(struct ref_update *update,struct object_id *oid,2199struct strbuf *err)2200{2201if(!(update->flags & REF_HAVE_OLD) ||2202!oidcmp(oid, &update->old_oid))2203return0;22042205if(is_null_oid(&update->old_oid))2206strbuf_addf(err,"cannot lock ref '%s': "2207"reference already exists",2208original_update_refname(update));2209else if(is_null_oid(oid))2210strbuf_addf(err,"cannot lock ref '%s': "2211"reference is missing but expected%s",2212original_update_refname(update),2213oid_to_hex(&update->old_oid));2214else2215strbuf_addf(err,"cannot lock ref '%s': "2216"is at%sbut expected%s",2217original_update_refname(update),2218oid_to_hex(oid),2219oid_to_hex(&update->old_oid));22202221return-1;2222}22232224/*2225 * Prepare for carrying out update:2226 * - Lock the reference referred to by update.2227 * - Read the reference under lock.2228 * - Check that its old SHA-1 value (if specified) is correct, and in2229 * any case record it in update->lock->old_oid for later use when2230 * writing the reflog.2231 * - If it is a symref update without REF_NODEREF, split it up into a2232 * REF_LOG_ONLY update of the symref and add a separate update for2233 * the referent to transaction.2234 * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY2235 * update of HEAD.2236 */2237static intlock_ref_for_update(struct files_ref_store *refs,2238struct ref_update *update,2239struct ref_transaction *transaction,2240const char*head_ref,2241struct string_list *affected_refnames,2242struct strbuf *err)2243{2244struct strbuf referent = STRBUF_INIT;2245int mustexist = (update->flags & REF_HAVE_OLD) &&2246!is_null_oid(&update->old_oid);2247int ret;2248struct ref_lock *lock;22492250files_assert_main_repository(refs,"lock_ref_for_update");22512252if((update->flags & REF_HAVE_NEW) &&is_null_oid(&update->new_oid))2253 update->flags |= REF_DELETING;22542255if(head_ref) {2256 ret =split_head_update(update, transaction, head_ref,2257 affected_refnames, err);2258if(ret)2259return ret;2260}22612262 ret =lock_raw_ref(refs, update->refname, mustexist,2263 affected_refnames, NULL,2264&lock, &referent,2265&update->type, err);2266if(ret) {2267char*reason;22682269 reason =strbuf_detach(err, NULL);2270strbuf_addf(err,"cannot lock ref '%s':%s",2271original_update_refname(update), reason);2272free(reason);2273return ret;2274}22752276 update->backend_data = lock;22772278if(update->type & REF_ISSYMREF) {2279if(update->flags & REF_NODEREF) {2280/*2281 * We won't be reading the referent as part of2282 * the transaction, so we have to read it here2283 * to record and possibly check old_sha1:2284 */2285if(refs_read_ref_full(&refs->base,2286 referent.buf,0,2287 lock->old_oid.hash, NULL)) {2288if(update->flags & REF_HAVE_OLD) {2289strbuf_addf(err,"cannot lock ref '%s': "2290"error reading reference",2291original_update_refname(update));2292return-1;2293}2294}else if(check_old_oid(update, &lock->old_oid, err)) {2295return TRANSACTION_GENERIC_ERROR;2296}2297}else{2298/*2299 * Create a new update for the reference this2300 * symref is pointing at. Also, we will record2301 * and verify old_sha1 for this update as part2302 * of processing the split-off update, so we2303 * don't have to do it here.2304 */2305 ret =split_symref_update(refs, update,2306 referent.buf, transaction,2307 affected_refnames, err);2308if(ret)2309return ret;2310}2311}else{2312struct ref_update *parent_update;23132314if(check_old_oid(update, &lock->old_oid, err))2315return TRANSACTION_GENERIC_ERROR;23162317/*2318 * If this update is happening indirectly because of a2319 * symref update, record the old SHA-1 in the parent2320 * update:2321 */2322for(parent_update = update->parent_update;2323 parent_update;2324 parent_update = parent_update->parent_update) {2325struct ref_lock *parent_lock = parent_update->backend_data;2326oidcpy(&parent_lock->old_oid, &lock->old_oid);2327}2328}23292330if((update->flags & REF_HAVE_NEW) &&2331!(update->flags & REF_DELETING) &&2332!(update->flags & REF_LOG_ONLY)) {2333if(!(update->type & REF_ISSYMREF) &&2334!oidcmp(&lock->old_oid, &update->new_oid)) {2335/*2336 * The reference already has the desired2337 * value, so we don't need to write it.2338 */2339}else if(write_ref_to_lockfile(lock, &update->new_oid,2340 err)) {2341char*write_err =strbuf_detach(err, NULL);23422343/*2344 * The lock was freed upon failure of2345 * write_ref_to_lockfile():2346 */2347 update->backend_data = NULL;2348strbuf_addf(err,2349"cannot update ref '%s':%s",2350 update->refname, write_err);2351free(write_err);2352return TRANSACTION_GENERIC_ERROR;2353}else{2354 update->flags |= REF_NEEDS_COMMIT;2355}2356}2357if(!(update->flags & REF_NEEDS_COMMIT)) {2358/*2359 * We didn't call write_ref_to_lockfile(), so2360 * the lockfile is still open. Close it to2361 * free up the file descriptor:2362 */2363if(close_ref(lock)) {2364strbuf_addf(err,"couldn't close '%s.lock'",2365 update->refname);2366return TRANSACTION_GENERIC_ERROR;2367}2368}2369return0;2370}23712372/*2373 * Unlock any references in `transaction` that are still locked, and2374 * mark the transaction closed.2375 */2376static voidfiles_transaction_cleanup(struct ref_transaction *transaction)2377{2378size_t i;23792380for(i =0; i < transaction->nr; i++) {2381struct ref_update *update = transaction->updates[i];2382struct ref_lock *lock = update->backend_data;23832384if(lock) {2385unlock_ref(lock);2386 update->backend_data = NULL;2387}2388}23892390 transaction->state = REF_TRANSACTION_CLOSED;2391}23922393static intfiles_transaction_prepare(struct ref_store *ref_store,2394struct ref_transaction *transaction,2395struct strbuf *err)2396{2397struct files_ref_store *refs =2398files_downcast(ref_store, REF_STORE_WRITE,2399"ref_transaction_prepare");2400size_t i;2401int ret =0;2402struct string_list affected_refnames = STRING_LIST_INIT_NODUP;2403char*head_ref = NULL;2404int head_type;2405struct object_id head_oid;24062407assert(err);24082409if(!transaction->nr)2410goto cleanup;24112412/*2413 * Fail if a refname appears more than once in the2414 * transaction. (If we end up splitting up any updates using2415 * split_symref_update() or split_head_update(), those2416 * functions will check that the new updates don't have the2417 * same refname as any existing ones.)2418 */2419for(i =0; i < transaction->nr; i++) {2420struct ref_update *update = transaction->updates[i];2421struct string_list_item *item =2422string_list_append(&affected_refnames, update->refname);24232424/*2425 * We store a pointer to update in item->util, but at2426 * the moment we never use the value of this field2427 * except to check whether it is non-NULL.2428 */2429 item->util = update;2430}2431string_list_sort(&affected_refnames);2432if(ref_update_reject_duplicates(&affected_refnames, err)) {2433 ret = TRANSACTION_GENERIC_ERROR;2434goto cleanup;2435}24362437/*2438 * Special hack: If a branch is updated directly and HEAD2439 * points to it (may happen on the remote side of a push2440 * for example) then logically the HEAD reflog should be2441 * updated too.2442 *2443 * A generic solution would require reverse symref lookups,2444 * but finding all symrefs pointing to a given branch would be2445 * rather costly for this rare event (the direct update of a2446 * branch) to be worth it. So let's cheat and check with HEAD2447 * only, which should cover 99% of all usage scenarios (even2448 * 100% of the default ones).2449 *2450 * So if HEAD is a symbolic reference, then record the name of2451 * the reference that it points to. If we see an update of2452 * head_ref within the transaction, then split_head_update()2453 * arranges for the reflog of HEAD to be updated, too.2454 */2455 head_ref =refs_resolve_refdup(ref_store,"HEAD",2456 RESOLVE_REF_NO_RECURSE,2457 head_oid.hash, &head_type);24582459if(head_ref && !(head_type & REF_ISSYMREF)) {2460free(head_ref);2461 head_ref = NULL;2462}24632464/*2465 * Acquire all locks, verify old values if provided, check2466 * that new values are valid, and write new values to the2467 * lockfiles, ready to be activated. Only keep one lockfile2468 * open at a time to avoid running out of file descriptors.2469 * Note that lock_ref_for_update() might append more updates2470 * to the transaction.2471 */2472for(i =0; i < transaction->nr; i++) {2473struct ref_update *update = transaction->updates[i];24742475 ret =lock_ref_for_update(refs, update, transaction,2476 head_ref, &affected_refnames, err);2477if(ret)2478break;2479}24802481cleanup:2482free(head_ref);2483string_list_clear(&affected_refnames,0);24842485if(ret)2486files_transaction_cleanup(transaction);2487else2488 transaction->state = REF_TRANSACTION_PREPARED;24892490return ret;2491}24922493static intfiles_transaction_finish(struct ref_store *ref_store,2494struct ref_transaction *transaction,2495struct strbuf *err)2496{2497struct files_ref_store *refs =2498files_downcast(ref_store,0,"ref_transaction_finish");2499size_t i;2500int ret =0;2501struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;2502struct string_list_item *ref_to_delete;2503struct strbuf sb = STRBUF_INIT;25042505assert(err);25062507if(!transaction->nr) {2508 transaction->state = REF_TRANSACTION_CLOSED;2509return0;2510}25112512/* Perform updates first so live commits remain referenced */2513for(i =0; i < transaction->nr; i++) {2514struct ref_update *update = transaction->updates[i];2515struct ref_lock *lock = update->backend_data;25162517if(update->flags & REF_NEEDS_COMMIT ||2518 update->flags & REF_LOG_ONLY) {2519if(files_log_ref_write(refs,2520 lock->ref_name,2521&lock->old_oid,2522&update->new_oid,2523 update->msg, update->flags,2524 err)) {2525char*old_msg =strbuf_detach(err, NULL);25262527strbuf_addf(err,"cannot update the ref '%s':%s",2528 lock->ref_name, old_msg);2529free(old_msg);2530unlock_ref(lock);2531 update->backend_data = NULL;2532 ret = TRANSACTION_GENERIC_ERROR;2533goto cleanup;2534}2535}2536if(update->flags & REF_NEEDS_COMMIT) {2537clear_loose_ref_cache(refs);2538if(commit_ref(lock)) {2539strbuf_addf(err,"couldn't set '%s'", lock->ref_name);2540unlock_ref(lock);2541 update->backend_data = NULL;2542 ret = TRANSACTION_GENERIC_ERROR;2543goto cleanup;2544}2545}2546}2547/* Perform deletes now that updates are safely completed */2548for(i =0; i < transaction->nr; i++) {2549struct ref_update *update = transaction->updates[i];2550struct ref_lock *lock = update->backend_data;25512552if(update->flags & REF_DELETING &&2553!(update->flags & REF_LOG_ONLY)) {2554if(!(update->type & REF_ISPACKED) ||2555 update->type & REF_ISSYMREF) {2556/* It is a loose reference. */2557strbuf_reset(&sb);2558files_ref_path(refs, &sb, lock->ref_name);2559if(unlink_or_msg(sb.buf, err)) {2560 ret = TRANSACTION_GENERIC_ERROR;2561goto cleanup;2562}2563 update->flags |= REF_DELETED_LOOSE;2564}25652566if(!(update->flags & REF_ISPRUNING))2567string_list_append(&refs_to_delete,2568 lock->ref_name);2569}2570}25712572if(repack_without_refs(refs->packed_ref_store, &refs_to_delete, err)) {2573 ret = TRANSACTION_GENERIC_ERROR;2574goto cleanup;2575}25762577/* Delete the reflogs of any references that were deleted: */2578for_each_string_list_item(ref_to_delete, &refs_to_delete) {2579strbuf_reset(&sb);2580files_reflog_path(refs, &sb, ref_to_delete->string);2581if(!unlink_or_warn(sb.buf))2582try_remove_empty_parents(refs, ref_to_delete->string,2583 REMOVE_EMPTY_PARENTS_REFLOG);2584}25852586clear_loose_ref_cache(refs);25872588cleanup:2589files_transaction_cleanup(transaction);25902591for(i =0; i < transaction->nr; i++) {2592struct ref_update *update = transaction->updates[i];25932594if(update->flags & REF_DELETED_LOOSE) {2595/*2596 * The loose reference was deleted. Delete any2597 * empty parent directories. (Note that this2598 * can only work because we have already2599 * removed the lockfile.)2600 */2601try_remove_empty_parents(refs, update->refname,2602 REMOVE_EMPTY_PARENTS_REF);2603}2604}26052606strbuf_release(&sb);2607string_list_clear(&refs_to_delete,0);2608return ret;2609}26102611static intfiles_transaction_abort(struct ref_store *ref_store,2612struct ref_transaction *transaction,2613struct strbuf *err)2614{2615files_transaction_cleanup(transaction);2616return0;2617}26182619static intref_present(const char*refname,2620const struct object_id *oid,int flags,void*cb_data)2621{2622struct string_list *affected_refnames = cb_data;26232624returnstring_list_has_string(affected_refnames, refname);2625}26262627static intfiles_initial_transaction_commit(struct ref_store *ref_store,2628struct ref_transaction *transaction,2629struct strbuf *err)2630{2631struct files_ref_store *refs =2632files_downcast(ref_store, REF_STORE_WRITE,2633"initial_ref_transaction_commit");2634size_t i;2635int ret =0;2636struct string_list affected_refnames = STRING_LIST_INIT_NODUP;26372638assert(err);26392640if(transaction->state != REF_TRANSACTION_OPEN)2641die("BUG: commit called for transaction that is not open");26422643/* Fail if a refname appears more than once in the transaction: */2644for(i =0; i < transaction->nr; i++)2645string_list_append(&affected_refnames,2646 transaction->updates[i]->refname);2647string_list_sort(&affected_refnames);2648if(ref_update_reject_duplicates(&affected_refnames, err)) {2649 ret = TRANSACTION_GENERIC_ERROR;2650goto cleanup;2651}26522653/*2654 * It's really undefined to call this function in an active2655 * repository or when there are existing references: we are2656 * only locking and changing packed-refs, so (1) any2657 * simultaneous processes might try to change a reference at2658 * the same time we do, and (2) any existing loose versions of2659 * the references that we are setting would have precedence2660 * over our values. But some remote helpers create the remote2661 * "HEAD" and "master" branches before calling this function,2662 * so here we really only check that none of the references2663 * that we are creating already exists.2664 */2665if(refs_for_each_rawref(&refs->base, ref_present,2666&affected_refnames))2667die("BUG: initial ref transaction called with existing refs");26682669for(i =0; i < transaction->nr; i++) {2670struct ref_update *update = transaction->updates[i];26712672if((update->flags & REF_HAVE_OLD) &&2673!is_null_oid(&update->old_oid))2674die("BUG: initial ref transaction with old_sha1 set");2675if(refs_verify_refname_available(&refs->base, update->refname,2676&affected_refnames, NULL,2677 err)) {2678 ret = TRANSACTION_NAME_CONFLICT;2679goto cleanup;2680}2681}26822683if(packed_refs_lock(refs->packed_ref_store,0, err)) {2684 ret = TRANSACTION_GENERIC_ERROR;2685goto cleanup;2686}26872688for(i =0; i < transaction->nr; i++) {2689struct ref_update *update = transaction->updates[i];26902691if((update->flags & REF_HAVE_NEW) &&2692!is_null_oid(&update->new_oid))2693add_packed_ref(refs->packed_ref_store, update->refname,2694&update->new_oid);2695}26962697if(commit_packed_refs(refs->packed_ref_store, err)) {2698 ret = TRANSACTION_GENERIC_ERROR;2699goto cleanup;2700}27012702cleanup:2703packed_refs_unlock(refs->packed_ref_store);2704 transaction->state = REF_TRANSACTION_CLOSED;2705string_list_clear(&affected_refnames,0);2706return ret;2707}27082709struct expire_reflog_cb {2710unsigned int flags;2711 reflog_expiry_should_prune_fn *should_prune_fn;2712void*policy_cb;2713FILE*newlog;2714struct object_id last_kept_oid;2715};27162717static intexpire_reflog_ent(struct object_id *ooid,struct object_id *noid,2718const char*email, timestamp_t timestamp,int tz,2719const char*message,void*cb_data)2720{2721struct expire_reflog_cb *cb = cb_data;2722struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;27232724if(cb->flags & EXPIRE_REFLOGS_REWRITE)2725 ooid = &cb->last_kept_oid;27262727if((*cb->should_prune_fn)(ooid, noid, email, timestamp, tz,2728 message, policy_cb)) {2729if(!cb->newlog)2730printf("would prune%s", message);2731else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)2732printf("prune%s", message);2733}else{2734if(cb->newlog) {2735fprintf(cb->newlog,"%s %s %s%"PRItime" %+05d\t%s",2736oid_to_hex(ooid),oid_to_hex(noid),2737 email, timestamp, tz, message);2738oidcpy(&cb->last_kept_oid, noid);2739}2740if(cb->flags & EXPIRE_REFLOGS_VERBOSE)2741printf("keep%s", message);2742}2743return0;2744}27452746static intfiles_reflog_expire(struct ref_store *ref_store,2747const char*refname,const unsigned char*sha1,2748unsigned int flags,2749 reflog_expiry_prepare_fn prepare_fn,2750 reflog_expiry_should_prune_fn should_prune_fn,2751 reflog_expiry_cleanup_fn cleanup_fn,2752void*policy_cb_data)2753{2754struct files_ref_store *refs =2755files_downcast(ref_store, REF_STORE_WRITE,"reflog_expire");2756static struct lock_file reflog_lock;2757struct expire_reflog_cb cb;2758struct ref_lock *lock;2759struct strbuf log_file_sb = STRBUF_INIT;2760char*log_file;2761int status =0;2762int type;2763struct strbuf err = STRBUF_INIT;2764struct object_id oid;27652766memset(&cb,0,sizeof(cb));2767 cb.flags = flags;2768 cb.policy_cb = policy_cb_data;2769 cb.should_prune_fn = should_prune_fn;27702771/*2772 * The reflog file is locked by holding the lock on the2773 * reference itself, plus we might need to update the2774 * reference if --updateref was specified:2775 */2776 lock =lock_ref_sha1_basic(refs, refname, sha1,2777 NULL, NULL, REF_NODEREF,2778&type, &err);2779if(!lock) {2780error("cannot lock ref '%s':%s", refname, err.buf);2781strbuf_release(&err);2782return-1;2783}2784if(!refs_reflog_exists(ref_store, refname)) {2785unlock_ref(lock);2786return0;2787}27882789files_reflog_path(refs, &log_file_sb, refname);2790 log_file =strbuf_detach(&log_file_sb, NULL);2791if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {2792/*2793 * Even though holding $GIT_DIR/logs/$reflog.lock has2794 * no locking implications, we use the lock_file2795 * machinery here anyway because it does a lot of the2796 * work we need, including cleaning up if the program2797 * exits unexpectedly.2798 */2799if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {2800struct strbuf err = STRBUF_INIT;2801unable_to_lock_message(log_file, errno, &err);2802error("%s", err.buf);2803strbuf_release(&err);2804goto failure;2805}2806 cb.newlog =fdopen_lock_file(&reflog_lock,"w");2807if(!cb.newlog) {2808error("cannot fdopen%s(%s)",2809get_lock_file_path(&reflog_lock),strerror(errno));2810goto failure;2811}2812}28132814hashcpy(oid.hash, sha1);28152816(*prepare_fn)(refname, &oid, cb.policy_cb);2817refs_for_each_reflog_ent(ref_store, refname, expire_reflog_ent, &cb);2818(*cleanup_fn)(cb.policy_cb);28192820if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {2821/*2822 * It doesn't make sense to adjust a reference pointed2823 * to by a symbolic ref based on expiring entries in2824 * the symbolic reference's reflog. Nor can we update2825 * a reference if there are no remaining reflog2826 * entries.2827 */2828int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&2829!(type & REF_ISSYMREF) &&2830!is_null_oid(&cb.last_kept_oid);28312832if(close_lock_file(&reflog_lock)) {2833 status |=error("couldn't write%s:%s", log_file,2834strerror(errno));2835}else if(update &&2836(write_in_full(get_lock_file_fd(lock->lk),2837oid_to_hex(&cb.last_kept_oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||2838write_str_in_full(get_lock_file_fd(lock->lk),"\n") !=1||2839close_ref(lock) <0)) {2840 status |=error("couldn't write%s",2841get_lock_file_path(lock->lk));2842rollback_lock_file(&reflog_lock);2843}else if(commit_lock_file(&reflog_lock)) {2844 status |=error("unable to write reflog '%s' (%s)",2845 log_file,strerror(errno));2846}else if(update &&commit_ref(lock)) {2847 status |=error("couldn't set%s", lock->ref_name);2848}2849}2850free(log_file);2851unlock_ref(lock);2852return status;28532854 failure:2855rollback_lock_file(&reflog_lock);2856free(log_file);2857unlock_ref(lock);2858return-1;2859}28602861static intfiles_init_db(struct ref_store *ref_store,struct strbuf *err)2862{2863struct files_ref_store *refs =2864files_downcast(ref_store, REF_STORE_WRITE,"init_db");2865struct strbuf sb = STRBUF_INIT;28662867/*2868 * Create .git/refs/{heads,tags}2869 */2870files_ref_path(refs, &sb,"refs/heads");2871safe_create_dir(sb.buf,1);28722873strbuf_reset(&sb);2874files_ref_path(refs, &sb,"refs/tags");2875safe_create_dir(sb.buf,1);28762877strbuf_release(&sb);2878return0;2879}28802881struct ref_storage_be refs_be_files = {2882 NULL,2883"files",2884 files_ref_store_create,2885 files_init_db,2886 files_transaction_prepare,2887 files_transaction_finish,2888 files_transaction_abort,2889 files_initial_transaction_commit,28902891 files_pack_refs,2892 files_peel_ref,2893 files_create_symref,2894 files_delete_refs,2895 files_rename_ref,28962897 files_ref_iterator_begin,2898 files_read_raw_ref,28992900 files_reflog_iterator_begin,2901 files_for_each_reflog_ent,2902 files_for_each_reflog_ent_reverse,2903 files_reflog_exists,2904 files_create_reflog,2905 files_delete_reflog,2906 files_reflog_expire2907};