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