config.con commit git_config(): not having a per-repo config file is not an error (aa38740)
   1/*
   2 * GIT - The information manager from hell
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 * Copyright (C) Johannes Schindelin, 2005
   6 *
   7 */
   8#include "cache.h"
   9#include "exec_cmd.h"
  10
  11#define MAXNAME (256)
  12
  13static FILE *config_file;
  14static const char *config_file_name;
  15static int config_linenr;
  16static int config_file_eof;
  17static int zlib_compression_seen;
  18
  19const char *config_exclusive_filename = NULL;
  20
  21static int get_next_char(void)
  22{
  23        int c;
  24        FILE *f;
  25
  26        c = '\n';
  27        if ((f = config_file) != NULL) {
  28                c = fgetc(f);
  29                if (c == '\r') {
  30                        /* DOS like systems */
  31                        c = fgetc(f);
  32                        if (c != '\n') {
  33                                ungetc(c, f);
  34                                c = '\r';
  35                        }
  36                }
  37                if (c == '\n')
  38                        config_linenr++;
  39                if (c == EOF) {
  40                        config_file_eof = 1;
  41                        c = '\n';
  42                }
  43        }
  44        return c;
  45}
  46
  47static char *parse_value(void)
  48{
  49        static char value[1024];
  50        int quote = 0, comment = 0, len = 0, space = 0;
  51
  52        for (;;) {
  53                int c = get_next_char();
  54                if (len >= sizeof(value))
  55                        return NULL;
  56                if (c == '\n') {
  57                        if (quote)
  58                                return NULL;
  59                        value[len] = 0;
  60                        return value;
  61                }
  62                if (comment)
  63                        continue;
  64                if (isspace(c) && !quote) {
  65                        space = 1;
  66                        continue;
  67                }
  68                if (!quote) {
  69                        if (c == ';' || c == '#') {
  70                                comment = 1;
  71                                continue;
  72                        }
  73                }
  74                if (space) {
  75                        if (len)
  76                                value[len++] = ' ';
  77                        space = 0;
  78                }
  79                if (c == '\\') {
  80                        c = get_next_char();
  81                        switch (c) {
  82                        case '\n':
  83                                continue;
  84                        case 't':
  85                                c = '\t';
  86                                break;
  87                        case 'b':
  88                                c = '\b';
  89                                break;
  90                        case 'n':
  91                                c = '\n';
  92                                break;
  93                        /* Some characters escape as themselves */
  94                        case '\\': case '"':
  95                                break;
  96                        /* Reject unknown escape sequences */
  97                        default:
  98                                return NULL;
  99                        }
 100                        value[len++] = c;
 101                        continue;
 102                }
 103                if (c == '"') {
 104                        quote = 1-quote;
 105                        continue;
 106                }
 107                value[len++] = c;
 108        }
 109}
 110
 111static inline int iskeychar(int c)
 112{
 113        return isalnum(c) || c == '-';
 114}
 115
 116static int get_value(config_fn_t fn, void *data, char *name, unsigned int len)
 117{
 118        int c;
 119        char *value;
 120
 121        /* Get the full name */
 122        for (;;) {
 123                c = get_next_char();
 124                if (config_file_eof)
 125                        break;
 126                if (!iskeychar(c))
 127                        break;
 128                name[len++] = tolower(c);
 129                if (len >= MAXNAME)
 130                        return -1;
 131        }
 132        name[len] = 0;
 133        while (c == ' ' || c == '\t')
 134                c = get_next_char();
 135
 136        value = NULL;
 137        if (c != '\n') {
 138                if (c != '=')
 139                        return -1;
 140                value = parse_value();
 141                if (!value)
 142                        return -1;
 143        }
 144        return fn(name, value, data);
 145}
 146
 147static int get_extended_base_var(char *name, int baselen, int c)
 148{
 149        do {
 150                if (c == '\n')
 151                        return -1;
 152                c = get_next_char();
 153        } while (isspace(c));
 154
 155        /* We require the format to be '[base "extension"]' */
 156        if (c != '"')
 157                return -1;
 158        name[baselen++] = '.';
 159
 160        for (;;) {
 161                int c = get_next_char();
 162                if (c == '\n')
 163                        return -1;
 164                if (c == '"')
 165                        break;
 166                if (c == '\\') {
 167                        c = get_next_char();
 168                        if (c == '\n')
 169                                return -1;
 170                }
 171                name[baselen++] = c;
 172                if (baselen > MAXNAME / 2)
 173                        return -1;
 174        }
 175
 176        /* Final ']' */
 177        if (get_next_char() != ']')
 178                return -1;
 179        return baselen;
 180}
 181
 182static int get_base_var(char *name)
 183{
 184        int baselen = 0;
 185
 186        for (;;) {
 187                int c = get_next_char();
 188                if (config_file_eof)
 189                        return -1;
 190                if (c == ']')
 191                        return baselen;
 192                if (isspace(c))
 193                        return get_extended_base_var(name, baselen, c);
 194                if (!iskeychar(c) && c != '.')
 195                        return -1;
 196                if (baselen > MAXNAME / 2)
 197                        return -1;
 198                name[baselen++] = tolower(c);
 199        }
 200}
 201
 202static int git_parse_file(config_fn_t fn, void *data)
 203{
 204        int comment = 0;
 205        int baselen = 0;
 206        static char var[MAXNAME];
 207
 208        /* U+FEFF Byte Order Mark in UTF8 */
 209        static const unsigned char *utf8_bom = (unsigned char *) "\xef\xbb\xbf";
 210        const unsigned char *bomptr = utf8_bom;
 211
 212        for (;;) {
 213                int c = get_next_char();
 214                if (bomptr && *bomptr) {
 215                        /* We are at the file beginning; skip UTF8-encoded BOM
 216                         * if present. Sane editors won't put this in on their
 217                         * own, but e.g. Windows Notepad will do it happily. */
 218                        if ((unsigned char) c == *bomptr) {
 219                                bomptr++;
 220                                continue;
 221                        } else {
 222                                /* Do not tolerate partial BOM. */
 223                                if (bomptr != utf8_bom)
 224                                        break;
 225                                /* No BOM at file beginning. Cool. */
 226                                bomptr = NULL;
 227                        }
 228                }
 229                if (c == '\n') {
 230                        if (config_file_eof)
 231                                return 0;
 232                        comment = 0;
 233                        continue;
 234                }
 235                if (comment || isspace(c))
 236                        continue;
 237                if (c == '#' || c == ';') {
 238                        comment = 1;
 239                        continue;
 240                }
 241                if (c == '[') {
 242                        baselen = get_base_var(var);
 243                        if (baselen <= 0)
 244                                break;
 245                        var[baselen++] = '.';
 246                        var[baselen] = 0;
 247                        continue;
 248                }
 249                if (!isalpha(c))
 250                        break;
 251                var[baselen] = tolower(c);
 252                if (get_value(fn, data, var, baselen+1) < 0)
 253                        break;
 254        }
 255        die("bad config file line %d in %s", config_linenr, config_file_name);
 256}
 257
 258static int parse_unit_factor(const char *end, unsigned long *val)
 259{
 260        if (!*end)
 261                return 1;
 262        else if (!strcasecmp(end, "k")) {
 263                *val *= 1024;
 264                return 1;
 265        }
 266        else if (!strcasecmp(end, "m")) {
 267                *val *= 1024 * 1024;
 268                return 1;
 269        }
 270        else if (!strcasecmp(end, "g")) {
 271                *val *= 1024 * 1024 * 1024;
 272                return 1;
 273        }
 274        return 0;
 275}
 276
 277static int git_parse_long(const char *value, long *ret)
 278{
 279        if (value && *value) {
 280                char *end;
 281                long val = strtol(value, &end, 0);
 282                unsigned long factor = 1;
 283                if (!parse_unit_factor(end, &factor))
 284                        return 0;
 285                *ret = val * factor;
 286                return 1;
 287        }
 288        return 0;
 289}
 290
 291int git_parse_ulong(const char *value, unsigned long *ret)
 292{
 293        if (value && *value) {
 294                char *end;
 295                unsigned long val = strtoul(value, &end, 0);
 296                if (!parse_unit_factor(end, &val))
 297                        return 0;
 298                *ret = val;
 299                return 1;
 300        }
 301        return 0;
 302}
 303
 304static void die_bad_config(const char *name)
 305{
 306        if (config_file_name)
 307                die("bad config value for '%s' in %s", name, config_file_name);
 308        die("bad config value for '%s'", name);
 309}
 310
 311int git_config_int(const char *name, const char *value)
 312{
 313        long ret = 0;
 314        if (!git_parse_long(value, &ret))
 315                die_bad_config(name);
 316        return ret;
 317}
 318
 319unsigned long git_config_ulong(const char *name, const char *value)
 320{
 321        unsigned long ret;
 322        if (!git_parse_ulong(value, &ret))
 323                die_bad_config(name);
 324        return ret;
 325}
 326
 327int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
 328{
 329        *is_bool = 1;
 330        if (!value)
 331                return 1;
 332        if (!*value)
 333                return 0;
 334        if (!strcasecmp(value, "true") || !strcasecmp(value, "yes"))
 335                return 1;
 336        if (!strcasecmp(value, "false") || !strcasecmp(value, "no"))
 337                return 0;
 338        *is_bool = 0;
 339        return git_config_int(name, value);
 340}
 341
 342int git_config_bool(const char *name, const char *value)
 343{
 344        int discard;
 345        return !!git_config_bool_or_int(name, value, &discard);
 346}
 347
 348int git_config_string(const char **dest, const char *var, const char *value)
 349{
 350        if (!value)
 351                return config_error_nonbool(var);
 352        *dest = xstrdup(value);
 353        return 0;
 354}
 355
 356static int git_default_core_config(const char *var, const char *value)
 357{
 358        /* This needs a better name */
 359        if (!strcmp(var, "core.filemode")) {
 360                trust_executable_bit = git_config_bool(var, value);
 361                return 0;
 362        }
 363        if (!strcmp(var, "core.trustctime")) {
 364                trust_ctime = git_config_bool(var, value);
 365                return 0;
 366        }
 367
 368        if (!strcmp(var, "core.quotepath")) {
 369                quote_path_fully = git_config_bool(var, value);
 370                return 0;
 371        }
 372
 373        if (!strcmp(var, "core.symlinks")) {
 374                has_symlinks = git_config_bool(var, value);
 375                return 0;
 376        }
 377
 378        if (!strcmp(var, "core.ignorecase")) {
 379                ignore_case = git_config_bool(var, value);
 380                return 0;
 381        }
 382
 383        if (!strcmp(var, "core.bare")) {
 384                is_bare_repository_cfg = git_config_bool(var, value);
 385                return 0;
 386        }
 387
 388        if (!strcmp(var, "core.ignorestat")) {
 389                assume_unchanged = git_config_bool(var, value);
 390                return 0;
 391        }
 392
 393        if (!strcmp(var, "core.prefersymlinkrefs")) {
 394                prefer_symlink_refs = git_config_bool(var, value);
 395                return 0;
 396        }
 397
 398        if (!strcmp(var, "core.logallrefupdates")) {
 399                log_all_ref_updates = git_config_bool(var, value);
 400                return 0;
 401        }
 402
 403        if (!strcmp(var, "core.warnambiguousrefs")) {
 404                warn_ambiguous_refs = git_config_bool(var, value);
 405                return 0;
 406        }
 407
 408        if (!strcmp(var, "core.loosecompression")) {
 409                int level = git_config_int(var, value);
 410                if (level == -1)
 411                        level = Z_DEFAULT_COMPRESSION;
 412                else if (level < 0 || level > Z_BEST_COMPRESSION)
 413                        die("bad zlib compression level %d", level);
 414                zlib_compression_level = level;
 415                zlib_compression_seen = 1;
 416                return 0;
 417        }
 418
 419        if (!strcmp(var, "core.compression")) {
 420                int level = git_config_int(var, value);
 421                if (level == -1)
 422                        level = Z_DEFAULT_COMPRESSION;
 423                else if (level < 0 || level > Z_BEST_COMPRESSION)
 424                        die("bad zlib compression level %d", level);
 425                core_compression_level = level;
 426                core_compression_seen = 1;
 427                if (!zlib_compression_seen)
 428                        zlib_compression_level = level;
 429                return 0;
 430        }
 431
 432        if (!strcmp(var, "core.packedgitwindowsize")) {
 433                int pgsz_x2 = getpagesize() * 2;
 434                packed_git_window_size = git_config_int(var, value);
 435
 436                /* This value must be multiple of (pagesize * 2) */
 437                packed_git_window_size /= pgsz_x2;
 438                if (packed_git_window_size < 1)
 439                        packed_git_window_size = 1;
 440                packed_git_window_size *= pgsz_x2;
 441                return 0;
 442        }
 443
 444        if (!strcmp(var, "core.packedgitlimit")) {
 445                packed_git_limit = git_config_int(var, value);
 446                return 0;
 447        }
 448
 449        if (!strcmp(var, "core.deltabasecachelimit")) {
 450                delta_base_cache_limit = git_config_int(var, value);
 451                return 0;
 452        }
 453
 454        if (!strcmp(var, "core.autocrlf")) {
 455                if (value && !strcasecmp(value, "input")) {
 456                        auto_crlf = -1;
 457                        return 0;
 458                }
 459                auto_crlf = git_config_bool(var, value);
 460                return 0;
 461        }
 462
 463        if (!strcmp(var, "core.safecrlf")) {
 464                if (value && !strcasecmp(value, "warn")) {
 465                        safe_crlf = SAFE_CRLF_WARN;
 466                        return 0;
 467                }
 468                safe_crlf = git_config_bool(var, value);
 469                return 0;
 470        }
 471
 472        if (!strcmp(var, "core.notesref")) {
 473                notes_ref_name = xstrdup(value);
 474                return 0;
 475        }
 476
 477        if (!strcmp(var, "core.pager"))
 478                return git_config_string(&pager_program, var, value);
 479
 480        if (!strcmp(var, "core.editor"))
 481                return git_config_string(&editor_program, var, value);
 482
 483        if (!strcmp(var, "core.excludesfile"))
 484                return git_config_string(&excludes_file, var, value);
 485
 486        if (!strcmp(var, "core.whitespace")) {
 487                if (!value)
 488                        return config_error_nonbool(var);
 489                whitespace_rule_cfg = parse_whitespace_rule(value);
 490                return 0;
 491        }
 492
 493        if (!strcmp(var, "core.fsyncobjectfiles")) {
 494                fsync_object_files = git_config_bool(var, value);
 495                return 0;
 496        }
 497
 498        if (!strcmp(var, "core.preloadindex")) {
 499                core_preload_index = git_config_bool(var, value);
 500                return 0;
 501        }
 502
 503        /* Add other config variables here and to Documentation/config.txt. */
 504        return 0;
 505}
 506
 507static int git_default_user_config(const char *var, const char *value)
 508{
 509        if (!strcmp(var, "user.name")) {
 510                if (!value)
 511                        return config_error_nonbool(var);
 512                strlcpy(git_default_name, value, sizeof(git_default_name));
 513                if (git_default_email[0])
 514                        user_ident_explicitly_given = 1;
 515                return 0;
 516        }
 517
 518        if (!strcmp(var, "user.email")) {
 519                if (!value)
 520                        return config_error_nonbool(var);
 521                strlcpy(git_default_email, value, sizeof(git_default_email));
 522                if (git_default_name[0])
 523                        user_ident_explicitly_given = 1;
 524                return 0;
 525        }
 526
 527        /* Add other config variables here and to Documentation/config.txt. */
 528        return 0;
 529}
 530
 531static int git_default_i18n_config(const char *var, const char *value)
 532{
 533        if (!strcmp(var, "i18n.commitencoding"))
 534                return git_config_string(&git_commit_encoding, var, value);
 535
 536        if (!strcmp(var, "i18n.logoutputencoding"))
 537                return git_config_string(&git_log_output_encoding, var, value);
 538
 539        /* Add other config variables here and to Documentation/config.txt. */
 540        return 0;
 541}
 542
 543static int git_default_branch_config(const char *var, const char *value)
 544{
 545        if (!strcmp(var, "branch.autosetupmerge")) {
 546                if (value && !strcasecmp(value, "always")) {
 547                        git_branch_track = BRANCH_TRACK_ALWAYS;
 548                        return 0;
 549                }
 550                git_branch_track = git_config_bool(var, value);
 551                return 0;
 552        }
 553        if (!strcmp(var, "branch.autosetuprebase")) {
 554                if (!value)
 555                        return config_error_nonbool(var);
 556                else if (!strcmp(value, "never"))
 557                        autorebase = AUTOREBASE_NEVER;
 558                else if (!strcmp(value, "local"))
 559                        autorebase = AUTOREBASE_LOCAL;
 560                else if (!strcmp(value, "remote"))
 561                        autorebase = AUTOREBASE_REMOTE;
 562                else if (!strcmp(value, "always"))
 563                        autorebase = AUTOREBASE_ALWAYS;
 564                else
 565                        return error("Malformed value for %s", var);
 566                return 0;
 567        }
 568
 569        /* Add other config variables here and to Documentation/config.txt. */
 570        return 0;
 571}
 572
 573int git_default_config(const char *var, const char *value, void *dummy)
 574{
 575        if (!prefixcmp(var, "core."))
 576                return git_default_core_config(var, value);
 577
 578        if (!prefixcmp(var, "user."))
 579                return git_default_user_config(var, value);
 580
 581        if (!prefixcmp(var, "i18n."))
 582                return git_default_i18n_config(var, value);
 583
 584        if (!prefixcmp(var, "branch."))
 585                return git_default_branch_config(var, value);
 586
 587        if (!strcmp(var, "pager.color") || !strcmp(var, "color.pager")) {
 588                pager_use_color = git_config_bool(var,value);
 589                return 0;
 590        }
 591
 592        /* Add other config variables here and to Documentation/config.txt. */
 593        return 0;
 594}
 595
 596int git_config_from_file(config_fn_t fn, const char *filename, void *data)
 597{
 598        int ret;
 599        FILE *f = fopen(filename, "r");
 600
 601        ret = -1;
 602        if (f) {
 603                config_file = f;
 604                config_file_name = filename;
 605                config_linenr = 1;
 606                config_file_eof = 0;
 607                ret = git_parse_file(fn, data);
 608                fclose(f);
 609                config_file_name = NULL;
 610        }
 611        return ret;
 612}
 613
 614const char *git_etc_gitconfig(void)
 615{
 616        static const char *system_wide;
 617        if (!system_wide)
 618                system_wide = system_path(ETC_GITCONFIG);
 619        return system_wide;
 620}
 621
 622static int git_env_bool(const char *k, int def)
 623{
 624        const char *v = getenv(k);
 625        return v ? git_config_bool(k, v) : def;
 626}
 627
 628int git_config_system(void)
 629{
 630        return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0);
 631}
 632
 633int git_config_global(void)
 634{
 635        return !git_env_bool("GIT_CONFIG_NOGLOBAL", 0);
 636}
 637
 638int git_config(config_fn_t fn, void *data)
 639{
 640        int ret = 0, found = 0;
 641        char *repo_config = NULL;
 642        const char *home = NULL;
 643
 644        /* Setting $GIT_CONFIG makes git read _only_ the given config file. */
 645        if (config_exclusive_filename)
 646                return git_config_from_file(fn, config_exclusive_filename, data);
 647        if (git_config_system() && !access(git_etc_gitconfig(), R_OK)) {
 648                ret += git_config_from_file(fn, git_etc_gitconfig(),
 649                                            data);
 650                found += 1;
 651        }
 652
 653        home = getenv("HOME");
 654        if (git_config_global() && home) {
 655                char *user_config = xstrdup(mkpath("%s/.gitconfig", home));
 656                if (!access(user_config, R_OK)) {
 657                        ret += git_config_from_file(fn, user_config, data);
 658                        found += 1;
 659                }
 660                free(user_config);
 661        }
 662
 663        repo_config = git_pathdup("config");
 664        if (!access(repo_config, R_OK)) {
 665                ret += git_config_from_file(fn, repo_config, data);
 666                found += 1;
 667        }
 668        free(repo_config);
 669        if (found == 0)
 670                return -1;
 671        return ret;
 672}
 673
 674/*
 675 * Find all the stuff for git_config_set() below.
 676 */
 677
 678#define MAX_MATCHES 512
 679
 680static struct {
 681        int baselen;
 682        char* key;
 683        int do_not_match;
 684        regex_t* value_regex;
 685        int multi_replace;
 686        size_t offset[MAX_MATCHES];
 687        enum { START, SECTION_SEEN, SECTION_END_SEEN, KEY_SEEN } state;
 688        int seen;
 689} store;
 690
 691static int matches(const char* key, const char* value)
 692{
 693        return !strcmp(key, store.key) &&
 694                (store.value_regex == NULL ||
 695                 (store.do_not_match ^
 696                  !regexec(store.value_regex, value, 0, NULL, 0)));
 697}
 698
 699static int store_aux(const char* key, const char* value, void *cb)
 700{
 701        const char *ep;
 702        size_t section_len;
 703
 704        switch (store.state) {
 705        case KEY_SEEN:
 706                if (matches(key, value)) {
 707                        if (store.seen == 1 && store.multi_replace == 0) {
 708                                warning("%s has multiple values", key);
 709                        } else if (store.seen >= MAX_MATCHES) {
 710                                error("too many matches for %s", key);
 711                                return 1;
 712                        }
 713
 714                        store.offset[store.seen] = ftell(config_file);
 715                        store.seen++;
 716                }
 717                break;
 718        case SECTION_SEEN:
 719                /*
 720                 * What we are looking for is in store.key (both
 721                 * section and var), and its section part is baselen
 722                 * long.  We found key (again, both section and var).
 723                 * We would want to know if this key is in the same
 724                 * section as what we are looking for.  We already
 725                 * know we are in the same section as what should
 726                 * hold store.key.
 727                 */
 728                ep = strrchr(key, '.');
 729                section_len = ep - key;
 730
 731                if ((section_len != store.baselen) ||
 732                    memcmp(key, store.key, section_len+1)) {
 733                        store.state = SECTION_END_SEEN;
 734                        break;
 735                }
 736
 737                /*
 738                 * Do not increment matches: this is no match, but we
 739                 * just made sure we are in the desired section.
 740                 */
 741                store.offset[store.seen] = ftell(config_file);
 742                /* fallthru */
 743        case SECTION_END_SEEN:
 744        case START:
 745                if (matches(key, value)) {
 746                        store.offset[store.seen] = ftell(config_file);
 747                        store.state = KEY_SEEN;
 748                        store.seen++;
 749                } else {
 750                        if (strrchr(key, '.') - key == store.baselen &&
 751                              !strncmp(key, store.key, store.baselen)) {
 752                                        store.state = SECTION_SEEN;
 753                                        store.offset[store.seen] = ftell(config_file);
 754                        }
 755                }
 756        }
 757        return 0;
 758}
 759
 760static int write_error(const char *filename)
 761{
 762        error("failed to write new configuration file %s", filename);
 763
 764        /* Same error code as "failed to rename". */
 765        return 4;
 766}
 767
 768static int store_write_section(int fd, const char* key)
 769{
 770        const char *dot;
 771        int i, success;
 772        struct strbuf sb = STRBUF_INIT;
 773
 774        dot = memchr(key, '.', store.baselen);
 775        if (dot) {
 776                strbuf_addf(&sb, "[%.*s \"", (int)(dot - key), key);
 777                for (i = dot - key + 1; i < store.baselen; i++) {
 778                        if (key[i] == '"' || key[i] == '\\')
 779                                strbuf_addch(&sb, '\\');
 780                        strbuf_addch(&sb, key[i]);
 781                }
 782                strbuf_addstr(&sb, "\"]\n");
 783        } else {
 784                strbuf_addf(&sb, "[%.*s]\n", store.baselen, key);
 785        }
 786
 787        success = write_in_full(fd, sb.buf, sb.len) == sb.len;
 788        strbuf_release(&sb);
 789
 790        return success;
 791}
 792
 793static int store_write_pair(int fd, const char* key, const char* value)
 794{
 795        int i, success;
 796        int length = strlen(key + store.baselen + 1);
 797        const char *quote = "";
 798        struct strbuf sb = STRBUF_INIT;
 799
 800        /*
 801         * Check to see if the value needs to be surrounded with a dq pair.
 802         * Note that problematic characters are always backslash-quoted; this
 803         * check is about not losing leading or trailing SP and strings that
 804         * follow beginning-of-comment characters (i.e. ';' and '#') by the
 805         * configuration parser.
 806         */
 807        if (value[0] == ' ')
 808                quote = "\"";
 809        for (i = 0; value[i]; i++)
 810                if (value[i] == ';' || value[i] == '#')
 811                        quote = "\"";
 812        if (i && value[i - 1] == ' ')
 813                quote = "\"";
 814
 815        strbuf_addf(&sb, "\t%.*s = %s",
 816                    length, key + store.baselen + 1, quote);
 817
 818        for (i = 0; value[i]; i++)
 819                switch (value[i]) {
 820                case '\n':
 821                        strbuf_addstr(&sb, "\\n");
 822                        break;
 823                case '\t':
 824                        strbuf_addstr(&sb, "\\t");
 825                        break;
 826                case '"':
 827                case '\\':
 828                        strbuf_addch(&sb, '\\');
 829                default:
 830                        strbuf_addch(&sb, value[i]);
 831                        break;
 832                }
 833        strbuf_addf(&sb, "%s\n", quote);
 834
 835        success = write_in_full(fd, sb.buf, sb.len) == sb.len;
 836        strbuf_release(&sb);
 837
 838        return success;
 839}
 840
 841static ssize_t find_beginning_of_line(const char* contents, size_t size,
 842        size_t offset_, int* found_bracket)
 843{
 844        size_t equal_offset = size, bracket_offset = size;
 845        ssize_t offset;
 846
 847contline:
 848        for (offset = offset_-2; offset > 0
 849                        && contents[offset] != '\n'; offset--)
 850                switch (contents[offset]) {
 851                        case '=': equal_offset = offset; break;
 852                        case ']': bracket_offset = offset; break;
 853                }
 854        if (offset > 0 && contents[offset-1] == '\\') {
 855                offset_ = offset;
 856                goto contline;
 857        }
 858        if (bracket_offset < equal_offset) {
 859                *found_bracket = 1;
 860                offset = bracket_offset+1;
 861        } else
 862                offset++;
 863
 864        return offset;
 865}
 866
 867int git_config_set(const char* key, const char* value)
 868{
 869        return git_config_set_multivar(key, value, NULL, 0);
 870}
 871
 872/*
 873 * If value==NULL, unset in (remove from) config,
 874 * if value_regex!=NULL, disregard key/value pairs where value does not match.
 875 * if multi_replace==0, nothing, or only one matching key/value is replaced,
 876 *     else all matching key/values (regardless how many) are removed,
 877 *     before the new pair is written.
 878 *
 879 * Returns 0 on success.
 880 *
 881 * This function does this:
 882 *
 883 * - it locks the config file by creating ".git/config.lock"
 884 *
 885 * - it then parses the config using store_aux() as validator to find
 886 *   the position on the key/value pair to replace. If it is to be unset,
 887 *   it must be found exactly once.
 888 *
 889 * - the config file is mmap()ed and the part before the match (if any) is
 890 *   written to the lock file, then the changed part and the rest.
 891 *
 892 * - the config file is removed and the lock file rename()d to it.
 893 *
 894 */
 895int git_config_set_multivar(const char* key, const char* value,
 896        const char* value_regex, int multi_replace)
 897{
 898        int i, dot;
 899        int fd = -1, in_fd;
 900        int ret;
 901        char* config_filename;
 902        struct lock_file *lock = NULL;
 903        const char* last_dot = strrchr(key, '.');
 904
 905        if (config_exclusive_filename)
 906                config_filename = xstrdup(config_exclusive_filename);
 907        else
 908                config_filename = git_pathdup("config");
 909
 910        /*
 911         * Since "key" actually contains the section name and the real
 912         * key name separated by a dot, we have to know where the dot is.
 913         */
 914
 915        if (last_dot == NULL) {
 916                error("key does not contain a section: %s", key);
 917                ret = 2;
 918                goto out_free;
 919        }
 920        store.baselen = last_dot - key;
 921
 922        store.multi_replace = multi_replace;
 923
 924        /*
 925         * Validate the key and while at it, lower case it for matching.
 926         */
 927        store.key = xmalloc(strlen(key) + 1);
 928        dot = 0;
 929        for (i = 0; key[i]; i++) {
 930                unsigned char c = key[i];
 931                if (c == '.')
 932                        dot = 1;
 933                /* Leave the extended basename untouched.. */
 934                if (!dot || i > store.baselen) {
 935                        if (!iskeychar(c) || (i == store.baselen+1 && !isalpha(c))) {
 936                                error("invalid key: %s", key);
 937                                free(store.key);
 938                                ret = 1;
 939                                goto out_free;
 940                        }
 941                        c = tolower(c);
 942                } else if (c == '\n') {
 943                        error("invalid key (newline): %s", key);
 944                        free(store.key);
 945                        ret = 1;
 946                        goto out_free;
 947                }
 948                store.key[i] = c;
 949        }
 950        store.key[i] = 0;
 951
 952        /*
 953         * The lock serves a purpose in addition to locking: the new
 954         * contents of .git/config will be written into it.
 955         */
 956        lock = xcalloc(sizeof(struct lock_file), 1);
 957        fd = hold_lock_file_for_update(lock, config_filename, 0);
 958        if (fd < 0) {
 959                error("could not lock config file %s", config_filename);
 960                free(store.key);
 961                ret = -1;
 962                goto out_free;
 963        }
 964
 965        /*
 966         * If .git/config does not exist yet, write a minimal version.
 967         */
 968        in_fd = open(config_filename, O_RDONLY);
 969        if ( in_fd < 0 ) {
 970                free(store.key);
 971
 972                if ( ENOENT != errno ) {
 973                        error("opening %s: %s", config_filename,
 974                              strerror(errno));
 975                        ret = 3; /* same as "invalid config file" */
 976                        goto out_free;
 977                }
 978                /* if nothing to unset, error out */
 979                if (value == NULL) {
 980                        ret = 5;
 981                        goto out_free;
 982                }
 983
 984                store.key = (char*)key;
 985                if (!store_write_section(fd, key) ||
 986                    !store_write_pair(fd, key, value))
 987                        goto write_err_out;
 988        } else {
 989                struct stat st;
 990                char* contents;
 991                size_t contents_sz, copy_begin, copy_end;
 992                int i, new_line = 0;
 993
 994                if (value_regex == NULL)
 995                        store.value_regex = NULL;
 996                else {
 997                        if (value_regex[0] == '!') {
 998                                store.do_not_match = 1;
 999                                value_regex++;
1000                        } else
1001                                store.do_not_match = 0;
1002
1003                        store.value_regex = (regex_t*)xmalloc(sizeof(regex_t));
1004                        if (regcomp(store.value_regex, value_regex,
1005                                        REG_EXTENDED)) {
1006                                error("invalid pattern: %s", value_regex);
1007                                free(store.value_regex);
1008                                ret = 6;
1009                                goto out_free;
1010                        }
1011                }
1012
1013                store.offset[0] = 0;
1014                store.state = START;
1015                store.seen = 0;
1016
1017                /*
1018                 * After this, store.offset will contain the *end* offset
1019                 * of the last match, or remain at 0 if no match was found.
1020                 * As a side effect, we make sure to transform only a valid
1021                 * existing config file.
1022                 */
1023                if (git_config_from_file(store_aux, config_filename, NULL)) {
1024                        error("invalid config file %s", config_filename);
1025                        free(store.key);
1026                        if (store.value_regex != NULL) {
1027                                regfree(store.value_regex);
1028                                free(store.value_regex);
1029                        }
1030                        ret = 3;
1031                        goto out_free;
1032                }
1033
1034                free(store.key);
1035                if (store.value_regex != NULL) {
1036                        regfree(store.value_regex);
1037                        free(store.value_regex);
1038                }
1039
1040                /* if nothing to unset, or too many matches, error out */
1041                if ((store.seen == 0 && value == NULL) ||
1042                                (store.seen > 1 && multi_replace == 0)) {
1043                        ret = 5;
1044                        goto out_free;
1045                }
1046
1047                fstat(in_fd, &st);
1048                contents_sz = xsize_t(st.st_size);
1049                contents = xmmap(NULL, contents_sz, PROT_READ,
1050                        MAP_PRIVATE, in_fd, 0);
1051                close(in_fd);
1052
1053                if (store.seen == 0)
1054                        store.seen = 1;
1055
1056                for (i = 0, copy_begin = 0; i < store.seen; i++) {
1057                        if (store.offset[i] == 0) {
1058                                store.offset[i] = copy_end = contents_sz;
1059                        } else if (store.state != KEY_SEEN) {
1060                                copy_end = store.offset[i];
1061                        } else
1062                                copy_end = find_beginning_of_line(
1063                                        contents, contents_sz,
1064                                        store.offset[i]-2, &new_line);
1065
1066                        if (copy_end > 0 && contents[copy_end-1] != '\n')
1067                                new_line = 1;
1068
1069                        /* write the first part of the config */
1070                        if (copy_end > copy_begin) {
1071                                if (write_in_full(fd, contents + copy_begin,
1072                                                  copy_end - copy_begin) <
1073                                    copy_end - copy_begin)
1074                                        goto write_err_out;
1075                                if (new_line &&
1076                                    write_in_full(fd, "\n", 1) != 1)
1077                                        goto write_err_out;
1078                        }
1079                        copy_begin = store.offset[i];
1080                }
1081
1082                /* write the pair (value == NULL means unset) */
1083                if (value != NULL) {
1084                        if (store.state == START) {
1085                                if (!store_write_section(fd, key))
1086                                        goto write_err_out;
1087                        }
1088                        if (!store_write_pair(fd, key, value))
1089                                goto write_err_out;
1090                }
1091
1092                /* write the rest of the config */
1093                if (copy_begin < contents_sz)
1094                        if (write_in_full(fd, contents + copy_begin,
1095                                          contents_sz - copy_begin) <
1096                            contents_sz - copy_begin)
1097                                goto write_err_out;
1098
1099                munmap(contents, contents_sz);
1100        }
1101
1102        if (commit_lock_file(lock) < 0) {
1103                error("could not commit config file %s", config_filename);
1104                ret = 4;
1105                goto out_free;
1106        }
1107
1108        /*
1109         * lock is committed, so don't try to roll it back below.
1110         * NOTE: Since lockfile.c keeps a linked list of all created
1111         * lock_file structures, it isn't safe to free(lock).  It's
1112         * better to just leave it hanging around.
1113         */
1114        lock = NULL;
1115        ret = 0;
1116
1117out_free:
1118        if (lock)
1119                rollback_lock_file(lock);
1120        free(config_filename);
1121        return ret;
1122
1123write_err_out:
1124        ret = write_error(lock->filename);
1125        goto out_free;
1126
1127}
1128
1129static int section_name_match (const char *buf, const char *name)
1130{
1131        int i = 0, j = 0, dot = 0;
1132        for (; buf[i] && buf[i] != ']'; i++) {
1133                if (!dot && isspace(buf[i])) {
1134                        dot = 1;
1135                        if (name[j++] != '.')
1136                                break;
1137                        for (i++; isspace(buf[i]); i++)
1138                                ; /* do nothing */
1139                        if (buf[i] != '"')
1140                                break;
1141                        continue;
1142                }
1143                if (buf[i] == '\\' && dot)
1144                        i++;
1145                else if (buf[i] == '"' && dot) {
1146                        for (i++; isspace(buf[i]); i++)
1147                                ; /* do_nothing */
1148                        break;
1149                }
1150                if (buf[i] != name[j++])
1151                        break;
1152        }
1153        return (buf[i] == ']' && name[j] == 0);
1154}
1155
1156/* if new_name == NULL, the section is removed instead */
1157int git_config_rename_section(const char *old_name, const char *new_name)
1158{
1159        int ret = 0, remove = 0;
1160        char *config_filename;
1161        struct lock_file *lock = xcalloc(sizeof(struct lock_file), 1);
1162        int out_fd;
1163        char buf[1024];
1164
1165        if (config_exclusive_filename)
1166                config_filename = xstrdup(config_exclusive_filename);
1167        else
1168                config_filename = git_pathdup("config");
1169        out_fd = hold_lock_file_for_update(lock, config_filename, 0);
1170        if (out_fd < 0) {
1171                ret = error("could not lock config file %s", config_filename);
1172                goto out;
1173        }
1174
1175        if (!(config_file = fopen(config_filename, "rb"))) {
1176                /* no config file means nothing to rename, no error */
1177                goto unlock_and_out;
1178        }
1179
1180        while (fgets(buf, sizeof(buf), config_file)) {
1181                int i;
1182                int length;
1183                for (i = 0; buf[i] && isspace(buf[i]); i++)
1184                        ; /* do nothing */
1185                if (buf[i] == '[') {
1186                        /* it's a section */
1187                        if (section_name_match (&buf[i+1], old_name)) {
1188                                ret++;
1189                                if (new_name == NULL) {
1190                                        remove = 1;
1191                                        continue;
1192                                }
1193                                store.baselen = strlen(new_name);
1194                                if (!store_write_section(out_fd, new_name)) {
1195                                        ret = write_error(lock->filename);
1196                                        goto out;
1197                                }
1198                                continue;
1199                        }
1200                        remove = 0;
1201                }
1202                if (remove)
1203                        continue;
1204                length = strlen(buf);
1205                if (write_in_full(out_fd, buf, length) != length) {
1206                        ret = write_error(lock->filename);
1207                        goto out;
1208                }
1209        }
1210        fclose(config_file);
1211 unlock_and_out:
1212        if (commit_lock_file(lock) < 0)
1213                ret = error("could not commit config file %s", config_filename);
1214 out:
1215        free(config_filename);
1216        return ret;
1217}
1218
1219/*
1220 * Call this to report error for your variable that should not
1221 * get a boolean value (i.e. "[my] var" means "true").
1222 */
1223int config_error_nonbool(const char *var)
1224{
1225        return error("Missing value for '%s'", var);
1226}