git_config_set: reuse empty sections
[git/debian.git] / config.c
blobd4527beb44591983ce0131851bd596209d487b47
1 /*
2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Johannes Schindelin, 2005
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"
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;
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);
45 * These variables record the "current" config source, which
46 * can be accessed by parsing callbacks.
48 * The "cf" variable will be non-NULL only when we are actually parsing a real
49 * config source (file, blob, cmdline, etc).
51 * The "current_config_kvi" variable will be non-NULL only when we are feeding
52 * cached config from a configset into a callback.
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).
60 static struct config_source *cf;
61 static struct key_value_info *current_config_kvi;
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).
70 static enum config_scope current_parsing_scope;
72 static int core_compression_seen;
73 static int pack_compression_seen;
74 static int zlib_compression_seen;
76 static int config_file_fgetc(struct config_source *conf)
78 return getc_unlocked(conf->u.file);
81 static int config_file_ungetc(int c, struct config_source *conf)
83 return ungetc(c, conf->u.file);
86 static long config_file_ftell(struct config_source *conf)
88 return ftell(conf->u.file);
92 static int config_buf_fgetc(struct config_source *conf)
94 if (conf->u.buf.pos < conf->u.buf.len)
95 return conf->u.buf.buf[conf->u.buf.pos++];
97 return EOF;
100 static int config_buf_ungetc(int c, struct config_source *conf)
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;
109 return EOF;
112 static long config_buf_ftell(struct config_source *conf)
114 return conf->u.buf.pos;
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)
126 int ret = 0;
127 struct strbuf buf = STRBUF_INIT;
128 char *expanded;
130 if (!path)
131 return config_error_nonbool("include.path");
133 expanded = expand_user_path(path, 0);
134 if (!expanded)
135 return error("could not expand include path '%s'", path);
136 path = expanded;
139 * Use an absolute path as-is, but interpret relative paths
140 * based on the including config file.
142 if (!is_absolute_path(path)) {
143 char *slash;
145 if (!cf || !cf->path)
146 return error("relative config includes must come from files");
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;
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--;
164 strbuf_release(&buf);
165 free(expanded);
166 return ret;
169 static int prepare_include_condition_pattern(struct strbuf *pat)
171 struct strbuf path = STRBUF_INIT;
172 char *expanded;
173 int prefix = 0;
175 expanded = expand_user_path(pat->buf, 1);
176 if (expanded) {
177 strbuf_reset(pat);
178 strbuf_addstr(pat, expanded);
179 free(expanded);
182 if (pat->buf[0] == '.' && is_dir_sep(pat->buf[1])) {
183 const char *slash;
185 if (!cf || !cf->path)
186 return error(_("relative config include "
187 "conditionals must come from files"));
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);
198 if (pat->len && is_dir_sep(pat->buf[pat->len - 1]))
199 strbuf_addstr(pat, "**");
201 strbuf_release(&path);
202 return prefix;
205 static int include_by_gitdir(const struct config_options *opts,
206 const char *cond, size_t cond_len, int icase)
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;
214 if (opts->git_dir)
215 git_dir = opts->git_dir;
216 else
217 goto done;
219 strbuf_realpath(&text, git_dir, 1);
220 strbuf_add(&pattern, cond, cond_len);
221 prefix = prepare_include_condition_pattern(&pattern);
223 again:
224 if (prefix < 0)
225 goto done;
227 if (prefix > 0) {
229 * perform literal matching on the prefix part so that
230 * any wildcard character in it can't create side effects.
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;
240 ret = !wildmatch(pattern.buf + prefix, text.buf + prefix,
241 icase ? WM_CASEFOLD : 0);
243 if (!ret && !already_tried_absolute) {
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
252 strbuf_reset(&text);
253 strbuf_add_absolute_path(&text, git_dir);
254 already_tried_absolute = 1;
255 goto again;
257 done:
258 strbuf_release(&pattern);
259 strbuf_release(&text);
260 return ret;
263 static int include_condition_is_true(const struct config_options *opts,
264 const char *cond, size_t cond_len)
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);
272 /* unknown conditionals are always false */
273 return 0;
276 int git_config_include(const char *var, const char *value, void *data)
278 struct config_include_data *inc = data;
279 const char *cond, *key;
280 int cond_len;
281 int ret;
284 * Pass along all values, including "include" directives; this makes it
285 * possible to query information on the includes themselves.
287 ret = inc->fn(var, value, inc->data);
288 if (ret < 0)
289 return ret;
291 if (!strcmp(var, "include.path"))
292 ret = handle_path_include(value, inc);
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);
299 return ret;
302 void git_config_push_parameter(const char *text)
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, ' ');
310 sq_quote_buf(&env, text);
311 setenv(CONFIG_DATA_ENVIRONMENT, env.buf, 1);
312 strbuf_release(&env);
315 static inline int iskeychar(int c)
317 return isalnum(c) || c == '-';
321 * Auxiliary function to sanity-check and split the key into the section
322 * identifier and variable name.
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.
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
332 static int git_config_parse_key_1(const char *key, char **store_key, int *baselen_, int quiet)
334 int i, dot, baselen;
335 const char *last_dot = strrchr(key, '.');
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.
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;
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;
354 baselen = last_dot - key;
355 if (baselen_)
356 *baselen_ = baselen;
359 * Validate the key and while at it, lower case it for matching.
361 if (store_key)
362 *store_key = xmallocz(strlen(key));
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;
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;
383 if (store_key)
384 (*store_key)[i] = c;
387 return 0;
389 out_free_ret_1:
390 if (store_key) {
391 FREE_AND_NULL(*store_key);
393 return -CONFIG_INVALID_KEY;
396 int git_config_parse_key(const char *key, char **store_key, int *baselen)
398 return git_config_parse_key_1(key, store_key, baselen, 0);
401 int git_config_key_is_valid(const char *key)
403 return !git_config_parse_key_1(key, NULL, NULL, 1);
406 int git_config_parse_parameter(const char *text,
407 config_fn_t fn, void *data)
409 const char *value;
410 char *canonical_name;
411 struct strbuf **pair;
412 int ret;
414 pair = strbuf_split_str(text, '=', 2);
415 if (!pair[0])
416 return error("bogus config parameter: %s", text);
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;
425 strbuf_trim(pair[0]);
426 if (!pair[0]->len) {
427 strbuf_list_free(pair);
428 return error("bogus config parameter: %s", text);
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);
437 strbuf_list_free(pair);
438 return ret;
441 int git_config_from_parameters(config_fn_t fn, void *data)
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;
451 if (!env)
452 return 0;
454 memset(&source, 0, sizeof(source));
455 source.prev = cf;
456 source.origin_type = CONFIG_ORIGIN_CMDLINE;
457 cf = &source;
459 /* sq_dequote will write over it */
460 envw = xstrdup(env);
462 if (sq_dequote_to_argv(envw, &argv, &nr, &alloc) < 0) {
463 ret = error("bogus format in " CONFIG_DATA_ENVIRONMENT);
464 goto out;
467 for (i = 0; i < nr; i++) {
468 if (git_config_parse_parameter(argv[i], fn, data) < 0) {
469 ret = -1;
470 goto out;
474 out:
475 free(argv);
476 free(envw);
477 cf = source.prev;
478 return ret;
481 static int get_next_char(void)
483 int c = cf->do_fgetc(cf);
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';
494 if (c == '\n')
495 cf->linenr++;
496 if (c == EOF) {
497 cf->eof = 1;
498 cf->linenr++;
499 c = '\n';
501 return c;
504 static char *parse_value(void)
506 int quote = 0, comment = 0, space = 0;
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;
516 return cf->value.buf;
518 if (comment)
519 continue;
520 if (isspace(c) && !quote) {
521 if (cf->value.len)
522 space++;
523 continue;
525 if (!quote) {
526 if (c == ';' || c == '#') {
527 comment = 1;
528 continue;
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;
554 strbuf_addch(&cf->value, c);
555 continue;
557 if (c == '"') {
558 quote = 1-quote;
559 continue;
561 strbuf_addch(&cf->value, c);
565 static int get_value(config_fn_t fn, void *data, struct strbuf *name)
567 int c;
568 char *value;
569 int ret;
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));
581 while (c == ' ' || c == '\t')
582 c = get_next_char();
584 value = NULL;
585 if (c != '\n') {
586 if (c != '=')
587 return -1;
588 value = parse_value();
589 if (!value)
590 return -1;
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.
597 cf->linenr--;
598 ret = fn(name->buf, value, data);
599 if (ret >= 0)
600 cf->linenr++;
601 return ret;
604 static int get_extended_base_var(struct strbuf *name, int c)
606 do {
607 if (c == '\n')
608 goto error_incomplete_line;
609 c = get_next_char();
610 } while (isspace(c));
612 /* We require the format to be '[base "extension"]' */
613 if (c != '"')
614 return -1;
615 strbuf_addch(name, '.');
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;
628 strbuf_addch(name, c);
631 /* Final ']' */
632 if (get_next_char() != ']')
633 return -1;
634 return 0;
635 error_incomplete_line:
636 cf->linenr--;
637 return -1;
640 static int get_base_var(struct strbuf *name)
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));
656 struct parse_event_data {
657 enum config_event_t previous_type;
658 size_t previous_offset;
659 const struct config_options *opts;
662 static int do_event(enum config_event_t type, struct parse_event_data *data)
664 size_t offset;
666 if (!data->opts || !data->opts->event_fn)
667 return 0;
669 if (type == CONFIG_EVENT_WHITESPACE &&
670 data->previous_type == type)
671 return 0;
673 offset = cf->do_ftell(cf);
675 * At EOF, the parser always "inserts" an extra '\n', therefore
676 * the end offset of the event is the current file position, otherwise
677 * we will already have advanced to the next event.
679 if (type != CONFIG_EVENT_EOF)
680 offset--;
682 if (data->previous_type != CONFIG_EVENT_EOF &&
683 data->opts->event_fn(data->previous_type, data->previous_offset,
684 offset, data->opts->event_fn_data) < 0)
685 return -1;
687 data->previous_type = type;
688 data->previous_offset = offset;
690 return 0;
693 static int git_parse_source(config_fn_t fn, void *data,
694 const struct config_options *opts)
696 int comment = 0;
697 int baselen = 0;
698 struct strbuf *var = &cf->var;
699 int error_return = 0;
700 char *error_msg = NULL;
702 /* U+FEFF Byte Order Mark in UTF8 */
703 const char *bomptr = utf8_bom;
705 /* For the parser event callback */
706 struct parse_event_data event_data = {
707 CONFIG_EVENT_EOF, 0, opts
710 for (;;) {
711 int c;
713 c = get_next_char();
714 if (bomptr && *bomptr) {
715 /* We are at the file beginning; skip UTF8-encoded BOM
716 * if present. Sane editors won't put this in on their
717 * own, but e.g. Windows Notepad will do it happily. */
718 if (c == (*bomptr & 0377)) {
719 bomptr++;
720 continue;
721 } else {
722 /* Do not tolerate partial BOM. */
723 if (bomptr != utf8_bom)
724 break;
725 /* No BOM at file beginning. Cool. */
726 bomptr = NULL;
729 if (c == '\n') {
730 if (cf->eof) {
731 if (do_event(CONFIG_EVENT_EOF, &event_data) < 0)
732 return -1;
733 return 0;
735 if (do_event(CONFIG_EVENT_WHITESPACE, &event_data) < 0)
736 return -1;
737 comment = 0;
738 continue;
740 if (comment)
741 continue;
742 if (isspace(c)) {
743 if (do_event(CONFIG_EVENT_WHITESPACE, &event_data) < 0)
744 return -1;
745 continue;
747 if (c == '#' || c == ';') {
748 if (do_event(CONFIG_EVENT_COMMENT, &event_data) < 0)
749 return -1;
750 comment = 1;
751 continue;
753 if (c == '[') {
754 if (do_event(CONFIG_EVENT_SECTION, &event_data) < 0)
755 return -1;
757 /* Reset prior to determining a new stem */
758 strbuf_reset(var);
759 if (get_base_var(var) < 0 || var->len < 1)
760 break;
761 strbuf_addch(var, '.');
762 baselen = var->len;
763 continue;
765 if (!isalpha(c))
766 break;
768 if (do_event(CONFIG_EVENT_ENTRY, &event_data) < 0)
769 return -1;
772 * Truncate the var name back to the section header
773 * stem prior to grabbing the suffix part of the name
774 * and the value.
776 strbuf_setlen(var, baselen);
777 strbuf_addch(var, tolower(c));
778 if (get_value(fn, data, var) < 0)
779 break;
782 if (do_event(CONFIG_EVENT_ERROR, &event_data) < 0)
783 return -1;
785 switch (cf->origin_type) {
786 case CONFIG_ORIGIN_BLOB:
787 error_msg = xstrfmt(_("bad config line %d in blob %s"),
788 cf->linenr, cf->name);
789 break;
790 case CONFIG_ORIGIN_FILE:
791 error_msg = xstrfmt(_("bad config line %d in file %s"),
792 cf->linenr, cf->name);
793 break;
794 case CONFIG_ORIGIN_STDIN:
795 error_msg = xstrfmt(_("bad config line %d in standard input"),
796 cf->linenr);
797 break;
798 case CONFIG_ORIGIN_SUBMODULE_BLOB:
799 error_msg = xstrfmt(_("bad config line %d in submodule-blob %s"),
800 cf->linenr, cf->name);
801 break;
802 case CONFIG_ORIGIN_CMDLINE:
803 error_msg = xstrfmt(_("bad config line %d in command line %s"),
804 cf->linenr, cf->name);
805 break;
806 default:
807 error_msg = xstrfmt(_("bad config line %d in %s"),
808 cf->linenr, cf->name);
811 if (cf->die_on_error)
812 die("%s", error_msg);
813 else
814 error_return = error("%s", error_msg);
816 free(error_msg);
817 return error_return;
820 static int parse_unit_factor(const char *end, uintmax_t *val)
822 if (!*end)
823 return 1;
824 else if (!strcasecmp(end, "k")) {
825 *val *= 1024;
826 return 1;
828 else if (!strcasecmp(end, "m")) {
829 *val *= 1024 * 1024;
830 return 1;
832 else if (!strcasecmp(end, "g")) {
833 *val *= 1024 * 1024 * 1024;
834 return 1;
836 return 0;
839 static int git_parse_signed(const char *value, intmax_t *ret, intmax_t max)
841 if (value && *value) {
842 char *end;
843 intmax_t val;
844 uintmax_t uval;
845 uintmax_t factor = 1;
847 errno = 0;
848 val = strtoimax(value, &end, 0);
849 if (errno == ERANGE)
850 return 0;
851 if (!parse_unit_factor(end, &factor)) {
852 errno = EINVAL;
853 return 0;
855 uval = labs(val);
856 uval *= factor;
857 if (uval > max || labs(val) > uval) {
858 errno = ERANGE;
859 return 0;
861 val *= factor;
862 *ret = val;
863 return 1;
865 errno = EINVAL;
866 return 0;
869 static int git_parse_unsigned(const char *value, uintmax_t *ret, uintmax_t max)
871 if (value && *value) {
872 char *end;
873 uintmax_t val;
874 uintmax_t oldval;
876 errno = 0;
877 val = strtoumax(value, &end, 0);
878 if (errno == ERANGE)
879 return 0;
880 oldval = val;
881 if (!parse_unit_factor(end, &val)) {
882 errno = EINVAL;
883 return 0;
885 if (val > max || oldval > val) {
886 errno = ERANGE;
887 return 0;
889 *ret = val;
890 return 1;
892 errno = EINVAL;
893 return 0;
896 static int git_parse_int(const char *value, int *ret)
898 intmax_t tmp;
899 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int)))
900 return 0;
901 *ret = tmp;
902 return 1;
905 static int git_parse_int64(const char *value, int64_t *ret)
907 intmax_t tmp;
908 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int64_t)))
909 return 0;
910 *ret = tmp;
911 return 1;
914 int git_parse_ulong(const char *value, unsigned long *ret)
916 uintmax_t tmp;
917 if (!git_parse_unsigned(value, &tmp, maximum_unsigned_value_of_type(long)))
918 return 0;
919 *ret = tmp;
920 return 1;
923 static int git_parse_ssize_t(const char *value, ssize_t *ret)
925 intmax_t tmp;
926 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(ssize_t)))
927 return 0;
928 *ret = tmp;
929 return 1;
932 NORETURN
933 static void die_bad_number(const char *name, const char *value)
935 const char * error_type = (errno == ERANGE)? _("out of range"):_("invalid unit");
937 if (!value)
938 value = "";
940 if (!(cf && cf->name))
941 die(_("bad numeric config value '%s' for '%s': %s"),
942 value, name, error_type);
944 switch (cf->origin_type) {
945 case CONFIG_ORIGIN_BLOB:
946 die(_("bad numeric config value '%s' for '%s' in blob %s: %s"),
947 value, name, cf->name, error_type);
948 case CONFIG_ORIGIN_FILE:
949 die(_("bad numeric config value '%s' for '%s' in file %s: %s"),
950 value, name, cf->name, error_type);
951 case CONFIG_ORIGIN_STDIN:
952 die(_("bad numeric config value '%s' for '%s' in standard input: %s"),
953 value, name, error_type);
954 case CONFIG_ORIGIN_SUBMODULE_BLOB:
955 die(_("bad numeric config value '%s' for '%s' in submodule-blob %s: %s"),
956 value, name, cf->name, error_type);
957 case CONFIG_ORIGIN_CMDLINE:
958 die(_("bad numeric config value '%s' for '%s' in command line %s: %s"),
959 value, name, cf->name, error_type);
960 default:
961 die(_("bad numeric config value '%s' for '%s' in %s: %s"),
962 value, name, cf->name, error_type);
966 int git_config_int(const char *name, const char *value)
968 int ret;
969 if (!git_parse_int(value, &ret))
970 die_bad_number(name, value);
971 return ret;
974 int64_t git_config_int64(const char *name, const char *value)
976 int64_t ret;
977 if (!git_parse_int64(value, &ret))
978 die_bad_number(name, value);
979 return ret;
982 unsigned long git_config_ulong(const char *name, const char *value)
984 unsigned long ret;
985 if (!git_parse_ulong(value, &ret))
986 die_bad_number(name, value);
987 return ret;
990 ssize_t git_config_ssize_t(const char *name, const char *value)
992 ssize_t ret;
993 if (!git_parse_ssize_t(value, &ret))
994 die_bad_number(name, value);
995 return ret;
998 static int git_parse_maybe_bool_text(const char *value)
1000 if (!value)
1001 return 1;
1002 if (!*value)
1003 return 0;
1004 if (!strcasecmp(value, "true")
1005 || !strcasecmp(value, "yes")
1006 || !strcasecmp(value, "on"))
1007 return 1;
1008 if (!strcasecmp(value, "false")
1009 || !strcasecmp(value, "no")
1010 || !strcasecmp(value, "off"))
1011 return 0;
1012 return -1;
1015 int git_parse_maybe_bool(const char *value)
1017 int v = git_parse_maybe_bool_text(value);
1018 if (0 <= v)
1019 return v;
1020 if (git_parse_int(value, &v))
1021 return !!v;
1022 return -1;
1025 int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
1027 int v = git_parse_maybe_bool_text(value);
1028 if (0 <= v) {
1029 *is_bool = 1;
1030 return v;
1032 *is_bool = 0;
1033 return git_config_int(name, value);
1036 int git_config_bool(const char *name, const char *value)
1038 int discard;
1039 return !!git_config_bool_or_int(name, value, &discard);
1042 int git_config_string(const char **dest, const char *var, const char *value)
1044 if (!value)
1045 return config_error_nonbool(var);
1046 *dest = xstrdup(value);
1047 return 0;
1050 int git_config_pathname(const char **dest, const char *var, const char *value)
1052 if (!value)
1053 return config_error_nonbool(var);
1054 *dest = expand_user_path(value, 0);
1055 if (!*dest)
1056 die(_("failed to expand user dir in: '%s'"), value);
1057 return 0;
1060 int git_config_expiry_date(timestamp_t *timestamp, const char *var, const char *value)
1062 if (!value)
1063 return config_error_nonbool(var);
1064 if (parse_expiry_date(value, timestamp))
1065 return error(_("'%s' for '%s' is not a valid timestamp"),
1066 value, var);
1067 return 0;
1070 static int git_default_core_config(const char *var, const char *value)
1072 /* This needs a better name */
1073 if (!strcmp(var, "core.filemode")) {
1074 trust_executable_bit = git_config_bool(var, value);
1075 return 0;
1077 if (!strcmp(var, "core.trustctime")) {
1078 trust_ctime = git_config_bool(var, value);
1079 return 0;
1081 if (!strcmp(var, "core.checkstat")) {
1082 if (!strcasecmp(value, "default"))
1083 check_stat = 1;
1084 else if (!strcasecmp(value, "minimal"))
1085 check_stat = 0;
1088 if (!strcmp(var, "core.quotepath")) {
1089 quote_path_fully = git_config_bool(var, value);
1090 return 0;
1093 if (!strcmp(var, "core.symlinks")) {
1094 has_symlinks = git_config_bool(var, value);
1095 return 0;
1098 if (!strcmp(var, "core.ignorecase")) {
1099 ignore_case = git_config_bool(var, value);
1100 return 0;
1103 if (!strcmp(var, "core.attributesfile"))
1104 return git_config_pathname(&git_attributes_file, var, value);
1106 if (!strcmp(var, "core.hookspath"))
1107 return git_config_pathname(&git_hooks_path, var, value);
1109 if (!strcmp(var, "core.bare")) {
1110 is_bare_repository_cfg = git_config_bool(var, value);
1111 return 0;
1114 if (!strcmp(var, "core.ignorestat")) {
1115 assume_unchanged = git_config_bool(var, value);
1116 return 0;
1119 if (!strcmp(var, "core.prefersymlinkrefs")) {
1120 prefer_symlink_refs = git_config_bool(var, value);
1121 return 0;
1124 if (!strcmp(var, "core.logallrefupdates")) {
1125 if (value && !strcasecmp(value, "always"))
1126 log_all_ref_updates = LOG_REFS_ALWAYS;
1127 else if (git_config_bool(var, value))
1128 log_all_ref_updates = LOG_REFS_NORMAL;
1129 else
1130 log_all_ref_updates = LOG_REFS_NONE;
1131 return 0;
1134 if (!strcmp(var, "core.warnambiguousrefs")) {
1135 warn_ambiguous_refs = git_config_bool(var, value);
1136 return 0;
1139 if (!strcmp(var, "core.abbrev")) {
1140 if (!value)
1141 return config_error_nonbool(var);
1142 if (!strcasecmp(value, "auto"))
1143 default_abbrev = -1;
1144 else {
1145 int abbrev = git_config_int(var, value);
1146 if (abbrev < minimum_abbrev || abbrev > 40)
1147 return error("abbrev length out of range: %d", abbrev);
1148 default_abbrev = abbrev;
1150 return 0;
1153 if (!strcmp(var, "core.disambiguate"))
1154 return set_disambiguate_hint_config(var, value);
1156 if (!strcmp(var, "core.loosecompression")) {
1157 int level = git_config_int(var, value);
1158 if (level == -1)
1159 level = Z_DEFAULT_COMPRESSION;
1160 else if (level < 0 || level > Z_BEST_COMPRESSION)
1161 die(_("bad zlib compression level %d"), level);
1162 zlib_compression_level = level;
1163 zlib_compression_seen = 1;
1164 return 0;
1167 if (!strcmp(var, "core.compression")) {
1168 int level = git_config_int(var, value);
1169 if (level == -1)
1170 level = Z_DEFAULT_COMPRESSION;
1171 else if (level < 0 || level > Z_BEST_COMPRESSION)
1172 die(_("bad zlib compression level %d"), level);
1173 core_compression_level = level;
1174 core_compression_seen = 1;
1175 if (!zlib_compression_seen)
1176 zlib_compression_level = level;
1177 if (!pack_compression_seen)
1178 pack_compression_level = level;
1179 return 0;
1182 if (!strcmp(var, "core.packedgitwindowsize")) {
1183 int pgsz_x2 = getpagesize() * 2;
1184 packed_git_window_size = git_config_ulong(var, value);
1186 /* This value must be multiple of (pagesize * 2) */
1187 packed_git_window_size /= pgsz_x2;
1188 if (packed_git_window_size < 1)
1189 packed_git_window_size = 1;
1190 packed_git_window_size *= pgsz_x2;
1191 return 0;
1194 if (!strcmp(var, "core.bigfilethreshold")) {
1195 big_file_threshold = git_config_ulong(var, value);
1196 return 0;
1199 if (!strcmp(var, "core.packedgitlimit")) {
1200 packed_git_limit = git_config_ulong(var, value);
1201 return 0;
1204 if (!strcmp(var, "core.deltabasecachelimit")) {
1205 delta_base_cache_limit = git_config_ulong(var, value);
1206 return 0;
1209 if (!strcmp(var, "core.autocrlf")) {
1210 if (value && !strcasecmp(value, "input")) {
1211 auto_crlf = AUTO_CRLF_INPUT;
1212 return 0;
1214 auto_crlf = git_config_bool(var, value);
1215 return 0;
1218 if (!strcmp(var, "core.safecrlf")) {
1219 if (value && !strcasecmp(value, "warn")) {
1220 safe_crlf = SAFE_CRLF_WARN;
1221 return 0;
1223 safe_crlf = git_config_bool(var, value);
1224 return 0;
1227 if (!strcmp(var, "core.eol")) {
1228 if (value && !strcasecmp(value, "lf"))
1229 core_eol = EOL_LF;
1230 else if (value && !strcasecmp(value, "crlf"))
1231 core_eol = EOL_CRLF;
1232 else if (value && !strcasecmp(value, "native"))
1233 core_eol = EOL_NATIVE;
1234 else
1235 core_eol = EOL_UNSET;
1236 return 0;
1239 if (!strcmp(var, "core.notesref")) {
1240 notes_ref_name = xstrdup(value);
1241 return 0;
1244 if (!strcmp(var, "core.editor"))
1245 return git_config_string(&editor_program, var, value);
1247 if (!strcmp(var, "core.commentchar")) {
1248 if (!value)
1249 return config_error_nonbool(var);
1250 else if (!strcasecmp(value, "auto"))
1251 auto_comment_line_char = 1;
1252 else if (value[0] && !value[1]) {
1253 comment_line_char = value[0];
1254 auto_comment_line_char = 0;
1255 } else
1256 return error("core.commentChar should only be one character");
1257 return 0;
1260 if (!strcmp(var, "core.askpass"))
1261 return git_config_string(&askpass_program, var, value);
1263 if (!strcmp(var, "core.excludesfile"))
1264 return git_config_pathname(&excludes_file, var, value);
1266 if (!strcmp(var, "core.whitespace")) {
1267 if (!value)
1268 return config_error_nonbool(var);
1269 whitespace_rule_cfg = parse_whitespace_rule(value);
1270 return 0;
1273 if (!strcmp(var, "core.fsyncobjectfiles")) {
1274 fsync_object_files = git_config_bool(var, value);
1275 return 0;
1278 if (!strcmp(var, "core.preloadindex")) {
1279 core_preload_index = git_config_bool(var, value);
1280 return 0;
1283 if (!strcmp(var, "core.createobject")) {
1284 if (!strcmp(value, "rename"))
1285 object_creation_mode = OBJECT_CREATION_USES_RENAMES;
1286 else if (!strcmp(value, "link"))
1287 object_creation_mode = OBJECT_CREATION_USES_HARDLINKS;
1288 else
1289 die(_("invalid mode for object creation: %s"), value);
1290 return 0;
1293 if (!strcmp(var, "core.sparsecheckout")) {
1294 core_apply_sparse_checkout = git_config_bool(var, value);
1295 return 0;
1298 if (!strcmp(var, "core.precomposeunicode")) {
1299 precomposed_unicode = git_config_bool(var, value);
1300 return 0;
1303 if (!strcmp(var, "core.protecthfs")) {
1304 protect_hfs = git_config_bool(var, value);
1305 return 0;
1308 if (!strcmp(var, "core.protectntfs")) {
1309 protect_ntfs = git_config_bool(var, value);
1310 return 0;
1313 if (!strcmp(var, "core.hidedotfiles")) {
1314 if (value && !strcasecmp(value, "dotgitonly"))
1315 hide_dotfiles = HIDE_DOTFILES_DOTGITONLY;
1316 else
1317 hide_dotfiles = git_config_bool(var, value);
1318 return 0;
1321 /* Add other config variables here and to Documentation/config.txt. */
1322 return 0;
1325 static int git_default_i18n_config(const char *var, const char *value)
1327 if (!strcmp(var, "i18n.commitencoding"))
1328 return git_config_string(&git_commit_encoding, var, value);
1330 if (!strcmp(var, "i18n.logoutputencoding"))
1331 return git_config_string(&git_log_output_encoding, var, value);
1333 /* Add other config variables here and to Documentation/config.txt. */
1334 return 0;
1337 static int git_default_branch_config(const char *var, const char *value)
1339 if (!strcmp(var, "branch.autosetupmerge")) {
1340 if (value && !strcasecmp(value, "always")) {
1341 git_branch_track = BRANCH_TRACK_ALWAYS;
1342 return 0;
1344 git_branch_track = git_config_bool(var, value);
1345 return 0;
1347 if (!strcmp(var, "branch.autosetuprebase")) {
1348 if (!value)
1349 return config_error_nonbool(var);
1350 else if (!strcmp(value, "never"))
1351 autorebase = AUTOREBASE_NEVER;
1352 else if (!strcmp(value, "local"))
1353 autorebase = AUTOREBASE_LOCAL;
1354 else if (!strcmp(value, "remote"))
1355 autorebase = AUTOREBASE_REMOTE;
1356 else if (!strcmp(value, "always"))
1357 autorebase = AUTOREBASE_ALWAYS;
1358 else
1359 return error("malformed value for %s", var);
1360 return 0;
1363 /* Add other config variables here and to Documentation/config.txt. */
1364 return 0;
1367 static int git_default_push_config(const char *var, const char *value)
1369 if (!strcmp(var, "push.default")) {
1370 if (!value)
1371 return config_error_nonbool(var);
1372 else if (!strcmp(value, "nothing"))
1373 push_default = PUSH_DEFAULT_NOTHING;
1374 else if (!strcmp(value, "matching"))
1375 push_default = PUSH_DEFAULT_MATCHING;
1376 else if (!strcmp(value, "simple"))
1377 push_default = PUSH_DEFAULT_SIMPLE;
1378 else if (!strcmp(value, "upstream"))
1379 push_default = PUSH_DEFAULT_UPSTREAM;
1380 else if (!strcmp(value, "tracking")) /* deprecated */
1381 push_default = PUSH_DEFAULT_UPSTREAM;
1382 else if (!strcmp(value, "current"))
1383 push_default = PUSH_DEFAULT_CURRENT;
1384 else {
1385 error("malformed value for %s: %s", var, value);
1386 return error("Must be one of nothing, matching, simple, "
1387 "upstream or current.");
1389 return 0;
1392 /* Add other config variables here and to Documentation/config.txt. */
1393 return 0;
1396 static int git_default_mailmap_config(const char *var, const char *value)
1398 if (!strcmp(var, "mailmap.file"))
1399 return git_config_pathname(&git_mailmap_file, var, value);
1400 if (!strcmp(var, "mailmap.blob"))
1401 return git_config_string(&git_mailmap_blob, var, value);
1403 /* Add other config variables here and to Documentation/config.txt. */
1404 return 0;
1407 int git_default_config(const char *var, const char *value, void *dummy)
1409 if (starts_with(var, "core."))
1410 return git_default_core_config(var, value);
1412 if (starts_with(var, "user."))
1413 return git_ident_config(var, value, dummy);
1415 if (starts_with(var, "i18n."))
1416 return git_default_i18n_config(var, value);
1418 if (starts_with(var, "branch."))
1419 return git_default_branch_config(var, value);
1421 if (starts_with(var, "push."))
1422 return git_default_push_config(var, value);
1424 if (starts_with(var, "mailmap."))
1425 return git_default_mailmap_config(var, value);
1427 if (starts_with(var, "advice."))
1428 return git_default_advice_config(var, value);
1430 if (!strcmp(var, "pager.color") || !strcmp(var, "color.pager")) {
1431 pager_use_color = git_config_bool(var,value);
1432 return 0;
1435 if (!strcmp(var, "pack.packsizelimit")) {
1436 pack_size_limit_cfg = git_config_ulong(var, value);
1437 return 0;
1440 if (!strcmp(var, "pack.compression")) {
1441 int level = git_config_int(var, value);
1442 if (level == -1)
1443 level = Z_DEFAULT_COMPRESSION;
1444 else if (level < 0 || level > Z_BEST_COMPRESSION)
1445 die(_("bad pack compression level %d"), level);
1446 pack_compression_level = level;
1447 pack_compression_seen = 1;
1448 return 0;
1451 /* Add other config variables here and to Documentation/config.txt. */
1452 return 0;
1456 * All source specific fields in the union, die_on_error, name and the callbacks
1457 * fgetc, ungetc, ftell of top need to be initialized before calling
1458 * this function.
1460 static int do_config_from(struct config_source *top, config_fn_t fn, void *data,
1461 const struct config_options *opts)
1463 int ret;
1465 /* push config-file parsing state stack */
1466 top->prev = cf;
1467 top->linenr = 1;
1468 top->eof = 0;
1469 strbuf_init(&top->value, 1024);
1470 strbuf_init(&top->var, 1024);
1471 cf = top;
1473 ret = git_parse_source(fn, data, opts);
1475 /* pop config-file parsing state stack */
1476 strbuf_release(&top->value);
1477 strbuf_release(&top->var);
1478 cf = top->prev;
1480 return ret;
1483 static int do_config_from_file(config_fn_t fn,
1484 const enum config_origin_type origin_type,
1485 const char *name, const char *path, FILE *f,
1486 void *data, const struct config_options *opts)
1488 struct config_source top;
1490 top.u.file = f;
1491 top.origin_type = origin_type;
1492 top.name = name;
1493 top.path = path;
1494 top.die_on_error = 1;
1495 top.do_fgetc = config_file_fgetc;
1496 top.do_ungetc = config_file_ungetc;
1497 top.do_ftell = config_file_ftell;
1499 return do_config_from(&top, fn, data, opts);
1502 static int git_config_from_stdin(config_fn_t fn, void *data)
1504 return do_config_from_file(fn, CONFIG_ORIGIN_STDIN, "", NULL, stdin,
1505 data, NULL);
1508 int git_config_from_file_with_options(config_fn_t fn, const char *filename,
1509 void *data,
1510 const struct config_options *opts)
1512 int ret = -1;
1513 FILE *f;
1515 f = fopen_or_warn(filename, "r");
1516 if (f) {
1517 flockfile(f);
1518 ret = do_config_from_file(fn, CONFIG_ORIGIN_FILE, filename,
1519 filename, f, data, opts);
1520 funlockfile(f);
1521 fclose(f);
1523 return ret;
1526 int git_config_from_file(config_fn_t fn, const char *filename, void *data)
1528 return git_config_from_file_with_options(fn, filename, data, NULL);
1531 int git_config_from_mem(config_fn_t fn, const enum config_origin_type origin_type,
1532 const char *name, const char *buf, size_t len, void *data)
1534 struct config_source top;
1536 top.u.buf.buf = buf;
1537 top.u.buf.len = len;
1538 top.u.buf.pos = 0;
1539 top.origin_type = origin_type;
1540 top.name = name;
1541 top.path = NULL;
1542 top.die_on_error = 0;
1543 top.do_fgetc = config_buf_fgetc;
1544 top.do_ungetc = config_buf_ungetc;
1545 top.do_ftell = config_buf_ftell;
1547 return do_config_from(&top, fn, data, NULL);
1550 int git_config_from_blob_oid(config_fn_t fn,
1551 const char *name,
1552 const struct object_id *oid,
1553 void *data)
1555 enum object_type type;
1556 char *buf;
1557 unsigned long size;
1558 int ret;
1560 buf = read_sha1_file(oid->hash, &type, &size);
1561 if (!buf)
1562 return error("unable to load config blob object '%s'", name);
1563 if (type != OBJ_BLOB) {
1564 free(buf);
1565 return error("reference '%s' does not point to a blob", name);
1568 ret = git_config_from_mem(fn, CONFIG_ORIGIN_BLOB, name, buf, size, data);
1569 free(buf);
1571 return ret;
1574 static int git_config_from_blob_ref(config_fn_t fn,
1575 const char *name,
1576 void *data)
1578 struct object_id oid;
1580 if (get_oid(name, &oid) < 0)
1581 return error("unable to resolve config blob '%s'", name);
1582 return git_config_from_blob_oid(fn, name, &oid, data);
1585 const char *git_etc_gitconfig(void)
1587 static const char *system_wide;
1588 if (!system_wide)
1589 system_wide = system_path(ETC_GITCONFIG);
1590 return system_wide;
1594 * Parse environment variable 'k' as a boolean (in various
1595 * possible spellings); if missing, use the default value 'def'.
1597 int git_env_bool(const char *k, int def)
1599 const char *v = getenv(k);
1600 return v ? git_config_bool(k, v) : def;
1604 * Parse environment variable 'k' as ulong with possibly a unit
1605 * suffix; if missing, use the default value 'val'.
1607 unsigned long git_env_ulong(const char *k, unsigned long val)
1609 const char *v = getenv(k);
1610 if (v && !git_parse_ulong(v, &val))
1611 die("failed to parse %s", k);
1612 return val;
1615 int git_config_system(void)
1617 return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0);
1620 static int do_git_config_sequence(const struct config_options *opts,
1621 config_fn_t fn, void *data)
1623 int ret = 0;
1624 char *xdg_config = xdg_config_home("config");
1625 char *user_config = expand_user_path("~/.gitconfig", 0);
1626 char *repo_config;
1628 if (opts->commondir)
1629 repo_config = mkpathdup("%s/config", opts->commondir);
1630 else
1631 repo_config = NULL;
1633 current_parsing_scope = CONFIG_SCOPE_SYSTEM;
1634 if (git_config_system() && !access_or_die(git_etc_gitconfig(), R_OK, 0))
1635 ret += git_config_from_file(fn, git_etc_gitconfig(),
1636 data);
1638 current_parsing_scope = CONFIG_SCOPE_GLOBAL;
1639 if (xdg_config && !access_or_die(xdg_config, R_OK, ACCESS_EACCES_OK))
1640 ret += git_config_from_file(fn, xdg_config, data);
1642 if (user_config && !access_or_die(user_config, R_OK, ACCESS_EACCES_OK))
1643 ret += git_config_from_file(fn, user_config, data);
1645 current_parsing_scope = CONFIG_SCOPE_REPO;
1646 if (repo_config && !access_or_die(repo_config, R_OK, 0))
1647 ret += git_config_from_file(fn, repo_config, data);
1649 current_parsing_scope = CONFIG_SCOPE_CMDLINE;
1650 if (git_config_from_parameters(fn, data) < 0)
1651 die(_("unable to parse command-line config"));
1653 current_parsing_scope = CONFIG_SCOPE_UNKNOWN;
1654 free(xdg_config);
1655 free(user_config);
1656 free(repo_config);
1657 return ret;
1660 int config_with_options(config_fn_t fn, void *data,
1661 struct git_config_source *config_source,
1662 const struct config_options *opts)
1664 struct config_include_data inc = CONFIG_INCLUDE_INIT;
1666 if (opts->respect_includes) {
1667 inc.fn = fn;
1668 inc.data = data;
1669 inc.opts = opts;
1670 fn = git_config_include;
1671 data = &inc;
1675 * If we have a specific filename, use it. Otherwise, follow the
1676 * regular lookup sequence.
1678 if (config_source && config_source->use_stdin)
1679 return git_config_from_stdin(fn, data);
1680 else if (config_source && config_source->file)
1681 return git_config_from_file(fn, config_source->file, data);
1682 else if (config_source && config_source->blob)
1683 return git_config_from_blob_ref(fn, config_source->blob, data);
1685 return do_git_config_sequence(opts, fn, data);
1688 static void configset_iter(struct config_set *cs, config_fn_t fn, void *data)
1690 int i, value_index;
1691 struct string_list *values;
1692 struct config_set_element *entry;
1693 struct configset_list *list = &cs->list;
1695 for (i = 0; i < list->nr; i++) {
1696 entry = list->items[i].e;
1697 value_index = list->items[i].value_index;
1698 values = &entry->value_list;
1700 current_config_kvi = values->items[value_index].util;
1702 if (fn(entry->key, values->items[value_index].string, data) < 0)
1703 git_die_config_linenr(entry->key,
1704 current_config_kvi->filename,
1705 current_config_kvi->linenr);
1707 current_config_kvi = NULL;
1711 void read_early_config(config_fn_t cb, void *data)
1713 struct config_options opts = {0};
1714 struct strbuf commondir = STRBUF_INIT;
1715 struct strbuf gitdir = STRBUF_INIT;
1717 opts.respect_includes = 1;
1719 if (have_git_dir()) {
1720 opts.commondir = get_git_common_dir();
1721 opts.git_dir = get_git_dir();
1723 * When setup_git_directory() was not yet asked to discover the
1724 * GIT_DIR, we ask discover_git_directory() to figure out whether there
1725 * is any repository config we should use (but unlike
1726 * setup_git_directory_gently(), no global state is changed, most
1727 * notably, the current working directory is still the same after the
1728 * call).
1730 } else if (!discover_git_directory(&commondir, &gitdir)) {
1731 opts.commondir = commondir.buf;
1732 opts.git_dir = gitdir.buf;
1735 config_with_options(cb, data, NULL, &opts);
1737 strbuf_release(&commondir);
1738 strbuf_release(&gitdir);
1741 static struct config_set_element *configset_find_element(struct config_set *cs, const char *key)
1743 struct config_set_element k;
1744 struct config_set_element *found_entry;
1745 char *normalized_key;
1747 * `key` may come from the user, so normalize it before using it
1748 * for querying entries from the hashmap.
1750 if (git_config_parse_key(key, &normalized_key, NULL))
1751 return NULL;
1753 hashmap_entry_init(&k, strhash(normalized_key));
1754 k.key = normalized_key;
1755 found_entry = hashmap_get(&cs->config_hash, &k, NULL);
1756 free(normalized_key);
1757 return found_entry;
1760 static int configset_add_value(struct config_set *cs, const char *key, const char *value)
1762 struct config_set_element *e;
1763 struct string_list_item *si;
1764 struct configset_list_item *l_item;
1765 struct key_value_info *kv_info = xmalloc(sizeof(*kv_info));
1767 e = configset_find_element(cs, key);
1769 * Since the keys are being fed by git_config*() callback mechanism, they
1770 * are already normalized. So simply add them without any further munging.
1772 if (!e) {
1773 e = xmalloc(sizeof(*e));
1774 hashmap_entry_init(e, strhash(key));
1775 e->key = xstrdup(key);
1776 string_list_init(&e->value_list, 1);
1777 hashmap_add(&cs->config_hash, e);
1779 si = string_list_append_nodup(&e->value_list, xstrdup_or_null(value));
1781 ALLOC_GROW(cs->list.items, cs->list.nr + 1, cs->list.alloc);
1782 l_item = &cs->list.items[cs->list.nr++];
1783 l_item->e = e;
1784 l_item->value_index = e->value_list.nr - 1;
1786 if (!cf)
1787 die("BUG: configset_add_value has no source");
1788 if (cf->name) {
1789 kv_info->filename = strintern(cf->name);
1790 kv_info->linenr = cf->linenr;
1791 kv_info->origin_type = cf->origin_type;
1792 } else {
1793 /* for values read from `git_config_from_parameters()` */
1794 kv_info->filename = NULL;
1795 kv_info->linenr = -1;
1796 kv_info->origin_type = CONFIG_ORIGIN_CMDLINE;
1798 kv_info->scope = current_parsing_scope;
1799 si->util = kv_info;
1801 return 0;
1804 static int config_set_element_cmp(const void *unused_cmp_data,
1805 const void *entry,
1806 const void *entry_or_key,
1807 const void *unused_keydata)
1809 const struct config_set_element *e1 = entry;
1810 const struct config_set_element *e2 = entry_or_key;
1812 return strcmp(e1->key, e2->key);
1815 void git_configset_init(struct config_set *cs)
1817 hashmap_init(&cs->config_hash, config_set_element_cmp, NULL, 0);
1818 cs->hash_initialized = 1;
1819 cs->list.nr = 0;
1820 cs->list.alloc = 0;
1821 cs->list.items = NULL;
1824 void git_configset_clear(struct config_set *cs)
1826 struct config_set_element *entry;
1827 struct hashmap_iter iter;
1828 if (!cs->hash_initialized)
1829 return;
1831 hashmap_iter_init(&cs->config_hash, &iter);
1832 while ((entry = hashmap_iter_next(&iter))) {
1833 free(entry->key);
1834 string_list_clear(&entry->value_list, 1);
1836 hashmap_free(&cs->config_hash, 1);
1837 cs->hash_initialized = 0;
1838 free(cs->list.items);
1839 cs->list.nr = 0;
1840 cs->list.alloc = 0;
1841 cs->list.items = NULL;
1844 static int config_set_callback(const char *key, const char *value, void *cb)
1846 struct config_set *cs = cb;
1847 configset_add_value(cs, key, value);
1848 return 0;
1851 int git_configset_add_file(struct config_set *cs, const char *filename)
1853 return git_config_from_file(config_set_callback, filename, cs);
1856 int git_configset_get_value(struct config_set *cs, const char *key, const char **value)
1858 const struct string_list *values = NULL;
1860 * Follows "last one wins" semantic, i.e., if there are multiple matches for the
1861 * queried key in the files of the configset, the value returned will be the last
1862 * value in the value list for that key.
1864 values = git_configset_get_value_multi(cs, key);
1866 if (!values)
1867 return 1;
1868 assert(values->nr > 0);
1869 *value = values->items[values->nr - 1].string;
1870 return 0;
1873 const struct string_list *git_configset_get_value_multi(struct config_set *cs, const char *key)
1875 struct config_set_element *e = configset_find_element(cs, key);
1876 return e ? &e->value_list : NULL;
1879 int git_configset_get_string_const(struct config_set *cs, const char *key, const char **dest)
1881 const char *value;
1882 if (!git_configset_get_value(cs, key, &value))
1883 return git_config_string(dest, key, value);
1884 else
1885 return 1;
1888 int git_configset_get_string(struct config_set *cs, const char *key, char **dest)
1890 return git_configset_get_string_const(cs, key, (const char **)dest);
1893 int git_configset_get_int(struct config_set *cs, const char *key, int *dest)
1895 const char *value;
1896 if (!git_configset_get_value(cs, key, &value)) {
1897 *dest = git_config_int(key, value);
1898 return 0;
1899 } else
1900 return 1;
1903 int git_configset_get_ulong(struct config_set *cs, const char *key, unsigned long *dest)
1905 const char *value;
1906 if (!git_configset_get_value(cs, key, &value)) {
1907 *dest = git_config_ulong(key, value);
1908 return 0;
1909 } else
1910 return 1;
1913 int git_configset_get_bool(struct config_set *cs, const char *key, int *dest)
1915 const char *value;
1916 if (!git_configset_get_value(cs, key, &value)) {
1917 *dest = git_config_bool(key, value);
1918 return 0;
1919 } else
1920 return 1;
1923 int git_configset_get_bool_or_int(struct config_set *cs, const char *key,
1924 int *is_bool, int *dest)
1926 const char *value;
1927 if (!git_configset_get_value(cs, key, &value)) {
1928 *dest = git_config_bool_or_int(key, value, is_bool);
1929 return 0;
1930 } else
1931 return 1;
1934 int git_configset_get_maybe_bool(struct config_set *cs, const char *key, int *dest)
1936 const char *value;
1937 if (!git_configset_get_value(cs, key, &value)) {
1938 *dest = git_parse_maybe_bool(value);
1939 if (*dest == -1)
1940 return -1;
1941 return 0;
1942 } else
1943 return 1;
1946 int git_configset_get_pathname(struct config_set *cs, const char *key, const char **dest)
1948 const char *value;
1949 if (!git_configset_get_value(cs, key, &value))
1950 return git_config_pathname(dest, key, value);
1951 else
1952 return 1;
1955 /* Functions use to read configuration from a repository */
1956 static void repo_read_config(struct repository *repo)
1958 struct config_options opts;
1960 opts.respect_includes = 1;
1961 opts.commondir = repo->commondir;
1962 opts.git_dir = repo->gitdir;
1964 if (!repo->config)
1965 repo->config = xcalloc(1, sizeof(struct config_set));
1966 else
1967 git_configset_clear(repo->config);
1969 git_configset_init(repo->config);
1971 if (config_with_options(config_set_callback, repo->config, NULL, &opts) < 0)
1973 * config_with_options() normally returns only
1974 * zero, as most errors are fatal, and
1975 * non-fatal potential errors are guarded by "if"
1976 * statements that are entered only when no error is
1977 * possible.
1979 * If we ever encounter a non-fatal error, it means
1980 * something went really wrong and we should stop
1981 * immediately.
1983 die(_("unknown error occurred while reading the configuration files"));
1986 static void git_config_check_init(struct repository *repo)
1988 if (repo->config && repo->config->hash_initialized)
1989 return;
1990 repo_read_config(repo);
1993 static void repo_config_clear(struct repository *repo)
1995 if (!repo->config || !repo->config->hash_initialized)
1996 return;
1997 git_configset_clear(repo->config);
2000 void repo_config(struct repository *repo, config_fn_t fn, void *data)
2002 git_config_check_init(repo);
2003 configset_iter(repo->config, fn, data);
2006 int repo_config_get_value(struct repository *repo,
2007 const char *key, const char **value)
2009 git_config_check_init(repo);
2010 return git_configset_get_value(repo->config, key, value);
2013 const struct string_list *repo_config_get_value_multi(struct repository *repo,
2014 const char *key)
2016 git_config_check_init(repo);
2017 return git_configset_get_value_multi(repo->config, key);
2020 int repo_config_get_string_const(struct repository *repo,
2021 const char *key, const char **dest)
2023 int ret;
2024 git_config_check_init(repo);
2025 ret = git_configset_get_string_const(repo->config, key, dest);
2026 if (ret < 0)
2027 git_die_config(key, NULL);
2028 return ret;
2031 int repo_config_get_string(struct repository *repo,
2032 const char *key, char **dest)
2034 git_config_check_init(repo);
2035 return repo_config_get_string_const(repo, key, (const char **)dest);
2038 int repo_config_get_int(struct repository *repo,
2039 const char *key, int *dest)
2041 git_config_check_init(repo);
2042 return git_configset_get_int(repo->config, key, dest);
2045 int repo_config_get_ulong(struct repository *repo,
2046 const char *key, unsigned long *dest)
2048 git_config_check_init(repo);
2049 return git_configset_get_ulong(repo->config, key, dest);
2052 int repo_config_get_bool(struct repository *repo,
2053 const char *key, int *dest)
2055 git_config_check_init(repo);
2056 return git_configset_get_bool(repo->config, key, dest);
2059 int repo_config_get_bool_or_int(struct repository *repo,
2060 const char *key, int *is_bool, int *dest)
2062 git_config_check_init(repo);
2063 return git_configset_get_bool_or_int(repo->config, key, is_bool, dest);
2066 int repo_config_get_maybe_bool(struct repository *repo,
2067 const char *key, int *dest)
2069 git_config_check_init(repo);
2070 return git_configset_get_maybe_bool(repo->config, key, dest);
2073 int repo_config_get_pathname(struct repository *repo,
2074 const char *key, const char **dest)
2076 int ret;
2077 git_config_check_init(repo);
2078 ret = git_configset_get_pathname(repo->config, key, dest);
2079 if (ret < 0)
2080 git_die_config(key, NULL);
2081 return ret;
2084 /* Functions used historically to read configuration from 'the_repository' */
2085 void git_config(config_fn_t fn, void *data)
2087 repo_config(the_repository, fn, data);
2090 void git_config_clear(void)
2092 repo_config_clear(the_repository);
2095 int git_config_get_value(const char *key, const char **value)
2097 return repo_config_get_value(the_repository, key, value);
2100 const struct string_list *git_config_get_value_multi(const char *key)
2102 return repo_config_get_value_multi(the_repository, key);
2105 int git_config_get_string_const(const char *key, const char **dest)
2107 return repo_config_get_string_const(the_repository, key, dest);
2110 int git_config_get_string(const char *key, char **dest)
2112 return repo_config_get_string(the_repository, key, dest);
2115 int git_config_get_int(const char *key, int *dest)
2117 return repo_config_get_int(the_repository, key, dest);
2120 int git_config_get_ulong(const char *key, unsigned long *dest)
2122 return repo_config_get_ulong(the_repository, key, dest);
2125 int git_config_get_bool(const char *key, int *dest)
2127 return repo_config_get_bool(the_repository, key, dest);
2130 int git_config_get_bool_or_int(const char *key, int *is_bool, int *dest)
2132 return repo_config_get_bool_or_int(the_repository, key, is_bool, dest);
2135 int git_config_get_maybe_bool(const char *key, int *dest)
2137 return repo_config_get_maybe_bool(the_repository, key, dest);
2140 int git_config_get_pathname(const char *key, const char **dest)
2142 return repo_config_get_pathname(the_repository, key, dest);
2146 * Note: This function exists solely to maintain backward compatibility with
2147 * 'fetch' and 'update_clone' storing configuration in '.gitmodules' and should
2148 * NOT be used anywhere else.
2150 * Runs the provided config function on the '.gitmodules' file found in the
2151 * working directory.
2153 void config_from_gitmodules(config_fn_t fn, void *data)
2155 if (the_repository->worktree) {
2156 char *file = repo_worktree_path(the_repository, GITMODULES_FILE);
2157 git_config_from_file(fn, file, data);
2158 free(file);
2162 int git_config_get_expiry(const char *key, const char **output)
2164 int ret = git_config_get_string_const(key, output);
2165 if (ret)
2166 return ret;
2167 if (strcmp(*output, "now")) {
2168 timestamp_t now = approxidate("now");
2169 if (approxidate(*output) >= now)
2170 git_die_config(key, _("Invalid %s: '%s'"), key, *output);
2172 return ret;
2175 int git_config_get_expiry_in_days(const char *key, timestamp_t *expiry, timestamp_t now)
2177 char *expiry_string;
2178 intmax_t days;
2179 timestamp_t when;
2181 if (git_config_get_string(key, &expiry_string))
2182 return 1; /* no such thing */
2184 if (git_parse_signed(expiry_string, &days, maximum_signed_value_of_type(int))) {
2185 const int scale = 86400;
2186 *expiry = now - days * scale;
2187 return 0;
2190 if (!parse_expiry_date(expiry_string, &when)) {
2191 *expiry = when;
2192 return 0;
2194 return -1; /* thing exists but cannot be parsed */
2197 int git_config_get_untracked_cache(void)
2199 int val = -1;
2200 const char *v;
2202 /* Hack for test programs like test-dump-untracked-cache */
2203 if (ignore_untracked_cache_config)
2204 return -1;
2206 if (!git_config_get_maybe_bool("core.untrackedcache", &val))
2207 return val;
2209 if (!git_config_get_value("core.untrackedcache", &v)) {
2210 if (!strcasecmp(v, "keep"))
2211 return -1;
2213 error(_("unknown core.untrackedCache value '%s'; "
2214 "using 'keep' default value"), v);
2215 return -1;
2218 return -1; /* default value */
2221 int git_config_get_split_index(void)
2223 int val;
2225 if (!git_config_get_maybe_bool("core.splitindex", &val))
2226 return val;
2228 return -1; /* default value */
2231 int git_config_get_max_percent_split_change(void)
2233 int val = -1;
2235 if (!git_config_get_int("splitindex.maxpercentchange", &val)) {
2236 if (0 <= val && val <= 100)
2237 return val;
2239 return error(_("splitIndex.maxPercentChange value '%d' "
2240 "should be between 0 and 100"), val);
2243 return -1; /* default value */
2246 int git_config_get_fsmonitor(void)
2248 if (git_config_get_pathname("core.fsmonitor", &core_fsmonitor))
2249 core_fsmonitor = getenv("GIT_FSMONITOR_TEST");
2251 if (core_fsmonitor && !*core_fsmonitor)
2252 core_fsmonitor = NULL;
2254 if (core_fsmonitor)
2255 return 1;
2257 return 0;
2260 NORETURN
2261 void git_die_config_linenr(const char *key, const char *filename, int linenr)
2263 if (!filename)
2264 die(_("unable to parse '%s' from command-line config"), key);
2265 else
2266 die(_("bad config variable '%s' in file '%s' at line %d"),
2267 key, filename, linenr);
2270 NORETURN __attribute__((format(printf, 2, 3)))
2271 void git_die_config(const char *key, const char *err, ...)
2273 const struct string_list *values;
2274 struct key_value_info *kv_info;
2276 if (err) {
2277 va_list params;
2278 va_start(params, err);
2279 vreportf("error: ", err, params);
2280 va_end(params);
2282 values = git_config_get_value_multi(key);
2283 kv_info = values->items[values->nr - 1].util;
2284 git_die_config_linenr(key, kv_info->filename, kv_info->linenr);
2288 * Find all the stuff for git_config_set() below.
2291 struct config_store_data {
2292 int baselen;
2293 char *key;
2294 int do_not_match;
2295 regex_t *value_regex;
2296 int multi_replace;
2297 struct {
2298 size_t begin, end;
2299 enum config_event_t type;
2300 int is_keys_section;
2301 } *parsed;
2302 unsigned int parsed_nr, parsed_alloc, *seen, seen_nr, seen_alloc;
2303 unsigned int key_seen:1, section_seen:1, is_keys_section:1;
2306 static int matches(const char *key, const char *value,
2307 const struct config_store_data *store)
2309 if (strcmp(key, store->key))
2310 return 0; /* not ours */
2311 if (!store->value_regex)
2312 return 1; /* always matches */
2313 if (store->value_regex == CONFIG_REGEX_NONE)
2314 return 0; /* never matches */
2316 return store->do_not_match ^
2317 (value && !regexec(store->value_regex, value, 0, NULL, 0));
2320 static int store_aux_event(enum config_event_t type,
2321 size_t begin, size_t end, void *data)
2323 struct config_store_data *store = data;
2325 ALLOC_GROW(store->parsed, store->parsed_nr + 1, store->parsed_alloc);
2326 store->parsed[store->parsed_nr].begin = begin;
2327 store->parsed[store->parsed_nr].end = end;
2328 store->parsed[store->parsed_nr].type = type;
2330 if (type == CONFIG_EVENT_SECTION) {
2331 if (cf->var.len < 2 || cf->var.buf[cf->var.len - 1] != '.')
2332 BUG("Invalid section name '%s'", cf->var.buf);
2334 /* Is this the section we were looking for? */
2335 store->is_keys_section =
2336 store->parsed[store->parsed_nr].is_keys_section =
2337 cf->var.len - 1 == store->baselen &&
2338 !strncasecmp(cf->var.buf, store->key, store->baselen);
2339 if (store->is_keys_section) {
2340 store->section_seen = 1;
2341 ALLOC_GROW(store->seen, store->seen_nr + 1,
2342 store->seen_alloc);
2343 store->seen[store->seen_nr] = store->parsed_nr;
2347 store->parsed_nr++;
2349 return 0;
2352 static int store_aux(const char *key, const char *value, void *cb)
2354 struct config_store_data *store = cb;
2356 if (store->key_seen) {
2357 if (matches(key, value, store)) {
2358 if (store->seen_nr == 1 && store->multi_replace == 0) {
2359 warning(_("%s has multiple values"), key);
2362 ALLOC_GROW(store->seen, store->seen_nr + 1,
2363 store->seen_alloc);
2365 store->seen[store->seen_nr] = store->parsed_nr;
2366 store->seen_nr++;
2368 } else if (store->is_keys_section) {
2370 * Do not increment matches yet: this may not be a match, but we
2371 * are in the desired section.
2373 ALLOC_GROW(store->seen, store->seen_nr + 1, store->seen_alloc);
2374 store->seen[store->seen_nr] = store->parsed_nr;
2375 store->section_seen = 1;
2377 if (matches(key, value, store)) {
2378 store->seen_nr++;
2379 store->key_seen = 1;
2383 return 0;
2386 static int write_error(const char *filename)
2388 error("failed to write new configuration file %s", filename);
2390 /* Same error code as "failed to rename". */
2391 return 4;
2394 static struct strbuf store_create_section(const char *key,
2395 const struct config_store_data *store)
2397 const char *dot;
2398 int i;
2399 struct strbuf sb = STRBUF_INIT;
2401 dot = memchr(key, '.', store->baselen);
2402 if (dot) {
2403 strbuf_addf(&sb, "[%.*s \"", (int)(dot - key), key);
2404 for (i = dot - key + 1; i < store->baselen; i++) {
2405 if (key[i] == '"' || key[i] == '\\')
2406 strbuf_addch(&sb, '\\');
2407 strbuf_addch(&sb, key[i]);
2409 strbuf_addstr(&sb, "\"]\n");
2410 } else {
2411 strbuf_addf(&sb, "[%.*s]\n", store->baselen, key);
2414 return sb;
2417 static ssize_t write_section(int fd, const char *key,
2418 const struct config_store_data *store)
2420 struct strbuf sb = store_create_section(key, store);
2421 ssize_t ret;
2423 ret = write_in_full(fd, sb.buf, sb.len);
2424 strbuf_release(&sb);
2426 return ret;
2429 static ssize_t write_pair(int fd, const char *key, const char *value,
2430 const struct config_store_data *store)
2432 int i;
2433 ssize_t ret;
2434 int length = strlen(key + store->baselen + 1);
2435 const char *quote = "";
2436 struct strbuf sb = STRBUF_INIT;
2439 * Check to see if the value needs to be surrounded with a dq pair.
2440 * Note that problematic characters are always backslash-quoted; this
2441 * check is about not losing leading or trailing SP and strings that
2442 * follow beginning-of-comment characters (i.e. ';' and '#') by the
2443 * configuration parser.
2445 if (value[0] == ' ')
2446 quote = "\"";
2447 for (i = 0; value[i]; i++)
2448 if (value[i] == ';' || value[i] == '#')
2449 quote = "\"";
2450 if (i && value[i - 1] == ' ')
2451 quote = "\"";
2453 strbuf_addf(&sb, "\t%.*s = %s",
2454 length, key + store->baselen + 1, quote);
2456 for (i = 0; value[i]; i++)
2457 switch (value[i]) {
2458 case '\n':
2459 strbuf_addstr(&sb, "\\n");
2460 break;
2461 case '\t':
2462 strbuf_addstr(&sb, "\\t");
2463 break;
2464 case '"':
2465 case '\\':
2466 strbuf_addch(&sb, '\\');
2467 /* fallthrough */
2468 default:
2469 strbuf_addch(&sb, value[i]);
2470 break;
2472 strbuf_addf(&sb, "%s\n", quote);
2474 ret = write_in_full(fd, sb.buf, sb.len);
2475 strbuf_release(&sb);
2477 return ret;
2481 * If we are about to unset the last key(s) in a section, and if there are
2482 * no comments surrounding (or included in) the section, we will want to
2483 * extend begin/end to remove the entire section.
2485 * Note: the parameter `seen_ptr` points to the index into the store.seen
2486 * array. * This index may be incremented if a section has more than one
2487 * entry (which all are to be removed).
2489 static void maybe_remove_section(struct config_store_data *store,
2490 const char *contents,
2491 size_t *begin_offset, size_t *end_offset,
2492 int *seen_ptr)
2494 size_t begin;
2495 int i, seen, section_seen = 0;
2498 * First, ensure that this is the first key, and that there are no
2499 * comments before the entry nor before the section header.
2501 seen = *seen_ptr;
2502 for (i = store->seen[seen]; i > 0; i--) {
2503 enum config_event_t type = store->parsed[i - 1].type;
2505 if (type == CONFIG_EVENT_COMMENT)
2506 /* There is a comment before this entry or section */
2507 return;
2508 if (type == CONFIG_EVENT_ENTRY) {
2509 if (!section_seen)
2510 /* This is not the section's first entry. */
2511 return;
2512 /* We encountered no comment before the section. */
2513 break;
2515 if (type == CONFIG_EVENT_SECTION) {
2516 if (!store->parsed[i - 1].is_keys_section)
2517 break;
2518 section_seen = 1;
2521 begin = store->parsed[i].begin;
2524 * Next, make sure that we are removing he last key(s) in the section,
2525 * and that there are no comments that are possibly about the current
2526 * section.
2528 for (i = store->seen[seen] + 1; i < store->parsed_nr; i++) {
2529 enum config_event_t type = store->parsed[i].type;
2531 if (type == CONFIG_EVENT_COMMENT)
2532 return;
2533 if (type == CONFIG_EVENT_SECTION) {
2534 if (store->parsed[i].is_keys_section)
2535 continue;
2536 break;
2538 if (type == CONFIG_EVENT_ENTRY) {
2539 if (++seen < store->seen_nr &&
2540 i == store->seen[seen])
2541 /* We want to remove this entry, too */
2542 continue;
2543 /* There is another entry in this section. */
2544 return;
2549 * We are really removing the last entry/entries from this section, and
2550 * there are no enclosed or surrounding comments. Remove the entire,
2551 * now-empty section.
2553 *seen_ptr = seen;
2554 *begin_offset = begin;
2555 if (i < store->parsed_nr)
2556 *end_offset = store->parsed[i].begin;
2557 else
2558 *end_offset = store->parsed[store->parsed_nr - 1].end;
2561 int git_config_set_in_file_gently(const char *config_filename,
2562 const char *key, const char *value)
2564 return git_config_set_multivar_in_file_gently(config_filename, key, value, NULL, 0);
2567 void git_config_set_in_file(const char *config_filename,
2568 const char *key, const char *value)
2570 git_config_set_multivar_in_file(config_filename, key, value, NULL, 0);
2573 int git_config_set_gently(const char *key, const char *value)
2575 return git_config_set_multivar_gently(key, value, NULL, 0);
2578 void git_config_set(const char *key, const char *value)
2580 git_config_set_multivar(key, value, NULL, 0);
2584 * If value==NULL, unset in (remove from) config,
2585 * if value_regex!=NULL, disregard key/value pairs where value does not match.
2586 * if value_regex==CONFIG_REGEX_NONE, do not match any existing values
2587 * (only add a new one)
2588 * if multi_replace==0, nothing, or only one matching key/value is replaced,
2589 * else all matching key/values (regardless how many) are removed,
2590 * before the new pair is written.
2592 * Returns 0 on success.
2594 * This function does this:
2596 * - it locks the config file by creating ".git/config.lock"
2598 * - it then parses the config using store_aux() as validator to find
2599 * the position on the key/value pair to replace. If it is to be unset,
2600 * it must be found exactly once.
2602 * - the config file is mmap()ed and the part before the match (if any) is
2603 * written to the lock file, then the changed part and the rest.
2605 * - the config file is removed and the lock file rename()d to it.
2608 int git_config_set_multivar_in_file_gently(const char *config_filename,
2609 const char *key, const char *value,
2610 const char *value_regex,
2611 int multi_replace)
2613 int fd = -1, in_fd = -1;
2614 int ret;
2615 struct lock_file lock = LOCK_INIT;
2616 char *filename_buf = NULL;
2617 char *contents = NULL;
2618 size_t contents_sz;
2619 struct config_store_data store;
2621 memset(&store, 0, sizeof(store));
2623 /* parse-key returns negative; flip the sign to feed exit(3) */
2624 ret = 0 - git_config_parse_key(key, &store.key, &store.baselen);
2625 if (ret)
2626 goto out_free;
2628 store.multi_replace = multi_replace;
2630 if (!config_filename)
2631 config_filename = filename_buf = git_pathdup("config");
2634 * The lock serves a purpose in addition to locking: the new
2635 * contents of .git/config will be written into it.
2637 fd = hold_lock_file_for_update(&lock, config_filename, 0);
2638 if (fd < 0) {
2639 error_errno("could not lock config file %s", config_filename);
2640 free(store.key);
2641 ret = CONFIG_NO_LOCK;
2642 goto out_free;
2646 * If .git/config does not exist yet, write a minimal version.
2648 in_fd = open(config_filename, O_RDONLY);
2649 if ( in_fd < 0 ) {
2650 free(store.key);
2652 if ( ENOENT != errno ) {
2653 error_errno("opening %s", config_filename);
2654 ret = CONFIG_INVALID_FILE; /* same as "invalid config file" */
2655 goto out_free;
2657 /* if nothing to unset, error out */
2658 if (value == NULL) {
2659 ret = CONFIG_NOTHING_SET;
2660 goto out_free;
2663 store.key = (char *)key;
2664 if (write_section(fd, key, &store) < 0 ||
2665 write_pair(fd, key, value, &store) < 0)
2666 goto write_err_out;
2667 } else {
2668 struct stat st;
2669 size_t copy_begin, copy_end;
2670 int i, new_line = 0;
2671 struct config_options opts;
2673 if (value_regex == NULL)
2674 store.value_regex = NULL;
2675 else if (value_regex == CONFIG_REGEX_NONE)
2676 store.value_regex = CONFIG_REGEX_NONE;
2677 else {
2678 if (value_regex[0] == '!') {
2679 store.do_not_match = 1;
2680 value_regex++;
2681 } else
2682 store.do_not_match = 0;
2684 store.value_regex = (regex_t*)xmalloc(sizeof(regex_t));
2685 if (regcomp(store.value_regex, value_regex,
2686 REG_EXTENDED)) {
2687 error("invalid pattern: %s", value_regex);
2688 free(store.value_regex);
2689 ret = CONFIG_INVALID_PATTERN;
2690 goto out_free;
2694 ALLOC_GROW(store.parsed, 1, store.parsed_alloc);
2695 store.parsed[0].end = 0;
2697 memset(&opts, 0, sizeof(opts));
2698 opts.event_fn = store_aux_event;
2699 opts.event_fn_data = &store;
2702 * After this, store.parsed will contain offsets of all the
2703 * parsed elements, and store.seen will contain a list of
2704 * matches, as indices into store.parsed.
2706 * As a side effect, we make sure to transform only a valid
2707 * existing config file.
2709 if (git_config_from_file_with_options(store_aux,
2710 config_filename,
2711 &store, &opts)) {
2712 error("invalid config file %s", config_filename);
2713 free(store.key);
2714 if (store.value_regex != NULL &&
2715 store.value_regex != CONFIG_REGEX_NONE) {
2716 regfree(store.value_regex);
2717 free(store.value_regex);
2719 ret = CONFIG_INVALID_FILE;
2720 goto out_free;
2723 free(store.key);
2724 if (store.value_regex != NULL &&
2725 store.value_regex != CONFIG_REGEX_NONE) {
2726 regfree(store.value_regex);
2727 free(store.value_regex);
2730 /* if nothing to unset, or too many matches, error out */
2731 if ((store.seen_nr == 0 && value == NULL) ||
2732 (store.seen_nr > 1 && multi_replace == 0)) {
2733 ret = CONFIG_NOTHING_SET;
2734 goto out_free;
2737 if (fstat(in_fd, &st) == -1) {
2738 error_errno(_("fstat on %s failed"), config_filename);
2739 ret = CONFIG_INVALID_FILE;
2740 goto out_free;
2743 contents_sz = xsize_t(st.st_size);
2744 contents = xmmap_gently(NULL, contents_sz, PROT_READ,
2745 MAP_PRIVATE, in_fd, 0);
2746 if (contents == MAP_FAILED) {
2747 if (errno == ENODEV && S_ISDIR(st.st_mode))
2748 errno = EISDIR;
2749 error_errno("unable to mmap '%s'", config_filename);
2750 ret = CONFIG_INVALID_FILE;
2751 contents = NULL;
2752 goto out_free;
2754 close(in_fd);
2755 in_fd = -1;
2757 if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
2758 error_errno("chmod on %s failed", get_lock_file_path(&lock));
2759 ret = CONFIG_NO_WRITE;
2760 goto out_free;
2763 if (store.seen_nr == 0) {
2764 if (!store.seen_alloc) {
2765 /* Did not see key nor section */
2766 ALLOC_GROW(store.seen, 1, store.seen_alloc);
2767 store.seen[0] = store.parsed_nr
2768 - !!store.parsed_nr;
2770 store.seen_nr = 1;
2773 for (i = 0, copy_begin = 0; i < store.seen_nr; i++) {
2774 size_t replace_end;
2775 int j = store.seen[i];
2777 new_line = 0;
2778 if (!store.key_seen) {
2779 copy_end = store.parsed[j].end;
2780 /* include '\n' when copying section header */
2781 if (copy_end > 0 && copy_end < contents_sz &&
2782 contents[copy_end - 1] != '\n' &&
2783 contents[copy_end] == '\n')
2784 copy_end++;
2785 replace_end = copy_end;
2786 } else {
2787 replace_end = store.parsed[j].end;
2788 copy_end = store.parsed[j].begin;
2789 if (!value)
2790 maybe_remove_section(&store, contents,
2791 &copy_end,
2792 &replace_end, &i);
2794 * Swallow preceding white-space on the same
2795 * line.
2797 while (copy_end > 0 ) {
2798 char c = contents[copy_end - 1];
2800 if (isspace(c) && c != '\n')
2801 copy_end--;
2802 else
2803 break;
2807 if (copy_end > 0 && contents[copy_end-1] != '\n')
2808 new_line = 1;
2810 /* write the first part of the config */
2811 if (copy_end > copy_begin) {
2812 if (write_in_full(fd, contents + copy_begin,
2813 copy_end - copy_begin) < 0)
2814 goto write_err_out;
2815 if (new_line &&
2816 write_str_in_full(fd, "\n") < 0)
2817 goto write_err_out;
2819 copy_begin = replace_end;
2822 /* write the pair (value == NULL means unset) */
2823 if (value != NULL) {
2824 if (!store.section_seen) {
2825 if (write_section(fd, key, &store) < 0)
2826 goto write_err_out;
2828 if (write_pair(fd, key, value, &store) < 0)
2829 goto write_err_out;
2832 /* write the rest of the config */
2833 if (copy_begin < contents_sz)
2834 if (write_in_full(fd, contents + copy_begin,
2835 contents_sz - copy_begin) < 0)
2836 goto write_err_out;
2838 munmap(contents, contents_sz);
2839 contents = NULL;
2842 if (commit_lock_file(&lock) < 0) {
2843 error_errno("could not write config file %s", config_filename);
2844 ret = CONFIG_NO_WRITE;
2845 goto out_free;
2848 ret = 0;
2850 /* Invalidate the config cache */
2851 git_config_clear();
2853 out_free:
2854 rollback_lock_file(&lock);
2855 free(filename_buf);
2856 if (contents)
2857 munmap(contents, contents_sz);
2858 if (in_fd >= 0)
2859 close(in_fd);
2860 return ret;
2862 write_err_out:
2863 ret = write_error(get_lock_file_path(&lock));
2864 goto out_free;
2868 void git_config_set_multivar_in_file(const char *config_filename,
2869 const char *key, const char *value,
2870 const char *value_regex, int multi_replace)
2872 if (!git_config_set_multivar_in_file_gently(config_filename, key, value,
2873 value_regex, multi_replace))
2874 return;
2875 if (value)
2876 die(_("could not set '%s' to '%s'"), key, value);
2877 else
2878 die(_("could not unset '%s'"), key);
2881 int git_config_set_multivar_gently(const char *key, const char *value,
2882 const char *value_regex, int multi_replace)
2884 return git_config_set_multivar_in_file_gently(NULL, key, value, value_regex,
2885 multi_replace);
2888 void git_config_set_multivar(const char *key, const char *value,
2889 const char *value_regex, int multi_replace)
2891 git_config_set_multivar_in_file(NULL, key, value, value_regex,
2892 multi_replace);
2895 static int section_name_match (const char *buf, const char *name)
2897 int i = 0, j = 0, dot = 0;
2898 if (buf[i] != '[')
2899 return 0;
2900 for (i = 1; buf[i] && buf[i] != ']'; i++) {
2901 if (!dot && isspace(buf[i])) {
2902 dot = 1;
2903 if (name[j++] != '.')
2904 break;
2905 for (i++; isspace(buf[i]); i++)
2906 ; /* do nothing */
2907 if (buf[i] != '"')
2908 break;
2909 continue;
2911 if (buf[i] == '\\' && dot)
2912 i++;
2913 else if (buf[i] == '"' && dot) {
2914 for (i++; isspace(buf[i]); i++)
2915 ; /* do_nothing */
2916 break;
2918 if (buf[i] != name[j++])
2919 break;
2921 if (buf[i] == ']' && name[j] == 0) {
2923 * We match, now just find the right length offset by
2924 * gobbling up any whitespace after it, as well
2926 i++;
2927 for (; buf[i] && isspace(buf[i]); i++)
2928 ; /* do nothing */
2929 return i;
2931 return 0;
2934 static int section_name_is_ok(const char *name)
2936 /* Empty section names are bogus. */
2937 if (!*name)
2938 return 0;
2941 * Before a dot, we must be alphanumeric or dash. After the first dot,
2942 * anything goes, so we can stop checking.
2944 for (; *name && *name != '.'; name++)
2945 if (*name != '-' && !isalnum(*name))
2946 return 0;
2947 return 1;
2950 /* if new_name == NULL, the section is removed instead */
2951 static int git_config_copy_or_rename_section_in_file(const char *config_filename,
2952 const char *old_name,
2953 const char *new_name, int copy)
2955 int ret = 0, remove = 0;
2956 char *filename_buf = NULL;
2957 struct lock_file lock = LOCK_INIT;
2958 int out_fd;
2959 char buf[1024];
2960 FILE *config_file = NULL;
2961 struct stat st;
2962 struct strbuf copystr = STRBUF_INIT;
2963 struct config_store_data store;
2965 memset(&store, 0, sizeof(store));
2967 if (new_name && !section_name_is_ok(new_name)) {
2968 ret = error("invalid section name: %s", new_name);
2969 goto out_no_rollback;
2972 if (!config_filename)
2973 config_filename = filename_buf = git_pathdup("config");
2975 out_fd = hold_lock_file_for_update(&lock, config_filename, 0);
2976 if (out_fd < 0) {
2977 ret = error("could not lock config file %s", config_filename);
2978 goto out;
2981 if (!(config_file = fopen(config_filename, "rb"))) {
2982 ret = warn_on_fopen_errors(config_filename);
2983 if (ret)
2984 goto out;
2985 /* no config file means nothing to rename, no error */
2986 goto commit_and_out;
2989 if (fstat(fileno(config_file), &st) == -1) {
2990 ret = error_errno(_("fstat on %s failed"), config_filename);
2991 goto out;
2994 if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
2995 ret = error_errno("chmod on %s failed",
2996 get_lock_file_path(&lock));
2997 goto out;
3000 while (fgets(buf, sizeof(buf), config_file)) {
3001 int i;
3002 int length;
3003 int is_section = 0;
3004 char *output = buf;
3005 for (i = 0; buf[i] && isspace(buf[i]); i++)
3006 ; /* do nothing */
3007 if (buf[i] == '[') {
3008 /* it's a section */
3009 int offset;
3010 is_section = 1;
3013 * When encountering a new section under -c we
3014 * need to flush out any section we're already
3015 * coping and begin anew. There might be
3016 * multiple [branch "$name"] sections.
3018 if (copystr.len > 0) {
3019 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
3020 ret = write_error(get_lock_file_path(&lock));
3021 goto out;
3023 strbuf_reset(&copystr);
3026 offset = section_name_match(&buf[i], old_name);
3027 if (offset > 0) {
3028 ret++;
3029 if (new_name == NULL) {
3030 remove = 1;
3031 continue;
3033 store.baselen = strlen(new_name);
3034 if (!copy) {
3035 if (write_section(out_fd, new_name, &store) < 0) {
3036 ret = write_error(get_lock_file_path(&lock));
3037 goto out;
3040 * We wrote out the new section, with
3041 * a newline, now skip the old
3042 * section's length
3044 output += offset + i;
3045 if (strlen(output) > 0) {
3047 * More content means there's
3048 * a declaration to put on the
3049 * next line; indent with a
3050 * tab
3052 output -= 1;
3053 output[0] = '\t';
3055 } else {
3056 copystr = store_create_section(new_name, &store);
3059 remove = 0;
3061 if (remove)
3062 continue;
3063 length = strlen(output);
3065 if (!is_section && copystr.len > 0) {
3066 strbuf_add(&copystr, output, length);
3069 if (write_in_full(out_fd, output, length) < 0) {
3070 ret = write_error(get_lock_file_path(&lock));
3071 goto out;
3076 * Copy a trailing section at the end of the config, won't be
3077 * flushed by the usual "flush because we have a new section
3078 * logic in the loop above.
3080 if (copystr.len > 0) {
3081 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
3082 ret = write_error(get_lock_file_path(&lock));
3083 goto out;
3085 strbuf_reset(&copystr);
3088 fclose(config_file);
3089 config_file = NULL;
3090 commit_and_out:
3091 if (commit_lock_file(&lock) < 0)
3092 ret = error_errno("could not write config file %s",
3093 config_filename);
3094 out:
3095 if (config_file)
3096 fclose(config_file);
3097 rollback_lock_file(&lock);
3098 out_no_rollback:
3099 free(filename_buf);
3100 return ret;
3103 int git_config_rename_section_in_file(const char *config_filename,
3104 const char *old_name, const char *new_name)
3106 return git_config_copy_or_rename_section_in_file(config_filename,
3107 old_name, new_name, 0);
3110 int git_config_rename_section(const char *old_name, const char *new_name)
3112 return git_config_rename_section_in_file(NULL, old_name, new_name);
3115 int git_config_copy_section_in_file(const char *config_filename,
3116 const char *old_name, const char *new_name)
3118 return git_config_copy_or_rename_section_in_file(config_filename,
3119 old_name, new_name, 1);
3122 int git_config_copy_section(const char *old_name, const char *new_name)
3124 return git_config_copy_section_in_file(NULL, old_name, new_name);
3128 * Call this to report error for your variable that should not
3129 * get a boolean value (i.e. "[my] var" means "true").
3131 #undef config_error_nonbool
3132 int config_error_nonbool(const char *var)
3134 return error("missing value for '%s'", var);
3137 int parse_config_key(const char *var,
3138 const char *section,
3139 const char **subsection, int *subsection_len,
3140 const char **key)
3142 const char *dot;
3144 /* Does it start with "section." ? */
3145 if (!skip_prefix(var, section, &var) || *var != '.')
3146 return -1;
3149 * Find the key; we don't know yet if we have a subsection, but we must
3150 * parse backwards from the end, since the subsection may have dots in
3151 * it, too.
3153 dot = strrchr(var, '.');
3154 *key = dot + 1;
3156 /* Did we have a subsection at all? */
3157 if (dot == var) {
3158 if (subsection) {
3159 *subsection = NULL;
3160 *subsection_len = 0;
3163 else {
3164 if (!subsection)
3165 return -1;
3166 *subsection = var + 1;
3167 *subsection_len = dot - *subsection;
3170 return 0;
3173 const char *current_config_origin_type(void)
3175 int type;
3176 if (current_config_kvi)
3177 type = current_config_kvi->origin_type;
3178 else if(cf)
3179 type = cf->origin_type;
3180 else
3181 die("BUG: current_config_origin_type called outside config callback");
3183 switch (type) {
3184 case CONFIG_ORIGIN_BLOB:
3185 return "blob";
3186 case CONFIG_ORIGIN_FILE:
3187 return "file";
3188 case CONFIG_ORIGIN_STDIN:
3189 return "standard input";
3190 case CONFIG_ORIGIN_SUBMODULE_BLOB:
3191 return "submodule-blob";
3192 case CONFIG_ORIGIN_CMDLINE:
3193 return "command line";
3194 default:
3195 die("BUG: unknown config origin type");
3199 const char *current_config_name(void)
3201 const char *name;
3202 if (current_config_kvi)
3203 name = current_config_kvi->filename;
3204 else if (cf)
3205 name = cf->name;
3206 else
3207 die("BUG: current_config_name called outside config callback");
3208 return name ? name : "";
3211 enum config_scope current_config_scope(void)
3213 if (current_config_kvi)
3214 return current_config_kvi->scope;
3215 else
3216 return current_parsing_scope;