]> git.ipfire.org Git - thirdparty/git.git/blame - config.c
checkout: use --aggressive when running a 3-way merge (-m).
[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"
10bea152 9#include <regex.h>
17712991
LT
10
11#define MAXNAME (256)
12
13static FILE *config_file;
0dccc7dc 14static const char *config_file_name;
17712991
LT
15static int config_linenr;
16static int get_next_char(void)
17{
18 int c;
19 FILE *f;
20
21 c = '\n';
22 if ((f = config_file) != NULL) {
23 c = fgetc(f);
db2c075d
JH
24 if (c == '\r') {
25 /* DOS like systems */
26 c = fgetc(f);
27 if (c != '\n') {
28 ungetc(c, f);
29 c = '\r';
30 }
31 }
17712991
LT
32 if (c == '\n')
33 config_linenr++;
34 if (c == EOF) {
35 config_file = NULL;
36 c = '\n';
37 }
38 }
39 return c;
40}
41
42static char *parse_value(void)
43{
44 static char value[1024];
45 int quote = 0, comment = 0, len = 0, space = 0;
46
47 for (;;) {
48 int c = get_next_char();
49 if (len >= sizeof(value))
50 return NULL;
51 if (c == '\n') {
52 if (quote)
53 return NULL;
54 value[len] = 0;
55 return value;
56 }
57 if (comment)
58 continue;
59 if (isspace(c) && !quote) {
60 space = 1;
61 continue;
62 }
7ebdba61
JS
63 if (!quote) {
64 if (c == ';' || c == '#') {
65 comment = 1;
66 continue;
67 }
68 }
17712991
LT
69 if (space) {
70 if (len)
71 value[len++] = ' ';
72 space = 0;
73 }
74 if (c == '\\') {
75 c = get_next_char();
76 switch (c) {
77 case '\n':
78 continue;
79 case 't':
80 c = '\t';
81 break;
82 case 'b':
83 c = '\b';
84 break;
85 case 'n':
86 c = '\n';
87 break;
5cbb401d
LT
88 /* Some characters escape as themselves */
89 case '\\': case '"':
90 break;
91 /* Reject unknown escape sequences */
92 default:
93 return NULL;
17712991
LT
94 }
95 value[len++] = c;
96 continue;
97 }
98 if (c == '"') {
99 quote = 1-quote;
100 continue;
101 }
17712991
LT
102 value[len++] = c;
103 }
104}
105
106static int get_value(config_fn_t fn, char *name, unsigned int len)
107{
108 int c;
109 char *value;
110
111 /* Get the full name */
112 for (;;) {
113 c = get_next_char();
114 if (c == EOF)
115 break;
116 if (!isalnum(c))
117 break;
118 name[len++] = tolower(c);
119 if (len >= MAXNAME)
120 return -1;
121 }
122 name[len] = 0;
123 while (c == ' ' || c == '\t')
124 c = get_next_char();
125
126 value = NULL;
127 if (c != '\n') {
128 if (c != '=')
129 return -1;
130 value = parse_value();
131 if (!value)
132 return -1;
133 }
134 return fn(name, value);
135}
136
137static int get_base_var(char *name)
138{
139 int baselen = 0;
140
141 for (;;) {
142 int c = get_next_char();
143 if (c == EOF)
144 return -1;
145 if (c == ']')
146 return baselen;
b17e659d 147 if (!isalnum(c) && c != '.')
17712991
LT
148 return -1;
149 if (baselen > MAXNAME / 2)
150 return -1;
151 name[baselen++] = tolower(c);
152 }
153}
154
155static int git_parse_file(config_fn_t fn)
156{
157 int comment = 0;
158 int baselen = 0;
159 static char var[MAXNAME];
160
161 for (;;) {
162 int c = get_next_char();
163 if (c == '\n') {
164 /* EOF? */
165 if (!config_file)
166 return 0;
167 comment = 0;
168 continue;
169 }
170 if (comment || isspace(c))
171 continue;
172 if (c == '#' || c == ';') {
173 comment = 1;
174 continue;
175 }
176 if (c == '[') {
177 baselen = get_base_var(var);
178 if (baselen <= 0)
179 break;
180 var[baselen++] = '.';
181 var[baselen] = 0;
182 continue;
183 }
184 if (!isalpha(c))
185 break;
128af9d1 186 var[baselen] = tolower(c);
17712991
LT
187 if (get_value(fn, var, baselen+1) < 0)
188 break;
189 }
4f629539 190 die("bad config file line %d in %s", config_linenr, config_file_name);
17712991
LT
191}
192
193int git_config_int(const char *name, const char *value)
194{
195 if (value && *value) {
196 char *end;
197 int val = strtol(value, &end, 0);
198 if (!*end)
199 return val;
200 }
4f629539 201 die("bad config value for '%s' in %s", name, config_file_name);
17712991
LT
202}
203
204int git_config_bool(const char *name, const char *value)
205{
206 if (!value)
207 return 1;
208 if (!*value)
209 return 0;
210 if (!strcasecmp(value, "true"))
211 return 1;
212 if (!strcasecmp(value, "false"))
213 return 0;
214 return git_config_int(name, value) != 0;
215}
216
217int git_default_config(const char *var, const char *value)
218{
219 /* This needs a better name */
220 if (!strcmp(var, "core.filemode")) {
221 trust_executable_bit = git_config_bool(var, value);
222 return 0;
223 }
224
5f73076c
JH
225 if (!strcmp(var, "core.ignorestat")) {
226 assume_unchanged = git_config_bool(var, value);
227 return 0;
228 }
229
e388c738
JH
230 if (!strcmp(var, "core.prefersymlinkrefs")) {
231 prefer_symlink_refs = git_config_bool(var, value);
f8348be3
JS
232 return 0;
233 }
234
2f8acdb3
JH
235 if (!strcmp(var, "core.warnambiguousrefs")) {
236 warn_ambiguous_refs = git_config_bool(var, value);
237 return 0;
238 }
239
e1b10391
LT
240 if (!strcmp(var, "user.name")) {
241 strncpy(git_default_name, value, sizeof(git_default_name));
242 return 0;
243 }
244
245 if (!strcmp(var, "user.email")) {
246 strncpy(git_default_email, value, sizeof(git_default_email));
247 return 0;
248 }
249
4e72dcec
JH
250 if (!strcmp(var, "i18n.commitencoding")) {
251 strncpy(git_commit_encoding, value, sizeof(git_commit_encoding));
252 return 0;
253 }
254
1ab661dd 255 /* Add other config variables here and to Documentation/config.txt. */
17712991
LT
256 return 0;
257}
258
4f629539 259int git_config_from_file(config_fn_t fn, const char *filename)
17712991
LT
260{
261 int ret;
4f629539 262 FILE *f = fopen(filename, "r");
17712991
LT
263
264 ret = -1;
265 if (f) {
266 config_file = f;
4f629539 267 config_file_name = filename;
17712991
LT
268 config_linenr = 1;
269 ret = git_parse_file(fn);
270 fclose(f);
4f629539 271 config_file_name = NULL;
17712991
LT
272 }
273 return ret;
274}
10bea152 275
4f629539
JH
276int git_config(config_fn_t fn)
277{
278 return git_config_from_file(fn, git_path("config"));
279}
280
10bea152
JS
281/*
282 * Find all the stuff for git_config_set() below.
283 */
4ddba79d
JS
284
285#define MAX_MATCHES 512
286
10bea152
JS
287static struct {
288 int baselen;
289 char* key;
f98d863d 290 int do_not_match;
10bea152 291 regex_t* value_regex;
4ddba79d
JS
292 int multi_replace;
293 off_t offset[MAX_MATCHES];
10bea152
JS
294 enum { START, SECTION_SEEN, SECTION_END_SEEN, KEY_SEEN } state;
295 int seen;
296} store;
297
f98d863d
JS
298static int matches(const char* key, const char* value)
299{
300 return !strcmp(key, store.key) &&
301 (store.value_regex == NULL ||
302 (store.do_not_match ^
303 !regexec(store.value_regex, value, 0, NULL, 0)));
304}
305
10bea152
JS
306static int store_aux(const char* key, const char* value)
307{
308 switch (store.state) {
309 case KEY_SEEN:
f98d863d 310 if (matches(key, value)) {
4ddba79d 311 if (store.seen == 1 && store.multi_replace == 0) {
10bea152
JS
312 fprintf(stderr,
313 "Warning: %s has multiple values\n",
314 key);
4ddba79d
JS
315 } else if (store.seen >= MAX_MATCHES) {
316 fprintf(stderr, "Too many matches\n");
317 return 1;
10bea152 318 }
4ddba79d
JS
319
320 store.offset[store.seen] = ftell(config_file);
10bea152
JS
321 store.seen++;
322 }
323 break;
324 case SECTION_SEEN:
325 if (strncmp(key, store.key, store.baselen+1)) {
326 store.state = SECTION_END_SEEN;
327 break;
328 } else
4ddba79d
JS
329 /* do not increment matches: this is no match */
330 store.offset[store.seen] = ftell(config_file);
10bea152
JS
331 /* fallthru */
332 case SECTION_END_SEEN:
333 case START:
f98d863d 334 if (matches(key, value)) {
4ddba79d 335 store.offset[store.seen] = ftell(config_file);
10bea152
JS
336 store.state = KEY_SEEN;
337 store.seen++;
93ddef3e
SE
338 } else if (strrchr(key, '.') - key == store.baselen &&
339 !strncmp(key, store.key, store.baselen))
340 store.state = SECTION_SEEN;
10bea152
JS
341 }
342 return 0;
343}
344
345static void store_write_section(int fd, const char* key)
346{
347 write(fd, "[", 1);
348 write(fd, key, store.baselen);
349 write(fd, "]\n", 2);
350}
351
352static void store_write_pair(int fd, const char* key, const char* value)
353{
354 int i;
355
356 write(fd, "\t", 1);
357 write(fd, key+store.baselen+1,
358 strlen(key+store.baselen+1));
359 write(fd, " = ", 3);
360 for (i = 0; value[i]; i++)
361 switch (value[i]) {
362 case '\n': write(fd, "\\n", 2); break;
363 case '\t': write(fd, "\\t", 2); break;
364 case '"': case '\\': write(fd, "\\", 1);
365 default: write(fd, value+i, 1);
366 }
367 write(fd, "\n", 1);
368}
369
4ddba79d
JS
370static int find_beginning_of_line(const char* contents, int size,
371 int offset_, int* found_bracket)
372{
373 int equal_offset = size, bracket_offset = size;
374 int offset;
375
376 for (offset = offset_-2; offset > 0
377 && contents[offset] != '\n'; offset--)
378 switch (contents[offset]) {
379 case '=': equal_offset = offset; break;
380 case ']': bracket_offset = offset; break;
381 }
382 if (bracket_offset < equal_offset) {
383 *found_bracket = 1;
384 offset = bracket_offset+1;
385 } else
386 offset++;
387
388 return offset;
389}
390
10bea152
JS
391int git_config_set(const char* key, const char* value)
392{
4ddba79d 393 return git_config_set_multivar(key, value, NULL, 0);
10bea152
JS
394}
395
396/*
397 * If value==NULL, unset in (remove from) config,
398 * if value_regex!=NULL, disregard key/value pairs where value does not match.
4ddba79d
JS
399 * if multi_replace==0, nothing, or only one matching key/value is replaced,
400 * else all matching key/values (regardless how many) are removed,
401 * before the new pair is written.
10bea152
JS
402 *
403 * Returns 0 on success.
404 *
405 * This function does this:
406 *
407 * - it locks the config file by creating ".git/config.lock"
408 *
409 * - it then parses the config using store_aux() as validator to find
410 * the position on the key/value pair to replace. If it is to be unset,
411 * it must be found exactly once.
412 *
413 * - the config file is mmap()ed and the part before the match (if any) is
414 * written to the lock file, then the changed part and the rest.
415 *
416 * - the config file is removed and the lock file rename()d to it.
417 *
418 */
419int git_config_set_multivar(const char* key, const char* value,
4ddba79d 420 const char* value_regex, int multi_replace)
10bea152
JS
421{
422 int i;
f8ba655e 423 int fd = -1, in_fd;
dafc88b1 424 int ret;
3a2f2bb3 425 char* config_filename = strdup(git_path("config"));
10bea152 426 char* lock_file = strdup(git_path("config.lock"));
b17e659d 427 const char* last_dot = strrchr(key, '.');
4ddba79d 428
10bea152
JS
429 /*
430 * Since "key" actually contains the section name and the real
431 * key name separated by a dot, we have to know where the dot is.
432 */
b17e659d 433
dafc88b1 434 if (last_dot == NULL) {
10bea152 435 fprintf(stderr, "key does not contain a section: %s\n", key);
dafc88b1
SH
436 ret = 2;
437 goto out_free;
10bea152 438 }
b17e659d
JS
439 store.baselen = last_dot - key;
440
441 store.multi_replace = multi_replace;
10bea152
JS
442
443 /*
444 * Validate the key and while at it, lower case it for matching.
445 */
446 store.key = (char*)malloc(strlen(key)+1);
447 for (i = 0; key[i]; i++)
b17e659d
JS
448 if (i != store.baselen &&
449 ((!isalnum(key[i]) && key[i] != '.') ||
450 (i == store.baselen+1 && !isalpha(key[i])))) {
10bea152
JS
451 fprintf(stderr, "invalid key: %s\n", key);
452 free(store.key);
dafc88b1
SH
453 ret = 1;
454 goto out_free;
10bea152
JS
455 } else
456 store.key[i] = tolower(key[i]);
3dd94e3b 457 store.key[i] = 0;
10bea152
JS
458
459 /*
460 * The lock_file serves a purpose in addition to locking: the new
461 * contents of .git/config will be written into it.
462 */
463 fd = open(lock_file, O_WRONLY | O_CREAT | O_EXCL, 0666);
464 if (fd < 0) {
465 fprintf(stderr, "could not lock config file\n");
466 free(store.key);
dafc88b1
SH
467 ret = -1;
468 goto out_free;
10bea152
JS
469 }
470
471 /*
472 * If .git/config does not exist yet, write a minimal version.
473 */
88fb958b
AR
474 in_fd = open(config_filename, O_RDONLY);
475 if ( in_fd < 0 ) {
10bea152
JS
476 free(store.key);
477
88fb958b
AR
478 if ( ENOENT != errno ) {
479 error("opening %s: %s", config_filename,
480 strerror(errno));
dafc88b1
SH
481 ret = 3; /* same as "invalid config file" */
482 goto out_free;
88fb958b 483 }
10bea152
JS
484 /* if nothing to unset, error out */
485 if (value == NULL) {
dafc88b1
SH
486 ret = 5;
487 goto out_free;
10bea152
JS
488 }
489
490 store.key = (char*)key;
10bea152
JS
491 store_write_section(fd, key);
492 store_write_pair(fd, key, value);
493 } else{
88fb958b 494 struct stat st;
10bea152 495 char* contents;
4ddba79d 496 int i, copy_begin, copy_end, new_line = 0;
10bea152
JS
497
498 if (value_regex == NULL)
499 store.value_regex = NULL;
500 else {
f98d863d
JS
501 if (value_regex[0] == '!') {
502 store.do_not_match = 1;
503 value_regex++;
504 } else
505 store.do_not_match = 0;
506
10bea152
JS
507 store.value_regex = (regex_t*)malloc(sizeof(regex_t));
508 if (regcomp(store.value_regex, value_regex,
509 REG_EXTENDED)) {
7246ed43 510 fprintf(stderr, "Invalid pattern: %s\n",
10bea152
JS
511 value_regex);
512 free(store.value_regex);
dafc88b1
SH
513 ret = 6;
514 goto out_free;
10bea152
JS
515 }
516 }
517
4ddba79d 518 store.offset[0] = 0;
10bea152
JS
519 store.state = START;
520 store.seen = 0;
521
522 /*
523 * After this, store.offset will contain the *end* offset
524 * of the last match, or remain at 0 if no match was found.
525 * As a side effect, we make sure to transform only a valid
526 * existing config file.
527 */
528 if (git_config(store_aux)) {
529 fprintf(stderr, "invalid config file\n");
530 free(store.key);
531 if (store.value_regex != NULL) {
532 regfree(store.value_regex);
533 free(store.value_regex);
534 }
dafc88b1
SH
535 ret = 3;
536 goto out_free;
10bea152
JS
537 }
538
539 free(store.key);
540 if (store.value_regex != NULL) {
541 regfree(store.value_regex);
542 free(store.value_regex);
543 }
544
4ddba79d
JS
545 /* if nothing to unset, or too many matches, error out */
546 if ((store.seen == 0 && value == NULL) ||
547 (store.seen > 1 && multi_replace == 0)) {
dafc88b1
SH
548 ret = 5;
549 goto out_free;
10bea152
JS
550 }
551
88fb958b 552 fstat(in_fd, &st);
10bea152
JS
553 contents = mmap(NULL, st.st_size, PROT_READ,
554 MAP_PRIVATE, in_fd, 0);
555 close(in_fd);
556
4ddba79d
JS
557 if (store.seen == 0)
558 store.seen = 1;
559
560 for (i = 0, copy_begin = 0; i < store.seen; i++) {
561 if (store.offset[i] == 0) {
562 store.offset[i] = copy_end = st.st_size;
563 } else if (store.state != KEY_SEEN) {
564 copy_end = store.offset[i];
10bea152 565 } else
4ddba79d
JS
566 copy_end = find_beginning_of_line(
567 contents, st.st_size,
568 store.offset[i]-2, &new_line);
569
570 /* write the first part of the config */
571 if (copy_end > copy_begin) {
572 write(fd, contents + copy_begin,
573 copy_end - copy_begin);
574 if (new_line)
575 write(fd, "\n", 1);
576 }
577 copy_begin = store.offset[i];
10bea152
JS
578 }
579
10bea152
JS
580 /* write the pair (value == NULL means unset) */
581 if (value != NULL) {
582 if (store.state == START)
583 store_write_section(fd, key);
584 store_write_pair(fd, key, value);
585 }
586
587 /* write the rest of the config */
4ddba79d
JS
588 if (copy_begin < st.st_size)
589 write(fd, contents + copy_begin,
590 st.st_size - copy_begin);
10bea152
JS
591
592 munmap(contents, st.st_size);
3a2f2bb3 593 unlink(config_filename);
10bea152
JS
594 }
595
3a2f2bb3 596 if (rename(lock_file, config_filename) < 0) {
10bea152 597 fprintf(stderr, "Could not rename the lock file?\n");
dafc88b1
SH
598 ret = 4;
599 goto out_free;
10bea152
JS
600 }
601
dafc88b1
SH
602 ret = 0;
603
604out_free:
f8ba655e
JH
605 if (0 <= fd)
606 close(fd);
dafc88b1
SH
607 if (config_filename)
608 free(config_filename);
f8ba655e
JH
609 if (lock_file) {
610 unlink(lock_file);
dafc88b1 611 free(lock_file);
f8ba655e 612 }
dafc88b1 613 return ret;
10bea152
JS
614}
615
4ddba79d 616