1#include"cache.h" 2#include"lockfile.h" 3#include"refs.h" 4#include"object.h" 5#include"tag.h" 6#include"dir.h" 7#include"string-list.h" 8 9struct ref_lock { 10char*ref_name; 11char*orig_ref_name; 12struct lock_file *lk; 13unsigned char old_sha1[20]; 14int lock_fd; 15}; 16 17/* 18 * How to handle various characters in refnames: 19 * 0: An acceptable character for refs 20 * 1: End-of-component 21 * 2: ., look for a preceding . to reject .. in refs 22 * 3: {, look for a preceding @ to reject @{ in refs 23 * 4: A bad character: ASCII control characters, "~", "^", ":" or SP 24 */ 25static unsigned char refname_disposition[256] = { 261,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 274,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 284,0,0,0,0,0,0,0,0,0,4,0,0,0,2,1, 290,0,0,0,0,0,0,0,0,0,4,0,0,0,0,4, 300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 310,0,0,0,0,0,0,0,0,0,0,4,4,0,4,0, 320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 330,0,0,0,0,0,0,0,0,0,0,3,0,0,4,4 34}; 35 36/* 37 * Flag passed to lock_ref_sha1_basic() telling it to tolerate broken 38 * refs (i.e., because the reference is about to be deleted anyway). 39 */ 40#define REF_DELETING 0x02 41 42/* 43 * Used as a flag in ref_update::flags when a loose ref is being 44 * pruned. 45 */ 46#define REF_ISPRUNING 0x04 47 48/* 49 * Used as a flag in ref_update::flags when the reference should be 50 * updated to new_sha1. 51 */ 52#define REF_HAVE_NEW 0x08 53 54/* 55 * Used as a flag in ref_update::flags when old_sha1 should be 56 * checked. 57 */ 58#define REF_HAVE_OLD 0x10 59 60/* 61 * Try to read one refname component from the front of refname. 62 * Return the length of the component found, or -1 if the component is 63 * not legal. It is legal if it is something reasonable to have under 64 * ".git/refs/"; We do not like it if: 65 * 66 * - any path component of it begins with ".", or 67 * - it has double dots "..", or 68 * - it has ASCII control character, "~", "^", ":" or SP, anywhere, or 69 * - it ends with a "/". 70 * - it ends with ".lock" 71 * - it contains a "\" (backslash) 72 */ 73static intcheck_refname_component(const char*refname,int flags) 74{ 75const char*cp; 76char last ='\0'; 77 78for(cp = refname; ; cp++) { 79int ch = *cp &255; 80unsigned char disp = refname_disposition[ch]; 81switch(disp) { 82case1: 83goto out; 84case2: 85if(last =='.') 86return-1;/* Refname contains "..". */ 87break; 88case3: 89if(last =='@') 90return-1;/* Refname contains "@{". */ 91break; 92case4: 93return-1; 94} 95 last = ch; 96} 97out: 98if(cp == refname) 99return0;/* Component has zero length. */ 100if(refname[0] =='.') 101return-1;/* Component starts with '.'. */ 102if(cp - refname >= LOCK_SUFFIX_LEN && 103!memcmp(cp - LOCK_SUFFIX_LEN, LOCK_SUFFIX, LOCK_SUFFIX_LEN)) 104return-1;/* Refname ends with ".lock". */ 105return cp - refname; 106} 107 108intcheck_refname_format(const char*refname,int flags) 109{ 110int component_len, component_count =0; 111 112if(!strcmp(refname,"@")) 113/* Refname is a single character '@'. */ 114return-1; 115 116while(1) { 117/* We are at the start of a path component. */ 118 component_len =check_refname_component(refname, flags); 119if(component_len <=0) { 120if((flags & REFNAME_REFSPEC_PATTERN) && 121 refname[0] =='*'&& 122(refname[1] =='\0'|| refname[1] =='/')) { 123/* Accept one wildcard as a full refname component. */ 124 flags &= ~REFNAME_REFSPEC_PATTERN; 125 component_len =1; 126}else{ 127return-1; 128} 129} 130 component_count++; 131if(refname[component_len] =='\0') 132break; 133/* Skip to next component. */ 134 refname += component_len +1; 135} 136 137if(refname[component_len -1] =='.') 138return-1;/* Refname ends with '.'. */ 139if(!(flags & REFNAME_ALLOW_ONELEVEL) && component_count <2) 140return-1;/* Refname has only one component. */ 141return0; 142} 143 144struct ref_entry; 145 146/* 147 * Information used (along with the information in ref_entry) to 148 * describe a single cached reference. This data structure only 149 * occurs embedded in a union in struct ref_entry, and only when 150 * (ref_entry->flag & REF_DIR) is zero. 151 */ 152struct ref_value { 153/* 154 * The name of the object to which this reference resolves 155 * (which may be a tag object). If REF_ISBROKEN, this is 156 * null. If REF_ISSYMREF, then this is the name of the object 157 * referred to by the last reference in the symlink chain. 158 */ 159unsigned char sha1[20]; 160 161/* 162 * If REF_KNOWS_PEELED, then this field holds the peeled value 163 * of this reference, or null if the reference is known not to 164 * be peelable. See the documentation for peel_ref() for an 165 * exact definition of "peelable". 166 */ 167unsigned char peeled[20]; 168}; 169 170struct ref_cache; 171 172/* 173 * Information used (along with the information in ref_entry) to 174 * describe a level in the hierarchy of references. This data 175 * structure only occurs embedded in a union in struct ref_entry, and 176 * only when (ref_entry.flag & REF_DIR) is set. In that case, 177 * (ref_entry.flag & REF_INCOMPLETE) determines whether the references 178 * in the directory have already been read: 179 * 180 * (ref_entry.flag & REF_INCOMPLETE) unset -- a directory of loose 181 * or packed references, already read. 182 * 183 * (ref_entry.flag & REF_INCOMPLETE) set -- a directory of loose 184 * references that hasn't been read yet (nor has any of its 185 * subdirectories). 186 * 187 * Entries within a directory are stored within a growable array of 188 * pointers to ref_entries (entries, nr, alloc). Entries 0 <= i < 189 * sorted are sorted by their component name in strcmp() order and the 190 * remaining entries are unsorted. 191 * 192 * Loose references are read lazily, one directory at a time. When a 193 * directory of loose references is read, then all of the references 194 * in that directory are stored, and REF_INCOMPLETE stubs are created 195 * for any subdirectories, but the subdirectories themselves are not 196 * read. The reading is triggered by get_ref_dir(). 197 */ 198struct ref_dir { 199int nr, alloc; 200 201/* 202 * Entries with index 0 <= i < sorted are sorted by name. New 203 * entries are appended to the list unsorted, and are sorted 204 * only when required; thus we avoid the need to sort the list 205 * after the addition of every reference. 206 */ 207int sorted; 208 209/* A pointer to the ref_cache that contains this ref_dir. */ 210struct ref_cache *ref_cache; 211 212struct ref_entry **entries; 213}; 214 215/* 216 * Bit values for ref_entry::flag. REF_ISSYMREF=0x01, 217 * REF_ISPACKED=0x02, REF_ISBROKEN=0x04 and REF_BAD_NAME=0x08 are 218 * public values; see refs.h. 219 */ 220 221/* 222 * The field ref_entry->u.value.peeled of this value entry contains 223 * the correct peeled value for the reference, which might be 224 * null_sha1 if the reference is not a tag or if it is broken. 225 */ 226#define REF_KNOWS_PEELED 0x10 227 228/* ref_entry represents a directory of references */ 229#define REF_DIR 0x20 230 231/* 232 * Entry has not yet been read from disk (used only for REF_DIR 233 * entries representing loose references) 234 */ 235#define REF_INCOMPLETE 0x40 236 237/* 238 * A ref_entry represents either a reference or a "subdirectory" of 239 * references. 240 * 241 * Each directory in the reference namespace is represented by a 242 * ref_entry with (flags & REF_DIR) set and containing a subdir member 243 * that holds the entries in that directory that have been read so 244 * far. If (flags & REF_INCOMPLETE) is set, then the directory and 245 * its subdirectories haven't been read yet. REF_INCOMPLETE is only 246 * used for loose reference directories. 247 * 248 * References are represented by a ref_entry with (flags & REF_DIR) 249 * unset and a value member that describes the reference's value. The 250 * flag member is at the ref_entry level, but it is also needed to 251 * interpret the contents of the value field (in other words, a 252 * ref_value object is not very much use without the enclosing 253 * ref_entry). 254 * 255 * Reference names cannot end with slash and directories' names are 256 * always stored with a trailing slash (except for the top-level 257 * directory, which is always denoted by ""). This has two nice 258 * consequences: (1) when the entries in each subdir are sorted 259 * lexicographically by name (as they usually are), the references in 260 * a whole tree can be generated in lexicographic order by traversing 261 * the tree in left-to-right, depth-first order; (2) the names of 262 * references and subdirectories cannot conflict, and therefore the 263 * presence of an empty subdirectory does not block the creation of a 264 * similarly-named reference. (The fact that reference names with the 265 * same leading components can conflict *with each other* is a 266 * separate issue that is regulated by is_refname_available().) 267 * 268 * Please note that the name field contains the fully-qualified 269 * reference (or subdirectory) name. Space could be saved by only 270 * storing the relative names. But that would require the full names 271 * to be generated on the fly when iterating in do_for_each_ref(), and 272 * would break callback functions, who have always been able to assume 273 * that the name strings that they are passed will not be freed during 274 * the iteration. 275 */ 276struct ref_entry { 277unsigned char flag;/* ISSYMREF? ISPACKED? */ 278union{ 279struct ref_value value;/* if not (flags&REF_DIR) */ 280struct ref_dir subdir;/* if (flags&REF_DIR) */ 281} u; 282/* 283 * The full name of the reference (e.g., "refs/heads/master") 284 * or the full name of the directory with a trailing slash 285 * (e.g., "refs/heads/"): 286 */ 287char name[FLEX_ARRAY]; 288}; 289 290static voidread_loose_refs(const char*dirname,struct ref_dir *dir); 291 292static struct ref_dir *get_ref_dir(struct ref_entry *entry) 293{ 294struct ref_dir *dir; 295assert(entry->flag & REF_DIR); 296 dir = &entry->u.subdir; 297if(entry->flag & REF_INCOMPLETE) { 298read_loose_refs(entry->name, dir); 299 entry->flag &= ~REF_INCOMPLETE; 300} 301return dir; 302} 303 304/* 305 * Check if a refname is safe. 306 * For refs that start with "refs/" we consider it safe as long they do 307 * not try to resolve to outside of refs/. 308 * 309 * For all other refs we only consider them safe iff they only contain 310 * upper case characters and '_' (like "HEAD" AND "MERGE_HEAD", and not like 311 * "config"). 312 */ 313static intrefname_is_safe(const char*refname) 314{ 315if(starts_with(refname,"refs/")) { 316char*buf; 317int result; 318 319 buf =xmalloc(strlen(refname) +1); 320/* 321 * Does the refname try to escape refs/? 322 * For example: refs/foo/../bar is safe but refs/foo/../../bar 323 * is not. 324 */ 325 result = !normalize_path_copy(buf, refname +strlen("refs/")); 326free(buf); 327return result; 328} 329while(*refname) { 330if(!isupper(*refname) && *refname !='_') 331return0; 332 refname++; 333} 334return1; 335} 336 337static struct ref_entry *create_ref_entry(const char*refname, 338const unsigned char*sha1,int flag, 339int check_name) 340{ 341int len; 342struct ref_entry *ref; 343 344if(check_name && 345check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) 346die("Reference has invalid format: '%s'", refname); 347 len =strlen(refname) +1; 348 ref =xmalloc(sizeof(struct ref_entry) + len); 349hashcpy(ref->u.value.sha1, sha1); 350hashclr(ref->u.value.peeled); 351memcpy(ref->name, refname, len); 352 ref->flag = flag; 353return ref; 354} 355 356static voidclear_ref_dir(struct ref_dir *dir); 357 358static voidfree_ref_entry(struct ref_entry *entry) 359{ 360if(entry->flag & REF_DIR) { 361/* 362 * Do not use get_ref_dir() here, as that might 363 * trigger the reading of loose refs. 364 */ 365clear_ref_dir(&entry->u.subdir); 366} 367free(entry); 368} 369 370/* 371 * Add a ref_entry to the end of dir (unsorted). Entry is always 372 * stored directly in dir; no recursion into subdirectories is 373 * done. 374 */ 375static voidadd_entry_to_dir(struct ref_dir *dir,struct ref_entry *entry) 376{ 377ALLOC_GROW(dir->entries, dir->nr +1, dir->alloc); 378 dir->entries[dir->nr++] = entry; 379/* optimize for the case that entries are added in order */ 380if(dir->nr ==1|| 381(dir->nr == dir->sorted +1&& 382strcmp(dir->entries[dir->nr -2]->name, 383 dir->entries[dir->nr -1]->name) <0)) 384 dir->sorted = dir->nr; 385} 386 387/* 388 * Clear and free all entries in dir, recursively. 389 */ 390static voidclear_ref_dir(struct ref_dir *dir) 391{ 392int i; 393for(i =0; i < dir->nr; i++) 394free_ref_entry(dir->entries[i]); 395free(dir->entries); 396 dir->sorted = dir->nr = dir->alloc =0; 397 dir->entries = NULL; 398} 399 400/* 401 * Create a struct ref_entry object for the specified dirname. 402 * dirname is the name of the directory with a trailing slash (e.g., 403 * "refs/heads/") or "" for the top-level directory. 404 */ 405static struct ref_entry *create_dir_entry(struct ref_cache *ref_cache, 406const char*dirname,size_t len, 407int incomplete) 408{ 409struct ref_entry *direntry; 410 direntry =xcalloc(1,sizeof(struct ref_entry) + len +1); 411memcpy(direntry->name, dirname, len); 412 direntry->name[len] ='\0'; 413 direntry->u.subdir.ref_cache = ref_cache; 414 direntry->flag = REF_DIR | (incomplete ? REF_INCOMPLETE :0); 415return direntry; 416} 417 418static intref_entry_cmp(const void*a,const void*b) 419{ 420struct ref_entry *one = *(struct ref_entry **)a; 421struct ref_entry *two = *(struct ref_entry **)b; 422returnstrcmp(one->name, two->name); 423} 424 425static voidsort_ref_dir(struct ref_dir *dir); 426 427struct string_slice { 428size_t len; 429const char*str; 430}; 431 432static intref_entry_cmp_sslice(const void*key_,const void*ent_) 433{ 434const struct string_slice *key = key_; 435const struct ref_entry *ent = *(const struct ref_entry *const*)ent_; 436int cmp =strncmp(key->str, ent->name, key->len); 437if(cmp) 438return cmp; 439return'\0'- (unsigned char)ent->name[key->len]; 440} 441 442/* 443 * Return the index of the entry with the given refname from the 444 * ref_dir (non-recursively), sorting dir if necessary. Return -1 if 445 * no such entry is found. dir must already be complete. 446 */ 447static intsearch_ref_dir(struct ref_dir *dir,const char*refname,size_t len) 448{ 449struct ref_entry **r; 450struct string_slice key; 451 452if(refname == NULL || !dir->nr) 453return-1; 454 455sort_ref_dir(dir); 456 key.len = len; 457 key.str = refname; 458 r =bsearch(&key, dir->entries, dir->nr,sizeof(*dir->entries), 459 ref_entry_cmp_sslice); 460 461if(r == NULL) 462return-1; 463 464return r - dir->entries; 465} 466 467/* 468 * Search for a directory entry directly within dir (without 469 * recursing). Sort dir if necessary. subdirname must be a directory 470 * name (i.e., end in '/'). If mkdir is set, then create the 471 * directory if it is missing; otherwise, return NULL if the desired 472 * directory cannot be found. dir must already be complete. 473 */ 474static struct ref_dir *search_for_subdir(struct ref_dir *dir, 475const char*subdirname,size_t len, 476int mkdir) 477{ 478int entry_index =search_ref_dir(dir, subdirname, len); 479struct ref_entry *entry; 480if(entry_index == -1) { 481if(!mkdir) 482return NULL; 483/* 484 * Since dir is complete, the absence of a subdir 485 * means that the subdir really doesn't exist; 486 * therefore, create an empty record for it but mark 487 * the record complete. 488 */ 489 entry =create_dir_entry(dir->ref_cache, subdirname, len,0); 490add_entry_to_dir(dir, entry); 491}else{ 492 entry = dir->entries[entry_index]; 493} 494returnget_ref_dir(entry); 495} 496 497/* 498 * If refname is a reference name, find the ref_dir within the dir 499 * tree that should hold refname. If refname is a directory name 500 * (i.e., ends in '/'), then return that ref_dir itself. dir must 501 * represent the top-level directory and must already be complete. 502 * Sort ref_dirs and recurse into subdirectories as necessary. If 503 * mkdir is set, then create any missing directories; otherwise, 504 * return NULL if the desired directory cannot be found. 505 */ 506static struct ref_dir *find_containing_dir(struct ref_dir *dir, 507const char*refname,int mkdir) 508{ 509const char*slash; 510for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 511size_t dirnamelen = slash - refname +1; 512struct ref_dir *subdir; 513 subdir =search_for_subdir(dir, refname, dirnamelen, mkdir); 514if(!subdir) { 515 dir = NULL; 516break; 517} 518 dir = subdir; 519} 520 521return dir; 522} 523 524/* 525 * Find the value entry with the given name in dir, sorting ref_dirs 526 * and recursing into subdirectories as necessary. If the name is not 527 * found or it corresponds to a directory entry, return NULL. 528 */ 529static struct ref_entry *find_ref(struct ref_dir *dir,const char*refname) 530{ 531int entry_index; 532struct ref_entry *entry; 533 dir =find_containing_dir(dir, refname,0); 534if(!dir) 535return NULL; 536 entry_index =search_ref_dir(dir, refname,strlen(refname)); 537if(entry_index == -1) 538return NULL; 539 entry = dir->entries[entry_index]; 540return(entry->flag & REF_DIR) ? NULL : entry; 541} 542 543/* 544 * Remove the entry with the given name from dir, recursing into 545 * subdirectories as necessary. If refname is the name of a directory 546 * (i.e., ends with '/'), then remove the directory and its contents. 547 * If the removal was successful, return the number of entries 548 * remaining in the directory entry that contained the deleted entry. 549 * If the name was not found, return -1. Please note that this 550 * function only deletes the entry from the cache; it does not delete 551 * it from the filesystem or ensure that other cache entries (which 552 * might be symbolic references to the removed entry) are updated. 553 * Nor does it remove any containing dir entries that might be made 554 * empty by the removal. dir must represent the top-level directory 555 * and must already be complete. 556 */ 557static intremove_entry(struct ref_dir *dir,const char*refname) 558{ 559int refname_len =strlen(refname); 560int entry_index; 561struct ref_entry *entry; 562int is_dir = refname[refname_len -1] =='/'; 563if(is_dir) { 564/* 565 * refname represents a reference directory. Remove 566 * the trailing slash; otherwise we will get the 567 * directory *representing* refname rather than the 568 * one *containing* it. 569 */ 570char*dirname =xmemdupz(refname, refname_len -1); 571 dir =find_containing_dir(dir, dirname,0); 572free(dirname); 573}else{ 574 dir =find_containing_dir(dir, refname,0); 575} 576if(!dir) 577return-1; 578 entry_index =search_ref_dir(dir, refname, refname_len); 579if(entry_index == -1) 580return-1; 581 entry = dir->entries[entry_index]; 582 583memmove(&dir->entries[entry_index], 584&dir->entries[entry_index +1], 585(dir->nr - entry_index -1) *sizeof(*dir->entries) 586); 587 dir->nr--; 588if(dir->sorted > entry_index) 589 dir->sorted--; 590free_ref_entry(entry); 591return dir->nr; 592} 593 594/* 595 * Add a ref_entry to the ref_dir (unsorted), recursing into 596 * subdirectories as necessary. dir must represent the top-level 597 * directory. Return 0 on success. 598 */ 599static intadd_ref(struct ref_dir *dir,struct ref_entry *ref) 600{ 601 dir =find_containing_dir(dir, ref->name,1); 602if(!dir) 603return-1; 604add_entry_to_dir(dir, ref); 605return0; 606} 607 608/* 609 * Emit a warning and return true iff ref1 and ref2 have the same name 610 * and the same sha1. Die if they have the same name but different 611 * sha1s. 612 */ 613static intis_dup_ref(const struct ref_entry *ref1,const struct ref_entry *ref2) 614{ 615if(strcmp(ref1->name, ref2->name)) 616return0; 617 618/* Duplicate name; make sure that they don't conflict: */ 619 620if((ref1->flag & REF_DIR) || (ref2->flag & REF_DIR)) 621/* This is impossible by construction */ 622die("Reference directory conflict:%s", ref1->name); 623 624if(hashcmp(ref1->u.value.sha1, ref2->u.value.sha1)) 625die("Duplicated ref, and SHA1s don't match:%s", ref1->name); 626 627warning("Duplicated ref:%s", ref1->name); 628return1; 629} 630 631/* 632 * Sort the entries in dir non-recursively (if they are not already 633 * sorted) and remove any duplicate entries. 634 */ 635static voidsort_ref_dir(struct ref_dir *dir) 636{ 637int i, j; 638struct ref_entry *last = NULL; 639 640/* 641 * This check also prevents passing a zero-length array to qsort(), 642 * which is a problem on some platforms. 643 */ 644if(dir->sorted == dir->nr) 645return; 646 647qsort(dir->entries, dir->nr,sizeof(*dir->entries), ref_entry_cmp); 648 649/* Remove any duplicates: */ 650for(i =0, j =0; j < dir->nr; j++) { 651struct ref_entry *entry = dir->entries[j]; 652if(last &&is_dup_ref(last, entry)) 653free_ref_entry(entry); 654else 655 last = dir->entries[i++] = entry; 656} 657 dir->sorted = dir->nr = i; 658} 659 660/* Include broken references in a do_for_each_ref*() iteration: */ 661#define DO_FOR_EACH_INCLUDE_BROKEN 0x01 662 663/* 664 * Return true iff the reference described by entry can be resolved to 665 * an object in the database. Emit a warning if the referred-to 666 * object does not exist. 667 */ 668static intref_resolves_to_object(struct ref_entry *entry) 669{ 670if(entry->flag & REF_ISBROKEN) 671return0; 672if(!has_sha1_file(entry->u.value.sha1)) { 673error("%sdoes not point to a valid object!", entry->name); 674return0; 675} 676return1; 677} 678 679/* 680 * current_ref is a performance hack: when iterating over references 681 * using the for_each_ref*() functions, current_ref is set to the 682 * current reference's entry before calling the callback function. If 683 * the callback function calls peel_ref(), then peel_ref() first 684 * checks whether the reference to be peeled is the current reference 685 * (it usually is) and if so, returns that reference's peeled version 686 * if it is available. This avoids a refname lookup in a common case. 687 */ 688static struct ref_entry *current_ref; 689 690typedefinteach_ref_entry_fn(struct ref_entry *entry,void*cb_data); 691 692struct ref_entry_cb { 693const char*base; 694int trim; 695int flags; 696 each_ref_fn *fn; 697void*cb_data; 698}; 699 700/* 701 * Handle one reference in a do_for_each_ref*()-style iteration, 702 * calling an each_ref_fn for each entry. 703 */ 704static intdo_one_ref(struct ref_entry *entry,void*cb_data) 705{ 706struct ref_entry_cb *data = cb_data; 707struct ref_entry *old_current_ref; 708int retval; 709 710if(!starts_with(entry->name, data->base)) 711return0; 712 713if(!(data->flags & DO_FOR_EACH_INCLUDE_BROKEN) && 714!ref_resolves_to_object(entry)) 715return0; 716 717/* Store the old value, in case this is a recursive call: */ 718 old_current_ref = current_ref; 719 current_ref = entry; 720 retval = data->fn(entry->name + data->trim, entry->u.value.sha1, 721 entry->flag, data->cb_data); 722 current_ref = old_current_ref; 723return retval; 724} 725 726/* 727 * Call fn for each reference in dir that has index in the range 728 * offset <= index < dir->nr. Recurse into subdirectories that are in 729 * that index range, sorting them before iterating. This function 730 * does not sort dir itself; it should be sorted beforehand. fn is 731 * called for all references, including broken ones. 732 */ 733static intdo_for_each_entry_in_dir(struct ref_dir *dir,int offset, 734 each_ref_entry_fn fn,void*cb_data) 735{ 736int i; 737assert(dir->sorted == dir->nr); 738for(i = offset; i < dir->nr; i++) { 739struct ref_entry *entry = dir->entries[i]; 740int retval; 741if(entry->flag & REF_DIR) { 742struct ref_dir *subdir =get_ref_dir(entry); 743sort_ref_dir(subdir); 744 retval =do_for_each_entry_in_dir(subdir,0, fn, cb_data); 745}else{ 746 retval =fn(entry, cb_data); 747} 748if(retval) 749return retval; 750} 751return0; 752} 753 754/* 755 * Call fn for each reference in the union of dir1 and dir2, in order 756 * by refname. Recurse into subdirectories. If a value entry appears 757 * in both dir1 and dir2, then only process the version that is in 758 * dir2. The input dirs must already be sorted, but subdirs will be 759 * sorted as needed. fn is called for all references, including 760 * broken ones. 761 */ 762static intdo_for_each_entry_in_dirs(struct ref_dir *dir1, 763struct ref_dir *dir2, 764 each_ref_entry_fn fn,void*cb_data) 765{ 766int retval; 767int i1 =0, i2 =0; 768 769assert(dir1->sorted == dir1->nr); 770assert(dir2->sorted == dir2->nr); 771while(1) { 772struct ref_entry *e1, *e2; 773int cmp; 774if(i1 == dir1->nr) { 775returndo_for_each_entry_in_dir(dir2, i2, fn, cb_data); 776} 777if(i2 == dir2->nr) { 778returndo_for_each_entry_in_dir(dir1, i1, fn, cb_data); 779} 780 e1 = dir1->entries[i1]; 781 e2 = dir2->entries[i2]; 782 cmp =strcmp(e1->name, e2->name); 783if(cmp ==0) { 784if((e1->flag & REF_DIR) && (e2->flag & REF_DIR)) { 785/* Both are directories; descend them in parallel. */ 786struct ref_dir *subdir1 =get_ref_dir(e1); 787struct ref_dir *subdir2 =get_ref_dir(e2); 788sort_ref_dir(subdir1); 789sort_ref_dir(subdir2); 790 retval =do_for_each_entry_in_dirs( 791 subdir1, subdir2, fn, cb_data); 792 i1++; 793 i2++; 794}else if(!(e1->flag & REF_DIR) && !(e2->flag & REF_DIR)) { 795/* Both are references; ignore the one from dir1. */ 796 retval =fn(e2, cb_data); 797 i1++; 798 i2++; 799}else{ 800die("conflict between reference and directory:%s", 801 e1->name); 802} 803}else{ 804struct ref_entry *e; 805if(cmp <0) { 806 e = e1; 807 i1++; 808}else{ 809 e = e2; 810 i2++; 811} 812if(e->flag & REF_DIR) { 813struct ref_dir *subdir =get_ref_dir(e); 814sort_ref_dir(subdir); 815 retval =do_for_each_entry_in_dir( 816 subdir,0, fn, cb_data); 817}else{ 818 retval =fn(e, cb_data); 819} 820} 821if(retval) 822return retval; 823} 824} 825 826/* 827 * Load all of the refs from the dir into our in-memory cache. The hard work 828 * of loading loose refs is done by get_ref_dir(), so we just need to recurse 829 * through all of the sub-directories. We do not even need to care about 830 * sorting, as traversal order does not matter to us. 831 */ 832static voidprime_ref_dir(struct ref_dir *dir) 833{ 834int i; 835for(i =0; i < dir->nr; i++) { 836struct ref_entry *entry = dir->entries[i]; 837if(entry->flag & REF_DIR) 838prime_ref_dir(get_ref_dir(entry)); 839} 840} 841 842static intentry_matches(struct ref_entry *entry,const struct string_list *list) 843{ 844return list &&string_list_has_string(list, entry->name); 845} 846 847struct nonmatching_ref_data { 848const struct string_list *skip; 849struct ref_entry *found; 850}; 851 852static intnonmatching_ref_fn(struct ref_entry *entry,void*vdata) 853{ 854struct nonmatching_ref_data *data = vdata; 855 856if(entry_matches(entry, data->skip)) 857return0; 858 859 data->found = entry; 860return1; 861} 862 863static voidreport_refname_conflict(struct ref_entry *entry, 864const char*refname) 865{ 866error("'%s' exists; cannot create '%s'", entry->name, refname); 867} 868 869/* 870 * Return true iff a reference named refname could be created without 871 * conflicting with the name of an existing reference in dir. If 872 * skip is non-NULL, ignore potential conflicts with refs in skip 873 * (e.g., because they are scheduled for deletion in the same 874 * operation). 875 * 876 * Two reference names conflict if one of them exactly matches the 877 * leading components of the other; e.g., "foo/bar" conflicts with 878 * both "foo" and with "foo/bar/baz" but not with "foo/bar" or 879 * "foo/barbados". 880 * 881 * skip must be sorted. 882 */ 883static intis_refname_available(const char*refname, 884const struct string_list *skip, 885struct ref_dir *dir) 886{ 887const char*slash; 888size_t len; 889int pos; 890char*dirname; 891 892for(slash =strchr(refname,'/'); slash; slash =strchr(slash +1,'/')) { 893/* 894 * We are still at a leading dir of the refname; we are 895 * looking for a conflict with a leaf entry. 896 * 897 * If we find one, we still must make sure it is 898 * not in "skip". 899 */ 900 pos =search_ref_dir(dir, refname, slash - refname); 901if(pos >=0) { 902struct ref_entry *entry = dir->entries[pos]; 903if(entry_matches(entry, skip)) 904return1; 905report_refname_conflict(entry, refname); 906return0; 907} 908 909 910/* 911 * Otherwise, we can try to continue our search with 912 * the next component; if we come up empty, we know 913 * there is nothing under this whole prefix. 914 */ 915 pos =search_ref_dir(dir, refname, slash +1- refname); 916if(pos <0) 917return1; 918 919 dir =get_ref_dir(dir->entries[pos]); 920} 921 922/* 923 * We are at the leaf of our refname; we want to 924 * make sure there are no directories which match it. 925 */ 926 len =strlen(refname); 927 dirname =xmallocz(len +1); 928sprintf(dirname,"%s/", refname); 929 pos =search_ref_dir(dir, dirname, len +1); 930free(dirname); 931 932if(pos >=0) { 933/* 934 * We found a directory named "refname". It is a 935 * problem iff it contains any ref that is not 936 * in "skip". 937 */ 938struct ref_entry *entry = dir->entries[pos]; 939struct ref_dir *dir =get_ref_dir(entry); 940struct nonmatching_ref_data data; 941 942 data.skip = skip; 943sort_ref_dir(dir); 944if(!do_for_each_entry_in_dir(dir,0, nonmatching_ref_fn, &data)) 945return1; 946 947report_refname_conflict(data.found, refname); 948return0; 949} 950 951/* 952 * There is no point in searching for another leaf 953 * node which matches it; such an entry would be the 954 * ref we are looking for, not a conflict. 955 */ 956return1; 957} 958 959struct packed_ref_cache { 960struct ref_entry *root; 961 962/* 963 * Count of references to the data structure in this instance, 964 * including the pointer from ref_cache::packed if any. The 965 * data will not be freed as long as the reference count is 966 * nonzero. 967 */ 968unsigned int referrers; 969 970/* 971 * Iff the packed-refs file associated with this instance is 972 * currently locked for writing, this points at the associated 973 * lock (which is owned by somebody else). The referrer count 974 * is also incremented when the file is locked and decremented 975 * when it is unlocked. 976 */ 977struct lock_file *lock; 978 979/* The metadata from when this packed-refs cache was read */ 980struct stat_validity validity; 981}; 982 983/* 984 * Future: need to be in "struct repository" 985 * when doing a full libification. 986 */ 987static struct ref_cache { 988struct ref_cache *next; 989struct ref_entry *loose; 990struct packed_ref_cache *packed; 991/* 992 * The submodule name, or "" for the main repo. We allocate 993 * length 1 rather than FLEX_ARRAY so that the main ref_cache 994 * is initialized correctly. 995 */ 996char name[1]; 997} ref_cache, *submodule_ref_caches; 998 999/* Lock used for the main packed-refs file: */1000static struct lock_file packlock;10011002/*1003 * Increment the reference count of *packed_refs.1004 */1005static voidacquire_packed_ref_cache(struct packed_ref_cache *packed_refs)1006{1007 packed_refs->referrers++;1008}10091010/*1011 * Decrease the reference count of *packed_refs. If it goes to zero,1012 * free *packed_refs and return true; otherwise return false.1013 */1014static intrelease_packed_ref_cache(struct packed_ref_cache *packed_refs)1015{1016if(!--packed_refs->referrers) {1017free_ref_entry(packed_refs->root);1018stat_validity_clear(&packed_refs->validity);1019free(packed_refs);1020return1;1021}else{1022return0;1023}1024}10251026static voidclear_packed_ref_cache(struct ref_cache *refs)1027{1028if(refs->packed) {1029struct packed_ref_cache *packed_refs = refs->packed;10301031if(packed_refs->lock)1032die("internal error: packed-ref cache cleared while locked");1033 refs->packed = NULL;1034release_packed_ref_cache(packed_refs);1035}1036}10371038static voidclear_loose_ref_cache(struct ref_cache *refs)1039{1040if(refs->loose) {1041free_ref_entry(refs->loose);1042 refs->loose = NULL;1043}1044}10451046static struct ref_cache *create_ref_cache(const char*submodule)1047{1048int len;1049struct ref_cache *refs;1050if(!submodule)1051 submodule ="";1052 len =strlen(submodule) +1;1053 refs =xcalloc(1,sizeof(struct ref_cache) + len);1054memcpy(refs->name, submodule, len);1055return refs;1056}10571058/*1059 * Return a pointer to a ref_cache for the specified submodule. For1060 * the main repository, use submodule==NULL. The returned structure1061 * will be allocated and initialized but not necessarily populated; it1062 * should not be freed.1063 */1064static struct ref_cache *get_ref_cache(const char*submodule)1065{1066struct ref_cache *refs;10671068if(!submodule || !*submodule)1069return&ref_cache;10701071for(refs = submodule_ref_caches; refs; refs = refs->next)1072if(!strcmp(submodule, refs->name))1073return refs;10741075 refs =create_ref_cache(submodule);1076 refs->next = submodule_ref_caches;1077 submodule_ref_caches = refs;1078return refs;1079}10801081/* The length of a peeled reference line in packed-refs, including EOL: */1082#define PEELED_LINE_LENGTH 4210831084/*1085 * The packed-refs header line that we write out. Perhaps other1086 * traits will be added later. The trailing space is required.1087 */1088static const char PACKED_REFS_HEADER[] =1089"# pack-refs with: peeled fully-peeled\n";10901091/*1092 * Parse one line from a packed-refs file. Write the SHA1 to sha1.1093 * Return a pointer to the refname within the line (null-terminated),1094 * or NULL if there was a problem.1095 */1096static const char*parse_ref_line(struct strbuf *line,unsigned char*sha1)1097{1098const char*ref;10991100/*1101 * 42: the answer to everything.1102 *1103 * In this case, it happens to be the answer to1104 * 40 (length of sha1 hex representation)1105 * +1 (space in between hex and name)1106 * +1 (newline at the end of the line)1107 */1108if(line->len <=42)1109return NULL;11101111if(get_sha1_hex(line->buf, sha1) <0)1112return NULL;1113if(!isspace(line->buf[40]))1114return NULL;11151116 ref = line->buf +41;1117if(isspace(*ref))1118return NULL;11191120if(line->buf[line->len -1] !='\n')1121return NULL;1122 line->buf[--line->len] =0;11231124return ref;1125}11261127/*1128 * Read f, which is a packed-refs file, into dir.1129 *1130 * A comment line of the form "# pack-refs with: " may contain zero or1131 * more traits. We interpret the traits as follows:1132 *1133 * No traits:1134 *1135 * Probably no references are peeled. But if the file contains a1136 * peeled value for a reference, we will use it.1137 *1138 * peeled:1139 *1140 * References under "refs/tags/", if they *can* be peeled, *are*1141 * peeled in this file. References outside of "refs/tags/" are1142 * probably not peeled even if they could have been, but if we find1143 * a peeled value for such a reference we will use it.1144 *1145 * fully-peeled:1146 *1147 * All references in the file that can be peeled are peeled.1148 * Inversely (and this is more important), any references in the1149 * file for which no peeled value is recorded is not peelable. This1150 * trait should typically be written alongside "peeled" for1151 * compatibility with older clients, but we do not require it1152 * (i.e., "peeled" is a no-op if "fully-peeled" is set).1153 */1154static voidread_packed_refs(FILE*f,struct ref_dir *dir)1155{1156struct ref_entry *last = NULL;1157struct strbuf line = STRBUF_INIT;1158enum{ PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;11591160while(strbuf_getwholeline(&line, f,'\n') != EOF) {1161unsigned char sha1[20];1162const char*refname;1163const char*traits;11641165if(skip_prefix(line.buf,"# pack-refs with:", &traits)) {1166if(strstr(traits," fully-peeled "))1167 peeled = PEELED_FULLY;1168else if(strstr(traits," peeled "))1169 peeled = PEELED_TAGS;1170/* perhaps other traits later as well */1171continue;1172}11731174 refname =parse_ref_line(&line, sha1);1175if(refname) {1176int flag = REF_ISPACKED;11771178if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1179if(!refname_is_safe(refname))1180die("packed refname is dangerous:%s", refname);1181hashclr(sha1);1182 flag |= REF_BAD_NAME | REF_ISBROKEN;1183}1184 last =create_ref_entry(refname, sha1, flag,0);1185if(peeled == PEELED_FULLY ||1186(peeled == PEELED_TAGS &&starts_with(refname,"refs/tags/")))1187 last->flag |= REF_KNOWS_PEELED;1188add_ref(dir, last);1189continue;1190}1191if(last &&1192 line.buf[0] =='^'&&1193 line.len == PEELED_LINE_LENGTH &&1194 line.buf[PEELED_LINE_LENGTH -1] =='\n'&&1195!get_sha1_hex(line.buf +1, sha1)) {1196hashcpy(last->u.value.peeled, sha1);1197/*1198 * Regardless of what the file header said,1199 * we definitely know the value of *this*1200 * reference:1201 */1202 last->flag |= REF_KNOWS_PEELED;1203}1204}12051206strbuf_release(&line);1207}12081209/*1210 * Get the packed_ref_cache for the specified ref_cache, creating it1211 * if necessary.1212 */1213static struct packed_ref_cache *get_packed_ref_cache(struct ref_cache *refs)1214{1215const char*packed_refs_file;12161217if(*refs->name)1218 packed_refs_file =git_path_submodule(refs->name,"packed-refs");1219else1220 packed_refs_file =git_path("packed-refs");12211222if(refs->packed &&1223!stat_validity_check(&refs->packed->validity, packed_refs_file))1224clear_packed_ref_cache(refs);12251226if(!refs->packed) {1227FILE*f;12281229 refs->packed =xcalloc(1,sizeof(*refs->packed));1230acquire_packed_ref_cache(refs->packed);1231 refs->packed->root =create_dir_entry(refs,"",0,0);1232 f =fopen(packed_refs_file,"r");1233if(f) {1234stat_validity_update(&refs->packed->validity,fileno(f));1235read_packed_refs(f,get_ref_dir(refs->packed->root));1236fclose(f);1237}1238}1239return refs->packed;1240}12411242static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)1243{1244returnget_ref_dir(packed_ref_cache->root);1245}12461247static struct ref_dir *get_packed_refs(struct ref_cache *refs)1248{1249returnget_packed_ref_dir(get_packed_ref_cache(refs));1250}12511252voidadd_packed_ref(const char*refname,const unsigned char*sha1)1253{1254struct packed_ref_cache *packed_ref_cache =1255get_packed_ref_cache(&ref_cache);12561257if(!packed_ref_cache->lock)1258die("internal error: packed refs not locked");1259add_ref(get_packed_ref_dir(packed_ref_cache),1260create_ref_entry(refname, sha1, REF_ISPACKED,1));1261}12621263/*1264 * Read the loose references from the namespace dirname into dir1265 * (without recursing). dirname must end with '/'. dir must be the1266 * directory entry corresponding to dirname.1267 */1268static voidread_loose_refs(const char*dirname,struct ref_dir *dir)1269{1270struct ref_cache *refs = dir->ref_cache;1271DIR*d;1272const char*path;1273struct dirent *de;1274int dirnamelen =strlen(dirname);1275struct strbuf refname;12761277if(*refs->name)1278 path =git_path_submodule(refs->name,"%s", dirname);1279else1280 path =git_path("%s", dirname);12811282 d =opendir(path);1283if(!d)1284return;12851286strbuf_init(&refname, dirnamelen +257);1287strbuf_add(&refname, dirname, dirnamelen);12881289while((de =readdir(d)) != NULL) {1290unsigned char sha1[20];1291struct stat st;1292int flag;1293const char*refdir;12941295if(de->d_name[0] =='.')1296continue;1297if(ends_with(de->d_name,".lock"))1298continue;1299strbuf_addstr(&refname, de->d_name);1300 refdir = *refs->name1301?git_path_submodule(refs->name,"%s", refname.buf)1302:git_path("%s", refname.buf);1303if(stat(refdir, &st) <0) {1304;/* silently ignore */1305}else if(S_ISDIR(st.st_mode)) {1306strbuf_addch(&refname,'/');1307add_entry_to_dir(dir,1308create_dir_entry(refs, refname.buf,1309 refname.len,1));1310}else{1311if(*refs->name) {1312hashclr(sha1);1313 flag =0;1314if(resolve_gitlink_ref(refs->name, refname.buf, sha1) <0) {1315hashclr(sha1);1316 flag |= REF_ISBROKEN;1317}1318}else if(read_ref_full(refname.buf,1319 RESOLVE_REF_READING,1320 sha1, &flag)) {1321hashclr(sha1);1322 flag |= REF_ISBROKEN;1323}1324if(check_refname_format(refname.buf,1325 REFNAME_ALLOW_ONELEVEL)) {1326if(!refname_is_safe(refname.buf))1327die("loose refname is dangerous:%s", refname.buf);1328hashclr(sha1);1329 flag |= REF_BAD_NAME | REF_ISBROKEN;1330}1331add_entry_to_dir(dir,1332create_ref_entry(refname.buf, sha1, flag,0));1333}1334strbuf_setlen(&refname, dirnamelen);1335}1336strbuf_release(&refname);1337closedir(d);1338}13391340static struct ref_dir *get_loose_refs(struct ref_cache *refs)1341{1342if(!refs->loose) {1343/*1344 * Mark the top-level directory complete because we1345 * are about to read the only subdirectory that can1346 * hold references:1347 */1348 refs->loose =create_dir_entry(refs,"",0,0);1349/*1350 * Create an incomplete entry for "refs/":1351 */1352add_entry_to_dir(get_ref_dir(refs->loose),1353create_dir_entry(refs,"refs/",5,1));1354}1355returnget_ref_dir(refs->loose);1356}13571358/* We allow "recursive" symbolic refs. Only within reason, though */1359#define MAXDEPTH 51360#define MAXREFLEN (1024)13611362/*1363 * Called by resolve_gitlink_ref_recursive() after it failed to read1364 * from the loose refs in ref_cache refs. Find <refname> in the1365 * packed-refs file for the submodule.1366 */1367static intresolve_gitlink_packed_ref(struct ref_cache *refs,1368const char*refname,unsigned char*sha1)1369{1370struct ref_entry *ref;1371struct ref_dir *dir =get_packed_refs(refs);13721373 ref =find_ref(dir, refname);1374if(ref == NULL)1375return-1;13761377hashcpy(sha1, ref->u.value.sha1);1378return0;1379}13801381static intresolve_gitlink_ref_recursive(struct ref_cache *refs,1382const char*refname,unsigned char*sha1,1383int recursion)1384{1385int fd, len;1386char buffer[128], *p;1387char*path;13881389if(recursion > MAXDEPTH ||strlen(refname) > MAXREFLEN)1390return-1;1391 path = *refs->name1392?git_path_submodule(refs->name,"%s", refname)1393:git_path("%s", refname);1394 fd =open(path, O_RDONLY);1395if(fd <0)1396returnresolve_gitlink_packed_ref(refs, refname, sha1);13971398 len =read(fd, buffer,sizeof(buffer)-1);1399close(fd);1400if(len <0)1401return-1;1402while(len &&isspace(buffer[len-1]))1403 len--;1404 buffer[len] =0;14051406/* Was it a detached head or an old-fashioned symlink? */1407if(!get_sha1_hex(buffer, sha1))1408return0;14091410/* Symref? */1411if(strncmp(buffer,"ref:",4))1412return-1;1413 p = buffer +4;1414while(isspace(*p))1415 p++;14161417returnresolve_gitlink_ref_recursive(refs, p, sha1, recursion+1);1418}14191420intresolve_gitlink_ref(const char*path,const char*refname,unsigned char*sha1)1421{1422int len =strlen(path), retval;1423char*submodule;1424struct ref_cache *refs;14251426while(len && path[len-1] =='/')1427 len--;1428if(!len)1429return-1;1430 submodule =xstrndup(path, len);1431 refs =get_ref_cache(submodule);1432free(submodule);14331434 retval =resolve_gitlink_ref_recursive(refs, refname, sha1,0);1435return retval;1436}14371438/*1439 * Return the ref_entry for the given refname from the packed1440 * references. If it does not exist, return NULL.1441 */1442static struct ref_entry *get_packed_ref(const char*refname)1443{1444returnfind_ref(get_packed_refs(&ref_cache), refname);1445}14461447/*1448 * A loose ref file doesn't exist; check for a packed ref. The1449 * options are forwarded from resolve_safe_unsafe().1450 */1451static intresolve_missing_loose_ref(const char*refname,1452int resolve_flags,1453unsigned char*sha1,1454int*flags)1455{1456struct ref_entry *entry;14571458/*1459 * The loose reference file does not exist; check for a packed1460 * reference.1461 */1462 entry =get_packed_ref(refname);1463if(entry) {1464hashcpy(sha1, entry->u.value.sha1);1465if(flags)1466*flags |= REF_ISPACKED;1467return0;1468}1469/* The reference is not a packed reference, either. */1470if(resolve_flags & RESOLVE_REF_READING) {1471 errno = ENOENT;1472return-1;1473}else{1474hashclr(sha1);1475return0;1476}1477}14781479/* This function needs to return a meaningful errno on failure */1480const char*resolve_ref_unsafe(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1481{1482int depth = MAXDEPTH;1483 ssize_t len;1484char buffer[256];1485static char refname_buffer[256];1486int bad_name =0;14871488if(flags)1489*flags =0;14901491if(check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {1492if(flags)1493*flags |= REF_BAD_NAME;14941495if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1496!refname_is_safe(refname)) {1497 errno = EINVAL;1498return NULL;1499}1500/*1501 * dwim_ref() uses REF_ISBROKEN to distinguish between1502 * missing refs and refs that were present but invalid,1503 * to complain about the latter to stderr.1504 *1505 * We don't know whether the ref exists, so don't set1506 * REF_ISBROKEN yet.1507 */1508 bad_name =1;1509}1510for(;;) {1511char path[PATH_MAX];1512struct stat st;1513char*buf;1514int fd;15151516if(--depth <0) {1517 errno = ELOOP;1518return NULL;1519}15201521git_snpath(path,sizeof(path),"%s", refname);15221523/*1524 * We might have to loop back here to avoid a race1525 * condition: first we lstat() the file, then we try1526 * to read it as a link or as a file. But if somebody1527 * changes the type of the file (file <-> directory1528 * <-> symlink) between the lstat() and reading, then1529 * we don't want to report that as an error but rather1530 * try again starting with the lstat().1531 */1532 stat_ref:1533if(lstat(path, &st) <0) {1534if(errno != ENOENT)1535return NULL;1536if(resolve_missing_loose_ref(refname, resolve_flags,1537 sha1, flags))1538return NULL;1539if(bad_name) {1540hashclr(sha1);1541if(flags)1542*flags |= REF_ISBROKEN;1543}1544return refname;1545}15461547/* Follow "normalized" - ie "refs/.." symlinks by hand */1548if(S_ISLNK(st.st_mode)) {1549 len =readlink(path, buffer,sizeof(buffer)-1);1550if(len <0) {1551if(errno == ENOENT || errno == EINVAL)1552/* inconsistent with lstat; retry */1553goto stat_ref;1554else1555return NULL;1556}1557 buffer[len] =0;1558if(starts_with(buffer,"refs/") &&1559!check_refname_format(buffer,0)) {1560strcpy(refname_buffer, buffer);1561 refname = refname_buffer;1562if(flags)1563*flags |= REF_ISSYMREF;1564if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1565hashclr(sha1);1566return refname;1567}1568continue;1569}1570}15711572/* Is it a directory? */1573if(S_ISDIR(st.st_mode)) {1574 errno = EISDIR;1575return NULL;1576}15771578/*1579 * Anything else, just open it and try to use it as1580 * a ref1581 */1582 fd =open(path, O_RDONLY);1583if(fd <0) {1584if(errno == ENOENT)1585/* inconsistent with lstat; retry */1586goto stat_ref;1587else1588return NULL;1589}1590 len =read_in_full(fd, buffer,sizeof(buffer)-1);1591if(len <0) {1592int save_errno = errno;1593close(fd);1594 errno = save_errno;1595return NULL;1596}1597close(fd);1598while(len &&isspace(buffer[len-1]))1599 len--;1600 buffer[len] ='\0';16011602/*1603 * Is it a symbolic ref?1604 */1605if(!starts_with(buffer,"ref:")) {1606/*1607 * Please note that FETCH_HEAD has a second1608 * line containing other data.1609 */1610if(get_sha1_hex(buffer, sha1) ||1611(buffer[40] !='\0'&& !isspace(buffer[40]))) {1612if(flags)1613*flags |= REF_ISBROKEN;1614 errno = EINVAL;1615return NULL;1616}1617if(bad_name) {1618hashclr(sha1);1619if(flags)1620*flags |= REF_ISBROKEN;1621}1622return refname;1623}1624if(flags)1625*flags |= REF_ISSYMREF;1626 buf = buffer +4;1627while(isspace(*buf))1628 buf++;1629 refname =strcpy(refname_buffer, buf);1630if(resolve_flags & RESOLVE_REF_NO_RECURSE) {1631hashclr(sha1);1632return refname;1633}1634if(check_refname_format(buf, REFNAME_ALLOW_ONELEVEL)) {1635if(flags)1636*flags |= REF_ISBROKEN;16371638if(!(resolve_flags & RESOLVE_REF_ALLOW_BAD_NAME) ||1639!refname_is_safe(buf)) {1640 errno = EINVAL;1641return NULL;1642}1643 bad_name =1;1644}1645}1646}16471648char*resolve_refdup(const char*ref,int resolve_flags,unsigned char*sha1,int*flags)1649{1650returnxstrdup_or_null(resolve_ref_unsafe(ref, resolve_flags, sha1, flags));1651}16521653/* The argument to filter_refs */1654struct ref_filter {1655const char*pattern;1656 each_ref_fn *fn;1657void*cb_data;1658};16591660intread_ref_full(const char*refname,int resolve_flags,unsigned char*sha1,int*flags)1661{1662if(resolve_ref_unsafe(refname, resolve_flags, sha1, flags))1663return0;1664return-1;1665}16661667intread_ref(const char*refname,unsigned char*sha1)1668{1669returnread_ref_full(refname, RESOLVE_REF_READING, sha1, NULL);1670}16711672intref_exists(const char*refname)1673{1674unsigned char sha1[20];1675return!!resolve_ref_unsafe(refname, RESOLVE_REF_READING, sha1, NULL);1676}16771678static intfilter_refs(const char*refname,const unsigned char*sha1,int flags,1679void*data)1680{1681struct ref_filter *filter = (struct ref_filter *)data;1682if(wildmatch(filter->pattern, refname,0, NULL))1683return0;1684return filter->fn(refname, sha1, flags, filter->cb_data);1685}16861687enum peel_status {1688/* object was peeled successfully: */1689 PEEL_PEELED =0,16901691/*1692 * object cannot be peeled because the named object (or an1693 * object referred to by a tag in the peel chain), does not1694 * exist.1695 */1696 PEEL_INVALID = -1,16971698/* object cannot be peeled because it is not a tag: */1699 PEEL_NON_TAG = -2,17001701/* ref_entry contains no peeled value because it is a symref: */1702 PEEL_IS_SYMREF = -3,17031704/*1705 * ref_entry cannot be peeled because it is broken (i.e., the1706 * symbolic reference cannot even be resolved to an object1707 * name):1708 */1709 PEEL_BROKEN = -41710};17111712/*1713 * Peel the named object; i.e., if the object is a tag, resolve the1714 * tag recursively until a non-tag is found. If successful, store the1715 * result to sha1 and return PEEL_PEELED. If the object is not a tag1716 * or is not valid, return PEEL_NON_TAG or PEEL_INVALID, respectively,1717 * and leave sha1 unchanged.1718 */1719static enum peel_status peel_object(const unsigned char*name,unsigned char*sha1)1720{1721struct object *o =lookup_unknown_object(name);17221723if(o->type == OBJ_NONE) {1724int type =sha1_object_info(name, NULL);1725if(type <0|| !object_as_type(o, type,0))1726return PEEL_INVALID;1727}17281729if(o->type != OBJ_TAG)1730return PEEL_NON_TAG;17311732 o =deref_tag_noverify(o);1733if(!o)1734return PEEL_INVALID;17351736hashcpy(sha1, o->sha1);1737return PEEL_PEELED;1738}17391740/*1741 * Peel the entry (if possible) and return its new peel_status. If1742 * repeel is true, re-peel the entry even if there is an old peeled1743 * value that is already stored in it.1744 *1745 * It is OK to call this function with a packed reference entry that1746 * might be stale and might even refer to an object that has since1747 * been garbage-collected. In such a case, if the entry has1748 * REF_KNOWS_PEELED then leave the status unchanged and return1749 * PEEL_PEELED or PEEL_NON_TAG; otherwise, return PEEL_INVALID.1750 */1751static enum peel_status peel_entry(struct ref_entry *entry,int repeel)1752{1753enum peel_status status;17541755if(entry->flag & REF_KNOWS_PEELED) {1756if(repeel) {1757 entry->flag &= ~REF_KNOWS_PEELED;1758hashclr(entry->u.value.peeled);1759}else{1760returnis_null_sha1(entry->u.value.peeled) ?1761 PEEL_NON_TAG : PEEL_PEELED;1762}1763}1764if(entry->flag & REF_ISBROKEN)1765return PEEL_BROKEN;1766if(entry->flag & REF_ISSYMREF)1767return PEEL_IS_SYMREF;17681769 status =peel_object(entry->u.value.sha1, entry->u.value.peeled);1770if(status == PEEL_PEELED || status == PEEL_NON_TAG)1771 entry->flag |= REF_KNOWS_PEELED;1772return status;1773}17741775intpeel_ref(const char*refname,unsigned char*sha1)1776{1777int flag;1778unsigned char base[20];17791780if(current_ref && (current_ref->name == refname1781|| !strcmp(current_ref->name, refname))) {1782if(peel_entry(current_ref,0))1783return-1;1784hashcpy(sha1, current_ref->u.value.peeled);1785return0;1786}17871788if(read_ref_full(refname, RESOLVE_REF_READING, base, &flag))1789return-1;17901791/*1792 * If the reference is packed, read its ref_entry from the1793 * cache in the hope that we already know its peeled value.1794 * We only try this optimization on packed references because1795 * (a) forcing the filling of the loose reference cache could1796 * be expensive and (b) loose references anyway usually do not1797 * have REF_KNOWS_PEELED.1798 */1799if(flag & REF_ISPACKED) {1800struct ref_entry *r =get_packed_ref(refname);1801if(r) {1802if(peel_entry(r,0))1803return-1;1804hashcpy(sha1, r->u.value.peeled);1805return0;1806}1807}18081809returnpeel_object(base, sha1);1810}18111812struct warn_if_dangling_data {1813FILE*fp;1814const char*refname;1815const struct string_list *refnames;1816const char*msg_fmt;1817};18181819static intwarn_if_dangling_symref(const char*refname,const unsigned char*sha1,1820int flags,void*cb_data)1821{1822struct warn_if_dangling_data *d = cb_data;1823const char*resolves_to;1824unsigned char junk[20];18251826if(!(flags & REF_ISSYMREF))1827return0;18281829 resolves_to =resolve_ref_unsafe(refname,0, junk, NULL);1830if(!resolves_to1831|| (d->refname1832?strcmp(resolves_to, d->refname)1833: !string_list_has_string(d->refnames, resolves_to))) {1834return0;1835}18361837fprintf(d->fp, d->msg_fmt, refname);1838fputc('\n', d->fp);1839return0;1840}18411842voidwarn_dangling_symref(FILE*fp,const char*msg_fmt,const char*refname)1843{1844struct warn_if_dangling_data data;18451846 data.fp = fp;1847 data.refname = refname;1848 data.refnames = NULL;1849 data.msg_fmt = msg_fmt;1850for_each_rawref(warn_if_dangling_symref, &data);1851}18521853voidwarn_dangling_symrefs(FILE*fp,const char*msg_fmt,const struct string_list *refnames)1854{1855struct warn_if_dangling_data data;18561857 data.fp = fp;1858 data.refname = NULL;1859 data.refnames = refnames;1860 data.msg_fmt = msg_fmt;1861for_each_rawref(warn_if_dangling_symref, &data);1862}18631864/*1865 * Call fn for each reference in the specified ref_cache, omitting1866 * references not in the containing_dir of base. fn is called for all1867 * references, including broken ones. If fn ever returns a non-zero1868 * value, stop the iteration and return that value; otherwise, return1869 * 0.1870 */1871static intdo_for_each_entry(struct ref_cache *refs,const char*base,1872 each_ref_entry_fn fn,void*cb_data)1873{1874struct packed_ref_cache *packed_ref_cache;1875struct ref_dir *loose_dir;1876struct ref_dir *packed_dir;1877int retval =0;18781879/*1880 * We must make sure that all loose refs are read before accessing the1881 * packed-refs file; this avoids a race condition in which loose refs1882 * are migrated to the packed-refs file by a simultaneous process, but1883 * our in-memory view is from before the migration. get_packed_ref_cache()1884 * takes care of making sure our view is up to date with what is on1885 * disk.1886 */1887 loose_dir =get_loose_refs(refs);1888if(base && *base) {1889 loose_dir =find_containing_dir(loose_dir, base,0);1890}1891if(loose_dir)1892prime_ref_dir(loose_dir);18931894 packed_ref_cache =get_packed_ref_cache(refs);1895acquire_packed_ref_cache(packed_ref_cache);1896 packed_dir =get_packed_ref_dir(packed_ref_cache);1897if(base && *base) {1898 packed_dir =find_containing_dir(packed_dir, base,0);1899}19001901if(packed_dir && loose_dir) {1902sort_ref_dir(packed_dir);1903sort_ref_dir(loose_dir);1904 retval =do_for_each_entry_in_dirs(1905 packed_dir, loose_dir, fn, cb_data);1906}else if(packed_dir) {1907sort_ref_dir(packed_dir);1908 retval =do_for_each_entry_in_dir(1909 packed_dir,0, fn, cb_data);1910}else if(loose_dir) {1911sort_ref_dir(loose_dir);1912 retval =do_for_each_entry_in_dir(1913 loose_dir,0, fn, cb_data);1914}19151916release_packed_ref_cache(packed_ref_cache);1917return retval;1918}19191920/*1921 * Call fn for each reference in the specified ref_cache for which the1922 * refname begins with base. If trim is non-zero, then trim that many1923 * characters off the beginning of each refname before passing the1924 * refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to include1925 * broken references in the iteration. If fn ever returns a non-zero1926 * value, stop the iteration and return that value; otherwise, return1927 * 0.1928 */1929static intdo_for_each_ref(struct ref_cache *refs,const char*base,1930 each_ref_fn fn,int trim,int flags,void*cb_data)1931{1932struct ref_entry_cb data;1933 data.base = base;1934 data.trim = trim;1935 data.flags = flags;1936 data.fn = fn;1937 data.cb_data = cb_data;19381939if(ref_paranoia <0)1940 ref_paranoia =git_env_bool("GIT_REF_PARANOIA",0);1941if(ref_paranoia)1942 data.flags |= DO_FOR_EACH_INCLUDE_BROKEN;19431944returndo_for_each_entry(refs, base, do_one_ref, &data);1945}19461947static intdo_head_ref(const char*submodule, each_ref_fn fn,void*cb_data)1948{1949unsigned char sha1[20];1950int flag;19511952if(submodule) {1953if(resolve_gitlink_ref(submodule,"HEAD", sha1) ==0)1954returnfn("HEAD", sha1,0, cb_data);19551956return0;1957}19581959if(!read_ref_full("HEAD", RESOLVE_REF_READING, sha1, &flag))1960returnfn("HEAD", sha1, flag, cb_data);19611962return0;1963}19641965inthead_ref(each_ref_fn fn,void*cb_data)1966{1967returndo_head_ref(NULL, fn, cb_data);1968}19691970inthead_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1971{1972returndo_head_ref(submodule, fn, cb_data);1973}19741975intfor_each_ref(each_ref_fn fn,void*cb_data)1976{1977returndo_for_each_ref(&ref_cache,"", fn,0,0, cb_data);1978}19791980intfor_each_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)1981{1982returndo_for_each_ref(get_ref_cache(submodule),"", fn,0,0, cb_data);1983}19841985intfor_each_ref_in(const char*prefix, each_ref_fn fn,void*cb_data)1986{1987returndo_for_each_ref(&ref_cache, prefix, fn,strlen(prefix),0, cb_data);1988}19891990intfor_each_ref_in_submodule(const char*submodule,const char*prefix,1991 each_ref_fn fn,void*cb_data)1992{1993returndo_for_each_ref(get_ref_cache(submodule), prefix, fn,strlen(prefix),0, cb_data);1994}19951996intfor_each_tag_ref(each_ref_fn fn,void*cb_data)1997{1998returnfor_each_ref_in("refs/tags/", fn, cb_data);1999}20002001intfor_each_tag_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2002{2003returnfor_each_ref_in_submodule(submodule,"refs/tags/", fn, cb_data);2004}20052006intfor_each_branch_ref(each_ref_fn fn,void*cb_data)2007{2008returnfor_each_ref_in("refs/heads/", fn, cb_data);2009}20102011intfor_each_branch_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2012{2013returnfor_each_ref_in_submodule(submodule,"refs/heads/", fn, cb_data);2014}20152016intfor_each_remote_ref(each_ref_fn fn,void*cb_data)2017{2018returnfor_each_ref_in("refs/remotes/", fn, cb_data);2019}20202021intfor_each_remote_ref_submodule(const char*submodule, each_ref_fn fn,void*cb_data)2022{2023returnfor_each_ref_in_submodule(submodule,"refs/remotes/", fn, cb_data);2024}20252026intfor_each_replace_ref(each_ref_fn fn,void*cb_data)2027{2028returndo_for_each_ref(&ref_cache,"refs/replace/", fn,13,0, cb_data);2029}20302031inthead_ref_namespaced(each_ref_fn fn,void*cb_data)2032{2033struct strbuf buf = STRBUF_INIT;2034int ret =0;2035unsigned char sha1[20];2036int flag;20372038strbuf_addf(&buf,"%sHEAD",get_git_namespace());2039if(!read_ref_full(buf.buf, RESOLVE_REF_READING, sha1, &flag))2040 ret =fn(buf.buf, sha1, flag, cb_data);2041strbuf_release(&buf);20422043return ret;2044}20452046intfor_each_namespaced_ref(each_ref_fn fn,void*cb_data)2047{2048struct strbuf buf = STRBUF_INIT;2049int ret;2050strbuf_addf(&buf,"%srefs/",get_git_namespace());2051 ret =do_for_each_ref(&ref_cache, buf.buf, fn,0,0, cb_data);2052strbuf_release(&buf);2053return ret;2054}20552056intfor_each_glob_ref_in(each_ref_fn fn,const char*pattern,2057const char*prefix,void*cb_data)2058{2059struct strbuf real_pattern = STRBUF_INIT;2060struct ref_filter filter;2061int ret;20622063if(!prefix && !starts_with(pattern,"refs/"))2064strbuf_addstr(&real_pattern,"refs/");2065else if(prefix)2066strbuf_addstr(&real_pattern, prefix);2067strbuf_addstr(&real_pattern, pattern);20682069if(!has_glob_specials(pattern)) {2070/* Append implied '/' '*' if not present. */2071if(real_pattern.buf[real_pattern.len -1] !='/')2072strbuf_addch(&real_pattern,'/');2073/* No need to check for '*', there is none. */2074strbuf_addch(&real_pattern,'*');2075}20762077 filter.pattern = real_pattern.buf;2078 filter.fn = fn;2079 filter.cb_data = cb_data;2080 ret =for_each_ref(filter_refs, &filter);20812082strbuf_release(&real_pattern);2083return ret;2084}20852086intfor_each_glob_ref(each_ref_fn fn,const char*pattern,void*cb_data)2087{2088returnfor_each_glob_ref_in(fn, pattern, NULL, cb_data);2089}20902091intfor_each_rawref(each_ref_fn fn,void*cb_data)2092{2093returndo_for_each_ref(&ref_cache,"", fn,0,2094 DO_FOR_EACH_INCLUDE_BROKEN, cb_data);2095}20962097const char*prettify_refname(const char*name)2098{2099return name + (2100starts_with(name,"refs/heads/") ?11:2101starts_with(name,"refs/tags/") ?10:2102starts_with(name,"refs/remotes/") ?13:21030);2104}21052106static const char*ref_rev_parse_rules[] = {2107"%.*s",2108"refs/%.*s",2109"refs/tags/%.*s",2110"refs/heads/%.*s",2111"refs/remotes/%.*s",2112"refs/remotes/%.*s/HEAD",2113 NULL2114};21152116intrefname_match(const char*abbrev_name,const char*full_name)2117{2118const char**p;2119const int abbrev_name_len =strlen(abbrev_name);21202121for(p = ref_rev_parse_rules; *p; p++) {2122if(!strcmp(full_name,mkpath(*p, abbrev_name_len, abbrev_name))) {2123return1;2124}2125}21262127return0;2128}21292130static voidunlock_ref(struct ref_lock *lock)2131{2132/* Do not free lock->lk -- atexit() still looks at them */2133if(lock->lk)2134rollback_lock_file(lock->lk);2135free(lock->ref_name);2136free(lock->orig_ref_name);2137free(lock);2138}21392140/* This function should make sure errno is meaningful on error */2141static struct ref_lock *verify_lock(struct ref_lock *lock,2142const unsigned char*old_sha1,int mustexist)2143{2144if(read_ref_full(lock->ref_name,2145 mustexist ? RESOLVE_REF_READING :0,2146 lock->old_sha1, NULL)) {2147int save_errno = errno;2148error("Can't verify ref%s", lock->ref_name);2149unlock_ref(lock);2150 errno = save_errno;2151return NULL;2152}2153if(hashcmp(lock->old_sha1, old_sha1)) {2154error("Ref%sis at%sbut expected%s", lock->ref_name,2155sha1_to_hex(lock->old_sha1),sha1_to_hex(old_sha1));2156unlock_ref(lock);2157 errno = EBUSY;2158return NULL;2159}2160return lock;2161}21622163static intremove_empty_directories(const char*file)2164{2165/* we want to create a file but there is a directory there;2166 * if that is an empty directory (or a directory that contains2167 * only empty directories), remove them.2168 */2169struct strbuf path;2170int result, save_errno;21712172strbuf_init(&path,20);2173strbuf_addstr(&path, file);21742175 result =remove_dir_recursively(&path, REMOVE_DIR_EMPTY_ONLY);2176 save_errno = errno;21772178strbuf_release(&path);2179 errno = save_errno;21802181return result;2182}21832184/*2185 * *string and *len will only be substituted, and *string returned (for2186 * later free()ing) if the string passed in is a magic short-hand form2187 * to name a branch.2188 */2189static char*substitute_branch_name(const char**string,int*len)2190{2191struct strbuf buf = STRBUF_INIT;2192int ret =interpret_branch_name(*string, *len, &buf);21932194if(ret == *len) {2195size_t size;2196*string =strbuf_detach(&buf, &size);2197*len = size;2198return(char*)*string;2199}22002201return NULL;2202}22032204intdwim_ref(const char*str,int len,unsigned char*sha1,char**ref)2205{2206char*last_branch =substitute_branch_name(&str, &len);2207const char**p, *r;2208int refs_found =0;22092210*ref = NULL;2211for(p = ref_rev_parse_rules; *p; p++) {2212char fullref[PATH_MAX];2213unsigned char sha1_from_ref[20];2214unsigned char*this_result;2215int flag;22162217 this_result = refs_found ? sha1_from_ref : sha1;2218mksnpath(fullref,sizeof(fullref), *p, len, str);2219 r =resolve_ref_unsafe(fullref, RESOLVE_REF_READING,2220 this_result, &flag);2221if(r) {2222if(!refs_found++)2223*ref =xstrdup(r);2224if(!warn_ambiguous_refs)2225break;2226}else if((flag & REF_ISSYMREF) &&strcmp(fullref,"HEAD")) {2227warning("ignoring dangling symref%s.", fullref);2228}else if((flag & REF_ISBROKEN) &&strchr(fullref,'/')) {2229warning("ignoring broken ref%s.", fullref);2230}2231}2232free(last_branch);2233return refs_found;2234}22352236intdwim_log(const char*str,int len,unsigned char*sha1,char**log)2237{2238char*last_branch =substitute_branch_name(&str, &len);2239const char**p;2240int logs_found =0;22412242*log = NULL;2243for(p = ref_rev_parse_rules; *p; p++) {2244unsigned char hash[20];2245char path[PATH_MAX];2246const char*ref, *it;22472248mksnpath(path,sizeof(path), *p, len, str);2249 ref =resolve_ref_unsafe(path, RESOLVE_REF_READING,2250 hash, NULL);2251if(!ref)2252continue;2253if(reflog_exists(path))2254 it = path;2255else if(strcmp(ref, path) &&reflog_exists(ref))2256 it = ref;2257else2258continue;2259if(!logs_found++) {2260*log =xstrdup(it);2261hashcpy(sha1, hash);2262}2263if(!warn_ambiguous_refs)2264break;2265}2266free(last_branch);2267return logs_found;2268}22692270/*2271 * Locks a ref returning the lock on success and NULL on failure.2272 * On failure errno is set to something meaningful.2273 */2274static struct ref_lock *lock_ref_sha1_basic(const char*refname,2275const unsigned char*old_sha1,2276const struct string_list *skip,2277unsigned int flags,int*type_p)2278{2279char*ref_file;2280const char*orig_refname = refname;2281struct ref_lock *lock;2282int last_errno =0;2283int type, lflags;2284int mustexist = (old_sha1 && !is_null_sha1(old_sha1));2285int resolve_flags =0;2286int attempts_remaining =3;22872288 lock =xcalloc(1,sizeof(struct ref_lock));2289 lock->lock_fd = -1;22902291if(mustexist)2292 resolve_flags |= RESOLVE_REF_READING;2293if(flags & REF_DELETING) {2294 resolve_flags |= RESOLVE_REF_ALLOW_BAD_NAME;2295if(flags & REF_NODEREF)2296 resolve_flags |= RESOLVE_REF_NO_RECURSE;2297}22982299 refname =resolve_ref_unsafe(refname, resolve_flags,2300 lock->old_sha1, &type);2301if(!refname && errno == EISDIR) {2302/* we are trying to lock foo but we used to2303 * have foo/bar which now does not exist;2304 * it is normal for the empty directory 'foo'2305 * to remain.2306 */2307 ref_file =git_path("%s", orig_refname);2308if(remove_empty_directories(ref_file)) {2309 last_errno = errno;2310error("there are still refs under '%s'", orig_refname);2311goto error_return;2312}2313 refname =resolve_ref_unsafe(orig_refname, resolve_flags,2314 lock->old_sha1, &type);2315}2316if(type_p)2317*type_p = type;2318if(!refname) {2319 last_errno = errno;2320error("unable to resolve reference%s:%s",2321 orig_refname,strerror(errno));2322goto error_return;2323}2324/*2325 * If the ref did not exist and we are creating it, make sure2326 * there is no existing packed ref whose name begins with our2327 * refname, nor a packed ref whose name is a proper prefix of2328 * our refname.2329 */2330if(is_null_sha1(lock->old_sha1) &&2331!is_refname_available(refname, skip,get_packed_refs(&ref_cache))) {2332 last_errno = ENOTDIR;2333goto error_return;2334}23352336 lock->lk =xcalloc(1,sizeof(struct lock_file));23372338 lflags =0;2339if(flags & REF_NODEREF) {2340 refname = orig_refname;2341 lflags |= LOCK_NO_DEREF;2342}2343 lock->ref_name =xstrdup(refname);2344 lock->orig_ref_name =xstrdup(orig_refname);2345 ref_file =git_path("%s", refname);23462347 retry:2348switch(safe_create_leading_directories(ref_file)) {2349case SCLD_OK:2350break;/* success */2351case SCLD_VANISHED:2352if(--attempts_remaining >0)2353goto retry;2354/* fall through */2355default:2356 last_errno = errno;2357error("unable to create directory for%s", ref_file);2358goto error_return;2359}23602361 lock->lock_fd =hold_lock_file_for_update(lock->lk, ref_file, lflags);2362if(lock->lock_fd <0) {2363 last_errno = errno;2364if(errno == ENOENT && --attempts_remaining >0)2365/*2366 * Maybe somebody just deleted one of the2367 * directories leading to ref_file. Try2368 * again:2369 */2370goto retry;2371else{2372struct strbuf err = STRBUF_INIT;2373unable_to_lock_message(ref_file, errno, &err);2374error("%s", err.buf);2375strbuf_release(&err);2376goto error_return;2377}2378}2379return old_sha1 ?verify_lock(lock, old_sha1, mustexist) : lock;23802381 error_return:2382unlock_ref(lock);2383 errno = last_errno;2384return NULL;2385}23862387/*2388 * Write an entry to the packed-refs file for the specified refname.2389 * If peeled is non-NULL, write it as the entry's peeled value.2390 */2391static voidwrite_packed_entry(FILE*fh,char*refname,unsigned char*sha1,2392unsigned char*peeled)2393{2394fprintf_or_die(fh,"%s %s\n",sha1_to_hex(sha1), refname);2395if(peeled)2396fprintf_or_die(fh,"^%s\n",sha1_to_hex(peeled));2397}23982399/*2400 * An each_ref_entry_fn that writes the entry to a packed-refs file.2401 */2402static intwrite_packed_entry_fn(struct ref_entry *entry,void*cb_data)2403{2404enum peel_status peel_status =peel_entry(entry,0);24052406if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2407error("internal error:%sis not a valid packed reference!",2408 entry->name);2409write_packed_entry(cb_data, entry->name, entry->u.value.sha1,2410 peel_status == PEEL_PEELED ?2411 entry->u.value.peeled : NULL);2412return0;2413}24142415/* This should return a meaningful errno on failure */2416intlock_packed_refs(int flags)2417{2418struct packed_ref_cache *packed_ref_cache;24192420if(hold_lock_file_for_update(&packlock,git_path("packed-refs"), flags) <0)2421return-1;2422/*2423 * Get the current packed-refs while holding the lock. If the2424 * packed-refs file has been modified since we last read it,2425 * this will automatically invalidate the cache and re-read2426 * the packed-refs file.2427 */2428 packed_ref_cache =get_packed_ref_cache(&ref_cache);2429 packed_ref_cache->lock = &packlock;2430/* Increment the reference count to prevent it from being freed: */2431acquire_packed_ref_cache(packed_ref_cache);2432return0;2433}24342435/*2436 * Commit the packed refs changes.2437 * On error we must make sure that errno contains a meaningful value.2438 */2439intcommit_packed_refs(void)2440{2441struct packed_ref_cache *packed_ref_cache =2442get_packed_ref_cache(&ref_cache);2443int error =0;2444int save_errno =0;2445FILE*out;24462447if(!packed_ref_cache->lock)2448die("internal error: packed-refs not locked");24492450 out =fdopen_lock_file(packed_ref_cache->lock,"w");2451if(!out)2452die_errno("unable to fdopen packed-refs descriptor");24532454fprintf_or_die(out,"%s", PACKED_REFS_HEADER);2455do_for_each_entry_in_dir(get_packed_ref_dir(packed_ref_cache),24560, write_packed_entry_fn, out);24572458if(commit_lock_file(packed_ref_cache->lock)) {2459 save_errno = errno;2460 error = -1;2461}2462 packed_ref_cache->lock = NULL;2463release_packed_ref_cache(packed_ref_cache);2464 errno = save_errno;2465return error;2466}24672468voidrollback_packed_refs(void)2469{2470struct packed_ref_cache *packed_ref_cache =2471get_packed_ref_cache(&ref_cache);24722473if(!packed_ref_cache->lock)2474die("internal error: packed-refs not locked");2475rollback_lock_file(packed_ref_cache->lock);2476 packed_ref_cache->lock = NULL;2477release_packed_ref_cache(packed_ref_cache);2478clear_packed_ref_cache(&ref_cache);2479}24802481struct ref_to_prune {2482struct ref_to_prune *next;2483unsigned char sha1[20];2484char name[FLEX_ARRAY];2485};24862487struct pack_refs_cb_data {2488unsigned int flags;2489struct ref_dir *packed_refs;2490struct ref_to_prune *ref_to_prune;2491};24922493/*2494 * An each_ref_entry_fn that is run over loose references only. If2495 * the loose reference can be packed, add an entry in the packed ref2496 * cache. If the reference should be pruned, also add it to2497 * ref_to_prune in the pack_refs_cb_data.2498 */2499static intpack_if_possible_fn(struct ref_entry *entry,void*cb_data)2500{2501struct pack_refs_cb_data *cb = cb_data;2502enum peel_status peel_status;2503struct ref_entry *packed_entry;2504int is_tag_ref =starts_with(entry->name,"refs/tags/");25052506/* ALWAYS pack tags */2507if(!(cb->flags & PACK_REFS_ALL) && !is_tag_ref)2508return0;25092510/* Do not pack symbolic or broken refs: */2511if((entry->flag & REF_ISSYMREF) || !ref_resolves_to_object(entry))2512return0;25132514/* Add a packed ref cache entry equivalent to the loose entry. */2515 peel_status =peel_entry(entry,1);2516if(peel_status != PEEL_PEELED && peel_status != PEEL_NON_TAG)2517die("internal error peeling reference%s(%s)",2518 entry->name,sha1_to_hex(entry->u.value.sha1));2519 packed_entry =find_ref(cb->packed_refs, entry->name);2520if(packed_entry) {2521/* Overwrite existing packed entry with info from loose entry */2522 packed_entry->flag = REF_ISPACKED | REF_KNOWS_PEELED;2523hashcpy(packed_entry->u.value.sha1, entry->u.value.sha1);2524}else{2525 packed_entry =create_ref_entry(entry->name, entry->u.value.sha1,2526 REF_ISPACKED | REF_KNOWS_PEELED,0);2527add_ref(cb->packed_refs, packed_entry);2528}2529hashcpy(packed_entry->u.value.peeled, entry->u.value.peeled);25302531/* Schedule the loose reference for pruning if requested. */2532if((cb->flags & PACK_REFS_PRUNE)) {2533int namelen =strlen(entry->name) +1;2534struct ref_to_prune *n =xcalloc(1,sizeof(*n) + namelen);2535hashcpy(n->sha1, entry->u.value.sha1);2536strcpy(n->name, entry->name);2537 n->next = cb->ref_to_prune;2538 cb->ref_to_prune = n;2539}2540return0;2541}25422543/*2544 * Remove empty parents, but spare refs/ and immediate subdirs.2545 * Note: munges *name.2546 */2547static voidtry_remove_empty_parents(char*name)2548{2549char*p, *q;2550int i;2551 p = name;2552for(i =0; i <2; i++) {/* refs/{heads,tags,...}/ */2553while(*p && *p !='/')2554 p++;2555/* tolerate duplicate slashes; see check_refname_format() */2556while(*p =='/')2557 p++;2558}2559for(q = p; *q; q++)2560;2561while(1) {2562while(q > p && *q !='/')2563 q--;2564while(q > p && *(q-1) =='/')2565 q--;2566if(q == p)2567break;2568*q ='\0';2569if(rmdir(git_path("%s", name)))2570break;2571}2572}25732574/* make sure nobody touched the ref, and unlink */2575static voidprune_ref(struct ref_to_prune *r)2576{2577struct ref_transaction *transaction;2578struct strbuf err = STRBUF_INIT;25792580if(check_refname_format(r->name,0))2581return;25822583 transaction =ref_transaction_begin(&err);2584if(!transaction ||2585ref_transaction_delete(transaction, r->name, r->sha1,2586 REF_ISPRUNING, NULL, &err) ||2587ref_transaction_commit(transaction, &err)) {2588ref_transaction_free(transaction);2589error("%s", err.buf);2590strbuf_release(&err);2591return;2592}2593ref_transaction_free(transaction);2594strbuf_release(&err);2595try_remove_empty_parents(r->name);2596}25972598static voidprune_refs(struct ref_to_prune *r)2599{2600while(r) {2601prune_ref(r);2602 r = r->next;2603}2604}26052606intpack_refs(unsigned int flags)2607{2608struct pack_refs_cb_data cbdata;26092610memset(&cbdata,0,sizeof(cbdata));2611 cbdata.flags = flags;26122613lock_packed_refs(LOCK_DIE_ON_ERROR);2614 cbdata.packed_refs =get_packed_refs(&ref_cache);26152616do_for_each_entry_in_dir(get_loose_refs(&ref_cache),0,2617 pack_if_possible_fn, &cbdata);26182619if(commit_packed_refs())2620die_errno("unable to overwrite old ref-pack file");26212622prune_refs(cbdata.ref_to_prune);2623return0;2624}26252626intrepack_without_refs(struct string_list *refnames,struct strbuf *err)2627{2628struct ref_dir *packed;2629struct string_list_item *refname;2630int ret, needs_repacking =0, removed =0;26312632assert(err);26332634/* Look for a packed ref */2635for_each_string_list_item(refname, refnames) {2636if(get_packed_ref(refname->string)) {2637 needs_repacking =1;2638break;2639}2640}26412642/* Avoid locking if we have nothing to do */2643if(!needs_repacking)2644return0;/* no refname exists in packed refs */26452646if(lock_packed_refs(0)) {2647unable_to_lock_message(git_path("packed-refs"), errno, err);2648return-1;2649}2650 packed =get_packed_refs(&ref_cache);26512652/* Remove refnames from the cache */2653for_each_string_list_item(refname, refnames)2654if(remove_entry(packed, refname->string) != -1)2655 removed =1;2656if(!removed) {2657/*2658 * All packed entries disappeared while we were2659 * acquiring the lock.2660 */2661rollback_packed_refs();2662return0;2663}26642665/* Write what remains */2666 ret =commit_packed_refs();2667if(ret)2668strbuf_addf(err,"unable to overwrite old ref-pack file:%s",2669strerror(errno));2670return ret;2671}26722673static intdelete_ref_loose(struct ref_lock *lock,int flag,struct strbuf *err)2674{2675assert(err);26762677if(!(flag & REF_ISPACKED) || flag & REF_ISSYMREF) {2678/*2679 * loose. The loose file name is the same as the2680 * lockfile name, minus ".lock":2681 */2682char*loose_filename =get_locked_file_path(lock->lk);2683int res =unlink_or_msg(loose_filename, err);2684free(loose_filename);2685if(res)2686return1;2687}2688return0;2689}26902691intdelete_ref(const char*refname,const unsigned char*sha1,unsigned int flags)2692{2693struct ref_transaction *transaction;2694struct strbuf err = STRBUF_INIT;26952696 transaction =ref_transaction_begin(&err);2697if(!transaction ||2698ref_transaction_delete(transaction, refname,2699(sha1 && !is_null_sha1(sha1)) ? sha1 : NULL,2700 flags, NULL, &err) ||2701ref_transaction_commit(transaction, &err)) {2702error("%s", err.buf);2703ref_transaction_free(transaction);2704strbuf_release(&err);2705return1;2706}2707ref_transaction_free(transaction);2708strbuf_release(&err);2709return0;2710}27112712/*2713 * People using contrib's git-new-workdir have .git/logs/refs ->2714 * /some/other/path/.git/logs/refs, and that may live on another device.2715 *2716 * IOW, to avoid cross device rename errors, the temporary renamed log must2717 * live into logs/refs.2718 */2719#define TMP_RENAMED_LOG"logs/refs/.tmp-renamed-log"27202721static intrename_tmp_log(const char*newrefname)2722{2723int attempts_remaining =4;27242725 retry:2726switch(safe_create_leading_directories(git_path("logs/%s", newrefname))) {2727case SCLD_OK:2728break;/* success */2729case SCLD_VANISHED:2730if(--attempts_remaining >0)2731goto retry;2732/* fall through */2733default:2734error("unable to create directory for%s", newrefname);2735return-1;2736}27372738if(rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", newrefname))) {2739if((errno==EISDIR || errno==ENOTDIR) && --attempts_remaining >0) {2740/*2741 * rename(a, b) when b is an existing2742 * directory ought to result in ISDIR, but2743 * Solaris 5.8 gives ENOTDIR. Sheesh.2744 */2745if(remove_empty_directories(git_path("logs/%s", newrefname))) {2746error("Directory not empty: logs/%s", newrefname);2747return-1;2748}2749goto retry;2750}else if(errno == ENOENT && --attempts_remaining >0) {2751/*2752 * Maybe another process just deleted one of2753 * the directories in the path to newrefname.2754 * Try again from the beginning.2755 */2756goto retry;2757}else{2758error("unable to move logfile "TMP_RENAMED_LOG" to logs/%s:%s",2759 newrefname,strerror(errno));2760return-1;2761}2762}2763return0;2764}27652766static intrename_ref_available(const char*oldname,const char*newname)2767{2768struct string_list skip = STRING_LIST_INIT_NODUP;2769int ret;27702771string_list_insert(&skip, oldname);2772 ret =is_refname_available(newname, &skip,get_packed_refs(&ref_cache))2773&&is_refname_available(newname, &skip,get_loose_refs(&ref_cache));2774string_list_clear(&skip,0);2775return ret;2776}27772778static intwrite_ref_sha1(struct ref_lock *lock,const unsigned char*sha1,2779const char*logmsg);27802781intrename_ref(const char*oldrefname,const char*newrefname,const char*logmsg)2782{2783unsigned char sha1[20], orig_sha1[20];2784int flag =0, logmoved =0;2785struct ref_lock *lock;2786struct stat loginfo;2787int log = !lstat(git_path("logs/%s", oldrefname), &loginfo);2788const char*symref = NULL;27892790if(log &&S_ISLNK(loginfo.st_mode))2791returnerror("reflog for%sis a symlink", oldrefname);27922793 symref =resolve_ref_unsafe(oldrefname, RESOLVE_REF_READING,2794 orig_sha1, &flag);2795if(flag & REF_ISSYMREF)2796returnerror("refname%sis a symbolic ref, renaming it is not supported",2797 oldrefname);2798if(!symref)2799returnerror("refname%snot found", oldrefname);28002801if(!rename_ref_available(oldrefname, newrefname))2802return1;28032804if(log &&rename(git_path("logs/%s", oldrefname),git_path(TMP_RENAMED_LOG)))2805returnerror("unable to move logfile logs/%sto "TMP_RENAMED_LOG":%s",2806 oldrefname,strerror(errno));28072808if(delete_ref(oldrefname, orig_sha1, REF_NODEREF)) {2809error("unable to delete old%s", oldrefname);2810goto rollback;2811}28122813if(!read_ref_full(newrefname, RESOLVE_REF_READING, sha1, NULL) &&2814delete_ref(newrefname, sha1, REF_NODEREF)) {2815if(errno==EISDIR) {2816if(remove_empty_directories(git_path("%s", newrefname))) {2817error("Directory not empty:%s", newrefname);2818goto rollback;2819}2820}else{2821error("unable to delete existing%s", newrefname);2822goto rollback;2823}2824}28252826if(log &&rename_tmp_log(newrefname))2827goto rollback;28282829 logmoved = log;28302831 lock =lock_ref_sha1_basic(newrefname, NULL, NULL,0, NULL);2832if(!lock) {2833error("unable to lock%sfor update", newrefname);2834goto rollback;2835}2836hashcpy(lock->old_sha1, orig_sha1);2837if(write_ref_sha1(lock, orig_sha1, logmsg)) {2838error("unable to write current sha1 into%s", newrefname);2839goto rollback;2840}28412842return0;28432844 rollback:2845 lock =lock_ref_sha1_basic(oldrefname, NULL, NULL,0, NULL);2846if(!lock) {2847error("unable to lock%sfor rollback", oldrefname);2848goto rollbacklog;2849}28502851 flag = log_all_ref_updates;2852 log_all_ref_updates =0;2853if(write_ref_sha1(lock, orig_sha1, NULL))2854error("unable to write current sha1 into%s", oldrefname);2855 log_all_ref_updates = flag;28562857 rollbacklog:2858if(logmoved &&rename(git_path("logs/%s", newrefname),git_path("logs/%s", oldrefname)))2859error("unable to restore logfile%sfrom%s:%s",2860 oldrefname, newrefname,strerror(errno));2861if(!logmoved && log &&2862rename(git_path(TMP_RENAMED_LOG),git_path("logs/%s", oldrefname)))2863error("unable to restore logfile%sfrom "TMP_RENAMED_LOG":%s",2864 oldrefname,strerror(errno));28652866return1;2867}28682869static intclose_ref(struct ref_lock *lock)2870{2871if(close_lock_file(lock->lk))2872return-1;2873 lock->lock_fd = -1;2874return0;2875}28762877static intcommit_ref(struct ref_lock *lock)2878{2879if(commit_lock_file(lock->lk))2880return-1;2881 lock->lock_fd = -1;2882return0;2883}28842885/*2886 * copy the reflog message msg to buf, which has been allocated sufficiently2887 * large, while cleaning up the whitespaces. Especially, convert LF to space,2888 * because reflog file is one line per entry.2889 */2890static intcopy_msg(char*buf,const char*msg)2891{2892char*cp = buf;2893char c;2894int wasspace =1;28952896*cp++ ='\t';2897while((c = *msg++)) {2898if(wasspace &&isspace(c))2899continue;2900 wasspace =isspace(c);2901if(wasspace)2902 c =' ';2903*cp++ = c;2904}2905while(buf < cp &&isspace(cp[-1]))2906 cp--;2907*cp++ ='\n';2908return cp - buf;2909}29102911/* This function must set a meaningful errno on failure */2912intlog_ref_setup(const char*refname,char*logfile,int bufsize)2913{2914int logfd, oflags = O_APPEND | O_WRONLY;29152916git_snpath(logfile, bufsize,"logs/%s", refname);2917if(log_all_ref_updates &&2918(starts_with(refname,"refs/heads/") ||2919starts_with(refname,"refs/remotes/") ||2920starts_with(refname,"refs/notes/") ||2921!strcmp(refname,"HEAD"))) {2922if(safe_create_leading_directories(logfile) <0) {2923int save_errno = errno;2924error("unable to create directory for%s", logfile);2925 errno = save_errno;2926return-1;2927}2928 oflags |= O_CREAT;2929}29302931 logfd =open(logfile, oflags,0666);2932if(logfd <0) {2933if(!(oflags & O_CREAT) && (errno == ENOENT || errno == EISDIR))2934return0;29352936if(errno == EISDIR) {2937if(remove_empty_directories(logfile)) {2938int save_errno = errno;2939error("There are still logs under '%s'",2940 logfile);2941 errno = save_errno;2942return-1;2943}2944 logfd =open(logfile, oflags,0666);2945}29462947if(logfd <0) {2948int save_errno = errno;2949error("Unable to append to%s:%s", logfile,2950strerror(errno));2951 errno = save_errno;2952return-1;2953}2954}29552956adjust_shared_perm(logfile);2957close(logfd);2958return0;2959}29602961static intlog_ref_write_fd(int fd,const unsigned char*old_sha1,2962const unsigned char*new_sha1,2963const char*committer,const char*msg)2964{2965int msglen, written;2966unsigned maxlen, len;2967char*logrec;29682969 msglen = msg ?strlen(msg) :0;2970 maxlen =strlen(committer) + msglen +100;2971 logrec =xmalloc(maxlen);2972 len =sprintf(logrec,"%s %s %s\n",2973sha1_to_hex(old_sha1),2974sha1_to_hex(new_sha1),2975 committer);2976if(msglen)2977 len +=copy_msg(logrec + len -1, msg) -1;29782979 written = len <= maxlen ?write_in_full(fd, logrec, len) : -1;2980free(logrec);2981if(written != len)2982return-1;29832984return0;2985}29862987static intlog_ref_write(const char*refname,const unsigned char*old_sha1,2988const unsigned char*new_sha1,const char*msg)2989{2990int logfd, result, oflags = O_APPEND | O_WRONLY;2991char log_file[PATH_MAX];29922993if(log_all_ref_updates <0)2994 log_all_ref_updates = !is_bare_repository();29952996 result =log_ref_setup(refname, log_file,sizeof(log_file));2997if(result)2998return result;29993000 logfd =open(log_file, oflags);3001if(logfd <0)3002return0;3003 result =log_ref_write_fd(logfd, old_sha1, new_sha1,3004git_committer_info(0), msg);3005if(result) {3006int save_errno = errno;3007close(logfd);3008error("Unable to append to%s", log_file);3009 errno = save_errno;3010return-1;3011}3012if(close(logfd)) {3013int save_errno = errno;3014error("Unable to append to%s", log_file);3015 errno = save_errno;3016return-1;3017}3018return0;3019}30203021intis_branch(const char*refname)3022{3023return!strcmp(refname,"HEAD") ||starts_with(refname,"refs/heads/");3024}30253026/*3027 * Write sha1 into the ref specified by the lock. Make sure that errno3028 * is sane on error.3029 */3030static intwrite_ref_sha1(struct ref_lock *lock,3031const unsigned char*sha1,const char*logmsg)3032{3033static char term ='\n';3034struct object *o;30353036 o =parse_object(sha1);3037if(!o) {3038error("Trying to write ref%swith nonexistent object%s",3039 lock->ref_name,sha1_to_hex(sha1));3040unlock_ref(lock);3041 errno = EINVAL;3042return-1;3043}3044if(o->type != OBJ_COMMIT &&is_branch(lock->ref_name)) {3045error("Trying to write non-commit object%sto branch%s",3046sha1_to_hex(sha1), lock->ref_name);3047unlock_ref(lock);3048 errno = EINVAL;3049return-1;3050}3051if(write_in_full(lock->lock_fd,sha1_to_hex(sha1),40) !=40||3052write_in_full(lock->lock_fd, &term,1) !=1||3053close_ref(lock) <0) {3054int save_errno = errno;3055error("Couldn't write%s", lock->lk->filename.buf);3056unlock_ref(lock);3057 errno = save_errno;3058return-1;3059}3060clear_loose_ref_cache(&ref_cache);3061if(log_ref_write(lock->ref_name, lock->old_sha1, sha1, logmsg) <0||3062(strcmp(lock->ref_name, lock->orig_ref_name) &&3063log_ref_write(lock->orig_ref_name, lock->old_sha1, sha1, logmsg) <0)) {3064unlock_ref(lock);3065return-1;3066}3067if(strcmp(lock->orig_ref_name,"HEAD") !=0) {3068/*3069 * Special hack: If a branch is updated directly and HEAD3070 * points to it (may happen on the remote side of a push3071 * for example) then logically the HEAD reflog should be3072 * updated too.3073 * A generic solution implies reverse symref information,3074 * but finding all symrefs pointing to the given branch3075 * would be rather costly for this rare event (the direct3076 * update of a branch) to be worth it. So let's cheat and3077 * check with HEAD only which should cover 99% of all usage3078 * scenarios (even 100% of the default ones).3079 */3080unsigned char head_sha1[20];3081int head_flag;3082const char*head_ref;3083 head_ref =resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,3084 head_sha1, &head_flag);3085if(head_ref && (head_flag & REF_ISSYMREF) &&3086!strcmp(head_ref, lock->ref_name))3087log_ref_write("HEAD", lock->old_sha1, sha1, logmsg);3088}3089if(commit_ref(lock)) {3090error("Couldn't set%s", lock->ref_name);3091unlock_ref(lock);3092return-1;3093}3094unlock_ref(lock);3095return0;3096}30973098intcreate_symref(const char*ref_target,const char*refs_heads_master,3099const char*logmsg)3100{3101const char*lockpath;3102char ref[1000];3103int fd, len, written;3104char*git_HEAD =git_pathdup("%s", ref_target);3105unsigned char old_sha1[20], new_sha1[20];31063107if(logmsg &&read_ref(ref_target, old_sha1))3108hashclr(old_sha1);31093110if(safe_create_leading_directories(git_HEAD) <0)3111returnerror("unable to create directory for%s", git_HEAD);31123113#ifndef NO_SYMLINK_HEAD3114if(prefer_symlink_refs) {3115unlink(git_HEAD);3116if(!symlink(refs_heads_master, git_HEAD))3117goto done;3118fprintf(stderr,"no symlink - falling back to symbolic ref\n");3119}3120#endif31213122 len =snprintf(ref,sizeof(ref),"ref:%s\n", refs_heads_master);3123if(sizeof(ref) <= len) {3124error("refname too long:%s", refs_heads_master);3125goto error_free_return;3126}3127 lockpath =mkpath("%s.lock", git_HEAD);3128 fd =open(lockpath, O_CREAT | O_EXCL | O_WRONLY,0666);3129if(fd <0) {3130error("Unable to open%sfor writing", lockpath);3131goto error_free_return;3132}3133 written =write_in_full(fd, ref, len);3134if(close(fd) !=0|| written != len) {3135error("Unable to write to%s", lockpath);3136goto error_unlink_return;3137}3138if(rename(lockpath, git_HEAD) <0) {3139error("Unable to create%s", git_HEAD);3140goto error_unlink_return;3141}3142if(adjust_shared_perm(git_HEAD)) {3143error("Unable to fix permissions on%s", lockpath);3144 error_unlink_return:3145unlink_or_warn(lockpath);3146 error_free_return:3147free(git_HEAD);3148return-1;3149}31503151#ifndef NO_SYMLINK_HEAD3152 done:3153#endif3154if(logmsg && !read_ref(refs_heads_master, new_sha1))3155log_ref_write(ref_target, old_sha1, new_sha1, logmsg);31563157free(git_HEAD);3158return0;3159}31603161struct read_ref_at_cb {3162const char*refname;3163unsigned long at_time;3164int cnt;3165int reccnt;3166unsigned char*sha1;3167int found_it;31683169unsigned char osha1[20];3170unsigned char nsha1[20];3171int tz;3172unsigned long date;3173char**msg;3174unsigned long*cutoff_time;3175int*cutoff_tz;3176int*cutoff_cnt;3177};31783179static intread_ref_at_ent(unsigned char*osha1,unsigned char*nsha1,3180const char*email,unsigned long timestamp,int tz,3181const char*message,void*cb_data)3182{3183struct read_ref_at_cb *cb = cb_data;31843185 cb->reccnt++;3186 cb->tz = tz;3187 cb->date = timestamp;31883189if(timestamp <= cb->at_time || cb->cnt ==0) {3190if(cb->msg)3191*cb->msg =xstrdup(message);3192if(cb->cutoff_time)3193*cb->cutoff_time = timestamp;3194if(cb->cutoff_tz)3195*cb->cutoff_tz = tz;3196if(cb->cutoff_cnt)3197*cb->cutoff_cnt = cb->reccnt -1;3198/*3199 * we have not yet updated cb->[n|o]sha1 so they still3200 * hold the values for the previous record.3201 */3202if(!is_null_sha1(cb->osha1)) {3203hashcpy(cb->sha1, nsha1);3204if(hashcmp(cb->osha1, nsha1))3205warning("Log for ref%shas gap after%s.",3206 cb->refname,show_date(cb->date, cb->tz, DATE_RFC2822));3207}3208else if(cb->date == cb->at_time)3209hashcpy(cb->sha1, nsha1);3210else if(hashcmp(nsha1, cb->sha1))3211warning("Log for ref%sunexpectedly ended on%s.",3212 cb->refname,show_date(cb->date, cb->tz,3213 DATE_RFC2822));3214hashcpy(cb->osha1, osha1);3215hashcpy(cb->nsha1, nsha1);3216 cb->found_it =1;3217return1;3218}3219hashcpy(cb->osha1, osha1);3220hashcpy(cb->nsha1, nsha1);3221if(cb->cnt >0)3222 cb->cnt--;3223return0;3224}32253226static intread_ref_at_ent_oldest(unsigned char*osha1,unsigned char*nsha1,3227const char*email,unsigned long timestamp,3228int tz,const char*message,void*cb_data)3229{3230struct read_ref_at_cb *cb = cb_data;32313232if(cb->msg)3233*cb->msg =xstrdup(message);3234if(cb->cutoff_time)3235*cb->cutoff_time = timestamp;3236if(cb->cutoff_tz)3237*cb->cutoff_tz = tz;3238if(cb->cutoff_cnt)3239*cb->cutoff_cnt = cb->reccnt;3240hashcpy(cb->sha1, osha1);3241if(is_null_sha1(cb->sha1))3242hashcpy(cb->sha1, nsha1);3243/* We just want the first entry */3244return1;3245}32463247intread_ref_at(const char*refname,unsigned int flags,unsigned long at_time,int cnt,3248unsigned char*sha1,char**msg,3249unsigned long*cutoff_time,int*cutoff_tz,int*cutoff_cnt)3250{3251struct read_ref_at_cb cb;32523253memset(&cb,0,sizeof(cb));3254 cb.refname = refname;3255 cb.at_time = at_time;3256 cb.cnt = cnt;3257 cb.msg = msg;3258 cb.cutoff_time = cutoff_time;3259 cb.cutoff_tz = cutoff_tz;3260 cb.cutoff_cnt = cutoff_cnt;3261 cb.sha1 = sha1;32623263for_each_reflog_ent_reverse(refname, read_ref_at_ent, &cb);32643265if(!cb.reccnt) {3266if(flags & GET_SHA1_QUIETLY)3267exit(128);3268else3269die("Log for%sis empty.", refname);3270}3271if(cb.found_it)3272return0;32733274for_each_reflog_ent(refname, read_ref_at_ent_oldest, &cb);32753276return1;3277}32783279intreflog_exists(const char*refname)3280{3281struct stat st;32823283return!lstat(git_path("logs/%s", refname), &st) &&3284S_ISREG(st.st_mode);3285}32863287intdelete_reflog(const char*refname)3288{3289returnremove_path(git_path("logs/%s", refname));3290}32913292static intshow_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn,void*cb_data)3293{3294unsigned char osha1[20], nsha1[20];3295char*email_end, *message;3296unsigned long timestamp;3297int tz;32983299/* old SP new SP name <email> SP time TAB msg LF */3300if(sb->len <83|| sb->buf[sb->len -1] !='\n'||3301get_sha1_hex(sb->buf, osha1) || sb->buf[40] !=' '||3302get_sha1_hex(sb->buf +41, nsha1) || sb->buf[81] !=' '||3303!(email_end =strchr(sb->buf +82,'>')) ||3304 email_end[1] !=' '||3305!(timestamp =strtoul(email_end +2, &message,10)) ||3306!message || message[0] !=' '||3307(message[1] !='+'&& message[1] !='-') ||3308!isdigit(message[2]) || !isdigit(message[3]) ||3309!isdigit(message[4]) || !isdigit(message[5]))3310return0;/* corrupt? */3311 email_end[1] ='\0';3312 tz =strtol(message +1, NULL,10);3313if(message[6] !='\t')3314 message +=6;3315else3316 message +=7;3317returnfn(osha1, nsha1, sb->buf +82, timestamp, tz, message, cb_data);3318}33193320static char*find_beginning_of_line(char*bob,char*scan)3321{3322while(bob < scan && *(--scan) !='\n')3323;/* keep scanning backwards */3324/*3325 * Return either beginning of the buffer, or LF at the end of3326 * the previous line.3327 */3328return scan;3329}33303331intfor_each_reflog_ent_reverse(const char*refname, each_reflog_ent_fn fn,void*cb_data)3332{3333struct strbuf sb = STRBUF_INIT;3334FILE*logfp;3335long pos;3336int ret =0, at_tail =1;33373338 logfp =fopen(git_path("logs/%s", refname),"r");3339if(!logfp)3340return-1;33413342/* Jump to the end */3343if(fseek(logfp,0, SEEK_END) <0)3344returnerror("cannot seek back reflog for%s:%s",3345 refname,strerror(errno));3346 pos =ftell(logfp);3347while(!ret &&0< pos) {3348int cnt;3349size_t nread;3350char buf[BUFSIZ];3351char*endp, *scanp;33523353/* Fill next block from the end */3354 cnt = (sizeof(buf) < pos) ?sizeof(buf) : pos;3355if(fseek(logfp, pos - cnt, SEEK_SET))3356returnerror("cannot seek back reflog for%s:%s",3357 refname,strerror(errno));3358 nread =fread(buf, cnt,1, logfp);3359if(nread !=1)3360returnerror("cannot read%dbytes from reflog for%s:%s",3361 cnt, refname,strerror(errno));3362 pos -= cnt;33633364 scanp = endp = buf + cnt;3365if(at_tail && scanp[-1] =='\n')3366/* Looking at the final LF at the end of the file */3367 scanp--;3368 at_tail =0;33693370while(buf < scanp) {3371/*3372 * terminating LF of the previous line, or the beginning3373 * of the buffer.3374 */3375char*bp;33763377 bp =find_beginning_of_line(buf, scanp);33783379if(*bp =='\n') {3380/*3381 * The newline is the end of the previous line,3382 * so we know we have complete line starting3383 * at (bp + 1). Prefix it onto any prior data3384 * we collected for the line and process it.3385 */3386strbuf_splice(&sb,0,0, bp +1, endp - (bp +1));3387 scanp = bp;3388 endp = bp +1;3389 ret =show_one_reflog_ent(&sb, fn, cb_data);3390strbuf_reset(&sb);3391if(ret)3392break;3393}else if(!pos) {3394/*3395 * We are at the start of the buffer, and the3396 * start of the file; there is no previous3397 * line, and we have everything for this one.3398 * Process it, and we can end the loop.3399 */3400strbuf_splice(&sb,0,0, buf, endp - buf);3401 ret =show_one_reflog_ent(&sb, fn, cb_data);3402strbuf_reset(&sb);3403break;3404}34053406if(bp == buf) {3407/*3408 * We are at the start of the buffer, and there3409 * is more file to read backwards. Which means3410 * we are in the middle of a line. Note that we3411 * may get here even if *bp was a newline; that3412 * just means we are at the exact end of the3413 * previous line, rather than some spot in the3414 * middle.3415 *3416 * Save away what we have to be combined with3417 * the data from the next read.3418 */3419strbuf_splice(&sb,0,0, buf, endp - buf);3420break;3421}3422}34233424}3425if(!ret && sb.len)3426die("BUG: reverse reflog parser had leftover data");34273428fclose(logfp);3429strbuf_release(&sb);3430return ret;3431}34323433intfor_each_reflog_ent(const char*refname, each_reflog_ent_fn fn,void*cb_data)3434{3435FILE*logfp;3436struct strbuf sb = STRBUF_INIT;3437int ret =0;34383439 logfp =fopen(git_path("logs/%s", refname),"r");3440if(!logfp)3441return-1;34423443while(!ret && !strbuf_getwholeline(&sb, logfp,'\n'))3444 ret =show_one_reflog_ent(&sb, fn, cb_data);3445fclose(logfp);3446strbuf_release(&sb);3447return ret;3448}3449/*3450 * Call fn for each reflog in the namespace indicated by name. name3451 * must be empty or end with '/'. Name will be used as a scratch3452 * space, but its contents will be restored before return.3453 */3454static intdo_for_each_reflog(struct strbuf *name, each_ref_fn fn,void*cb_data)3455{3456DIR*d =opendir(git_path("logs/%s", name->buf));3457int retval =0;3458struct dirent *de;3459int oldlen = name->len;34603461if(!d)3462return name->len ? errno :0;34633464while((de =readdir(d)) != NULL) {3465struct stat st;34663467if(de->d_name[0] =='.')3468continue;3469if(ends_with(de->d_name,".lock"))3470continue;3471strbuf_addstr(name, de->d_name);3472if(stat(git_path("logs/%s", name->buf), &st) <0) {3473;/* silently ignore */3474}else{3475if(S_ISDIR(st.st_mode)) {3476strbuf_addch(name,'/');3477 retval =do_for_each_reflog(name, fn, cb_data);3478}else{3479unsigned char sha1[20];3480if(read_ref_full(name->buf,0, sha1, NULL))3481 retval =error("bad ref for%s", name->buf);3482else3483 retval =fn(name->buf, sha1,0, cb_data);3484}3485if(retval)3486break;3487}3488strbuf_setlen(name, oldlen);3489}3490closedir(d);3491return retval;3492}34933494intfor_each_reflog(each_ref_fn fn,void*cb_data)3495{3496int retval;3497struct strbuf name;3498strbuf_init(&name, PATH_MAX);3499 retval =do_for_each_reflog(&name, fn, cb_data);3500strbuf_release(&name);3501return retval;3502}35033504/**3505 * Information needed for a single ref update. Set new_sha1 to the new3506 * value or to null_sha1 to delete the ref. To check the old value3507 * while the ref is locked, set (flags & REF_HAVE_OLD) and set3508 * old_sha1 to the old value, or to null_sha1 to ensure the ref does3509 * not exist before update.3510 */3511struct ref_update {3512/*3513 * If (flags & REF_HAVE_NEW), set the reference to this value:3514 */3515unsigned char new_sha1[20];3516/*3517 * If (flags & REF_HAVE_OLD), check that the reference3518 * previously had this value:3519 */3520unsigned char old_sha1[20];3521/*3522 * One or more of REF_HAVE_NEW, REF_HAVE_OLD, REF_NODEREF,3523 * REF_DELETING, and REF_ISPRUNING:3524 */3525unsigned int flags;3526struct ref_lock *lock;3527int type;3528char*msg;3529const char refname[FLEX_ARRAY];3530};35313532/*3533 * Transaction states.3534 * OPEN: The transaction is in a valid state and can accept new updates.3535 * An OPEN transaction can be committed.3536 * CLOSED: A closed transaction is no longer active and no other operations3537 * than free can be used on it in this state.3538 * A transaction can either become closed by successfully committing3539 * an active transaction or if there is a failure while building3540 * the transaction thus rendering it failed/inactive.3541 */3542enum ref_transaction_state {3543 REF_TRANSACTION_OPEN =0,3544 REF_TRANSACTION_CLOSED =13545};35463547/*3548 * Data structure for holding a reference transaction, which can3549 * consist of checks and updates to multiple references, carried out3550 * as atomically as possible. This structure is opaque to callers.3551 */3552struct ref_transaction {3553struct ref_update **updates;3554size_t alloc;3555size_t nr;3556enum ref_transaction_state state;3557};35583559struct ref_transaction *ref_transaction_begin(struct strbuf *err)3560{3561assert(err);35623563returnxcalloc(1,sizeof(struct ref_transaction));3564}35653566voidref_transaction_free(struct ref_transaction *transaction)3567{3568int i;35693570if(!transaction)3571return;35723573for(i =0; i < transaction->nr; i++) {3574free(transaction->updates[i]->msg);3575free(transaction->updates[i]);3576}3577free(transaction->updates);3578free(transaction);3579}35803581static struct ref_update *add_update(struct ref_transaction *transaction,3582const char*refname)3583{3584size_t len =strlen(refname);3585struct ref_update *update =xcalloc(1,sizeof(*update) + len +1);35863587strcpy((char*)update->refname, refname);3588ALLOC_GROW(transaction->updates, transaction->nr +1, transaction->alloc);3589 transaction->updates[transaction->nr++] = update;3590return update;3591}35923593intref_transaction_update(struct ref_transaction *transaction,3594const char*refname,3595const unsigned char*new_sha1,3596const unsigned char*old_sha1,3597unsigned int flags,const char*msg,3598struct strbuf *err)3599{3600struct ref_update *update;36013602assert(err);36033604if(transaction->state != REF_TRANSACTION_OPEN)3605die("BUG: update called for transaction that is not open");36063607if(new_sha1 && !is_null_sha1(new_sha1) &&3608check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {3609strbuf_addf(err,"refusing to update ref with bad name%s",3610 refname);3611return-1;3612}36133614 update =add_update(transaction, refname);3615if(new_sha1) {3616hashcpy(update->new_sha1, new_sha1);3617 flags |= REF_HAVE_NEW;3618}3619if(old_sha1) {3620hashcpy(update->old_sha1, old_sha1);3621 flags |= REF_HAVE_OLD;3622}3623 update->flags = flags;3624if(msg)3625 update->msg =xstrdup(msg);3626return0;3627}36283629intref_transaction_create(struct ref_transaction *transaction,3630const char*refname,3631const unsigned char*new_sha1,3632unsigned int flags,const char*msg,3633struct strbuf *err)3634{3635if(!new_sha1 ||is_null_sha1(new_sha1))3636die("BUG: create called without valid new_sha1");3637returnref_transaction_update(transaction, refname, new_sha1,3638 null_sha1, flags, msg, err);3639}36403641intref_transaction_delete(struct ref_transaction *transaction,3642const char*refname,3643const unsigned char*old_sha1,3644unsigned int flags,const char*msg,3645struct strbuf *err)3646{3647if(old_sha1 &&is_null_sha1(old_sha1))3648die("BUG: delete called with old_sha1 set to zeros");3649returnref_transaction_update(transaction, refname,3650 null_sha1, old_sha1,3651 flags, msg, err);3652}36533654intref_transaction_verify(struct ref_transaction *transaction,3655const char*refname,3656const unsigned char*old_sha1,3657unsigned int flags,3658struct strbuf *err)3659{3660if(!old_sha1)3661die("BUG: verify called with old_sha1 set to NULL");3662returnref_transaction_update(transaction, refname,3663 NULL, old_sha1,3664 flags, NULL, err);3665}36663667intupdate_ref(const char*msg,const char*refname,3668const unsigned char*new_sha1,const unsigned char*old_sha1,3669unsigned int flags,enum action_on_err onerr)3670{3671struct ref_transaction *t;3672struct strbuf err = STRBUF_INIT;36733674 t =ref_transaction_begin(&err);3675if(!t ||3676ref_transaction_update(t, refname, new_sha1, old_sha1,3677 flags, msg, &err) ||3678ref_transaction_commit(t, &err)) {3679const char*str ="update_ref failed for ref '%s':%s";36803681ref_transaction_free(t);3682switch(onerr) {3683case UPDATE_REFS_MSG_ON_ERR:3684error(str, refname, err.buf);3685break;3686case UPDATE_REFS_DIE_ON_ERR:3687die(str, refname, err.buf);3688break;3689case UPDATE_REFS_QUIET_ON_ERR:3690break;3691}3692strbuf_release(&err);3693return1;3694}3695strbuf_release(&err);3696ref_transaction_free(t);3697return0;3698}36993700static intref_update_compare(const void*r1,const void*r2)3701{3702const struct ref_update *const*u1 = r1;3703const struct ref_update *const*u2 = r2;3704returnstrcmp((*u1)->refname, (*u2)->refname);3705}37063707static intref_update_reject_duplicates(struct ref_update **updates,int n,3708struct strbuf *err)3709{3710int i;37113712assert(err);37133714for(i =1; i < n; i++)3715if(!strcmp(updates[i -1]->refname, updates[i]->refname)) {3716strbuf_addf(err,3717"Multiple updates for ref '%s' not allowed.",3718 updates[i]->refname);3719return1;3720}3721return0;3722}37233724intref_transaction_commit(struct ref_transaction *transaction,3725struct strbuf *err)3726{3727int ret =0, i;3728int n = transaction->nr;3729struct ref_update **updates = transaction->updates;3730struct string_list refs_to_delete = STRING_LIST_INIT_NODUP;3731struct string_list_item *ref_to_delete;37323733assert(err);37343735if(transaction->state != REF_TRANSACTION_OPEN)3736die("BUG: commit called for transaction that is not open");37373738if(!n) {3739 transaction->state = REF_TRANSACTION_CLOSED;3740return0;3741}37423743/* Copy, sort, and reject duplicate refs */3744qsort(updates, n,sizeof(*updates), ref_update_compare);3745if(ref_update_reject_duplicates(updates, n, err)) {3746 ret = TRANSACTION_GENERIC_ERROR;3747goto cleanup;3748}37493750/* Acquire all locks while verifying old values */3751for(i =0; i < n; i++) {3752struct ref_update *update = updates[i];3753unsigned int flags = update->flags;37543755if((flags & REF_HAVE_NEW) &&is_null_sha1(update->new_sha1))3756 flags |= REF_DELETING;3757 update->lock =lock_ref_sha1_basic(3758 update->refname,3759((update->flags & REF_HAVE_OLD) ?3760 update->old_sha1 : NULL),3761 NULL,3762 flags,3763&update->type);3764if(!update->lock) {3765 ret = (errno == ENOTDIR)3766? TRANSACTION_NAME_CONFLICT3767: TRANSACTION_GENERIC_ERROR;3768strbuf_addf(err,"Cannot lock the ref '%s'.",3769 update->refname);3770goto cleanup;3771}3772}37733774/* Perform updates first so live commits remain referenced */3775for(i =0; i < n; i++) {3776struct ref_update *update = updates[i];3777int flags = update->flags;37783779if((flags & REF_HAVE_NEW) && !is_null_sha1(update->new_sha1)) {3780int overwriting_symref = ((update->type & REF_ISSYMREF) &&3781(update->flags & REF_NODEREF));37823783if(!overwriting_symref3784&& !hashcmp(update->lock->old_sha1, update->new_sha1)) {3785/*3786 * The reference already has the desired3787 * value, so we don't need to write it.3788 */3789unlock_ref(update->lock);3790 update->lock = NULL;3791}else if(write_ref_sha1(update->lock, update->new_sha1,3792 update->msg)) {3793 update->lock = NULL;/* freed by write_ref_sha1 */3794strbuf_addf(err,"Cannot update the ref '%s'.",3795 update->refname);3796 ret = TRANSACTION_GENERIC_ERROR;3797goto cleanup;3798}else{3799/* freed by write_ref_sha1(): */3800 update->lock = NULL;3801}3802}3803}38043805/* Perform deletes now that updates are safely completed */3806for(i =0; i < n; i++) {3807struct ref_update *update = updates[i];3808int flags = update->flags;38093810if((flags & REF_HAVE_NEW) &&is_null_sha1(update->new_sha1)) {3811if(delete_ref_loose(update->lock, update->type, err)) {3812 ret = TRANSACTION_GENERIC_ERROR;3813goto cleanup;3814}38153816if(!(flags & REF_ISPRUNING))3817string_list_append(&refs_to_delete,3818 update->lock->ref_name);3819}3820}38213822if(repack_without_refs(&refs_to_delete, err)) {3823 ret = TRANSACTION_GENERIC_ERROR;3824goto cleanup;3825}3826for_each_string_list_item(ref_to_delete, &refs_to_delete)3827unlink_or_warn(git_path("logs/%s", ref_to_delete->string));3828clear_loose_ref_cache(&ref_cache);38293830cleanup:3831 transaction->state = REF_TRANSACTION_CLOSED;38323833for(i =0; i < n; i++)3834if(updates[i]->lock)3835unlock_ref(updates[i]->lock);3836string_list_clear(&refs_to_delete,0);3837return ret;3838}38393840char*shorten_unambiguous_ref(const char*refname,int strict)3841{3842int i;3843static char**scanf_fmts;3844static int nr_rules;3845char*short_name;38463847if(!nr_rules) {3848/*3849 * Pre-generate scanf formats from ref_rev_parse_rules[].3850 * Generate a format suitable for scanf from a3851 * ref_rev_parse_rules rule by interpolating "%s" at the3852 * location of the "%.*s".3853 */3854size_t total_len =0;3855size_t offset =0;38563857/* the rule list is NULL terminated, count them first */3858for(nr_rules =0; ref_rev_parse_rules[nr_rules]; nr_rules++)3859/* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */3860 total_len +=strlen(ref_rev_parse_rules[nr_rules]) -2+1;38613862 scanf_fmts =xmalloc(nr_rules *sizeof(char*) + total_len);38633864 offset =0;3865for(i =0; i < nr_rules; i++) {3866assert(offset < total_len);3867 scanf_fmts[i] = (char*)&scanf_fmts[nr_rules] + offset;3868 offset +=snprintf(scanf_fmts[i], total_len - offset,3869 ref_rev_parse_rules[i],2,"%s") +1;3870}3871}38723873/* bail out if there are no rules */3874if(!nr_rules)3875returnxstrdup(refname);38763877/* buffer for scanf result, at most refname must fit */3878 short_name =xstrdup(refname);38793880/* skip first rule, it will always match */3881for(i = nr_rules -1; i >0; --i) {3882int j;3883int rules_to_fail = i;3884int short_name_len;38853886if(1!=sscanf(refname, scanf_fmts[i], short_name))3887continue;38883889 short_name_len =strlen(short_name);38903891/*3892 * in strict mode, all (except the matched one) rules3893 * must fail to resolve to a valid non-ambiguous ref3894 */3895if(strict)3896 rules_to_fail = nr_rules;38973898/*3899 * check if the short name resolves to a valid ref,3900 * but use only rules prior to the matched one3901 */3902for(j =0; j < rules_to_fail; j++) {3903const char*rule = ref_rev_parse_rules[j];3904char refname[PATH_MAX];39053906/* skip matched rule */3907if(i == j)3908continue;39093910/*3911 * the short name is ambiguous, if it resolves3912 * (with this previous rule) to a valid ref3913 * read_ref() returns 0 on success3914 */3915mksnpath(refname,sizeof(refname),3916 rule, short_name_len, short_name);3917if(ref_exists(refname))3918break;3919}39203921/*3922 * short name is non-ambiguous if all previous rules3923 * haven't resolved to a valid ref3924 */3925if(j == rules_to_fail)3926return short_name;3927}39283929free(short_name);3930returnxstrdup(refname);3931}39323933static struct string_list *hide_refs;39343935intparse_hide_refs_config(const char*var,const char*value,const char*section)3936{3937if(!strcmp("transfer.hiderefs", var) ||3938/* NEEDSWORK: use parse_config_key() once both are merged */3939(starts_with(var, section) && var[strlen(section)] =='.'&&3940!strcmp(var +strlen(section),".hiderefs"))) {3941char*ref;3942int len;39433944if(!value)3945returnconfig_error_nonbool(var);3946 ref =xstrdup(value);3947 len =strlen(ref);3948while(len && ref[len -1] =='/')3949 ref[--len] ='\0';3950if(!hide_refs) {3951 hide_refs =xcalloc(1,sizeof(*hide_refs));3952 hide_refs->strdup_strings =1;3953}3954string_list_append(hide_refs, ref);3955}3956return0;3957}39583959intref_is_hidden(const char*refname)3960{3961struct string_list_item *item;39623963if(!hide_refs)3964return0;3965for_each_string_list_item(item, hide_refs) {3966int len;3967if(!starts_with(refname, item->string))3968continue;3969 len =strlen(item->string);3970if(!refname[len] || refname[len] =='/')3971return1;3972}3973return0;3974}39753976struct expire_reflog_cb {3977unsigned int flags;3978 reflog_expiry_should_prune_fn *should_prune_fn;3979void*policy_cb;3980FILE*newlog;3981unsigned char last_kept_sha1[20];3982};39833984static intexpire_reflog_ent(unsigned char*osha1,unsigned char*nsha1,3985const char*email,unsigned long timestamp,int tz,3986const char*message,void*cb_data)3987{3988struct expire_reflog_cb *cb = cb_data;3989struct expire_reflog_policy_cb *policy_cb = cb->policy_cb;39903991if(cb->flags & EXPIRE_REFLOGS_REWRITE)3992 osha1 = cb->last_kept_sha1;39933994if((*cb->should_prune_fn)(osha1, nsha1, email, timestamp, tz,3995 message, policy_cb)) {3996if(!cb->newlog)3997printf("would prune%s", message);3998else if(cb->flags & EXPIRE_REFLOGS_VERBOSE)3999printf("prune%s", message);4000}else{4001if(cb->newlog) {4002fprintf(cb->newlog,"%s %s %s %lu %+05d\t%s",4003sha1_to_hex(osha1),sha1_to_hex(nsha1),4004 email, timestamp, tz, message);4005hashcpy(cb->last_kept_sha1, nsha1);4006}4007if(cb->flags & EXPIRE_REFLOGS_VERBOSE)4008printf("keep%s", message);4009}4010return0;4011}40124013intreflog_expire(const char*refname,const unsigned char*sha1,4014unsigned int flags,4015 reflog_expiry_prepare_fn prepare_fn,4016 reflog_expiry_should_prune_fn should_prune_fn,4017 reflog_expiry_cleanup_fn cleanup_fn,4018void*policy_cb_data)4019{4020static struct lock_file reflog_lock;4021struct expire_reflog_cb cb;4022struct ref_lock *lock;4023char*log_file;4024int status =0;4025int type;40264027memset(&cb,0,sizeof(cb));4028 cb.flags = flags;4029 cb.policy_cb = policy_cb_data;4030 cb.should_prune_fn = should_prune_fn;40314032/*4033 * The reflog file is locked by holding the lock on the4034 * reference itself, plus we might need to update the4035 * reference if --updateref was specified:4036 */4037 lock =lock_ref_sha1_basic(refname, sha1, NULL,0, &type);4038if(!lock)4039returnerror("cannot lock ref '%s'", refname);4040if(!reflog_exists(refname)) {4041unlock_ref(lock);4042return0;4043}40444045 log_file =git_pathdup("logs/%s", refname);4046if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4047/*4048 * Even though holding $GIT_DIR/logs/$reflog.lock has4049 * no locking implications, we use the lock_file4050 * machinery here anyway because it does a lot of the4051 * work we need, including cleaning up if the program4052 * exits unexpectedly.4053 */4054if(hold_lock_file_for_update(&reflog_lock, log_file,0) <0) {4055struct strbuf err = STRBUF_INIT;4056unable_to_lock_message(log_file, errno, &err);4057error("%s", err.buf);4058strbuf_release(&err);4059goto failure;4060}4061 cb.newlog =fdopen_lock_file(&reflog_lock,"w");4062if(!cb.newlog) {4063error("cannot fdopen%s(%s)",4064 reflog_lock.filename.buf,strerror(errno));4065goto failure;4066}4067}40684069(*prepare_fn)(refname, sha1, cb.policy_cb);4070for_each_reflog_ent(refname, expire_reflog_ent, &cb);4071(*cleanup_fn)(cb.policy_cb);40724073if(!(flags & EXPIRE_REFLOGS_DRY_RUN)) {4074/*4075 * It doesn't make sense to adjust a reference pointed4076 * to by a symbolic ref based on expiring entries in4077 * the symbolic reference's reflog. Nor can we update4078 * a reference if there are no remaining reflog4079 * entries.4080 */4081int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&4082!(type & REF_ISSYMREF) &&4083!is_null_sha1(cb.last_kept_sha1);40844085if(close_lock_file(&reflog_lock)) {4086 status |=error("couldn't write%s:%s", log_file,4087strerror(errno));4088}else if(update &&4089(write_in_full(lock->lock_fd,4090sha1_to_hex(cb.last_kept_sha1),40) !=40||4091write_str_in_full(lock->lock_fd,"\n") !=1||4092close_ref(lock) <0)) {4093 status |=error("couldn't write%s",4094 lock->lk->filename.buf);4095rollback_lock_file(&reflog_lock);4096}else if(commit_lock_file(&reflog_lock)) {4097 status |=error("unable to commit reflog '%s' (%s)",4098 log_file,strerror(errno));4099}else if(update &&commit_ref(lock)) {4100 status |=error("couldn't set%s", lock->ref_name);4101}4102}4103free(log_file);4104unlock_ref(lock);4105return status;41064107 failure:4108rollback_lock_file(&reflog_lock);4109free(log_file);4110unlock_ref(lock);4111return-1;4112}