1#include"cache.h" 2#include"refs.h" 3#include"object.h" 4#include"tag.h" 5#include"dir.h" 6#include"string-list.h" 7 8/* 9 * Make sure "ref" is something reasonable to have under ".git/refs/"; 10 * We do not like it if: 11 * 12 * - any path component of it begins with ".", or 13 * - it has double dots "..", or 14 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or 15 * - it ends with a "/". 16 * - it ends with ".lock" 17 * - it contains a "\" (backslash) 18 */ 19 20/* Return true iff ch is not allowed in reference names. */ 21staticinlineintbad_ref_char(int ch) 22{ 23if(((unsigned) ch) <=' '|| ch ==0x7f|| 24 ch =='~'|| ch =='^'|| ch ==':'|| ch =='\\') 25return1; 26/* 2.13 Pattern Matching Notation */ 27if(ch =='*'|| ch =='?'|| ch =='[')/* Unsupported */ 28return1; 29return0; 30} 31 32/* 33 * Try to read one refname component from the front of refname. Return 34 * the length of the component found, or -1 if the component is not 35 * legal. 36 */ 37static intcheck_refname_component(const char*refname,int flags) 38{ 39const char*cp; 40char last ='\0'; 41 42for(cp = refname; ; cp++) { 43char ch = *cp; 44if(ch =='\0'|| ch =='/') 45break; 46if(bad_ref_char(ch)) 47return-1;/* Illegal character in refname. */ 48if(last =='.'&& ch =='.') 49return-1;/* Refname contains "..". */ 50if(last =='@'&& ch =='{') 51return-1;/* Refname contains "@{". */ 52 last = ch; 53} 54if(cp == refname) 55return0;/* Component has zero length. */ 56if(refname[0] =='.') { 57if(!(flags & REFNAME_DOT_COMPONENT)) 58return-1;/* Component starts with '.'. */ 59/* 60 * Even if leading dots are allowed, don't allow "." 61 * as a component (".." is prevented by a rule above). 62 */ 63if(refname[1] =='\0') 64return-1;/* Component equals ".". */ 65} 66if(cp - refname >=5&& !memcmp(cp -5,".lock",5)) 67return-1;/* Refname ends with ".lock". */ 68return cp - refname; 69} 70 71intcheck_refname_format(const char*refname,int flags) 72{ 73int component_len, component_count =0; 74 75while(1) { 76/* We are at the start of a path component. */ 77 component_len =check_refname_component(refname, flags); 78if(component_len <=0) { 79if((flags & REFNAME_REFSPEC_PATTERN) && 80 refname[0] =='*'&& 81(refname[1] =='\0'|| refname[1] =='/')) { 82/* Accept one wildcard as a full refname component. */ 83 flags &= ~REFNAME_REFSPEC_PATTERN; 84 component_len =1; 85}else{ 86return-1; 87} 88} 89 component_count++; 90if(refname[component_len] =='\0') 91break; 92/* Skip to next component. */ 93 refname += component_len +1; 94} 95 96if(refname[component_len -1] =='.') 97return-1;/* Refname ends with '.'. */ 98if(!(flags & REFNAME_ALLOW_ONELEVEL) && component_count <2) 99return-1;/* Refname has only one component. */ 100return0; 101} 102 103struct ref_entry; 104 105/* 106 * Information used (along with the information in ref_entry) to 107 * describe a single cached reference. This data structure only 108 * occurs embedded in a union in struct ref_entry, and only when 109 * (ref_entry->flag & REF_DIR) is zero. 110 */ 111struct ref_value { 112/* 113 * The name of the object to which this reference resolves 114 * (which may be a tag object). If REF_ISBROKEN, this is 115 * null. If REF_ISSYMREF, then this is the name of the object 116 * referred to by the last reference in the symlink chain. 117 */ 118unsigned char sha1[20]; 119 120/* 121 * If REF_KNOWS_PEELED, then this field holds the peeled value 122 * of this reference, or null if the reference is known not to 123 * be peelable. See the documentation for peel_ref() for an 124 * exact definition of "peelable". 125 */ 126unsigned char peeled[20]; 127}; 128 129struct ref_cache; 130 131/* 132 * Information used (along with the information in ref_entry) to 133 * describe a level in the hierarchy of references. This data 134 * structure only occurs embedded in a union in struct ref_entry, and 135 * only when (ref_entry.flag & REF_DIR) is set. In that case, 136 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 137 * in the directory have already been read: 138 * 139 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 140 * or packed references, already read. 141 * 142 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 143 * references that hasn't been read yet (nor has any of its 144 * subdirectories). 145 * 146 * Entries within a directory are stored within a growable array of 147 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 148 * sorted are sorted by their component name in strcmp() order and the 149 * remaining entries are unsorted. 150 * 151 * Loose references are read lazily, one directory at a time. When a 152 * directory of loose references is read, then all of the references 153 * in that directory are stored, and REF_INCOMPLETE stubs are created 154 * for any subdirectories, but the subdirectories themselves are not 155 * read. The reading is triggered by get_ref_dir(). 156 */ 157struct ref_dir { 158int nr, alloc; 159 160/* 161 * Entries with index 0 <= i < sorted are sorted by name. New 162 * entries are appended to the list unsorted, and are sorted 163 * only when required; thus we avoid the need to sort the list 164 * after the addition of every reference. 165 */ 166int sorted; 167 168/* A pointer to the ref_cache that contains this ref_dir. */ 169struct ref_cache *ref_cache; 170 171struct ref_entry **entries; 172}; 173 174/* 175 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 176 * REF_ISPACKED=0x02, and REF_ISBROKEN=0x04 are public values; see 177 * refs.h. 178 */ 179 180/* 181 * The field ref_entry->u.value.peeled of this value entry contains 182 * the correct peeled value for the reference, which might be 183 * null_sha1 if the reference is not a tag or if it is broken. 184 */ 185#define REF_KNOWS_PEELED 0x08 186 187/* ref_entry represents a directory of references */ 188#define REF_DIR 0x10 189 190/* 191 * Entry has not yet been read from disk (used only for REF_DIR 192 * entries representing loose references) 193 */ 194#define REF_INCOMPLETE 0x20 195 196/* 197 * A ref_entry represents either a reference or a "subdirectory" of 198 * references. 199 * 200 * Each directory in the reference namespace is represented by a 201 * ref_entry with (flags & REF_DIR) set and containing a subdir member 202 * that holds the entries in that directory that have been read so 203 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 204 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 205 * used for loose reference directories. 206 * 207 * References are represented by a ref_entry with (flags & REF_DIR) 208 * unset and a value member that describes the reference's value. The 209 * flag member is at the ref_entry level, but it is also needed to 210 * interpret the contents of the value field (in other words, a 211 * ref_value object is not very much use without the enclosing 212 * ref_entry). 213 * 214 * Reference names cannot end with slash and directories' names are 215 * always stored with a trailing slash (except for the top-level 216 * directory, which is always denoted by ""). This has two nice 217 * consequences: (1) when the entries in each subdir are sorted 218 * lexicographically by name (as they usually are), the references in 219 * a whole tree can be generated in lexicographic order by traversing 220 * the tree in left-to-right, depth-first order; (2) the names of 221 * references and subdirectories cannot conflict, and therefore the 222 * presence of an empty subdirectory does not block the creation of a 223 * similarly-named reference. (The fact that reference names with the 224 * same leading components can conflict *with each other* is a 225 * separate issue that is regulated by is_refname_available().) 226 * 227 * Please note that the name field contains the fully-qualified 228 * reference (or subdirectory) name. Space could be saved by only 229 * storing the relative names. But that would require the full names 230 * to be generated on the fly when iterating in do_for_each_ref(), and 231 * would break callback functions, who have always been able to assume 232 * that the name strings that they are passed will not be freed during 233 * the iteration. 234 */ 235struct ref_entry { 236unsigned char flag;/* ISSYMREF? ISPACKED? */ 237union{ 238struct ref_value value;/* if not (flags&REF_DIR) */ 239struct ref_dir subdir;/* if (flags&REF_DIR) */ 240} u; 241/* 242 * The full name of the reference (e.g., "refs/heads/master") 243 * or the full name of the directory with a trailing slash 244 * (e.g., "refs/heads/"): 245 */ 246char name[FLEX_ARRAY]; 247}; 248 249static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 250 251static struct ref_dir *get_ref_dir(struct ref_entry *entry) 252{ 253struct ref_dir *dir; 254assert(entry->flag & REF_DIR); 255 dir = &entry->u.subdir; 256if(entry->flag & REF_INCOMPLETE) { 257read_loose_refs(entry->name, dir); 258 entry->flag &= ~REF_INCOMPLETE; 259} 260return dir; 261} 262 263static struct ref_entry *create_ref_entry(const char*refname, 264const unsigned char*sha1,int flag, 265int check_name) 266{ 267int len; 268struct ref_entry *ref; 269 270if(check_name && 271check_refname_format(refname, REFNAME_ALLOW_ONELEVEL|REFNAME_DOT_COMPONENT)) 272die("Reference has invalid format: '%s'", refname); 273 len =strlen(refname) +1; 274 ref =xmalloc(sizeof(struct ref_entry) + len); 275hashcpy(ref->u.value.sha1, sha1); 276hashclr(ref->u.value.peeled); 277memcpy(ref->name, refname, len); 278 ref->flag = flag; 279return ref; 280} 281 282static voidclear_ref_dir(struct ref_dir *dir); 283 284static voidfree_ref_entry(struct ref_entry *entry) 285{ 286if(entry->flag & REF_DIR) { 287/* 288 * Do not use get_ref_dir() here, as that might 289 * trigger the reading of loose refs. 290 */ 291clear_ref_dir(&entry->u.subdir); 292} 293free(entry); 294} 295 296/* 297 * Add a ref_entry to the end of dir (unsorted). Entry is always 298 * stored directly in dir; no recursion into subdirectories is 299 * done. 300 */ 301static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 302{ 303ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 304 dir->entries[dir->nr++] = entry; 305/* optimize for the case that entries are added in order */ 306if(dir->nr ==1|| 307(dir->nr == dir->sorted +1&& 308strcmp(dir->entries[dir->nr -2]->name, 309 dir->entries[dir->nr -1]->name) <0)) 310 dir->sorted = dir->nr; 311} 312 313/* 314 * Clear and free all entries in dir, recursively. 315 */ 316static voidclear_ref_dir(struct ref_dir *dir) 317{ 318int i; 319for(i =0; i < dir->nr; i++) 320free_ref_entry(dir->entries[i]); 321free(dir->entries); 322 dir->sorted = dir->nr = dir->alloc =0; 323 dir->entries = NULL; 324} 325 326/* 327 * Create a struct ref_entry object for the specified dirname. 328 * dirname is the name of the directory with a trailing slash (e.g., 329 * "refs/heads/") or "" for the top-level directory. 330 */ 331static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 332const char*dirname,size_t len, 333int incomplete) 334{ 335struct ref_entry *direntry; 336 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 337memcpy(direntry->name, dirname, len); 338 direntry->name[len] ='\0'; 339 direntry->u.subdir.ref_cache = ref_cache; 340 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 341return direntry; 342} 343 344static intref_entry_cmp(const void*a,const void*b) 345{ 346struct ref_entry *one = *(struct ref_entry **)a; 347struct ref_entry *two = *(struct ref_entry **)b; 348returnstrcmp(one->name, two->name); 349} 350 351static voidsort_ref_dir(struct ref_dir *dir); 352 353struct string_slice { 354size_t len; 355const char*str; 356}; 357 358static intref_entry_cmp_sslice(const void*key_,const void*ent_) 359{ 360const struct string_slice *key = key_; 361const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 362int cmp =strncmp(key->str, ent->name, key->len); 363if(cmp) 364return cmp; 365return'\0'- (unsigned char)ent->name[key->len]; 366} 367 368/* 369 * Return the index of the entry with the given refname from the 370 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 371 * no such entry is found. dir must already be complete. 372 */ 373static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 374{ 375struct ref_entry **r; 376struct string_slice key; 377 378if(refname == NULL || !dir->nr) 379return-1; 380 381sort_ref_dir(dir); 382 key.len = len; 383 key.str = refname; 384 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 385 ref_entry_cmp_sslice); 386 387if(r == NULL) 388return-1; 389 390return r - dir->entries; 391} 392 393/* 394 * Search for a directory entry directly within dir (without 395 * recursing). Sort dir if necessary. subdirname must be a directory 396 * name (i.e., end in '/'). If mkdir is set, then create the 397 * directory if it is missing; otherwise, return NULL if the desired 398 * directory cannot be found. dir must already be complete. 399 */ 400static struct ref_dir *search_for_subdir(struct ref_dir *dir, 401const char*subdirname,size_t len, 402int mkdir) 403{ 404int entry_index =search_ref_dir(dir, subdirname, len); 405struct ref_entry *entry; 406if(entry_index == -1) { 407if(!mkdir) 408return NULL; 409/* 410 * Since dir is complete, the absence of a subdir 411 * means that the subdir really doesn't exist; 412 * therefore, create an empty record for it but mark 413 * the record complete. 414 */ 415 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 416add_entry_to_dir(dir, entry); 417}else{ 418 entry = dir->entries[entry_index]; 419} 420returnget_ref_dir(entry); 421} 422 423/* 424 * If refname is a reference name, find the ref_dir within the dir 425 * tree that should hold refname. If refname is a directory name 426 * (i.e., ends in '/'), then return that ref_dir itself. dir must 427 * represent the top-level directory and must already be complete. 428 * Sort ref_dirs and recurse into subdirectories as necessary. If 429 * mkdir is set, then create any missing directories; otherwise, 430 * return NULL if the desired directory cannot be found. 431 */ 432static struct ref_dir *find_containing_dir(struct ref_dir *dir, 433const char*refname,int mkdir) 434{ 435const char*slash; 436for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 437size_t dirnamelen = slash - refname +1; 438struct ref_dir *subdir; 439 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 440if(!subdir) { 441 dir = NULL; 442break; 443} 444 dir = subdir; 445} 446 447return dir; 448} 449 450/* 451 * Find the value entry with the given name in dir, sorting ref_dirs 452 * and recursing into subdirectories as necessary. If the name is not 453 * found or it corresponds to a directory entry, return NULL. 454 */ 455static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 456{ 457int entry_index; 458struct ref_entry *entry; 459 dir =find_containing_dir(dir, refname,0); 460if(!dir) 461return NULL; 462 entry_index =search_ref_dir(dir, refname,strlen(refname)); 463if(entry_index == -1) 464return NULL; 465 entry = dir->entries[entry_index]; 466return(entry->flag & REF_DIR) ? NULL : entry; 467} 468 469/* 470 * Remove the entry with the given name from dir, recursing into 471 * subdirectories as necessary. If refname is the name of a directory 472 * (i.e., ends with '/'), then remove the directory and its contents. 473 * If the removal was successful, return the number of entries 474 * remaining in the directory entry that contained the deleted entry. 475 * If the name was not found, return -1. Please note that this 476 * function only deletes the entry from the cache; it does not delete 477 * it from the filesystem or ensure that other cache entries (which 478 * might be symbolic references to the removed entry) are updated. 479 * Nor does it remove any containing dir entries that might be made 480 * empty by the removal. dir must represent the top-level directory 481 * and must already be complete. 482 */ 483static intremove_entry(struct ref_dir *dir,const char*refname) 484{ 485int refname_len =strlen(refname); 486int entry_index; 487struct ref_entry *entry; 488int is_dir = refname[refname_len -1] =='/'; 489if(is_dir) { 490/* 491 * refname represents a reference directory. Remove 492 * the trailing slash; otherwise we will get the 493 * directory *representing* refname rather than the 494 * one *containing* it. 495 */ 496char*dirname =xmemdupz(refname, refname_len -1); 497 dir =find_containing_dir(dir, dirname,0); 498free(dirname); 499}else{ 500 dir =find_containing_dir(dir, refname,0); 501} 502if(!dir) 503return-1; 504 entry_index =search_ref_dir(dir, refname, refname_len); 505if(entry_index == -1) 506return-1; 507 entry = dir->entries[entry_index]; 508 509memmove(&dir->entries[entry_index], 510&dir->entries[entry_index +1], 511(dir->nr - entry_index -1) *sizeof(*dir->entries) 512); 513 dir->nr--; 514if(dir->sorted > entry_index) 515 dir->sorted--; 516free_ref_entry(entry); 517return dir->nr; 518} 519 520/* 521 * Add a ref_entry to the ref_dir (unsorted), recursing into 522 * subdirectories as necessary. dir must represent the top-level 523 * directory. Return 0 on success. 524 */ 525static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 526{ 527 dir =find_containing_dir(dir, ref->name,1); 528if(!dir) 529return-1; 530add_entry_to_dir(dir, ref); 531return0; 532} 533 534/* 535 * Emit a warning and return true iff ref1 and ref2 have the same name 536 * and the same sha1. Die if they have the same name but different 537 * sha1s. 538 */ 539static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 540{ 541if(strcmp(ref1->name, ref2->name)) 542return0; 543 544/* Duplicate name; make sure that they don't conflict: */ 545 546if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 547/* This is impossible by construction */ 548die("Reference directory conflict:%s", ref1->name); 549 550if(hashcmp(ref1->u.value.sha1, ref2->u.value.sha1)) 551die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 552 553warning("Duplicated ref:%s", ref1->name); 554return1; 555} 556 557/* 558 * Sort the entries in dir non-recursively (if they are not already 559 * sorted) and remove any duplicate entries. 560 */ 561static voidsort_ref_dir(struct ref_dir *dir) 562{ 563int i, j; 564struct ref_entry *last = NULL; 565 566/* 567 * This check also prevents passing a zero-length array to qsort(), 568 * which is a problem on some platforms. 569 */ 570if(dir->sorted == dir->nr) 571return; 572 573qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 574 575/* Remove any duplicates: */ 576for(i =0, j =0; j < dir->nr; j++) { 577struct ref_entry *entry = dir->entries[j]; 578if(last &&is_dup_ref(last, entry)) 579free_ref_entry(entry); 580else 581 last = dir->entries[i++] = entry; 582} 583 dir->sorted = dir->nr = i; 584} 585 586/* Include broken references in a do_for_each_ref*() iteration: */ 587#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 588 589/* 590 * Return true iff the reference described by entry can be resolved to 591 * an object in the database. Emit a warning if the referred-to 592 * object does not exist. 593 */ 594static intref_resolves_to_object(struct ref_entry *entry) 595{ 596if(entry->flag & REF_ISBROKEN) 597return0; 598if(!has_sha1_file(entry->u.value.sha1)) { 599error("%sdoes not point to a valid object!", entry->name); 600return0; 601} 602return1; 603} 604 605/* 606 * current_ref is a performance hack: when iterating over references 607 * using the for_each_ref*() functions, current_ref is set to the 608 * current reference's entry before calling the callback function. If 609 * the callback function calls peel_ref(), then peel_ref() first 610 * checks whether the reference to be peeled is the current reference 611 * (it usually is) and if so, returns that reference's peeled version 612 * if it is available. This avoids a refname lookup in a common case. 613 */ 614static struct ref_entry *current_ref; 615 616typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 617 618struct ref_entry_cb { 619const char*base; 620int trim; 621int flags; 622 each_ref_fn *fn; 623void*cb_data; 624}; 625 626/* 627 * Handle one reference in a do_for_each_ref*()-style iteration, 628 * calling an each_ref_fn for each entry. 629 */ 630static intdo_one_ref(struct ref_entry *entry,void*cb_data) 631{ 632struct ref_entry_cb *data = cb_data; 633int retval; 634if(prefixcmp(entry->name, data->base)) 635return0; 636 637if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 638!ref_resolves_to_object(entry)) 639return0; 640 641 current_ref = entry; 642 retval = data->fn(entry->name + data->trim, entry->u.value.sha1, 643 entry->flag, data->cb_data); 644 current_ref = NULL; 645return retval; 646} 647 648/* 649 * Call fn for each reference in dir that has index in the range 650 * offset <= index < dir->nr. Recurse into subdirectories that are in 651 * that index range, sorting them before iterating. This function 652 * does not sort dir itself; it should be sorted beforehand. fn is 653 * called for all references, including broken ones. 654 */ 655static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 656 each_ref_entry_fn fn,void*cb_data) 657{ 658int i; 659assert(dir->sorted == dir->nr); 660for(i = offset; i < dir->nr; i++) { 661struct ref_entry *entry = dir->entries[i]; 662int retval; 663if(entry->flag & REF_DIR) { 664struct ref_dir *subdir =get_ref_dir(entry); 665sort_ref_dir(subdir); 666 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 667}else{ 668 retval =fn(entry, cb_data); 669} 670if(retval) 671return retval; 672} 673return0; 674} 675 676/* 677 * Call fn for each reference in the union of dir1 and dir2, in order 678 * by refname. Recurse into subdirectories. If a value entry appears 679 * in both dir1 and dir2, then only process the version that is in 680 * dir2. The input dirs must already be sorted, but subdirs will be 681 * sorted as needed. fn is called for all references, including 682 * broken ones. 683 */ 684static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 685struct ref_dir *dir2, 686 each_ref_entry_fn fn,void*cb_data) 687{ 688int retval; 689int i1 =0, i2 =0; 690 691assert(dir1->sorted == dir1->nr); 692assert(dir2->sorted == dir2->nr); 693while(1) { 694struct ref_entry *e1, *e2; 695int cmp; 696if(i1 == dir1->nr) { 697returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 698} 699if(i2 == dir2->nr) { 700returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 701} 702 e1 = dir1->entries[i1]; 703 e2 = dir2->entries[i2]; 704 cmp =strcmp(e1->name, e2->name); 705if(cmp ==0) { 706if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 707/* Both are directories; descend them in parallel. */ 708struct ref_dir *subdir1 =get_ref_dir(e1); 709struct ref_dir *subdir2 =get_ref_dir(e2); 710sort_ref_dir(subdir1); 711sort_ref_dir(subdir2); 712 retval =do_for_each_entry_in_dirs( 713 subdir1, subdir2, fn, cb_data); 714 i1++; 715 i2++; 716}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 717/* Both are references; ignore the one from dir1. */ 718 retval =fn(e2, cb_data); 719 i1++; 720 i2++; 721}else{ 722die("conflict between reference and directory:%s", 723 e1->name); 724} 725}else{ 726struct ref_entry *e; 727if(cmp <0) { 728 e = e1; 729 i1++; 730}else{ 731 e = e2; 732 i2++; 733} 734if(e->flag & REF_DIR) { 735struct ref_dir *subdir =get_ref_dir(e); 736sort_ref_dir(subdir); 737 retval =do_for_each_entry_in_dir( 738 subdir,0, fn, cb_data); 739}else{ 740 retval =fn(e, cb_data); 741} 742} 743if(retval) 744return retval; 745} 746} 747 748/* 749 * Return true iff refname1 and refname2 conflict with each other. 750 * Two reference names conflict if one of them exactly matches the 751 * leading components of the other; e.g., "foo/bar" conflicts with 752 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or 753 * "foo/barbados". 754 */ 755static intnames_conflict(const char*refname1,const char*refname2) 756{ 757for(; *refname1 && *refname1 == *refname2; refname1++, refname2++) 758; 759return(*refname1 =='\0'&& *refname2 =='/') 760|| (*refname1 =='/'&& *refname2 =='\0'); 761} 762 763struct name_conflict_cb { 764const char*refname; 765const char*oldrefname; 766const char*conflicting_refname; 767}; 768 769static intname_conflict_fn(struct ref_entry *entry,void*cb_data) 770{ 771struct name_conflict_cb *data = (struct name_conflict_cb *)cb_data; 772if(data->oldrefname && !strcmp(data->oldrefname, entry->name)) 773return0; 774if(names_conflict(data->refname, entry->name)) { 775 data->conflicting_refname = entry->name; 776return1; 777} 778return0; 779} 780 781/* 782 * Return true iff a reference named refname could be created without 783 * conflicting with the name of an existing reference in dir. If 784 * oldrefname is non-NULL, ignore potential conflicts with oldrefname 785 * (e.g., because oldrefname is scheduled for deletion in the same 786 * operation). 787 */ 788static intis_refname_available(const char*refname,const char*oldrefname, 789struct ref_dir *dir) 790{ 791struct name_conflict_cb data; 792 data.refname = refname; 793 data.oldrefname = oldrefname; 794 data.conflicting_refname = NULL; 795 796sort_ref_dir(dir); 797if(do_for_each_entry_in_dir(dir,0, name_conflict_fn, &data)) { 798error("'%s' exists; cannot create '%s'", 799 data.conflicting_refname, refname); 800return0; 801} 802return1; 803} 804 805/* 806 * Future: need to be in "struct repository" 807 * when doing a full libification. 808 */ 809static struct ref_cache { 810struct ref_cache *next; 811struct ref_entry *loose; 812struct ref_entry *packed; 813/* 814 * The submodule name, or "" for the main repo. We allocate 815 * length 1 rather than FLEX_ARRAY so that the main ref_cache 816 * is initialized correctly. 817 */ 818char name[1]; 819} ref_cache, *submodule_ref_caches; 820 821static voidclear_packed_ref_cache(struct ref_cache *refs) 822{ 823if(refs->packed) { 824free_ref_entry(refs->packed); 825 refs->packed = NULL; 826} 827} 828 829static voidclear_loose_ref_cache(struct ref_cache *refs) 830{ 831if(refs->loose) { 832free_ref_entry(refs->loose); 833 refs->loose = NULL; 834} 835} 836 837static struct ref_cache *create_ref_cache(const char*submodule) 838{ 839int len; 840struct ref_cache *refs; 841if(!submodule) 842 submodule =""; 843 len =strlen(submodule) +1; 844 refs =xcalloc(1,sizeof(struct ref_cache) + len); 845memcpy(refs->name, submodule, len); 846return refs; 847} 848 849/* 850 * Return a pointer to a ref_cache for the specified submodule. For 851 * the main repository, use submodule==NULL. The returned structure 852 * will be allocated and initialized but not necessarily populated; it 853 * should not be freed. 854 */ 855static struct ref_cache *get_ref_cache(const char*submodule) 856{ 857struct ref_cache *refs; 858 859if(!submodule || !*submodule) 860return&ref_cache; 861 862for(refs = submodule_ref_caches; refs; refs = refs->next) 863if(!strcmp(submodule, refs->name)) 864return refs; 865 866 refs =create_ref_cache(submodule); 867 refs->next = submodule_ref_caches; 868 submodule_ref_caches = refs; 869return refs; 870} 871 872voidinvalidate_ref_cache(const char*submodule) 873{ 874struct ref_cache *refs =get_ref_cache(submodule); 875clear_packed_ref_cache(refs); 876clear_loose_ref_cache(refs); 877} 878 879/* The length of a peeled reference line in packed-refs, including EOL: */ 880#define PEELED_LINE_LENGTH 42 881 882/* 883 * The packed-refs header line that we write out. Perhaps other 884 * traits will be added later. The trailing space is required. 885 */ 886static const char PACKED_REFS_HEADER[] = 887"# pack-refs with: peeled fully-peeled\n"; 888 889/* 890 * Parse one line from a packed-refs file. Write the SHA1 to sha1. 891 * Return a pointer to the refname within the line (null-terminated), 892 * or NULL if there was a problem. 893 */ 894static const char*parse_ref_line(char*line,unsigned char*sha1) 895{ 896/* 897 * 42: the answer to everything. 898 * 899 * In this case, it happens to be the answer to 900 * 40 (length of sha1 hex representation) 901 * +1 (space in between hex and name) 902 * +1 (newline at the end of the line) 903 */ 904int len =strlen(line) -42; 905 906if(len <=0) 907return NULL; 908if(get_sha1_hex(line, sha1) <0) 909return NULL; 910if(!isspace(line[40])) 911return NULL; 912 line +=41; 913if(isspace(*line)) 914return NULL; 915if(line[len] !='\n') 916return NULL; 917 line[len] =0; 918 919return line; 920} 921 922/* 923 * Read f, which is a packed-refs file, into dir. 924 * 925 * A comment line of the form "# pack-refs with: " may contain zero or 926 * more traits. We interpret the traits as follows: 927 * 928 * No traits: 929 * 930 * Probably no references are peeled. But if the file contains a 931 * peeled value for a reference, we will use it. 932 * 933 * peeled: 934 * 935 * References under "refs/tags/", if they *can* be peeled, *are* 936 * peeled in this file. References outside of "refs/tags/" are 937 * probably not peeled even if they could have been, but if we find 938 * a peeled value for such a reference we will use it. 939 * 940 * fully-peeled: 941 * 942 * All references in the file that can be peeled are peeled. 943 * Inversely (and this is more important), any references in the 944 * file for which no peeled value is recorded is not peelable. This 945 * trait should typically be written alongside "peeled" for 946 * compatibility with older clients, but we do not require it 947 * (i.e., "peeled" is a no-op if "fully-peeled" is set). 948 */ 949static voidread_packed_refs(FILE*f,struct ref_dir *dir) 950{ 951struct ref_entry *last = NULL; 952char refline[PATH_MAX]; 953enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE; 954 955while(fgets(refline,sizeof(refline), f)) { 956unsigned char sha1[20]; 957const char*refname; 958static const char header[] ="# pack-refs with:"; 959 960if(!strncmp(refline, header,sizeof(header)-1)) { 961const char*traits = refline +sizeof(header) -1; 962if(strstr(traits," fully-peeled ")) 963 peeled = PEELED_FULLY; 964else if(strstr(traits," peeled ")) 965 peeled = PEELED_TAGS; 966/* perhaps other traits later as well */ 967continue; 968} 969 970 refname =parse_ref_line(refline, sha1); 971if(refname) { 972 last =create_ref_entry(refname, sha1, REF_ISPACKED,1); 973if(peeled == PEELED_FULLY || 974(peeled == PEELED_TAGS && !prefixcmp(refname,"refs/tags/"))) 975 last->flag |= REF_KNOWS_PEELED; 976add_ref(dir, last); 977continue; 978} 979if(last && 980 refline[0] =='^'&& 981strlen(refline) == PEELED_LINE_LENGTH && 982 refline[PEELED_LINE_LENGTH -1] =='\n'&& 983!get_sha1_hex(refline +1, sha1)) { 984hashcpy(last->u.value.peeled, sha1); 985/* 986 * Regardless of what the file header said, 987 * we definitely know the value of *this* 988 * reference: 989 */ 990 last->flag |= REF_KNOWS_PEELED; 991} 992} 993} 994 995static struct ref_dir *get_packed_refs(struct ref_cache *refs) 996{ 997if(!refs->packed) { 998const char*packed_refs_file; 999FILE*f;10001001 refs->packed =create_dir_entry(refs,"",0,0);1002if(*refs->name)1003 packed_refs_file =git_path_submodule(refs->name,"packed-refs");1004else1005 packed_refs_file =git_path("packed-refs");1006 f =fopen(packed_refs_file,"r");1007if(f) {1008read_packed_refs(f,get_ref_dir(refs->packed));1009fclose(f);1010}1011}1012returnget_ref_dir(refs->packed);1013}10141015voidadd_packed_ref(const char*refname,const unsigned char*sha1)1016{1017add_ref(get_packed_refs(&ref_cache),1018create_ref_entry(refname, sha1, REF_ISPACKED,1));1019}10201021/*1022 * Read the loose references from the namespace dirname into dir1023 * (without recursing). dirname must end with '/'. dir must be the1024 * directory entry corresponding to dirname.1025 */1026static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1027{1028struct ref_cache *refs = dir->ref_cache;1029DIR*d;1030const char*path;1031struct dirent *de;1032int dirnamelen =strlen(dirname);1033struct strbuf refname;10341035if(*refs->name)1036 path =git_path_submodule(refs->name,"%s", dirname);1037else1038 path =git_path("%s", dirname);10391040 d =opendir(path);1041if(!d)1042return;10431044strbuf_init(&refname, dirnamelen +257);1045strbuf_add(&refname, dirname, dirnamelen);10461047while((de =readdir(d)) != NULL) {1048unsigned char sha1[20];1049struct stat st;1050int flag;1051const char*refdir;10521053if(de->d_name[0] =='.')1054continue;1055if(has_extension(de->d_name,".lock"))1056continue;1057strbuf_addstr(&refname, de->d_name);1058 refdir = *refs->name1059?git_path_submodule(refs->name,"%s", refname.buf)1060:git_path("%s", refname.buf);1061if(stat(refdir, &st) <0) {1062;/* silently ignore */1063}else if(S_ISDIR(st.st_mode)) {1064strbuf_addch(&refname,'/');1065add_entry_to_dir(dir,1066create_dir_entry(refs, refname.buf,1067 refname.len,1));1068}else{1069if(*refs->name) {1070hashclr(sha1);1071 flag =0;1072if(resolve_gitlink_ref(refs->name, refname.buf, sha1) <0) {1073hashclr(sha1);1074 flag |= REF_ISBROKEN;1075}1076}else if(read_ref_full(refname.buf, sha1,1, &flag)) {1077hashclr(sha1);1078 flag |= REF_ISBROKEN;1079}1080add_entry_to_dir(dir,1081create_ref_entry(refname.buf, sha1, flag,1));1082}1083strbuf_setlen(&refname, dirnamelen);1084}1085strbuf_release(&refname);1086closedir(d);1087}10881089static struct ref_dir *get_loose_refs(struct ref_cache *refs)1090{1091if(!refs->loose) {1092/*1093 * Mark the top-level directory complete because we1094 * are about to read the only subdirectory that can1095 * hold references:1096 */1097 refs->loose =create_dir_entry(refs,"",0,0);1098/*1099 * Create an incomplete entry for "refs/":1100 */1101add_entry_to_dir(get_ref_dir(refs->loose),1102create_dir_entry(refs,"refs/",5,1));1103}1104returnget_ref_dir(refs->loose);1105}11061107/* We allow "recursive" symbolic refs. Only within reason, though */1108#define MAXDEPTH 51109#define MAXREFLEN (1024)11101111/*1112 * Called by resolve_gitlink_ref_recursive() after it failed to read1113 * from the loose refs in ref_cache refs. Find <refname> in the1114 * packed-refs file for the submodule.1115 */1116static intresolve_gitlink_packed_ref(struct ref_cache *refs,1117const char*refname,unsigned char*sha1)1118{1119struct ref_entry *ref;1120struct ref_dir *dir =get_packed_refs(refs);11211122 ref =find_ref(dir, refname);1123if(ref == NULL)1124return-1;11251126memcpy(sha1, ref->u.value.sha1,20);1127return0;1128}11291130static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1131const char*refname,unsigned char*sha1,1132int recursion)1133{1134int fd, len;1135char buffer[128], *p;1136char*path;11371138if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1139return-1;1140 path = *refs->name1141?git_path_submodule(refs->name,"%s", refname)1142:git_path("%s", refname);1143 fd =open(path, O_RDONLY);1144if(fd <0)1145returnresolve_gitlink_packed_ref(refs, refname, sha1);11461147 len =read(fd, buffer,sizeof(buffer)-1);1148close(fd);1149if(len <0)1150return-1;1151while(len &&isspace(buffer[len-1]))1152 len--;1153 buffer[len] =0;11541155/* Was it a detached head or an old-fashioned symlink? */1156if(!get_sha1_hex(buffer, sha1))1157return0;11581159/* Symref? */1160if(strncmp(buffer,"ref:",4))1161return-1;1162 p = buffer +4;1163while(isspace(*p))1164 p++;11651166returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1167}11681169intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1170{1171int len =strlen(path), retval;1172char*submodule;1173struct ref_cache *refs;11741175while(len && path[len-1] =='/')1176 len--;1177if(!len)1178return-1;1179 submodule =xstrndup(path, len);1180 refs =get_ref_cache(submodule);1181free(submodule);11821183 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1184return retval;1185}11861187/*1188 * Return the ref_entry for the given refname from the packed1189 * references. If it does not exist, return NULL.1190 */1191static struct ref_entry *get_packed_ref(const char*refname)1192{1193returnfind_ref(get_packed_refs(&ref_cache), refname);1194}11951196const char*resolve_ref_unsafe(const char*refname,unsigned char*sha1,int reading,int*flag)1197{1198int depth = MAXDEPTH;1199 ssize_t len;1200char buffer[256];1201static char refname_buffer[256];12021203if(flag)1204*flag =0;12051206if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))1207return NULL;12081209for(;;) {1210char path[PATH_MAX];1211struct stat st;1212char*buf;1213int fd;12141215if(--depth <0)1216return NULL;12171218git_snpath(path,sizeof(path),"%s", refname);12191220if(lstat(path, &st) <0) {1221struct ref_entry *entry;12221223if(errno != ENOENT)1224return NULL;1225/*1226 * The loose reference file does not exist;1227 * check for a packed reference.1228 */1229 entry =get_packed_ref(refname);1230if(entry) {1231hashcpy(sha1, entry->u.value.sha1);1232if(flag)1233*flag |= REF_ISPACKED;1234return refname;1235}1236/* The reference is not a packed reference, either. */1237if(reading) {1238return NULL;1239}else{1240hashclr(sha1);1241return refname;1242}1243}12441245/* Follow "normalized" - ie "refs/.." symlinks by hand */1246if(S_ISLNK(st.st_mode)) {1247 len =readlink(path, buffer,sizeof(buffer)-1);1248if(len <0)1249return NULL;1250 buffer[len] =0;1251if(!prefixcmp(buffer,"refs/") &&1252!check_refname_format(buffer,0)) {1253strcpy(refname_buffer, buffer);1254 refname = refname_buffer;1255if(flag)1256*flag |= REF_ISSYMREF;1257continue;1258}1259}12601261/* Is it a directory? */1262if(S_ISDIR(st.st_mode)) {1263 errno = EISDIR;1264return NULL;1265}12661267/*1268 * Anything else, just open it and try to use it as1269 * a ref1270 */1271 fd =open(path, O_RDONLY);1272if(fd <0)1273return NULL;1274 len =read_in_full(fd, buffer,sizeof(buffer)-1);1275close(fd);1276if(len <0)1277return NULL;1278while(len &&isspace(buffer[len-1]))1279 len--;1280 buffer[len] ='\0';12811282/*1283 * Is it a symbolic ref?1284 */1285if(prefixcmp(buffer,"ref:"))1286break;1287if(flag)1288*flag |= REF_ISSYMREF;1289 buf = buffer +4;1290while(isspace(*buf))1291 buf++;1292if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1293if(flag)1294*flag |= REF_ISBROKEN;1295return NULL;1296}1297 refname =strcpy(refname_buffer, buf);1298}1299/* Please note that FETCH_HEAD has a second line containing other data. */1300if(get_sha1_hex(buffer, sha1) || (buffer[40] !='\0'&& !isspace(buffer[40]))) {1301if(flag)1302*flag |= REF_ISBROKEN;1303return NULL;1304}1305return refname;1306}13071308char*resolve_refdup(const char*ref,unsigned char*sha1,int reading,int*flag)1309{1310const char*ret =resolve_ref_unsafe(ref, sha1, reading, flag);1311return ret ?xstrdup(ret) : NULL;1312}13131314/* The argument to filter_refs */1315struct ref_filter {1316const char*pattern;1317 each_ref_fn *fn;1318void*cb_data;1319};13201321intread_ref_full(const char*refname,unsigned char*sha1,int reading,int*flags)1322{1323if(resolve_ref_unsafe(refname, sha1, reading, flags))1324return0;1325return-1;1326}13271328intread_ref(const char*refname,unsigned char*sha1)1329{1330returnread_ref_full(refname, sha1,1, NULL);1331}13321333intref_exists(const char*refname)1334{1335unsigned char sha1[20];1336return!!resolve_ref_unsafe(refname, sha1,1, NULL);1337}13381339static intfilter_refs(const char*refname,const unsigned char*sha1,int flags,1340void*data)1341{1342struct ref_filter *filter = (struct ref_filter *)data;1343if(fnmatch(filter->pattern, refname,0))1344return0;1345return filter->fn(refname, sha1, flags, filter->cb_data);1346}13471348enum peel_status {1349/* object was peeled successfully: */1350 PEEL_PEELED =0,13511352/*1353 * object cannot be peeled because the named object (or an1354 * object referred to by a tag in the peel chain), does not1355 * exist.1356 */1357 PEEL_INVALID = -1,13581359/* object cannot be peeled because it is not a tag: */1360 PEEL_NON_TAG = -2,13611362/* ref_entry contains no peeled value because it is a symref: */1363 PEEL_IS_SYMREF = -3,13641365/*1366 * ref_entry cannot be peeled because it is broken (i.e., the1367 * symbolic reference cannot even be resolved to an object1368 * name):1369 */1370 PEEL_BROKEN = -41371};13721373/*1374 * Peel the named object; i.e., if the object is a tag, resolve the1375 * tag recursively until a non-tag is found. If successful, store the1376 * result to sha1 and return PEEL_PEELED. If the object is not a tag1377 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,1378 * and leave sha1 unchanged.1379 */1380static enum peel_status peel_object(const unsigned char*name,unsigned char*sha1)1381{1382struct object *o =lookup_unknown_object(name);13831384if(o->type == OBJ_NONE) {1385int type =sha1_object_info(name, NULL);1386if(type <0)1387return PEEL_INVALID;1388 o->type = type;1389}13901391if(o->type != OBJ_TAG)1392return PEEL_NON_TAG;13931394 o =deref_tag_noverify(o);1395if(!o)1396return PEEL_INVALID;13971398hashcpy(sha1, o->sha1);1399return PEEL_PEELED;1400}14011402/*1403 * Peel the entry (if possible) and return its new peel_status. If1404 * repeel is true, re-peel the entry even if there is an old peeled1405 * value that is already stored in it.1406 *1407 * It is OK to call this function with a packed reference entry that1408 * might be stale and might even refer to an object that has since1409 * been garbage-collected. In such a case, if the entry has1410 * REF_KNOWS_PEELED then leave the status unchanged and return1411 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1412 */1413static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1414{1415enum peel_status status;14161417if(entry->flag & REF_KNOWS_PEELED) {1418if(repeel) {1419 entry->flag &= ~REF_KNOWS_PEELED;1420hashclr(entry->u.value.peeled);1421}else{1422returnis_null_sha1(entry->u.value.peeled) ?1423 PEEL_NON_TAG : PEEL_PEELED;1424}1425}1426if(entry->flag & REF_ISBROKEN)1427return PEEL_BROKEN;1428if(entry->flag & REF_ISSYMREF)1429return PEEL_IS_SYMREF;14301431 status =peel_object(entry->u.value.sha1, entry->u.value.peeled);1432if(status == PEEL_PEELED || status == PEEL_NON_TAG)1433 entry->flag |= REF_KNOWS_PEELED;1434return status;1435}14361437intpeel_ref(const char*refname,unsigned char*sha1)1438{1439int flag;1440unsigned char base[20];14411442if(current_ref && (current_ref->name == refname1443|| !strcmp(current_ref->name, refname))) {1444if(peel_entry(current_ref,0))1445return-1;1446hashcpy(sha1, current_ref->u.value.peeled);1447return0;1448}14491450if(read_ref_full(refname, base,1, &flag))1451return-1;14521453/*1454 * If the reference is packed, read its ref_entry from the1455 * cache in the hope that we already know its peeled value.1456 * We only try this optimization on packed references because1457 * (a) forcing the filling of the loose reference cache could1458 * be expensive and (b) loose references anyway usually do not1459 * have REF_KNOWS_PEELED.1460 */1461if(flag & REF_ISPACKED) {1462struct ref_entry *r =get_packed_ref(refname);1463if(r) {1464if(peel_entry(r,0))1465return-1;1466hashcpy(sha1, r->u.value.peeled);1467return0;1468}1469}14701471returnpeel_object(base, sha1);1472}14731474struct warn_if_dangling_data {1475FILE*fp;1476const char*refname;1477const char*msg_fmt;1478};14791480static intwarn_if_dangling_symref(const char*refname,const unsigned char*sha1,1481int flags,void*cb_data)1482{1483struct warn_if_dangling_data *d = cb_data;1484const char*resolves_to;1485unsigned char junk[20];14861487if(!(flags & REF_ISSYMREF))1488return0;14891490 resolves_to =resolve_ref_unsafe(refname, junk,0, NULL);1491if(!resolves_to ||strcmp(resolves_to, d->refname))1492return0;14931494fprintf(d->fp, d->msg_fmt, refname);1495fputc('\n', d->fp);1496return0;1497}14981499voidwarn_dangling_symref(FILE*fp,const char*msg_fmt,const char*refname)1500{1501struct warn_if_dangling_data data;15021503 data.fp = fp;1504 data.refname = refname;1505 data.msg_fmt = msg_fmt;1506for_each_rawref(warn_if_dangling_symref, &data);1507}15081509/*1510 * Call fn for each reference in the specified ref_cache, omitting1511 * references not in the containing_dir of base. fn is called for all1512 * references, including broken ones. If fn ever returns a non-zero1513 * value, stop the iteration and return that value; otherwise, return1514 * 0.1515 */1516static intdo_for_each_entry(struct ref_cache *refs,const char*base,1517 each_ref_entry_fn fn,void*cb_data)1518{1519struct ref_dir *packed_dir =get_packed_refs(refs);1520struct ref_dir *loose_dir =get_loose_refs(refs);1521int retval =0;15221523if(base && *base) {1524 packed_dir =find_containing_dir(packed_dir, base,0);1525 loose_dir =find_containing_dir(loose_dir, base,0);1526}15271528if(packed_dir && loose_dir) {1529sort_ref_dir(packed_dir);1530sort_ref_dir(loose_dir);1531 retval =do_for_each_entry_in_dirs(1532 packed_dir, loose_dir, fn, cb_data);1533}else if(packed_dir) {1534sort_ref_dir(packed_dir);1535 retval =do_for_each_entry_in_dir(1536 packed_dir,0, fn, cb_data);1537}else if(loose_dir) {1538sort_ref_dir(loose_dir);1539 retval =do_for_each_entry_in_dir(1540 loose_dir,0, fn, cb_data);1541}15421543return retval;1544}15451546/*1547 * Call fn for each reference in the specified ref_cache for which the1548 * refname begins with base. If trim is non-zero, then trim that many1549 * characters off the beginning of each refname before passing the1550 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include1551 * broken references in the iteration. If fn ever returns a non-zero1552 * value, stop the iteration and return that value; otherwise, return1553 * 0.1554 */1555static intdo_for_each_ref(struct ref_cache *refs,const char*base,1556 each_ref_fn fn,int trim,int flags,void*cb_data)1557{1558struct ref_entry_cb data;1559 data.base = base;1560 data.trim = trim;1561 data.flags = flags;1562 data.fn = fn;1563 data.cb_data = cb_data;15641565returndo_for_each_entry(refs, base, do_one_ref, &data);1566}15671568static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)1569{1570unsigned char sha1[20];1571int flag;15721573if(submodule) {1574if(resolve_gitlink_ref(submodule,"HEAD", sha1) ==0)1575returnfn("HEAD", sha1,0, cb_data);15761577return0;1578}15791580if(!read_ref_full("HEAD", sha1,1, &flag))1581returnfn("HEAD", sha1, flag, cb_data);15821583return0;1584}15851586inthead_ref(each_ref_fn fn,void*cb_data)1587{1588returndo_head_ref(NULL, fn, cb_data);1589}15901591inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1592{1593returndo_head_ref(submodule, fn, cb_data);1594}15951596intfor_each_ref(each_ref_fn fn,void*cb_data)1597{1598returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);1599}16001601intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1602{1603returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);1604}16051606intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)1607{1608returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);1609}16101611intfor_each_ref_in_submodule(const char*submodule,const char*prefix,1612 each_ref_fn fn,void*cb_data)1613{1614returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);1615}16161617intfor_each_tag_ref(each_ref_fn fn,void*cb_data)1618{1619returnfor_each_ref_in("refs/tags/", fn, cb_data);1620}16211622intfor_each_tag_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1623{1624returnfor_each_ref_in_submodule(submodule,"refs/tags/", fn, cb_data);1625}16261627intfor_each_branch_ref(each_ref_fn fn,void*cb_data)1628{1629returnfor_each_ref_in("refs/heads/", fn, cb_data);1630}16311632intfor_each_branch_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1633{1634returnfor_each_ref_in_submodule(submodule,"refs/heads/", fn, cb_data);1635}16361637intfor_each_remote_ref(each_ref_fn fn,void*cb_data)1638{1639returnfor_each_ref_in("refs/remotes/", fn, cb_data);1640}16411642intfor_each_remote_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1643{1644returnfor_each_ref_in_submodule(submodule,"refs/remotes/", fn, cb_data);1645}16461647intfor_each_replace_ref(each_ref_fn fn,void*cb_data)1648{1649returndo_for_each_ref(&ref_cache,"refs/replace/", fn,13,0, cb_data);1650}16511652inthead_ref_namespaced(each_ref_fn fn,void*cb_data)1653{1654struct strbuf buf = STRBUF_INIT;1655int ret =0;1656unsigned char sha1[20];1657int flag;16581659strbuf_addf(&buf,"%sHEAD",get_git_namespace());1660if(!read_ref_full(buf.buf, sha1,1, &flag))1661 ret =fn(buf.buf, sha1, flag, cb_data);1662strbuf_release(&buf);16631664return ret;1665}16661667intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)1668{1669struct strbuf buf = STRBUF_INIT;1670int ret;1671strbuf_addf(&buf,"%srefs/",get_git_namespace());1672 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);1673strbuf_release(&buf);1674return ret;1675}16761677intfor_each_glob_ref_in(each_ref_fn fn,const char*pattern,1678const char*prefix,void*cb_data)1679{1680struct strbuf real_pattern = STRBUF_INIT;1681struct ref_filter filter;1682int ret;16831684if(!prefix &&prefixcmp(pattern,"refs/"))1685strbuf_addstr(&real_pattern,"refs/");1686else if(prefix)1687strbuf_addstr(&real_pattern, prefix);1688strbuf_addstr(&real_pattern, pattern);16891690if(!has_glob_specials(pattern)) {1691/* Append implied '/' '*' if not present. */1692if(real_pattern.buf[real_pattern.len -1] !='/')1693strbuf_addch(&real_pattern,'/');1694/* No need to check for '*', there is none. */1695strbuf_addch(&real_pattern,'*');1696}16971698 filter.pattern = real_pattern.buf;1699 filter.fn = fn;1700 filter.cb_data = cb_data;1701 ret =for_each_ref(filter_refs, &filter);17021703strbuf_release(&real_pattern);1704return ret;1705}17061707intfor_each_glob_ref(each_ref_fn fn,const char*pattern,void*cb_data)1708{1709returnfor_each_glob_ref_in(fn, pattern, NULL, cb_data);1710}17111712intfor_each_rawref(each_ref_fn fn,void*cb_data)1713{1714returndo_for_each_ref(&ref_cache,"", fn,0,1715 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);1716}17171718const char*prettify_refname(const char*name)1719{1720return name + (1721!prefixcmp(name,"refs/heads/") ?11:1722!prefixcmp(name,"refs/tags/") ?10:1723!prefixcmp(name,"refs/remotes/") ?13:17240);1725}17261727const char*ref_rev_parse_rules[] = {1728"%.*s",1729"refs/%.*s",1730"refs/tags/%.*s",1731"refs/heads/%.*s",1732"refs/remotes/%.*s",1733"refs/remotes/%.*s/HEAD",1734 NULL1735};17361737intrefname_match(const char*abbrev_name,const char*full_name,const char**rules)1738{1739const char**p;1740const int abbrev_name_len =strlen(abbrev_name);17411742for(p = rules; *p; p++) {1743if(!strcmp(full_name,mkpath(*p, abbrev_name_len, abbrev_name))) {1744return1;1745}1746}17471748return0;1749}17501751static struct ref_lock *verify_lock(struct ref_lock *lock,1752const unsigned char*old_sha1,int mustexist)1753{1754if(read_ref_full(lock->ref_name, lock->old_sha1, mustexist, NULL)) {1755error("Can't verify ref%s", lock->ref_name);1756unlock_ref(lock);1757return NULL;1758}1759if(hashcmp(lock->old_sha1, old_sha1)) {1760error("Ref%sis at%sbut expected%s", lock->ref_name,1761sha1_to_hex(lock->old_sha1),sha1_to_hex(old_sha1));1762unlock_ref(lock);1763return NULL;1764}1765return lock;1766}17671768static intremove_empty_directories(const char*file)1769{1770/* we want to create a file but there is a directory there;1771 * if that is an empty directory (or a directory that contains1772 * only empty directories), remove them.1773 */1774struct strbuf path;1775int result;17761777strbuf_init(&path,20);1778strbuf_addstr(&path, file);17791780 result =remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);17811782strbuf_release(&path);17831784return result;1785}17861787/*1788 * *string and *len will only be substituted, and *string returned (for1789 * later free()ing) if the string passed in is a magic short-hand form1790 * to name a branch.1791 */1792static char*substitute_branch_name(const char**string,int*len)1793{1794struct strbuf buf = STRBUF_INIT;1795int ret =interpret_branch_name(*string, &buf);17961797if(ret == *len) {1798size_t size;1799*string =strbuf_detach(&buf, &size);1800*len = size;1801return(char*)*string;1802}18031804return NULL;1805}18061807intdwim_ref(const char*str,int len,unsigned char*sha1,char**ref)1808{1809char*last_branch =substitute_branch_name(&str, &len);1810const char**p, *r;1811int refs_found =0;18121813*ref = NULL;1814for(p = ref_rev_parse_rules; *p; p++) {1815char fullref[PATH_MAX];1816unsigned char sha1_from_ref[20];1817unsigned char*this_result;1818int flag;18191820 this_result = refs_found ? sha1_from_ref : sha1;1821mksnpath(fullref,sizeof(fullref), *p, len, str);1822 r =resolve_ref_unsafe(fullref, this_result,1, &flag);1823if(r) {1824if(!refs_found++)1825*ref =xstrdup(r);1826if(!warn_ambiguous_refs)1827break;1828}else if((flag & REF_ISSYMREF) &&strcmp(fullref,"HEAD")) {1829warning("ignoring dangling symref%s.", fullref);1830}else if((flag & REF_ISBROKEN) &&strchr(fullref,'/')) {1831warning("ignoring broken ref%s.", fullref);1832}1833}1834free(last_branch);1835return refs_found;1836}18371838intdwim_log(const char*str,int len,unsigned char*sha1,char**log)1839{1840char*last_branch =substitute_branch_name(&str, &len);1841const char**p;1842int logs_found =0;18431844*log = NULL;1845for(p = ref_rev_parse_rules; *p; p++) {1846struct stat st;1847unsigned char hash[20];1848char path[PATH_MAX];1849const char*ref, *it;18501851mksnpath(path,sizeof(path), *p, len, str);1852 ref =resolve_ref_unsafe(path, hash,1, NULL);1853if(!ref)1854continue;1855if(!stat(git_path("logs/%s", path), &st) &&1856S_ISREG(st.st_mode))1857 it = path;1858else if(strcmp(ref, path) &&1859!stat(git_path("logs/%s", ref), &st) &&1860S_ISREG(st.st_mode))1861 it = ref;1862else1863continue;1864if(!logs_found++) {1865*log =xstrdup(it);1866hashcpy(sha1, hash);1867}1868if(!warn_ambiguous_refs)1869break;1870}1871free(last_branch);1872return logs_found;1873}18741875static struct ref_lock *lock_ref_sha1_basic(const char*refname,1876const unsigned char*old_sha1,1877int flags,int*type_p)1878{1879char*ref_file;1880const char*orig_refname = refname;1881struct ref_lock *lock;1882int last_errno =0;1883int type, lflags;1884int mustexist = (old_sha1 && !is_null_sha1(old_sha1));1885int missing =0;18861887 lock =xcalloc(1,sizeof(struct ref_lock));1888 lock->lock_fd = -1;18891890 refname =resolve_ref_unsafe(refname, lock->old_sha1, mustexist, &type);1891if(!refname && errno == EISDIR) {1892/* we are trying to lock foo but we used to1893 * have foo/bar which now does not exist;1894 * it is normal for the empty directory 'foo'1895 * to remain.1896 */1897 ref_file =git_path("%s", orig_refname);1898if(remove_empty_directories(ref_file)) {1899 last_errno = errno;1900error("there are still refs under '%s'", orig_refname);1901goto error_return;1902}1903 refname =resolve_ref_unsafe(orig_refname, lock->old_sha1, mustexist, &type);1904}1905if(type_p)1906*type_p = type;1907if(!refname) {1908 last_errno = errno;1909error("unable to resolve reference%s:%s",1910 orig_refname,strerror(errno));1911goto error_return;1912}1913 missing =is_null_sha1(lock->old_sha1);1914/* When the ref did not exist and we are creating it,1915 * make sure there is no existing ref that is packed1916 * whose name begins with our refname, nor a ref whose1917 * name is a proper prefix of our refname.1918 */1919if(missing &&1920!is_refname_available(refname, NULL,get_packed_refs(&ref_cache))) {1921 last_errno = ENOTDIR;1922goto error_return;1923}19241925 lock->lk =xcalloc(1,sizeof(struct lock_file));19261927 lflags = LOCK_DIE_ON_ERROR;1928if(flags & REF_NODEREF) {1929 refname = orig_refname;1930 lflags |= LOCK_NODEREF;1931}1932 lock->ref_name =xstrdup(refname);1933 lock->orig_ref_name =xstrdup(orig_refname);1934 ref_file =git_path("%s", refname);1935if(missing)1936 lock->force_write =1;1937if((flags & REF_NODEREF) && (type & REF_ISSYMREF))1938 lock->force_write =1;19391940if(safe_create_leading_directories(ref_file)) {1941 last_errno = errno;1942error("unable to create directory for%s", ref_file);1943goto error_return;1944}19451946 lock->lock_fd =hold_lock_file_for_update(lock->lk, ref_file, lflags);1947return old_sha1 ?verify_lock(lock, old_sha1, mustexist) : lock;19481949 error_return:1950unlock_ref(lock);1951 errno = last_errno;1952return NULL;1953}19541955struct ref_lock *lock_ref_sha1(const char*refname,const unsigned char*old_sha1)1956{1957char refpath[PATH_MAX];1958if(check_refname_format(refname,0))1959return NULL;1960strcpy(refpath,mkpath("refs/%s", refname));1961returnlock_ref_sha1_basic(refpath, old_sha1,0, NULL);1962}19631964struct ref_lock *lock_any_ref_for_update(const char*refname,1965const unsigned char*old_sha1,int flags)1966{1967if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL))1968return NULL;1969returnlock_ref_sha1_basic(refname, old_sha1, flags, NULL);1970}19711972/*1973 * Write an entry to the packed-refs file for the specified refname.1974 * If peeled is non-NULL, write it as the entry's peeled value.1975 */1976static voidwrite_packed_entry(int fd,char*refname,unsigned char*sha1,1977unsigned char*peeled)1978{1979char line[PATH_MAX +100];1980int len;19811982 len =snprintf(line,sizeof(line),"%s %s\n",1983sha1_to_hex(sha1), refname);1984/* this should not happen but just being defensive */1985if(len >sizeof(line))1986die("too long a refname '%s'", refname);1987write_or_die(fd, line, len);19881989if(peeled) {1990if(snprintf(line,sizeof(line),"^%s\n",1991sha1_to_hex(peeled)) != PEELED_LINE_LENGTH)1992die("internal error");1993write_or_die(fd, line, PEELED_LINE_LENGTH);1994}1995}19961997struct ref_to_prune {1998struct ref_to_prune *next;1999unsigned char sha1[20];2000char name[FLEX_ARRAY];2001};20022003struct pack_refs_cb_data {2004unsigned int flags;2005struct ref_to_prune *ref_to_prune;2006int fd;2007};20082009static intpack_one_ref(struct ref_entry *entry,void*cb_data)2010{2011struct pack_refs_cb_data *cb = cb_data;2012enum peel_status peel_status;2013int is_tag_ref = !prefixcmp(entry->name,"refs/tags/");20142015/* ALWAYS pack refs that were already packed or are tags */2016if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref &&2017!(entry->flag & REF_ISPACKED))2018return0;20192020/* Do not pack symbolic or broken refs: */2021if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2022return0;20232024 peel_status =peel_entry(entry,1);2025if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2026die("internal error peeling reference%s(%s)",2027 entry->name,sha1_to_hex(entry->u.value.sha1));2028write_packed_entry(cb->fd, entry->name, entry->u.value.sha1,2029 peel_status == PEEL_PEELED ?2030 entry->u.value.peeled : NULL);20312032/* If the ref was already packed, there is no need to prune it. */2033if((cb->flags & PACK_REFS_PRUNE) && !(entry->flag & REF_ISPACKED)) {2034int namelen =strlen(entry->name) +1;2035struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2036hashcpy(n->sha1, entry->u.value.sha1);2037strcpy(n->name, entry->name);2038 n->next = cb->ref_to_prune;2039 cb->ref_to_prune = n;2040}2041return0;2042}20432044/*2045 * Remove empty parents, but spare refs/ and immediate subdirs.2046 * Note: munges *name.2047 */2048static voidtry_remove_empty_parents(char*name)2049{2050char*p, *q;2051int i;2052 p = name;2053for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2054while(*p && *p !='/')2055 p++;2056/* tolerate duplicate slashes; see check_refname_format() */2057while(*p =='/')2058 p++;2059}2060for(q = p; *q; q++)2061;2062while(1) {2063while(q > p && *q !='/')2064 q--;2065while(q > p && *(q-1) =='/')2066 q--;2067if(q == p)2068break;2069*q ='\0';2070if(rmdir(git_path("%s", name)))2071break;2072}2073}20742075/* make sure nobody touched the ref, and unlink */2076static voidprune_ref(struct ref_to_prune *r)2077{2078struct ref_lock *lock =lock_ref_sha1(r->name +5, r->sha1);20792080if(lock) {2081unlink_or_warn(git_path("%s", r->name));2082unlock_ref(lock);2083try_remove_empty_parents(r->name);2084}2085}20862087static voidprune_refs(struct ref_to_prune *r)2088{2089while(r) {2090prune_ref(r);2091 r = r->next;2092}2093}20942095static struct lock_file packlock;20962097intpack_refs(unsigned int flags)2098{2099struct pack_refs_cb_data cbdata;21002101memset(&cbdata,0,sizeof(cbdata));2102 cbdata.flags = flags;21032104 cbdata.fd =hold_lock_file_for_update(&packlock,git_path("packed-refs"),2105 LOCK_DIE_ON_ERROR);21062107write_or_die(cbdata.fd, PACKED_REFS_HEADER,strlen(PACKED_REFS_HEADER));21082109do_for_each_entry(&ref_cache,"", pack_one_ref, &cbdata);2110if(commit_lock_file(&packlock) <0)2111die_errno("unable to overwrite old ref-pack file");2112prune_refs(cbdata.ref_to_prune);2113return0;2114}21152116static intrepack_ref_fn(struct ref_entry *entry,void*cb_data)2117{2118int*fd = cb_data;2119enum peel_status peel_status;21202121if(entry->flag & REF_ISBROKEN) {2122/* This shouldn't happen to packed refs. */2123error("%sis broken!", entry->name);2124return0;2125}2126if(!has_sha1_file(entry->u.value.sha1)) {2127unsigned char sha1[20];2128int flags;21292130if(read_ref_full(entry->name, sha1,0, &flags))2131/* We should at least have found the packed ref. */2132die("Internal error");2133if((flags & REF_ISSYMREF) || !(flags & REF_ISPACKED))2134/*2135 * This packed reference is overridden by a2136 * loose reference, so it is OK that its value2137 * is no longer valid; for example, it might2138 * refer to an object that has been garbage2139 * collected. For this purpose we don't even2140 * care whether the loose reference itself is2141 * invalid, broken, symbolic, etc. Silently2142 * omit the packed reference from the output.2143 */2144return0;2145/*2146 * There is no overriding loose reference, so the fact2147 * that this reference doesn't refer to a valid object2148 * indicates some kind of repository corruption.2149 * Report the problem, then omit the reference from2150 * the output.2151 */2152error("%sdoes not point to a valid object!", entry->name);2153return0;2154}21552156 peel_status =peel_entry(entry,0);2157write_packed_entry(*fd, entry->name, entry->u.value.sha1,2158 peel_status == PEEL_PEELED ?2159 entry->u.value.peeled : NULL);21602161return0;2162}21632164static intrepack_without_ref(const char*refname)2165{2166int fd;2167struct ref_dir *packed;21682169if(!get_packed_ref(refname))2170return0;/* refname does not exist in packed refs */21712172 fd =hold_lock_file_for_update(&packlock,git_path("packed-refs"),0);2173if(fd <0) {2174unable_to_lock_error(git_path("packed-refs"), errno);2175returnerror("cannot delete '%s' from packed refs", refname);2176}2177clear_packed_ref_cache(&ref_cache);2178 packed =get_packed_refs(&ref_cache);2179/* Remove refname from the cache. */2180if(remove_entry(packed, refname) == -1) {2181/*2182 * The packed entry disappeared while we were2183 * acquiring the lock.2184 */2185rollback_lock_file(&packlock);2186return0;2187}2188write_or_die(fd, PACKED_REFS_HEADER,strlen(PACKED_REFS_HEADER));2189do_for_each_entry_in_dir(packed,0, repack_ref_fn, &fd);2190returncommit_lock_file(&packlock);2191}21922193intdelete_ref(const char*refname,const unsigned char*sha1,int delopt)2194{2195struct ref_lock *lock;2196int err, i =0, ret =0, flag =0;21972198 lock =lock_ref_sha1_basic(refname, sha1, delopt, &flag);2199if(!lock)2200return1;2201if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2202/* loose */2203 i =strlen(lock->lk->filename) -5;/* .lock */2204 lock->lk->filename[i] =0;2205 err =unlink_or_warn(lock->lk->filename);2206if(err && errno != ENOENT)2207 ret =1;22082209 lock->lk->filename[i] ='.';2210}2211/* removing the loose one could have resurrected an earlier2212 * packed one. Also, if it was not loose we need to repack2213 * without it.2214 */2215 ret |=repack_without_ref(lock->ref_name);22162217unlink_or_warn(git_path("logs/%s", lock->ref_name));2218clear_loose_ref_cache(&ref_cache);2219unlock_ref(lock);2220return ret;2221}22222223/*2224 * People using contrib's git-new-workdir have .git/logs/refs ->2225 * /some/other/path/.git/logs/refs, and that may live on another device.2226 *2227 * IOW, to avoid cross device rename errors, the temporary renamed log must2228 * live into logs/refs.2229 */2230#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"22312232intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2233{2234unsigned char sha1[20], orig_sha1[20];2235int flag =0, logmoved =0;2236struct ref_lock *lock;2237struct stat loginfo;2238int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2239const char*symref = NULL;22402241if(log &&S_ISLNK(loginfo.st_mode))2242returnerror("reflog for%sis a symlink", oldrefname);22432244 symref =resolve_ref_unsafe(oldrefname, orig_sha1,1, &flag);2245if(flag & REF_ISSYMREF)2246returnerror("refname%sis a symbolic ref, renaming it is not supported",2247 oldrefname);2248if(!symref)2249returnerror("refname%snot found", oldrefname);22502251if(!is_refname_available(newrefname, oldrefname,get_packed_refs(&ref_cache)))2252return1;22532254if(!is_refname_available(newrefname, oldrefname,get_loose_refs(&ref_cache)))2255return1;22562257if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2258returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2259 oldrefname,strerror(errno));22602261if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2262error("unable to delete old%s", oldrefname);2263goto rollback;2264}22652266if(!read_ref_full(newrefname, sha1,1, &flag) &&2267delete_ref(newrefname, sha1, REF_NODEREF)) {2268if(errno==EISDIR) {2269if(remove_empty_directories(git_path("%s", newrefname))) {2270error("Directory not empty:%s", newrefname);2271goto rollback;2272}2273}else{2274error("unable to delete existing%s", newrefname);2275goto rollback;2276}2277}22782279if(log &&safe_create_leading_directories(git_path("logs/%s", newrefname))) {2280error("unable to create directory for%s", newrefname);2281goto rollback;2282}22832284 retry:2285if(log &&rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", newrefname))) {2286if(errno==EISDIR || errno==ENOTDIR) {2287/*2288 * rename(a, b) when b is an existing2289 * directory ought to result in ISDIR, but2290 * Solaris 5.8 gives ENOTDIR. Sheesh.2291 */2292if(remove_empty_directories(git_path("logs/%s", newrefname))) {2293error("Directory not empty: logs/%s", newrefname);2294goto rollback;2295}2296goto retry;2297}else{2298error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2299 newrefname,strerror(errno));2300goto rollback;2301}2302}2303 logmoved = log;23042305 lock =lock_ref_sha1_basic(newrefname, NULL,0, NULL);2306if(!lock) {2307error("unable to lock%sfor update", newrefname);2308goto rollback;2309}2310 lock->force_write =1;2311hashcpy(lock->old_sha1, orig_sha1);2312if(write_ref_sha1(lock, orig_sha1, logmsg)) {2313error("unable to write current sha1 into%s", newrefname);2314goto rollback;2315}23162317return0;23182319 rollback:2320 lock =lock_ref_sha1_basic(oldrefname, NULL,0, NULL);2321if(!lock) {2322error("unable to lock%sfor rollback", oldrefname);2323goto rollbacklog;2324}23252326 lock->force_write =1;2327 flag = log_all_ref_updates;2328 log_all_ref_updates =0;2329if(write_ref_sha1(lock, orig_sha1, NULL))2330error("unable to write current sha1 into%s", oldrefname);2331 log_all_ref_updates = flag;23322333 rollbacklog:2334if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2335error("unable to restore logfile%sfrom%s:%s",2336 oldrefname, newrefname,strerror(errno));2337if(!logmoved && log &&2338rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2339error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2340 oldrefname,strerror(errno));23412342return1;2343}23442345intclose_ref(struct ref_lock *lock)2346{2347if(close_lock_file(lock->lk))2348return-1;2349 lock->lock_fd = -1;2350return0;2351}23522353intcommit_ref(struct ref_lock *lock)2354{2355if(commit_lock_file(lock->lk))2356return-1;2357 lock->lock_fd = -1;2358return0;2359}23602361voidunlock_ref(struct ref_lock *lock)2362{2363/* Do not free lock->lk -- atexit() still looks at them */2364if(lock->lk)2365rollback_lock_file(lock->lk);2366free(lock->ref_name);2367free(lock->orig_ref_name);2368free(lock);2369}23702371/*2372 * copy the reflog message msg to buf, which has been allocated sufficiently2373 * large, while cleaning up the whitespaces. Especially, convert LF to space,2374 * because reflog file is one line per entry.2375 */2376static intcopy_msg(char*buf,const char*msg)2377{2378char*cp = buf;2379char c;2380int wasspace =1;23812382*cp++ ='\t';2383while((c = *msg++)) {2384if(wasspace &&isspace(c))2385continue;2386 wasspace =isspace(c);2387if(wasspace)2388 c =' ';2389*cp++ = c;2390}2391while(buf < cp &&isspace(cp[-1]))2392 cp--;2393*cp++ ='\n';2394return cp - buf;2395}23962397intlog_ref_setup(const char*refname,char*logfile,int bufsize)2398{2399int logfd, oflags = O_APPEND | O_WRONLY;24002401git_snpath(logfile, bufsize,"logs/%s", refname);2402if(log_all_ref_updates &&2403(!prefixcmp(refname,"refs/heads/") ||2404!prefixcmp(refname,"refs/remotes/") ||2405!prefixcmp(refname,"refs/notes/") ||2406!strcmp(refname,"HEAD"))) {2407if(safe_create_leading_directories(logfile) <0)2408returnerror("unable to create directory for%s",2409 logfile);2410 oflags |= O_CREAT;2411}24122413 logfd =open(logfile, oflags,0666);2414if(logfd <0) {2415if(!(oflags & O_CREAT) && errno == ENOENT)2416return0;24172418if((oflags & O_CREAT) && errno == EISDIR) {2419if(remove_empty_directories(logfile)) {2420returnerror("There are still logs under '%s'",2421 logfile);2422}2423 logfd =open(logfile, oflags,0666);2424}24252426if(logfd <0)2427returnerror("Unable to append to%s:%s",2428 logfile,strerror(errno));2429}24302431adjust_shared_perm(logfile);2432close(logfd);2433return0;2434}24352436static intlog_ref_write(const char*refname,const unsigned char*old_sha1,2437const unsigned char*new_sha1,const char*msg)2438{2439int logfd, result, written, oflags = O_APPEND | O_WRONLY;2440unsigned maxlen, len;2441int msglen;2442char log_file[PATH_MAX];2443char*logrec;2444const char*committer;24452446if(log_all_ref_updates <0)2447 log_all_ref_updates = !is_bare_repository();24482449 result =log_ref_setup(refname, log_file,sizeof(log_file));2450if(result)2451return result;24522453 logfd =open(log_file, oflags);2454if(logfd <0)2455return0;2456 msglen = msg ?strlen(msg) :0;2457 committer =git_committer_info(0);2458 maxlen =strlen(committer) + msglen +100;2459 logrec =xmalloc(maxlen);2460 len =sprintf(logrec,"%s %s %s\n",2461sha1_to_hex(old_sha1),2462sha1_to_hex(new_sha1),2463 committer);2464if(msglen)2465 len +=copy_msg(logrec + len -1, msg) -1;2466 written = len <= maxlen ?write_in_full(logfd, logrec, len) : -1;2467free(logrec);2468if(close(logfd) !=0|| written != len)2469returnerror("Unable to append to%s", log_file);2470return0;2471}24722473static intis_branch(const char*refname)2474{2475return!strcmp(refname,"HEAD") || !prefixcmp(refname,"refs/heads/");2476}24772478intwrite_ref_sha1(struct ref_lock *lock,2479const unsigned char*sha1,const char*logmsg)2480{2481static char term ='\n';2482struct object *o;24832484if(!lock)2485return-1;2486if(!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {2487unlock_ref(lock);2488return0;2489}2490 o =parse_object(sha1);2491if(!o) {2492error("Trying to write ref%swith nonexistent object%s",2493 lock->ref_name,sha1_to_hex(sha1));2494unlock_ref(lock);2495return-1;2496}2497if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {2498error("Trying to write non-commit object%sto branch%s",2499sha1_to_hex(sha1), lock->ref_name);2500unlock_ref(lock);2501return-1;2502}2503if(write_in_full(lock->lock_fd,sha1_to_hex(sha1),40) !=40||2504write_in_full(lock->lock_fd, &term,1) !=12505||close_ref(lock) <0) {2506error("Couldn't write%s", lock->lk->filename);2507unlock_ref(lock);2508return-1;2509}2510clear_loose_ref_cache(&ref_cache);2511if(log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) <0||2512(strcmp(lock->ref_name, lock->orig_ref_name) &&2513log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) <0)) {2514unlock_ref(lock);2515return-1;2516}2517if(strcmp(lock->orig_ref_name,"HEAD") !=0) {2518/*2519 * Special hack: If a branch is updated directly and HEAD2520 * points to it (may happen on the remote side of a push2521 * for example) then logically the HEAD reflog should be2522 * updated too.2523 * A generic solution implies reverse symref information,2524 * but finding all symrefs pointing to the given branch2525 * would be rather costly for this rare event (the direct2526 * update of a branch) to be worth it. So let's cheat and2527 * check with HEAD only which should cover 99% of all usage2528 * scenarios (even 100% of the default ones).2529 */2530unsigned char head_sha1[20];2531int head_flag;2532const char*head_ref;2533 head_ref =resolve_ref_unsafe("HEAD", head_sha1,1, &head_flag);2534if(head_ref && (head_flag & REF_ISSYMREF) &&2535!strcmp(head_ref, lock->ref_name))2536log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);2537}2538if(commit_ref(lock)) {2539error("Couldn't set%s", lock->ref_name);2540unlock_ref(lock);2541return-1;2542}2543unlock_ref(lock);2544return0;2545}25462547intcreate_symref(const char*ref_target,const char*refs_heads_master,2548const char*logmsg)2549{2550const char*lockpath;2551char ref[1000];2552int fd, len, written;2553char*git_HEAD =git_pathdup("%s", ref_target);2554unsigned char old_sha1[20], new_sha1[20];25552556if(logmsg &&read_ref(ref_target, old_sha1))2557hashclr(old_sha1);25582559if(safe_create_leading_directories(git_HEAD) <0)2560returnerror("unable to create directory for%s", git_HEAD);25612562#ifndef NO_SYMLINK_HEAD2563if(prefer_symlink_refs) {2564unlink(git_HEAD);2565if(!symlink(refs_heads_master, git_HEAD))2566goto done;2567fprintf(stderr,"no symlink - falling back to symbolic ref\n");2568}2569#endif25702571 len =snprintf(ref,sizeof(ref),"ref:%s\n", refs_heads_master);2572if(sizeof(ref) <= len) {2573error("refname too long:%s", refs_heads_master);2574goto error_free_return;2575}2576 lockpath =mkpath("%s.lock", git_HEAD);2577 fd =open(lockpath, O_CREAT | O_EXCL | O_WRONLY,0666);2578if(fd <0) {2579error("Unable to open%sfor writing", lockpath);2580goto error_free_return;2581}2582 written =write_in_full(fd, ref, len);2583if(close(fd) !=0|| written != len) {2584error("Unable to write to%s", lockpath);2585goto error_unlink_return;2586}2587if(rename(lockpath, git_HEAD) <0) {2588error("Unable to create%s", git_HEAD);2589goto error_unlink_return;2590}2591if(adjust_shared_perm(git_HEAD)) {2592error("Unable to fix permissions on%s", lockpath);2593 error_unlink_return:2594unlink_or_warn(lockpath);2595 error_free_return:2596free(git_HEAD);2597return-1;2598}25992600#ifndef NO_SYMLINK_HEAD2601 done:2602#endif2603if(logmsg && !read_ref(refs_heads_master, new_sha1))2604log_ref_write(ref_target, old_sha1, new_sha1, logmsg);26052606free(git_HEAD);2607return0;2608}26092610static char*ref_msg(const char*line,const char*endp)2611{2612const char*ep;2613 line +=82;2614 ep =memchr(line,'\n', endp - line);2615if(!ep)2616 ep = endp;2617returnxmemdupz(line, ep - line);2618}26192620intread_ref_at(const char*refname,unsigned long at_time,int cnt,2621unsigned char*sha1,char**msg,2622unsigned long*cutoff_time,int*cutoff_tz,int*cutoff_cnt)2623{2624const char*logfile, *logdata, *logend, *rec, *lastgt, *lastrec;2625char*tz_c;2626int logfd, tz, reccnt =0;2627struct stat st;2628unsigned long date;2629unsigned char logged_sha1[20];2630void*log_mapped;2631size_t mapsz;26322633 logfile =git_path("logs/%s", refname);2634 logfd =open(logfile, O_RDONLY,0);2635if(logfd <0)2636die_errno("Unable to read log '%s'", logfile);2637fstat(logfd, &st);2638if(!st.st_size)2639die("Log%sis empty.", logfile);2640 mapsz =xsize_t(st.st_size);2641 log_mapped =xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, logfd,0);2642 logdata = log_mapped;2643close(logfd);26442645 lastrec = NULL;2646 rec = logend = logdata + st.st_size;2647while(logdata < rec) {2648 reccnt++;2649if(logdata < rec && *(rec-1) =='\n')2650 rec--;2651 lastgt = NULL;2652while(logdata < rec && *(rec-1) !='\n') {2653 rec--;2654if(*rec =='>')2655 lastgt = rec;2656}2657if(!lastgt)2658die("Log%sis corrupt.", logfile);2659 date =strtoul(lastgt +1, &tz_c,10);2660if(date <= at_time || cnt ==0) {2661 tz =strtoul(tz_c, NULL,10);2662if(msg)2663*msg =ref_msg(rec, logend);2664if(cutoff_time)2665*cutoff_time = date;2666if(cutoff_tz)2667*cutoff_tz = tz;2668if(cutoff_cnt)2669*cutoff_cnt = reccnt -1;2670if(lastrec) {2671if(get_sha1_hex(lastrec, logged_sha1))2672die("Log%sis corrupt.", logfile);2673if(get_sha1_hex(rec +41, sha1))2674die("Log%sis corrupt.", logfile);2675if(hashcmp(logged_sha1, sha1)) {2676warning("Log%shas gap after%s.",2677 logfile,show_date(date, tz, DATE_RFC2822));2678}2679}2680else if(date == at_time) {2681if(get_sha1_hex(rec +41, sha1))2682die("Log%sis corrupt.", logfile);2683}2684else{2685if(get_sha1_hex(rec +41, logged_sha1))2686die("Log%sis corrupt.", logfile);2687if(hashcmp(logged_sha1, sha1)) {2688warning("Log%sunexpectedly ended on%s.",2689 logfile,show_date(date, tz, DATE_RFC2822));2690}2691}2692munmap(log_mapped, mapsz);2693return0;2694}2695 lastrec = rec;2696if(cnt >0)2697 cnt--;2698}26992700 rec = logdata;2701while(rec < logend && *rec !='>'&& *rec !='\n')2702 rec++;2703if(rec == logend || *rec =='\n')2704die("Log%sis corrupt.", logfile);2705 date =strtoul(rec +1, &tz_c,10);2706 tz =strtoul(tz_c, NULL,10);2707if(get_sha1_hex(logdata, sha1))2708die("Log%sis corrupt.", logfile);2709if(is_null_sha1(sha1)) {2710if(get_sha1_hex(logdata +41, sha1))2711die("Log%sis corrupt.", logfile);2712}2713if(msg)2714*msg =ref_msg(logdata, logend);2715munmap(log_mapped, mapsz);27162717if(cutoff_time)2718*cutoff_time = date;2719if(cutoff_tz)2720*cutoff_tz = tz;2721if(cutoff_cnt)2722*cutoff_cnt = reccnt;2723return1;2724}27252726static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)2727{2728unsigned char osha1[20], nsha1[20];2729char*email_end, *message;2730unsigned long timestamp;2731int tz;27322733/* old SP new SP name <email> SP time TAB msg LF */2734if(sb->len <83|| sb->buf[sb->len -1] !='\n'||2735get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||2736get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||2737!(email_end =strchr(sb->buf +82,'>')) ||2738 email_end[1] !=' '||2739!(timestamp =strtoul(email_end +2, &message,10)) ||2740!message || message[0] !=' '||2741(message[1] !='+'&& message[1] !='-') ||2742!isdigit(message[2]) || !isdigit(message[3]) ||2743!isdigit(message[4]) || !isdigit(message[5]))2744return0;/* corrupt? */2745 email_end[1] ='\0';2746 tz =strtol(message +1, NULL,10);2747if(message[6] !='\t')2748 message +=6;2749else2750 message +=7;2751returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);2752}27532754static char*find_beginning_of_line(char*bob,char*scan)2755{2756while(bob < scan && *(--scan) !='\n')2757;/* keep scanning backwards */2758/*2759 * Return either beginning of the buffer, or LF at the end of2760 * the previous line.2761 */2762return scan;2763}27642765intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)2766{2767struct strbuf sb = STRBUF_INIT;2768FILE*logfp;2769long pos;2770int ret =0, at_tail =1;27712772 logfp =fopen(git_path("logs/%s", refname),"r");2773if(!logfp)2774return-1;27752776/* Jump to the end */2777if(fseek(logfp,0, SEEK_END) <0)2778returnerror("cannot seek back reflog for%s:%s",2779 refname,strerror(errno));2780 pos =ftell(logfp);2781while(!ret &&0< pos) {2782int cnt;2783size_t nread;2784char buf[BUFSIZ];2785char*endp, *scanp;27862787/* Fill next block from the end */2788 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;2789if(fseek(logfp, pos - cnt, SEEK_SET))2790returnerror("cannot seek back reflog for%s:%s",2791 refname,strerror(errno));2792 nread =fread(buf, cnt,1, logfp);2793if(nread !=1)2794returnerror("cannot read%dbytes from reflog for%s:%s",2795 cnt, refname,strerror(errno));2796 pos -= cnt;27972798 scanp = endp = buf + cnt;2799if(at_tail && scanp[-1] =='\n')2800/* Looking at the final LF at the end of the file */2801 scanp--;2802 at_tail =0;28032804while(buf < scanp) {2805/*2806 * terminating LF of the previous line, or the beginning2807 * of the buffer.2808 */2809char*bp;28102811 bp =find_beginning_of_line(buf, scanp);28122813if(*bp !='\n') {2814strbuf_splice(&sb,0,0, buf, endp - buf);2815if(pos)2816break;/* need to fill another block */2817 scanp = buf -1;/* leave loop */2818}else{2819/*2820 * (bp + 1) thru endp is the beginning of the2821 * current line we have in sb2822 */2823strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));2824 scanp = bp;2825 endp = bp +1;2826}2827 ret =show_one_reflog_ent(&sb, fn, cb_data);2828strbuf_reset(&sb);2829if(ret)2830break;2831}28322833}2834if(!ret && sb.len)2835 ret =show_one_reflog_ent(&sb, fn, cb_data);28362837fclose(logfp);2838strbuf_release(&sb);2839return ret;2840}28412842intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)2843{2844FILE*logfp;2845struct strbuf sb = STRBUF_INIT;2846int ret =0;28472848 logfp =fopen(git_path("logs/%s", refname),"r");2849if(!logfp)2850return-1;28512852while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))2853 ret =show_one_reflog_ent(&sb, fn, cb_data);2854fclose(logfp);2855strbuf_release(&sb);2856return ret;2857}2858/*2859 * Call fn for each reflog in the namespace indicated by name. name2860 * must be empty or end with '/'. Name will be used as a scratch2861 * space, but its contents will be restored before return.2862 */2863static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)2864{2865DIR*d =opendir(git_path("logs/%s", name->buf));2866int retval =0;2867struct dirent *de;2868int oldlen = name->len;28692870if(!d)2871return name->len ? errno :0;28722873while((de =readdir(d)) != NULL) {2874struct stat st;28752876if(de->d_name[0] =='.')2877continue;2878if(has_extension(de->d_name,".lock"))2879continue;2880strbuf_addstr(name, de->d_name);2881if(stat(git_path("logs/%s", name->buf), &st) <0) {2882;/* silently ignore */2883}else{2884if(S_ISDIR(st.st_mode)) {2885strbuf_addch(name,'/');2886 retval =do_for_each_reflog(name, fn, cb_data);2887}else{2888unsigned char sha1[20];2889if(read_ref_full(name->buf, sha1,0, NULL))2890 retval =error("bad ref for%s", name->buf);2891else2892 retval =fn(name->buf, sha1,0, cb_data);2893}2894if(retval)2895break;2896}2897strbuf_setlen(name, oldlen);2898}2899closedir(d);2900return retval;2901}29022903intfor_each_reflog(each_ref_fn fn,void*cb_data)2904{2905int retval;2906struct strbuf name;2907strbuf_init(&name, PATH_MAX);2908 retval =do_for_each_reflog(&name, fn, cb_data);2909strbuf_release(&name);2910return retval;2911}29122913intupdate_ref(const char*action,const char*refname,2914const unsigned char*sha1,const unsigned char*oldval,2915int flags,enum action_on_err onerr)2916{2917static struct ref_lock *lock;2918 lock =lock_any_ref_for_update(refname, oldval, flags);2919if(!lock) {2920const char*str ="Cannot lock the ref '%s'.";2921switch(onerr) {2922case MSG_ON_ERR:error(str, refname);break;2923case DIE_ON_ERR:die(str, refname);break;2924case QUIET_ON_ERR:break;2925}2926return1;2927}2928if(write_ref_sha1(lock, sha1, action) <0) {2929const char*str ="Cannot update the ref '%s'.";2930switch(onerr) {2931case MSG_ON_ERR:error(str, refname);break;2932case DIE_ON_ERR:die(str, refname);break;2933case QUIET_ON_ERR:break;2934}2935return1;2936}2937return0;2938}29392940struct ref *find_ref_by_name(const struct ref *list,const char*name)2941{2942for( ; list; list = list->next)2943if(!strcmp(list->name, name))2944return(struct ref *)list;2945return NULL;2946}29472948/*2949 * generate a format suitable for scanf from a ref_rev_parse_rules2950 * rule, that is replace the "%.*s" spec with a "%s" spec2951 */2952static voidgen_scanf_fmt(char*scanf_fmt,const char*rule)2953{2954char*spec;29552956 spec =strstr(rule,"%.*s");2957if(!spec ||strstr(spec +4,"%.*s"))2958die("invalid rule in ref_rev_parse_rules:%s", rule);29592960/* copy all until spec */2961strncpy(scanf_fmt, rule, spec - rule);2962 scanf_fmt[spec - rule] ='\0';2963/* copy new spec */2964strcat(scanf_fmt,"%s");2965/* copy remaining rule */2966strcat(scanf_fmt, spec +4);29672968return;2969}29702971char*shorten_unambiguous_ref(const char*refname,int strict)2972{2973int i;2974static char**scanf_fmts;2975static int nr_rules;2976char*short_name;29772978/* pre generate scanf formats from ref_rev_parse_rules[] */2979if(!nr_rules) {2980size_t total_len =0;29812982/* the rule list is NULL terminated, count them first */2983for(; ref_rev_parse_rules[nr_rules]; nr_rules++)2984/* no +1 because strlen("%s") < strlen("%.*s") */2985 total_len +=strlen(ref_rev_parse_rules[nr_rules]);29862987 scanf_fmts =xmalloc(nr_rules *sizeof(char*) + total_len);29882989 total_len =0;2990for(i =0; i < nr_rules; i++) {2991 scanf_fmts[i] = (char*)&scanf_fmts[nr_rules]2992+ total_len;2993gen_scanf_fmt(scanf_fmts[i], ref_rev_parse_rules[i]);2994 total_len +=strlen(ref_rev_parse_rules[i]);2995}2996}29972998/* bail out if there are no rules */2999if(!nr_rules)3000returnxstrdup(refname);30013002/* buffer for scanf result, at most refname must fit */3003 short_name =xstrdup(refname);30043005/* skip first rule, it will always match */3006for(i = nr_rules -1; i >0; --i) {3007int j;3008int rules_to_fail = i;3009int short_name_len;30103011if(1!=sscanf(refname, scanf_fmts[i], short_name))3012continue;30133014 short_name_len =strlen(short_name);30153016/*3017 * in strict mode, all (except the matched one) rules3018 * must fail to resolve to a valid non-ambiguous ref3019 */3020if(strict)3021 rules_to_fail = nr_rules;30223023/*3024 * check if the short name resolves to a valid ref,3025 * but use only rules prior to the matched one3026 */3027for(j =0; j < rules_to_fail; j++) {3028const char*rule = ref_rev_parse_rules[j];3029char refname[PATH_MAX];30303031/* skip matched rule */3032if(i == j)3033continue;30343035/*3036 * the short name is ambiguous, if it resolves3037 * (with this previous rule) to a valid ref3038 * read_ref() returns 0 on success3039 */3040mksnpath(refname,sizeof(refname),3041 rule, short_name_len, short_name);3042if(ref_exists(refname))3043break;3044}30453046/*3047 * short name is non-ambiguous if all previous rules3048 * haven't resolved to a valid ref3049 */3050if(j == rules_to_fail)3051return short_name;3052}30533054free(short_name);3055returnxstrdup(refname);3056}30573058static struct string_list *hide_refs;30593060intparse_hide_refs_config(const char*var,const char*value,const char*section)3061{3062if(!strcmp("transfer.hiderefs", var) ||3063/* NEEDSWORK: use parse_config_key() once both are merged */3064(!prefixcmp(var, section) && var[strlen(section)] =='.'&&3065!strcmp(var +strlen(section),".hiderefs"))) {3066char*ref;3067int len;30683069if(!value)3070returnconfig_error_nonbool(var);3071 ref =xstrdup(value);3072 len =strlen(ref);3073while(len && ref[len -1] =='/')3074 ref[--len] ='\0';3075if(!hide_refs) {3076 hide_refs =xcalloc(1,sizeof(*hide_refs));3077 hide_refs->strdup_strings =1;3078}3079string_list_append(hide_refs, ref);3080}3081return0;3082}30833084intref_is_hidden(const char*refname)3085{3086struct string_list_item *item;30873088if(!hide_refs)3089return0;3090for_each_string_list_item(item, hide_refs) {3091int len;3092if(prefixcmp(refname, item->string))3093continue;3094 len =strlen(item->string);3095if(!refname[len] || refname[len] =='/')3096return1;3097}3098return0;3099}