]> git.ipfire.org Git - thirdparty/git.git/blame - config.c
Introduce git_etc_gitconfig() that encapsulates access of ETC_GITCONFIG.
[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
LT
8#include "cache.h"
9
10#define MAXNAME (256)
11
12static FILE *config_file;
0dccc7dc 13static const char *config_file_name;
17712991 14static int config_linenr;
960ccca6
DH
15static int zlib_compression_seen;
16
17712991
LT
17static int get_next_char(void)
18{
19 int c;
20 FILE *f;
21
22 c = '\n';
23 if ((f = config_file) != NULL) {
24 c = fgetc(f);
db2c075d
JH
25 if (c == '\r') {
26 /* DOS like systems */
27 c = fgetc(f);
28 if (c != '\n') {
29 ungetc(c, f);
30 c = '\r';
31 }
32 }
17712991
LT
33 if (c == '\n')
34 config_linenr++;
35 if (c == EOF) {
36 config_file = NULL;
37 c = '\n';
38 }
39 }
40 return c;
41}
42
43static char *parse_value(void)
44{
45 static char value[1024];
46 int quote = 0, comment = 0, len = 0, space = 0;
47
48 for (;;) {
49 int c = get_next_char();
50 if (len >= sizeof(value))
51 return NULL;
52 if (c == '\n') {
53 if (quote)
54 return NULL;
55 value[len] = 0;
56 return value;
57 }
58 if (comment)
59 continue;
60 if (isspace(c) && !quote) {
61 space = 1;
62 continue;
63 }
7ebdba61
JS
64 if (!quote) {
65 if (c == ';' || c == '#') {
66 comment = 1;
67 continue;
68 }
69 }
17712991
LT
70 if (space) {
71 if (len)
72 value[len++] = ' ';
73 space = 0;
74 }
75 if (c == '\\') {
76 c = get_next_char();
77 switch (c) {
78 case '\n':
79 continue;
80 case 't':
81 c = '\t';
82 break;
83 case 'b':
84 c = '\b';
85 break;
86 case 'n':
87 c = '\n';
88 break;
5cbb401d
LT
89 /* Some characters escape as themselves */
90 case '\\': case '"':
91 break;
92 /* Reject unknown escape sequences */
93 default:
94 return NULL;
17712991
LT
95 }
96 value[len++] = c;
97 continue;
98 }
99 if (c == '"') {
100 quote = 1-quote;
101 continue;
102 }
17712991
LT
103 value[len++] = c;
104 }
105}
106
38c5afa8
LT
107static inline int iskeychar(int c)
108{
109 return isalnum(c) || c == '-';
110}
111
17712991
LT
112static int get_value(config_fn_t fn, char *name, unsigned int len)
113{
114 int c;
115 char *value;
116
117 /* Get the full name */
118 for (;;) {
119 c = get_next_char();
120 if (c == EOF)
121 break;
38c5afa8 122 if (!iskeychar(c))
17712991
LT
123 break;
124 name[len++] = tolower(c);
125 if (len >= MAXNAME)
126 return -1;
127 }
128 name[len] = 0;
129 while (c == ' ' || c == '\t')
130 c = get_next_char();
131
132 value = NULL;
133 if (c != '\n') {
134 if (c != '=')
135 return -1;
136 value = parse_value();
137 if (!value)
138 return -1;
139 }
140 return fn(name, value);
141}
142
d14f7764
LT
143static int get_extended_base_var(char *name, int baselen, int c)
144{
145 do {
146 if (c == '\n')
147 return -1;
148 c = get_next_char();
149 } while (isspace(c));
150
151 /* We require the format to be '[base "extension"]' */
152 if (c != '"')
153 return -1;
154 name[baselen++] = '.';
155
156 for (;;) {
157 int c = get_next_char();
158 if (c == '\n')
159 return -1;
160 if (c == '"')
161 break;
162 if (c == '\\') {
163 c = get_next_char();
164 if (c == '\n')
165 return -1;
166 }
167 name[baselen++] = c;
168 if (baselen > MAXNAME / 2)
169 return -1;
170 }
171
172 /* Final ']' */
173 if (get_next_char() != ']')
174 return -1;
175 return baselen;
176}
177
17712991
LT
178static int get_base_var(char *name)
179{
180 int baselen = 0;
181
182 for (;;) {
183 int c = get_next_char();
184 if (c == EOF)
185 return -1;
186 if (c == ']')
187 return baselen;
d14f7764
LT
188 if (isspace(c))
189 return get_extended_base_var(name, baselen, c);
38c5afa8 190 if (!iskeychar(c) && c != '.')
17712991
LT
191 return -1;
192 if (baselen > MAXNAME / 2)
193 return -1;
194 name[baselen++] = tolower(c);
195 }
196}
197
198static int git_parse_file(config_fn_t fn)
199{
200 int comment = 0;
201 int baselen = 0;
202 static char var[MAXNAME];
203
204 for (;;) {
205 int c = get_next_char();
206 if (c == '\n') {
207 /* EOF? */
208 if (!config_file)
209 return 0;
210 comment = 0;
211 continue;
212 }
213 if (comment || isspace(c))
214 continue;
215 if (c == '#' || c == ';') {
216 comment = 1;
217 continue;
218 }
219 if (c == '[') {
220 baselen = get_base_var(var);
221 if (baselen <= 0)
222 break;
223 var[baselen++] = '.';
224 var[baselen] = 0;
225 continue;
226 }
227 if (!isalpha(c))
228 break;
128af9d1 229 var[baselen] = tolower(c);
17712991
LT
230 if (get_value(fn, var, baselen+1) < 0)
231 break;
232 }
4f629539 233 die("bad config file line %d in %s", config_linenr, config_file_name);
17712991
LT
234}
235
0b87b6e0
BD
236static unsigned long get_unit_factor(const char *end)
237{
238 if (!*end)
239 return 1;
240 else if (!strcasecmp(end, "k"))
241 return 1024;
242 else if (!strcasecmp(end, "m"))
243 return 1024 * 1024;
244 else if (!strcasecmp(end, "g"))
245 return 1024 * 1024 * 1024;
246 die("unknown unit: '%s'", end);
247}
248
249int git_parse_long(const char *value, long *ret)
250{
251 if (value && *value) {
252 char *end;
253 long val = strtol(value, &end, 0);
254 *ret = val * get_unit_factor(end);
255 return 1;
256 }
257 return 0;
258}
259
260int git_parse_ulong(const char *value, unsigned long *ret)
17712991
LT
261{
262 if (value && *value) {
263 char *end;
0b87b6e0
BD
264 unsigned long val = strtoul(value, &end, 0);
265 *ret = val * get_unit_factor(end);
266 return 1;
17712991 267 }
0b87b6e0
BD
268 return 0;
269}
270
271int git_config_int(const char *name, const char *value)
272{
273 long ret;
274 if (!git_parse_long(value, &ret))
275 die("bad config value for '%s' in %s", name, config_file_name);
276 return ret;
277}
278
279unsigned long git_config_ulong(const char *name, const char *value)
280{
281 unsigned long ret;
282 if (!git_parse_ulong(value, &ret))
283 die("bad config value for '%s' in %s", name, config_file_name);
284 return ret;
17712991
LT
285}
286
287int git_config_bool(const char *name, const char *value)
288{
289 if (!value)
290 return 1;
291 if (!*value)
292 return 0;
624314fd 293 if (!strcasecmp(value, "true") || !strcasecmp(value, "yes"))
17712991 294 return 1;
624314fd 295 if (!strcasecmp(value, "false") || !strcasecmp(value, "no"))
17712991
LT
296 return 0;
297 return git_config_int(name, value) != 0;
298}
299
300int git_default_config(const char *var, const char *value)
301{
302 /* This needs a better name */
303 if (!strcmp(var, "core.filemode")) {
304 trust_executable_bit = git_config_bool(var, value);
305 return 0;
306 }
307
9378c161
JH
308 if (!strcmp(var, "core.quotepath")) {
309 quote_path_fully = git_config_bool(var, value);
310 return 0;
311 }
312
78a8d641
JS
313 if (!strcmp(var, "core.symlinks")) {
314 has_symlinks = git_config_bool(var, value);
315 return 0;
316 }
317
7d1864ce
JH
318 if (!strcmp(var, "core.bare")) {
319 is_bare_repository_cfg = git_config_bool(var, value);
320 return 0;
321 }
322
5f73076c
JH
323 if (!strcmp(var, "core.ignorestat")) {
324 assume_unchanged = git_config_bool(var, value);
325 return 0;
326 }
327
e388c738
JH
328 if (!strcmp(var, "core.prefersymlinkrefs")) {
329 prefer_symlink_refs = git_config_bool(var, value);
f8348be3
JS
330 return 0;
331 }
332
6de08ae6
SP
333 if (!strcmp(var, "core.logallrefupdates")) {
334 log_all_ref_updates = git_config_bool(var, value);
335 return 0;
336 }
337
2f8acdb3
JH
338 if (!strcmp(var, "core.warnambiguousrefs")) {
339 warn_ambiguous_refs = git_config_bool(var, value);
340 return 0;
341 }
342
960ccca6 343 if (!strcmp(var, "core.loosecompression")) {
12f6c308
JBH
344 int level = git_config_int(var, value);
345 if (level == -1)
346 level = Z_DEFAULT_COMPRESSION;
347 else if (level < 0 || level > Z_BEST_COMPRESSION)
348 die("bad zlib compression level %d", level);
349 zlib_compression_level = level;
960ccca6
DH
350 zlib_compression_seen = 1;
351 return 0;
352 }
353
354 if (!strcmp(var, "core.compression")) {
355 int level = git_config_int(var, value);
356 if (level == -1)
357 level = Z_DEFAULT_COMPRESSION;
358 else if (level < 0 || level > Z_BEST_COMPRESSION)
359 die("bad zlib compression level %d", level);
360 core_compression_level = level;
361 core_compression_seen = 1;
362 if (!zlib_compression_seen)
363 zlib_compression_level = level;
12f6c308
JBH
364 return 0;
365 }
366
60bb8b14 367 if (!strcmp(var, "core.packedgitwindowsize")) {
5faaf246 368 int pgsz_x2 = getpagesize() * 2;
60bb8b14 369 packed_git_window_size = git_config_int(var, value);
5faaf246
JH
370
371 /* This value must be multiple of (pagesize * 2) */
372 packed_git_window_size /= pgsz_x2;
373 if (packed_git_window_size < 1)
374 packed_git_window_size = 1;
375 packed_git_window_size *= pgsz_x2;
60bb8b14
SP
376 return 0;
377 }
378
77ccc5bb
SP
379 if (!strcmp(var, "core.packedgitlimit")) {
380 packed_git_limit = git_config_int(var, value);
381 return 0;
382 }
383
18bdec11
SP
384 if (!strcmp(var, "core.deltabasecachelimit")) {
385 delta_base_cache_limit = git_config_int(var, value);
386 return 0;
387 }
388
6c510bee 389 if (!strcmp(var, "core.autocrlf")) {
d7f46334
LT
390 if (value && !strcasecmp(value, "input")) {
391 auto_crlf = -1;
392 return 0;
393 }
6c510bee
LT
394 auto_crlf = git_config_bool(var, value);
395 return 0;
396 }
397
e1b10391 398 if (!strcmp(var, "user.name")) {
817151e6 399 strlcpy(git_default_name, value, sizeof(git_default_name));
e1b10391
LT
400 return 0;
401 }
402
403 if (!strcmp(var, "user.email")) {
817151e6 404 strlcpy(git_default_email, value, sizeof(git_default_email));
e1b10391
LT
405 return 0;
406 }
407
4e72dcec 408 if (!strcmp(var, "i18n.commitencoding")) {
dbb2b41a 409 git_commit_encoding = xstrdup(value);
4e72dcec
JH
410 return 0;
411 }
412
d2c11a38 413 if (!strcmp(var, "i18n.logoutputencoding")) {
dbb2b41a 414 git_log_output_encoding = xstrdup(value);
d2c11a38
JH
415 return 0;
416 }
417
418
a159ca0c 419 if (!strcmp(var, "pager.color") || !strcmp(var, "color.pager")) {
aa086eb8
ML
420 pager_use_color = git_config_bool(var,value);
421 return 0;
422 }
423
54adf370
BG
424 if (!strcmp(var, "core.pager")) {
425 pager_program = xstrdup(value);
426 return 0;
427 }
428
4d87b9c5
JS
429 if (!strcmp(var, "core.editor")) {
430 editor_program = xstrdup(value);
431 return 0;
432 }
433
039bc64e
JH
434 if (!strcmp(var, "core.excludesfile")) {
435 if (!value)
436 die("core.excludesfile without value");
437 excludes_file = xstrdup(value);
438 return 0;
439 }
440
1ab661dd 441 /* Add other config variables here and to Documentation/config.txt. */
17712991
LT
442 return 0;
443}
444
4f629539 445int git_config_from_file(config_fn_t fn, const char *filename)
17712991
LT
446{
447 int ret;
4f629539 448 FILE *f = fopen(filename, "r");
17712991
LT
449
450 ret = -1;
451 if (f) {
452 config_file = f;
4f629539 453 config_file_name = filename;
17712991
LT
454 config_linenr = 1;
455 ret = git_parse_file(fn);
456 fclose(f);
4f629539 457 config_file_name = NULL;
17712991
LT
458 }
459 return ret;
460}
10bea152 461
506b17b1
JS
462const char *git_etc_gitconfig(void)
463{
464 return ETC_GITCONFIG;
465}
466
4f629539
JH
467int git_config(config_fn_t fn)
468{
5f1a63e0
JS
469 int ret = 0;
470 char *repo_config = NULL;
471 const char *home = NULL, *filename;
472
473 /* $GIT_CONFIG makes git read _only_ the given config file,
474 * $GIT_CONFIG_LOCAL will make it process it in addition to the
475 * global config file, the same way it would the per-repository
476 * config file otherwise. */
d4ebc36c 477 filename = getenv(CONFIG_ENVIRONMENT);
5f1a63e0 478 if (!filename) {
506b17b1
JS
479 if (!access(git_etc_gitconfig(), R_OK))
480 ret += git_config_from_file(fn, git_etc_gitconfig());
5f1a63e0 481 home = getenv("HOME");
d4ebc36c 482 filename = getenv(CONFIG_LOCAL_ENVIRONMENT);
5f1a63e0 483 if (!filename)
9befac47 484 filename = repo_config = xstrdup(git_path("config"));
7f29f7a9 485 }
5f1a63e0
JS
486
487 if (home) {
9befac47 488 char *user_config = xstrdup(mkpath("%s/.gitconfig", home));
e33d0611 489 if (!access(user_config, R_OK))
5f1a63e0
JS
490 ret = git_config_from_file(fn, user_config);
491 free(user_config);
492 }
493
494 ret += git_config_from_file(fn, filename);
4cac42b1 495 free(repo_config);
5f1a63e0 496 return ret;
4f629539
JH
497}
498
10bea152
JS
499/*
500 * Find all the stuff for git_config_set() below.
501 */
4ddba79d
JS
502
503#define MAX_MATCHES 512
504
10bea152
JS
505static struct {
506 int baselen;
507 char* key;
f98d863d 508 int do_not_match;
10bea152 509 regex_t* value_regex;
4ddba79d 510 int multi_replace;
dc49cd76 511 size_t offset[MAX_MATCHES];
10bea152
JS
512 enum { START, SECTION_SEEN, SECTION_END_SEEN, KEY_SEEN } state;
513 int seen;
514} store;
515
f98d863d
JS
516static int matches(const char* key, const char* value)
517{
518 return !strcmp(key, store.key) &&
519 (store.value_regex == NULL ||
520 (store.do_not_match ^
521 !regexec(store.value_regex, value, 0, NULL, 0)));
522}
523
10bea152
JS
524static int store_aux(const char* key, const char* value)
525{
ae9ee41d
JH
526 const char *ep;
527 size_t section_len;
528
10bea152
JS
529 switch (store.state) {
530 case KEY_SEEN:
f98d863d 531 if (matches(key, value)) {
4ddba79d 532 if (store.seen == 1 && store.multi_replace == 0) {
10bea152
JS
533 fprintf(stderr,
534 "Warning: %s has multiple values\n",
535 key);
4ddba79d
JS
536 } else if (store.seen >= MAX_MATCHES) {
537 fprintf(stderr, "Too many matches\n");
538 return 1;
10bea152 539 }
4ddba79d
JS
540
541 store.offset[store.seen] = ftell(config_file);
10bea152
JS
542 store.seen++;
543 }
544 break;
545 case SECTION_SEEN:
ae9ee41d
JH
546 /*
547 * What we are looking for is in store.key (both
548 * section and var), and its section part is baselen
549 * long. We found key (again, both section and var).
550 * We would want to know if this key is in the same
551 * section as what we are looking for. We already
552 * know we are in the same section as what should
553 * hold store.key.
554 */
555 ep = strrchr(key, '.');
556 section_len = ep - key;
557
558 if ((section_len != store.baselen) ||
559 memcmp(key, store.key, section_len+1)) {
10bea152
JS
560 store.state = SECTION_END_SEEN;
561 break;
ae9ee41d
JH
562 }
563
564 /*
565 * Do not increment matches: this is no match, but we
566 * just made sure we are in the desired section.
567 */
568 store.offset[store.seen] = ftell(config_file);
10bea152
JS
569 /* fallthru */
570 case SECTION_END_SEEN:
571 case START:
f98d863d 572 if (matches(key, value)) {
4ddba79d 573 store.offset[store.seen] = ftell(config_file);
10bea152
JS
574 store.state = KEY_SEEN;
575 store.seen++;
d14f7764
LT
576 } else {
577 if (strrchr(key, '.') - key == store.baselen &&
bdf0ef08 578 !strncmp(key, store.key, store.baselen)) {
93ddef3e 579 store.state = SECTION_SEEN;
bdf0ef08 580 store.offset[store.seen] = ftell(config_file);
d14f7764 581 }
bdf0ef08 582 }
10bea152
JS
583 }
584 return 0;
585}
586
b79d18c9 587static int write_error(void)
480c9e52
AW
588{
589 fprintf(stderr, "Failed to write new configuration file\n");
590
591 /* Same error code as "failed to rename". */
592 return 4;
593}
594
595static int store_write_section(int fd, const char* key)
10bea152 596{
d14f7764
LT
597 const char *dot = strchr(key, '.');
598 int len1 = store.baselen, len2 = -1;
599
600 dot = strchr(key, '.');
601 if (dot) {
602 int dotlen = dot - key;
603 if (dotlen < len1) {
604 len2 = len1 - dotlen - 1;
605 len1 = dotlen;
606 }
607 }
608
480c9e52
AW
609 if (write_in_full(fd, "[", 1) != 1 ||
610 write_in_full(fd, key, len1) != len1)
611 return 0;
d14f7764 612 if (len2 >= 0) {
480c9e52
AW
613 if (write_in_full(fd, " \"", 2) != 2)
614 return 0;
d14f7764
LT
615 while (--len2 >= 0) {
616 unsigned char c = *++dot;
617 if (c == '"')
480c9e52
AW
618 if (write_in_full(fd, "\\", 1) != 1)
619 return 0;
620 if (write_in_full(fd, &c, 1) != 1)
621 return 0;
d14f7764 622 }
480c9e52
AW
623 if (write_in_full(fd, "\"", 1) != 1)
624 return 0;
d14f7764 625 }
480c9e52
AW
626 if (write_in_full(fd, "]\n", 2) != 2)
627 return 0;
628
629 return 1;
10bea152
JS
630}
631
480c9e52 632static int store_write_pair(int fd, const char* key, const char* value)
10bea152
JS
633{
634 int i;
480c9e52 635 int length = strlen(key+store.baselen+1);
cdd4fb15
BG
636 int quote = 0;
637
638 /* Check to see if the value needs to be quoted. */
639 if (value[0] == ' ')
640 quote = 1;
641 for (i = 0; value[i]; i++)
642 if (value[i] == ';' || value[i] == '#')
643 quote = 1;
644 if (value[i-1] == ' ')
645 quote = 1;
10bea152 646
480c9e52
AW
647 if (write_in_full(fd, "\t", 1) != 1 ||
648 write_in_full(fd, key+store.baselen+1, length) != length ||
649 write_in_full(fd, " = ", 3) != 3)
650 return 0;
cdd4fb15
BG
651 if (quote && write_in_full(fd, "\"", 1) != 1)
652 return 0;
10bea152
JS
653 for (i = 0; value[i]; i++)
654 switch (value[i]) {
480c9e52
AW
655 case '\n':
656 if (write_in_full(fd, "\\n", 2) != 2)
657 return 0;
658 break;
659 case '\t':
660 if (write_in_full(fd, "\\t", 2) != 2)
661 return 0;
662 break;
663 case '"':
664 case '\\':
665 if (write_in_full(fd, "\\", 1) != 1)
666 return 0;
667 default:
668 if (write_in_full(fd, value+i, 1) != 1)
669 return 0;
670 break;
671 }
cdd4fb15
BG
672 if (quote && write_in_full(fd, "\"", 1) != 1)
673 return 0;
480c9e52
AW
674 if (write_in_full(fd, "\n", 1) != 1)
675 return 0;
676 return 1;
10bea152
JS
677}
678
dc49cd76
SP
679static ssize_t find_beginning_of_line(const char* contents, size_t size,
680 size_t offset_, int* found_bracket)
4ddba79d 681{
dc49cd76
SP
682 size_t equal_offset = size, bracket_offset = size;
683 ssize_t offset;
4ddba79d 684
a6080a0a 685 for (offset = offset_-2; offset > 0
4ddba79d
JS
686 && contents[offset] != '\n'; offset--)
687 switch (contents[offset]) {
688 case '=': equal_offset = offset; break;
689 case ']': bracket_offset = offset; break;
690 }
691 if (bracket_offset < equal_offset) {
692 *found_bracket = 1;
693 offset = bracket_offset+1;
694 } else
695 offset++;
696
697 return offset;
698}
699
10bea152
JS
700int git_config_set(const char* key, const char* value)
701{
4ddba79d 702 return git_config_set_multivar(key, value, NULL, 0);
10bea152
JS
703}
704
705/*
706 * If value==NULL, unset in (remove from) config,
707 * if value_regex!=NULL, disregard key/value pairs where value does not match.
4ddba79d
JS
708 * if multi_replace==0, nothing, or only one matching key/value is replaced,
709 * else all matching key/values (regardless how many) are removed,
710 * before the new pair is written.
10bea152
JS
711 *
712 * Returns 0 on success.
713 *
714 * This function does this:
715 *
716 * - it locks the config file by creating ".git/config.lock"
717 *
718 * - it then parses the config using store_aux() as validator to find
719 * the position on the key/value pair to replace. If it is to be unset,
720 * it must be found exactly once.
721 *
722 * - the config file is mmap()ed and the part before the match (if any) is
723 * written to the lock file, then the changed part and the rest.
724 *
725 * - the config file is removed and the lock file rename()d to it.
726 *
727 */
728int git_config_set_multivar(const char* key, const char* value,
4ddba79d 729 const char* value_regex, int multi_replace)
10bea152 730{
d14f7764 731 int i, dot;
f8ba655e 732 int fd = -1, in_fd;
dafc88b1 733 int ret;
9c3796fc 734 char* config_filename;
6cbf973c 735 struct lock_file *lock = NULL;
b17e659d 736 const char* last_dot = strrchr(key, '.');
4ddba79d 737
d4ebc36c 738 config_filename = getenv(CONFIG_ENVIRONMENT);
9c3796fc 739 if (!config_filename) {
d4ebc36c 740 config_filename = getenv(CONFIG_LOCAL_ENVIRONMENT);
9c3796fc
JS
741 if (!config_filename)
742 config_filename = git_path("config");
743 }
9befac47 744 config_filename = xstrdup(config_filename);
9c3796fc 745
10bea152
JS
746 /*
747 * Since "key" actually contains the section name and the real
748 * key name separated by a dot, we have to know where the dot is.
749 */
b17e659d 750
dafc88b1 751 if (last_dot == NULL) {
10bea152 752 fprintf(stderr, "key does not contain a section: %s\n", key);
dafc88b1
SH
753 ret = 2;
754 goto out_free;
10bea152 755 }
b17e659d
JS
756 store.baselen = last_dot - key;
757
758 store.multi_replace = multi_replace;
10bea152
JS
759
760 /*
761 * Validate the key and while at it, lower case it for matching.
762 */
2d7320d0 763 store.key = xmalloc(strlen(key) + 1);
d14f7764
LT
764 dot = 0;
765 for (i = 0; key[i]; i++) {
766 unsigned char c = key[i];
767 if (c == '.')
768 dot = 1;
769 /* Leave the extended basename untouched.. */
770 if (!dot || i > store.baselen) {
38c5afa8 771 if (!iskeychar(c) || (i == store.baselen+1 && !isalpha(c))) {
d14f7764
LT
772 fprintf(stderr, "invalid key: %s\n", key);
773 free(store.key);
774 ret = 1;
775 goto out_free;
776 }
777 c = tolower(c);
6f71686e
JS
778 } else if (c == '\n') {
779 fprintf(stderr, "invalid key (newline): %s\n", key);
780 free(store.key);
781 ret = 1;
782 goto out_free;
d14f7764
LT
783 }
784 store.key[i] = c;
785 }
3dd94e3b 786 store.key[i] = 0;
10bea152
JS
787
788 /*
6cbf973c 789 * The lock serves a purpose in addition to locking: the new
10bea152
JS
790 * contents of .git/config will be written into it.
791 */
6cbf973c
BS
792 lock = xcalloc(sizeof(struct lock_file), 1);
793 fd = hold_lock_file_for_update(lock, config_filename, 0);
794 if (fd < 0) {
10bea152
JS
795 fprintf(stderr, "could not lock config file\n");
796 free(store.key);
dafc88b1
SH
797 ret = -1;
798 goto out_free;
10bea152
JS
799 }
800
801 /*
802 * If .git/config does not exist yet, write a minimal version.
803 */
88fb958b
AR
804 in_fd = open(config_filename, O_RDONLY);
805 if ( in_fd < 0 ) {
10bea152
JS
806 free(store.key);
807
88fb958b
AR
808 if ( ENOENT != errno ) {
809 error("opening %s: %s", config_filename,
810 strerror(errno));
dafc88b1
SH
811 ret = 3; /* same as "invalid config file" */
812 goto out_free;
88fb958b 813 }
10bea152
JS
814 /* if nothing to unset, error out */
815 if (value == NULL) {
dafc88b1
SH
816 ret = 5;
817 goto out_free;
10bea152
JS
818 }
819
820 store.key = (char*)key;
480c9e52 821 if (!store_write_section(fd, key) ||
93c1e079
JH
822 !store_write_pair(fd, key, value))
823 goto write_err_out;
824 } else {
88fb958b 825 struct stat st;
10bea152 826 char* contents;
dc49cd76
SP
827 size_t contents_sz, copy_begin, copy_end;
828 int i, new_line = 0;
10bea152
JS
829
830 if (value_regex == NULL)
831 store.value_regex = NULL;
832 else {
f98d863d
JS
833 if (value_regex[0] == '!') {
834 store.do_not_match = 1;
835 value_regex++;
836 } else
837 store.do_not_match = 0;
838
2d7320d0 839 store.value_regex = (regex_t*)xmalloc(sizeof(regex_t));
10bea152
JS
840 if (regcomp(store.value_regex, value_regex,
841 REG_EXTENDED)) {
7246ed43 842 fprintf(stderr, "Invalid pattern: %s\n",
10bea152
JS
843 value_regex);
844 free(store.value_regex);
dafc88b1
SH
845 ret = 6;
846 goto out_free;
10bea152
JS
847 }
848 }
849
4ddba79d 850 store.offset[0] = 0;
10bea152
JS
851 store.state = START;
852 store.seen = 0;
853
854 /*
855 * After this, store.offset will contain the *end* offset
856 * of the last match, or remain at 0 if no match was found.
857 * As a side effect, we make sure to transform only a valid
858 * existing config file.
859 */
9c3796fc 860 if (git_config_from_file(store_aux, config_filename)) {
10bea152
JS
861 fprintf(stderr, "invalid config file\n");
862 free(store.key);
863 if (store.value_regex != NULL) {
864 regfree(store.value_regex);
865 free(store.value_regex);
866 }
dafc88b1
SH
867 ret = 3;
868 goto out_free;
10bea152
JS
869 }
870
871 free(store.key);
872 if (store.value_regex != NULL) {
873 regfree(store.value_regex);
874 free(store.value_regex);
875 }
876
4ddba79d
JS
877 /* if nothing to unset, or too many matches, error out */
878 if ((store.seen == 0 && value == NULL) ||
879 (store.seen > 1 && multi_replace == 0)) {
dafc88b1
SH
880 ret = 5;
881 goto out_free;
10bea152
JS
882 }
883
88fb958b 884 fstat(in_fd, &st);
dc49cd76
SP
885 contents_sz = xsize_t(st.st_size);
886 contents = xmmap(NULL, contents_sz, PROT_READ,
10bea152
JS
887 MAP_PRIVATE, in_fd, 0);
888 close(in_fd);
889
4ddba79d
JS
890 if (store.seen == 0)
891 store.seen = 1;
892
893 for (i = 0, copy_begin = 0; i < store.seen; i++) {
894 if (store.offset[i] == 0) {
dc49cd76 895 store.offset[i] = copy_end = contents_sz;
4ddba79d
JS
896 } else if (store.state != KEY_SEEN) {
897 copy_end = store.offset[i];
10bea152 898 } else
4ddba79d 899 copy_end = find_beginning_of_line(
dc49cd76 900 contents, contents_sz,
4ddba79d
JS
901 store.offset[i]-2, &new_line);
902
903 /* write the first part of the config */
904 if (copy_end > copy_begin) {
93c1e079
JH
905 if (write_in_full(fd, contents + copy_begin,
906 copy_end - copy_begin) <
907 copy_end - copy_begin)
908 goto write_err_out;
909 if (new_line &&
910 write_in_full(fd, "\n", 1) != 1)
911 goto write_err_out;
4ddba79d
JS
912 }
913 copy_begin = store.offset[i];
10bea152
JS
914 }
915
10bea152
JS
916 /* write the pair (value == NULL means unset) */
917 if (value != NULL) {
93c1e079
JH
918 if (store.state == START) {
919 if (!store_write_section(fd, key))
920 goto write_err_out;
480c9e52 921 }
93c1e079
JH
922 if (!store_write_pair(fd, key, value))
923 goto write_err_out;
10bea152
JS
924 }
925
926 /* write the rest of the config */
dc49cd76 927 if (copy_begin < contents_sz)
93c1e079 928 if (write_in_full(fd, contents + copy_begin,
dc49cd76
SP
929 contents_sz - copy_begin) <
930 contents_sz - copy_begin)
93c1e079 931 goto write_err_out;
10bea152 932
dc49cd76 933 munmap(contents, contents_sz);
10bea152
JS
934 }
935
6cbf973c
BS
936 if (close(fd) || commit_lock_file(lock) < 0) {
937 fprintf(stderr, "Cannot commit config file!\n");
dafc88b1
SH
938 ret = 4;
939 goto out_free;
10bea152
JS
940 }
941
6cbf973c
BS
942 /* fd is closed, so don't try to close it below. */
943 fd = -1;
944 /*
945 * lock is committed, so don't try to roll it back below.
946 * NOTE: Since lockfile.c keeps a linked list of all created
947 * lock_file structures, it isn't safe to free(lock). It's
948 * better to just leave it hanging around.
949 */
950 lock = NULL;
dafc88b1
SH
951 ret = 0;
952
953out_free:
f8ba655e
JH
954 if (0 <= fd)
955 close(fd);
6cbf973c
BS
956 if (lock)
957 rollback_lock_file(lock);
4cac42b1 958 free(config_filename);
dafc88b1 959 return ret;
93c1e079
JH
960
961write_err_out:
962 ret = write_error();
963 goto out_free;
964
10bea152
JS
965}
966
118f8b24
PB
967static int section_name_match (const char *buf, const char *name)
968{
969 int i = 0, j = 0, dot = 0;
970 for (; buf[i] && buf[i] != ']'; i++) {
971 if (!dot && isspace(buf[i])) {
972 dot = 1;
973 if (name[j++] != '.')
974 break;
975 for (i++; isspace(buf[i]); i++)
976 ; /* do nothing */
977 if (buf[i] != '"')
978 break;
979 continue;
980 }
981 if (buf[i] == '\\' && dot)
982 i++;
983 else if (buf[i] == '"' && dot) {
984 for (i++; isspace(buf[i]); i++)
985 ; /* do_nothing */
986 break;
987 }
988 if (buf[i] != name[j++])
989 break;
990 }
991 return (buf[i] == ']' && name[j] == 0);
992}
993
994/* if new_name == NULL, the section is removed instead */
0667fcfb
JS
995int git_config_rename_section(const char *old_name, const char *new_name)
996{
118f8b24 997 int ret = 0, remove = 0;
fc1905bb 998 char *config_filename;
0667fcfb
JS
999 struct lock_file *lock = xcalloc(sizeof(struct lock_file), 1);
1000 int out_fd;
1001 char buf[1024];
1002
d4ebc36c 1003 config_filename = getenv(CONFIG_ENVIRONMENT);
0667fcfb 1004 if (!config_filename) {
d4ebc36c 1005 config_filename = getenv(CONFIG_LOCAL_ENVIRONMENT);
0667fcfb
JS
1006 if (!config_filename)
1007 config_filename = git_path("config");
1008 }
1009 config_filename = xstrdup(config_filename);
1010 out_fd = hold_lock_file_for_update(lock, config_filename, 0);
fc1905bb
JH
1011 if (out_fd < 0) {
1012 ret = error("Could not lock config file!");
1013 goto out;
1014 }
0667fcfb 1015
fc1905bb 1016 if (!(config_file = fopen(config_filename, "rb"))) {
01ebb9dc
GB
1017 /* no config file means nothing to rename, no error */
1018 goto unlock_and_out;
fc1905bb 1019 }
0667fcfb
JS
1020
1021 while (fgets(buf, sizeof(buf), config_file)) {
1022 int i;
480c9e52 1023 int length;
0667fcfb
JS
1024 for (i = 0; buf[i] && isspace(buf[i]); i++)
1025 ; /* do nothing */
1026 if (buf[i] == '[') {
1027 /* it's a section */
118f8b24
PB
1028 if (section_name_match (&buf[i+1], old_name)) {
1029 ret++;
1030 if (new_name == NULL) {
1031 remove = 1;
0667fcfb
JS
1032 continue;
1033 }
0667fcfb 1034 store.baselen = strlen(new_name);
480c9e52
AW
1035 if (!store_write_section(out_fd, new_name)) {
1036 ret = write_error();
1037 goto out;
1038 }
0667fcfb
JS
1039 continue;
1040 }
118f8b24 1041 remove = 0;
0667fcfb 1042 }
118f8b24
PB
1043 if (remove)
1044 continue;
480c9e52
AW
1045 length = strlen(buf);
1046 if (write_in_full(out_fd, buf, length) != length) {
1047 ret = write_error();
1048 goto out;
1049 }
0667fcfb 1050 }
fc1905bb 1051 fclose(config_file);
01ebb9dc 1052 unlock_and_out:
0667fcfb 1053 if (close(out_fd) || commit_lock_file(lock) < 0)
480c9e52 1054 ret = error("Cannot commit config file!");
fc1905bb
JH
1055 out:
1056 free(config_filename);
0667fcfb
JS
1057 return ret;
1058}