1#include"cache.h" 2#include"repository.h" 3#include"config.h" 4#include"dir.h" 5#include"string-list.h" 6 7static int inside_git_dir = -1; 8static int inside_work_tree = -1; 9static int work_tree_config_is_bogus; 10 11static struct startup_info the_startup_info; 12struct startup_info *startup_info = &the_startup_info; 13 14/* 15 * The input parameter must contain an absolute path, and it must already be 16 * normalized. 17 * 18 * Find the part of an absolute path that lies inside the work tree by 19 * dereferencing symlinks outside the work tree, for example: 20 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file 21 * /dir/file (work tree is /) -> dir/file 22 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2 23 * /dir/repolink/file (repolink points to /dir/repo) -> file 24 * /dir/repo (exactly equal to work tree) -> (empty string) 25 */ 26static intabspath_part_inside_repo(char*path) 27{ 28size_t len; 29size_t wtlen; 30char*path0; 31int off; 32const char*work_tree =get_git_work_tree(); 33 34if(!work_tree) 35return-1; 36 wtlen =strlen(work_tree); 37 len =strlen(path); 38 off =offset_1st_component(path); 39 40/* check if work tree is already the prefix */ 41if(wtlen <= len && !strncmp(path, work_tree, wtlen)) { 42if(path[wtlen] =='/') { 43memmove(path, path + wtlen +1, len - wtlen); 44return0; 45}else if(path[wtlen -1] =='/'|| path[wtlen] =='\0') { 46/* work tree is the root, or the whole path */ 47memmove(path, path + wtlen, len - wtlen +1); 48return0; 49} 50/* work tree might match beginning of a symlink to work tree */ 51 off = wtlen; 52} 53 path0 = path; 54 path += off; 55 56/* check each '/'-terminated level */ 57while(*path) { 58 path++; 59if(*path =='/') { 60*path ='\0'; 61if(strcmp(real_path(path0), work_tree) ==0) { 62memmove(path0, path +1, len - (path - path0)); 63return0; 64} 65*path ='/'; 66} 67} 68 69/* check whole path */ 70if(strcmp(real_path(path0), work_tree) ==0) { 71*path0 ='\0'; 72return0; 73} 74 75return-1; 76} 77 78/* 79 * Normalize "path", prepending the "prefix" for relative paths. If 80 * remaining_prefix is not NULL, return the actual prefix still 81 * remains in the path. For example, prefix = sub1/sub2/ and path is 82 * 83 * foo -> sub1/sub2/foo (full prefix) 84 * ../foo -> sub1/foo (remaining prefix is sub1/) 85 * ../../bar -> bar (no remaining prefix) 86 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix) 87 * `pwd`/../bar -> sub1/bar (no remaining prefix) 88 */ 89char*prefix_path_gently(const char*prefix,int len, 90int*remaining_prefix,const char*path) 91{ 92const char*orig = path; 93char*sanitized; 94if(is_absolute_path(orig)) { 95 sanitized =xmallocz(strlen(path)); 96if(remaining_prefix) 97*remaining_prefix =0; 98if(normalize_path_copy_len(sanitized, path, remaining_prefix)) { 99free(sanitized); 100return NULL; 101} 102if(abspath_part_inside_repo(sanitized)) { 103free(sanitized); 104return NULL; 105} 106}else{ 107 sanitized =xstrfmt("%.*s%s", len, len ? prefix :"", path); 108if(remaining_prefix) 109*remaining_prefix = len; 110if(normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) { 111free(sanitized); 112return NULL; 113} 114} 115return sanitized; 116} 117 118char*prefix_path(const char*prefix,int len,const char*path) 119{ 120char*r =prefix_path_gently(prefix, len, NULL, path); 121if(!r) 122die("'%s' is outside repository", path); 123return r; 124} 125 126intpath_inside_repo(const char*prefix,const char*path) 127{ 128int len = prefix ?strlen(prefix) :0; 129char*r =prefix_path_gently(prefix, len, NULL, path); 130if(r) { 131free(r); 132return1; 133} 134return0; 135} 136 137intcheck_filename(const char*prefix,const char*arg) 138{ 139char*to_free = NULL; 140struct stat st; 141 142if(skip_prefix(arg,":/", &arg)) { 143if(!*arg)/* ":/" is root dir, always exists */ 144return1; 145 prefix = NULL; 146}else if(skip_prefix(arg,":!", &arg) || 147skip_prefix(arg,":^", &arg)) { 148if(!*arg)/* excluding everything is silly, but allowed */ 149return1; 150} 151 152if(prefix) 153 arg = to_free =prefix_filename(prefix, arg); 154 155if(!lstat(arg, &st)) { 156free(to_free); 157return1;/* file exists */ 158} 159if(is_missing_file_error(errno)) { 160free(to_free); 161return0;/* file does not exist */ 162} 163die_errno("failed to stat '%s'", arg); 164} 165 166static void NORETURN die_verify_filename(const char*prefix, 167const char*arg, 168int diagnose_misspelt_rev) 169{ 170if(!diagnose_misspelt_rev) 171die(_("%s: no such path in the working tree.\n" 172"Use 'git <command> -- <path>...' to specify paths that do not exist locally."), 173 arg); 174/* 175 * Saying "'(icase)foo' does not exist in the index" when the 176 * user gave us ":(icase)foo" is just stupid. A magic pathspec 177 * begins with a colon and is followed by a non-alnum; do not 178 * let maybe_die_on_misspelt_object_name() even trigger. 179 */ 180if(!(arg[0] ==':'&& !isalnum(arg[1]))) 181maybe_die_on_misspelt_object_name(arg, prefix); 182 183/* ... or fall back the most general message. */ 184die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n" 185"Use '--' to separate paths from revisions, like this:\n" 186"'git <command> [<revision>...] -- [<file>...]'"), arg); 187 188} 189 190/* 191 * Check for arguments that don't resolve as actual files, 192 * but which look sufficiently like pathspecs that we'll consider 193 * them such for the purposes of rev/pathspec DWIM parsing. 194 */ 195static intlooks_like_pathspec(const char*arg) 196{ 197/* anything with a wildcard character */ 198if(!no_wildcard(arg)) 199return1; 200 201/* long-form pathspec magic */ 202if(starts_with(arg,":(")) 203return1; 204 205return0; 206} 207 208/* 209 * Verify a filename that we got as an argument for a pathspec 210 * entry. Note that a filename that begins with "-" never verifies 211 * as true, because even if such a filename were to exist, we want 212 * it to be preceded by the "--" marker (or we want the user to 213 * use a format like "./-filename") 214 * 215 * The "diagnose_misspelt_rev" is used to provide a user-friendly 216 * diagnosis when dying upon finding that "name" is not a pathname. 217 * If set to 1, the diagnosis will try to diagnose "name" as an 218 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis 219 * will only complain about an inexisting file. 220 * 221 * This function is typically called to check that a "file or rev" 222 * argument is unambiguous. In this case, the caller will want 223 * diagnose_misspelt_rev == 1 when verifying the first non-rev 224 * argument (which could have been a revision), and 225 * diagnose_misspelt_rev == 0 for the next ones (because we already 226 * saw a filename, there's not ambiguity anymore). 227 */ 228voidverify_filename(const char*prefix, 229const char*arg, 230int diagnose_misspelt_rev) 231{ 232if(*arg =='-') 233die("bad flag '%s' used after filename", arg); 234if(looks_like_pathspec(arg) ||check_filename(prefix, arg)) 235return; 236die_verify_filename(prefix, arg, diagnose_misspelt_rev); 237} 238 239/* 240 * Opposite of the above: the command line did not have -- marker 241 * and we parsed the arg as a refname. It should not be interpretable 242 * as a filename. 243 */ 244voidverify_non_filename(const char*prefix,const char*arg) 245{ 246if(!is_inside_work_tree() ||is_inside_git_dir()) 247return; 248if(*arg =='-') 249return;/* flag */ 250if(!check_filename(prefix, arg)) 251return; 252die(_("ambiguous argument '%s': both revision and filename\n" 253"Use '--' to separate paths from revisions, like this:\n" 254"'git <command> [<revision>...] -- [<file>...]'"), arg); 255} 256 257intget_common_dir(struct strbuf *sb,const char*gitdir) 258{ 259const char*git_env_common_dir =getenv(GIT_COMMON_DIR_ENVIRONMENT); 260if(git_env_common_dir) { 261strbuf_addstr(sb, git_env_common_dir); 262return1; 263}else{ 264returnget_common_dir_noenv(sb, gitdir); 265} 266} 267 268intget_common_dir_noenv(struct strbuf *sb,const char*gitdir) 269{ 270struct strbuf data = STRBUF_INIT; 271struct strbuf path = STRBUF_INIT; 272int ret =0; 273 274strbuf_addf(&path,"%s/commondir", gitdir); 275if(file_exists(path.buf)) { 276if(strbuf_read_file(&data, path.buf,0) <=0) 277die_errno(_("failed to read%s"), path.buf); 278while(data.len && (data.buf[data.len -1] =='\n'|| 279 data.buf[data.len -1] =='\r')) 280 data.len--; 281 data.buf[data.len] ='\0'; 282strbuf_reset(&path); 283if(!is_absolute_path(data.buf)) 284strbuf_addf(&path,"%s/", gitdir); 285strbuf_addbuf(&path, &data); 286strbuf_add_real_path(sb, path.buf); 287 ret =1; 288}else{ 289strbuf_addstr(sb, gitdir); 290} 291 292strbuf_release(&data); 293strbuf_release(&path); 294return ret; 295} 296 297/* 298 * Test if it looks like we're at a git directory. 299 * We want to see: 300 * 301 * - either an objects/ directory _or_ the proper 302 * GIT_OBJECT_DIRECTORY environment variable 303 * - a refs/ directory 304 * - either a HEAD symlink or a HEAD file that is formatted as 305 * a proper "ref:", or a regular file HEAD that has a properly 306 * formatted sha1 object name. 307 */ 308intis_git_directory(const char*suspect) 309{ 310struct strbuf path = STRBUF_INIT; 311int ret =0; 312size_t len; 313 314/* Check worktree-related signatures */ 315strbuf_addf(&path,"%s/HEAD", suspect); 316if(validate_headref(path.buf)) 317goto done; 318 319strbuf_reset(&path); 320get_common_dir(&path, suspect); 321 len = path.len; 322 323/* Check non-worktree-related signatures */ 324if(getenv(DB_ENVIRONMENT)) { 325if(access(getenv(DB_ENVIRONMENT), X_OK)) 326goto done; 327} 328else{ 329strbuf_setlen(&path, len); 330strbuf_addstr(&path,"/objects"); 331if(access(path.buf, X_OK)) 332goto done; 333} 334 335strbuf_setlen(&path, len); 336strbuf_addstr(&path,"/refs"); 337if(access(path.buf, X_OK)) 338goto done; 339 340 ret =1; 341done: 342strbuf_release(&path); 343return ret; 344} 345 346intis_nonbare_repository_dir(struct strbuf *path) 347{ 348int ret =0; 349int gitfile_error; 350size_t orig_path_len = path->len; 351assert(orig_path_len !=0); 352strbuf_complete(path,'/'); 353strbuf_addstr(path,".git"); 354if(read_gitfile_gently(path->buf, &gitfile_error) ||is_git_directory(path->buf)) 355 ret =1; 356if(gitfile_error == READ_GITFILE_ERR_OPEN_FAILED || 357 gitfile_error == READ_GITFILE_ERR_READ_FAILED) 358 ret =1; 359strbuf_setlen(path, orig_path_len); 360return ret; 361} 362 363intis_inside_git_dir(void) 364{ 365if(inside_git_dir <0) 366 inside_git_dir =is_inside_dir(get_git_dir()); 367return inside_git_dir; 368} 369 370intis_inside_work_tree(void) 371{ 372if(inside_work_tree <0) 373 inside_work_tree =is_inside_dir(get_git_work_tree()); 374return inside_work_tree; 375} 376 377voidsetup_work_tree(void) 378{ 379const char*work_tree, *git_dir; 380static int initialized =0; 381 382if(initialized) 383return; 384 385if(work_tree_config_is_bogus) 386die("unable to set up work tree using invalid config"); 387 388 work_tree =get_git_work_tree(); 389 git_dir =get_git_dir(); 390if(!is_absolute_path(git_dir)) 391 git_dir =real_path(get_git_dir()); 392if(!work_tree ||chdir(work_tree)) 393die("This operation must be run in a work tree"); 394 395/* 396 * Make sure subsequent git processes find correct worktree 397 * if $GIT_WORK_TREE is set relative 398 */ 399if(getenv(GIT_WORK_TREE_ENVIRONMENT)) 400setenv(GIT_WORK_TREE_ENVIRONMENT,".",1); 401 402/* 403 * NEEDSWORK: this call can essentially be set_git_dir(get_git_dir()) 404 * which can cause some problems when trying to free the old value of 405 * gitdir. 406 */ 407set_git_dir(remove_leading_path(git_dir, work_tree)); 408 initialized =1; 409} 410 411static intcheck_repo_format(const char*var,const char*value,void*vdata) 412{ 413struct repository_format *data = vdata; 414const char*ext; 415 416if(strcmp(var,"core.repositoryformatversion") ==0) 417 data->version =git_config_int(var, value); 418else if(skip_prefix(var,"extensions.", &ext)) { 419/* 420 * record any known extensions here; otherwise, 421 * we fall through to recording it as unknown, and 422 * check_repository_format will complain 423 */ 424if(!strcmp(ext,"noop")) 425; 426else if(!strcmp(ext,"preciousobjects")) 427 data->precious_objects =git_config_bool(var, value); 428else 429string_list_append(&data->unknown_extensions, ext); 430}else if(strcmp(var,"core.bare") ==0) { 431 data->is_bare =git_config_bool(var, value); 432}else if(strcmp(var,"core.worktree") ==0) { 433if(!value) 434returnconfig_error_nonbool(var); 435 data->work_tree =xstrdup(value); 436} 437return0; 438} 439 440static intcheck_repository_format_gently(const char*gitdir,int*nongit_ok) 441{ 442struct strbuf sb = STRBUF_INIT; 443struct strbuf err = STRBUF_INIT; 444struct repository_format candidate; 445int has_common; 446 447 has_common =get_common_dir(&sb, gitdir); 448strbuf_addstr(&sb,"/config"); 449read_repository_format(&candidate, sb.buf); 450strbuf_release(&sb); 451 452/* 453 * For historical use of check_repository_format() in git-init, 454 * we treat a missing config as a silent "ok", even when nongit_ok 455 * is unset. 456 */ 457if(candidate.version <0) 458return0; 459 460if(verify_repository_format(&candidate, &err) <0) { 461if(nongit_ok) { 462warning("%s", err.buf); 463strbuf_release(&err); 464*nongit_ok = -1; 465return-1; 466} 467die("%s", err.buf); 468} 469 470 repository_format_precious_objects = candidate.precious_objects; 471string_list_clear(&candidate.unknown_extensions,0); 472if(!has_common) { 473if(candidate.is_bare != -1) { 474 is_bare_repository_cfg = candidate.is_bare; 475if(is_bare_repository_cfg ==1) 476 inside_work_tree = -1; 477} 478if(candidate.work_tree) { 479free(git_work_tree_cfg); 480 git_work_tree_cfg = candidate.work_tree; 481 inside_work_tree = -1; 482} 483}else{ 484free(candidate.work_tree); 485} 486 487return0; 488} 489 490intread_repository_format(struct repository_format *format,const char*path) 491{ 492memset(format,0,sizeof(*format)); 493 format->version = -1; 494 format->is_bare = -1; 495string_list_init(&format->unknown_extensions,1); 496git_config_from_file(check_repo_format, path, format); 497return format->version; 498} 499 500intverify_repository_format(const struct repository_format *format, 501struct strbuf *err) 502{ 503if(GIT_REPO_VERSION_READ < format->version) { 504strbuf_addf(err,_("Expected git repo version <=%d, found%d"), 505 GIT_REPO_VERSION_READ, format->version); 506return-1; 507} 508 509if(format->version >=1&& format->unknown_extensions.nr) { 510int i; 511 512strbuf_addstr(err,_("unknown repository extensions found:")); 513 514for(i =0; i < format->unknown_extensions.nr; i++) 515strbuf_addf(err,"\n\t%s", 516 format->unknown_extensions.items[i].string); 517return-1; 518} 519 520return0; 521} 522 523voidread_gitfile_error_die(int error_code,const char*path,const char*dir) 524{ 525switch(error_code) { 526case READ_GITFILE_ERR_STAT_FAILED: 527case READ_GITFILE_ERR_NOT_A_FILE: 528/* non-fatal; follow return path */ 529break; 530case READ_GITFILE_ERR_OPEN_FAILED: 531die_errno("Error opening '%s'", path); 532case READ_GITFILE_ERR_TOO_LARGE: 533die("Too large to be a .git file: '%s'", path); 534case READ_GITFILE_ERR_READ_FAILED: 535die("Error reading%s", path); 536case READ_GITFILE_ERR_INVALID_FORMAT: 537die("Invalid gitfile format:%s", path); 538case READ_GITFILE_ERR_NO_PATH: 539die("No path in gitfile:%s", path); 540case READ_GITFILE_ERR_NOT_A_REPO: 541die("Not a git repository:%s", dir); 542default: 543die("BUG: unknown error code"); 544} 545} 546 547/* 548 * Try to read the location of the git directory from the .git file, 549 * return path to git directory if found. 550 * 551 * On failure, if return_error_code is not NULL, return_error_code 552 * will be set to an error code and NULL will be returned. If 553 * return_error_code is NULL the function will die instead (for most 554 * cases). 555 */ 556const char*read_gitfile_gently(const char*path,int*return_error_code) 557{ 558const int max_file_size =1<<20;/* 1MB */ 559int error_code =0; 560char*buf = NULL; 561char*dir = NULL; 562const char*slash; 563struct stat st; 564int fd; 565 ssize_t len; 566 567if(stat(path, &st)) { 568/* NEEDSWORK: discern between ENOENT vs other errors */ 569 error_code = READ_GITFILE_ERR_STAT_FAILED; 570goto cleanup_return; 571} 572if(!S_ISREG(st.st_mode)) { 573 error_code = READ_GITFILE_ERR_NOT_A_FILE; 574goto cleanup_return; 575} 576if(st.st_size > max_file_size) { 577 error_code = READ_GITFILE_ERR_TOO_LARGE; 578goto cleanup_return; 579} 580 fd =open(path, O_RDONLY); 581if(fd <0) { 582 error_code = READ_GITFILE_ERR_OPEN_FAILED; 583goto cleanup_return; 584} 585 buf =xmallocz(st.st_size); 586 len =read_in_full(fd, buf, st.st_size); 587close(fd); 588if(len != st.st_size) { 589 error_code = READ_GITFILE_ERR_READ_FAILED; 590goto cleanup_return; 591} 592if(!starts_with(buf,"gitdir: ")) { 593 error_code = READ_GITFILE_ERR_INVALID_FORMAT; 594goto cleanup_return; 595} 596while(buf[len -1] =='\n'|| buf[len -1] =='\r') 597 len--; 598if(len <9) { 599 error_code = READ_GITFILE_ERR_NO_PATH; 600goto cleanup_return; 601} 602 buf[len] ='\0'; 603 dir = buf +8; 604 605if(!is_absolute_path(dir) && (slash =strrchr(path,'/'))) { 606size_t pathlen = slash+1- path; 607 dir =xstrfmt("%.*s%.*s", (int)pathlen, path, 608(int)(len -8), buf +8); 609free(buf); 610 buf = dir; 611} 612if(!is_git_directory(dir)) { 613 error_code = READ_GITFILE_ERR_NOT_A_REPO; 614goto cleanup_return; 615} 616 path =real_path(dir); 617 618cleanup_return: 619if(return_error_code) 620*return_error_code = error_code; 621else if(error_code) 622read_gitfile_error_die(error_code, path, dir); 623 624free(buf); 625return error_code ? NULL : path; 626} 627 628static const char*setup_explicit_git_dir(const char*gitdirenv, 629struct strbuf *cwd, 630int*nongit_ok) 631{ 632const char*work_tree_env =getenv(GIT_WORK_TREE_ENVIRONMENT); 633const char*worktree; 634char*gitfile; 635int offset; 636 637if(PATH_MAX -40<strlen(gitdirenv)) 638die("'$%s' too big", GIT_DIR_ENVIRONMENT); 639 640 gitfile = (char*)read_gitfile(gitdirenv); 641if(gitfile) { 642 gitfile =xstrdup(gitfile); 643 gitdirenv = gitfile; 644} 645 646if(!is_git_directory(gitdirenv)) { 647if(nongit_ok) { 648*nongit_ok =1; 649free(gitfile); 650return NULL; 651} 652die("Not a git repository: '%s'", gitdirenv); 653} 654 655if(check_repository_format_gently(gitdirenv, nongit_ok)) { 656free(gitfile); 657return NULL; 658} 659 660/* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */ 661if(work_tree_env) 662set_git_work_tree(work_tree_env); 663else if(is_bare_repository_cfg >0) { 664if(git_work_tree_cfg) { 665/* #22.2, #30 */ 666warning("core.bare and core.worktree do not make sense"); 667 work_tree_config_is_bogus =1; 668} 669 670/* #18, #26 */ 671set_git_dir(gitdirenv); 672free(gitfile); 673return NULL; 674} 675else if(git_work_tree_cfg) {/* #6, #14 */ 676if(is_absolute_path(git_work_tree_cfg)) 677set_git_work_tree(git_work_tree_cfg); 678else{ 679char*core_worktree; 680if(chdir(gitdirenv)) 681die_errno("Could not chdir to '%s'", gitdirenv); 682if(chdir(git_work_tree_cfg)) 683die_errno("Could not chdir to '%s'", git_work_tree_cfg); 684 core_worktree =xgetcwd(); 685if(chdir(cwd->buf)) 686die_errno("Could not come back to cwd"); 687set_git_work_tree(core_worktree); 688free(core_worktree); 689} 690} 691else if(!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,1)) { 692/* #16d */ 693set_git_dir(gitdirenv); 694free(gitfile); 695return NULL; 696} 697else/* #2, #10 */ 698set_git_work_tree("."); 699 700/* set_git_work_tree() must have been called by now */ 701 worktree =get_git_work_tree(); 702 703/* both get_git_work_tree() and cwd are already normalized */ 704if(!strcmp(cwd->buf, worktree)) {/* cwd == worktree */ 705set_git_dir(gitdirenv); 706free(gitfile); 707return NULL; 708} 709 710 offset =dir_inside_of(cwd->buf, worktree); 711if(offset >=0) {/* cwd inside worktree? */ 712set_git_dir(real_path(gitdirenv)); 713if(chdir(worktree)) 714die_errno("Could not chdir to '%s'", worktree); 715strbuf_addch(cwd,'/'); 716free(gitfile); 717return cwd->buf + offset; 718} 719 720/* cwd outside worktree */ 721set_git_dir(gitdirenv); 722free(gitfile); 723return NULL; 724} 725 726static const char*setup_discovered_git_dir(const char*gitdir, 727struct strbuf *cwd,int offset, 728int*nongit_ok) 729{ 730if(check_repository_format_gently(gitdir, nongit_ok)) 731return NULL; 732 733/* --work-tree is set without --git-dir; use discovered one */ 734if(getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { 735char*to_free = NULL; 736const char*ret; 737 738if(offset != cwd->len && !is_absolute_path(gitdir)) 739 gitdir = to_free =real_pathdup(gitdir,1); 740if(chdir(cwd->buf)) 741die_errno("Could not come back to cwd"); 742 ret =setup_explicit_git_dir(gitdir, cwd, nongit_ok); 743free(to_free); 744return ret; 745} 746 747/* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */ 748if(is_bare_repository_cfg >0) { 749set_git_dir(offset == cwd->len ? gitdir :real_path(gitdir)); 750if(chdir(cwd->buf)) 751die_errno("Could not come back to cwd"); 752return NULL; 753} 754 755/* #0, #1, #5, #8, #9, #12, #13 */ 756set_git_work_tree("."); 757if(strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT)) 758set_git_dir(gitdir); 759 inside_git_dir =0; 760 inside_work_tree =1; 761if(offset == cwd->len) 762return NULL; 763 764/* Make "offset" point past the '/' (already the case for root dirs) */ 765if(offset !=offset_1st_component(cwd->buf)) 766 offset++; 767/* Add a '/' at the end */ 768strbuf_addch(cwd,'/'); 769return cwd->buf + offset; 770} 771 772/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */ 773static const char*setup_bare_git_dir(struct strbuf *cwd,int offset, 774int*nongit_ok) 775{ 776int root_len; 777 778if(check_repository_format_gently(".", nongit_ok)) 779return NULL; 780 781setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,"0",1); 782 783/* --work-tree is set without --git-dir; use discovered one */ 784if(getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { 785static const char*gitdir; 786 787 gitdir = offset == cwd->len ?".":xmemdupz(cwd->buf, offset); 788if(chdir(cwd->buf)) 789die_errno("Could not come back to cwd"); 790returnsetup_explicit_git_dir(gitdir, cwd, nongit_ok); 791} 792 793 inside_git_dir =1; 794 inside_work_tree =0; 795if(offset != cwd->len) { 796if(chdir(cwd->buf)) 797die_errno("Cannot come back to cwd"); 798 root_len =offset_1st_component(cwd->buf); 799strbuf_setlen(cwd, offset > root_len ? offset : root_len); 800set_git_dir(cwd->buf); 801} 802else 803set_git_dir("."); 804return NULL; 805} 806 807static const char*setup_nongit(const char*cwd,int*nongit_ok) 808{ 809if(!nongit_ok) 810die(_("Not a git repository (or any of the parent directories):%s"), DEFAULT_GIT_DIR_ENVIRONMENT); 811if(chdir(cwd)) 812die_errno(_("Cannot come back to cwd")); 813*nongit_ok =1; 814return NULL; 815} 816 817static dev_t get_device_or_die(const char*path,const char*prefix,int prefix_len) 818{ 819struct stat buf; 820if(stat(path, &buf)) { 821die_errno("failed to stat '%*s%s%s'", 822 prefix_len, 823 prefix ? prefix :"", 824 prefix ?"/":"", path); 825} 826return buf.st_dev; 827} 828 829/* 830 * A "string_list_each_func_t" function that canonicalizes an entry 831 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or 832 * discards it if unusable. The presence of an empty entry in 833 * GIT_CEILING_DIRECTORIES turns off canonicalization for all 834 * subsequent entries. 835 */ 836static intcanonicalize_ceiling_entry(struct string_list_item *item, 837void*cb_data) 838{ 839int*empty_entry_found = cb_data; 840char*ceil = item->string; 841 842if(!*ceil) { 843*empty_entry_found =1; 844return0; 845}else if(!is_absolute_path(ceil)) { 846return0; 847}else if(*empty_entry_found) { 848/* Keep entry but do not canonicalize it */ 849return1; 850}else{ 851char*real_path =real_pathdup(ceil,0); 852if(!real_path) { 853return0; 854} 855free(item->string); 856 item->string = real_path; 857return1; 858} 859} 860 861enum discovery_result { 862 GIT_DIR_NONE =0, 863 GIT_DIR_EXPLICIT, 864 GIT_DIR_DISCOVERED, 865 GIT_DIR_BARE, 866/* these are errors */ 867 GIT_DIR_HIT_CEILING = -1, 868 GIT_DIR_HIT_MOUNT_POINT = -2, 869 GIT_DIR_INVALID_GITFILE = -3 870}; 871 872/* 873 * We cannot decide in this function whether we are in the work tree or 874 * not, since the config can only be read _after_ this function was called. 875 * 876 * Also, we avoid changing any global state (such as the current working 877 * directory) to allow early callers. 878 * 879 * The directory where the search should start needs to be passed in via the 880 * `dir` parameter; upon return, the `dir` buffer will contain the path of 881 * the directory where the search ended, and `gitdir` will contain the path of 882 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it 883 * is relative to `dir` (i.e. *not* necessarily the cwd). 884 */ 885static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir, 886struct strbuf *gitdir, 887int die_on_error) 888{ 889const char*env_ceiling_dirs =getenv(CEILING_DIRECTORIES_ENVIRONMENT); 890struct string_list ceiling_dirs = STRING_LIST_INIT_DUP; 891const char*gitdirenv; 892int ceil_offset = -1, min_offset =has_dos_drive_prefix(dir->buf) ?3:1; 893 dev_t current_device =0; 894int one_filesystem =1; 895 896/* 897 * If GIT_DIR is set explicitly, we're not going 898 * to do any discovery, but we still do repository 899 * validation. 900 */ 901 gitdirenv =getenv(GIT_DIR_ENVIRONMENT); 902if(gitdirenv) { 903strbuf_addstr(gitdir, gitdirenv); 904return GIT_DIR_EXPLICIT; 905} 906 907if(env_ceiling_dirs) { 908int empty_entry_found =0; 909 910string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1); 911filter_string_list(&ceiling_dirs,0, 912 canonicalize_ceiling_entry, &empty_entry_found); 913 ceil_offset =longest_ancestor_length(dir->buf, &ceiling_dirs); 914string_list_clear(&ceiling_dirs,0); 915} 916 917if(ceil_offset <0) 918 ceil_offset = min_offset -2; 919 920/* 921 * Test in the following order (relative to the dir): 922 * - .git (file containing "gitdir: <path>") 923 * - .git/ 924 * - ./ (bare) 925 * - ../.git 926 * - ../.git/ 927 * - ../ (bare) 928 * - ../../.git/ 929 * etc. 930 */ 931 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM",0); 932if(one_filesystem) 933 current_device =get_device_or_die(dir->buf, NULL,0); 934for(;;) { 935int offset = dir->len, error_code =0; 936 937if(offset > min_offset) 938strbuf_addch(dir,'/'); 939strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT); 940 gitdirenv =read_gitfile_gently(dir->buf, die_on_error ? 941 NULL : &error_code); 942if(!gitdirenv) { 943if(die_on_error || 944 error_code == READ_GITFILE_ERR_NOT_A_FILE) { 945/* NEEDSWORK: fail if .git is not file nor dir */ 946if(is_git_directory(dir->buf)) 947 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT; 948}else if(error_code != READ_GITFILE_ERR_STAT_FAILED) 949return GIT_DIR_INVALID_GITFILE; 950} 951strbuf_setlen(dir, offset); 952if(gitdirenv) { 953strbuf_addstr(gitdir, gitdirenv); 954return GIT_DIR_DISCOVERED; 955} 956 957if(is_git_directory(dir->buf)) { 958strbuf_addstr(gitdir,"."); 959return GIT_DIR_BARE; 960} 961 962if(offset <= min_offset) 963return GIT_DIR_HIT_CEILING; 964 965while(--offset > ceil_offset && !is_dir_sep(dir->buf[offset])) 966;/* continue */ 967if(offset <= ceil_offset) 968return GIT_DIR_HIT_CEILING; 969 970strbuf_setlen(dir, offset > min_offset ? offset : min_offset); 971if(one_filesystem && 972 current_device !=get_device_or_die(dir->buf, NULL, offset)) 973return GIT_DIR_HIT_MOUNT_POINT; 974} 975} 976 977intdiscover_git_directory(struct strbuf *commondir, 978struct strbuf *gitdir) 979{ 980struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT; 981size_t gitdir_offset = gitdir->len, cwd_len; 982size_t commondir_offset = commondir->len; 983struct repository_format candidate; 984 985if(strbuf_getcwd(&dir)) 986return-1; 987 988 cwd_len = dir.len; 989if(setup_git_directory_gently_1(&dir, gitdir,0) <=0) { 990strbuf_release(&dir); 991return-1; 992} 993 994/* 995 * The returned gitdir is relative to dir, and if dir does not reflect 996 * the current working directory, we simply make the gitdir absolute. 997 */ 998if(dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) { 999/* Avoid a trailing "/." */1000if(!strcmp(".", gitdir->buf + gitdir_offset))1001strbuf_setlen(gitdir, gitdir_offset);1002else1003strbuf_addch(&dir,'/');1004strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);1005}10061007get_common_dir(commondir, gitdir->buf + gitdir_offset);10081009strbuf_reset(&dir);1010strbuf_addf(&dir,"%s/config", commondir->buf + commondir_offset);1011read_repository_format(&candidate, dir.buf);1012strbuf_release(&dir);10131014if(verify_repository_format(&candidate, &err) <0) {1015warning("ignoring git dir '%s':%s",1016 gitdir->buf + gitdir_offset, err.buf);1017strbuf_release(&err);1018strbuf_setlen(commondir, commondir_offset);1019strbuf_setlen(gitdir, gitdir_offset);1020return-1;1021}10221023return0;1024}10251026const char*setup_git_directory_gently(int*nongit_ok)1027{1028static struct strbuf cwd = STRBUF_INIT;1029struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;1030const char*prefix, *env_prefix;10311032/*1033 * We may have read an incomplete configuration before1034 * setting-up the git directory. If so, clear the cache so1035 * that the next queries to the configuration reload complete1036 * configuration (including the per-repo config file that we1037 * ignored previously).1038 */1039git_config_clear();10401041/*1042 * Let's assume that we are in a git repository.1043 * If it turns out later that we are somewhere else, the value will be1044 * updated accordingly.1045 */1046if(nongit_ok)1047*nongit_ok =0;10481049if(strbuf_getcwd(&cwd))1050die_errno(_("Unable to read current working directory"));1051strbuf_addbuf(&dir, &cwd);10521053switch(setup_git_directory_gently_1(&dir, &gitdir,1)) {1054case GIT_DIR_NONE:1055 prefix = NULL;1056break;1057case GIT_DIR_EXPLICIT:1058 prefix =setup_explicit_git_dir(gitdir.buf, &cwd, nongit_ok);1059break;1060case GIT_DIR_DISCOVERED:1061if(dir.len < cwd.len &&chdir(dir.buf))1062die(_("Cannot change to '%s'"), dir.buf);1063 prefix =setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,1064 nongit_ok);1065break;1066case GIT_DIR_BARE:1067if(dir.len < cwd.len &&chdir(dir.buf))1068die(_("Cannot change to '%s'"), dir.buf);1069 prefix =setup_bare_git_dir(&cwd, dir.len, nongit_ok);1070break;1071case GIT_DIR_HIT_CEILING:1072 prefix =setup_nongit(cwd.buf, nongit_ok);1073break;1074case GIT_DIR_HIT_MOUNT_POINT:1075if(nongit_ok) {1076*nongit_ok =1;1077strbuf_release(&cwd);1078strbuf_release(&dir);1079return NULL;1080}1081die(_("Not a git repository (or any parent up to mount point%s)\n"1082"Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),1083 dir.buf);1084default:1085die("BUG: unhandled setup_git_directory_1() result");1086}10871088/*1089 * NEEDSWORK: This was a hack in order to get ls-files and grep to have1090 * properly formated output when recursing submodules. Once ls-files1091 * and grep have been changed to perform this recursing in-process this1092 * needs to be removed.1093 */1094 env_prefix =getenv(GIT_TOPLEVEL_PREFIX_ENVIRONMENT);1095if(env_prefix)1096 prefix = env_prefix;10971098if(prefix)1099setenv(GIT_PREFIX_ENVIRONMENT, prefix,1);1100else1101setenv(GIT_PREFIX_ENVIRONMENT,"",1);11021103 startup_info->have_repository = !nongit_ok || !*nongit_ok;1104 startup_info->prefix = prefix;11051106/*1107 * Not all paths through the setup code will call 'set_git_dir()' (which1108 * directly sets up the environment) so in order to guarantee that the1109 * environment is in a consistent state after setup, explicitly setup1110 * the environment if we have a repository.1111 *1112 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some1113 * code paths so we also need to explicitly setup the environment if1114 * the user has set GIT_DIR. It may be beneficial to disallow bogus1115 * GIT_DIR values at some point in the future.1116 */1117if(startup_info->have_repository ||getenv(GIT_DIR_ENVIRONMENT)) {1118if(!the_repository->gitdir) {1119const char*gitdir =getenv(GIT_DIR_ENVIRONMENT);1120if(!gitdir)1121 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;1122repo_set_gitdir(the_repository, gitdir);1123setup_git_env();1124}1125}11261127strbuf_release(&dir);1128strbuf_release(&gitdir);11291130return prefix;1131}11321133intgit_config_perm(const char*var,const char*value)1134{1135int i;1136char*endptr;11371138if(value == NULL)1139return PERM_GROUP;11401141if(!strcmp(value,"umask"))1142return PERM_UMASK;1143if(!strcmp(value,"group"))1144return PERM_GROUP;1145if(!strcmp(value,"all") ||1146!strcmp(value,"world") ||1147!strcmp(value,"everybody"))1148return PERM_EVERYBODY;11491150/* Parse octal numbers */1151 i =strtol(value, &endptr,8);11521153/* If not an octal number, maybe true/false? */1154if(*endptr !=0)1155returngit_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;11561157/*1158 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is1159 * a chmod value to restrict to.1160 */1161switch(i) {1162case PERM_UMASK:/* 0 */1163return PERM_UMASK;1164case OLD_PERM_GROUP:/* 1 */1165return PERM_GROUP;1166case OLD_PERM_EVERYBODY:/* 2 */1167return PERM_EVERYBODY;1168}11691170/* A filemode value was given: 0xxx */11711172if((i &0600) !=0600)1173die(_("Problem with core.sharedRepository filemode value "1174"(0%.3o).\nThe owner of files must always have "1175"read and write permissions."), i);11761177/*1178 * Mask filemode value. Others can not get write permission.1179 * x flags for directories are handled separately.1180 */1181return-(i &0666);1182}11831184voidcheck_repository_format(void)1185{1186check_repository_format_gently(get_git_dir(), NULL);1187 startup_info->have_repository =1;1188}11891190/*1191 * Returns the "prefix", a path to the current working directory1192 * relative to the work tree root, or NULL, if the current working1193 * directory is not a strict subdirectory of the work tree root. The1194 * prefix always ends with a '/' character.1195 */1196const char*setup_git_directory(void)1197{1198returnsetup_git_directory_gently(NULL);1199}12001201const char*resolve_gitdir_gently(const char*suspect,int*return_error_code)1202{1203if(is_git_directory(suspect))1204return suspect;1205returnread_gitfile_gently(suspect, return_error_code);1206}12071208/* if any standard file descriptor is missing open it to /dev/null */1209voidsanitize_stdfds(void)1210{1211int fd =open("/dev/null", O_RDWR,0);1212while(fd != -1&& fd <2)1213 fd =dup(fd);1214if(fd == -1)1215die_errno("open /dev/null or dup failed");1216if(fd >2)1217close(fd);1218}12191220intdaemonize(void)1221{1222#ifdef NO_POSIX_GOODIES1223 errno = ENOSYS;1224return-1;1225#else1226switch(fork()) {1227case0:1228break;1229case-1:1230die_errno("fork failed");1231default:1232exit(0);1233}1234if(setsid() == -1)1235die_errno("setsid failed");1236close(0);1237close(1);1238close(2);1239sanitize_stdfds();1240return0;1241#endif1242}