1#include"cache.h" 2#include"dir.h" 3#include"string-list.h" 4 5static int inside_git_dir = -1; 6static int inside_work_tree = -1; 7 8static char*prefix_path_gently(const char*prefix,int len,const char*path) 9{ 10const char*orig = path; 11char*sanitized; 12if(is_absolute_path(orig)) { 13const char*temp =real_path(path); 14 sanitized =xmalloc(len +strlen(temp) +1); 15strcpy(sanitized, temp); 16}else{ 17 sanitized =xmalloc(len +strlen(path) +1); 18if(len) 19memcpy(sanitized, prefix, len); 20strcpy(sanitized + len, path); 21} 22if(normalize_path_copy(sanitized, sanitized)) 23goto error_out; 24if(is_absolute_path(orig)) { 25size_t root_len, len, total; 26const char*work_tree =get_git_work_tree(); 27if(!work_tree) 28goto error_out; 29 len =strlen(work_tree); 30 root_len =offset_1st_component(work_tree); 31 total =strlen(sanitized) +1; 32if(strncmp(sanitized, work_tree, len) || 33(len > root_len && sanitized[len] !='\0'&& sanitized[len] !='/')) { 34 error_out: 35free(sanitized); 36return NULL; 37} 38if(sanitized[len] =='/') 39 len++; 40memmove(sanitized, sanitized + len, total - len); 41} 42return sanitized; 43} 44 45char*prefix_path(const char*prefix,int len,const char*path) 46{ 47char*r =prefix_path_gently(prefix, len, path); 48if(!r) 49die("'%s' is outside repository", path); 50return r; 51} 52 53intpath_inside_repo(const char*prefix,const char*path) 54{ 55int len = prefix ?strlen(prefix) :0; 56char*r =prefix_path_gently(prefix, len, path); 57if(r) { 58free(r); 59return1; 60} 61return0; 62} 63 64intcheck_filename(const char*prefix,const char*arg) 65{ 66const char*name; 67struct stat st; 68 69if(!prefixcmp(arg,":/")) { 70if(arg[2] =='\0')/* ":/" is root dir, always exists */ 71return1; 72 name = arg +2; 73}else if(prefix) 74 name =prefix_filename(prefix,strlen(prefix), arg); 75else 76 name = arg; 77if(!lstat(name, &st)) 78return1;/* file exists */ 79if(errno == ENOENT || errno == ENOTDIR) 80return0;/* file does not exist */ 81die_errno("failed to stat '%s'", arg); 82} 83 84static void NORETURN die_verify_filename(const char*prefix, 85const char*arg, 86int diagnose_misspelt_rev) 87{ 88if(!diagnose_misspelt_rev) 89die("%s: no such path in the working tree.\n" 90"Use 'git <command> -- <path>...' to specify paths that do not exist locally.", 91 arg); 92/* 93 * Saying "'(icase)foo' does not exist in the index" when the 94 * user gave us ":(icase)foo" is just stupid. A magic pathspec 95 * begins with a colon and is followed by a non-alnum; do not 96 * let maybe_die_on_misspelt_object_name() even trigger. 97 */ 98if(!(arg[0] ==':'&& !isalnum(arg[1]))) 99maybe_die_on_misspelt_object_name(arg, prefix); 100 101/* ... or fall back the most general message. */ 102die("ambiguous argument '%s': unknown revision or path not in the working tree.\n" 103"Use '--' to separate paths from revisions, like this:\n" 104"'git <command> [<revision>...] -- [<file>...]'", arg); 105 106} 107 108/* 109 * Verify a filename that we got as an argument for a pathspec 110 * entry. Note that a filename that begins with "-" never verifies 111 * as true, because even if such a filename were to exist, we want 112 * it to be preceded by the "--" marker (or we want the user to 113 * use a format like "./-filename") 114 * 115 * The "diagnose_misspelt_rev" is used to provide a user-friendly 116 * diagnosis when dying upon finding that "name" is not a pathname. 117 * If set to 1, the diagnosis will try to diagnose "name" as an 118 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis 119 * will only complain about an inexisting file. 120 * 121 * This function is typically called to check that a "file or rev" 122 * argument is unambiguous. In this case, the caller will want 123 * diagnose_misspelt_rev == 1 when verifying the first non-rev 124 * argument (which could have been a revision), and 125 * diagnose_misspelt_rev == 0 for the next ones (because we already 126 * saw a filename, there's not ambiguity anymore). 127 */ 128voidverify_filename(const char*prefix, 129const char*arg, 130int diagnose_misspelt_rev) 131{ 132if(*arg =='-') 133die("bad flag '%s' used after filename", arg); 134if(check_filename(prefix, arg)) 135return; 136die_verify_filename(prefix, arg, diagnose_misspelt_rev); 137} 138 139/* 140 * Opposite of the above: the command line did not have -- marker 141 * and we parsed the arg as a refname. It should not be interpretable 142 * as a filename. 143 */ 144voidverify_non_filename(const char*prefix,const char*arg) 145{ 146if(!is_inside_work_tree() ||is_inside_git_dir()) 147return; 148if(*arg =='-') 149return;/* flag */ 150if(!check_filename(prefix, arg)) 151return; 152die("ambiguous argument '%s': both revision and filename\n" 153"Use '--' to separate paths from revisions, like this:\n" 154"'git <command> [<revision>...] -- [<file>...]'", arg); 155} 156 157/* 158 * Magic pathspec 159 * 160 * NEEDSWORK: These need to be moved to dir.h or even to a new 161 * pathspec.h when we restructure get_pathspec() users to use the 162 * "struct pathspec" interface. 163 * 164 * Possible future magic semantics include stuff like: 165 * 166 * { PATHSPEC_NOGLOB, '!', "noglob" }, 167 * { PATHSPEC_ICASE, '\0', "icase" }, 168 * { PATHSPEC_RECURSIVE, '*', "recursive" }, 169 * { PATHSPEC_REGEXP, '\0', "regexp" }, 170 * 171 */ 172#define PATHSPEC_FROMTOP (1<<0) 173 174static struct pathspec_magic { 175unsigned bit; 176char mnemonic;/* this cannot be ':'! */ 177const char*name; 178} pathspec_magic[] = { 179{ PATHSPEC_FROMTOP,'/',"top"}, 180}; 181 182/* 183 * Take an element of a pathspec and check for magic signatures. 184 * Append the result to the prefix. 185 * 186 * For now, we only parse the syntax and throw out anything other than 187 * "top" magic. 188 * 189 * NEEDSWORK: This needs to be rewritten when we start migrating 190 * get_pathspec() users to use the "struct pathspec" interface. For 191 * example, a pathspec element may be marked as case-insensitive, but 192 * the prefix part must always match literally, and a single stupid 193 * string cannot express such a case. 194 */ 195static const char*prefix_pathspec(const char*prefix,int prefixlen,const char*elt) 196{ 197unsigned magic =0; 198const char*copyfrom = elt; 199int i; 200 201if(elt[0] !=':') { 202;/* nothing to do */ 203}else if(elt[1] =='(') { 204/* longhand */ 205const char*nextat; 206for(copyfrom = elt +2; 207*copyfrom && *copyfrom !=')'; 208 copyfrom = nextat) { 209size_t len =strcspn(copyfrom,",)"); 210if(copyfrom[len] ==')') 211 nextat = copyfrom + len; 212else 213 nextat = copyfrom + len +1; 214if(!len) 215continue; 216for(i =0; i <ARRAY_SIZE(pathspec_magic); i++) 217if(strlen(pathspec_magic[i].name) == len && 218!strncmp(pathspec_magic[i].name, copyfrom, len)) { 219 magic |= pathspec_magic[i].bit; 220break; 221} 222if(ARRAY_SIZE(pathspec_magic) <= i) 223die("Invalid pathspec magic '%.*s' in '%s'", 224(int) len, copyfrom, elt); 225} 226if(*copyfrom ==')') 227 copyfrom++; 228}else{ 229/* shorthand */ 230for(copyfrom = elt +1; 231*copyfrom && *copyfrom !=':'; 232 copyfrom++) { 233char ch = *copyfrom; 234 235if(!is_pathspec_magic(ch)) 236break; 237for(i =0; i <ARRAY_SIZE(pathspec_magic); i++) 238if(pathspec_magic[i].mnemonic == ch) { 239 magic |= pathspec_magic[i].bit; 240break; 241} 242if(ARRAY_SIZE(pathspec_magic) <= i) 243die("Unimplemented pathspec magic '%c' in '%s'", 244 ch, elt); 245} 246if(*copyfrom ==':') 247 copyfrom++; 248} 249 250if(magic & PATHSPEC_FROMTOP) 251returnxstrdup(copyfrom); 252else 253returnprefix_path(prefix, prefixlen, copyfrom); 254} 255 256/* 257 * N.B. get_pathspec() is deprecated in favor of the "struct pathspec" 258 * based interface - see pathspec_magic above. 259 * 260 * Arguments: 261 * - prefix - a path relative to the root of the working tree 262 * - pathspec - a list of paths underneath the prefix path 263 * 264 * Iterates over pathspec, prepending each path with prefix, 265 * and return the resulting list. 266 * 267 * If pathspec is empty, return a singleton list containing prefix. 268 * 269 * If pathspec and prefix are both empty, return an empty list. 270 * 271 * This is typically used by built-in commands such as add.c, in order 272 * to normalize argv arguments provided to the built-in into a list of 273 * paths to process, all relative to the root of the working tree. 274 */ 275const char**get_pathspec(const char*prefix,const char**pathspec) 276{ 277const char*entry = *pathspec; 278const char**src, **dst; 279int prefixlen; 280 281if(!prefix && !entry) 282return NULL; 283 284if(!entry) { 285static const char*spec[2]; 286 spec[0] = prefix; 287 spec[1] = NULL; 288return spec; 289} 290 291/* Otherwise we have to re-write the entries.. */ 292 src = pathspec; 293 dst = pathspec; 294 prefixlen = prefix ?strlen(prefix) :0; 295while(*src) { 296*(dst++) =prefix_pathspec(prefix, prefixlen, *src); 297 src++; 298} 299*dst = NULL; 300if(!*pathspec) 301return NULL; 302return pathspec; 303} 304 305/* 306 * Test if it looks like we're at a git directory. 307 * We want to see: 308 * 309 * - either an objects/ directory _or_ the proper 310 * GIT_OBJECT_DIRECTORY environment variable 311 * - a refs/ directory 312 * - either a HEAD symlink or a HEAD file that is formatted as 313 * a proper "ref:", or a regular file HEAD that has a properly 314 * formatted sha1 object name. 315 */ 316intis_git_directory(const char*suspect) 317{ 318char path[PATH_MAX]; 319size_t len =strlen(suspect); 320 321if(PATH_MAX <= len +strlen("/objects")) 322die("Too long path: %.*s",60, suspect); 323strcpy(path, suspect); 324if(getenv(DB_ENVIRONMENT)) { 325if(access(getenv(DB_ENVIRONMENT), X_OK)) 326return0; 327} 328else{ 329strcpy(path + len,"/objects"); 330if(access(path, X_OK)) 331return0; 332} 333 334strcpy(path + len,"/refs"); 335if(access(path, X_OK)) 336return0; 337 338strcpy(path + len,"/HEAD"); 339if(validate_headref(path)) 340return0; 341 342return1; 343} 344 345intis_inside_git_dir(void) 346{ 347if(inside_git_dir <0) 348 inside_git_dir =is_inside_dir(get_git_dir()); 349return inside_git_dir; 350} 351 352intis_inside_work_tree(void) 353{ 354if(inside_work_tree <0) 355 inside_work_tree =is_inside_dir(get_git_work_tree()); 356return inside_work_tree; 357} 358 359voidsetup_work_tree(void) 360{ 361const char*work_tree, *git_dir; 362static int initialized =0; 363 364if(initialized) 365return; 366 work_tree =get_git_work_tree(); 367 git_dir =get_git_dir(); 368if(!is_absolute_path(git_dir)) 369 git_dir =real_path(get_git_dir()); 370if(!work_tree ||chdir(work_tree)) 371die("This operation must be run in a work tree"); 372 373/* 374 * Make sure subsequent git processes find correct worktree 375 * if $GIT_WORK_TREE is set relative 376 */ 377if(getenv(GIT_WORK_TREE_ENVIRONMENT)) 378setenv(GIT_WORK_TREE_ENVIRONMENT,".",1); 379 380set_git_dir(relative_path(git_dir, work_tree)); 381 initialized =1; 382} 383 384static intcheck_repository_format_gently(const char*gitdir,int*nongit_ok) 385{ 386char repo_config[PATH_MAX+1]; 387 388/* 389 * git_config() can't be used here because it calls git_pathdup() 390 * to get $GIT_CONFIG/config. That call will make setup_git_env() 391 * set git_dir to ".git". 392 * 393 * We are in gitdir setup, no git dir has been found useable yet. 394 * Use a gentler version of git_config() to check if this repo 395 * is a good one. 396 */ 397snprintf(repo_config, PATH_MAX,"%s/config", gitdir); 398git_config_early(check_repository_format_version, NULL, repo_config); 399if(GIT_REPO_VERSION < repository_format_version) { 400if(!nongit_ok) 401die("Expected git repo version <=%d, found%d", 402 GIT_REPO_VERSION, repository_format_version); 403warning("Expected git repo version <=%d, found%d", 404 GIT_REPO_VERSION, repository_format_version); 405warning("Please upgrade Git"); 406*nongit_ok = -1; 407return-1; 408} 409return0; 410} 411 412/* 413 * Try to read the location of the git directory from the .git file, 414 * return path to git directory if found. 415 */ 416const char*read_gitfile(const char*path) 417{ 418char*buf; 419char*dir; 420const char*slash; 421struct stat st; 422int fd; 423 ssize_t len; 424 425if(stat(path, &st)) 426return NULL; 427if(!S_ISREG(st.st_mode)) 428return NULL; 429 fd =open(path, O_RDONLY); 430if(fd <0) 431die_errno("Error opening '%s'", path); 432 buf =xmalloc(st.st_size +1); 433 len =read_in_full(fd, buf, st.st_size); 434close(fd); 435if(len != st.st_size) 436die("Error reading%s", path); 437 buf[len] ='\0'; 438if(prefixcmp(buf,"gitdir: ")) 439die("Invalid gitfile format:%s", path); 440while(buf[len -1] =='\n'|| buf[len -1] =='\r') 441 len--; 442if(len <9) 443die("No path in gitfile:%s", path); 444 buf[len] ='\0'; 445 dir = buf +8; 446 447if(!is_absolute_path(dir) && (slash =strrchr(path,'/'))) { 448size_t pathlen = slash+1- path; 449size_t dirlen = pathlen + len -8; 450 dir =xmalloc(dirlen +1); 451strncpy(dir, path, pathlen); 452strncpy(dir + pathlen, buf +8, len -8); 453 dir[dirlen] ='\0'; 454free(buf); 455 buf = dir; 456} 457 458if(!is_git_directory(dir)) 459die("Not a git repository:%s", dir); 460 path =real_path(dir); 461 462free(buf); 463return path; 464} 465 466static const char*setup_explicit_git_dir(const char*gitdirenv, 467char*cwd,int len, 468int*nongit_ok) 469{ 470const char*work_tree_env =getenv(GIT_WORK_TREE_ENVIRONMENT); 471const char*worktree; 472char*gitfile; 473int offset; 474 475if(PATH_MAX -40<strlen(gitdirenv)) 476die("'$%s' too big", GIT_DIR_ENVIRONMENT); 477 478 gitfile = (char*)read_gitfile(gitdirenv); 479if(gitfile) { 480 gitfile =xstrdup(gitfile); 481 gitdirenv = gitfile; 482} 483 484if(!is_git_directory(gitdirenv)) { 485if(nongit_ok) { 486*nongit_ok =1; 487free(gitfile); 488return NULL; 489} 490die("Not a git repository: '%s'", gitdirenv); 491} 492 493if(check_repository_format_gently(gitdirenv, nongit_ok)) { 494free(gitfile); 495return NULL; 496} 497 498/* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */ 499if(work_tree_env) 500set_git_work_tree(work_tree_env); 501else if(is_bare_repository_cfg >0) { 502if(git_work_tree_cfg)/* #22.2, #30 */ 503die("core.bare and core.worktree do not make sense"); 504 505/* #18, #26 */ 506set_git_dir(gitdirenv); 507free(gitfile); 508return NULL; 509} 510else if(git_work_tree_cfg) {/* #6, #14 */ 511if(is_absolute_path(git_work_tree_cfg)) 512set_git_work_tree(git_work_tree_cfg); 513else{ 514char core_worktree[PATH_MAX]; 515if(chdir(gitdirenv)) 516die_errno("Could not chdir to '%s'", gitdirenv); 517if(chdir(git_work_tree_cfg)) 518die_errno("Could not chdir to '%s'", git_work_tree_cfg); 519if(!getcwd(core_worktree, PATH_MAX)) 520die_errno("Could not get directory '%s'", git_work_tree_cfg); 521if(chdir(cwd)) 522die_errno("Could not come back to cwd"); 523set_git_work_tree(core_worktree); 524} 525} 526else/* #2, #10 */ 527set_git_work_tree("."); 528 529/* set_git_work_tree() must have been called by now */ 530 worktree =get_git_work_tree(); 531 532/* both get_git_work_tree() and cwd are already normalized */ 533if(!strcmp(cwd, worktree)) {/* cwd == worktree */ 534set_git_dir(gitdirenv); 535free(gitfile); 536return NULL; 537} 538 539 offset =dir_inside_of(cwd, worktree); 540if(offset >=0) {/* cwd inside worktree? */ 541set_git_dir(real_path(gitdirenv)); 542if(chdir(worktree)) 543die_errno("Could not chdir to '%s'", worktree); 544 cwd[len++] ='/'; 545 cwd[len] ='\0'; 546free(gitfile); 547return cwd + offset; 548} 549 550/* cwd outside worktree */ 551set_git_dir(gitdirenv); 552free(gitfile); 553return NULL; 554} 555 556static const char*setup_discovered_git_dir(const char*gitdir, 557char*cwd,int offset,int len, 558int*nongit_ok) 559{ 560if(check_repository_format_gently(gitdir, nongit_ok)) 561return NULL; 562 563/* --work-tree is set without --git-dir; use discovered one */ 564if(getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { 565if(offset != len && !is_absolute_path(gitdir)) 566 gitdir =xstrdup(real_path(gitdir)); 567if(chdir(cwd)) 568die_errno("Could not come back to cwd"); 569returnsetup_explicit_git_dir(gitdir, cwd, len, nongit_ok); 570} 571 572/* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */ 573if(is_bare_repository_cfg >0) { 574set_git_dir(offset == len ? gitdir :real_path(gitdir)); 575if(chdir(cwd)) 576die_errno("Could not come back to cwd"); 577return NULL; 578} 579 580/* #0, #1, #5, #8, #9, #12, #13 */ 581set_git_work_tree("."); 582if(strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT)) 583set_git_dir(gitdir); 584 inside_git_dir =0; 585 inside_work_tree =1; 586if(offset == len) 587return NULL; 588 589/* Make "offset" point to past the '/', and add a '/' at the end */ 590 offset++; 591 cwd[len++] ='/'; 592 cwd[len] =0; 593return cwd + offset; 594} 595 596/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */ 597static const char*setup_bare_git_dir(char*cwd,int offset,int len,int*nongit_ok) 598{ 599int root_len; 600 601if(check_repository_format_gently(".", nongit_ok)) 602return NULL; 603 604/* --work-tree is set without --git-dir; use discovered one */ 605if(getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { 606const char*gitdir; 607 608 gitdir = offset == len ?".":xmemdupz(cwd, offset); 609if(chdir(cwd)) 610die_errno("Could not come back to cwd"); 611returnsetup_explicit_git_dir(gitdir, cwd, len, nongit_ok); 612} 613 614 inside_git_dir =1; 615 inside_work_tree =0; 616if(offset != len) { 617if(chdir(cwd)) 618die_errno("Cannot come back to cwd"); 619 root_len =offset_1st_component(cwd); 620 cwd[offset > root_len ? offset : root_len] ='\0'; 621set_git_dir(cwd); 622} 623else 624set_git_dir("."); 625return NULL; 626} 627 628static const char*setup_nongit(const char*cwd,int*nongit_ok) 629{ 630if(!nongit_ok) 631die("Not a git repository (or any of the parent directories):%s", DEFAULT_GIT_DIR_ENVIRONMENT); 632if(chdir(cwd)) 633die_errno("Cannot come back to cwd"); 634*nongit_ok =1; 635return NULL; 636} 637 638static dev_t get_device_or_die(const char*path,const char*prefix,int prefix_len) 639{ 640struct stat buf; 641if(stat(path, &buf)) { 642die_errno("failed to stat '%*s%s%s'", 643 prefix_len, 644 prefix ? prefix :"", 645 prefix ?"/":"", path); 646} 647return buf.st_dev; 648} 649 650/* 651 * A "string_list_each_func_t" function that canonicalizes an entry 652 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or 653 * discards it if unusable. 654 */ 655static intcanonicalize_ceiling_entry(struct string_list_item *item, 656void*unused) 657{ 658char*ceil = item->string; 659const char*real_path; 660 661if(!*ceil || !is_absolute_path(ceil)) 662return0; 663 real_path =real_path_if_valid(ceil); 664if(!real_path) 665return0; 666free(item->string); 667 item->string =xstrdup(real_path); 668return1; 669} 670 671/* 672 * We cannot decide in this function whether we are in the work tree or 673 * not, since the config can only be read _after_ this function was called. 674 */ 675static const char*setup_git_directory_gently_1(int*nongit_ok) 676{ 677const char*env_ceiling_dirs =getenv(CEILING_DIRECTORIES_ENVIRONMENT); 678struct string_list ceiling_dirs = STRING_LIST_INIT_DUP; 679static char cwd[PATH_MAX+1]; 680const char*gitdirenv, *ret; 681char*gitfile; 682int len, offset, offset_parent, ceil_offset = -1; 683 dev_t current_device =0; 684int one_filesystem =1; 685 686/* 687 * Let's assume that we are in a git repository. 688 * If it turns out later that we are somewhere else, the value will be 689 * updated accordingly. 690 */ 691if(nongit_ok) 692*nongit_ok =0; 693 694if(!getcwd(cwd,sizeof(cwd)-1)) 695die_errno("Unable to read current working directory"); 696 offset = len =strlen(cwd); 697 698/* 699 * If GIT_DIR is set explicitly, we're not going 700 * to do any discovery, but we still do repository 701 * validation. 702 */ 703 gitdirenv =getenv(GIT_DIR_ENVIRONMENT); 704if(gitdirenv) 705returnsetup_explicit_git_dir(gitdirenv, cwd, len, nongit_ok); 706 707if(env_ceiling_dirs) { 708string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1); 709filter_string_list(&ceiling_dirs,0, 710 canonicalize_ceiling_entry, NULL); 711 ceil_offset =longest_ancestor_length(cwd, &ceiling_dirs); 712string_list_clear(&ceiling_dirs,0); 713} 714 715if(ceil_offset <0&&has_dos_drive_prefix(cwd)) 716 ceil_offset =1; 717 718/* 719 * Test in the following order (relative to the cwd): 720 * - .git (file containing "gitdir: <path>") 721 * - .git/ 722 * - ./ (bare) 723 * - ../.git 724 * - ../.git/ 725 * - ../ (bare) 726 * - ../../.git/ 727 * etc. 728 */ 729 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM",0); 730if(one_filesystem) 731 current_device =get_device_or_die(".", NULL,0); 732for(;;) { 733 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT); 734if(gitfile) 735 gitdirenv = gitfile =xstrdup(gitfile); 736else{ 737if(is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT)) 738 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT; 739} 740 741if(gitdirenv) { 742 ret =setup_discovered_git_dir(gitdirenv, 743 cwd, offset, len, 744 nongit_ok); 745free(gitfile); 746return ret; 747} 748free(gitfile); 749 750if(is_git_directory(".")) 751returnsetup_bare_git_dir(cwd, offset, len, nongit_ok); 752 753 offset_parent = offset; 754while(--offset_parent > ceil_offset && cwd[offset_parent] !='/'); 755if(offset_parent <= ceil_offset) 756returnsetup_nongit(cwd, nongit_ok); 757if(one_filesystem) { 758 dev_t parent_device =get_device_or_die("..", cwd, offset); 759if(parent_device != current_device) { 760if(nongit_ok) { 761if(chdir(cwd)) 762die_errno("Cannot come back to cwd"); 763*nongit_ok =1; 764return NULL; 765} 766 cwd[offset] ='\0'; 767die("Not a git repository (or any parent up to mount point%s)\n" 768"Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).", cwd); 769} 770} 771if(chdir("..")) { 772 cwd[offset] ='\0'; 773die_errno("Cannot change to '%s/..'", cwd); 774} 775 offset = offset_parent; 776} 777} 778 779const char*setup_git_directory_gently(int*nongit_ok) 780{ 781const char*prefix; 782 783 prefix =setup_git_directory_gently_1(nongit_ok); 784if(prefix) 785setenv("GIT_PREFIX", prefix,1); 786else 787setenv("GIT_PREFIX","",1); 788 789if(startup_info) { 790 startup_info->have_repository = !nongit_ok || !*nongit_ok; 791 startup_info->prefix = prefix; 792} 793return prefix; 794} 795 796intgit_config_perm(const char*var,const char*value) 797{ 798int i; 799char*endptr; 800 801if(value == NULL) 802return PERM_GROUP; 803 804if(!strcmp(value,"umask")) 805return PERM_UMASK; 806if(!strcmp(value,"group")) 807return PERM_GROUP; 808if(!strcmp(value,"all") || 809!strcmp(value,"world") || 810!strcmp(value,"everybody")) 811return PERM_EVERYBODY; 812 813/* Parse octal numbers */ 814 i =strtol(value, &endptr,8); 815 816/* If not an octal number, maybe true/false? */ 817if(*endptr !=0) 818returngit_config_bool(var, value) ? PERM_GROUP : PERM_UMASK; 819 820/* 821 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is 822 * a chmod value to restrict to. 823 */ 824switch(i) { 825case PERM_UMASK:/* 0 */ 826return PERM_UMASK; 827case OLD_PERM_GROUP:/* 1 */ 828return PERM_GROUP; 829case OLD_PERM_EVERYBODY:/* 2 */ 830return PERM_EVERYBODY; 831} 832 833/* A filemode value was given: 0xxx */ 834 835if((i &0600) !=0600) 836die("Problem with core.sharedRepository filemode value " 837"(0%.3o).\nThe owner of files must always have " 838"read and write permissions.", i); 839 840/* 841 * Mask filemode value. Others can not get write permission. 842 * x flags for directories are handled separately. 843 */ 844return-(i &0666); 845} 846 847intcheck_repository_format_version(const char*var,const char*value,void*cb) 848{ 849if(strcmp(var,"core.repositoryformatversion") ==0) 850 repository_format_version =git_config_int(var, value); 851else if(strcmp(var,"core.sharedrepository") ==0) 852 shared_repository =git_config_perm(var, value); 853else if(strcmp(var,"core.bare") ==0) { 854 is_bare_repository_cfg =git_config_bool(var, value); 855if(is_bare_repository_cfg ==1) 856 inside_work_tree = -1; 857}else if(strcmp(var,"core.worktree") ==0) { 858if(!value) 859returnconfig_error_nonbool(var); 860free(git_work_tree_cfg); 861 git_work_tree_cfg =xstrdup(value); 862 inside_work_tree = -1; 863} 864return0; 865} 866 867intcheck_repository_format(void) 868{ 869returncheck_repository_format_gently(get_git_dir(), NULL); 870} 871 872/* 873 * Returns the "prefix", a path to the current working directory 874 * relative to the work tree root, or NULL, if the current working 875 * directory is not a strict subdirectory of the work tree root. The 876 * prefix always ends with a '/' character. 877 */ 878const char*setup_git_directory(void) 879{ 880returnsetup_git_directory_gently(NULL); 881} 882 883const char*resolve_gitdir(const char*suspect) 884{ 885if(is_git_directory(suspect)) 886return suspect; 887returnread_gitfile(suspect); 888}