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