]> git.ipfire.org Git - thirdparty/git.git/blob - config.c
Merge branch 'tb/ci-concurrency' into maint-2.39
[thirdparty/git.git] / config.c
1 /*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Johannes Schindelin, 2005
6 *
7 */
8 #include "cache.h"
9 #include "date.h"
10 #include "branch.h"
11 #include "config.h"
12 #include "environment.h"
13 #include "repository.h"
14 #include "lockfile.h"
15 #include "exec-cmd.h"
16 #include "strbuf.h"
17 #include "quote.h"
18 #include "hashmap.h"
19 #include "string-list.h"
20 #include "object-store.h"
21 #include "utf8.h"
22 #include "dir.h"
23 #include "color.h"
24 #include "refs.h"
25 #include "worktree.h"
26
27 struct config_source {
28 struct config_source *prev;
29 union {
30 FILE *file;
31 struct config_buf {
32 const char *buf;
33 size_t len;
34 size_t pos;
35 } buf;
36 } u;
37 enum config_origin_type origin_type;
38 const char *name;
39 const char *path;
40 enum config_error_action default_error_action;
41 int linenr;
42 int eof;
43 size_t total_len;
44 struct strbuf value;
45 struct strbuf var;
46 unsigned subsection_case_sensitive : 1;
47
48 int (*do_fgetc)(struct config_source *c);
49 int (*do_ungetc)(int c, struct config_source *conf);
50 long (*do_ftell)(struct config_source *c);
51 };
52
53 /*
54 * These variables record the "current" config source, which
55 * can be accessed by parsing callbacks.
56 *
57 * The "cf" variable will be non-NULL only when we are actually parsing a real
58 * config source (file, blob, cmdline, etc).
59 *
60 * The "current_config_kvi" variable will be non-NULL only when we are feeding
61 * cached config from a configset into a callback.
62 *
63 * They should generally never be non-NULL at the same time. If they are both
64 * NULL, then we aren't parsing anything (and depending on the function looking
65 * at the variables, it's either a bug for it to be called in the first place,
66 * or it's a function which can be reused for non-config purposes, and should
67 * fall back to some sane behavior).
68 */
69 static struct config_source *cf;
70 static struct key_value_info *current_config_kvi;
71
72 /*
73 * Similar to the variables above, this gives access to the "scope" of the
74 * current value (repo, global, etc). For cached values, it can be found via
75 * the current_config_kvi as above. During parsing, the current value can be
76 * found in this variable. It's not part of "cf" because it transcends a single
77 * file (i.e., a file included from .git/config is still in "repo" scope).
78 */
79 static enum config_scope current_parsing_scope;
80
81 static int pack_compression_seen;
82 static int zlib_compression_seen;
83
84 /*
85 * Config that comes from trusted scopes, namely:
86 * - CONFIG_SCOPE_SYSTEM (e.g. /etc/gitconfig)
87 * - CONFIG_SCOPE_GLOBAL (e.g. $HOME/.gitconfig, $XDG_CONFIG_HOME/git)
88 * - CONFIG_SCOPE_COMMAND (e.g. "-c" option, environment variables)
89 *
90 * This is declared here for code cleanliness, but unlike the other
91 * static variables, this does not hold config parser state.
92 */
93 static struct config_set protected_config;
94
95 static int config_file_fgetc(struct config_source *conf)
96 {
97 return getc_unlocked(conf->u.file);
98 }
99
100 static int config_file_ungetc(int c, struct config_source *conf)
101 {
102 return ungetc(c, conf->u.file);
103 }
104
105 static long config_file_ftell(struct config_source *conf)
106 {
107 return ftell(conf->u.file);
108 }
109
110
111 static int config_buf_fgetc(struct config_source *conf)
112 {
113 if (conf->u.buf.pos < conf->u.buf.len)
114 return conf->u.buf.buf[conf->u.buf.pos++];
115
116 return EOF;
117 }
118
119 static int config_buf_ungetc(int c, struct config_source *conf)
120 {
121 if (conf->u.buf.pos > 0) {
122 conf->u.buf.pos--;
123 if (conf->u.buf.buf[conf->u.buf.pos] != c)
124 BUG("config_buf can only ungetc the same character");
125 return c;
126 }
127
128 return EOF;
129 }
130
131 static long config_buf_ftell(struct config_source *conf)
132 {
133 return conf->u.buf.pos;
134 }
135
136 struct config_include_data {
137 int depth;
138 config_fn_t fn;
139 void *data;
140 const struct config_options *opts;
141 struct git_config_source *config_source;
142
143 /*
144 * All remote URLs discovered when reading all config files.
145 */
146 struct string_list *remote_urls;
147 };
148 #define CONFIG_INCLUDE_INIT { 0 }
149
150 static int git_config_include(const char *var, const char *value, void *data);
151
152 #define MAX_INCLUDE_DEPTH 10
153 static const char include_depth_advice[] = N_(
154 "exceeded maximum include depth (%d) while including\n"
155 " %s\n"
156 "from\n"
157 " %s\n"
158 "This might be due to circular includes.");
159 static int handle_path_include(const char *path, struct config_include_data *inc)
160 {
161 int ret = 0;
162 struct strbuf buf = STRBUF_INIT;
163 char *expanded;
164
165 if (!path)
166 return config_error_nonbool("include.path");
167
168 expanded = interpolate_path(path, 0);
169 if (!expanded)
170 return error(_("could not expand include path '%s'"), path);
171 path = expanded;
172
173 /*
174 * Use an absolute path as-is, but interpret relative paths
175 * based on the including config file.
176 */
177 if (!is_absolute_path(path)) {
178 char *slash;
179
180 if (!cf || !cf->path) {
181 ret = error(_("relative config includes must come from files"));
182 goto cleanup;
183 }
184
185 slash = find_last_dir_sep(cf->path);
186 if (slash)
187 strbuf_add(&buf, cf->path, slash - cf->path + 1);
188 strbuf_addstr(&buf, path);
189 path = buf.buf;
190 }
191
192 if (!access_or_die(path, R_OK, 0)) {
193 if (++inc->depth > MAX_INCLUDE_DEPTH)
194 die(_(include_depth_advice), MAX_INCLUDE_DEPTH, path,
195 !cf ? "<unknown>" :
196 cf->name ? cf->name :
197 "the command line");
198 ret = git_config_from_file(git_config_include, path, inc);
199 inc->depth--;
200 }
201 cleanup:
202 strbuf_release(&buf);
203 free(expanded);
204 return ret;
205 }
206
207 static void add_trailing_starstar_for_dir(struct strbuf *pat)
208 {
209 if (pat->len && is_dir_sep(pat->buf[pat->len - 1]))
210 strbuf_addstr(pat, "**");
211 }
212
213 static int prepare_include_condition_pattern(struct strbuf *pat)
214 {
215 struct strbuf path = STRBUF_INIT;
216 char *expanded;
217 int prefix = 0;
218
219 expanded = interpolate_path(pat->buf, 1);
220 if (expanded) {
221 strbuf_reset(pat);
222 strbuf_addstr(pat, expanded);
223 free(expanded);
224 }
225
226 if (pat->buf[0] == '.' && is_dir_sep(pat->buf[1])) {
227 const char *slash;
228
229 if (!cf || !cf->path)
230 return error(_("relative config include "
231 "conditionals must come from files"));
232
233 strbuf_realpath(&path, cf->path, 1);
234 slash = find_last_dir_sep(path.buf);
235 if (!slash)
236 BUG("how is this possible?");
237 strbuf_splice(pat, 0, 1, path.buf, slash - path.buf);
238 prefix = slash - path.buf + 1 /* slash */;
239 } else if (!is_absolute_path(pat->buf))
240 strbuf_insertstr(pat, 0, "**/");
241
242 add_trailing_starstar_for_dir(pat);
243
244 strbuf_release(&path);
245 return prefix;
246 }
247
248 static int include_by_gitdir(const struct config_options *opts,
249 const char *cond, size_t cond_len, int icase)
250 {
251 struct strbuf text = STRBUF_INIT;
252 struct strbuf pattern = STRBUF_INIT;
253 int ret = 0, prefix;
254 const char *git_dir;
255 int already_tried_absolute = 0;
256
257 if (opts->git_dir)
258 git_dir = opts->git_dir;
259 else
260 goto done;
261
262 strbuf_realpath(&text, git_dir, 1);
263 strbuf_add(&pattern, cond, cond_len);
264 prefix = prepare_include_condition_pattern(&pattern);
265
266 again:
267 if (prefix < 0)
268 goto done;
269
270 if (prefix > 0) {
271 /*
272 * perform literal matching on the prefix part so that
273 * any wildcard character in it can't create side effects.
274 */
275 if (text.len < prefix)
276 goto done;
277 if (!icase && strncmp(pattern.buf, text.buf, prefix))
278 goto done;
279 if (icase && strncasecmp(pattern.buf, text.buf, prefix))
280 goto done;
281 }
282
283 ret = !wildmatch(pattern.buf + prefix, text.buf + prefix,
284 WM_PATHNAME | (icase ? WM_CASEFOLD : 0));
285
286 if (!ret && !already_tried_absolute) {
287 /*
288 * We've tried e.g. matching gitdir:~/work, but if
289 * ~/work is a symlink to /mnt/storage/work
290 * strbuf_realpath() will expand it, so the rule won't
291 * match. Let's match against a
292 * strbuf_add_absolute_path() version of the path,
293 * which'll do the right thing
294 */
295 strbuf_reset(&text);
296 strbuf_add_absolute_path(&text, git_dir);
297 already_tried_absolute = 1;
298 goto again;
299 }
300 done:
301 strbuf_release(&pattern);
302 strbuf_release(&text);
303 return ret;
304 }
305
306 static int include_by_branch(const char *cond, size_t cond_len)
307 {
308 int flags;
309 int ret;
310 struct strbuf pattern = STRBUF_INIT;
311 const char *refname = !the_repository->gitdir ?
312 NULL : resolve_ref_unsafe("HEAD", 0, NULL, &flags);
313 const char *shortname;
314
315 if (!refname || !(flags & REF_ISSYMREF) ||
316 !skip_prefix(refname, "refs/heads/", &shortname))
317 return 0;
318
319 strbuf_add(&pattern, cond, cond_len);
320 add_trailing_starstar_for_dir(&pattern);
321 ret = !wildmatch(pattern.buf, shortname, WM_PATHNAME);
322 strbuf_release(&pattern);
323 return ret;
324 }
325
326 static int add_remote_url(const char *var, const char *value, void *data)
327 {
328 struct string_list *remote_urls = data;
329 const char *remote_name;
330 size_t remote_name_len;
331 const char *key;
332
333 if (!parse_config_key(var, "remote", &remote_name, &remote_name_len,
334 &key) &&
335 remote_name &&
336 !strcmp(key, "url"))
337 string_list_append(remote_urls, value);
338 return 0;
339 }
340
341 static void populate_remote_urls(struct config_include_data *inc)
342 {
343 struct config_options opts;
344
345 struct config_source *store_cf = cf;
346 struct key_value_info *store_kvi = current_config_kvi;
347 enum config_scope store_scope = current_parsing_scope;
348
349 opts = *inc->opts;
350 opts.unconditional_remote_url = 1;
351
352 cf = NULL;
353 current_config_kvi = NULL;
354 current_parsing_scope = 0;
355
356 inc->remote_urls = xmalloc(sizeof(*inc->remote_urls));
357 string_list_init_dup(inc->remote_urls);
358 config_with_options(add_remote_url, inc->remote_urls, inc->config_source, &opts);
359
360 cf = store_cf;
361 current_config_kvi = store_kvi;
362 current_parsing_scope = store_scope;
363 }
364
365 static int forbid_remote_url(const char *var, const char *value UNUSED,
366 void *data UNUSED)
367 {
368 const char *remote_name;
369 size_t remote_name_len;
370 const char *key;
371
372 if (!parse_config_key(var, "remote", &remote_name, &remote_name_len,
373 &key) &&
374 remote_name &&
375 !strcmp(key, "url"))
376 die(_("remote URLs cannot be configured in file directly or indirectly included by includeIf.hasconfig:remote.*.url"));
377 return 0;
378 }
379
380 static int at_least_one_url_matches_glob(const char *glob, int glob_len,
381 struct string_list *remote_urls)
382 {
383 struct strbuf pattern = STRBUF_INIT;
384 struct string_list_item *url_item;
385 int found = 0;
386
387 strbuf_add(&pattern, glob, glob_len);
388 for_each_string_list_item(url_item, remote_urls) {
389 if (!wildmatch(pattern.buf, url_item->string, WM_PATHNAME)) {
390 found = 1;
391 break;
392 }
393 }
394 strbuf_release(&pattern);
395 return found;
396 }
397
398 static int include_by_remote_url(struct config_include_data *inc,
399 const char *cond, size_t cond_len)
400 {
401 if (inc->opts->unconditional_remote_url)
402 return 1;
403 if (!inc->remote_urls)
404 populate_remote_urls(inc);
405 return at_least_one_url_matches_glob(cond, cond_len,
406 inc->remote_urls);
407 }
408
409 static int include_condition_is_true(struct config_include_data *inc,
410 const char *cond, size_t cond_len)
411 {
412 const struct config_options *opts = inc->opts;
413
414 if (skip_prefix_mem(cond, cond_len, "gitdir:", &cond, &cond_len))
415 return include_by_gitdir(opts, cond, cond_len, 0);
416 else if (skip_prefix_mem(cond, cond_len, "gitdir/i:", &cond, &cond_len))
417 return include_by_gitdir(opts, cond, cond_len, 1);
418 else if (skip_prefix_mem(cond, cond_len, "onbranch:", &cond, &cond_len))
419 return include_by_branch(cond, cond_len);
420 else if (skip_prefix_mem(cond, cond_len, "hasconfig:remote.*.url:", &cond,
421 &cond_len))
422 return include_by_remote_url(inc, cond, cond_len);
423
424 /* unknown conditionals are always false */
425 return 0;
426 }
427
428 static int git_config_include(const char *var, const char *value, void *data)
429 {
430 struct config_include_data *inc = data;
431 const char *cond, *key;
432 size_t cond_len;
433 int ret;
434
435 /*
436 * Pass along all values, including "include" directives; this makes it
437 * possible to query information on the includes themselves.
438 */
439 ret = inc->fn(var, value, inc->data);
440 if (ret < 0)
441 return ret;
442
443 if (!strcmp(var, "include.path"))
444 ret = handle_path_include(value, inc);
445
446 if (!parse_config_key(var, "includeif", &cond, &cond_len, &key) &&
447 cond && include_condition_is_true(inc, cond, cond_len) &&
448 !strcmp(key, "path")) {
449 config_fn_t old_fn = inc->fn;
450
451 if (inc->opts->unconditional_remote_url)
452 inc->fn = forbid_remote_url;
453 ret = handle_path_include(value, inc);
454 inc->fn = old_fn;
455 }
456
457 return ret;
458 }
459
460 static void git_config_push_split_parameter(const char *key, const char *value)
461 {
462 struct strbuf env = STRBUF_INIT;
463 const char *old = getenv(CONFIG_DATA_ENVIRONMENT);
464 if (old && *old) {
465 strbuf_addstr(&env, old);
466 strbuf_addch(&env, ' ');
467 }
468 sq_quote_buf(&env, key);
469 strbuf_addch(&env, '=');
470 if (value)
471 sq_quote_buf(&env, value);
472 setenv(CONFIG_DATA_ENVIRONMENT, env.buf, 1);
473 strbuf_release(&env);
474 }
475
476 void git_config_push_parameter(const char *text)
477 {
478 const char *value;
479
480 /*
481 * When we see:
482 *
483 * section.subsection=with=equals.key=value
484 *
485 * we cannot tell if it means:
486 *
487 * [section "subsection=with=equals"]
488 * key = value
489 *
490 * or:
491 *
492 * [section]
493 * subsection = with=equals.key=value
494 *
495 * We parse left-to-right for the first "=", meaning we'll prefer to
496 * keep the value intact over the subsection. This is historical, but
497 * also sensible since values are more likely to contain odd or
498 * untrusted input than a section name.
499 *
500 * A missing equals is explicitly allowed (as a bool-only entry).
501 */
502 value = strchr(text, '=');
503 if (value) {
504 char *key = xmemdupz(text, value - text);
505 git_config_push_split_parameter(key, value + 1);
506 free(key);
507 } else {
508 git_config_push_split_parameter(text, NULL);
509 }
510 }
511
512 void git_config_push_env(const char *spec)
513 {
514 char *key;
515 const char *env_name;
516 const char *env_value;
517
518 env_name = strrchr(spec, '=');
519 if (!env_name)
520 die(_("invalid config format: %s"), spec);
521 key = xmemdupz(spec, env_name - spec);
522 env_name++;
523 if (!*env_name)
524 die(_("missing environment variable name for configuration '%.*s'"),
525 (int)(env_name - spec - 1), spec);
526
527 env_value = getenv(env_name);
528 if (!env_value)
529 die(_("missing environment variable '%s' for configuration '%.*s'"),
530 env_name, (int)(env_name - spec - 1), spec);
531
532 git_config_push_split_parameter(key, env_value);
533 free(key);
534 }
535
536 static inline int iskeychar(int c)
537 {
538 return isalnum(c) || c == '-';
539 }
540
541 /*
542 * Auxiliary function to sanity-check and split the key into the section
543 * identifier and variable name.
544 *
545 * Returns 0 on success, -1 when there is an invalid character in the key and
546 * -2 if there is no section name in the key.
547 *
548 * store_key - pointer to char* which will hold a copy of the key with
549 * lowercase section and variable name
550 * baselen - pointer to size_t which will hold the length of the
551 * section + subsection part, can be NULL
552 */
553 int git_config_parse_key(const char *key, char **store_key, size_t *baselen_)
554 {
555 size_t i, baselen;
556 int dot;
557 const char *last_dot = strrchr(key, '.');
558
559 /*
560 * Since "key" actually contains the section name and the real
561 * key name separated by a dot, we have to know where the dot is.
562 */
563
564 if (last_dot == NULL || last_dot == key) {
565 error(_("key does not contain a section: %s"), key);
566 return -CONFIG_NO_SECTION_OR_NAME;
567 }
568
569 if (!last_dot[1]) {
570 error(_("key does not contain variable name: %s"), key);
571 return -CONFIG_NO_SECTION_OR_NAME;
572 }
573
574 baselen = last_dot - key;
575 if (baselen_)
576 *baselen_ = baselen;
577
578 /*
579 * Validate the key and while at it, lower case it for matching.
580 */
581 *store_key = xmallocz(strlen(key));
582
583 dot = 0;
584 for (i = 0; key[i]; i++) {
585 unsigned char c = key[i];
586 if (c == '.')
587 dot = 1;
588 /* Leave the extended basename untouched.. */
589 if (!dot || i > baselen) {
590 if (!iskeychar(c) ||
591 (i == baselen + 1 && !isalpha(c))) {
592 error(_("invalid key: %s"), key);
593 goto out_free_ret_1;
594 }
595 c = tolower(c);
596 } else if (c == '\n') {
597 error(_("invalid key (newline): %s"), key);
598 goto out_free_ret_1;
599 }
600 (*store_key)[i] = c;
601 }
602
603 return 0;
604
605 out_free_ret_1:
606 FREE_AND_NULL(*store_key);
607 return -CONFIG_INVALID_KEY;
608 }
609
610 static int config_parse_pair(const char *key, const char *value,
611 config_fn_t fn, void *data)
612 {
613 char *canonical_name;
614 int ret;
615
616 if (!strlen(key))
617 return error(_("empty config key"));
618 if (git_config_parse_key(key, &canonical_name, NULL))
619 return -1;
620
621 ret = (fn(canonical_name, value, data) < 0) ? -1 : 0;
622 free(canonical_name);
623 return ret;
624 }
625
626 int git_config_parse_parameter(const char *text,
627 config_fn_t fn, void *data)
628 {
629 const char *value;
630 struct strbuf **pair;
631 int ret;
632
633 pair = strbuf_split_str(text, '=', 2);
634 if (!pair[0])
635 return error(_("bogus config parameter: %s"), text);
636
637 if (pair[0]->len && pair[0]->buf[pair[0]->len - 1] == '=') {
638 strbuf_setlen(pair[0], pair[0]->len - 1);
639 value = pair[1] ? pair[1]->buf : "";
640 } else {
641 value = NULL;
642 }
643
644 strbuf_trim(pair[0]);
645 if (!pair[0]->len) {
646 strbuf_list_free(pair);
647 return error(_("bogus config parameter: %s"), text);
648 }
649
650 ret = config_parse_pair(pair[0]->buf, value, fn, data);
651 strbuf_list_free(pair);
652 return ret;
653 }
654
655 static int parse_config_env_list(char *env, config_fn_t fn, void *data)
656 {
657 char *cur = env;
658 while (cur && *cur) {
659 const char *key = sq_dequote_step(cur, &cur);
660 if (!key)
661 return error(_("bogus format in %s"),
662 CONFIG_DATA_ENVIRONMENT);
663
664 if (!cur || isspace(*cur)) {
665 /* old-style 'key=value' */
666 if (git_config_parse_parameter(key, fn, data) < 0)
667 return -1;
668 }
669 else if (*cur == '=') {
670 /* new-style 'key'='value' */
671 const char *value;
672
673 cur++;
674 if (*cur == '\'') {
675 /* quoted value */
676 value = sq_dequote_step(cur, &cur);
677 if (!value || (cur && !isspace(*cur))) {
678 return error(_("bogus format in %s"),
679 CONFIG_DATA_ENVIRONMENT);
680 }
681 } else if (!*cur || isspace(*cur)) {
682 /* implicit bool: 'key'= */
683 value = NULL;
684 } else {
685 return error(_("bogus format in %s"),
686 CONFIG_DATA_ENVIRONMENT);
687 }
688
689 if (config_parse_pair(key, value, fn, data) < 0)
690 return -1;
691 }
692 else {
693 /* unknown format */
694 return error(_("bogus format in %s"),
695 CONFIG_DATA_ENVIRONMENT);
696 }
697
698 if (cur) {
699 while (isspace(*cur))
700 cur++;
701 }
702 }
703 return 0;
704 }
705
706 int git_config_from_parameters(config_fn_t fn, void *data)
707 {
708 const char *env;
709 struct strbuf envvar = STRBUF_INIT;
710 struct strvec to_free = STRVEC_INIT;
711 int ret = 0;
712 char *envw = NULL;
713 struct config_source source;
714
715 memset(&source, 0, sizeof(source));
716 source.prev = cf;
717 source.origin_type = CONFIG_ORIGIN_CMDLINE;
718 cf = &source;
719
720 env = getenv(CONFIG_COUNT_ENVIRONMENT);
721 if (env) {
722 unsigned long count;
723 char *endp;
724 int i;
725
726 count = strtoul(env, &endp, 10);
727 if (*endp) {
728 ret = error(_("bogus count in %s"), CONFIG_COUNT_ENVIRONMENT);
729 goto out;
730 }
731 if (count > INT_MAX) {
732 ret = error(_("too many entries in %s"), CONFIG_COUNT_ENVIRONMENT);
733 goto out;
734 }
735
736 for (i = 0; i < count; i++) {
737 const char *key, *value;
738
739 strbuf_addf(&envvar, "GIT_CONFIG_KEY_%d", i);
740 key = getenv_safe(&to_free, envvar.buf);
741 if (!key) {
742 ret = error(_("missing config key %s"), envvar.buf);
743 goto out;
744 }
745 strbuf_reset(&envvar);
746
747 strbuf_addf(&envvar, "GIT_CONFIG_VALUE_%d", i);
748 value = getenv_safe(&to_free, envvar.buf);
749 if (!value) {
750 ret = error(_("missing config value %s"), envvar.buf);
751 goto out;
752 }
753 strbuf_reset(&envvar);
754
755 if (config_parse_pair(key, value, fn, data) < 0) {
756 ret = -1;
757 goto out;
758 }
759 }
760 }
761
762 env = getenv(CONFIG_DATA_ENVIRONMENT);
763 if (env) {
764 /* sq_dequote will write over it */
765 envw = xstrdup(env);
766 if (parse_config_env_list(envw, fn, data) < 0) {
767 ret = -1;
768 goto out;
769 }
770 }
771
772 out:
773 strbuf_release(&envvar);
774 strvec_clear(&to_free);
775 free(envw);
776 cf = source.prev;
777 return ret;
778 }
779
780 static int get_next_char(void)
781 {
782 int c = cf->do_fgetc(cf);
783
784 if (c == '\r') {
785 /* DOS like systems */
786 c = cf->do_fgetc(cf);
787 if (c != '\n') {
788 if (c != EOF)
789 cf->do_ungetc(c, cf);
790 c = '\r';
791 }
792 }
793
794 if (c != EOF && ++cf->total_len > INT_MAX) {
795 /*
796 * This is an absurdly long config file; refuse to parse
797 * further in order to protect downstream code from integer
798 * overflows. Note that we can't return an error specifically,
799 * but we can mark EOF and put trash in the return value,
800 * which will trigger a parse error.
801 */
802 cf->eof = 1;
803 return 0;
804 }
805
806 if (c == '\n')
807 cf->linenr++;
808 if (c == EOF) {
809 cf->eof = 1;
810 cf->linenr++;
811 c = '\n';
812 }
813 return c;
814 }
815
816 static char *parse_value(void)
817 {
818 int quote = 0, comment = 0, space = 0;
819
820 strbuf_reset(&cf->value);
821 for (;;) {
822 int c = get_next_char();
823 if (c == '\n') {
824 if (quote) {
825 cf->linenr--;
826 return NULL;
827 }
828 return cf->value.buf;
829 }
830 if (comment)
831 continue;
832 if (isspace(c) && !quote) {
833 if (cf->value.len)
834 space++;
835 continue;
836 }
837 if (!quote) {
838 if (c == ';' || c == '#') {
839 comment = 1;
840 continue;
841 }
842 }
843 for (; space; space--)
844 strbuf_addch(&cf->value, ' ');
845 if (c == '\\') {
846 c = get_next_char();
847 switch (c) {
848 case '\n':
849 continue;
850 case 't':
851 c = '\t';
852 break;
853 case 'b':
854 c = '\b';
855 break;
856 case 'n':
857 c = '\n';
858 break;
859 /* Some characters escape as themselves */
860 case '\\': case '"':
861 break;
862 /* Reject unknown escape sequences */
863 default:
864 return NULL;
865 }
866 strbuf_addch(&cf->value, c);
867 continue;
868 }
869 if (c == '"') {
870 quote = 1-quote;
871 continue;
872 }
873 strbuf_addch(&cf->value, c);
874 }
875 }
876
877 static int get_value(config_fn_t fn, void *data, struct strbuf *name)
878 {
879 int c;
880 char *value;
881 int ret;
882
883 /* Get the full name */
884 for (;;) {
885 c = get_next_char();
886 if (cf->eof)
887 break;
888 if (!iskeychar(c))
889 break;
890 strbuf_addch(name, tolower(c));
891 }
892
893 while (c == ' ' || c == '\t')
894 c = get_next_char();
895
896 value = NULL;
897 if (c != '\n') {
898 if (c != '=')
899 return -1;
900 value = parse_value();
901 if (!value)
902 return -1;
903 }
904 /*
905 * We already consumed the \n, but we need linenr to point to
906 * the line we just parsed during the call to fn to get
907 * accurate line number in error messages.
908 */
909 cf->linenr--;
910 ret = fn(name->buf, value, data);
911 if (ret >= 0)
912 cf->linenr++;
913 return ret;
914 }
915
916 static int get_extended_base_var(struct strbuf *name, int c)
917 {
918 cf->subsection_case_sensitive = 0;
919 do {
920 if (c == '\n')
921 goto error_incomplete_line;
922 c = get_next_char();
923 } while (isspace(c));
924
925 /* We require the format to be '[base "extension"]' */
926 if (c != '"')
927 return -1;
928 strbuf_addch(name, '.');
929
930 for (;;) {
931 int c = get_next_char();
932 if (c == '\n')
933 goto error_incomplete_line;
934 if (c == '"')
935 break;
936 if (c == '\\') {
937 c = get_next_char();
938 if (c == '\n')
939 goto error_incomplete_line;
940 }
941 strbuf_addch(name, c);
942 }
943
944 /* Final ']' */
945 if (get_next_char() != ']')
946 return -1;
947 return 0;
948 error_incomplete_line:
949 cf->linenr--;
950 return -1;
951 }
952
953 static int get_base_var(struct strbuf *name)
954 {
955 cf->subsection_case_sensitive = 1;
956 for (;;) {
957 int c = get_next_char();
958 if (cf->eof)
959 return -1;
960 if (c == ']')
961 return 0;
962 if (isspace(c))
963 return get_extended_base_var(name, c);
964 if (!iskeychar(c) && c != '.')
965 return -1;
966 strbuf_addch(name, tolower(c));
967 }
968 }
969
970 struct parse_event_data {
971 enum config_event_t previous_type;
972 size_t previous_offset;
973 const struct config_options *opts;
974 };
975
976 static int do_event(enum config_event_t type, struct parse_event_data *data)
977 {
978 size_t offset;
979
980 if (!data->opts || !data->opts->event_fn)
981 return 0;
982
983 if (type == CONFIG_EVENT_WHITESPACE &&
984 data->previous_type == type)
985 return 0;
986
987 offset = cf->do_ftell(cf);
988 /*
989 * At EOF, the parser always "inserts" an extra '\n', therefore
990 * the end offset of the event is the current file position, otherwise
991 * we will already have advanced to the next event.
992 */
993 if (type != CONFIG_EVENT_EOF)
994 offset--;
995
996 if (data->previous_type != CONFIG_EVENT_EOF &&
997 data->opts->event_fn(data->previous_type, data->previous_offset,
998 offset, data->opts->event_fn_data) < 0)
999 return -1;
1000
1001 data->previous_type = type;
1002 data->previous_offset = offset;
1003
1004 return 0;
1005 }
1006
1007 static int git_parse_source(config_fn_t fn, void *data,
1008 const struct config_options *opts)
1009 {
1010 int comment = 0;
1011 size_t baselen = 0;
1012 struct strbuf *var = &cf->var;
1013 int error_return = 0;
1014 char *error_msg = NULL;
1015
1016 /* U+FEFF Byte Order Mark in UTF8 */
1017 const char *bomptr = utf8_bom;
1018
1019 /* For the parser event callback */
1020 struct parse_event_data event_data = {
1021 CONFIG_EVENT_EOF, 0, opts
1022 };
1023
1024 for (;;) {
1025 int c;
1026
1027 c = get_next_char();
1028 if (bomptr && *bomptr) {
1029 /* We are at the file beginning; skip UTF8-encoded BOM
1030 * if present. Sane editors won't put this in on their
1031 * own, but e.g. Windows Notepad will do it happily. */
1032 if (c == (*bomptr & 0377)) {
1033 bomptr++;
1034 continue;
1035 } else {
1036 /* Do not tolerate partial BOM. */
1037 if (bomptr != utf8_bom)
1038 break;
1039 /* No BOM at file beginning. Cool. */
1040 bomptr = NULL;
1041 }
1042 }
1043 if (c == '\n') {
1044 if (cf->eof) {
1045 if (do_event(CONFIG_EVENT_EOF, &event_data) < 0)
1046 return -1;
1047 return 0;
1048 }
1049 if (do_event(CONFIG_EVENT_WHITESPACE, &event_data) < 0)
1050 return -1;
1051 comment = 0;
1052 continue;
1053 }
1054 if (comment)
1055 continue;
1056 if (isspace(c)) {
1057 if (do_event(CONFIG_EVENT_WHITESPACE, &event_data) < 0)
1058 return -1;
1059 continue;
1060 }
1061 if (c == '#' || c == ';') {
1062 if (do_event(CONFIG_EVENT_COMMENT, &event_data) < 0)
1063 return -1;
1064 comment = 1;
1065 continue;
1066 }
1067 if (c == '[') {
1068 if (do_event(CONFIG_EVENT_SECTION, &event_data) < 0)
1069 return -1;
1070
1071 /* Reset prior to determining a new stem */
1072 strbuf_reset(var);
1073 if (get_base_var(var) < 0 || var->len < 1)
1074 break;
1075 strbuf_addch(var, '.');
1076 baselen = var->len;
1077 continue;
1078 }
1079 if (!isalpha(c))
1080 break;
1081
1082 if (do_event(CONFIG_EVENT_ENTRY, &event_data) < 0)
1083 return -1;
1084
1085 /*
1086 * Truncate the var name back to the section header
1087 * stem prior to grabbing the suffix part of the name
1088 * and the value.
1089 */
1090 strbuf_setlen(var, baselen);
1091 strbuf_addch(var, tolower(c));
1092 if (get_value(fn, data, var) < 0)
1093 break;
1094 }
1095
1096 if (do_event(CONFIG_EVENT_ERROR, &event_data) < 0)
1097 return -1;
1098
1099 switch (cf->origin_type) {
1100 case CONFIG_ORIGIN_BLOB:
1101 error_msg = xstrfmt(_("bad config line %d in blob %s"),
1102 cf->linenr, cf->name);
1103 break;
1104 case CONFIG_ORIGIN_FILE:
1105 error_msg = xstrfmt(_("bad config line %d in file %s"),
1106 cf->linenr, cf->name);
1107 break;
1108 case CONFIG_ORIGIN_STDIN:
1109 error_msg = xstrfmt(_("bad config line %d in standard input"),
1110 cf->linenr);
1111 break;
1112 case CONFIG_ORIGIN_SUBMODULE_BLOB:
1113 error_msg = xstrfmt(_("bad config line %d in submodule-blob %s"),
1114 cf->linenr, cf->name);
1115 break;
1116 case CONFIG_ORIGIN_CMDLINE:
1117 error_msg = xstrfmt(_("bad config line %d in command line %s"),
1118 cf->linenr, cf->name);
1119 break;
1120 default:
1121 error_msg = xstrfmt(_("bad config line %d in %s"),
1122 cf->linenr, cf->name);
1123 }
1124
1125 switch (opts && opts->error_action ?
1126 opts->error_action :
1127 cf->default_error_action) {
1128 case CONFIG_ERROR_DIE:
1129 die("%s", error_msg);
1130 break;
1131 case CONFIG_ERROR_ERROR:
1132 error_return = error("%s", error_msg);
1133 break;
1134 case CONFIG_ERROR_SILENT:
1135 error_return = -1;
1136 break;
1137 case CONFIG_ERROR_UNSET:
1138 BUG("config error action unset");
1139 }
1140
1141 free(error_msg);
1142 return error_return;
1143 }
1144
1145 static uintmax_t get_unit_factor(const char *end)
1146 {
1147 if (!*end)
1148 return 1;
1149 else if (!strcasecmp(end, "k"))
1150 return 1024;
1151 else if (!strcasecmp(end, "m"))
1152 return 1024 * 1024;
1153 else if (!strcasecmp(end, "g"))
1154 return 1024 * 1024 * 1024;
1155 return 0;
1156 }
1157
1158 static int git_parse_signed(const char *value, intmax_t *ret, intmax_t max)
1159 {
1160 if (value && *value) {
1161 char *end;
1162 intmax_t val;
1163 intmax_t factor;
1164
1165 if (max < 0)
1166 BUG("max must be a positive integer");
1167
1168 errno = 0;
1169 val = strtoimax(value, &end, 0);
1170 if (errno == ERANGE)
1171 return 0;
1172 if (end == value) {
1173 errno = EINVAL;
1174 return 0;
1175 }
1176 factor = get_unit_factor(end);
1177 if (!factor) {
1178 errno = EINVAL;
1179 return 0;
1180 }
1181 if ((val < 0 && -max / factor > val) ||
1182 (val > 0 && max / factor < val)) {
1183 errno = ERANGE;
1184 return 0;
1185 }
1186 val *= factor;
1187 *ret = val;
1188 return 1;
1189 }
1190 errno = EINVAL;
1191 return 0;
1192 }
1193
1194 static int git_parse_unsigned(const char *value, uintmax_t *ret, uintmax_t max)
1195 {
1196 if (value && *value) {
1197 char *end;
1198 uintmax_t val;
1199 uintmax_t factor;
1200
1201 /* negative values would be accepted by strtoumax */
1202 if (strchr(value, '-')) {
1203 errno = EINVAL;
1204 return 0;
1205 }
1206 errno = 0;
1207 val = strtoumax(value, &end, 0);
1208 if (errno == ERANGE)
1209 return 0;
1210 if (end == value) {
1211 errno = EINVAL;
1212 return 0;
1213 }
1214 factor = get_unit_factor(end);
1215 if (!factor) {
1216 errno = EINVAL;
1217 return 0;
1218 }
1219 if (unsigned_mult_overflows(factor, val) ||
1220 factor * val > max) {
1221 errno = ERANGE;
1222 return 0;
1223 }
1224 val *= factor;
1225 *ret = val;
1226 return 1;
1227 }
1228 errno = EINVAL;
1229 return 0;
1230 }
1231
1232 int git_parse_int(const char *value, int *ret)
1233 {
1234 intmax_t tmp;
1235 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int)))
1236 return 0;
1237 *ret = tmp;
1238 return 1;
1239 }
1240
1241 static int git_parse_int64(const char *value, int64_t *ret)
1242 {
1243 intmax_t tmp;
1244 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int64_t)))
1245 return 0;
1246 *ret = tmp;
1247 return 1;
1248 }
1249
1250 int git_parse_ulong(const char *value, unsigned long *ret)
1251 {
1252 uintmax_t tmp;
1253 if (!git_parse_unsigned(value, &tmp, maximum_unsigned_value_of_type(long)))
1254 return 0;
1255 *ret = tmp;
1256 return 1;
1257 }
1258
1259 int git_parse_ssize_t(const char *value, ssize_t *ret)
1260 {
1261 intmax_t tmp;
1262 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(ssize_t)))
1263 return 0;
1264 *ret = tmp;
1265 return 1;
1266 }
1267
1268 NORETURN
1269 static void die_bad_number(const char *name, const char *value)
1270 {
1271 const char *error_type = (errno == ERANGE) ?
1272 N_("out of range") : N_("invalid unit");
1273 const char *bad_numeric = N_("bad numeric config value '%s' for '%s': %s");
1274
1275 if (!value)
1276 value = "";
1277
1278 if (!(cf && cf->name))
1279 die(_(bad_numeric), value, name, _(error_type));
1280
1281 switch (cf->origin_type) {
1282 case CONFIG_ORIGIN_BLOB:
1283 die(_("bad numeric config value '%s' for '%s' in blob %s: %s"),
1284 value, name, cf->name, _(error_type));
1285 case CONFIG_ORIGIN_FILE:
1286 die(_("bad numeric config value '%s' for '%s' in file %s: %s"),
1287 value, name, cf->name, _(error_type));
1288 case CONFIG_ORIGIN_STDIN:
1289 die(_("bad numeric config value '%s' for '%s' in standard input: %s"),
1290 value, name, _(error_type));
1291 case CONFIG_ORIGIN_SUBMODULE_BLOB:
1292 die(_("bad numeric config value '%s' for '%s' in submodule-blob %s: %s"),
1293 value, name, cf->name, _(error_type));
1294 case CONFIG_ORIGIN_CMDLINE:
1295 die(_("bad numeric config value '%s' for '%s' in command line %s: %s"),
1296 value, name, cf->name, _(error_type));
1297 default:
1298 die(_("bad numeric config value '%s' for '%s' in %s: %s"),
1299 value, name, cf->name, _(error_type));
1300 }
1301 }
1302
1303 int git_config_int(const char *name, const char *value)
1304 {
1305 int ret;
1306 if (!git_parse_int(value, &ret))
1307 die_bad_number(name, value);
1308 return ret;
1309 }
1310
1311 int64_t git_config_int64(const char *name, const char *value)
1312 {
1313 int64_t ret;
1314 if (!git_parse_int64(value, &ret))
1315 die_bad_number(name, value);
1316 return ret;
1317 }
1318
1319 unsigned long git_config_ulong(const char *name, const char *value)
1320 {
1321 unsigned long ret;
1322 if (!git_parse_ulong(value, &ret))
1323 die_bad_number(name, value);
1324 return ret;
1325 }
1326
1327 ssize_t git_config_ssize_t(const char *name, const char *value)
1328 {
1329 ssize_t ret;
1330 if (!git_parse_ssize_t(value, &ret))
1331 die_bad_number(name, value);
1332 return ret;
1333 }
1334
1335 static int git_parse_maybe_bool_text(const char *value)
1336 {
1337 if (!value)
1338 return 1;
1339 if (!*value)
1340 return 0;
1341 if (!strcasecmp(value, "true")
1342 || !strcasecmp(value, "yes")
1343 || !strcasecmp(value, "on"))
1344 return 1;
1345 if (!strcasecmp(value, "false")
1346 || !strcasecmp(value, "no")
1347 || !strcasecmp(value, "off"))
1348 return 0;
1349 return -1;
1350 }
1351
1352 static const struct fsync_component_name {
1353 const char *name;
1354 enum fsync_component component_bits;
1355 } fsync_component_names[] = {
1356 { "loose-object", FSYNC_COMPONENT_LOOSE_OBJECT },
1357 { "pack", FSYNC_COMPONENT_PACK },
1358 { "pack-metadata", FSYNC_COMPONENT_PACK_METADATA },
1359 { "commit-graph", FSYNC_COMPONENT_COMMIT_GRAPH },
1360 { "index", FSYNC_COMPONENT_INDEX },
1361 { "objects", FSYNC_COMPONENTS_OBJECTS },
1362 { "reference", FSYNC_COMPONENT_REFERENCE },
1363 { "derived-metadata", FSYNC_COMPONENTS_DERIVED_METADATA },
1364 { "committed", FSYNC_COMPONENTS_COMMITTED },
1365 { "added", FSYNC_COMPONENTS_ADDED },
1366 { "all", FSYNC_COMPONENTS_ALL },
1367 };
1368
1369 static enum fsync_component parse_fsync_components(const char *var, const char *string)
1370 {
1371 enum fsync_component current = FSYNC_COMPONENTS_PLATFORM_DEFAULT;
1372 enum fsync_component positive = 0, negative = 0;
1373
1374 while (string) {
1375 int i;
1376 size_t len;
1377 const char *ep;
1378 int negated = 0;
1379 int found = 0;
1380
1381 string = string + strspn(string, ", \t\n\r");
1382 ep = strchrnul(string, ',');
1383 len = ep - string;
1384 if (!strcmp(string, "none")) {
1385 current = FSYNC_COMPONENT_NONE;
1386 goto next_name;
1387 }
1388
1389 if (*string == '-') {
1390 negated = 1;
1391 string++;
1392 len--;
1393 if (!len)
1394 warning(_("invalid value for variable %s"), var);
1395 }
1396
1397 if (!len)
1398 break;
1399
1400 for (i = 0; i < ARRAY_SIZE(fsync_component_names); ++i) {
1401 const struct fsync_component_name *n = &fsync_component_names[i];
1402
1403 if (strncmp(n->name, string, len))
1404 continue;
1405
1406 found = 1;
1407 if (negated)
1408 negative |= n->component_bits;
1409 else
1410 positive |= n->component_bits;
1411 }
1412
1413 if (!found) {
1414 char *component = xstrndup(string, len);
1415 warning(_("ignoring unknown core.fsync component '%s'"), component);
1416 free(component);
1417 }
1418
1419 next_name:
1420 string = ep;
1421 }
1422
1423 return (current & ~negative) | positive;
1424 }
1425
1426 int git_parse_maybe_bool(const char *value)
1427 {
1428 int v = git_parse_maybe_bool_text(value);
1429 if (0 <= v)
1430 return v;
1431 if (git_parse_int(value, &v))
1432 return !!v;
1433 return -1;
1434 }
1435
1436 int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
1437 {
1438 int v = git_parse_maybe_bool_text(value);
1439 if (0 <= v) {
1440 *is_bool = 1;
1441 return v;
1442 }
1443 *is_bool = 0;
1444 return git_config_int(name, value);
1445 }
1446
1447 int git_config_bool(const char *name, const char *value)
1448 {
1449 int v = git_parse_maybe_bool(value);
1450 if (v < 0)
1451 die(_("bad boolean config value '%s' for '%s'"), value, name);
1452 return v;
1453 }
1454
1455 int git_config_string(const char **dest, const char *var, const char *value)
1456 {
1457 if (!value)
1458 return config_error_nonbool(var);
1459 *dest = xstrdup(value);
1460 return 0;
1461 }
1462
1463 int git_config_pathname(const char **dest, const char *var, const char *value)
1464 {
1465 if (!value)
1466 return config_error_nonbool(var);
1467 *dest = interpolate_path(value, 0);
1468 if (!*dest)
1469 die(_("failed to expand user dir in: '%s'"), value);
1470 return 0;
1471 }
1472
1473 int git_config_expiry_date(timestamp_t *timestamp, const char *var, const char *value)
1474 {
1475 if (!value)
1476 return config_error_nonbool(var);
1477 if (parse_expiry_date(value, timestamp))
1478 return error(_("'%s' for '%s' is not a valid timestamp"),
1479 value, var);
1480 return 0;
1481 }
1482
1483 int git_config_color(char *dest, const char *var, const char *value)
1484 {
1485 if (!value)
1486 return config_error_nonbool(var);
1487 if (color_parse(value, dest) < 0)
1488 return -1;
1489 return 0;
1490 }
1491
1492 static int git_default_core_config(const char *var, const char *value, void *cb)
1493 {
1494 /* This needs a better name */
1495 if (!strcmp(var, "core.filemode")) {
1496 trust_executable_bit = git_config_bool(var, value);
1497 return 0;
1498 }
1499 if (!strcmp(var, "core.trustctime")) {
1500 trust_ctime = git_config_bool(var, value);
1501 return 0;
1502 }
1503 if (!strcmp(var, "core.checkstat")) {
1504 if (!strcasecmp(value, "default"))
1505 check_stat = 1;
1506 else if (!strcasecmp(value, "minimal"))
1507 check_stat = 0;
1508 }
1509
1510 if (!strcmp(var, "core.quotepath")) {
1511 quote_path_fully = git_config_bool(var, value);
1512 return 0;
1513 }
1514
1515 if (!strcmp(var, "core.symlinks")) {
1516 has_symlinks = git_config_bool(var, value);
1517 return 0;
1518 }
1519
1520 if (!strcmp(var, "core.ignorecase")) {
1521 ignore_case = git_config_bool(var, value);
1522 return 0;
1523 }
1524
1525 if (!strcmp(var, "core.attributesfile"))
1526 return git_config_pathname(&git_attributes_file, var, value);
1527
1528 if (!strcmp(var, "core.hookspath"))
1529 return git_config_pathname(&git_hooks_path, var, value);
1530
1531 if (!strcmp(var, "core.bare")) {
1532 is_bare_repository_cfg = git_config_bool(var, value);
1533 return 0;
1534 }
1535
1536 if (!strcmp(var, "core.ignorestat")) {
1537 assume_unchanged = git_config_bool(var, value);
1538 return 0;
1539 }
1540
1541 if (!strcmp(var, "core.prefersymlinkrefs")) {
1542 prefer_symlink_refs = git_config_bool(var, value);
1543 return 0;
1544 }
1545
1546 if (!strcmp(var, "core.logallrefupdates")) {
1547 if (value && !strcasecmp(value, "always"))
1548 log_all_ref_updates = LOG_REFS_ALWAYS;
1549 else if (git_config_bool(var, value))
1550 log_all_ref_updates = LOG_REFS_NORMAL;
1551 else
1552 log_all_ref_updates = LOG_REFS_NONE;
1553 return 0;
1554 }
1555
1556 if (!strcmp(var, "core.warnambiguousrefs")) {
1557 warn_ambiguous_refs = git_config_bool(var, value);
1558 return 0;
1559 }
1560
1561 if (!strcmp(var, "core.abbrev")) {
1562 if (!value)
1563 return config_error_nonbool(var);
1564 if (!strcasecmp(value, "auto"))
1565 default_abbrev = -1;
1566 else if (!git_parse_maybe_bool_text(value))
1567 default_abbrev = the_hash_algo->hexsz;
1568 else {
1569 int abbrev = git_config_int(var, value);
1570 if (abbrev < minimum_abbrev || abbrev > the_hash_algo->hexsz)
1571 return error(_("abbrev length out of range: %d"), abbrev);
1572 default_abbrev = abbrev;
1573 }
1574 return 0;
1575 }
1576
1577 if (!strcmp(var, "core.disambiguate"))
1578 return set_disambiguate_hint_config(var, value);
1579
1580 if (!strcmp(var, "core.loosecompression")) {
1581 int level = git_config_int(var, value);
1582 if (level == -1)
1583 level = Z_DEFAULT_COMPRESSION;
1584 else if (level < 0 || level > Z_BEST_COMPRESSION)
1585 die(_("bad zlib compression level %d"), level);
1586 zlib_compression_level = level;
1587 zlib_compression_seen = 1;
1588 return 0;
1589 }
1590
1591 if (!strcmp(var, "core.compression")) {
1592 int level = git_config_int(var, value);
1593 if (level == -1)
1594 level = Z_DEFAULT_COMPRESSION;
1595 else if (level < 0 || level > Z_BEST_COMPRESSION)
1596 die(_("bad zlib compression level %d"), level);
1597 if (!zlib_compression_seen)
1598 zlib_compression_level = level;
1599 if (!pack_compression_seen)
1600 pack_compression_level = level;
1601 return 0;
1602 }
1603
1604 if (!strcmp(var, "core.packedgitwindowsize")) {
1605 int pgsz_x2 = getpagesize() * 2;
1606 packed_git_window_size = git_config_ulong(var, value);
1607
1608 /* This value must be multiple of (pagesize * 2) */
1609 packed_git_window_size /= pgsz_x2;
1610 if (packed_git_window_size < 1)
1611 packed_git_window_size = 1;
1612 packed_git_window_size *= pgsz_x2;
1613 return 0;
1614 }
1615
1616 if (!strcmp(var, "core.bigfilethreshold")) {
1617 big_file_threshold = git_config_ulong(var, value);
1618 return 0;
1619 }
1620
1621 if (!strcmp(var, "core.packedgitlimit")) {
1622 packed_git_limit = git_config_ulong(var, value);
1623 return 0;
1624 }
1625
1626 if (!strcmp(var, "core.deltabasecachelimit")) {
1627 delta_base_cache_limit = git_config_ulong(var, value);
1628 return 0;
1629 }
1630
1631 if (!strcmp(var, "core.autocrlf")) {
1632 if (value && !strcasecmp(value, "input")) {
1633 auto_crlf = AUTO_CRLF_INPUT;
1634 return 0;
1635 }
1636 auto_crlf = git_config_bool(var, value);
1637 return 0;
1638 }
1639
1640 if (!strcmp(var, "core.safecrlf")) {
1641 int eol_rndtrp_die;
1642 if (value && !strcasecmp(value, "warn")) {
1643 global_conv_flags_eol = CONV_EOL_RNDTRP_WARN;
1644 return 0;
1645 }
1646 eol_rndtrp_die = git_config_bool(var, value);
1647 global_conv_flags_eol = eol_rndtrp_die ?
1648 CONV_EOL_RNDTRP_DIE : 0;
1649 return 0;
1650 }
1651
1652 if (!strcmp(var, "core.eol")) {
1653 if (value && !strcasecmp(value, "lf"))
1654 core_eol = EOL_LF;
1655 else if (value && !strcasecmp(value, "crlf"))
1656 core_eol = EOL_CRLF;
1657 else if (value && !strcasecmp(value, "native"))
1658 core_eol = EOL_NATIVE;
1659 else
1660 core_eol = EOL_UNSET;
1661 return 0;
1662 }
1663
1664 if (!strcmp(var, "core.checkroundtripencoding")) {
1665 check_roundtrip_encoding = xstrdup(value);
1666 return 0;
1667 }
1668
1669 if (!strcmp(var, "core.notesref")) {
1670 notes_ref_name = xstrdup(value);
1671 return 0;
1672 }
1673
1674 if (!strcmp(var, "core.editor"))
1675 return git_config_string(&editor_program, var, value);
1676
1677 if (!strcmp(var, "core.commentchar")) {
1678 if (!value)
1679 return config_error_nonbool(var);
1680 else if (!strcasecmp(value, "auto"))
1681 auto_comment_line_char = 1;
1682 else if (value[0] && !value[1]) {
1683 comment_line_char = value[0];
1684 auto_comment_line_char = 0;
1685 } else
1686 return error(_("core.commentChar should only be one character"));
1687 return 0;
1688 }
1689
1690 if (!strcmp(var, "core.askpass"))
1691 return git_config_string(&askpass_program, var, value);
1692
1693 if (!strcmp(var, "core.excludesfile"))
1694 return git_config_pathname(&excludes_file, var, value);
1695
1696 if (!strcmp(var, "core.whitespace")) {
1697 if (!value)
1698 return config_error_nonbool(var);
1699 whitespace_rule_cfg = parse_whitespace_rule(value);
1700 return 0;
1701 }
1702
1703 if (!strcmp(var, "core.fsync")) {
1704 if (!value)
1705 return config_error_nonbool(var);
1706 fsync_components = parse_fsync_components(var, value);
1707 return 0;
1708 }
1709
1710 if (!strcmp(var, "core.fsyncmethod")) {
1711 if (!value)
1712 return config_error_nonbool(var);
1713 if (!strcmp(value, "fsync"))
1714 fsync_method = FSYNC_METHOD_FSYNC;
1715 else if (!strcmp(value, "writeout-only"))
1716 fsync_method = FSYNC_METHOD_WRITEOUT_ONLY;
1717 else if (!strcmp(value, "batch"))
1718 fsync_method = FSYNC_METHOD_BATCH;
1719 else
1720 warning(_("ignoring unknown core.fsyncMethod value '%s'"), value);
1721
1722 }
1723
1724 if (!strcmp(var, "core.fsyncobjectfiles")) {
1725 if (fsync_object_files < 0)
1726 warning(_("core.fsyncObjectFiles is deprecated; use core.fsync instead"));
1727 fsync_object_files = git_config_bool(var, value);
1728 return 0;
1729 }
1730
1731 if (!strcmp(var, "core.preloadindex")) {
1732 core_preload_index = git_config_bool(var, value);
1733 return 0;
1734 }
1735
1736 if (!strcmp(var, "core.createobject")) {
1737 if (!strcmp(value, "rename"))
1738 object_creation_mode = OBJECT_CREATION_USES_RENAMES;
1739 else if (!strcmp(value, "link"))
1740 object_creation_mode = OBJECT_CREATION_USES_HARDLINKS;
1741 else
1742 die(_("invalid mode for object creation: %s"), value);
1743 return 0;
1744 }
1745
1746 if (!strcmp(var, "core.sparsecheckout")) {
1747 core_apply_sparse_checkout = git_config_bool(var, value);
1748 return 0;
1749 }
1750
1751 if (!strcmp(var, "core.sparsecheckoutcone")) {
1752 core_sparse_checkout_cone = git_config_bool(var, value);
1753 return 0;
1754 }
1755
1756 if (!strcmp(var, "core.precomposeunicode")) {
1757 precomposed_unicode = git_config_bool(var, value);
1758 return 0;
1759 }
1760
1761 if (!strcmp(var, "core.protecthfs")) {
1762 protect_hfs = git_config_bool(var, value);
1763 return 0;
1764 }
1765
1766 if (!strcmp(var, "core.protectntfs")) {
1767 protect_ntfs = git_config_bool(var, value);
1768 return 0;
1769 }
1770
1771 if (!strcmp(var, "core.usereplacerefs")) {
1772 read_replace_refs = git_config_bool(var, value);
1773 return 0;
1774 }
1775
1776 /* Add other config variables here and to Documentation/config.txt. */
1777 return platform_core_config(var, value, cb);
1778 }
1779
1780 static int git_default_sparse_config(const char *var, const char *value)
1781 {
1782 if (!strcmp(var, "sparse.expectfilesoutsideofpatterns")) {
1783 sparse_expect_files_outside_of_patterns = git_config_bool(var, value);
1784 return 0;
1785 }
1786
1787 /* Add other config variables here and to Documentation/config/sparse.txt. */
1788 return 0;
1789 }
1790
1791 static int git_default_i18n_config(const char *var, const char *value)
1792 {
1793 if (!strcmp(var, "i18n.commitencoding"))
1794 return git_config_string(&git_commit_encoding, var, value);
1795
1796 if (!strcmp(var, "i18n.logoutputencoding"))
1797 return git_config_string(&git_log_output_encoding, var, value);
1798
1799 /* Add other config variables here and to Documentation/config.txt. */
1800 return 0;
1801 }
1802
1803 static int git_default_branch_config(const char *var, const char *value)
1804 {
1805 if (!strcmp(var, "branch.autosetupmerge")) {
1806 if (value && !strcmp(value, "always")) {
1807 git_branch_track = BRANCH_TRACK_ALWAYS;
1808 return 0;
1809 } else if (value && !strcmp(value, "inherit")) {
1810 git_branch_track = BRANCH_TRACK_INHERIT;
1811 return 0;
1812 } else if (value && !strcmp(value, "simple")) {
1813 git_branch_track = BRANCH_TRACK_SIMPLE;
1814 return 0;
1815 }
1816 git_branch_track = git_config_bool(var, value);
1817 return 0;
1818 }
1819 if (!strcmp(var, "branch.autosetuprebase")) {
1820 if (!value)
1821 return config_error_nonbool(var);
1822 else if (!strcmp(value, "never"))
1823 autorebase = AUTOREBASE_NEVER;
1824 else if (!strcmp(value, "local"))
1825 autorebase = AUTOREBASE_LOCAL;
1826 else if (!strcmp(value, "remote"))
1827 autorebase = AUTOREBASE_REMOTE;
1828 else if (!strcmp(value, "always"))
1829 autorebase = AUTOREBASE_ALWAYS;
1830 else
1831 return error(_("malformed value for %s"), var);
1832 return 0;
1833 }
1834
1835 /* Add other config variables here and to Documentation/config.txt. */
1836 return 0;
1837 }
1838
1839 static int git_default_push_config(const char *var, const char *value)
1840 {
1841 if (!strcmp(var, "push.default")) {
1842 if (!value)
1843 return config_error_nonbool(var);
1844 else if (!strcmp(value, "nothing"))
1845 push_default = PUSH_DEFAULT_NOTHING;
1846 else if (!strcmp(value, "matching"))
1847 push_default = PUSH_DEFAULT_MATCHING;
1848 else if (!strcmp(value, "simple"))
1849 push_default = PUSH_DEFAULT_SIMPLE;
1850 else if (!strcmp(value, "upstream"))
1851 push_default = PUSH_DEFAULT_UPSTREAM;
1852 else if (!strcmp(value, "tracking")) /* deprecated */
1853 push_default = PUSH_DEFAULT_UPSTREAM;
1854 else if (!strcmp(value, "current"))
1855 push_default = PUSH_DEFAULT_CURRENT;
1856 else {
1857 error(_("malformed value for %s: %s"), var, value);
1858 return error(_("must be one of nothing, matching, simple, "
1859 "upstream or current"));
1860 }
1861 return 0;
1862 }
1863
1864 /* Add other config variables here and to Documentation/config.txt. */
1865 return 0;
1866 }
1867
1868 static int git_default_mailmap_config(const char *var, const char *value)
1869 {
1870 if (!strcmp(var, "mailmap.file"))
1871 return git_config_pathname(&git_mailmap_file, var, value);
1872 if (!strcmp(var, "mailmap.blob"))
1873 return git_config_string(&git_mailmap_blob, var, value);
1874
1875 /* Add other config variables here and to Documentation/config.txt. */
1876 return 0;
1877 }
1878
1879 int git_default_config(const char *var, const char *value, void *cb)
1880 {
1881 if (starts_with(var, "core."))
1882 return git_default_core_config(var, value, cb);
1883
1884 if (starts_with(var, "user.") ||
1885 starts_with(var, "author.") ||
1886 starts_with(var, "committer."))
1887 return git_ident_config(var, value, cb);
1888
1889 if (starts_with(var, "i18n."))
1890 return git_default_i18n_config(var, value);
1891
1892 if (starts_with(var, "branch."))
1893 return git_default_branch_config(var, value);
1894
1895 if (starts_with(var, "push."))
1896 return git_default_push_config(var, value);
1897
1898 if (starts_with(var, "mailmap."))
1899 return git_default_mailmap_config(var, value);
1900
1901 if (starts_with(var, "advice.") || starts_with(var, "color.advice"))
1902 return git_default_advice_config(var, value);
1903
1904 if (!strcmp(var, "pager.color") || !strcmp(var, "color.pager")) {
1905 pager_use_color = git_config_bool(var,value);
1906 return 0;
1907 }
1908
1909 if (!strcmp(var, "pack.packsizelimit")) {
1910 pack_size_limit_cfg = git_config_ulong(var, value);
1911 return 0;
1912 }
1913
1914 if (!strcmp(var, "pack.compression")) {
1915 int level = git_config_int(var, value);
1916 if (level == -1)
1917 level = Z_DEFAULT_COMPRESSION;
1918 else if (level < 0 || level > Z_BEST_COMPRESSION)
1919 die(_("bad pack compression level %d"), level);
1920 pack_compression_level = level;
1921 pack_compression_seen = 1;
1922 return 0;
1923 }
1924
1925 if (starts_with(var, "sparse."))
1926 return git_default_sparse_config(var, value);
1927
1928 /* Add other config variables here and to Documentation/config.txt. */
1929 return 0;
1930 }
1931
1932 /*
1933 * All source specific fields in the union, die_on_error, name and the callbacks
1934 * fgetc, ungetc, ftell of top need to be initialized before calling
1935 * this function.
1936 */
1937 static int do_config_from(struct config_source *top, config_fn_t fn, void *data,
1938 const struct config_options *opts)
1939 {
1940 int ret;
1941
1942 /* push config-file parsing state stack */
1943 top->prev = cf;
1944 top->linenr = 1;
1945 top->eof = 0;
1946 top->total_len = 0;
1947 strbuf_init(&top->value, 1024);
1948 strbuf_init(&top->var, 1024);
1949 cf = top;
1950
1951 ret = git_parse_source(fn, data, opts);
1952
1953 /* pop config-file parsing state stack */
1954 strbuf_release(&top->value);
1955 strbuf_release(&top->var);
1956 cf = top->prev;
1957
1958 return ret;
1959 }
1960
1961 static int do_config_from_file(config_fn_t fn,
1962 const enum config_origin_type origin_type,
1963 const char *name, const char *path, FILE *f,
1964 void *data, const struct config_options *opts)
1965 {
1966 struct config_source top;
1967 int ret;
1968
1969 top.u.file = f;
1970 top.origin_type = origin_type;
1971 top.name = name;
1972 top.path = path;
1973 top.default_error_action = CONFIG_ERROR_DIE;
1974 top.do_fgetc = config_file_fgetc;
1975 top.do_ungetc = config_file_ungetc;
1976 top.do_ftell = config_file_ftell;
1977
1978 flockfile(f);
1979 ret = do_config_from(&top, fn, data, opts);
1980 funlockfile(f);
1981 return ret;
1982 }
1983
1984 static int git_config_from_stdin(config_fn_t fn, void *data)
1985 {
1986 return do_config_from_file(fn, CONFIG_ORIGIN_STDIN, "", NULL, stdin,
1987 data, NULL);
1988 }
1989
1990 int git_config_from_file_with_options(config_fn_t fn, const char *filename,
1991 void *data,
1992 const struct config_options *opts)
1993 {
1994 int ret = -1;
1995 FILE *f;
1996
1997 if (!filename)
1998 BUG("filename cannot be NULL");
1999 f = fopen_or_warn(filename, "r");
2000 if (f) {
2001 ret = do_config_from_file(fn, CONFIG_ORIGIN_FILE, filename,
2002 filename, f, data, opts);
2003 fclose(f);
2004 }
2005 return ret;
2006 }
2007
2008 int git_config_from_file(config_fn_t fn, const char *filename, void *data)
2009 {
2010 return git_config_from_file_with_options(fn, filename, data, NULL);
2011 }
2012
2013 int git_config_from_mem(config_fn_t fn,
2014 const enum config_origin_type origin_type,
2015 const char *name, const char *buf, size_t len,
2016 void *data, const struct config_options *opts)
2017 {
2018 struct config_source top;
2019
2020 top.u.buf.buf = buf;
2021 top.u.buf.len = len;
2022 top.u.buf.pos = 0;
2023 top.origin_type = origin_type;
2024 top.name = name;
2025 top.path = NULL;
2026 top.default_error_action = CONFIG_ERROR_ERROR;
2027 top.do_fgetc = config_buf_fgetc;
2028 top.do_ungetc = config_buf_ungetc;
2029 top.do_ftell = config_buf_ftell;
2030
2031 return do_config_from(&top, fn, data, opts);
2032 }
2033
2034 int git_config_from_blob_oid(config_fn_t fn,
2035 const char *name,
2036 struct repository *repo,
2037 const struct object_id *oid,
2038 void *data)
2039 {
2040 enum object_type type;
2041 char *buf;
2042 unsigned long size;
2043 int ret;
2044
2045 buf = repo_read_object_file(repo, oid, &type, &size);
2046 if (!buf)
2047 return error(_("unable to load config blob object '%s'"), name);
2048 if (type != OBJ_BLOB) {
2049 free(buf);
2050 return error(_("reference '%s' does not point to a blob"), name);
2051 }
2052
2053 ret = git_config_from_mem(fn, CONFIG_ORIGIN_BLOB, name, buf, size,
2054 data, NULL);
2055 free(buf);
2056
2057 return ret;
2058 }
2059
2060 static int git_config_from_blob_ref(config_fn_t fn,
2061 struct repository *repo,
2062 const char *name,
2063 void *data)
2064 {
2065 struct object_id oid;
2066
2067 if (repo_get_oid(repo, name, &oid) < 0)
2068 return error(_("unable to resolve config blob '%s'"), name);
2069 return git_config_from_blob_oid(fn, name, repo, &oid, data);
2070 }
2071
2072 char *git_system_config(void)
2073 {
2074 char *system_config = xstrdup_or_null(getenv("GIT_CONFIG_SYSTEM"));
2075 if (!system_config)
2076 system_config = system_path(ETC_GITCONFIG);
2077 normalize_path_copy(system_config, system_config);
2078 return system_config;
2079 }
2080
2081 void git_global_config(char **user_out, char **xdg_out)
2082 {
2083 char *user_config = xstrdup_or_null(getenv("GIT_CONFIG_GLOBAL"));
2084 char *xdg_config = NULL;
2085
2086 if (!user_config) {
2087 user_config = interpolate_path("~/.gitconfig", 0);
2088 xdg_config = xdg_config_home("config");
2089 }
2090
2091 *user_out = user_config;
2092 *xdg_out = xdg_config;
2093 }
2094
2095 /*
2096 * Parse environment variable 'k' as a boolean (in various
2097 * possible spellings); if missing, use the default value 'def'.
2098 */
2099 int git_env_bool(const char *k, int def)
2100 {
2101 const char *v = getenv(k);
2102 return v ? git_config_bool(k, v) : def;
2103 }
2104
2105 /*
2106 * Parse environment variable 'k' as ulong with possibly a unit
2107 * suffix; if missing, use the default value 'val'.
2108 */
2109 unsigned long git_env_ulong(const char *k, unsigned long val)
2110 {
2111 const char *v = getenv(k);
2112 if (v && !git_parse_ulong(v, &val))
2113 die(_("failed to parse %s"), k);
2114 return val;
2115 }
2116
2117 int git_config_system(void)
2118 {
2119 return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0);
2120 }
2121
2122 static int do_git_config_sequence(const struct config_options *opts,
2123 config_fn_t fn, void *data)
2124 {
2125 int ret = 0;
2126 char *system_config = git_system_config();
2127 char *xdg_config = NULL;
2128 char *user_config = NULL;
2129 char *repo_config;
2130 enum config_scope prev_parsing_scope = current_parsing_scope;
2131
2132 if (opts->commondir)
2133 repo_config = mkpathdup("%s/config", opts->commondir);
2134 else if (opts->git_dir)
2135 BUG("git_dir without commondir");
2136 else
2137 repo_config = NULL;
2138
2139 current_parsing_scope = CONFIG_SCOPE_SYSTEM;
2140 if (git_config_system() && system_config &&
2141 !access_or_die(system_config, R_OK,
2142 opts->system_gently ? ACCESS_EACCES_OK : 0))
2143 ret += git_config_from_file(fn, system_config, data);
2144
2145 current_parsing_scope = CONFIG_SCOPE_GLOBAL;
2146 git_global_config(&user_config, &xdg_config);
2147
2148 if (xdg_config && !access_or_die(xdg_config, R_OK, ACCESS_EACCES_OK))
2149 ret += git_config_from_file(fn, xdg_config, data);
2150
2151 if (user_config && !access_or_die(user_config, R_OK, ACCESS_EACCES_OK))
2152 ret += git_config_from_file(fn, user_config, data);
2153
2154 current_parsing_scope = CONFIG_SCOPE_LOCAL;
2155 if (!opts->ignore_repo && repo_config &&
2156 !access_or_die(repo_config, R_OK, 0))
2157 ret += git_config_from_file(fn, repo_config, data);
2158
2159 current_parsing_scope = CONFIG_SCOPE_WORKTREE;
2160 if (!opts->ignore_worktree && repository_format_worktree_config) {
2161 char *path = git_pathdup("config.worktree");
2162 if (!access_or_die(path, R_OK, 0))
2163 ret += git_config_from_file(fn, path, data);
2164 free(path);
2165 }
2166
2167 current_parsing_scope = CONFIG_SCOPE_COMMAND;
2168 if (!opts->ignore_cmdline && git_config_from_parameters(fn, data) < 0)
2169 die(_("unable to parse command-line config"));
2170
2171 current_parsing_scope = prev_parsing_scope;
2172 free(system_config);
2173 free(xdg_config);
2174 free(user_config);
2175 free(repo_config);
2176 return ret;
2177 }
2178
2179 int config_with_options(config_fn_t fn, void *data,
2180 struct git_config_source *config_source,
2181 const struct config_options *opts)
2182 {
2183 struct config_include_data inc = CONFIG_INCLUDE_INIT;
2184 int ret;
2185
2186 if (opts->respect_includes) {
2187 inc.fn = fn;
2188 inc.data = data;
2189 inc.opts = opts;
2190 inc.config_source = config_source;
2191 fn = git_config_include;
2192 data = &inc;
2193 }
2194
2195 if (config_source)
2196 current_parsing_scope = config_source->scope;
2197
2198 /*
2199 * If we have a specific filename, use it. Otherwise, follow the
2200 * regular lookup sequence.
2201 */
2202 if (config_source && config_source->use_stdin) {
2203 ret = git_config_from_stdin(fn, data);
2204 } else if (config_source && config_source->file) {
2205 ret = git_config_from_file(fn, config_source->file, data);
2206 } else if (config_source && config_source->blob) {
2207 struct repository *repo = config_source->repo ?
2208 config_source->repo : the_repository;
2209 ret = git_config_from_blob_ref(fn, repo, config_source->blob,
2210 data);
2211 } else {
2212 ret = do_git_config_sequence(opts, fn, data);
2213 }
2214
2215 if (inc.remote_urls) {
2216 string_list_clear(inc.remote_urls, 0);
2217 FREE_AND_NULL(inc.remote_urls);
2218 }
2219 return ret;
2220 }
2221
2222 static void configset_iter(struct config_set *cs, config_fn_t fn, void *data)
2223 {
2224 int i, value_index;
2225 struct string_list *values;
2226 struct config_set_element *entry;
2227 struct configset_list *list = &cs->list;
2228
2229 for (i = 0; i < list->nr; i++) {
2230 entry = list->items[i].e;
2231 value_index = list->items[i].value_index;
2232 values = &entry->value_list;
2233
2234 current_config_kvi = values->items[value_index].util;
2235
2236 if (fn(entry->key, values->items[value_index].string, data) < 0)
2237 git_die_config_linenr(entry->key,
2238 current_config_kvi->filename,
2239 current_config_kvi->linenr);
2240
2241 current_config_kvi = NULL;
2242 }
2243 }
2244
2245 void read_early_config(config_fn_t cb, void *data)
2246 {
2247 struct config_options opts = {0};
2248 struct strbuf commondir = STRBUF_INIT;
2249 struct strbuf gitdir = STRBUF_INIT;
2250
2251 opts.respect_includes = 1;
2252
2253 if (have_git_dir()) {
2254 opts.commondir = get_git_common_dir();
2255 opts.git_dir = get_git_dir();
2256 /*
2257 * When setup_git_directory() was not yet asked to discover the
2258 * GIT_DIR, we ask discover_git_directory() to figure out whether there
2259 * is any repository config we should use (but unlike
2260 * setup_git_directory_gently(), no global state is changed, most
2261 * notably, the current working directory is still the same after the
2262 * call).
2263 */
2264 } else if (!discover_git_directory(&commondir, &gitdir)) {
2265 opts.commondir = commondir.buf;
2266 opts.git_dir = gitdir.buf;
2267 }
2268
2269 config_with_options(cb, data, NULL, &opts);
2270
2271 strbuf_release(&commondir);
2272 strbuf_release(&gitdir);
2273 }
2274
2275 /*
2276 * Read config but only enumerate system and global settings.
2277 * Omit any repo-local, worktree-local, or command-line settings.
2278 */
2279 void read_very_early_config(config_fn_t cb, void *data)
2280 {
2281 struct config_options opts = { 0 };
2282
2283 opts.respect_includes = 1;
2284 opts.ignore_repo = 1;
2285 opts.ignore_worktree = 1;
2286 opts.ignore_cmdline = 1;
2287 opts.system_gently = 1;
2288
2289 config_with_options(cb, data, NULL, &opts);
2290 }
2291
2292 static struct config_set_element *configset_find_element(struct config_set *cs, const char *key)
2293 {
2294 struct config_set_element k;
2295 struct config_set_element *found_entry;
2296 char *normalized_key;
2297 /*
2298 * `key` may come from the user, so normalize it before using it
2299 * for querying entries from the hashmap.
2300 */
2301 if (git_config_parse_key(key, &normalized_key, NULL))
2302 return NULL;
2303
2304 hashmap_entry_init(&k.ent, strhash(normalized_key));
2305 k.key = normalized_key;
2306 found_entry = hashmap_get_entry(&cs->config_hash, &k, ent, NULL);
2307 free(normalized_key);
2308 return found_entry;
2309 }
2310
2311 static int configset_add_value(struct config_set *cs, const char *key, const char *value)
2312 {
2313 struct config_set_element *e;
2314 struct string_list_item *si;
2315 struct configset_list_item *l_item;
2316 struct key_value_info *kv_info = xmalloc(sizeof(*kv_info));
2317
2318 e = configset_find_element(cs, key);
2319 /*
2320 * Since the keys are being fed by git_config*() callback mechanism, they
2321 * are already normalized. So simply add them without any further munging.
2322 */
2323 if (!e) {
2324 e = xmalloc(sizeof(*e));
2325 hashmap_entry_init(&e->ent, strhash(key));
2326 e->key = xstrdup(key);
2327 string_list_init_dup(&e->value_list);
2328 hashmap_add(&cs->config_hash, &e->ent);
2329 }
2330 si = string_list_append_nodup(&e->value_list, xstrdup_or_null(value));
2331
2332 ALLOC_GROW(cs->list.items, cs->list.nr + 1, cs->list.alloc);
2333 l_item = &cs->list.items[cs->list.nr++];
2334 l_item->e = e;
2335 l_item->value_index = e->value_list.nr - 1;
2336
2337 if (!cf)
2338 BUG("configset_add_value has no source");
2339 if (cf->name) {
2340 kv_info->filename = strintern(cf->name);
2341 kv_info->linenr = cf->linenr;
2342 kv_info->origin_type = cf->origin_type;
2343 } else {
2344 /* for values read from `git_config_from_parameters()` */
2345 kv_info->filename = NULL;
2346 kv_info->linenr = -1;
2347 kv_info->origin_type = CONFIG_ORIGIN_CMDLINE;
2348 }
2349 kv_info->scope = current_parsing_scope;
2350 si->util = kv_info;
2351
2352 return 0;
2353 }
2354
2355 static int config_set_element_cmp(const void *cmp_data UNUSED,
2356 const struct hashmap_entry *eptr,
2357 const struct hashmap_entry *entry_or_key,
2358 const void *keydata UNUSED)
2359 {
2360 const struct config_set_element *e1, *e2;
2361
2362 e1 = container_of(eptr, const struct config_set_element, ent);
2363 e2 = container_of(entry_or_key, const struct config_set_element, ent);
2364
2365 return strcmp(e1->key, e2->key);
2366 }
2367
2368 void git_configset_init(struct config_set *cs)
2369 {
2370 hashmap_init(&cs->config_hash, config_set_element_cmp, NULL, 0);
2371 cs->hash_initialized = 1;
2372 cs->list.nr = 0;
2373 cs->list.alloc = 0;
2374 cs->list.items = NULL;
2375 }
2376
2377 void git_configset_clear(struct config_set *cs)
2378 {
2379 struct config_set_element *entry;
2380 struct hashmap_iter iter;
2381 if (!cs->hash_initialized)
2382 return;
2383
2384 hashmap_for_each_entry(&cs->config_hash, &iter, entry,
2385 ent /* member name */) {
2386 free(entry->key);
2387 string_list_clear(&entry->value_list, 1);
2388 }
2389 hashmap_clear_and_free(&cs->config_hash, struct config_set_element, ent);
2390 cs->hash_initialized = 0;
2391 free(cs->list.items);
2392 cs->list.nr = 0;
2393 cs->list.alloc = 0;
2394 cs->list.items = NULL;
2395 }
2396
2397 static int config_set_callback(const char *key, const char *value, void *cb)
2398 {
2399 struct config_set *cs = cb;
2400 configset_add_value(cs, key, value);
2401 return 0;
2402 }
2403
2404 int git_configset_add_file(struct config_set *cs, const char *filename)
2405 {
2406 return git_config_from_file(config_set_callback, filename, cs);
2407 }
2408
2409 int git_configset_get_value(struct config_set *cs, const char *key, const char **value)
2410 {
2411 const struct string_list *values = NULL;
2412 /*
2413 * Follows "last one wins" semantic, i.e., if there are multiple matches for the
2414 * queried key in the files of the configset, the value returned will be the last
2415 * value in the value list for that key.
2416 */
2417 values = git_configset_get_value_multi(cs, key);
2418
2419 if (!values)
2420 return 1;
2421 assert(values->nr > 0);
2422 *value = values->items[values->nr - 1].string;
2423 return 0;
2424 }
2425
2426 const struct string_list *git_configset_get_value_multi(struct config_set *cs, const char *key)
2427 {
2428 struct config_set_element *e = configset_find_element(cs, key);
2429 return e ? &e->value_list : NULL;
2430 }
2431
2432 int git_configset_get_string(struct config_set *cs, const char *key, char **dest)
2433 {
2434 const char *value;
2435 if (!git_configset_get_value(cs, key, &value))
2436 return git_config_string((const char **)dest, key, value);
2437 else
2438 return 1;
2439 }
2440
2441 static int git_configset_get_string_tmp(struct config_set *cs, const char *key,
2442 const char **dest)
2443 {
2444 const char *value;
2445 if (!git_configset_get_value(cs, key, &value)) {
2446 if (!value)
2447 return config_error_nonbool(key);
2448 *dest = value;
2449 return 0;
2450 } else {
2451 return 1;
2452 }
2453 }
2454
2455 int git_configset_get_int(struct config_set *cs, const char *key, int *dest)
2456 {
2457 const char *value;
2458 if (!git_configset_get_value(cs, key, &value)) {
2459 *dest = git_config_int(key, value);
2460 return 0;
2461 } else
2462 return 1;
2463 }
2464
2465 int git_configset_get_ulong(struct config_set *cs, const char *key, unsigned long *dest)
2466 {
2467 const char *value;
2468 if (!git_configset_get_value(cs, key, &value)) {
2469 *dest = git_config_ulong(key, value);
2470 return 0;
2471 } else
2472 return 1;
2473 }
2474
2475 int git_configset_get_bool(struct config_set *cs, const char *key, int *dest)
2476 {
2477 const char *value;
2478 if (!git_configset_get_value(cs, key, &value)) {
2479 *dest = git_config_bool(key, value);
2480 return 0;
2481 } else
2482 return 1;
2483 }
2484
2485 int git_configset_get_bool_or_int(struct config_set *cs, const char *key,
2486 int *is_bool, int *dest)
2487 {
2488 const char *value;
2489 if (!git_configset_get_value(cs, key, &value)) {
2490 *dest = git_config_bool_or_int(key, value, is_bool);
2491 return 0;
2492 } else
2493 return 1;
2494 }
2495
2496 int git_configset_get_maybe_bool(struct config_set *cs, const char *key, int *dest)
2497 {
2498 const char *value;
2499 if (!git_configset_get_value(cs, key, &value)) {
2500 *dest = git_parse_maybe_bool(value);
2501 if (*dest == -1)
2502 return -1;
2503 return 0;
2504 } else
2505 return 1;
2506 }
2507
2508 int git_configset_get_pathname(struct config_set *cs, const char *key, const char **dest)
2509 {
2510 const char *value;
2511 if (!git_configset_get_value(cs, key, &value))
2512 return git_config_pathname(dest, key, value);
2513 else
2514 return 1;
2515 }
2516
2517 /* Functions use to read configuration from a repository */
2518 static void repo_read_config(struct repository *repo)
2519 {
2520 struct config_options opts = { 0 };
2521
2522 opts.respect_includes = 1;
2523 opts.commondir = repo->commondir;
2524 opts.git_dir = repo->gitdir;
2525
2526 if (!repo->config)
2527 CALLOC_ARRAY(repo->config, 1);
2528 else
2529 git_configset_clear(repo->config);
2530
2531 git_configset_init(repo->config);
2532
2533 if (config_with_options(config_set_callback, repo->config, NULL, &opts) < 0)
2534 /*
2535 * config_with_options() normally returns only
2536 * zero, as most errors are fatal, and
2537 * non-fatal potential errors are guarded by "if"
2538 * statements that are entered only when no error is
2539 * possible.
2540 *
2541 * If we ever encounter a non-fatal error, it means
2542 * something went really wrong and we should stop
2543 * immediately.
2544 */
2545 die(_("unknown error occurred while reading the configuration files"));
2546 }
2547
2548 static void git_config_check_init(struct repository *repo)
2549 {
2550 if (repo->config && repo->config->hash_initialized)
2551 return;
2552 repo_read_config(repo);
2553 }
2554
2555 static void repo_config_clear(struct repository *repo)
2556 {
2557 if (!repo->config || !repo->config->hash_initialized)
2558 return;
2559 git_configset_clear(repo->config);
2560 }
2561
2562 void repo_config(struct repository *repo, config_fn_t fn, void *data)
2563 {
2564 git_config_check_init(repo);
2565 configset_iter(repo->config, fn, data);
2566 }
2567
2568 int repo_config_get_value(struct repository *repo,
2569 const char *key, const char **value)
2570 {
2571 git_config_check_init(repo);
2572 return git_configset_get_value(repo->config, key, value);
2573 }
2574
2575 const struct string_list *repo_config_get_value_multi(struct repository *repo,
2576 const char *key)
2577 {
2578 git_config_check_init(repo);
2579 return git_configset_get_value_multi(repo->config, key);
2580 }
2581
2582 int repo_config_get_string(struct repository *repo,
2583 const char *key, char **dest)
2584 {
2585 int ret;
2586 git_config_check_init(repo);
2587 ret = git_configset_get_string(repo->config, key, dest);
2588 if (ret < 0)
2589 git_die_config(key, NULL);
2590 return ret;
2591 }
2592
2593 int repo_config_get_string_tmp(struct repository *repo,
2594 const char *key, const char **dest)
2595 {
2596 int ret;
2597 git_config_check_init(repo);
2598 ret = git_configset_get_string_tmp(repo->config, key, dest);
2599 if (ret < 0)
2600 git_die_config(key, NULL);
2601 return ret;
2602 }
2603
2604 int repo_config_get_int(struct repository *repo,
2605 const char *key, int *dest)
2606 {
2607 git_config_check_init(repo);
2608 return git_configset_get_int(repo->config, key, dest);
2609 }
2610
2611 int repo_config_get_ulong(struct repository *repo,
2612 const char *key, unsigned long *dest)
2613 {
2614 git_config_check_init(repo);
2615 return git_configset_get_ulong(repo->config, key, dest);
2616 }
2617
2618 int repo_config_get_bool(struct repository *repo,
2619 const char *key, int *dest)
2620 {
2621 git_config_check_init(repo);
2622 return git_configset_get_bool(repo->config, key, dest);
2623 }
2624
2625 int repo_config_get_bool_or_int(struct repository *repo,
2626 const char *key, int *is_bool, int *dest)
2627 {
2628 git_config_check_init(repo);
2629 return git_configset_get_bool_or_int(repo->config, key, is_bool, dest);
2630 }
2631
2632 int repo_config_get_maybe_bool(struct repository *repo,
2633 const char *key, int *dest)
2634 {
2635 git_config_check_init(repo);
2636 return git_configset_get_maybe_bool(repo->config, key, dest);
2637 }
2638
2639 int repo_config_get_pathname(struct repository *repo,
2640 const char *key, const char **dest)
2641 {
2642 int ret;
2643 git_config_check_init(repo);
2644 ret = git_configset_get_pathname(repo->config, key, dest);
2645 if (ret < 0)
2646 git_die_config(key, NULL);
2647 return ret;
2648 }
2649
2650 /* Read values into protected_config. */
2651 static void read_protected_config(void)
2652 {
2653 struct config_options opts = {
2654 .respect_includes = 1,
2655 .ignore_repo = 1,
2656 .ignore_worktree = 1,
2657 .system_gently = 1,
2658 };
2659 git_configset_init(&protected_config);
2660 config_with_options(config_set_callback, &protected_config,
2661 NULL, &opts);
2662 }
2663
2664 void git_protected_config(config_fn_t fn, void *data)
2665 {
2666 if (!protected_config.hash_initialized)
2667 read_protected_config();
2668 configset_iter(&protected_config, fn, data);
2669 }
2670
2671 /* Functions used historically to read configuration from 'the_repository' */
2672 void git_config(config_fn_t fn, void *data)
2673 {
2674 repo_config(the_repository, fn, data);
2675 }
2676
2677 void git_config_clear(void)
2678 {
2679 repo_config_clear(the_repository);
2680 }
2681
2682 int git_config_get_value(const char *key, const char **value)
2683 {
2684 return repo_config_get_value(the_repository, key, value);
2685 }
2686
2687 const struct string_list *git_config_get_value_multi(const char *key)
2688 {
2689 return repo_config_get_value_multi(the_repository, key);
2690 }
2691
2692 int git_config_get_string(const char *key, char **dest)
2693 {
2694 return repo_config_get_string(the_repository, key, dest);
2695 }
2696
2697 int git_config_get_string_tmp(const char *key, const char **dest)
2698 {
2699 return repo_config_get_string_tmp(the_repository, key, dest);
2700 }
2701
2702 int git_config_get_int(const char *key, int *dest)
2703 {
2704 return repo_config_get_int(the_repository, key, dest);
2705 }
2706
2707 int git_config_get_ulong(const char *key, unsigned long *dest)
2708 {
2709 return repo_config_get_ulong(the_repository, key, dest);
2710 }
2711
2712 int git_config_get_bool(const char *key, int *dest)
2713 {
2714 return repo_config_get_bool(the_repository, key, dest);
2715 }
2716
2717 int git_config_get_bool_or_int(const char *key, int *is_bool, int *dest)
2718 {
2719 return repo_config_get_bool_or_int(the_repository, key, is_bool, dest);
2720 }
2721
2722 int git_config_get_maybe_bool(const char *key, int *dest)
2723 {
2724 return repo_config_get_maybe_bool(the_repository, key, dest);
2725 }
2726
2727 int git_config_get_pathname(const char *key, const char **dest)
2728 {
2729 return repo_config_get_pathname(the_repository, key, dest);
2730 }
2731
2732 int git_config_get_expiry(const char *key, const char **output)
2733 {
2734 int ret = git_config_get_string(key, (char **)output);
2735 if (ret)
2736 return ret;
2737 if (strcmp(*output, "now")) {
2738 timestamp_t now = approxidate("now");
2739 if (approxidate(*output) >= now)
2740 git_die_config(key, _("Invalid %s: '%s'"), key, *output);
2741 }
2742 return ret;
2743 }
2744
2745 int git_config_get_expiry_in_days(const char *key, timestamp_t *expiry, timestamp_t now)
2746 {
2747 const char *expiry_string;
2748 intmax_t days;
2749 timestamp_t when;
2750
2751 if (git_config_get_string_tmp(key, &expiry_string))
2752 return 1; /* no such thing */
2753
2754 if (git_parse_signed(expiry_string, &days, maximum_signed_value_of_type(int))) {
2755 const int scale = 86400;
2756 *expiry = now - days * scale;
2757 return 0;
2758 }
2759
2760 if (!parse_expiry_date(expiry_string, &when)) {
2761 *expiry = when;
2762 return 0;
2763 }
2764 return -1; /* thing exists but cannot be parsed */
2765 }
2766
2767 int git_config_get_split_index(void)
2768 {
2769 int val;
2770
2771 if (!git_config_get_maybe_bool("core.splitindex", &val))
2772 return val;
2773
2774 return -1; /* default value */
2775 }
2776
2777 int git_config_get_max_percent_split_change(void)
2778 {
2779 int val = -1;
2780
2781 if (!git_config_get_int("splitindex.maxpercentchange", &val)) {
2782 if (0 <= val && val <= 100)
2783 return val;
2784
2785 return error(_("splitIndex.maxPercentChange value '%d' "
2786 "should be between 0 and 100"), val);
2787 }
2788
2789 return -1; /* default value */
2790 }
2791
2792 int git_config_get_index_threads(int *dest)
2793 {
2794 int is_bool, val;
2795
2796 val = git_env_ulong("GIT_TEST_INDEX_THREADS", 0);
2797 if (val) {
2798 *dest = val;
2799 return 0;
2800 }
2801
2802 if (!git_config_get_bool_or_int("index.threads", &is_bool, &val)) {
2803 if (is_bool)
2804 *dest = val ? 0 : 1;
2805 else
2806 *dest = val;
2807 return 0;
2808 }
2809
2810 return 1;
2811 }
2812
2813 NORETURN
2814 void git_die_config_linenr(const char *key, const char *filename, int linenr)
2815 {
2816 if (!filename)
2817 die(_("unable to parse '%s' from command-line config"), key);
2818 else
2819 die(_("bad config variable '%s' in file '%s' at line %d"),
2820 key, filename, linenr);
2821 }
2822
2823 NORETURN __attribute__((format(printf, 2, 3)))
2824 void git_die_config(const char *key, const char *err, ...)
2825 {
2826 const struct string_list *values;
2827 struct key_value_info *kv_info;
2828 report_fn error_fn = get_error_routine();
2829
2830 if (err) {
2831 va_list params;
2832 va_start(params, err);
2833 error_fn(err, params);
2834 va_end(params);
2835 }
2836 values = git_config_get_value_multi(key);
2837 kv_info = values->items[values->nr - 1].util;
2838 git_die_config_linenr(key, kv_info->filename, kv_info->linenr);
2839 }
2840
2841 /*
2842 * Find all the stuff for git_config_set() below.
2843 */
2844
2845 struct config_store_data {
2846 size_t baselen;
2847 char *key;
2848 int do_not_match;
2849 const char *fixed_value;
2850 regex_t *value_pattern;
2851 int multi_replace;
2852 struct {
2853 size_t begin, end;
2854 enum config_event_t type;
2855 int is_keys_section;
2856 } *parsed;
2857 unsigned int parsed_nr, parsed_alloc, *seen, seen_nr, seen_alloc;
2858 unsigned int key_seen:1, section_seen:1, is_keys_section:1;
2859 };
2860
2861 static void config_store_data_clear(struct config_store_data *store)
2862 {
2863 free(store->key);
2864 if (store->value_pattern != NULL &&
2865 store->value_pattern != CONFIG_REGEX_NONE) {
2866 regfree(store->value_pattern);
2867 free(store->value_pattern);
2868 }
2869 free(store->parsed);
2870 free(store->seen);
2871 memset(store, 0, sizeof(*store));
2872 }
2873
2874 static int matches(const char *key, const char *value,
2875 const struct config_store_data *store)
2876 {
2877 if (strcmp(key, store->key))
2878 return 0; /* not ours */
2879 if (store->fixed_value)
2880 return !strcmp(store->fixed_value, value);
2881 if (!store->value_pattern)
2882 return 1; /* always matches */
2883 if (store->value_pattern == CONFIG_REGEX_NONE)
2884 return 0; /* never matches */
2885
2886 return store->do_not_match ^
2887 (value && !regexec(store->value_pattern, value, 0, NULL, 0));
2888 }
2889
2890 static int store_aux_event(enum config_event_t type,
2891 size_t begin, size_t end, void *data)
2892 {
2893 struct config_store_data *store = data;
2894
2895 ALLOC_GROW(store->parsed, store->parsed_nr + 1, store->parsed_alloc);
2896 store->parsed[store->parsed_nr].begin = begin;
2897 store->parsed[store->parsed_nr].end = end;
2898 store->parsed[store->parsed_nr].type = type;
2899
2900 if (type == CONFIG_EVENT_SECTION) {
2901 int (*cmpfn)(const char *, const char *, size_t);
2902
2903 if (cf->var.len < 2 || cf->var.buf[cf->var.len - 1] != '.')
2904 return error(_("invalid section name '%s'"), cf->var.buf);
2905
2906 if (cf->subsection_case_sensitive)
2907 cmpfn = strncasecmp;
2908 else
2909 cmpfn = strncmp;
2910
2911 /* Is this the section we were looking for? */
2912 store->is_keys_section =
2913 store->parsed[store->parsed_nr].is_keys_section =
2914 cf->var.len - 1 == store->baselen &&
2915 !cmpfn(cf->var.buf, store->key, store->baselen);
2916 if (store->is_keys_section) {
2917 store->section_seen = 1;
2918 ALLOC_GROW(store->seen, store->seen_nr + 1,
2919 store->seen_alloc);
2920 store->seen[store->seen_nr] = store->parsed_nr;
2921 }
2922 }
2923
2924 store->parsed_nr++;
2925
2926 return 0;
2927 }
2928
2929 static int store_aux(const char *key, const char *value, void *cb)
2930 {
2931 struct config_store_data *store = cb;
2932
2933 if (store->key_seen) {
2934 if (matches(key, value, store)) {
2935 if (store->seen_nr == 1 && store->multi_replace == 0) {
2936 warning(_("%s has multiple values"), key);
2937 }
2938
2939 ALLOC_GROW(store->seen, store->seen_nr + 1,
2940 store->seen_alloc);
2941
2942 store->seen[store->seen_nr] = store->parsed_nr;
2943 store->seen_nr++;
2944 }
2945 } else if (store->is_keys_section) {
2946 /*
2947 * Do not increment matches yet: this may not be a match, but we
2948 * are in the desired section.
2949 */
2950 ALLOC_GROW(store->seen, store->seen_nr + 1, store->seen_alloc);
2951 store->seen[store->seen_nr] = store->parsed_nr;
2952 store->section_seen = 1;
2953
2954 if (matches(key, value, store)) {
2955 store->seen_nr++;
2956 store->key_seen = 1;
2957 }
2958 }
2959
2960 return 0;
2961 }
2962
2963 static int write_error(const char *filename)
2964 {
2965 error(_("failed to write new configuration file %s"), filename);
2966
2967 /* Same error code as "failed to rename". */
2968 return 4;
2969 }
2970
2971 static struct strbuf store_create_section(const char *key,
2972 const struct config_store_data *store)
2973 {
2974 const char *dot;
2975 size_t i;
2976 struct strbuf sb = STRBUF_INIT;
2977
2978 dot = memchr(key, '.', store->baselen);
2979 if (dot) {
2980 strbuf_addf(&sb, "[%.*s \"", (int)(dot - key), key);
2981 for (i = dot - key + 1; i < store->baselen; i++) {
2982 if (key[i] == '"' || key[i] == '\\')
2983 strbuf_addch(&sb, '\\');
2984 strbuf_addch(&sb, key[i]);
2985 }
2986 strbuf_addstr(&sb, "\"]\n");
2987 } else {
2988 strbuf_addch(&sb, '[');
2989 strbuf_add(&sb, key, store->baselen);
2990 strbuf_addstr(&sb, "]\n");
2991 }
2992
2993 return sb;
2994 }
2995
2996 static ssize_t write_section(int fd, const char *key,
2997 const struct config_store_data *store)
2998 {
2999 struct strbuf sb = store_create_section(key, store);
3000 ssize_t ret;
3001
3002 ret = write_in_full(fd, sb.buf, sb.len);
3003 strbuf_release(&sb);
3004
3005 return ret;
3006 }
3007
3008 static ssize_t write_pair(int fd, const char *key, const char *value,
3009 const struct config_store_data *store)
3010 {
3011 int i;
3012 ssize_t ret;
3013 const char *quote = "";
3014 struct strbuf sb = STRBUF_INIT;
3015
3016 /*
3017 * Check to see if the value needs to be surrounded with a dq pair.
3018 * Note that problematic characters are always backslash-quoted; this
3019 * check is about not losing leading or trailing SP and strings that
3020 * follow beginning-of-comment characters (i.e. ';' and '#') by the
3021 * configuration parser.
3022 */
3023 if (value[0] == ' ')
3024 quote = "\"";
3025 for (i = 0; value[i]; i++)
3026 if (value[i] == ';' || value[i] == '#')
3027 quote = "\"";
3028 if (i && value[i - 1] == ' ')
3029 quote = "\"";
3030
3031 strbuf_addf(&sb, "\t%s = %s", key + store->baselen + 1, quote);
3032
3033 for (i = 0; value[i]; i++)
3034 switch (value[i]) {
3035 case '\n':
3036 strbuf_addstr(&sb, "\\n");
3037 break;
3038 case '\t':
3039 strbuf_addstr(&sb, "\\t");
3040 break;
3041 case '"':
3042 case '\\':
3043 strbuf_addch(&sb, '\\');
3044 /* fallthrough */
3045 default:
3046 strbuf_addch(&sb, value[i]);
3047 break;
3048 }
3049 strbuf_addf(&sb, "%s\n", quote);
3050
3051 ret = write_in_full(fd, sb.buf, sb.len);
3052 strbuf_release(&sb);
3053
3054 return ret;
3055 }
3056
3057 /*
3058 * If we are about to unset the last key(s) in a section, and if there are
3059 * no comments surrounding (or included in) the section, we will want to
3060 * extend begin/end to remove the entire section.
3061 *
3062 * Note: the parameter `seen_ptr` points to the index into the store.seen
3063 * array. * This index may be incremented if a section has more than one
3064 * entry (which all are to be removed).
3065 */
3066 static void maybe_remove_section(struct config_store_data *store,
3067 size_t *begin_offset, size_t *end_offset,
3068 int *seen_ptr)
3069 {
3070 size_t begin;
3071 int i, seen, section_seen = 0;
3072
3073 /*
3074 * First, ensure that this is the first key, and that there are no
3075 * comments before the entry nor before the section header.
3076 */
3077 seen = *seen_ptr;
3078 for (i = store->seen[seen]; i > 0; i--) {
3079 enum config_event_t type = store->parsed[i - 1].type;
3080
3081 if (type == CONFIG_EVENT_COMMENT)
3082 /* There is a comment before this entry or section */
3083 return;
3084 if (type == CONFIG_EVENT_ENTRY) {
3085 if (!section_seen)
3086 /* This is not the section's first entry. */
3087 return;
3088 /* We encountered no comment before the section. */
3089 break;
3090 }
3091 if (type == CONFIG_EVENT_SECTION) {
3092 if (!store->parsed[i - 1].is_keys_section)
3093 break;
3094 section_seen = 1;
3095 }
3096 }
3097 begin = store->parsed[i].begin;
3098
3099 /*
3100 * Next, make sure that we are removing the last key(s) in the section,
3101 * and that there are no comments that are possibly about the current
3102 * section.
3103 */
3104 for (i = store->seen[seen] + 1; i < store->parsed_nr; i++) {
3105 enum config_event_t type = store->parsed[i].type;
3106
3107 if (type == CONFIG_EVENT_COMMENT)
3108 return;
3109 if (type == CONFIG_EVENT_SECTION) {
3110 if (store->parsed[i].is_keys_section)
3111 continue;
3112 break;
3113 }
3114 if (type == CONFIG_EVENT_ENTRY) {
3115 if (++seen < store->seen_nr &&
3116 i == store->seen[seen])
3117 /* We want to remove this entry, too */
3118 continue;
3119 /* There is another entry in this section. */
3120 return;
3121 }
3122 }
3123
3124 /*
3125 * We are really removing the last entry/entries from this section, and
3126 * there are no enclosed or surrounding comments. Remove the entire,
3127 * now-empty section.
3128 */
3129 *seen_ptr = seen;
3130 *begin_offset = begin;
3131 if (i < store->parsed_nr)
3132 *end_offset = store->parsed[i].begin;
3133 else
3134 *end_offset = store->parsed[store->parsed_nr - 1].end;
3135 }
3136
3137 int git_config_set_in_file_gently(const char *config_filename,
3138 const char *key, const char *value)
3139 {
3140 return git_config_set_multivar_in_file_gently(config_filename, key, value, NULL, 0);
3141 }
3142
3143 void git_config_set_in_file(const char *config_filename,
3144 const char *key, const char *value)
3145 {
3146 git_config_set_multivar_in_file(config_filename, key, value, NULL, 0);
3147 }
3148
3149 int git_config_set_gently(const char *key, const char *value)
3150 {
3151 return git_config_set_multivar_gently(key, value, NULL, 0);
3152 }
3153
3154 int repo_config_set_worktree_gently(struct repository *r,
3155 const char *key, const char *value)
3156 {
3157 /* Only use worktree-specific config if it is is already enabled. */
3158 if (repository_format_worktree_config) {
3159 char *file = repo_git_path(r, "config.worktree");
3160 int ret = git_config_set_multivar_in_file_gently(
3161 file, key, value, NULL, 0);
3162 free(file);
3163 return ret;
3164 }
3165 return repo_config_set_multivar_gently(r, key, value, NULL, 0);
3166 }
3167
3168 void git_config_set(const char *key, const char *value)
3169 {
3170 git_config_set_multivar(key, value, NULL, 0);
3171
3172 trace2_cmd_set_config(key, value);
3173 }
3174
3175 /*
3176 * If value==NULL, unset in (remove from) config,
3177 * if value_pattern!=NULL, disregard key/value pairs where value does not match.
3178 * if value_pattern==CONFIG_REGEX_NONE, do not match any existing values
3179 * (only add a new one)
3180 * if flags contains the CONFIG_FLAGS_MULTI_REPLACE flag, all matching
3181 * key/values are removed before a single new pair is written. If the
3182 * flag is not present, then replace only the first match.
3183 *
3184 * Returns 0 on success.
3185 *
3186 * This function does this:
3187 *
3188 * - it locks the config file by creating ".git/config.lock"
3189 *
3190 * - it then parses the config using store_aux() as validator to find
3191 * the position on the key/value pair to replace. If it is to be unset,
3192 * it must be found exactly once.
3193 *
3194 * - the config file is mmap()ed and the part before the match (if any) is
3195 * written to the lock file, then the changed part and the rest.
3196 *
3197 * - the config file is removed and the lock file rename()d to it.
3198 *
3199 */
3200 int git_config_set_multivar_in_file_gently(const char *config_filename,
3201 const char *key, const char *value,
3202 const char *value_pattern,
3203 unsigned flags)
3204 {
3205 int fd = -1, in_fd = -1;
3206 int ret;
3207 struct lock_file lock = LOCK_INIT;
3208 char *filename_buf = NULL;
3209 char *contents = NULL;
3210 size_t contents_sz;
3211 struct config_store_data store;
3212
3213 memset(&store, 0, sizeof(store));
3214
3215 /* parse-key returns negative; flip the sign to feed exit(3) */
3216 ret = 0 - git_config_parse_key(key, &store.key, &store.baselen);
3217 if (ret)
3218 goto out_free;
3219
3220 store.multi_replace = (flags & CONFIG_FLAGS_MULTI_REPLACE) != 0;
3221
3222 if (!config_filename)
3223 config_filename = filename_buf = git_pathdup("config");
3224
3225 /*
3226 * The lock serves a purpose in addition to locking: the new
3227 * contents of .git/config will be written into it.
3228 */
3229 fd = hold_lock_file_for_update(&lock, config_filename, 0);
3230 if (fd < 0) {
3231 error_errno(_("could not lock config file %s"), config_filename);
3232 ret = CONFIG_NO_LOCK;
3233 goto out_free;
3234 }
3235
3236 /*
3237 * If .git/config does not exist yet, write a minimal version.
3238 */
3239 in_fd = open(config_filename, O_RDONLY);
3240 if ( in_fd < 0 ) {
3241 if ( ENOENT != errno ) {
3242 error_errno(_("opening %s"), config_filename);
3243 ret = CONFIG_INVALID_FILE; /* same as "invalid config file" */
3244 goto out_free;
3245 }
3246 /* if nothing to unset, error out */
3247 if (!value) {
3248 ret = CONFIG_NOTHING_SET;
3249 goto out_free;
3250 }
3251
3252 free(store.key);
3253 store.key = xstrdup(key);
3254 if (write_section(fd, key, &store) < 0 ||
3255 write_pair(fd, key, value, &store) < 0)
3256 goto write_err_out;
3257 } else {
3258 struct stat st;
3259 size_t copy_begin, copy_end;
3260 int i, new_line = 0;
3261 struct config_options opts;
3262
3263 if (!value_pattern)
3264 store.value_pattern = NULL;
3265 else if (value_pattern == CONFIG_REGEX_NONE)
3266 store.value_pattern = CONFIG_REGEX_NONE;
3267 else if (flags & CONFIG_FLAGS_FIXED_VALUE)
3268 store.fixed_value = value_pattern;
3269 else {
3270 if (value_pattern[0] == '!') {
3271 store.do_not_match = 1;
3272 value_pattern++;
3273 } else
3274 store.do_not_match = 0;
3275
3276 store.value_pattern = (regex_t*)xmalloc(sizeof(regex_t));
3277 if (regcomp(store.value_pattern, value_pattern,
3278 REG_EXTENDED)) {
3279 error(_("invalid pattern: %s"), value_pattern);
3280 FREE_AND_NULL(store.value_pattern);
3281 ret = CONFIG_INVALID_PATTERN;
3282 goto out_free;
3283 }
3284 }
3285
3286 ALLOC_GROW(store.parsed, 1, store.parsed_alloc);
3287 store.parsed[0].end = 0;
3288
3289 memset(&opts, 0, sizeof(opts));
3290 opts.event_fn = store_aux_event;
3291 opts.event_fn_data = &store;
3292
3293 /*
3294 * After this, store.parsed will contain offsets of all the
3295 * parsed elements, and store.seen will contain a list of
3296 * matches, as indices into store.parsed.
3297 *
3298 * As a side effect, we make sure to transform only a valid
3299 * existing config file.
3300 */
3301 if (git_config_from_file_with_options(store_aux,
3302 config_filename,
3303 &store, &opts)) {
3304 error(_("invalid config file %s"), config_filename);
3305 ret = CONFIG_INVALID_FILE;
3306 goto out_free;
3307 }
3308
3309 /* if nothing to unset, or too many matches, error out */
3310 if ((store.seen_nr == 0 && value == NULL) ||
3311 (store.seen_nr > 1 && !store.multi_replace)) {
3312 ret = CONFIG_NOTHING_SET;
3313 goto out_free;
3314 }
3315
3316 if (fstat(in_fd, &st) == -1) {
3317 error_errno(_("fstat on %s failed"), config_filename);
3318 ret = CONFIG_INVALID_FILE;
3319 goto out_free;
3320 }
3321
3322 contents_sz = xsize_t(st.st_size);
3323 contents = xmmap_gently(NULL, contents_sz, PROT_READ,
3324 MAP_PRIVATE, in_fd, 0);
3325 if (contents == MAP_FAILED) {
3326 if (errno == ENODEV && S_ISDIR(st.st_mode))
3327 errno = EISDIR;
3328 error_errno(_("unable to mmap '%s'%s"),
3329 config_filename, mmap_os_err());
3330 ret = CONFIG_INVALID_FILE;
3331 contents = NULL;
3332 goto out_free;
3333 }
3334 close(in_fd);
3335 in_fd = -1;
3336
3337 if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
3338 error_errno(_("chmod on %s failed"), get_lock_file_path(&lock));
3339 ret = CONFIG_NO_WRITE;
3340 goto out_free;
3341 }
3342
3343 if (store.seen_nr == 0) {
3344 if (!store.seen_alloc) {
3345 /* Did not see key nor section */
3346 ALLOC_GROW(store.seen, 1, store.seen_alloc);
3347 store.seen[0] = store.parsed_nr
3348 - !!store.parsed_nr;
3349 }
3350 store.seen_nr = 1;
3351 }
3352
3353 for (i = 0, copy_begin = 0; i < store.seen_nr; i++) {
3354 size_t replace_end;
3355 int j = store.seen[i];
3356
3357 new_line = 0;
3358 if (!store.key_seen) {
3359 copy_end = store.parsed[j].end;
3360 /* include '\n' when copying section header */
3361 if (copy_end > 0 && copy_end < contents_sz &&
3362 contents[copy_end - 1] != '\n' &&
3363 contents[copy_end] == '\n')
3364 copy_end++;
3365 replace_end = copy_end;
3366 } else {
3367 replace_end = store.parsed[j].end;
3368 copy_end = store.parsed[j].begin;
3369 if (!value)
3370 maybe_remove_section(&store,
3371 &copy_end,
3372 &replace_end, &i);
3373 /*
3374 * Swallow preceding white-space on the same
3375 * line.
3376 */
3377 while (copy_end > 0 ) {
3378 char c = contents[copy_end - 1];
3379
3380 if (isspace(c) && c != '\n')
3381 copy_end--;
3382 else
3383 break;
3384 }
3385 }
3386
3387 if (copy_end > 0 && contents[copy_end-1] != '\n')
3388 new_line = 1;
3389
3390 /* write the first part of the config */
3391 if (copy_end > copy_begin) {
3392 if (write_in_full(fd, contents + copy_begin,
3393 copy_end - copy_begin) < 0)
3394 goto write_err_out;
3395 if (new_line &&
3396 write_str_in_full(fd, "\n") < 0)
3397 goto write_err_out;
3398 }
3399 copy_begin = replace_end;
3400 }
3401
3402 /* write the pair (value == NULL means unset) */
3403 if (value) {
3404 if (!store.section_seen) {
3405 if (write_section(fd, key, &store) < 0)
3406 goto write_err_out;
3407 }
3408 if (write_pair(fd, key, value, &store) < 0)
3409 goto write_err_out;
3410 }
3411
3412 /* write the rest of the config */
3413 if (copy_begin < contents_sz)
3414 if (write_in_full(fd, contents + copy_begin,
3415 contents_sz - copy_begin) < 0)
3416 goto write_err_out;
3417
3418 munmap(contents, contents_sz);
3419 contents = NULL;
3420 }
3421
3422 if (commit_lock_file(&lock) < 0) {
3423 error_errno(_("could not write config file %s"), config_filename);
3424 ret = CONFIG_NO_WRITE;
3425 goto out_free;
3426 }
3427
3428 ret = 0;
3429
3430 /* Invalidate the config cache */
3431 git_config_clear();
3432
3433 out_free:
3434 rollback_lock_file(&lock);
3435 free(filename_buf);
3436 if (contents)
3437 munmap(contents, contents_sz);
3438 if (in_fd >= 0)
3439 close(in_fd);
3440 config_store_data_clear(&store);
3441 return ret;
3442
3443 write_err_out:
3444 ret = write_error(get_lock_file_path(&lock));
3445 goto out_free;
3446
3447 }
3448
3449 void git_config_set_multivar_in_file(const char *config_filename,
3450 const char *key, const char *value,
3451 const char *value_pattern, unsigned flags)
3452 {
3453 if (!git_config_set_multivar_in_file_gently(config_filename, key, value,
3454 value_pattern, flags))
3455 return;
3456 if (value)
3457 die(_("could not set '%s' to '%s'"), key, value);
3458 else
3459 die(_("could not unset '%s'"), key);
3460 }
3461
3462 int git_config_set_multivar_gently(const char *key, const char *value,
3463 const char *value_pattern, unsigned flags)
3464 {
3465 return repo_config_set_multivar_gently(the_repository, key, value,
3466 value_pattern, flags);
3467 }
3468
3469 int repo_config_set_multivar_gently(struct repository *r, const char *key,
3470 const char *value,
3471 const char *value_pattern, unsigned flags)
3472 {
3473 char *file = repo_git_path(r, "config");
3474 int res = git_config_set_multivar_in_file_gently(file,
3475 key, value,
3476 value_pattern,
3477 flags);
3478 free(file);
3479 return res;
3480 }
3481
3482 void git_config_set_multivar(const char *key, const char *value,
3483 const char *value_pattern, unsigned flags)
3484 {
3485 git_config_set_multivar_in_file(git_path("config"),
3486 key, value, value_pattern,
3487 flags);
3488 }
3489
3490 static int section_name_match (const char *buf, const char *name)
3491 {
3492 int i = 0, j = 0, dot = 0;
3493 if (buf[i] != '[')
3494 return 0;
3495 for (i = 1; buf[i] && buf[i] != ']'; i++) {
3496 if (!dot && isspace(buf[i])) {
3497 dot = 1;
3498 if (name[j++] != '.')
3499 break;
3500 for (i++; isspace(buf[i]); i++)
3501 ; /* do nothing */
3502 if (buf[i] != '"')
3503 break;
3504 continue;
3505 }
3506 if (buf[i] == '\\' && dot)
3507 i++;
3508 else if (buf[i] == '"' && dot) {
3509 for (i++; isspace(buf[i]); i++)
3510 ; /* do_nothing */
3511 break;
3512 }
3513 if (buf[i] != name[j++])
3514 break;
3515 }
3516 if (buf[i] == ']' && name[j] == 0) {
3517 /*
3518 * We match, now just find the right length offset by
3519 * gobbling up any whitespace after it, as well
3520 */
3521 i++;
3522 for (; buf[i] && isspace(buf[i]); i++)
3523 ; /* do nothing */
3524 return i;
3525 }
3526 return 0;
3527 }
3528
3529 static int section_name_is_ok(const char *name)
3530 {
3531 /* Empty section names are bogus. */
3532 if (!*name)
3533 return 0;
3534
3535 /*
3536 * Before a dot, we must be alphanumeric or dash. After the first dot,
3537 * anything goes, so we can stop checking.
3538 */
3539 for (; *name && *name != '.'; name++)
3540 if (*name != '-' && !isalnum(*name))
3541 return 0;
3542 return 1;
3543 }
3544
3545 /* if new_name == NULL, the section is removed instead */
3546 static int git_config_copy_or_rename_section_in_file(const char *config_filename,
3547 const char *old_name,
3548 const char *new_name, int copy)
3549 {
3550 int ret = 0, remove = 0;
3551 char *filename_buf = NULL;
3552 struct lock_file lock = LOCK_INIT;
3553 int out_fd;
3554 char buf[1024];
3555 FILE *config_file = NULL;
3556 struct stat st;
3557 struct strbuf copystr = STRBUF_INIT;
3558 struct config_store_data store;
3559
3560 memset(&store, 0, sizeof(store));
3561
3562 if (new_name && !section_name_is_ok(new_name)) {
3563 ret = error(_("invalid section name: %s"), new_name);
3564 goto out_no_rollback;
3565 }
3566
3567 if (!config_filename)
3568 config_filename = filename_buf = git_pathdup("config");
3569
3570 out_fd = hold_lock_file_for_update(&lock, config_filename, 0);
3571 if (out_fd < 0) {
3572 ret = error(_("could not lock config file %s"), config_filename);
3573 goto out;
3574 }
3575
3576 if (!(config_file = fopen(config_filename, "rb"))) {
3577 ret = warn_on_fopen_errors(config_filename);
3578 if (ret)
3579 goto out;
3580 /* no config file means nothing to rename, no error */
3581 goto commit_and_out;
3582 }
3583
3584 if (fstat(fileno(config_file), &st) == -1) {
3585 ret = error_errno(_("fstat on %s failed"), config_filename);
3586 goto out;
3587 }
3588
3589 if (chmod(get_lock_file_path(&lock), st.st_mode & 07777) < 0) {
3590 ret = error_errno(_("chmod on %s failed"),
3591 get_lock_file_path(&lock));
3592 goto out;
3593 }
3594
3595 while (fgets(buf, sizeof(buf), config_file)) {
3596 unsigned i;
3597 int length;
3598 int is_section = 0;
3599 char *output = buf;
3600 for (i = 0; buf[i] && isspace(buf[i]); i++)
3601 ; /* do nothing */
3602 if (buf[i] == '[') {
3603 /* it's a section */
3604 int offset;
3605 is_section = 1;
3606
3607 /*
3608 * When encountering a new section under -c we
3609 * need to flush out any section we're already
3610 * coping and begin anew. There might be
3611 * multiple [branch "$name"] sections.
3612 */
3613 if (copystr.len > 0) {
3614 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
3615 ret = write_error(get_lock_file_path(&lock));
3616 goto out;
3617 }
3618 strbuf_reset(&copystr);
3619 }
3620
3621 offset = section_name_match(&buf[i], old_name);
3622 if (offset > 0) {
3623 ret++;
3624 if (!new_name) {
3625 remove = 1;
3626 continue;
3627 }
3628 store.baselen = strlen(new_name);
3629 if (!copy) {
3630 if (write_section(out_fd, new_name, &store) < 0) {
3631 ret = write_error(get_lock_file_path(&lock));
3632 goto out;
3633 }
3634 /*
3635 * We wrote out the new section, with
3636 * a newline, now skip the old
3637 * section's length
3638 */
3639 output += offset + i;
3640 if (strlen(output) > 0) {
3641 /*
3642 * More content means there's
3643 * a declaration to put on the
3644 * next line; indent with a
3645 * tab
3646 */
3647 output -= 1;
3648 output[0] = '\t';
3649 }
3650 } else {
3651 copystr = store_create_section(new_name, &store);
3652 }
3653 }
3654 remove = 0;
3655 }
3656 if (remove)
3657 continue;
3658 length = strlen(output);
3659
3660 if (!is_section && copystr.len > 0) {
3661 strbuf_add(&copystr, output, length);
3662 }
3663
3664 if (write_in_full(out_fd, output, length) < 0) {
3665 ret = write_error(get_lock_file_path(&lock));
3666 goto out;
3667 }
3668 }
3669
3670 /*
3671 * Copy a trailing section at the end of the config, won't be
3672 * flushed by the usual "flush because we have a new section
3673 * logic in the loop above.
3674 */
3675 if (copystr.len > 0) {
3676 if (write_in_full(out_fd, copystr.buf, copystr.len) < 0) {
3677 ret = write_error(get_lock_file_path(&lock));
3678 goto out;
3679 }
3680 strbuf_reset(&copystr);
3681 }
3682
3683 fclose(config_file);
3684 config_file = NULL;
3685 commit_and_out:
3686 if (commit_lock_file(&lock) < 0)
3687 ret = error_errno(_("could not write config file %s"),
3688 config_filename);
3689 out:
3690 if (config_file)
3691 fclose(config_file);
3692 rollback_lock_file(&lock);
3693 out_no_rollback:
3694 free(filename_buf);
3695 config_store_data_clear(&store);
3696 return ret;
3697 }
3698
3699 int git_config_rename_section_in_file(const char *config_filename,
3700 const char *old_name, const char *new_name)
3701 {
3702 return git_config_copy_or_rename_section_in_file(config_filename,
3703 old_name, new_name, 0);
3704 }
3705
3706 int git_config_rename_section(const char *old_name, const char *new_name)
3707 {
3708 return git_config_rename_section_in_file(NULL, old_name, new_name);
3709 }
3710
3711 int git_config_copy_section_in_file(const char *config_filename,
3712 const char *old_name, const char *new_name)
3713 {
3714 return git_config_copy_or_rename_section_in_file(config_filename,
3715 old_name, new_name, 1);
3716 }
3717
3718 int git_config_copy_section(const char *old_name, const char *new_name)
3719 {
3720 return git_config_copy_section_in_file(NULL, old_name, new_name);
3721 }
3722
3723 /*
3724 * Call this to report error for your variable that should not
3725 * get a boolean value (i.e. "[my] var" means "true").
3726 */
3727 #undef config_error_nonbool
3728 int config_error_nonbool(const char *var)
3729 {
3730 return error(_("missing value for '%s'"), var);
3731 }
3732
3733 int parse_config_key(const char *var,
3734 const char *section,
3735 const char **subsection, size_t *subsection_len,
3736 const char **key)
3737 {
3738 const char *dot;
3739
3740 /* Does it start with "section." ? */
3741 if (!skip_prefix(var, section, &var) || *var != '.')
3742 return -1;
3743
3744 /*
3745 * Find the key; we don't know yet if we have a subsection, but we must
3746 * parse backwards from the end, since the subsection may have dots in
3747 * it, too.
3748 */
3749 dot = strrchr(var, '.');
3750 *key = dot + 1;
3751
3752 /* Did we have a subsection at all? */
3753 if (dot == var) {
3754 if (subsection) {
3755 *subsection = NULL;
3756 *subsection_len = 0;
3757 }
3758 }
3759 else {
3760 if (!subsection)
3761 return -1;
3762 *subsection = var + 1;
3763 *subsection_len = dot - *subsection;
3764 }
3765
3766 return 0;
3767 }
3768
3769 const char *current_config_origin_type(void)
3770 {
3771 int type;
3772 if (current_config_kvi)
3773 type = current_config_kvi->origin_type;
3774 else if(cf)
3775 type = cf->origin_type;
3776 else
3777 BUG("current_config_origin_type called outside config callback");
3778
3779 switch (type) {
3780 case CONFIG_ORIGIN_BLOB:
3781 return "blob";
3782 case CONFIG_ORIGIN_FILE:
3783 return "file";
3784 case CONFIG_ORIGIN_STDIN:
3785 return "standard input";
3786 case CONFIG_ORIGIN_SUBMODULE_BLOB:
3787 return "submodule-blob";
3788 case CONFIG_ORIGIN_CMDLINE:
3789 return "command line";
3790 default:
3791 BUG("unknown config origin type");
3792 }
3793 }
3794
3795 const char *config_scope_name(enum config_scope scope)
3796 {
3797 switch (scope) {
3798 case CONFIG_SCOPE_SYSTEM:
3799 return "system";
3800 case CONFIG_SCOPE_GLOBAL:
3801 return "global";
3802 case CONFIG_SCOPE_LOCAL:
3803 return "local";
3804 case CONFIG_SCOPE_WORKTREE:
3805 return "worktree";
3806 case CONFIG_SCOPE_COMMAND:
3807 return "command";
3808 case CONFIG_SCOPE_SUBMODULE:
3809 return "submodule";
3810 default:
3811 return "unknown";
3812 }
3813 }
3814
3815 const char *current_config_name(void)
3816 {
3817 const char *name;
3818 if (current_config_kvi)
3819 name = current_config_kvi->filename;
3820 else if (cf)
3821 name = cf->name;
3822 else
3823 BUG("current_config_name called outside config callback");
3824 return name ? name : "";
3825 }
3826
3827 enum config_scope current_config_scope(void)
3828 {
3829 if (current_config_kvi)
3830 return current_config_kvi->scope;
3831 else
3832 return current_parsing_scope;
3833 }
3834
3835 int current_config_line(void)
3836 {
3837 if (current_config_kvi)
3838 return current_config_kvi->linenr;
3839 else
3840 return cf->linenr;
3841 }
3842
3843 int lookup_config(const char **mapping, int nr_mapping, const char *var)
3844 {
3845 int i;
3846
3847 for (i = 0; i < nr_mapping; i++) {
3848 const char *name = mapping[i];
3849
3850 if (name && !strcasecmp(var, name))
3851 return i;
3852 }
3853 return -1;
3854 }