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; 15}; 16 17/* 18 * How to handle various characters in refnames: 19 * 0: An acceptable character for refs 20 * 1: End-of-component 21 * 2: ., look for a preceding . to reject .. in refs 22 * 3: {, look for a preceding @ to reject @{ in refs 23 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP 24 */ 25static unsigned char refname_disposition[256] = { 261,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 274,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 284,0,0,0,0,0,0,0,0,0,4,0,0,0,2,1, 290,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4, 300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 310,0,0,0,0,0,0,0,0,0,0,4,4,0,4,0, 320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 330,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4 34}; 35 36/* 37 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken 38 * refs (i.e., because the reference is about to be deleted anyway). 39 */ 40#define REF_DELETING 0x02 41 42/* 43 * Used as a flag in ref_update::flags when a loose ref is being 44 * pruned. 45 */ 46#define REF_ISPRUNING 0x04 47 48/* 49 * Used as a flag in ref_update::flags when the reference should be 50 * updated to new_sha1. 51 */ 52#define REF_HAVE_NEW 0x08 53 54/* 55 * Used as a flag in ref_update::flags when old_sha1 should be 56 * checked. 57 */ 58#define REF_HAVE_OLD 0x10 59 60/* 61 * Try to read one refname component from the front of refname. 62 * Return the length of the component found, or -1 if the component is 63 * not legal. It is legal if it is something reasonable to have under 64 * ".git/refs/"; We do not like it if: 65 * 66 * - any path component of it begins with ".", or 67 * - it has double dots "..", or 68 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or 69 * - it ends with a "/". 70 * - it ends with ".lock" 71 * - it contains a "\" (backslash) 72 */ 73static intcheck_refname_component(const char*refname,int flags) 74{ 75const char*cp; 76char last ='\0'; 77 78for(cp = refname; ; cp++) { 79int ch = *cp &255; 80unsigned char disp = refname_disposition[ch]; 81switch(disp) { 82case1: 83goto out; 84case2: 85if(last =='.') 86return-1;/* Refname contains "..". */ 87break; 88case3: 89if(last =='@') 90return-1;/* Refname contains "@{". */ 91break; 92case4: 93return-1; 94} 95 last = ch; 96} 97out: 98if(cp == refname) 99return0;/* Component has zero length. */ 100if(refname[0] =='.') 101return-1;/* Component starts with '.'. */ 102if(cp - refname >= LOCK_SUFFIX_LEN && 103!memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN)) 104return-1;/* Refname ends with ".lock". */ 105return cp - refname; 106} 107 108intcheck_refname_format(const char*refname,int flags) 109{ 110int component_len, component_count =0; 111 112if(!strcmp(refname,"@")) 113/* Refname is a single character '@'. */ 114return-1; 115 116while(1) { 117/* We are at the start of a path component. */ 118 component_len =check_refname_component(refname, flags); 119if(component_len <=0) { 120if((flags & REFNAME_REFSPEC_PATTERN) && 121 refname[0] =='*'&& 122(refname[1] =='\0'|| refname[1] =='/')) { 123/* Accept one wildcard as a full refname component. */ 124 flags &= ~REFNAME_REFSPEC_PATTERN; 125 component_len =1; 126}else{ 127return-1; 128} 129} 130 component_count++; 131if(refname[component_len] =='\0') 132break; 133/* Skip to next component. */ 134 refname += component_len +1; 135} 136 137if(refname[component_len -1] =='.') 138return-1;/* Refname ends with '.'. */ 139if(!(flags & REFNAME_ALLOW_ONELEVEL) && component_count <2) 140return-1;/* Refname has only one component. */ 141return0; 142} 143 144struct ref_entry; 145 146/* 147 * Information used (along with the information in ref_entry) to 148 * describe a single cached reference. This data structure only 149 * occurs embedded in a union in struct ref_entry, and only when 150 * (ref_entry->flag & REF_DIR) is zero. 151 */ 152struct ref_value { 153/* 154 * The name of the object to which this reference resolves 155 * (which may be a tag object). If REF_ISBROKEN, this is 156 * null. If REF_ISSYMREF, then this is the name of the object 157 * referred to by the last reference in the symlink chain. 158 */ 159unsigned char sha1[20]; 160 161/* 162 * If REF_KNOWS_PEELED, then this field holds the peeled value 163 * of this reference, or null if the reference is known not to 164 * be peelable. See the documentation for peel_ref() for an 165 * exact definition of "peelable". 166 */ 167unsigned char peeled[20]; 168}; 169 170struct ref_cache; 171 172/* 173 * Information used (along with the information in ref_entry) to 174 * describe a level in the hierarchy of references. This data 175 * structure only occurs embedded in a union in struct ref_entry, and 176 * only when (ref_entry.flag & REF_DIR) is set. In that case, 177 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 178 * in the directory have already been read: 179 * 180 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 181 * or packed references, already read. 182 * 183 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 184 * references that hasn't been read yet (nor has any of its 185 * subdirectories). 186 * 187 * Entries within a directory are stored within a growable array of 188 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 189 * sorted are sorted by their component name in strcmp() order and the 190 * remaining entries are unsorted. 191 * 192 * Loose references are read lazily, one directory at a time. When a 193 * directory of loose references is read, then all of the references 194 * in that directory are stored, and REF_INCOMPLETE stubs are created 195 * for any subdirectories, but the subdirectories themselves are not 196 * read. The reading is triggered by get_ref_dir(). 197 */ 198struct ref_dir { 199int nr, alloc; 200 201/* 202 * Entries with index 0 <= i < sorted are sorted by name. New 203 * entries are appended to the list unsorted, and are sorted 204 * only when required; thus we avoid the need to sort the list 205 * after the addition of every reference. 206 */ 207int sorted; 208 209/* A pointer to the ref_cache that contains this ref_dir. */ 210struct ref_cache *ref_cache; 211 212struct ref_entry **entries; 213}; 214 215/* 216 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 217 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 218 * public values; see refs.h. 219 */ 220 221/* 222 * The field ref_entry->u.value.peeled of this value entry contains 223 * the correct peeled value for the reference, which might be 224 * null_sha1 if the reference is not a tag or if it is broken. 225 */ 226#define REF_KNOWS_PEELED 0x10 227 228/* ref_entry represents a directory of references */ 229#define REF_DIR 0x20 230 231/* 232 * Entry has not yet been read from disk (used only for REF_DIR 233 * entries representing loose references) 234 */ 235#define REF_INCOMPLETE 0x40 236 237/* 238 * A ref_entry represents either a reference or a "subdirectory" of 239 * references. 240 * 241 * Each directory in the reference namespace is represented by a 242 * ref_entry with (flags & REF_DIR) set and containing a subdir member 243 * that holds the entries in that directory that have been read so 244 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 245 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 246 * used for loose reference directories. 247 * 248 * References are represented by a ref_entry with (flags & REF_DIR) 249 * unset and a value member that describes the reference's value. The 250 * flag member is at the ref_entry level, but it is also needed to 251 * interpret the contents of the value field (in other words, a 252 * ref_value object is not very much use without the enclosing 253 * ref_entry). 254 * 255 * Reference names cannot end with slash and directories' names are 256 * always stored with a trailing slash (except for the top-level 257 * directory, which is always denoted by ""). This has two nice 258 * consequences: (1) when the entries in each subdir are sorted 259 * lexicographically by name (as they usually are), the references in 260 * a whole tree can be generated in lexicographic order by traversing 261 * the tree in left-to-right, depth-first order; (2) the names of 262 * references and subdirectories cannot conflict, and therefore the 263 * presence of an empty subdirectory does not block the creation of a 264 * similarly-named reference. (The fact that reference names with the 265 * same leading components can conflict *with each other* is a 266 * separate issue that is regulated by is_refname_available().) 267 * 268 * Please note that the name field contains the fully-qualified 269 * reference (or subdirectory) name. Space could be saved by only 270 * storing the relative names. But that would require the full names 271 * to be generated on the fly when iterating in do_for_each_ref(), and 272 * would break callback functions, who have always been able to assume 273 * that the name strings that they are passed will not be freed during 274 * the iteration. 275 */ 276struct ref_entry { 277unsigned char flag;/* ISSYMREF? ISPACKED? */ 278union{ 279struct ref_value value;/* if not (flags&REF_DIR) */ 280struct ref_dir subdir;/* if (flags&REF_DIR) */ 281} u; 282/* 283 * The full name of the reference (e.g., "refs/heads/master") 284 * or the full name of the directory with a trailing slash 285 * (e.g., "refs/heads/"): 286 */ 287char name[FLEX_ARRAY]; 288}; 289 290static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 291 292static struct ref_dir *get_ref_dir(struct ref_entry *entry) 293{ 294struct ref_dir *dir; 295assert(entry->flag & REF_DIR); 296 dir = &entry->u.subdir; 297if(entry->flag & REF_INCOMPLETE) { 298read_loose_refs(entry->name, dir); 299 entry->flag &= ~REF_INCOMPLETE; 300} 301return dir; 302} 303 304/* 305 * Check if a refname is safe. 306 * For refs that start with "refs/" we consider it safe as long they do 307 * not try to resolve to outside of refs/. 308 * 309 * For all other refs we only consider them safe iff they only contain 310 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like 311 * "config"). 312 */ 313static intrefname_is_safe(const char*refname) 314{ 315if(starts_with(refname,"refs/")) { 316char*buf; 317int result; 318 319 buf =xmalloc(strlen(refname) +1); 320/* 321 * Does the refname try to escape refs/? 322 * For example: refs/foo/../bar is safe but refs/foo/../../bar 323 * is not. 324 */ 325 result = !normalize_path_copy(buf, refname +strlen("refs/")); 326free(buf); 327return result; 328} 329while(*refname) { 330if(!isupper(*refname) && *refname !='_') 331return0; 332 refname++; 333} 334return1; 335} 336 337static struct ref_entry *create_ref_entry(const char*refname, 338const unsigned char*sha1,int flag, 339int check_name) 340{ 341int len; 342struct ref_entry *ref; 343 344if(check_name && 345check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 346die("Reference has invalid format: '%s'", refname); 347if(!check_name && !refname_is_safe(refname)) 348die("Reference has invalid name: '%s'", refname); 349 len =strlen(refname) +1; 350 ref =xmalloc(sizeof(struct ref_entry) + len); 351hashcpy(ref->u.value.sha1, sha1); 352hashclr(ref->u.value.peeled); 353memcpy(ref->name, refname, len); 354 ref->flag = flag; 355return ref; 356} 357 358static voidclear_ref_dir(struct ref_dir *dir); 359 360static voidfree_ref_entry(struct ref_entry *entry) 361{ 362if(entry->flag & REF_DIR) { 363/* 364 * Do not use get_ref_dir() here, as that might 365 * trigger the reading of loose refs. 366 */ 367clear_ref_dir(&entry->u.subdir); 368} 369free(entry); 370} 371 372/* 373 * Add a ref_entry to the end of dir (unsorted). Entry is always 374 * stored directly in dir; no recursion into subdirectories is 375 * done. 376 */ 377static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 378{ 379ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 380 dir->entries[dir->nr++] = entry; 381/* optimize for the case that entries are added in order */ 382if(dir->nr ==1|| 383(dir->nr == dir->sorted +1&& 384strcmp(dir->entries[dir->nr -2]->name, 385 dir->entries[dir->nr -1]->name) <0)) 386 dir->sorted = dir->nr; 387} 388 389/* 390 * Clear and free all entries in dir, recursively. 391 */ 392static voidclear_ref_dir(struct ref_dir *dir) 393{ 394int i; 395for(i =0; i < dir->nr; i++) 396free_ref_entry(dir->entries[i]); 397free(dir->entries); 398 dir->sorted = dir->nr = dir->alloc =0; 399 dir->entries = NULL; 400} 401 402/* 403 * Create a struct ref_entry object for the specified dirname. 404 * dirname is the name of the directory with a trailing slash (e.g., 405 * "refs/heads/") or "" for the top-level directory. 406 */ 407static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 408const char*dirname,size_t len, 409int incomplete) 410{ 411struct ref_entry *direntry; 412 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 413memcpy(direntry->name, dirname, len); 414 direntry->name[len] ='\0'; 415 direntry->u.subdir.ref_cache = ref_cache; 416 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 417return direntry; 418} 419 420static intref_entry_cmp(const void*a,const void*b) 421{ 422struct ref_entry *one = *(struct ref_entry **)a; 423struct ref_entry *two = *(struct ref_entry **)b; 424returnstrcmp(one->name, two->name); 425} 426 427static voidsort_ref_dir(struct ref_dir *dir); 428 429struct string_slice { 430size_t len; 431const char*str; 432}; 433 434static intref_entry_cmp_sslice(const void*key_,const void*ent_) 435{ 436const struct string_slice *key = key_; 437const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 438int cmp =strncmp(key->str, ent->name, key->len); 439if(cmp) 440return cmp; 441return'\0'- (unsigned char)ent->name[key->len]; 442} 443 444/* 445 * Return the index of the entry with the given refname from the 446 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 447 * no such entry is found. dir must already be complete. 448 */ 449static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 450{ 451struct ref_entry **r; 452struct string_slice key; 453 454if(refname == NULL || !dir->nr) 455return-1; 456 457sort_ref_dir(dir); 458 key.len = len; 459 key.str = refname; 460 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 461 ref_entry_cmp_sslice); 462 463if(r == NULL) 464return-1; 465 466return r - dir->entries; 467} 468 469/* 470 * Search for a directory entry directly within dir (without 471 * recursing). Sort dir if necessary. subdirname must be a directory 472 * name (i.e., end in '/'). If mkdir is set, then create the 473 * directory if it is missing; otherwise, return NULL if the desired 474 * directory cannot be found. dir must already be complete. 475 */ 476static struct ref_dir *search_for_subdir(struct ref_dir *dir, 477const char*subdirname,size_t len, 478int mkdir) 479{ 480int entry_index =search_ref_dir(dir, subdirname, len); 481struct ref_entry *entry; 482if(entry_index == -1) { 483if(!mkdir) 484return NULL; 485/* 486 * Since dir is complete, the absence of a subdir 487 * means that the subdir really doesn't exist; 488 * therefore, create an empty record for it but mark 489 * the record complete. 490 */ 491 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 492add_entry_to_dir(dir, entry); 493}else{ 494 entry = dir->entries[entry_index]; 495} 496returnget_ref_dir(entry); 497} 498 499/* 500 * If refname is a reference name, find the ref_dir within the dir 501 * tree that should hold refname. If refname is a directory name 502 * (i.e., ends in '/'), then return that ref_dir itself. dir must 503 * represent the top-level directory and must already be complete. 504 * Sort ref_dirs and recurse into subdirectories as necessary. If 505 * mkdir is set, then create any missing directories; otherwise, 506 * return NULL if the desired directory cannot be found. 507 */ 508static struct ref_dir *find_containing_dir(struct ref_dir *dir, 509const char*refname,int mkdir) 510{ 511const char*slash; 512for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 513size_t dirnamelen = slash - refname +1; 514struct ref_dir *subdir; 515 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 516if(!subdir) { 517 dir = NULL; 518break; 519} 520 dir = subdir; 521} 522 523return dir; 524} 525 526/* 527 * Find the value entry with the given name in dir, sorting ref_dirs 528 * and recursing into subdirectories as necessary. If the name is not 529 * found or it corresponds to a directory entry, return NULL. 530 */ 531static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 532{ 533int entry_index; 534struct ref_entry *entry; 535 dir =find_containing_dir(dir, refname,0); 536if(!dir) 537return NULL; 538 entry_index =search_ref_dir(dir, refname,strlen(refname)); 539if(entry_index == -1) 540return NULL; 541 entry = dir->entries[entry_index]; 542return(entry->flag & REF_DIR) ? NULL : entry; 543} 544 545/* 546 * Remove the entry with the given name from dir, recursing into 547 * subdirectories as necessary. If refname is the name of a directory 548 * (i.e., ends with '/'), then remove the directory and its contents. 549 * If the removal was successful, return the number of entries 550 * remaining in the directory entry that contained the deleted entry. 551 * If the name was not found, return -1. Please note that this 552 * function only deletes the entry from the cache; it does not delete 553 * it from the filesystem or ensure that other cache entries (which 554 * might be symbolic references to the removed entry) are updated. 555 * Nor does it remove any containing dir entries that might be made 556 * empty by the removal. dir must represent the top-level directory 557 * and must already be complete. 558 */ 559static intremove_entry(struct ref_dir *dir,const char*refname) 560{ 561int refname_len =strlen(refname); 562int entry_index; 563struct ref_entry *entry; 564int is_dir = refname[refname_len -1] =='/'; 565if(is_dir) { 566/* 567 * refname represents a reference directory. Remove 568 * the trailing slash; otherwise we will get the 569 * directory *representing* refname rather than the 570 * one *containing* it. 571 */ 572char*dirname =xmemdupz(refname, refname_len -1); 573 dir =find_containing_dir(dir, dirname,0); 574free(dirname); 575}else{ 576 dir =find_containing_dir(dir, refname,0); 577} 578if(!dir) 579return-1; 580 entry_index =search_ref_dir(dir, refname, refname_len); 581if(entry_index == -1) 582return-1; 583 entry = dir->entries[entry_index]; 584 585memmove(&dir->entries[entry_index], 586&dir->entries[entry_index +1], 587(dir->nr - entry_index -1) *sizeof(*dir->entries) 588); 589 dir->nr--; 590if(dir->sorted > entry_index) 591 dir->sorted--; 592free_ref_entry(entry); 593return dir->nr; 594} 595 596/* 597 * Add a ref_entry to the ref_dir (unsorted), recursing into 598 * subdirectories as necessary. dir must represent the top-level 599 * directory. Return 0 on success. 600 */ 601static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 602{ 603 dir =find_containing_dir(dir, ref->name,1); 604if(!dir) 605return-1; 606add_entry_to_dir(dir, ref); 607return0; 608} 609 610/* 611 * Emit a warning and return true iff ref1 and ref2 have the same name 612 * and the same sha1. Die if they have the same name but different 613 * sha1s. 614 */ 615static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 616{ 617if(strcmp(ref1->name, ref2->name)) 618return0; 619 620/* Duplicate name; make sure that they don't conflict: */ 621 622if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 623/* This is impossible by construction */ 624die("Reference directory conflict:%s", ref1->name); 625 626if(hashcmp(ref1->u.value.sha1, ref2->u.value.sha1)) 627die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 628 629warning("Duplicated ref:%s", ref1->name); 630return1; 631} 632 633/* 634 * Sort the entries in dir non-recursively (if they are not already 635 * sorted) and remove any duplicate entries. 636 */ 637static voidsort_ref_dir(struct ref_dir *dir) 638{ 639int i, j; 640struct ref_entry *last = NULL; 641 642/* 643 * This check also prevents passing a zero-length array to qsort(), 644 * which is a problem on some platforms. 645 */ 646if(dir->sorted == dir->nr) 647return; 648 649qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 650 651/* Remove any duplicates: */ 652for(i =0, j =0; j < dir->nr; j++) { 653struct ref_entry *entry = dir->entries[j]; 654if(last &&is_dup_ref(last, entry)) 655free_ref_entry(entry); 656else 657 last = dir->entries[i++] = entry; 658} 659 dir->sorted = dir->nr = i; 660} 661 662/* Include broken references in a do_for_each_ref*() iteration: */ 663#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 664 665/* 666 * Return true iff the reference described by entry can be resolved to 667 * an object in the database. Emit a warning if the referred-to 668 * object does not exist. 669 */ 670static intref_resolves_to_object(struct ref_entry *entry) 671{ 672if(entry->flag & REF_ISBROKEN) 673return0; 674if(!has_sha1_file(entry->u.value.sha1)) { 675error("%sdoes not point to a valid object!", entry->name); 676return0; 677} 678return1; 679} 680 681/* 682 * current_ref is a performance hack: when iterating over references 683 * using the for_each_ref*() functions, current_ref is set to the 684 * current reference's entry before calling the callback function. If 685 * the callback function calls peel_ref(), then peel_ref() first 686 * checks whether the reference to be peeled is the current reference 687 * (it usually is) and if so, returns that reference's peeled version 688 * if it is available. This avoids a refname lookup in a common case. 689 */ 690static struct ref_entry *current_ref; 691 692typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 693 694struct ref_entry_cb { 695const char*base; 696int trim; 697int flags; 698 each_ref_fn *fn; 699void*cb_data; 700}; 701 702/* 703 * Handle one reference in a do_for_each_ref*()-style iteration, 704 * calling an each_ref_fn for each entry. 705 */ 706static intdo_one_ref(struct ref_entry *entry,void*cb_data) 707{ 708struct ref_entry_cb *data = cb_data; 709struct ref_entry *old_current_ref; 710int retval; 711 712if(!starts_with(entry->name, data->base)) 713return0; 714 715if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 716!ref_resolves_to_object(entry)) 717return0; 718 719/* Store the old value, in case this is a recursive call: */ 720 old_current_ref = current_ref; 721 current_ref = entry; 722 retval = data->fn(entry->name + data->trim, entry->u.value.sha1, 723 entry->flag, data->cb_data); 724 current_ref = old_current_ref; 725return retval; 726} 727 728/* 729 * Call fn for each reference in dir that has index in the range 730 * offset <= index < dir->nr. Recurse into subdirectories that are in 731 * that index range, sorting them before iterating. This function 732 * does not sort dir itself; it should be sorted beforehand. fn is 733 * called for all references, including broken ones. 734 */ 735static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 736 each_ref_entry_fn fn,void*cb_data) 737{ 738int i; 739assert(dir->sorted == dir->nr); 740for(i = offset; i < dir->nr; i++) { 741struct ref_entry *entry = dir->entries[i]; 742int retval; 743if(entry->flag & REF_DIR) { 744struct ref_dir *subdir =get_ref_dir(entry); 745sort_ref_dir(subdir); 746 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 747}else{ 748 retval =fn(entry, cb_data); 749} 750if(retval) 751return retval; 752} 753return0; 754} 755 756/* 757 * Call fn for each reference in the union of dir1 and dir2, in order 758 * by refname. Recurse into subdirectories. If a value entry appears 759 * in both dir1 and dir2, then only process the version that is in 760 * dir2. The input dirs must already be sorted, but subdirs will be 761 * sorted as needed. fn is called for all references, including 762 * broken ones. 763 */ 764static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 765struct ref_dir *dir2, 766 each_ref_entry_fn fn,void*cb_data) 767{ 768int retval; 769int i1 =0, i2 =0; 770 771assert(dir1->sorted == dir1->nr); 772assert(dir2->sorted == dir2->nr); 773while(1) { 774struct ref_entry *e1, *e2; 775int cmp; 776if(i1 == dir1->nr) { 777returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 778} 779if(i2 == dir2->nr) { 780returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 781} 782 e1 = dir1->entries[i1]; 783 e2 = dir2->entries[i2]; 784 cmp =strcmp(e1->name, e2->name); 785if(cmp ==0) { 786if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 787/* Both are directories; descend them in parallel. */ 788struct ref_dir *subdir1 =get_ref_dir(e1); 789struct ref_dir *subdir2 =get_ref_dir(e2); 790sort_ref_dir(subdir1); 791sort_ref_dir(subdir2); 792 retval =do_for_each_entry_in_dirs( 793 subdir1, subdir2, fn, cb_data); 794 i1++; 795 i2++; 796}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 797/* Both are references; ignore the one from dir1. */ 798 retval =fn(e2, cb_data); 799 i1++; 800 i2++; 801}else{ 802die("conflict between reference and directory:%s", 803 e1->name); 804} 805}else{ 806struct ref_entry *e; 807if(cmp <0) { 808 e = e1; 809 i1++; 810}else{ 811 e = e2; 812 i2++; 813} 814if(e->flag & REF_DIR) { 815struct ref_dir *subdir =get_ref_dir(e); 816sort_ref_dir(subdir); 817 retval =do_for_each_entry_in_dir( 818 subdir,0, fn, cb_data); 819}else{ 820 retval =fn(e, cb_data); 821} 822} 823if(retval) 824return retval; 825} 826} 827 828/* 829 * Load all of the refs from the dir into our in-memory cache. The hard work 830 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 831 * through all of the sub-directories. We do not even need to care about 832 * sorting, as traversal order does not matter to us. 833 */ 834static voidprime_ref_dir(struct ref_dir *dir) 835{ 836int i; 837for(i =0; i < dir->nr; i++) { 838struct ref_entry *entry = dir->entries[i]; 839if(entry->flag & REF_DIR) 840prime_ref_dir(get_ref_dir(entry)); 841} 842} 843 844static intentry_matches(struct ref_entry *entry,const struct string_list *list) 845{ 846return list &&string_list_has_string(list, entry->name); 847} 848 849struct nonmatching_ref_data { 850const struct string_list *skip; 851struct ref_entry *found; 852}; 853 854static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 855{ 856struct nonmatching_ref_data *data = vdata; 857 858if(entry_matches(entry, data->skip)) 859return0; 860 861 data->found = entry; 862return1; 863} 864 865static voidreport_refname_conflict(struct ref_entry *entry, 866const char*refname) 867{ 868error("'%s' exists; cannot create '%s'", entry->name, refname); 869} 870 871/* 872 * Return true iff a reference named refname could be created without 873 * conflicting with the name of an existing reference in dir. If 874 * skip is non-NULL, ignore potential conflicts with refs in skip 875 * (e.g., because they are scheduled for deletion in the same 876 * operation). 877 * 878 * Two reference names conflict if one of them exactly matches the 879 * leading components of the other; e.g., "foo/bar" conflicts with 880 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or 881 * "foo/barbados". 882 * 883 * skip must be sorted. 884 */ 885static intis_refname_available(const char*refname, 886const struct string_list *skip, 887struct ref_dir *dir) 888{ 889const char*slash; 890size_t len; 891int pos; 892char*dirname; 893 894for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 895/* 896 * We are still at a leading dir of the refname; we are 897 * looking for a conflict with a leaf entry. 898 * 899 * If we find one, we still must make sure it is 900 * not in "skip". 901 */ 902 pos =search_ref_dir(dir, refname, slash - refname); 903if(pos >=0) { 904struct ref_entry *entry = dir->entries[pos]; 905if(entry_matches(entry, skip)) 906return1; 907report_refname_conflict(entry, refname); 908return0; 909} 910 911 912/* 913 * Otherwise, we can try to continue our search with 914 * the next component; if we come up empty, we know 915 * there is nothing under this whole prefix. 916 */ 917 pos =search_ref_dir(dir, refname, slash +1- refname); 918if(pos <0) 919return1; 920 921 dir =get_ref_dir(dir->entries[pos]); 922} 923 924/* 925 * We are at the leaf of our refname; we want to 926 * make sure there are no directories which match it. 927 */ 928 len =strlen(refname); 929 dirname =xmallocz(len +1); 930sprintf(dirname,"%s/", refname); 931 pos =search_ref_dir(dir, dirname, len +1); 932free(dirname); 933 934if(pos >=0) { 935/* 936 * We found a directory named "refname". It is a 937 * problem iff it contains any ref that is not 938 * in "skip". 939 */ 940struct ref_entry *entry = dir->entries[pos]; 941struct ref_dir *dir =get_ref_dir(entry); 942struct nonmatching_ref_data data; 943 944 data.skip = skip; 945sort_ref_dir(dir); 946if(!do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) 947return1; 948 949report_refname_conflict(data.found, refname); 950return0; 951} 952 953/* 954 * There is no point in searching for another leaf 955 * node which matches it; such an entry would be the 956 * ref we are looking for, not a conflict. 957 */ 958return1; 959} 960 961struct packed_ref_cache { 962struct ref_entry *root; 963 964/* 965 * Count of references to the data structure in this instance, 966 * including the pointer from ref_cache::packed if any. The 967 * data will not be freed as long as the reference count is 968 * nonzero. 969 */ 970unsigned int referrers; 971 972/* 973 * Iff the packed-refs file associated with this instance is 974 * currently locked for writing, this points at the associated 975 * lock (which is owned by somebody else). The referrer count 976 * is also incremented when the file is locked and decremented 977 * when it is unlocked. 978 */ 979struct lock_file *lock; 980 981/* The metadata from when this packed-refs cache was read */ 982struct stat_validity validity; 983}; 984 985/* 986 * Future: need to be in "struct repository" 987 * when doing a full libification. 988 */ 989static struct ref_cache { 990struct ref_cache *next; 991struct ref_entry *loose; 992struct packed_ref_cache *packed; 993/* 994 * The submodule name, or "" for the main repo. We allocate 995 * length 1 rather than FLEX_ARRAY so that the main ref_cache 996 * is initialized correctly. 997 */ 998char name[1]; 999} ref_cache, *submodule_ref_caches;10001001/* Lock used for the main packed-refs file: */1002static struct lock_file packlock;10031004/*1005 * Increment the reference count of *packed_refs.1006 */1007static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs)1008{1009 packed_refs->referrers++;1010}10111012/*1013 * Decrease the reference count of *packed_refs. If it goes to zero,1014 * free *packed_refs and return true; otherwise return false.1015 */1016static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs)1017{1018if(!--packed_refs->referrers) {1019free_ref_entry(packed_refs->root);1020stat_validity_clear(&packed_refs->validity);1021free(packed_refs);1022return1;1023}else{1024return0;1025}1026}10271028static voidclear_packed_ref_cache(struct ref_cache *refs)1029{1030if(refs->packed) {1031struct packed_ref_cache *packed_refs = refs->packed;10321033if(packed_refs->lock)1034die("internal error: packed-ref cache cleared while locked");1035 refs->packed = NULL;1036release_packed_ref_cache(packed_refs);1037}1038}10391040static voidclear_loose_ref_cache(struct ref_cache *refs)1041{1042if(refs->loose) {1043free_ref_entry(refs->loose);1044 refs->loose = NULL;1045}1046}10471048static struct ref_cache *create_ref_cache(const char*submodule)1049{1050int len;1051struct ref_cache *refs;1052if(!submodule)1053 submodule ="";1054 len =strlen(submodule) +1;1055 refs =xcalloc(1,sizeof(struct ref_cache) + len);1056memcpy(refs->name, submodule, len);1057return refs;1058}10591060/*1061 * Return a pointer to a ref_cache for the specified submodule. For1062 * the main repository, use submodule==NULL. The returned structure1063 * will be allocated and initialized but not necessarily populated; it1064 * should not be freed.1065 */1066static struct ref_cache *get_ref_cache(const char*submodule)1067{1068struct ref_cache *refs;10691070if(!submodule || !*submodule)1071return&ref_cache;10721073for(refs = submodule_ref_caches; refs; refs = refs->next)1074if(!strcmp(submodule, refs->name))1075return refs;10761077 refs =create_ref_cache(submodule);1078 refs->next = submodule_ref_caches;1079 submodule_ref_caches = refs;1080return refs;1081}10821083/* The length of a peeled reference line in packed-refs, including EOL: */1084#define PEELED_LINE_LENGTH 4210851086/*1087 * The packed-refs header line that we write out. Perhaps other1088 * traits will be added later. The trailing space is required.1089 */1090static const char PACKED_REFS_HEADER[] =1091"# pack-refs with: peeled fully-peeled\n";10921093/*1094 * Parse one line from a packed-refs file. Write the SHA1 to sha1.1095 * Return a pointer to the refname within the line (null-terminated),1096 * or NULL if there was a problem.1097 */1098static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1)1099{1100const char*ref;11011102/*1103 * 42: the answer to everything.1104 *1105 * In this case, it happens to be the answer to1106 * 40 (length of sha1 hex representation)1107 * +1 (space in between hex and name)1108 * +1 (newline at the end of the line)1109 */1110if(line->len <=42)1111return NULL;11121113if(get_sha1_hex(line->buf, sha1) <0)1114return NULL;1115if(!isspace(line->buf[40]))1116return NULL;11171118 ref = line->buf +41;1119if(isspace(*ref))1120return NULL;11211122if(line->buf[line->len -1] !='\n')1123return NULL;1124 line->buf[--line->len] =0;11251126return ref;1127}11281129/*1130 * Read f, which is a packed-refs file, into dir.1131 *1132 * A comment line of the form "# pack-refs with: " may contain zero or1133 * more traits. We interpret the traits as follows:1134 *1135 * No traits:1136 *1137 * Probably no references are peeled. But if the file contains a1138 * peeled value for a reference, we will use it.1139 *1140 * peeled:1141 *1142 * References under "refs/tags/", if they *can* be peeled, *are*1143 * peeled in this file. References outside of "refs/tags/" are1144 * probably not peeled even if they could have been, but if we find1145 * a peeled value for such a reference we will use it.1146 *1147 * fully-peeled:1148 *1149 * All references in the file that can be peeled are peeled.1150 * Inversely (and this is more important), any references in the1151 * file for which no peeled value is recorded is not peelable. This1152 * trait should typically be written alongside "peeled" for1153 * compatibility with older clients, but we do not require it1154 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1155 */1156static voidread_packed_refs(FILE*f,struct ref_dir *dir)1157{1158struct ref_entry *last = NULL;1159struct strbuf line = STRBUF_INIT;1160enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;11611162while(strbuf_getwholeline(&line, f,'\n') != EOF) {1163unsigned char sha1[20];1164const char*refname;1165const char*traits;11661167if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1168if(strstr(traits," fully-peeled "))1169 peeled = PEELED_FULLY;1170else if(strstr(traits," peeled "))1171 peeled = PEELED_TAGS;1172/* perhaps other traits later as well */1173continue;1174}11751176 refname =parse_ref_line(&line, sha1);1177if(refname) {1178int flag = REF_ISPACKED;11791180if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1181hashclr(sha1);1182 flag |= REF_BAD_NAME | REF_ISBROKEN;1183}1184 last =create_ref_entry(refname, sha1, flag,0);1185if(peeled == PEELED_FULLY ||1186(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1187 last->flag |= REF_KNOWS_PEELED;1188add_ref(dir, last);1189continue;1190}1191if(last &&1192 line.buf[0] =='^'&&1193 line.len == PEELED_LINE_LENGTH &&1194 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1195!get_sha1_hex(line.buf +1, sha1)) {1196hashcpy(last->u.value.peeled, sha1);1197/*1198 * Regardless of what the file header said,1199 * we definitely know the value of *this*1200 * reference:1201 */1202 last->flag |= REF_KNOWS_PEELED;1203}1204}12051206strbuf_release(&line);1207}12081209/*1210 * Get the packed_ref_cache for the specified ref_cache, creating it1211 * if necessary.1212 */1213static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)1214{1215const char*packed_refs_file;12161217if(*refs->name)1218 packed_refs_file =git_path_submodule(refs->name,"packed-refs");1219else1220 packed_refs_file =git_path("packed-refs");12211222if(refs->packed &&1223!stat_validity_check(&refs->packed->validity, packed_refs_file))1224clear_packed_ref_cache(refs);12251226if(!refs->packed) {1227FILE*f;12281229 refs->packed =xcalloc(1,sizeof(*refs->packed));1230acquire_packed_ref_cache(refs->packed);1231 refs->packed->root =create_dir_entry(refs,"",0,0);1232 f =fopen(packed_refs_file,"r");1233if(f) {1234stat_validity_update(&refs->packed->validity,fileno(f));1235read_packed_refs(f,get_ref_dir(refs->packed->root));1236fclose(f);1237}1238}1239return refs->packed;1240}12411242static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1243{1244returnget_ref_dir(packed_ref_cache->root);1245}12461247static struct ref_dir *get_packed_refs(struct ref_cache *refs)1248{1249returnget_packed_ref_dir(get_packed_ref_cache(refs));1250}12511252voidadd_packed_ref(const char*refname,const unsigned char*sha1)1253{1254struct packed_ref_cache *packed_ref_cache =1255get_packed_ref_cache(&ref_cache);12561257if(!packed_ref_cache->lock)1258die("internal error: packed refs not locked");1259add_ref(get_packed_ref_dir(packed_ref_cache),1260create_ref_entry(refname, sha1, REF_ISPACKED,1));1261}12621263/*1264 * Read the loose references from the namespace dirname into dir1265 * (without recursing). dirname must end with '/'. dir must be the1266 * directory entry corresponding to dirname.1267 */1268static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1269{1270struct ref_cache *refs = dir->ref_cache;1271DIR*d;1272const char*path;1273struct dirent *de;1274int dirnamelen =strlen(dirname);1275struct strbuf refname;12761277if(*refs->name)1278 path =git_path_submodule(refs->name,"%s", dirname);1279else1280 path =git_path("%s", dirname);12811282 d =opendir(path);1283if(!d)1284return;12851286strbuf_init(&refname, dirnamelen +257);1287strbuf_add(&refname, dirname, dirnamelen);12881289while((de =readdir(d)) != NULL) {1290unsigned char sha1[20];1291struct stat st;1292int flag;1293const char*refdir;12941295if(de->d_name[0] =='.')1296continue;1297if(ends_with(de->d_name,".lock"))1298continue;1299strbuf_addstr(&refname, de->d_name);1300 refdir = *refs->name1301?git_path_submodule(refs->name,"%s", refname.buf)1302:git_path("%s", refname.buf);1303if(stat(refdir, &st) <0) {1304;/* silently ignore */1305}else if(S_ISDIR(st.st_mode)) {1306strbuf_addch(&refname,'/');1307add_entry_to_dir(dir,1308create_dir_entry(refs, refname.buf,1309 refname.len,1));1310}else{1311if(*refs->name) {1312hashclr(sha1);1313 flag =0;1314if(resolve_gitlink_ref(refs->name, refname.buf, sha1) <0) {1315hashclr(sha1);1316 flag |= REF_ISBROKEN;1317}1318}else if(read_ref_full(refname.buf,1319 RESOLVE_REF_READING,1320 sha1, &flag)) {1321hashclr(sha1);1322 flag |= REF_ISBROKEN;1323}1324if(check_refname_format(refname.buf,1325 REFNAME_ALLOW_ONELEVEL)) {1326hashclr(sha1);1327 flag |= REF_BAD_NAME | REF_ISBROKEN;1328}1329add_entry_to_dir(dir,1330create_ref_entry(refname.buf, sha1, flag,0));1331}1332strbuf_setlen(&refname, dirnamelen);1333}1334strbuf_release(&refname);1335closedir(d);1336}13371338static struct ref_dir *get_loose_refs(struct ref_cache *refs)1339{1340if(!refs->loose) {1341/*1342 * Mark the top-level directory complete because we1343 * are about to read the only subdirectory that can1344 * hold references:1345 */1346 refs->loose =create_dir_entry(refs,"",0,0);1347/*1348 * Create an incomplete entry for "refs/":1349 */1350add_entry_to_dir(get_ref_dir(refs->loose),1351create_dir_entry(refs,"refs/",5,1));1352}1353returnget_ref_dir(refs->loose);1354}13551356/* We allow "recursive" symbolic refs. Only within reason, though */1357#define MAXDEPTH 51358#define MAXREFLEN (1024)13591360/*1361 * Called by resolve_gitlink_ref_recursive() after it failed to read1362 * from the loose refs in ref_cache refs. Find <refname> in the1363 * packed-refs file for the submodule.1364 */1365static intresolve_gitlink_packed_ref(struct ref_cache *refs,1366const char*refname,unsigned char*sha1)1367{1368struct ref_entry *ref;1369struct ref_dir *dir =get_packed_refs(refs);13701371 ref =find_ref(dir, refname);1372if(ref == NULL)1373return-1;13741375hashcpy(sha1, ref->u.value.sha1);1376return0;1377}13781379static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1380const char*refname,unsigned char*sha1,1381int recursion)1382{1383int fd, len;1384char buffer[128], *p;1385char*path;13861387if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1388return-1;1389 path = *refs->name1390?git_path_submodule(refs->name,"%s", refname)1391:git_path("%s", refname);1392 fd =open(path, O_RDONLY);1393if(fd <0)1394returnresolve_gitlink_packed_ref(refs, refname, sha1);13951396 len =read(fd, buffer,sizeof(buffer)-1);1397close(fd);1398if(len <0)1399return-1;1400while(len &&isspace(buffer[len-1]))1401 len--;1402 buffer[len] =0;14031404/* Was it a detached head or an old-fashioned symlink? */1405if(!get_sha1_hex(buffer, sha1))1406return0;14071408/* Symref? */1409if(strncmp(buffer,"ref:",4))1410return-1;1411 p = buffer +4;1412while(isspace(*p))1413 p++;14141415returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1416}14171418intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1419{1420int len =strlen(path), retval;1421char*submodule;1422struct ref_cache *refs;14231424while(len && path[len-1] =='/')1425 len--;1426if(!len)1427return-1;1428 submodule =xstrndup(path, len);1429 refs =get_ref_cache(submodule);1430free(submodule);14311432 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1433return retval;1434}14351436/*1437 * Return the ref_entry for the given refname from the packed1438 * references. If it does not exist, return NULL.1439 */1440static struct ref_entry *get_packed_ref(const char*refname)1441{1442returnfind_ref(get_packed_refs(&ref_cache), refname);1443}14441445/*1446 * A loose ref file doesn't exist; check for a packed ref. The1447 * options are forwarded from resolve_safe_unsafe().1448 */1449static intresolve_missing_loose_ref(const char*refname,1450int resolve_flags,1451unsigned char*sha1,1452int*flags)1453{1454struct ref_entry *entry;14551456/*1457 * The loose reference file does not exist; check for a packed1458 * reference.1459 */1460 entry =get_packed_ref(refname);1461if(entry) {1462hashcpy(sha1, entry->u.value.sha1);1463if(flags)1464*flags |= REF_ISPACKED;1465return0;1466}1467/* The reference is not a packed reference, either. */1468if(resolve_flags & RESOLVE_REF_READING) {1469 errno = ENOENT;1470return-1;1471}else{1472hashclr(sha1);1473return0;1474}1475}14761477/* This function needs to return a meaningful errno on failure */1478const char*resolve_ref_unsafe(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1479{1480int depth = MAXDEPTH;1481 ssize_t len;1482char buffer[256];1483static char refname_buffer[256];1484int bad_name =0;14851486if(flags)1487*flags =0;14881489if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1490if(flags)1491*flags |= REF_BAD_NAME;14921493if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1494!refname_is_safe(refname)) {1495 errno = EINVAL;1496return NULL;1497}1498/*1499 * dwim_ref() uses REF_ISBROKEN to distinguish between1500 * missing refs and refs that were present but invalid,1501 * to complain about the latter to stderr.1502 *1503 * We don't know whether the ref exists, so don't set1504 * REF_ISBROKEN yet.1505 */1506 bad_name =1;1507}1508for(;;) {1509char path[PATH_MAX];1510struct stat st;1511char*buf;1512int fd;15131514if(--depth <0) {1515 errno = ELOOP;1516return NULL;1517}15181519git_snpath(path,sizeof(path),"%s", refname);15201521/*1522 * We might have to loop back here to avoid a race1523 * condition: first we lstat() the file, then we try1524 * to read it as a link or as a file. But if somebody1525 * changes the type of the file (file <-> directory1526 * <-> symlink) between the lstat() and reading, then1527 * we don't want to report that as an error but rather1528 * try again starting with the lstat().1529 */1530 stat_ref:1531if(lstat(path, &st) <0) {1532if(errno != ENOENT)1533return NULL;1534if(resolve_missing_loose_ref(refname, resolve_flags,1535 sha1, flags))1536return NULL;1537if(bad_name) {1538hashclr(sha1);1539if(flags)1540*flags |= REF_ISBROKEN;1541}1542return refname;1543}15441545/* Follow "normalized" - ie "refs/.." symlinks by hand */1546if(S_ISLNK(st.st_mode)) {1547 len =readlink(path, buffer,sizeof(buffer)-1);1548if(len <0) {1549if(errno == ENOENT || errno == EINVAL)1550/* inconsistent with lstat; retry */1551goto stat_ref;1552else1553return NULL;1554}1555 buffer[len] =0;1556if(starts_with(buffer,"refs/") &&1557!check_refname_format(buffer,0)) {1558strcpy(refname_buffer, buffer);1559 refname = refname_buffer;1560if(flags)1561*flags |= REF_ISSYMREF;1562if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1563hashclr(sha1);1564return refname;1565}1566continue;1567}1568}15691570/* Is it a directory? */1571if(S_ISDIR(st.st_mode)) {1572 errno = EISDIR;1573return NULL;1574}15751576/*1577 * Anything else, just open it and try to use it as1578 * a ref1579 */1580 fd =open(path, O_RDONLY);1581if(fd <0) {1582if(errno == ENOENT)1583/* inconsistent with lstat; retry */1584goto stat_ref;1585else1586return NULL;1587}1588 len =read_in_full(fd, buffer,sizeof(buffer)-1);1589if(len <0) {1590int save_errno = errno;1591close(fd);1592 errno = save_errno;1593return NULL;1594}1595close(fd);1596while(len &&isspace(buffer[len-1]))1597 len--;1598 buffer[len] ='\0';15991600/*1601 * Is it a symbolic ref?1602 */1603if(!starts_with(buffer,"ref:")) {1604/*1605 * Please note that FETCH_HEAD has a second1606 * line containing other data.1607 */1608if(get_sha1_hex(buffer, sha1) ||1609(buffer[40] !='\0'&& !isspace(buffer[40]))) {1610if(flags)1611*flags |= REF_ISBROKEN;1612 errno = EINVAL;1613return NULL;1614}1615if(bad_name) {1616hashclr(sha1);1617if(flags)1618*flags |= REF_ISBROKEN;1619}1620return refname;1621}1622if(flags)1623*flags |= REF_ISSYMREF;1624 buf = buffer +4;1625while(isspace(*buf))1626 buf++;1627 refname =strcpy(refname_buffer, buf);1628if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1629hashclr(sha1);1630return refname;1631}1632if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1633if(flags)1634*flags |= REF_ISBROKEN;16351636if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1637!refname_is_safe(buf)) {1638 errno = EINVAL;1639return NULL;1640}1641 bad_name =1;1642}1643}1644}16451646char*resolve_refdup(const char*ref,int resolve_flags,unsigned char*sha1,int*flags)1647{1648returnxstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));1649}16501651/* The argument to filter_refs */1652struct ref_filter {1653const char*pattern;1654 each_ref_fn *fn;1655void*cb_data;1656};16571658intread_ref_full(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1659{1660if(resolve_ref_unsafe(refname, resolve_flags, sha1, flags))1661return0;1662return-1;1663}16641665intread_ref(const char*refname,unsigned char*sha1)1666{1667returnread_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);1668}16691670intref_exists(const char*refname)1671{1672unsigned char sha1[20];1673return!!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);1674}16751676static intfilter_refs(const char*refname,const unsigned char*sha1,int flags,1677void*data)1678{1679struct ref_filter *filter = (struct ref_filter *)data;1680if(wildmatch(filter->pattern, refname,0, NULL))1681return0;1682return filter->fn(refname, sha1, flags, filter->cb_data);1683}16841685enum peel_status {1686/* object was peeled successfully: */1687 PEEL_PEELED =0,16881689/*1690 * object cannot be peeled because the named object (or an1691 * object referred to by a tag in the peel chain), does not1692 * exist.1693 */1694 PEEL_INVALID = -1,16951696/* object cannot be peeled because it is not a tag: */1697 PEEL_NON_TAG = -2,16981699/* ref_entry contains no peeled value because it is a symref: */1700 PEEL_IS_SYMREF = -3,17011702/*1703 * ref_entry cannot be peeled because it is broken (i.e., the1704 * symbolic reference cannot even be resolved to an object1705 * name):1706 */1707 PEEL_BROKEN = -41708};17091710/*1711 * Peel the named object; i.e., if the object is a tag, resolve the1712 * tag recursively until a non-tag is found. If successful, store the1713 * result to sha1 and return PEEL_PEELED. If the object is not a tag1714 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,1715 * and leave sha1 unchanged.1716 */1717static enum peel_status peel_object(const unsigned char*name,unsigned char*sha1)1718{1719struct object *o =lookup_unknown_object(name);17201721if(o->type == OBJ_NONE) {1722int type =sha1_object_info(name, NULL);1723if(type <0|| !object_as_type(o, type,0))1724return PEEL_INVALID;1725}17261727if(o->type != OBJ_TAG)1728return PEEL_NON_TAG;17291730 o =deref_tag_noverify(o);1731if(!o)1732return PEEL_INVALID;17331734hashcpy(sha1, o->sha1);1735return PEEL_PEELED;1736}17371738/*1739 * Peel the entry (if possible) and return its new peel_status. If1740 * repeel is true, re-peel the entry even if there is an old peeled1741 * value that is already stored in it.1742 *1743 * It is OK to call this function with a packed reference entry that1744 * might be stale and might even refer to an object that has since1745 * been garbage-collected. In such a case, if the entry has1746 * REF_KNOWS_PEELED then leave the status unchanged and return1747 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1748 */1749static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1750{1751enum peel_status status;17521753if(entry->flag & REF_KNOWS_PEELED) {1754if(repeel) {1755 entry->flag &= ~REF_KNOWS_PEELED;1756hashclr(entry->u.value.peeled);1757}else{1758returnis_null_sha1(entry->u.value.peeled) ?1759 PEEL_NON_TAG : PEEL_PEELED;1760}1761}1762if(entry->flag & REF_ISBROKEN)1763return PEEL_BROKEN;1764if(entry->flag & REF_ISSYMREF)1765return PEEL_IS_SYMREF;17661767 status =peel_object(entry->u.value.sha1, entry->u.value.peeled);1768if(status == PEEL_PEELED || status == PEEL_NON_TAG)1769 entry->flag |= REF_KNOWS_PEELED;1770return status;1771}17721773intpeel_ref(const char*refname,unsigned char*sha1)1774{1775int flag;1776unsigned char base[20];17771778if(current_ref && (current_ref->name == refname1779|| !strcmp(current_ref->name, refname))) {1780if(peel_entry(current_ref,0))1781return-1;1782hashcpy(sha1, current_ref->u.value.peeled);1783return0;1784}17851786if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1787return-1;17881789/*1790 * If the reference is packed, read its ref_entry from the1791 * cache in the hope that we already know its peeled value.1792 * We only try this optimization on packed references because1793 * (a) forcing the filling of the loose reference cache could1794 * be expensive and (b) loose references anyway usually do not1795 * have REF_KNOWS_PEELED.1796 */1797if(flag & REF_ISPACKED) {1798struct ref_entry *r =get_packed_ref(refname);1799if(r) {1800if(peel_entry(r,0))1801return-1;1802hashcpy(sha1, r->u.value.peeled);1803return0;1804}1805}18061807returnpeel_object(base, sha1);1808}18091810struct warn_if_dangling_data {1811FILE*fp;1812const char*refname;1813const struct string_list *refnames;1814const char*msg_fmt;1815};18161817static intwarn_if_dangling_symref(const char*refname,const unsigned char*sha1,1818int flags,void*cb_data)1819{1820struct warn_if_dangling_data *d = cb_data;1821const char*resolves_to;1822unsigned char junk[20];18231824if(!(flags & REF_ISSYMREF))1825return0;18261827 resolves_to =resolve_ref_unsafe(refname,0, junk, NULL);1828if(!resolves_to1829|| (d->refname1830?strcmp(resolves_to, d->refname)1831: !string_list_has_string(d->refnames, resolves_to))) {1832return0;1833}18341835fprintf(d->fp, d->msg_fmt, refname);1836fputc('\n', d->fp);1837return0;1838}18391840voidwarn_dangling_symref(FILE*fp,const char*msg_fmt,const char*refname)1841{1842struct warn_if_dangling_data data;18431844 data.fp = fp;1845 data.refname = refname;1846 data.refnames = NULL;1847 data.msg_fmt = msg_fmt;1848for_each_rawref(warn_if_dangling_symref, &data);1849}18501851voidwarn_dangling_symrefs(FILE*fp,const char*msg_fmt,const struct string_list *refnames)1852{1853struct warn_if_dangling_data data;18541855 data.fp = fp;1856 data.refname = NULL;1857 data.refnames = refnames;1858 data.msg_fmt = msg_fmt;1859for_each_rawref(warn_if_dangling_symref, &data);1860}18611862/*1863 * Call fn for each reference in the specified ref_cache, omitting1864 * references not in the containing_dir of base. fn is called for all1865 * references, including broken ones. If fn ever returns a non-zero1866 * value, stop the iteration and return that value; otherwise, return1867 * 0.1868 */1869static intdo_for_each_entry(struct ref_cache *refs,const char*base,1870 each_ref_entry_fn fn,void*cb_data)1871{1872struct packed_ref_cache *packed_ref_cache;1873struct ref_dir *loose_dir;1874struct ref_dir *packed_dir;1875int retval =0;18761877/*1878 * We must make sure that all loose refs are read before accessing the1879 * packed-refs file; this avoids a race condition in which loose refs1880 * are migrated to the packed-refs file by a simultaneous process, but1881 * our in-memory view is from before the migration. get_packed_ref_cache()1882 * takes care of making sure our view is up to date with what is on1883 * disk.1884 */1885 loose_dir =get_loose_refs(refs);1886if(base && *base) {1887 loose_dir =find_containing_dir(loose_dir, base,0);1888}1889if(loose_dir)1890prime_ref_dir(loose_dir);18911892 packed_ref_cache =get_packed_ref_cache(refs);1893acquire_packed_ref_cache(packed_ref_cache);1894 packed_dir =get_packed_ref_dir(packed_ref_cache);1895if(base && *base) {1896 packed_dir =find_containing_dir(packed_dir, base,0);1897}18981899if(packed_dir && loose_dir) {1900sort_ref_dir(packed_dir);1901sort_ref_dir(loose_dir);1902 retval =do_for_each_entry_in_dirs(1903 packed_dir, loose_dir, fn, cb_data);1904}else if(packed_dir) {1905sort_ref_dir(packed_dir);1906 retval =do_for_each_entry_in_dir(1907 packed_dir,0, fn, cb_data);1908}else if(loose_dir) {1909sort_ref_dir(loose_dir);1910 retval =do_for_each_entry_in_dir(1911 loose_dir,0, fn, cb_data);1912}19131914release_packed_ref_cache(packed_ref_cache);1915return retval;1916}19171918/*1919 * Call fn for each reference in the specified ref_cache for which the1920 * refname begins with base. If trim is non-zero, then trim that many1921 * characters off the beginning of each refname before passing the1922 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include1923 * broken references in the iteration. If fn ever returns a non-zero1924 * value, stop the iteration and return that value; otherwise, return1925 * 0.1926 */1927static intdo_for_each_ref(struct ref_cache *refs,const char*base,1928 each_ref_fn fn,int trim,int flags,void*cb_data)1929{1930struct ref_entry_cb data;1931 data.base = base;1932 data.trim = trim;1933 data.flags = flags;1934 data.fn = fn;1935 data.cb_data = cb_data;19361937if(ref_paranoia <0)1938 ref_paranoia =git_env_bool("GIT_REF_PARANOIA",0);1939if(ref_paranoia)1940 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;19411942returndo_for_each_entry(refs, base, do_one_ref, &data);1943}19441945static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)1946{1947unsigned char sha1[20];1948int flag;19491950if(submodule) {1951if(resolve_gitlink_ref(submodule,"HEAD", sha1) ==0)1952returnfn("HEAD", sha1,0, cb_data);19531954return0;1955}19561957if(!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))1958returnfn("HEAD", sha1, flag, cb_data);19591960return0;1961}19621963inthead_ref(each_ref_fn fn,void*cb_data)1964{1965returndo_head_ref(NULL, fn, cb_data);1966}19671968inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1969{1970returndo_head_ref(submodule, fn, cb_data);1971}19721973intfor_each_ref(each_ref_fn fn,void*cb_data)1974{1975returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);1976}19771978intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1979{1980returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);1981}19821983intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)1984{1985returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);1986}19871988intfor_each_ref_in_submodule(const char*submodule,const char*prefix,1989 each_ref_fn fn,void*cb_data)1990{1991returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);1992}19931994intfor_each_tag_ref(each_ref_fn fn,void*cb_data)1995{1996returnfor_each_ref_in("refs/tags/", fn, cb_data);1997}19981999intfor_each_tag_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2000{2001returnfor_each_ref_in_submodule(submodule,"refs/tags/", fn, cb_data);2002}20032004intfor_each_branch_ref(each_ref_fn fn,void*cb_data)2005{2006returnfor_each_ref_in("refs/heads/", fn, cb_data);2007}20082009intfor_each_branch_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2010{2011returnfor_each_ref_in_submodule(submodule,"refs/heads/", fn, cb_data);2012}20132014intfor_each_remote_ref(each_ref_fn fn,void*cb_data)2015{2016returnfor_each_ref_in("refs/remotes/", fn, cb_data);2017}20182019intfor_each_remote_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2020{2021returnfor_each_ref_in_submodule(submodule,"refs/remotes/", fn, cb_data);2022}20232024intfor_each_replace_ref(each_ref_fn fn,void*cb_data)2025{2026returndo_for_each_ref(&ref_cache,"refs/replace/", fn,13,0, cb_data);2027}20282029inthead_ref_namespaced(each_ref_fn fn,void*cb_data)2030{2031struct strbuf buf = STRBUF_INIT;2032int ret =0;2033unsigned char sha1[20];2034int flag;20352036strbuf_addf(&buf,"%sHEAD",get_git_namespace());2037if(!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))2038 ret =fn(buf.buf, sha1, flag, cb_data);2039strbuf_release(&buf);20402041return ret;2042}20432044intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)2045{2046struct strbuf buf = STRBUF_INIT;2047int ret;2048strbuf_addf(&buf,"%srefs/",get_git_namespace());2049 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);2050strbuf_release(&buf);2051return ret;2052}20532054intfor_each_glob_ref_in(each_ref_fn fn,const char*pattern,2055const char*prefix,void*cb_data)2056{2057struct strbuf real_pattern = STRBUF_INIT;2058struct ref_filter filter;2059int ret;20602061if(!prefix && !starts_with(pattern,"refs/"))2062strbuf_addstr(&real_pattern,"refs/");2063else if(prefix)2064strbuf_addstr(&real_pattern, prefix);2065strbuf_addstr(&real_pattern, pattern);20662067if(!has_glob_specials(pattern)) {2068/* Append implied '/' '*' if not present. */2069if(real_pattern.buf[real_pattern.len -1] !='/')2070strbuf_addch(&real_pattern,'/');2071/* No need to check for '*', there is none. */2072strbuf_addch(&real_pattern,'*');2073}20742075 filter.pattern = real_pattern.buf;2076 filter.fn = fn;2077 filter.cb_data = cb_data;2078 ret =for_each_ref(filter_refs, &filter);20792080strbuf_release(&real_pattern);2081return ret;2082}20832084intfor_each_glob_ref(each_ref_fn fn,const char*pattern,void*cb_data)2085{2086returnfor_each_glob_ref_in(fn, pattern, NULL, cb_data);2087}20882089intfor_each_rawref(each_ref_fn fn,void*cb_data)2090{2091returndo_for_each_ref(&ref_cache,"", fn,0,2092 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);2093}20942095const char*prettify_refname(const char*name)2096{2097return name + (2098starts_with(name,"refs/heads/") ?11:2099starts_with(name,"refs/tags/") ?10:2100starts_with(name,"refs/remotes/") ?13:21010);2102}21032104static const char*ref_rev_parse_rules[] = {2105"%.*s",2106"refs/%.*s",2107"refs/tags/%.*s",2108"refs/heads/%.*s",2109"refs/remotes/%.*s",2110"refs/remotes/%.*s/HEAD",2111 NULL2112};21132114intrefname_match(const char*abbrev_name,const char*full_name)2115{2116const char**p;2117const int abbrev_name_len =strlen(abbrev_name);21182119for(p = ref_rev_parse_rules; *p; p++) {2120if(!strcmp(full_name,mkpath(*p, abbrev_name_len, abbrev_name))) {2121return1;2122}2123}21242125return0;2126}21272128static voidunlock_ref(struct ref_lock *lock)2129{2130/* Do not free lock->lk -- atexit() still looks at them */2131if(lock->lk)2132rollback_lock_file(lock->lk);2133free(lock->ref_name);2134free(lock->orig_ref_name);2135free(lock);2136}21372138/* This function should make sure errno is meaningful on error */2139static struct ref_lock *verify_lock(struct ref_lock *lock,2140const unsigned char*old_sha1,int mustexist)2141{2142if(read_ref_full(lock->ref_name,2143 mustexist ? RESOLVE_REF_READING :0,2144 lock->old_sha1, NULL)) {2145int save_errno = errno;2146error("Can't verify ref%s", lock->ref_name);2147unlock_ref(lock);2148 errno = save_errno;2149return NULL;2150}2151if(hashcmp(lock->old_sha1, old_sha1)) {2152error("Ref%sis at%sbut expected%s", lock->ref_name,2153sha1_to_hex(lock->old_sha1),sha1_to_hex(old_sha1));2154unlock_ref(lock);2155 errno = EBUSY;2156return NULL;2157}2158return lock;2159}21602161static intremove_empty_directories(const char*file)2162{2163/* we want to create a file but there is a directory there;2164 * if that is an empty directory (or a directory that contains2165 * only empty directories), remove them.2166 */2167struct strbuf path;2168int result, save_errno;21692170strbuf_init(&path,20);2171strbuf_addstr(&path, file);21722173 result =remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);2174 save_errno = errno;21752176strbuf_release(&path);2177 errno = save_errno;21782179return result;2180}21812182/*2183 * *string and *len will only be substituted, and *string returned (for2184 * later free()ing) if the string passed in is a magic short-hand form2185 * to name a branch.2186 */2187static char*substitute_branch_name(const char**string,int*len)2188{2189struct strbuf buf = STRBUF_INIT;2190int ret =interpret_branch_name(*string, *len, &buf);21912192if(ret == *len) {2193size_t size;2194*string =strbuf_detach(&buf, &size);2195*len = size;2196return(char*)*string;2197}21982199return NULL;2200}22012202intdwim_ref(const char*str,int len,unsigned char*sha1,char**ref)2203{2204char*last_branch =substitute_branch_name(&str, &len);2205const char**p, *r;2206int refs_found =0;22072208*ref = NULL;2209for(p = ref_rev_parse_rules; *p; p++) {2210char fullref[PATH_MAX];2211unsigned char sha1_from_ref[20];2212unsigned char*this_result;2213int flag;22142215 this_result = refs_found ? sha1_from_ref : sha1;2216mksnpath(fullref,sizeof(fullref), *p, len, str);2217 r =resolve_ref_unsafe(fullref, RESOLVE_REF_READING,2218 this_result, &flag);2219if(r) {2220if(!refs_found++)2221*ref =xstrdup(r);2222if(!warn_ambiguous_refs)2223break;2224}else if((flag & REF_ISSYMREF) &&strcmp(fullref,"HEAD")) {2225warning("ignoring dangling symref%s.", fullref);2226}else if((flag & REF_ISBROKEN) &&strchr(fullref,'/')) {2227warning("ignoring broken ref%s.", fullref);2228}2229}2230free(last_branch);2231return refs_found;2232}22332234intdwim_log(const char*str,int len,unsigned char*sha1,char**log)2235{2236char*last_branch =substitute_branch_name(&str, &len);2237const char**p;2238int logs_found =0;22392240*log = NULL;2241for(p = ref_rev_parse_rules; *p; p++) {2242unsigned char hash[20];2243char path[PATH_MAX];2244const char*ref, *it;22452246mksnpath(path,sizeof(path), *p, len, str);2247 ref =resolve_ref_unsafe(path, RESOLVE_REF_READING,2248 hash, NULL);2249if(!ref)2250continue;2251if(reflog_exists(path))2252 it = path;2253else if(strcmp(ref, path) &&reflog_exists(ref))2254 it = ref;2255else2256continue;2257if(!logs_found++) {2258*log =xstrdup(it);2259hashcpy(sha1, hash);2260}2261if(!warn_ambiguous_refs)2262break;2263}2264free(last_branch);2265return logs_found;2266}22672268/*2269 * Locks a ref returning the lock on success and NULL on failure.2270 * On failure errno is set to something meaningful.2271 */2272static struct ref_lock *lock_ref_sha1_basic(const char*refname,2273const unsigned char*old_sha1,2274const struct string_list *skip,2275unsigned int flags,int*type_p)2276{2277char*ref_file;2278const char*orig_refname = refname;2279struct ref_lock *lock;2280int last_errno =0;2281int type, lflags;2282int mustexist = (old_sha1 && !is_null_sha1(old_sha1));2283int resolve_flags =0;2284int attempts_remaining =3;22852286 lock =xcalloc(1,sizeof(struct ref_lock));2287 lock->lock_fd = -1;22882289if(mustexist)2290 resolve_flags |= RESOLVE_REF_READING;2291if(flags & REF_DELETING) {2292 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;2293if(flags & REF_NODEREF)2294 resolve_flags |= RESOLVE_REF_NO_RECURSE;2295}22962297 refname =resolve_ref_unsafe(refname, resolve_flags,2298 lock->old_sha1, &type);2299if(!refname && errno == EISDIR) {2300/* we are trying to lock foo but we used to2301 * have foo/bar which now does not exist;2302 * it is normal for the empty directory 'foo'2303 * to remain.2304 */2305 ref_file =git_path("%s", orig_refname);2306if(remove_empty_directories(ref_file)) {2307 last_errno = errno;2308error("there are still refs under '%s'", orig_refname);2309goto error_return;2310}2311 refname =resolve_ref_unsafe(orig_refname, resolve_flags,2312 lock->old_sha1, &type);2313}2314if(type_p)2315*type_p = type;2316if(!refname) {2317 last_errno = errno;2318error("unable to resolve reference%s:%s",2319 orig_refname,strerror(errno));2320goto error_return;2321}2322/*2323 * If the ref did not exist and we are creating it, make sure2324 * there is no existing packed ref whose name begins with our2325 * refname, nor a packed ref whose name is a proper prefix of2326 * our refname.2327 */2328if(is_null_sha1(lock->old_sha1) &&2329!is_refname_available(refname, skip,get_packed_refs(&ref_cache))) {2330 last_errno = ENOTDIR;2331goto error_return;2332}23332334 lock->lk =xcalloc(1,sizeof(struct lock_file));23352336 lflags =0;2337if(flags & REF_NODEREF) {2338 refname = orig_refname;2339 lflags |= LOCK_NO_DEREF;2340}2341 lock->ref_name =xstrdup(refname);2342 lock->orig_ref_name =xstrdup(orig_refname);2343 ref_file =git_path("%s", refname);23442345 retry:2346switch(safe_create_leading_directories(ref_file)) {2347case SCLD_OK:2348break;/* success */2349case SCLD_VANISHED:2350if(--attempts_remaining >0)2351goto retry;2352/* fall through */2353default:2354 last_errno = errno;2355error("unable to create directory for%s", ref_file);2356goto error_return;2357}23582359 lock->lock_fd =hold_lock_file_for_update(lock->lk, ref_file, lflags);2360if(lock->lock_fd <0) {2361 last_errno = errno;2362if(errno == ENOENT && --attempts_remaining >0)2363/*2364 * Maybe somebody just deleted one of the2365 * directories leading to ref_file. Try2366 * again:2367 */2368goto retry;2369else{2370struct strbuf err = STRBUF_INIT;2371unable_to_lock_message(ref_file, errno, &err);2372error("%s", err.buf);2373strbuf_release(&err);2374goto error_return;2375}2376}2377return old_sha1 ?verify_lock(lock, old_sha1, mustexist) : lock;23782379 error_return:2380unlock_ref(lock);2381 errno = last_errno;2382return NULL;2383}23842385/*2386 * Write an entry to the packed-refs file for the specified refname.2387 * If peeled is non-NULL, write it as the entry's peeled value.2388 */2389static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2390unsigned char*peeled)2391{2392fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2393if(peeled)2394fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2395}23962397/*2398 * An each_ref_entry_fn that writes the entry to a packed-refs file.2399 */2400static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2401{2402enum peel_status peel_status =peel_entry(entry,0);24032404if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2405error("internal error:%sis not a valid packed reference!",2406 entry->name);2407write_packed_entry(cb_data, entry->name, entry->u.value.sha1,2408 peel_status == PEEL_PEELED ?2409 entry->u.value.peeled : NULL);2410return0;2411}24122413/* This should return a meaningful errno on failure */2414intlock_packed_refs(int flags)2415{2416struct packed_ref_cache *packed_ref_cache;24172418if(hold_lock_file_for_update(&packlock,git_path("packed-refs"), flags) <0)2419return-1;2420/*2421 * Get the current packed-refs while holding the lock. If the2422 * packed-refs file has been modified since we last read it,2423 * this will automatically invalidate the cache and re-read2424 * the packed-refs file.2425 */2426 packed_ref_cache =get_packed_ref_cache(&ref_cache);2427 packed_ref_cache->lock = &packlock;2428/* Increment the reference count to prevent it from being freed: */2429acquire_packed_ref_cache(packed_ref_cache);2430return0;2431}24322433/*2434 * Commit the packed refs changes.2435 * On error we must make sure that errno contains a meaningful value.2436 */2437intcommit_packed_refs(void)2438{2439struct packed_ref_cache *packed_ref_cache =2440get_packed_ref_cache(&ref_cache);2441int error =0;2442int save_errno =0;2443FILE*out;24442445if(!packed_ref_cache->lock)2446die("internal error: packed-refs not locked");24472448 out =fdopen_lock_file(packed_ref_cache->lock,"w");2449if(!out)2450die_errno("unable to fdopen packed-refs descriptor");24512452fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2453do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),24540, write_packed_entry_fn, out);24552456if(commit_lock_file(packed_ref_cache->lock)) {2457 save_errno = errno;2458 error = -1;2459}2460 packed_ref_cache->lock = NULL;2461release_packed_ref_cache(packed_ref_cache);2462 errno = save_errno;2463return error;2464}24652466voidrollback_packed_refs(void)2467{2468struct packed_ref_cache *packed_ref_cache =2469get_packed_ref_cache(&ref_cache);24702471if(!packed_ref_cache->lock)2472die("internal error: packed-refs not locked");2473rollback_lock_file(packed_ref_cache->lock);2474 packed_ref_cache->lock = NULL;2475release_packed_ref_cache(packed_ref_cache);2476clear_packed_ref_cache(&ref_cache);2477}24782479struct ref_to_prune {2480struct ref_to_prune *next;2481unsigned char sha1[20];2482char name[FLEX_ARRAY];2483};24842485struct pack_refs_cb_data {2486unsigned int flags;2487struct ref_dir *packed_refs;2488struct ref_to_prune *ref_to_prune;2489};24902491/*2492 * An each_ref_entry_fn that is run over loose references only. If2493 * the loose reference can be packed, add an entry in the packed ref2494 * cache. If the reference should be pruned, also add it to2495 * ref_to_prune in the pack_refs_cb_data.2496 */2497static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2498{2499struct pack_refs_cb_data *cb = cb_data;2500enum peel_status peel_status;2501struct ref_entry *packed_entry;2502int is_tag_ref =starts_with(entry->name,"refs/tags/");25032504/* ALWAYS pack tags */2505if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2506return0;25072508/* Do not pack symbolic or broken refs: */2509if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2510return0;25112512/* Add a packed ref cache entry equivalent to the loose entry. */2513 peel_status =peel_entry(entry,1);2514if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2515die("internal error peeling reference%s(%s)",2516 entry->name,sha1_to_hex(entry->u.value.sha1));2517 packed_entry =find_ref(cb->packed_refs, entry->name);2518if(packed_entry) {2519/* Overwrite existing packed entry with info from loose entry */2520 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2521hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);2522}else{2523 packed_entry =create_ref_entry(entry->name, entry->u.value.sha1,2524 REF_ISPACKED | REF_KNOWS_PEELED,0);2525add_ref(cb->packed_refs, packed_entry);2526}2527hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);25282529/* Schedule the loose reference for pruning if requested. */2530if((cb->flags & PACK_REFS_PRUNE)) {2531int namelen =strlen(entry->name) +1;2532struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2533hashcpy(n->sha1, entry->u.value.sha1);2534strcpy(n->name, entry->name);2535 n->next = cb->ref_to_prune;2536 cb->ref_to_prune = n;2537}2538return0;2539}25402541/*2542 * Remove empty parents, but spare refs/ and immediate subdirs.2543 * Note: munges *name.2544 */2545static voidtry_remove_empty_parents(char*name)2546{2547char*p, *q;2548int i;2549 p = name;2550for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2551while(*p && *p !='/')2552 p++;2553/* tolerate duplicate slashes; see check_refname_format() */2554while(*p =='/')2555 p++;2556}2557for(q = p; *q; q++)2558;2559while(1) {2560while(q > p && *q !='/')2561 q--;2562while(q > p && *(q-1) =='/')2563 q--;2564if(q == p)2565break;2566*q ='\0';2567if(rmdir(git_path("%s", name)))2568break;2569}2570}25712572/* make sure nobody touched the ref, and unlink */2573static voidprune_ref(struct ref_to_prune *r)2574{2575struct ref_transaction *transaction;2576struct strbuf err = STRBUF_INIT;25772578if(check_refname_format(r->name,0))2579return;25802581 transaction =ref_transaction_begin(&err);2582if(!transaction ||2583ref_transaction_delete(transaction, r->name, r->sha1,2584 REF_ISPRUNING, NULL, &err) ||2585ref_transaction_commit(transaction, &err)) {2586ref_transaction_free(transaction);2587error("%s", err.buf);2588strbuf_release(&err);2589return;2590}2591ref_transaction_free(transaction);2592strbuf_release(&err);2593try_remove_empty_parents(r->name);2594}25952596static voidprune_refs(struct ref_to_prune *r)2597{2598while(r) {2599prune_ref(r);2600 r = r->next;2601}2602}26032604intpack_refs(unsigned int flags)2605{2606struct pack_refs_cb_data cbdata;26072608memset(&cbdata,0,sizeof(cbdata));2609 cbdata.flags = flags;26102611lock_packed_refs(LOCK_DIE_ON_ERROR);2612 cbdata.packed_refs =get_packed_refs(&ref_cache);26132614do_for_each_entry_in_dir(get_loose_refs(&ref_cache),0,2615 pack_if_possible_fn, &cbdata);26162617if(commit_packed_refs())2618die_errno("unable to overwrite old ref-pack file");26192620prune_refs(cbdata.ref_to_prune);2621return0;2622}26232624intrepack_without_refs(struct string_list *refnames,struct strbuf *err)2625{2626struct ref_dir *packed;2627struct string_list_item *refname;2628int ret, needs_repacking =0, removed =0;26292630assert(err);26312632/* Look for a packed ref */2633for_each_string_list_item(refname, refnames) {2634if(get_packed_ref(refname->string)) {2635 needs_repacking =1;2636break;2637}2638}26392640/* Avoid locking if we have nothing to do */2641if(!needs_repacking)2642return0;/* no refname exists in packed refs */26432644if(lock_packed_refs(0)) {2645unable_to_lock_message(git_path("packed-refs"), errno, err);2646return-1;2647}2648 packed =get_packed_refs(&ref_cache);26492650/* Remove refnames from the cache */2651for_each_string_list_item(refname, refnames)2652if(remove_entry(packed, refname->string) != -1)2653 removed =1;2654if(!removed) {2655/*2656 * All packed entries disappeared while we were2657 * acquiring the lock.2658 */2659rollback_packed_refs();2660return0;2661}26622663/* Write what remains */2664 ret =commit_packed_refs();2665if(ret)2666strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2667strerror(errno));2668return ret;2669}26702671static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2672{2673assert(err);26742675if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2676/*2677 * loose. The loose file name is the same as the2678 * lockfile name, minus ".lock":2679 */2680char*loose_filename =get_locked_file_path(lock->lk);2681int res =unlink_or_msg(loose_filename, err);2682free(loose_filename);2683if(res)2684return1;2685}2686return0;2687}26882689intdelete_ref(const char*refname,const unsigned char*sha1,unsigned int flags)2690{2691struct ref_transaction *transaction;2692struct strbuf err = STRBUF_INIT;26932694 transaction =ref_transaction_begin(&err);2695if(!transaction ||2696ref_transaction_delete(transaction, refname,2697(sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,2698 flags, NULL, &err) ||2699ref_transaction_commit(transaction, &err)) {2700error("%s", err.buf);2701ref_transaction_free(transaction);2702strbuf_release(&err);2703return1;2704}2705ref_transaction_free(transaction);2706strbuf_release(&err);2707return0;2708}27092710/*2711 * People using contrib's git-new-workdir have .git/logs/refs ->2712 * /some/other/path/.git/logs/refs, and that may live on another device.2713 *2714 * IOW, to avoid cross device rename errors, the temporary renamed log must2715 * live into logs/refs.2716 */2717#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"27182719static intrename_tmp_log(const char*newrefname)2720{2721int attempts_remaining =4;27222723 retry:2724switch(safe_create_leading_directories(git_path("logs/%s", newrefname))) {2725case SCLD_OK:2726break;/* success */2727case SCLD_VANISHED:2728if(--attempts_remaining >0)2729goto retry;2730/* fall through */2731default:2732error("unable to create directory for%s", newrefname);2733return-1;2734}27352736if(rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", newrefname))) {2737if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2738/*2739 * rename(a, b) when b is an existing2740 * directory ought to result in ISDIR, but2741 * Solaris 5.8 gives ENOTDIR. Sheesh.2742 */2743if(remove_empty_directories(git_path("logs/%s", newrefname))) {2744error("Directory not empty: logs/%s", newrefname);2745return-1;2746}2747goto retry;2748}else if(errno == ENOENT && --attempts_remaining >0) {2749/*2750 * Maybe another process just deleted one of2751 * the directories in the path to newrefname.2752 * Try again from the beginning.2753 */2754goto retry;2755}else{2756error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2757 newrefname,strerror(errno));2758return-1;2759}2760}2761return0;2762}27632764static intrename_ref_available(const char*oldname,const char*newname)2765{2766struct string_list skip = STRING_LIST_INIT_NODUP;2767int ret;27682769string_list_insert(&skip, oldname);2770 ret =is_refname_available(newname, &skip,get_packed_refs(&ref_cache))2771&&is_refname_available(newname, &skip,get_loose_refs(&ref_cache));2772string_list_clear(&skip,0);2773return ret;2774}27752776static intwrite_ref_sha1(struct ref_lock *lock,const unsigned char*sha1,2777const char*logmsg);27782779intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2780{2781unsigned char sha1[20], orig_sha1[20];2782int flag =0, logmoved =0;2783struct ref_lock *lock;2784struct stat loginfo;2785int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2786const char*symref = NULL;27872788if(log &&S_ISLNK(loginfo.st_mode))2789returnerror("reflog for%sis a symlink", oldrefname);27902791 symref =resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,2792 orig_sha1, &flag);2793if(flag & REF_ISSYMREF)2794returnerror("refname%sis a symbolic ref, renaming it is not supported",2795 oldrefname);2796if(!symref)2797returnerror("refname%snot found", oldrefname);27982799if(!rename_ref_available(oldrefname, newrefname))2800return1;28012802if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2803returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2804 oldrefname,strerror(errno));28052806if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2807error("unable to delete old%s", oldrefname);2808goto rollback;2809}28102811if(!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&2812delete_ref(newrefname, sha1, REF_NODEREF)) {2813if(errno==EISDIR) {2814if(remove_empty_directories(git_path("%s", newrefname))) {2815error("Directory not empty:%s", newrefname);2816goto rollback;2817}2818}else{2819error("unable to delete existing%s", newrefname);2820goto rollback;2821}2822}28232824if(log &&rename_tmp_log(newrefname))2825goto rollback;28262827 logmoved = log;28282829 lock =lock_ref_sha1_basic(newrefname, NULL, NULL,0, NULL);2830if(!lock) {2831error("unable to lock%sfor update", newrefname);2832goto rollback;2833}2834hashcpy(lock->old_sha1, orig_sha1);2835if(write_ref_sha1(lock, orig_sha1, logmsg)) {2836error("unable to write current sha1 into%s", newrefname);2837goto rollback;2838}28392840return0;28412842 rollback:2843 lock =lock_ref_sha1_basic(oldrefname, NULL, NULL,0, NULL);2844if(!lock) {2845error("unable to lock%sfor rollback", oldrefname);2846goto rollbacklog;2847}28482849 flag = log_all_ref_updates;2850 log_all_ref_updates =0;2851if(write_ref_sha1(lock, orig_sha1, NULL))2852error("unable to write current sha1 into%s", oldrefname);2853 log_all_ref_updates = flag;28542855 rollbacklog:2856if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2857error("unable to restore logfile%sfrom%s:%s",2858 oldrefname, newrefname,strerror(errno));2859if(!logmoved && log &&2860rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2861error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2862 oldrefname,strerror(errno));28632864return1;2865}28662867static intclose_ref(struct ref_lock *lock)2868{2869if(close_lock_file(lock->lk))2870return-1;2871 lock->lock_fd = -1;2872return0;2873}28742875static intcommit_ref(struct ref_lock *lock)2876{2877if(commit_lock_file(lock->lk))2878return-1;2879 lock->lock_fd = -1;2880return0;2881}28822883/*2884 * copy the reflog message msg to buf, which has been allocated sufficiently2885 * large, while cleaning up the whitespaces. Especially, convert LF to space,2886 * because reflog file is one line per entry.2887 */2888static intcopy_msg(char*buf,const char*msg)2889{2890char*cp = buf;2891char c;2892int wasspace =1;28932894*cp++ ='\t';2895while((c = *msg++)) {2896if(wasspace &&isspace(c))2897continue;2898 wasspace =isspace(c);2899if(wasspace)2900 c =' ';2901*cp++ = c;2902}2903while(buf < cp &&isspace(cp[-1]))2904 cp--;2905*cp++ ='\n';2906return cp - buf;2907}29082909/* This function must set a meaningful errno on failure */2910intlog_ref_setup(const char*refname,char*logfile,int bufsize)2911{2912int logfd, oflags = O_APPEND | O_WRONLY;29132914git_snpath(logfile, bufsize,"logs/%s", refname);2915if(log_all_ref_updates &&2916(starts_with(refname,"refs/heads/") ||2917starts_with(refname,"refs/remotes/") ||2918starts_with(refname,"refs/notes/") ||2919!strcmp(refname,"HEAD"))) {2920if(safe_create_leading_directories(logfile) <0) {2921int save_errno = errno;2922error("unable to create directory for%s", logfile);2923 errno = save_errno;2924return-1;2925}2926 oflags |= O_CREAT;2927}29282929 logfd =open(logfile, oflags,0666);2930if(logfd <0) {2931if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))2932return0;29332934if(errno == EISDIR) {2935if(remove_empty_directories(logfile)) {2936int save_errno = errno;2937error("There are still logs under '%s'",2938 logfile);2939 errno = save_errno;2940return-1;2941}2942 logfd =open(logfile, oflags,0666);2943}29442945if(logfd <0) {2946int save_errno = errno;2947error("Unable to append to%s:%s", logfile,2948strerror(errno));2949 errno = save_errno;2950return-1;2951}2952}29532954adjust_shared_perm(logfile);2955close(logfd);2956return0;2957}29582959static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,2960const unsigned char*new_sha1,2961const char*committer,const char*msg)2962{2963int msglen, written;2964unsigned maxlen, len;2965char*logrec;29662967 msglen = msg ?strlen(msg) :0;2968 maxlen =strlen(committer) + msglen +100;2969 logrec =xmalloc(maxlen);2970 len =sprintf(logrec,"%s %s %s\n",2971sha1_to_hex(old_sha1),2972sha1_to_hex(new_sha1),2973 committer);2974if(msglen)2975 len +=copy_msg(logrec + len -1, msg) -1;29762977 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;2978free(logrec);2979if(written != len)2980return-1;29812982return0;2983}29842985static intlog_ref_write(const char*refname,const unsigned char*old_sha1,2986const unsigned char*new_sha1,const char*msg)2987{2988int logfd, result, oflags = O_APPEND | O_WRONLY;2989char log_file[PATH_MAX];29902991if(log_all_ref_updates <0)2992 log_all_ref_updates = !is_bare_repository();29932994 result =log_ref_setup(refname, log_file,sizeof(log_file));2995if(result)2996return result;29972998 logfd =open(log_file, oflags);2999if(logfd <0)3000return0;3001 result =log_ref_write_fd(logfd, old_sha1, new_sha1,3002git_committer_info(0), msg);3003if(result) {3004int save_errno = errno;3005close(logfd);3006error("Unable to append to%s", log_file);3007 errno = save_errno;3008return-1;3009}3010if(close(logfd)) {3011int save_errno = errno;3012error("Unable to append to%s", log_file);3013 errno = save_errno;3014return-1;3015}3016return0;3017}30183019intis_branch(const char*refname)3020{3021return!strcmp(refname,"HEAD") ||starts_with(refname,"refs/heads/");3022}30233024/*3025 * Write sha1 into the ref specified by the lock. Make sure that errno3026 * is sane on error.3027 */3028static intwrite_ref_sha1(struct ref_lock *lock,3029const unsigned char*sha1,const char*logmsg)3030{3031static char term ='\n';3032struct object *o;30333034 o =parse_object(sha1);3035if(!o) {3036error("Trying to write ref%swith nonexistent object%s",3037 lock->ref_name,sha1_to_hex(sha1));3038unlock_ref(lock);3039 errno = EINVAL;3040return-1;3041}3042if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {3043error("Trying to write non-commit object%sto branch%s",3044sha1_to_hex(sha1), lock->ref_name);3045unlock_ref(lock);3046 errno = EINVAL;3047return-1;3048}3049if(write_in_full(lock->lock_fd,sha1_to_hex(sha1),40) !=40||3050write_in_full(lock->lock_fd, &term,1) !=1||3051close_ref(lock) <0) {3052int save_errno = errno;3053error("Couldn't write%s", lock->lk->filename.buf);3054unlock_ref(lock);3055 errno = save_errno;3056return-1;3057}3058clear_loose_ref_cache(&ref_cache);3059if(log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) <0||3060(strcmp(lock->ref_name, lock->orig_ref_name) &&3061log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) <0)) {3062unlock_ref(lock);3063return-1;3064}3065if(strcmp(lock->orig_ref_name,"HEAD") !=0) {3066/*3067 * Special hack: If a branch is updated directly and HEAD3068 * points to it (may happen on the remote side of a push3069 * for example) then logically the HEAD reflog should be3070 * updated too.3071 * A generic solution implies reverse symref information,3072 * but finding all symrefs pointing to the given branch3073 * would be rather costly for this rare event (the direct3074 * update of a branch) to be worth it. So let's cheat and3075 * check with HEAD only which should cover 99% of all usage3076 * scenarios (even 100% of the default ones).3077 */3078unsigned char head_sha1[20];3079int head_flag;3080const char*head_ref;3081 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,3082 head_sha1, &head_flag);3083if(head_ref && (head_flag & REF_ISSYMREF) &&3084!strcmp(head_ref, lock->ref_name))3085log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);3086}3087if(commit_ref(lock)) {3088error("Couldn't set%s", lock->ref_name);3089unlock_ref(lock);3090return-1;3091}3092unlock_ref(lock);3093return0;3094}30953096intcreate_symref(const char*ref_target,const char*refs_heads_master,3097const char*logmsg)3098{3099const char*lockpath;3100char ref[1000];3101int fd, len, written;3102char*git_HEAD =git_pathdup("%s", ref_target);3103unsigned char old_sha1[20], new_sha1[20];31043105if(logmsg &&read_ref(ref_target, old_sha1))3106hashclr(old_sha1);31073108if(safe_create_leading_directories(git_HEAD) <0)3109returnerror("unable to create directory for%s", git_HEAD);31103111#ifndef NO_SYMLINK_HEAD3112if(prefer_symlink_refs) {3113unlink(git_HEAD);3114if(!symlink(refs_heads_master, git_HEAD))3115goto done;3116fprintf(stderr,"no symlink - falling back to symbolic ref\n");3117}3118#endif31193120 len =snprintf(ref,sizeof(ref),"ref:%s\n", refs_heads_master);3121if(sizeof(ref) <= len) {3122error("refname too long:%s", refs_heads_master);3123goto error_free_return;3124}3125 lockpath =mkpath("%s.lock", git_HEAD);3126 fd =open(lockpath, O_CREAT | O_EXCL | O_WRONLY,0666);3127if(fd <0) {3128error("Unable to open%sfor writing", lockpath);3129goto error_free_return;3130}3131 written =write_in_full(fd, ref, len);3132if(close(fd) !=0|| written != len) {3133error("Unable to write to%s", lockpath);3134goto error_unlink_return;3135}3136if(rename(lockpath, git_HEAD) <0) {3137error("Unable to create%s", git_HEAD);3138goto error_unlink_return;3139}3140if(adjust_shared_perm(git_HEAD)) {3141error("Unable to fix permissions on%s", lockpath);3142 error_unlink_return:3143unlink_or_warn(lockpath);3144 error_free_return:3145free(git_HEAD);3146return-1;3147}31483149#ifndef NO_SYMLINK_HEAD3150 done:3151#endif3152if(logmsg && !read_ref(refs_heads_master, new_sha1))3153log_ref_write(ref_target, old_sha1, new_sha1, logmsg);31543155free(git_HEAD);3156return0;3157}31583159struct read_ref_at_cb {3160const char*refname;3161unsigned long at_time;3162int cnt;3163int reccnt;3164unsigned char*sha1;3165int found_it;31663167unsigned char osha1[20];3168unsigned char nsha1[20];3169int tz;3170unsigned long date;3171char**msg;3172unsigned long*cutoff_time;3173int*cutoff_tz;3174int*cutoff_cnt;3175};31763177static intread_ref_at_ent(unsigned char*osha1,unsigned char*nsha1,3178const char*email,unsigned long timestamp,int tz,3179const char*message,void*cb_data)3180{3181struct read_ref_at_cb *cb = cb_data;31823183 cb->reccnt++;3184 cb->tz = tz;3185 cb->date = timestamp;31863187if(timestamp <= cb->at_time || cb->cnt ==0) {3188if(cb->msg)3189*cb->msg =xstrdup(message);3190if(cb->cutoff_time)3191*cb->cutoff_time = timestamp;3192if(cb->cutoff_tz)3193*cb->cutoff_tz = tz;3194if(cb->cutoff_cnt)3195*cb->cutoff_cnt = cb->reccnt -1;3196/*3197 * we have not yet updated cb->[n|o]sha1 so they still3198 * hold the values for the previous record.3199 */3200if(!is_null_sha1(cb->osha1)) {3201hashcpy(cb->sha1, nsha1);3202if(hashcmp(cb->osha1, nsha1))3203warning("Log for ref%shas gap after%s.",3204 cb->refname,show_date(cb->date, cb->tz, DATE_RFC2822));3205}3206else if(cb->date == cb->at_time)3207hashcpy(cb->sha1, nsha1);3208else if(hashcmp(nsha1, cb->sha1))3209warning("Log for ref%sunexpectedly ended on%s.",3210 cb->refname,show_date(cb->date, cb->tz,3211 DATE_RFC2822));3212hashcpy(cb->osha1, osha1);3213hashcpy(cb->nsha1, nsha1);3214 cb->found_it =1;3215return1;3216}3217hashcpy(cb->osha1, osha1);3218hashcpy(cb->nsha1, nsha1);3219if(cb->cnt >0)3220 cb->cnt--;3221return0;3222}32233224static intread_ref_at_ent_oldest(unsigned char*osha1,unsigned char*nsha1,3225const char*email,unsigned long timestamp,3226int tz,const char*message,void*cb_data)3227{3228struct read_ref_at_cb *cb = cb_data;32293230if(cb->msg)3231*cb->msg =xstrdup(message);3232if(cb->cutoff_time)3233*cb->cutoff_time = timestamp;3234if(cb->cutoff_tz)3235*cb->cutoff_tz = tz;3236if(cb->cutoff_cnt)3237*cb->cutoff_cnt = cb->reccnt;3238hashcpy(cb->sha1, osha1);3239if(is_null_sha1(cb->sha1))3240hashcpy(cb->sha1, nsha1);3241/* We just want the first entry */3242return1;3243}32443245intread_ref_at(const char*refname,unsigned int flags,unsigned long at_time,int cnt,3246unsigned char*sha1,char**msg,3247unsigned long*cutoff_time,int*cutoff_tz,int*cutoff_cnt)3248{3249struct read_ref_at_cb cb;32503251memset(&cb,0,sizeof(cb));3252 cb.refname = refname;3253 cb.at_time = at_time;3254 cb.cnt = cnt;3255 cb.msg = msg;3256 cb.cutoff_time = cutoff_time;3257 cb.cutoff_tz = cutoff_tz;3258 cb.cutoff_cnt = cutoff_cnt;3259 cb.sha1 = sha1;32603261for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);32623263if(!cb.reccnt) {3264if(flags & GET_SHA1_QUIETLY)3265exit(128);3266else3267die("Log for%sis empty.", refname);3268}3269if(cb.found_it)3270return0;32713272for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);32733274return1;3275}32763277intreflog_exists(const char*refname)3278{3279struct stat st;32803281return!lstat(git_path("logs/%s", refname), &st) &&3282S_ISREG(st.st_mode);3283}32843285intdelete_reflog(const char*refname)3286{3287returnremove_path(git_path("logs/%s", refname));3288}32893290static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)3291{3292unsigned char osha1[20], nsha1[20];3293char*email_end, *message;3294unsigned long timestamp;3295int tz;32963297/* old SP new SP name <email> SP time TAB msg LF */3298if(sb->len <83|| sb->buf[sb->len -1] !='\n'||3299get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||3300get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||3301!(email_end =strchr(sb->buf +82,'>')) ||3302 email_end[1] !=' '||3303!(timestamp =strtoul(email_end +2, &message,10)) ||3304!message || message[0] !=' '||3305(message[1] !='+'&& message[1] !='-') ||3306!isdigit(message[2]) || !isdigit(message[3]) ||3307!isdigit(message[4]) || !isdigit(message[5]))3308return0;/* corrupt? */3309 email_end[1] ='\0';3310 tz =strtol(message +1, NULL,10);3311if(message[6] !='\t')3312 message +=6;3313else3314 message +=7;3315returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);3316}33173318static char*find_beginning_of_line(char*bob,char*scan)3319{3320while(bob < scan && *(--scan) !='\n')3321;/* keep scanning backwards */3322/*3323 * Return either beginning of the buffer, or LF at the end of3324 * the previous line.3325 */3326return scan;3327}33283329intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)3330{3331struct strbuf sb = STRBUF_INIT;3332FILE*logfp;3333long pos;3334int ret =0, at_tail =1;33353336 logfp =fopen(git_path("logs/%s", refname),"r");3337if(!logfp)3338return-1;33393340/* Jump to the end */3341if(fseek(logfp,0, SEEK_END) <0)3342returnerror("cannot seek back reflog for%s:%s",3343 refname,strerror(errno));3344 pos =ftell(logfp);3345while(!ret &&0< pos) {3346int cnt;3347size_t nread;3348char buf[BUFSIZ];3349char*endp, *scanp;33503351/* Fill next block from the end */3352 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;3353if(fseek(logfp, pos - cnt, SEEK_SET))3354returnerror("cannot seek back reflog for%s:%s",3355 refname,strerror(errno));3356 nread =fread(buf, cnt,1, logfp);3357if(nread !=1)3358returnerror("cannot read%dbytes from reflog for%s:%s",3359 cnt, refname,strerror(errno));3360 pos -= cnt;33613362 scanp = endp = buf + cnt;3363if(at_tail && scanp[-1] =='\n')3364/* Looking at the final LF at the end of the file */3365 scanp--;3366 at_tail =0;33673368while(buf < scanp) {3369/*3370 * terminating LF of the previous line, or the beginning3371 * of the buffer.3372 */3373char*bp;33743375 bp =find_beginning_of_line(buf, scanp);33763377if(*bp =='\n') {3378/*3379 * The newline is the end of the previous line,3380 * so we know we have complete line starting3381 * at (bp + 1). Prefix it onto any prior data3382 * we collected for the line and process it.3383 */3384strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));3385 scanp = bp;3386 endp = bp +1;3387 ret =show_one_reflog_ent(&sb, fn, cb_data);3388strbuf_reset(&sb);3389if(ret)3390break;3391}else if(!pos) {3392/*3393 * We are at the start of the buffer, and the3394 * start of the file; there is no previous3395 * line, and we have everything for this one.3396 * Process it, and we can end the loop.3397 */3398strbuf_splice(&sb,0,0, buf, endp - buf);3399 ret =show_one_reflog_ent(&sb, fn, cb_data);3400strbuf_reset(&sb);3401break;3402}34033404if(bp == buf) {3405/*3406 * We are at the start of the buffer, and there3407 * is more file to read backwards. Which means3408 * we are in the middle of a line. Note that we3409 * may get here even if *bp was a newline; that3410 * just means we are at the exact end of the3411 * previous line, rather than some spot in the3412 * middle.3413 *3414 * Save away what we have to be combined with3415 * the data from the next read.3416 */3417strbuf_splice(&sb,0,0, buf, endp - buf);3418break;3419}3420}34213422}3423if(!ret && sb.len)3424die("BUG: reverse reflog parser had leftover data");34253426fclose(logfp);3427strbuf_release(&sb);3428return ret;3429}34303431intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)3432{3433FILE*logfp;3434struct strbuf sb = STRBUF_INIT;3435int ret =0;34363437 logfp =fopen(git_path("logs/%s", refname),"r");3438if(!logfp)3439return-1;34403441while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3442 ret =show_one_reflog_ent(&sb, fn, cb_data);3443fclose(logfp);3444strbuf_release(&sb);3445return ret;3446}3447/*3448 * Call fn for each reflog in the namespace indicated by name. name3449 * must be empty or end with '/'. Name will be used as a scratch3450 * space, but its contents will be restored before return.3451 */3452static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)3453{3454DIR*d =opendir(git_path("logs/%s", name->buf));3455int retval =0;3456struct dirent *de;3457int oldlen = name->len;34583459if(!d)3460return name->len ? errno :0;34613462while((de =readdir(d)) != NULL) {3463struct stat st;34643465if(de->d_name[0] =='.')3466continue;3467if(ends_with(de->d_name,".lock"))3468continue;3469strbuf_addstr(name, de->d_name);3470if(stat(git_path("logs/%s", name->buf), &st) <0) {3471;/* silently ignore */3472}else{3473if(S_ISDIR(st.st_mode)) {3474strbuf_addch(name,'/');3475 retval =do_for_each_reflog(name, fn, cb_data);3476}else{3477unsigned char sha1[20];3478if(read_ref_full(name->buf,0, sha1, NULL))3479 retval =error("bad ref for%s", name->buf);3480else3481 retval =fn(name->buf, sha1,0, cb_data);3482}3483if(retval)3484break;3485}3486strbuf_setlen(name, oldlen);3487}3488closedir(d);3489return retval;3490}34913492intfor_each_reflog(each_ref_fn fn,void*cb_data)3493{3494int retval;3495struct strbuf name;3496strbuf_init(&name, PATH_MAX);3497 retval =do_for_each_reflog(&name, fn, cb_data);3498strbuf_release(&name);3499return retval;3500}35013502/**3503 * Information needed for a single ref update. Set new_sha1 to the new3504 * value or to null_sha1 to delete the ref. To check the old value3505 * while the ref is locked, set (flags & REF_HAVE_OLD) and set3506 * old_sha1 to the old value, or to null_sha1 to ensure the ref does3507 * not exist before update.3508 */3509struct ref_update {3510/*3511 * If (flags & REF_HAVE_NEW), set the reference to this value:3512 */3513unsigned char new_sha1[20];3514/*3515 * If (flags & REF_HAVE_OLD), check that the reference3516 * previously had this value:3517 */3518unsigned char old_sha1[20];3519/*3520 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,3521 * REF_DELETING, and REF_ISPRUNING:3522 */3523unsigned int flags;3524struct ref_lock *lock;3525int type;3526char*msg;3527const char refname[FLEX_ARRAY];3528};35293530/*3531 * Transaction states.3532 * OPEN: The transaction is in a valid state and can accept new updates.3533 * An OPEN transaction can be committed.3534 * CLOSED: A closed transaction is no longer active and no other operations3535 * than free can be used on it in this state.3536 * A transaction can either become closed by successfully committing3537 * an active transaction or if there is a failure while building3538 * the transaction thus rendering it failed/inactive.3539 */3540enum ref_transaction_state {3541 REF_TRANSACTION_OPEN =0,3542 REF_TRANSACTION_CLOSED =13543};35443545/*3546 * Data structure for holding a reference transaction, which can3547 * consist of checks and updates to multiple references, carried out3548 * as atomically as possible. This structure is opaque to callers.3549 */3550struct ref_transaction {3551struct ref_update **updates;3552size_t alloc;3553size_t nr;3554enum ref_transaction_state state;3555};35563557struct ref_transaction *ref_transaction_begin(struct strbuf *err)3558{3559assert(err);35603561returnxcalloc(1,sizeof(struct ref_transaction));3562}35633564voidref_transaction_free(struct ref_transaction *transaction)3565{3566int i;35673568if(!transaction)3569return;35703571for(i =0; i < transaction->nr; i++) {3572free(transaction->updates[i]->msg);3573free(transaction->updates[i]);3574}3575free(transaction->updates);3576free(transaction);3577}35783579static struct ref_update *add_update(struct ref_transaction *transaction,3580const char*refname)3581{3582size_t len =strlen(refname);3583struct ref_update *update =xcalloc(1,sizeof(*update) + len +1);35843585strcpy((char*)update->refname, refname);3586ALLOC_GROW(transaction->updates, transaction->nr +1, transaction->alloc);3587 transaction->updates[transaction->nr++] = update;3588return update;3589}35903591intref_transaction_update(struct ref_transaction *transaction,3592const char*refname,3593const unsigned char*new_sha1,3594const unsigned char*old_sha1,3595unsigned int flags,const char*msg,3596struct strbuf *err)3597{3598struct ref_update *update;35993600assert(err);36013602if(transaction->state != REF_TRANSACTION_OPEN)3603die("BUG: update called for transaction that is not open");36043605if(new_sha1 && !is_null_sha1(new_sha1) &&3606check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {3607strbuf_addf(err,"refusing to update ref with bad name%s",3608 refname);3609return-1;3610}36113612 update =add_update(transaction, refname);3613if(new_sha1) {3614hashcpy(update->new_sha1, new_sha1);3615 flags |= REF_HAVE_NEW;3616}3617if(old_sha1) {3618hashcpy(update->old_sha1, old_sha1);3619 flags |= REF_HAVE_OLD;3620}3621 update->flags = flags;3622if(msg)3623 update->msg =xstrdup(msg);3624return0;3625}36263627intref_transaction_create(struct ref_transaction *transaction,3628const char*refname,3629const unsigned char*new_sha1,3630unsigned int flags,const char*msg,3631struct strbuf *err)3632{3633if(!new_sha1 ||is_null_sha1(new_sha1))3634die("BUG: create called without valid new_sha1");3635returnref_transaction_update(transaction, refname, new_sha1,3636 null_sha1, flags, msg, err);3637}36383639intref_transaction_delete(struct ref_transaction *transaction,3640const char*refname,3641const unsigned char*old_sha1,3642unsigned int flags,const char*msg,3643struct strbuf *err)3644{3645if(old_sha1 &&is_null_sha1(old_sha1))3646die("BUG: delete called with old_sha1 set to zeros");3647returnref_transaction_update(transaction, refname,3648 null_sha1, old_sha1,3649 flags, msg, err);3650}36513652intref_transaction_verify(struct ref_transaction *transaction,3653const char*refname,3654const unsigned char*old_sha1,3655unsigned int flags,3656struct strbuf *err)3657{3658if(!old_sha1)3659die("BUG: verify called with old_sha1 set to NULL");3660returnref_transaction_update(transaction, refname,3661 NULL, old_sha1,3662 flags, NULL, err);3663}36643665intupdate_ref(const char*msg,const char*refname,3666const unsigned char*new_sha1,const unsigned char*old_sha1,3667unsigned int flags,enum action_on_err onerr)3668{3669struct ref_transaction *t;3670struct strbuf err = STRBUF_INIT;36713672 t =ref_transaction_begin(&err);3673if(!t ||3674ref_transaction_update(t, refname, new_sha1, old_sha1,3675 flags, msg, &err) ||3676ref_transaction_commit(t, &err)) {3677const char*str ="update_ref failed for ref '%s':%s";36783679ref_transaction_free(t);3680switch(onerr) {3681case UPDATE_REFS_MSG_ON_ERR:3682error(str, refname, err.buf);3683break;3684case UPDATE_REFS_DIE_ON_ERR:3685die(str, refname, err.buf);3686break;3687case UPDATE_REFS_QUIET_ON_ERR:3688break;3689}3690strbuf_release(&err);3691return1;3692}3693strbuf_release(&err);3694ref_transaction_free(t);3695return0;3696}36973698static intref_update_compare(const void*r1,const void*r2)3699{3700const struct ref_update *const*u1 = r1;3701const struct ref_update *const*u2 = r2;3702returnstrcmp((*u1)->refname, (*u2)->refname);3703}37043705static intref_update_reject_duplicates(struct ref_update **updates,int n,3706struct strbuf *err)3707{3708int i;37093710assert(err);37113712for(i =1; i < n; i++)3713if(!strcmp(updates[i -1]->refname, updates[i]->refname)) {3714strbuf_addf(err,3715"Multiple updates for ref '%s' not allowed.",3716 updates[i]->refname);3717return1;3718}3719return0;3720}37213722intref_transaction_commit(struct ref_transaction *transaction,3723struct strbuf *err)3724{3725int ret =0, i;3726int n = transaction->nr;3727struct ref_update **updates = transaction->updates;3728struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3729struct string_list_item *ref_to_delete;37303731assert(err);37323733if(transaction->state != REF_TRANSACTION_OPEN)3734die("BUG: commit called for transaction that is not open");37353736if(!n) {3737 transaction->state = REF_TRANSACTION_CLOSED;3738return0;3739}37403741/* Copy, sort, and reject duplicate refs */3742qsort(updates, n,sizeof(*updates), ref_update_compare);3743if(ref_update_reject_duplicates(updates, n, err)) {3744 ret = TRANSACTION_GENERIC_ERROR;3745goto cleanup;3746}37473748/* Acquire all locks while verifying old values */3749for(i =0; i < n; i++) {3750struct ref_update *update = updates[i];3751unsigned int flags = update->flags;37523753if((flags & REF_HAVE_NEW) &&is_null_sha1(update->new_sha1))3754 flags |= REF_DELETING;3755 update->lock =lock_ref_sha1_basic(3756 update->refname,3757((update->flags & REF_HAVE_OLD) ?3758 update->old_sha1 : NULL),3759 NULL,3760 flags,3761&update->type);3762if(!update->lock) {3763 ret = (errno == ENOTDIR)3764? TRANSACTION_NAME_CONFLICT3765: TRANSACTION_GENERIC_ERROR;3766strbuf_addf(err,"Cannot lock the ref '%s'.",3767 update->refname);3768goto cleanup;3769}3770}37713772/* Perform updates first so live commits remain referenced */3773for(i =0; i < n; i++) {3774struct ref_update *update = updates[i];3775int flags = update->flags;37763777if((flags & REF_HAVE_NEW) && !is_null_sha1(update->new_sha1)) {3778int overwriting_symref = ((update->type & REF_ISSYMREF) &&3779(update->flags & REF_NODEREF));37803781if(!overwriting_symref3782&& !hashcmp(update->lock->old_sha1, update->new_sha1)) {3783/*3784 * The reference already has the desired3785 * value, so we don't need to write it.3786 */3787unlock_ref(update->lock);3788 update->lock = NULL;3789}else if(write_ref_sha1(update->lock, update->new_sha1,3790 update->msg)) {3791 update->lock = NULL;/* freed by write_ref_sha1 */3792strbuf_addf(err,"Cannot update the ref '%s'.",3793 update->refname);3794 ret = TRANSACTION_GENERIC_ERROR;3795goto cleanup;3796}else{3797/* freed by write_ref_sha1(): */3798 update->lock = NULL;3799}3800}3801}38023803/* Perform deletes now that updates are safely completed */3804for(i =0; i < n; i++) {3805struct ref_update *update = updates[i];3806int flags = update->flags;38073808if((flags & REF_HAVE_NEW) &&is_null_sha1(update->new_sha1)) {3809if(delete_ref_loose(update->lock, update->type, err)) {3810 ret = TRANSACTION_GENERIC_ERROR;3811goto cleanup;3812}38133814if(!(flags & REF_ISPRUNING))3815string_list_append(&refs_to_delete,3816 update->lock->ref_name);3817}3818}38193820if(repack_without_refs(&refs_to_delete, err)) {3821 ret = TRANSACTION_GENERIC_ERROR;3822goto cleanup;3823}3824for_each_string_list_item(ref_to_delete, &refs_to_delete)3825unlink_or_warn(git_path("logs/%s", ref_to_delete->string));3826clear_loose_ref_cache(&ref_cache);38273828cleanup:3829 transaction->state = REF_TRANSACTION_CLOSED;38303831for(i =0; i < n; i++)3832if(updates[i]->lock)3833unlock_ref(updates[i]->lock);3834string_list_clear(&refs_to_delete,0);3835return ret;3836}38373838char*shorten_unambiguous_ref(const char*refname,int strict)3839{3840int i;3841static char**scanf_fmts;3842static int nr_rules;3843char*short_name;38443845if(!nr_rules) {3846/*3847 * Pre-generate scanf formats from ref_rev_parse_rules[].3848 * Generate a format suitable for scanf from a3849 * ref_rev_parse_rules rule by interpolating "%s" at the3850 * location of the "%.*s".3851 */3852size_t total_len =0;3853size_t offset =0;38543855/* the rule list is NULL terminated, count them first */3856for(nr_rules =0; ref_rev_parse_rules[nr_rules]; nr_rules++)3857/* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */3858 total_len +=strlen(ref_rev_parse_rules[nr_rules]) -2+1;38593860 scanf_fmts =xmalloc(nr_rules *sizeof(char*) + total_len);38613862 offset =0;3863for(i =0; i < nr_rules; i++) {3864assert(offset < total_len);3865 scanf_fmts[i] = (char*)&scanf_fmts[nr_rules] + offset;3866 offset +=snprintf(scanf_fmts[i], total_len - offset,3867 ref_rev_parse_rules[i],2,"%s") +1;3868}3869}38703871/* bail out if there are no rules */3872if(!nr_rules)3873returnxstrdup(refname);38743875/* buffer for scanf result, at most refname must fit */3876 short_name =xstrdup(refname);38773878/* skip first rule, it will always match */3879for(i = nr_rules -1; i >0; --i) {3880int j;3881int rules_to_fail = i;3882int short_name_len;38833884if(1!=sscanf(refname, scanf_fmts[i], short_name))3885continue;38863887 short_name_len =strlen(short_name);38883889/*3890 * in strict mode, all (except the matched one) rules3891 * must fail to resolve to a valid non-ambiguous ref3892 */3893if(strict)3894 rules_to_fail = nr_rules;38953896/*3897 * check if the short name resolves to a valid ref,3898 * but use only rules prior to the matched one3899 */3900for(j =0; j < rules_to_fail; j++) {3901const char*rule = ref_rev_parse_rules[j];3902char refname[PATH_MAX];39033904/* skip matched rule */3905if(i == j)3906continue;39073908/*3909 * the short name is ambiguous, if it resolves3910 * (with this previous rule) to a valid ref3911 * read_ref() returns 0 on success3912 */3913mksnpath(refname,sizeof(refname),3914 rule, short_name_len, short_name);3915if(ref_exists(refname))3916break;3917}39183919/*3920 * short name is non-ambiguous if all previous rules3921 * haven't resolved to a valid ref3922 */3923if(j == rules_to_fail)3924return short_name;3925}39263927free(short_name);3928returnxstrdup(refname);3929}39303931static struct string_list *hide_refs;39323933intparse_hide_refs_config(const char*var,const char*value,const char*section)3934{3935if(!strcmp("transfer.hiderefs", var) ||3936/* NEEDSWORK: use parse_config_key() once both are merged */3937(starts_with(var, section) && var[strlen(section)] =='.'&&3938!strcmp(var +strlen(section),".hiderefs"))) {3939char*ref;3940int len;39413942if(!value)3943returnconfig_error_nonbool(var);3944 ref =xstrdup(value);3945 len =strlen(ref);3946while(len && ref[len -1] =='/')3947 ref[--len] ='\0';3948if(!hide_refs) {3949 hide_refs =xcalloc(1,sizeof(*hide_refs));3950 hide_refs->strdup_strings =1;3951}3952string_list_append(hide_refs, ref);3953}3954return0;3955}39563957intref_is_hidden(const char*refname)3958{3959struct string_list_item *item;39603961if(!hide_refs)3962return0;3963for_each_string_list_item(item, hide_refs) {3964int len;3965if(!starts_with(refname, item->string))3966continue;3967 len =strlen(item->string);3968if(!refname[len] || refname[len] =='/')3969return1;3970}3971return0;3972}39733974struct expire_reflog_cb {3975unsigned int flags;3976 reflog_expiry_should_prune_fn *should_prune_fn;3977void*policy_cb;3978FILE*newlog;3979unsigned char last_kept_sha1[20];3980};39813982static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,3983const char*email,unsigned long timestamp,int tz,3984const char*message,void*cb_data)3985{3986struct expire_reflog_cb *cb = cb_data;3987struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;39883989if(cb->flags & EXPIRE_REFLOGS_REWRITE)3990 osha1 = cb->last_kept_sha1;39913992if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,3993 message, policy_cb)) {3994if(!cb->newlog)3995printf("would prune%s", message);3996else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3997printf("prune%s", message);3998}else{3999if(cb->newlog) {4000fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",4001sha1_to_hex(osha1),sha1_to_hex(nsha1),4002 email, timestamp, tz, message);4003hashcpy(cb->last_kept_sha1, nsha1);4004}4005if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4006printf("keep%s", message);4007}4008return0;4009}40104011intreflog_expire(const char*refname,const unsigned char*sha1,4012unsigned int flags,4013 reflog_expiry_prepare_fn prepare_fn,4014 reflog_expiry_should_prune_fn should_prune_fn,4015 reflog_expiry_cleanup_fn cleanup_fn,4016void*policy_cb_data)4017{4018static struct lock_file reflog_lock;4019struct expire_reflog_cb cb;4020struct ref_lock *lock;4021char*log_file;4022int status =0;4023int type;40244025memset(&cb,0,sizeof(cb));4026 cb.flags = flags;4027 cb.policy_cb = policy_cb_data;4028 cb.should_prune_fn = should_prune_fn;40294030/*4031 * The reflog file is locked by holding the lock on the4032 * reference itself, plus we might need to update the4033 * reference if --updateref was specified:4034 */4035 lock =lock_ref_sha1_basic(refname, sha1, NULL,0, &type);4036if(!lock)4037returnerror("cannot lock ref '%s'", refname);4038if(!reflog_exists(refname)) {4039unlock_ref(lock);4040return0;4041}40424043 log_file =git_pathdup("logs/%s", refname);4044if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4045/*4046 * Even though holding $GIT_DIR/logs/$reflog.lock has4047 * no locking implications, we use the lock_file4048 * machinery here anyway because it does a lot of the4049 * work we need, including cleaning up if the program4050 * exits unexpectedly.4051 */4052if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {4053struct strbuf err = STRBUF_INIT;4054unable_to_lock_message(log_file, errno, &err);4055error("%s", err.buf);4056strbuf_release(&err);4057goto failure;4058}4059 cb.newlog =fdopen_lock_file(&reflog_lock,"w");4060if(!cb.newlog) {4061error("cannot fdopen%s(%s)",4062 reflog_lock.filename.buf,strerror(errno));4063goto failure;4064}4065}40664067(*prepare_fn)(refname, sha1, cb.policy_cb);4068for_each_reflog_ent(refname, expire_reflog_ent, &cb);4069(*cleanup_fn)(cb.policy_cb);40704071if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4072/*4073 * It doesn't make sense to adjust a reference pointed4074 * to by a symbolic ref based on expiring entries in4075 * the symbolic reference's reflog. Nor can we update4076 * a reference if there are no remaining reflog4077 * entries.4078 */4079int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&4080!(type & REF_ISSYMREF) &&4081!is_null_sha1(cb.last_kept_sha1);40824083if(close_lock_file(&reflog_lock)) {4084 status |=error("couldn't write%s:%s", log_file,4085strerror(errno));4086}else if(update &&4087(write_in_full(lock->lock_fd,4088sha1_to_hex(cb.last_kept_sha1),40) !=40||4089write_str_in_full(lock->lock_fd,"\n") !=1||4090close_ref(lock) <0)) {4091 status |=error("couldn't write%s",4092 lock->lk->filename.buf);4093rollback_lock_file(&reflog_lock);4094}else if(commit_lock_file(&reflog_lock)) {4095 status |=error("unable to commit reflog '%s' (%s)",4096 log_file,strerror(errno));4097}else if(update &&commit_ref(lock)) {4098 status |=error("couldn't set%s", lock->ref_name);4099}4100}4101free(log_file);4102unlock_ref(lock);4103return status;41044105 failure:4106rollback_lock_file(&reflog_lock);4107free(log_file);4108unlock_ref(lock);4109return-1;4110}