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