1#include"../cache.h" 2#include"../refs.h" 3#include"refs-internal.h" 4#include"../iterator.h" 5#include"../dir-iterator.h" 6#include"../lockfile.h" 7#include"../object.h" 8#include"../dir.h" 9 10struct ref_lock { 11char*ref_name; 12struct lock_file *lk; 13struct object_id old_oid; 14}; 15 16struct ref_entry; 17 18/* 19 * Information used (along with the information in ref_entry) to 20 * describe a single cached reference. This data structure only 21 * occurs embedded in a union in struct ref_entry, and only when 22 * (ref_entry->flag & REF_DIR) is zero. 23 */ 24struct ref_value { 25/* 26 * The name of the object to which this reference resolves 27 * (which may be a tag object). If REF_ISBROKEN, this is 28 * null. If REF_ISSYMREF, then this is the name of the object 29 * referred to by the last reference in the symlink chain. 30 */ 31struct object_id oid; 32 33/* 34 * If REF_KNOWS_PEELED, then this field holds the peeled value 35 * of this reference, or null if the reference is known not to 36 * be peelable. See the documentation for peel_ref() for an 37 * exact definition of "peelable". 38 */ 39struct object_id peeled; 40}; 41 42struct files_ref_store; 43 44/* 45 * Information used (along with the information in ref_entry) to 46 * describe a level in the hierarchy of references. This data 47 * structure only occurs embedded in a union in struct ref_entry, and 48 * only when (ref_entry.flag & REF_DIR) is set. In that case, 49 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 50 * in the directory have already been read: 51 * 52 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 53 * or packed references, already read. 54 * 55 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 56 * references that hasn't been read yet (nor has any of its 57 * subdirectories). 58 * 59 * Entries within a directory are stored within a growable array of 60 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 61 * sorted are sorted by their component name in strcmp() order and the 62 * remaining entries are unsorted. 63 * 64 * Loose references are read lazily, one directory at a time. When a 65 * directory of loose references is read, then all of the references 66 * in that directory are stored, and REF_INCOMPLETE stubs are created 67 * for any subdirectories, but the subdirectories themselves are not 68 * read. The reading is triggered by get_ref_dir(). 69 */ 70struct ref_dir { 71int nr, alloc; 72 73/* 74 * Entries with index 0 <= i < sorted are sorted by name. New 75 * entries are appended to the list unsorted, and are sorted 76 * only when required; thus we avoid the need to sort the list 77 * after the addition of every reference. 78 */ 79int sorted; 80 81/* A pointer to the files_ref_store that contains this ref_dir. */ 82struct files_ref_store *ref_store; 83 84struct ref_entry **entries; 85}; 86 87/* 88 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 89 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 90 * public values; see refs.h. 91 */ 92 93/* 94 * The field ref_entry->u.value.peeled of this value entry contains 95 * the correct peeled value for the reference, which might be 96 * null_sha1 if the reference is not a tag or if it is broken. 97 */ 98#define REF_KNOWS_PEELED 0x10 99 100/* ref_entry represents a directory of references */ 101#define REF_DIR 0x20 102 103/* 104 * Entry has not yet been read from disk (used only for REF_DIR 105 * entries representing loose references) 106 */ 107#define REF_INCOMPLETE 0x40 108 109/* 110 * A ref_entry represents either a reference or a "subdirectory" of 111 * references. 112 * 113 * Each directory in the reference namespace is represented by a 114 * ref_entry with (flags & REF_DIR) set and containing a subdir member 115 * that holds the entries in that directory that have been read so 116 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 117 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 118 * used for loose reference directories. 119 * 120 * References are represented by a ref_entry with (flags & REF_DIR) 121 * unset and a value member that describes the reference's value. The 122 * flag member is at the ref_entry level, but it is also needed to 123 * interpret the contents of the value field (in other words, a 124 * ref_value object is not very much use without the enclosing 125 * ref_entry). 126 * 127 * Reference names cannot end with slash and directories' names are 128 * always stored with a trailing slash (except for the top-level 129 * directory, which is always denoted by ""). This has two nice 130 * consequences: (1) when the entries in each subdir are sorted 131 * lexicographically by name (as they usually are), the references in 132 * a whole tree can be generated in lexicographic order by traversing 133 * the tree in left-to-right, depth-first order; (2) the names of 134 * references and subdirectories cannot conflict, and therefore the 135 * presence of an empty subdirectory does not block the creation of a 136 * similarly-named reference. (The fact that reference names with the 137 * same leading components can conflict *with each other* is a 138 * separate issue that is regulated by verify_refname_available().) 139 * 140 * Please note that the name field contains the fully-qualified 141 * reference (or subdirectory) name. Space could be saved by only 142 * storing the relative names. But that would require the full names 143 * to be generated on the fly when iterating in do_for_each_ref(), and 144 * would break callback functions, who have always been able to assume 145 * that the name strings that they are passed will not be freed during 146 * the iteration. 147 */ 148struct ref_entry { 149unsigned char flag;/* ISSYMREF? ISPACKED? */ 150union{ 151struct ref_value value;/* if not (flags&REF_DIR) */ 152struct ref_dir subdir;/* if (flags&REF_DIR) */ 153} u; 154/* 155 * The full name of the reference (e.g., "refs/heads/master") 156 * or the full name of the directory with a trailing slash 157 * (e.g., "refs/heads/"): 158 */ 159char name[FLEX_ARRAY]; 160}; 161 162static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 163static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len); 164static struct ref_entry *create_dir_entry(struct files_ref_store *ref_store, 165const char*dirname,size_t len, 166int incomplete); 167static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry); 168 169static struct ref_dir *get_ref_dir(struct ref_entry *entry) 170{ 171struct ref_dir *dir; 172assert(entry->flag & REF_DIR); 173 dir = &entry->u.subdir; 174if(entry->flag & REF_INCOMPLETE) { 175read_loose_refs(entry->name, dir); 176 177/* 178 * Manually add refs/bisect, which, being 179 * per-worktree, might not appear in the directory 180 * listing for refs/ in the main repo. 181 */ 182if(!strcmp(entry->name,"refs/")) { 183int pos =search_ref_dir(dir,"refs/bisect/",12); 184if(pos <0) { 185struct ref_entry *child_entry; 186 child_entry =create_dir_entry(dir->ref_store, 187"refs/bisect/", 18812,1); 189add_entry_to_dir(dir, child_entry); 190read_loose_refs("refs/bisect", 191&child_entry->u.subdir); 192} 193} 194 entry->flag &= ~REF_INCOMPLETE; 195} 196return dir; 197} 198 199static struct ref_entry *create_ref_entry(const char*refname, 200const unsigned char*sha1,int flag, 201int check_name) 202{ 203struct ref_entry *ref; 204 205if(check_name && 206check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 207die("Reference has invalid format: '%s'", refname); 208FLEX_ALLOC_STR(ref, name, refname); 209hashcpy(ref->u.value.oid.hash, sha1); 210oidclr(&ref->u.value.peeled); 211 ref->flag = flag; 212return ref; 213} 214 215static voidclear_ref_dir(struct ref_dir *dir); 216 217static voidfree_ref_entry(struct ref_entry *entry) 218{ 219if(entry->flag & REF_DIR) { 220/* 221 * Do not use get_ref_dir() here, as that might 222 * trigger the reading of loose refs. 223 */ 224clear_ref_dir(&entry->u.subdir); 225} 226free(entry); 227} 228 229/* 230 * Add a ref_entry to the end of dir (unsorted). Entry is always 231 * stored directly in dir; no recursion into subdirectories is 232 * done. 233 */ 234static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 235{ 236ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 237 dir->entries[dir->nr++] = entry; 238/* optimize for the case that entries are added in order */ 239if(dir->nr ==1|| 240(dir->nr == dir->sorted +1&& 241strcmp(dir->entries[dir->nr -2]->name, 242 dir->entries[dir->nr -1]->name) <0)) 243 dir->sorted = dir->nr; 244} 245 246/* 247 * Clear and free all entries in dir, recursively. 248 */ 249static voidclear_ref_dir(struct ref_dir *dir) 250{ 251int i; 252for(i =0; i < dir->nr; i++) 253free_ref_entry(dir->entries[i]); 254free(dir->entries); 255 dir->sorted = dir->nr = dir->alloc =0; 256 dir->entries = NULL; 257} 258 259/* 260 * Create a struct ref_entry object for the specified dirname. 261 * dirname is the name of the directory with a trailing slash (e.g., 262 * "refs/heads/") or "" for the top-level directory. 263 */ 264static struct ref_entry *create_dir_entry(struct files_ref_store *ref_store, 265const char*dirname,size_t len, 266int incomplete) 267{ 268struct ref_entry *direntry; 269FLEX_ALLOC_MEM(direntry, name, dirname, len); 270 direntry->u.subdir.ref_store = ref_store; 271 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 272return direntry; 273} 274 275static intref_entry_cmp(const void*a,const void*b) 276{ 277struct ref_entry *one = *(struct ref_entry **)a; 278struct ref_entry *two = *(struct ref_entry **)b; 279returnstrcmp(one->name, two->name); 280} 281 282static voidsort_ref_dir(struct ref_dir *dir); 283 284struct string_slice { 285size_t len; 286const char*str; 287}; 288 289static intref_entry_cmp_sslice(const void*key_,const void*ent_) 290{ 291const struct string_slice *key = key_; 292const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 293int cmp =strncmp(key->str, ent->name, key->len); 294if(cmp) 295return cmp; 296return'\0'- (unsigned char)ent->name[key->len]; 297} 298 299/* 300 * Return the index of the entry with the given refname from the 301 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 302 * no such entry is found. dir must already be complete. 303 */ 304static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 305{ 306struct ref_entry **r; 307struct string_slice key; 308 309if(refname == NULL || !dir->nr) 310return-1; 311 312sort_ref_dir(dir); 313 key.len = len; 314 key.str = refname; 315 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 316 ref_entry_cmp_sslice); 317 318if(r == NULL) 319return-1; 320 321return r - dir->entries; 322} 323 324/* 325 * Search for a directory entry directly within dir (without 326 * recursing). Sort dir if necessary. subdirname must be a directory 327 * name (i.e., end in '/'). If mkdir is set, then create the 328 * directory if it is missing; otherwise, return NULL if the desired 329 * directory cannot be found. dir must already be complete. 330 */ 331static struct ref_dir *search_for_subdir(struct ref_dir *dir, 332const char*subdirname,size_t len, 333int mkdir) 334{ 335int entry_index =search_ref_dir(dir, subdirname, len); 336struct ref_entry *entry; 337if(entry_index == -1) { 338if(!mkdir) 339return NULL; 340/* 341 * Since dir is complete, the absence of a subdir 342 * means that the subdir really doesn't exist; 343 * therefore, create an empty record for it but mark 344 * the record complete. 345 */ 346 entry =create_dir_entry(dir->ref_store, subdirname, len,0); 347add_entry_to_dir(dir, entry); 348}else{ 349 entry = dir->entries[entry_index]; 350} 351returnget_ref_dir(entry); 352} 353 354/* 355 * If refname is a reference name, find the ref_dir within the dir 356 * tree that should hold refname. If refname is a directory name 357 * (i.e., ends in '/'), then return that ref_dir itself. dir must 358 * represent the top-level directory and must already be complete. 359 * Sort ref_dirs and recurse into subdirectories as necessary. If 360 * mkdir is set, then create any missing directories; otherwise, 361 * return NULL if the desired directory cannot be found. 362 */ 363static struct ref_dir *find_containing_dir(struct ref_dir *dir, 364const char*refname,int mkdir) 365{ 366const char*slash; 367for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 368size_t dirnamelen = slash - refname +1; 369struct ref_dir *subdir; 370 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 371if(!subdir) { 372 dir = NULL; 373break; 374} 375 dir = subdir; 376} 377 378return dir; 379} 380 381/* 382 * Find the value entry with the given name in dir, sorting ref_dirs 383 * and recursing into subdirectories as necessary. If the name is not 384 * found or it corresponds to a directory entry, return NULL. 385 */ 386static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 387{ 388int entry_index; 389struct ref_entry *entry; 390 dir =find_containing_dir(dir, refname,0); 391if(!dir) 392return NULL; 393 entry_index =search_ref_dir(dir, refname,strlen(refname)); 394if(entry_index == -1) 395return NULL; 396 entry = dir->entries[entry_index]; 397return(entry->flag & REF_DIR) ? NULL : entry; 398} 399 400/* 401 * Remove the entry with the given name from dir, recursing into 402 * subdirectories as necessary. If refname is the name of a directory 403 * (i.e., ends with '/'), then remove the directory and its contents. 404 * If the removal was successful, return the number of entries 405 * remaining in the directory entry that contained the deleted entry. 406 * If the name was not found, return -1. Please note that this 407 * function only deletes the entry from the cache; it does not delete 408 * it from the filesystem or ensure that other cache entries (which 409 * might be symbolic references to the removed entry) are updated. 410 * Nor does it remove any containing dir entries that might be made 411 * empty by the removal. dir must represent the top-level directory 412 * and must already be complete. 413 */ 414static intremove_entry(struct ref_dir *dir,const char*refname) 415{ 416int refname_len =strlen(refname); 417int entry_index; 418struct ref_entry *entry; 419int is_dir = refname[refname_len -1] =='/'; 420if(is_dir) { 421/* 422 * refname represents a reference directory. Remove 423 * the trailing slash; otherwise we will get the 424 * directory *representing* refname rather than the 425 * one *containing* it. 426 */ 427char*dirname =xmemdupz(refname, refname_len -1); 428 dir =find_containing_dir(dir, dirname,0); 429free(dirname); 430}else{ 431 dir =find_containing_dir(dir, refname,0); 432} 433if(!dir) 434return-1; 435 entry_index =search_ref_dir(dir, refname, refname_len); 436if(entry_index == -1) 437return-1; 438 entry = dir->entries[entry_index]; 439 440memmove(&dir->entries[entry_index], 441&dir->entries[entry_index +1], 442(dir->nr - entry_index -1) *sizeof(*dir->entries) 443); 444 dir->nr--; 445if(dir->sorted > entry_index) 446 dir->sorted--; 447free_ref_entry(entry); 448return dir->nr; 449} 450 451/* 452 * Add a ref_entry to the ref_dir (unsorted), recursing into 453 * subdirectories as necessary. dir must represent the top-level 454 * directory. Return 0 on success. 455 */ 456static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 457{ 458 dir =find_containing_dir(dir, ref->name,1); 459if(!dir) 460return-1; 461add_entry_to_dir(dir, ref); 462return0; 463} 464 465/* 466 * Emit a warning and return true iff ref1 and ref2 have the same name 467 * and the same sha1. Die if they have the same name but different 468 * sha1s. 469 */ 470static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 471{ 472if(strcmp(ref1->name, ref2->name)) 473return0; 474 475/* Duplicate name; make sure that they don't conflict: */ 476 477if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 478/* This is impossible by construction */ 479die("Reference directory conflict:%s", ref1->name); 480 481if(oidcmp(&ref1->u.value.oid, &ref2->u.value.oid)) 482die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 483 484warning("Duplicated ref:%s", ref1->name); 485return1; 486} 487 488/* 489 * Sort the entries in dir non-recursively (if they are not already 490 * sorted) and remove any duplicate entries. 491 */ 492static voidsort_ref_dir(struct ref_dir *dir) 493{ 494int i, j; 495struct ref_entry *last = NULL; 496 497/* 498 * This check also prevents passing a zero-length array to qsort(), 499 * which is a problem on some platforms. 500 */ 501if(dir->sorted == dir->nr) 502return; 503 504QSORT(dir->entries, dir->nr, ref_entry_cmp); 505 506/* Remove any duplicates: */ 507for(i =0, j =0; j < dir->nr; j++) { 508struct ref_entry *entry = dir->entries[j]; 509if(last &&is_dup_ref(last, entry)) 510free_ref_entry(entry); 511else 512 last = dir->entries[i++] = entry; 513} 514 dir->sorted = dir->nr = i; 515} 516 517/* 518 * Return true if refname, which has the specified oid and flags, can 519 * be resolved to an object in the database. If the referred-to object 520 * does not exist, emit a warning and return false. 521 */ 522static intref_resolves_to_object(const char*refname, 523const struct object_id *oid, 524unsigned int flags) 525{ 526if(flags & REF_ISBROKEN) 527return0; 528if(!has_sha1_file(oid->hash)) { 529error("%sdoes not point to a valid object!", refname); 530return0; 531} 532return1; 533} 534 535/* 536 * Return true if the reference described by entry can be resolved to 537 * an object in the database; otherwise, emit a warning and return 538 * false. 539 */ 540static intentry_resolves_to_object(struct ref_entry *entry) 541{ 542returnref_resolves_to_object(entry->name, 543&entry->u.value.oid, entry->flag); 544} 545 546typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 547 548/* 549 * Call fn for each reference in dir that has index in the range 550 * offset <= index < dir->nr. Recurse into subdirectories that are in 551 * that index range, sorting them before iterating. This function 552 * does not sort dir itself; it should be sorted beforehand. fn is 553 * called for all references, including broken ones. 554 */ 555static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 556 each_ref_entry_fn fn,void*cb_data) 557{ 558int i; 559assert(dir->sorted == dir->nr); 560for(i = offset; i < dir->nr; i++) { 561struct ref_entry *entry = dir->entries[i]; 562int retval; 563if(entry->flag & REF_DIR) { 564struct ref_dir *subdir =get_ref_dir(entry); 565sort_ref_dir(subdir); 566 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 567}else{ 568 retval =fn(entry, cb_data); 569} 570if(retval) 571return retval; 572} 573return0; 574} 575 576/* 577 * Load all of the refs from the dir into our in-memory cache. The hard work 578 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 579 * through all of the sub-directories. We do not even need to care about 580 * sorting, as traversal order does not matter to us. 581 */ 582static voidprime_ref_dir(struct ref_dir *dir) 583{ 584int i; 585for(i =0; i < dir->nr; i++) { 586struct ref_entry *entry = dir->entries[i]; 587if(entry->flag & REF_DIR) 588prime_ref_dir(get_ref_dir(entry)); 589} 590} 591 592/* 593 * A level in the reference hierarchy that is currently being iterated 594 * through. 595 */ 596struct cache_ref_iterator_level { 597/* 598 * The ref_dir being iterated over at this level. The ref_dir 599 * is sorted before being stored here. 600 */ 601struct ref_dir *dir; 602 603/* 604 * The index of the current entry within dir (which might 605 * itself be a directory). If index == -1, then the iteration 606 * hasn't yet begun. If index == dir->nr, then the iteration 607 * through this level is over. 608 */ 609int index; 610}; 611 612/* 613 * Represent an iteration through a ref_dir in the memory cache. The 614 * iteration recurses through subdirectories. 615 */ 616struct cache_ref_iterator { 617struct ref_iterator base; 618 619/* 620 * The number of levels currently on the stack. This is always 621 * at least 1, because when it becomes zero the iteration is 622 * ended and this struct is freed. 623 */ 624size_t levels_nr; 625 626/* The number of levels that have been allocated on the stack */ 627size_t levels_alloc; 628 629/* 630 * A stack of levels. levels[0] is the uppermost level that is 631 * being iterated over in this iteration. (This is not 632 * necessary the top level in the references hierarchy. If we 633 * are iterating through a subtree, then levels[0] will hold 634 * the ref_dir for that subtree, and subsequent levels will go 635 * on from there.) 636 */ 637struct cache_ref_iterator_level *levels; 638}; 639 640static intcache_ref_iterator_advance(struct ref_iterator *ref_iterator) 641{ 642struct cache_ref_iterator *iter = 643(struct cache_ref_iterator *)ref_iterator; 644 645while(1) { 646struct cache_ref_iterator_level *level = 647&iter->levels[iter->levels_nr -1]; 648struct ref_dir *dir = level->dir; 649struct ref_entry *entry; 650 651if(level->index == -1) 652sort_ref_dir(dir); 653 654if(++level->index == level->dir->nr) { 655/* This level is exhausted; pop up a level */ 656if(--iter->levels_nr ==0) 657returnref_iterator_abort(ref_iterator); 658 659continue; 660} 661 662 entry = dir->entries[level->index]; 663 664if(entry->flag & REF_DIR) { 665/* push down a level */ 666ALLOC_GROW(iter->levels, iter->levels_nr +1, 667 iter->levels_alloc); 668 669 level = &iter->levels[iter->levels_nr++]; 670 level->dir =get_ref_dir(entry); 671 level->index = -1; 672}else{ 673 iter->base.refname = entry->name; 674 iter->base.oid = &entry->u.value.oid; 675 iter->base.flags = entry->flag; 676return ITER_OK; 677} 678} 679} 680 681static enum peel_status peel_entry(struct ref_entry *entry,int repeel); 682 683static intcache_ref_iterator_peel(struct ref_iterator *ref_iterator, 684struct object_id *peeled) 685{ 686struct cache_ref_iterator *iter = 687(struct cache_ref_iterator *)ref_iterator; 688struct cache_ref_iterator_level *level; 689struct ref_entry *entry; 690 691 level = &iter->levels[iter->levels_nr -1]; 692 693if(level->index == -1) 694die("BUG: peel called before advance for cache iterator"); 695 696 entry = level->dir->entries[level->index]; 697 698if(peel_entry(entry,0)) 699return-1; 700hashcpy(peeled->hash, entry->u.value.peeled.hash); 701return0; 702} 703 704static intcache_ref_iterator_abort(struct ref_iterator *ref_iterator) 705{ 706struct cache_ref_iterator *iter = 707(struct cache_ref_iterator *)ref_iterator; 708 709free(iter->levels); 710base_ref_iterator_free(ref_iterator); 711return ITER_DONE; 712} 713 714static struct ref_iterator_vtable cache_ref_iterator_vtable = { 715 cache_ref_iterator_advance, 716 cache_ref_iterator_peel, 717 cache_ref_iterator_abort 718}; 719 720static struct ref_iterator *cache_ref_iterator_begin(struct ref_dir *dir) 721{ 722struct cache_ref_iterator *iter; 723struct ref_iterator *ref_iterator; 724struct cache_ref_iterator_level *level; 725 726 iter =xcalloc(1,sizeof(*iter)); 727 ref_iterator = &iter->base; 728base_ref_iterator_init(ref_iterator, &cache_ref_iterator_vtable); 729ALLOC_GROW(iter->levels,10, iter->levels_alloc); 730 731 iter->levels_nr =1; 732 level = &iter->levels[0]; 733 level->index = -1; 734 level->dir = dir; 735 736return ref_iterator; 737} 738 739struct nonmatching_ref_data { 740const struct string_list *skip; 741const char*conflicting_refname; 742}; 743 744static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 745{ 746struct nonmatching_ref_data *data = vdata; 747 748if(data->skip &&string_list_has_string(data->skip, entry->name)) 749return0; 750 751 data->conflicting_refname = entry->name; 752return1; 753} 754 755/* 756 * Return 0 if a reference named refname could be created without 757 * conflicting with the name of an existing reference in dir. 758 * See verify_refname_available for more information. 759 */ 760static intverify_refname_available_dir(const char*refname, 761const struct string_list *extras, 762const struct string_list *skip, 763struct ref_dir *dir, 764struct strbuf *err) 765{ 766const char*slash; 767const char*extra_refname; 768int pos; 769struct strbuf dirname = STRBUF_INIT; 770int ret = -1; 771 772/* 773 * For the sake of comments in this function, suppose that 774 * refname is "refs/foo/bar". 775 */ 776 777assert(err); 778 779strbuf_grow(&dirname,strlen(refname) +1); 780for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 781/* Expand dirname to the new prefix, not including the trailing slash: */ 782strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len); 783 784/* 785 * We are still at a leading dir of the refname (e.g., 786 * "refs/foo"; if there is a reference with that name, 787 * it is a conflict, *unless* it is in skip. 788 */ 789if(dir) { 790 pos =search_ref_dir(dir, dirname.buf, dirname.len); 791if(pos >=0&& 792(!skip || !string_list_has_string(skip, dirname.buf))) { 793/* 794 * We found a reference whose name is 795 * a proper prefix of refname; e.g., 796 * "refs/foo", and is not in skip. 797 */ 798strbuf_addf(err,"'%s' exists; cannot create '%s'", 799 dirname.buf, refname); 800goto cleanup; 801} 802} 803 804if(extras &&string_list_has_string(extras, dirname.buf) && 805(!skip || !string_list_has_string(skip, dirname.buf))) { 806strbuf_addf(err,"cannot process '%s' and '%s' at the same time", 807 refname, dirname.buf); 808goto cleanup; 809} 810 811/* 812 * Otherwise, we can try to continue our search with 813 * the next component. So try to look up the 814 * directory, e.g., "refs/foo/". If we come up empty, 815 * we know there is nothing under this whole prefix, 816 * but even in that case we still have to continue the 817 * search for conflicts with extras. 818 */ 819strbuf_addch(&dirname,'/'); 820if(dir) { 821 pos =search_ref_dir(dir, dirname.buf, dirname.len); 822if(pos <0) { 823/* 824 * There was no directory "refs/foo/", 825 * so there is nothing under this 826 * whole prefix. So there is no need 827 * to continue looking for conflicting 828 * references. But we need to continue 829 * looking for conflicting extras. 830 */ 831 dir = NULL; 832}else{ 833 dir =get_ref_dir(dir->entries[pos]); 834} 835} 836} 837 838/* 839 * We are at the leaf of our refname (e.g., "refs/foo/bar"). 840 * There is no point in searching for a reference with that 841 * name, because a refname isn't considered to conflict with 842 * itself. But we still need to check for references whose 843 * names are in the "refs/foo/bar/" namespace, because they 844 * *do* conflict. 845 */ 846strbuf_addstr(&dirname, refname + dirname.len); 847strbuf_addch(&dirname,'/'); 848 849if(dir) { 850 pos =search_ref_dir(dir, dirname.buf, dirname.len); 851 852if(pos >=0) { 853/* 854 * We found a directory named "$refname/" 855 * (e.g., "refs/foo/bar/"). It is a problem 856 * iff it contains any ref that is not in 857 * "skip". 858 */ 859struct nonmatching_ref_data data; 860 861 data.skip = skip; 862 data.conflicting_refname = NULL; 863 dir =get_ref_dir(dir->entries[pos]); 864sort_ref_dir(dir); 865if(do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) { 866strbuf_addf(err,"'%s' exists; cannot create '%s'", 867 data.conflicting_refname, refname); 868goto cleanup; 869} 870} 871} 872 873 extra_refname =find_descendant_ref(dirname.buf, extras, skip); 874if(extra_refname) 875strbuf_addf(err,"cannot process '%s' and '%s' at the same time", 876 refname, extra_refname); 877else 878 ret =0; 879 880cleanup: 881strbuf_release(&dirname); 882return ret; 883} 884 885struct packed_ref_cache { 886struct ref_entry *root; 887 888/* 889 * Count of references to the data structure in this instance, 890 * including the pointer from files_ref_store::packed if any. 891 * The data will not be freed as long as the reference count 892 * is nonzero. 893 */ 894unsigned int referrers; 895 896/* 897 * Iff the packed-refs file associated with this instance is 898 * currently locked for writing, this points at the associated 899 * lock (which is owned by somebody else). The referrer count 900 * is also incremented when the file is locked and decremented 901 * when it is unlocked. 902 */ 903struct lock_file *lock; 904 905/* The metadata from when this packed-refs cache was read */ 906struct stat_validity validity; 907}; 908 909/* 910 * Future: need to be in "struct repository" 911 * when doing a full libification. 912 */ 913struct files_ref_store { 914struct ref_store base; 915 916/* 917 * The name of the submodule represented by this object, or 918 * NULL if it represents the main repository's reference 919 * store: 920 */ 921const char*submodule; 922 923struct ref_entry *loose; 924struct packed_ref_cache *packed; 925}; 926 927/* Lock used for the main packed-refs file: */ 928static struct lock_file packlock; 929 930/* 931 * Increment the reference count of *packed_refs. 932 */ 933static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs) 934{ 935 packed_refs->referrers++; 936} 937 938/* 939 * Decrease the reference count of *packed_refs. If it goes to zero, 940 * free *packed_refs and return true; otherwise return false. 941 */ 942static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs) 943{ 944if(!--packed_refs->referrers) { 945free_ref_entry(packed_refs->root); 946stat_validity_clear(&packed_refs->validity); 947free(packed_refs); 948return1; 949}else{ 950return0; 951} 952} 953 954static voidclear_packed_ref_cache(struct files_ref_store *refs) 955{ 956if(refs->packed) { 957struct packed_ref_cache *packed_refs = refs->packed; 958 959if(packed_refs->lock) 960die("internal error: packed-ref cache cleared while locked"); 961 refs->packed = NULL; 962release_packed_ref_cache(packed_refs); 963} 964} 965 966static voidclear_loose_ref_cache(struct files_ref_store *refs) 967{ 968if(refs->loose) { 969free_ref_entry(refs->loose); 970 refs->loose = NULL; 971} 972} 973 974/* 975 * Create a new submodule ref cache and add it to the internal 976 * set of caches. 977 */ 978static struct ref_store *files_ref_store_create(const char*submodule) 979{ 980struct files_ref_store *refs =xcalloc(1,sizeof(*refs)); 981struct ref_store *ref_store = (struct ref_store *)refs; 982 983base_ref_store_init(ref_store, &refs_be_files); 984 985 refs->submodule =xstrdup_or_null(submodule); 986 987return ref_store; 988} 989 990/* 991 * Die if refs is for a submodule (i.e., not for the main repository). 992 * caller is used in any necessary error messages. 993 */ 994static voidfiles_assert_main_repository(struct files_ref_store *refs, 995const char*caller) 996{ 997if(refs->submodule) 998die("BUG:%scalled for a submodule", caller); 999}10001001/*1002 * Downcast ref_store to files_ref_store. Die if ref_store is not a1003 * files_ref_store. If submodule_allowed is not true, then also die if1004 * files_ref_store is for a submodule (i.e., not for the main1005 * repository). caller is used in any necessary error messages.1006 */1007static struct files_ref_store *files_downcast(1008struct ref_store *ref_store,int submodule_allowed,1009const char*caller)1010{1011struct files_ref_store *refs;10121013if(ref_store->be != &refs_be_files)1014die("BUG: ref_store is type\"%s\"not\"files\"in%s",1015 ref_store->be->name, caller);10161017 refs = (struct files_ref_store *)ref_store;10181019if(!submodule_allowed)1020files_assert_main_repository(refs, caller);10211022return refs;1023}10241025/* The length of a peeled reference line in packed-refs, including EOL: */1026#define PEELED_LINE_LENGTH 4210271028/*1029 * The packed-refs header line that we write out. Perhaps other1030 * traits will be added later. The trailing space is required.1031 */1032static const char PACKED_REFS_HEADER[] =1033"# pack-refs with: peeled fully-peeled\n";10341035/*1036 * Parse one line from a packed-refs file. Write the SHA1 to sha1.1037 * Return a pointer to the refname within the line (null-terminated),1038 * or NULL if there was a problem.1039 */1040static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1)1041{1042const char*ref;10431044/*1045 * 42: the answer to everything.1046 *1047 * In this case, it happens to be the answer to1048 * 40 (length of sha1 hex representation)1049 * +1 (space in between hex and name)1050 * +1 (newline at the end of the line)1051 */1052if(line->len <=42)1053return NULL;10541055if(get_sha1_hex(line->buf, sha1) <0)1056return NULL;1057if(!isspace(line->buf[40]))1058return NULL;10591060 ref = line->buf +41;1061if(isspace(*ref))1062return NULL;10631064if(line->buf[line->len -1] !='\n')1065return NULL;1066 line->buf[--line->len] =0;10671068return ref;1069}10701071/*1072 * Read f, which is a packed-refs file, into dir.1073 *1074 * A comment line of the form "# pack-refs with: " may contain zero or1075 * more traits. We interpret the traits as follows:1076 *1077 * No traits:1078 *1079 * Probably no references are peeled. But if the file contains a1080 * peeled value for a reference, we will use it.1081 *1082 * peeled:1083 *1084 * References under "refs/tags/", if they *can* be peeled, *are*1085 * peeled in this file. References outside of "refs/tags/" are1086 * probably not peeled even if they could have been, but if we find1087 * a peeled value for such a reference we will use it.1088 *1089 * fully-peeled:1090 *1091 * All references in the file that can be peeled are peeled.1092 * Inversely (and this is more important), any references in the1093 * file for which no peeled value is recorded is not peelable. This1094 * trait should typically be written alongside "peeled" for1095 * compatibility with older clients, but we do not require it1096 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1097 */1098static voidread_packed_refs(FILE*f,struct ref_dir *dir)1099{1100struct ref_entry *last = NULL;1101struct strbuf line = STRBUF_INIT;1102enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;11031104while(strbuf_getwholeline(&line, f,'\n') != EOF) {1105unsigned char sha1[20];1106const char*refname;1107const char*traits;11081109if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1110if(strstr(traits," fully-peeled "))1111 peeled = PEELED_FULLY;1112else if(strstr(traits," peeled "))1113 peeled = PEELED_TAGS;1114/* perhaps other traits later as well */1115continue;1116}11171118 refname =parse_ref_line(&line, sha1);1119if(refname) {1120int flag = REF_ISPACKED;11211122if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1123if(!refname_is_safe(refname))1124die("packed refname is dangerous:%s", refname);1125hashclr(sha1);1126 flag |= REF_BAD_NAME | REF_ISBROKEN;1127}1128 last =create_ref_entry(refname, sha1, flag,0);1129if(peeled == PEELED_FULLY ||1130(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1131 last->flag |= REF_KNOWS_PEELED;1132add_ref(dir, last);1133continue;1134}1135if(last &&1136 line.buf[0] =='^'&&1137 line.len == PEELED_LINE_LENGTH &&1138 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1139!get_sha1_hex(line.buf +1, sha1)) {1140hashcpy(last->u.value.peeled.hash, sha1);1141/*1142 * Regardless of what the file header said,1143 * we definitely know the value of *this*1144 * reference:1145 */1146 last->flag |= REF_KNOWS_PEELED;1147}1148}11491150strbuf_release(&line);1151}11521153/*1154 * Get the packed_ref_cache for the specified files_ref_store,1155 * creating it if necessary.1156 */1157static struct packed_ref_cache *get_packed_ref_cache(struct files_ref_store *refs)1158{1159char*packed_refs_file;11601161if(refs->submodule)1162 packed_refs_file =git_pathdup_submodule(refs->submodule,1163"packed-refs");1164else1165 packed_refs_file =git_pathdup("packed-refs");11661167if(refs->packed &&1168!stat_validity_check(&refs->packed->validity, packed_refs_file))1169clear_packed_ref_cache(refs);11701171if(!refs->packed) {1172FILE*f;11731174 refs->packed =xcalloc(1,sizeof(*refs->packed));1175acquire_packed_ref_cache(refs->packed);1176 refs->packed->root =create_dir_entry(refs,"",0,0);1177 f =fopen(packed_refs_file,"r");1178if(f) {1179stat_validity_update(&refs->packed->validity,fileno(f));1180read_packed_refs(f,get_ref_dir(refs->packed->root));1181fclose(f);1182}1183}1184free(packed_refs_file);1185return refs->packed;1186}11871188static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1189{1190returnget_ref_dir(packed_ref_cache->root);1191}11921193static struct ref_dir *get_packed_refs(struct files_ref_store *refs)1194{1195returnget_packed_ref_dir(get_packed_ref_cache(refs));1196}11971198/*1199 * Add a reference to the in-memory packed reference cache. This may1200 * only be called while the packed-refs file is locked (see1201 * lock_packed_refs()). To actually write the packed-refs file, call1202 * commit_packed_refs().1203 */1204static voidadd_packed_ref(struct files_ref_store *refs,1205const char*refname,const unsigned char*sha1)1206{1207struct packed_ref_cache *packed_ref_cache =get_packed_ref_cache(refs);12081209if(!packed_ref_cache->lock)1210die("internal error: packed refs not locked");1211add_ref(get_packed_ref_dir(packed_ref_cache),1212create_ref_entry(refname, sha1, REF_ISPACKED,1));1213}12141215/*1216 * Read the loose references from the namespace dirname into dir1217 * (without recursing). dirname must end with '/'. dir must be the1218 * directory entry corresponding to dirname.1219 */1220static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1221{1222struct files_ref_store *refs = dir->ref_store;1223DIR*d;1224struct dirent *de;1225int dirnamelen =strlen(dirname);1226struct strbuf refname;1227struct strbuf path = STRBUF_INIT;1228size_t path_baselen;1229int err =0;12301231if(refs->submodule)1232 err =strbuf_git_path_submodule(&path, refs->submodule,"%s", dirname);1233else1234strbuf_git_path(&path,"%s", dirname);1235 path_baselen = path.len;12361237if(err) {1238strbuf_release(&path);1239return;1240}12411242 d =opendir(path.buf);1243if(!d) {1244strbuf_release(&path);1245return;1246}12471248strbuf_init(&refname, dirnamelen +257);1249strbuf_add(&refname, dirname, dirnamelen);12501251while((de =readdir(d)) != NULL) {1252unsigned char sha1[20];1253struct stat st;1254int flag;12551256if(de->d_name[0] =='.')1257continue;1258if(ends_with(de->d_name,".lock"))1259continue;1260strbuf_addstr(&refname, de->d_name);1261strbuf_addstr(&path, de->d_name);1262if(stat(path.buf, &st) <0) {1263;/* silently ignore */1264}else if(S_ISDIR(st.st_mode)) {1265strbuf_addch(&refname,'/');1266add_entry_to_dir(dir,1267create_dir_entry(refs, refname.buf,1268 refname.len,1));1269}else{1270if(!resolve_ref_recursively(&refs->base,1271 refname.buf,1272 RESOLVE_REF_READING,1273 sha1, &flag)) {1274hashclr(sha1);1275 flag |= REF_ISBROKEN;1276}else if(is_null_sha1(sha1)) {1277/*1278 * It is so astronomically unlikely1279 * that NULL_SHA1 is the SHA-1 of an1280 * actual object that we consider its1281 * appearance in a loose reference1282 * file to be repo corruption1283 * (probably due to a software bug).1284 */1285 flag |= REF_ISBROKEN;1286}12871288if(check_refname_format(refname.buf,1289 REFNAME_ALLOW_ONELEVEL)) {1290if(!refname_is_safe(refname.buf))1291die("loose refname is dangerous:%s", refname.buf);1292hashclr(sha1);1293 flag |= REF_BAD_NAME | REF_ISBROKEN;1294}1295add_entry_to_dir(dir,1296create_ref_entry(refname.buf, sha1, flag,0));1297}1298strbuf_setlen(&refname, dirnamelen);1299strbuf_setlen(&path, path_baselen);1300}1301strbuf_release(&refname);1302strbuf_release(&path);1303closedir(d);1304}13051306static struct ref_dir *get_loose_refs(struct files_ref_store *refs)1307{1308if(!refs->loose) {1309/*1310 * Mark the top-level directory complete because we1311 * are about to read the only subdirectory that can1312 * hold references:1313 */1314 refs->loose =create_dir_entry(refs,"",0,0);1315/*1316 * Create an incomplete entry for "refs/":1317 */1318add_entry_to_dir(get_ref_dir(refs->loose),1319create_dir_entry(refs,"refs/",5,1));1320}1321returnget_ref_dir(refs->loose);1322}13231324/*1325 * Return the ref_entry for the given refname from the packed1326 * references. If it does not exist, return NULL.1327 */1328static struct ref_entry *get_packed_ref(struct files_ref_store *refs,1329const char*refname)1330{1331returnfind_ref(get_packed_refs(refs), refname);1332}13331334/*1335 * A loose ref file doesn't exist; check for a packed ref.1336 */1337static intresolve_packed_ref(struct files_ref_store *refs,1338const char*refname,1339unsigned char*sha1,unsigned int*flags)1340{1341struct ref_entry *entry;13421343/*1344 * The loose reference file does not exist; check for a packed1345 * reference.1346 */1347 entry =get_packed_ref(refs, refname);1348if(entry) {1349hashcpy(sha1, entry->u.value.oid.hash);1350*flags |= REF_ISPACKED;1351return0;1352}1353/* refname is not a packed reference. */1354return-1;1355}13561357static intfiles_read_raw_ref(struct ref_store *ref_store,1358const char*refname,unsigned char*sha1,1359struct strbuf *referent,unsigned int*type)1360{1361struct files_ref_store *refs =1362files_downcast(ref_store,1,"read_raw_ref");1363struct strbuf sb_contents = STRBUF_INIT;1364struct strbuf sb_path = STRBUF_INIT;1365const char*path;1366const char*buf;1367struct stat st;1368int fd;1369int ret = -1;1370int save_errno;1371int remaining_retries =3;13721373*type =0;1374strbuf_reset(&sb_path);13751376if(refs->submodule)1377strbuf_git_path_submodule(&sb_path, refs->submodule,"%s", refname);1378else1379strbuf_git_path(&sb_path,"%s", refname);13801381 path = sb_path.buf;13821383stat_ref:1384/*1385 * We might have to loop back here to avoid a race1386 * condition: first we lstat() the file, then we try1387 * to read it as a link or as a file. But if somebody1388 * changes the type of the file (file <-> directory1389 * <-> symlink) between the lstat() and reading, then1390 * we don't want to report that as an error but rather1391 * try again starting with the lstat().1392 *1393 * We'll keep a count of the retries, though, just to avoid1394 * any confusing situation sending us into an infinite loop.1395 */13961397if(remaining_retries-- <=0)1398goto out;13991400if(lstat(path, &st) <0) {1401if(errno != ENOENT)1402goto out;1403if(resolve_packed_ref(refs, refname, sha1, type)) {1404 errno = ENOENT;1405goto out;1406}1407 ret =0;1408goto out;1409}14101411/* Follow "normalized" - ie "refs/.." symlinks by hand */1412if(S_ISLNK(st.st_mode)) {1413strbuf_reset(&sb_contents);1414if(strbuf_readlink(&sb_contents, path,0) <0) {1415if(errno == ENOENT || errno == EINVAL)1416/* inconsistent with lstat; retry */1417goto stat_ref;1418else1419goto out;1420}1421if(starts_with(sb_contents.buf,"refs/") &&1422!check_refname_format(sb_contents.buf,0)) {1423strbuf_swap(&sb_contents, referent);1424*type |= REF_ISSYMREF;1425 ret =0;1426goto out;1427}1428/*1429 * It doesn't look like a refname; fall through to just1430 * treating it like a non-symlink, and reading whatever it1431 * points to.1432 */1433}14341435/* Is it a directory? */1436if(S_ISDIR(st.st_mode)) {1437/*1438 * Even though there is a directory where the loose1439 * ref is supposed to be, there could still be a1440 * packed ref:1441 */1442if(resolve_packed_ref(refs, refname, sha1, type)) {1443 errno = EISDIR;1444goto out;1445}1446 ret =0;1447goto out;1448}14491450/*1451 * Anything else, just open it and try to use it as1452 * a ref1453 */1454 fd =open(path, O_RDONLY);1455if(fd <0) {1456if(errno == ENOENT && !S_ISLNK(st.st_mode))1457/* inconsistent with lstat; retry */1458goto stat_ref;1459else1460goto out;1461}1462strbuf_reset(&sb_contents);1463if(strbuf_read(&sb_contents, fd,256) <0) {1464int save_errno = errno;1465close(fd);1466 errno = save_errno;1467goto out;1468}1469close(fd);1470strbuf_rtrim(&sb_contents);1471 buf = sb_contents.buf;1472if(starts_with(buf,"ref:")) {1473 buf +=4;1474while(isspace(*buf))1475 buf++;14761477strbuf_reset(referent);1478strbuf_addstr(referent, buf);1479*type |= REF_ISSYMREF;1480 ret =0;1481goto out;1482}14831484/*1485 * Please note that FETCH_HEAD has additional1486 * data after the sha.1487 */1488if(get_sha1_hex(buf, sha1) ||1489(buf[40] !='\0'&& !isspace(buf[40]))) {1490*type |= REF_ISBROKEN;1491 errno = EINVAL;1492goto out;1493}14941495 ret =0;14961497out:1498 save_errno = errno;1499strbuf_release(&sb_path);1500strbuf_release(&sb_contents);1501 errno = save_errno;1502return ret;1503}15041505static voidunlock_ref(struct ref_lock *lock)1506{1507/* Do not free lock->lk -- atexit() still looks at them */1508if(lock->lk)1509rollback_lock_file(lock->lk);1510free(lock->ref_name);1511free(lock);1512}15131514/*1515 * Lock refname, without following symrefs, and set *lock_p to point1516 * at a newly-allocated lock object. Fill in lock->old_oid, referent,1517 * and type similarly to read_raw_ref().1518 *1519 * The caller must verify that refname is a "safe" reference name (in1520 * the sense of refname_is_safe()) before calling this function.1521 *1522 * If the reference doesn't already exist, verify that refname doesn't1523 * have a D/F conflict with any existing references. extras and skip1524 * are passed to verify_refname_available_dir() for this check.1525 *1526 * If mustexist is not set and the reference is not found or is1527 * broken, lock the reference anyway but clear sha1.1528 *1529 * Return 0 on success. On failure, write an error message to err and1530 * return TRANSACTION_NAME_CONFLICT or TRANSACTION_GENERIC_ERROR.1531 *1532 * Implementation note: This function is basically1533 *1534 * lock reference1535 * read_raw_ref()1536 *1537 * but it includes a lot more code to1538 * - Deal with possible races with other processes1539 * - Avoid calling verify_refname_available_dir() when it can be1540 * avoided, namely if we were successfully able to read the ref1541 * - Generate informative error messages in the case of failure1542 */1543static intlock_raw_ref(struct files_ref_store *refs,1544const char*refname,int mustexist,1545const struct string_list *extras,1546const struct string_list *skip,1547struct ref_lock **lock_p,1548struct strbuf *referent,1549unsigned int*type,1550struct strbuf *err)1551{1552struct ref_lock *lock;1553struct strbuf ref_file = STRBUF_INIT;1554int attempts_remaining =3;1555int ret = TRANSACTION_GENERIC_ERROR;15561557assert(err);1558files_assert_main_repository(refs,"lock_raw_ref");15591560*type =0;15611562/* First lock the file so it can't change out from under us. */15631564*lock_p = lock =xcalloc(1,sizeof(*lock));15651566 lock->ref_name =xstrdup(refname);1567strbuf_git_path(&ref_file,"%s", refname);15681569retry:1570switch(safe_create_leading_directories(ref_file.buf)) {1571case SCLD_OK:1572break;/* success */1573case SCLD_EXISTS:1574/*1575 * Suppose refname is "refs/foo/bar". We just failed1576 * to create the containing directory, "refs/foo",1577 * because there was a non-directory in the way. This1578 * indicates a D/F conflict, probably because of1579 * another reference such as "refs/foo". There is no1580 * reason to expect this error to be transitory.1581 */1582if(verify_refname_available(refname, extras, skip, err)) {1583if(mustexist) {1584/*1585 * To the user the relevant error is1586 * that the "mustexist" reference is1587 * missing:1588 */1589strbuf_reset(err);1590strbuf_addf(err,"unable to resolve reference '%s'",1591 refname);1592}else{1593/*1594 * The error message set by1595 * verify_refname_available_dir() is OK.1596 */1597 ret = TRANSACTION_NAME_CONFLICT;1598}1599}else{1600/*1601 * The file that is in the way isn't a loose1602 * reference. Report it as a low-level1603 * failure.1604 */1605strbuf_addf(err,"unable to create lock file%s.lock; "1606"non-directory in the way",1607 ref_file.buf);1608}1609goto error_return;1610case SCLD_VANISHED:1611/* Maybe another process was tidying up. Try again. */1612if(--attempts_remaining >0)1613goto retry;1614/* fall through */1615default:1616strbuf_addf(err,"unable to create directory for%s",1617 ref_file.buf);1618goto error_return;1619}16201621if(!lock->lk)1622 lock->lk =xcalloc(1,sizeof(struct lock_file));16231624if(hold_lock_file_for_update(lock->lk, ref_file.buf, LOCK_NO_DEREF) <0) {1625if(errno == ENOENT && --attempts_remaining >0) {1626/*1627 * Maybe somebody just deleted one of the1628 * directories leading to ref_file. Try1629 * again:1630 */1631goto retry;1632}else{1633unable_to_lock_message(ref_file.buf, errno, err);1634goto error_return;1635}1636}16371638/*1639 * Now we hold the lock and can read the reference without1640 * fear that its value will change.1641 */16421643if(files_read_raw_ref(&refs->base, refname,1644 lock->old_oid.hash, referent, type)) {1645if(errno == ENOENT) {1646if(mustexist) {1647/* Garden variety missing reference. */1648strbuf_addf(err,"unable to resolve reference '%s'",1649 refname);1650goto error_return;1651}else{1652/*1653 * Reference is missing, but that's OK. We1654 * know that there is not a conflict with1655 * another loose reference because1656 * (supposing that we are trying to lock1657 * reference "refs/foo/bar"):1658 *1659 * - We were successfully able to create1660 * the lockfile refs/foo/bar.lock, so we1661 * know there cannot be a loose reference1662 * named "refs/foo".1663 *1664 * - We got ENOENT and not EISDIR, so we1665 * know that there cannot be a loose1666 * reference named "refs/foo/bar/baz".1667 */1668}1669}else if(errno == EISDIR) {1670/*1671 * There is a directory in the way. It might have1672 * contained references that have been deleted. If1673 * we don't require that the reference already1674 * exists, try to remove the directory so that it1675 * doesn't cause trouble when we want to rename the1676 * lockfile into place later.1677 */1678if(mustexist) {1679/* Garden variety missing reference. */1680strbuf_addf(err,"unable to resolve reference '%s'",1681 refname);1682goto error_return;1683}else if(remove_dir_recursively(&ref_file,1684 REMOVE_DIR_EMPTY_ONLY)) {1685if(verify_refname_available_dir(1686 refname, extras, skip,1687get_loose_refs(refs),1688 err)) {1689/*1690 * The error message set by1691 * verify_refname_available() is OK.1692 */1693 ret = TRANSACTION_NAME_CONFLICT;1694goto error_return;1695}else{1696/*1697 * We can't delete the directory,1698 * but we also don't know of any1699 * references that it should1700 * contain.1701 */1702strbuf_addf(err,"there is a non-empty directory '%s' "1703"blocking reference '%s'",1704 ref_file.buf, refname);1705goto error_return;1706}1707}1708}else if(errno == EINVAL && (*type & REF_ISBROKEN)) {1709strbuf_addf(err,"unable to resolve reference '%s': "1710"reference broken", refname);1711goto error_return;1712}else{1713strbuf_addf(err,"unable to resolve reference '%s':%s",1714 refname,strerror(errno));1715goto error_return;1716}17171718/*1719 * If the ref did not exist and we are creating it,1720 * make sure there is no existing packed ref whose1721 * name begins with our refname, nor a packed ref1722 * whose name is a proper prefix of our refname.1723 */1724if(verify_refname_available_dir(1725 refname, extras, skip,1726get_packed_refs(refs),1727 err)) {1728goto error_return;1729}1730}17311732 ret =0;1733goto out;17341735error_return:1736unlock_ref(lock);1737*lock_p = NULL;17381739out:1740strbuf_release(&ref_file);1741return ret;1742}17431744/*1745 * Peel the entry (if possible) and return its new peel_status. If1746 * repeel is true, re-peel the entry even if there is an old peeled1747 * value that is already stored in it.1748 *1749 * It is OK to call this function with a packed reference entry that1750 * might be stale and might even refer to an object that has since1751 * been garbage-collected. In such a case, if the entry has1752 * REF_KNOWS_PEELED then leave the status unchanged and return1753 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1754 */1755static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1756{1757enum peel_status status;17581759if(entry->flag & REF_KNOWS_PEELED) {1760if(repeel) {1761 entry->flag &= ~REF_KNOWS_PEELED;1762oidclr(&entry->u.value.peeled);1763}else{1764returnis_null_oid(&entry->u.value.peeled) ?1765 PEEL_NON_TAG : PEEL_PEELED;1766}1767}1768if(entry->flag & REF_ISBROKEN)1769return PEEL_BROKEN;1770if(entry->flag & REF_ISSYMREF)1771return PEEL_IS_SYMREF;17721773 status =peel_object(entry->u.value.oid.hash, entry->u.value.peeled.hash);1774if(status == PEEL_PEELED || status == PEEL_NON_TAG)1775 entry->flag |= REF_KNOWS_PEELED;1776return status;1777}17781779static intfiles_peel_ref(struct ref_store *ref_store,1780const char*refname,unsigned char*sha1)1781{1782struct files_ref_store *refs =files_downcast(ref_store,0,"peel_ref");1783int flag;1784unsigned char base[20];17851786if(current_ref_iter && current_ref_iter->refname == refname) {1787struct object_id peeled;17881789if(ref_iterator_peel(current_ref_iter, &peeled))1790return-1;1791hashcpy(sha1, peeled.hash);1792return0;1793}17941795if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1796return-1;17971798/*1799 * If the reference is packed, read its ref_entry from the1800 * cache in the hope that we already know its peeled value.1801 * We only try this optimization on packed references because1802 * (a) forcing the filling of the loose reference cache could1803 * be expensive and (b) loose references anyway usually do not1804 * have REF_KNOWS_PEELED.1805 */1806if(flag & REF_ISPACKED) {1807struct ref_entry *r =get_packed_ref(refs, refname);1808if(r) {1809if(peel_entry(r,0))1810return-1;1811hashcpy(sha1, r->u.value.peeled.hash);1812return0;1813}1814}18151816returnpeel_object(base, sha1);1817}18181819struct files_ref_iterator {1820struct ref_iterator base;18211822struct packed_ref_cache *packed_ref_cache;1823struct ref_iterator *iter0;1824unsigned int flags;1825};18261827static intfiles_ref_iterator_advance(struct ref_iterator *ref_iterator)1828{1829struct files_ref_iterator *iter =1830(struct files_ref_iterator *)ref_iterator;1831int ok;18321833while((ok =ref_iterator_advance(iter->iter0)) == ITER_OK) {1834if(iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY &&1835ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE)1836continue;18371838if(!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&1839!ref_resolves_to_object(iter->iter0->refname,1840 iter->iter0->oid,1841 iter->iter0->flags))1842continue;18431844 iter->base.refname = iter->iter0->refname;1845 iter->base.oid = iter->iter0->oid;1846 iter->base.flags = iter->iter0->flags;1847return ITER_OK;1848}18491850 iter->iter0 = NULL;1851if(ref_iterator_abort(ref_iterator) != ITER_DONE)1852 ok = ITER_ERROR;18531854return ok;1855}18561857static intfiles_ref_iterator_peel(struct ref_iterator *ref_iterator,1858struct object_id *peeled)1859{1860struct files_ref_iterator *iter =1861(struct files_ref_iterator *)ref_iterator;18621863returnref_iterator_peel(iter->iter0, peeled);1864}18651866static intfiles_ref_iterator_abort(struct ref_iterator *ref_iterator)1867{1868struct files_ref_iterator *iter =1869(struct files_ref_iterator *)ref_iterator;1870int ok = ITER_DONE;18711872if(iter->iter0)1873 ok =ref_iterator_abort(iter->iter0);18741875release_packed_ref_cache(iter->packed_ref_cache);1876base_ref_iterator_free(ref_iterator);1877return ok;1878}18791880static struct ref_iterator_vtable files_ref_iterator_vtable = {1881 files_ref_iterator_advance,1882 files_ref_iterator_peel,1883 files_ref_iterator_abort1884};18851886static struct ref_iterator *files_ref_iterator_begin(1887struct ref_store *ref_store,1888const char*prefix,unsigned int flags)1889{1890struct files_ref_store *refs =1891files_downcast(ref_store,1,"ref_iterator_begin");1892struct ref_dir *loose_dir, *packed_dir;1893struct ref_iterator *loose_iter, *packed_iter;1894struct files_ref_iterator *iter;1895struct ref_iterator *ref_iterator;18961897if(!refs)1898returnempty_ref_iterator_begin();18991900if(ref_paranoia <0)1901 ref_paranoia =git_env_bool("GIT_REF_PARANOIA",0);1902if(ref_paranoia)1903 flags |= DO_FOR_EACH_INCLUDE_BROKEN;19041905 iter =xcalloc(1,sizeof(*iter));1906 ref_iterator = &iter->base;1907base_ref_iterator_init(ref_iterator, &files_ref_iterator_vtable);19081909/*1910 * We must make sure that all loose refs are read before1911 * accessing the packed-refs file; this avoids a race1912 * condition if loose refs are migrated to the packed-refs1913 * file by a simultaneous process, but our in-memory view is1914 * from before the migration. We ensure this as follows:1915 * First, we call prime_ref_dir(), which pre-reads the loose1916 * references for the subtree into the cache. (If they've1917 * already been read, that's OK; we only need to guarantee1918 * that they're read before the packed refs, not *how much*1919 * before.) After that, we call get_packed_ref_cache(), which1920 * internally checks whether the packed-ref cache is up to1921 * date with what is on disk, and re-reads it if not.1922 */19231924 loose_dir =get_loose_refs(refs);19251926if(prefix && *prefix)1927 loose_dir =find_containing_dir(loose_dir, prefix,0);19281929if(loose_dir) {1930prime_ref_dir(loose_dir);1931 loose_iter =cache_ref_iterator_begin(loose_dir);1932}else{1933/* There's nothing to iterate over. */1934 loose_iter =empty_ref_iterator_begin();1935}19361937 iter->packed_ref_cache =get_packed_ref_cache(refs);1938acquire_packed_ref_cache(iter->packed_ref_cache);1939 packed_dir =get_packed_ref_dir(iter->packed_ref_cache);19401941if(prefix && *prefix)1942 packed_dir =find_containing_dir(packed_dir, prefix,0);19431944if(packed_dir) {1945 packed_iter =cache_ref_iterator_begin(packed_dir);1946}else{1947/* There's nothing to iterate over. */1948 packed_iter =empty_ref_iterator_begin();1949}19501951 iter->iter0 =overlay_ref_iterator_begin(loose_iter, packed_iter);1952 iter->flags = flags;19531954return ref_iterator;1955}19561957/*1958 * Verify that the reference locked by lock has the value old_sha1.1959 * Fail if the reference doesn't exist and mustexist is set. Return 01960 * on success. On error, write an error message to err, set errno, and1961 * return a negative value.1962 */1963static intverify_lock(struct ref_lock *lock,1964const unsigned char*old_sha1,int mustexist,1965struct strbuf *err)1966{1967assert(err);19681969if(read_ref_full(lock->ref_name,1970 mustexist ? RESOLVE_REF_READING :0,1971 lock->old_oid.hash, NULL)) {1972if(old_sha1) {1973int save_errno = errno;1974strbuf_addf(err,"can't verify ref '%s'", lock->ref_name);1975 errno = save_errno;1976return-1;1977}else{1978oidclr(&lock->old_oid);1979return0;1980}1981}1982if(old_sha1 &&hashcmp(lock->old_oid.hash, old_sha1)) {1983strbuf_addf(err,"ref '%s' is at%sbut expected%s",1984 lock->ref_name,1985oid_to_hex(&lock->old_oid),1986sha1_to_hex(old_sha1));1987 errno = EBUSY;1988return-1;1989}1990return0;1991}19921993static intremove_empty_directories(struct strbuf *path)1994{1995/*1996 * we want to create a file but there is a directory there;1997 * if that is an empty directory (or a directory that contains1998 * only empty directories), remove them.1999 */2000returnremove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY);2001}20022003/*2004 * Locks a ref returning the lock on success and NULL on failure.2005 * On failure errno is set to something meaningful.2006 */2007static struct ref_lock *lock_ref_sha1_basic(struct files_ref_store *refs,2008const char*refname,2009const unsigned char*old_sha1,2010const struct string_list *extras,2011const struct string_list *skip,2012unsigned int flags,int*type,2013struct strbuf *err)2014{2015struct strbuf ref_file = STRBUF_INIT;2016struct ref_lock *lock;2017int last_errno =0;2018int lflags = LOCK_NO_DEREF;2019int mustexist = (old_sha1 && !is_null_sha1(old_sha1));2020int resolve_flags = RESOLVE_REF_NO_RECURSE;2021int attempts_remaining =3;2022int resolved;20232024files_assert_main_repository(refs,"lock_ref_sha1_basic");2025assert(err);20262027 lock =xcalloc(1,sizeof(struct ref_lock));20282029if(mustexist)2030 resolve_flags |= RESOLVE_REF_READING;2031if(flags & REF_DELETING)2032 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;20332034strbuf_git_path(&ref_file,"%s", refname);2035 resolved = !!resolve_ref_unsafe(refname, resolve_flags,2036 lock->old_oid.hash, type);2037if(!resolved && errno == EISDIR) {2038/*2039 * we are trying to lock foo but we used to2040 * have foo/bar which now does not exist;2041 * it is normal for the empty directory 'foo'2042 * to remain.2043 */2044if(remove_empty_directories(&ref_file)) {2045 last_errno = errno;2046if(!verify_refname_available_dir(2047 refname, extras, skip,2048get_loose_refs(refs), err))2049strbuf_addf(err,"there are still refs under '%s'",2050 refname);2051goto error_return;2052}2053 resolved = !!resolve_ref_unsafe(refname, resolve_flags,2054 lock->old_oid.hash, type);2055}2056if(!resolved) {2057 last_errno = errno;2058if(last_errno != ENOTDIR ||2059!verify_refname_available_dir(2060 refname, extras, skip,2061get_loose_refs(refs), err))2062strbuf_addf(err,"unable to resolve reference '%s':%s",2063 refname,strerror(last_errno));20642065goto error_return;2066}20672068/*2069 * If the ref did not exist and we are creating it, make sure2070 * there is no existing packed ref whose name begins with our2071 * refname, nor a packed ref whose name is a proper prefix of2072 * our refname.2073 */2074if(is_null_oid(&lock->old_oid) &&2075verify_refname_available_dir(refname, extras, skip,2076get_packed_refs(refs),2077 err)) {2078 last_errno = ENOTDIR;2079goto error_return;2080}20812082 lock->lk =xcalloc(1,sizeof(struct lock_file));20832084 lock->ref_name =xstrdup(refname);20852086 retry:2087switch(safe_create_leading_directories_const(ref_file.buf)) {2088case SCLD_OK:2089break;/* success */2090case SCLD_VANISHED:2091if(--attempts_remaining >0)2092goto retry;2093/* fall through */2094default:2095 last_errno = errno;2096strbuf_addf(err,"unable to create directory for '%s'",2097 ref_file.buf);2098goto error_return;2099}21002101if(hold_lock_file_for_update(lock->lk, ref_file.buf, lflags) <0) {2102 last_errno = errno;2103if(errno == ENOENT && --attempts_remaining >0)2104/*2105 * Maybe somebody just deleted one of the2106 * directories leading to ref_file. Try2107 * again:2108 */2109goto retry;2110else{2111unable_to_lock_message(ref_file.buf, errno, err);2112goto error_return;2113}2114}2115if(verify_lock(lock, old_sha1, mustexist, err)) {2116 last_errno = errno;2117goto error_return;2118}2119goto out;21202121 error_return:2122unlock_ref(lock);2123 lock = NULL;21242125 out:2126strbuf_release(&ref_file);2127 errno = last_errno;2128return lock;2129}21302131/*2132 * Write an entry to the packed-refs file for the specified refname.2133 * If peeled is non-NULL, write it as the entry's peeled value.2134 */2135static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2136unsigned char*peeled)2137{2138fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2139if(peeled)2140fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2141}21422143/*2144 * An each_ref_entry_fn that writes the entry to a packed-refs file.2145 */2146static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2147{2148enum peel_status peel_status =peel_entry(entry,0);21492150if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2151error("internal error:%sis not a valid packed reference!",2152 entry->name);2153write_packed_entry(cb_data, entry->name, entry->u.value.oid.hash,2154 peel_status == PEEL_PEELED ?2155 entry->u.value.peeled.hash : NULL);2156return0;2157}21582159/*2160 * Lock the packed-refs file for writing. Flags is passed to2161 * hold_lock_file_for_update(). Return 0 on success. On errors, set2162 * errno appropriately and return a nonzero value.2163 */2164static intlock_packed_refs(struct files_ref_store *refs,int flags)2165{2166static int timeout_configured =0;2167static int timeout_value =1000;2168struct packed_ref_cache *packed_ref_cache;21692170files_assert_main_repository(refs,"lock_packed_refs");21712172if(!timeout_configured) {2173git_config_get_int("core.packedrefstimeout", &timeout_value);2174 timeout_configured =1;2175}21762177if(hold_lock_file_for_update_timeout(2178&packlock,git_path("packed-refs"),2179 flags, timeout_value) <0)2180return-1;2181/*2182 * Get the current packed-refs while holding the lock. If the2183 * packed-refs file has been modified since we last read it,2184 * this will automatically invalidate the cache and re-read2185 * the packed-refs file.2186 */2187 packed_ref_cache =get_packed_ref_cache(refs);2188 packed_ref_cache->lock = &packlock;2189/* Increment the reference count to prevent it from being freed: */2190acquire_packed_ref_cache(packed_ref_cache);2191return0;2192}21932194/*2195 * Write the current version of the packed refs cache from memory to2196 * disk. The packed-refs file must already be locked for writing (see2197 * lock_packed_refs()). Return zero on success. On errors, set errno2198 * and return a nonzero value2199 */2200static intcommit_packed_refs(struct files_ref_store *refs)2201{2202struct packed_ref_cache *packed_ref_cache =2203get_packed_ref_cache(refs);2204int error =0;2205int save_errno =0;2206FILE*out;22072208files_assert_main_repository(refs,"commit_packed_refs");22092210if(!packed_ref_cache->lock)2211die("internal error: packed-refs not locked");22122213 out =fdopen_lock_file(packed_ref_cache->lock,"w");2214if(!out)2215die_errno("unable to fdopen packed-refs descriptor");22162217fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2218do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),22190, write_packed_entry_fn, out);22202221if(commit_lock_file(packed_ref_cache->lock)) {2222 save_errno = errno;2223 error = -1;2224}2225 packed_ref_cache->lock = NULL;2226release_packed_ref_cache(packed_ref_cache);2227 errno = save_errno;2228return error;2229}22302231/*2232 * Rollback the lockfile for the packed-refs file, and discard the2233 * in-memory packed reference cache. (The packed-refs file will be2234 * read anew if it is needed again after this function is called.)2235 */2236static voidrollback_packed_refs(struct files_ref_store *refs)2237{2238struct packed_ref_cache *packed_ref_cache =2239get_packed_ref_cache(refs);22402241files_assert_main_repository(refs,"rollback_packed_refs");22422243if(!packed_ref_cache->lock)2244die("internal error: packed-refs not locked");2245rollback_lock_file(packed_ref_cache->lock);2246 packed_ref_cache->lock = NULL;2247release_packed_ref_cache(packed_ref_cache);2248clear_packed_ref_cache(refs);2249}22502251struct ref_to_prune {2252struct ref_to_prune *next;2253unsigned char sha1[20];2254char name[FLEX_ARRAY];2255};22562257struct pack_refs_cb_data {2258unsigned int flags;2259struct ref_dir *packed_refs;2260struct ref_to_prune *ref_to_prune;2261};22622263/*2264 * An each_ref_entry_fn that is run over loose references only. If2265 * the loose reference can be packed, add an entry in the packed ref2266 * cache. If the reference should be pruned, also add it to2267 * ref_to_prune in the pack_refs_cb_data.2268 */2269static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2270{2271struct pack_refs_cb_data *cb = cb_data;2272enum peel_status peel_status;2273struct ref_entry *packed_entry;2274int is_tag_ref =starts_with(entry->name,"refs/tags/");22752276/* Do not pack per-worktree refs: */2277if(ref_type(entry->name) != REF_TYPE_NORMAL)2278return0;22792280/* ALWAYS pack tags */2281if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2282return0;22832284/* Do not pack symbolic or broken refs: */2285if((entry->flag & REF_ISSYMREF) || !entry_resolves_to_object(entry))2286return0;22872288/* Add a packed ref cache entry equivalent to the loose entry. */2289 peel_status =peel_entry(entry,1);2290if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2291die("internal error peeling reference%s(%s)",2292 entry->name,oid_to_hex(&entry->u.value.oid));2293 packed_entry =find_ref(cb->packed_refs, entry->name);2294if(packed_entry) {2295/* Overwrite existing packed entry with info from loose entry */2296 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2297oidcpy(&packed_entry->u.value.oid, &entry->u.value.oid);2298}else{2299 packed_entry =create_ref_entry(entry->name, entry->u.value.oid.hash,2300 REF_ISPACKED | REF_KNOWS_PEELED,0);2301add_ref(cb->packed_refs, packed_entry);2302}2303oidcpy(&packed_entry->u.value.peeled, &entry->u.value.peeled);23042305/* Schedule the loose reference for pruning if requested. */2306if((cb->flags & PACK_REFS_PRUNE)) {2307struct ref_to_prune *n;2308FLEX_ALLOC_STR(n, name, entry->name);2309hashcpy(n->sha1, entry->u.value.oid.hash);2310 n->next = cb->ref_to_prune;2311 cb->ref_to_prune = n;2312}2313return0;2314}23152316/*2317 * Remove empty parents, but spare refs/ and immediate subdirs.2318 * Note: munges *name.2319 */2320static voidtry_remove_empty_parents(char*name)2321{2322char*p, *q;2323int i;2324 p = name;2325for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2326while(*p && *p !='/')2327 p++;2328/* tolerate duplicate slashes; see check_refname_format() */2329while(*p =='/')2330 p++;2331}2332for(q = p; *q; q++)2333;2334while(1) {2335while(q > p && *q !='/')2336 q--;2337while(q > p && *(q-1) =='/')2338 q--;2339if(q == p)2340break;2341*q ='\0';2342if(rmdir(git_path("%s", name)))2343break;2344}2345}23462347/* make sure nobody touched the ref, and unlink */2348static voidprune_ref(struct ref_to_prune *r)2349{2350struct ref_transaction *transaction;2351struct strbuf err = STRBUF_INIT;23522353if(check_refname_format(r->name,0))2354return;23552356 transaction =ref_transaction_begin(&err);2357if(!transaction ||2358ref_transaction_delete(transaction, r->name, r->sha1,2359 REF_ISPRUNING | REF_NODEREF, NULL, &err) ||2360ref_transaction_commit(transaction, &err)) {2361ref_transaction_free(transaction);2362error("%s", err.buf);2363strbuf_release(&err);2364return;2365}2366ref_transaction_free(transaction);2367strbuf_release(&err);2368try_remove_empty_parents(r->name);2369}23702371static voidprune_refs(struct ref_to_prune *r)2372{2373while(r) {2374prune_ref(r);2375 r = r->next;2376}2377}23782379static intfiles_pack_refs(struct ref_store *ref_store,unsigned int flags)2380{2381struct files_ref_store *refs =2382files_downcast(ref_store,0,"pack_refs");2383struct pack_refs_cb_data cbdata;23842385memset(&cbdata,0,sizeof(cbdata));2386 cbdata.flags = flags;23872388lock_packed_refs(refs, LOCK_DIE_ON_ERROR);2389 cbdata.packed_refs =get_packed_refs(refs);23902391do_for_each_entry_in_dir(get_loose_refs(refs),0,2392 pack_if_possible_fn, &cbdata);23932394if(commit_packed_refs(refs))2395die_errno("unable to overwrite old ref-pack file");23962397prune_refs(cbdata.ref_to_prune);2398return0;2399}24002401/*2402 * Rewrite the packed-refs file, omitting any refs listed in2403 * 'refnames'. On error, leave packed-refs unchanged, write an error2404 * message to 'err', and return a nonzero value.2405 *2406 * The refs in 'refnames' needn't be sorted. `err` must not be NULL.2407 */2408static intrepack_without_refs(struct files_ref_store *refs,2409struct string_list *refnames,struct strbuf *err)2410{2411struct ref_dir *packed;2412struct string_list_item *refname;2413int ret, needs_repacking =0, removed =0;24142415files_assert_main_repository(refs,"repack_without_refs");2416assert(err);24172418/* Look for a packed ref */2419for_each_string_list_item(refname, refnames) {2420if(get_packed_ref(refs, refname->string)) {2421 needs_repacking =1;2422break;2423}2424}24252426/* Avoid locking if we have nothing to do */2427if(!needs_repacking)2428return0;/* no refname exists in packed refs */24292430if(lock_packed_refs(refs,0)) {2431unable_to_lock_message(git_path("packed-refs"), errno, err);2432return-1;2433}2434 packed =get_packed_refs(refs);24352436/* Remove refnames from the cache */2437for_each_string_list_item(refname, refnames)2438if(remove_entry(packed, refname->string) != -1)2439 removed =1;2440if(!removed) {2441/*2442 * All packed entries disappeared while we were2443 * acquiring the lock.2444 */2445rollback_packed_refs(refs);2446return0;2447}24482449/* Write what remains */2450 ret =commit_packed_refs(refs);2451if(ret)2452strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2453strerror(errno));2454return ret;2455}24562457static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2458{2459assert(err);24602461if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2462/*2463 * loose. The loose file name is the same as the2464 * lockfile name, minus ".lock":2465 */2466char*loose_filename =get_locked_file_path(lock->lk);2467int res =unlink_or_msg(loose_filename, err);2468free(loose_filename);2469if(res)2470return1;2471}2472return0;2473}24742475static intfiles_delete_refs(struct ref_store *ref_store,2476struct string_list *refnames,unsigned int flags)2477{2478struct files_ref_store *refs =2479files_downcast(ref_store,0,"delete_refs");2480struct strbuf err = STRBUF_INIT;2481int i, result =0;24822483if(!refnames->nr)2484return0;24852486 result =repack_without_refs(refs, refnames, &err);2487if(result) {2488/*2489 * If we failed to rewrite the packed-refs file, then2490 * it is unsafe to try to remove loose refs, because2491 * doing so might expose an obsolete packed value for2492 * a reference that might even point at an object that2493 * has been garbage collected.2494 */2495if(refnames->nr ==1)2496error(_("could not delete reference%s:%s"),2497 refnames->items[0].string, err.buf);2498else2499error(_("could not delete references:%s"), err.buf);25002501goto out;2502}25032504for(i =0; i < refnames->nr; i++) {2505const char*refname = refnames->items[i].string;25062507if(delete_ref(refname, NULL, flags))2508 result |=error(_("could not remove reference%s"), refname);2509}25102511out:2512strbuf_release(&err);2513return result;2514}25152516/*2517 * People using contrib's git-new-workdir have .git/logs/refs ->2518 * /some/other/path/.git/logs/refs, and that may live on another device.2519 *2520 * IOW, to avoid cross device rename errors, the temporary renamed log must2521 * live into logs/refs.2522 */2523#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"25242525static intrename_tmp_log(const char*newrefname)2526{2527int attempts_remaining =4;2528struct strbuf path = STRBUF_INIT;2529int ret = -1;25302531 retry:2532strbuf_reset(&path);2533strbuf_git_path(&path,"logs/%s", newrefname);2534switch(safe_create_leading_directories_const(path.buf)) {2535case SCLD_OK:2536break;/* success */2537case SCLD_VANISHED:2538if(--attempts_remaining >0)2539goto retry;2540/* fall through */2541default:2542error("unable to create directory for%s", newrefname);2543goto out;2544}25452546if(rename(git_path(TMP_RENAMED_LOG), path.buf)) {2547if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2548/*2549 * rename(a, b) when b is an existing2550 * directory ought to result in ISDIR, but2551 * Solaris 5.8 gives ENOTDIR. Sheesh.2552 */2553if(remove_empty_directories(&path)) {2554error("Directory not empty: logs/%s", newrefname);2555goto out;2556}2557goto retry;2558}else if(errno == ENOENT && --attempts_remaining >0) {2559/*2560 * Maybe another process just deleted one of2561 * the directories in the path to newrefname.2562 * Try again from the beginning.2563 */2564goto retry;2565}else{2566error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2567 newrefname,strerror(errno));2568goto out;2569}2570}2571 ret =0;2572out:2573strbuf_release(&path);2574return ret;2575}25762577static intfiles_verify_refname_available(struct ref_store *ref_store,2578const char*newname,2579const struct string_list *extras,2580const struct string_list *skip,2581struct strbuf *err)2582{2583struct files_ref_store *refs =2584files_downcast(ref_store,1,"verify_refname_available");2585struct ref_dir *packed_refs =get_packed_refs(refs);2586struct ref_dir *loose_refs =get_loose_refs(refs);25872588if(verify_refname_available_dir(newname, extras, skip,2589 packed_refs, err) ||2590verify_refname_available_dir(newname, extras, skip,2591 loose_refs, err))2592return-1;25932594return0;2595}25962597static intwrite_ref_to_lockfile(struct ref_lock *lock,2598const unsigned char*sha1,struct strbuf *err);2599static intcommit_ref_update(struct files_ref_store *refs,2600struct ref_lock *lock,2601const unsigned char*sha1,const char*logmsg,2602struct strbuf *err);26032604static intfiles_rename_ref(struct ref_store *ref_store,2605const char*oldrefname,const char*newrefname,2606const char*logmsg)2607{2608struct files_ref_store *refs =2609files_downcast(ref_store,0,"rename_ref");2610unsigned char sha1[20], orig_sha1[20];2611int flag =0, logmoved =0;2612struct ref_lock *lock;2613struct stat loginfo;2614int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2615struct strbuf err = STRBUF_INIT;26162617if(log &&S_ISLNK(loginfo.st_mode))2618returnerror("reflog for%sis a symlink", oldrefname);26192620if(!resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,2621 orig_sha1, &flag))2622returnerror("refname%snot found", oldrefname);26232624if(flag & REF_ISSYMREF)2625returnerror("refname%sis a symbolic ref, renaming it is not supported",2626 oldrefname);2627if(!rename_ref_available(oldrefname, newrefname))2628return1;26292630if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2631returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2632 oldrefname,strerror(errno));26332634if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2635error("unable to delete old%s", oldrefname);2636goto rollback;2637}26382639/*2640 * Since we are doing a shallow lookup, sha1 is not the2641 * correct value to pass to delete_ref as old_sha1. But that2642 * doesn't matter, because an old_sha1 check wouldn't add to2643 * the safety anyway; we want to delete the reference whatever2644 * its current value.2645 */2646if(!read_ref_full(newrefname, RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,2647 sha1, NULL) &&2648delete_ref(newrefname, NULL, REF_NODEREF)) {2649if(errno==EISDIR) {2650struct strbuf path = STRBUF_INIT;2651int result;26522653strbuf_git_path(&path,"%s", newrefname);2654 result =remove_empty_directories(&path);2655strbuf_release(&path);26562657if(result) {2658error("Directory not empty:%s", newrefname);2659goto rollback;2660}2661}else{2662error("unable to delete existing%s", newrefname);2663goto rollback;2664}2665}26662667if(log &&rename_tmp_log(newrefname))2668goto rollback;26692670 logmoved = log;26712672 lock =lock_ref_sha1_basic(refs, newrefname, NULL, NULL, NULL,2673 REF_NODEREF, NULL, &err);2674if(!lock) {2675error("unable to rename '%s' to '%s':%s", oldrefname, newrefname, err.buf);2676strbuf_release(&err);2677goto rollback;2678}2679hashcpy(lock->old_oid.hash, orig_sha1);26802681if(write_ref_to_lockfile(lock, orig_sha1, &err) ||2682commit_ref_update(refs, lock, orig_sha1, logmsg, &err)) {2683error("unable to write current sha1 into%s:%s", newrefname, err.buf);2684strbuf_release(&err);2685goto rollback;2686}26872688return0;26892690 rollback:2691 lock =lock_ref_sha1_basic(refs, oldrefname, NULL, NULL, NULL,2692 REF_NODEREF, NULL, &err);2693if(!lock) {2694error("unable to lock%sfor rollback:%s", oldrefname, err.buf);2695strbuf_release(&err);2696goto rollbacklog;2697}26982699 flag = log_all_ref_updates;2700 log_all_ref_updates =0;2701if(write_ref_to_lockfile(lock, orig_sha1, &err) ||2702commit_ref_update(refs, lock, orig_sha1, NULL, &err)) {2703error("unable to write current sha1 into%s:%s", oldrefname, err.buf);2704strbuf_release(&err);2705}2706 log_all_ref_updates = flag;27072708 rollbacklog:2709if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2710error("unable to restore logfile%sfrom%s:%s",2711 oldrefname, newrefname,strerror(errno));2712if(!logmoved && log &&2713rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2714error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2715 oldrefname,strerror(errno));27162717return1;2718}27192720static intclose_ref(struct ref_lock *lock)2721{2722if(close_lock_file(lock->lk))2723return-1;2724return0;2725}27262727static intcommit_ref(struct ref_lock *lock)2728{2729char*path =get_locked_file_path(lock->lk);2730struct stat st;27312732if(!lstat(path, &st) &&S_ISDIR(st.st_mode)) {2733/*2734 * There is a directory at the path we want to rename2735 * the lockfile to. Hopefully it is empty; try to2736 * delete it.2737 */2738size_t len =strlen(path);2739struct strbuf sb_path = STRBUF_INIT;27402741strbuf_attach(&sb_path, path, len, len);27422743/*2744 * If this fails, commit_lock_file() will also fail2745 * and will report the problem.2746 */2747remove_empty_directories(&sb_path);2748strbuf_release(&sb_path);2749}else{2750free(path);2751}27522753if(commit_lock_file(lock->lk))2754return-1;2755return0;2756}27572758/*2759 * Create a reflog for a ref. If force_create = 0, the reflog will2760 * only be created for certain refs (those for which2761 * should_autocreate_reflog returns non-zero. Otherwise, create it2762 * regardless of the ref name. Fill in *err and return -1 on failure.2763 */2764static intlog_ref_setup(const char*refname,struct strbuf *logfile,struct strbuf *err,int force_create)2765{2766int logfd, oflags = O_APPEND | O_WRONLY;27672768strbuf_git_path(logfile,"logs/%s", refname);2769if(force_create ||should_autocreate_reflog(refname)) {2770if(safe_create_leading_directories(logfile->buf) <0) {2771strbuf_addf(err,"unable to create directory for '%s': "2772"%s", logfile->buf,strerror(errno));2773return-1;2774}2775 oflags |= O_CREAT;2776}27772778 logfd =open(logfile->buf, oflags,0666);2779if(logfd <0) {2780if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))2781return0;27822783if(errno == EISDIR) {2784if(remove_empty_directories(logfile)) {2785strbuf_addf(err,"there are still logs under "2786"'%s'", logfile->buf);2787return-1;2788}2789 logfd =open(logfile->buf, oflags,0666);2790}27912792if(logfd <0) {2793strbuf_addf(err,"unable to append to '%s':%s",2794 logfile->buf,strerror(errno));2795return-1;2796}2797}27982799adjust_shared_perm(logfile->buf);2800close(logfd);2801return0;2802}280328042805static intfiles_create_reflog(struct ref_store *ref_store,2806const char*refname,int force_create,2807struct strbuf *err)2808{2809int ret;2810struct strbuf sb = STRBUF_INIT;28112812/* Check validity (but we don't need the result): */2813files_downcast(ref_store,0,"create_reflog");28142815 ret =log_ref_setup(refname, &sb, err, force_create);2816strbuf_release(&sb);2817return ret;2818}28192820static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,2821const unsigned char*new_sha1,2822const char*committer,const char*msg)2823{2824int msglen, written;2825unsigned maxlen, len;2826char*logrec;28272828 msglen = msg ?strlen(msg) :0;2829 maxlen =strlen(committer) + msglen +100;2830 logrec =xmalloc(maxlen);2831 len =xsnprintf(logrec, maxlen,"%s %s %s\n",2832sha1_to_hex(old_sha1),2833sha1_to_hex(new_sha1),2834 committer);2835if(msglen)2836 len +=copy_reflog_msg(logrec + len -1, msg) -1;28372838 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;2839free(logrec);2840if(written != len)2841return-1;28422843return0;2844}28452846static intlog_ref_write_1(const char*refname,const unsigned char*old_sha1,2847const unsigned char*new_sha1,const char*msg,2848struct strbuf *logfile,int flags,2849struct strbuf *err)2850{2851int logfd, result, oflags = O_APPEND | O_WRONLY;28522853if(log_all_ref_updates <0)2854 log_all_ref_updates = !is_bare_repository();28552856 result =log_ref_setup(refname, logfile, err, flags & REF_FORCE_CREATE_REFLOG);28572858if(result)2859return result;28602861 logfd =open(logfile->buf, oflags);2862if(logfd <0)2863return0;2864 result =log_ref_write_fd(logfd, old_sha1, new_sha1,2865git_committer_info(0), msg);2866if(result) {2867strbuf_addf(err,"unable to append to '%s':%s", logfile->buf,2868strerror(errno));2869close(logfd);2870return-1;2871}2872if(close(logfd)) {2873strbuf_addf(err,"unable to append to '%s':%s", logfile->buf,2874strerror(errno));2875return-1;2876}2877return0;2878}28792880static intlog_ref_write(const char*refname,const unsigned char*old_sha1,2881const unsigned char*new_sha1,const char*msg,2882int flags,struct strbuf *err)2883{2884returnfiles_log_ref_write(refname, old_sha1, new_sha1, msg, flags,2885 err);2886}28872888intfiles_log_ref_write(const char*refname,const unsigned char*old_sha1,2889const unsigned char*new_sha1,const char*msg,2890int flags,struct strbuf *err)2891{2892struct strbuf sb = STRBUF_INIT;2893int ret =log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb, flags,2894 err);2895strbuf_release(&sb);2896return ret;2897}28982899/*2900 * Write sha1 into the open lockfile, then close the lockfile. On2901 * errors, rollback the lockfile, fill in *err and2902 * return -1.2903 */2904static intwrite_ref_to_lockfile(struct ref_lock *lock,2905const unsigned char*sha1,struct strbuf *err)2906{2907static char term ='\n';2908struct object *o;2909int fd;29102911 o =parse_object(sha1);2912if(!o) {2913strbuf_addf(err,2914"trying to write ref '%s' with nonexistent object%s",2915 lock->ref_name,sha1_to_hex(sha1));2916unlock_ref(lock);2917return-1;2918}2919if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {2920strbuf_addf(err,2921"trying to write non-commit object%sto branch '%s'",2922sha1_to_hex(sha1), lock->ref_name);2923unlock_ref(lock);2924return-1;2925}2926 fd =get_lock_file_fd(lock->lk);2927if(write_in_full(fd,sha1_to_hex(sha1),40) !=40||2928write_in_full(fd, &term,1) !=1||2929close_ref(lock) <0) {2930strbuf_addf(err,2931"couldn't write '%s'",get_lock_file_path(lock->lk));2932unlock_ref(lock);2933return-1;2934}2935return0;2936}29372938/*2939 * Commit a change to a loose reference that has already been written2940 * to the loose reference lockfile. Also update the reflogs if2941 * necessary, using the specified lockmsg (which can be NULL).2942 */2943static intcommit_ref_update(struct files_ref_store *refs,2944struct ref_lock *lock,2945const unsigned char*sha1,const char*logmsg,2946struct strbuf *err)2947{2948files_assert_main_repository(refs,"commit_ref_update");29492950clear_loose_ref_cache(refs);2951if(log_ref_write(lock->ref_name, lock->old_oid.hash, sha1, logmsg,0, err)) {2952char*old_msg =strbuf_detach(err, NULL);2953strbuf_addf(err,"cannot update the ref '%s':%s",2954 lock->ref_name, old_msg);2955free(old_msg);2956unlock_ref(lock);2957return-1;2958}29592960if(strcmp(lock->ref_name,"HEAD") !=0) {2961/*2962 * Special hack: If a branch is updated directly and HEAD2963 * points to it (may happen on the remote side of a push2964 * for example) then logically the HEAD reflog should be2965 * updated too.2966 * A generic solution implies reverse symref information,2967 * but finding all symrefs pointing to the given branch2968 * would be rather costly for this rare event (the direct2969 * update of a branch) to be worth it. So let's cheat and2970 * check with HEAD only which should cover 99% of all usage2971 * scenarios (even 100% of the default ones).2972 */2973unsigned char head_sha1[20];2974int head_flag;2975const char*head_ref;29762977 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,2978 head_sha1, &head_flag);2979if(head_ref && (head_flag & REF_ISSYMREF) &&2980!strcmp(head_ref, lock->ref_name)) {2981struct strbuf log_err = STRBUF_INIT;2982if(log_ref_write("HEAD", lock->old_oid.hash, sha1,2983 logmsg,0, &log_err)) {2984error("%s", log_err.buf);2985strbuf_release(&log_err);2986}2987}2988}29892990if(commit_ref(lock)) {2991strbuf_addf(err,"couldn't set '%s'", lock->ref_name);2992unlock_ref(lock);2993return-1;2994}29952996unlock_ref(lock);2997return0;2998}29993000static intcreate_ref_symlink(struct ref_lock *lock,const char*target)3001{3002int ret = -1;3003#ifndef NO_SYMLINK_HEAD3004char*ref_path =get_locked_file_path(lock->lk);3005unlink(ref_path);3006 ret =symlink(target, ref_path);3007free(ref_path);30083009if(ret)3010fprintf(stderr,"no symlink - falling back to symbolic ref\n");3011#endif3012return ret;3013}30143015static voidupdate_symref_reflog(struct ref_lock *lock,const char*refname,3016const char*target,const char*logmsg)3017{3018struct strbuf err = STRBUF_INIT;3019unsigned char new_sha1[20];3020if(logmsg && !read_ref(target, new_sha1) &&3021log_ref_write(refname, lock->old_oid.hash, new_sha1, logmsg,0, &err)) {3022error("%s", err.buf);3023strbuf_release(&err);3024}3025}30263027static intcreate_symref_locked(struct ref_lock *lock,const char*refname,3028const char*target,const char*logmsg)3029{3030if(prefer_symlink_refs && !create_ref_symlink(lock, target)) {3031update_symref_reflog(lock, refname, target, logmsg);3032return0;3033}30343035if(!fdopen_lock_file(lock->lk,"w"))3036returnerror("unable to fdopen%s:%s",3037 lock->lk->tempfile.filename.buf,strerror(errno));30383039update_symref_reflog(lock, refname, target, logmsg);30403041/* no error check; commit_ref will check ferror */3042fprintf(lock->lk->tempfile.fp,"ref:%s\n", target);3043if(commit_ref(lock) <0)3044returnerror("unable to write symref for%s:%s", refname,3045strerror(errno));3046return0;3047}30483049static intfiles_create_symref(struct ref_store *ref_store,3050const char*refname,const char*target,3051const char*logmsg)3052{3053struct files_ref_store *refs =3054files_downcast(ref_store,0,"create_symref");3055struct strbuf err = STRBUF_INIT;3056struct ref_lock *lock;3057int ret;30583059 lock =lock_ref_sha1_basic(refs, refname, NULL,3060 NULL, NULL, REF_NODEREF, NULL,3061&err);3062if(!lock) {3063error("%s", err.buf);3064strbuf_release(&err);3065return-1;3066}30673068 ret =create_symref_locked(lock, refname, target, logmsg);3069unlock_ref(lock);3070return ret;3071}30723073intset_worktree_head_symref(const char*gitdir,const char*target)3074{3075static struct lock_file head_lock;3076struct ref_lock *lock;3077struct strbuf head_path = STRBUF_INIT;3078const char*head_rel;3079int ret;30803081strbuf_addf(&head_path,"%s/HEAD",absolute_path(gitdir));3082if(hold_lock_file_for_update(&head_lock, head_path.buf,3083 LOCK_NO_DEREF) <0) {3084struct strbuf err = STRBUF_INIT;3085unable_to_lock_message(head_path.buf, errno, &err);3086error("%s", err.buf);3087strbuf_release(&err);3088strbuf_release(&head_path);3089return-1;3090}30913092/* head_rel will be "HEAD" for the main tree, "worktrees/wt/HEAD" for3093 linked trees */3094 head_rel =remove_leading_path(head_path.buf,3095absolute_path(get_git_common_dir()));3096/* to make use of create_symref_locked(), initialize ref_lock */3097 lock =xcalloc(1,sizeof(struct ref_lock));3098 lock->lk = &head_lock;3099 lock->ref_name =xstrdup(head_rel);31003101 ret =create_symref_locked(lock, head_rel, target, NULL);31023103unlock_ref(lock);/* will free lock */3104strbuf_release(&head_path);3105return ret;3106}31073108static intfiles_reflog_exists(struct ref_store *ref_store,3109const char*refname)3110{3111struct stat st;31123113/* Check validity (but we don't need the result): */3114files_downcast(ref_store,0,"reflog_exists");31153116return!lstat(git_path("logs/%s", refname), &st) &&3117S_ISREG(st.st_mode);3118}31193120static intfiles_delete_reflog(struct ref_store *ref_store,3121const char*refname)3122{3123/* Check validity (but we don't need the result): */3124files_downcast(ref_store,0,"delete_reflog");31253126returnremove_path(git_path("logs/%s", refname));3127}31283129static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)3130{3131unsigned char osha1[20], nsha1[20];3132char*email_end, *message;3133unsigned long timestamp;3134int tz;31353136/* old SP new SP name <email> SP time TAB msg LF */3137if(sb->len <83|| sb->buf[sb->len -1] !='\n'||3138get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||3139get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||3140!(email_end =strchr(sb->buf +82,'>')) ||3141 email_end[1] !=' '||3142!(timestamp =strtoul(email_end +2, &message,10)) ||3143!message || message[0] !=' '||3144(message[1] !='+'&& message[1] !='-') ||3145!isdigit(message[2]) || !isdigit(message[3]) ||3146!isdigit(message[4]) || !isdigit(message[5]))3147return0;/* corrupt? */3148 email_end[1] ='\0';3149 tz =strtol(message +1, NULL,10);3150if(message[6] !='\t')3151 message +=6;3152else3153 message +=7;3154returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);3155}31563157static char*find_beginning_of_line(char*bob,char*scan)3158{3159while(bob < scan && *(--scan) !='\n')3160;/* keep scanning backwards */3161/*3162 * Return either beginning of the buffer, or LF at the end of3163 * the previous line.3164 */3165return scan;3166}31673168static intfiles_for_each_reflog_ent_reverse(struct ref_store *ref_store,3169const char*refname,3170 each_reflog_ent_fn fn,3171void*cb_data)3172{3173struct strbuf sb = STRBUF_INIT;3174FILE*logfp;3175long pos;3176int ret =0, at_tail =1;31773178/* Check validity (but we don't need the result): */3179files_downcast(ref_store,0,"for_each_reflog_ent_reverse");31803181 logfp =fopen(git_path("logs/%s", refname),"r");3182if(!logfp)3183return-1;31843185/* Jump to the end */3186if(fseek(logfp,0, SEEK_END) <0)3187returnerror("cannot seek back reflog for%s:%s",3188 refname,strerror(errno));3189 pos =ftell(logfp);3190while(!ret &&0< pos) {3191int cnt;3192size_t nread;3193char buf[BUFSIZ];3194char*endp, *scanp;31953196/* Fill next block from the end */3197 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;3198if(fseek(logfp, pos - cnt, SEEK_SET))3199returnerror("cannot seek back reflog for%s:%s",3200 refname,strerror(errno));3201 nread =fread(buf, cnt,1, logfp);3202if(nread !=1)3203returnerror("cannot read%dbytes from reflog for%s:%s",3204 cnt, refname,strerror(errno));3205 pos -= cnt;32063207 scanp = endp = buf + cnt;3208if(at_tail && scanp[-1] =='\n')3209/* Looking at the final LF at the end of the file */3210 scanp--;3211 at_tail =0;32123213while(buf < scanp) {3214/*3215 * terminating LF of the previous line, or the beginning3216 * of the buffer.3217 */3218char*bp;32193220 bp =find_beginning_of_line(buf, scanp);32213222if(*bp =='\n') {3223/*3224 * The newline is the end of the previous line,3225 * so we know we have complete line starting3226 * at (bp + 1). Prefix it onto any prior data3227 * we collected for the line and process it.3228 */3229strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));3230 scanp = bp;3231 endp = bp +1;3232 ret =show_one_reflog_ent(&sb, fn, cb_data);3233strbuf_reset(&sb);3234if(ret)3235break;3236}else if(!pos) {3237/*3238 * We are at the start of the buffer, and the3239 * start of the file; there is no previous3240 * line, and we have everything for this one.3241 * Process it, and we can end the loop.3242 */3243strbuf_splice(&sb,0,0, buf, endp - buf);3244 ret =show_one_reflog_ent(&sb, fn, cb_data);3245strbuf_reset(&sb);3246break;3247}32483249if(bp == buf) {3250/*3251 * We are at the start of the buffer, and there3252 * is more file to read backwards. Which means3253 * we are in the middle of a line. Note that we3254 * may get here even if *bp was a newline; that3255 * just means we are at the exact end of the3256 * previous line, rather than some spot in the3257 * middle.3258 *3259 * Save away what we have to be combined with3260 * the data from the next read.3261 */3262strbuf_splice(&sb,0,0, buf, endp - buf);3263break;3264}3265}32663267}3268if(!ret && sb.len)3269die("BUG: reverse reflog parser had leftover data");32703271fclose(logfp);3272strbuf_release(&sb);3273return ret;3274}32753276static intfiles_for_each_reflog_ent(struct ref_store *ref_store,3277const char*refname,3278 each_reflog_ent_fn fn,void*cb_data)3279{3280FILE*logfp;3281struct strbuf sb = STRBUF_INIT;3282int ret =0;32833284/* Check validity (but we don't need the result): */3285files_downcast(ref_store,0,"for_each_reflog_ent");32863287 logfp =fopen(git_path("logs/%s", refname),"r");3288if(!logfp)3289return-1;32903291while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3292 ret =show_one_reflog_ent(&sb, fn, cb_data);3293fclose(logfp);3294strbuf_release(&sb);3295return ret;3296}32973298struct files_reflog_iterator {3299struct ref_iterator base;33003301struct dir_iterator *dir_iterator;3302struct object_id oid;3303};33043305static intfiles_reflog_iterator_advance(struct ref_iterator *ref_iterator)3306{3307struct files_reflog_iterator *iter =3308(struct files_reflog_iterator *)ref_iterator;3309struct dir_iterator *diter = iter->dir_iterator;3310int ok;33113312while((ok =dir_iterator_advance(diter)) == ITER_OK) {3313int flags;33143315if(!S_ISREG(diter->st.st_mode))3316continue;3317if(diter->basename[0] =='.')3318continue;3319if(ends_with(diter->basename,".lock"))3320continue;33213322if(read_ref_full(diter->relative_path,0,3323 iter->oid.hash, &flags)) {3324error("bad ref for%s", diter->path.buf);3325continue;3326}33273328 iter->base.refname = diter->relative_path;3329 iter->base.oid = &iter->oid;3330 iter->base.flags = flags;3331return ITER_OK;3332}33333334 iter->dir_iterator = NULL;3335if(ref_iterator_abort(ref_iterator) == ITER_ERROR)3336 ok = ITER_ERROR;3337return ok;3338}33393340static intfiles_reflog_iterator_peel(struct ref_iterator *ref_iterator,3341struct object_id *peeled)3342{3343die("BUG: ref_iterator_peel() called for reflog_iterator");3344}33453346static intfiles_reflog_iterator_abort(struct ref_iterator *ref_iterator)3347{3348struct files_reflog_iterator *iter =3349(struct files_reflog_iterator *)ref_iterator;3350int ok = ITER_DONE;33513352if(iter->dir_iterator)3353 ok =dir_iterator_abort(iter->dir_iterator);33543355base_ref_iterator_free(ref_iterator);3356return ok;3357}33583359static struct ref_iterator_vtable files_reflog_iterator_vtable = {3360 files_reflog_iterator_advance,3361 files_reflog_iterator_peel,3362 files_reflog_iterator_abort3363};33643365static struct ref_iterator *files_reflog_iterator_begin(struct ref_store *ref_store)3366{3367struct files_reflog_iterator *iter =xcalloc(1,sizeof(*iter));3368struct ref_iterator *ref_iterator = &iter->base;33693370/* Check validity (but we don't need the result): */3371files_downcast(ref_store,0,"reflog_iterator_begin");33723373base_ref_iterator_init(ref_iterator, &files_reflog_iterator_vtable);3374 iter->dir_iterator =dir_iterator_begin(git_path("logs"));3375return ref_iterator;3376}33773378static intref_update_reject_duplicates(struct string_list *refnames,3379struct strbuf *err)3380{3381int i, n = refnames->nr;33823383assert(err);33843385for(i =1; i < n; i++)3386if(!strcmp(refnames->items[i -1].string, refnames->items[i].string)) {3387strbuf_addf(err,3388"multiple updates for ref '%s' not allowed.",3389 refnames->items[i].string);3390return1;3391}3392return0;3393}33943395/*3396 * If update is a direct update of head_ref (the reference pointed to3397 * by HEAD), then add an extra REF_LOG_ONLY update for HEAD.3398 */3399static intsplit_head_update(struct ref_update *update,3400struct ref_transaction *transaction,3401const char*head_ref,3402struct string_list *affected_refnames,3403struct strbuf *err)3404{3405struct string_list_item *item;3406struct ref_update *new_update;34073408if((update->flags & REF_LOG_ONLY) ||3409(update->flags & REF_ISPRUNING) ||3410(update->flags & REF_UPDATE_VIA_HEAD))3411return0;34123413if(strcmp(update->refname, head_ref))3414return0;34153416/*3417 * First make sure that HEAD is not already in the3418 * transaction. This insertion is O(N) in the transaction3419 * size, but it happens at most once per transaction.3420 */3421 item =string_list_insert(affected_refnames,"HEAD");3422if(item->util) {3423/* An entry already existed */3424strbuf_addf(err,3425"multiple updates for 'HEAD' (including one "3426"via its referent '%s') are not allowed",3427 update->refname);3428return TRANSACTION_NAME_CONFLICT;3429}34303431 new_update =ref_transaction_add_update(3432 transaction,"HEAD",3433 update->flags | REF_LOG_ONLY | REF_NODEREF,3434 update->new_sha1, update->old_sha1,3435 update->msg);34363437 item->util = new_update;34383439return0;3440}34413442/*3443 * update is for a symref that points at referent and doesn't have3444 * REF_NODEREF set. Split it into two updates:3445 * - The original update, but with REF_LOG_ONLY and REF_NODEREF set3446 * - A new, separate update for the referent reference3447 * Note that the new update will itself be subject to splitting when3448 * the iteration gets to it.3449 */3450static intsplit_symref_update(struct files_ref_store *refs,3451struct ref_update *update,3452const char*referent,3453struct ref_transaction *transaction,3454struct string_list *affected_refnames,3455struct strbuf *err)3456{3457struct string_list_item *item;3458struct ref_update *new_update;3459unsigned int new_flags;34603461/*3462 * First make sure that referent is not already in the3463 * transaction. This insertion is O(N) in the transaction3464 * size, but it happens at most once per symref in a3465 * transaction.3466 */3467 item =string_list_insert(affected_refnames, referent);3468if(item->util) {3469/* An entry already existed */3470strbuf_addf(err,3471"multiple updates for '%s' (including one "3472"via symref '%s') are not allowed",3473 referent, update->refname);3474return TRANSACTION_NAME_CONFLICT;3475}34763477 new_flags = update->flags;3478if(!strcmp(update->refname,"HEAD")) {3479/*3480 * Record that the new update came via HEAD, so that3481 * when we process it, split_head_update() doesn't try3482 * to add another reflog update for HEAD. Note that3483 * this bit will be propagated if the new_update3484 * itself needs to be split.3485 */3486 new_flags |= REF_UPDATE_VIA_HEAD;3487}34883489 new_update =ref_transaction_add_update(3490 transaction, referent, new_flags,3491 update->new_sha1, update->old_sha1,3492 update->msg);34933494 new_update->parent_update = update;34953496/*3497 * Change the symbolic ref update to log only. Also, it3498 * doesn't need to check its old SHA-1 value, as that will be3499 * done when new_update is processed.3500 */3501 update->flags |= REF_LOG_ONLY | REF_NODEREF;3502 update->flags &= ~REF_HAVE_OLD;35033504 item->util = new_update;35053506return0;3507}35083509/*3510 * Return the refname under which update was originally requested.3511 */3512static const char*original_update_refname(struct ref_update *update)3513{3514while(update->parent_update)3515 update = update->parent_update;35163517return update->refname;3518}35193520/*3521 * Check whether the REF_HAVE_OLD and old_oid values stored in update3522 * are consistent with oid, which is the reference's current value. If3523 * everything is OK, return 0; otherwise, write an error message to3524 * err and return -1.3525 */3526static intcheck_old_oid(struct ref_update *update,struct object_id *oid,3527struct strbuf *err)3528{3529if(!(update->flags & REF_HAVE_OLD) ||3530!hashcmp(oid->hash, update->old_sha1))3531return0;35323533if(is_null_sha1(update->old_sha1))3534strbuf_addf(err,"cannot lock ref '%s': "3535"reference already exists",3536original_update_refname(update));3537else if(is_null_oid(oid))3538strbuf_addf(err,"cannot lock ref '%s': "3539"reference is missing but expected%s",3540original_update_refname(update),3541sha1_to_hex(update->old_sha1));3542else3543strbuf_addf(err,"cannot lock ref '%s': "3544"is at%sbut expected%s",3545original_update_refname(update),3546oid_to_hex(oid),3547sha1_to_hex(update->old_sha1));35483549return-1;3550}35513552/*3553 * Prepare for carrying out update:3554 * - Lock the reference referred to by update.3555 * - Read the reference under lock.3556 * - Check that its old SHA-1 value (if specified) is correct, and in3557 * any case record it in update->lock->old_oid for later use when3558 * writing the reflog.3559 * - If it is a symref update without REF_NODEREF, split it up into a3560 * REF_LOG_ONLY update of the symref and add a separate update for3561 * the referent to transaction.3562 * - If it is an update of head_ref, add a corresponding REF_LOG_ONLY3563 * update of HEAD.3564 */3565static intlock_ref_for_update(struct files_ref_store *refs,3566struct ref_update *update,3567struct ref_transaction *transaction,3568const char*head_ref,3569struct string_list *affected_refnames,3570struct strbuf *err)3571{3572struct strbuf referent = STRBUF_INIT;3573int mustexist = (update->flags & REF_HAVE_OLD) &&3574!is_null_sha1(update->old_sha1);3575int ret;3576struct ref_lock *lock;35773578files_assert_main_repository(refs,"lock_ref_for_update");35793580if((update->flags & REF_HAVE_NEW) &&is_null_sha1(update->new_sha1))3581 update->flags |= REF_DELETING;35823583if(head_ref) {3584 ret =split_head_update(update, transaction, head_ref,3585 affected_refnames, err);3586if(ret)3587return ret;3588}35893590 ret =lock_raw_ref(refs, update->refname, mustexist,3591 affected_refnames, NULL,3592&lock, &referent,3593&update->type, err);3594if(ret) {3595char*reason;35963597 reason =strbuf_detach(err, NULL);3598strbuf_addf(err,"cannot lock ref '%s':%s",3599original_update_refname(update), reason);3600free(reason);3601return ret;3602}36033604 update->backend_data = lock;36053606if(update->type & REF_ISSYMREF) {3607if(update->flags & REF_NODEREF) {3608/*3609 * We won't be reading the referent as part of3610 * the transaction, so we have to read it here3611 * to record and possibly check old_sha1:3612 */3613if(read_ref_full(referent.buf,0,3614 lock->old_oid.hash, NULL)) {3615if(update->flags & REF_HAVE_OLD) {3616strbuf_addf(err,"cannot lock ref '%s': "3617"error reading reference",3618original_update_refname(update));3619return-1;3620}3621}else if(check_old_oid(update, &lock->old_oid, err)) {3622return TRANSACTION_GENERIC_ERROR;3623}3624}else{3625/*3626 * Create a new update for the reference this3627 * symref is pointing at. Also, we will record3628 * and verify old_sha1 for this update as part3629 * of processing the split-off update, so we3630 * don't have to do it here.3631 */3632 ret =split_symref_update(refs, update,3633 referent.buf, transaction,3634 affected_refnames, err);3635if(ret)3636return ret;3637}3638}else{3639struct ref_update *parent_update;36403641if(check_old_oid(update, &lock->old_oid, err))3642return TRANSACTION_GENERIC_ERROR;36433644/*3645 * If this update is happening indirectly because of a3646 * symref update, record the old SHA-1 in the parent3647 * update:3648 */3649for(parent_update = update->parent_update;3650 parent_update;3651 parent_update = parent_update->parent_update) {3652struct ref_lock *parent_lock = parent_update->backend_data;3653oidcpy(&parent_lock->old_oid, &lock->old_oid);3654}3655}36563657if((update->flags & REF_HAVE_NEW) &&3658!(update->flags & REF_DELETING) &&3659!(update->flags & REF_LOG_ONLY)) {3660if(!(update->type & REF_ISSYMREF) &&3661!hashcmp(lock->old_oid.hash, update->new_sha1)) {3662/*3663 * The reference already has the desired3664 * value, so we don't need to write it.3665 */3666}else if(write_ref_to_lockfile(lock, update->new_sha1,3667 err)) {3668char*write_err =strbuf_detach(err, NULL);36693670/*3671 * The lock was freed upon failure of3672 * write_ref_to_lockfile():3673 */3674 update->backend_data = NULL;3675strbuf_addf(err,3676"cannot update ref '%s':%s",3677 update->refname, write_err);3678free(write_err);3679return TRANSACTION_GENERIC_ERROR;3680}else{3681 update->flags |= REF_NEEDS_COMMIT;3682}3683}3684if(!(update->flags & REF_NEEDS_COMMIT)) {3685/*3686 * We didn't call write_ref_to_lockfile(), so3687 * the lockfile is still open. Close it to3688 * free up the file descriptor:3689 */3690if(close_ref(lock)) {3691strbuf_addf(err,"couldn't close '%s.lock'",3692 update->refname);3693return TRANSACTION_GENERIC_ERROR;3694}3695}3696return0;3697}36983699static intfiles_transaction_commit(struct ref_store *ref_store,3700struct ref_transaction *transaction,3701struct strbuf *err)3702{3703struct files_ref_store *refs =3704files_downcast(ref_store,0,"ref_transaction_commit");3705int ret =0, i;3706struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3707struct string_list_item *ref_to_delete;3708struct string_list affected_refnames = STRING_LIST_INIT_NODUP;3709char*head_ref = NULL;3710int head_type;3711struct object_id head_oid;37123713assert(err);37143715if(transaction->state != REF_TRANSACTION_OPEN)3716die("BUG: commit called for transaction that is not open");37173718if(!transaction->nr) {3719 transaction->state = REF_TRANSACTION_CLOSED;3720return0;3721}37223723/*3724 * Fail if a refname appears more than once in the3725 * transaction. (If we end up splitting up any updates using3726 * split_symref_update() or split_head_update(), those3727 * functions will check that the new updates don't have the3728 * same refname as any existing ones.)3729 */3730for(i =0; i < transaction->nr; i++) {3731struct ref_update *update = transaction->updates[i];3732struct string_list_item *item =3733string_list_append(&affected_refnames, update->refname);37343735/*3736 * We store a pointer to update in item->util, but at3737 * the moment we never use the value of this field3738 * except to check whether it is non-NULL.3739 */3740 item->util = update;3741}3742string_list_sort(&affected_refnames);3743if(ref_update_reject_duplicates(&affected_refnames, err)) {3744 ret = TRANSACTION_GENERIC_ERROR;3745goto cleanup;3746}37473748/*3749 * Special hack: If a branch is updated directly and HEAD3750 * points to it (may happen on the remote side of a push3751 * for example) then logically the HEAD reflog should be3752 * updated too.3753 *3754 * A generic solution would require reverse symref lookups,3755 * but finding all symrefs pointing to a given branch would be3756 * rather costly for this rare event (the direct update of a3757 * branch) to be worth it. So let's cheat and check with HEAD3758 * only, which should cover 99% of all usage scenarios (even3759 * 100% of the default ones).3760 *3761 * So if HEAD is a symbolic reference, then record the name of3762 * the reference that it points to. If we see an update of3763 * head_ref within the transaction, then split_head_update()3764 * arranges for the reflog of HEAD to be updated, too.3765 */3766 head_ref =resolve_refdup("HEAD", RESOLVE_REF_NO_RECURSE,3767 head_oid.hash, &head_type);37683769if(head_ref && !(head_type & REF_ISSYMREF)) {3770free(head_ref);3771 head_ref = NULL;3772}37733774/*3775 * Acquire all locks, verify old values if provided, check3776 * that new values are valid, and write new values to the3777 * lockfiles, ready to be activated. Only keep one lockfile3778 * open at a time to avoid running out of file descriptors.3779 */3780for(i =0; i < transaction->nr; i++) {3781struct ref_update *update = transaction->updates[i];37823783 ret =lock_ref_for_update(refs, update, transaction,3784 head_ref, &affected_refnames, err);3785if(ret)3786goto cleanup;3787}37883789/* Perform updates first so live commits remain referenced */3790for(i =0; i < transaction->nr; i++) {3791struct ref_update *update = transaction->updates[i];3792struct ref_lock *lock = update->backend_data;37933794if(update->flags & REF_NEEDS_COMMIT ||3795 update->flags & REF_LOG_ONLY) {3796if(log_ref_write(lock->ref_name, lock->old_oid.hash,3797 update->new_sha1,3798 update->msg, update->flags, err)) {3799char*old_msg =strbuf_detach(err, NULL);38003801strbuf_addf(err,"cannot update the ref '%s':%s",3802 lock->ref_name, old_msg);3803free(old_msg);3804unlock_ref(lock);3805 update->backend_data = NULL;3806 ret = TRANSACTION_GENERIC_ERROR;3807goto cleanup;3808}3809}3810if(update->flags & REF_NEEDS_COMMIT) {3811clear_loose_ref_cache(refs);3812if(commit_ref(lock)) {3813strbuf_addf(err,"couldn't set '%s'", lock->ref_name);3814unlock_ref(lock);3815 update->backend_data = NULL;3816 ret = TRANSACTION_GENERIC_ERROR;3817goto cleanup;3818}3819}3820}3821/* Perform deletes now that updates are safely completed */3822for(i =0; i < transaction->nr; i++) {3823struct ref_update *update = transaction->updates[i];3824struct ref_lock *lock = update->backend_data;38253826if(update->flags & REF_DELETING &&3827!(update->flags & REF_LOG_ONLY)) {3828if(delete_ref_loose(lock, update->type, err)) {3829 ret = TRANSACTION_GENERIC_ERROR;3830goto cleanup;3831}38323833if(!(update->flags & REF_ISPRUNING))3834string_list_append(&refs_to_delete,3835 lock->ref_name);3836}3837}38383839if(repack_without_refs(refs, &refs_to_delete, err)) {3840 ret = TRANSACTION_GENERIC_ERROR;3841goto cleanup;3842}3843for_each_string_list_item(ref_to_delete, &refs_to_delete)3844unlink_or_warn(git_path("logs/%s", ref_to_delete->string));3845clear_loose_ref_cache(refs);38463847cleanup:3848 transaction->state = REF_TRANSACTION_CLOSED;38493850for(i =0; i < transaction->nr; i++)3851if(transaction->updates[i]->backend_data)3852unlock_ref(transaction->updates[i]->backend_data);3853string_list_clear(&refs_to_delete,0);3854free(head_ref);3855string_list_clear(&affected_refnames,0);38563857return ret;3858}38593860static intref_present(const char*refname,3861const struct object_id *oid,int flags,void*cb_data)3862{3863struct string_list *affected_refnames = cb_data;38643865returnstring_list_has_string(affected_refnames, refname);3866}38673868static intfiles_initial_transaction_commit(struct ref_store *ref_store,3869struct ref_transaction *transaction,3870struct strbuf *err)3871{3872struct files_ref_store *refs =3873files_downcast(ref_store,0,"initial_ref_transaction_commit");3874int ret =0, i;3875struct string_list affected_refnames = STRING_LIST_INIT_NODUP;38763877assert(err);38783879if(transaction->state != REF_TRANSACTION_OPEN)3880die("BUG: commit called for transaction that is not open");38813882/* Fail if a refname appears more than once in the transaction: */3883for(i =0; i < transaction->nr; i++)3884string_list_append(&affected_refnames,3885 transaction->updates[i]->refname);3886string_list_sort(&affected_refnames);3887if(ref_update_reject_duplicates(&affected_refnames, err)) {3888 ret = TRANSACTION_GENERIC_ERROR;3889goto cleanup;3890}38913892/*3893 * It's really undefined to call this function in an active3894 * repository or when there are existing references: we are3895 * only locking and changing packed-refs, so (1) any3896 * simultaneous processes might try to change a reference at3897 * the same time we do, and (2) any existing loose versions of3898 * the references that we are setting would have precedence3899 * over our values. But some remote helpers create the remote3900 * "HEAD" and "master" branches before calling this function,3901 * so here we really only check that none of the references3902 * that we are creating already exists.3903 */3904if(for_each_rawref(ref_present, &affected_refnames))3905die("BUG: initial ref transaction called with existing refs");39063907for(i =0; i < transaction->nr; i++) {3908struct ref_update *update = transaction->updates[i];39093910if((update->flags & REF_HAVE_OLD) &&3911!is_null_sha1(update->old_sha1))3912die("BUG: initial ref transaction with old_sha1 set");3913if(verify_refname_available(update->refname,3914&affected_refnames, NULL,3915 err)) {3916 ret = TRANSACTION_NAME_CONFLICT;3917goto cleanup;3918}3919}39203921if(lock_packed_refs(refs,0)) {3922strbuf_addf(err,"unable to lock packed-refs file:%s",3923strerror(errno));3924 ret = TRANSACTION_GENERIC_ERROR;3925goto cleanup;3926}39273928for(i =0; i < transaction->nr; i++) {3929struct ref_update *update = transaction->updates[i];39303931if((update->flags & REF_HAVE_NEW) &&3932!is_null_sha1(update->new_sha1))3933add_packed_ref(refs, update->refname, update->new_sha1);3934}39353936if(commit_packed_refs(refs)) {3937strbuf_addf(err,"unable to commit packed-refs file:%s",3938strerror(errno));3939 ret = TRANSACTION_GENERIC_ERROR;3940goto cleanup;3941}39423943cleanup:3944 transaction->state = REF_TRANSACTION_CLOSED;3945string_list_clear(&affected_refnames,0);3946return ret;3947}39483949struct expire_reflog_cb {3950unsigned int flags;3951 reflog_expiry_should_prune_fn *should_prune_fn;3952void*policy_cb;3953FILE*newlog;3954unsigned char last_kept_sha1[20];3955};39563957static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,3958const char*email,unsigned long timestamp,int tz,3959const char*message,void*cb_data)3960{3961struct expire_reflog_cb *cb = cb_data;3962struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;39633964if(cb->flags & EXPIRE_REFLOGS_REWRITE)3965 osha1 = cb->last_kept_sha1;39663967if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,3968 message, policy_cb)) {3969if(!cb->newlog)3970printf("would prune%s", message);3971else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3972printf("prune%s", message);3973}else{3974if(cb->newlog) {3975fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",3976sha1_to_hex(osha1),sha1_to_hex(nsha1),3977 email, timestamp, tz, message);3978hashcpy(cb->last_kept_sha1, nsha1);3979}3980if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3981printf("keep%s", message);3982}3983return0;3984}39853986static intfiles_reflog_expire(struct ref_store *ref_store,3987const char*refname,const unsigned char*sha1,3988unsigned int flags,3989 reflog_expiry_prepare_fn prepare_fn,3990 reflog_expiry_should_prune_fn should_prune_fn,3991 reflog_expiry_cleanup_fn cleanup_fn,3992void*policy_cb_data)3993{3994struct files_ref_store *refs =3995files_downcast(ref_store,0,"reflog_expire");3996static struct lock_file reflog_lock;3997struct expire_reflog_cb cb;3998struct ref_lock *lock;3999char*log_file;4000int status =0;4001int type;4002struct strbuf err = STRBUF_INIT;40034004memset(&cb,0,sizeof(cb));4005 cb.flags = flags;4006 cb.policy_cb = policy_cb_data;4007 cb.should_prune_fn = should_prune_fn;40084009/*4010 * The reflog file is locked by holding the lock on the4011 * reference itself, plus we might need to update the4012 * reference if --updateref was specified:4013 */4014 lock =lock_ref_sha1_basic(refs, refname, sha1,4015 NULL, NULL, REF_NODEREF,4016&type, &err);4017if(!lock) {4018error("cannot lock ref '%s':%s", refname, err.buf);4019strbuf_release(&err);4020return-1;4021}4022if(!reflog_exists(refname)) {4023unlock_ref(lock);4024return0;4025}40264027 log_file =git_pathdup("logs/%s", refname);4028if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4029/*4030 * Even though holding $GIT_DIR/logs/$reflog.lock has4031 * no locking implications, we use the lock_file4032 * machinery here anyway because it does a lot of the4033 * work we need, including cleaning up if the program4034 * exits unexpectedly.4035 */4036if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {4037struct strbuf err = STRBUF_INIT;4038unable_to_lock_message(log_file, errno, &err);4039error("%s", err.buf);4040strbuf_release(&err);4041goto failure;4042}4043 cb.newlog =fdopen_lock_file(&reflog_lock,"w");4044if(!cb.newlog) {4045error("cannot fdopen%s(%s)",4046get_lock_file_path(&reflog_lock),strerror(errno));4047goto failure;4048}4049}40504051(*prepare_fn)(refname, sha1, cb.policy_cb);4052for_each_reflog_ent(refname, expire_reflog_ent, &cb);4053(*cleanup_fn)(cb.policy_cb);40544055if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4056/*4057 * It doesn't make sense to adjust a reference pointed4058 * to by a symbolic ref based on expiring entries in4059 * the symbolic reference's reflog. Nor can we update4060 * a reference if there are no remaining reflog4061 * entries.4062 */4063int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&4064!(type & REF_ISSYMREF) &&4065!is_null_sha1(cb.last_kept_sha1);40664067if(close_lock_file(&reflog_lock)) {4068 status |=error("couldn't write%s:%s", log_file,4069strerror(errno));4070}else if(update &&4071(write_in_full(get_lock_file_fd(lock->lk),4072sha1_to_hex(cb.last_kept_sha1),40) !=40||4073write_str_in_full(get_lock_file_fd(lock->lk),"\n") !=1||4074close_ref(lock) <0)) {4075 status |=error("couldn't write%s",4076get_lock_file_path(lock->lk));4077rollback_lock_file(&reflog_lock);4078}else if(commit_lock_file(&reflog_lock)) {4079 status |=error("unable to write reflog '%s' (%s)",4080 log_file,strerror(errno));4081}else if(update &&commit_ref(lock)) {4082 status |=error("couldn't set%s", lock->ref_name);4083}4084}4085free(log_file);4086unlock_ref(lock);4087return status;40884089 failure:4090rollback_lock_file(&reflog_lock);4091free(log_file);4092unlock_ref(lock);4093return-1;4094}40954096static intfiles_init_db(struct ref_store *ref_store,struct strbuf *err)4097{4098/* Check validity (but we don't need the result): */4099files_downcast(ref_store,0,"init_db");41004101/*4102 * Create .git/refs/{heads,tags}4103 */4104safe_create_dir(git_path("refs/heads"),1);4105safe_create_dir(git_path("refs/tags"),1);4106if(get_shared_repository()) {4107adjust_shared_perm(git_path("refs/heads"));4108adjust_shared_perm(git_path("refs/tags"));4109}4110return0;4111}41124113struct ref_storage_be refs_be_files = {4114 NULL,4115"files",4116 files_ref_store_create,4117 files_init_db,4118 files_transaction_commit,4119 files_initial_transaction_commit,41204121 files_pack_refs,4122 files_peel_ref,4123 files_create_symref,4124 files_delete_refs,4125 files_rename_ref,41264127 files_ref_iterator_begin,4128 files_read_raw_ref,4129 files_verify_refname_available,41304131 files_reflog_iterator_begin,4132 files_for_each_reflog_ent,4133 files_for_each_reflog_ent_reverse,4134 files_reflog_exists,4135 files_create_reflog,4136 files_delete_reflog,4137 files_reflog_expire4138};