1#include"../cache.h" 2#include"../refs.h" 3#include"refs-internal.h" 4#include"../lockfile.h" 5#include"../object.h" 6#include"../dir.h" 7 8struct ref_lock { 9char*ref_name; 10char*orig_ref_name; 11struct lock_file *lk; 12struct object_id old_oid; 13}; 14 15struct ref_entry; 16 17/* 18 * Information used (along with the information in ref_entry) to 19 * describe a single cached reference. This data structure only 20 * occurs embedded in a union in struct ref_entry, and only when 21 * (ref_entry->flag & REF_DIR) is zero. 22 */ 23struct ref_value { 24/* 25 * The name of the object to which this reference resolves 26 * (which may be a tag object). If REF_ISBROKEN, this is 27 * null. If REF_ISSYMREF, then this is the name of the object 28 * referred to by the last reference in the symlink chain. 29 */ 30struct object_id oid; 31 32/* 33 * If REF_KNOWS_PEELED, then this field holds the peeled value 34 * of this reference, or null if the reference is known not to 35 * be peelable. See the documentation for peel_ref() for an 36 * exact definition of "peelable". 37 */ 38struct object_id peeled; 39}; 40 41struct ref_cache; 42 43/* 44 * Information used (along with the information in ref_entry) to 45 * describe a level in the hierarchy of references. This data 46 * structure only occurs embedded in a union in struct ref_entry, and 47 * only when (ref_entry.flag & REF_DIR) is set. In that case, 48 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 49 * in the directory have already been read: 50 * 51 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 52 * or packed references, already read. 53 * 54 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 55 * references that hasn't been read yet (nor has any of its 56 * subdirectories). 57 * 58 * Entries within a directory are stored within a growable array of 59 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 60 * sorted are sorted by their component name in strcmp() order and the 61 * remaining entries are unsorted. 62 * 63 * Loose references are read lazily, one directory at a time. When a 64 * directory of loose references is read, then all of the references 65 * in that directory are stored, and REF_INCOMPLETE stubs are created 66 * for any subdirectories, but the subdirectories themselves are not 67 * read. The reading is triggered by get_ref_dir(). 68 */ 69struct ref_dir { 70int nr, alloc; 71 72/* 73 * Entries with index 0 <= i < sorted are sorted by name. New 74 * entries are appended to the list unsorted, and are sorted 75 * only when required; thus we avoid the need to sort the list 76 * after the addition of every reference. 77 */ 78int sorted; 79 80/* A pointer to the ref_cache that contains this ref_dir. */ 81struct ref_cache *ref_cache; 82 83struct ref_entry **entries; 84}; 85 86/* 87 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 88 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 89 * public values; see refs.h. 90 */ 91 92/* 93 * The field ref_entry->u.value.peeled of this value entry contains 94 * the correct peeled value for the reference, which might be 95 * null_sha1 if the reference is not a tag or if it is broken. 96 */ 97#define REF_KNOWS_PEELED 0x10 98 99/* ref_entry represents a directory of references */ 100#define REF_DIR 0x20 101 102/* 103 * Entry has not yet been read from disk (used only for REF_DIR 104 * entries representing loose references) 105 */ 106#define REF_INCOMPLETE 0x40 107 108/* 109 * A ref_entry represents either a reference or a "subdirectory" of 110 * references. 111 * 112 * Each directory in the reference namespace is represented by a 113 * ref_entry with (flags & REF_DIR) set and containing a subdir member 114 * that holds the entries in that directory that have been read so 115 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 116 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 117 * used for loose reference directories. 118 * 119 * References are represented by a ref_entry with (flags & REF_DIR) 120 * unset and a value member that describes the reference's value. The 121 * flag member is at the ref_entry level, but it is also needed to 122 * interpret the contents of the value field (in other words, a 123 * ref_value object is not very much use without the enclosing 124 * ref_entry). 125 * 126 * Reference names cannot end with slash and directories' names are 127 * always stored with a trailing slash (except for the top-level 128 * directory, which is always denoted by ""). This has two nice 129 * consequences: (1) when the entries in each subdir are sorted 130 * lexicographically by name (as they usually are), the references in 131 * a whole tree can be generated in lexicographic order by traversing 132 * the tree in left-to-right, depth-first order; (2) the names of 133 * references and subdirectories cannot conflict, and therefore the 134 * presence of an empty subdirectory does not block the creation of a 135 * similarly-named reference. (The fact that reference names with the 136 * same leading components can conflict *with each other* is a 137 * separate issue that is regulated by verify_refname_available().) 138 * 139 * Please note that the name field contains the fully-qualified 140 * reference (or subdirectory) name. Space could be saved by only 141 * storing the relative names. But that would require the full names 142 * to be generated on the fly when iterating in do_for_each_ref(), and 143 * would break callback functions, who have always been able to assume 144 * that the name strings that they are passed will not be freed during 145 * the iteration. 146 */ 147struct ref_entry { 148unsigned char flag;/* ISSYMREF? ISPACKED? */ 149union{ 150struct ref_value value;/* if not (flags&REF_DIR) */ 151struct ref_dir subdir;/* if (flags&REF_DIR) */ 152} u; 153/* 154 * The full name of the reference (e.g., "refs/heads/master") 155 * or the full name of the directory with a trailing slash 156 * (e.g., "refs/heads/"): 157 */ 158char name[FLEX_ARRAY]; 159}; 160 161static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 162static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len); 163static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 164const char*dirname,size_t len, 165int incomplete); 166static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry); 167 168static struct ref_dir *get_ref_dir(struct ref_entry *entry) 169{ 170struct ref_dir *dir; 171assert(entry->flag & REF_DIR); 172 dir = &entry->u.subdir; 173if(entry->flag & REF_INCOMPLETE) { 174read_loose_refs(entry->name, dir); 175 176/* 177 * Manually add refs/bisect, which, being 178 * per-worktree, might not appear in the directory 179 * listing for refs/ in the main repo. 180 */ 181if(!strcmp(entry->name,"refs/")) { 182int pos =search_ref_dir(dir,"refs/bisect/",12); 183if(pos <0) { 184struct ref_entry *child_entry; 185 child_entry =create_dir_entry(dir->ref_cache, 186"refs/bisect/", 18712,1); 188add_entry_to_dir(dir, child_entry); 189read_loose_refs("refs/bisect", 190&child_entry->u.subdir); 191} 192} 193 entry->flag &= ~REF_INCOMPLETE; 194} 195return dir; 196} 197 198static struct ref_entry *create_ref_entry(const char*refname, 199const unsigned char*sha1,int flag, 200int check_name) 201{ 202int len; 203struct ref_entry *ref; 204 205if(check_name && 206check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 207die("Reference has invalid format: '%s'", refname); 208 len =strlen(refname) +1; 209 ref =xmalloc(sizeof(struct ref_entry) + len); 210hashcpy(ref->u.value.oid.hash, sha1); 211oidclr(&ref->u.value.peeled); 212memcpy(ref->name, refname, len); 213 ref->flag = flag; 214return ref; 215} 216 217static voidclear_ref_dir(struct ref_dir *dir); 218 219static voidfree_ref_entry(struct ref_entry *entry) 220{ 221if(entry->flag & REF_DIR) { 222/* 223 * Do not use get_ref_dir() here, as that might 224 * trigger the reading of loose refs. 225 */ 226clear_ref_dir(&entry->u.subdir); 227} 228free(entry); 229} 230 231/* 232 * Add a ref_entry to the end of dir (unsorted). Entry is always 233 * stored directly in dir; no recursion into subdirectories is 234 * done. 235 */ 236static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 237{ 238ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 239 dir->entries[dir->nr++] = entry; 240/* optimize for the case that entries are added in order */ 241if(dir->nr ==1|| 242(dir->nr == dir->sorted +1&& 243strcmp(dir->entries[dir->nr -2]->name, 244 dir->entries[dir->nr -1]->name) <0)) 245 dir->sorted = dir->nr; 246} 247 248/* 249 * Clear and free all entries in dir, recursively. 250 */ 251static voidclear_ref_dir(struct ref_dir *dir) 252{ 253int i; 254for(i =0; i < dir->nr; i++) 255free_ref_entry(dir->entries[i]); 256free(dir->entries); 257 dir->sorted = dir->nr = dir->alloc =0; 258 dir->entries = NULL; 259} 260 261/* 262 * Create a struct ref_entry object for the specified dirname. 263 * dirname is the name of the directory with a trailing slash (e.g., 264 * "refs/heads/") or "" for the top-level directory. 265 */ 266static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 267const char*dirname,size_t len, 268int incomplete) 269{ 270struct ref_entry *direntry; 271 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 272memcpy(direntry->name, dirname, len); 273 direntry->name[len] ='\0'; 274 direntry->u.subdir.ref_cache = ref_cache; 275 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 276return direntry; 277} 278 279static intref_entry_cmp(const void*a,const void*b) 280{ 281struct ref_entry *one = *(struct ref_entry **)a; 282struct ref_entry *two = *(struct ref_entry **)b; 283returnstrcmp(one->name, two->name); 284} 285 286static voidsort_ref_dir(struct ref_dir *dir); 287 288struct string_slice { 289size_t len; 290const char*str; 291}; 292 293static intref_entry_cmp_sslice(const void*key_,const void*ent_) 294{ 295const struct string_slice *key = key_; 296const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 297int cmp =strncmp(key->str, ent->name, key->len); 298if(cmp) 299return cmp; 300return'\0'- (unsigned char)ent->name[key->len]; 301} 302 303/* 304 * Return the index of the entry with the given refname from the 305 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 306 * no such entry is found. dir must already be complete. 307 */ 308static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 309{ 310struct ref_entry **r; 311struct string_slice key; 312 313if(refname == NULL || !dir->nr) 314return-1; 315 316sort_ref_dir(dir); 317 key.len = len; 318 key.str = refname; 319 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 320 ref_entry_cmp_sslice); 321 322if(r == NULL) 323return-1; 324 325return r - dir->entries; 326} 327 328/* 329 * Search for a directory entry directly within dir (without 330 * recursing). Sort dir if necessary. subdirname must be a directory 331 * name (i.e., end in '/'). If mkdir is set, then create the 332 * directory if it is missing; otherwise, return NULL if the desired 333 * directory cannot be found. dir must already be complete. 334 */ 335static struct ref_dir *search_for_subdir(struct ref_dir *dir, 336const char*subdirname,size_t len, 337int mkdir) 338{ 339int entry_index =search_ref_dir(dir, subdirname, len); 340struct ref_entry *entry; 341if(entry_index == -1) { 342if(!mkdir) 343return NULL; 344/* 345 * Since dir is complete, the absence of a subdir 346 * means that the subdir really doesn't exist; 347 * therefore, create an empty record for it but mark 348 * the record complete. 349 */ 350 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 351add_entry_to_dir(dir, entry); 352}else{ 353 entry = dir->entries[entry_index]; 354} 355returnget_ref_dir(entry); 356} 357 358/* 359 * If refname is a reference name, find the ref_dir within the dir 360 * tree that should hold refname. If refname is a directory name 361 * (i.e., ends in '/'), then return that ref_dir itself. dir must 362 * represent the top-level directory and must already be complete. 363 * Sort ref_dirs and recurse into subdirectories as necessary. If 364 * mkdir is set, then create any missing directories; otherwise, 365 * return NULL if the desired directory cannot be found. 366 */ 367static struct ref_dir *find_containing_dir(struct ref_dir *dir, 368const char*refname,int mkdir) 369{ 370const char*slash; 371for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 372size_t dirnamelen = slash - refname +1; 373struct ref_dir *subdir; 374 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 375if(!subdir) { 376 dir = NULL; 377break; 378} 379 dir = subdir; 380} 381 382return dir; 383} 384 385/* 386 * Find the value entry with the given name in dir, sorting ref_dirs 387 * and recursing into subdirectories as necessary. If the name is not 388 * found or it corresponds to a directory entry, return NULL. 389 */ 390static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 391{ 392int entry_index; 393struct ref_entry *entry; 394 dir =find_containing_dir(dir, refname,0); 395if(!dir) 396return NULL; 397 entry_index =search_ref_dir(dir, refname,strlen(refname)); 398if(entry_index == -1) 399return NULL; 400 entry = dir->entries[entry_index]; 401return(entry->flag & REF_DIR) ? NULL : entry; 402} 403 404/* 405 * Remove the entry with the given name from dir, recursing into 406 * subdirectories as necessary. If refname is the name of a directory 407 * (i.e., ends with '/'), then remove the directory and its contents. 408 * If the removal was successful, return the number of entries 409 * remaining in the directory entry that contained the deleted entry. 410 * If the name was not found, return -1. Please note that this 411 * function only deletes the entry from the cache; it does not delete 412 * it from the filesystem or ensure that other cache entries (which 413 * might be symbolic references to the removed entry) are updated. 414 * Nor does it remove any containing dir entries that might be made 415 * empty by the removal. dir must represent the top-level directory 416 * and must already be complete. 417 */ 418static intremove_entry(struct ref_dir *dir,const char*refname) 419{ 420int refname_len =strlen(refname); 421int entry_index; 422struct ref_entry *entry; 423int is_dir = refname[refname_len -1] =='/'; 424if(is_dir) { 425/* 426 * refname represents a reference directory. Remove 427 * the trailing slash; otherwise we will get the 428 * directory *representing* refname rather than the 429 * one *containing* it. 430 */ 431char*dirname =xmemdupz(refname, refname_len -1); 432 dir =find_containing_dir(dir, dirname,0); 433free(dirname); 434}else{ 435 dir =find_containing_dir(dir, refname,0); 436} 437if(!dir) 438return-1; 439 entry_index =search_ref_dir(dir, refname, refname_len); 440if(entry_index == -1) 441return-1; 442 entry = dir->entries[entry_index]; 443 444memmove(&dir->entries[entry_index], 445&dir->entries[entry_index +1], 446(dir->nr - entry_index -1) *sizeof(*dir->entries) 447); 448 dir->nr--; 449if(dir->sorted > entry_index) 450 dir->sorted--; 451free_ref_entry(entry); 452return dir->nr; 453} 454 455/* 456 * Add a ref_entry to the ref_dir (unsorted), recursing into 457 * subdirectories as necessary. dir must represent the top-level 458 * directory. Return 0 on success. 459 */ 460static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 461{ 462 dir =find_containing_dir(dir, ref->name,1); 463if(!dir) 464return-1; 465add_entry_to_dir(dir, ref); 466return0; 467} 468 469/* 470 * Emit a warning and return true iff ref1 and ref2 have the same name 471 * and the same sha1. Die if they have the same name but different 472 * sha1s. 473 */ 474static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 475{ 476if(strcmp(ref1->name, ref2->name)) 477return0; 478 479/* Duplicate name; make sure that they don't conflict: */ 480 481if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 482/* This is impossible by construction */ 483die("Reference directory conflict:%s", ref1->name); 484 485if(oidcmp(&ref1->u.value.oid, &ref2->u.value.oid)) 486die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 487 488warning("Duplicated ref:%s", ref1->name); 489return1; 490} 491 492/* 493 * Sort the entries in dir non-recursively (if they are not already 494 * sorted) and remove any duplicate entries. 495 */ 496static voidsort_ref_dir(struct ref_dir *dir) 497{ 498int i, j; 499struct ref_entry *last = NULL; 500 501/* 502 * This check also prevents passing a zero-length array to qsort(), 503 * which is a problem on some platforms. 504 */ 505if(dir->sorted == dir->nr) 506return; 507 508qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 509 510/* Remove any duplicates: */ 511for(i =0, j =0; j < dir->nr; j++) { 512struct ref_entry *entry = dir->entries[j]; 513if(last &&is_dup_ref(last, entry)) 514free_ref_entry(entry); 515else 516 last = dir->entries[i++] = entry; 517} 518 dir->sorted = dir->nr = i; 519} 520 521/* Include broken references in a do_for_each_ref*() iteration: */ 522#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 523 524/* 525 * Return true iff the reference described by entry can be resolved to 526 * an object in the database. Emit a warning if the referred-to 527 * object does not exist. 528 */ 529static intref_resolves_to_object(struct ref_entry *entry) 530{ 531if(entry->flag & REF_ISBROKEN) 532return0; 533if(!has_sha1_file(entry->u.value.oid.hash)) { 534error("%sdoes not point to a valid object!", entry->name); 535return0; 536} 537return1; 538} 539 540/* 541 * current_ref is a performance hack: when iterating over references 542 * using the for_each_ref*() functions, current_ref is set to the 543 * current reference's entry before calling the callback function. If 544 * the callback function calls peel_ref(), then peel_ref() first 545 * checks whether the reference to be peeled is the current reference 546 * (it usually is) and if so, returns that reference's peeled version 547 * if it is available. This avoids a refname lookup in a common case. 548 */ 549static struct ref_entry *current_ref; 550 551typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 552 553struct ref_entry_cb { 554const char*base; 555int trim; 556int flags; 557 each_ref_fn *fn; 558void*cb_data; 559}; 560 561/* 562 * Handle one reference in a do_for_each_ref*()-style iteration, 563 * calling an each_ref_fn for each entry. 564 */ 565static intdo_one_ref(struct ref_entry *entry,void*cb_data) 566{ 567struct ref_entry_cb *data = cb_data; 568struct ref_entry *old_current_ref; 569int retval; 570 571if(!starts_with(entry->name, data->base)) 572return0; 573 574if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 575!ref_resolves_to_object(entry)) 576return0; 577 578/* Store the old value, in case this is a recursive call: */ 579 old_current_ref = current_ref; 580 current_ref = entry; 581 retval = data->fn(entry->name + data->trim, &entry->u.value.oid, 582 entry->flag, data->cb_data); 583 current_ref = old_current_ref; 584return retval; 585} 586 587/* 588 * Call fn for each reference in dir that has index in the range 589 * offset <= index < dir->nr. Recurse into subdirectories that are in 590 * that index range, sorting them before iterating. This function 591 * does not sort dir itself; it should be sorted beforehand. fn is 592 * called for all references, including broken ones. 593 */ 594static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 595 each_ref_entry_fn fn,void*cb_data) 596{ 597int i; 598assert(dir->sorted == dir->nr); 599for(i = offset; i < dir->nr; i++) { 600struct ref_entry *entry = dir->entries[i]; 601int retval; 602if(entry->flag & REF_DIR) { 603struct ref_dir *subdir =get_ref_dir(entry); 604sort_ref_dir(subdir); 605 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 606}else{ 607 retval =fn(entry, cb_data); 608} 609if(retval) 610return retval; 611} 612return0; 613} 614 615/* 616 * Call fn for each reference in the union of dir1 and dir2, in order 617 * by refname. Recurse into subdirectories. If a value entry appears 618 * in both dir1 and dir2, then only process the version that is in 619 * dir2. The input dirs must already be sorted, but subdirs will be 620 * sorted as needed. fn is called for all references, including 621 * broken ones. 622 */ 623static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 624struct ref_dir *dir2, 625 each_ref_entry_fn fn,void*cb_data) 626{ 627int retval; 628int i1 =0, i2 =0; 629 630assert(dir1->sorted == dir1->nr); 631assert(dir2->sorted == dir2->nr); 632while(1) { 633struct ref_entry *e1, *e2; 634int cmp; 635if(i1 == dir1->nr) { 636returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 637} 638if(i2 == dir2->nr) { 639returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 640} 641 e1 = dir1->entries[i1]; 642 e2 = dir2->entries[i2]; 643 cmp =strcmp(e1->name, e2->name); 644if(cmp ==0) { 645if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 646/* Both are directories; descend them in parallel. */ 647struct ref_dir *subdir1 =get_ref_dir(e1); 648struct ref_dir *subdir2 =get_ref_dir(e2); 649sort_ref_dir(subdir1); 650sort_ref_dir(subdir2); 651 retval =do_for_each_entry_in_dirs( 652 subdir1, subdir2, fn, cb_data); 653 i1++; 654 i2++; 655}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 656/* Both are references; ignore the one from dir1. */ 657 retval =fn(e2, cb_data); 658 i1++; 659 i2++; 660}else{ 661die("conflict between reference and directory:%s", 662 e1->name); 663} 664}else{ 665struct ref_entry *e; 666if(cmp <0) { 667 e = e1; 668 i1++; 669}else{ 670 e = e2; 671 i2++; 672} 673if(e->flag & REF_DIR) { 674struct ref_dir *subdir =get_ref_dir(e); 675sort_ref_dir(subdir); 676 retval =do_for_each_entry_in_dir( 677 subdir,0, fn, cb_data); 678}else{ 679 retval =fn(e, cb_data); 680} 681} 682if(retval) 683return retval; 684} 685} 686 687/* 688 * Load all of the refs from the dir into our in-memory cache. The hard work 689 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 690 * through all of the sub-directories. We do not even need to care about 691 * sorting, as traversal order does not matter to us. 692 */ 693static voidprime_ref_dir(struct ref_dir *dir) 694{ 695int i; 696for(i =0; i < dir->nr; i++) { 697struct ref_entry *entry = dir->entries[i]; 698if(entry->flag & REF_DIR) 699prime_ref_dir(get_ref_dir(entry)); 700} 701} 702 703struct nonmatching_ref_data { 704const struct string_list *skip; 705const char*conflicting_refname; 706}; 707 708static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 709{ 710struct nonmatching_ref_data *data = vdata; 711 712if(data->skip &&string_list_has_string(data->skip, entry->name)) 713return0; 714 715 data->conflicting_refname = entry->name; 716return1; 717} 718 719/* 720 * Return 0 if a reference named refname could be created without 721 * conflicting with the name of an existing reference in dir. 722 * See verify_refname_available for more information. 723 */ 724static intverify_refname_available_dir(const char*refname, 725const struct string_list *extras, 726const struct string_list *skip, 727struct ref_dir *dir, 728struct strbuf *err) 729{ 730const char*slash; 731const char*extra_refname; 732int pos; 733struct strbuf dirname = STRBUF_INIT; 734int ret = -1; 735 736/* 737 * For the sake of comments in this function, suppose that 738 * refname is "refs/foo/bar". 739 */ 740 741assert(err); 742 743strbuf_grow(&dirname,strlen(refname) +1); 744for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 745/* Expand dirname to the new prefix, not including the trailing slash: */ 746strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len); 747 748/* 749 * We are still at a leading dir of the refname (e.g., 750 * "refs/foo"; if there is a reference with that name, 751 * it is a conflict, *unless* it is in skip. 752 */ 753if(dir) { 754 pos =search_ref_dir(dir, dirname.buf, dirname.len); 755if(pos >=0&& 756(!skip || !string_list_has_string(skip, dirname.buf))) { 757/* 758 * We found a reference whose name is 759 * a proper prefix of refname; e.g., 760 * "refs/foo", and is not in skip. 761 */ 762strbuf_addf(err,"'%s' exists; cannot create '%s'", 763 dirname.buf, refname); 764goto cleanup; 765} 766} 767 768if(extras &&string_list_has_string(extras, dirname.buf) && 769(!skip || !string_list_has_string(skip, dirname.buf))) { 770strbuf_addf(err,"cannot process '%s' and '%s' at the same time", 771 refname, dirname.buf); 772goto cleanup; 773} 774 775/* 776 * Otherwise, we can try to continue our search with 777 * the next component. So try to look up the 778 * directory, e.g., "refs/foo/". If we come up empty, 779 * we know there is nothing under this whole prefix, 780 * but even in that case we still have to continue the 781 * search for conflicts with extras. 782 */ 783strbuf_addch(&dirname,'/'); 784if(dir) { 785 pos =search_ref_dir(dir, dirname.buf, dirname.len); 786if(pos <0) { 787/* 788 * There was no directory "refs/foo/", 789 * so there is nothing under this 790 * whole prefix. So there is no need 791 * to continue looking for conflicting 792 * references. But we need to continue 793 * looking for conflicting extras. 794 */ 795 dir = NULL; 796}else{ 797 dir =get_ref_dir(dir->entries[pos]); 798} 799} 800} 801 802/* 803 * We are at the leaf of our refname (e.g., "refs/foo/bar"). 804 * There is no point in searching for a reference with that 805 * name, because a refname isn't considered to conflict with 806 * itself. But we still need to check for references whose 807 * names are in the "refs/foo/bar/" namespace, because they 808 * *do* conflict. 809 */ 810strbuf_addstr(&dirname, refname + dirname.len); 811strbuf_addch(&dirname,'/'); 812 813if(dir) { 814 pos =search_ref_dir(dir, dirname.buf, dirname.len); 815 816if(pos >=0) { 817/* 818 * We found a directory named "$refname/" 819 * (e.g., "refs/foo/bar/"). It is a problem 820 * iff it contains any ref that is not in 821 * "skip". 822 */ 823struct nonmatching_ref_data data; 824 825 data.skip = skip; 826 data.conflicting_refname = NULL; 827 dir =get_ref_dir(dir->entries[pos]); 828sort_ref_dir(dir); 829if(do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) { 830strbuf_addf(err,"'%s' exists; cannot create '%s'", 831 data.conflicting_refname, refname); 832goto cleanup; 833} 834} 835} 836 837 extra_refname =find_descendant_ref(dirname.buf, extras, skip); 838if(extra_refname) 839strbuf_addf(err,"cannot process '%s' and '%s' at the same time", 840 refname, extra_refname); 841else 842 ret =0; 843 844cleanup: 845strbuf_release(&dirname); 846return ret; 847} 848 849struct packed_ref_cache { 850struct ref_entry *root; 851 852/* 853 * Count of references to the data structure in this instance, 854 * including the pointer from ref_cache::packed if any. The 855 * data will not be freed as long as the reference count is 856 * nonzero. 857 */ 858unsigned int referrers; 859 860/* 861 * Iff the packed-refs file associated with this instance is 862 * currently locked for writing, this points at the associated 863 * lock (which is owned by somebody else). The referrer count 864 * is also incremented when the file is locked and decremented 865 * when it is unlocked. 866 */ 867struct lock_file *lock; 868 869/* The metadata from when this packed-refs cache was read */ 870struct stat_validity validity; 871}; 872 873/* 874 * Future: need to be in "struct repository" 875 * when doing a full libification. 876 */ 877static struct ref_cache { 878struct ref_cache *next; 879struct ref_entry *loose; 880struct packed_ref_cache *packed; 881/* 882 * The submodule name, or "" for the main repo. We allocate 883 * length 1 rather than FLEX_ARRAY so that the main ref_cache 884 * is initialized correctly. 885 */ 886char name[1]; 887} ref_cache, *submodule_ref_caches; 888 889/* Lock used for the main packed-refs file: */ 890static struct lock_file packlock; 891 892/* 893 * Increment the reference count of *packed_refs. 894 */ 895static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs) 896{ 897 packed_refs->referrers++; 898} 899 900/* 901 * Decrease the reference count of *packed_refs. If it goes to zero, 902 * free *packed_refs and return true; otherwise return false. 903 */ 904static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs) 905{ 906if(!--packed_refs->referrers) { 907free_ref_entry(packed_refs->root); 908stat_validity_clear(&packed_refs->validity); 909free(packed_refs); 910return1; 911}else{ 912return0; 913} 914} 915 916static voidclear_packed_ref_cache(struct ref_cache *refs) 917{ 918if(refs->packed) { 919struct packed_ref_cache *packed_refs = refs->packed; 920 921if(packed_refs->lock) 922die("internal error: packed-ref cache cleared while locked"); 923 refs->packed = NULL; 924release_packed_ref_cache(packed_refs); 925} 926} 927 928static voidclear_loose_ref_cache(struct ref_cache *refs) 929{ 930if(refs->loose) { 931free_ref_entry(refs->loose); 932 refs->loose = NULL; 933} 934} 935 936static struct ref_cache *create_ref_cache(const char*submodule) 937{ 938int len; 939struct ref_cache *refs; 940if(!submodule) 941 submodule =""; 942 len =strlen(submodule) +1; 943 refs =xcalloc(1,sizeof(struct ref_cache) + len); 944memcpy(refs->name, submodule, len); 945return refs; 946} 947 948/* 949 * Return a pointer to a ref_cache for the specified submodule. For 950 * the main repository, use submodule==NULL. The returned structure 951 * will be allocated and initialized but not necessarily populated; it 952 * should not be freed. 953 */ 954static struct ref_cache *get_ref_cache(const char*submodule) 955{ 956struct ref_cache *refs; 957 958if(!submodule || !*submodule) 959return&ref_cache; 960 961for(refs = submodule_ref_caches; refs; refs = refs->next) 962if(!strcmp(submodule, refs->name)) 963return refs; 964 965 refs =create_ref_cache(submodule); 966 refs->next = submodule_ref_caches; 967 submodule_ref_caches = refs; 968return refs; 969} 970 971/* The length of a peeled reference line in packed-refs, including EOL: */ 972#define PEELED_LINE_LENGTH 42 973 974/* 975 * The packed-refs header line that we write out. Perhaps other 976 * traits will be added later. The trailing space is required. 977 */ 978static const char PACKED_REFS_HEADER[] = 979"# pack-refs with: peeled fully-peeled\n"; 980 981/* 982 * Parse one line from a packed-refs file. Write the SHA1 to sha1. 983 * Return a pointer to the refname within the line (null-terminated), 984 * or NULL if there was a problem. 985 */ 986static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1) 987{ 988const char*ref; 989 990/* 991 * 42: the answer to everything. 992 * 993 * In this case, it happens to be the answer to 994 * 40 (length of sha1 hex representation) 995 * +1 (space in between hex and name) 996 * +1 (newline at the end of the line) 997 */ 998if(line->len <=42) 999return NULL;10001001if(get_sha1_hex(line->buf, sha1) <0)1002return NULL;1003if(!isspace(line->buf[40]))1004return NULL;10051006 ref = line->buf +41;1007if(isspace(*ref))1008return NULL;10091010if(line->buf[line->len -1] !='\n')1011return NULL;1012 line->buf[--line->len] =0;10131014return ref;1015}10161017/*1018 * Read f, which is a packed-refs file, into dir.1019 *1020 * A comment line of the form "# pack-refs with: " may contain zero or1021 * more traits. We interpret the traits as follows:1022 *1023 * No traits:1024 *1025 * Probably no references are peeled. But if the file contains a1026 * peeled value for a reference, we will use it.1027 *1028 * peeled:1029 *1030 * References under "refs/tags/", if they *can* be peeled, *are*1031 * peeled in this file. References outside of "refs/tags/" are1032 * probably not peeled even if they could have been, but if we find1033 * a peeled value for such a reference we will use it.1034 *1035 * fully-peeled:1036 *1037 * All references in the file that can be peeled are peeled.1038 * Inversely (and this is more important), any references in the1039 * file for which no peeled value is recorded is not peelable. This1040 * trait should typically be written alongside "peeled" for1041 * compatibility with older clients, but we do not require it1042 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1043 */1044static voidread_packed_refs(FILE*f,struct ref_dir *dir)1045{1046struct ref_entry *last = NULL;1047struct strbuf line = STRBUF_INIT;1048enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;10491050while(strbuf_getwholeline(&line, f,'\n') != EOF) {1051unsigned char sha1[20];1052const char*refname;1053const char*traits;10541055if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1056if(strstr(traits," fully-peeled "))1057 peeled = PEELED_FULLY;1058else if(strstr(traits," peeled "))1059 peeled = PEELED_TAGS;1060/* perhaps other traits later as well */1061continue;1062}10631064 refname =parse_ref_line(&line, sha1);1065if(refname) {1066int flag = REF_ISPACKED;10671068if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1069if(!refname_is_safe(refname))1070die("packed refname is dangerous:%s", refname);1071hashclr(sha1);1072 flag |= REF_BAD_NAME | REF_ISBROKEN;1073}1074 last =create_ref_entry(refname, sha1, flag,0);1075if(peeled == PEELED_FULLY ||1076(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1077 last->flag |= REF_KNOWS_PEELED;1078add_ref(dir, last);1079continue;1080}1081if(last &&1082 line.buf[0] =='^'&&1083 line.len == PEELED_LINE_LENGTH &&1084 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1085!get_sha1_hex(line.buf +1, sha1)) {1086hashcpy(last->u.value.peeled.hash, sha1);1087/*1088 * Regardless of what the file header said,1089 * we definitely know the value of *this*1090 * reference:1091 */1092 last->flag |= REF_KNOWS_PEELED;1093}1094}10951096strbuf_release(&line);1097}10981099/*1100 * Get the packed_ref_cache for the specified ref_cache, creating it1101 * if necessary.1102 */1103static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)1104{1105char*packed_refs_file;11061107if(*refs->name)1108 packed_refs_file =git_pathdup_submodule(refs->name,"packed-refs");1109else1110 packed_refs_file =git_pathdup("packed-refs");11111112if(refs->packed &&1113!stat_validity_check(&refs->packed->validity, packed_refs_file))1114clear_packed_ref_cache(refs);11151116if(!refs->packed) {1117FILE*f;11181119 refs->packed =xcalloc(1,sizeof(*refs->packed));1120acquire_packed_ref_cache(refs->packed);1121 refs->packed->root =create_dir_entry(refs,"",0,0);1122 f =fopen(packed_refs_file,"r");1123if(f) {1124stat_validity_update(&refs->packed->validity,fileno(f));1125read_packed_refs(f,get_ref_dir(refs->packed->root));1126fclose(f);1127}1128}1129free(packed_refs_file);1130return refs->packed;1131}11321133static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1134{1135returnget_ref_dir(packed_ref_cache->root);1136}11371138static struct ref_dir *get_packed_refs(struct ref_cache *refs)1139{1140returnget_packed_ref_dir(get_packed_ref_cache(refs));1141}11421143/*1144 * Add a reference to the in-memory packed reference cache. This may1145 * only be called while the packed-refs file is locked (see1146 * lock_packed_refs()). To actually write the packed-refs file, call1147 * commit_packed_refs().1148 */1149static voidadd_packed_ref(const char*refname,const unsigned char*sha1)1150{1151struct packed_ref_cache *packed_ref_cache =1152get_packed_ref_cache(&ref_cache);11531154if(!packed_ref_cache->lock)1155die("internal error: packed refs not locked");1156add_ref(get_packed_ref_dir(packed_ref_cache),1157create_ref_entry(refname, sha1, REF_ISPACKED,1));1158}11591160/*1161 * Read the loose references from the namespace dirname into dir1162 * (without recursing). dirname must end with '/'. dir must be the1163 * directory entry corresponding to dirname.1164 */1165static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1166{1167struct ref_cache *refs = dir->ref_cache;1168DIR*d;1169struct dirent *de;1170int dirnamelen =strlen(dirname);1171struct strbuf refname;1172struct strbuf path = STRBUF_INIT;1173size_t path_baselen;11741175if(*refs->name)1176strbuf_git_path_submodule(&path, refs->name,"%s", dirname);1177else1178strbuf_git_path(&path,"%s", dirname);1179 path_baselen = path.len;11801181 d =opendir(path.buf);1182if(!d) {1183strbuf_release(&path);1184return;1185}11861187strbuf_init(&refname, dirnamelen +257);1188strbuf_add(&refname, dirname, dirnamelen);11891190while((de =readdir(d)) != NULL) {1191unsigned char sha1[20];1192struct stat st;1193int flag;11941195if(de->d_name[0] =='.')1196continue;1197if(ends_with(de->d_name,".lock"))1198continue;1199strbuf_addstr(&refname, de->d_name);1200strbuf_addstr(&path, de->d_name);1201if(stat(path.buf, &st) <0) {1202;/* silently ignore */1203}else if(S_ISDIR(st.st_mode)) {1204strbuf_addch(&refname,'/');1205add_entry_to_dir(dir,1206create_dir_entry(refs, refname.buf,1207 refname.len,1));1208}else{1209int read_ok;12101211if(*refs->name) {1212hashclr(sha1);1213 flag =0;1214 read_ok = !resolve_gitlink_ref(refs->name,1215 refname.buf, sha1);1216}else{1217 read_ok = !read_ref_full(refname.buf,1218 RESOLVE_REF_READING,1219 sha1, &flag);1220}12211222if(!read_ok) {1223hashclr(sha1);1224 flag |= REF_ISBROKEN;1225}else if(is_null_sha1(sha1)) {1226/*1227 * It is so astronomically unlikely1228 * that NULL_SHA1 is the SHA-1 of an1229 * actual object that we consider its1230 * appearance in a loose reference1231 * file to be repo corruption1232 * (probably due to a software bug).1233 */1234 flag |= REF_ISBROKEN;1235}12361237if(check_refname_format(refname.buf,1238 REFNAME_ALLOW_ONELEVEL)) {1239if(!refname_is_safe(refname.buf))1240die("loose refname is dangerous:%s", refname.buf);1241hashclr(sha1);1242 flag |= REF_BAD_NAME | REF_ISBROKEN;1243}1244add_entry_to_dir(dir,1245create_ref_entry(refname.buf, sha1, flag,0));1246}1247strbuf_setlen(&refname, dirnamelen);1248strbuf_setlen(&path, path_baselen);1249}1250strbuf_release(&refname);1251strbuf_release(&path);1252closedir(d);1253}12541255static struct ref_dir *get_loose_refs(struct ref_cache *refs)1256{1257if(!refs->loose) {1258/*1259 * Mark the top-level directory complete because we1260 * are about to read the only subdirectory that can1261 * hold references:1262 */1263 refs->loose =create_dir_entry(refs,"",0,0);1264/*1265 * Create an incomplete entry for "refs/":1266 */1267add_entry_to_dir(get_ref_dir(refs->loose),1268create_dir_entry(refs,"refs/",5,1));1269}1270returnget_ref_dir(refs->loose);1271}12721273/* We allow "recursive" symbolic refs. Only within reason, though */1274#define MAXDEPTH 51275#define MAXREFLEN (1024)12761277/*1278 * Called by resolve_gitlink_ref_recursive() after it failed to read1279 * from the loose refs in ref_cache refs. Find <refname> in the1280 * packed-refs file for the submodule.1281 */1282static intresolve_gitlink_packed_ref(struct ref_cache *refs,1283const char*refname,unsigned char*sha1)1284{1285struct ref_entry *ref;1286struct ref_dir *dir =get_packed_refs(refs);12871288 ref =find_ref(dir, refname);1289if(ref == NULL)1290return-1;12911292hashcpy(sha1, ref->u.value.oid.hash);1293return0;1294}12951296static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1297const char*refname,unsigned char*sha1,1298int recursion)1299{1300int fd, len;1301char buffer[128], *p;1302char*path;13031304if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1305return-1;1306 path = *refs->name1307?git_pathdup_submodule(refs->name,"%s", refname)1308:git_pathdup("%s", refname);1309 fd =open(path, O_RDONLY);1310free(path);1311if(fd <0)1312returnresolve_gitlink_packed_ref(refs, refname, sha1);13131314 len =read(fd, buffer,sizeof(buffer)-1);1315close(fd);1316if(len <0)1317return-1;1318while(len &&isspace(buffer[len-1]))1319 len--;1320 buffer[len] =0;13211322/* Was it a detached head or an old-fashioned symlink? */1323if(!get_sha1_hex(buffer, sha1))1324return0;13251326/* Symref? */1327if(strncmp(buffer,"ref:",4))1328return-1;1329 p = buffer +4;1330while(isspace(*p))1331 p++;13321333returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1334}13351336intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1337{1338int len =strlen(path), retval;1339char*submodule;1340struct ref_cache *refs;13411342while(len && path[len-1] =='/')1343 len--;1344if(!len)1345return-1;1346 submodule =xstrndup(path, len);1347 refs =get_ref_cache(submodule);1348free(submodule);13491350 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1351return retval;1352}13531354/*1355 * Return the ref_entry for the given refname from the packed1356 * references. If it does not exist, return NULL.1357 */1358static struct ref_entry *get_packed_ref(const char*refname)1359{1360returnfind_ref(get_packed_refs(&ref_cache), refname);1361}13621363/*1364 * A loose ref file doesn't exist; check for a packed ref. The1365 * options are forwarded from resolve_safe_unsafe().1366 */1367static intresolve_missing_loose_ref(const char*refname,1368int resolve_flags,1369unsigned char*sha1,1370int*flags)1371{1372struct ref_entry *entry;13731374/*1375 * The loose reference file does not exist; check for a packed1376 * reference.1377 */1378 entry =get_packed_ref(refname);1379if(entry) {1380hashcpy(sha1, entry->u.value.oid.hash);1381if(flags)1382*flags |= REF_ISPACKED;1383return0;1384}1385/* The reference is not a packed reference, either. */1386if(resolve_flags & RESOLVE_REF_READING) {1387 errno = ENOENT;1388return-1;1389}else{1390hashclr(sha1);1391return0;1392}1393}13941395/* This function needs to return a meaningful errno on failure */1396static const char*resolve_ref_1(const char*refname,1397int resolve_flags,1398unsigned char*sha1,1399int*flags,1400struct strbuf *sb_refname,1401struct strbuf *sb_path,1402struct strbuf *sb_contents)1403{1404int depth = MAXDEPTH;1405int bad_name =0;14061407if(flags)1408*flags =0;14091410if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1411if(flags)1412*flags |= REF_BAD_NAME;14131414if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1415!refname_is_safe(refname)) {1416 errno = EINVAL;1417return NULL;1418}1419/*1420 * dwim_ref() uses REF_ISBROKEN to distinguish between1421 * missing refs and refs that were present but invalid,1422 * to complain about the latter to stderr.1423 *1424 * We don't know whether the ref exists, so don't set1425 * REF_ISBROKEN yet.1426 */1427 bad_name =1;1428}1429for(;;) {1430const char*path;1431struct stat st;1432char*buf;1433int fd;14341435if(--depth <0) {1436 errno = ELOOP;1437return NULL;1438}14391440strbuf_reset(sb_path);1441strbuf_git_path(sb_path,"%s", refname);1442 path = sb_path->buf;14431444/*1445 * We might have to loop back here to avoid a race1446 * condition: first we lstat() the file, then we try1447 * to read it as a link or as a file. But if somebody1448 * changes the type of the file (file <-> directory1449 * <-> symlink) between the lstat() and reading, then1450 * we don't want to report that as an error but rather1451 * try again starting with the lstat().1452 */1453 stat_ref:1454if(lstat(path, &st) <0) {1455if(errno != ENOENT)1456return NULL;1457if(resolve_missing_loose_ref(refname, resolve_flags,1458 sha1, flags))1459return NULL;1460if(bad_name) {1461hashclr(sha1);1462if(flags)1463*flags |= REF_ISBROKEN;1464}1465return refname;1466}14671468/* Follow "normalized" - ie "refs/.." symlinks by hand */1469if(S_ISLNK(st.st_mode)) {1470strbuf_reset(sb_contents);1471if(strbuf_readlink(sb_contents, path,0) <0) {1472if(errno == ENOENT || errno == EINVAL)1473/* inconsistent with lstat; retry */1474goto stat_ref;1475else1476return NULL;1477}1478if(starts_with(sb_contents->buf,"refs/") &&1479!check_refname_format(sb_contents->buf,0)) {1480strbuf_swap(sb_refname, sb_contents);1481 refname = sb_refname->buf;1482if(flags)1483*flags |= REF_ISSYMREF;1484if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1485hashclr(sha1);1486return refname;1487}1488continue;1489}1490}14911492/* Is it a directory? */1493if(S_ISDIR(st.st_mode)) {1494 errno = EISDIR;1495return NULL;1496}14971498/*1499 * Anything else, just open it and try to use it as1500 * a ref1501 */1502 fd =open(path, O_RDONLY);1503if(fd <0) {1504if(errno == ENOENT)1505/* inconsistent with lstat; retry */1506goto stat_ref;1507else1508return NULL;1509}1510strbuf_reset(sb_contents);1511if(strbuf_read(sb_contents, fd,256) <0) {1512int save_errno = errno;1513close(fd);1514 errno = save_errno;1515return NULL;1516}1517close(fd);1518strbuf_rtrim(sb_contents);15191520/*1521 * Is it a symbolic ref?1522 */1523if(!starts_with(sb_contents->buf,"ref:")) {1524/*1525 * Please note that FETCH_HEAD has a second1526 * line containing other data.1527 */1528if(get_sha1_hex(sb_contents->buf, sha1) ||1529(sb_contents->buf[40] !='\0'&& !isspace(sb_contents->buf[40]))) {1530if(flags)1531*flags |= REF_ISBROKEN;1532 errno = EINVAL;1533return NULL;1534}1535if(bad_name) {1536hashclr(sha1);1537if(flags)1538*flags |= REF_ISBROKEN;1539}1540return refname;1541}1542if(flags)1543*flags |= REF_ISSYMREF;1544 buf = sb_contents->buf +4;1545while(isspace(*buf))1546 buf++;1547strbuf_reset(sb_refname);1548strbuf_addstr(sb_refname, buf);1549 refname = sb_refname->buf;1550if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1551hashclr(sha1);1552return refname;1553}1554if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1555if(flags)1556*flags |= REF_ISBROKEN;15571558if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1559!refname_is_safe(buf)) {1560 errno = EINVAL;1561return NULL;1562}1563 bad_name =1;1564}1565}1566}15671568const char*resolve_ref_unsafe(const char*refname,int resolve_flags,1569unsigned char*sha1,int*flags)1570{1571static struct strbuf sb_refname = STRBUF_INIT;1572struct strbuf sb_contents = STRBUF_INIT;1573struct strbuf sb_path = STRBUF_INIT;1574const char*ret;15751576 ret =resolve_ref_1(refname, resolve_flags, sha1, flags,1577&sb_refname, &sb_path, &sb_contents);1578strbuf_release(&sb_path);1579strbuf_release(&sb_contents);1580return ret;1581}15821583/*1584 * Peel the entry (if possible) and return its new peel_status. If1585 * repeel is true, re-peel the entry even if there is an old peeled1586 * value that is already stored in it.1587 *1588 * It is OK to call this function with a packed reference entry that1589 * might be stale and might even refer to an object that has since1590 * been garbage-collected. In such a case, if the entry has1591 * REF_KNOWS_PEELED then leave the status unchanged and return1592 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1593 */1594static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1595{1596enum peel_status status;15971598if(entry->flag & REF_KNOWS_PEELED) {1599if(repeel) {1600 entry->flag &= ~REF_KNOWS_PEELED;1601oidclr(&entry->u.value.peeled);1602}else{1603returnis_null_oid(&entry->u.value.peeled) ?1604 PEEL_NON_TAG : PEEL_PEELED;1605}1606}1607if(entry->flag & REF_ISBROKEN)1608return PEEL_BROKEN;1609if(entry->flag & REF_ISSYMREF)1610return PEEL_IS_SYMREF;16111612 status =peel_object(entry->u.value.oid.hash, entry->u.value.peeled.hash);1613if(status == PEEL_PEELED || status == PEEL_NON_TAG)1614 entry->flag |= REF_KNOWS_PEELED;1615return status;1616}16171618intpeel_ref(const char*refname,unsigned char*sha1)1619{1620int flag;1621unsigned char base[20];16221623if(current_ref && (current_ref->name == refname1624|| !strcmp(current_ref->name, refname))) {1625if(peel_entry(current_ref,0))1626return-1;1627hashcpy(sha1, current_ref->u.value.peeled.hash);1628return0;1629}16301631if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1632return-1;16331634/*1635 * If the reference is packed, read its ref_entry from the1636 * cache in the hope that we already know its peeled value.1637 * We only try this optimization on packed references because1638 * (a) forcing the filling of the loose reference cache could1639 * be expensive and (b) loose references anyway usually do not1640 * have REF_KNOWS_PEELED.1641 */1642if(flag & REF_ISPACKED) {1643struct ref_entry *r =get_packed_ref(refname);1644if(r) {1645if(peel_entry(r,0))1646return-1;1647hashcpy(sha1, r->u.value.peeled.hash);1648return0;1649}1650}16511652returnpeel_object(base, sha1);1653}16541655/*1656 * Call fn for each reference in the specified ref_cache, omitting1657 * references not in the containing_dir of base. fn is called for all1658 * references, including broken ones. If fn ever returns a non-zero1659 * value, stop the iteration and return that value; otherwise, return1660 * 0.1661 */1662static intdo_for_each_entry(struct ref_cache *refs,const char*base,1663 each_ref_entry_fn fn,void*cb_data)1664{1665struct packed_ref_cache *packed_ref_cache;1666struct ref_dir *loose_dir;1667struct ref_dir *packed_dir;1668int retval =0;16691670/*1671 * We must make sure that all loose refs are read before accessing the1672 * packed-refs file; this avoids a race condition in which loose refs1673 * are migrated to the packed-refs file by a simultaneous process, but1674 * our in-memory view is from before the migration. get_packed_ref_cache()1675 * takes care of making sure our view is up to date with what is on1676 * disk.1677 */1678 loose_dir =get_loose_refs(refs);1679if(base && *base) {1680 loose_dir =find_containing_dir(loose_dir, base,0);1681}1682if(loose_dir)1683prime_ref_dir(loose_dir);16841685 packed_ref_cache =get_packed_ref_cache(refs);1686acquire_packed_ref_cache(packed_ref_cache);1687 packed_dir =get_packed_ref_dir(packed_ref_cache);1688if(base && *base) {1689 packed_dir =find_containing_dir(packed_dir, base,0);1690}16911692if(packed_dir && loose_dir) {1693sort_ref_dir(packed_dir);1694sort_ref_dir(loose_dir);1695 retval =do_for_each_entry_in_dirs(1696 packed_dir, loose_dir, fn, cb_data);1697}else if(packed_dir) {1698sort_ref_dir(packed_dir);1699 retval =do_for_each_entry_in_dir(1700 packed_dir,0, fn, cb_data);1701}else if(loose_dir) {1702sort_ref_dir(loose_dir);1703 retval =do_for_each_entry_in_dir(1704 loose_dir,0, fn, cb_data);1705}17061707release_packed_ref_cache(packed_ref_cache);1708return retval;1709}17101711/*1712 * Call fn for each reference in the specified ref_cache for which the1713 * refname begins with base. If trim is non-zero, then trim that many1714 * characters off the beginning of each refname before passing the1715 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include1716 * broken references in the iteration. If fn ever returns a non-zero1717 * value, stop the iteration and return that value; otherwise, return1718 * 0.1719 */1720static intdo_for_each_ref(struct ref_cache *refs,const char*base,1721 each_ref_fn fn,int trim,int flags,void*cb_data)1722{1723struct ref_entry_cb data;1724 data.base = base;1725 data.trim = trim;1726 data.flags = flags;1727 data.fn = fn;1728 data.cb_data = cb_data;17291730if(ref_paranoia <0)1731 ref_paranoia =git_env_bool("GIT_REF_PARANOIA",0);1732if(ref_paranoia)1733 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;17341735returndo_for_each_entry(refs, base, do_one_ref, &data);1736}17371738static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)1739{1740struct object_id oid;1741int flag;17421743if(submodule) {1744if(resolve_gitlink_ref(submodule,"HEAD", oid.hash) ==0)1745returnfn("HEAD", &oid,0, cb_data);17461747return0;1748}17491750if(!read_ref_full("HEAD", RESOLVE_REF_READING, oid.hash, &flag))1751returnfn("HEAD", &oid, flag, cb_data);17521753return0;1754}17551756inthead_ref(each_ref_fn fn,void*cb_data)1757{1758returndo_head_ref(NULL, fn, cb_data);1759}17601761inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1762{1763returndo_head_ref(submodule, fn, cb_data);1764}17651766intfor_each_ref(each_ref_fn fn,void*cb_data)1767{1768returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);1769}17701771intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1772{1773returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);1774}17751776intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)1777{1778returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);1779}17801781intfor_each_fullref_in(const char*prefix, each_ref_fn fn,void*cb_data,unsigned int broken)1782{1783unsigned int flag =0;17841785if(broken)1786 flag = DO_FOR_EACH_INCLUDE_BROKEN;1787returndo_for_each_ref(&ref_cache, prefix, fn,0, flag, cb_data);1788}17891790intfor_each_ref_in_submodule(const char*submodule,const char*prefix,1791 each_ref_fn fn,void*cb_data)1792{1793returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);1794}17951796intfor_each_replace_ref(each_ref_fn fn,void*cb_data)1797{1798returndo_for_each_ref(&ref_cache, git_replace_ref_base, fn,1799strlen(git_replace_ref_base),0, cb_data);1800}18011802intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)1803{1804struct strbuf buf = STRBUF_INIT;1805int ret;1806strbuf_addf(&buf,"%srefs/",get_git_namespace());1807 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);1808strbuf_release(&buf);1809return ret;1810}18111812intfor_each_rawref(each_ref_fn fn,void*cb_data)1813{1814returndo_for_each_ref(&ref_cache,"", fn,0,1815 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);1816}18171818static voidunlock_ref(struct ref_lock *lock)1819{1820/* Do not free lock->lk -- atexit() still looks at them */1821if(lock->lk)1822rollback_lock_file(lock->lk);1823free(lock->ref_name);1824free(lock->orig_ref_name);1825free(lock);1826}18271828/*1829 * Verify that the reference locked by lock has the value old_sha1.1830 * Fail if the reference doesn't exist and mustexist is set. Return 01831 * on success. On error, write an error message to err, set errno, and1832 * return a negative value.1833 */1834static intverify_lock(struct ref_lock *lock,1835const unsigned char*old_sha1,int mustexist,1836struct strbuf *err)1837{1838assert(err);18391840if(read_ref_full(lock->ref_name,1841 mustexist ? RESOLVE_REF_READING :0,1842 lock->old_oid.hash, NULL)) {1843if(old_sha1) {1844int save_errno = errno;1845strbuf_addf(err,"can't verify ref%s", lock->ref_name);1846 errno = save_errno;1847return-1;1848}else{1849hashclr(lock->old_oid.hash);1850return0;1851}1852}1853if(old_sha1 &&hashcmp(lock->old_oid.hash, old_sha1)) {1854strbuf_addf(err,"ref%sis at%sbut expected%s",1855 lock->ref_name,1856sha1_to_hex(lock->old_oid.hash),1857sha1_to_hex(old_sha1));1858 errno = EBUSY;1859return-1;1860}1861return0;1862}18631864static intremove_empty_directories(struct strbuf *path)1865{1866/*1867 * we want to create a file but there is a directory there;1868 * if that is an empty directory (or a directory that contains1869 * only empty directories), remove them.1870 */1871returnremove_dir_recursively(path, REMOVE_DIR_EMPTY_ONLY);1872}18731874/*1875 * Locks a ref returning the lock on success and NULL on failure.1876 * On failure errno is set to something meaningful.1877 */1878static struct ref_lock *lock_ref_sha1_basic(const char*refname,1879const unsigned char*old_sha1,1880const struct string_list *extras,1881const struct string_list *skip,1882unsigned int flags,int*type_p,1883struct strbuf *err)1884{1885struct strbuf ref_file = STRBUF_INIT;1886struct strbuf orig_ref_file = STRBUF_INIT;1887const char*orig_refname = refname;1888struct ref_lock *lock;1889int last_errno =0;1890int type, lflags;1891int mustexist = (old_sha1 && !is_null_sha1(old_sha1));1892int resolve_flags =0;1893int attempts_remaining =3;18941895assert(err);18961897 lock =xcalloc(1,sizeof(struct ref_lock));18981899if(mustexist)1900 resolve_flags |= RESOLVE_REF_READING;1901if(flags & REF_DELETING) {1902 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;1903if(flags & REF_NODEREF)1904 resolve_flags |= RESOLVE_REF_NO_RECURSE;1905}19061907 refname =resolve_ref_unsafe(refname, resolve_flags,1908 lock->old_oid.hash, &type);1909if(!refname && errno == EISDIR) {1910/*1911 * we are trying to lock foo but we used to1912 * have foo/bar which now does not exist;1913 * it is normal for the empty directory 'foo'1914 * to remain.1915 */1916strbuf_git_path(&orig_ref_file,"%s", orig_refname);1917if(remove_empty_directories(&orig_ref_file)) {1918 last_errno = errno;1919if(!verify_refname_available_dir(orig_refname, extras, skip,1920get_loose_refs(&ref_cache), err))1921strbuf_addf(err,"there are still refs under '%s'",1922 orig_refname);1923goto error_return;1924}1925 refname =resolve_ref_unsafe(orig_refname, resolve_flags,1926 lock->old_oid.hash, &type);1927}1928if(type_p)1929*type_p = type;1930if(!refname) {1931 last_errno = errno;1932if(last_errno != ENOTDIR ||1933!verify_refname_available_dir(orig_refname, extras, skip,1934get_loose_refs(&ref_cache), err))1935strbuf_addf(err,"unable to resolve reference%s:%s",1936 orig_refname,strerror(last_errno));19371938goto error_return;1939}1940/*1941 * If the ref did not exist and we are creating it, make sure1942 * there is no existing packed ref whose name begins with our1943 * refname, nor a packed ref whose name is a proper prefix of1944 * our refname.1945 */1946if(is_null_oid(&lock->old_oid) &&1947verify_refname_available_dir(refname, extras, skip,1948get_packed_refs(&ref_cache), err)) {1949 last_errno = ENOTDIR;1950goto error_return;1951}19521953 lock->lk =xcalloc(1,sizeof(struct lock_file));19541955 lflags =0;1956if(flags & REF_NODEREF) {1957 refname = orig_refname;1958 lflags |= LOCK_NO_DEREF;1959}1960 lock->ref_name =xstrdup(refname);1961 lock->orig_ref_name =xstrdup(orig_refname);1962strbuf_git_path(&ref_file,"%s", refname);19631964 retry:1965switch(safe_create_leading_directories_const(ref_file.buf)) {1966case SCLD_OK:1967break;/* success */1968case SCLD_VANISHED:1969if(--attempts_remaining >0)1970goto retry;1971/* fall through */1972default:1973 last_errno = errno;1974strbuf_addf(err,"unable to create directory for%s",1975 ref_file.buf);1976goto error_return;1977}19781979if(hold_lock_file_for_update(lock->lk, ref_file.buf, lflags) <0) {1980 last_errno = errno;1981if(errno == ENOENT && --attempts_remaining >0)1982/*1983 * Maybe somebody just deleted one of the1984 * directories leading to ref_file. Try1985 * again:1986 */1987goto retry;1988else{1989unable_to_lock_message(ref_file.buf, errno, err);1990goto error_return;1991}1992}1993if(verify_lock(lock, old_sha1, mustexist, err)) {1994 last_errno = errno;1995goto error_return;1996}1997goto out;19981999 error_return:2000unlock_ref(lock);2001 lock = NULL;20022003 out:2004strbuf_release(&ref_file);2005strbuf_release(&orig_ref_file);2006 errno = last_errno;2007return lock;2008}20092010/*2011 * Write an entry to the packed-refs file for the specified refname.2012 * If peeled is non-NULL, write it as the entry's peeled value.2013 */2014static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2015unsigned char*peeled)2016{2017fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2018if(peeled)2019fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2020}20212022/*2023 * An each_ref_entry_fn that writes the entry to a packed-refs file.2024 */2025static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2026{2027enum peel_status peel_status =peel_entry(entry,0);20282029if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2030error("internal error:%sis not a valid packed reference!",2031 entry->name);2032write_packed_entry(cb_data, entry->name, entry->u.value.oid.hash,2033 peel_status == PEEL_PEELED ?2034 entry->u.value.peeled.hash : NULL);2035return0;2036}20372038/*2039 * Lock the packed-refs file for writing. Flags is passed to2040 * hold_lock_file_for_update(). Return 0 on success. On errors, set2041 * errno appropriately and return a nonzero value.2042 */2043static intlock_packed_refs(int flags)2044{2045static int timeout_configured =0;2046static int timeout_value =1000;20472048struct packed_ref_cache *packed_ref_cache;20492050if(!timeout_configured) {2051git_config_get_int("core.packedrefstimeout", &timeout_value);2052 timeout_configured =1;2053}20542055if(hold_lock_file_for_update_timeout(2056&packlock,git_path("packed-refs"),2057 flags, timeout_value) <0)2058return-1;2059/*2060 * Get the current packed-refs while holding the lock. If the2061 * packed-refs file has been modified since we last read it,2062 * this will automatically invalidate the cache and re-read2063 * the packed-refs file.2064 */2065 packed_ref_cache =get_packed_ref_cache(&ref_cache);2066 packed_ref_cache->lock = &packlock;2067/* Increment the reference count to prevent it from being freed: */2068acquire_packed_ref_cache(packed_ref_cache);2069return0;2070}20712072/*2073 * Write the current version of the packed refs cache from memory to2074 * disk. The packed-refs file must already be locked for writing (see2075 * lock_packed_refs()). Return zero on success. On errors, set errno2076 * and return a nonzero value2077 */2078static intcommit_packed_refs(void)2079{2080struct packed_ref_cache *packed_ref_cache =2081get_packed_ref_cache(&ref_cache);2082int error =0;2083int save_errno =0;2084FILE*out;20852086if(!packed_ref_cache->lock)2087die("internal error: packed-refs not locked");20882089 out =fdopen_lock_file(packed_ref_cache->lock,"w");2090if(!out)2091die_errno("unable to fdopen packed-refs descriptor");20922093fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2094do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),20950, write_packed_entry_fn, out);20962097if(commit_lock_file(packed_ref_cache->lock)) {2098 save_errno = errno;2099 error = -1;2100}2101 packed_ref_cache->lock = NULL;2102release_packed_ref_cache(packed_ref_cache);2103 errno = save_errno;2104return error;2105}21062107/*2108 * Rollback the lockfile for the packed-refs file, and discard the2109 * in-memory packed reference cache. (The packed-refs file will be2110 * read anew if it is needed again after this function is called.)2111 */2112static voidrollback_packed_refs(void)2113{2114struct packed_ref_cache *packed_ref_cache =2115get_packed_ref_cache(&ref_cache);21162117if(!packed_ref_cache->lock)2118die("internal error: packed-refs not locked");2119rollback_lock_file(packed_ref_cache->lock);2120 packed_ref_cache->lock = NULL;2121release_packed_ref_cache(packed_ref_cache);2122clear_packed_ref_cache(&ref_cache);2123}21242125struct ref_to_prune {2126struct ref_to_prune *next;2127unsigned char sha1[20];2128char name[FLEX_ARRAY];2129};21302131struct pack_refs_cb_data {2132unsigned int flags;2133struct ref_dir *packed_refs;2134struct ref_to_prune *ref_to_prune;2135};21362137/*2138 * An each_ref_entry_fn that is run over loose references only. If2139 * the loose reference can be packed, add an entry in the packed ref2140 * cache. If the reference should be pruned, also add it to2141 * ref_to_prune in the pack_refs_cb_data.2142 */2143static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2144{2145struct pack_refs_cb_data *cb = cb_data;2146enum peel_status peel_status;2147struct ref_entry *packed_entry;2148int is_tag_ref =starts_with(entry->name,"refs/tags/");21492150/* Do not pack per-worktree refs: */2151if(ref_type(entry->name) != REF_TYPE_NORMAL)2152return0;21532154/* ALWAYS pack tags */2155if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2156return0;21572158/* Do not pack symbolic or broken refs: */2159if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2160return0;21612162/* Add a packed ref cache entry equivalent to the loose entry. */2163 peel_status =peel_entry(entry,1);2164if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2165die("internal error peeling reference%s(%s)",2166 entry->name,oid_to_hex(&entry->u.value.oid));2167 packed_entry =find_ref(cb->packed_refs, entry->name);2168if(packed_entry) {2169/* Overwrite existing packed entry with info from loose entry */2170 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2171oidcpy(&packed_entry->u.value.oid, &entry->u.value.oid);2172}else{2173 packed_entry =create_ref_entry(entry->name, entry->u.value.oid.hash,2174 REF_ISPACKED | REF_KNOWS_PEELED,0);2175add_ref(cb->packed_refs, packed_entry);2176}2177oidcpy(&packed_entry->u.value.peeled, &entry->u.value.peeled);21782179/* Schedule the loose reference for pruning if requested. */2180if((cb->flags & PACK_REFS_PRUNE)) {2181int namelen =strlen(entry->name) +1;2182struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2183hashcpy(n->sha1, entry->u.value.oid.hash);2184memcpy(n->name, entry->name, namelen);/* includes NUL */2185 n->next = cb->ref_to_prune;2186 cb->ref_to_prune = n;2187}2188return0;2189}21902191/*2192 * Remove empty parents, but spare refs/ and immediate subdirs.2193 * Note: munges *name.2194 */2195static voidtry_remove_empty_parents(char*name)2196{2197char*p, *q;2198int i;2199 p = name;2200for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2201while(*p && *p !='/')2202 p++;2203/* tolerate duplicate slashes; see check_refname_format() */2204while(*p =='/')2205 p++;2206}2207for(q = p; *q; q++)2208;2209while(1) {2210while(q > p && *q !='/')2211 q--;2212while(q > p && *(q-1) =='/')2213 q--;2214if(q == p)2215break;2216*q ='\0';2217if(rmdir(git_path("%s", name)))2218break;2219}2220}22212222/* make sure nobody touched the ref, and unlink */2223static voidprune_ref(struct ref_to_prune *r)2224{2225struct ref_transaction *transaction;2226struct strbuf err = STRBUF_INIT;22272228if(check_refname_format(r->name,0))2229return;22302231 transaction =ref_transaction_begin(&err);2232if(!transaction ||2233ref_transaction_delete(transaction, r->name, r->sha1,2234 REF_ISPRUNING, NULL, &err) ||2235ref_transaction_commit(transaction, &err)) {2236ref_transaction_free(transaction);2237error("%s", err.buf);2238strbuf_release(&err);2239return;2240}2241ref_transaction_free(transaction);2242strbuf_release(&err);2243try_remove_empty_parents(r->name);2244}22452246static voidprune_refs(struct ref_to_prune *r)2247{2248while(r) {2249prune_ref(r);2250 r = r->next;2251}2252}22532254intpack_refs(unsigned int flags)2255{2256struct pack_refs_cb_data cbdata;22572258memset(&cbdata,0,sizeof(cbdata));2259 cbdata.flags = flags;22602261lock_packed_refs(LOCK_DIE_ON_ERROR);2262 cbdata.packed_refs =get_packed_refs(&ref_cache);22632264do_for_each_entry_in_dir(get_loose_refs(&ref_cache),0,2265 pack_if_possible_fn, &cbdata);22662267if(commit_packed_refs())2268die_errno("unable to overwrite old ref-pack file");22692270prune_refs(cbdata.ref_to_prune);2271return0;2272}22732274/*2275 * Rewrite the packed-refs file, omitting any refs listed in2276 * 'refnames'. On error, leave packed-refs unchanged, write an error2277 * message to 'err', and return a nonzero value.2278 *2279 * The refs in 'refnames' needn't be sorted. `err` must not be NULL.2280 */2281static intrepack_without_refs(struct string_list *refnames,struct strbuf *err)2282{2283struct ref_dir *packed;2284struct string_list_item *refname;2285int ret, needs_repacking =0, removed =0;22862287assert(err);22882289/* Look for a packed ref */2290for_each_string_list_item(refname, refnames) {2291if(get_packed_ref(refname->string)) {2292 needs_repacking =1;2293break;2294}2295}22962297/* Avoid locking if we have nothing to do */2298if(!needs_repacking)2299return0;/* no refname exists in packed refs */23002301if(lock_packed_refs(0)) {2302unable_to_lock_message(git_path("packed-refs"), errno, err);2303return-1;2304}2305 packed =get_packed_refs(&ref_cache);23062307/* Remove refnames from the cache */2308for_each_string_list_item(refname, refnames)2309if(remove_entry(packed, refname->string) != -1)2310 removed =1;2311if(!removed) {2312/*2313 * All packed entries disappeared while we were2314 * acquiring the lock.2315 */2316rollback_packed_refs();2317return0;2318}23192320/* Write what remains */2321 ret =commit_packed_refs();2322if(ret)2323strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2324strerror(errno));2325return ret;2326}23272328static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2329{2330assert(err);23312332if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2333/*2334 * loose. The loose file name is the same as the2335 * lockfile name, minus ".lock":2336 */2337char*loose_filename =get_locked_file_path(lock->lk);2338int res =unlink_or_msg(loose_filename, err);2339free(loose_filename);2340if(res)2341return1;2342}2343return0;2344}23452346intdelete_refs(struct string_list *refnames)2347{2348struct strbuf err = STRBUF_INIT;2349int i, result =0;23502351if(!refnames->nr)2352return0;23532354 result =repack_without_refs(refnames, &err);2355if(result) {2356/*2357 * If we failed to rewrite the packed-refs file, then2358 * it is unsafe to try to remove loose refs, because2359 * doing so might expose an obsolete packed value for2360 * a reference that might even point at an object that2361 * has been garbage collected.2362 */2363if(refnames->nr ==1)2364error(_("could not delete reference%s:%s"),2365 refnames->items[0].string, err.buf);2366else2367error(_("could not delete references:%s"), err.buf);23682369goto out;2370}23712372for(i =0; i < refnames->nr; i++) {2373const char*refname = refnames->items[i].string;23742375if(delete_ref(refname, NULL,0))2376 result |=error(_("could not remove reference%s"), refname);2377}23782379out:2380strbuf_release(&err);2381return result;2382}23832384/*2385 * People using contrib's git-new-workdir have .git/logs/refs ->2386 * /some/other/path/.git/logs/refs, and that may live on another device.2387 *2388 * IOW, to avoid cross device rename errors, the temporary renamed log must2389 * live into logs/refs.2390 */2391#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"23922393static intrename_tmp_log(const char*newrefname)2394{2395int attempts_remaining =4;2396struct strbuf path = STRBUF_INIT;2397int ret = -1;23982399 retry:2400strbuf_reset(&path);2401strbuf_git_path(&path,"logs/%s", newrefname);2402switch(safe_create_leading_directories_const(path.buf)) {2403case SCLD_OK:2404break;/* success */2405case SCLD_VANISHED:2406if(--attempts_remaining >0)2407goto retry;2408/* fall through */2409default:2410error("unable to create directory for%s", newrefname);2411goto out;2412}24132414if(rename(git_path(TMP_RENAMED_LOG), path.buf)) {2415if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2416/*2417 * rename(a, b) when b is an existing2418 * directory ought to result in ISDIR, but2419 * Solaris 5.8 gives ENOTDIR. Sheesh.2420 */2421if(remove_empty_directories(&path)) {2422error("Directory not empty: logs/%s", newrefname);2423goto out;2424}2425goto retry;2426}else if(errno == ENOENT && --attempts_remaining >0) {2427/*2428 * Maybe another process just deleted one of2429 * the directories in the path to newrefname.2430 * Try again from the beginning.2431 */2432goto retry;2433}else{2434error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2435 newrefname,strerror(errno));2436goto out;2437}2438}2439 ret =0;2440out:2441strbuf_release(&path);2442return ret;2443}24442445intverify_refname_available(const char*newname,2446struct string_list *extras,2447struct string_list *skip,2448struct strbuf *err)2449{2450struct ref_dir *packed_refs =get_packed_refs(&ref_cache);2451struct ref_dir *loose_refs =get_loose_refs(&ref_cache);24522453if(verify_refname_available_dir(newname, extras, skip,2454 packed_refs, err) ||2455verify_refname_available_dir(newname, extras, skip,2456 loose_refs, err))2457return-1;24582459return0;2460}24612462static intwrite_ref_to_lockfile(struct ref_lock *lock,2463const unsigned char*sha1,struct strbuf *err);2464static intcommit_ref_update(struct ref_lock *lock,2465const unsigned char*sha1,const char*logmsg,2466int flags,struct strbuf *err);24672468intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2469{2470unsigned char sha1[20], orig_sha1[20];2471int flag =0, logmoved =0;2472struct ref_lock *lock;2473struct stat loginfo;2474int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2475const char*symref = NULL;2476struct strbuf err = STRBUF_INIT;24772478if(log &&S_ISLNK(loginfo.st_mode))2479returnerror("reflog for%sis a symlink", oldrefname);24802481 symref =resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,2482 orig_sha1, &flag);2483if(flag & REF_ISSYMREF)2484returnerror("refname%sis a symbolic ref, renaming it is not supported",2485 oldrefname);2486if(!symref)2487returnerror("refname%snot found", oldrefname);24882489if(!rename_ref_available(oldrefname, newrefname))2490return1;24912492if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2493returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2494 oldrefname,strerror(errno));24952496if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2497error("unable to delete old%s", oldrefname);2498goto rollback;2499}25002501if(!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&2502delete_ref(newrefname, sha1, REF_NODEREF)) {2503if(errno==EISDIR) {2504struct strbuf path = STRBUF_INIT;2505int result;25062507strbuf_git_path(&path,"%s", newrefname);2508 result =remove_empty_directories(&path);2509strbuf_release(&path);25102511if(result) {2512error("Directory not empty:%s", newrefname);2513goto rollback;2514}2515}else{2516error("unable to delete existing%s", newrefname);2517goto rollback;2518}2519}25202521if(log &&rename_tmp_log(newrefname))2522goto rollback;25232524 logmoved = log;25252526 lock =lock_ref_sha1_basic(newrefname, NULL, NULL, NULL,0, NULL, &err);2527if(!lock) {2528error("unable to rename '%s' to '%s':%s", oldrefname, newrefname, err.buf);2529strbuf_release(&err);2530goto rollback;2531}2532hashcpy(lock->old_oid.hash, orig_sha1);25332534if(write_ref_to_lockfile(lock, orig_sha1, &err) ||2535commit_ref_update(lock, orig_sha1, logmsg,0, &err)) {2536error("unable to write current sha1 into%s:%s", newrefname, err.buf);2537strbuf_release(&err);2538goto rollback;2539}25402541return0;25422543 rollback:2544 lock =lock_ref_sha1_basic(oldrefname, NULL, NULL, NULL,0, NULL, &err);2545if(!lock) {2546error("unable to lock%sfor rollback:%s", oldrefname, err.buf);2547strbuf_release(&err);2548goto rollbacklog;2549}25502551 flag = log_all_ref_updates;2552 log_all_ref_updates =0;2553if(write_ref_to_lockfile(lock, orig_sha1, &err) ||2554commit_ref_update(lock, orig_sha1, NULL,0, &err)) {2555error("unable to write current sha1 into%s:%s", oldrefname, err.buf);2556strbuf_release(&err);2557}2558 log_all_ref_updates = flag;25592560 rollbacklog:2561if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2562error("unable to restore logfile%sfrom%s:%s",2563 oldrefname, newrefname,strerror(errno));2564if(!logmoved && log &&2565rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2566error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2567 oldrefname,strerror(errno));25682569return1;2570}25712572static intclose_ref(struct ref_lock *lock)2573{2574if(close_lock_file(lock->lk))2575return-1;2576return0;2577}25782579static intcommit_ref(struct ref_lock *lock)2580{2581if(commit_lock_file(lock->lk))2582return-1;2583return0;2584}25852586/*2587 * Create a reflog for a ref. If force_create = 0, the reflog will2588 * only be created for certain refs (those for which2589 * should_autocreate_reflog returns non-zero. Otherwise, create it2590 * regardless of the ref name. Fill in *err and return -1 on failure.2591 */2592static intlog_ref_setup(const char*refname,struct strbuf *logfile,struct strbuf *err,int force_create)2593{2594int logfd, oflags = O_APPEND | O_WRONLY;25952596strbuf_git_path(logfile,"logs/%s", refname);2597if(force_create ||should_autocreate_reflog(refname)) {2598if(safe_create_leading_directories(logfile->buf) <0) {2599strbuf_addf(err,"unable to create directory for%s: "2600"%s", logfile->buf,strerror(errno));2601return-1;2602}2603 oflags |= O_CREAT;2604}26052606 logfd =open(logfile->buf, oflags,0666);2607if(logfd <0) {2608if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))2609return0;26102611if(errno == EISDIR) {2612if(remove_empty_directories(logfile)) {2613strbuf_addf(err,"There are still logs under "2614"'%s'", logfile->buf);2615return-1;2616}2617 logfd =open(logfile->buf, oflags,0666);2618}26192620if(logfd <0) {2621strbuf_addf(err,"unable to append to%s:%s",2622 logfile->buf,strerror(errno));2623return-1;2624}2625}26262627adjust_shared_perm(logfile->buf);2628close(logfd);2629return0;2630}263126322633intsafe_create_reflog(const char*refname,int force_create,struct strbuf *err)2634{2635int ret;2636struct strbuf sb = STRBUF_INIT;26372638 ret =log_ref_setup(refname, &sb, err, force_create);2639strbuf_release(&sb);2640return ret;2641}26422643static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,2644const unsigned char*new_sha1,2645const char*committer,const char*msg)2646{2647int msglen, written;2648unsigned maxlen, len;2649char*logrec;26502651 msglen = msg ?strlen(msg) :0;2652 maxlen =strlen(committer) + msglen +100;2653 logrec =xmalloc(maxlen);2654 len =xsnprintf(logrec, maxlen,"%s %s %s\n",2655sha1_to_hex(old_sha1),2656sha1_to_hex(new_sha1),2657 committer);2658if(msglen)2659 len +=copy_reflog_msg(logrec + len -1, msg) -1;26602661 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;2662free(logrec);2663if(written != len)2664return-1;26652666return0;2667}26682669static intlog_ref_write_1(const char*refname,const unsigned char*old_sha1,2670const unsigned char*new_sha1,const char*msg,2671struct strbuf *logfile,int flags,2672struct strbuf *err)2673{2674int logfd, result, oflags = O_APPEND | O_WRONLY;26752676if(log_all_ref_updates <0)2677 log_all_ref_updates = !is_bare_repository();26782679 result =log_ref_setup(refname, logfile, err, flags & REF_FORCE_CREATE_REFLOG);26802681if(result)2682return result;26832684 logfd =open(logfile->buf, oflags);2685if(logfd <0)2686return0;2687 result =log_ref_write_fd(logfd, old_sha1, new_sha1,2688git_committer_info(0), msg);2689if(result) {2690strbuf_addf(err,"unable to append to%s:%s", logfile->buf,2691strerror(errno));2692close(logfd);2693return-1;2694}2695if(close(logfd)) {2696strbuf_addf(err,"unable to append to%s:%s", logfile->buf,2697strerror(errno));2698return-1;2699}2700return0;2701}27022703static intlog_ref_write(const char*refname,const unsigned char*old_sha1,2704const unsigned char*new_sha1,const char*msg,2705int flags,struct strbuf *err)2706{2707returnfiles_log_ref_write(refname, old_sha1, new_sha1, msg, flags,2708 err);2709}27102711intfiles_log_ref_write(const char*refname,const unsigned char*old_sha1,2712const unsigned char*new_sha1,const char*msg,2713int flags,struct strbuf *err)2714{2715struct strbuf sb = STRBUF_INIT;2716int ret =log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb, flags,2717 err);2718strbuf_release(&sb);2719return ret;2720}27212722/*2723 * Write sha1 into the open lockfile, then close the lockfile. On2724 * errors, rollback the lockfile, fill in *err and2725 * return -1.2726 */2727static intwrite_ref_to_lockfile(struct ref_lock *lock,2728const unsigned char*sha1,struct strbuf *err)2729{2730static char term ='\n';2731struct object *o;2732int fd;27332734 o =parse_object(sha1);2735if(!o) {2736strbuf_addf(err,2737"Trying to write ref%swith nonexistent object%s",2738 lock->ref_name,sha1_to_hex(sha1));2739unlock_ref(lock);2740return-1;2741}2742if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {2743strbuf_addf(err,2744"Trying to write non-commit object%sto branch%s",2745sha1_to_hex(sha1), lock->ref_name);2746unlock_ref(lock);2747return-1;2748}2749 fd =get_lock_file_fd(lock->lk);2750if(write_in_full(fd,sha1_to_hex(sha1),40) !=40||2751write_in_full(fd, &term,1) !=1||2752close_ref(lock) <0) {2753strbuf_addf(err,2754"Couldn't write%s",get_lock_file_path(lock->lk));2755unlock_ref(lock);2756return-1;2757}2758return0;2759}27602761/*2762 * Commit a change to a loose reference that has already been written2763 * to the loose reference lockfile. Also update the reflogs if2764 * necessary, using the specified lockmsg (which can be NULL).2765 */2766static intcommit_ref_update(struct ref_lock *lock,2767const unsigned char*sha1,const char*logmsg,2768int flags,struct strbuf *err)2769{2770clear_loose_ref_cache(&ref_cache);2771if(log_ref_write(lock->ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) <0||2772(strcmp(lock->ref_name, lock->orig_ref_name) &&2773log_ref_write(lock->orig_ref_name, lock->old_oid.hash, sha1, logmsg, flags, err) <0)) {2774char*old_msg =strbuf_detach(err, NULL);2775strbuf_addf(err,"Cannot update the ref '%s':%s",2776 lock->ref_name, old_msg);2777free(old_msg);2778unlock_ref(lock);2779return-1;2780}2781if(strcmp(lock->orig_ref_name,"HEAD") !=0) {2782/*2783 * Special hack: If a branch is updated directly and HEAD2784 * points to it (may happen on the remote side of a push2785 * for example) then logically the HEAD reflog should be2786 * updated too.2787 * A generic solution implies reverse symref information,2788 * but finding all symrefs pointing to the given branch2789 * would be rather costly for this rare event (the direct2790 * update of a branch) to be worth it. So let's cheat and2791 * check with HEAD only which should cover 99% of all usage2792 * scenarios (even 100% of the default ones).2793 */2794unsigned char head_sha1[20];2795int head_flag;2796const char*head_ref;2797 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,2798 head_sha1, &head_flag);2799if(head_ref && (head_flag & REF_ISSYMREF) &&2800!strcmp(head_ref, lock->ref_name)) {2801struct strbuf log_err = STRBUF_INIT;2802if(log_ref_write("HEAD", lock->old_oid.hash, sha1,2803 logmsg,0, &log_err)) {2804error("%s", log_err.buf);2805strbuf_release(&log_err);2806}2807}2808}2809if(commit_ref(lock)) {2810error("Couldn't set%s", lock->ref_name);2811unlock_ref(lock);2812return-1;2813}28142815unlock_ref(lock);2816return0;2817}28182819static intcreate_ref_symlink(struct ref_lock *lock,const char*target)2820{2821int ret = -1;2822#ifndef NO_SYMLINK_HEAD2823char*ref_path =get_locked_file_path(lock->lk);2824unlink(ref_path);2825 ret =symlink(target, ref_path);2826free(ref_path);28272828if(ret)2829fprintf(stderr,"no symlink - falling back to symbolic ref\n");2830#endif2831return ret;2832}28332834static voidupdate_symref_reflog(struct ref_lock *lock,const char*refname,2835const char*target,const char*logmsg)2836{2837struct strbuf err = STRBUF_INIT;2838unsigned char new_sha1[20];2839if(logmsg && !read_ref(target, new_sha1) &&2840log_ref_write(refname, lock->old_oid.hash, new_sha1, logmsg,0, &err)) {2841error("%s", err.buf);2842strbuf_release(&err);2843}2844}28452846static intcreate_symref_locked(struct ref_lock *lock,const char*refname,2847const char*target,const char*logmsg)2848{2849if(prefer_symlink_refs && !create_ref_symlink(lock, target)) {2850update_symref_reflog(lock, refname, target, logmsg);2851return0;2852}28532854if(!fdopen_lock_file(lock->lk,"w"))2855returnerror("unable to fdopen%s:%s",2856 lock->lk->tempfile.filename.buf,strerror(errno));28572858update_symref_reflog(lock, refname, target, logmsg);28592860/* no error check; commit_ref will check ferror */2861fprintf(lock->lk->tempfile.fp,"ref:%s\n", target);2862if(commit_ref(lock) <0)2863returnerror("unable to write symref for%s:%s", refname,2864strerror(errno));2865return0;2866}28672868intcreate_symref(const char*refname,const char*target,const char*logmsg)2869{2870struct strbuf err = STRBUF_INIT;2871struct ref_lock *lock;2872int ret;28732874 lock =lock_ref_sha1_basic(refname, NULL, NULL, NULL, REF_NODEREF, NULL,2875&err);2876if(!lock) {2877error("%s", err.buf);2878strbuf_release(&err);2879return-1;2880}28812882 ret =create_symref_locked(lock, refname, target, logmsg);2883unlock_ref(lock);2884return ret;2885}28862887intreflog_exists(const char*refname)2888{2889struct stat st;28902891return!lstat(git_path("logs/%s", refname), &st) &&2892S_ISREG(st.st_mode);2893}28942895intdelete_reflog(const char*refname)2896{2897returnremove_path(git_path("logs/%s", refname));2898}28992900static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)2901{2902unsigned char osha1[20], nsha1[20];2903char*email_end, *message;2904unsigned long timestamp;2905int tz;29062907/* old SP new SP name <email> SP time TAB msg LF */2908if(sb->len <83|| sb->buf[sb->len -1] !='\n'||2909get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||2910get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||2911!(email_end =strchr(sb->buf +82,'>')) ||2912 email_end[1] !=' '||2913!(timestamp =strtoul(email_end +2, &message,10)) ||2914!message || message[0] !=' '||2915(message[1] !='+'&& message[1] !='-') ||2916!isdigit(message[2]) || !isdigit(message[3]) ||2917!isdigit(message[4]) || !isdigit(message[5]))2918return0;/* corrupt? */2919 email_end[1] ='\0';2920 tz =strtol(message +1, NULL,10);2921if(message[6] !='\t')2922 message +=6;2923else2924 message +=7;2925returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);2926}29272928static char*find_beginning_of_line(char*bob,char*scan)2929{2930while(bob < scan && *(--scan) !='\n')2931;/* keep scanning backwards */2932/*2933 * Return either beginning of the buffer, or LF at the end of2934 * the previous line.2935 */2936return scan;2937}29382939intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)2940{2941struct strbuf sb = STRBUF_INIT;2942FILE*logfp;2943long pos;2944int ret =0, at_tail =1;29452946 logfp =fopen(git_path("logs/%s", refname),"r");2947if(!logfp)2948return-1;29492950/* Jump to the end */2951if(fseek(logfp,0, SEEK_END) <0)2952returnerror("cannot seek back reflog for%s:%s",2953 refname,strerror(errno));2954 pos =ftell(logfp);2955while(!ret &&0< pos) {2956int cnt;2957size_t nread;2958char buf[BUFSIZ];2959char*endp, *scanp;29602961/* Fill next block from the end */2962 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;2963if(fseek(logfp, pos - cnt, SEEK_SET))2964returnerror("cannot seek back reflog for%s:%s",2965 refname,strerror(errno));2966 nread =fread(buf, cnt,1, logfp);2967if(nread !=1)2968returnerror("cannot read%dbytes from reflog for%s:%s",2969 cnt, refname,strerror(errno));2970 pos -= cnt;29712972 scanp = endp = buf + cnt;2973if(at_tail && scanp[-1] =='\n')2974/* Looking at the final LF at the end of the file */2975 scanp--;2976 at_tail =0;29772978while(buf < scanp) {2979/*2980 * terminating LF of the previous line, or the beginning2981 * of the buffer.2982 */2983char*bp;29842985 bp =find_beginning_of_line(buf, scanp);29862987if(*bp =='\n') {2988/*2989 * The newline is the end of the previous line,2990 * so we know we have complete line starting2991 * at (bp + 1). Prefix it onto any prior data2992 * we collected for the line and process it.2993 */2994strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));2995 scanp = bp;2996 endp = bp +1;2997 ret =show_one_reflog_ent(&sb, fn, cb_data);2998strbuf_reset(&sb);2999if(ret)3000break;3001}else if(!pos) {3002/*3003 * We are at the start of the buffer, and the3004 * start of the file; there is no previous3005 * line, and we have everything for this one.3006 * Process it, and we can end the loop.3007 */3008strbuf_splice(&sb,0,0, buf, endp - buf);3009 ret =show_one_reflog_ent(&sb, fn, cb_data);3010strbuf_reset(&sb);3011break;3012}30133014if(bp == buf) {3015/*3016 * We are at the start of the buffer, and there3017 * is more file to read backwards. Which means3018 * we are in the middle of a line. Note that we3019 * may get here even if *bp was a newline; that3020 * just means we are at the exact end of the3021 * previous line, rather than some spot in the3022 * middle.3023 *3024 * Save away what we have to be combined with3025 * the data from the next read.3026 */3027strbuf_splice(&sb,0,0, buf, endp - buf);3028break;3029}3030}30313032}3033if(!ret && sb.len)3034die("BUG: reverse reflog parser had leftover data");30353036fclose(logfp);3037strbuf_release(&sb);3038return ret;3039}30403041intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)3042{3043FILE*logfp;3044struct strbuf sb = STRBUF_INIT;3045int ret =0;30463047 logfp =fopen(git_path("logs/%s", refname),"r");3048if(!logfp)3049return-1;30503051while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3052 ret =show_one_reflog_ent(&sb, fn, cb_data);3053fclose(logfp);3054strbuf_release(&sb);3055return ret;3056}3057/*3058 * Call fn for each reflog in the namespace indicated by name. name3059 * must be empty or end with '/'. Name will be used as a scratch3060 * space, but its contents will be restored before return.3061 */3062static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)3063{3064DIR*d =opendir(git_path("logs/%s", name->buf));3065int retval =0;3066struct dirent *de;3067int oldlen = name->len;30683069if(!d)3070return name->len ? errno :0;30713072while((de =readdir(d)) != NULL) {3073struct stat st;30743075if(de->d_name[0] =='.')3076continue;3077if(ends_with(de->d_name,".lock"))3078continue;3079strbuf_addstr(name, de->d_name);3080if(stat(git_path("logs/%s", name->buf), &st) <0) {3081;/* silently ignore */3082}else{3083if(S_ISDIR(st.st_mode)) {3084strbuf_addch(name,'/');3085 retval =do_for_each_reflog(name, fn, cb_data);3086}else{3087struct object_id oid;30883089if(read_ref_full(name->buf,0, oid.hash, NULL))3090 retval =error("bad ref for%s", name->buf);3091else3092 retval =fn(name->buf, &oid,0, cb_data);3093}3094if(retval)3095break;3096}3097strbuf_setlen(name, oldlen);3098}3099closedir(d);3100return retval;3101}31023103intfor_each_reflog(each_ref_fn fn,void*cb_data)3104{3105int retval;3106struct strbuf name;3107strbuf_init(&name, PATH_MAX);3108 retval =do_for_each_reflog(&name, fn, cb_data);3109strbuf_release(&name);3110return retval;3111}31123113static intref_update_reject_duplicates(struct string_list *refnames,3114struct strbuf *err)3115{3116int i, n = refnames->nr;31173118assert(err);31193120for(i =1; i < n; i++)3121if(!strcmp(refnames->items[i -1].string, refnames->items[i].string)) {3122strbuf_addf(err,3123"Multiple updates for ref '%s' not allowed.",3124 refnames->items[i].string);3125return1;3126}3127return0;3128}31293130intref_transaction_commit(struct ref_transaction *transaction,3131struct strbuf *err)3132{3133int ret =0, i;3134int n = transaction->nr;3135struct ref_update **updates = transaction->updates;3136struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3137struct string_list_item *ref_to_delete;3138struct string_list affected_refnames = STRING_LIST_INIT_NODUP;31393140assert(err);31413142if(transaction->state != REF_TRANSACTION_OPEN)3143die("BUG: commit called for transaction that is not open");31443145if(!n) {3146 transaction->state = REF_TRANSACTION_CLOSED;3147return0;3148}31493150/* Fail if a refname appears more than once in the transaction: */3151for(i =0; i < n; i++)3152string_list_append(&affected_refnames, updates[i]->refname);3153string_list_sort(&affected_refnames);3154if(ref_update_reject_duplicates(&affected_refnames, err)) {3155 ret = TRANSACTION_GENERIC_ERROR;3156goto cleanup;3157}31583159/*3160 * Acquire all locks, verify old values if provided, check3161 * that new values are valid, and write new values to the3162 * lockfiles, ready to be activated. Only keep one lockfile3163 * open at a time to avoid running out of file descriptors.3164 */3165for(i =0; i < n; i++) {3166struct ref_update *update = updates[i];31673168if((update->flags & REF_HAVE_NEW) &&3169is_null_sha1(update->new_sha1))3170 update->flags |= REF_DELETING;3171 update->lock =lock_ref_sha1_basic(3172 update->refname,3173((update->flags & REF_HAVE_OLD) ?3174 update->old_sha1 : NULL),3175&affected_refnames, NULL,3176 update->flags,3177&update->type,3178 err);3179if(!update->lock) {3180char*reason;31813182 ret = (errno == ENOTDIR)3183? TRANSACTION_NAME_CONFLICT3184: TRANSACTION_GENERIC_ERROR;3185 reason =strbuf_detach(err, NULL);3186strbuf_addf(err,"cannot lock ref '%s':%s",3187 update->refname, reason);3188free(reason);3189goto cleanup;3190}3191if((update->flags & REF_HAVE_NEW) &&3192!(update->flags & REF_DELETING)) {3193int overwriting_symref = ((update->type & REF_ISSYMREF) &&3194(update->flags & REF_NODEREF));31953196if(!overwriting_symref &&3197!hashcmp(update->lock->old_oid.hash, update->new_sha1)) {3198/*3199 * The reference already has the desired3200 * value, so we don't need to write it.3201 */3202}else if(write_ref_to_lockfile(update->lock,3203 update->new_sha1,3204 err)) {3205char*write_err =strbuf_detach(err, NULL);32063207/*3208 * The lock was freed upon failure of3209 * write_ref_to_lockfile():3210 */3211 update->lock = NULL;3212strbuf_addf(err,3213"cannot update the ref '%s':%s",3214 update->refname, write_err);3215free(write_err);3216 ret = TRANSACTION_GENERIC_ERROR;3217goto cleanup;3218}else{3219 update->flags |= REF_NEEDS_COMMIT;3220}3221}3222if(!(update->flags & REF_NEEDS_COMMIT)) {3223/*3224 * We didn't have to write anything to the lockfile.3225 * Close it to free up the file descriptor:3226 */3227if(close_ref(update->lock)) {3228strbuf_addf(err,"Couldn't close%s.lock",3229 update->refname);3230goto cleanup;3231}3232}3233}32343235/* Perform updates first so live commits remain referenced */3236for(i =0; i < n; i++) {3237struct ref_update *update = updates[i];32383239if(update->flags & REF_NEEDS_COMMIT) {3240if(commit_ref_update(update->lock,3241 update->new_sha1, update->msg,3242 update->flags, err)) {3243/* freed by commit_ref_update(): */3244 update->lock = NULL;3245 ret = TRANSACTION_GENERIC_ERROR;3246goto cleanup;3247}else{3248/* freed by commit_ref_update(): */3249 update->lock = NULL;3250}3251}3252}32533254/* Perform deletes now that updates are safely completed */3255for(i =0; i < n; i++) {3256struct ref_update *update = updates[i];32573258if(update->flags & REF_DELETING) {3259if(delete_ref_loose(update->lock, update->type, err)) {3260 ret = TRANSACTION_GENERIC_ERROR;3261goto cleanup;3262}32633264if(!(update->flags & REF_ISPRUNING))3265string_list_append(&refs_to_delete,3266 update->lock->ref_name);3267}3268}32693270if(repack_without_refs(&refs_to_delete, err)) {3271 ret = TRANSACTION_GENERIC_ERROR;3272goto cleanup;3273}3274for_each_string_list_item(ref_to_delete, &refs_to_delete)3275unlink_or_warn(git_path("logs/%s", ref_to_delete->string));3276clear_loose_ref_cache(&ref_cache);32773278cleanup:3279 transaction->state = REF_TRANSACTION_CLOSED;32803281for(i =0; i < n; i++)3282if(updates[i]->lock)3283unlock_ref(updates[i]->lock);3284string_list_clear(&refs_to_delete,0);3285string_list_clear(&affected_refnames,0);3286return ret;3287}32883289static intref_present(const char*refname,3290const struct object_id *oid,int flags,void*cb_data)3291{3292struct string_list *affected_refnames = cb_data;32933294returnstring_list_has_string(affected_refnames, refname);3295}32963297intinitial_ref_transaction_commit(struct ref_transaction *transaction,3298struct strbuf *err)3299{3300int ret =0, i;3301int n = transaction->nr;3302struct ref_update **updates = transaction->updates;3303struct string_list affected_refnames = STRING_LIST_INIT_NODUP;33043305assert(err);33063307if(transaction->state != REF_TRANSACTION_OPEN)3308die("BUG: commit called for transaction that is not open");33093310/* Fail if a refname appears more than once in the transaction: */3311for(i =0; i < n; i++)3312string_list_append(&affected_refnames, updates[i]->refname);3313string_list_sort(&affected_refnames);3314if(ref_update_reject_duplicates(&affected_refnames, err)) {3315 ret = TRANSACTION_GENERIC_ERROR;3316goto cleanup;3317}33183319/*3320 * It's really undefined to call this function in an active3321 * repository or when there are existing references: we are3322 * only locking and changing packed-refs, so (1) any3323 * simultaneous processes might try to change a reference at3324 * the same time we do, and (2) any existing loose versions of3325 * the references that we are setting would have precedence3326 * over our values. But some remote helpers create the remote3327 * "HEAD" and "master" branches before calling this function,3328 * so here we really only check that none of the references3329 * that we are creating already exists.3330 */3331if(for_each_rawref(ref_present, &affected_refnames))3332die("BUG: initial ref transaction called with existing refs");33333334for(i =0; i < n; i++) {3335struct ref_update *update = updates[i];33363337if((update->flags & REF_HAVE_OLD) &&3338!is_null_sha1(update->old_sha1))3339die("BUG: initial ref transaction with old_sha1 set");3340if(verify_refname_available(update->refname,3341&affected_refnames, NULL,3342 err)) {3343 ret = TRANSACTION_NAME_CONFLICT;3344goto cleanup;3345}3346}33473348if(lock_packed_refs(0)) {3349strbuf_addf(err,"unable to lock packed-refs file:%s",3350strerror(errno));3351 ret = TRANSACTION_GENERIC_ERROR;3352goto cleanup;3353}33543355for(i =0; i < n; i++) {3356struct ref_update *update = updates[i];33573358if((update->flags & REF_HAVE_NEW) &&3359!is_null_sha1(update->new_sha1))3360add_packed_ref(update->refname, update->new_sha1);3361}33623363if(commit_packed_refs()) {3364strbuf_addf(err,"unable to commit packed-refs file:%s",3365strerror(errno));3366 ret = TRANSACTION_GENERIC_ERROR;3367goto cleanup;3368}33693370cleanup:3371 transaction->state = REF_TRANSACTION_CLOSED;3372string_list_clear(&affected_refnames,0);3373return ret;3374}33753376struct expire_reflog_cb {3377unsigned int flags;3378 reflog_expiry_should_prune_fn *should_prune_fn;3379void*policy_cb;3380FILE*newlog;3381unsigned char last_kept_sha1[20];3382};33833384static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,3385const char*email,unsigned long timestamp,int tz,3386const char*message,void*cb_data)3387{3388struct expire_reflog_cb *cb = cb_data;3389struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;33903391if(cb->flags & EXPIRE_REFLOGS_REWRITE)3392 osha1 = cb->last_kept_sha1;33933394if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,3395 message, policy_cb)) {3396if(!cb->newlog)3397printf("would prune%s", message);3398else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3399printf("prune%s", message);3400}else{3401if(cb->newlog) {3402fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",3403sha1_to_hex(osha1),sha1_to_hex(nsha1),3404 email, timestamp, tz, message);3405hashcpy(cb->last_kept_sha1, nsha1);3406}3407if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3408printf("keep%s", message);3409}3410return0;3411}34123413intreflog_expire(const char*refname,const unsigned char*sha1,3414unsigned int flags,3415 reflog_expiry_prepare_fn prepare_fn,3416 reflog_expiry_should_prune_fn should_prune_fn,3417 reflog_expiry_cleanup_fn cleanup_fn,3418void*policy_cb_data)3419{3420static struct lock_file reflog_lock;3421struct expire_reflog_cb cb;3422struct ref_lock *lock;3423char*log_file;3424int status =0;3425int type;3426struct strbuf err = STRBUF_INIT;34273428memset(&cb,0,sizeof(cb));3429 cb.flags = flags;3430 cb.policy_cb = policy_cb_data;3431 cb.should_prune_fn = should_prune_fn;34323433/*3434 * The reflog file is locked by holding the lock on the3435 * reference itself, plus we might need to update the3436 * reference if --updateref was specified:3437 */3438 lock =lock_ref_sha1_basic(refname, sha1, NULL, NULL,0, &type, &err);3439if(!lock) {3440error("cannot lock ref '%s':%s", refname, err.buf);3441strbuf_release(&err);3442return-1;3443}3444if(!reflog_exists(refname)) {3445unlock_ref(lock);3446return0;3447}34483449 log_file =git_pathdup("logs/%s", refname);3450if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3451/*3452 * Even though holding $GIT_DIR/logs/$reflog.lock has3453 * no locking implications, we use the lock_file3454 * machinery here anyway because it does a lot of the3455 * work we need, including cleaning up if the program3456 * exits unexpectedly.3457 */3458if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {3459struct strbuf err = STRBUF_INIT;3460unable_to_lock_message(log_file, errno, &err);3461error("%s", err.buf);3462strbuf_release(&err);3463goto failure;3464}3465 cb.newlog =fdopen_lock_file(&reflog_lock,"w");3466if(!cb.newlog) {3467error("cannot fdopen%s(%s)",3468get_lock_file_path(&reflog_lock),strerror(errno));3469goto failure;3470}3471}34723473(*prepare_fn)(refname, sha1, cb.policy_cb);3474for_each_reflog_ent(refname, expire_reflog_ent, &cb);3475(*cleanup_fn)(cb.policy_cb);34763477if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {3478/*3479 * It doesn't make sense to adjust a reference pointed3480 * to by a symbolic ref based on expiring entries in3481 * the symbolic reference's reflog. Nor can we update3482 * a reference if there are no remaining reflog3483 * entries.3484 */3485int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&3486!(type & REF_ISSYMREF) &&3487!is_null_sha1(cb.last_kept_sha1);34883489if(close_lock_file(&reflog_lock)) {3490 status |=error("couldn't write%s:%s", log_file,3491strerror(errno));3492}else if(update &&3493(write_in_full(get_lock_file_fd(lock->lk),3494sha1_to_hex(cb.last_kept_sha1),40) !=40||3495write_str_in_full(get_lock_file_fd(lock->lk),"\n") !=1||3496close_ref(lock) <0)) {3497 status |=error("couldn't write%s",3498get_lock_file_path(lock->lk));3499rollback_lock_file(&reflog_lock);3500}else if(commit_lock_file(&reflog_lock)) {3501 status |=error("unable to write reflog '%s' (%s)",3502 log_file,strerror(errno));3503}else if(update &&commit_ref(lock)) {3504 status |=error("couldn't set%s", lock->ref_name);3505}3506}3507free(log_file);3508unlock_ref(lock);3509return status;35103511 failure:3512rollback_lock_file(&reflog_lock);3513free(log_file);3514unlock_ref(lock);3515return-1;3516}