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]; 14}; 15 16/* 17 * How to handle various characters in refnames: 18 * 0: An acceptable character for refs 19 * 1: End-of-component 20 * 2: ., look for a preceding . to reject .. in refs 21 * 3: {, look for a preceding @ to reject @{ in refs 22 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP 23 */ 24static unsigned char refname_disposition[256] = { 251,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 264,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 274,0,0,0,0,0,0,0,0,0,4,0,0,0,2,1, 280,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4, 290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 300,0,0,0,0,0,0,0,0,0,0,4,4,0,4,0, 310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 320,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4 33}; 34 35/* 36 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken 37 * refs (i.e., because the reference is about to be deleted anyway). 38 */ 39#define REF_DELETING 0x02 40 41/* 42 * Used as a flag in ref_update::flags when a loose ref is being 43 * pruned. 44 */ 45#define REF_ISPRUNING 0x04 46 47/* 48 * Used as a flag in ref_update::flags when the reference should be 49 * updated to new_sha1. 50 */ 51#define REF_HAVE_NEW 0x08 52 53/* 54 * Used as a flag in ref_update::flags when old_sha1 should be 55 * checked. 56 */ 57#define REF_HAVE_OLD 0x10 58 59/* 60 * Used as a flag in ref_update::flags when the lockfile needs to be 61 * committed. 62 */ 63#define REF_NEEDS_COMMIT 0x20 64 65/* 66 * Try to read one refname component from the front of refname. 67 * Return the length of the component found, or -1 if the component is 68 * not legal. It is legal if it is something reasonable to have under 69 * ".git/refs/"; We do not like it if: 70 * 71 * - any path component of it begins with ".", or 72 * - it has double dots "..", or 73 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or 74 * - it ends with a "/". 75 * - it ends with ".lock" 76 * - it contains a "\" (backslash) 77 */ 78static intcheck_refname_component(const char*refname,int flags) 79{ 80const char*cp; 81char last ='\0'; 82 83for(cp = refname; ; cp++) { 84int ch = *cp &255; 85unsigned char disp = refname_disposition[ch]; 86switch(disp) { 87case1: 88goto out; 89case2: 90if(last =='.') 91return-1;/* Refname contains "..". */ 92break; 93case3: 94if(last =='@') 95return-1;/* Refname contains "@{". */ 96break; 97case4: 98return-1; 99} 100 last = ch; 101} 102out: 103if(cp == refname) 104return0;/* Component has zero length. */ 105if(refname[0] =='.') 106return-1;/* Component starts with '.'. */ 107if(cp - refname >= LOCK_SUFFIX_LEN && 108!memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN)) 109return-1;/* Refname ends with ".lock". */ 110return cp - refname; 111} 112 113intcheck_refname_format(const char*refname,int flags) 114{ 115int component_len, component_count =0; 116 117if(!strcmp(refname,"@")) 118/* Refname is a single character '@'. */ 119return-1; 120 121while(1) { 122/* We are at the start of a path component. */ 123 component_len =check_refname_component(refname, flags); 124if(component_len <=0) { 125if((flags & REFNAME_REFSPEC_PATTERN) && 126 refname[0] =='*'&& 127(refname[1] =='\0'|| refname[1] =='/')) { 128/* Accept one wildcard as a full refname component. */ 129 flags &= ~REFNAME_REFSPEC_PATTERN; 130 component_len =1; 131}else{ 132return-1; 133} 134} 135 component_count++; 136if(refname[component_len] =='\0') 137break; 138/* Skip to next component. */ 139 refname += component_len +1; 140} 141 142if(refname[component_len -1] =='.') 143return-1;/* Refname ends with '.'. */ 144if(!(flags & REFNAME_ALLOW_ONELEVEL) && component_count <2) 145return-1;/* Refname has only one component. */ 146return0; 147} 148 149struct ref_entry; 150 151/* 152 * Information used (along with the information in ref_entry) to 153 * describe a single cached reference. This data structure only 154 * occurs embedded in a union in struct ref_entry, and only when 155 * (ref_entry->flag & REF_DIR) is zero. 156 */ 157struct ref_value { 158/* 159 * The name of the object to which this reference resolves 160 * (which may be a tag object). If REF_ISBROKEN, this is 161 * null. If REF_ISSYMREF, then this is the name of the object 162 * referred to by the last reference in the symlink chain. 163 */ 164unsigned char sha1[20]; 165 166/* 167 * If REF_KNOWS_PEELED, then this field holds the peeled value 168 * of this reference, or null if the reference is known not to 169 * be peelable. See the documentation for peel_ref() for an 170 * exact definition of "peelable". 171 */ 172unsigned char peeled[20]; 173}; 174 175struct ref_cache; 176 177/* 178 * Information used (along with the information in ref_entry) to 179 * describe a level in the hierarchy of references. This data 180 * structure only occurs embedded in a union in struct ref_entry, and 181 * only when (ref_entry.flag & REF_DIR) is set. In that case, 182 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 183 * in the directory have already been read: 184 * 185 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 186 * or packed references, already read. 187 * 188 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 189 * references that hasn't been read yet (nor has any of its 190 * subdirectories). 191 * 192 * Entries within a directory are stored within a growable array of 193 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 194 * sorted are sorted by their component name in strcmp() order and the 195 * remaining entries are unsorted. 196 * 197 * Loose references are read lazily, one directory at a time. When a 198 * directory of loose references is read, then all of the references 199 * in that directory are stored, and REF_INCOMPLETE stubs are created 200 * for any subdirectories, but the subdirectories themselves are not 201 * read. The reading is triggered by get_ref_dir(). 202 */ 203struct ref_dir { 204int nr, alloc; 205 206/* 207 * Entries with index 0 <= i < sorted are sorted by name. New 208 * entries are appended to the list unsorted, and are sorted 209 * only when required; thus we avoid the need to sort the list 210 * after the addition of every reference. 211 */ 212int sorted; 213 214/* A pointer to the ref_cache that contains this ref_dir. */ 215struct ref_cache *ref_cache; 216 217struct ref_entry **entries; 218}; 219 220/* 221 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 222 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 223 * public values; see refs.h. 224 */ 225 226/* 227 * The field ref_entry->u.value.peeled of this value entry contains 228 * the correct peeled value for the reference, which might be 229 * null_sha1 if the reference is not a tag or if it is broken. 230 */ 231#define REF_KNOWS_PEELED 0x10 232 233/* ref_entry represents a directory of references */ 234#define REF_DIR 0x20 235 236/* 237 * Entry has not yet been read from disk (used only for REF_DIR 238 * entries representing loose references) 239 */ 240#define REF_INCOMPLETE 0x40 241 242/* 243 * A ref_entry represents either a reference or a "subdirectory" of 244 * references. 245 * 246 * Each directory in the reference namespace is represented by a 247 * ref_entry with (flags & REF_DIR) set and containing a subdir member 248 * that holds the entries in that directory that have been read so 249 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 250 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 251 * used for loose reference directories. 252 * 253 * References are represented by a ref_entry with (flags & REF_DIR) 254 * unset and a value member that describes the reference's value. The 255 * flag member is at the ref_entry level, but it is also needed to 256 * interpret the contents of the value field (in other words, a 257 * ref_value object is not very much use without the enclosing 258 * ref_entry). 259 * 260 * Reference names cannot end with slash and directories' names are 261 * always stored with a trailing slash (except for the top-level 262 * directory, which is always denoted by ""). This has two nice 263 * consequences: (1) when the entries in each subdir are sorted 264 * lexicographically by name (as they usually are), the references in 265 * a whole tree can be generated in lexicographic order by traversing 266 * the tree in left-to-right, depth-first order; (2) the names of 267 * references and subdirectories cannot conflict, and therefore the 268 * presence of an empty subdirectory does not block the creation of a 269 * similarly-named reference. (The fact that reference names with the 270 * same leading components can conflict *with each other* is a 271 * separate issue that is regulated by verify_refname_available().) 272 * 273 * Please note that the name field contains the fully-qualified 274 * reference (or subdirectory) name. Space could be saved by only 275 * storing the relative names. But that would require the full names 276 * to be generated on the fly when iterating in do_for_each_ref(), and 277 * would break callback functions, who have always been able to assume 278 * that the name strings that they are passed will not be freed during 279 * the iteration. 280 */ 281struct ref_entry { 282unsigned char flag;/* ISSYMREF? ISPACKED? */ 283union{ 284struct ref_value value;/* if not (flags&REF_DIR) */ 285struct ref_dir subdir;/* if (flags&REF_DIR) */ 286} u; 287/* 288 * The full name of the reference (e.g., "refs/heads/master") 289 * or the full name of the directory with a trailing slash 290 * (e.g., "refs/heads/"): 291 */ 292char name[FLEX_ARRAY]; 293}; 294 295static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 296 297static struct ref_dir *get_ref_dir(struct ref_entry *entry) 298{ 299struct ref_dir *dir; 300assert(entry->flag & REF_DIR); 301 dir = &entry->u.subdir; 302if(entry->flag & REF_INCOMPLETE) { 303read_loose_refs(entry->name, dir); 304 entry->flag &= ~REF_INCOMPLETE; 305} 306return dir; 307} 308 309/* 310 * Check if a refname is safe. 311 * For refs that start with "refs/" we consider it safe as long they do 312 * not try to resolve to outside of refs/. 313 * 314 * For all other refs we only consider them safe iff they only contain 315 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like 316 * "config"). 317 */ 318static intrefname_is_safe(const char*refname) 319{ 320if(starts_with(refname,"refs/")) { 321char*buf; 322int result; 323 324 buf =xmalloc(strlen(refname) +1); 325/* 326 * Does the refname try to escape refs/? 327 * For example: refs/foo/../bar is safe but refs/foo/../../bar 328 * is not. 329 */ 330 result = !normalize_path_copy(buf, refname +strlen("refs/")); 331free(buf); 332return result; 333} 334while(*refname) { 335if(!isupper(*refname) && *refname !='_') 336return0; 337 refname++; 338} 339return1; 340} 341 342static struct ref_entry *create_ref_entry(const char*refname, 343const unsigned char*sha1,int flag, 344int check_name) 345{ 346int len; 347struct ref_entry *ref; 348 349if(check_name && 350check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 351die("Reference has invalid format: '%s'", refname); 352 len =strlen(refname) +1; 353 ref =xmalloc(sizeof(struct ref_entry) + len); 354hashcpy(ref->u.value.sha1, sha1); 355hashclr(ref->u.value.peeled); 356memcpy(ref->name, refname, len); 357 ref->flag = flag; 358return ref; 359} 360 361static voidclear_ref_dir(struct ref_dir *dir); 362 363static voidfree_ref_entry(struct ref_entry *entry) 364{ 365if(entry->flag & REF_DIR) { 366/* 367 * Do not use get_ref_dir() here, as that might 368 * trigger the reading of loose refs. 369 */ 370clear_ref_dir(&entry->u.subdir); 371} 372free(entry); 373} 374 375/* 376 * Add a ref_entry to the end of dir (unsorted). Entry is always 377 * stored directly in dir; no recursion into subdirectories is 378 * done. 379 */ 380static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 381{ 382ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 383 dir->entries[dir->nr++] = entry; 384/* optimize for the case that entries are added in order */ 385if(dir->nr ==1|| 386(dir->nr == dir->sorted +1&& 387strcmp(dir->entries[dir->nr -2]->name, 388 dir->entries[dir->nr -1]->name) <0)) 389 dir->sorted = dir->nr; 390} 391 392/* 393 * Clear and free all entries in dir, recursively. 394 */ 395static voidclear_ref_dir(struct ref_dir *dir) 396{ 397int i; 398for(i =0; i < dir->nr; i++) 399free_ref_entry(dir->entries[i]); 400free(dir->entries); 401 dir->sorted = dir->nr = dir->alloc =0; 402 dir->entries = NULL; 403} 404 405/* 406 * Create a struct ref_entry object for the specified dirname. 407 * dirname is the name of the directory with a trailing slash (e.g., 408 * "refs/heads/") or "" for the top-level directory. 409 */ 410static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 411const char*dirname,size_t len, 412int incomplete) 413{ 414struct ref_entry *direntry; 415 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 416memcpy(direntry->name, dirname, len); 417 direntry->name[len] ='\0'; 418 direntry->u.subdir.ref_cache = ref_cache; 419 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 420return direntry; 421} 422 423static intref_entry_cmp(const void*a,const void*b) 424{ 425struct ref_entry *one = *(struct ref_entry **)a; 426struct ref_entry *two = *(struct ref_entry **)b; 427returnstrcmp(one->name, two->name); 428} 429 430static voidsort_ref_dir(struct ref_dir *dir); 431 432struct string_slice { 433size_t len; 434const char*str; 435}; 436 437static intref_entry_cmp_sslice(const void*key_,const void*ent_) 438{ 439const struct string_slice *key = key_; 440const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 441int cmp =strncmp(key->str, ent->name, key->len); 442if(cmp) 443return cmp; 444return'\0'- (unsigned char)ent->name[key->len]; 445} 446 447/* 448 * Return the index of the entry with the given refname from the 449 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 450 * no such entry is found. dir must already be complete. 451 */ 452static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 453{ 454struct ref_entry **r; 455struct string_slice key; 456 457if(refname == NULL || !dir->nr) 458return-1; 459 460sort_ref_dir(dir); 461 key.len = len; 462 key.str = refname; 463 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 464 ref_entry_cmp_sslice); 465 466if(r == NULL) 467return-1; 468 469return r - dir->entries; 470} 471 472/* 473 * Search for a directory entry directly within dir (without 474 * recursing). Sort dir if necessary. subdirname must be a directory 475 * name (i.e., end in '/'). If mkdir is set, then create the 476 * directory if it is missing; otherwise, return NULL if the desired 477 * directory cannot be found. dir must already be complete. 478 */ 479static struct ref_dir *search_for_subdir(struct ref_dir *dir, 480const char*subdirname,size_t len, 481int mkdir) 482{ 483int entry_index =search_ref_dir(dir, subdirname, len); 484struct ref_entry *entry; 485if(entry_index == -1) { 486if(!mkdir) 487return NULL; 488/* 489 * Since dir is complete, the absence of a subdir 490 * means that the subdir really doesn't exist; 491 * therefore, create an empty record for it but mark 492 * the record complete. 493 */ 494 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 495add_entry_to_dir(dir, entry); 496}else{ 497 entry = dir->entries[entry_index]; 498} 499returnget_ref_dir(entry); 500} 501 502/* 503 * If refname is a reference name, find the ref_dir within the dir 504 * tree that should hold refname. If refname is a directory name 505 * (i.e., ends in '/'), then return that ref_dir itself. dir must 506 * represent the top-level directory and must already be complete. 507 * Sort ref_dirs and recurse into subdirectories as necessary. If 508 * mkdir is set, then create any missing directories; otherwise, 509 * return NULL if the desired directory cannot be found. 510 */ 511static struct ref_dir *find_containing_dir(struct ref_dir *dir, 512const char*refname,int mkdir) 513{ 514const char*slash; 515for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 516size_t dirnamelen = slash - refname +1; 517struct ref_dir *subdir; 518 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 519if(!subdir) { 520 dir = NULL; 521break; 522} 523 dir = subdir; 524} 525 526return dir; 527} 528 529/* 530 * Find the value entry with the given name in dir, sorting ref_dirs 531 * and recursing into subdirectories as necessary. If the name is not 532 * found or it corresponds to a directory entry, return NULL. 533 */ 534static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 535{ 536int entry_index; 537struct ref_entry *entry; 538 dir =find_containing_dir(dir, refname,0); 539if(!dir) 540return NULL; 541 entry_index =search_ref_dir(dir, refname,strlen(refname)); 542if(entry_index == -1) 543return NULL; 544 entry = dir->entries[entry_index]; 545return(entry->flag & REF_DIR) ? NULL : entry; 546} 547 548/* 549 * Remove the entry with the given name from dir, recursing into 550 * subdirectories as necessary. If refname is the name of a directory 551 * (i.e., ends with '/'), then remove the directory and its contents. 552 * If the removal was successful, return the number of entries 553 * remaining in the directory entry that contained the deleted entry. 554 * If the name was not found, return -1. Please note that this 555 * function only deletes the entry from the cache; it does not delete 556 * it from the filesystem or ensure that other cache entries (which 557 * might be symbolic references to the removed entry) are updated. 558 * Nor does it remove any containing dir entries that might be made 559 * empty by the removal. dir must represent the top-level directory 560 * and must already be complete. 561 */ 562static intremove_entry(struct ref_dir *dir,const char*refname) 563{ 564int refname_len =strlen(refname); 565int entry_index; 566struct ref_entry *entry; 567int is_dir = refname[refname_len -1] =='/'; 568if(is_dir) { 569/* 570 * refname represents a reference directory. Remove 571 * the trailing slash; otherwise we will get the 572 * directory *representing* refname rather than the 573 * one *containing* it. 574 */ 575char*dirname =xmemdupz(refname, refname_len -1); 576 dir =find_containing_dir(dir, dirname,0); 577free(dirname); 578}else{ 579 dir =find_containing_dir(dir, refname,0); 580} 581if(!dir) 582return-1; 583 entry_index =search_ref_dir(dir, refname, refname_len); 584if(entry_index == -1) 585return-1; 586 entry = dir->entries[entry_index]; 587 588memmove(&dir->entries[entry_index], 589&dir->entries[entry_index +1], 590(dir->nr - entry_index -1) *sizeof(*dir->entries) 591); 592 dir->nr--; 593if(dir->sorted > entry_index) 594 dir->sorted--; 595free_ref_entry(entry); 596return dir->nr; 597} 598 599/* 600 * Add a ref_entry to the ref_dir (unsorted), recursing into 601 * subdirectories as necessary. dir must represent the top-level 602 * directory. Return 0 on success. 603 */ 604static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 605{ 606 dir =find_containing_dir(dir, ref->name,1); 607if(!dir) 608return-1; 609add_entry_to_dir(dir, ref); 610return0; 611} 612 613/* 614 * Emit a warning and return true iff ref1 and ref2 have the same name 615 * and the same sha1. Die if they have the same name but different 616 * sha1s. 617 */ 618static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 619{ 620if(strcmp(ref1->name, ref2->name)) 621return0; 622 623/* Duplicate name; make sure that they don't conflict: */ 624 625if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 626/* This is impossible by construction */ 627die("Reference directory conflict:%s", ref1->name); 628 629if(hashcmp(ref1->u.value.sha1, ref2->u.value.sha1)) 630die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 631 632warning("Duplicated ref:%s", ref1->name); 633return1; 634} 635 636/* 637 * Sort the entries in dir non-recursively (if they are not already 638 * sorted) and remove any duplicate entries. 639 */ 640static voidsort_ref_dir(struct ref_dir *dir) 641{ 642int i, j; 643struct ref_entry *last = NULL; 644 645/* 646 * This check also prevents passing a zero-length array to qsort(), 647 * which is a problem on some platforms. 648 */ 649if(dir->sorted == dir->nr) 650return; 651 652qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 653 654/* Remove any duplicates: */ 655for(i =0, j =0; j < dir->nr; j++) { 656struct ref_entry *entry = dir->entries[j]; 657if(last &&is_dup_ref(last, entry)) 658free_ref_entry(entry); 659else 660 last = dir->entries[i++] = entry; 661} 662 dir->sorted = dir->nr = i; 663} 664 665/* Include broken references in a do_for_each_ref*() iteration: */ 666#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 667 668/* 669 * Return true iff the reference described by entry can be resolved to 670 * an object in the database. Emit a warning if the referred-to 671 * object does not exist. 672 */ 673static intref_resolves_to_object(struct ref_entry *entry) 674{ 675if(entry->flag & REF_ISBROKEN) 676return0; 677if(!has_sha1_file(entry->u.value.sha1)) { 678error("%sdoes not point to a valid object!", entry->name); 679return0; 680} 681return1; 682} 683 684/* 685 * current_ref is a performance hack: when iterating over references 686 * using the for_each_ref*() functions, current_ref is set to the 687 * current reference's entry before calling the callback function. If 688 * the callback function calls peel_ref(), then peel_ref() first 689 * checks whether the reference to be peeled is the current reference 690 * (it usually is) and if so, returns that reference's peeled version 691 * if it is available. This avoids a refname lookup in a common case. 692 */ 693static struct ref_entry *current_ref; 694 695typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 696 697struct ref_entry_cb { 698const char*base; 699int trim; 700int flags; 701 each_ref_fn *fn; 702void*cb_data; 703}; 704 705/* 706 * Handle one reference in a do_for_each_ref*()-style iteration, 707 * calling an each_ref_fn for each entry. 708 */ 709static intdo_one_ref(struct ref_entry *entry,void*cb_data) 710{ 711struct ref_entry_cb *data = cb_data; 712struct ref_entry *old_current_ref; 713int retval; 714 715if(!starts_with(entry->name, data->base)) 716return0; 717 718if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 719!ref_resolves_to_object(entry)) 720return0; 721 722/* Store the old value, in case this is a recursive call: */ 723 old_current_ref = current_ref; 724 current_ref = entry; 725 retval = data->fn(entry->name + data->trim, entry->u.value.sha1, 726 entry->flag, data->cb_data); 727 current_ref = old_current_ref; 728return retval; 729} 730 731/* 732 * Call fn for each reference in dir that has index in the range 733 * offset <= index < dir->nr. Recurse into subdirectories that are in 734 * that index range, sorting them before iterating. This function 735 * does not sort dir itself; it should be sorted beforehand. fn is 736 * called for all references, including broken ones. 737 */ 738static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 739 each_ref_entry_fn fn,void*cb_data) 740{ 741int i; 742assert(dir->sorted == dir->nr); 743for(i = offset; i < dir->nr; i++) { 744struct ref_entry *entry = dir->entries[i]; 745int retval; 746if(entry->flag & REF_DIR) { 747struct ref_dir *subdir =get_ref_dir(entry); 748sort_ref_dir(subdir); 749 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 750}else{ 751 retval =fn(entry, cb_data); 752} 753if(retval) 754return retval; 755} 756return0; 757} 758 759/* 760 * Call fn for each reference in the union of dir1 and dir2, in order 761 * by refname. Recurse into subdirectories. If a value entry appears 762 * in both dir1 and dir2, then only process the version that is in 763 * dir2. The input dirs must already be sorted, but subdirs will be 764 * sorted as needed. fn is called for all references, including 765 * broken ones. 766 */ 767static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 768struct ref_dir *dir2, 769 each_ref_entry_fn fn,void*cb_data) 770{ 771int retval; 772int i1 =0, i2 =0; 773 774assert(dir1->sorted == dir1->nr); 775assert(dir2->sorted == dir2->nr); 776while(1) { 777struct ref_entry *e1, *e2; 778int cmp; 779if(i1 == dir1->nr) { 780returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 781} 782if(i2 == dir2->nr) { 783returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 784} 785 e1 = dir1->entries[i1]; 786 e2 = dir2->entries[i2]; 787 cmp =strcmp(e1->name, e2->name); 788if(cmp ==0) { 789if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 790/* Both are directories; descend them in parallel. */ 791struct ref_dir *subdir1 =get_ref_dir(e1); 792struct ref_dir *subdir2 =get_ref_dir(e2); 793sort_ref_dir(subdir1); 794sort_ref_dir(subdir2); 795 retval =do_for_each_entry_in_dirs( 796 subdir1, subdir2, fn, cb_data); 797 i1++; 798 i2++; 799}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 800/* Both are references; ignore the one from dir1. */ 801 retval =fn(e2, cb_data); 802 i1++; 803 i2++; 804}else{ 805die("conflict between reference and directory:%s", 806 e1->name); 807} 808}else{ 809struct ref_entry *e; 810if(cmp <0) { 811 e = e1; 812 i1++; 813}else{ 814 e = e2; 815 i2++; 816} 817if(e->flag & REF_DIR) { 818struct ref_dir *subdir =get_ref_dir(e); 819sort_ref_dir(subdir); 820 retval =do_for_each_entry_in_dir( 821 subdir,0, fn, cb_data); 822}else{ 823 retval =fn(e, cb_data); 824} 825} 826if(retval) 827return retval; 828} 829} 830 831/* 832 * Load all of the refs from the dir into our in-memory cache. The hard work 833 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 834 * through all of the sub-directories. We do not even need to care about 835 * sorting, as traversal order does not matter to us. 836 */ 837static voidprime_ref_dir(struct ref_dir *dir) 838{ 839int i; 840for(i =0; i < dir->nr; i++) { 841struct ref_entry *entry = dir->entries[i]; 842if(entry->flag & REF_DIR) 843prime_ref_dir(get_ref_dir(entry)); 844} 845} 846 847struct nonmatching_ref_data { 848const struct string_list *skip; 849const char*conflicting_refname; 850}; 851 852static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 853{ 854struct nonmatching_ref_data *data = vdata; 855 856if(data->skip &&string_list_has_string(data->skip, entry->name)) 857return0; 858 859 data->conflicting_refname = entry->name; 860return1; 861} 862 863/* 864 * Return 0 if a reference named refname could be created without 865 * conflicting with the name of an existing reference in dir. 866 * Otherwise, return a negative value and write an explanation to err. 867 * If extras is non-NULL, it is a list of additional refnames with 868 * which refname is not allowed to conflict. If skip is non-NULL, 869 * ignore potential conflicts with refs in skip (e.g., because they 870 * are scheduled for deletion in the same operation). Behavior is 871 * undefined if the same name is listed in both extras and skip. 872 * 873 * Two reference names conflict if one of them exactly matches the 874 * leading components of the other; e.g., "refs/foo/bar" conflicts 875 * with both "refs/foo" and with "refs/foo/bar/baz" but not with 876 * "refs/foo/bar" or "refs/foo/barbados". 877 * 878 * extras and skip must be sorted. 879 */ 880static intverify_refname_available(const char*refname, 881const struct string_list *extras, 882const struct string_list *skip, 883struct ref_dir *dir, 884struct strbuf *err) 885{ 886const char*slash; 887int pos; 888struct strbuf dirname = STRBUF_INIT; 889int ret = -1; 890 891/* 892 * For the sake of comments in this function, suppose that 893 * refname is "refs/foo/bar". 894 */ 895 896assert(err); 897 898strbuf_grow(&dirname,strlen(refname) +1); 899for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 900/* Expand dirname to the new prefix, not including the trailing slash: */ 901strbuf_add(&dirname, refname + dirname.len, slash - refname - dirname.len); 902 903/* 904 * We are still at a leading dir of the refname (e.g., 905 * "refs/foo"; if there is a reference with that name, 906 * it is a conflict, *unless* it is in skip. 907 */ 908if(dir) { 909 pos =search_ref_dir(dir, dirname.buf, dirname.len); 910if(pos >=0&& 911(!skip || !string_list_has_string(skip, dirname.buf))) { 912/* 913 * We found a reference whose name is 914 * a proper prefix of refname; e.g., 915 * "refs/foo", and is not in skip. 916 */ 917strbuf_addf(err,"'%s' exists; cannot create '%s'", 918 dirname.buf, refname); 919goto cleanup; 920} 921} 922 923if(extras &&string_list_has_string(extras, dirname.buf) && 924(!skip || !string_list_has_string(skip, dirname.buf))) { 925strbuf_addf(err,"cannot process '%s' and '%s' at the same time", 926 refname, dirname.buf); 927goto cleanup; 928} 929 930/* 931 * Otherwise, we can try to continue our search with 932 * the next component. So try to look up the 933 * directory, e.g., "refs/foo/". If we come up empty, 934 * we know there is nothing under this whole prefix, 935 * but even in that case we still have to continue the 936 * search for conflicts with extras. 937 */ 938strbuf_addch(&dirname,'/'); 939if(dir) { 940 pos =search_ref_dir(dir, dirname.buf, dirname.len); 941if(pos <0) { 942/* 943 * There was no directory "refs/foo/", 944 * so there is nothing under this 945 * whole prefix. So there is no need 946 * to continue looking for conflicting 947 * references. But we need to continue 948 * looking for conflicting extras. 949 */ 950 dir = NULL; 951}else{ 952 dir =get_ref_dir(dir->entries[pos]); 953} 954} 955} 956 957/* 958 * We are at the leaf of our refname (e.g., "refs/foo/bar"). 959 * There is no point in searching for a reference with that 960 * name, because a refname isn't considered to conflict with 961 * itself. But we still need to check for references whose 962 * names are in the "refs/foo/bar/" namespace, because they 963 * *do* conflict. 964 */ 965strbuf_addstr(&dirname, refname + dirname.len); 966strbuf_addch(&dirname,'/'); 967 968if(dir) { 969 pos =search_ref_dir(dir, dirname.buf, dirname.len); 970 971if(pos >=0) { 972/* 973 * We found a directory named "$refname/" 974 * (e.g., "refs/foo/bar/"). It is a problem 975 * iff it contains any ref that is not in 976 * "skip". 977 */ 978struct nonmatching_ref_data data; 979 980 data.skip = skip; 981 data.conflicting_refname = NULL; 982 dir =get_ref_dir(dir->entries[pos]); 983sort_ref_dir(dir); 984if(do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) { 985strbuf_addf(err,"'%s' exists; cannot create '%s'", 986 data.conflicting_refname, refname); 987goto cleanup; 988} 989} 990} 991 992if(extras) { 993/* 994 * Check for entries in extras that start with 995 * "$refname/". We do that by looking for the place 996 * where "$refname/" would be inserted in extras. If 997 * there is an entry at that position that starts with 998 * "$refname/" and is not in skip, then we have a 999 * conflict.1000 */1001for(pos =string_list_find_insert_index(extras, dirname.buf,0);1002 pos < extras->nr; pos++) {1003const char*extra_refname = extras->items[pos].string;10041005if(!starts_with(extra_refname, dirname.buf))1006break;10071008if(!skip || !string_list_has_string(skip, extra_refname)) {1009strbuf_addf(err,"cannot process '%s' and '%s' at the same time",1010 refname, extra_refname);1011goto cleanup;1012}1013}1014}10151016/* No conflicts were found */1017 ret =0;10181019cleanup:1020strbuf_release(&dirname);1021return ret;1022}10231024struct packed_ref_cache {1025struct ref_entry *root;10261027/*1028 * Count of references to the data structure in this instance,1029 * including the pointer from ref_cache::packed if any. The1030 * data will not be freed as long as the reference count is1031 * nonzero.1032 */1033unsigned int referrers;10341035/*1036 * Iff the packed-refs file associated with this instance is1037 * currently locked for writing, this points at the associated1038 * lock (which is owned by somebody else). The referrer count1039 * is also incremented when the file is locked and decremented1040 * when it is unlocked.1041 */1042struct lock_file *lock;10431044/* The metadata from when this packed-refs cache was read */1045struct stat_validity validity;1046};10471048/*1049 * Future: need to be in "struct repository"1050 * when doing a full libification.1051 */1052static struct ref_cache {1053struct ref_cache *next;1054struct ref_entry *loose;1055struct packed_ref_cache *packed;1056/*1057 * The submodule name, or "" for the main repo. We allocate1058 * length 1 rather than FLEX_ARRAY so that the main ref_cache1059 * is initialized correctly.1060 */1061char name[1];1062} ref_cache, *submodule_ref_caches;10631064/* Lock used for the main packed-refs file: */1065static struct lock_file packlock;10661067/*1068 * Increment the reference count of *packed_refs.1069 */1070static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs)1071{1072 packed_refs->referrers++;1073}10741075/*1076 * Decrease the reference count of *packed_refs. If it goes to zero,1077 * free *packed_refs and return true; otherwise return false.1078 */1079static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs)1080{1081if(!--packed_refs->referrers) {1082free_ref_entry(packed_refs->root);1083stat_validity_clear(&packed_refs->validity);1084free(packed_refs);1085return1;1086}else{1087return0;1088}1089}10901091static voidclear_packed_ref_cache(struct ref_cache *refs)1092{1093if(refs->packed) {1094struct packed_ref_cache *packed_refs = refs->packed;10951096if(packed_refs->lock)1097die("internal error: packed-ref cache cleared while locked");1098 refs->packed = NULL;1099release_packed_ref_cache(packed_refs);1100}1101}11021103static voidclear_loose_ref_cache(struct ref_cache *refs)1104{1105if(refs->loose) {1106free_ref_entry(refs->loose);1107 refs->loose = NULL;1108}1109}11101111static struct ref_cache *create_ref_cache(const char*submodule)1112{1113int len;1114struct ref_cache *refs;1115if(!submodule)1116 submodule ="";1117 len =strlen(submodule) +1;1118 refs =xcalloc(1,sizeof(struct ref_cache) + len);1119memcpy(refs->name, submodule, len);1120return refs;1121}11221123/*1124 * Return a pointer to a ref_cache for the specified submodule. For1125 * the main repository, use submodule==NULL. The returned structure1126 * will be allocated and initialized but not necessarily populated; it1127 * should not be freed.1128 */1129static struct ref_cache *get_ref_cache(const char*submodule)1130{1131struct ref_cache *refs;11321133if(!submodule || !*submodule)1134return&ref_cache;11351136for(refs = submodule_ref_caches; refs; refs = refs->next)1137if(!strcmp(submodule, refs->name))1138return refs;11391140 refs =create_ref_cache(submodule);1141 refs->next = submodule_ref_caches;1142 submodule_ref_caches = refs;1143return refs;1144}11451146/* The length of a peeled reference line in packed-refs, including EOL: */1147#define PEELED_LINE_LENGTH 4211481149/*1150 * The packed-refs header line that we write out. Perhaps other1151 * traits will be added later. The trailing space is required.1152 */1153static const char PACKED_REFS_HEADER[] =1154"# pack-refs with: peeled fully-peeled\n";11551156/*1157 * Parse one line from a packed-refs file. Write the SHA1 to sha1.1158 * Return a pointer to the refname within the line (null-terminated),1159 * or NULL if there was a problem.1160 */1161static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1)1162{1163const char*ref;11641165/*1166 * 42: the answer to everything.1167 *1168 * In this case, it happens to be the answer to1169 * 40 (length of sha1 hex representation)1170 * +1 (space in between hex and name)1171 * +1 (newline at the end of the line)1172 */1173if(line->len <=42)1174return NULL;11751176if(get_sha1_hex(line->buf, sha1) <0)1177return NULL;1178if(!isspace(line->buf[40]))1179return NULL;11801181 ref = line->buf +41;1182if(isspace(*ref))1183return NULL;11841185if(line->buf[line->len -1] !='\n')1186return NULL;1187 line->buf[--line->len] =0;11881189return ref;1190}11911192/*1193 * Read f, which is a packed-refs file, into dir.1194 *1195 * A comment line of the form "# pack-refs with: " may contain zero or1196 * more traits. We interpret the traits as follows:1197 *1198 * No traits:1199 *1200 * Probably no references are peeled. But if the file contains a1201 * peeled value for a reference, we will use it.1202 *1203 * peeled:1204 *1205 * References under "refs/tags/", if they *can* be peeled, *are*1206 * peeled in this file. References outside of "refs/tags/" are1207 * probably not peeled even if they could have been, but if we find1208 * a peeled value for such a reference we will use it.1209 *1210 * fully-peeled:1211 *1212 * All references in the file that can be peeled are peeled.1213 * Inversely (and this is more important), any references in the1214 * file for which no peeled value is recorded is not peelable. This1215 * trait should typically be written alongside "peeled" for1216 * compatibility with older clients, but we do not require it1217 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1218 */1219static voidread_packed_refs(FILE*f,struct ref_dir *dir)1220{1221struct ref_entry *last = NULL;1222struct strbuf line = STRBUF_INIT;1223enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;12241225while(strbuf_getwholeline(&line, f,'\n') != EOF) {1226unsigned char sha1[20];1227const char*refname;1228const char*traits;12291230if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1231if(strstr(traits," fully-peeled "))1232 peeled = PEELED_FULLY;1233else if(strstr(traits," peeled "))1234 peeled = PEELED_TAGS;1235/* perhaps other traits later as well */1236continue;1237}12381239 refname =parse_ref_line(&line, sha1);1240if(refname) {1241int flag = REF_ISPACKED;12421243if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1244if(!refname_is_safe(refname))1245die("packed refname is dangerous:%s", refname);1246hashclr(sha1);1247 flag |= REF_BAD_NAME | REF_ISBROKEN;1248}1249 last =create_ref_entry(refname, sha1, flag,0);1250if(peeled == PEELED_FULLY ||1251(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1252 last->flag |= REF_KNOWS_PEELED;1253add_ref(dir, last);1254continue;1255}1256if(last &&1257 line.buf[0] =='^'&&1258 line.len == PEELED_LINE_LENGTH &&1259 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1260!get_sha1_hex(line.buf +1, sha1)) {1261hashcpy(last->u.value.peeled, sha1);1262/*1263 * Regardless of what the file header said,1264 * we definitely know the value of *this*1265 * reference:1266 */1267 last->flag |= REF_KNOWS_PEELED;1268}1269}12701271strbuf_release(&line);1272}12731274/*1275 * Get the packed_ref_cache for the specified ref_cache, creating it1276 * if necessary.1277 */1278static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)1279{1280const char*packed_refs_file;12811282if(*refs->name)1283 packed_refs_file =git_path_submodule(refs->name,"packed-refs");1284else1285 packed_refs_file =git_path("packed-refs");12861287if(refs->packed &&1288!stat_validity_check(&refs->packed->validity, packed_refs_file))1289clear_packed_ref_cache(refs);12901291if(!refs->packed) {1292FILE*f;12931294 refs->packed =xcalloc(1,sizeof(*refs->packed));1295acquire_packed_ref_cache(refs->packed);1296 refs->packed->root =create_dir_entry(refs,"",0,0);1297 f =fopen(packed_refs_file,"r");1298if(f) {1299stat_validity_update(&refs->packed->validity,fileno(f));1300read_packed_refs(f,get_ref_dir(refs->packed->root));1301fclose(f);1302}1303}1304return refs->packed;1305}13061307static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1308{1309returnget_ref_dir(packed_ref_cache->root);1310}13111312static struct ref_dir *get_packed_refs(struct ref_cache *refs)1313{1314returnget_packed_ref_dir(get_packed_ref_cache(refs));1315}13161317voidadd_packed_ref(const char*refname,const unsigned char*sha1)1318{1319struct packed_ref_cache *packed_ref_cache =1320get_packed_ref_cache(&ref_cache);13211322if(!packed_ref_cache->lock)1323die("internal error: packed refs not locked");1324add_ref(get_packed_ref_dir(packed_ref_cache),1325create_ref_entry(refname, sha1, REF_ISPACKED,1));1326}13271328/*1329 * Read the loose references from the namespace dirname into dir1330 * (without recursing). dirname must end with '/'. dir must be the1331 * directory entry corresponding to dirname.1332 */1333static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1334{1335struct ref_cache *refs = dir->ref_cache;1336DIR*d;1337const char*path;1338struct dirent *de;1339int dirnamelen =strlen(dirname);1340struct strbuf refname;13411342if(*refs->name)1343 path =git_path_submodule(refs->name,"%s", dirname);1344else1345 path =git_path("%s", dirname);13461347 d =opendir(path);1348if(!d)1349return;13501351strbuf_init(&refname, dirnamelen +257);1352strbuf_add(&refname, dirname, dirnamelen);13531354while((de =readdir(d)) != NULL) {1355unsigned char sha1[20];1356struct stat st;1357int flag;1358const char*refdir;13591360if(de->d_name[0] =='.')1361continue;1362if(ends_with(de->d_name,".lock"))1363continue;1364strbuf_addstr(&refname, de->d_name);1365 refdir = *refs->name1366?git_path_submodule(refs->name,"%s", refname.buf)1367:git_path("%s", refname.buf);1368if(stat(refdir, &st) <0) {1369;/* silently ignore */1370}else if(S_ISDIR(st.st_mode)) {1371strbuf_addch(&refname,'/');1372add_entry_to_dir(dir,1373create_dir_entry(refs, refname.buf,1374 refname.len,1));1375}else{1376if(*refs->name) {1377hashclr(sha1);1378 flag =0;1379if(resolve_gitlink_ref(refs->name, refname.buf, sha1) <0) {1380hashclr(sha1);1381 flag |= REF_ISBROKEN;1382}1383}else if(read_ref_full(refname.buf,1384 RESOLVE_REF_READING,1385 sha1, &flag)) {1386hashclr(sha1);1387 flag |= REF_ISBROKEN;1388}1389if(check_refname_format(refname.buf,1390 REFNAME_ALLOW_ONELEVEL)) {1391if(!refname_is_safe(refname.buf))1392die("loose refname is dangerous:%s", refname.buf);1393hashclr(sha1);1394 flag |= REF_BAD_NAME | REF_ISBROKEN;1395}1396add_entry_to_dir(dir,1397create_ref_entry(refname.buf, sha1, flag,0));1398}1399strbuf_setlen(&refname, dirnamelen);1400}1401strbuf_release(&refname);1402closedir(d);1403}14041405static struct ref_dir *get_loose_refs(struct ref_cache *refs)1406{1407if(!refs->loose) {1408/*1409 * Mark the top-level directory complete because we1410 * are about to read the only subdirectory that can1411 * hold references:1412 */1413 refs->loose =create_dir_entry(refs,"",0,0);1414/*1415 * Create an incomplete entry for "refs/":1416 */1417add_entry_to_dir(get_ref_dir(refs->loose),1418create_dir_entry(refs,"refs/",5,1));1419}1420returnget_ref_dir(refs->loose);1421}14221423/* We allow "recursive" symbolic refs. Only within reason, though */1424#define MAXDEPTH 51425#define MAXREFLEN (1024)14261427/*1428 * Called by resolve_gitlink_ref_recursive() after it failed to read1429 * from the loose refs in ref_cache refs. Find <refname> in the1430 * packed-refs file for the submodule.1431 */1432static intresolve_gitlink_packed_ref(struct ref_cache *refs,1433const char*refname,unsigned char*sha1)1434{1435struct ref_entry *ref;1436struct ref_dir *dir =get_packed_refs(refs);14371438 ref =find_ref(dir, refname);1439if(ref == NULL)1440return-1;14411442hashcpy(sha1, ref->u.value.sha1);1443return0;1444}14451446static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1447const char*refname,unsigned char*sha1,1448int recursion)1449{1450int fd, len;1451char buffer[128], *p;1452const char*path;14531454if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1455return-1;1456 path = *refs->name1457?git_path_submodule(refs->name,"%s", refname)1458:git_path("%s", refname);1459 fd =open(path, O_RDONLY);1460if(fd <0)1461returnresolve_gitlink_packed_ref(refs, refname, sha1);14621463 len =read(fd, buffer,sizeof(buffer)-1);1464close(fd);1465if(len <0)1466return-1;1467while(len &&isspace(buffer[len-1]))1468 len--;1469 buffer[len] =0;14701471/* Was it a detached head or an old-fashioned symlink? */1472if(!get_sha1_hex(buffer, sha1))1473return0;14741475/* Symref? */1476if(strncmp(buffer,"ref:",4))1477return-1;1478 p = buffer +4;1479while(isspace(*p))1480 p++;14811482returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1483}14841485intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1486{1487int len =strlen(path), retval;1488char*submodule;1489struct ref_cache *refs;14901491while(len && path[len-1] =='/')1492 len--;1493if(!len)1494return-1;1495 submodule =xstrndup(path, len);1496 refs =get_ref_cache(submodule);1497free(submodule);14981499 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1500return retval;1501}15021503/*1504 * Return the ref_entry for the given refname from the packed1505 * references. If it does not exist, return NULL.1506 */1507static struct ref_entry *get_packed_ref(const char*refname)1508{1509returnfind_ref(get_packed_refs(&ref_cache), refname);1510}15111512/*1513 * A loose ref file doesn't exist; check for a packed ref. The1514 * options are forwarded from resolve_safe_unsafe().1515 */1516static intresolve_missing_loose_ref(const char*refname,1517int resolve_flags,1518unsigned char*sha1,1519int*flags)1520{1521struct ref_entry *entry;15221523/*1524 * The loose reference file does not exist; check for a packed1525 * reference.1526 */1527 entry =get_packed_ref(refname);1528if(entry) {1529hashcpy(sha1, entry->u.value.sha1);1530if(flags)1531*flags |= REF_ISPACKED;1532return0;1533}1534/* The reference is not a packed reference, either. */1535if(resolve_flags & RESOLVE_REF_READING) {1536 errno = ENOENT;1537return-1;1538}else{1539hashclr(sha1);1540return0;1541}1542}15431544/* This function needs to return a meaningful errno on failure */1545static const char*resolve_ref_unsafe_1(const char*refname,1546int resolve_flags,1547unsigned char*sha1,1548int*flags,1549struct strbuf *sb_path)1550{1551int depth = MAXDEPTH;1552 ssize_t len;1553char buffer[256];1554static char refname_buffer[256];1555int bad_name =0;15561557if(flags)1558*flags =0;15591560if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1561if(flags)1562*flags |= REF_BAD_NAME;15631564if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1565!refname_is_safe(refname)) {1566 errno = EINVAL;1567return NULL;1568}1569/*1570 * dwim_ref() uses REF_ISBROKEN to distinguish between1571 * missing refs and refs that were present but invalid,1572 * to complain about the latter to stderr.1573 *1574 * We don't know whether the ref exists, so don't set1575 * REF_ISBROKEN yet.1576 */1577 bad_name =1;1578}1579for(;;) {1580const char*path;1581struct stat st;1582char*buf;1583int fd;15841585if(--depth <0) {1586 errno = ELOOP;1587return NULL;1588}15891590strbuf_reset(sb_path);1591strbuf_git_path(sb_path,"%s", refname);1592 path = sb_path->buf;15931594/*1595 * We might have to loop back here to avoid a race1596 * condition: first we lstat() the file, then we try1597 * to read it as a link or as a file. But if somebody1598 * changes the type of the file (file <-> directory1599 * <-> symlink) between the lstat() and reading, then1600 * we don't want to report that as an error but rather1601 * try again starting with the lstat().1602 */1603 stat_ref:1604if(lstat(path, &st) <0) {1605if(errno != ENOENT)1606return NULL;1607if(resolve_missing_loose_ref(refname, resolve_flags,1608 sha1, flags))1609return NULL;1610if(bad_name) {1611hashclr(sha1);1612if(flags)1613*flags |= REF_ISBROKEN;1614}1615return refname;1616}16171618/* Follow "normalized" - ie "refs/.." symlinks by hand */1619if(S_ISLNK(st.st_mode)) {1620 len =readlink(path, buffer,sizeof(buffer)-1);1621if(len <0) {1622if(errno == ENOENT || errno == EINVAL)1623/* inconsistent with lstat; retry */1624goto stat_ref;1625else1626return NULL;1627}1628 buffer[len] =0;1629if(starts_with(buffer,"refs/") &&1630!check_refname_format(buffer,0)) {1631strcpy(refname_buffer, buffer);1632 refname = refname_buffer;1633if(flags)1634*flags |= REF_ISSYMREF;1635if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1636hashclr(sha1);1637return refname;1638}1639continue;1640}1641}16421643/* Is it a directory? */1644if(S_ISDIR(st.st_mode)) {1645 errno = EISDIR;1646return NULL;1647}16481649/*1650 * Anything else, just open it and try to use it as1651 * a ref1652 */1653 fd =open(path, O_RDONLY);1654if(fd <0) {1655if(errno == ENOENT)1656/* inconsistent with lstat; retry */1657goto stat_ref;1658else1659return NULL;1660}1661 len =read_in_full(fd, buffer,sizeof(buffer)-1);1662if(len <0) {1663int save_errno = errno;1664close(fd);1665 errno = save_errno;1666return NULL;1667}1668close(fd);1669while(len &&isspace(buffer[len-1]))1670 len--;1671 buffer[len] ='\0';16721673/*1674 * Is it a symbolic ref?1675 */1676if(!starts_with(buffer,"ref:")) {1677/*1678 * Please note that FETCH_HEAD has a second1679 * line containing other data.1680 */1681if(get_sha1_hex(buffer, sha1) ||1682(buffer[40] !='\0'&& !isspace(buffer[40]))) {1683if(flags)1684*flags |= REF_ISBROKEN;1685 errno = EINVAL;1686return NULL;1687}1688if(bad_name) {1689hashclr(sha1);1690if(flags)1691*flags |= REF_ISBROKEN;1692}1693return refname;1694}1695if(flags)1696*flags |= REF_ISSYMREF;1697 buf = buffer +4;1698while(isspace(*buf))1699 buf++;1700 refname =strcpy(refname_buffer, buf);1701if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1702hashclr(sha1);1703return refname;1704}1705if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1706if(flags)1707*flags |= REF_ISBROKEN;17081709if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1710!refname_is_safe(buf)) {1711 errno = EINVAL;1712return NULL;1713}1714 bad_name =1;1715}1716}1717}17181719const char*resolve_ref_unsafe(const char*refname,int resolve_flags,1720unsigned char*sha1,int*flags)1721{1722struct strbuf sb_path = STRBUF_INIT;1723const char*ret =resolve_ref_unsafe_1(refname, resolve_flags,1724 sha1, flags, &sb_path);1725strbuf_release(&sb_path);1726return ret;1727}17281729char*resolve_refdup(const char*ref,int resolve_flags,unsigned char*sha1,int*flags)1730{1731returnxstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));1732}17331734/* The argument to filter_refs */1735struct ref_filter {1736const char*pattern;1737 each_ref_fn *fn;1738void*cb_data;1739};17401741intread_ref_full(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1742{1743if(resolve_ref_unsafe(refname, resolve_flags, sha1, flags))1744return0;1745return-1;1746}17471748intread_ref(const char*refname,unsigned char*sha1)1749{1750returnread_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);1751}17521753intref_exists(const char*refname)1754{1755unsigned char sha1[20];1756return!!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);1757}17581759static intfilter_refs(const char*refname,const unsigned char*sha1,int flags,1760void*data)1761{1762struct ref_filter *filter = (struct ref_filter *)data;1763if(wildmatch(filter->pattern, refname,0, NULL))1764return0;1765return filter->fn(refname, sha1, flags, filter->cb_data);1766}17671768enum peel_status {1769/* object was peeled successfully: */1770 PEEL_PEELED =0,17711772/*1773 * object cannot be peeled because the named object (or an1774 * object referred to by a tag in the peel chain), does not1775 * exist.1776 */1777 PEEL_INVALID = -1,17781779/* object cannot be peeled because it is not a tag: */1780 PEEL_NON_TAG = -2,17811782/* ref_entry contains no peeled value because it is a symref: */1783 PEEL_IS_SYMREF = -3,17841785/*1786 * ref_entry cannot be peeled because it is broken (i.e., the1787 * symbolic reference cannot even be resolved to an object1788 * name):1789 */1790 PEEL_BROKEN = -41791};17921793/*1794 * Peel the named object; i.e., if the object is a tag, resolve the1795 * tag recursively until a non-tag is found. If successful, store the1796 * result to sha1 and return PEEL_PEELED. If the object is not a tag1797 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,1798 * and leave sha1 unchanged.1799 */1800static enum peel_status peel_object(const unsigned char*name,unsigned char*sha1)1801{1802struct object *o =lookup_unknown_object(name);18031804if(o->type == OBJ_NONE) {1805int type =sha1_object_info(name, NULL);1806if(type <0|| !object_as_type(o, type,0))1807return PEEL_INVALID;1808}18091810if(o->type != OBJ_TAG)1811return PEEL_NON_TAG;18121813 o =deref_tag_noverify(o);1814if(!o)1815return PEEL_INVALID;18161817hashcpy(sha1, o->sha1);1818return PEEL_PEELED;1819}18201821/*1822 * Peel the entry (if possible) and return its new peel_status. If1823 * repeel is true, re-peel the entry even if there is an old peeled1824 * value that is already stored in it.1825 *1826 * It is OK to call this function with a packed reference entry that1827 * might be stale and might even refer to an object that has since1828 * been garbage-collected. In such a case, if the entry has1829 * REF_KNOWS_PEELED then leave the status unchanged and return1830 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1831 */1832static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1833{1834enum peel_status status;18351836if(entry->flag & REF_KNOWS_PEELED) {1837if(repeel) {1838 entry->flag &= ~REF_KNOWS_PEELED;1839hashclr(entry->u.value.peeled);1840}else{1841returnis_null_sha1(entry->u.value.peeled) ?1842 PEEL_NON_TAG : PEEL_PEELED;1843}1844}1845if(entry->flag & REF_ISBROKEN)1846return PEEL_BROKEN;1847if(entry->flag & REF_ISSYMREF)1848return PEEL_IS_SYMREF;18491850 status =peel_object(entry->u.value.sha1, entry->u.value.peeled);1851if(status == PEEL_PEELED || status == PEEL_NON_TAG)1852 entry->flag |= REF_KNOWS_PEELED;1853return status;1854}18551856intpeel_ref(const char*refname,unsigned char*sha1)1857{1858int flag;1859unsigned char base[20];18601861if(current_ref && (current_ref->name == refname1862|| !strcmp(current_ref->name, refname))) {1863if(peel_entry(current_ref,0))1864return-1;1865hashcpy(sha1, current_ref->u.value.peeled);1866return0;1867}18681869if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1870return-1;18711872/*1873 * If the reference is packed, read its ref_entry from the1874 * cache in the hope that we already know its peeled value.1875 * We only try this optimization on packed references because1876 * (a) forcing the filling of the loose reference cache could1877 * be expensive and (b) loose references anyway usually do not1878 * have REF_KNOWS_PEELED.1879 */1880if(flag & REF_ISPACKED) {1881struct ref_entry *r =get_packed_ref(refname);1882if(r) {1883if(peel_entry(r,0))1884return-1;1885hashcpy(sha1, r->u.value.peeled);1886return0;1887}1888}18891890returnpeel_object(base, sha1);1891}18921893struct warn_if_dangling_data {1894FILE*fp;1895const char*refname;1896const struct string_list *refnames;1897const char*msg_fmt;1898};18991900static intwarn_if_dangling_symref(const char*refname,const unsigned char*sha1,1901int flags,void*cb_data)1902{1903struct warn_if_dangling_data *d = cb_data;1904const char*resolves_to;1905unsigned char junk[20];19061907if(!(flags & REF_ISSYMREF))1908return0;19091910 resolves_to =resolve_ref_unsafe(refname,0, junk, NULL);1911if(!resolves_to1912|| (d->refname1913?strcmp(resolves_to, d->refname)1914: !string_list_has_string(d->refnames, resolves_to))) {1915return0;1916}19171918fprintf(d->fp, d->msg_fmt, refname);1919fputc('\n', d->fp);1920return0;1921}19221923voidwarn_dangling_symref(FILE*fp,const char*msg_fmt,const char*refname)1924{1925struct warn_if_dangling_data data;19261927 data.fp = fp;1928 data.refname = refname;1929 data.refnames = NULL;1930 data.msg_fmt = msg_fmt;1931for_each_rawref(warn_if_dangling_symref, &data);1932}19331934voidwarn_dangling_symrefs(FILE*fp,const char*msg_fmt,const struct string_list *refnames)1935{1936struct warn_if_dangling_data data;19371938 data.fp = fp;1939 data.refname = NULL;1940 data.refnames = refnames;1941 data.msg_fmt = msg_fmt;1942for_each_rawref(warn_if_dangling_symref, &data);1943}19441945/*1946 * Call fn for each reference in the specified ref_cache, omitting1947 * references not in the containing_dir of base. fn is called for all1948 * references, including broken ones. If fn ever returns a non-zero1949 * value, stop the iteration and return that value; otherwise, return1950 * 0.1951 */1952static intdo_for_each_entry(struct ref_cache *refs,const char*base,1953 each_ref_entry_fn fn,void*cb_data)1954{1955struct packed_ref_cache *packed_ref_cache;1956struct ref_dir *loose_dir;1957struct ref_dir *packed_dir;1958int retval =0;19591960/*1961 * We must make sure that all loose refs are read before accessing the1962 * packed-refs file; this avoids a race condition in which loose refs1963 * are migrated to the packed-refs file by a simultaneous process, but1964 * our in-memory view is from before the migration. get_packed_ref_cache()1965 * takes care of making sure our view is up to date with what is on1966 * disk.1967 */1968 loose_dir =get_loose_refs(refs);1969if(base && *base) {1970 loose_dir =find_containing_dir(loose_dir, base,0);1971}1972if(loose_dir)1973prime_ref_dir(loose_dir);19741975 packed_ref_cache =get_packed_ref_cache(refs);1976acquire_packed_ref_cache(packed_ref_cache);1977 packed_dir =get_packed_ref_dir(packed_ref_cache);1978if(base && *base) {1979 packed_dir =find_containing_dir(packed_dir, base,0);1980}19811982if(packed_dir && loose_dir) {1983sort_ref_dir(packed_dir);1984sort_ref_dir(loose_dir);1985 retval =do_for_each_entry_in_dirs(1986 packed_dir, loose_dir, fn, cb_data);1987}else if(packed_dir) {1988sort_ref_dir(packed_dir);1989 retval =do_for_each_entry_in_dir(1990 packed_dir,0, fn, cb_data);1991}else if(loose_dir) {1992sort_ref_dir(loose_dir);1993 retval =do_for_each_entry_in_dir(1994 loose_dir,0, fn, cb_data);1995}19961997release_packed_ref_cache(packed_ref_cache);1998return retval;1999}20002001/*2002 * Call fn for each reference in the specified ref_cache for which the2003 * refname begins with base. If trim is non-zero, then trim that many2004 * characters off the beginning of each refname before passing the2005 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include2006 * broken references in the iteration. If fn ever returns a non-zero2007 * value, stop the iteration and return that value; otherwise, return2008 * 0.2009 */2010static intdo_for_each_ref(struct ref_cache *refs,const char*base,2011 each_ref_fn fn,int trim,int flags,void*cb_data)2012{2013struct ref_entry_cb data;2014 data.base = base;2015 data.trim = trim;2016 data.flags = flags;2017 data.fn = fn;2018 data.cb_data = cb_data;20192020if(ref_paranoia <0)2021 ref_paranoia =git_env_bool("GIT_REF_PARANOIA",0);2022if(ref_paranoia)2023 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;20242025returndo_for_each_entry(refs, base, do_one_ref, &data);2026}20272028static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)2029{2030unsigned char sha1[20];2031int flag;20322033if(submodule) {2034if(resolve_gitlink_ref(submodule,"HEAD", sha1) ==0)2035returnfn("HEAD", sha1,0, cb_data);20362037return0;2038}20392040if(!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))2041returnfn("HEAD", sha1, flag, cb_data);20422043return0;2044}20452046inthead_ref(each_ref_fn fn,void*cb_data)2047{2048returndo_head_ref(NULL, fn, cb_data);2049}20502051inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2052{2053returndo_head_ref(submodule, fn, cb_data);2054}20552056intfor_each_ref(each_ref_fn fn,void*cb_data)2057{2058returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);2059}20602061intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2062{2063returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);2064}20652066intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)2067{2068returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);2069}20702071intfor_each_ref_in_submodule(const char*submodule,const char*prefix,2072 each_ref_fn fn,void*cb_data)2073{2074returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);2075}20762077intfor_each_tag_ref(each_ref_fn fn,void*cb_data)2078{2079returnfor_each_ref_in("refs/tags/", fn, cb_data);2080}20812082intfor_each_tag_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2083{2084returnfor_each_ref_in_submodule(submodule,"refs/tags/", fn, cb_data);2085}20862087intfor_each_branch_ref(each_ref_fn fn,void*cb_data)2088{2089returnfor_each_ref_in("refs/heads/", fn, cb_data);2090}20912092intfor_each_branch_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2093{2094returnfor_each_ref_in_submodule(submodule,"refs/heads/", fn, cb_data);2095}20962097intfor_each_remote_ref(each_ref_fn fn,void*cb_data)2098{2099returnfor_each_ref_in("refs/remotes/", fn, cb_data);2100}21012102intfor_each_remote_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2103{2104returnfor_each_ref_in_submodule(submodule,"refs/remotes/", fn, cb_data);2105}21062107intfor_each_replace_ref(each_ref_fn fn,void*cb_data)2108{2109returndo_for_each_ref(&ref_cache,"refs/replace/", fn,13,0, cb_data);2110}21112112inthead_ref_namespaced(each_ref_fn fn,void*cb_data)2113{2114struct strbuf buf = STRBUF_INIT;2115int ret =0;2116unsigned char sha1[20];2117int flag;21182119strbuf_addf(&buf,"%sHEAD",get_git_namespace());2120if(!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))2121 ret =fn(buf.buf, sha1, flag, cb_data);2122strbuf_release(&buf);21232124return ret;2125}21262127intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)2128{2129struct strbuf buf = STRBUF_INIT;2130int ret;2131strbuf_addf(&buf,"%srefs/",get_git_namespace());2132 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);2133strbuf_release(&buf);2134return ret;2135}21362137intfor_each_glob_ref_in(each_ref_fn fn,const char*pattern,2138const char*prefix,void*cb_data)2139{2140struct strbuf real_pattern = STRBUF_INIT;2141struct ref_filter filter;2142int ret;21432144if(!prefix && !starts_with(pattern,"refs/"))2145strbuf_addstr(&real_pattern,"refs/");2146else if(prefix)2147strbuf_addstr(&real_pattern, prefix);2148strbuf_addstr(&real_pattern, pattern);21492150if(!has_glob_specials(pattern)) {2151/* Append implied '/' '*' if not present. */2152if(real_pattern.buf[real_pattern.len -1] !='/')2153strbuf_addch(&real_pattern,'/');2154/* No need to check for '*', there is none. */2155strbuf_addch(&real_pattern,'*');2156}21572158 filter.pattern = real_pattern.buf;2159 filter.fn = fn;2160 filter.cb_data = cb_data;2161 ret =for_each_ref(filter_refs, &filter);21622163strbuf_release(&real_pattern);2164return ret;2165}21662167intfor_each_glob_ref(each_ref_fn fn,const char*pattern,void*cb_data)2168{2169returnfor_each_glob_ref_in(fn, pattern, NULL, cb_data);2170}21712172intfor_each_rawref(each_ref_fn fn,void*cb_data)2173{2174returndo_for_each_ref(&ref_cache,"", fn,0,2175 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);2176}21772178const char*prettify_refname(const char*name)2179{2180return name + (2181starts_with(name,"refs/heads/") ?11:2182starts_with(name,"refs/tags/") ?10:2183starts_with(name,"refs/remotes/") ?13:21840);2185}21862187static const char*ref_rev_parse_rules[] = {2188"%.*s",2189"refs/%.*s",2190"refs/tags/%.*s",2191"refs/heads/%.*s",2192"refs/remotes/%.*s",2193"refs/remotes/%.*s/HEAD",2194 NULL2195};21962197intrefname_match(const char*abbrev_name,const char*full_name)2198{2199const char**p;2200const int abbrev_name_len =strlen(abbrev_name);22012202for(p = ref_rev_parse_rules; *p; p++) {2203if(!strcmp(full_name,mkpath(*p, abbrev_name_len, abbrev_name))) {2204return1;2205}2206}22072208return0;2209}22102211static voidunlock_ref(struct ref_lock *lock)2212{2213/* Do not free lock->lk -- atexit() still looks at them */2214if(lock->lk)2215rollback_lock_file(lock->lk);2216free(lock->ref_name);2217free(lock->orig_ref_name);2218free(lock);2219}22202221/*2222 * Verify that the reference locked by lock has the value old_sha1.2223 * Fail if the reference doesn't exist and mustexist is set. Return 02224 * on success. On error, write an error message to err, set errno, and2225 * return a negative value.2226 */2227static intverify_lock(struct ref_lock *lock,2228const unsigned char*old_sha1,int mustexist,2229struct strbuf *err)2230{2231assert(err);22322233if(read_ref_full(lock->ref_name,2234 mustexist ? RESOLVE_REF_READING :0,2235 lock->old_sha1, NULL)) {2236int save_errno = errno;2237strbuf_addf(err,"Can't verify ref%s", lock->ref_name);2238 errno = save_errno;2239return-1;2240}2241if(hashcmp(lock->old_sha1, old_sha1)) {2242strbuf_addf(err,"Ref%sis at%sbut expected%s",2243 lock->ref_name,2244sha1_to_hex(lock->old_sha1),2245sha1_to_hex(old_sha1));2246 errno = EBUSY;2247return-1;2248}2249return0;2250}22512252static intremove_empty_directories(const char*file)2253{2254/* we want to create a file but there is a directory there;2255 * if that is an empty directory (or a directory that contains2256 * only empty directories), remove them.2257 */2258struct strbuf path;2259int result, save_errno;22602261strbuf_init(&path,20);2262strbuf_addstr(&path, file);22632264 result =remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);2265 save_errno = errno;22662267strbuf_release(&path);2268 errno = save_errno;22692270return result;2271}22722273/*2274 * *string and *len will only be substituted, and *string returned (for2275 * later free()ing) if the string passed in is a magic short-hand form2276 * to name a branch.2277 */2278static char*substitute_branch_name(const char**string,int*len)2279{2280struct strbuf buf = STRBUF_INIT;2281int ret =interpret_branch_name(*string, *len, &buf);22822283if(ret == *len) {2284size_t size;2285*string =strbuf_detach(&buf, &size);2286*len = size;2287return(char*)*string;2288}22892290return NULL;2291}22922293intdwim_ref(const char*str,int len,unsigned char*sha1,char**ref)2294{2295char*last_branch =substitute_branch_name(&str, &len);2296const char**p, *r;2297int refs_found =0;22982299*ref = NULL;2300for(p = ref_rev_parse_rules; *p; p++) {2301char fullref[PATH_MAX];2302unsigned char sha1_from_ref[20];2303unsigned char*this_result;2304int flag;23052306 this_result = refs_found ? sha1_from_ref : sha1;2307mksnpath(fullref,sizeof(fullref), *p, len, str);2308 r =resolve_ref_unsafe(fullref, RESOLVE_REF_READING,2309 this_result, &flag);2310if(r) {2311if(!refs_found++)2312*ref =xstrdup(r);2313if(!warn_ambiguous_refs)2314break;2315}else if((flag & REF_ISSYMREF) &&strcmp(fullref,"HEAD")) {2316warning("ignoring dangling symref%s.", fullref);2317}else if((flag & REF_ISBROKEN) &&strchr(fullref,'/')) {2318warning("ignoring broken ref%s.", fullref);2319}2320}2321free(last_branch);2322return refs_found;2323}23242325intdwim_log(const char*str,int len,unsigned char*sha1,char**log)2326{2327char*last_branch =substitute_branch_name(&str, &len);2328const char**p;2329int logs_found =0;23302331*log = NULL;2332for(p = ref_rev_parse_rules; *p; p++) {2333unsigned char hash[20];2334char path[PATH_MAX];2335const char*ref, *it;23362337mksnpath(path,sizeof(path), *p, len, str);2338 ref =resolve_ref_unsafe(path, RESOLVE_REF_READING,2339 hash, NULL);2340if(!ref)2341continue;2342if(reflog_exists(path))2343 it = path;2344else if(strcmp(ref, path) &&reflog_exists(ref))2345 it = ref;2346else2347continue;2348if(!logs_found++) {2349*log =xstrdup(it);2350hashcpy(sha1, hash);2351}2352if(!warn_ambiguous_refs)2353break;2354}2355free(last_branch);2356return logs_found;2357}23582359/*2360 * Locks a ref returning the lock on success and NULL on failure.2361 * On failure errno is set to something meaningful.2362 */2363static struct ref_lock *lock_ref_sha1_basic(const char*refname,2364const unsigned char*old_sha1,2365const struct string_list *extras,2366const struct string_list *skip,2367unsigned int flags,int*type_p,2368struct strbuf *err)2369{2370const char*ref_file;2371const char*orig_refname = refname;2372struct ref_lock *lock;2373int last_errno =0;2374int type, lflags;2375int mustexist = (old_sha1 && !is_null_sha1(old_sha1));2376int resolve_flags =0;2377int attempts_remaining =3;23782379assert(err);23802381 lock =xcalloc(1,sizeof(struct ref_lock));23822383if(mustexist)2384 resolve_flags |= RESOLVE_REF_READING;2385if(flags & REF_DELETING) {2386 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;2387if(flags & REF_NODEREF)2388 resolve_flags |= RESOLVE_REF_NO_RECURSE;2389}23902391 refname =resolve_ref_unsafe(refname, resolve_flags,2392 lock->old_sha1, &type);2393if(!refname && errno == EISDIR) {2394/* we are trying to lock foo but we used to2395 * have foo/bar which now does not exist;2396 * it is normal for the empty directory 'foo'2397 * to remain.2398 */2399 ref_file =git_path("%s", orig_refname);2400if(remove_empty_directories(ref_file)) {2401 last_errno = errno;24022403if(!verify_refname_available(orig_refname, extras, skip,2404get_loose_refs(&ref_cache), err))2405strbuf_addf(err,"there are still refs under '%s'",2406 orig_refname);24072408goto error_return;2409}2410 refname =resolve_ref_unsafe(orig_refname, resolve_flags,2411 lock->old_sha1, &type);2412}2413if(type_p)2414*type_p = type;2415if(!refname) {2416 last_errno = errno;2417if(last_errno != ENOTDIR ||2418!verify_refname_available(orig_refname, extras, skip,2419get_loose_refs(&ref_cache), err))2420strbuf_addf(err,"unable to resolve reference%s:%s",2421 orig_refname,strerror(last_errno));24222423goto error_return;2424}2425/*2426 * If the ref did not exist and we are creating it, make sure2427 * there is no existing packed ref whose name begins with our2428 * refname, nor a packed ref whose name is a proper prefix of2429 * our refname.2430 */2431if(is_null_sha1(lock->old_sha1) &&2432verify_refname_available(refname, extras, skip,2433get_packed_refs(&ref_cache), err)) {2434 last_errno = ENOTDIR;2435goto error_return;2436}24372438 lock->lk =xcalloc(1,sizeof(struct lock_file));24392440 lflags =0;2441if(flags & REF_NODEREF) {2442 refname = orig_refname;2443 lflags |= LOCK_NO_DEREF;2444}2445 lock->ref_name =xstrdup(refname);2446 lock->orig_ref_name =xstrdup(orig_refname);2447 ref_file =git_path("%s", refname);24482449 retry:2450switch(safe_create_leading_directories_const(ref_file)) {2451case SCLD_OK:2452break;/* success */2453case SCLD_VANISHED:2454if(--attempts_remaining >0)2455goto retry;2456/* fall through */2457default:2458 last_errno = errno;2459strbuf_addf(err,"unable to create directory for%s", ref_file);2460goto error_return;2461}24622463if(hold_lock_file_for_update(lock->lk, ref_file, lflags) <0) {2464 last_errno = errno;2465if(errno == ENOENT && --attempts_remaining >0)2466/*2467 * Maybe somebody just deleted one of the2468 * directories leading to ref_file. Try2469 * again:2470 */2471goto retry;2472else{2473unable_to_lock_message(ref_file, errno, err);2474goto error_return;2475}2476}2477if(old_sha1 &&verify_lock(lock, old_sha1, mustexist, err)) {2478 last_errno = errno;2479goto error_return;2480}2481return lock;24822483 error_return:2484unlock_ref(lock);2485 errno = last_errno;2486return NULL;2487}24882489/*2490 * Write an entry to the packed-refs file for the specified refname.2491 * If peeled is non-NULL, write it as the entry's peeled value.2492 */2493static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2494unsigned char*peeled)2495{2496fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2497if(peeled)2498fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2499}25002501/*2502 * An each_ref_entry_fn that writes the entry to a packed-refs file.2503 */2504static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2505{2506enum peel_status peel_status =peel_entry(entry,0);25072508if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2509error("internal error:%sis not a valid packed reference!",2510 entry->name);2511write_packed_entry(cb_data, entry->name, entry->u.value.sha1,2512 peel_status == PEEL_PEELED ?2513 entry->u.value.peeled : NULL);2514return0;2515}25162517/* This should return a meaningful errno on failure */2518intlock_packed_refs(int flags)2519{2520static int timeout_configured =0;2521static int timeout_value =1000;25222523struct packed_ref_cache *packed_ref_cache;25242525if(!timeout_configured) {2526git_config_get_int("core.packedrefstimeout", &timeout_value);2527 timeout_configured =1;2528}25292530if(hold_lock_file_for_update_timeout(2531&packlock,git_path("packed-refs"),2532 flags, timeout_value) <0)2533return-1;2534/*2535 * Get the current packed-refs while holding the lock. If the2536 * packed-refs file has been modified since we last read it,2537 * this will automatically invalidate the cache and re-read2538 * the packed-refs file.2539 */2540 packed_ref_cache =get_packed_ref_cache(&ref_cache);2541 packed_ref_cache->lock = &packlock;2542/* Increment the reference count to prevent it from being freed: */2543acquire_packed_ref_cache(packed_ref_cache);2544return0;2545}25462547/*2548 * Commit the packed refs changes.2549 * On error we must make sure that errno contains a meaningful value.2550 */2551intcommit_packed_refs(void)2552{2553struct packed_ref_cache *packed_ref_cache =2554get_packed_ref_cache(&ref_cache);2555int error =0;2556int save_errno =0;2557FILE*out;25582559if(!packed_ref_cache->lock)2560die("internal error: packed-refs not locked");25612562 out =fdopen_lock_file(packed_ref_cache->lock,"w");2563if(!out)2564die_errno("unable to fdopen packed-refs descriptor");25652566fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2567do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),25680, write_packed_entry_fn, out);25692570if(commit_lock_file(packed_ref_cache->lock)) {2571 save_errno = errno;2572 error = -1;2573}2574 packed_ref_cache->lock = NULL;2575release_packed_ref_cache(packed_ref_cache);2576 errno = save_errno;2577return error;2578}25792580voidrollback_packed_refs(void)2581{2582struct packed_ref_cache *packed_ref_cache =2583get_packed_ref_cache(&ref_cache);25842585if(!packed_ref_cache->lock)2586die("internal error: packed-refs not locked");2587rollback_lock_file(packed_ref_cache->lock);2588 packed_ref_cache->lock = NULL;2589release_packed_ref_cache(packed_ref_cache);2590clear_packed_ref_cache(&ref_cache);2591}25922593struct ref_to_prune {2594struct ref_to_prune *next;2595unsigned char sha1[20];2596char name[FLEX_ARRAY];2597};25982599struct pack_refs_cb_data {2600unsigned int flags;2601struct ref_dir *packed_refs;2602struct ref_to_prune *ref_to_prune;2603};26042605/*2606 * An each_ref_entry_fn that is run over loose references only. If2607 * the loose reference can be packed, add an entry in the packed ref2608 * cache. If the reference should be pruned, also add it to2609 * ref_to_prune in the pack_refs_cb_data.2610 */2611static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2612{2613struct pack_refs_cb_data *cb = cb_data;2614enum peel_status peel_status;2615struct ref_entry *packed_entry;2616int is_tag_ref =starts_with(entry->name,"refs/tags/");26172618/* ALWAYS pack tags */2619if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2620return0;26212622/* Do not pack symbolic or broken refs: */2623if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2624return0;26252626/* Add a packed ref cache entry equivalent to the loose entry. */2627 peel_status =peel_entry(entry,1);2628if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2629die("internal error peeling reference%s(%s)",2630 entry->name,sha1_to_hex(entry->u.value.sha1));2631 packed_entry =find_ref(cb->packed_refs, entry->name);2632if(packed_entry) {2633/* Overwrite existing packed entry with info from loose entry */2634 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2635hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);2636}else{2637 packed_entry =create_ref_entry(entry->name, entry->u.value.sha1,2638 REF_ISPACKED | REF_KNOWS_PEELED,0);2639add_ref(cb->packed_refs, packed_entry);2640}2641hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);26422643/* Schedule the loose reference for pruning if requested. */2644if((cb->flags & PACK_REFS_PRUNE)) {2645int namelen =strlen(entry->name) +1;2646struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2647hashcpy(n->sha1, entry->u.value.sha1);2648strcpy(n->name, entry->name);2649 n->next = cb->ref_to_prune;2650 cb->ref_to_prune = n;2651}2652return0;2653}26542655/*2656 * Remove empty parents, but spare refs/ and immediate subdirs.2657 * Note: munges *name.2658 */2659static voidtry_remove_empty_parents(char*name)2660{2661char*p, *q;2662int i;2663 p = name;2664for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2665while(*p && *p !='/')2666 p++;2667/* tolerate duplicate slashes; see check_refname_format() */2668while(*p =='/')2669 p++;2670}2671for(q = p; *q; q++)2672;2673while(1) {2674while(q > p && *q !='/')2675 q--;2676while(q > p && *(q-1) =='/')2677 q--;2678if(q == p)2679break;2680*q ='\0';2681if(rmdir(git_path("%s", name)))2682break;2683}2684}26852686/* make sure nobody touched the ref, and unlink */2687static voidprune_ref(struct ref_to_prune *r)2688{2689struct ref_transaction *transaction;2690struct strbuf err = STRBUF_INIT;26912692if(check_refname_format(r->name,0))2693return;26942695 transaction =ref_transaction_begin(&err);2696if(!transaction ||2697ref_transaction_delete(transaction, r->name, r->sha1,2698 REF_ISPRUNING, NULL, &err) ||2699ref_transaction_commit(transaction, &err)) {2700ref_transaction_free(transaction);2701error("%s", err.buf);2702strbuf_release(&err);2703return;2704}2705ref_transaction_free(transaction);2706strbuf_release(&err);2707try_remove_empty_parents(r->name);2708}27092710static voidprune_refs(struct ref_to_prune *r)2711{2712while(r) {2713prune_ref(r);2714 r = r->next;2715}2716}27172718intpack_refs(unsigned int flags)2719{2720struct pack_refs_cb_data cbdata;27212722memset(&cbdata,0,sizeof(cbdata));2723 cbdata.flags = flags;27242725lock_packed_refs(LOCK_DIE_ON_ERROR);2726 cbdata.packed_refs =get_packed_refs(&ref_cache);27272728do_for_each_entry_in_dir(get_loose_refs(&ref_cache),0,2729 pack_if_possible_fn, &cbdata);27302731if(commit_packed_refs())2732die_errno("unable to overwrite old ref-pack file");27332734prune_refs(cbdata.ref_to_prune);2735return0;2736}27372738intrepack_without_refs(struct string_list *refnames,struct strbuf *err)2739{2740struct ref_dir *packed;2741struct string_list_item *refname;2742int ret, needs_repacking =0, removed =0;27432744assert(err);27452746/* Look for a packed ref */2747for_each_string_list_item(refname, refnames) {2748if(get_packed_ref(refname->string)) {2749 needs_repacking =1;2750break;2751}2752}27532754/* Avoid locking if we have nothing to do */2755if(!needs_repacking)2756return0;/* no refname exists in packed refs */27572758if(lock_packed_refs(0)) {2759unable_to_lock_message(git_path("packed-refs"), errno, err);2760return-1;2761}2762 packed =get_packed_refs(&ref_cache);27632764/* Remove refnames from the cache */2765for_each_string_list_item(refname, refnames)2766if(remove_entry(packed, refname->string) != -1)2767 removed =1;2768if(!removed) {2769/*2770 * All packed entries disappeared while we were2771 * acquiring the lock.2772 */2773rollback_packed_refs();2774return0;2775}27762777/* Write what remains */2778 ret =commit_packed_refs();2779if(ret)2780strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2781strerror(errno));2782return ret;2783}27842785static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2786{2787assert(err);27882789if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2790/*2791 * loose. The loose file name is the same as the2792 * lockfile name, minus ".lock":2793 */2794char*loose_filename =get_locked_file_path(lock->lk);2795int res =unlink_or_msg(loose_filename, err);2796free(loose_filename);2797if(res)2798return1;2799}2800return0;2801}28022803intdelete_ref(const char*refname,const unsigned char*sha1,unsigned int flags)2804{2805struct ref_transaction *transaction;2806struct strbuf err = STRBUF_INIT;28072808 transaction =ref_transaction_begin(&err);2809if(!transaction ||2810ref_transaction_delete(transaction, refname,2811(sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,2812 flags, NULL, &err) ||2813ref_transaction_commit(transaction, &err)) {2814error("%s", err.buf);2815ref_transaction_free(transaction);2816strbuf_release(&err);2817return1;2818}2819ref_transaction_free(transaction);2820strbuf_release(&err);2821return0;2822}28232824/*2825 * People using contrib's git-new-workdir have .git/logs/refs ->2826 * /some/other/path/.git/logs/refs, and that may live on another device.2827 *2828 * IOW, to avoid cross device rename errors, the temporary renamed log must2829 * live into logs/refs.2830 */2831#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"28322833static intrename_tmp_log(const char*newrefname)2834{2835int attempts_remaining =4;28362837 retry:2838switch(safe_create_leading_directories_const(git_path("logs/%s", newrefname))) {2839case SCLD_OK:2840break;/* success */2841case SCLD_VANISHED:2842if(--attempts_remaining >0)2843goto retry;2844/* fall through */2845default:2846error("unable to create directory for%s", newrefname);2847return-1;2848}28492850if(rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", newrefname))) {2851if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2852/*2853 * rename(a, b) when b is an existing2854 * directory ought to result in ISDIR, but2855 * Solaris 5.8 gives ENOTDIR. Sheesh.2856 */2857if(remove_empty_directories(git_path("logs/%s", newrefname))) {2858error("Directory not empty: logs/%s", newrefname);2859return-1;2860}2861goto retry;2862}else if(errno == ENOENT && --attempts_remaining >0) {2863/*2864 * Maybe another process just deleted one of2865 * the directories in the path to newrefname.2866 * Try again from the beginning.2867 */2868goto retry;2869}else{2870error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2871 newrefname,strerror(errno));2872return-1;2873}2874}2875return0;2876}28772878static intrename_ref_available(const char*oldname,const char*newname)2879{2880struct string_list skip = STRING_LIST_INIT_NODUP;2881struct strbuf err = STRBUF_INIT;2882int ret;28832884string_list_insert(&skip, oldname);2885 ret = !verify_refname_available(newname, NULL, &skip,2886get_packed_refs(&ref_cache), &err)2887&& !verify_refname_available(newname, NULL, &skip,2888get_loose_refs(&ref_cache), &err);2889if(!ret)2890error("%s", err.buf);28912892string_list_clear(&skip,0);2893strbuf_release(&err);2894return ret;2895}28962897static intwrite_ref_to_lockfile(struct ref_lock *lock,const unsigned char*sha1);2898static intcommit_ref_update(struct ref_lock *lock,2899const unsigned char*sha1,const char*logmsg);29002901intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2902{2903unsigned char sha1[20], orig_sha1[20];2904int flag =0, logmoved =0;2905struct ref_lock *lock;2906struct stat loginfo;2907int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2908const char*symref = NULL;2909struct strbuf err = STRBUF_INIT;29102911if(log &&S_ISLNK(loginfo.st_mode))2912returnerror("reflog for%sis a symlink", oldrefname);29132914 symref =resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,2915 orig_sha1, &flag);2916if(flag & REF_ISSYMREF)2917returnerror("refname%sis a symbolic ref, renaming it is not supported",2918 oldrefname);2919if(!symref)2920returnerror("refname%snot found", oldrefname);29212922if(!rename_ref_available(oldrefname, newrefname))2923return1;29242925if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2926returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2927 oldrefname,strerror(errno));29282929if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2930error("unable to delete old%s", oldrefname);2931goto rollback;2932}29332934if(!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&2935delete_ref(newrefname, sha1, REF_NODEREF)) {2936if(errno==EISDIR) {2937if(remove_empty_directories(git_path("%s", newrefname))) {2938error("Directory not empty:%s", newrefname);2939goto rollback;2940}2941}else{2942error("unable to delete existing%s", newrefname);2943goto rollback;2944}2945}29462947if(log &&rename_tmp_log(newrefname))2948goto rollback;29492950 logmoved = log;29512952 lock =lock_ref_sha1_basic(newrefname, NULL, NULL, NULL,0, NULL, &err);2953if(!lock) {2954error("unable to rename '%s' to '%s':%s", oldrefname, newrefname, err.buf);2955strbuf_release(&err);2956goto rollback;2957}2958hashcpy(lock->old_sha1, orig_sha1);29592960if(write_ref_to_lockfile(lock, orig_sha1) ||2961commit_ref_update(lock, orig_sha1, logmsg)) {2962error("unable to write current sha1 into%s", newrefname);2963goto rollback;2964}29652966return0;29672968 rollback:2969 lock =lock_ref_sha1_basic(oldrefname, NULL, NULL, NULL,0, NULL, &err);2970if(!lock) {2971error("unable to lock%sfor rollback:%s", oldrefname, err.buf);2972strbuf_release(&err);2973goto rollbacklog;2974}29752976 flag = log_all_ref_updates;2977 log_all_ref_updates =0;2978if(write_ref_to_lockfile(lock, orig_sha1) ||2979commit_ref_update(lock, orig_sha1, NULL))2980error("unable to write current sha1 into%s", oldrefname);2981 log_all_ref_updates = flag;29822983 rollbacklog:2984if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2985error("unable to restore logfile%sfrom%s:%s",2986 oldrefname, newrefname,strerror(errno));2987if(!logmoved && log &&2988rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2989error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2990 oldrefname,strerror(errno));29912992return1;2993}29942995static intclose_ref(struct ref_lock *lock)2996{2997if(close_lock_file(lock->lk))2998return-1;2999return0;3000}30013002static intcommit_ref(struct ref_lock *lock)3003{3004if(commit_lock_file(lock->lk))3005return-1;3006return0;3007}30083009/*3010 * copy the reflog message msg to buf, which has been allocated sufficiently3011 * large, while cleaning up the whitespaces. Especially, convert LF to space,3012 * because reflog file is one line per entry.3013 */3014static intcopy_msg(char*buf,const char*msg)3015{3016char*cp = buf;3017char c;3018int wasspace =1;30193020*cp++ ='\t';3021while((c = *msg++)) {3022if(wasspace &&isspace(c))3023continue;3024 wasspace =isspace(c);3025if(wasspace)3026 c =' ';3027*cp++ = c;3028}3029while(buf < cp &&isspace(cp[-1]))3030 cp--;3031*cp++ ='\n';3032return cp - buf;3033}30343035/* This function must set a meaningful errno on failure */3036intlog_ref_setup(const char*refname,struct strbuf *sb_logfile)3037{3038int logfd, oflags = O_APPEND | O_WRONLY;3039char*logfile;30403041strbuf_git_path(sb_logfile,"logs/%s", refname);3042 logfile = sb_logfile->buf;3043/* make sure the rest of the function can't change "logfile" */3044 sb_logfile = NULL;3045if(log_all_ref_updates &&3046(starts_with(refname,"refs/heads/") ||3047starts_with(refname,"refs/remotes/") ||3048starts_with(refname,"refs/notes/") ||3049!strcmp(refname,"HEAD"))) {3050if(safe_create_leading_directories(logfile) <0) {3051int save_errno = errno;3052error("unable to create directory for%s", logfile);3053 errno = save_errno;3054return-1;3055}3056 oflags |= O_CREAT;3057}30583059 logfd =open(logfile, oflags,0666);3060if(logfd <0) {3061if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))3062return0;30633064if(errno == EISDIR) {3065if(remove_empty_directories(logfile)) {3066int save_errno = errno;3067error("There are still logs under '%s'",3068 logfile);3069 errno = save_errno;3070return-1;3071}3072 logfd =open(logfile, oflags,0666);3073}30743075if(logfd <0) {3076int save_errno = errno;3077error("Unable to append to%s:%s", logfile,3078strerror(errno));3079 errno = save_errno;3080return-1;3081}3082}30833084adjust_shared_perm(logfile);3085close(logfd);3086return0;3087}30883089static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,3090const unsigned char*new_sha1,3091const char*committer,const char*msg)3092{3093int msglen, written;3094unsigned maxlen, len;3095char*logrec;30963097 msglen = msg ?strlen(msg) :0;3098 maxlen =strlen(committer) + msglen +100;3099 logrec =xmalloc(maxlen);3100 len =sprintf(logrec,"%s %s %s\n",3101sha1_to_hex(old_sha1),3102sha1_to_hex(new_sha1),3103 committer);3104if(msglen)3105 len +=copy_msg(logrec + len -1, msg) -1;31063107 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;3108free(logrec);3109if(written != len)3110return-1;31113112return0;3113}31143115static intlog_ref_write_1(const char*refname,const unsigned char*old_sha1,3116const unsigned char*new_sha1,const char*msg,3117struct strbuf *sb_log_file)3118{3119int logfd, result, oflags = O_APPEND | O_WRONLY;3120char*log_file;31213122if(log_all_ref_updates <0)3123 log_all_ref_updates = !is_bare_repository();31243125 result =log_ref_setup(refname, sb_log_file);3126if(result)3127return result;3128 log_file = sb_log_file->buf;3129/* make sure the rest of the function can't change "log_file" */3130 sb_log_file = NULL;31313132 logfd =open(log_file, oflags);3133if(logfd <0)3134return0;3135 result =log_ref_write_fd(logfd, old_sha1, new_sha1,3136git_committer_info(0), msg);3137if(result) {3138int save_errno = errno;3139close(logfd);3140error("Unable to append to%s", log_file);3141 errno = save_errno;3142return-1;3143}3144if(close(logfd)) {3145int save_errno = errno;3146error("Unable to append to%s", log_file);3147 errno = save_errno;3148return-1;3149}3150return0;3151}31523153static intlog_ref_write(const char*refname,const unsigned char*old_sha1,3154const unsigned char*new_sha1,const char*msg)3155{3156struct strbuf sb = STRBUF_INIT;3157int ret =log_ref_write_1(refname, old_sha1, new_sha1, msg, &sb);3158strbuf_release(&sb);3159return ret;3160}31613162intis_branch(const char*refname)3163{3164return!strcmp(refname,"HEAD") ||starts_with(refname,"refs/heads/");3165}31663167/*3168 * Write sha1 into the open lockfile, then close the lockfile. On3169 * errors, rollback the lockfile and set errno to reflect the problem.3170 */3171static intwrite_ref_to_lockfile(struct ref_lock *lock,3172const unsigned char*sha1)3173{3174static char term ='\n';3175struct object *o;31763177 o =parse_object(sha1);3178if(!o) {3179error("Trying to write ref%swith nonexistent object%s",3180 lock->ref_name,sha1_to_hex(sha1));3181unlock_ref(lock);3182 errno = EINVAL;3183return-1;3184}3185if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {3186error("Trying to write non-commit object%sto branch%s",3187sha1_to_hex(sha1), lock->ref_name);3188unlock_ref(lock);3189 errno = EINVAL;3190return-1;3191}3192if(write_in_full(lock->lk->fd,sha1_to_hex(sha1),40) !=40||3193write_in_full(lock->lk->fd, &term,1) !=1||3194close_ref(lock) <0) {3195int save_errno = errno;3196error("Couldn't write%s", lock->lk->filename.buf);3197unlock_ref(lock);3198 errno = save_errno;3199return-1;3200}3201return0;3202}32033204/*3205 * Commit a change to a loose reference that has already been written3206 * to the loose reference lockfile. Also update the reflogs if3207 * necessary, using the specified lockmsg (which can be NULL).3208 */3209static intcommit_ref_update(struct ref_lock *lock,3210const unsigned char*sha1,const char*logmsg)3211{3212clear_loose_ref_cache(&ref_cache);3213if(log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) <0||3214(strcmp(lock->ref_name, lock->orig_ref_name) &&3215log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) <0)) {3216unlock_ref(lock);3217return-1;3218}3219if(strcmp(lock->orig_ref_name,"HEAD") !=0) {3220/*3221 * Special hack: If a branch is updated directly and HEAD3222 * points to it (may happen on the remote side of a push3223 * for example) then logically the HEAD reflog should be3224 * updated too.3225 * A generic solution implies reverse symref information,3226 * but finding all symrefs pointing to the given branch3227 * would be rather costly for this rare event (the direct3228 * update of a branch) to be worth it. So let's cheat and3229 * check with HEAD only which should cover 99% of all usage3230 * scenarios (even 100% of the default ones).3231 */3232unsigned char head_sha1[20];3233int head_flag;3234const char*head_ref;3235 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,3236 head_sha1, &head_flag);3237if(head_ref && (head_flag & REF_ISSYMREF) &&3238!strcmp(head_ref, lock->ref_name))3239log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);3240}3241if(commit_ref(lock)) {3242error("Couldn't set%s", lock->ref_name);3243unlock_ref(lock);3244return-1;3245}3246unlock_ref(lock);3247return0;3248}32493250intcreate_symref(const char*ref_target,const char*refs_heads_master,3251const char*logmsg)3252{3253const char*lockpath;3254char ref[1000];3255int fd, len, written;3256char*git_HEAD =git_pathdup("%s", ref_target);3257unsigned char old_sha1[20], new_sha1[20];32583259if(logmsg &&read_ref(ref_target, old_sha1))3260hashclr(old_sha1);32613262if(safe_create_leading_directories(git_HEAD) <0)3263returnerror("unable to create directory for%s", git_HEAD);32643265#ifndef NO_SYMLINK_HEAD3266if(prefer_symlink_refs) {3267unlink(git_HEAD);3268if(!symlink(refs_heads_master, git_HEAD))3269goto done;3270fprintf(stderr,"no symlink - falling back to symbolic ref\n");3271}3272#endif32733274 len =snprintf(ref,sizeof(ref),"ref:%s\n", refs_heads_master);3275if(sizeof(ref) <= len) {3276error("refname too long:%s", refs_heads_master);3277goto error_free_return;3278}3279 lockpath =mkpath("%s.lock", git_HEAD);3280 fd =open(lockpath, O_CREAT | O_EXCL | O_WRONLY,0666);3281if(fd <0) {3282error("Unable to open%sfor writing", lockpath);3283goto error_free_return;3284}3285 written =write_in_full(fd, ref, len);3286if(close(fd) !=0|| written != len) {3287error("Unable to write to%s", lockpath);3288goto error_unlink_return;3289}3290if(rename(lockpath, git_HEAD) <0) {3291error("Unable to create%s", git_HEAD);3292goto error_unlink_return;3293}3294if(adjust_shared_perm(git_HEAD)) {3295error("Unable to fix permissions on%s", lockpath);3296 error_unlink_return:3297unlink_or_warn(lockpath);3298 error_free_return:3299free(git_HEAD);3300return-1;3301}33023303#ifndef NO_SYMLINK_HEAD3304 done:3305#endif3306if(logmsg && !read_ref(refs_heads_master, new_sha1))3307log_ref_write(ref_target, old_sha1, new_sha1, logmsg);33083309free(git_HEAD);3310return0;3311}33123313struct read_ref_at_cb {3314const char*refname;3315unsigned long at_time;3316int cnt;3317int reccnt;3318unsigned char*sha1;3319int found_it;33203321unsigned char osha1[20];3322unsigned char nsha1[20];3323int tz;3324unsigned long date;3325char**msg;3326unsigned long*cutoff_time;3327int*cutoff_tz;3328int*cutoff_cnt;3329};33303331static intread_ref_at_ent(unsigned char*osha1,unsigned char*nsha1,3332const char*email,unsigned long timestamp,int tz,3333const char*message,void*cb_data)3334{3335struct read_ref_at_cb *cb = cb_data;33363337 cb->reccnt++;3338 cb->tz = tz;3339 cb->date = timestamp;33403341if(timestamp <= cb->at_time || cb->cnt ==0) {3342if(cb->msg)3343*cb->msg =xstrdup(message);3344if(cb->cutoff_time)3345*cb->cutoff_time = timestamp;3346if(cb->cutoff_tz)3347*cb->cutoff_tz = tz;3348if(cb->cutoff_cnt)3349*cb->cutoff_cnt = cb->reccnt -1;3350/*3351 * we have not yet updated cb->[n|o]sha1 so they still3352 * hold the values for the previous record.3353 */3354if(!is_null_sha1(cb->osha1)) {3355hashcpy(cb->sha1, nsha1);3356if(hashcmp(cb->osha1, nsha1))3357warning("Log for ref%shas gap after%s.",3358 cb->refname,show_date(cb->date, cb->tz, DATE_RFC2822));3359}3360else if(cb->date == cb->at_time)3361hashcpy(cb->sha1, nsha1);3362else if(hashcmp(nsha1, cb->sha1))3363warning("Log for ref%sunexpectedly ended on%s.",3364 cb->refname,show_date(cb->date, cb->tz,3365 DATE_RFC2822));3366hashcpy(cb->osha1, osha1);3367hashcpy(cb->nsha1, nsha1);3368 cb->found_it =1;3369return1;3370}3371hashcpy(cb->osha1, osha1);3372hashcpy(cb->nsha1, nsha1);3373if(cb->cnt >0)3374 cb->cnt--;3375return0;3376}33773378static intread_ref_at_ent_oldest(unsigned char*osha1,unsigned char*nsha1,3379const char*email,unsigned long timestamp,3380int tz,const char*message,void*cb_data)3381{3382struct read_ref_at_cb *cb = cb_data;33833384if(cb->msg)3385*cb->msg =xstrdup(message);3386if(cb->cutoff_time)3387*cb->cutoff_time = timestamp;3388if(cb->cutoff_tz)3389*cb->cutoff_tz = tz;3390if(cb->cutoff_cnt)3391*cb->cutoff_cnt = cb->reccnt;3392hashcpy(cb->sha1, osha1);3393if(is_null_sha1(cb->sha1))3394hashcpy(cb->sha1, nsha1);3395/* We just want the first entry */3396return1;3397}33983399intread_ref_at(const char*refname,unsigned int flags,unsigned long at_time,int cnt,3400unsigned char*sha1,char**msg,3401unsigned long*cutoff_time,int*cutoff_tz,int*cutoff_cnt)3402{3403struct read_ref_at_cb cb;34043405memset(&cb,0,sizeof(cb));3406 cb.refname = refname;3407 cb.at_time = at_time;3408 cb.cnt = cnt;3409 cb.msg = msg;3410 cb.cutoff_time = cutoff_time;3411 cb.cutoff_tz = cutoff_tz;3412 cb.cutoff_cnt = cutoff_cnt;3413 cb.sha1 = sha1;34143415for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);34163417if(!cb.reccnt) {3418if(flags & GET_SHA1_QUIETLY)3419exit(128);3420else3421die("Log for%sis empty.", refname);3422}3423if(cb.found_it)3424return0;34253426for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);34273428return1;3429}34303431intreflog_exists(const char*refname)3432{3433struct stat st;34343435return!lstat(git_path("logs/%s", refname), &st) &&3436S_ISREG(st.st_mode);3437}34383439intdelete_reflog(const char*refname)3440{3441returnremove_path(git_path("logs/%s", refname));3442}34433444static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)3445{3446unsigned char osha1[20], nsha1[20];3447char*email_end, *message;3448unsigned long timestamp;3449int tz;34503451/* old SP new SP name <email> SP time TAB msg LF */3452if(sb->len <83|| sb->buf[sb->len -1] !='\n'||3453get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||3454get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||3455!(email_end =strchr(sb->buf +82,'>')) ||3456 email_end[1] !=' '||3457!(timestamp =strtoul(email_end +2, &message,10)) ||3458!message || message[0] !=' '||3459(message[1] !='+'&& message[1] !='-') ||3460!isdigit(message[2]) || !isdigit(message[3]) ||3461!isdigit(message[4]) || !isdigit(message[5]))3462return0;/* corrupt? */3463 email_end[1] ='\0';3464 tz =strtol(message +1, NULL,10);3465if(message[6] !='\t')3466 message +=6;3467else3468 message +=7;3469returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);3470}34713472static char*find_beginning_of_line(char*bob,char*scan)3473{3474while(bob < scan && *(--scan) !='\n')3475;/* keep scanning backwards */3476/*3477 * Return either beginning of the buffer, or LF at the end of3478 * the previous line.3479 */3480return scan;3481}34823483intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)3484{3485struct strbuf sb = STRBUF_INIT;3486FILE*logfp;3487long pos;3488int ret =0, at_tail =1;34893490 logfp =fopen(git_path("logs/%s", refname),"r");3491if(!logfp)3492return-1;34933494/* Jump to the end */3495if(fseek(logfp,0, SEEK_END) <0)3496returnerror("cannot seek back reflog for%s:%s",3497 refname,strerror(errno));3498 pos =ftell(logfp);3499while(!ret &&0< pos) {3500int cnt;3501size_t nread;3502char buf[BUFSIZ];3503char*endp, *scanp;35043505/* Fill next block from the end */3506 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;3507if(fseek(logfp, pos - cnt, SEEK_SET))3508returnerror("cannot seek back reflog for%s:%s",3509 refname,strerror(errno));3510 nread =fread(buf, cnt,1, logfp);3511if(nread !=1)3512returnerror("cannot read%dbytes from reflog for%s:%s",3513 cnt, refname,strerror(errno));3514 pos -= cnt;35153516 scanp = endp = buf + cnt;3517if(at_tail && scanp[-1] =='\n')3518/* Looking at the final LF at the end of the file */3519 scanp--;3520 at_tail =0;35213522while(buf < scanp) {3523/*3524 * terminating LF of the previous line, or the beginning3525 * of the buffer.3526 */3527char*bp;35283529 bp =find_beginning_of_line(buf, scanp);35303531if(*bp =='\n') {3532/*3533 * The newline is the end of the previous line,3534 * so we know we have complete line starting3535 * at (bp + 1). Prefix it onto any prior data3536 * we collected for the line and process it.3537 */3538strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));3539 scanp = bp;3540 endp = bp +1;3541 ret =show_one_reflog_ent(&sb, fn, cb_data);3542strbuf_reset(&sb);3543if(ret)3544break;3545}else if(!pos) {3546/*3547 * We are at the start of the buffer, and the3548 * start of the file; there is no previous3549 * line, and we have everything for this one.3550 * Process it, and we can end the loop.3551 */3552strbuf_splice(&sb,0,0, buf, endp - buf);3553 ret =show_one_reflog_ent(&sb, fn, cb_data);3554strbuf_reset(&sb);3555break;3556}35573558if(bp == buf) {3559/*3560 * We are at the start of the buffer, and there3561 * is more file to read backwards. Which means3562 * we are in the middle of a line. Note that we3563 * may get here even if *bp was a newline; that3564 * just means we are at the exact end of the3565 * previous line, rather than some spot in the3566 * middle.3567 *3568 * Save away what we have to be combined with3569 * the data from the next read.3570 */3571strbuf_splice(&sb,0,0, buf, endp - buf);3572break;3573}3574}35753576}3577if(!ret && sb.len)3578die("BUG: reverse reflog parser had leftover data");35793580fclose(logfp);3581strbuf_release(&sb);3582return ret;3583}35843585intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)3586{3587FILE*logfp;3588struct strbuf sb = STRBUF_INIT;3589int ret =0;35903591 logfp =fopen(git_path("logs/%s", refname),"r");3592if(!logfp)3593return-1;35943595while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3596 ret =show_one_reflog_ent(&sb, fn, cb_data);3597fclose(logfp);3598strbuf_release(&sb);3599return ret;3600}3601/*3602 * Call fn for each reflog in the namespace indicated by name. name3603 * must be empty or end with '/'. Name will be used as a scratch3604 * space, but its contents will be restored before return.3605 */3606static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)3607{3608DIR*d =opendir(git_path("logs/%s", name->buf));3609int retval =0;3610struct dirent *de;3611int oldlen = name->len;36123613if(!d)3614return name->len ? errno :0;36153616while((de =readdir(d)) != NULL) {3617struct stat st;36183619if(de->d_name[0] =='.')3620continue;3621if(ends_with(de->d_name,".lock"))3622continue;3623strbuf_addstr(name, de->d_name);3624if(stat(git_path("logs/%s", name->buf), &st) <0) {3625;/* silently ignore */3626}else{3627if(S_ISDIR(st.st_mode)) {3628strbuf_addch(name,'/');3629 retval =do_for_each_reflog(name, fn, cb_data);3630}else{3631unsigned char sha1[20];3632if(read_ref_full(name->buf,0, sha1, NULL))3633 retval =error("bad ref for%s", name->buf);3634else3635 retval =fn(name->buf, sha1,0, cb_data);3636}3637if(retval)3638break;3639}3640strbuf_setlen(name, oldlen);3641}3642closedir(d);3643return retval;3644}36453646intfor_each_reflog(each_ref_fn fn,void*cb_data)3647{3648int retval;3649struct strbuf name;3650strbuf_init(&name, PATH_MAX);3651 retval =do_for_each_reflog(&name, fn, cb_data);3652strbuf_release(&name);3653return retval;3654}36553656/**3657 * Information needed for a single ref update. Set new_sha1 to the new3658 * value or to null_sha1 to delete the ref. To check the old value3659 * while the ref is locked, set (flags & REF_HAVE_OLD) and set3660 * old_sha1 to the old value, or to null_sha1 to ensure the ref does3661 * not exist before update.3662 */3663struct ref_update {3664/*3665 * If (flags & REF_HAVE_NEW), set the reference to this value:3666 */3667unsigned char new_sha1[20];3668/*3669 * If (flags & REF_HAVE_OLD), check that the reference3670 * previously had this value:3671 */3672unsigned char old_sha1[20];3673/*3674 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,3675 * REF_DELETING, and REF_ISPRUNING:3676 */3677unsigned int flags;3678struct ref_lock *lock;3679int type;3680char*msg;3681const char refname[FLEX_ARRAY];3682};36833684/*3685 * Transaction states.3686 * OPEN: The transaction is in a valid state and can accept new updates.3687 * An OPEN transaction can be committed.3688 * CLOSED: A closed transaction is no longer active and no other operations3689 * than free can be used on it in this state.3690 * A transaction can either become closed by successfully committing3691 * an active transaction or if there is a failure while building3692 * the transaction thus rendering it failed/inactive.3693 */3694enum ref_transaction_state {3695 REF_TRANSACTION_OPEN =0,3696 REF_TRANSACTION_CLOSED =13697};36983699/*3700 * Data structure for holding a reference transaction, which can3701 * consist of checks and updates to multiple references, carried out3702 * as atomically as possible. This structure is opaque to callers.3703 */3704struct ref_transaction {3705struct ref_update **updates;3706size_t alloc;3707size_t nr;3708enum ref_transaction_state state;3709};37103711struct ref_transaction *ref_transaction_begin(struct strbuf *err)3712{3713assert(err);37143715returnxcalloc(1,sizeof(struct ref_transaction));3716}37173718voidref_transaction_free(struct ref_transaction *transaction)3719{3720int i;37213722if(!transaction)3723return;37243725for(i =0; i < transaction->nr; i++) {3726free(transaction->updates[i]->msg);3727free(transaction->updates[i]);3728}3729free(transaction->updates);3730free(transaction);3731}37323733static struct ref_update *add_update(struct ref_transaction *transaction,3734const char*refname)3735{3736size_t len =strlen(refname);3737struct ref_update *update =xcalloc(1,sizeof(*update) + len +1);37383739strcpy((char*)update->refname, refname);3740ALLOC_GROW(transaction->updates, transaction->nr +1, transaction->alloc);3741 transaction->updates[transaction->nr++] = update;3742return update;3743}37443745intref_transaction_update(struct ref_transaction *transaction,3746const char*refname,3747const unsigned char*new_sha1,3748const unsigned char*old_sha1,3749unsigned int flags,const char*msg,3750struct strbuf *err)3751{3752struct ref_update *update;37533754assert(err);37553756if(transaction->state != REF_TRANSACTION_OPEN)3757die("BUG: update called for transaction that is not open");37583759if(new_sha1 && !is_null_sha1(new_sha1) &&3760check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {3761strbuf_addf(err,"refusing to update ref with bad name%s",3762 refname);3763return-1;3764}37653766 update =add_update(transaction, refname);3767if(new_sha1) {3768hashcpy(update->new_sha1, new_sha1);3769 flags |= REF_HAVE_NEW;3770}3771if(old_sha1) {3772hashcpy(update->old_sha1, old_sha1);3773 flags |= REF_HAVE_OLD;3774}3775 update->flags = flags;3776if(msg)3777 update->msg =xstrdup(msg);3778return0;3779}37803781intref_transaction_create(struct ref_transaction *transaction,3782const char*refname,3783const unsigned char*new_sha1,3784unsigned int flags,const char*msg,3785struct strbuf *err)3786{3787if(!new_sha1 ||is_null_sha1(new_sha1))3788die("BUG: create called without valid new_sha1");3789returnref_transaction_update(transaction, refname, new_sha1,3790 null_sha1, flags, msg, err);3791}37923793intref_transaction_delete(struct ref_transaction *transaction,3794const char*refname,3795const unsigned char*old_sha1,3796unsigned int flags,const char*msg,3797struct strbuf *err)3798{3799if(old_sha1 &&is_null_sha1(old_sha1))3800die("BUG: delete called with old_sha1 set to zeros");3801returnref_transaction_update(transaction, refname,3802 null_sha1, old_sha1,3803 flags, msg, err);3804}38053806intref_transaction_verify(struct ref_transaction *transaction,3807const char*refname,3808const unsigned char*old_sha1,3809unsigned int flags,3810struct strbuf *err)3811{3812if(!old_sha1)3813die("BUG: verify called with old_sha1 set to NULL");3814returnref_transaction_update(transaction, refname,3815 NULL, old_sha1,3816 flags, NULL, err);3817}38183819intupdate_ref(const char*msg,const char*refname,3820const unsigned char*new_sha1,const unsigned char*old_sha1,3821unsigned int flags,enum action_on_err onerr)3822{3823struct ref_transaction *t;3824struct strbuf err = STRBUF_INIT;38253826 t =ref_transaction_begin(&err);3827if(!t ||3828ref_transaction_update(t, refname, new_sha1, old_sha1,3829 flags, msg, &err) ||3830ref_transaction_commit(t, &err)) {3831const char*str ="update_ref failed for ref '%s':%s";38323833ref_transaction_free(t);3834switch(onerr) {3835case UPDATE_REFS_MSG_ON_ERR:3836error(str, refname, err.buf);3837break;3838case UPDATE_REFS_DIE_ON_ERR:3839die(str, refname, err.buf);3840break;3841case UPDATE_REFS_QUIET_ON_ERR:3842break;3843}3844strbuf_release(&err);3845return1;3846}3847strbuf_release(&err);3848ref_transaction_free(t);3849return0;3850}38513852static intref_update_reject_duplicates(struct string_list *refnames,3853struct strbuf *err)3854{3855int i, n = refnames->nr;38563857assert(err);38583859for(i =1; i < n; i++)3860if(!strcmp(refnames->items[i -1].string, refnames->items[i].string)) {3861strbuf_addf(err,3862"Multiple updates for ref '%s' not allowed.",3863 refnames->items[i].string);3864return1;3865}3866return0;3867}38683869intref_transaction_commit(struct ref_transaction *transaction,3870struct strbuf *err)3871{3872int ret =0, i;3873int n = transaction->nr;3874struct ref_update **updates = transaction->updates;3875struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3876struct string_list_item *ref_to_delete;3877struct string_list affected_refnames = STRING_LIST_INIT_NODUP;38783879assert(err);38803881if(transaction->state != REF_TRANSACTION_OPEN)3882die("BUG: commit called for transaction that is not open");38833884if(!n) {3885 transaction->state = REF_TRANSACTION_CLOSED;3886return0;3887}38883889/* Fail if a refname appears more than once in the transaction: */3890for(i =0; i < n; i++)3891string_list_append(&affected_refnames, updates[i]->refname);3892string_list_sort(&affected_refnames);3893if(ref_update_reject_duplicates(&affected_refnames, err)) {3894 ret = TRANSACTION_GENERIC_ERROR;3895goto cleanup;3896}38973898/*3899 * Acquire all locks, verify old values if provided, check3900 * that new values are valid, and write new values to the3901 * lockfiles, ready to be activated. Only keep one lockfile3902 * open at a time to avoid running out of file descriptors.3903 */3904for(i =0; i < n; i++) {3905struct ref_update *update = updates[i];39063907if((update->flags & REF_HAVE_NEW) &&3908is_null_sha1(update->new_sha1))3909 update->flags |= REF_DELETING;3910 update->lock =lock_ref_sha1_basic(3911 update->refname,3912((update->flags & REF_HAVE_OLD) ?3913 update->old_sha1 : NULL),3914&affected_refnames, NULL,3915 update->flags,3916&update->type,3917 err);3918if(!update->lock) {3919char*reason;39203921 ret = (errno == ENOTDIR)3922? TRANSACTION_NAME_CONFLICT3923: TRANSACTION_GENERIC_ERROR;3924 reason =strbuf_detach(err, NULL);3925strbuf_addf(err,"Cannot lock ref '%s':%s",3926 update->refname, reason);3927free(reason);3928goto cleanup;3929}3930if((update->flags & REF_HAVE_NEW) &&3931!(update->flags & REF_DELETING)) {3932int overwriting_symref = ((update->type & REF_ISSYMREF) &&3933(update->flags & REF_NODEREF));39343935if(!overwriting_symref &&3936!hashcmp(update->lock->old_sha1, update->new_sha1)) {3937/*3938 * The reference already has the desired3939 * value, so we don't need to write it.3940 */3941}else if(write_ref_to_lockfile(update->lock,3942 update->new_sha1)) {3943/*3944 * The lock was freed upon failure of3945 * write_ref_to_lockfile():3946 */3947 update->lock = NULL;3948strbuf_addf(err,"Cannot update the ref '%s'.",3949 update->refname);3950 ret = TRANSACTION_GENERIC_ERROR;3951goto cleanup;3952}else{3953 update->flags |= REF_NEEDS_COMMIT;3954}3955}3956if(!(update->flags & REF_NEEDS_COMMIT)) {3957/*3958 * We didn't have to write anything to the lockfile.3959 * Close it to free up the file descriptor:3960 */3961if(close_ref(update->lock)) {3962strbuf_addf(err,"Couldn't close%s.lock",3963 update->refname);3964goto cleanup;3965}3966}3967}39683969/* Perform updates first so live commits remain referenced */3970for(i =0; i < n; i++) {3971struct ref_update *update = updates[i];39723973if(update->flags & REF_NEEDS_COMMIT) {3974if(commit_ref_update(update->lock,3975 update->new_sha1, update->msg)) {3976/* freed by commit_ref_update(): */3977 update->lock = NULL;3978strbuf_addf(err,"Cannot update the ref '%s'.",3979 update->refname);3980 ret = TRANSACTION_GENERIC_ERROR;3981goto cleanup;3982}else{3983/* freed by commit_ref_update(): */3984 update->lock = NULL;3985}3986}3987}39883989/* Perform deletes now that updates are safely completed */3990for(i =0; i < n; i++) {3991struct ref_update *update = updates[i];39923993if(update->flags & REF_DELETING) {3994if(delete_ref_loose(update->lock, update->type, err)) {3995 ret = TRANSACTION_GENERIC_ERROR;3996goto cleanup;3997}39983999if(!(update->flags & REF_ISPRUNING))4000string_list_append(&refs_to_delete,4001 update->lock->ref_name);4002}4003}40044005if(repack_without_refs(&refs_to_delete, err)) {4006 ret = TRANSACTION_GENERIC_ERROR;4007goto cleanup;4008}4009for_each_string_list_item(ref_to_delete, &refs_to_delete)4010unlink_or_warn(git_path("logs/%s", ref_to_delete->string));4011clear_loose_ref_cache(&ref_cache);40124013cleanup:4014 transaction->state = REF_TRANSACTION_CLOSED;40154016for(i =0; i < n; i++)4017if(updates[i]->lock)4018unlock_ref(updates[i]->lock);4019string_list_clear(&refs_to_delete,0);4020string_list_clear(&affected_refnames,0);4021return ret;4022}40234024char*shorten_unambiguous_ref(const char*refname,int strict)4025{4026int i;4027static char**scanf_fmts;4028static int nr_rules;4029char*short_name;40304031if(!nr_rules) {4032/*4033 * Pre-generate scanf formats from ref_rev_parse_rules[].4034 * Generate a format suitable for scanf from a4035 * ref_rev_parse_rules rule by interpolating "%s" at the4036 * location of the "%.*s".4037 */4038size_t total_len =0;4039size_t offset =0;40404041/* the rule list is NULL terminated, count them first */4042for(nr_rules =0; ref_rev_parse_rules[nr_rules]; nr_rules++)4043/* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */4044 total_len +=strlen(ref_rev_parse_rules[nr_rules]) -2+1;40454046 scanf_fmts =xmalloc(nr_rules *sizeof(char*) + total_len);40474048 offset =0;4049for(i =0; i < nr_rules; i++) {4050assert(offset < total_len);4051 scanf_fmts[i] = (char*)&scanf_fmts[nr_rules] + offset;4052 offset +=snprintf(scanf_fmts[i], total_len - offset,4053 ref_rev_parse_rules[i],2,"%s") +1;4054}4055}40564057/* bail out if there are no rules */4058if(!nr_rules)4059returnxstrdup(refname);40604061/* buffer for scanf result, at most refname must fit */4062 short_name =xstrdup(refname);40634064/* skip first rule, it will always match */4065for(i = nr_rules -1; i >0; --i) {4066int j;4067int rules_to_fail = i;4068int short_name_len;40694070if(1!=sscanf(refname, scanf_fmts[i], short_name))4071continue;40724073 short_name_len =strlen(short_name);40744075/*4076 * in strict mode, all (except the matched one) rules4077 * must fail to resolve to a valid non-ambiguous ref4078 */4079if(strict)4080 rules_to_fail = nr_rules;40814082/*4083 * check if the short name resolves to a valid ref,4084 * but use only rules prior to the matched one4085 */4086for(j =0; j < rules_to_fail; j++) {4087const char*rule = ref_rev_parse_rules[j];4088char refname[PATH_MAX];40894090/* skip matched rule */4091if(i == j)4092continue;40934094/*4095 * the short name is ambiguous, if it resolves4096 * (with this previous rule) to a valid ref4097 * read_ref() returns 0 on success4098 */4099mksnpath(refname,sizeof(refname),4100 rule, short_name_len, short_name);4101if(ref_exists(refname))4102break;4103}41044105/*4106 * short name is non-ambiguous if all previous rules4107 * haven't resolved to a valid ref4108 */4109if(j == rules_to_fail)4110return short_name;4111}41124113free(short_name);4114returnxstrdup(refname);4115}41164117static struct string_list *hide_refs;41184119intparse_hide_refs_config(const char*var,const char*value,const char*section)4120{4121if(!strcmp("transfer.hiderefs", var) ||4122/* NEEDSWORK: use parse_config_key() once both are merged */4123(starts_with(var, section) && var[strlen(section)] =='.'&&4124!strcmp(var +strlen(section),".hiderefs"))) {4125char*ref;4126int len;41274128if(!value)4129returnconfig_error_nonbool(var);4130 ref =xstrdup(value);4131 len =strlen(ref);4132while(len && ref[len -1] =='/')4133 ref[--len] ='\0';4134if(!hide_refs) {4135 hide_refs =xcalloc(1,sizeof(*hide_refs));4136 hide_refs->strdup_strings =1;4137}4138string_list_append(hide_refs, ref);4139}4140return0;4141}41424143intref_is_hidden(const char*refname)4144{4145struct string_list_item *item;41464147if(!hide_refs)4148return0;4149for_each_string_list_item(item, hide_refs) {4150int len;4151if(!starts_with(refname, item->string))4152continue;4153 len =strlen(item->string);4154if(!refname[len] || refname[len] =='/')4155return1;4156}4157return0;4158}41594160struct expire_reflog_cb {4161unsigned int flags;4162 reflog_expiry_should_prune_fn *should_prune_fn;4163void*policy_cb;4164FILE*newlog;4165unsigned char last_kept_sha1[20];4166};41674168static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,4169const char*email,unsigned long timestamp,int tz,4170const char*message,void*cb_data)4171{4172struct expire_reflog_cb *cb = cb_data;4173struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;41744175if(cb->flags & EXPIRE_REFLOGS_REWRITE)4176 osha1 = cb->last_kept_sha1;41774178if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,4179 message, policy_cb)) {4180if(!cb->newlog)4181printf("would prune%s", message);4182else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4183printf("prune%s", message);4184}else{4185if(cb->newlog) {4186fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",4187sha1_to_hex(osha1),sha1_to_hex(nsha1),4188 email, timestamp, tz, message);4189hashcpy(cb->last_kept_sha1, nsha1);4190}4191if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4192printf("keep%s", message);4193}4194return0;4195}41964197intreflog_expire(const char*refname,const unsigned char*sha1,4198unsigned int flags,4199 reflog_expiry_prepare_fn prepare_fn,4200 reflog_expiry_should_prune_fn should_prune_fn,4201 reflog_expiry_cleanup_fn cleanup_fn,4202void*policy_cb_data)4203{4204static struct lock_file reflog_lock;4205struct expire_reflog_cb cb;4206struct ref_lock *lock;4207char*log_file;4208int status =0;4209int type;4210struct strbuf err = STRBUF_INIT;42114212memset(&cb,0,sizeof(cb));4213 cb.flags = flags;4214 cb.policy_cb = policy_cb_data;4215 cb.should_prune_fn = should_prune_fn;42164217/*4218 * The reflog file is locked by holding the lock on the4219 * reference itself, plus we might need to update the4220 * reference if --updateref was specified:4221 */4222 lock =lock_ref_sha1_basic(refname, sha1, NULL, NULL,0, &type, &err);4223if(!lock) {4224error("cannot lock ref '%s':%s", refname, err.buf);4225strbuf_release(&err);4226return-1;4227}4228if(!reflog_exists(refname)) {4229unlock_ref(lock);4230return0;4231}42324233 log_file =git_pathdup("logs/%s", refname);4234if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4235/*4236 * Even though holding $GIT_DIR/logs/$reflog.lock has4237 * no locking implications, we use the lock_file4238 * machinery here anyway because it does a lot of the4239 * work we need, including cleaning up if the program4240 * exits unexpectedly.4241 */4242if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {4243struct strbuf err = STRBUF_INIT;4244unable_to_lock_message(log_file, errno, &err);4245error("%s", err.buf);4246strbuf_release(&err);4247goto failure;4248}4249 cb.newlog =fdopen_lock_file(&reflog_lock,"w");4250if(!cb.newlog) {4251error("cannot fdopen%s(%s)",4252 reflog_lock.filename.buf,strerror(errno));4253goto failure;4254}4255}42564257(*prepare_fn)(refname, sha1, cb.policy_cb);4258for_each_reflog_ent(refname, expire_reflog_ent, &cb);4259(*cleanup_fn)(cb.policy_cb);42604261if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4262/*4263 * It doesn't make sense to adjust a reference pointed4264 * to by a symbolic ref based on expiring entries in4265 * the symbolic reference's reflog. Nor can we update4266 * a reference if there are no remaining reflog4267 * entries.4268 */4269int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&4270!(type & REF_ISSYMREF) &&4271!is_null_sha1(cb.last_kept_sha1);42724273if(close_lock_file(&reflog_lock)) {4274 status |=error("couldn't write%s:%s", log_file,4275strerror(errno));4276}else if(update &&4277(write_in_full(lock->lk->fd,4278sha1_to_hex(cb.last_kept_sha1),40) !=40||4279write_str_in_full(lock->lk->fd,"\n") !=1||4280close_ref(lock) <0)) {4281 status |=error("couldn't write%s",4282 lock->lk->filename.buf);4283rollback_lock_file(&reflog_lock);4284}else if(commit_lock_file(&reflog_lock)) {4285 status |=error("unable to commit reflog '%s' (%s)",4286 log_file,strerror(errno));4287}else if(update &&commit_ref(lock)) {4288 status |=error("couldn't set%s", lock->ref_name);4289}4290}4291free(log_file);4292unlock_ref(lock);4293return status;42944295 failure:4296rollback_lock_file(&reflog_lock);4297free(log_file);4298unlock_ref(lock);4299return-1;4300}