1#include"../cache.h" 2#include"../refs.h" 3#include"refs-internal.h" 4#include"ref-cache.h" 5#include"../iterator.h" 6#include"../dir-iterator.h" 7#include"../lockfile.h" 8#include"../object.h" 9#include"../dir.h" 10 11struct ref_lock { 12char*ref_name; 13struct lock_file *lk; 14struct object_id old_oid; 15}; 16 17/* 18 * Return true if refname, which has the specified oid and flags, can 19 * be resolved to an object in the database. If the referred-to object 20 * does not exist, emit a warning and return false. 21 */ 22static intref_resolves_to_object(const char*refname, 23const struct object_id *oid, 24unsigned int flags) 25{ 26if(flags & REF_ISBROKEN) 27return0; 28if(!has_sha1_file(oid->hash)) { 29error("%sdoes not point to a valid object!", refname); 30return0; 31} 32return1; 33} 34 35struct packed_ref_cache { 36struct ref_cache *cache; 37 38/* 39 * Count of references to the data structure in this instance, 40 * including the pointer from files_ref_store::packed if any. 41 * The data will not be freed as long as the reference count 42 * is nonzero. 43 */ 44unsigned int referrers; 45 46/* The metadata from when this packed-refs cache was read */ 47struct stat_validity validity; 48}; 49 50/* 51 * A container for `packed-refs`-related data. It is not (yet) a 52 * `ref_store`. 53 */ 54struct packed_ref_store { 55unsigned int store_flags; 56 57/* The path of the "packed-refs" file: */ 58char*path; 59 60/* 61 * A cache of the values read from the `packed-refs` file, if 62 * it might still be current; otherwise, NULL. 63 */ 64struct packed_ref_cache *cache; 65 66/* 67 * Lock used for the "packed-refs" file. Note that this (and 68 * thus the enclosing `packed_ref_store`) must not be freed. 69 */ 70struct lock_file lock; 71}; 72 73static struct packed_ref_store *packed_ref_store_create( 74const char*path,unsigned int store_flags) 75{ 76struct packed_ref_store *refs =xcalloc(1,sizeof(*refs)); 77 78 refs->store_flags = store_flags; 79 refs->path =xstrdup(path); 80return refs; 81} 82 83/* 84 * Die if refs is not the main ref store. caller is used in any 85 * necessary error messages. 86 */ 87static voidpacked_assert_main_repository(struct packed_ref_store *refs, 88const char*caller) 89{ 90if(refs->store_flags & REF_STORE_MAIN) 91return; 92 93die("BUG: operation%sonly allowed for main ref store", caller); 94} 95 96/* 97 * Future: need to be in "struct repository" 98 * when doing a full libification. 99 */ 100struct files_ref_store { 101struct ref_store base; 102unsigned int store_flags; 103 104char*gitdir; 105char*gitcommondir; 106 107struct ref_cache *loose; 108 109struct packed_ref_store *packed_ref_store; 110}; 111 112/* 113 * Increment the reference count of *packed_refs. 114 */ 115static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs) 116{ 117 packed_refs->referrers++; 118} 119 120/* 121 * Decrease the reference count of *packed_refs. If it goes to zero, 122 * free *packed_refs and return true; otherwise return false. 123 */ 124static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs) 125{ 126if(!--packed_refs->referrers) { 127free_ref_cache(packed_refs->cache); 128stat_validity_clear(&packed_refs->validity); 129free(packed_refs); 130return1; 131}else{ 132return0; 133} 134} 135 136static voidclear_packed_ref_cache(struct packed_ref_store *refs) 137{ 138if(refs->cache) { 139struct packed_ref_cache *cache = refs->cache; 140 141if(is_lock_file_locked(&refs->lock)) 142die("BUG: packed-ref cache cleared while locked"); 143 refs->cache = NULL; 144release_packed_ref_cache(cache); 145} 146} 147 148static voidclear_loose_ref_cache(struct files_ref_store *refs) 149{ 150if(refs->loose) { 151free_ref_cache(refs->loose); 152 refs->loose = NULL; 153} 154} 155 156/* 157 * Create a new submodule ref cache and add it to the internal 158 * set of caches. 159 */ 160static struct ref_store *files_ref_store_create(const char*gitdir, 161unsigned int flags) 162{ 163struct files_ref_store *refs =xcalloc(1,sizeof(*refs)); 164struct ref_store *ref_store = (struct ref_store *)refs; 165struct strbuf sb = STRBUF_INIT; 166 167base_ref_store_init(ref_store, &refs_be_files); 168 refs->store_flags = flags; 169 170 refs->gitdir =xstrdup(gitdir); 171get_common_dir_noenv(&sb, gitdir); 172 refs->gitcommondir =strbuf_detach(&sb, NULL); 173strbuf_addf(&sb,"%s/packed-refs", refs->gitcommondir); 174 refs->packed_ref_store =packed_ref_store_create(sb.buf, flags); 175strbuf_release(&sb); 176 177return ref_store; 178} 179 180/* 181 * Die if refs is not the main ref store. caller is used in any 182 * necessary error messages. 183 */ 184static voidfiles_assert_main_repository(struct files_ref_store *refs, 185const char*caller) 186{ 187if(refs->store_flags & REF_STORE_MAIN) 188return; 189 190die("BUG: operation%sonly allowed for main ref store", caller); 191} 192 193/* 194 * Downcast ref_store to files_ref_store. Die if ref_store is not a 195 * files_ref_store. required_flags is compared with ref_store's 196 * store_flags to ensure the ref_store has all required capabilities. 197 * "caller" is used in any necessary error messages. 198 */ 199static struct files_ref_store *files_downcast(struct ref_store *ref_store, 200unsigned int required_flags, 201const char*caller) 202{ 203struct files_ref_store *refs; 204 205if(ref_store->be != &refs_be_files) 206die("BUG: ref_store is type\"%s\"not\"files\"in%s", 207 ref_store->be->name, caller); 208 209 refs = (struct files_ref_store *)ref_store; 210 211if((refs->store_flags & required_flags) != required_flags) 212die("BUG: operation%srequires abilities 0x%x, but only have 0x%x", 213 caller, required_flags, refs->store_flags); 214 215return refs; 216} 217 218/* The length of a peeled reference line in packed-refs, including EOL: */ 219#define PEELED_LINE_LENGTH 42 220 221/* 222 * The packed-refs header line that we write out. Perhaps other 223 * traits will be added later. The trailing space is required. 224 */ 225static const char PACKED_REFS_HEADER[] = 226"# pack-refs with: peeled fully-peeled\n"; 227 228/* 229 * Parse one line from a packed-refs file. Write the SHA1 to sha1. 230 * Return a pointer to the refname within the line (null-terminated), 231 * or NULL if there was a problem. 232 */ 233static const char*parse_ref_line(struct strbuf *line,struct object_id *oid) 234{ 235const char*ref; 236 237if(parse_oid_hex(line->buf, oid, &ref) <0) 238return NULL; 239if(!isspace(*ref++)) 240return NULL; 241 242if(isspace(*ref)) 243return NULL; 244 245if(line->buf[line->len -1] !='\n') 246return NULL; 247 line->buf[--line->len] =0; 248 249return ref; 250} 251 252/* 253 * Read from `packed_refs_file` into a newly-allocated 254 * `packed_ref_cache` and return it. The return value will already 255 * have its reference count incremented. 256 * 257 * A comment line of the form "# pack-refs with: " may contain zero or 258 * more traits. We interpret the traits as follows: 259 * 260 * No traits: 261 * 262 * Probably no references are peeled. But if the file contains a 263 * peeled value for a reference, we will use it. 264 * 265 * peeled: 266 * 267 * References under "refs/tags/", if they *can* be peeled, *are* 268 * peeled in this file. References outside of "refs/tags/" are 269 * probably not peeled even if they could have been, but if we find 270 * a peeled value for such a reference we will use it. 271 * 272 * fully-peeled: 273 * 274 * All references in the file that can be peeled are peeled. 275 * Inversely (and this is more important), any references in the 276 * file for which no peeled value is recorded is not peelable. This 277 * trait should typically be written alongside "peeled" for 278 * compatibility with older clients, but we do not require it 279 * (i.e., "peeled" is a no-op if "fully-peeled" is set). 280 */ 281static struct packed_ref_cache *read_packed_refs(const char*packed_refs_file) 282{ 283FILE*f; 284struct packed_ref_cache *packed_refs =xcalloc(1,sizeof(*packed_refs)); 285struct ref_entry *last = NULL; 286struct strbuf line = STRBUF_INIT; 287enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE; 288struct ref_dir *dir; 289 290acquire_packed_ref_cache(packed_refs); 291 packed_refs->cache =create_ref_cache(NULL, NULL); 292 packed_refs->cache->root->flag &= ~REF_INCOMPLETE; 293 294 f =fopen(packed_refs_file,"r"); 295if(!f) { 296if(errno == ENOENT) { 297/* 298 * This is OK; it just means that no 299 * "packed-refs" file has been written yet, 300 * which is equivalent to it being empty. 301 */ 302return packed_refs; 303}else{ 304die_errno("couldn't read%s", packed_refs_file); 305} 306} 307 308stat_validity_update(&packed_refs->validity,fileno(f)); 309 310 dir =get_ref_dir(packed_refs->cache->root); 311while(strbuf_getwholeline(&line, f,'\n') != EOF) { 312struct object_id oid; 313const char*refname; 314const char*traits; 315 316if(skip_prefix(line.buf,"# pack-refs with:", &traits)) { 317if(strstr(traits," fully-peeled ")) 318 peeled = PEELED_FULLY; 319else if(strstr(traits," peeled ")) 320 peeled = PEELED_TAGS; 321/* perhaps other traits later as well */ 322continue; 323} 324 325 refname =parse_ref_line(&line, &oid); 326if(refname) { 327int flag = REF_ISPACKED; 328 329if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) { 330if(!refname_is_safe(refname)) 331die("packed refname is dangerous:%s", refname); 332oidclr(&oid); 333 flag |= REF_BAD_NAME | REF_ISBROKEN; 334} 335 last =create_ref_entry(refname, &oid, flag); 336if(peeled == PEELED_FULLY || 337(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/"))) 338 last->flag |= REF_KNOWS_PEELED; 339add_ref_entry(dir, last); 340continue; 341} 342if(last && 343 line.buf[0] =='^'&& 344 line.len == PEELED_LINE_LENGTH && 345 line.buf[PEELED_LINE_LENGTH -1] =='\n'&& 346!get_oid_hex(line.buf +1, &oid)) { 347oidcpy(&last->u.value.peeled, &oid); 348/* 349 * Regardless of what the file header said, 350 * we definitely know the value of *this* 351 * reference: 352 */ 353 last->flag |= REF_KNOWS_PEELED; 354} 355} 356 357fclose(f); 358strbuf_release(&line); 359 360return packed_refs; 361} 362 363static voidfiles_reflog_path(struct files_ref_store *refs, 364struct strbuf *sb, 365const char*refname) 366{ 367if(!refname) { 368/* 369 * FIXME: of course this is wrong in multi worktree 370 * setting. To be fixed real soon. 371 */ 372strbuf_addf(sb,"%s/logs", refs->gitcommondir); 373return; 374} 375 376switch(ref_type(refname)) { 377case REF_TYPE_PER_WORKTREE: 378case REF_TYPE_PSEUDOREF: 379strbuf_addf(sb,"%s/logs/%s", refs->gitdir, refname); 380break; 381case REF_TYPE_NORMAL: 382strbuf_addf(sb,"%s/logs/%s", refs->gitcommondir, refname); 383break; 384default: 385die("BUG: unknown ref type%dof ref%s", 386ref_type(refname), refname); 387} 388} 389 390static voidfiles_ref_path(struct files_ref_store *refs, 391struct strbuf *sb, 392const char*refname) 393{ 394switch(ref_type(refname)) { 395case REF_TYPE_PER_WORKTREE: 396case REF_TYPE_PSEUDOREF: 397strbuf_addf(sb,"%s/%s", refs->gitdir, refname); 398break; 399case REF_TYPE_NORMAL: 400strbuf_addf(sb,"%s/%s", refs->gitcommondir, refname); 401break; 402default: 403die("BUG: unknown ref type%dof ref%s", 404ref_type(refname), refname); 405} 406} 407 408/* 409 * Check that the packed refs cache (if any) still reflects the 410 * contents of the file. If not, clear the cache. 411 */ 412static voidvalidate_packed_ref_cache(struct packed_ref_store *refs) 413{ 414if(refs->cache && 415!stat_validity_check(&refs->cache->validity, refs->path)) 416clear_packed_ref_cache(refs); 417} 418 419/* 420 * Get the packed_ref_cache for the specified packed_ref_store, 421 * creating and populating it if it hasn't been read before or if the 422 * file has been changed (according to its `validity` field) since it 423 * was last read. On the other hand, if we hold the lock, then assume 424 * that the file hasn't been changed out from under us, so skip the 425 * extra `stat()` call in `stat_validity_check()`. 426 */ 427static struct packed_ref_cache *get_packed_ref_cache(struct packed_ref_store *refs) 428{ 429if(!is_lock_file_locked(&refs->lock)) 430validate_packed_ref_cache(refs); 431 432if(!refs->cache) 433 refs->cache =read_packed_refs(refs->path); 434 435return refs->cache; 436} 437 438static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache) 439{ 440returnget_ref_dir(packed_ref_cache->cache->root); 441} 442 443static struct ref_dir *get_packed_refs(struct packed_ref_store *refs) 444{ 445returnget_packed_ref_dir(get_packed_ref_cache(refs)); 446} 447 448/* 449 * Add or overwrite a reference in the in-memory packed reference 450 * cache. This may only be called while the packed-refs file is locked 451 * (see lock_packed_refs()). To actually write the packed-refs file, 452 * call commit_packed_refs(). 453 */ 454static voidadd_packed_ref(struct packed_ref_store *refs, 455const char*refname,const struct object_id *oid) 456{ 457struct ref_dir *packed_refs; 458struct ref_entry *packed_entry; 459 460if(!is_lock_file_locked(&refs->lock)) 461die("BUG: packed refs not locked"); 462 463if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 464die("Reference has invalid format: '%s'", refname); 465 466 packed_refs =get_packed_refs(refs); 467 packed_entry =find_ref_entry(packed_refs, refname); 468if(packed_entry) { 469/* Overwrite the existing entry: */ 470oidcpy(&packed_entry->u.value.oid, oid); 471 packed_entry->flag = REF_ISPACKED; 472oidclr(&packed_entry->u.value.peeled); 473}else{ 474 packed_entry =create_ref_entry(refname, oid, REF_ISPACKED); 475add_ref_entry(packed_refs, packed_entry); 476} 477} 478 479/* 480 * Read the loose references from the namespace dirname into dir 481 * (without recursing). dirname must end with '/'. dir must be the 482 * directory entry corresponding to dirname. 483 */ 484static voidloose_fill_ref_dir(struct ref_store *ref_store, 485struct ref_dir *dir,const char*dirname) 486{ 487struct files_ref_store *refs = 488files_downcast(ref_store, REF_STORE_READ,"fill_ref_dir"); 489DIR*d; 490struct dirent *de; 491int dirnamelen =strlen(dirname); 492struct strbuf refname; 493struct strbuf path = STRBUF_INIT; 494size_t path_baselen; 495 496files_ref_path(refs, &path, dirname); 497 path_baselen = path.len; 498 499 d =opendir(path.buf); 500if(!d) { 501strbuf_release(&path); 502return; 503} 504 505strbuf_init(&refname, dirnamelen +257); 506strbuf_add(&refname, dirname, dirnamelen); 507 508while((de =readdir(d)) != NULL) { 509struct object_id oid; 510struct stat st; 511int flag; 512 513if(de->d_name[0] =='.') 514continue; 515if(ends_with(de->d_name,".lock")) 516continue; 517strbuf_addstr(&refname, de->d_name); 518strbuf_addstr(&path, de->d_name); 519if(stat(path.buf, &st) <0) { 520;/* silently ignore */ 521}else if(S_ISDIR(st.st_mode)) { 522strbuf_addch(&refname,'/'); 523add_entry_to_dir(dir, 524create_dir_entry(dir->cache, refname.buf, 525 refname.len,1)); 526}else{ 527if(!refs_resolve_ref_unsafe(&refs->base, 528 refname.buf, 529 RESOLVE_REF_READING, 530 oid.hash, &flag)) { 531oidclr(&oid); 532 flag |= REF_ISBROKEN; 533}else if(is_null_oid(&oid)) { 534/* 535 * It is so astronomically unlikely 536 * that NULL_SHA1 is the SHA-1 of an 537 * actual object that we consider its 538 * appearance in a loose reference 539 * file to be repo corruption 540 * (probably due to a software bug). 541 */ 542 flag |= REF_ISBROKEN; 543} 544 545if(check_refname_format(refname.buf, 546 REFNAME_ALLOW_ONELEVEL)) { 547if(!refname_is_safe(refname.buf)) 548die("loose refname is dangerous:%s", refname.buf); 549oidclr(&oid); 550 flag |= REF_BAD_NAME | REF_ISBROKEN; 551} 552add_entry_to_dir(dir, 553create_ref_entry(refname.buf, &oid, flag)); 554} 555strbuf_setlen(&refname, dirnamelen); 556strbuf_setlen(&path, path_baselen); 557} 558strbuf_release(&refname); 559strbuf_release(&path); 560closedir(d); 561 562/* 563 * Manually add refs/bisect, which, being per-worktree, might 564 * not appear in the directory listing for refs/ in the main 565 * repo. 566 */ 567if(!strcmp(dirname,"refs/")) { 568int pos =search_ref_dir(dir,"refs/bisect/",12); 569 570if(pos <0) { 571struct ref_entry *child_entry =create_dir_entry( 572 dir->cache,"refs/bisect/",12,1); 573add_entry_to_dir(dir, child_entry); 574} 575} 576} 577 578static struct ref_cache *get_loose_ref_cache(struct files_ref_store *refs) 579{ 580if(!refs->loose) { 581/* 582 * Mark the top-level directory complete because we 583 * are about to read the only subdirectory that can 584 * hold references: 585 */ 586 refs->loose =create_ref_cache(&refs->base, loose_fill_ref_dir); 587 588/* We're going to fill the top level ourselves: */ 589 refs->loose->root->flag &= ~REF_INCOMPLETE; 590 591/* 592 * Add an incomplete entry for "refs/" (to be filled 593 * lazily): 594 */ 595add_entry_to_dir(get_ref_dir(refs->loose->root), 596create_dir_entry(refs->loose,"refs/",5,1)); 597} 598return refs->loose; 599} 600 601/* 602 * Return the ref_entry for the given refname from the packed 603 * references. If it does not exist, return NULL. 604 */ 605static struct ref_entry *get_packed_ref(struct packed_ref_store *refs, 606const char*refname) 607{ 608returnfind_ref_entry(get_packed_refs(refs), refname); 609} 610 611/* 612 * A loose ref file doesn't exist; check for a packed ref. 613 */ 614static intresolve_packed_ref(struct files_ref_store *refs, 615const char*refname, 616unsigned char*sha1,unsigned int*flags) 617{ 618struct ref_entry *entry; 619 620/* 621 * The loose reference file does not exist; check for a packed 622 * reference. 623 */ 624 entry =get_packed_ref(refs->packed_ref_store, refname); 625if(entry) { 626hashcpy(sha1, entry->u.value.oid.hash); 627*flags |= REF_ISPACKED; 628return0; 629} 630/* refname is not a packed reference. */ 631return-1; 632} 633 634static intfiles_read_raw_ref(struct ref_store *ref_store, 635const char*refname,unsigned char*sha1, 636struct strbuf *referent,unsigned int*type) 637{ 638struct files_ref_store *refs = 639files_downcast(ref_store, REF_STORE_READ,"read_raw_ref"); 640struct strbuf sb_contents = STRBUF_INIT; 641struct strbuf sb_path = STRBUF_INIT; 642const char*path; 643const char*buf; 644struct stat st; 645int fd; 646int ret = -1; 647int save_errno; 648int remaining_retries =3; 649 650*type =0; 651strbuf_reset(&sb_path); 652 653files_ref_path(refs, &sb_path, refname); 654 655 path = sb_path.buf; 656 657stat_ref: 658/* 659 * We might have to loop back here to avoid a race 660 * condition: first we lstat() the file, then we try 661 * to read it as a link or as a file. But if somebody 662 * changes the type of the file (file <-> directory 663 * <-> symlink) between the lstat() and reading, then 664 * we don't want to report that as an error but rather 665 * try again starting with the lstat(). 666 * 667 * We'll keep a count of the retries, though, just to avoid 668 * any confusing situation sending us into an infinite loop. 669 */ 670 671if(remaining_retries-- <=0) 672goto out; 673 674if(lstat(path, &st) <0) { 675if(errno != ENOENT) 676goto out; 677if(resolve_packed_ref(refs, refname, sha1, type)) { 678 errno = ENOENT; 679goto out; 680} 681 ret =0; 682goto out; 683} 684 685/* Follow "normalized" - ie "refs/.." symlinks by hand */ 686if(S_ISLNK(st.st_mode)) { 687strbuf_reset(&sb_contents); 688if(strbuf_readlink(&sb_contents, path,0) <0) { 689if(errno == ENOENT || errno == EINVAL) 690/* inconsistent with lstat; retry */ 691goto stat_ref; 692else 693goto out; 694} 695if(starts_with(sb_contents.buf,"refs/") && 696!check_refname_format(sb_contents.buf,0)) { 697strbuf_swap(&sb_contents, referent); 698*type |= REF_ISSYMREF; 699 ret =0; 700goto out; 701} 702/* 703 * It doesn't look like a refname; fall through to just 704 * treating it like a non-symlink, and reading whatever it 705 * points to. 706 */ 707} 708 709/* Is it a directory? */ 710if(S_ISDIR(st.st_mode)) { 711/* 712 * Even though there is a directory where the loose 713 * ref is supposed to be, there could still be a 714 * packed ref: 715 */ 716if(resolve_packed_ref(refs, refname, sha1, type)) { 717 errno = EISDIR; 718goto out; 719} 720 ret =0; 721goto out; 722} 723 724/* 725 * Anything else, just open it and try to use it as 726 * a ref 727 */ 728 fd =open(path, O_RDONLY); 729if(fd <0) { 730if(errno == ENOENT && !S_ISLNK(st.st_mode)) 731/* inconsistent with lstat; retry */ 732goto stat_ref; 733else 734goto out; 735} 736strbuf_reset(&sb_contents); 737if(strbuf_read(&sb_contents, fd,256) <0) { 738int save_errno = errno; 739close(fd); 740 errno = save_errno; 741goto out; 742} 743close(fd); 744strbuf_rtrim(&sb_contents); 745 buf = sb_contents.buf; 746if(starts_with(buf,"ref:")) { 747 buf +=4; 748while(isspace(*buf)) 749 buf++; 750 751strbuf_reset(referent); 752strbuf_addstr(referent, buf); 753*type |= REF_ISSYMREF; 754 ret =0; 755goto out; 756} 757 758/* 759 * Please note that FETCH_HEAD has additional 760 * data after the sha. 761 */ 762if(get_sha1_hex(buf, sha1) || 763(buf[40] !='\0'&& !isspace(buf[40]))) { 764*type |= REF_ISBROKEN; 765 errno = EINVAL; 766goto out; 767} 768 769 ret =0; 770 771out: 772 save_errno = errno; 773strbuf_release(&sb_path); 774strbuf_release(&sb_contents); 775 errno = save_errno; 776return ret; 777} 778 779static voidunlock_ref(struct ref_lock *lock) 780{ 781/* Do not free lock->lk -- atexit() still looks at them */ 782if(lock->lk) 783rollback_lock_file(lock->lk); 784free(lock->ref_name); 785free(lock); 786} 787 788/* 789 * Lock refname, without following symrefs, and set *lock_p to point 790 * at a newly-allocated lock object. Fill in lock->old_oid, referent, 791 * and type similarly to read_raw_ref(). 792 * 793 * The caller must verify that refname is a "safe" reference name (in 794 * the sense of refname_is_safe()) before calling this function. 795 * 796 * If the reference doesn't already exist, verify that refname doesn't 797 * have a D/F conflict with any existing references. extras and skip 798 * are passed to refs_verify_refname_available() for this check. 799 * 800 * If mustexist is not set and the reference is not found or is 801 * broken, lock the reference anyway but clear sha1. 802 * 803 * Return 0 on success. On failure, write an error message to err and 804 * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR. 805 * 806 * Implementation note: This function is basically 807 * 808 * lock reference 809 * read_raw_ref() 810 * 811 * but it includes a lot more code to 812 * - Deal with possible races with other processes 813 * - Avoid calling refs_verify_refname_available() when it can be 814 * avoided, namely if we were successfully able to read the ref 815 * - Generate informative error messages in the case of failure 816 */ 817static intlock_raw_ref(struct files_ref_store *refs, 818const char*refname,int mustexist, 819const struct string_list *extras, 820const struct string_list *skip, 821struct ref_lock **lock_p, 822struct strbuf *referent, 823unsigned int*type, 824struct strbuf *err) 825{ 826struct ref_lock *lock; 827struct strbuf ref_file = STRBUF_INIT; 828int attempts_remaining =3; 829int ret = TRANSACTION_GENERIC_ERROR; 830 831assert(err); 832files_assert_main_repository(refs,"lock_raw_ref"); 833 834*type =0; 835 836/* First lock the file so it can't change out from under us. */ 837 838*lock_p = lock =xcalloc(1,sizeof(*lock)); 839 840 lock->ref_name =xstrdup(refname); 841files_ref_path(refs, &ref_file, refname); 842 843retry: 844switch(safe_create_leading_directories(ref_file.buf)) { 845case SCLD_OK: 846break;/* success */ 847case SCLD_EXISTS: 848/* 849 * Suppose refname is "refs/foo/bar". We just failed 850 * to create the containing directory, "refs/foo", 851 * because there was a non-directory in the way. This 852 * indicates a D/F conflict, probably because of 853 * another reference such as "refs/foo". There is no 854 * reason to expect this error to be transitory. 855 */ 856if(refs_verify_refname_available(&refs->base, refname, 857 extras, skip, err)) { 858if(mustexist) { 859/* 860 * To the user the relevant error is 861 * that the "mustexist" reference is 862 * missing: 863 */ 864strbuf_reset(err); 865strbuf_addf(err,"unable to resolve reference '%s'", 866 refname); 867}else{ 868/* 869 * The error message set by 870 * refs_verify_refname_available() is 871 * OK. 872 */ 873 ret = TRANSACTION_NAME_CONFLICT; 874} 875}else{ 876/* 877 * The file that is in the way isn't a loose 878 * reference. Report it as a low-level 879 * failure. 880 */ 881strbuf_addf(err,"unable to create lock file%s.lock; " 882"non-directory in the way", 883 ref_file.buf); 884} 885goto error_return; 886case SCLD_VANISHED: 887/* Maybe another process was tidying up. Try again. */ 888if(--attempts_remaining >0) 889goto retry; 890/* fall through */ 891default: 892strbuf_addf(err,"unable to create directory for%s", 893 ref_file.buf); 894goto error_return; 895} 896 897if(!lock->lk) 898 lock->lk =xcalloc(1,sizeof(struct lock_file)); 899 900if(hold_lock_file_for_update(lock->lk, ref_file.buf, LOCK_NO_DEREF) <0) { 901if(errno == ENOENT && --attempts_remaining >0) { 902/* 903 * Maybe somebody just deleted one of the 904 * directories leading to ref_file. Try 905 * again: 906 */ 907goto retry; 908}else{ 909unable_to_lock_message(ref_file.buf, errno, err); 910goto error_return; 911} 912} 913 914/* 915 * Now we hold the lock and can read the reference without 916 * fear that its value will change. 917 */ 918 919if(files_read_raw_ref(&refs->base, refname, 920 lock->old_oid.hash, referent, type)) { 921if(errno == ENOENT) { 922if(mustexist) { 923/* Garden variety missing reference. */ 924strbuf_addf(err,"unable to resolve reference '%s'", 925 refname); 926goto error_return; 927}else{ 928/* 929 * Reference is missing, but that's OK. We 930 * know that there is not a conflict with 931 * another loose reference because 932 * (supposing that we are trying to lock 933 * reference "refs/foo/bar"): 934 * 935 * - We were successfully able to create 936 * the lockfile refs/foo/bar.lock, so we 937 * know there cannot be a loose reference 938 * named "refs/foo". 939 * 940 * - We got ENOENT and not EISDIR, so we 941 * know that there cannot be a loose 942 * reference named "refs/foo/bar/baz". 943 */ 944} 945}else if(errno == EISDIR) { 946/* 947 * There is a directory in the way. It might have 948 * contained references that have been deleted. If 949 * we don't require that the reference already 950 * exists, try to remove the directory so that it 951 * doesn't cause trouble when we want to rename the 952 * lockfile into place later. 953 */ 954if(mustexist) { 955/* Garden variety missing reference. */ 956strbuf_addf(err,"unable to resolve reference '%s'", 957 refname); 958goto error_return; 959}else if(remove_dir_recursively(&ref_file, 960 REMOVE_DIR_EMPTY_ONLY)) { 961if(refs_verify_refname_available( 962&refs->base, refname, 963 extras, skip, err)) { 964/* 965 * The error message set by 966 * verify_refname_available() is OK. 967 */ 968 ret = TRANSACTION_NAME_CONFLICT; 969goto error_return; 970}else{ 971/* 972 * We can't delete the directory, 973 * but we also don't know of any 974 * references that it should 975 * contain. 976 */ 977strbuf_addf(err,"there is a non-empty directory '%s' " 978"blocking reference '%s'", 979 ref_file.buf, refname); 980goto error_return; 981} 982} 983}else if(errno == EINVAL && (*type & REF_ISBROKEN)) { 984strbuf_addf(err,"unable to resolve reference '%s': " 985"reference broken", refname); 986goto error_return; 987}else{ 988strbuf_addf(err,"unable to resolve reference '%s':%s", 989 refname,strerror(errno)); 990goto error_return; 991} 992 993/* 994 * If the ref did not exist and we are creating it, 995 * make sure there is no existing ref that conflicts 996 * with refname: 997 */ 998if(refs_verify_refname_available( 999&refs->base, refname,1000 extras, skip, err))1001goto error_return;1002}10031004 ret =0;1005goto out;10061007error_return:1008unlock_ref(lock);1009*lock_p = NULL;10101011out:1012strbuf_release(&ref_file);1013return ret;1014}10151016static intpacked_peel_ref(struct packed_ref_store *refs,1017const char*refname,unsigned char*sha1)1018{1019struct ref_entry *r =get_packed_ref(refs, refname);10201021if(!r ||peel_entry(r,0))1022return-1;10231024hashcpy(sha1, r->u.value.peeled.hash);1025return0;1026}10271028static intfiles_peel_ref(struct ref_store *ref_store,1029const char*refname,unsigned char*sha1)1030{1031struct files_ref_store *refs =1032files_downcast(ref_store, REF_STORE_READ | REF_STORE_ODB,1033"peel_ref");1034int flag;1035unsigned char base[20];10361037if(current_ref_iter && current_ref_iter->refname == refname) {1038struct object_id peeled;10391040if(ref_iterator_peel(current_ref_iter, &peeled))1041return-1;1042hashcpy(sha1, peeled.hash);1043return0;1044}10451046if(refs_read_ref_full(ref_store, refname,1047 RESOLVE_REF_READING, base, &flag))1048return-1;10491050/*1051 * If the reference is packed, read its ref_entry from the1052 * cache in the hope that we already know its peeled value.1053 * We only try this optimization on packed references because1054 * (a) forcing the filling of the loose reference cache could1055 * be expensive and (b) loose references anyway usually do not1056 * have REF_KNOWS_PEELED.1057 */1058if(flag & REF_ISPACKED &&1059!packed_peel_ref(refs->packed_ref_store, refname, sha1))1060return0;10611062returnpeel_object(base, sha1);1063}10641065struct files_ref_iterator {1066struct ref_iterator base;10671068struct packed_ref_cache *packed_ref_cache;1069struct ref_iterator *iter0;1070unsigned int flags;1071};10721073static intfiles_ref_iterator_advance(struct ref_iterator *ref_iterator)1074{1075struct files_ref_iterator *iter =1076(struct files_ref_iterator *)ref_iterator;1077int ok;10781079while((ok =ref_iterator_advance(iter->iter0)) == ITER_OK) {1080if(iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY &&1081ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE)1082continue;10831084if(!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&1085!ref_resolves_to_object(iter->iter0->refname,1086 iter->iter0->oid,1087 iter->iter0->flags))1088continue;10891090 iter->base.refname = iter->iter0->refname;1091 iter->base.oid = iter->iter0->oid;1092 iter->base.flags = iter->iter0->flags;1093return ITER_OK;1094}10951096 iter->iter0 = NULL;1097if(ref_iterator_abort(ref_iterator) != ITER_DONE)1098 ok = ITER_ERROR;10991100return ok;1101}11021103static intfiles_ref_iterator_peel(struct ref_iterator *ref_iterator,1104struct object_id *peeled)1105{1106struct files_ref_iterator *iter =1107(struct files_ref_iterator *)ref_iterator;11081109returnref_iterator_peel(iter->iter0, peeled);1110}11111112static intfiles_ref_iterator_abort(struct ref_iterator *ref_iterator)1113{1114struct files_ref_iterator *iter =1115(struct files_ref_iterator *)ref_iterator;1116int ok = ITER_DONE;11171118if(iter->iter0)1119 ok =ref_iterator_abort(iter->iter0);11201121release_packed_ref_cache(iter->packed_ref_cache);1122base_ref_iterator_free(ref_iterator);1123return ok;1124}11251126static struct ref_iterator_vtable files_ref_iterator_vtable = {1127 files_ref_iterator_advance,1128 files_ref_iterator_peel,1129 files_ref_iterator_abort1130};11311132static struct ref_iterator *files_ref_iterator_begin(1133struct ref_store *ref_store,1134const char*prefix,unsigned int flags)1135{1136struct files_ref_store *refs;1137struct ref_iterator *loose_iter, *packed_iter;1138struct files_ref_iterator *iter;1139struct ref_iterator *ref_iterator;1140unsigned int required_flags = REF_STORE_READ;11411142if(!(flags & DO_FOR_EACH_INCLUDE_BROKEN))1143 required_flags |= REF_STORE_ODB;11441145 refs =files_downcast(ref_store, required_flags,"ref_iterator_begin");11461147 iter =xcalloc(1,sizeof(*iter));1148 ref_iterator = &iter->base;1149base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable);11501151/*1152 * We must make sure that all loose refs are read before1153 * accessing the packed-refs file; this avoids a race1154 * condition if loose refs are migrated to the packed-refs1155 * file by a simultaneous process, but our in-memory view is1156 * from before the migration. We ensure this as follows:1157 * First, we call start the loose refs iteration with its1158 * `prime_ref` argument set to true. This causes the loose1159 * references in the subtree to be pre-read into the cache.1160 * (If they've already been read, that's OK; we only need to1161 * guarantee that they're read before the packed refs, not1162 * *how much* before.) After that, we call1163 * get_packed_ref_cache(), which internally checks whether the1164 * packed-ref cache is up to date with what is on disk, and1165 * re-reads it if not.1166 */11671168 loose_iter =cache_ref_iterator_begin(get_loose_ref_cache(refs),1169 prefix,1);11701171 iter->packed_ref_cache =get_packed_ref_cache(refs->packed_ref_store);1172acquire_packed_ref_cache(iter->packed_ref_cache);1173 packed_iter =cache_ref_iterator_begin(iter->packed_ref_cache->cache,1174 prefix,0);11751176 iter->iter0 =overlay_ref_iterator_begin(loose_iter, packed_iter);1177 iter->flags = flags;11781179return ref_iterator;1180}11811182/*1183 * Verify that the reference locked by lock has the value old_sha1.1184 * Fail if the reference doesn't exist and mustexist is set. Return 01185 * on success. On error, write an error message to err, set errno, and1186 * return a negative value.1187 */1188static intverify_lock(struct ref_store *ref_store,struct ref_lock *lock,1189const unsigned char*old_sha1,int mustexist,1190struct strbuf *err)1191{1192assert(err);11931194if(refs_read_ref_full(ref_store, lock->ref_name,1195 mustexist ? RESOLVE_REF_READING :0,1196 lock->old_oid.hash, NULL)) {1197if(old_sha1) {1198int save_errno = errno;1199strbuf_addf(err,"can't verify ref '%s'", lock->ref_name);1200 errno = save_errno;1201return-1;1202}else{1203oidclr(&lock->old_oid);1204return0;1205}1206}1207if(old_sha1 &&hashcmp(lock->old_oid.hash, old_sha1)) {1208strbuf_addf(err,"ref '%s' is at%sbut expected%s",1209 lock->ref_name,1210oid_to_hex(&lock->old_oid),1211sha1_to_hex(old_sha1));1212 errno = EBUSY;1213return-1;1214}1215return0;1216}12171218static intremove_empty_directories(struct strbuf *path)1219{1220/*1221 * we want to create a file but there is a directory there;1222 * if that is an empty directory (or a directory that contains1223 * only empty directories), remove them.1224 */1225returnremove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY);1226}12271228static intcreate_reflock(const char*path,void*cb)1229{1230struct lock_file *lk = cb;12311232returnhold_lock_file_for_update(lk, path, LOCK_NO_DEREF) <0? -1:0;1233}12341235/*1236 * Locks a ref returning the lock on success and NULL on failure.1237 * On failure errno is set to something meaningful.1238 */1239static struct ref_lock *lock_ref_sha1_basic(struct files_ref_store *refs,1240const char*refname,1241const unsigned char*old_sha1,1242const struct string_list *extras,1243const struct string_list *skip,1244unsigned int flags,int*type,1245struct strbuf *err)1246{1247struct strbuf ref_file = STRBUF_INIT;1248struct ref_lock *lock;1249int last_errno =0;1250int mustexist = (old_sha1 && !is_null_sha1(old_sha1));1251int resolve_flags = RESOLVE_REF_NO_RECURSE;1252int resolved;12531254files_assert_main_repository(refs,"lock_ref_sha1_basic");1255assert(err);12561257 lock =xcalloc(1,sizeof(struct ref_lock));12581259if(mustexist)1260 resolve_flags |= RESOLVE_REF_READING;1261if(flags & REF_DELETING)1262 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;12631264files_ref_path(refs, &ref_file, refname);1265 resolved = !!refs_resolve_ref_unsafe(&refs->base,1266 refname, resolve_flags,1267 lock->old_oid.hash, type);1268if(!resolved && errno == EISDIR) {1269/*1270 * we are trying to lock foo but we used to1271 * have foo/bar which now does not exist;1272 * it is normal for the empty directory 'foo'1273 * to remain.1274 */1275if(remove_empty_directories(&ref_file)) {1276 last_errno = errno;1277if(!refs_verify_refname_available(1278&refs->base,1279 refname, extras, skip, err))1280strbuf_addf(err,"there are still refs under '%s'",1281 refname);1282goto error_return;1283}1284 resolved = !!refs_resolve_ref_unsafe(&refs->base,1285 refname, resolve_flags,1286 lock->old_oid.hash, type);1287}1288if(!resolved) {1289 last_errno = errno;1290if(last_errno != ENOTDIR ||1291!refs_verify_refname_available(&refs->base, refname,1292 extras, skip, err))1293strbuf_addf(err,"unable to resolve reference '%s':%s",1294 refname,strerror(last_errno));12951296goto error_return;1297}12981299/*1300 * If the ref did not exist and we are creating it, make sure1301 * there is no existing packed ref whose name begins with our1302 * refname, nor a packed ref whose name is a proper prefix of1303 * our refname.1304 */1305if(is_null_oid(&lock->old_oid) &&1306refs_verify_refname_available(&refs->base, refname,1307 extras, skip, err)) {1308 last_errno = ENOTDIR;1309goto error_return;1310}13111312 lock->lk =xcalloc(1,sizeof(struct lock_file));13131314 lock->ref_name =xstrdup(refname);13151316if(raceproof_create_file(ref_file.buf, create_reflock, lock->lk)) {1317 last_errno = errno;1318unable_to_lock_message(ref_file.buf, errno, err);1319goto error_return;1320}13211322if(verify_lock(&refs->base, lock, old_sha1, mustexist, err)) {1323 last_errno = errno;1324goto error_return;1325}1326goto out;13271328 error_return:1329unlock_ref(lock);1330 lock = NULL;13311332 out:1333strbuf_release(&ref_file);1334 errno = last_errno;1335return lock;1336}13371338/*1339 * Write an entry to the packed-refs file for the specified refname.1340 * If peeled is non-NULL, write it as the entry's peeled value.1341 */1342static voidwrite_packed_entry(FILE*fh,const char*refname,1343const unsigned char*sha1,1344const unsigned char*peeled)1345{1346fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);1347if(peeled)1348fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));1349}13501351/*1352 * Lock the packed-refs file for writing. Flags is passed to1353 * hold_lock_file_for_update(). Return 0 on success. On errors, set1354 * errno appropriately and return a nonzero value.1355 */1356static intlock_packed_refs(struct packed_ref_store *refs,int flags)1357{1358static int timeout_configured =0;1359static int timeout_value =1000;1360struct packed_ref_cache *packed_ref_cache;13611362packed_assert_main_repository(refs,"lock_packed_refs");13631364if(!timeout_configured) {1365git_config_get_int("core.packedrefstimeout", &timeout_value);1366 timeout_configured =1;1367}13681369if(hold_lock_file_for_update_timeout(1370&refs->lock,1371 refs->path,1372 flags, timeout_value) <0)1373return-1;13741375/*1376 * Now that we hold the `packed-refs` lock, make sure that our1377 * cache matches the current version of the file. Normally1378 * `get_packed_ref_cache()` does that for us, but that1379 * function assumes that when the file is locked, any existing1380 * cache is still valid. We've just locked the file, but it1381 * might have changed the moment *before* we locked it.1382 */1383validate_packed_ref_cache(refs);13841385 packed_ref_cache =get_packed_ref_cache(refs);1386/* Increment the reference count to prevent it from being freed: */1387acquire_packed_ref_cache(packed_ref_cache);1388return0;1389}13901391/*1392 * Write the current version of the packed refs cache from memory to1393 * disk. The packed-refs file must already be locked for writing (see1394 * lock_packed_refs()). Return zero on success. On errors, set errno1395 * and return a nonzero value1396 */1397static intcommit_packed_refs(struct packed_ref_store *refs)1398{1399struct packed_ref_cache *packed_ref_cache =1400get_packed_ref_cache(refs);1401int ok, error =0;1402int save_errno =0;1403FILE*out;1404struct ref_iterator *iter;14051406packed_assert_main_repository(refs,"commit_packed_refs");14071408if(!is_lock_file_locked(&refs->lock))1409die("BUG: packed-refs not locked");14101411 out =fdopen_lock_file(&refs->lock,"w");1412if(!out)1413die_errno("unable to fdopen packed-refs descriptor");14141415fprintf_or_die(out,"%s", PACKED_REFS_HEADER);14161417 iter =cache_ref_iterator_begin(packed_ref_cache->cache, NULL,0);1418while((ok =ref_iterator_advance(iter)) == ITER_OK) {1419struct object_id peeled;1420int peel_error =ref_iterator_peel(iter, &peeled);14211422write_packed_entry(out, iter->refname, iter->oid->hash,1423 peel_error ? NULL : peeled.hash);1424}14251426if(ok != ITER_DONE)1427die("error while iterating over references");14281429if(commit_lock_file(&refs->lock)) {1430 save_errno = errno;1431 error = -1;1432}1433release_packed_ref_cache(packed_ref_cache);1434 errno = save_errno;1435return error;1436}14371438/*1439 * Rollback the lockfile for the packed-refs file, and discard the1440 * in-memory packed reference cache. (The packed-refs file will be1441 * read anew if it is needed again after this function is called.)1442 */1443static voidrollback_packed_refs(struct packed_ref_store *refs)1444{1445struct packed_ref_cache *packed_ref_cache =get_packed_ref_cache(refs);14461447packed_assert_main_repository(refs,"rollback_packed_refs");14481449if(!is_lock_file_locked(&refs->lock))1450die("BUG: packed-refs not locked");1451rollback_lock_file(&refs->lock);1452release_packed_ref_cache(packed_ref_cache);1453clear_packed_ref_cache(refs);1454}14551456struct ref_to_prune {1457struct ref_to_prune *next;1458unsigned char sha1[20];1459char name[FLEX_ARRAY];1460};14611462enum{1463 REMOVE_EMPTY_PARENTS_REF =0x01,1464 REMOVE_EMPTY_PARENTS_REFLOG =0x021465};14661467/*1468 * Remove empty parent directories associated with the specified1469 * reference and/or its reflog, but spare [logs/]refs/ and immediate1470 * subdirs. flags is a combination of REMOVE_EMPTY_PARENTS_REF and/or1471 * REMOVE_EMPTY_PARENTS_REFLOG.1472 */1473static voidtry_remove_empty_parents(struct files_ref_store *refs,1474const char*refname,1475unsigned int flags)1476{1477struct strbuf buf = STRBUF_INIT;1478struct strbuf sb = STRBUF_INIT;1479char*p, *q;1480int i;14811482strbuf_addstr(&buf, refname);1483 p = buf.buf;1484for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */1485while(*p && *p !='/')1486 p++;1487/* tolerate duplicate slashes; see check_refname_format() */1488while(*p =='/')1489 p++;1490}1491 q = buf.buf + buf.len;1492while(flags & (REMOVE_EMPTY_PARENTS_REF | REMOVE_EMPTY_PARENTS_REFLOG)) {1493while(q > p && *q !='/')1494 q--;1495while(q > p && *(q-1) =='/')1496 q--;1497if(q == p)1498break;1499strbuf_setlen(&buf, q - buf.buf);15001501strbuf_reset(&sb);1502files_ref_path(refs, &sb, buf.buf);1503if((flags & REMOVE_EMPTY_PARENTS_REF) &&rmdir(sb.buf))1504 flags &= ~REMOVE_EMPTY_PARENTS_REF;15051506strbuf_reset(&sb);1507files_reflog_path(refs, &sb, buf.buf);1508if((flags & REMOVE_EMPTY_PARENTS_REFLOG) &&rmdir(sb.buf))1509 flags &= ~REMOVE_EMPTY_PARENTS_REFLOG;1510}1511strbuf_release(&buf);1512strbuf_release(&sb);1513}15141515/* make sure nobody touched the ref, and unlink */1516static voidprune_ref(struct files_ref_store *refs,struct ref_to_prune *r)1517{1518struct ref_transaction *transaction;1519struct strbuf err = STRBUF_INIT;15201521if(check_refname_format(r->name,0))1522return;15231524 transaction =ref_store_transaction_begin(&refs->base, &err);1525if(!transaction ||1526ref_transaction_delete(transaction, r->name, r->sha1,1527 REF_ISPRUNING | REF_NODEREF, NULL, &err) ||1528ref_transaction_commit(transaction, &err)) {1529ref_transaction_free(transaction);1530error("%s", err.buf);1531strbuf_release(&err);1532return;1533}1534ref_transaction_free(transaction);1535strbuf_release(&err);1536}15371538static voidprune_refs(struct files_ref_store *refs,struct ref_to_prune *r)1539{1540while(r) {1541prune_ref(refs, r);1542 r = r->next;1543}1544}15451546/*1547 * Return true if the specified reference should be packed.1548 */1549static intshould_pack_ref(const char*refname,1550const struct object_id *oid,unsigned int ref_flags,1551unsigned int pack_flags)1552{1553/* Do not pack per-worktree refs: */1554if(ref_type(refname) != REF_TYPE_NORMAL)1555return0;15561557/* Do not pack non-tags unless PACK_REFS_ALL is set: */1558if(!(pack_flags & PACK_REFS_ALL) && !starts_with(refname,"refs/tags/"))1559return0;15601561/* Do not pack symbolic refs: */1562if(ref_flags & REF_ISSYMREF)1563return0;15641565/* Do not pack broken refs: */1566if(!ref_resolves_to_object(refname, oid, ref_flags))1567return0;15681569return1;1570}15711572static intfiles_pack_refs(struct ref_store *ref_store,unsigned int flags)1573{1574struct files_ref_store *refs =1575files_downcast(ref_store, REF_STORE_WRITE | REF_STORE_ODB,1576"pack_refs");1577struct ref_iterator *iter;1578int ok;1579struct ref_to_prune *refs_to_prune = NULL;15801581lock_packed_refs(refs->packed_ref_store, LOCK_DIE_ON_ERROR);15821583 iter =cache_ref_iterator_begin(get_loose_ref_cache(refs), NULL,0);1584while((ok =ref_iterator_advance(iter)) == ITER_OK) {1585/*1586 * If the loose reference can be packed, add an entry1587 * in the packed ref cache. If the reference should be1588 * pruned, also add it to refs_to_prune.1589 */1590if(!should_pack_ref(iter->refname, iter->oid, iter->flags,1591 flags))1592continue;15931594/*1595 * Create an entry in the packed-refs cache equivalent1596 * to the one from the loose ref cache, except that1597 * we don't copy the peeled status, because we want it1598 * to be re-peeled.1599 */1600add_packed_ref(refs->packed_ref_store, iter->refname, iter->oid);16011602/* Schedule the loose reference for pruning if requested. */1603if((flags & PACK_REFS_PRUNE)) {1604struct ref_to_prune *n;1605FLEX_ALLOC_STR(n, name, iter->refname);1606hashcpy(n->sha1, iter->oid->hash);1607 n->next = refs_to_prune;1608 refs_to_prune = n;1609}1610}1611if(ok != ITER_DONE)1612die("error while iterating over references");16131614if(commit_packed_refs(refs->packed_ref_store))1615die_errno("unable to overwrite old ref-pack file");16161617prune_refs(refs, refs_to_prune);1618return0;1619}16201621/*1622 * Rewrite the packed-refs file, omitting any refs listed in1623 * 'refnames'. On error, leave packed-refs unchanged, write an error1624 * message to 'err', and return a nonzero value.1625 *1626 * The refs in 'refnames' needn't be sorted. `err` must not be NULL.1627 */1628static intrepack_without_refs(struct packed_ref_store *refs,1629struct string_list *refnames,struct strbuf *err)1630{1631struct ref_dir *packed;1632struct string_list_item *refname;1633int ret, needs_repacking =0, removed =0;16341635packed_assert_main_repository(refs,"repack_without_refs");1636assert(err);16371638/* Look for a packed ref */1639for_each_string_list_item(refname, refnames) {1640if(get_packed_ref(refs, refname->string)) {1641 needs_repacking =1;1642break;1643}1644}16451646/* Avoid locking if we have nothing to do */1647if(!needs_repacking)1648return0;/* no refname exists in packed refs */16491650if(lock_packed_refs(refs,0)) {1651unable_to_lock_message(refs->path, errno, err);1652return-1;1653}1654 packed =get_packed_refs(refs);16551656/* Remove refnames from the cache */1657for_each_string_list_item(refname, refnames)1658if(remove_entry_from_dir(packed, refname->string) != -1)1659 removed =1;1660if(!removed) {1661/*1662 * All packed entries disappeared while we were1663 * acquiring the lock.1664 */1665rollback_packed_refs(refs);1666return0;1667}16681669/* Write what remains */1670 ret =commit_packed_refs(refs);1671if(ret)1672strbuf_addf(err,"unable to overwrite old ref-pack file:%s",1673strerror(errno));1674return ret;1675}16761677static intfiles_delete_refs(struct ref_store *ref_store,const char*msg,1678struct string_list *refnames,unsigned int flags)1679{1680struct files_ref_store *refs =1681files_downcast(ref_store, REF_STORE_WRITE,"delete_refs");1682struct strbuf err = STRBUF_INIT;1683int i, result =0;16841685if(!refnames->nr)1686return0;16871688 result =repack_without_refs(refs->packed_ref_store, refnames, &err);1689if(result) {1690/*1691 * If we failed to rewrite the packed-refs file, then1692 * it is unsafe to try to remove loose refs, because1693 * doing so might expose an obsolete packed value for1694 * a reference that might even point at an object that1695 * has been garbage collected.1696 */1697if(refnames->nr ==1)1698error(_("could not delete reference%s:%s"),1699 refnames->items[0].string, err.buf);1700else1701error(_("could not delete references:%s"), err.buf);17021703goto out;1704}17051706for(i =0; i < refnames->nr; i++) {1707const char*refname = refnames->items[i].string;17081709if(refs_delete_ref(&refs->base, msg, refname, NULL, flags))1710 result |=error(_("could not remove reference%s"), refname);1711}17121713out:1714strbuf_release(&err);1715return result;1716}17171718/*1719 * People using contrib's git-new-workdir have .git/logs/refs ->1720 * /some/other/path/.git/logs/refs, and that may live on another device.1721 *1722 * IOW, to avoid cross device rename errors, the temporary renamed log must1723 * live into logs/refs.1724 */1725#define TMP_RENAMED_LOG"refs/.tmp-renamed-log"17261727struct rename_cb {1728const char*tmp_renamed_log;1729int true_errno;1730};17311732static intrename_tmp_log_callback(const char*path,void*cb_data)1733{1734struct rename_cb *cb = cb_data;17351736if(rename(cb->tmp_renamed_log, path)) {1737/*1738 * rename(a, b) when b is an existing directory ought1739 * to result in ISDIR, but Solaris 5.8 gives ENOTDIR.1740 * Sheesh. Record the true errno for error reporting,1741 * but report EISDIR to raceproof_create_file() so1742 * that it knows to retry.1743 */1744 cb->true_errno = errno;1745if(errno == ENOTDIR)1746 errno = EISDIR;1747return-1;1748}else{1749return0;1750}1751}17521753static intrename_tmp_log(struct files_ref_store *refs,const char*newrefname)1754{1755struct strbuf path = STRBUF_INIT;1756struct strbuf tmp = STRBUF_INIT;1757struct rename_cb cb;1758int ret;17591760files_reflog_path(refs, &path, newrefname);1761files_reflog_path(refs, &tmp, TMP_RENAMED_LOG);1762 cb.tmp_renamed_log = tmp.buf;1763 ret =raceproof_create_file(path.buf, rename_tmp_log_callback, &cb);1764if(ret) {1765if(errno == EISDIR)1766error("directory not empty:%s", path.buf);1767else1768error("unable to move logfile%sto%s:%s",1769 tmp.buf, path.buf,1770strerror(cb.true_errno));1771}17721773strbuf_release(&path);1774strbuf_release(&tmp);1775return ret;1776}17771778static intwrite_ref_to_lockfile(struct ref_lock *lock,1779const struct object_id *oid,struct strbuf *err);1780static intcommit_ref_update(struct files_ref_store *refs,1781struct ref_lock *lock,1782const struct object_id *oid,const char*logmsg,1783struct strbuf *err);17841785static intfiles_rename_ref(struct ref_store *ref_store,1786const char*oldrefname,const char*newrefname,1787const char*logmsg)1788{1789struct files_ref_store *refs =1790files_downcast(ref_store, REF_STORE_WRITE,"rename_ref");1791struct object_id oid, orig_oid;1792int flag =0, logmoved =0;1793struct ref_lock *lock;1794struct stat loginfo;1795struct strbuf sb_oldref = STRBUF_INIT;1796struct strbuf sb_newref = STRBUF_INIT;1797struct strbuf tmp_renamed_log = STRBUF_INIT;1798int log, ret;1799struct strbuf err = STRBUF_INIT;18001801files_reflog_path(refs, &sb_oldref, oldrefname);1802files_reflog_path(refs, &sb_newref, newrefname);1803files_reflog_path(refs, &tmp_renamed_log, TMP_RENAMED_LOG);18041805 log = !lstat(sb_oldref.buf, &loginfo);1806if(log &&S_ISLNK(loginfo.st_mode)) {1807 ret =error("reflog for%sis a symlink", oldrefname);1808goto out;1809}18101811if(!refs_resolve_ref_unsafe(&refs->base, oldrefname,1812 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1813 orig_oid.hash, &flag)) {1814 ret =error("refname%snot found", oldrefname);1815goto out;1816}18171818if(flag & REF_ISSYMREF) {1819 ret =error("refname%sis a symbolic ref, renaming it is not supported",1820 oldrefname);1821goto out;1822}1823if(!refs_rename_ref_available(&refs->base, oldrefname, newrefname)) {1824 ret =1;1825goto out;1826}18271828if(log &&rename(sb_oldref.buf, tmp_renamed_log.buf)) {1829 ret =error("unable to move logfile logs/%sto logs/"TMP_RENAMED_LOG":%s",1830 oldrefname,strerror(errno));1831goto out;1832}18331834if(refs_delete_ref(&refs->base, logmsg, oldrefname,1835 orig_oid.hash, REF_NODEREF)) {1836error("unable to delete old%s", oldrefname);1837goto rollback;1838}18391840/*1841 * Since we are doing a shallow lookup, oid is not the1842 * correct value to pass to delete_ref as old_oid. But that1843 * doesn't matter, because an old_oid check wouldn't add to1844 * the safety anyway; we want to delete the reference whatever1845 * its current value.1846 */1847if(!refs_read_ref_full(&refs->base, newrefname,1848 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,1849 oid.hash, NULL) &&1850refs_delete_ref(&refs->base, NULL, newrefname,1851 NULL, REF_NODEREF)) {1852if(errno == EISDIR) {1853struct strbuf path = STRBUF_INIT;1854int result;18551856files_ref_path(refs, &path, newrefname);1857 result =remove_empty_directories(&path);1858strbuf_release(&path);18591860if(result) {1861error("Directory not empty:%s", newrefname);1862goto rollback;1863}1864}else{1865error("unable to delete existing%s", newrefname);1866goto rollback;1867}1868}18691870if(log &&rename_tmp_log(refs, newrefname))1871goto rollback;18721873 logmoved = log;18741875 lock =lock_ref_sha1_basic(refs, newrefname, NULL, NULL, NULL,1876 REF_NODEREF, NULL, &err);1877if(!lock) {1878error("unable to rename '%s' to '%s':%s", oldrefname, newrefname, err.buf);1879strbuf_release(&err);1880goto rollback;1881}1882oidcpy(&lock->old_oid, &orig_oid);18831884if(write_ref_to_lockfile(lock, &orig_oid, &err) ||1885commit_ref_update(refs, lock, &orig_oid, logmsg, &err)) {1886error("unable to write current sha1 into%s:%s", newrefname, err.buf);1887strbuf_release(&err);1888goto rollback;1889}18901891 ret =0;1892goto out;18931894 rollback:1895 lock =lock_ref_sha1_basic(refs, oldrefname, NULL, NULL, NULL,1896 REF_NODEREF, NULL, &err);1897if(!lock) {1898error("unable to lock%sfor rollback:%s", oldrefname, err.buf);1899strbuf_release(&err);1900goto rollbacklog;1901}19021903 flag = log_all_ref_updates;1904 log_all_ref_updates = LOG_REFS_NONE;1905if(write_ref_to_lockfile(lock, &orig_oid, &err) ||1906commit_ref_update(refs, lock, &orig_oid, NULL, &err)) {1907error("unable to write current sha1 into%s:%s", oldrefname, err.buf);1908strbuf_release(&err);1909}1910 log_all_ref_updates = flag;19111912 rollbacklog:1913if(logmoved &&rename(sb_newref.buf, sb_oldref.buf))1914error("unable to restore logfile%sfrom%s:%s",1915 oldrefname, newrefname,strerror(errno));1916if(!logmoved && log &&1917rename(tmp_renamed_log.buf, sb_oldref.buf))1918error("unable to restore logfile%sfrom logs/"TMP_RENAMED_LOG":%s",1919 oldrefname,strerror(errno));1920 ret =1;1921 out:1922strbuf_release(&sb_newref);1923strbuf_release(&sb_oldref);1924strbuf_release(&tmp_renamed_log);19251926return ret;1927}19281929static intclose_ref(struct ref_lock *lock)1930{1931if(close_lock_file(lock->lk))1932return-1;1933return0;1934}19351936static intcommit_ref(struct ref_lock *lock)1937{1938char*path =get_locked_file_path(lock->lk);1939struct stat st;19401941if(!lstat(path, &st) &&S_ISDIR(st.st_mode)) {1942/*1943 * There is a directory at the path we want to rename1944 * the lockfile to. Hopefully it is empty; try to1945 * delete it.1946 */1947size_t len =strlen(path);1948struct strbuf sb_path = STRBUF_INIT;19491950strbuf_attach(&sb_path, path, len, len);19511952/*1953 * If this fails, commit_lock_file() will also fail1954 * and will report the problem.1955 */1956remove_empty_directories(&sb_path);1957strbuf_release(&sb_path);1958}else{1959free(path);1960}19611962if(commit_lock_file(lock->lk))1963return-1;1964return0;1965}19661967static intopen_or_create_logfile(const char*path,void*cb)1968{1969int*fd = cb;19701971*fd =open(path, O_APPEND | O_WRONLY | O_CREAT,0666);1972return(*fd <0) ? -1:0;1973}19741975/*1976 * Create a reflog for a ref. If force_create = 0, only create the1977 * reflog for certain refs (those for which should_autocreate_reflog1978 * returns non-zero). Otherwise, create it regardless of the reference1979 * name. If the logfile already existed or was created, return 0 and1980 * set *logfd to the file descriptor opened for appending to the file.1981 * If no logfile exists and we decided not to create one, return 0 and1982 * set *logfd to -1. On failure, fill in *err, set *logfd to -1, and1983 * return -1.1984 */1985static intlog_ref_setup(struct files_ref_store *refs,1986const char*refname,int force_create,1987int*logfd,struct strbuf *err)1988{1989struct strbuf logfile_sb = STRBUF_INIT;1990char*logfile;19911992files_reflog_path(refs, &logfile_sb, refname);1993 logfile =strbuf_detach(&logfile_sb, NULL);19941995if(force_create ||should_autocreate_reflog(refname)) {1996if(raceproof_create_file(logfile, open_or_create_logfile, logfd)) {1997if(errno == ENOENT)1998strbuf_addf(err,"unable to create directory for '%s': "1999"%s", logfile,strerror(errno));2000else if(errno == EISDIR)2001strbuf_addf(err,"there are still logs under '%s'",2002 logfile);2003else2004strbuf_addf(err,"unable to append to '%s':%s",2005 logfile,strerror(errno));20062007goto error;2008}2009}else{2010*logfd =open(logfile, O_APPEND | O_WRONLY,0666);2011if(*logfd <0) {2012if(errno == ENOENT || errno == EISDIR) {2013/*2014 * The logfile doesn't already exist,2015 * but that is not an error; it only2016 * means that we won't write log2017 * entries to it.2018 */2019;2020}else{2021strbuf_addf(err,"unable to append to '%s':%s",2022 logfile,strerror(errno));2023goto error;2024}2025}2026}20272028if(*logfd >=0)2029adjust_shared_perm(logfile);20302031free(logfile);2032return0;20332034error:2035free(logfile);2036return-1;2037}20382039static intfiles_create_reflog(struct ref_store *ref_store,2040const char*refname,int force_create,2041struct strbuf *err)2042{2043struct files_ref_store *refs =2044files_downcast(ref_store, REF_STORE_WRITE,"create_reflog");2045int fd;20462047if(log_ref_setup(refs, refname, force_create, &fd, err))2048return-1;20492050if(fd >=0)2051close(fd);20522053return0;2054}20552056static intlog_ref_write_fd(int fd,const struct object_id *old_oid,2057const struct object_id *new_oid,2058const char*committer,const char*msg)2059{2060int msglen, written;2061unsigned maxlen, len;2062char*logrec;20632064 msglen = msg ?strlen(msg) :0;2065 maxlen =strlen(committer) + msglen +100;2066 logrec =xmalloc(maxlen);2067 len =xsnprintf(logrec, maxlen,"%s %s %s\n",2068oid_to_hex(old_oid),2069oid_to_hex(new_oid),2070 committer);2071if(msglen)2072 len +=copy_reflog_msg(logrec + len -1, msg) -1;20732074 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;2075free(logrec);2076if(written != len)2077return-1;20782079return0;2080}20812082static intfiles_log_ref_write(struct files_ref_store *refs,2083const char*refname,const struct object_id *old_oid,2084const struct object_id *new_oid,const char*msg,2085int flags,struct strbuf *err)2086{2087int logfd, result;20882089if(log_all_ref_updates == LOG_REFS_UNSET)2090 log_all_ref_updates =is_bare_repository() ? LOG_REFS_NONE : LOG_REFS_NORMAL;20912092 result =log_ref_setup(refs, refname,2093 flags & REF_FORCE_CREATE_REFLOG,2094&logfd, err);20952096if(result)2097return result;20982099if(logfd <0)2100return0;2101 result =log_ref_write_fd(logfd, old_oid, new_oid,2102git_committer_info(0), msg);2103if(result) {2104struct strbuf sb = STRBUF_INIT;2105int save_errno = errno;21062107files_reflog_path(refs, &sb, refname);2108strbuf_addf(err,"unable to append to '%s':%s",2109 sb.buf,strerror(save_errno));2110strbuf_release(&sb);2111close(logfd);2112return-1;2113}2114if(close(logfd)) {2115struct strbuf sb = STRBUF_INIT;2116int save_errno = errno;21172118files_reflog_path(refs, &sb, refname);2119strbuf_addf(err,"unable to append to '%s':%s",2120 sb.buf,strerror(save_errno));2121strbuf_release(&sb);2122return-1;2123}2124return0;2125}21262127/*2128 * Write sha1 into the open lockfile, then close the lockfile. On2129 * errors, rollback the lockfile, fill in *err and2130 * return -1.2131 */2132static intwrite_ref_to_lockfile(struct ref_lock *lock,2133const struct object_id *oid,struct strbuf *err)2134{2135static char term ='\n';2136struct object *o;2137int fd;21382139 o =parse_object(oid);2140if(!o) {2141strbuf_addf(err,2142"trying to write ref '%s' with nonexistent object%s",2143 lock->ref_name,oid_to_hex(oid));2144unlock_ref(lock);2145return-1;2146}2147if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {2148strbuf_addf(err,2149"trying to write non-commit object%sto branch '%s'",2150oid_to_hex(oid), lock->ref_name);2151unlock_ref(lock);2152return-1;2153}2154 fd =get_lock_file_fd(lock->lk);2155if(write_in_full(fd,oid_to_hex(oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||2156write_in_full(fd, &term,1) !=1||2157close_ref(lock) <0) {2158strbuf_addf(err,2159"couldn't write '%s'",get_lock_file_path(lock->lk));2160unlock_ref(lock);2161return-1;2162}2163return0;2164}21652166/*2167 * Commit a change to a loose reference that has already been written2168 * to the loose reference lockfile. Also update the reflogs if2169 * necessary, using the specified lockmsg (which can be NULL).2170 */2171static intcommit_ref_update(struct files_ref_store *refs,2172struct ref_lock *lock,2173const struct object_id *oid,const char*logmsg,2174struct strbuf *err)2175{2176files_assert_main_repository(refs,"commit_ref_update");21772178clear_loose_ref_cache(refs);2179if(files_log_ref_write(refs, lock->ref_name,2180&lock->old_oid, oid,2181 logmsg,0, err)) {2182char*old_msg =strbuf_detach(err, NULL);2183strbuf_addf(err,"cannot update the ref '%s':%s",2184 lock->ref_name, old_msg);2185free(old_msg);2186unlock_ref(lock);2187return-1;2188}21892190if(strcmp(lock->ref_name,"HEAD") !=0) {2191/*2192 * Special hack: If a branch is updated directly and HEAD2193 * points to it (may happen on the remote side of a push2194 * for example) then logically the HEAD reflog should be2195 * updated too.2196 * A generic solution implies reverse symref information,2197 * but finding all symrefs pointing to the given branch2198 * would be rather costly for this rare event (the direct2199 * update of a branch) to be worth it. So let's cheat and2200 * check with HEAD only which should cover 99% of all usage2201 * scenarios (even 100% of the default ones).2202 */2203struct object_id head_oid;2204int head_flag;2205const char*head_ref;22062207 head_ref =refs_resolve_ref_unsafe(&refs->base,"HEAD",2208 RESOLVE_REF_READING,2209 head_oid.hash, &head_flag);2210if(head_ref && (head_flag & REF_ISSYMREF) &&2211!strcmp(head_ref, lock->ref_name)) {2212struct strbuf log_err = STRBUF_INIT;2213if(files_log_ref_write(refs,"HEAD",2214&lock->old_oid, oid,2215 logmsg,0, &log_err)) {2216error("%s", log_err.buf);2217strbuf_release(&log_err);2218}2219}2220}22212222if(commit_ref(lock)) {2223strbuf_addf(err,"couldn't set '%s'", lock->ref_name);2224unlock_ref(lock);2225return-1;2226}22272228unlock_ref(lock);2229return0;2230}22312232static intcreate_ref_symlink(struct ref_lock *lock,const char*target)2233{2234int ret = -1;2235#ifndef NO_SYMLINK_HEAD2236char*ref_path =get_locked_file_path(lock->lk);2237unlink(ref_path);2238 ret =symlink(target, ref_path);2239free(ref_path);22402241if(ret)2242fprintf(stderr,"no symlink - falling back to symbolic ref\n");2243#endif2244return ret;2245}22462247static voidupdate_symref_reflog(struct files_ref_store *refs,2248struct ref_lock *lock,const char*refname,2249const char*target,const char*logmsg)2250{2251struct strbuf err = STRBUF_INIT;2252struct object_id new_oid;2253if(logmsg &&2254!refs_read_ref_full(&refs->base, target,2255 RESOLVE_REF_READING, new_oid.hash, NULL) &&2256files_log_ref_write(refs, refname, &lock->old_oid,2257&new_oid, logmsg,0, &err)) {2258error("%s", err.buf);2259strbuf_release(&err);2260}2261}22622263static intcreate_symref_locked(struct files_ref_store *refs,2264struct ref_lock *lock,const char*refname,2265const char*target,const char*logmsg)2266{2267if(prefer_symlink_refs && !create_ref_symlink(lock, target)) {2268update_symref_reflog(refs, lock, refname, target, logmsg);2269return0;2270}22712272if(!fdopen_lock_file(lock->lk,"w"))2273returnerror("unable to fdopen%s:%s",2274 lock->lk->tempfile.filename.buf,strerror(errno));22752276update_symref_reflog(refs, lock, refname, target, logmsg);22772278/* no error check; commit_ref will check ferror */2279fprintf(lock->lk->tempfile.fp,"ref:%s\n", target);2280if(commit_ref(lock) <0)2281returnerror("unable to write symref for%s:%s", refname,2282strerror(errno));2283return0;2284}22852286static intfiles_create_symref(struct ref_store *ref_store,2287const char*refname,const char*target,2288const char*logmsg)2289{2290struct files_ref_store *refs =2291files_downcast(ref_store, REF_STORE_WRITE,"create_symref");2292struct strbuf err = STRBUF_INIT;2293struct ref_lock *lock;2294int ret;22952296 lock =lock_ref_sha1_basic(refs, refname, NULL,2297 NULL, NULL, REF_NODEREF, NULL,2298&err);2299if(!lock) {2300error("%s", err.buf);2301strbuf_release(&err);2302return-1;2303}23042305 ret =create_symref_locked(refs, lock, refname, target, logmsg);2306unlock_ref(lock);2307return ret;2308}23092310static intfiles_reflog_exists(struct ref_store *ref_store,2311const char*refname)2312{2313struct files_ref_store *refs =2314files_downcast(ref_store, REF_STORE_READ,"reflog_exists");2315struct strbuf sb = STRBUF_INIT;2316struct stat st;2317int ret;23182319files_reflog_path(refs, &sb, refname);2320 ret = !lstat(sb.buf, &st) &&S_ISREG(st.st_mode);2321strbuf_release(&sb);2322return ret;2323}23242325static intfiles_delete_reflog(struct ref_store *ref_store,2326const char*refname)2327{2328struct files_ref_store *refs =2329files_downcast(ref_store, REF_STORE_WRITE,"delete_reflog");2330struct strbuf sb = STRBUF_INIT;2331int ret;23322333files_reflog_path(refs, &sb, refname);2334 ret =remove_path(sb.buf);2335strbuf_release(&sb);2336return ret;2337}23382339static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)2340{2341struct object_id ooid, noid;2342char*email_end, *message;2343 timestamp_t timestamp;2344int tz;2345const char*p = sb->buf;23462347/* old SP new SP name <email> SP time TAB msg LF */2348if(!sb->len || sb->buf[sb->len -1] !='\n'||2349parse_oid_hex(p, &ooid, &p) || *p++ !=' '||2350parse_oid_hex(p, &noid, &p) || *p++ !=' '||2351!(email_end =strchr(p,'>')) ||2352 email_end[1] !=' '||2353!(timestamp =parse_timestamp(email_end +2, &message,10)) ||2354!message || message[0] !=' '||2355(message[1] !='+'&& message[1] !='-') ||2356!isdigit(message[2]) || !isdigit(message[3]) ||2357!isdigit(message[4]) || !isdigit(message[5]))2358return0;/* corrupt? */2359 email_end[1] ='\0';2360 tz =strtol(message +1, NULL,10);2361if(message[6] !='\t')2362 message +=6;2363else2364 message +=7;2365returnfn(&ooid, &noid, p, timestamp, tz, message, cb_data);2366}23672368static char*find_beginning_of_line(char*bob,char*scan)2369{2370while(bob < scan && *(--scan) !='\n')2371;/* keep scanning backwards */2372/*2373 * Return either beginning of the buffer, or LF at the end of2374 * the previous line.2375 */2376return scan;2377}23782379static intfiles_for_each_reflog_ent_reverse(struct ref_store *ref_store,2380const char*refname,2381 each_reflog_ent_fn fn,2382void*cb_data)2383{2384struct files_ref_store *refs =2385files_downcast(ref_store, REF_STORE_READ,2386"for_each_reflog_ent_reverse");2387struct strbuf sb = STRBUF_INIT;2388FILE*logfp;2389long pos;2390int ret =0, at_tail =1;23912392files_reflog_path(refs, &sb, refname);2393 logfp =fopen(sb.buf,"r");2394strbuf_release(&sb);2395if(!logfp)2396return-1;23972398/* Jump to the end */2399if(fseek(logfp,0, SEEK_END) <0)2400 ret =error("cannot seek back reflog for%s:%s",2401 refname,strerror(errno));2402 pos =ftell(logfp);2403while(!ret &&0< pos) {2404int cnt;2405size_t nread;2406char buf[BUFSIZ];2407char*endp, *scanp;24082409/* Fill next block from the end */2410 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;2411if(fseek(logfp, pos - cnt, SEEK_SET)) {2412 ret =error("cannot seek back reflog for%s:%s",2413 refname,strerror(errno));2414break;2415}2416 nread =fread(buf, cnt,1, logfp);2417if(nread !=1) {2418 ret =error("cannot read%dbytes from reflog for%s:%s",2419 cnt, refname,strerror(errno));2420break;2421}2422 pos -= cnt;24232424 scanp = endp = buf + cnt;2425if(at_tail && scanp[-1] =='\n')2426/* Looking at the final LF at the end of the file */2427 scanp--;2428 at_tail =0;24292430while(buf < scanp) {2431/*2432 * terminating LF of the previous line, or the beginning2433 * of the buffer.2434 */2435char*bp;24362437 bp =find_beginning_of_line(buf, scanp);24382439if(*bp =='\n') {2440/*2441 * The newline is the end of the previous line,2442 * so we know we have complete line starting2443 * at (bp + 1). Prefix it onto any prior data2444 * we collected for the line and process it.2445 */2446strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));2447 scanp = bp;2448 endp = bp +1;2449 ret =show_one_reflog_ent(&sb, fn, cb_data);2450strbuf_reset(&sb);2451if(ret)2452break;2453}else if(!pos) {2454/*2455 * We are at the start of the buffer, and the2456 * start of the file; there is no previous2457 * line, and we have everything for this one.2458 * Process it, and we can end the loop.2459 */2460strbuf_splice(&sb,0,0, buf, endp - buf);2461 ret =show_one_reflog_ent(&sb, fn, cb_data);2462strbuf_reset(&sb);2463break;2464}24652466if(bp == buf) {2467/*2468 * We are at the start of the buffer, and there2469 * is more file to read backwards. Which means2470 * we are in the middle of a line. Note that we2471 * may get here even if *bp was a newline; that2472 * just means we are at the exact end of the2473 * previous line, rather than some spot in the2474 * middle.2475 *2476 * Save away what we have to be combined with2477 * the data from the next read.2478 */2479strbuf_splice(&sb,0,0, buf, endp - buf);2480break;2481}2482}24832484}2485if(!ret && sb.len)2486die("BUG: reverse reflog parser had leftover data");24872488fclose(logfp);2489strbuf_release(&sb);2490return ret;2491}24922493static intfiles_for_each_reflog_ent(struct ref_store *ref_store,2494const char*refname,2495 each_reflog_ent_fn fn,void*cb_data)2496{2497struct files_ref_store *refs =2498files_downcast(ref_store, REF_STORE_READ,2499"for_each_reflog_ent");2500FILE*logfp;2501struct strbuf sb = STRBUF_INIT;2502int ret =0;25032504files_reflog_path(refs, &sb, refname);2505 logfp =fopen(sb.buf,"r");2506strbuf_release(&sb);2507if(!logfp)2508return-1;25092510while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))2511 ret =show_one_reflog_ent(&sb, fn, cb_data);2512fclose(logfp);2513strbuf_release(&sb);2514return ret;2515}25162517struct files_reflog_iterator {2518struct ref_iterator base;25192520struct ref_store *ref_store;2521struct dir_iterator *dir_iterator;2522struct object_id oid;2523};25242525static intfiles_reflog_iterator_advance(struct ref_iterator *ref_iterator)2526{2527struct files_reflog_iterator *iter =2528(struct files_reflog_iterator *)ref_iterator;2529struct dir_iterator *diter = iter->dir_iterator;2530int ok;25312532while((ok =dir_iterator_advance(diter)) == ITER_OK) {2533int flags;25342535if(!S_ISREG(diter->st.st_mode))2536continue;2537if(diter->basename[0] =='.')2538continue;2539if(ends_with(diter->basename,".lock"))2540continue;25412542if(refs_read_ref_full(iter->ref_store,2543 diter->relative_path,0,2544 iter->oid.hash, &flags)) {2545error("bad ref for%s", diter->path.buf);2546continue;2547}25482549 iter->base.refname = diter->relative_path;2550 iter->base.oid = &iter->oid;2551 iter->base.flags = flags;2552return ITER_OK;2553}25542555 iter->dir_iterator = NULL;2556if(ref_iterator_abort(ref_iterator) == ITER_ERROR)2557 ok = ITER_ERROR;2558return ok;2559}25602561static intfiles_reflog_iterator_peel(struct ref_iterator *ref_iterator,2562struct object_id *peeled)2563{2564die("BUG: ref_iterator_peel() called for reflog_iterator");2565}25662567static intfiles_reflog_iterator_abort(struct ref_iterator *ref_iterator)2568{2569struct files_reflog_iterator *iter =2570(struct files_reflog_iterator *)ref_iterator;2571int ok = ITER_DONE;25722573if(iter->dir_iterator)2574 ok =dir_iterator_abort(iter->dir_iterator);25752576base_ref_iterator_free(ref_iterator);2577return ok;2578}25792580static struct ref_iterator_vtable files_reflog_iterator_vtable = {2581 files_reflog_iterator_advance,2582 files_reflog_iterator_peel,2583 files_reflog_iterator_abort2584};25852586static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store)2587{2588struct files_ref_store *refs =2589files_downcast(ref_store, REF_STORE_READ,2590"reflog_iterator_begin");2591struct files_reflog_iterator *iter =xcalloc(1,sizeof(*iter));2592struct ref_iterator *ref_iterator = &iter->base;2593struct strbuf sb = STRBUF_INIT;25942595base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable);2596files_reflog_path(refs, &sb, NULL);2597 iter->dir_iterator =dir_iterator_begin(sb.buf);2598 iter->ref_store = ref_store;2599strbuf_release(&sb);2600return ref_iterator;2601}26022603/*2604 * If update is a direct update of head_ref (the reference pointed to2605 * by HEAD), then add an extra REF_LOG_ONLY update for HEAD.2606 */2607static intsplit_head_update(struct ref_update *update,2608struct ref_transaction *transaction,2609const char*head_ref,2610struct string_list *affected_refnames,2611struct strbuf *err)2612{2613struct string_list_item *item;2614struct ref_update *new_update;26152616if((update->flags & REF_LOG_ONLY) ||2617(update->flags & REF_ISPRUNING) ||2618(update->flags & REF_UPDATE_VIA_HEAD))2619return0;26202621if(strcmp(update->refname, head_ref))2622return0;26232624/*2625 * First make sure that HEAD is not already in the2626 * transaction. This insertion is O(N) in the transaction2627 * size, but it happens at most once per transaction.2628 */2629 item =string_list_insert(affected_refnames,"HEAD");2630if(item->util) {2631/* An entry already existed */2632strbuf_addf(err,2633"multiple updates for 'HEAD' (including one "2634"via its referent '%s') are not allowed",2635 update->refname);2636return TRANSACTION_NAME_CONFLICT;2637}26382639 new_update =ref_transaction_add_update(2640 transaction,"HEAD",2641 update->flags | REF_LOG_ONLY | REF_NODEREF,2642 update->new_oid.hash, update->old_oid.hash,2643 update->msg);26442645 item->util = new_update;26462647return0;2648}26492650/*2651 * update is for a symref that points at referent and doesn't have2652 * REF_NODEREF set. Split it into two updates:2653 * - The original update, but with REF_LOG_ONLY and REF_NODEREF set2654 * - A new, separate update for the referent reference2655 * Note that the new update will itself be subject to splitting when2656 * the iteration gets to it.2657 */2658static intsplit_symref_update(struct files_ref_store *refs,2659struct ref_update *update,2660const char*referent,2661struct ref_transaction *transaction,2662struct string_list *affected_refnames,2663struct strbuf *err)2664{2665struct string_list_item *item;2666struct ref_update *new_update;2667unsigned int new_flags;26682669/*2670 * First make sure that referent is not already in the2671 * transaction. This insertion is O(N) in the transaction2672 * size, but it happens at most once per symref in a2673 * transaction.2674 */2675 item =string_list_insert(affected_refnames, referent);2676if(item->util) {2677/* An entry already existed */2678strbuf_addf(err,2679"multiple updates for '%s' (including one "2680"via symref '%s') are not allowed",2681 referent, update->refname);2682return TRANSACTION_NAME_CONFLICT;2683}26842685 new_flags = update->flags;2686if(!strcmp(update->refname,"HEAD")) {2687/*2688 * Record that the new update came via HEAD, so that2689 * when we process it, split_head_update() doesn't try2690 * to add another reflog update for HEAD. Note that2691 * this bit will be propagated if the new_update2692 * itself needs to be split.2693 */2694 new_flags |= REF_UPDATE_VIA_HEAD;2695}26962697 new_update =ref_transaction_add_update(2698 transaction, referent, new_flags,2699 update->new_oid.hash, update->old_oid.hash,2700 update->msg);27012702 new_update->parent_update = update;27032704/*2705 * Change the symbolic ref update to log only. Also, it2706 * doesn't need to check its old SHA-1 value, as that will be2707 * done when new_update is processed.2708 */2709 update->flags |= REF_LOG_ONLY | REF_NODEREF;2710 update->flags &= ~REF_HAVE_OLD;27112712 item->util = new_update;27132714return0;2715}27162717/*2718 * Return the refname under which update was originally requested.2719 */2720static const char*original_update_refname(struct ref_update *update)2721{2722while(update->parent_update)2723 update = update->parent_update;27242725return update->refname;2726}27272728/*2729 * Check whether the REF_HAVE_OLD and old_oid values stored in update2730 * are consistent with oid, which is the reference's current value. If2731 * everything is OK, return 0; otherwise, write an error message to2732 * err and return -1.2733 */2734static intcheck_old_oid(struct ref_update *update,struct object_id *oid,2735struct strbuf *err)2736{2737if(!(update->flags & REF_HAVE_OLD) ||2738!oidcmp(oid, &update->old_oid))2739return0;27402741if(is_null_oid(&update->old_oid))2742strbuf_addf(err,"cannot lock ref '%s': "2743"reference already exists",2744original_update_refname(update));2745else if(is_null_oid(oid))2746strbuf_addf(err,"cannot lock ref '%s': "2747"reference is missing but expected%s",2748original_update_refname(update),2749oid_to_hex(&update->old_oid));2750else2751strbuf_addf(err,"cannot lock ref '%s': "2752"is at%sbut expected%s",2753original_update_refname(update),2754oid_to_hex(oid),2755oid_to_hex(&update->old_oid));27562757return-1;2758}27592760/*2761 * Prepare for carrying out update:2762 * - Lock the reference referred to by update.2763 * - Read the reference under lock.2764 * - Check that its old SHA-1 value (if specified) is correct, and in2765 * any case record it in update->lock->old_oid for later use when2766 * writing the reflog.2767 * - If it is a symref update without REF_NODEREF, split it up into a2768 * REF_LOG_ONLY update of the symref and add a separate update for2769 * the referent to transaction.2770 * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY2771 * update of HEAD.2772 */2773static intlock_ref_for_update(struct files_ref_store *refs,2774struct ref_update *update,2775struct ref_transaction *transaction,2776const char*head_ref,2777struct string_list *affected_refnames,2778struct strbuf *err)2779{2780struct strbuf referent = STRBUF_INIT;2781int mustexist = (update->flags & REF_HAVE_OLD) &&2782!is_null_oid(&update->old_oid);2783int ret;2784struct ref_lock *lock;27852786files_assert_main_repository(refs,"lock_ref_for_update");27872788if((update->flags & REF_HAVE_NEW) &&is_null_oid(&update->new_oid))2789 update->flags |= REF_DELETING;27902791if(head_ref) {2792 ret =split_head_update(update, transaction, head_ref,2793 affected_refnames, err);2794if(ret)2795return ret;2796}27972798 ret =lock_raw_ref(refs, update->refname, mustexist,2799 affected_refnames, NULL,2800&lock, &referent,2801&update->type, err);2802if(ret) {2803char*reason;28042805 reason =strbuf_detach(err, NULL);2806strbuf_addf(err,"cannot lock ref '%s':%s",2807original_update_refname(update), reason);2808free(reason);2809return ret;2810}28112812 update->backend_data = lock;28132814if(update->type & REF_ISSYMREF) {2815if(update->flags & REF_NODEREF) {2816/*2817 * We won't be reading the referent as part of2818 * the transaction, so we have to read it here2819 * to record and possibly check old_sha1:2820 */2821if(refs_read_ref_full(&refs->base,2822 referent.buf,0,2823 lock->old_oid.hash, NULL)) {2824if(update->flags & REF_HAVE_OLD) {2825strbuf_addf(err,"cannot lock ref '%s': "2826"error reading reference",2827original_update_refname(update));2828return-1;2829}2830}else if(check_old_oid(update, &lock->old_oid, err)) {2831return TRANSACTION_GENERIC_ERROR;2832}2833}else{2834/*2835 * Create a new update for the reference this2836 * symref is pointing at. Also, we will record2837 * and verify old_sha1 for this update as part2838 * of processing the split-off update, so we2839 * don't have to do it here.2840 */2841 ret =split_symref_update(refs, update,2842 referent.buf, transaction,2843 affected_refnames, err);2844if(ret)2845return ret;2846}2847}else{2848struct ref_update *parent_update;28492850if(check_old_oid(update, &lock->old_oid, err))2851return TRANSACTION_GENERIC_ERROR;28522853/*2854 * If this update is happening indirectly because of a2855 * symref update, record the old SHA-1 in the parent2856 * update:2857 */2858for(parent_update = update->parent_update;2859 parent_update;2860 parent_update = parent_update->parent_update) {2861struct ref_lock *parent_lock = parent_update->backend_data;2862oidcpy(&parent_lock->old_oid, &lock->old_oid);2863}2864}28652866if((update->flags & REF_HAVE_NEW) &&2867!(update->flags & REF_DELETING) &&2868!(update->flags & REF_LOG_ONLY)) {2869if(!(update->type & REF_ISSYMREF) &&2870!oidcmp(&lock->old_oid, &update->new_oid)) {2871/*2872 * The reference already has the desired2873 * value, so we don't need to write it.2874 */2875}else if(write_ref_to_lockfile(lock, &update->new_oid,2876 err)) {2877char*write_err =strbuf_detach(err, NULL);28782879/*2880 * The lock was freed upon failure of2881 * write_ref_to_lockfile():2882 */2883 update->backend_data = NULL;2884strbuf_addf(err,2885"cannot update ref '%s':%s",2886 update->refname, write_err);2887free(write_err);2888return TRANSACTION_GENERIC_ERROR;2889}else{2890 update->flags |= REF_NEEDS_COMMIT;2891}2892}2893if(!(update->flags & REF_NEEDS_COMMIT)) {2894/*2895 * We didn't call write_ref_to_lockfile(), so2896 * the lockfile is still open. Close it to2897 * free up the file descriptor:2898 */2899if(close_ref(lock)) {2900strbuf_addf(err,"couldn't close '%s.lock'",2901 update->refname);2902return TRANSACTION_GENERIC_ERROR;2903}2904}2905return0;2906}29072908/*2909 * Unlock any references in `transaction` that are still locked, and2910 * mark the transaction closed.2911 */2912static voidfiles_transaction_cleanup(struct ref_transaction *transaction)2913{2914size_t i;29152916for(i =0; i < transaction->nr; i++) {2917struct ref_update *update = transaction->updates[i];2918struct ref_lock *lock = update->backend_data;29192920if(lock) {2921unlock_ref(lock);2922 update->backend_data = NULL;2923}2924}29252926 transaction->state = REF_TRANSACTION_CLOSED;2927}29282929static intfiles_transaction_prepare(struct ref_store *ref_store,2930struct ref_transaction *transaction,2931struct strbuf *err)2932{2933struct files_ref_store *refs =2934files_downcast(ref_store, REF_STORE_WRITE,2935"ref_transaction_prepare");2936size_t i;2937int ret =0;2938struct string_list affected_refnames = STRING_LIST_INIT_NODUP;2939char*head_ref = NULL;2940int head_type;2941struct object_id head_oid;29422943assert(err);29442945if(!transaction->nr)2946goto cleanup;29472948/*2949 * Fail if a refname appears more than once in the2950 * transaction. (If we end up splitting up any updates using2951 * split_symref_update() or split_head_update(), those2952 * functions will check that the new updates don't have the2953 * same refname as any existing ones.)2954 */2955for(i =0; i < transaction->nr; i++) {2956struct ref_update *update = transaction->updates[i];2957struct string_list_item *item =2958string_list_append(&affected_refnames, update->refname);29592960/*2961 * We store a pointer to update in item->util, but at2962 * the moment we never use the value of this field2963 * except to check whether it is non-NULL.2964 */2965 item->util = update;2966}2967string_list_sort(&affected_refnames);2968if(ref_update_reject_duplicates(&affected_refnames, err)) {2969 ret = TRANSACTION_GENERIC_ERROR;2970goto cleanup;2971}29722973/*2974 * Special hack: If a branch is updated directly and HEAD2975 * points to it (may happen on the remote side of a push2976 * for example) then logically the HEAD reflog should be2977 * updated too.2978 *2979 * A generic solution would require reverse symref lookups,2980 * but finding all symrefs pointing to a given branch would be2981 * rather costly for this rare event (the direct update of a2982 * branch) to be worth it. So let's cheat and check with HEAD2983 * only, which should cover 99% of all usage scenarios (even2984 * 100% of the default ones).2985 *2986 * So if HEAD is a symbolic reference, then record the name of2987 * the reference that it points to. If we see an update of2988 * head_ref within the transaction, then split_head_update()2989 * arranges for the reflog of HEAD to be updated, too.2990 */2991 head_ref =refs_resolve_refdup(ref_store,"HEAD",2992 RESOLVE_REF_NO_RECURSE,2993 head_oid.hash, &head_type);29942995if(head_ref && !(head_type & REF_ISSYMREF)) {2996free(head_ref);2997 head_ref = NULL;2998}29993000/*3001 * Acquire all locks, verify old values if provided, check3002 * that new values are valid, and write new values to the3003 * lockfiles, ready to be activated. Only keep one lockfile3004 * open at a time to avoid running out of file descriptors.3005 * Note that lock_ref_for_update() might append more updates3006 * to the transaction.3007 */3008for(i =0; i < transaction->nr; i++) {3009struct ref_update *update = transaction->updates[i];30103011 ret =lock_ref_for_update(refs, update, transaction,3012 head_ref, &affected_refnames, err);3013if(ret)3014break;3015}30163017cleanup:3018free(head_ref);3019string_list_clear(&affected_refnames,0);30203021if(ret)3022files_transaction_cleanup(transaction);3023else3024 transaction->state = REF_TRANSACTION_PREPARED;30253026return ret;3027}30283029static intfiles_transaction_finish(struct ref_store *ref_store,3030struct ref_transaction *transaction,3031struct strbuf *err)3032{3033struct files_ref_store *refs =3034files_downcast(ref_store,0,"ref_transaction_finish");3035size_t i;3036int ret =0;3037struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3038struct string_list_item *ref_to_delete;3039struct strbuf sb = STRBUF_INIT;30403041assert(err);30423043if(!transaction->nr) {3044 transaction->state = REF_TRANSACTION_CLOSED;3045return0;3046}30473048/* Perform updates first so live commits remain referenced */3049for(i =0; i < transaction->nr; i++) {3050struct ref_update *update = transaction->updates[i];3051struct ref_lock *lock = update->backend_data;30523053if(update->flags & REF_NEEDS_COMMIT ||3054 update->flags & REF_LOG_ONLY) {3055if(files_log_ref_write(refs,3056 lock->ref_name,3057&lock->old_oid,3058&update->new_oid,3059 update->msg, update->flags,3060 err)) {3061char*old_msg =strbuf_detach(err, NULL);30623063strbuf_addf(err,"cannot update the ref '%s':%s",3064 lock->ref_name, old_msg);3065free(old_msg);3066unlock_ref(lock);3067 update->backend_data = NULL;3068 ret = TRANSACTION_GENERIC_ERROR;3069goto cleanup;3070}3071}3072if(update->flags & REF_NEEDS_COMMIT) {3073clear_loose_ref_cache(refs);3074if(commit_ref(lock)) {3075strbuf_addf(err,"couldn't set '%s'", lock->ref_name);3076unlock_ref(lock);3077 update->backend_data = NULL;3078 ret = TRANSACTION_GENERIC_ERROR;3079goto cleanup;3080}3081}3082}3083/* Perform deletes now that updates are safely completed */3084for(i =0; i < transaction->nr; i++) {3085struct ref_update *update = transaction->updates[i];3086struct ref_lock *lock = update->backend_data;30873088if(update->flags & REF_DELETING &&3089!(update->flags & REF_LOG_ONLY)) {3090if(!(update->type & REF_ISPACKED) ||3091 update->type & REF_ISSYMREF) {3092/* It is a loose reference. */3093strbuf_reset(&sb);3094files_ref_path(refs, &sb, lock->ref_name);3095if(unlink_or_msg(sb.buf, err)) {3096 ret = TRANSACTION_GENERIC_ERROR;3097goto cleanup;3098}3099 update->flags |= REF_DELETED_LOOSE;3100}31013102if(!(update->flags & REF_ISPRUNING))3103string_list_append(&refs_to_delete,3104 lock->ref_name);3105}3106}31073108if(repack_without_refs(refs->packed_ref_store, &refs_to_delete, err)) {3109 ret = TRANSACTION_GENERIC_ERROR;3110goto cleanup;3111}31123113/* Delete the reflogs of any references that were deleted: */3114for_each_string_list_item(ref_to_delete, &refs_to_delete) {3115strbuf_reset(&sb);3116files_reflog_path(refs, &sb, ref_to_delete->string);3117if(!unlink_or_warn(sb.buf))3118try_remove_empty_parents(refs, ref_to_delete->string,3119 REMOVE_EMPTY_PARENTS_REFLOG);3120}31213122clear_loose_ref_cache(refs);31233124cleanup:3125files_transaction_cleanup(transaction);31263127for(i =0; i < transaction->nr; i++) {3128struct ref_update *update = transaction->updates[i];31293130if(update->flags & REF_DELETED_LOOSE) {3131/*3132 * The loose reference was deleted. Delete any3133 * empty parent directories. (Note that this3134 * can only work because we have already3135 * removed the lockfile.)3136 */3137try_remove_empty_parents(refs, update->refname,3138 REMOVE_EMPTY_PARENTS_REF);3139}3140}31413142strbuf_release(&sb);3143string_list_clear(&refs_to_delete,0);3144return ret;3145}31463147static intfiles_transaction_abort(struct ref_store *ref_store,3148struct ref_transaction *transaction,3149struct strbuf *err)3150{3151files_transaction_cleanup(transaction);3152return0;3153}31543155static intref_present(const char*refname,3156const struct object_id *oid,int flags,void*cb_data)3157{3158struct string_list *affected_refnames = cb_data;31593160returnstring_list_has_string(affected_refnames, refname);3161}31623163static intfiles_initial_transaction_commit(struct ref_store *ref_store,3164struct ref_transaction *transaction,3165struct strbuf *err)3166{3167struct files_ref_store *refs =3168files_downcast(ref_store, REF_STORE_WRITE,3169"initial_ref_transaction_commit");3170size_t i;3171int ret =0;3172struct string_list affected_refnames = STRING_LIST_INIT_NODUP;31733174assert(err);31753176if(transaction->state != REF_TRANSACTION_OPEN)3177die("BUG: commit called for transaction that is not open");31783179/* Fail if a refname appears more than once in the transaction: */3180for(i =0; i < transaction->nr; i++)3181string_list_append(&affected_refnames,3182 transaction->updates[i]->refname);3183string_list_sort(&affected_refnames);3184if(ref_update_reject_duplicates(&affected_refnames, err)) {3185 ret = TRANSACTION_GENERIC_ERROR;3186goto cleanup;3187}31883189/*3190 * It's really undefined to call this function in an active3191 * repository or when there are existing references: we are3192 * only locking and changing packed-refs, so (1) any3193 * simultaneous processes might try to change a reference at3194 * the same time we do, and (2) any existing loose versions of3195 * the references that we are setting would have precedence3196 * over our values. But some remote helpers create the remote3197 * "HEAD" and "master" branches before calling this function,3198 * so here we really only check that none of the references3199 * that we are creating already exists.3200 */3201if(refs_for_each_rawref(&refs->base, ref_present,3202&affected_refnames))3203die("BUG: initial ref transaction called with existing refs");32043205for(i =0; i < transaction->nr; i++) {3206struct ref_update *update = transaction->updates[i];32073208if((update->flags & REF_HAVE_OLD) &&3209!is_null_oid(&update->old_oid))3210die("BUG: initial ref transaction with old_sha1 set");3211if(refs_verify_refname_available(&refs->base, update->refname,3212&affected_refnames, NULL,3213 err)) {3214 ret = TRANSACTION_NAME_CONFLICT;3215goto cleanup;3216}3217}32183219if(lock_packed_refs(refs->packed_ref_store,0)) {3220strbuf_addf(err,"unable to lock packed-refs file:%s",3221strerror(errno));3222 ret = TRANSACTION_GENERIC_ERROR;3223goto cleanup;3224}32253226for(i =0; i < transaction->nr; i++) {3227struct ref_update *update = transaction->updates[i];32283229if((update->flags & REF_HAVE_NEW) &&3230!is_null_oid(&update->new_oid))3231add_packed_ref(refs->packed_ref_store, update->refname,3232&update->new_oid);3233}32343235if(commit_packed_refs(refs->packed_ref_store)) {3236strbuf_addf(err,"unable to commit packed-refs file:%s",3237strerror(errno));3238 ret = TRANSACTION_GENERIC_ERROR;3239goto cleanup;3240}32413242cleanup:3243 transaction->state = REF_TRANSACTION_CLOSED;3244string_list_clear(&affected_refnames,0);3245return ret;3246}32473248struct expire_reflog_cb {3249unsigned int flags;3250 reflog_expiry_should_prune_fn *should_prune_fn;3251void*policy_cb;3252FILE*newlog;3253struct object_id last_kept_oid;3254};32553256static intexpire_reflog_ent(struct object_id *ooid,struct object_id *noid,3257const char*email, timestamp_t timestamp,int tz,3258const char*message,void*cb_data)3259{3260struct expire_reflog_cb *cb = cb_data;3261struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;32623263if(cb->flags & EXPIRE_REFLOGS_REWRITE)3264 ooid = &cb->last_kept_oid;32653266if((*cb->should_prune_fn)(ooid, noid, email, timestamp, tz,3267 message, policy_cb)) {3268if(!cb->newlog)3269printf("would prune%s", message);3270else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3271printf("prune%s", message);3272}else{3273if(cb->newlog) {3274fprintf(cb->newlog,"%s %s %s%"PRItime" %+05d\t%s",3275oid_to_hex(ooid),oid_to_hex(noid),3276 email, timestamp, tz, message);3277oidcpy(&cb->last_kept_oid, noid);3278}3279if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3280printf("keep%s", message);3281}3282return0;3283}32843285static intfiles_reflog_expire(struct ref_store *ref_store,3286const char*refname,const unsigned char*sha1,3287unsigned int flags,3288 reflog_expiry_prepare_fn prepare_fn,3289 reflog_expiry_should_prune_fn should_prune_fn,3290 reflog_expiry_cleanup_fn cleanup_fn,3291void*policy_cb_data)3292{3293struct files_ref_store *refs =3294files_downcast(ref_store, REF_STORE_WRITE,"reflog_expire");3295static struct lock_file reflog_lock;3296struct expire_reflog_cb cb;3297struct ref_lock *lock;3298struct strbuf log_file_sb = STRBUF_INIT;3299char*log_file;3300int status =0;3301int type;3302struct strbuf err = STRBUF_INIT;3303struct object_id oid;33043305memset(&cb,0,sizeof(cb));3306 cb.flags = flags;3307 cb.policy_cb = policy_cb_data;3308 cb.should_prune_fn = should_prune_fn;33093310/*3311 * The reflog file is locked by holding the lock on the3312 * reference itself, plus we might need to update the3313 * reference if --updateref was specified:3314 */3315 lock =lock_ref_sha1_basic(refs, refname, sha1,3316 NULL, NULL, REF_NODEREF,3317&type, &err);3318if(!lock) {3319error("cannot lock ref '%s':%s", refname, err.buf);3320strbuf_release(&err);3321return-1;3322}3323if(!refs_reflog_exists(ref_store, refname)) {3324unlock_ref(lock);3325return0;3326}33273328files_reflog_path(refs, &log_file_sb, refname);3329 log_file =strbuf_detach(&log_file_sb, NULL);3330if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3331/*3332 * Even though holding $GIT_DIR/logs/$reflog.lock has3333 * no locking implications, we use the lock_file3334 * machinery here anyway because it does a lot of the3335 * work we need, including cleaning up if the program3336 * exits unexpectedly.3337 */3338if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {3339struct strbuf err = STRBUF_INIT;3340unable_to_lock_message(log_file, errno, &err);3341error("%s", err.buf);3342strbuf_release(&err);3343goto failure;3344}3345 cb.newlog =fdopen_lock_file(&reflog_lock,"w");3346if(!cb.newlog) {3347error("cannot fdopen%s(%s)",3348get_lock_file_path(&reflog_lock),strerror(errno));3349goto failure;3350}3351}33523353hashcpy(oid.hash, sha1);33543355(*prepare_fn)(refname, &oid, cb.policy_cb);3356refs_for_each_reflog_ent(ref_store, refname, expire_reflog_ent, &cb);3357(*cleanup_fn)(cb.policy_cb);33583359if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3360/*3361 * It doesn't make sense to adjust a reference pointed3362 * to by a symbolic ref based on expiring entries in3363 * the symbolic reference's reflog. Nor can we update3364 * a reference if there are no remaining reflog3365 * entries.3366 */3367int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&3368!(type & REF_ISSYMREF) &&3369!is_null_oid(&cb.last_kept_oid);33703371if(close_lock_file(&reflog_lock)) {3372 status |=error("couldn't write%s:%s", log_file,3373strerror(errno));3374}else if(update &&3375(write_in_full(get_lock_file_fd(lock->lk),3376oid_to_hex(&cb.last_kept_oid), GIT_SHA1_HEXSZ) != GIT_SHA1_HEXSZ ||3377write_str_in_full(get_lock_file_fd(lock->lk),"\n") !=1||3378close_ref(lock) <0)) {3379 status |=error("couldn't write%s",3380get_lock_file_path(lock->lk));3381rollback_lock_file(&reflog_lock);3382}else if(commit_lock_file(&reflog_lock)) {3383 status |=error("unable to write reflog '%s' (%s)",3384 log_file,strerror(errno));3385}else if(update &&commit_ref(lock)) {3386 status |=error("couldn't set%s", lock->ref_name);3387}3388}3389free(log_file);3390unlock_ref(lock);3391return status;33923393 failure:3394rollback_lock_file(&reflog_lock);3395free(log_file);3396unlock_ref(lock);3397return-1;3398}33993400static intfiles_init_db(struct ref_store *ref_store,struct strbuf *err)3401{3402struct files_ref_store *refs =3403files_downcast(ref_store, REF_STORE_WRITE,"init_db");3404struct strbuf sb = STRBUF_INIT;34053406/*3407 * Create .git/refs/{heads,tags}3408 */3409files_ref_path(refs, &sb,"refs/heads");3410safe_create_dir(sb.buf,1);34113412strbuf_reset(&sb);3413files_ref_path(refs, &sb,"refs/tags");3414safe_create_dir(sb.buf,1);34153416strbuf_release(&sb);3417return0;3418}34193420struct ref_storage_be refs_be_files = {3421 NULL,3422"files",3423 files_ref_store_create,3424 files_init_db,3425 files_transaction_prepare,3426 files_transaction_finish,3427 files_transaction_abort,3428 files_initial_transaction_commit,34293430 files_pack_refs,3431 files_peel_ref,3432 files_create_symref,3433 files_delete_refs,3434 files_rename_ref,34353436 files_ref_iterator_begin,3437 files_read_raw_ref,34383439 files_reflog_iterator_begin,3440 files_for_each_reflog_ent,3441 files_for_each_reflog_ent_reverse,3442 files_reflog_exists,3443 files_create_reflog,3444 files_delete_reflog,3445 files_reflog_expire3446};