1#include"cache.h" 2#include"lockfile.h" 3#include"refs.h" 4#include"object.h" 5#include"tag.h" 6#include"dir.h" 7#include"string-list.h" 8 9struct ref_lock { 10char*ref_name; 11char*orig_ref_name; 12struct lock_file *lk; 13unsigned char old_sha1[20]; 14int lock_fd; 15int force_write; 16}; 17 18/* 19 * How to handle various characters in refnames: 20 * 0: An acceptable character for refs 21 * 1: End-of-component 22 * 2: ., look for a preceding . to reject .. in refs 23 * 3: {, look for a preceding @ to reject @{ in refs 24 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP 25 */ 26static unsigned char refname_disposition[256] = { 271,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 284,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 294,0,0,0,0,0,0,0,0,0,4,0,0,0,2,1, 300,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4, 310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 320,0,0,0,0,0,0,0,0,0,0,4,4,0,4,0, 330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 340,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4 35}; 36 37/* 38 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken 39 * refs (i.e., because the reference is about to be deleted anyway). 40 */ 41#define REF_DELETING 0x02 42 43/* 44 * Used as a flag in ref_update::flags when a loose ref is being 45 * pruned. 46 */ 47#define REF_ISPRUNING 0x04 48 49/* 50 * Used as a flag in ref_update::flags when old_sha1 should be 51 * checked. 52 */ 53#define REF_HAVE_OLD 0x08 54 55/* 56 * Try to read one refname component from the front of refname. 57 * Return the length of the component found, or -1 if the component is 58 * not legal. It is legal if it is something reasonable to have under 59 * ".git/refs/"; We do not like it if: 60 * 61 * - any path component of it begins with ".", or 62 * - it has double dots "..", or 63 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or 64 * - it ends with a "/". 65 * - it ends with ".lock" 66 * - it contains a "\" (backslash) 67 */ 68static intcheck_refname_component(const char*refname,int flags) 69{ 70const char*cp; 71char last ='\0'; 72 73for(cp = refname; ; cp++) { 74int ch = *cp &255; 75unsigned char disp = refname_disposition[ch]; 76switch(disp) { 77case1: 78goto out; 79case2: 80if(last =='.') 81return-1;/* Refname contains "..". */ 82break; 83case3: 84if(last =='@') 85return-1;/* Refname contains "@{". */ 86break; 87case4: 88return-1; 89} 90 last = ch; 91} 92out: 93if(cp == refname) 94return0;/* Component has zero length. */ 95if(refname[0] =='.') 96return-1;/* Component starts with '.'. */ 97if(cp - refname >= LOCK_SUFFIX_LEN && 98!memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN)) 99return-1;/* Refname ends with ".lock". */ 100return cp - refname; 101} 102 103intcheck_refname_format(const char*refname,int flags) 104{ 105int component_len, component_count =0; 106 107if(!strcmp(refname,"@")) 108/* Refname is a single character '@'. */ 109return-1; 110 111while(1) { 112/* We are at the start of a path component. */ 113 component_len =check_refname_component(refname, flags); 114if(component_len <=0) { 115if((flags & REFNAME_REFSPEC_PATTERN) && 116 refname[0] =='*'&& 117(refname[1] =='\0'|| refname[1] =='/')) { 118/* Accept one wildcard as a full refname component. */ 119 flags &= ~REFNAME_REFSPEC_PATTERN; 120 component_len =1; 121}else{ 122return-1; 123} 124} 125 component_count++; 126if(refname[component_len] =='\0') 127break; 128/* Skip to next component. */ 129 refname += component_len +1; 130} 131 132if(refname[component_len -1] =='.') 133return-1;/* Refname ends with '.'. */ 134if(!(flags & REFNAME_ALLOW_ONELEVEL) && component_count <2) 135return-1;/* Refname has only one component. */ 136return0; 137} 138 139struct ref_entry; 140 141/* 142 * Information used (along with the information in ref_entry) to 143 * describe a single cached reference. This data structure only 144 * occurs embedded in a union in struct ref_entry, and only when 145 * (ref_entry->flag & REF_DIR) is zero. 146 */ 147struct ref_value { 148/* 149 * The name of the object to which this reference resolves 150 * (which may be a tag object). If REF_ISBROKEN, this is 151 * null. If REF_ISSYMREF, then this is the name of the object 152 * referred to by the last reference in the symlink chain. 153 */ 154unsigned char sha1[20]; 155 156/* 157 * If REF_KNOWS_PEELED, then this field holds the peeled value 158 * of this reference, or null if the reference is known not to 159 * be peelable. See the documentation for peel_ref() for an 160 * exact definition of "peelable". 161 */ 162unsigned char peeled[20]; 163}; 164 165struct ref_cache; 166 167/* 168 * Information used (along with the information in ref_entry) to 169 * describe a level in the hierarchy of references. This data 170 * structure only occurs embedded in a union in struct ref_entry, and 171 * only when (ref_entry.flag & REF_DIR) is set. In that case, 172 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 173 * in the directory have already been read: 174 * 175 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 176 * or packed references, already read. 177 * 178 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 179 * references that hasn't been read yet (nor has any of its 180 * subdirectories). 181 * 182 * Entries within a directory are stored within a growable array of 183 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 184 * sorted are sorted by their component name in strcmp() order and the 185 * remaining entries are unsorted. 186 * 187 * Loose references are read lazily, one directory at a time. When a 188 * directory of loose references is read, then all of the references 189 * in that directory are stored, and REF_INCOMPLETE stubs are created 190 * for any subdirectories, but the subdirectories themselves are not 191 * read. The reading is triggered by get_ref_dir(). 192 */ 193struct ref_dir { 194int nr, alloc; 195 196/* 197 * Entries with index 0 <= i < sorted are sorted by name. New 198 * entries are appended to the list unsorted, and are sorted 199 * only when required; thus we avoid the need to sort the list 200 * after the addition of every reference. 201 */ 202int sorted; 203 204/* A pointer to the ref_cache that contains this ref_dir. */ 205struct ref_cache *ref_cache; 206 207struct ref_entry **entries; 208}; 209 210/* 211 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 212 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 213 * public values; see refs.h. 214 */ 215 216/* 217 * The field ref_entry->u.value.peeled of this value entry contains 218 * the correct peeled value for the reference, which might be 219 * null_sha1 if the reference is not a tag or if it is broken. 220 */ 221#define REF_KNOWS_PEELED 0x10 222 223/* ref_entry represents a directory of references */ 224#define REF_DIR 0x20 225 226/* 227 * Entry has not yet been read from disk (used only for REF_DIR 228 * entries representing loose references) 229 */ 230#define REF_INCOMPLETE 0x40 231 232/* 233 * A ref_entry represents either a reference or a "subdirectory" of 234 * references. 235 * 236 * Each directory in the reference namespace is represented by a 237 * ref_entry with (flags & REF_DIR) set and containing a subdir member 238 * that holds the entries in that directory that have been read so 239 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 240 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 241 * used for loose reference directories. 242 * 243 * References are represented by a ref_entry with (flags & REF_DIR) 244 * unset and a value member that describes the reference's value. The 245 * flag member is at the ref_entry level, but it is also needed to 246 * interpret the contents of the value field (in other words, a 247 * ref_value object is not very much use without the enclosing 248 * ref_entry). 249 * 250 * Reference names cannot end with slash and directories' names are 251 * always stored with a trailing slash (except for the top-level 252 * directory, which is always denoted by ""). This has two nice 253 * consequences: (1) when the entries in each subdir are sorted 254 * lexicographically by name (as they usually are), the references in 255 * a whole tree can be generated in lexicographic order by traversing 256 * the tree in left-to-right, depth-first order; (2) the names of 257 * references and subdirectories cannot conflict, and therefore the 258 * presence of an empty subdirectory does not block the creation of a 259 * similarly-named reference. (The fact that reference names with the 260 * same leading components can conflict *with each other* is a 261 * separate issue that is regulated by is_refname_available().) 262 * 263 * Please note that the name field contains the fully-qualified 264 * reference (or subdirectory) name. Space could be saved by only 265 * storing the relative names. But that would require the full names 266 * to be generated on the fly when iterating in do_for_each_ref(), and 267 * would break callback functions, who have always been able to assume 268 * that the name strings that they are passed will not be freed during 269 * the iteration. 270 */ 271struct ref_entry { 272unsigned char flag;/* ISSYMREF? ISPACKED? */ 273union{ 274struct ref_value value;/* if not (flags&REF_DIR) */ 275struct ref_dir subdir;/* if (flags&REF_DIR) */ 276} u; 277/* 278 * The full name of the reference (e.g., "refs/heads/master") 279 * or the full name of the directory with a trailing slash 280 * (e.g., "refs/heads/"): 281 */ 282char name[FLEX_ARRAY]; 283}; 284 285static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 286 287static struct ref_dir *get_ref_dir(struct ref_entry *entry) 288{ 289struct ref_dir *dir; 290assert(entry->flag & REF_DIR); 291 dir = &entry->u.subdir; 292if(entry->flag & REF_INCOMPLETE) { 293read_loose_refs(entry->name, dir); 294 entry->flag &= ~REF_INCOMPLETE; 295} 296return dir; 297} 298 299/* 300 * Check if a refname is safe. 301 * For refs that start with "refs/" we consider it safe as long they do 302 * not try to resolve to outside of refs/. 303 * 304 * For all other refs we only consider them safe iff they only contain 305 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like 306 * "config"). 307 */ 308static intrefname_is_safe(const char*refname) 309{ 310if(starts_with(refname,"refs/")) { 311char*buf; 312int result; 313 314 buf =xmalloc(strlen(refname) +1); 315/* 316 * Does the refname try to escape refs/? 317 * For example: refs/foo/../bar is safe but refs/foo/../../bar 318 * is not. 319 */ 320 result = !normalize_path_copy(buf, refname +strlen("refs/")); 321free(buf); 322return result; 323} 324while(*refname) { 325if(!isupper(*refname) && *refname !='_') 326return0; 327 refname++; 328} 329return1; 330} 331 332static struct ref_entry *create_ref_entry(const char*refname, 333const unsigned char*sha1,int flag, 334int check_name) 335{ 336int len; 337struct ref_entry *ref; 338 339if(check_name && 340check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 341die("Reference has invalid format: '%s'", refname); 342if(!check_name && !refname_is_safe(refname)) 343die("Reference has invalid name: '%s'", refname); 344 len =strlen(refname) +1; 345 ref =xmalloc(sizeof(struct ref_entry) + len); 346hashcpy(ref->u.value.sha1, sha1); 347hashclr(ref->u.value.peeled); 348memcpy(ref->name, refname, len); 349 ref->flag = flag; 350return ref; 351} 352 353static voidclear_ref_dir(struct ref_dir *dir); 354 355static voidfree_ref_entry(struct ref_entry *entry) 356{ 357if(entry->flag & REF_DIR) { 358/* 359 * Do not use get_ref_dir() here, as that might 360 * trigger the reading of loose refs. 361 */ 362clear_ref_dir(&entry->u.subdir); 363} 364free(entry); 365} 366 367/* 368 * Add a ref_entry to the end of dir (unsorted). Entry is always 369 * stored directly in dir; no recursion into subdirectories is 370 * done. 371 */ 372static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 373{ 374ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 375 dir->entries[dir->nr++] = entry; 376/* optimize for the case that entries are added in order */ 377if(dir->nr ==1|| 378(dir->nr == dir->sorted +1&& 379strcmp(dir->entries[dir->nr -2]->name, 380 dir->entries[dir->nr -1]->name) <0)) 381 dir->sorted = dir->nr; 382} 383 384/* 385 * Clear and free all entries in dir, recursively. 386 */ 387static voidclear_ref_dir(struct ref_dir *dir) 388{ 389int i; 390for(i =0; i < dir->nr; i++) 391free_ref_entry(dir->entries[i]); 392free(dir->entries); 393 dir->sorted = dir->nr = dir->alloc =0; 394 dir->entries = NULL; 395} 396 397/* 398 * Create a struct ref_entry object for the specified dirname. 399 * dirname is the name of the directory with a trailing slash (e.g., 400 * "refs/heads/") or "" for the top-level directory. 401 */ 402static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 403const char*dirname,size_t len, 404int incomplete) 405{ 406struct ref_entry *direntry; 407 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 408memcpy(direntry->name, dirname, len); 409 direntry->name[len] ='\0'; 410 direntry->u.subdir.ref_cache = ref_cache; 411 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 412return direntry; 413} 414 415static intref_entry_cmp(const void*a,const void*b) 416{ 417struct ref_entry *one = *(struct ref_entry **)a; 418struct ref_entry *two = *(struct ref_entry **)b; 419returnstrcmp(one->name, two->name); 420} 421 422static voidsort_ref_dir(struct ref_dir *dir); 423 424struct string_slice { 425size_t len; 426const char*str; 427}; 428 429static intref_entry_cmp_sslice(const void*key_,const void*ent_) 430{ 431const struct string_slice *key = key_; 432const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 433int cmp =strncmp(key->str, ent->name, key->len); 434if(cmp) 435return cmp; 436return'\0'- (unsigned char)ent->name[key->len]; 437} 438 439/* 440 * Return the index of the entry with the given refname from the 441 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 442 * no such entry is found. dir must already be complete. 443 */ 444static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 445{ 446struct ref_entry **r; 447struct string_slice key; 448 449if(refname == NULL || !dir->nr) 450return-1; 451 452sort_ref_dir(dir); 453 key.len = len; 454 key.str = refname; 455 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 456 ref_entry_cmp_sslice); 457 458if(r == NULL) 459return-1; 460 461return r - dir->entries; 462} 463 464/* 465 * Search for a directory entry directly within dir (without 466 * recursing). Sort dir if necessary. subdirname must be a directory 467 * name (i.e., end in '/'). If mkdir is set, then create the 468 * directory if it is missing; otherwise, return NULL if the desired 469 * directory cannot be found. dir must already be complete. 470 */ 471static struct ref_dir *search_for_subdir(struct ref_dir *dir, 472const char*subdirname,size_t len, 473int mkdir) 474{ 475int entry_index =search_ref_dir(dir, subdirname, len); 476struct ref_entry *entry; 477if(entry_index == -1) { 478if(!mkdir) 479return NULL; 480/* 481 * Since dir is complete, the absence of a subdir 482 * means that the subdir really doesn't exist; 483 * therefore, create an empty record for it but mark 484 * the record complete. 485 */ 486 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 487add_entry_to_dir(dir, entry); 488}else{ 489 entry = dir->entries[entry_index]; 490} 491returnget_ref_dir(entry); 492} 493 494/* 495 * If refname is a reference name, find the ref_dir within the dir 496 * tree that should hold refname. If refname is a directory name 497 * (i.e., ends in '/'), then return that ref_dir itself. dir must 498 * represent the top-level directory and must already be complete. 499 * Sort ref_dirs and recurse into subdirectories as necessary. If 500 * mkdir is set, then create any missing directories; otherwise, 501 * return NULL if the desired directory cannot be found. 502 */ 503static struct ref_dir *find_containing_dir(struct ref_dir *dir, 504const char*refname,int mkdir) 505{ 506const char*slash; 507for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 508size_t dirnamelen = slash - refname +1; 509struct ref_dir *subdir; 510 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 511if(!subdir) { 512 dir = NULL; 513break; 514} 515 dir = subdir; 516} 517 518return dir; 519} 520 521/* 522 * Find the value entry with the given name in dir, sorting ref_dirs 523 * and recursing into subdirectories as necessary. If the name is not 524 * found or it corresponds to a directory entry, return NULL. 525 */ 526static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 527{ 528int entry_index; 529struct ref_entry *entry; 530 dir =find_containing_dir(dir, refname,0); 531if(!dir) 532return NULL; 533 entry_index =search_ref_dir(dir, refname,strlen(refname)); 534if(entry_index == -1) 535return NULL; 536 entry = dir->entries[entry_index]; 537return(entry->flag & REF_DIR) ? NULL : entry; 538} 539 540/* 541 * Remove the entry with the given name from dir, recursing into 542 * subdirectories as necessary. If refname is the name of a directory 543 * (i.e., ends with '/'), then remove the directory and its contents. 544 * If the removal was successful, return the number of entries 545 * remaining in the directory entry that contained the deleted entry. 546 * If the name was not found, return -1. Please note that this 547 * function only deletes the entry from the cache; it does not delete 548 * it from the filesystem or ensure that other cache entries (which 549 * might be symbolic references to the removed entry) are updated. 550 * Nor does it remove any containing dir entries that might be made 551 * empty by the removal. dir must represent the top-level directory 552 * and must already be complete. 553 */ 554static intremove_entry(struct ref_dir *dir,const char*refname) 555{ 556int refname_len =strlen(refname); 557int entry_index; 558struct ref_entry *entry; 559int is_dir = refname[refname_len -1] =='/'; 560if(is_dir) { 561/* 562 * refname represents a reference directory. Remove 563 * the trailing slash; otherwise we will get the 564 * directory *representing* refname rather than the 565 * one *containing* it. 566 */ 567char*dirname =xmemdupz(refname, refname_len -1); 568 dir =find_containing_dir(dir, dirname,0); 569free(dirname); 570}else{ 571 dir =find_containing_dir(dir, refname,0); 572} 573if(!dir) 574return-1; 575 entry_index =search_ref_dir(dir, refname, refname_len); 576if(entry_index == -1) 577return-1; 578 entry = dir->entries[entry_index]; 579 580memmove(&dir->entries[entry_index], 581&dir->entries[entry_index +1], 582(dir->nr - entry_index -1) *sizeof(*dir->entries) 583); 584 dir->nr--; 585if(dir->sorted > entry_index) 586 dir->sorted--; 587free_ref_entry(entry); 588return dir->nr; 589} 590 591/* 592 * Add a ref_entry to the ref_dir (unsorted), recursing into 593 * subdirectories as necessary. dir must represent the top-level 594 * directory. Return 0 on success. 595 */ 596static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 597{ 598 dir =find_containing_dir(dir, ref->name,1); 599if(!dir) 600return-1; 601add_entry_to_dir(dir, ref); 602return0; 603} 604 605/* 606 * Emit a warning and return true iff ref1 and ref2 have the same name 607 * and the same sha1. Die if they have the same name but different 608 * sha1s. 609 */ 610static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 611{ 612if(strcmp(ref1->name, ref2->name)) 613return0; 614 615/* Duplicate name; make sure that they don't conflict: */ 616 617if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 618/* This is impossible by construction */ 619die("Reference directory conflict:%s", ref1->name); 620 621if(hashcmp(ref1->u.value.sha1, ref2->u.value.sha1)) 622die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 623 624warning("Duplicated ref:%s", ref1->name); 625return1; 626} 627 628/* 629 * Sort the entries in dir non-recursively (if they are not already 630 * sorted) and remove any duplicate entries. 631 */ 632static voidsort_ref_dir(struct ref_dir *dir) 633{ 634int i, j; 635struct ref_entry *last = NULL; 636 637/* 638 * This check also prevents passing a zero-length array to qsort(), 639 * which is a problem on some platforms. 640 */ 641if(dir->sorted == dir->nr) 642return; 643 644qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 645 646/* Remove any duplicates: */ 647for(i =0, j =0; j < dir->nr; j++) { 648struct ref_entry *entry = dir->entries[j]; 649if(last &&is_dup_ref(last, entry)) 650free_ref_entry(entry); 651else 652 last = dir->entries[i++] = entry; 653} 654 dir->sorted = dir->nr = i; 655} 656 657/* Include broken references in a do_for_each_ref*() iteration: */ 658#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 659 660/* 661 * Return true iff the reference described by entry can be resolved to 662 * an object in the database. Emit a warning if the referred-to 663 * object does not exist. 664 */ 665static intref_resolves_to_object(struct ref_entry *entry) 666{ 667if(entry->flag & REF_ISBROKEN) 668return0; 669if(!has_sha1_file(entry->u.value.sha1)) { 670error("%sdoes not point to a valid object!", entry->name); 671return0; 672} 673return1; 674} 675 676/* 677 * current_ref is a performance hack: when iterating over references 678 * using the for_each_ref*() functions, current_ref is set to the 679 * current reference's entry before calling the callback function. If 680 * the callback function calls peel_ref(), then peel_ref() first 681 * checks whether the reference to be peeled is the current reference 682 * (it usually is) and if so, returns that reference's peeled version 683 * if it is available. This avoids a refname lookup in a common case. 684 */ 685static struct ref_entry *current_ref; 686 687typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 688 689struct ref_entry_cb { 690const char*base; 691int trim; 692int flags; 693 each_ref_fn *fn; 694void*cb_data; 695}; 696 697/* 698 * Handle one reference in a do_for_each_ref*()-style iteration, 699 * calling an each_ref_fn for each entry. 700 */ 701static intdo_one_ref(struct ref_entry *entry,void*cb_data) 702{ 703struct ref_entry_cb *data = cb_data; 704struct ref_entry *old_current_ref; 705int retval; 706 707if(!starts_with(entry->name, data->base)) 708return0; 709 710if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 711!ref_resolves_to_object(entry)) 712return0; 713 714/* Store the old value, in case this is a recursive call: */ 715 old_current_ref = current_ref; 716 current_ref = entry; 717 retval = data->fn(entry->name + data->trim, entry->u.value.sha1, 718 entry->flag, data->cb_data); 719 current_ref = old_current_ref; 720return retval; 721} 722 723/* 724 * Call fn for each reference in dir that has index in the range 725 * offset <= index < dir->nr. Recurse into subdirectories that are in 726 * that index range, sorting them before iterating. This function 727 * does not sort dir itself; it should be sorted beforehand. fn is 728 * called for all references, including broken ones. 729 */ 730static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 731 each_ref_entry_fn fn,void*cb_data) 732{ 733int i; 734assert(dir->sorted == dir->nr); 735for(i = offset; i < dir->nr; i++) { 736struct ref_entry *entry = dir->entries[i]; 737int retval; 738if(entry->flag & REF_DIR) { 739struct ref_dir *subdir =get_ref_dir(entry); 740sort_ref_dir(subdir); 741 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 742}else{ 743 retval =fn(entry, cb_data); 744} 745if(retval) 746return retval; 747} 748return0; 749} 750 751/* 752 * Call fn for each reference in the union of dir1 and dir2, in order 753 * by refname. Recurse into subdirectories. If a value entry appears 754 * in both dir1 and dir2, then only process the version that is in 755 * dir2. The input dirs must already be sorted, but subdirs will be 756 * sorted as needed. fn is called for all references, including 757 * broken ones. 758 */ 759static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 760struct ref_dir *dir2, 761 each_ref_entry_fn fn,void*cb_data) 762{ 763int retval; 764int i1 =0, i2 =0; 765 766assert(dir1->sorted == dir1->nr); 767assert(dir2->sorted == dir2->nr); 768while(1) { 769struct ref_entry *e1, *e2; 770int cmp; 771if(i1 == dir1->nr) { 772returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 773} 774if(i2 == dir2->nr) { 775returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 776} 777 e1 = dir1->entries[i1]; 778 e2 = dir2->entries[i2]; 779 cmp =strcmp(e1->name, e2->name); 780if(cmp ==0) { 781if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 782/* Both are directories; descend them in parallel. */ 783struct ref_dir *subdir1 =get_ref_dir(e1); 784struct ref_dir *subdir2 =get_ref_dir(e2); 785sort_ref_dir(subdir1); 786sort_ref_dir(subdir2); 787 retval =do_for_each_entry_in_dirs( 788 subdir1, subdir2, fn, cb_data); 789 i1++; 790 i2++; 791}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 792/* Both are references; ignore the one from dir1. */ 793 retval =fn(e2, cb_data); 794 i1++; 795 i2++; 796}else{ 797die("conflict between reference and directory:%s", 798 e1->name); 799} 800}else{ 801struct ref_entry *e; 802if(cmp <0) { 803 e = e1; 804 i1++; 805}else{ 806 e = e2; 807 i2++; 808} 809if(e->flag & REF_DIR) { 810struct ref_dir *subdir =get_ref_dir(e); 811sort_ref_dir(subdir); 812 retval =do_for_each_entry_in_dir( 813 subdir,0, fn, cb_data); 814}else{ 815 retval =fn(e, cb_data); 816} 817} 818if(retval) 819return retval; 820} 821} 822 823/* 824 * Load all of the refs from the dir into our in-memory cache. The hard work 825 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 826 * through all of the sub-directories. We do not even need to care about 827 * sorting, as traversal order does not matter to us. 828 */ 829static voidprime_ref_dir(struct ref_dir *dir) 830{ 831int i; 832for(i =0; i < dir->nr; i++) { 833struct ref_entry *entry = dir->entries[i]; 834if(entry->flag & REF_DIR) 835prime_ref_dir(get_ref_dir(entry)); 836} 837} 838 839static intentry_matches(struct ref_entry *entry,const struct string_list *list) 840{ 841return list &&string_list_has_string(list, entry->name); 842} 843 844struct nonmatching_ref_data { 845const struct string_list *skip; 846struct ref_entry *found; 847}; 848 849static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 850{ 851struct nonmatching_ref_data *data = vdata; 852 853if(entry_matches(entry, data->skip)) 854return0; 855 856 data->found = entry; 857return1; 858} 859 860static voidreport_refname_conflict(struct ref_entry *entry, 861const char*refname) 862{ 863error("'%s' exists; cannot create '%s'", entry->name, refname); 864} 865 866/* 867 * Return true iff a reference named refname could be created without 868 * conflicting with the name of an existing reference in dir. If 869 * skip is non-NULL, ignore potential conflicts with refs in skip 870 * (e.g., because they are scheduled for deletion in the same 871 * operation). 872 * 873 * Two reference names conflict if one of them exactly matches the 874 * leading components of the other; e.g., "foo/bar" conflicts with 875 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or 876 * "foo/barbados". 877 * 878 * skip must be sorted. 879 */ 880static intis_refname_available(const char*refname, 881const struct string_list *skip, 882struct ref_dir *dir) 883{ 884const char*slash; 885size_t len; 886int pos; 887char*dirname; 888 889for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 890/* 891 * We are still at a leading dir of the refname; we are 892 * looking for a conflict with a leaf entry. 893 * 894 * If we find one, we still must make sure it is 895 * not in "skip". 896 */ 897 pos =search_ref_dir(dir, refname, slash - refname); 898if(pos >=0) { 899struct ref_entry *entry = dir->entries[pos]; 900if(entry_matches(entry, skip)) 901return1; 902report_refname_conflict(entry, refname); 903return0; 904} 905 906 907/* 908 * Otherwise, we can try to continue our search with 909 * the next component; if we come up empty, we know 910 * there is nothing under this whole prefix. 911 */ 912 pos =search_ref_dir(dir, refname, slash +1- refname); 913if(pos <0) 914return1; 915 916 dir =get_ref_dir(dir->entries[pos]); 917} 918 919/* 920 * We are at the leaf of our refname; we want to 921 * make sure there are no directories which match it. 922 */ 923 len =strlen(refname); 924 dirname =xmallocz(len +1); 925sprintf(dirname,"%s/", refname); 926 pos =search_ref_dir(dir, dirname, len +1); 927free(dirname); 928 929if(pos >=0) { 930/* 931 * We found a directory named "refname". It is a 932 * problem iff it contains any ref that is not 933 * in "skip". 934 */ 935struct ref_entry *entry = dir->entries[pos]; 936struct ref_dir *dir =get_ref_dir(entry); 937struct nonmatching_ref_data data; 938 939 data.skip = skip; 940sort_ref_dir(dir); 941if(!do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) 942return1; 943 944report_refname_conflict(data.found, refname); 945return0; 946} 947 948/* 949 * There is no point in searching for another leaf 950 * node which matches it; such an entry would be the 951 * ref we are looking for, not a conflict. 952 */ 953return1; 954} 955 956struct packed_ref_cache { 957struct ref_entry *root; 958 959/* 960 * Count of references to the data structure in this instance, 961 * including the pointer from ref_cache::packed if any. The 962 * data will not be freed as long as the reference count is 963 * nonzero. 964 */ 965unsigned int referrers; 966 967/* 968 * Iff the packed-refs file associated with this instance is 969 * currently locked for writing, this points at the associated 970 * lock (which is owned by somebody else). The referrer count 971 * is also incremented when the file is locked and decremented 972 * when it is unlocked. 973 */ 974struct lock_file *lock; 975 976/* The metadata from when this packed-refs cache was read */ 977struct stat_validity validity; 978}; 979 980/* 981 * Future: need to be in "struct repository" 982 * when doing a full libification. 983 */ 984static struct ref_cache { 985struct ref_cache *next; 986struct ref_entry *loose; 987struct packed_ref_cache *packed; 988/* 989 * The submodule name, or "" for the main repo. We allocate 990 * length 1 rather than FLEX_ARRAY so that the main ref_cache 991 * is initialized correctly. 992 */ 993char name[1]; 994} ref_cache, *submodule_ref_caches; 995 996/* Lock used for the main packed-refs file: */ 997static struct lock_file packlock; 998 999/*1000 * Increment the reference count of *packed_refs.1001 */1002static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs)1003{1004 packed_refs->referrers++;1005}10061007/*1008 * Decrease the reference count of *packed_refs. If it goes to zero,1009 * free *packed_refs and return true; otherwise return false.1010 */1011static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs)1012{1013if(!--packed_refs->referrers) {1014free_ref_entry(packed_refs->root);1015stat_validity_clear(&packed_refs->validity);1016free(packed_refs);1017return1;1018}else{1019return0;1020}1021}10221023static voidclear_packed_ref_cache(struct ref_cache *refs)1024{1025if(refs->packed) {1026struct packed_ref_cache *packed_refs = refs->packed;10271028if(packed_refs->lock)1029die("internal error: packed-ref cache cleared while locked");1030 refs->packed = NULL;1031release_packed_ref_cache(packed_refs);1032}1033}10341035static voidclear_loose_ref_cache(struct ref_cache *refs)1036{1037if(refs->loose) {1038free_ref_entry(refs->loose);1039 refs->loose = NULL;1040}1041}10421043static struct ref_cache *create_ref_cache(const char*submodule)1044{1045int len;1046struct ref_cache *refs;1047if(!submodule)1048 submodule ="";1049 len =strlen(submodule) +1;1050 refs =xcalloc(1,sizeof(struct ref_cache) + len);1051memcpy(refs->name, submodule, len);1052return refs;1053}10541055/*1056 * Return a pointer to a ref_cache for the specified submodule. For1057 * the main repository, use submodule==NULL. The returned structure1058 * will be allocated and initialized but not necessarily populated; it1059 * should not be freed.1060 */1061static struct ref_cache *get_ref_cache(const char*submodule)1062{1063struct ref_cache *refs;10641065if(!submodule || !*submodule)1066return&ref_cache;10671068for(refs = submodule_ref_caches; refs; refs = refs->next)1069if(!strcmp(submodule, refs->name))1070return refs;10711072 refs =create_ref_cache(submodule);1073 refs->next = submodule_ref_caches;1074 submodule_ref_caches = refs;1075return refs;1076}10771078/* The length of a peeled reference line in packed-refs, including EOL: */1079#define PEELED_LINE_LENGTH 4210801081/*1082 * The packed-refs header line that we write out. Perhaps other1083 * traits will be added later. The trailing space is required.1084 */1085static const char PACKED_REFS_HEADER[] =1086"# pack-refs with: peeled fully-peeled\n";10871088/*1089 * Parse one line from a packed-refs file. Write the SHA1 to sha1.1090 * Return a pointer to the refname within the line (null-terminated),1091 * or NULL if there was a problem.1092 */1093static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1)1094{1095const char*ref;10961097/*1098 * 42: the answer to everything.1099 *1100 * In this case, it happens to be the answer to1101 * 40 (length of sha1 hex representation)1102 * +1 (space in between hex and name)1103 * +1 (newline at the end of the line)1104 */1105if(line->len <=42)1106return NULL;11071108if(get_sha1_hex(line->buf, sha1) <0)1109return NULL;1110if(!isspace(line->buf[40]))1111return NULL;11121113 ref = line->buf +41;1114if(isspace(*ref))1115return NULL;11161117if(line->buf[line->len -1] !='\n')1118return NULL;1119 line->buf[--line->len] =0;11201121return ref;1122}11231124/*1125 * Read f, which is a packed-refs file, into dir.1126 *1127 * A comment line of the form "# pack-refs with: " may contain zero or1128 * more traits. We interpret the traits as follows:1129 *1130 * No traits:1131 *1132 * Probably no references are peeled. But if the file contains a1133 * peeled value for a reference, we will use it.1134 *1135 * peeled:1136 *1137 * References under "refs/tags/", if they *can* be peeled, *are*1138 * peeled in this file. References outside of "refs/tags/" are1139 * probably not peeled even if they could have been, but if we find1140 * a peeled value for such a reference we will use it.1141 *1142 * fully-peeled:1143 *1144 * All references in the file that can be peeled are peeled.1145 * Inversely (and this is more important), any references in the1146 * file for which no peeled value is recorded is not peelable. This1147 * trait should typically be written alongside "peeled" for1148 * compatibility with older clients, but we do not require it1149 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1150 */1151static voidread_packed_refs(FILE*f,struct ref_dir *dir)1152{1153struct ref_entry *last = NULL;1154struct strbuf line = STRBUF_INIT;1155enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;11561157while(strbuf_getwholeline(&line, f,'\n') != EOF) {1158unsigned char sha1[20];1159const char*refname;1160const char*traits;11611162if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1163if(strstr(traits," fully-peeled "))1164 peeled = PEELED_FULLY;1165else if(strstr(traits," peeled "))1166 peeled = PEELED_TAGS;1167/* perhaps other traits later as well */1168continue;1169}11701171 refname =parse_ref_line(&line, sha1);1172if(refname) {1173int flag = REF_ISPACKED;11741175if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1176hashclr(sha1);1177 flag |= REF_BAD_NAME | REF_ISBROKEN;1178}1179 last =create_ref_entry(refname, sha1, flag,0);1180if(peeled == PEELED_FULLY ||1181(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1182 last->flag |= REF_KNOWS_PEELED;1183add_ref(dir, last);1184continue;1185}1186if(last &&1187 line.buf[0] =='^'&&1188 line.len == PEELED_LINE_LENGTH &&1189 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1190!get_sha1_hex(line.buf +1, sha1)) {1191hashcpy(last->u.value.peeled, sha1);1192/*1193 * Regardless of what the file header said,1194 * we definitely know the value of *this*1195 * reference:1196 */1197 last->flag |= REF_KNOWS_PEELED;1198}1199}12001201strbuf_release(&line);1202}12031204/*1205 * Get the packed_ref_cache for the specified ref_cache, creating it1206 * if necessary.1207 */1208static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)1209{1210const char*packed_refs_file;12111212if(*refs->name)1213 packed_refs_file =git_path_submodule(refs->name,"packed-refs");1214else1215 packed_refs_file =git_path("packed-refs");12161217if(refs->packed &&1218!stat_validity_check(&refs->packed->validity, packed_refs_file))1219clear_packed_ref_cache(refs);12201221if(!refs->packed) {1222FILE*f;12231224 refs->packed =xcalloc(1,sizeof(*refs->packed));1225acquire_packed_ref_cache(refs->packed);1226 refs->packed->root =create_dir_entry(refs,"",0,0);1227 f =fopen(packed_refs_file,"r");1228if(f) {1229stat_validity_update(&refs->packed->validity,fileno(f));1230read_packed_refs(f,get_ref_dir(refs->packed->root));1231fclose(f);1232}1233}1234return refs->packed;1235}12361237static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1238{1239returnget_ref_dir(packed_ref_cache->root);1240}12411242static struct ref_dir *get_packed_refs(struct ref_cache *refs)1243{1244returnget_packed_ref_dir(get_packed_ref_cache(refs));1245}12461247voidadd_packed_ref(const char*refname,const unsigned char*sha1)1248{1249struct packed_ref_cache *packed_ref_cache =1250get_packed_ref_cache(&ref_cache);12511252if(!packed_ref_cache->lock)1253die("internal error: packed refs not locked");1254add_ref(get_packed_ref_dir(packed_ref_cache),1255create_ref_entry(refname, sha1, REF_ISPACKED,1));1256}12571258/*1259 * Read the loose references from the namespace dirname into dir1260 * (without recursing). dirname must end with '/'. dir must be the1261 * directory entry corresponding to dirname.1262 */1263static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1264{1265struct ref_cache *refs = dir->ref_cache;1266DIR*d;1267const char*path;1268struct dirent *de;1269int dirnamelen =strlen(dirname);1270struct strbuf refname;12711272if(*refs->name)1273 path =git_path_submodule(refs->name,"%s", dirname);1274else1275 path =git_path("%s", dirname);12761277 d =opendir(path);1278if(!d)1279return;12801281strbuf_init(&refname, dirnamelen +257);1282strbuf_add(&refname, dirname, dirnamelen);12831284while((de =readdir(d)) != NULL) {1285unsigned char sha1[20];1286struct stat st;1287int flag;1288const char*refdir;12891290if(de->d_name[0] =='.')1291continue;1292if(ends_with(de->d_name,".lock"))1293continue;1294strbuf_addstr(&refname, de->d_name);1295 refdir = *refs->name1296?git_path_submodule(refs->name,"%s", refname.buf)1297:git_path("%s", refname.buf);1298if(stat(refdir, &st) <0) {1299;/* silently ignore */1300}else if(S_ISDIR(st.st_mode)) {1301strbuf_addch(&refname,'/');1302add_entry_to_dir(dir,1303create_dir_entry(refs, refname.buf,1304 refname.len,1));1305}else{1306if(*refs->name) {1307hashclr(sha1);1308 flag =0;1309if(resolve_gitlink_ref(refs->name, refname.buf, sha1) <0) {1310hashclr(sha1);1311 flag |= REF_ISBROKEN;1312}1313}else if(read_ref_full(refname.buf,1314 RESOLVE_REF_READING,1315 sha1, &flag)) {1316hashclr(sha1);1317 flag |= REF_ISBROKEN;1318}1319if(check_refname_format(refname.buf,1320 REFNAME_ALLOW_ONELEVEL)) {1321hashclr(sha1);1322 flag |= REF_BAD_NAME | REF_ISBROKEN;1323}1324add_entry_to_dir(dir,1325create_ref_entry(refname.buf, sha1, flag,0));1326}1327strbuf_setlen(&refname, dirnamelen);1328}1329strbuf_release(&refname);1330closedir(d);1331}13321333static struct ref_dir *get_loose_refs(struct ref_cache *refs)1334{1335if(!refs->loose) {1336/*1337 * Mark the top-level directory complete because we1338 * are about to read the only subdirectory that can1339 * hold references:1340 */1341 refs->loose =create_dir_entry(refs,"",0,0);1342/*1343 * Create an incomplete entry for "refs/":1344 */1345add_entry_to_dir(get_ref_dir(refs->loose),1346create_dir_entry(refs,"refs/",5,1));1347}1348returnget_ref_dir(refs->loose);1349}13501351/* We allow "recursive" symbolic refs. Only within reason, though */1352#define MAXDEPTH 51353#define MAXREFLEN (1024)13541355/*1356 * Called by resolve_gitlink_ref_recursive() after it failed to read1357 * from the loose refs in ref_cache refs. Find <refname> in the1358 * packed-refs file for the submodule.1359 */1360static intresolve_gitlink_packed_ref(struct ref_cache *refs,1361const char*refname,unsigned char*sha1)1362{1363struct ref_entry *ref;1364struct ref_dir *dir =get_packed_refs(refs);13651366 ref =find_ref(dir, refname);1367if(ref == NULL)1368return-1;13691370hashcpy(sha1, ref->u.value.sha1);1371return0;1372}13731374static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1375const char*refname,unsigned char*sha1,1376int recursion)1377{1378int fd, len;1379char buffer[128], *p;1380char*path;13811382if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1383return-1;1384 path = *refs->name1385?git_path_submodule(refs->name,"%s", refname)1386:git_path("%s", refname);1387 fd =open(path, O_RDONLY);1388if(fd <0)1389returnresolve_gitlink_packed_ref(refs, refname, sha1);13901391 len =read(fd, buffer,sizeof(buffer)-1);1392close(fd);1393if(len <0)1394return-1;1395while(len &&isspace(buffer[len-1]))1396 len--;1397 buffer[len] =0;13981399/* Was it a detached head or an old-fashioned symlink? */1400if(!get_sha1_hex(buffer, sha1))1401return0;14021403/* Symref? */1404if(strncmp(buffer,"ref:",4))1405return-1;1406 p = buffer +4;1407while(isspace(*p))1408 p++;14091410returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1411}14121413intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1414{1415int len =strlen(path), retval;1416char*submodule;1417struct ref_cache *refs;14181419while(len && path[len-1] =='/')1420 len--;1421if(!len)1422return-1;1423 submodule =xstrndup(path, len);1424 refs =get_ref_cache(submodule);1425free(submodule);14261427 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1428return retval;1429}14301431/*1432 * Return the ref_entry for the given refname from the packed1433 * references. If it does not exist, return NULL.1434 */1435static struct ref_entry *get_packed_ref(const char*refname)1436{1437returnfind_ref(get_packed_refs(&ref_cache), refname);1438}14391440/*1441 * A loose ref file doesn't exist; check for a packed ref. The1442 * options are forwarded from resolve_safe_unsafe().1443 */1444static intresolve_missing_loose_ref(const char*refname,1445int resolve_flags,1446unsigned char*sha1,1447int*flags)1448{1449struct ref_entry *entry;14501451/*1452 * The loose reference file does not exist; check for a packed1453 * reference.1454 */1455 entry =get_packed_ref(refname);1456if(entry) {1457hashcpy(sha1, entry->u.value.sha1);1458if(flags)1459*flags |= REF_ISPACKED;1460return0;1461}1462/* The reference is not a packed reference, either. */1463if(resolve_flags & RESOLVE_REF_READING) {1464 errno = ENOENT;1465return-1;1466}else{1467hashclr(sha1);1468return0;1469}1470}14711472/* This function needs to return a meaningful errno on failure */1473const char*resolve_ref_unsafe(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1474{1475int depth = MAXDEPTH;1476 ssize_t len;1477char buffer[256];1478static char refname_buffer[256];1479int bad_name =0;14801481if(flags)1482*flags =0;14831484if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1485if(flags)1486*flags |= REF_BAD_NAME;14871488if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1489!refname_is_safe(refname)) {1490 errno = EINVAL;1491return NULL;1492}1493/*1494 * dwim_ref() uses REF_ISBROKEN to distinguish between1495 * missing refs and refs that were present but invalid,1496 * to complain about the latter to stderr.1497 *1498 * We don't know whether the ref exists, so don't set1499 * REF_ISBROKEN yet.1500 */1501 bad_name =1;1502}1503for(;;) {1504char path[PATH_MAX];1505struct stat st;1506char*buf;1507int fd;15081509if(--depth <0) {1510 errno = ELOOP;1511return NULL;1512}15131514git_snpath(path,sizeof(path),"%s", refname);15151516/*1517 * We might have to loop back here to avoid a race1518 * condition: first we lstat() the file, then we try1519 * to read it as a link or as a file. But if somebody1520 * changes the type of the file (file <-> directory1521 * <-> symlink) between the lstat() and reading, then1522 * we don't want to report that as an error but rather1523 * try again starting with the lstat().1524 */1525 stat_ref:1526if(lstat(path, &st) <0) {1527if(errno != ENOENT)1528return NULL;1529if(resolve_missing_loose_ref(refname, resolve_flags,1530 sha1, flags))1531return NULL;1532if(bad_name) {1533hashclr(sha1);1534if(flags)1535*flags |= REF_ISBROKEN;1536}1537return refname;1538}15391540/* Follow "normalized" - ie "refs/.." symlinks by hand */1541if(S_ISLNK(st.st_mode)) {1542 len =readlink(path, buffer,sizeof(buffer)-1);1543if(len <0) {1544if(errno == ENOENT || errno == EINVAL)1545/* inconsistent with lstat; retry */1546goto stat_ref;1547else1548return NULL;1549}1550 buffer[len] =0;1551if(starts_with(buffer,"refs/") &&1552!check_refname_format(buffer,0)) {1553strcpy(refname_buffer, buffer);1554 refname = refname_buffer;1555if(flags)1556*flags |= REF_ISSYMREF;1557if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1558hashclr(sha1);1559return refname;1560}1561continue;1562}1563}15641565/* Is it a directory? */1566if(S_ISDIR(st.st_mode)) {1567 errno = EISDIR;1568return NULL;1569}15701571/*1572 * Anything else, just open it and try to use it as1573 * a ref1574 */1575 fd =open(path, O_RDONLY);1576if(fd <0) {1577if(errno == ENOENT)1578/* inconsistent with lstat; retry */1579goto stat_ref;1580else1581return NULL;1582}1583 len =read_in_full(fd, buffer,sizeof(buffer)-1);1584if(len <0) {1585int save_errno = errno;1586close(fd);1587 errno = save_errno;1588return NULL;1589}1590close(fd);1591while(len &&isspace(buffer[len-1]))1592 len--;1593 buffer[len] ='\0';15941595/*1596 * Is it a symbolic ref?1597 */1598if(!starts_with(buffer,"ref:")) {1599/*1600 * Please note that FETCH_HEAD has a second1601 * line containing other data.1602 */1603if(get_sha1_hex(buffer, sha1) ||1604(buffer[40] !='\0'&& !isspace(buffer[40]))) {1605if(flags)1606*flags |= REF_ISBROKEN;1607 errno = EINVAL;1608return NULL;1609}1610if(bad_name) {1611hashclr(sha1);1612if(flags)1613*flags |= REF_ISBROKEN;1614}1615return refname;1616}1617if(flags)1618*flags |= REF_ISSYMREF;1619 buf = buffer +4;1620while(isspace(*buf))1621 buf++;1622 refname =strcpy(refname_buffer, buf);1623if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1624hashclr(sha1);1625return refname;1626}1627if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1628if(flags)1629*flags |= REF_ISBROKEN;16301631if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1632!refname_is_safe(buf)) {1633 errno = EINVAL;1634return NULL;1635}1636 bad_name =1;1637}1638}1639}16401641char*resolve_refdup(const char*ref,int resolve_flags,unsigned char*sha1,int*flags)1642{1643returnxstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));1644}16451646/* The argument to filter_refs */1647struct ref_filter {1648const char*pattern;1649 each_ref_fn *fn;1650void*cb_data;1651};16521653intread_ref_full(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1654{1655if(resolve_ref_unsafe(refname, resolve_flags, sha1, flags))1656return0;1657return-1;1658}16591660intread_ref(const char*refname,unsigned char*sha1)1661{1662returnread_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);1663}16641665intref_exists(const char*refname)1666{1667unsigned char sha1[20];1668return!!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);1669}16701671static intfilter_refs(const char*refname,const unsigned char*sha1,int flags,1672void*data)1673{1674struct ref_filter *filter = (struct ref_filter *)data;1675if(wildmatch(filter->pattern, refname,0, NULL))1676return0;1677return filter->fn(refname, sha1, flags, filter->cb_data);1678}16791680enum peel_status {1681/* object was peeled successfully: */1682 PEEL_PEELED =0,16831684/*1685 * object cannot be peeled because the named object (or an1686 * object referred to by a tag in the peel chain), does not1687 * exist.1688 */1689 PEEL_INVALID = -1,16901691/* object cannot be peeled because it is not a tag: */1692 PEEL_NON_TAG = -2,16931694/* ref_entry contains no peeled value because it is a symref: */1695 PEEL_IS_SYMREF = -3,16961697/*1698 * ref_entry cannot be peeled because it is broken (i.e., the1699 * symbolic reference cannot even be resolved to an object1700 * name):1701 */1702 PEEL_BROKEN = -41703};17041705/*1706 * Peel the named object; i.e., if the object is a tag, resolve the1707 * tag recursively until a non-tag is found. If successful, store the1708 * result to sha1 and return PEEL_PEELED. If the object is not a tag1709 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,1710 * and leave sha1 unchanged.1711 */1712static enum peel_status peel_object(const unsigned char*name,unsigned char*sha1)1713{1714struct object *o =lookup_unknown_object(name);17151716if(o->type == OBJ_NONE) {1717int type =sha1_object_info(name, NULL);1718if(type <0|| !object_as_type(o, type,0))1719return PEEL_INVALID;1720}17211722if(o->type != OBJ_TAG)1723return PEEL_NON_TAG;17241725 o =deref_tag_noverify(o);1726if(!o)1727return PEEL_INVALID;17281729hashcpy(sha1, o->sha1);1730return PEEL_PEELED;1731}17321733/*1734 * Peel the entry (if possible) and return its new peel_status. If1735 * repeel is true, re-peel the entry even if there is an old peeled1736 * value that is already stored in it.1737 *1738 * It is OK to call this function with a packed reference entry that1739 * might be stale and might even refer to an object that has since1740 * been garbage-collected. In such a case, if the entry has1741 * REF_KNOWS_PEELED then leave the status unchanged and return1742 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1743 */1744static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1745{1746enum peel_status status;17471748if(entry->flag & REF_KNOWS_PEELED) {1749if(repeel) {1750 entry->flag &= ~REF_KNOWS_PEELED;1751hashclr(entry->u.value.peeled);1752}else{1753returnis_null_sha1(entry->u.value.peeled) ?1754 PEEL_NON_TAG : PEEL_PEELED;1755}1756}1757if(entry->flag & REF_ISBROKEN)1758return PEEL_BROKEN;1759if(entry->flag & REF_ISSYMREF)1760return PEEL_IS_SYMREF;17611762 status =peel_object(entry->u.value.sha1, entry->u.value.peeled);1763if(status == PEEL_PEELED || status == PEEL_NON_TAG)1764 entry->flag |= REF_KNOWS_PEELED;1765return status;1766}17671768intpeel_ref(const char*refname,unsigned char*sha1)1769{1770int flag;1771unsigned char base[20];17721773if(current_ref && (current_ref->name == refname1774|| !strcmp(current_ref->name, refname))) {1775if(peel_entry(current_ref,0))1776return-1;1777hashcpy(sha1, current_ref->u.value.peeled);1778return0;1779}17801781if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1782return-1;17831784/*1785 * If the reference is packed, read its ref_entry from the1786 * cache in the hope that we already know its peeled value.1787 * We only try this optimization on packed references because1788 * (a) forcing the filling of the loose reference cache could1789 * be expensive and (b) loose references anyway usually do not1790 * have REF_KNOWS_PEELED.1791 */1792if(flag & REF_ISPACKED) {1793struct ref_entry *r =get_packed_ref(refname);1794if(r) {1795if(peel_entry(r,0))1796return-1;1797hashcpy(sha1, r->u.value.peeled);1798return0;1799}1800}18011802returnpeel_object(base, sha1);1803}18041805struct warn_if_dangling_data {1806FILE*fp;1807const char*refname;1808const struct string_list *refnames;1809const char*msg_fmt;1810};18111812static intwarn_if_dangling_symref(const char*refname,const unsigned char*sha1,1813int flags,void*cb_data)1814{1815struct warn_if_dangling_data *d = cb_data;1816const char*resolves_to;1817unsigned char junk[20];18181819if(!(flags & REF_ISSYMREF))1820return0;18211822 resolves_to =resolve_ref_unsafe(refname,0, junk, NULL);1823if(!resolves_to1824|| (d->refname1825?strcmp(resolves_to, d->refname)1826: !string_list_has_string(d->refnames, resolves_to))) {1827return0;1828}18291830fprintf(d->fp, d->msg_fmt, refname);1831fputc('\n', d->fp);1832return0;1833}18341835voidwarn_dangling_symref(FILE*fp,const char*msg_fmt,const char*refname)1836{1837struct warn_if_dangling_data data;18381839 data.fp = fp;1840 data.refname = refname;1841 data.refnames = NULL;1842 data.msg_fmt = msg_fmt;1843for_each_rawref(warn_if_dangling_symref, &data);1844}18451846voidwarn_dangling_symrefs(FILE*fp,const char*msg_fmt,const struct string_list *refnames)1847{1848struct warn_if_dangling_data data;18491850 data.fp = fp;1851 data.refname = NULL;1852 data.refnames = refnames;1853 data.msg_fmt = msg_fmt;1854for_each_rawref(warn_if_dangling_symref, &data);1855}18561857/*1858 * Call fn for each reference in the specified ref_cache, omitting1859 * references not in the containing_dir of base. fn is called for all1860 * references, including broken ones. If fn ever returns a non-zero1861 * value, stop the iteration and return that value; otherwise, return1862 * 0.1863 */1864static intdo_for_each_entry(struct ref_cache *refs,const char*base,1865 each_ref_entry_fn fn,void*cb_data)1866{1867struct packed_ref_cache *packed_ref_cache;1868struct ref_dir *loose_dir;1869struct ref_dir *packed_dir;1870int retval =0;18711872/*1873 * We must make sure that all loose refs are read before accessing the1874 * packed-refs file; this avoids a race condition in which loose refs1875 * are migrated to the packed-refs file by a simultaneous process, but1876 * our in-memory view is from before the migration. get_packed_ref_cache()1877 * takes care of making sure our view is up to date with what is on1878 * disk.1879 */1880 loose_dir =get_loose_refs(refs);1881if(base && *base) {1882 loose_dir =find_containing_dir(loose_dir, base,0);1883}1884if(loose_dir)1885prime_ref_dir(loose_dir);18861887 packed_ref_cache =get_packed_ref_cache(refs);1888acquire_packed_ref_cache(packed_ref_cache);1889 packed_dir =get_packed_ref_dir(packed_ref_cache);1890if(base && *base) {1891 packed_dir =find_containing_dir(packed_dir, base,0);1892}18931894if(packed_dir && loose_dir) {1895sort_ref_dir(packed_dir);1896sort_ref_dir(loose_dir);1897 retval =do_for_each_entry_in_dirs(1898 packed_dir, loose_dir, fn, cb_data);1899}else if(packed_dir) {1900sort_ref_dir(packed_dir);1901 retval =do_for_each_entry_in_dir(1902 packed_dir,0, fn, cb_data);1903}else if(loose_dir) {1904sort_ref_dir(loose_dir);1905 retval =do_for_each_entry_in_dir(1906 loose_dir,0, fn, cb_data);1907}19081909release_packed_ref_cache(packed_ref_cache);1910return retval;1911}19121913/*1914 * Call fn for each reference in the specified ref_cache for which the1915 * refname begins with base. If trim is non-zero, then trim that many1916 * characters off the beginning of each refname before passing the1917 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include1918 * broken references in the iteration. If fn ever returns a non-zero1919 * value, stop the iteration and return that value; otherwise, return1920 * 0.1921 */1922static intdo_for_each_ref(struct ref_cache *refs,const char*base,1923 each_ref_fn fn,int trim,int flags,void*cb_data)1924{1925struct ref_entry_cb data;1926 data.base = base;1927 data.trim = trim;1928 data.flags = flags;1929 data.fn = fn;1930 data.cb_data = cb_data;19311932returndo_for_each_entry(refs, base, do_one_ref, &data);1933}19341935static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)1936{1937unsigned char sha1[20];1938int flag;19391940if(submodule) {1941if(resolve_gitlink_ref(submodule,"HEAD", sha1) ==0)1942returnfn("HEAD", sha1,0, cb_data);19431944return0;1945}19461947if(!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))1948returnfn("HEAD", sha1, flag, cb_data);19491950return0;1951}19521953inthead_ref(each_ref_fn fn,void*cb_data)1954{1955returndo_head_ref(NULL, fn, cb_data);1956}19571958inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1959{1960returndo_head_ref(submodule, fn, cb_data);1961}19621963intfor_each_ref(each_ref_fn fn,void*cb_data)1964{1965returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);1966}19671968intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1969{1970returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);1971}19721973intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)1974{1975returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);1976}19771978intfor_each_ref_in_submodule(const char*submodule,const char*prefix,1979 each_ref_fn fn,void*cb_data)1980{1981returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);1982}19831984intfor_each_tag_ref(each_ref_fn fn,void*cb_data)1985{1986returnfor_each_ref_in("refs/tags/", fn, cb_data);1987}19881989intfor_each_tag_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1990{1991returnfor_each_ref_in_submodule(submodule,"refs/tags/", fn, cb_data);1992}19931994intfor_each_branch_ref(each_ref_fn fn,void*cb_data)1995{1996returnfor_each_ref_in("refs/heads/", fn, cb_data);1997}19981999intfor_each_branch_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2000{2001returnfor_each_ref_in_submodule(submodule,"refs/heads/", fn, cb_data);2002}20032004intfor_each_remote_ref(each_ref_fn fn,void*cb_data)2005{2006returnfor_each_ref_in("refs/remotes/", fn, cb_data);2007}20082009intfor_each_remote_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2010{2011returnfor_each_ref_in_submodule(submodule,"refs/remotes/", fn, cb_data);2012}20132014intfor_each_replace_ref(each_ref_fn fn,void*cb_data)2015{2016returndo_for_each_ref(&ref_cache,"refs/replace/", fn,13,0, cb_data);2017}20182019inthead_ref_namespaced(each_ref_fn fn,void*cb_data)2020{2021struct strbuf buf = STRBUF_INIT;2022int ret =0;2023unsigned char sha1[20];2024int flag;20252026strbuf_addf(&buf,"%sHEAD",get_git_namespace());2027if(!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))2028 ret =fn(buf.buf, sha1, flag, cb_data);2029strbuf_release(&buf);20302031return ret;2032}20332034intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)2035{2036struct strbuf buf = STRBUF_INIT;2037int ret;2038strbuf_addf(&buf,"%srefs/",get_git_namespace());2039 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);2040strbuf_release(&buf);2041return ret;2042}20432044intfor_each_glob_ref_in(each_ref_fn fn,const char*pattern,2045const char*prefix,void*cb_data)2046{2047struct strbuf real_pattern = STRBUF_INIT;2048struct ref_filter filter;2049int ret;20502051if(!prefix && !starts_with(pattern,"refs/"))2052strbuf_addstr(&real_pattern,"refs/");2053else if(prefix)2054strbuf_addstr(&real_pattern, prefix);2055strbuf_addstr(&real_pattern, pattern);20562057if(!has_glob_specials(pattern)) {2058/* Append implied '/' '*' if not present. */2059if(real_pattern.buf[real_pattern.len -1] !='/')2060strbuf_addch(&real_pattern,'/');2061/* No need to check for '*', there is none. */2062strbuf_addch(&real_pattern,'*');2063}20642065 filter.pattern = real_pattern.buf;2066 filter.fn = fn;2067 filter.cb_data = cb_data;2068 ret =for_each_ref(filter_refs, &filter);20692070strbuf_release(&real_pattern);2071return ret;2072}20732074intfor_each_glob_ref(each_ref_fn fn,const char*pattern,void*cb_data)2075{2076returnfor_each_glob_ref_in(fn, pattern, NULL, cb_data);2077}20782079intfor_each_rawref(each_ref_fn fn,void*cb_data)2080{2081returndo_for_each_ref(&ref_cache,"", fn,0,2082 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);2083}20842085const char*prettify_refname(const char*name)2086{2087return name + (2088starts_with(name,"refs/heads/") ?11:2089starts_with(name,"refs/tags/") ?10:2090starts_with(name,"refs/remotes/") ?13:20910);2092}20932094static const char*ref_rev_parse_rules[] = {2095"%.*s",2096"refs/%.*s",2097"refs/tags/%.*s",2098"refs/heads/%.*s",2099"refs/remotes/%.*s",2100"refs/remotes/%.*s/HEAD",2101 NULL2102};21032104intrefname_match(const char*abbrev_name,const char*full_name)2105{2106const char**p;2107const int abbrev_name_len =strlen(abbrev_name);21082109for(p = ref_rev_parse_rules; *p; p++) {2110if(!strcmp(full_name,mkpath(*p, abbrev_name_len, abbrev_name))) {2111return1;2112}2113}21142115return0;2116}21172118static voidunlock_ref(struct ref_lock *lock)2119{2120/* Do not free lock->lk -- atexit() still looks at them */2121if(lock->lk)2122rollback_lock_file(lock->lk);2123free(lock->ref_name);2124free(lock->orig_ref_name);2125free(lock);2126}21272128/* This function should make sure errno is meaningful on error */2129static struct ref_lock *verify_lock(struct ref_lock *lock,2130const unsigned char*old_sha1,int mustexist)2131{2132if(read_ref_full(lock->ref_name,2133 mustexist ? RESOLVE_REF_READING :0,2134 lock->old_sha1, NULL)) {2135int save_errno = errno;2136error("Can't verify ref%s", lock->ref_name);2137unlock_ref(lock);2138 errno = save_errno;2139return NULL;2140}2141if(hashcmp(lock->old_sha1, old_sha1)) {2142error("Ref%sis at%sbut expected%s", lock->ref_name,2143sha1_to_hex(lock->old_sha1),sha1_to_hex(old_sha1));2144unlock_ref(lock);2145 errno = EBUSY;2146return NULL;2147}2148return lock;2149}21502151static intremove_empty_directories(const char*file)2152{2153/* we want to create a file but there is a directory there;2154 * if that is an empty directory (or a directory that contains2155 * only empty directories), remove them.2156 */2157struct strbuf path;2158int result, save_errno;21592160strbuf_init(&path,20);2161strbuf_addstr(&path, file);21622163 result =remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);2164 save_errno = errno;21652166strbuf_release(&path);2167 errno = save_errno;21682169return result;2170}21712172/*2173 * *string and *len will only be substituted, and *string returned (for2174 * later free()ing) if the string passed in is a magic short-hand form2175 * to name a branch.2176 */2177static char*substitute_branch_name(const char**string,int*len)2178{2179struct strbuf buf = STRBUF_INIT;2180int ret =interpret_branch_name(*string, *len, &buf);21812182if(ret == *len) {2183size_t size;2184*string =strbuf_detach(&buf, &size);2185*len = size;2186return(char*)*string;2187}21882189return NULL;2190}21912192intdwim_ref(const char*str,int len,unsigned char*sha1,char**ref)2193{2194char*last_branch =substitute_branch_name(&str, &len);2195const char**p, *r;2196int refs_found =0;21972198*ref = NULL;2199for(p = ref_rev_parse_rules; *p; p++) {2200char fullref[PATH_MAX];2201unsigned char sha1_from_ref[20];2202unsigned char*this_result;2203int flag;22042205 this_result = refs_found ? sha1_from_ref : sha1;2206mksnpath(fullref,sizeof(fullref), *p, len, str);2207 r =resolve_ref_unsafe(fullref, RESOLVE_REF_READING,2208 this_result, &flag);2209if(r) {2210if(!refs_found++)2211*ref =xstrdup(r);2212if(!warn_ambiguous_refs)2213break;2214}else if((flag & REF_ISSYMREF) &&strcmp(fullref,"HEAD")) {2215warning("ignoring dangling symref%s.", fullref);2216}else if((flag & REF_ISBROKEN) &&strchr(fullref,'/')) {2217warning("ignoring broken ref%s.", fullref);2218}2219}2220free(last_branch);2221return refs_found;2222}22232224intdwim_log(const char*str,int len,unsigned char*sha1,char**log)2225{2226char*last_branch =substitute_branch_name(&str, &len);2227const char**p;2228int logs_found =0;22292230*log = NULL;2231for(p = ref_rev_parse_rules; *p; p++) {2232unsigned char hash[20];2233char path[PATH_MAX];2234const char*ref, *it;22352236mksnpath(path,sizeof(path), *p, len, str);2237 ref =resolve_ref_unsafe(path, RESOLVE_REF_READING,2238 hash, NULL);2239if(!ref)2240continue;2241if(reflog_exists(path))2242 it = path;2243else if(strcmp(ref, path) &&reflog_exists(ref))2244 it = ref;2245else2246continue;2247if(!logs_found++) {2248*log =xstrdup(it);2249hashcpy(sha1, hash);2250}2251if(!warn_ambiguous_refs)2252break;2253}2254free(last_branch);2255return logs_found;2256}22572258/*2259 * Locks a ref returning the lock on success and NULL on failure.2260 * On failure errno is set to something meaningful.2261 */2262static struct ref_lock *lock_ref_sha1_basic(const char*refname,2263const unsigned char*old_sha1,2264const struct string_list *skip,2265unsigned int flags,int*type_p)2266{2267char*ref_file;2268const char*orig_refname = refname;2269struct ref_lock *lock;2270int last_errno =0;2271int type, lflags;2272int mustexist = (old_sha1 && !is_null_sha1(old_sha1));2273int resolve_flags =0;2274int missing =0;2275int attempts_remaining =3;22762277 lock =xcalloc(1,sizeof(struct ref_lock));2278 lock->lock_fd = -1;22792280if(mustexist)2281 resolve_flags |= RESOLVE_REF_READING;2282if(flags & REF_DELETING) {2283 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;2284if(flags & REF_NODEREF)2285 resolve_flags |= RESOLVE_REF_NO_RECURSE;2286}22872288 refname =resolve_ref_unsafe(refname, resolve_flags,2289 lock->old_sha1, &type);2290if(!refname && errno == EISDIR) {2291/* we are trying to lock foo but we used to2292 * have foo/bar which now does not exist;2293 * it is normal for the empty directory 'foo'2294 * to remain.2295 */2296 ref_file =git_path("%s", orig_refname);2297if(remove_empty_directories(ref_file)) {2298 last_errno = errno;2299error("there are still refs under '%s'", orig_refname);2300goto error_return;2301}2302 refname =resolve_ref_unsafe(orig_refname, resolve_flags,2303 lock->old_sha1, &type);2304}2305if(type_p)2306*type_p = type;2307if(!refname) {2308 last_errno = errno;2309error("unable to resolve reference%s:%s",2310 orig_refname,strerror(errno));2311goto error_return;2312}2313 missing =is_null_sha1(lock->old_sha1);2314/* When the ref did not exist and we are creating it,2315 * make sure there is no existing ref that is packed2316 * whose name begins with our refname, nor a ref whose2317 * name is a proper prefix of our refname.2318 */2319if(missing &&2320!is_refname_available(refname, skip,get_packed_refs(&ref_cache))) {2321 last_errno = ENOTDIR;2322goto error_return;2323}23242325 lock->lk =xcalloc(1,sizeof(struct lock_file));23262327 lflags =0;2328if(flags & REF_NODEREF) {2329 refname = orig_refname;2330 lflags |= LOCK_NO_DEREF;2331}2332 lock->ref_name =xstrdup(refname);2333 lock->orig_ref_name =xstrdup(orig_refname);2334 ref_file =git_path("%s", refname);2335if(missing)2336 lock->force_write =1;2337if((flags & REF_NODEREF) && (type & REF_ISSYMREF))2338 lock->force_write =1;23392340 retry:2341switch(safe_create_leading_directories(ref_file)) {2342case SCLD_OK:2343break;/* success */2344case SCLD_VANISHED:2345if(--attempts_remaining >0)2346goto retry;2347/* fall through */2348default:2349 last_errno = errno;2350error("unable to create directory for%s", ref_file);2351goto error_return;2352}23532354 lock->lock_fd =hold_lock_file_for_update(lock->lk, ref_file, lflags);2355if(lock->lock_fd <0) {2356 last_errno = errno;2357if(errno == ENOENT && --attempts_remaining >0)2358/*2359 * Maybe somebody just deleted one of the2360 * directories leading to ref_file. Try2361 * again:2362 */2363goto retry;2364else{2365struct strbuf err = STRBUF_INIT;2366unable_to_lock_message(ref_file, errno, &err);2367error("%s", err.buf);2368strbuf_release(&err);2369goto error_return;2370}2371}2372return old_sha1 ?verify_lock(lock, old_sha1, mustexist) : lock;23732374 error_return:2375unlock_ref(lock);2376 errno = last_errno;2377return NULL;2378}23792380/*2381 * Write an entry to the packed-refs file for the specified refname.2382 * If peeled is non-NULL, write it as the entry's peeled value.2383 */2384static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2385unsigned char*peeled)2386{2387fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2388if(peeled)2389fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2390}23912392/*2393 * An each_ref_entry_fn that writes the entry to a packed-refs file.2394 */2395static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2396{2397enum peel_status peel_status =peel_entry(entry,0);23982399if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2400error("internal error:%sis not a valid packed reference!",2401 entry->name);2402write_packed_entry(cb_data, entry->name, entry->u.value.sha1,2403 peel_status == PEEL_PEELED ?2404 entry->u.value.peeled : NULL);2405return0;2406}24072408/* This should return a meaningful errno on failure */2409intlock_packed_refs(int flags)2410{2411struct packed_ref_cache *packed_ref_cache;24122413if(hold_lock_file_for_update(&packlock,git_path("packed-refs"), flags) <0)2414return-1;2415/*2416 * Get the current packed-refs while holding the lock. If the2417 * packed-refs file has been modified since we last read it,2418 * this will automatically invalidate the cache and re-read2419 * the packed-refs file.2420 */2421 packed_ref_cache =get_packed_ref_cache(&ref_cache);2422 packed_ref_cache->lock = &packlock;2423/* Increment the reference count to prevent it from being freed: */2424acquire_packed_ref_cache(packed_ref_cache);2425return0;2426}24272428/*2429 * Commit the packed refs changes.2430 * On error we must make sure that errno contains a meaningful value.2431 */2432intcommit_packed_refs(void)2433{2434struct packed_ref_cache *packed_ref_cache =2435get_packed_ref_cache(&ref_cache);2436int error =0;2437int save_errno =0;2438FILE*out;24392440if(!packed_ref_cache->lock)2441die("internal error: packed-refs not locked");24422443 out =fdopen_lock_file(packed_ref_cache->lock,"w");2444if(!out)2445die_errno("unable to fdopen packed-refs descriptor");24462447fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2448do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),24490, write_packed_entry_fn, out);24502451if(commit_lock_file(packed_ref_cache->lock)) {2452 save_errno = errno;2453 error = -1;2454}2455 packed_ref_cache->lock = NULL;2456release_packed_ref_cache(packed_ref_cache);2457 errno = save_errno;2458return error;2459}24602461voidrollback_packed_refs(void)2462{2463struct packed_ref_cache *packed_ref_cache =2464get_packed_ref_cache(&ref_cache);24652466if(!packed_ref_cache->lock)2467die("internal error: packed-refs not locked");2468rollback_lock_file(packed_ref_cache->lock);2469 packed_ref_cache->lock = NULL;2470release_packed_ref_cache(packed_ref_cache);2471clear_packed_ref_cache(&ref_cache);2472}24732474struct ref_to_prune {2475struct ref_to_prune *next;2476unsigned char sha1[20];2477char name[FLEX_ARRAY];2478};24792480struct pack_refs_cb_data {2481unsigned int flags;2482struct ref_dir *packed_refs;2483struct ref_to_prune *ref_to_prune;2484};24852486/*2487 * An each_ref_entry_fn that is run over loose references only. If2488 * the loose reference can be packed, add an entry in the packed ref2489 * cache. If the reference should be pruned, also add it to2490 * ref_to_prune in the pack_refs_cb_data.2491 */2492static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2493{2494struct pack_refs_cb_data *cb = cb_data;2495enum peel_status peel_status;2496struct ref_entry *packed_entry;2497int is_tag_ref =starts_with(entry->name,"refs/tags/");24982499/* ALWAYS pack tags */2500if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2501return0;25022503/* Do not pack symbolic or broken refs: */2504if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2505return0;25062507/* Add a packed ref cache entry equivalent to the loose entry. */2508 peel_status =peel_entry(entry,1);2509if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2510die("internal error peeling reference%s(%s)",2511 entry->name,sha1_to_hex(entry->u.value.sha1));2512 packed_entry =find_ref(cb->packed_refs, entry->name);2513if(packed_entry) {2514/* Overwrite existing packed entry with info from loose entry */2515 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2516hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);2517}else{2518 packed_entry =create_ref_entry(entry->name, entry->u.value.sha1,2519 REF_ISPACKED | REF_KNOWS_PEELED,0);2520add_ref(cb->packed_refs, packed_entry);2521}2522hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);25232524/* Schedule the loose reference for pruning if requested. */2525if((cb->flags & PACK_REFS_PRUNE)) {2526int namelen =strlen(entry->name) +1;2527struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2528hashcpy(n->sha1, entry->u.value.sha1);2529strcpy(n->name, entry->name);2530 n->next = cb->ref_to_prune;2531 cb->ref_to_prune = n;2532}2533return0;2534}25352536/*2537 * Remove empty parents, but spare refs/ and immediate subdirs.2538 * Note: munges *name.2539 */2540static voidtry_remove_empty_parents(char*name)2541{2542char*p, *q;2543int i;2544 p = name;2545for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2546while(*p && *p !='/')2547 p++;2548/* tolerate duplicate slashes; see check_refname_format() */2549while(*p =='/')2550 p++;2551}2552for(q = p; *q; q++)2553;2554while(1) {2555while(q > p && *q !='/')2556 q--;2557while(q > p && *(q-1) =='/')2558 q--;2559if(q == p)2560break;2561*q ='\0';2562if(rmdir(git_path("%s", name)))2563break;2564}2565}25662567/* make sure nobody touched the ref, and unlink */2568static voidprune_ref(struct ref_to_prune *r)2569{2570struct ref_transaction *transaction;2571struct strbuf err = STRBUF_INIT;25722573if(check_refname_format(r->name,0))2574return;25752576 transaction =ref_transaction_begin(&err);2577if(!transaction ||2578ref_transaction_delete(transaction, r->name, r->sha1,2579 REF_ISPRUNING, NULL, &err) ||2580ref_transaction_commit(transaction, &err)) {2581ref_transaction_free(transaction);2582error("%s", err.buf);2583strbuf_release(&err);2584return;2585}2586ref_transaction_free(transaction);2587strbuf_release(&err);2588try_remove_empty_parents(r->name);2589}25902591static voidprune_refs(struct ref_to_prune *r)2592{2593while(r) {2594prune_ref(r);2595 r = r->next;2596}2597}25982599intpack_refs(unsigned int flags)2600{2601struct pack_refs_cb_data cbdata;26022603memset(&cbdata,0,sizeof(cbdata));2604 cbdata.flags = flags;26052606lock_packed_refs(LOCK_DIE_ON_ERROR);2607 cbdata.packed_refs =get_packed_refs(&ref_cache);26082609do_for_each_entry_in_dir(get_loose_refs(&ref_cache),0,2610 pack_if_possible_fn, &cbdata);26112612if(commit_packed_refs())2613die_errno("unable to overwrite old ref-pack file");26142615prune_refs(cbdata.ref_to_prune);2616return0;2617}26182619/*2620 * If entry is no longer needed in packed-refs, add it to the string2621 * list pointed to by cb_data. Reasons for deleting entries:2622 *2623 * - Entry is broken.2624 * - Entry is overridden by a loose ref.2625 * - Entry does not point at a valid object.2626 *2627 * In the first and third cases, also emit an error message because these2628 * are indications of repository corruption.2629 */2630static intcurate_packed_ref_fn(struct ref_entry *entry,void*cb_data)2631{2632struct string_list *refs_to_delete = cb_data;26332634if(entry->flag & REF_ISBROKEN) {2635/* This shouldn't happen to packed refs. */2636error("%sis broken!", entry->name);2637string_list_append(refs_to_delete, entry->name);2638return0;2639}2640if(!has_sha1_file(entry->u.value.sha1)) {2641unsigned char sha1[20];2642int flags;26432644if(read_ref_full(entry->name,0, sha1, &flags))2645/* We should at least have found the packed ref. */2646die("Internal error");2647if((flags & REF_ISSYMREF) || !(flags & REF_ISPACKED)) {2648/*2649 * This packed reference is overridden by a2650 * loose reference, so it is OK that its value2651 * is no longer valid; for example, it might2652 * refer to an object that has been garbage2653 * collected. For this purpose we don't even2654 * care whether the loose reference itself is2655 * invalid, broken, symbolic, etc. Silently2656 * remove the packed reference.2657 */2658string_list_append(refs_to_delete, entry->name);2659return0;2660}2661/*2662 * There is no overriding loose reference, so the fact2663 * that this reference doesn't refer to a valid object2664 * indicates some kind of repository corruption.2665 * Report the problem, then omit the reference from2666 * the output.2667 */2668error("%sdoes not point to a valid object!", entry->name);2669string_list_append(refs_to_delete, entry->name);2670return0;2671}26722673return0;2674}26752676intrepack_without_refs(struct string_list *refnames,struct strbuf *err)2677{2678struct ref_dir *packed;2679struct string_list refs_to_delete = STRING_LIST_INIT_DUP;2680struct string_list_item *refname, *ref_to_delete;2681int ret, needs_repacking =0, removed =0;26822683assert(err);26842685/* Look for a packed ref */2686for_each_string_list_item(refname, refnames) {2687if(get_packed_ref(refname->string)) {2688 needs_repacking =1;2689break;2690}2691}26922693/* Avoid locking if we have nothing to do */2694if(!needs_repacking)2695return0;/* no refname exists in packed refs */26962697if(lock_packed_refs(0)) {2698unable_to_lock_message(git_path("packed-refs"), errno, err);2699return-1;2700}2701 packed =get_packed_refs(&ref_cache);27022703/* Remove refnames from the cache */2704for_each_string_list_item(refname, refnames)2705if(remove_entry(packed, refname->string) != -1)2706 removed =1;2707if(!removed) {2708/*2709 * All packed entries disappeared while we were2710 * acquiring the lock.2711 */2712rollback_packed_refs();2713return0;2714}27152716/* Remove any other accumulated cruft */2717do_for_each_entry_in_dir(packed,0, curate_packed_ref_fn, &refs_to_delete);2718for_each_string_list_item(ref_to_delete, &refs_to_delete) {2719if(remove_entry(packed, ref_to_delete->string) == -1)2720die("internal error");2721}27222723/* Write what remains */2724 ret =commit_packed_refs();2725if(ret)2726strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2727strerror(errno));2728return ret;2729}27302731static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2732{2733assert(err);27342735if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2736/*2737 * loose. The loose file name is the same as the2738 * lockfile name, minus ".lock":2739 */2740char*loose_filename =get_locked_file_path(lock->lk);2741int res =unlink_or_msg(loose_filename, err);2742free(loose_filename);2743if(res)2744return1;2745}2746return0;2747}27482749intdelete_ref(const char*refname,const unsigned char*sha1,unsigned int flags)2750{2751struct ref_transaction *transaction;2752struct strbuf err = STRBUF_INIT;27532754 transaction =ref_transaction_begin(&err);2755if(!transaction ||2756ref_transaction_delete(transaction, refname,2757(sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,2758 flags, NULL, &err) ||2759ref_transaction_commit(transaction, &err)) {2760error("%s", err.buf);2761ref_transaction_free(transaction);2762strbuf_release(&err);2763return1;2764}2765ref_transaction_free(transaction);2766strbuf_release(&err);2767return0;2768}27692770/*2771 * People using contrib's git-new-workdir have .git/logs/refs ->2772 * /some/other/path/.git/logs/refs, and that may live on another device.2773 *2774 * IOW, to avoid cross device rename errors, the temporary renamed log must2775 * live into logs/refs.2776 */2777#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"27782779static intrename_tmp_log(const char*newrefname)2780{2781int attempts_remaining =4;27822783 retry:2784switch(safe_create_leading_directories(git_path("logs/%s", newrefname))) {2785case SCLD_OK:2786break;/* success */2787case SCLD_VANISHED:2788if(--attempts_remaining >0)2789goto retry;2790/* fall through */2791default:2792error("unable to create directory for%s", newrefname);2793return-1;2794}27952796if(rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", newrefname))) {2797if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2798/*2799 * rename(a, b) when b is an existing2800 * directory ought to result in ISDIR, but2801 * Solaris 5.8 gives ENOTDIR. Sheesh.2802 */2803if(remove_empty_directories(git_path("logs/%s", newrefname))) {2804error("Directory not empty: logs/%s", newrefname);2805return-1;2806}2807goto retry;2808}else if(errno == ENOENT && --attempts_remaining >0) {2809/*2810 * Maybe another process just deleted one of2811 * the directories in the path to newrefname.2812 * Try again from the beginning.2813 */2814goto retry;2815}else{2816error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2817 newrefname,strerror(errno));2818return-1;2819}2820}2821return0;2822}28232824static intrename_ref_available(const char*oldname,const char*newname)2825{2826struct string_list skip = STRING_LIST_INIT_NODUP;2827int ret;28282829string_list_insert(&skip, oldname);2830 ret =is_refname_available(newname, &skip,get_packed_refs(&ref_cache))2831&&is_refname_available(newname, &skip,get_loose_refs(&ref_cache));2832string_list_clear(&skip,0);2833return ret;2834}28352836static intwrite_ref_sha1(struct ref_lock *lock,const unsigned char*sha1,2837const char*logmsg);28382839intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2840{2841unsigned char sha1[20], orig_sha1[20];2842int flag =0, logmoved =0;2843struct ref_lock *lock;2844struct stat loginfo;2845int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2846const char*symref = NULL;28472848if(log &&S_ISLNK(loginfo.st_mode))2849returnerror("reflog for%sis a symlink", oldrefname);28502851 symref =resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,2852 orig_sha1, &flag);2853if(flag & REF_ISSYMREF)2854returnerror("refname%sis a symbolic ref, renaming it is not supported",2855 oldrefname);2856if(!symref)2857returnerror("refname%snot found", oldrefname);28582859if(!rename_ref_available(oldrefname, newrefname))2860return1;28612862if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2863returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2864 oldrefname,strerror(errno));28652866if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2867error("unable to delete old%s", oldrefname);2868goto rollback;2869}28702871if(!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&2872delete_ref(newrefname, sha1, REF_NODEREF)) {2873if(errno==EISDIR) {2874if(remove_empty_directories(git_path("%s", newrefname))) {2875error("Directory not empty:%s", newrefname);2876goto rollback;2877}2878}else{2879error("unable to delete existing%s", newrefname);2880goto rollback;2881}2882}28832884if(log &&rename_tmp_log(newrefname))2885goto rollback;28862887 logmoved = log;28882889 lock =lock_ref_sha1_basic(newrefname, NULL, NULL,0, NULL);2890if(!lock) {2891error("unable to lock%sfor update", newrefname);2892goto rollback;2893}2894 lock->force_write =1;2895hashcpy(lock->old_sha1, orig_sha1);2896if(write_ref_sha1(lock, orig_sha1, logmsg)) {2897error("unable to write current sha1 into%s", newrefname);2898goto rollback;2899}29002901return0;29022903 rollback:2904 lock =lock_ref_sha1_basic(oldrefname, NULL, NULL,0, NULL);2905if(!lock) {2906error("unable to lock%sfor rollback", oldrefname);2907goto rollbacklog;2908}29092910 lock->force_write =1;2911 flag = log_all_ref_updates;2912 log_all_ref_updates =0;2913if(write_ref_sha1(lock, orig_sha1, NULL))2914error("unable to write current sha1 into%s", oldrefname);2915 log_all_ref_updates = flag;29162917 rollbacklog:2918if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2919error("unable to restore logfile%sfrom%s:%s",2920 oldrefname, newrefname,strerror(errno));2921if(!logmoved && log &&2922rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2923error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2924 oldrefname,strerror(errno));29252926return1;2927}29282929static intclose_ref(struct ref_lock *lock)2930{2931if(close_lock_file(lock->lk))2932return-1;2933 lock->lock_fd = -1;2934return0;2935}29362937static intcommit_ref(struct ref_lock *lock)2938{2939if(commit_lock_file(lock->lk))2940return-1;2941 lock->lock_fd = -1;2942return0;2943}29442945/*2946 * copy the reflog message msg to buf, which has been allocated sufficiently2947 * large, while cleaning up the whitespaces. Especially, convert LF to space,2948 * because reflog file is one line per entry.2949 */2950static intcopy_msg(char*buf,const char*msg)2951{2952char*cp = buf;2953char c;2954int wasspace =1;29552956*cp++ ='\t';2957while((c = *msg++)) {2958if(wasspace &&isspace(c))2959continue;2960 wasspace =isspace(c);2961if(wasspace)2962 c =' ';2963*cp++ = c;2964}2965while(buf < cp &&isspace(cp[-1]))2966 cp--;2967*cp++ ='\n';2968return cp - buf;2969}29702971/* This function must set a meaningful errno on failure */2972intlog_ref_setup(const char*refname,char*logfile,int bufsize)2973{2974int logfd, oflags = O_APPEND | O_WRONLY;29752976git_snpath(logfile, bufsize,"logs/%s", refname);2977if(log_all_ref_updates &&2978(starts_with(refname,"refs/heads/") ||2979starts_with(refname,"refs/remotes/") ||2980starts_with(refname,"refs/notes/") ||2981!strcmp(refname,"HEAD"))) {2982if(safe_create_leading_directories(logfile) <0) {2983int save_errno = errno;2984error("unable to create directory for%s", logfile);2985 errno = save_errno;2986return-1;2987}2988 oflags |= O_CREAT;2989}29902991 logfd =open(logfile, oflags,0666);2992if(logfd <0) {2993if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))2994return0;29952996if(errno == EISDIR) {2997if(remove_empty_directories(logfile)) {2998int save_errno = errno;2999error("There are still logs under '%s'",3000 logfile);3001 errno = save_errno;3002return-1;3003}3004 logfd =open(logfile, oflags,0666);3005}30063007if(logfd <0) {3008int save_errno = errno;3009error("Unable to append to%s:%s", logfile,3010strerror(errno));3011 errno = save_errno;3012return-1;3013}3014}30153016adjust_shared_perm(logfile);3017close(logfd);3018return0;3019}30203021static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,3022const unsigned char*new_sha1,3023const char*committer,const char*msg)3024{3025int msglen, written;3026unsigned maxlen, len;3027char*logrec;30283029 msglen = msg ?strlen(msg) :0;3030 maxlen =strlen(committer) + msglen +100;3031 logrec =xmalloc(maxlen);3032 len =sprintf(logrec,"%s %s %s\n",3033sha1_to_hex(old_sha1),3034sha1_to_hex(new_sha1),3035 committer);3036if(msglen)3037 len +=copy_msg(logrec + len -1, msg) -1;30383039 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;3040free(logrec);3041if(written != len)3042return-1;30433044return0;3045}30463047static intlog_ref_write(const char*refname,const unsigned char*old_sha1,3048const unsigned char*new_sha1,const char*msg)3049{3050int logfd, result, oflags = O_APPEND | O_WRONLY;3051char log_file[PATH_MAX];30523053if(log_all_ref_updates <0)3054 log_all_ref_updates = !is_bare_repository();30553056 result =log_ref_setup(refname, log_file,sizeof(log_file));3057if(result)3058return result;30593060 logfd =open(log_file, oflags);3061if(logfd <0)3062return0;3063 result =log_ref_write_fd(logfd, old_sha1, new_sha1,3064git_committer_info(0), msg);3065if(result) {3066int save_errno = errno;3067close(logfd);3068error("Unable to append to%s", log_file);3069 errno = save_errno;3070return-1;3071}3072if(close(logfd)) {3073int save_errno = errno;3074error("Unable to append to%s", log_file);3075 errno = save_errno;3076return-1;3077}3078return0;3079}30803081intis_branch(const char*refname)3082{3083return!strcmp(refname,"HEAD") ||starts_with(refname,"refs/heads/");3084}30853086/*3087 * Write sha1 into the ref specified by the lock. Make sure that errno3088 * is sane on error.3089 */3090static intwrite_ref_sha1(struct ref_lock *lock,3091const unsigned char*sha1,const char*logmsg)3092{3093static char term ='\n';3094struct object *o;30953096if(!lock) {3097 errno = EINVAL;3098return-1;3099}3100if(!lock->force_write && !hashcmp(lock->old_sha1, sha1)) {3101unlock_ref(lock);3102return0;3103}3104 o =parse_object(sha1);3105if(!o) {3106error("Trying to write ref%swith nonexistent object%s",3107 lock->ref_name,sha1_to_hex(sha1));3108unlock_ref(lock);3109 errno = EINVAL;3110return-1;3111}3112if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {3113error("Trying to write non-commit object%sto branch%s",3114sha1_to_hex(sha1), lock->ref_name);3115unlock_ref(lock);3116 errno = EINVAL;3117return-1;3118}3119if(write_in_full(lock->lock_fd,sha1_to_hex(sha1),40) !=40||3120write_in_full(lock->lock_fd, &term,1) !=1||3121close_ref(lock) <0) {3122int save_errno = errno;3123error("Couldn't write%s", lock->lk->filename.buf);3124unlock_ref(lock);3125 errno = save_errno;3126return-1;3127}3128clear_loose_ref_cache(&ref_cache);3129if(log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) <0||3130(strcmp(lock->ref_name, lock->orig_ref_name) &&3131log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) <0)) {3132unlock_ref(lock);3133return-1;3134}3135if(strcmp(lock->orig_ref_name,"HEAD") !=0) {3136/*3137 * Special hack: If a branch is updated directly and HEAD3138 * points to it (may happen on the remote side of a push3139 * for example) then logically the HEAD reflog should be3140 * updated too.3141 * A generic solution implies reverse symref information,3142 * but finding all symrefs pointing to the given branch3143 * would be rather costly for this rare event (the direct3144 * update of a branch) to be worth it. So let's cheat and3145 * check with HEAD only which should cover 99% of all usage3146 * scenarios (even 100% of the default ones).3147 */3148unsigned char head_sha1[20];3149int head_flag;3150const char*head_ref;3151 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,3152 head_sha1, &head_flag);3153if(head_ref && (head_flag & REF_ISSYMREF) &&3154!strcmp(head_ref, lock->ref_name))3155log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);3156}3157if(commit_ref(lock)) {3158error("Couldn't set%s", lock->ref_name);3159unlock_ref(lock);3160return-1;3161}3162unlock_ref(lock);3163return0;3164}31653166intcreate_symref(const char*ref_target,const char*refs_heads_master,3167const char*logmsg)3168{3169const char*lockpath;3170char ref[1000];3171int fd, len, written;3172char*git_HEAD =git_pathdup("%s", ref_target);3173unsigned char old_sha1[20], new_sha1[20];31743175if(logmsg &&read_ref(ref_target, old_sha1))3176hashclr(old_sha1);31773178if(safe_create_leading_directories(git_HEAD) <0)3179returnerror("unable to create directory for%s", git_HEAD);31803181#ifndef NO_SYMLINK_HEAD3182if(prefer_symlink_refs) {3183unlink(git_HEAD);3184if(!symlink(refs_heads_master, git_HEAD))3185goto done;3186fprintf(stderr,"no symlink - falling back to symbolic ref\n");3187}3188#endif31893190 len =snprintf(ref,sizeof(ref),"ref:%s\n", refs_heads_master);3191if(sizeof(ref) <= len) {3192error("refname too long:%s", refs_heads_master);3193goto error_free_return;3194}3195 lockpath =mkpath("%s.lock", git_HEAD);3196 fd =open(lockpath, O_CREAT | O_EXCL | O_WRONLY,0666);3197if(fd <0) {3198error("Unable to open%sfor writing", lockpath);3199goto error_free_return;3200}3201 written =write_in_full(fd, ref, len);3202if(close(fd) !=0|| written != len) {3203error("Unable to write to%s", lockpath);3204goto error_unlink_return;3205}3206if(rename(lockpath, git_HEAD) <0) {3207error("Unable to create%s", git_HEAD);3208goto error_unlink_return;3209}3210if(adjust_shared_perm(git_HEAD)) {3211error("Unable to fix permissions on%s", lockpath);3212 error_unlink_return:3213unlink_or_warn(lockpath);3214 error_free_return:3215free(git_HEAD);3216return-1;3217}32183219#ifndef NO_SYMLINK_HEAD3220 done:3221#endif3222if(logmsg && !read_ref(refs_heads_master, new_sha1))3223log_ref_write(ref_target, old_sha1, new_sha1, logmsg);32243225free(git_HEAD);3226return0;3227}32283229struct read_ref_at_cb {3230const char*refname;3231unsigned long at_time;3232int cnt;3233int reccnt;3234unsigned char*sha1;3235int found_it;32363237unsigned char osha1[20];3238unsigned char nsha1[20];3239int tz;3240unsigned long date;3241char**msg;3242unsigned long*cutoff_time;3243int*cutoff_tz;3244int*cutoff_cnt;3245};32463247static intread_ref_at_ent(unsigned char*osha1,unsigned char*nsha1,3248const char*email,unsigned long timestamp,int tz,3249const char*message,void*cb_data)3250{3251struct read_ref_at_cb *cb = cb_data;32523253 cb->reccnt++;3254 cb->tz = tz;3255 cb->date = timestamp;32563257if(timestamp <= cb->at_time || cb->cnt ==0) {3258if(cb->msg)3259*cb->msg =xstrdup(message);3260if(cb->cutoff_time)3261*cb->cutoff_time = timestamp;3262if(cb->cutoff_tz)3263*cb->cutoff_tz = tz;3264if(cb->cutoff_cnt)3265*cb->cutoff_cnt = cb->reccnt -1;3266/*3267 * we have not yet updated cb->[n|o]sha1 so they still3268 * hold the values for the previous record.3269 */3270if(!is_null_sha1(cb->osha1)) {3271hashcpy(cb->sha1, nsha1);3272if(hashcmp(cb->osha1, nsha1))3273warning("Log for ref%shas gap after%s.",3274 cb->refname,show_date(cb->date, cb->tz, DATE_RFC2822));3275}3276else if(cb->date == cb->at_time)3277hashcpy(cb->sha1, nsha1);3278else if(hashcmp(nsha1, cb->sha1))3279warning("Log for ref%sunexpectedly ended on%s.",3280 cb->refname,show_date(cb->date, cb->tz,3281 DATE_RFC2822));3282hashcpy(cb->osha1, osha1);3283hashcpy(cb->nsha1, nsha1);3284 cb->found_it =1;3285return1;3286}3287hashcpy(cb->osha1, osha1);3288hashcpy(cb->nsha1, nsha1);3289if(cb->cnt >0)3290 cb->cnt--;3291return0;3292}32933294static intread_ref_at_ent_oldest(unsigned char*osha1,unsigned char*nsha1,3295const char*email,unsigned long timestamp,3296int tz,const char*message,void*cb_data)3297{3298struct read_ref_at_cb *cb = cb_data;32993300if(cb->msg)3301*cb->msg =xstrdup(message);3302if(cb->cutoff_time)3303*cb->cutoff_time = timestamp;3304if(cb->cutoff_tz)3305*cb->cutoff_tz = tz;3306if(cb->cutoff_cnt)3307*cb->cutoff_cnt = cb->reccnt;3308hashcpy(cb->sha1, osha1);3309if(is_null_sha1(cb->sha1))3310hashcpy(cb->sha1, nsha1);3311/* We just want the first entry */3312return1;3313}33143315intread_ref_at(const char*refname,unsigned int flags,unsigned long at_time,int cnt,3316unsigned char*sha1,char**msg,3317unsigned long*cutoff_time,int*cutoff_tz,int*cutoff_cnt)3318{3319struct read_ref_at_cb cb;33203321memset(&cb,0,sizeof(cb));3322 cb.refname = refname;3323 cb.at_time = at_time;3324 cb.cnt = cnt;3325 cb.msg = msg;3326 cb.cutoff_time = cutoff_time;3327 cb.cutoff_tz = cutoff_tz;3328 cb.cutoff_cnt = cutoff_cnt;3329 cb.sha1 = sha1;33303331for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);33323333if(!cb.reccnt) {3334if(flags & GET_SHA1_QUIETLY)3335exit(128);3336else3337die("Log for%sis empty.", refname);3338}3339if(cb.found_it)3340return0;33413342for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);33433344return1;3345}33463347intreflog_exists(const char*refname)3348{3349struct stat st;33503351return!lstat(git_path("logs/%s", refname), &st) &&3352S_ISREG(st.st_mode);3353}33543355intdelete_reflog(const char*refname)3356{3357returnremove_path(git_path("logs/%s", refname));3358}33593360static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)3361{3362unsigned char osha1[20], nsha1[20];3363char*email_end, *message;3364unsigned long timestamp;3365int tz;33663367/* old SP new SP name <email> SP time TAB msg LF */3368if(sb->len <83|| sb->buf[sb->len -1] !='\n'||3369get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||3370get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||3371!(email_end =strchr(sb->buf +82,'>')) ||3372 email_end[1] !=' '||3373!(timestamp =strtoul(email_end +2, &message,10)) ||3374!message || message[0] !=' '||3375(message[1] !='+'&& message[1] !='-') ||3376!isdigit(message[2]) || !isdigit(message[3]) ||3377!isdigit(message[4]) || !isdigit(message[5]))3378return0;/* corrupt? */3379 email_end[1] ='\0';3380 tz =strtol(message +1, NULL,10);3381if(message[6] !='\t')3382 message +=6;3383else3384 message +=7;3385returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);3386}33873388static char*find_beginning_of_line(char*bob,char*scan)3389{3390while(bob < scan && *(--scan) !='\n')3391;/* keep scanning backwards */3392/*3393 * Return either beginning of the buffer, or LF at the end of3394 * the previous line.3395 */3396return scan;3397}33983399intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)3400{3401struct strbuf sb = STRBUF_INIT;3402FILE*logfp;3403long pos;3404int ret =0, at_tail =1;34053406 logfp =fopen(git_path("logs/%s", refname),"r");3407if(!logfp)3408return-1;34093410/* Jump to the end */3411if(fseek(logfp,0, SEEK_END) <0)3412returnerror("cannot seek back reflog for%s:%s",3413 refname,strerror(errno));3414 pos =ftell(logfp);3415while(!ret &&0< pos) {3416int cnt;3417size_t nread;3418char buf[BUFSIZ];3419char*endp, *scanp;34203421/* Fill next block from the end */3422 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;3423if(fseek(logfp, pos - cnt, SEEK_SET))3424returnerror("cannot seek back reflog for%s:%s",3425 refname,strerror(errno));3426 nread =fread(buf, cnt,1, logfp);3427if(nread !=1)3428returnerror("cannot read%dbytes from reflog for%s:%s",3429 cnt, refname,strerror(errno));3430 pos -= cnt;34313432 scanp = endp = buf + cnt;3433if(at_tail && scanp[-1] =='\n')3434/* Looking at the final LF at the end of the file */3435 scanp--;3436 at_tail =0;34373438while(buf < scanp) {3439/*3440 * terminating LF of the previous line, or the beginning3441 * of the buffer.3442 */3443char*bp;34443445 bp =find_beginning_of_line(buf, scanp);34463447if(*bp =='\n') {3448/*3449 * The newline is the end of the previous line,3450 * so we know we have complete line starting3451 * at (bp + 1). Prefix it onto any prior data3452 * we collected for the line and process it.3453 */3454strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));3455 scanp = bp;3456 endp = bp +1;3457 ret =show_one_reflog_ent(&sb, fn, cb_data);3458strbuf_reset(&sb);3459if(ret)3460break;3461}else if(!pos) {3462/*3463 * We are at the start of the buffer, and the3464 * start of the file; there is no previous3465 * line, and we have everything for this one.3466 * Process it, and we can end the loop.3467 */3468strbuf_splice(&sb,0,0, buf, endp - buf);3469 ret =show_one_reflog_ent(&sb, fn, cb_data);3470strbuf_reset(&sb);3471break;3472}34733474if(bp == buf) {3475/*3476 * We are at the start of the buffer, and there3477 * is more file to read backwards. Which means3478 * we are in the middle of a line. Note that we3479 * may get here even if *bp was a newline; that3480 * just means we are at the exact end of the3481 * previous line, rather than some spot in the3482 * middle.3483 *3484 * Save away what we have to be combined with3485 * the data from the next read.3486 */3487strbuf_splice(&sb,0,0, buf, endp - buf);3488break;3489}3490}34913492}3493if(!ret && sb.len)3494die("BUG: reverse reflog parser had leftover data");34953496fclose(logfp);3497strbuf_release(&sb);3498return ret;3499}35003501intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)3502{3503FILE*logfp;3504struct strbuf sb = STRBUF_INIT;3505int ret =0;35063507 logfp =fopen(git_path("logs/%s", refname),"r");3508if(!logfp)3509return-1;35103511while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3512 ret =show_one_reflog_ent(&sb, fn, cb_data);3513fclose(logfp);3514strbuf_release(&sb);3515return ret;3516}3517/*3518 * Call fn for each reflog in the namespace indicated by name. name3519 * must be empty or end with '/'. Name will be used as a scratch3520 * space, but its contents will be restored before return.3521 */3522static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)3523{3524DIR*d =opendir(git_path("logs/%s", name->buf));3525int retval =0;3526struct dirent *de;3527int oldlen = name->len;35283529if(!d)3530return name->len ? errno :0;35313532while((de =readdir(d)) != NULL) {3533struct stat st;35343535if(de->d_name[0] =='.')3536continue;3537if(ends_with(de->d_name,".lock"))3538continue;3539strbuf_addstr(name, de->d_name);3540if(stat(git_path("logs/%s", name->buf), &st) <0) {3541;/* silently ignore */3542}else{3543if(S_ISDIR(st.st_mode)) {3544strbuf_addch(name,'/');3545 retval =do_for_each_reflog(name, fn, cb_data);3546}else{3547unsigned char sha1[20];3548if(read_ref_full(name->buf,0, sha1, NULL))3549 retval =error("bad ref for%s", name->buf);3550else3551 retval =fn(name->buf, sha1,0, cb_data);3552}3553if(retval)3554break;3555}3556strbuf_setlen(name, oldlen);3557}3558closedir(d);3559return retval;3560}35613562intfor_each_reflog(each_ref_fn fn,void*cb_data)3563{3564int retval;3565struct strbuf name;3566strbuf_init(&name, PATH_MAX);3567 retval =do_for_each_reflog(&name, fn, cb_data);3568strbuf_release(&name);3569return retval;3570}35713572/**3573 * Information needed for a single ref update. Set new_sha1 to the new3574 * value or to null_sha1 to delete the ref. To check the old value3575 * while the ref is locked, set (flags & REF_HAVE_OLD) and set3576 * old_sha1 to the old value, or to null_sha1 to ensure the ref does3577 * not exist before update.3578 */3579struct ref_update {3580unsigned char new_sha1[20];3581unsigned char old_sha1[20];3582/*3583 * One or more of REF_HAVE_OLD, REF_NODEREF,3584 * REF_DELETING, and REF_ISPRUNING:3585 */3586unsigned int flags;3587struct ref_lock *lock;3588int type;3589char*msg;3590const char refname[FLEX_ARRAY];3591};35923593/*3594 * Transaction states.3595 * OPEN: The transaction is in a valid state and can accept new updates.3596 * An OPEN transaction can be committed.3597 * CLOSED: A closed transaction is no longer active and no other operations3598 * than free can be used on it in this state.3599 * A transaction can either become closed by successfully committing3600 * an active transaction or if there is a failure while building3601 * the transaction thus rendering it failed/inactive.3602 */3603enum ref_transaction_state {3604 REF_TRANSACTION_OPEN =0,3605 REF_TRANSACTION_CLOSED =13606};36073608/*3609 * Data structure for holding a reference transaction, which can3610 * consist of checks and updates to multiple references, carried out3611 * as atomically as possible. This structure is opaque to callers.3612 */3613struct ref_transaction {3614struct ref_update **updates;3615size_t alloc;3616size_t nr;3617enum ref_transaction_state state;3618};36193620struct ref_transaction *ref_transaction_begin(struct strbuf *err)3621{3622assert(err);36233624returnxcalloc(1,sizeof(struct ref_transaction));3625}36263627voidref_transaction_free(struct ref_transaction *transaction)3628{3629int i;36303631if(!transaction)3632return;36333634for(i =0; i < transaction->nr; i++) {3635free(transaction->updates[i]->msg);3636free(transaction->updates[i]);3637}3638free(transaction->updates);3639free(transaction);3640}36413642static struct ref_update *add_update(struct ref_transaction *transaction,3643const char*refname)3644{3645size_t len =strlen(refname);3646struct ref_update *update =xcalloc(1,sizeof(*update) + len +1);36473648strcpy((char*)update->refname, refname);3649ALLOC_GROW(transaction->updates, transaction->nr +1, transaction->alloc);3650 transaction->updates[transaction->nr++] = update;3651return update;3652}36533654intref_transaction_update(struct ref_transaction *transaction,3655const char*refname,3656const unsigned char*new_sha1,3657const unsigned char*old_sha1,3658unsigned int flags,const char*msg,3659struct strbuf *err)3660{3661struct ref_update *update;36623663assert(err);36643665if(transaction->state != REF_TRANSACTION_OPEN)3666die("BUG: update called for transaction that is not open");36673668if(!is_null_sha1(new_sha1) &&3669check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {3670strbuf_addf(err,"refusing to update ref with bad name%s",3671 refname);3672return-1;3673}36743675 update =add_update(transaction, refname);3676hashcpy(update->new_sha1, new_sha1);3677if(old_sha1) {3678hashcpy(update->old_sha1, old_sha1);3679 flags |= REF_HAVE_OLD;3680}3681 update->flags = flags;3682if(msg)3683 update->msg =xstrdup(msg);3684return0;3685}36863687intref_transaction_create(struct ref_transaction *transaction,3688const char*refname,3689const unsigned char*new_sha1,3690unsigned int flags,const char*msg,3691struct strbuf *err)3692{3693if(!new_sha1 ||is_null_sha1(new_sha1))3694die("BUG: create called without valid new_sha1");3695returnref_transaction_update(transaction, refname, new_sha1,3696 null_sha1, flags, msg, err);3697}36983699intref_transaction_delete(struct ref_transaction *transaction,3700const char*refname,3701const unsigned char*old_sha1,3702unsigned int flags,const char*msg,3703struct strbuf *err)3704{3705returnref_transaction_update(transaction, refname,3706 null_sha1, old_sha1,3707 flags, msg, err);3708}37093710intupdate_ref(const char*action,const char*refname,3711const unsigned char*sha1,const unsigned char*oldval,3712unsigned int flags,enum action_on_err onerr)3713{3714struct ref_transaction *t;3715struct strbuf err = STRBUF_INIT;37163717 t =ref_transaction_begin(&err);3718if(!t ||3719ref_transaction_update(t, refname, sha1, oldval,3720 flags, action, &err) ||3721ref_transaction_commit(t, &err)) {3722const char*str ="update_ref failed for ref '%s':%s";37233724ref_transaction_free(t);3725switch(onerr) {3726case UPDATE_REFS_MSG_ON_ERR:3727error(str, refname, err.buf);3728break;3729case UPDATE_REFS_DIE_ON_ERR:3730die(str, refname, err.buf);3731break;3732case UPDATE_REFS_QUIET_ON_ERR:3733break;3734}3735strbuf_release(&err);3736return1;3737}3738strbuf_release(&err);3739ref_transaction_free(t);3740return0;3741}37423743static intref_update_compare(const void*r1,const void*r2)3744{3745const struct ref_update *const*u1 = r1;3746const struct ref_update *const*u2 = r2;3747returnstrcmp((*u1)->refname, (*u2)->refname);3748}37493750static intref_update_reject_duplicates(struct ref_update **updates,int n,3751struct strbuf *err)3752{3753int i;37543755assert(err);37563757for(i =1; i < n; i++)3758if(!strcmp(updates[i -1]->refname, updates[i]->refname)) {3759strbuf_addf(err,3760"Multiple updates for ref '%s' not allowed.",3761 updates[i]->refname);3762return1;3763}3764return0;3765}37663767intref_transaction_commit(struct ref_transaction *transaction,3768struct strbuf *err)3769{3770int ret =0, i;3771int n = transaction->nr;3772struct ref_update **updates = transaction->updates;3773struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3774struct string_list_item *ref_to_delete;37753776assert(err);37773778if(transaction->state != REF_TRANSACTION_OPEN)3779die("BUG: commit called for transaction that is not open");37803781if(!n) {3782 transaction->state = REF_TRANSACTION_CLOSED;3783return0;3784}37853786/* Copy, sort, and reject duplicate refs */3787qsort(updates, n,sizeof(*updates), ref_update_compare);3788if(ref_update_reject_duplicates(updates, n, err)) {3789 ret = TRANSACTION_GENERIC_ERROR;3790goto cleanup;3791}37923793/* Acquire all locks while verifying old values */3794for(i =0; i < n; i++) {3795struct ref_update *update = updates[i];3796unsigned int flags = update->flags;37973798if(is_null_sha1(update->new_sha1))3799 flags |= REF_DELETING;3800 update->lock =lock_ref_sha1_basic(3801 update->refname,3802((update->flags & REF_HAVE_OLD) ?3803 update->old_sha1 : NULL),3804 NULL,3805 flags,3806&update->type);3807if(!update->lock) {3808 ret = (errno == ENOTDIR)3809? TRANSACTION_NAME_CONFLICT3810: TRANSACTION_GENERIC_ERROR;3811strbuf_addf(err,"Cannot lock the ref '%s'.",3812 update->refname);3813goto cleanup;3814}3815}38163817/* Perform updates first so live commits remain referenced */3818for(i =0; i < n; i++) {3819struct ref_update *update = updates[i];38203821if(!is_null_sha1(update->new_sha1)) {3822if(write_ref_sha1(update->lock, update->new_sha1,3823 update->msg)) {3824 update->lock = NULL;/* freed by write_ref_sha1 */3825strbuf_addf(err,"Cannot update the ref '%s'.",3826 update->refname);3827 ret = TRANSACTION_GENERIC_ERROR;3828goto cleanup;3829}3830 update->lock = NULL;/* freed by write_ref_sha1 */3831}3832}38333834/* Perform deletes now that updates are safely completed */3835for(i =0; i < n; i++) {3836struct ref_update *update = updates[i];38373838if(update->lock) {3839if(delete_ref_loose(update->lock, update->type, err)) {3840 ret = TRANSACTION_GENERIC_ERROR;3841goto cleanup;3842}38433844if(!(update->flags & REF_ISPRUNING))3845string_list_append(&refs_to_delete,3846 update->lock->ref_name);3847}3848}38493850if(repack_without_refs(&refs_to_delete, err)) {3851 ret = TRANSACTION_GENERIC_ERROR;3852goto cleanup;3853}3854for_each_string_list_item(ref_to_delete, &refs_to_delete)3855unlink_or_warn(git_path("logs/%s", ref_to_delete->string));3856clear_loose_ref_cache(&ref_cache);38573858cleanup:3859 transaction->state = REF_TRANSACTION_CLOSED;38603861for(i =0; i < n; i++)3862if(updates[i]->lock)3863unlock_ref(updates[i]->lock);3864string_list_clear(&refs_to_delete,0);3865return ret;3866}38673868char*shorten_unambiguous_ref(const char*refname,int strict)3869{3870int i;3871static char**scanf_fmts;3872static int nr_rules;3873char*short_name;38743875if(!nr_rules) {3876/*3877 * Pre-generate scanf formats from ref_rev_parse_rules[].3878 * Generate a format suitable for scanf from a3879 * ref_rev_parse_rules rule by interpolating "%s" at the3880 * location of the "%.*s".3881 */3882size_t total_len =0;3883size_t offset =0;38843885/* the rule list is NULL terminated, count them first */3886for(nr_rules =0; ref_rev_parse_rules[nr_rules]; nr_rules++)3887/* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */3888 total_len +=strlen(ref_rev_parse_rules[nr_rules]) -2+1;38893890 scanf_fmts =xmalloc(nr_rules *sizeof(char*) + total_len);38913892 offset =0;3893for(i =0; i < nr_rules; i++) {3894assert(offset < total_len);3895 scanf_fmts[i] = (char*)&scanf_fmts[nr_rules] + offset;3896 offset +=snprintf(scanf_fmts[i], total_len - offset,3897 ref_rev_parse_rules[i],2,"%s") +1;3898}3899}39003901/* bail out if there are no rules */3902if(!nr_rules)3903returnxstrdup(refname);39043905/* buffer for scanf result, at most refname must fit */3906 short_name =xstrdup(refname);39073908/* skip first rule, it will always match */3909for(i = nr_rules -1; i >0; --i) {3910int j;3911int rules_to_fail = i;3912int short_name_len;39133914if(1!=sscanf(refname, scanf_fmts[i], short_name))3915continue;39163917 short_name_len =strlen(short_name);39183919/*3920 * in strict mode, all (except the matched one) rules3921 * must fail to resolve to a valid non-ambiguous ref3922 */3923if(strict)3924 rules_to_fail = nr_rules;39253926/*3927 * check if the short name resolves to a valid ref,3928 * but use only rules prior to the matched one3929 */3930for(j =0; j < rules_to_fail; j++) {3931const char*rule = ref_rev_parse_rules[j];3932char refname[PATH_MAX];39333934/* skip matched rule */3935if(i == j)3936continue;39373938/*3939 * the short name is ambiguous, if it resolves3940 * (with this previous rule) to a valid ref3941 * read_ref() returns 0 on success3942 */3943mksnpath(refname,sizeof(refname),3944 rule, short_name_len, short_name);3945if(ref_exists(refname))3946break;3947}39483949/*3950 * short name is non-ambiguous if all previous rules3951 * haven't resolved to a valid ref3952 */3953if(j == rules_to_fail)3954return short_name;3955}39563957free(short_name);3958returnxstrdup(refname);3959}39603961static struct string_list *hide_refs;39623963intparse_hide_refs_config(const char*var,const char*value,const char*section)3964{3965if(!strcmp("transfer.hiderefs", var) ||3966/* NEEDSWORK: use parse_config_key() once both are merged */3967(starts_with(var, section) && var[strlen(section)] =='.'&&3968!strcmp(var +strlen(section),".hiderefs"))) {3969char*ref;3970int len;39713972if(!value)3973returnconfig_error_nonbool(var);3974 ref =xstrdup(value);3975 len =strlen(ref);3976while(len && ref[len -1] =='/')3977 ref[--len] ='\0';3978if(!hide_refs) {3979 hide_refs =xcalloc(1,sizeof(*hide_refs));3980 hide_refs->strdup_strings =1;3981}3982string_list_append(hide_refs, ref);3983}3984return0;3985}39863987intref_is_hidden(const char*refname)3988{3989struct string_list_item *item;39903991if(!hide_refs)3992return0;3993for_each_string_list_item(item, hide_refs) {3994int len;3995if(!starts_with(refname, item->string))3996continue;3997 len =strlen(item->string);3998if(!refname[len] || refname[len] =='/')3999return1;4000}4001return0;4002}40034004struct expire_reflog_cb {4005unsigned int flags;4006 reflog_expiry_should_prune_fn *should_prune_fn;4007void*policy_cb;4008FILE*newlog;4009unsigned char last_kept_sha1[20];4010};40114012static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,4013const char*email,unsigned long timestamp,int tz,4014const char*message,void*cb_data)4015{4016struct expire_reflog_cb *cb = cb_data;4017struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;40184019if(cb->flags & EXPIRE_REFLOGS_REWRITE)4020 osha1 = cb->last_kept_sha1;40214022if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,4023 message, policy_cb)) {4024if(!cb->newlog)4025printf("would prune%s", message);4026else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4027printf("prune%s", message);4028}else{4029if(cb->newlog) {4030fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",4031sha1_to_hex(osha1),sha1_to_hex(nsha1),4032 email, timestamp, tz, message);4033hashcpy(cb->last_kept_sha1, nsha1);4034}4035if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4036printf("keep%s", message);4037}4038return0;4039}40404041intreflog_expire(const char*refname,const unsigned char*sha1,4042unsigned int flags,4043 reflog_expiry_prepare_fn prepare_fn,4044 reflog_expiry_should_prune_fn should_prune_fn,4045 reflog_expiry_cleanup_fn cleanup_fn,4046void*policy_cb_data)4047{4048static struct lock_file reflog_lock;4049struct expire_reflog_cb cb;4050struct ref_lock *lock;4051char*log_file;4052int status =0;40534054memset(&cb,0,sizeof(cb));4055 cb.flags = flags;4056 cb.policy_cb = policy_cb_data;4057 cb.should_prune_fn = should_prune_fn;40584059/*4060 * The reflog file is locked by holding the lock on the4061 * reference itself, plus we might need to update the4062 * reference if --updateref was specified:4063 */4064 lock =lock_ref_sha1_basic(refname, sha1, NULL,0, NULL);4065if(!lock)4066returnerror("cannot lock ref '%s'", refname);4067if(!reflog_exists(refname)) {4068unlock_ref(lock);4069return0;4070}40714072 log_file =git_pathdup("logs/%s", refname);4073if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4074/*4075 * Even though holding $GIT_DIR/logs/$reflog.lock has4076 * no locking implications, we use the lock_file4077 * machinery here anyway because it does a lot of the4078 * work we need, including cleaning up if the program4079 * exits unexpectedly.4080 */4081if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {4082struct strbuf err = STRBUF_INIT;4083unable_to_lock_message(log_file, errno, &err);4084error("%s", err.buf);4085strbuf_release(&err);4086goto failure;4087}4088 cb.newlog =fdopen_lock_file(&reflog_lock,"w");4089if(!cb.newlog) {4090error("cannot fdopen%s(%s)",4091 reflog_lock.filename.buf,strerror(errno));4092goto failure;4093}4094}40954096(*prepare_fn)(refname, sha1, cb.policy_cb);4097for_each_reflog_ent(refname, expire_reflog_ent, &cb);4098(*cleanup_fn)(cb.policy_cb);40994100if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4101if(close_lock_file(&reflog_lock)) {4102 status |=error("couldn't write%s:%s", log_file,4103strerror(errno));4104}else if((flags & EXPIRE_REFLOGS_UPDATE_REF) &&4105(write_in_full(lock->lock_fd,4106sha1_to_hex(cb.last_kept_sha1),40) !=40||4107write_str_in_full(lock->lock_fd,"\n") !=1||4108close_ref(lock) <0)) {4109 status |=error("couldn't write%s",4110 lock->lk->filename.buf);4111rollback_lock_file(&reflog_lock);4112}else if(commit_lock_file(&reflog_lock)) {4113 status |=error("unable to commit reflog '%s' (%s)",4114 log_file,strerror(errno));4115}else if((flags & EXPIRE_REFLOGS_UPDATE_REF) &&commit_ref(lock)) {4116 status |=error("couldn't set%s", lock->ref_name);4117}4118}4119free(log_file);4120unlock_ref(lock);4121return status;41224123 failure:4124rollback_lock_file(&reflog_lock);4125free(log_file);4126unlock_ref(lock);4127return-1;4128}