Merge branch 'sg/subtree-signed-commits' into pu
[git] / config.c
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 "config.h"
10 #include "repository.h"
11 #include "lockfile.h"
12 #include "exec_cmd.h"
13 #include "strbuf.h"
14 #include "quote.h"
15 #include "hashmap.h"
16 #include "string-list.h"
17 #include "utf8.h"
18 #include "dir.h"
19
20 struct config_source {
21         struct config_source *prev;
22         union {
23                 FILE *file;
24                 struct config_buf {
25                         const char *buf;
26                         size_t len;
27                         size_t pos;
28                 } buf;
29         } u;
30         enum config_origin_type origin_type;
31         const char *name;
32         const char *path;
33         int die_on_error;
34         int linenr;
35         int eof;
36         struct strbuf value;
37         struct strbuf var;
38
39         int (*do_fgetc)(struct config_source *c);
40         int (*do_ungetc)(int c, struct config_source *conf);
41         long (*do_ftell)(struct config_source *c);
42 };
43
44 /*
45  * These variables record the "current" config source, which
46  * can be accessed by parsing callbacks.
47  *
48  * The "cf" variable will be non-NULL only when we are actually parsing a real
49  * config source (file, blob, cmdline, etc).
50  *
51  * The "current_config_kvi" variable will be non-NULL only when we are feeding
52  * cached config from a configset into a callback.
53  *
54  * They should generally never be non-NULL at the same time. If they are both
55  * NULL, then we aren't parsing anything (and depending on the function looking
56  * at the variables, it's either a bug for it to be called in the first place,
57  * or it's a function which can be reused for non-config purposes, and should
58  * fall back to some sane behavior).
59  */
60 static struct config_source *cf;
61 static struct key_value_info *current_config_kvi;
62
63 /*
64  * Similar to the variables above, this gives access to the "scope" of the
65  * current value (repo, global, etc). For cached values, it can be found via
66  * the current_config_kvi as above. During parsing, the current value can be
67  * found in this variable. It's not part of "cf" because it transcends a single
68  * file (i.e., a file included from .git/config is still in "repo" scope).
69  */
70 static enum config_scope current_parsing_scope;
71
72 static int core_compression_seen;
73 static int pack_compression_seen;
74 static int zlib_compression_seen;
75
76 static int config_file_fgetc(struct config_source *conf)
77 {
78         return getc_unlocked(conf->u.file);
79 }
80
81 static int config_file_ungetc(int c, struct config_source *conf)
82 {
83         return ungetc(c, conf->u.file);
84 }
85
86 static long config_file_ftell(struct config_source *conf)
87 {
88         return ftell(conf->u.file);
89 }
90
91
92 static int config_buf_fgetc(struct config_source *conf)
93 {
94         if (conf->u.buf.pos < conf->u.buf.len)
95                 return conf->u.buf.buf[conf->u.buf.pos++];
96
97         return EOF;
98 }
99
100 static int config_buf_ungetc(int c, struct config_source *conf)
101 {
102         if (conf->u.buf.pos > 0) {
103                 conf->u.buf.pos--;
104                 if (conf->u.buf.buf[conf->u.buf.pos] != c)
105                         die("BUG: config_buf can only ungetc the same character");
106                 return c;
107         }
108
109         return EOF;
110 }
111
112 static long config_buf_ftell(struct config_source *conf)
113 {
114         return conf->u.buf.pos;
115 }
116
117 #define MAX_INCLUDE_DEPTH 10
118 static const char include_depth_advice[] =
119 "exceeded maximum include depth (%d) while including\n"
120 "       %s\n"
121 "from\n"
122 "       %s\n"
123 "Do you have circular includes?";
124 static int handle_path_include(const char *path, struct config_include_data *inc)
125 {
126         int ret = 0;
127         struct strbuf buf = STRBUF_INIT;
128         char *expanded;
129
130         if (!path)
131                 return config_error_nonbool("include.path");
132
133         expanded = expand_user_path(path, 0);
134         if (!expanded)
135                 return error("could not expand include path '%s'", path);
136         path = expanded;
137
138         /*
139          * Use an absolute path as-is, but interpret relative paths
140          * based on the including config file.
141          */
142         if (!is_absolute_path(path)) {
143                 char *slash;
144
145                 if (!cf || !cf->path)
146                         return error("relative config includes must come from files");
147
148                 slash = find_last_dir_sep(cf->path);
149                 if (slash)
150                         strbuf_add(&buf, cf->path, slash - cf->path + 1);
151                 strbuf_addstr(&buf, path);
152                 path = buf.buf;
153         }
154
155         if (!access_or_die(path, R_OK, 0)) {
156                 if (++inc->depth > MAX_INCLUDE_DEPTH)
157                         die(include_depth_advice, MAX_INCLUDE_DEPTH, path,
158                             !cf ? "<unknown>" :
159                             cf->name ? cf->name :
160                             "the command line");
161                 ret = git_config_from_file(git_config_include, path, inc);
162                 inc->depth--;
163         }
164         strbuf_release(&buf);
165         free(expanded);
166         return ret;
167 }
168
169 static int prepare_include_condition_pattern(struct strbuf *pat)
170 {
171         struct strbuf path = STRBUF_INIT;
172         char *expanded;
173         int prefix = 0;
174
175         expanded = expand_user_path(pat->buf, 1);
176         if (expanded) {
177                 strbuf_reset(pat);
178                 strbuf_addstr(pat, expanded);
179                 free(expanded);
180         }
181
182         if (pat->buf[0] == '.' && is_dir_sep(pat->buf[1])) {
183                 const char *slash;
184
185                 if (!cf || !cf->path)
186                         return error(_("relative config include "
187                                        "conditionals must come from files"));
188
189                 strbuf_realpath(&path, cf->path, 1);
190                 slash = find_last_dir_sep(path.buf);
191                 if (!slash)
192                         die("BUG: how is this possible?");
193                 strbuf_splice(pat, 0, 1, path.buf, slash - path.buf);
194                 prefix = slash - path.buf + 1 /* slash */;
195         } else if (!is_absolute_path(pat->buf))
196                 strbuf_insert(pat, 0, "**/", 3);
197
198         if (pat->len && is_dir_sep(pat->buf[pat->len - 1]))
199                 strbuf_addstr(pat, "**");
200
201         strbuf_release(&path);
202         return prefix;
203 }
204
205 static int include_by_gitdir(const struct config_options *opts,
206                              const char *cond, size_t cond_len, int icase)
207 {
208         struct strbuf text = STRBUF_INIT;
209         struct strbuf pattern = STRBUF_INIT;
210         int ret = 0, prefix;
211         const char *git_dir;
212         int already_tried_absolute = 0;
213
214         if (opts->git_dir)
215                 git_dir = opts->git_dir;
216         else
217                 goto done;
218
219         strbuf_realpath(&text, git_dir, 1);
220         strbuf_add(&pattern, cond, cond_len);
221         prefix = prepare_include_condition_pattern(&pattern);
222
223 again:
224         if (prefix < 0)
225                 goto done;
226
227         if (prefix > 0) {
228                 /*
229                  * perform literal matching on the prefix part so that
230                  * any wildcard character in it can't create side effects.
231                  */
232                 if (text.len < prefix)
233                         goto done;
234                 if (!icase && strncmp(pattern.buf, text.buf, prefix))
235                         goto done;
236                 if (icase && strncasecmp(pattern.buf, text.buf, prefix))
237                         goto done;
238         }
239
240         ret = !wildmatch(pattern.buf + prefix, text.buf + prefix,
241                          icase ? WM_CASEFOLD : 0);
242
243         if (!ret && !already_tried_absolute) {
244                 /*
245                  * We've tried e.g. matching gitdir:~/work, but if
246                  * ~/work is a symlink to /mnt/storage/work
247                  * strbuf_realpath() will expand it, so the rule won't
248                  * match. Let's match against a
249                  * strbuf_add_absolute_path() version of the path,
250                  * which'll do the right thing
251                  */
252                 strbuf_reset(&text);
253                 strbuf_add_absolute_path(&text, git_dir);
254                 already_tried_absolute = 1;
255                 goto again;
256         }
257 done:
258         strbuf_release(&pattern);
259         strbuf_release(&text);
260         return ret;
261 }
262
263 static int include_condition_is_true(const struct config_options *opts,
264                                      const char *cond, size_t cond_len)
265 {
266
267         if (skip_prefix_mem(cond, cond_len, "gitdir:", &cond, &cond_len))
268                 return include_by_gitdir(opts, cond, cond_len, 0);
269         else if (skip_prefix_mem(cond, cond_len, "gitdir/i:", &cond, &cond_len))
270                 return include_by_gitdir(opts, cond, cond_len, 1);
271
272         /* unknown conditionals are always false */
273         return 0;
274 }
275
276 int git_config_include(const char *var, const char *value, void *data)
277 {
278         struct config_include_data *inc = data;
279         const char *cond, *key;
280         int cond_len;
281         int ret;
282
283         /*
284          * Pass along all values, including "include" directives; this makes it
285          * possible to query information on the includes themselves.
286          */
287         ret = inc->fn(var, value, inc->data);
288         if (ret < 0)
289                 return ret;
290
291         if (!strcmp(var, "include.path"))
292                 ret = handle_path_include(value, inc);
293
294         if (!parse_config_key(var, "includeif", &cond, &cond_len, &key) &&
295             (cond && include_condition_is_true(inc->opts, cond, cond_len)) &&
296             !strcmp(key, "path"))
297                 ret = handle_path_include(value, inc);
298
299         return ret;
300 }
301
302 void git_config_push_parameter(const char *text)
303 {
304         struct strbuf env = STRBUF_INIT;
305         const char *old = getenv(CONFIG_DATA_ENVIRONMENT);
306         if (old && *old) {
307                 strbuf_addstr(&env, old);
308                 strbuf_addch(&env, ' ');
309         }
310         sq_quote_buf(&env, text);
311         setenv(CONFIG_DATA_ENVIRONMENT, env.buf, 1);
312         strbuf_release(&env);
313 }
314
315 static inline int iskeychar(int c)
316 {
317         return isalnum(c) || c == '-';
318 }
319
320 /*
321  * Auxiliary function to sanity-check and split the key into the section
322  * identifier and variable name.
323  *
324  * Returns 0 on success, -1 when there is an invalid character in the key and
325  * -2 if there is no section name in the key.
326  *
327  * store_key - pointer to char* which will hold a copy of the key with
328  *             lowercase section and variable name
329  * baselen - pointer to int which will hold the length of the
330  *           section + subsection part, can be NULL
331  */
332 static int git_config_parse_key_1(const char *key, char **store_key, int *baselen_, int quiet)
333 {
334         int i, dot, baselen;
335         const char *last_dot = strrchr(key, '.');
336
337         /*
338          * Since "key" actually contains the section name and the real
339          * key name separated by a dot, we have to know where the dot is.
340          */
341
342         if (last_dot == NULL || last_dot == key) {
343                 if (!quiet)
344                         error("key does not contain a section: %s", key);
345                 return -CONFIG_NO_SECTION_OR_NAME;
346         }
347
348         if (!last_dot[1]) {
349                 if (!quiet)
350                         error("key does not contain variable name: %s", key);
351                 return -CONFIG_NO_SECTION_OR_NAME;
352         }
353
354         baselen = last_dot - key;
355         if (baselen_)
356                 *baselen_ = baselen;
357
358         /*
359          * Validate the key and while at it, lower case it for matching.
360          */
361         if (store_key)
362                 *store_key = xmallocz(strlen(key));
363
364         dot = 0;
365         for (i = 0; key[i]; i++) {
366                 unsigned char c = key[i];
367                 if (c == '.')
368                         dot = 1;
369                 /* Leave the extended basename untouched.. */
370                 if (!dot || i > baselen) {
371                         if (!iskeychar(c) ||
372                             (i == baselen + 1 && !isalpha(c))) {
373                                 if (!quiet)
374                                         error("invalid key: %s", key);
375                                 goto out_free_ret_1;
376                         }
377                         c = tolower(c);
378                 } else if (c == '\n') {
379                         if (!quiet)
380                                 error("invalid key (newline): %s", key);
381                         goto out_free_ret_1;
382                 }
383                 if (store_key)
384                         (*store_key)[i] = c;
385         }
386
387         return 0;
388
389 out_free_ret_1:
390         if (store_key) {
391                 FREE_AND_NULL(*store_key);
392         }
393         return -CONFIG_INVALID_KEY;
394 }
395
396 int git_config_parse_key(const char *key, char **store_key, int *baselen)
397 {
398         return git_config_parse_key_1(key, store_key, baselen, 0);
399 }
400
401 int git_config_key_is_valid(const char *key)
402 {
403         return !git_config_parse_key_1(key, NULL, NULL, 1);
404 }
405
406 int git_config_parse_parameter(const char *text,
407                                config_fn_t fn, void *data)
408 {
409         const char *value;
410         char *canonical_name;
411         struct strbuf **pair;
412         int ret;
413
414         pair = strbuf_split_str(text, '=', 2);
415         if (!pair[0])
416                 return error("bogus config parameter: %s", text);
417
418         if (pair[0]->len && pair[0]->buf[pair[0]->len - 1] == '=') {
419                 strbuf_setlen(pair[0], pair[0]->len - 1);
420                 value = pair[1] ? pair[1]->buf : "";
421         } else {
422                 value = NULL;
423         }
424
425         strbuf_trim(pair[0]);
426         if (!pair[0]->len) {
427                 strbuf_list_free(pair);
428                 return error("bogus config parameter: %s", text);
429         }
430
431         if (git_config_parse_key(pair[0]->buf, &canonical_name, NULL)) {
432                 ret = -1;
433         } else {
434                 ret = (fn(canonical_name, value, data) < 0) ? -1 : 0;
435                 free(canonical_name);
436         }
437         strbuf_list_free(pair);
438         return ret;
439 }
440
441 int git_config_from_parameters(config_fn_t fn, void *data)
442 {
443         const char *env = getenv(CONFIG_DATA_ENVIRONMENT);
444         int ret = 0;
445         char *envw;
446         const char **argv = NULL;
447         int nr = 0, alloc = 0;
448         int i;
449         struct config_source source;
450
451         if (!env)
452                 return 0;
453
454         memset(&source, 0, sizeof(source));
455         source.prev = cf;
456         source.origin_type = CONFIG_ORIGIN_CMDLINE;
457         cf = &source;
458
459         /* sq_dequote will write over it */
460         envw = xstrdup(env);
461
462         if (sq_dequote_to_argv(envw, &argv, &nr, &alloc) < 0) {
463                 ret = error("bogus format in " CONFIG_DATA_ENVIRONMENT);
464                 goto out;
465         }
466
467         for (i = 0; i < nr; i++) {
468                 if (git_config_parse_parameter(argv[i], fn, data) < 0) {
469                         ret = -1;
470                         goto out;
471                 }
472         }
473
474 out:
475         free(argv);
476         free(envw);
477         cf = source.prev;
478         return ret;
479 }
480
481 static int get_next_char(void)
482 {
483         int c = cf->do_fgetc(cf);
484
485         if (c == '\r') {
486                 /* DOS like systems */
487                 c = cf->do_fgetc(cf);
488                 if (c != '\n') {
489                         if (c != EOF)
490                                 cf->do_ungetc(c, cf);
491                         c = '\r';
492                 }
493         }
494         if (c == '\n')
495                 cf->linenr++;
496         if (c == EOF) {
497                 cf->eof = 1;
498                 cf->linenr++;
499                 c = '\n';
500         }
501         return c;
502 }
503
504 static char *parse_value(void)
505 {
506         int quote = 0, comment = 0, space = 0;
507
508         strbuf_reset(&cf->value);
509         for (;;) {
510                 int c = get_next_char();
511                 if (c == '\n') {
512                         if (quote) {
513                                 cf->linenr--;
514                                 return NULL;
515                         }
516                         return cf->value.buf;
517                 }
518                 if (comment)
519                         continue;
520                 if (isspace(c) && !quote) {
521                         if (cf->value.len)
522                                 space++;
523                         continue;
524                 }
525                 if (!quote) {
526                         if (c == ';' || c == '#') {
527                                 comment = 1;
528                                 continue;
529                         }
530                 }
531                 for (; space; space--)
532                         strbuf_addch(&cf->value, ' ');
533                 if (c == '\\') {
534                         c = get_next_char();
535                         switch (c) {
536                         case '\n':
537                                 continue;
538                         case 't':
539                                 c = '\t';
540                                 break;
541                         case 'b':
542                                 c = '\b';
543                                 break;
544                         case 'n':
545                                 c = '\n';
546                                 break;
547                         /* Some characters escape as themselves */
548                         case '\\': case '"':
549                                 break;
550                         /* Reject unknown escape sequences */
551                         default:
552                                 return NULL;
553                         }
554                         strbuf_addch(&cf->value, c);
555                         continue;
556                 }
557                 if (c == '"') {
558                         quote = 1-quote;
559                         continue;
560                 }
561                 strbuf_addch(&cf->value, c);
562         }
563 }
564
565 static int get_value(config_fn_t fn, void *data, struct strbuf *name)
566 {
567         int c;
568         char *value;
569         int ret;
570
571         /* Get the full name */
572         for (;;) {
573                 c = get_next_char();
574                 if (cf->eof)
575                         break;
576                 if (!iskeychar(c))
577                         break;
578                 strbuf_addch(name, tolower(c));
579         }
580
581         while (c == ' ' || c == '\t')
582                 c = get_next_char();
583
584         value = NULL;
585         if (c != '\n') {
586                 if (c != '=')
587                         return -1;
588                 value = parse_value();
589                 if (!value)
590                         return -1;
591         }
592         /*
593          * We already consumed the \n, but we need linenr to point to
594          * the line we just parsed during the call to fn to get
595          * accurate line number in error messages.
596          */
597         cf->linenr--;
598         ret = fn(name->buf, value, data);
599         if (ret >= 0)
600                 cf->linenr++;
601         return ret;
602 }
603
604 static int get_extended_base_var(struct strbuf *name, int c)
605 {
606         do {
607                 if (c == '\n')
608                         goto error_incomplete_line;
609                 c = get_next_char();
610         } while (isspace(c));
611
612         /* We require the format to be '[base "extension"]' */
613         if (c != '"')
614                 return -1;
615         strbuf_addch(name, '.');
616
617         for (;;) {
618                 int c = get_next_char();
619                 if (c == '\n')
620                         goto error_incomplete_line;
621                 if (c == '"')
622                         break;
623                 if (c == '\\') {
624                         c = get_next_char();
625                         if (c == '\n')
626                                 goto error_incomplete_line;
627                 }
628                 strbuf_addch(name, c);
629         }
630
631         /* Final ']' */
632         if (get_next_char() != ']')
633                 return -1;
634         return 0;
635 error_incomplete_line:
636         cf->linenr--;
637         return -1;
638 }
639
640 static int get_base_var(struct strbuf *name)
641 {
642         for (;;) {
643                 int c = get_next_char();
644                 if (cf->eof)
645                         return -1;
646                 if (c == ']')
647                         return 0;
648                 if (isspace(c))
649                         return get_extended_base_var(name, c);
650                 if (!iskeychar(c) && c != '.')
651                         return -1;
652                 strbuf_addch(name, tolower(c));
653         }
654 }
655
656 static int git_parse_source(config_fn_t fn, void *data)
657 {
658         int comment = 0;
659         int baselen = 0;
660         struct strbuf *var = &cf->var;
661         int error_return = 0;
662         char *error_msg = NULL;
663
664         /* U+FEFF Byte Order Mark in UTF8 */
665         const char *bomptr = utf8_bom;
666
667         for (;;) {
668                 int c = get_next_char();
669                 if (bomptr && *bomptr) {
670                         /* We are at the file beginning; skip UTF8-encoded BOM
671                          * if present. Sane editors won't put this in on their
672                          * own, but e.g. Windows Notepad will do it happily. */
673                         if (c == (*bomptr & 0377)) {
674                                 bomptr++;
675                                 continue;
676                         } else {
677                                 /* Do not tolerate partial BOM. */
678                                 if (bomptr != utf8_bom)
679                                         break;
680                                 /* No BOM at file beginning. Cool. */
681                                 bomptr = NULL;
682                         }
683                 }
684                 if (c == '\n') {
685                         if (cf->eof)
686                                 return 0;
687                         comment = 0;
688                         continue;
689                 }
690                 if (comment || isspace(c))
691                         continue;
692                 if (c == '#' || c == ';') {
693                         comment = 1;
694                         continue;
695                 }
696                 if (c == '[') {
697                         /* Reset prior to determining a new stem */
698                         strbuf_reset(var);
699                         if (get_base_var(var) < 0 || var->len < 1)
700                                 break;
701                         strbuf_addch(var, '.');
702                         baselen = var->len;
703                         continue;
704                 }
705                 if (!isalpha(c))
706                         break;
707                 /*
708                  * Truncate the var name back to the section header
709                  * stem prior to grabbing the suffix part of the name
710                  * and the value.
711                  */
712                 strbuf_setlen(var, baselen);
713                 strbuf_addch(var, tolower(c));
714                 if (get_value(fn, data, var) < 0)
715                         break;
716         }
717
718         switch (cf->origin_type) {
719         case CONFIG_ORIGIN_BLOB:
720                 error_msg = xstrfmt(_("bad config line %d in blob %s"),
721                                       cf->linenr, cf->name);
722                 break;
723         case CONFIG_ORIGIN_FILE:
724                 error_msg = xstrfmt(_("bad config line %d in file %s"),
725                                       cf->linenr, cf->name);
726                 break;
727         case CONFIG_ORIGIN_STDIN:
728                 error_msg = xstrfmt(_("bad config line %d in standard input"),
729                                       cf->linenr);
730                 break;
731         case CONFIG_ORIGIN_SUBMODULE_BLOB:
732                 error_msg = xstrfmt(_("bad config line %d in submodule-blob %s"),
733                                        cf->linenr, cf->name);
734                 break;
735         case CONFIG_ORIGIN_CMDLINE:
736                 error_msg = xstrfmt(_("bad config line %d in command line %s"),
737                                        cf->linenr, cf->name);
738                 break;
739         default:
740                 error_msg = xstrfmt(_("bad config line %d in %s"),
741                                       cf->linenr, cf->name);
742         }
743
744         if (cf->die_on_error)
745                 die("%s", error_msg);
746         else
747                 error_return = error("%s", error_msg);
748
749         free(error_msg);
750         return error_return;
751 }
752
753 static int parse_unit_factor(const char *end, uintmax_t *val)
754 {
755         if (!*end)
756                 return 1;
757         else if (!strcasecmp(end, "k")) {
758                 *val *= 1024;
759                 return 1;
760         }
761         else if (!strcasecmp(end, "m")) {
762                 *val *= 1024 * 1024;
763                 return 1;
764         }
765         else if (!strcasecmp(end, "g")) {
766                 *val *= 1024 * 1024 * 1024;
767                 return 1;
768         }
769         return 0;
770 }
771
772 static int git_parse_signed(const char *value, intmax_t *ret, intmax_t max)
773 {
774         if (value && *value) {
775                 char *end;
776                 intmax_t val;
777                 uintmax_t uval;
778                 uintmax_t factor = 1;
779
780                 errno = 0;
781                 val = strtoimax(value, &end, 0);
782                 if (errno == ERANGE)
783                         return 0;
784                 if (!parse_unit_factor(end, &factor)) {
785                         errno = EINVAL;
786                         return 0;
787                 }
788                 uval = labs(val);
789                 uval *= factor;
790                 if (uval > max || labs(val) > uval) {
791                         errno = ERANGE;
792                         return 0;
793                 }
794                 val *= factor;
795                 *ret = val;
796                 return 1;
797         }
798         errno = EINVAL;
799         return 0;
800 }
801
802 static int git_parse_unsigned(const char *value, uintmax_t *ret, uintmax_t max)
803 {
804         if (value && *value) {
805                 char *end;
806                 uintmax_t val;
807                 uintmax_t oldval;
808
809                 errno = 0;
810                 val = strtoumax(value, &end, 0);
811                 if (errno == ERANGE)
812                         return 0;
813                 oldval = val;
814                 if (!parse_unit_factor(end, &val)) {
815                         errno = EINVAL;
816                         return 0;
817                 }
818                 if (val > max || oldval > val) {
819                         errno = ERANGE;
820                         return 0;
821                 }
822                 *ret = val;
823                 return 1;
824         }
825         errno = EINVAL;
826         return 0;
827 }
828
829 static int git_parse_int(const char *value, int *ret)
830 {
831         intmax_t tmp;
832         if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int)))
833                 return 0;
834         *ret = tmp;
835         return 1;
836 }
837
838 static int git_parse_int64(const char *value, int64_t *ret)
839 {
840         intmax_t tmp;
841         if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int64_t)))
842                 return 0;
843         *ret = tmp;
844         return 1;
845 }
846
847 int git_parse_ulong(const char *value, unsigned long *ret)
848 {
849         uintmax_t tmp;
850         if (!git_parse_unsigned(value, &tmp, maximum_unsigned_value_of_type(long)))
851                 return 0;
852         *ret = tmp;
853         return 1;
854 }
855
856 int git_parse_ssize_t(const char *value, ssize_t *ret)
857 {
858         intmax_t tmp;
859         if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(ssize_t)))
860                 return 0;
861         *ret = tmp;
862         return 1;
863 }
864
865 NORETURN
866 static void die_bad_number(const char *name, const char *value)
867 {
868         const char * error_type = (errno == ERANGE)? _("out of range"):_("invalid unit");
869
870         if (!value)
871                 value = "";
872
873         if (!(cf && cf->name))
874                 die(_("bad numeric config value '%s' for '%s': %s"),
875                     value, name, error_type);
876
877         switch (cf->origin_type) {
878         case CONFIG_ORIGIN_BLOB:
879                 die(_("bad numeric config value '%s' for '%s' in blob %s: %s"),
880                     value, name, cf->name, error_type);
881         case CONFIG_ORIGIN_FILE:
882                 die(_("bad numeric config value '%s' for '%s' in file %s: %s"),
883                     value, name, cf->name, error_type);
884         case CONFIG_ORIGIN_STDIN:
885                 die(_("bad numeric config value '%s' for '%s' in standard input: %s"),
886                     value, name, error_type);
887         case CONFIG_ORIGIN_SUBMODULE_BLOB:
888                 die(_("bad numeric config value '%s' for '%s' in submodule-blob %s: %s"),
889                     value, name, cf->name, error_type);
890         case CONFIG_ORIGIN_CMDLINE:
891                 die(_("bad numeric config value '%s' for '%s' in command line %s: %s"),
892                     value, name, cf->name, error_type);
893         default:
894                 die(_("bad numeric config value '%s' for '%s' in %s: %s"),
895                     value, name, cf->name, error_type);
896         }
897 }
898
899 int git_config_int(const char *name, const char *value)
900 {
901         int ret;
902         if (!git_parse_int(value, &ret))
903                 die_bad_number(name, value);
904         return ret;
905 }
906
907 int64_t git_config_int64(const char *name, const char *value)
908 {
909         int64_t ret;
910         if (!git_parse_int64(value, &ret))
911                 die_bad_number(name, value);
912         return ret;
913 }
914
915 unsigned long git_config_ulong(const char *name, const char *value)
916 {
917         unsigned long ret;
918         if (!git_parse_ulong(value, &ret))
919                 die_bad_number(name, value);
920         return ret;
921 }
922
923 ssize_t git_config_ssize_t(const char *name, const char *value)
924 {
925         ssize_t ret;
926         if (!git_parse_ssize_t(value, &ret))
927                 die_bad_number(name, value);
928         return ret;
929 }
930
931 static int git_parse_maybe_bool_text(const char *value)
932 {
933         if (!value)
934                 return 1;
935         if (!*value)
936                 return 0;
937         if (!strcasecmp(value, "true")
938             || !strcasecmp(value, "yes")
939             || !strcasecmp(value, "on"))
940                 return 1;
941         if (!strcasecmp(value, "false")
942             || !strcasecmp(value, "no")
943             || !strcasecmp(value, "off"))
944                 return 0;
945         return -1;
946 }
947
948 int git_parse_maybe_bool(const char *value)
949 {
950         int v = git_parse_maybe_bool_text(value);
951         if (0 <= v)
952                 return v;
953         if (git_parse_int(value, &v))
954                 return !!v;
955         return -1;
956 }
957
958 int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
959 {
960         int v = git_parse_maybe_bool_text(value);
961         if (0 <= v) {
962                 *is_bool = 1;
963                 return v;
964         }
965         *is_bool = 0;
966         return git_config_int(name, value);
967 }
968
969 int git_config_bool(const char *name, const char *value)
970 {
971         int discard;
972         return !!git_config_bool_or_int(name, value, &discard);
973 }
974
975 int git_config_string(const char **dest, const char *var, const char *value)
976 {
977         if (!value)
978                 return config_error_nonbool(var);
979         *dest = xstrdup(value);
980         return 0;
981 }
982
983 int git_config_pathname(const char **dest, const char *var, const char *value)
984 {
985         if (!value)
986                 return config_error_nonbool(var);
987         *dest = expand_user_path(value, 0);
988         if (!*dest)
989                 die(_("failed to expand user dir in: '%s'"), value);
990         return 0;
991 }
992
993 int git_config_expiry_date(timestamp_t *timestamp, const char *var, const char *value)
994 {
995         if (!value)
996                 return config_error_nonbool(var);
997         if (parse_expiry_date(value, timestamp))
998                 return error(_("'%s' for '%s' is not a valid timestamp"),
999                              value, var);
1000         return 0;
1001 }
1002
1003 static int git_default_core_config(const char *var, const char *value)
1004 {
1005         /* This needs a better name */
1006         if (!strcmp(var, "core.filemode")) {
1007                 trust_executable_bit = git_config_bool(var, value);
1008                 return 0;
1009         }
1010         if (!strcmp(var, "core.trustctime")) {
1011                 trust_ctime = git_config_bool(var, value);
1012                 return 0;
1013         }
1014         if (!strcmp(var, "core.checkstat")) {
1015                 if (!strcasecmp(value, "default"))
1016                         check_stat = 1;
1017                 else if (!strcasecmp(value, "minimal"))
1018                         check_stat = 0;
1019         }
1020
1021         if (!strcmp(var, "core.quotepath")) {
1022                 quote_path_fully = git_config_bool(var, value);
1023                 return 0;
1024         }
1025
1026         if (!strcmp(var, "core.symlinks")) {
1027                 has_symlinks = git_config_bool(var, value);
1028                 return 0;
1029         }
1030
1031         if (!strcmp(var, "core.ignorecase")) {
1032                 ignore_case = git_config_bool(var, value);
1033                 return 0;
1034         }
1035
1036         if (!strcmp(var, "core.attributesfile"))
1037                 return git_config_pathname(&git_attributes_file, var, value);
1038
1039         if (!strcmp(var, "core.hookspath"))
1040                 return git_config_pathname(&git_hooks_path, var, value);
1041
1042         if (!strcmp(var, "core.bare")) {
1043                 is_bare_repository_cfg = git_config_bool(var, value);
1044                 return 0;
1045         }
1046
1047         if (!strcmp(var, "core.ignorestat")) {
1048                 assume_unchanged = git_config_bool(var, value);
1049                 return 0;
1050         }
1051
1052         if (!strcmp(var, "core.prefersymlinkrefs")) {
1053                 prefer_symlink_refs = git_config_bool(var, value);
1054                 return 0;
1055         }
1056
1057         if (!strcmp(var, "core.logallrefupdates")) {
1058                 if (value && !strcasecmp(value, "always"))
1059                         log_all_ref_updates = LOG_REFS_ALWAYS;
1060                 else if (git_config_bool(var, value))
1061                         log_all_ref_updates = LOG_REFS_NORMAL;
1062                 else
1063                         log_all_ref_updates = LOG_REFS_NONE;
1064                 return 0;
1065         }
1066
1067         if (!strcmp(var, "core.warnambiguousrefs")) {
1068                 warn_ambiguous_refs = git_config_bool(var, value);
1069                 return 0;
1070         }
1071
1072         if (!strcmp(var, "core.abbrev")) {
1073                 if (!value)
1074                         return config_error_nonbool(var);
1075                 if (!strcasecmp(value, "auto"))
1076                         default_abbrev = -1;
1077                 else {
1078                         int abbrev = git_config_int(var, value);
1079                         if (abbrev < minimum_abbrev || abbrev > 40)
1080                                 return error("abbrev length out of range: %d", abbrev);
1081                         default_abbrev = abbrev;
1082                 }
1083                 return 0;
1084         }
1085
1086         if (!strcmp(var, "core.disambiguate"))
1087                 return set_disambiguate_hint_config(var, value);
1088
1089         if (!strcmp(var, "core.loosecompression")) {
1090                 int level = git_config_int(var, value);
1091                 if (level == -1)
1092                         level = Z_DEFAULT_COMPRESSION;
1093                 else if (level < 0 || level > Z_BEST_COMPRESSION)
1094                         die(_("bad zlib compression level %d"), level);
1095                 zlib_compression_level = level;
1096                 zlib_compression_seen = 1;
1097                 return 0;
1098         }
1099
1100         if (!strcmp(var, "core.compression")) {
1101                 int level = git_config_int(var, value);
1102                 if (level == -1)
1103                         level = Z_DEFAULT_COMPRESSION;
1104                 else if (level < 0 || level > Z_BEST_COMPRESSION)
1105                         die(_("bad zlib compression level %d"), level);
1106                 core_compression_level = level;
1107                 core_compression_seen = 1;
1108                 if (!zlib_compression_seen)
1109                         zlib_compression_level = level;
1110                 if (!pack_compression_seen)
1111                         pack_compression_level = level;
1112                 return 0;
1113         }
1114
1115         if (!strcmp(var, "core.packedgitwindowsize")) {
1116                 int pgsz_x2 = getpagesize() * 2;
1117                 packed_git_window_size = git_config_ulong(var, value);
1118
1119                 /* This value must be multiple of (pagesize * 2) */
1120                 packed_git_window_size /= pgsz_x2;
1121                 if (packed_git_window_size < 1)
1122                         packed_git_window_size = 1;
1123                 packed_git_window_size *= pgsz_x2;
1124                 return 0;
1125         }
1126
1127         if (!strcmp(var, "core.bigfilethreshold")) {
1128                 big_file_threshold = git_config_ulong(var, value);
1129                 return 0;
1130         }
1131
1132         if (!strcmp(var, "core.packedgitlimit")) {
1133                 packed_git_limit = git_config_ulong(var, value);
1134                 return 0;
1135         }
1136
1137         if (!strcmp(var, "core.deltabasecachelimit")) {
1138                 delta_base_cache_limit = git_config_ulong(var, value);
1139                 return 0;
1140         }
1141
1142         if (!strcmp(var, "core.autocrlf")) {
1143                 if (value && !strcasecmp(value, "input")) {
1144                         auto_crlf = AUTO_CRLF_INPUT;
1145                         return 0;
1146                 }
1147                 auto_crlf = git_config_bool(var, value);
1148                 return 0;
1149         }
1150
1151         if (!strcmp(var, "core.safecrlf")) {
1152                 int eol_rndtrp_die;
1153                 if (value && !strcasecmp(value, "warn")) {
1154                         global_conv_flags_eol = CONV_EOL_RNDTRP_WARN;
1155                         return 0;
1156                 }
1157                 eol_rndtrp_die = git_config_bool(var, value);
1158                 global_conv_flags_eol = eol_rndtrp_die ?
1159                         CONV_EOL_RNDTRP_DIE : CONV_EOL_RNDTRP_WARN;
1160                 return 0;
1161         }
1162
1163         if (!strcmp(var, "core.eol")) {
1164                 if (value && !strcasecmp(value, "lf"))
1165                         core_eol = EOL_LF;
1166                 else if (value && !strcasecmp(value, "crlf"))
1167                         core_eol = EOL_CRLF;
1168                 else if (value && !strcasecmp(value, "native"))
1169                         core_eol = EOL_NATIVE;
1170                 else
1171                         core_eol = EOL_UNSET;
1172                 return 0;
1173         }
1174
1175         if (!strcmp(var, "core.checkroundtripencoding")) {
1176                 check_roundtrip_encoding = xstrdup(value);
1177                 return 0;
1178         }
1179
1180         if (!strcmp(var, "core.notesref")) {
1181                 notes_ref_name = xstrdup(value);
1182                 return 0;
1183         }
1184
1185         if (!strcmp(var, "core.editor"))
1186                 return git_config_string(&editor_program, var, value);
1187
1188         if (!strcmp(var, "core.commentchar")) {
1189                 if (!value)
1190                         return config_error_nonbool(var);
1191                 else if (!strcasecmp(value, "auto"))
1192                         auto_comment_line_char = 1;
1193                 else if (value[0] && !value[1]) {
1194                         comment_line_char = value[0];
1195                         auto_comment_line_char = 0;
1196                 } else
1197                         return error("core.commentChar should only be one character");
1198                 return 0;
1199         }
1200
1201         if (!strcmp(var, "core.askpass"))
1202                 return git_config_string(&askpass_program, var, value);
1203
1204         if (!strcmp(var, "core.excludesfile"))
1205                 return git_config_pathname(&excludes_file, var, value);
1206
1207         if (!strcmp(var, "core.whitespace")) {
1208                 if (!value)
1209                         return config_error_nonbool(var);
1210                 whitespace_rule_cfg = parse_whitespace_rule(value);
1211                 return 0;
1212         }
1213
1214         if (!strcmp(var, "core.fsyncobjectfiles")) {
1215                 fsync_object_files = git_config_bool(var, value);
1216                 return 0;
1217         }
1218
1219         if (!strcmp(var, "core.preloadindex")) {
1220                 core_preload_index = git_config_bool(var, value);
1221                 return 0;
1222         }
1223
1224         if (!strcmp(var, "core.createobject")) {
1225                 if (!strcmp(value, "rename"))
1226                         object_creation_mode = OBJECT_CREATION_USES_RENAMES;
1227                 else if (!strcmp(value, "link"))
1228                         object_creation_mode = OBJECT_CREATION_USES_HARDLINKS;
1229                 else
1230                         die(_("invalid mode for object creation: %s"), value);
1231                 return 0;
1232         }
1233
1234         if (!strcmp(var, "core.commitgraph")) {
1235                 core_commit_graph = git_config_bool(var, value);
1236                 return 0;
1237         }
1238
1239         if (!strcmp(var, "core.sparsecheckout")) {
1240                 core_apply_sparse_checkout = git_config_bool(var, value);
1241                 return 0;
1242         }
1243
1244         if (!strcmp(var, "core.precomposeunicode")) {
1245                 precomposed_unicode = git_config_bool(var, value);
1246                 return 0;
1247         }
1248
1249         if (!strcmp(var, "core.protecthfs")) {
1250                 protect_hfs = git_config_bool(var, value);
1251                 return 0;
1252         }
1253
1254         if (!strcmp(var, "core.protectntfs")) {
1255                 protect_ntfs = git_config_bool(var, value);
1256                 return 0;
1257         }
1258
1259         if (!strcmp(var, "core.hidedotfiles")) {
1260                 if (value && !strcasecmp(value, "dotgitonly"))
1261                         hide_dotfiles = HIDE_DOTFILES_DOTGITONLY;
1262                 else
1263                         hide_dotfiles = git_config_bool(var, value);
1264                 return 0;
1265         }
1266
1267         if (!strcmp(var, "core.partialclonefilter")) {
1268                 return git_config_string(&core_partial_clone_filter_default,
1269                                          var, value);
1270         }
1271
1272         /* Add other config variables here and to Documentation/config.txt. */
1273         return 0;
1274 }
1275
1276 static int git_default_i18n_config(const char *var, const char *value)
1277 {
1278         if (!strcmp(var, "i18n.commitencoding"))
1279                 return git_config_string(&git_commit_encoding, var, value);
1280
1281         if (!strcmp(var, "i18n.logoutputencoding"))
1282                 return git_config_string(&git_log_output_encoding, var, value);
1283
1284         /* Add other config variables here and to Documentation/config.txt. */
1285         return 0;
1286 }
1287
1288 static int git_default_branch_config(const char *var, const char *value)
1289 {
1290         if (!strcmp(var, "branch.autosetupmerge")) {
1291                 if (value && !strcasecmp(value, "always")) {
1292                         git_branch_track = BRANCH_TRACK_ALWAYS;
1293                         return 0;
1294                 }
1295                 git_branch_track = git_config_bool(var, value);
1296                 return 0;
1297         }
1298         if (!strcmp(var, "branch.autosetuprebase")) {
1299                 if (!value)
1300                         return config_error_nonbool(var);
1301                 else if (!strcmp(value, "never"))
1302                         autorebase = AUTOREBASE_NEVER;
1303                 else if (!strcmp(value, "local"))
1304                         autorebase = AUTOREBASE_LOCAL;
1305                 else if (!strcmp(value, "remote"))
1306                         autorebase = AUTOREBASE_REMOTE;
1307                 else if (!strcmp(value, "always"))
1308                         autorebase = AUTOREBASE_ALWAYS;
1309                 else
1310                         return error("malformed value for %s", var);
1311                 return 0;
1312         }
1313
1314         /* Add other config variables here and to Documentation/config.txt. */
1315         return 0;
1316 }
1317
1318 static int git_default_push_config(const char *var, const char *value)
1319 {
1320         if (!strcmp(var, "push.default")) {
1321                 if (!value)
1322                         return config_error_nonbool(var);
1323                 else if (!strcmp(value, "nothing"))
1324                         push_default = PUSH_DEFAULT_NOTHING;
1325                 else if (!strcmp(value, "matching"))
1326                         push_default = PUSH_DEFAULT_MATCHING;
1327                 else if (!strcmp(value, "simple"))
1328                         push_default = PUSH_DEFAULT_SIMPLE;
1329                 else if (!strcmp(value, "upstream"))
1330                         push_default = PUSH_DEFAULT_UPSTREAM;
1331                 else if (!strcmp(value, "tracking")) /* deprecated */
1332                         push_default = PUSH_DEFAULT_UPSTREAM;
1333                 else if (!strcmp(value, "current"))
1334                         push_default = PUSH_DEFAULT_CURRENT;
1335                 else {
1336                         error("malformed value for %s: %s", var, value);
1337                         return error("Must be one of nothing, matching, simple, "
1338                                      "upstream or current.");
1339                 }
1340                 return 0;
1341         }
1342
1343         /* Add other config variables here and to Documentation/config.txt. */
1344         return 0;
1345 }
1346
1347 static int git_default_mailmap_config(const char *var, const char *value)
1348 {
1349         if (!strcmp(var, "mailmap.file"))
1350                 return git_config_pathname(&git_mailmap_file, var, value);
1351         if (!strcmp(var, "mailmap.blob"))
1352                 return git_config_string(&git_mailmap_blob, var, value);
1353
1354         /* Add other config variables here and to Documentation/config.txt. */
1355         return 0;
1356 }
1357
1358 int git_default_config(const char *var, const char *value, void *dummy)
1359 {
1360         if (starts_with(var, "core."))
1361                 return git_default_core_config(var, value);
1362
1363         if (starts_with(var, "user."))
1364                 return git_ident_config(var, value, dummy);
1365
1366         if (starts_with(var, "i18n."))
1367                 return git_default_i18n_config(var, value);
1368
1369         if (starts_with(var, "branch."))
1370                 return git_default_branch_config(var, value);
1371
1372         if (starts_with(var, "push."))
1373                 return git_default_push_config(var, value);
1374
1375         if (starts_with(var, "mailmap."))
1376                 return git_default_mailmap_config(var, value);
1377
1378         if (starts_with(var, "advice."))
1379                 return git_default_advice_config(var, value);
1380
1381         if (!strcmp(var, "pager.color") || !strcmp(var, "color.pager")) {
1382                 pager_use_color = git_config_bool(var,value);
1383                 return 0;
1384         }
1385
1386         if (!strcmp(var, "pack.packsizelimit")) {
1387                 pack_size_limit_cfg = git_config_ulong(var, value);
1388                 return 0;
1389         }
1390
1391         if (!strcmp(var, "pack.compression")) {
1392                 int level = git_config_int(var, value);
1393                 if (level == -1)
1394                         level = Z_DEFAULT_COMPRESSION;
1395                 else if (level < 0 || level > Z_BEST_COMPRESSION)
1396                         die(_("bad pack compression level %d"), level);
1397                 pack_compression_level = level;
1398                 pack_compression_seen = 1;
1399                 return 0;
1400         }
1401
1402         /* Add other config variables here and to Documentation/config.txt. */
1403         return 0;
1404 }
1405
1406 /*
1407  * All source specific fields in the union, die_on_error, name and the callbacks
1408  * fgetc, ungetc, ftell of top need to be initialized before calling
1409  * this function.
1410  */
1411 static int do_config_from(struct config_source *top, config_fn_t fn, void *data)
1412 {
1413         int ret;
1414
1415         /* push config-file parsing state stack */
1416         top->prev = cf;
1417         top->linenr = 1;
1418         top->eof = 0;
1419         strbuf_init(&top->value, 1024);
1420         strbuf_init(&top->var, 1024);
1421         cf = top;
1422
1423         ret = git_parse_source(fn, data);
1424
1425         /* pop config-file parsing state stack */
1426         strbuf_release(&top->value);
1427         strbuf_release(&top->var);
1428         cf = top->prev;
1429
1430         return ret;
1431 }
1432
1433 static int do_config_from_file(config_fn_t fn,
1434                 const enum config_origin_type origin_type,
1435                 const char *name, const char *path, FILE *f,
1436                 void *data)
1437 {
1438         struct config_source top;
1439
1440         top.u.file = f;
1441         top.origin_type = origin_type;
1442         top.name = name;
1443         top.path = path;
1444         top.die_on_error = 1;
1445         top.do_fgetc = config_file_fgetc;
1446         top.do_ungetc = config_file_ungetc;
1447         top.do_ftell = config_file_ftell;
1448
1449         return do_config_from(&top, fn, data);
1450 }
1451
1452 static int git_config_from_stdin(config_fn_t fn, void *data)
1453 {
1454         return do_config_from_file(fn, CONFIG_ORIGIN_STDIN, "", NULL, stdin, data);
1455 }
1456
1457 int git_config_from_file(config_fn_t fn, const char *filename, void *data)
1458 {
1459         int ret = -1;
1460         FILE *f;
1461
1462         f = fopen_or_warn(filename, "r");
1463         if (f) {
1464                 flockfile(f);
1465                 ret = do_config_from_file(fn, CONFIG_ORIGIN_FILE, filename, filename, f, data);
1466                 funlockfile(f);
1467                 fclose(f);
1468         }
1469         return ret;
1470 }
1471
1472 int git_config_from_mem(config_fn_t fn, const enum config_origin_type origin_type,
1473                         const char *name, const char *buf, size_t len, void *data)
1474 {
1475         struct config_source top;
1476
1477         top.u.buf.buf = buf;
1478         top.u.buf.len = len;
1479         top.u.buf.pos = 0;
1480         top.origin_type = origin_type;
1481         top.name = name;
1482         top.path = NULL;
1483         top.die_on_error = 0;
1484         top.do_fgetc = config_buf_fgetc;
1485         top.do_ungetc = config_buf_ungetc;
1486         top.do_ftell = config_buf_ftell;
1487
1488         return do_config_from(&top, fn, data);
1489 }
1490
1491 int git_config_from_blob_oid(config_fn_t fn,
1492                               const char *name,
1493                               const struct object_id *oid,
1494                               void *data)
1495 {
1496         enum object_type type;
1497         char *buf;
1498         unsigned long size;
1499         int ret;
1500
1501         buf = read_sha1_file(oid->hash, &type, &size);
1502         if (!buf)
1503                 return error("unable to load config blob object '%s'", name);
1504         if (type != OBJ_BLOB) {
1505                 free(buf);
1506                 return error("reference '%s' does not point to a blob", name);
1507         }
1508
1509         ret = git_config_from_mem(fn, CONFIG_ORIGIN_BLOB, name, buf, size, data);
1510         free(buf);
1511
1512         return ret;
1513 }
1514
1515 static int git_config_from_blob_ref(config_fn_t fn,
1516                                     const char *name,
1517                                     void *data)
1518 {
1519         struct object_id oid;
1520
1521         if (get_oid(name, &oid) < 0)
1522                 return error("unable to resolve config blob '%s'", name);
1523         return git_config_from_blob_oid(fn, name, &oid, data);
1524 }
1525
1526 const char *git_etc_gitconfig(void)
1527 {
1528         static const char *system_wide;
1529         if (!system_wide)
1530                 system_wide = system_path(ETC_GITCONFIG);
1531         return system_wide;
1532 }
1533
1534 /*
1535  * Parse environment variable 'k' as a boolean (in various
1536  * possible spellings); if missing, use the default value 'def'.
1537  */
1538 int git_env_bool(const char *k, int def)
1539 {
1540         const char *v = getenv(k);
1541         return v ? git_config_bool(k, v) : def;
1542 }
1543
1544 /*
1545  * Parse environment variable 'k' as ulong with possibly a unit
1546  * suffix; if missing, use the default value 'val'.
1547  */
1548 unsigned long git_env_ulong(const char *k, unsigned long val)
1549 {
1550         const char *v = getenv(k);
1551         if (v && !git_parse_ulong(v, &val))
1552                 die("failed to parse %s", k);
1553         return val;
1554 }
1555
1556 int git_config_system(void)
1557 {
1558         return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0);
1559 }
1560
1561 static int do_git_config_sequence(const struct config_options *opts,
1562                                   config_fn_t fn, void *data)
1563 {
1564         int ret = 0;
1565         char *xdg_config = xdg_config_home("config");
1566         char *user_config = expand_user_path("~/.gitconfig", 0);
1567         char *repo_config;
1568
1569         if (opts->commondir)
1570                 repo_config = mkpathdup("%s/config", opts->commondir);
1571         else
1572                 repo_config = NULL;
1573
1574         current_parsing_scope = CONFIG_SCOPE_SYSTEM;
1575         if (git_config_system() && !access_or_die(git_etc_gitconfig(), R_OK, 0))
1576                 ret += git_config_from_file(fn, git_etc_gitconfig(),
1577                                             data);
1578
1579         current_parsing_scope = CONFIG_SCOPE_GLOBAL;
1580         if (xdg_config && !access_or_die(xdg_config, R_OK, ACCESS_EACCES_OK))
1581                 ret += git_config_from_file(fn, xdg_config, data);
1582
1583         if (user_config && !access_or_die(user_config, R_OK, ACCESS_EACCES_OK))
1584                 ret += git_config_from_file(fn, user_config, data);
1585
1586         current_parsing_scope = CONFIG_SCOPE_REPO;
1587         if (repo_config && !access_or_die(repo_config, R_OK, 0))
1588                 ret += git_config_from_file(fn, repo_config, data);
1589
1590         current_parsing_scope = CONFIG_SCOPE_CMDLINE;
1591         if (git_config_from_parameters(fn, data) < 0)
1592                 die(_("unable to parse command-line config"));
1593
1594         current_parsing_scope = CONFIG_SCOPE_UNKNOWN;
1595         free(xdg_config);
1596         free(user_config);
1597         free(repo_config);
1598         return ret;
1599 }
1600
1601 int config_with_options(config_fn_t fn, void *data,
1602                         struct git_config_source *config_source,
1603                         const struct config_options *opts)
1604 {
1605         struct config_include_data inc = CONFIG_INCLUDE_INIT;
1606
1607         if (opts->respect_includes) {
1608                 inc.fn = fn;
1609                 inc.data = data;
1610                 inc.opts = opts;
1611                 fn = git_config_include;
1612                 data = &inc;
1613         }
1614
1615         /*
1616          * If we have a specific filename, use it. Otherwise, follow the
1617          * regular lookup sequence.
1618          */
1619         if (config_source && config_source->use_stdin)
1620                 return git_config_from_stdin(fn, data);
1621         else if (config_source && config_source->file)
1622                 return git_config_from_file(fn, config_source->file, data);
1623         else if (config_source && config_source->blob)
1624                 return git_config_from_blob_ref(fn, config_source->blob, data);
1625
1626         return do_git_config_sequence(opts, fn, data);
1627 }
1628
1629 static void configset_iter(struct config_set *cs, config_fn_t fn, void *data)
1630 {
1631         int i, value_index;
1632         struct string_list *values;
1633         struct config_set_element *entry;
1634         struct configset_list *list = &cs->list;
1635
1636         for (i = 0; i < list->nr; i++) {
1637                 entry = list->items[i].e;
1638                 value_index = list->items[i].value_index;
1639                 values = &entry->value_list;
1640
1641                 current_config_kvi = values->items[value_index].util;
1642
1643                 if (fn(entry->key, values->items[value_index].string, data) < 0)
1644                         git_die_config_linenr(entry->key,
1645                                               current_config_kvi->filename,
1646                                               current_config_kvi->linenr);
1647
1648                 current_config_kvi = NULL;
1649         }
1650 }
1651
1652 void read_early_config(config_fn_t cb, void *data)
1653 {
1654         struct config_options opts = {0};
1655         struct strbuf commondir = STRBUF_INIT;
1656         struct strbuf gitdir = STRBUF_INIT;
1657
1658         opts.respect_includes = 1;
1659
1660         if (have_git_dir()) {
1661                 opts.commondir = get_git_common_dir();
1662                 opts.git_dir = get_git_dir();
1663         /*
1664          * When setup_git_directory() was not yet asked to discover the
1665          * GIT_DIR, we ask discover_git_directory() to figure out whether there
1666          * is any repository config we should use (but unlike
1667          * setup_git_directory_gently(), no global state is changed, most
1668          * notably, the current working directory is still the same after the
1669          * call).
1670          */
1671         } else if (!discover_git_directory(&commondir, &gitdir)) {
1672                 opts.commondir = commondir.buf;
1673                 opts.git_dir = gitdir.buf;
1674         }
1675
1676         config_with_options(cb, data, NULL, &opts);
1677
1678         strbuf_release(&commondir);
1679         strbuf_release(&gitdir);
1680 }
1681
1682 static struct config_set_element *configset_find_element(struct config_set *cs, const char *key)
1683 {
1684         struct config_set_element k;
1685         struct config_set_element *found_entry;
1686         char *normalized_key;
1687         /*
1688          * `key` may come from the user, so normalize it before using it
1689          * for querying entries from the hashmap.
1690          */
1691         if (git_config_parse_key(key, &normalized_key, NULL))
1692                 return NULL;
1693
1694         hashmap_entry_init(&k, strhash(normalized_key));
1695         k.key = normalized_key;
1696         found_entry = hashmap_get(&cs->config_hash, &k, NULL);
1697         free(normalized_key);
1698         return found_entry;
1699 }
1700
1701 static int configset_add_value(struct config_set *cs, const char *key, const char *value)
1702 {
1703         struct config_set_element *e;
1704         struct string_list_item *si;
1705         struct configset_list_item *l_item;
1706         struct key_value_info *kv_info = xmalloc(sizeof(*kv_info));
1707
1708         e = configset_find_element(cs, key);
1709         /*
1710          * Since the keys are being fed by git_config*() callback mechanism, they
1711          * are already normalized. So simply add them without any further munging.
1712          */
1713         if (!e) {
1714                 e = xmalloc(sizeof(*e));
1715                 hashmap_entry_init(e, strhash(key));
1716                 e->key = xstrdup(key);
1717                 string_list_init(&e->value_list, 1);
1718                 hashmap_add(&cs->config_hash, e);
1719         }
1720         si = string_list_append_nodup(&e->value_list, xstrdup_or_null(value));
1721
1722         ALLOC_GROW(cs->list.items, cs->list.nr + 1, cs->list.alloc);
1723         l_item = &cs->list.items[cs->list.nr++];
1724         l_item->e = e;
1725         l_item->value_index = e->value_list.nr - 1;
1726
1727         if (!cf)
1728                 die("BUG: configset_add_value has no source");
1729         if (cf->name) {
1730                 kv_info->filename = strintern(cf->name);
1731                 kv_info->linenr = cf->linenr;
1732                 kv_info->origin_type = cf->origin_type;
1733         } else {
1734                 /* for values read from `git_config_from_parameters()` */
1735                 kv_info->filename = NULL;
1736                 kv_info->linenr = -1;
1737                 kv_info->origin_type = CONFIG_ORIGIN_CMDLINE;
1738         }
1739         kv_info->scope = current_parsing_scope;
1740         si->util = kv_info;
1741
1742         return 0;
1743 }
1744
1745 static int config_set_element_cmp(const void *unused_cmp_data,
1746                                   const void *entry,
1747                                   const void *entry_or_key,
1748                                   const void *unused_keydata)
1749 {
1750         const struct config_set_element *e1 = entry;
1751         const struct config_set_element *e2 = entry_or_key;
1752
1753         return strcmp(e1->key, e2->key);
1754 }
1755
1756 void git_configset_init(struct config_set *cs)
1757 {
1758         hashmap_init(&cs->config_hash, config_set_element_cmp, NULL, 0);
1759         cs->hash_initialized = 1;
1760         cs->list.nr = 0;
1761         cs->list.alloc = 0;
1762         cs->list.items = NULL;
1763 }
1764
1765 void git_configset_clear(struct config_set *cs)
1766 {
1767         struct config_set_element *entry;
1768         struct hashmap_iter iter;
1769         if (!cs->hash_initialized)
1770                 return;
1771
1772         hashmap_iter_init(&cs->config_hash, &iter);
1773         while ((entry = hashmap_iter_next(&iter))) {
1774                 free(entry->key);
1775                 string_list_clear(&entry->value_list, 1);
1776         }
1777         hashmap_free(&cs->config_hash, 1);
1778         cs->hash_initialized = 0;
1779         free(cs->list.items);
1780         cs->list.nr = 0;
1781         cs->list.alloc = 0;
1782         cs->list.items = NULL;
1783 }
1784
1785 static int config_set_callback(const char *key, const char *value, void *cb)
1786 {
1787         struct config_set *cs = cb;
1788         configset_add_value(cs, key, value);
1789         return 0;
1790 }
1791
1792 int git_configset_add_file(struct config_set *cs, const char *filename)
1793 {
1794         return git_config_from_file(config_set_callback, filename, cs);
1795 }
1796
1797 int git_configset_get_value(struct config_set *cs, const char *key, const char **value)
1798 {
1799         const struct string_list *values = NULL;
1800         /*
1801          * Follows "last one wins" semantic, i.e., if there are multiple matches for the
1802          * queried key in the files of the configset, the value returned will be the last
1803          * value in the value list for that key.
1804          */
1805         values = git_configset_get_value_multi(cs, key);
1806
1807         if (!values)
1808                 return 1;
1809         assert(values->nr > 0);
1810         *value = values->items[values->nr - 1].string;
1811         return 0;
1812 }
1813
1814 const struct string_list *git_configset_get_value_multi(struct config_set *cs, const char *key)
1815 {
1816         struct config_set_element *e = configset_find_element(cs, key);
1817         return e ? &e->value_list : NULL;
1818 }
1819
1820 int git_configset_get_string_const(struct config_set *cs, const char *key, const char **dest)
1821 {
1822         const char *value;
1823         if (!git_configset_get_value(cs, key, &value))
1824                 return git_config_string(dest, key, value);
1825         else
1826                 return 1;
1827 }
1828
1829 int git_configset_get_string(struct config_set *cs, const char *key, char **dest)
1830 {
1831         return git_configset_get_string_const(cs, key, (const char **)dest);
1832 }
1833
1834 int git_configset_get_int(struct config_set *cs, const char *key, int *dest)
1835 {
1836         const char *value;
1837         if (!git_configset_get_value(cs, key, &value)) {
1838                 *dest = git_config_int(key, value);
1839                 return 0;
1840         } else
1841                 return 1;
1842 }
1843
1844 int git_configset_get_ulong(struct config_set *cs, const char *key, unsigned long *dest)
1845 {
1846         const char *value;
1847         if (!git_configset_get_value(cs, key, &value)) {
1848                 *dest = git_config_ulong(key, value);
1849                 return 0;
1850         } else
1851                 return 1;
1852 }
1853
1854 int git_configset_get_bool(struct config_set *cs, const char *key, int *dest)
1855 {
1856         const char *value;
1857         if (!git_configset_get_value(cs, key, &value)) {
1858                 *dest = git_config_bool(key, value);
1859                 return 0;
1860         } else
1861                 return 1;
1862 }
1863
1864 int git_configset_get_bool_or_int(struct config_set *cs, const char *key,
1865                                 int *is_bool, int *dest)
1866 {
1867         const char *value;
1868         if (!git_configset_get_value(cs, key, &value)) {
1869                 *dest = git_config_bool_or_int(key, value, is_bool);
1870                 return 0;
1871         } else
1872                 return 1;
1873 }
1874
1875 int git_configset_get_maybe_bool(struct config_set *cs, const char *key, int *dest)
1876 {
1877         const char *value;
1878         if (!git_configset_get_value(cs, key, &value)) {
1879                 *dest = git_parse_maybe_bool(value);
1880                 if (*dest == -1)
1881                         return -1;
1882                 return 0;
1883         } else
1884                 return 1;
1885 }
1886
1887 int git_configset_get_pathname(struct config_set *cs, const char *key, const char **dest)
1888 {
1889         const char *value;
1890         if (!git_configset_get_value(cs, key, &value))
1891                 return git_config_pathname(dest, key, value);
1892         else
1893                 return 1;
1894 }
1895
1896 /* Functions use to read configuration from a repository */
1897 static void repo_read_config(struct repository *repo)
1898 {
1899         struct config_options opts;
1900
1901         opts.respect_includes = 1;
1902         opts.commondir = repo->commondir;
1903         opts.git_dir = repo->gitdir;
1904
1905         if (!repo->config)
1906                 repo->config = xcalloc(1, sizeof(struct config_set));
1907         else
1908                 git_configset_clear(repo->config);
1909
1910         git_configset_init(repo->config);
1911
1912         if (config_with_options(config_set_callback, repo->config, NULL, &opts) < 0)
1913                 /*
1914                  * config_with_options() normally returns only
1915                  * zero, as most errors are fatal, and
1916                  * non-fatal potential errors are guarded by "if"
1917                  * statements that are entered only when no error is
1918                  * possible.
1919                  *
1920                  * If we ever encounter a non-fatal error, it means
1921                  * something went really wrong and we should stop
1922                  * immediately.
1923                  */
1924                 die(_("unknown error occurred while reading the configuration files"));
1925 }
1926
1927 static void git_config_check_init(struct repository *repo)
1928 {
1929         if (repo->config && repo->config->hash_initialized)
1930                 return;
1931         repo_read_config(repo);
1932 }
1933
1934 static void repo_config_clear(struct repository *repo)
1935 {
1936         if (!repo->config || !repo->config->hash_initialized)
1937                 return;
1938         git_configset_clear(repo->config);
1939 }
1940
1941 void repo_config(struct repository *repo, config_fn_t fn, void *data)
1942 {
1943         git_config_check_init(repo);
1944         configset_iter(repo->config, fn, data);
1945 }
1946
1947 int repo_config_get_value(struct repository *repo,
1948                           const char *key, const char **value)
1949 {
1950         git_config_check_init(repo);
1951         return git_configset_get_value(repo->config, key, value);
1952 }
1953
1954 const struct string_list *repo_config_get_value_multi(struct repository *repo,
1955                                                       const char *key)
1956 {
1957         git_config_check_init(repo);
1958         return git_configset_get_value_multi(repo->config, key);
1959 }
1960
1961 int repo_config_get_string_const(struct repository *repo,
1962                                  const char *key, const char **dest)
1963 {
1964         int ret;
1965         git_config_check_init(repo);
1966         ret = git_configset_get_string_const(repo->config, key, dest);
1967         if (ret < 0)
1968                 git_die_config(key, NULL);
1969         return ret;
1970 }
1971
1972 int repo_config_get_string(struct repository *repo,
1973                            const char *key, char **dest)
1974 {
1975         git_config_check_init(repo);
1976         return repo_config_get_string_const(repo, key, (const char **)dest);
1977 }
1978
1979 int repo_config_get_int(struct repository *repo,
1980                         const char *key, int *dest)
1981 {
1982         git_config_check_init(repo);
1983         return git_configset_get_int(repo->config, key, dest);
1984 }
1985
1986 int repo_config_get_ulong(struct repository *repo,
1987                           const char *key, unsigned long *dest)
1988 {
1989         git_config_check_init(repo);
1990         return git_configset_get_ulong(repo->config, key, dest);
1991 }
1992
1993 int repo_config_get_bool(struct repository *repo,
1994                          const char *key, int *dest)
1995 {
1996         git_config_check_init(repo);
1997         return git_configset_get_bool(repo->config, key, dest);
1998 }
1999
2000 int repo_config_get_bool_or_int(struct repository *repo,
2001                                 const char *key, int *is_bool, int *dest)
2002 {
2003         git_config_check_init(repo);
2004         return git_configset_get_bool_or_int(repo->config, key, is_bool, dest);
2005 }
2006
2007 int repo_config_get_maybe_bool(struct repository *repo,
2008                                const char *key, int *dest)
2009 {
2010         git_config_check_init(repo);
2011         return git_configset_get_maybe_bool(repo->config, key, dest);
2012 }
2013
2014 int repo_config_get_pathname(struct repository *repo,
2015                              const char *key, const char **dest)
2016 {
2017         int ret;
2018         git_config_check_init(repo);
2019         ret = git_configset_get_pathname(repo->config, key, dest);
2020         if (ret < 0)
2021                 git_die_config(key, NULL);
2022         return ret;
2023 }
2024
2025 /* Functions used historically to read configuration from 'the_repository' */
2026 void git_config(config_fn_t fn, void *data)
2027 {
2028         repo_config(the_repository, fn, data);
2029 }
2030
2031 void git_config_clear(void)
2032 {
2033         repo_config_clear(the_repository);
2034 }
2035
2036 int git_config_get_value(const char *key, const char **value)
2037 {
2038         return repo_config_get_value(the_repository, key, value);
2039 }
2040
2041 const struct string_list *git_config_get_value_multi(const char *key)
2042 {
2043         return repo_config_get_value_multi(the_repository, key);
2044 }
2045
2046 int git_config_get_string_const(const char *key, const char **dest)
2047 {
2048         return repo_config_get_string_const(the_repository, key, dest);
2049 }
2050
2051 int git_config_get_string(const char *key, char **dest)
2052 {
2053         return repo_config_get_string(the_repository, key, dest);
2054 }
2055
2056 int git_config_get_int(const char *key, int *dest)
2057 {
2058         return repo_config_get_int(the_repository, key, dest);
2059 }
2060
2061 int git_config_get_ulong(const char *key, unsigned long *dest)
2062 {
2063         return repo_config_get_ulong(the_repository, key, dest);
2064 }
2065
2066 int git_config_get_bool(const char *key, int *dest)
2067 {
2068         return repo_config_get_bool(the_repository, key, dest);
2069 }
2070
2071 int git_config_get_bool_or_int(const char *key, int *is_bool, int *dest)
2072 {
2073         return repo_config_get_bool_or_int(the_repository, key, is_bool, dest);
2074 }
2075
2076 int git_config_get_maybe_bool(const char *key, int *dest)
2077 {
2078         return repo_config_get_maybe_bool(the_repository, key, dest);
2079 }
2080
2081 int git_config_get_pathname(const char *key, const char **dest)
2082 {
2083         return repo_config_get_pathname(the_repository, key, dest);
2084 }
2085
2086 /*
2087  * Note: This function exists solely to maintain backward compatibility with
2088  * 'fetch' and 'update_clone' storing configuration in '.gitmodules' and should
2089  * NOT be used anywhere else.
2090  *
2091  * Runs the provided config function on the '.gitmodules' file found in the
2092  * working directory.
2093  */
2094 void config_from_gitmodules(config_fn_t fn, void *data)
2095 {
2096         if (the_repository->worktree) {
2097                 char *file = repo_worktree_path(the_repository, GITMODULES_FILE);
2098                 git_config_from_file(fn, file, data);
2099                 free(file);
2100         }
2101 }
2102
2103 int git_config_get_expiry(const char *key, const char **output)
2104 {
2105         int ret = git_config_get_string_const(key, output);
2106         if (ret)
2107                 return ret;
2108         if (strcmp(*output, "now")) {
2109                 timestamp_t now = approxidate("now");
2110                 if (approxidate(*output) >= now)
2111                         git_die_config(key, _("Invalid %s: '%s'"), key, *output);
2112         }
2113         return ret;
2114 }
2115
2116 int git_config_get_expiry_in_days(const char *key, timestamp_t *expiry, timestamp_t now)
2117 {
2118         char *expiry_string;
2119         intmax_t days;
2120         timestamp_t when;
2121
2122         if (git_config_get_string(key, &expiry_string))
2123                 return 1; /* no such thing */
2124
2125         if (git_parse_signed(expiry_string, &days, maximum_signed_value_of_type(int))) {
2126                 const int scale = 86400;
2127                 *expiry = now - days * scale;
2128                 return 0;
2129         }
2130
2131         if (!parse_expiry_date(expiry_string, &when)) {
2132                 *expiry = when;
2133                 return 0;
2134         }
2135         return -1; /* thing exists but cannot be parsed */
2136 }
2137
2138 int git_config_get_untracked_cache(void)
2139 {
2140         int val = -1;
2141         const char *v;
2142
2143         /* Hack for test programs like test-dump-untracked-cache */
2144         if (ignore_untracked_cache_config)
2145                 return -1;
2146
2147         if (!git_config_get_maybe_bool("core.untrackedcache", &val))
2148                 return val;
2149
2150         if (!git_config_get_value("core.untrackedcache", &v)) {
2151                 if (!strcasecmp(v, "keep"))
2152                         return -1;
2153
2154                 error(_("unknown core.untrackedCache value '%s'; "
2155                         "using 'keep' default value"), v);
2156                 return -1;
2157         }
2158
2159         return -1; /* default value */
2160 }
2161
2162 int git_config_get_split_index(void)
2163 {
2164         int val;
2165
2166         if (!git_config_get_maybe_bool("core.splitindex", &val))
2167                 return val;
2168
2169         return -1; /* default value */
2170 }
2171
2172 int git_config_get_max_percent_split_change(void)
2173 {
2174         int val = -1;
2175
2176         if (!git_config_get_int("splitindex.maxpercentchange", &val)) {
2177                 if (0 <= val && val <= 100)
2178                         return val;
2179
2180                 return error(_("splitIndex.maxPercentChange value '%d' "
2181                                "should be between 0 and 100"), val);
2182         }
2183
2184         return -1; /* default value */
2185 }
2186
2187 int git_config_get_fsmonitor(void)
2188 {
2189         if (git_config_get_pathname("core.fsmonitor", &core_fsmonitor))
2190                 core_fsmonitor = getenv("GIT_FSMONITOR_TEST");
2191
2192         if (core_fsmonitor && !*core_fsmonitor)
2193                 core_fsmonitor = NULL;
2194
2195
2196         if (core_fsmonitor) {
2197                 if (!strcasecmp(core_fsmonitor, "keep"))
2198                         return -1;
2199                 else
2200                         return 1;
2201         }
2202
2203         return 0;
2204 }
2205
2206 NORETURN
2207 void git_die_config_linenr(const char *key, const char *filename, int linenr)
2208 {
2209         if (!filename)
2210                 die(_("unable to parse '%s' from command-line config"), key);
2211         else
2212                 die(_("bad config variable '%s' in file '%s' at line %d"),
2213                     key, filename, linenr);
2214 }
2215
2216 NORETURN __attribute__((format(printf, 2, 3)))
2217 void git_die_config(const char *key, const char *err, ...)
2218 {
2219         const struct string_list *values;
2220         struct key_value_info *kv_info;
2221
2222         if (err) {
2223                 va_list params;
2224                 va_start(params, err);
2225                 vreportf("error: ", err, params);
2226                 va_end(params);
2227         }
2228         values = git_config_get_value_multi(key);
2229         kv_info = values->items[values->nr - 1].util;
2230         git_die_config_linenr(key, kv_info->filename, kv_info->linenr);
2231 }
2232
2233 /*
2234  * Find all the stuff for git_config_set() below.
2235  */
2236
2237 static struct {
2238         int baselen;
2239         char *key;
2240         int do_not_match;
2241         regex_t *value_regex;
2242         int multi_replace;
2243         size_t *offset;
2244         unsigned int offset_alloc;
2245         enum { START, SECTION_SEEN, SECTION_END_SEEN, KEY_SEEN } state;
2246         unsigned int seen;
2247 } store;
2248
2249 static int matches(const char *key, const char *value)
2250 {
2251         if (strcmp(key, store.key))
2252                 return 0; /* not ours */
2253         if (!store.value_regex)
2254                 return 1; /* always matches */
2255         if (store.value_regex == CONFIG_REGEX_NONE)
2256                 return 0; /* never matches */
2257
2258         return store.do_not_match ^
2259                 (value && !regexec(store.value_regex, value, 0, NULL, 0));
2260 }
2261
2262 static int store_aux(const char *key, const char *value, void *cb)
2263 {
2264         const char *ep;
2265         size_t section_len;
2266
2267         switch (store.state) {
2268         case KEY_SEEN:
2269                 if (matches(key, value)) {
2270                         if (store.seen == 1 && store.multi_replace == 0) {
2271                                 warning(_("%s has multiple values"), key);
2272                         }
2273
2274                         ALLOC_GROW(store.offset, store.seen + 1,
2275                                    store.offset_alloc);
2276
2277                         store.offset[store.seen] = cf->do_ftell(cf);
2278                         store.seen++;
2279                 }
2280                 break;
2281         case SECTION_SEEN:
2282                 /*
2283                  * What we are looking for is in store.key (both
2284                  * section and var), and its section part is baselen
2285                  * long.  We found key (again, both section and var).
2286                  * We would want to know if this key is in the same
2287                  * section as what we are looking for.  We already
2288                  * know we are in the same section as what should
2289                  * hold store.key.
2290                  */
2291                 ep = strrchr(key, '.');
2292                 section_len = ep - key;
2293
2294                 if ((section_len != store.baselen) ||
2295                     memcmp(key, store.key, section_len+1)) {
2296                         store.state = SECTION_END_SEEN;
2297                         break;
2298                 }
2299
2300                 /*
2301                  * Do not increment matches: this is no match, but we
2302                  * just made sure we are in the desired section.
2303                  */
2304                 ALLOC_GROW(store.offset, store.seen + 1,
2305                            store.offset_alloc);
2306                 store.offset[store.seen] = cf->do_ftell(cf);
2307                 /* fallthru */
2308         case SECTION_END_SEEN:
2309         case START:
2310                 if (matches(key, value)) {
2311                         ALLOC_GROW(store.offset, store.seen + 1,
2312                                    store.offset_alloc);
2313                         store.offset[store.seen] = cf->do_ftell(cf);
2314                         store.state = KEY_SEEN;
2315                         store.seen++;
2316                 } else {
2317                         if (strrchr(key, '.') - key == store.baselen &&
2318                               !strncmp(key, store.key, store.baselen)) {
2319                                         store.state = SECTION_SEEN;
2320                                         ALLOC_GROW(store.offset,
2321                                                    store.seen + 1,
2322                                                    store.offset_alloc);
2323                                         store.offset[store.seen] = cf->do_ftell(cf);
2324                         }
2325                 }
2326         }
2327         return 0;
2328 }
2329
2330 static int write_error(const char *filename)
2331 {
2332         error("failed to write new configuration file %s", filename);
2333
2334         /* Same error code as "failed to rename". */
2335         return 4;
2336 }
2337
2338 static struct strbuf store_create_section(const char *key)
2339 {
2340         const char *dot;
2341         int i;
2342         struct strbuf sb = STRBUF_INIT;
2343
2344         dot = memchr(key, '.', store.baselen);
2345         if (dot) {
2346                 strbuf_addf(&sb, "[%.*s \"", (int)(dot - key), key);
2347                 for (i = dot - key + 1; i < store.baselen; i++) {
2348                         if (key[i] == '"' || key[i] == '\\')
2349                                 strbuf_addch(&sb, '\\');
2350                         strbuf_addch(&sb, key[i]);
2351                 }
2352                 strbuf_addstr(&sb, "\"]\n");
2353         } else {
2354                 strbuf_addf(&sb, "[%.*s]\n", store.baselen, key);
2355         }
2356
2357         return sb;
2358 }
2359
2360 static ssize_t write_section(int fd, const char *key)
2361 {
2362         struct strbuf sb = store_create_section(key);
2363         ssize_t ret;
2364
2365         ret = write_in_full(fd, sb.buf, sb.len);
2366         strbuf_release(&sb);
2367
2368         return ret;
2369 }
2370
2371 static ssize_t write_pair(int fd, const char *key, const char *value)
2372 {
2373         int i;
2374         ssize_t ret;
2375         int length = strlen(key + store.baselen + 1);
2376         const char *quote = "";
2377         struct strbuf sb = STRBUF_INIT;
2378
2379         /*
2380          * Check to see if the value needs to be surrounded with a dq pair.
2381          * Note that problematic characters are always backslash-quoted; this
2382          * check is about not losing leading or trailing SP and strings that
2383          * follow beginning-of-comment characters (i.e. ';' and '#') by the
2384          * configuration parser.
2385          */
2386         if (value[0] == ' ')
2387                 quote = "\"";
2388         for (i = 0; value[i]; i++)
2389                 if (value[i] == ';' || value[i] == '#')
2390                         quote = "\"";
2391         if (i && value[i - 1] == ' ')
2392                 quote = "\"";
2393
2394         strbuf_addf(&sb, "\t%.*s = %s",
2395                     length, key + store.baselen + 1, quote);
2396
2397         for (i = 0; value[i]; i++)
2398                 switch (value[i]) {
2399                 case '\n':
2400                         strbuf_addstr(&sb, "\\n");
2401                         break;
2402                 case '\t':
2403                         strbuf_addstr(&sb, "\\t");
2404                         break;
2405                 case '"':
2406                 case '\\':
2407                         strbuf_addch(&sb, '\\');
2408                         /* fallthrough */
2409                 default:
2410                         strbuf_addch(&sb, value[i]);
2411                         break;
2412                 }
2413         strbuf_addf(&sb, "%s\n", quote);
2414
2415         ret = write_in_full(fd, sb.buf, sb.len);
2416         strbuf_release(&sb);
2417
2418         return ret;
2419 }
2420
2421 static ssize_t find_beginning_of_line(const char *contents, size_t size,
2422         size_t offset_, int *found_bracket)
2423 {
2424         size_t equal_offset = size, bracket_offset = size;
2425         ssize_t offset;
2426
2427 contline:
2428         for (offset = offset_-2; offset > 0
2429                         && contents[offset] != '\n'; offset--)
2430                 switch (contents[offset]) {
2431                         case '=': equal_offset = offset; break;
2432                         case ']': bracket_offset = offset; break;
2433                 }
2434         if (offset > 0 && contents[offset-1] == '\\') {
2435                 offset_ = offset;
2436                 goto contline;
2437         }
2438         if (bracket_offset < equal_offset) {
2439                 *found_bracket = 1;
2440                 offset = bracket_offset+1;
2441         } else
2442                 offset++;
2443
2444         return offset;
2445 }
2446
2447 int git_config_set_in_file_gently(const char *config_filename,
2448                                   const char *key, const char *value)
2449 {
2450         return git_config_set_multivar_in_file_gently(config_filename, key, value, NULL, 0);
2451 }
2452
2453 void git_config_set_in_file(const char *config_filename,
2454                             const char *key, const char *value)
2455 {
2456         git_config_set_multivar_in_file(config_filename, key, value, NULL, 0);
2457 }
2458
2459 int git_config_set_gently(const char *key, const char *value)
2460 {
2461         return git_config_set_multivar_gently(key, value, NULL, 0);
2462 }
2463
2464 void git_config_set(const char *key, const char *value)
2465 {
2466         git_config_set_multivar(key, value, NULL, 0);
2467 }
2468
2469 /*
2470  * If value==NULL, unset in (remove from) config,
2471  * if value_regex!=NULL, disregard key/value pairs where value does not match.
2472  * if value_regex==CONFIG_REGEX_NONE, do not match any existing values
2473  *     (only add a new one)
2474  * if multi_replace==0, nothing, or only one matching key/value is replaced,
2475  *     else all matching key/values (regardless how many) are removed,
2476  *     before the new pair is written.
2477  *
2478  * Returns 0 on success.
2479  *
2480  * This function does this:
2481  *
2482  * - it locks the config file by creating ".git/config.lock"
2483  *
2484  * - it then parses the config using store_aux() as validator to find
2485  *   the position on the key/value pair to replace. If it is to be unset,
2486  *   it must be found exactly once.
2487  *
2488  * - the config file is mmap()ed and the part before the match (if any) is
2489  *   written to the lock file, then the changed part and the rest.
2490  *
2491  * - the config file is removed and the lock file rename()d to it.
2492  *
2493  */
2494 int git_config_set_multivar_in_file_gently(const char *config_filename,
2495                                            const char *key, const char *value,
2496                                            const char *value_regex,
2497                                            int multi_replace)
2498 {
2499         int fd = -1, in_fd = -1;
2500         int ret;
2501         struct lock_file lock = LOCK_INIT;
2502         char *filename_buf = NULL;
2503         char *contents = NULL;
2504         size_t contents_sz;
2505
2506         /* parse-key returns negative; flip the sign to feed exit(3) */
2507         ret = 0 - git_config_parse_key(key, &store.key, &store.baselen);
2508         if (ret)
2509                 goto out_free;
2510
2511         store.multi_replace = multi_replace;
2512
2513         if (!config_filename)
2514                 config_filename = filename_buf = git_pathdup("config");
2515
2516         /*
2517          * The lock serves a purpose in addition to locking: the new
2518          * contents of .git/config will be written into it.
2519          */
2520         fd = hold_lock_file_for_update(&lock, config_filename, 0);
2521         if (fd < 0) {
2522                 error_errno("could not lock config file %s", config_filename);
2523                 free(store.key);
2524                 ret = CONFIG_NO_LOCK;
2525                 goto out_free;
2526         }
2527
2528         /*
2529          * If .git/config does not exist yet, write a minimal version.
2530          */
2531         in_fd = open(config_filename, O_RDONLY);
2532         if ( in_fd < 0 ) {
2533                 free(store.key);
2534
2535                 if ( ENOENT != errno ) {
2536                         error_errno("opening %s", config_filename);
2537                         ret = CONFIG_INVALID_FILE; /* same as "invalid config file" */
2538                         goto out_free;
2539                 }
2540                 /* if nothing to unset, error out */
2541                 if (value == NULL) {
2542                         ret = CONFIG_NOTHING_SET;
2543                         goto out_free;
2544                 }
2545
2546                 store.key = (char *)key;
2547                 if (write_section(fd, key) < 0 ||
2548                     write_pair(fd, key, value) < 0)
2549                         goto write_err_out;
2550         } else {
2551                 struct stat st;
2552                 size_t copy_begin, copy_end;
2553                 int i, new_line = 0;
2554
2555                 if (value_regex == NULL)
2556                         store.value_regex = NULL;
2557                 else if (value_regex == CONFIG_REGEX_NONE)
2558                         store.value_regex = CONFIG_REGEX_NONE;
2559                 else {
2560                         if (value_regex[0] == '!') {
2561                                 store.do_not_match = 1;
2562                                 value_regex++;
2563                         } else
2564                                 store.do_not_match = 0;
2565
2566                         store.value_regex = (regex_t*)xmalloc(sizeof(regex_t));
2567                         if (regcomp(store.value_regex, value_regex,
2568                                         REG_EXTENDED)) {
2569                                 error("invalid pattern: %s", value_regex);
2570                                 free(store.value_regex);
2571                                 ret = CONFIG_INVALID_PATTERN;
2572                                 goto out_free;
2573                         }
2574                 }
2575
2576                 ALLOC_GROW(store.offset, 1, store.offset_alloc);
2577                 store.offset[0] = 0;
2578                 store.state = START;
2579                 store.seen = 0;
2580
2581                 /*
2582                  * After this, store.offset will contain the *end* offset
2583                  * of the last match, or remain at 0 if no match was found.
2584                  * As a side effect, we make sure to transform only a valid
2585                  * existing config file.
2586                  */
2587                 if (git_config_from_file(store_aux, config_filename, NULL)) {
2588                         error("invalid config file %s", config_filename);
2589                         free(store.key);
2590                         if (store.value_regex != NULL &&
2591                             store.value_regex != CONFIG_REGEX_NONE) {
2592                                 regfree(store.value_regex);
2593                                 free(store.value_regex);
2594                         }
2595                         ret = CONFIG_INVALID_FILE;
2596                         goto out_free;
2597                 }
2598
2599                 free(store.key);
2600                 if (store.value_regex != NULL &&
2601                     store.value_regex != CONFIG_REGEX_NONE) {
2602                         regfree(store.value_regex);
2603                         free(store.value_regex);
2604                 }
2605
2606                 /* if nothing to unset, or too many matches, error out */
2607                 if ((store.seen == 0 && value == NULL) ||
2608                                 (store.seen > 1 && multi_replace == 0)) {
2609                         ret = CONFIG_NOTHING_SET;
2610                         goto out_free;
2611                 }
2612
2613                 if (fstat(in_fd, &st) == -1) {
2614                         error_errno(_("fstat on %s failed"), config_filename);
2615                         ret = CONFIG_INVALID_FILE;
2616                         goto out_free;
2617                 }
2618
2619                 contents_sz = xsize_t(st.st_size);
2620                 contents = xmmap_gently(NULL, contents_sz, PROT_READ,
2621                                         MAP_PRIVATE, in_fd, 0);
2622                 if (contents == MAP_FAILED) {
2623                         if (errno == ENODEV && S_ISDIR(st.st_mode))
2624                                 errno = EISDIR;
2625                         error_errno("unable to mmap '%s'", config_filename);
2626                         ret = CONFIG_INVALID_FILE;
2627                         contents = NULL;
2628                         goto out_free;
2629                 }
2630                 close(in_fd);
2631                 in_fd = -1;
2632
2633                 if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
2634                         error_errno("chmod on %s failed", get_lock_file_path(&lock));
2635                         ret = CONFIG_NO_WRITE;
2636                         goto out_free;
2637                 }
2638
2639                 if (store.seen == 0)
2640                         store.seen = 1;
2641
2642                 for (i = 0, copy_begin = 0; i < store.seen; i++) {
2643                         if (store.offset[i] == 0) {
2644                                 store.offset[i] = copy_end = contents_sz;
2645                         } else if (store.state != KEY_SEEN) {
2646                                 copy_end = store.offset[i];
2647                         } else
2648                                 copy_end = find_beginning_of_line(
2649                                         contents, contents_sz,
2650                                         store.offset[i]-2, &new_line);
2651
2652                         if (copy_end > 0 && contents[copy_end-1] != '\n')
2653                                 new_line = 1;
2654
2655                         /* write the first part of the config */
2656                         if (copy_end > copy_begin) {
2657                                 if (write_in_full(fd, contents + copy_begin,
2658                                                   copy_end - copy_begin) < 0)
2659                                         goto write_err_out;
2660                                 if (new_line &&
2661                                     write_str_in_full(fd, "\n") < 0)
2662                                         goto write_err_out;
2663                         }
2664                         copy_begin = store.offset[i];
2665                 }
2666
2667                 /* write the pair (value == NULL means unset) */
2668                 if (value != NULL) {
2669                         if (store.state == START) {
2670                                 if (write_section(fd, key) < 0)
2671                                         goto write_err_out;
2672                         }
2673                         if (write_pair(fd, key, value) < 0)
2674                                 goto write_err_out;
2675                 }
2676
2677                 /* write the rest of the config */
2678                 if (copy_begin < contents_sz)
2679                         if (write_in_full(fd, contents + copy_begin,
2680                                           contents_sz - copy_begin) < 0)
2681                                 goto write_err_out;
2682
2683                 munmap(contents, contents_sz);
2684                 contents = NULL;
2685         }
2686
2687         if (commit_lock_file(&lock) < 0) {
2688                 error_errno("could not write config file %s", config_filename);
2689                 ret = CONFIG_NO_WRITE;
2690                 goto out_free;
2691         }
2692
2693         ret = 0;
2694
2695         /* Invalidate the config cache */
2696         git_config_clear();
2697
2698 out_free:
2699         rollback_lock_file(&lock);
2700         free(filename_buf);
2701         if (contents)
2702                 munmap(contents, contents_sz);
2703         if (in_fd >= 0)
2704                 close(in_fd);
2705         return ret;
2706
2707 write_err_out:
2708         ret = write_error(get_lock_file_path(&lock));
2709         goto out_free;
2710
2711 }
2712
2713 void git_config_set_multivar_in_file(const char *config_filename,
2714                                      const char *key, const char *value,
2715                                      const char *value_regex, int multi_replace)
2716 {
2717         if (!git_config_set_multivar_in_file_gently(config_filename, key, value,
2718                                                     value_regex, multi_replace))
2719                 return;
2720         if (value)
2721                 die(_("could not set '%s' to '%s'"), key, value);
2722         else
2723                 die(_("could not unset '%s'"), key);
2724 }
2725
2726 int git_config_set_multivar_gently(const char *key, const char *value,
2727                                    const char *value_regex, int multi_replace)
2728 {
2729         return git_config_set_multivar_in_file_gently(NULL, key, value, value_regex,
2730                                                       multi_replace);
2731 }
2732
2733 void git_config_set_multivar(const char *key, const char *value,
2734                              const char *value_regex, int multi_replace)
2735 {
2736         git_config_set_multivar_in_file(NULL, key, value, value_regex,
2737                                         multi_replace);
2738 }
2739
2740 static int section_name_match (const char *buf, const char *name)
2741 {
2742         int i = 0, j = 0, dot = 0;
2743         if (buf[i] != '[')
2744                 return 0;
2745         for (i = 1; buf[i] && buf[i] != ']'; i++) {
2746                 if (!dot && isspace(buf[i])) {
2747                         dot = 1;
2748                         if (name[j++] != '.')
2749                                 break;
2750                         for (i++; isspace(buf[i]); i++)
2751                                 ; /* do nothing */
2752                         if (buf[i] != '"')
2753                                 break;
2754                         continue;
2755                 }
2756                 if (buf[i] == '\\' && dot)
2757                         i++;
2758                 else if (buf[i] == '"' && dot) {
2759                         for (i++; isspace(buf[i]); i++)
2760                                 ; /* do_nothing */
2761                         break;
2762                 }
2763                 if (buf[i] != name[j++])
2764                         break;
2765         }
2766         if (buf[i] == ']' && name[j] == 0) {
2767                 /*
2768                  * We match, now just find the right length offset by
2769                  * gobbling up any whitespace after it, as well
2770                  */
2771                 i++;
2772                 for (; buf[i] && isspace(buf[i]); i++)
2773                         ; /* do nothing */
2774                 return i;
2775         }
2776         return 0;
2777 }
2778
2779 static int section_name_is_ok(const char *name)
2780 {
2781         /* Empty section names are bogus. */
2782         if (!*name)
2783                 return 0;
2784
2785         /*
2786          * Before a dot, we must be alphanumeric or dash. After the first dot,
2787          * anything goes, so we can stop checking.
2788          */
2789         for (; *name && *name != '.'; name++)
2790                 if (*name != '-' && !isalnum(*name))
2791                         return 0;
2792         return 1;
2793 }
2794
2795 /* if new_name == NULL, the section is removed instead */
2796 static int git_config_copy_or_rename_section_in_file(const char *config_filename,
2797                                       const char *old_name, const char *new_name, int copy)
2798 {
2799         int ret = 0, remove = 0;
2800         char *filename_buf = NULL;
2801         struct lock_file lock = LOCK_INIT;
2802         int out_fd;
2803         char buf[1024];
2804         FILE *config_file = NULL;
2805         struct stat st;
2806         struct strbuf copystr = STRBUF_INIT;
2807
2808         if (new_name && !section_name_is_ok(new_name)) {
2809                 ret = error("invalid section name: %s", new_name);
2810                 goto out_no_rollback;
2811         }
2812
2813         if (!config_filename)
2814                 config_filename = filename_buf = git_pathdup("config");
2815
2816         out_fd = hold_lock_file_for_update(&lock, config_filename, 0);
2817         if (out_fd < 0) {
2818                 ret = error("could not lock config file %s", config_filename);
2819                 goto out;
2820         }
2821
2822         if (!(config_file = fopen(config_filename, "rb"))) {
2823                 ret = warn_on_fopen_errors(config_filename);
2824                 if (ret)
2825                         goto out;
2826                 /* no config file means nothing to rename, no error */
2827                 goto commit_and_out;
2828         }
2829
2830         if (fstat(fileno(config_file), &st) == -1) {
2831                 ret = error_errno(_("fstat on %s failed"), config_filename);
2832                 goto out;
2833         }
2834
2835         if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
2836                 ret = error_errno("chmod on %s failed",
2837                                   get_lock_file_path(&lock));
2838                 goto out;
2839         }
2840
2841         while (fgets(buf, sizeof(buf), config_file)) {
2842                 int i;
2843                 int length;
2844                 int is_section = 0;
2845                 char *output = buf;
2846                 for (i = 0; buf[i] && isspace(buf[i]); i++)
2847                         ; /* do nothing */
2848                 if (buf[i] == '[') {
2849                         /* it's a section */
2850                         int offset;
2851                         is_section = 1;
2852
2853                         /*
2854                          * When encountering a new section under -c we
2855                          * need to flush out any section we're already
2856                          * coping and begin anew. There might be
2857                          * multiple [branch "$name"] sections.
2858                          */
2859                         if (copystr.len > 0) {
2860                                 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
2861                                         ret = write_error(get_lock_file_path(&lock));
2862                                         goto out;
2863                                 }
2864                                 strbuf_reset(&copystr);
2865                         }
2866
2867                         offset = section_name_match(&buf[i], old_name);
2868                         if (offset > 0) {
2869                                 ret++;
2870                                 if (new_name == NULL) {
2871                                         remove = 1;
2872                                         continue;
2873                                 }
2874                                 store.baselen = strlen(new_name);
2875                                 if (!copy) {
2876                                         if (write_section(out_fd, new_name) < 0) {
2877                                                 ret = write_error(get_lock_file_path(&lock));
2878                                                 goto out;
2879                                         }
2880                                         /*
2881                                          * We wrote out the new section, with
2882                                          * a newline, now skip the old
2883                                          * section's length
2884                                          */
2885                                         output += offset + i;
2886                                         if (strlen(output) > 0) {
2887                                                 /*
2888                                                  * More content means there's
2889                                                  * a declaration to put on the
2890                                                  * next line; indent with a
2891                                                  * tab
2892                                                  */
2893                                                 output -= 1;
2894                                                 output[0] = '\t';
2895                                         }
2896                                 } else {
2897                                         copystr = store_create_section(new_name);
2898                                 }
2899                         }
2900                         remove = 0;
2901                 }
2902                 if (remove)
2903                         continue;
2904                 length = strlen(output);
2905
2906                 if (!is_section && copystr.len > 0) {
2907                         strbuf_add(&copystr, output, length);
2908                 }
2909
2910                 if (write_in_full(out_fd, output, length) < 0) {
2911                         ret = write_error(get_lock_file_path(&lock));
2912                         goto out;
2913                 }
2914         }
2915
2916         /*
2917          * Copy a trailing section at the end of the config, won't be
2918          * flushed by the usual "flush because we have a new section
2919          * logic in the loop above.
2920          */
2921         if (copystr.len > 0) {
2922                 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
2923                         ret = write_error(get_lock_file_path(&lock));
2924                         goto out;
2925                 }
2926                 strbuf_reset(&copystr);
2927         }
2928
2929         fclose(config_file);
2930         config_file = NULL;
2931 commit_and_out:
2932         if (commit_lock_file(&lock) < 0)
2933                 ret = error_errno("could not write config file %s",
2934                                   config_filename);
2935 out:
2936         if (config_file)
2937                 fclose(config_file);
2938         rollback_lock_file(&lock);
2939 out_no_rollback:
2940         free(filename_buf);
2941         return ret;
2942 }
2943
2944 int git_config_rename_section_in_file(const char *config_filename,
2945                                       const char *old_name, const char *new_name)
2946 {
2947         return git_config_copy_or_rename_section_in_file(config_filename,
2948                                          old_name, new_name, 0);
2949 }
2950
2951 int git_config_rename_section(const char *old_name, const char *new_name)
2952 {
2953         return git_config_rename_section_in_file(NULL, old_name, new_name);
2954 }
2955
2956 int git_config_copy_section_in_file(const char *config_filename,
2957                                       const char *old_name, const char *new_name)
2958 {
2959         return git_config_copy_or_rename_section_in_file(config_filename,
2960                                          old_name, new_name, 1);
2961 }
2962
2963 int git_config_copy_section(const char *old_name, const char *new_name)
2964 {
2965         return git_config_copy_section_in_file(NULL, old_name, new_name);
2966 }
2967
2968 /*
2969  * Call this to report error for your variable that should not
2970  * get a boolean value (i.e. "[my] var" means "true").
2971  */
2972 #undef config_error_nonbool
2973 int config_error_nonbool(const char *var)
2974 {
2975         return error("missing value for '%s'", var);
2976 }
2977
2978 int parse_config_key(const char *var,
2979                      const char *section,
2980                      const char **subsection, int *subsection_len,
2981                      const char **key)
2982 {
2983         const char *dot;
2984
2985         /* Does it start with "section." ? */
2986         if (!skip_prefix(var, section, &var) || *var != '.')
2987                 return -1;
2988
2989         /*
2990          * Find the key; we don't know yet if we have a subsection, but we must
2991          * parse backwards from the end, since the subsection may have dots in
2992          * it, too.
2993          */
2994         dot = strrchr(var, '.');
2995         *key = dot + 1;
2996
2997         /* Did we have a subsection at all? */
2998         if (dot == var) {
2999                 if (subsection) {
3000                         *subsection = NULL;
3001                         *subsection_len = 0;
3002                 }
3003         }
3004         else {
3005                 if (!subsection)
3006                         return -1;
3007                 *subsection = var + 1;
3008                 *subsection_len = dot - *subsection;
3009         }
3010
3011         return 0;
3012 }
3013
3014 const char *current_config_origin_type(void)
3015 {
3016         int type;
3017         if (current_config_kvi)
3018                 type = current_config_kvi->origin_type;
3019         else if(cf)
3020                 type = cf->origin_type;
3021         else
3022                 die("BUG: current_config_origin_type called outside config callback");
3023
3024         switch (type) {
3025         case CONFIG_ORIGIN_BLOB:
3026                 return "blob";
3027         case CONFIG_ORIGIN_FILE:
3028                 return "file";
3029         case CONFIG_ORIGIN_STDIN:
3030                 return "standard input";
3031         case CONFIG_ORIGIN_SUBMODULE_BLOB:
3032                 return "submodule-blob";
3033         case CONFIG_ORIGIN_CMDLINE:
3034                 return "command line";
3035         default:
3036                 die("BUG: unknown config origin type");
3037         }
3038 }
3039
3040 const char *current_config_name(void)
3041 {
3042         const char *name;
3043         if (current_config_kvi)
3044                 name = current_config_kvi->filename;
3045         else if (cf)
3046                 name = cf->name;
3047         else
3048                 die("BUG: current_config_name called outside config callback");
3049         return name ? name : "";
3050 }
3051
3052 enum config_scope current_config_scope(void)
3053 {
3054         if (current_config_kvi)
3055                 return current_config_kvi->scope;
3056         else
3057                 return current_parsing_scope;
3058 }