bbd3ff2956eccd6b522b8475e6d3edb00d2ff59a
[git.git] / config.c
1 /*
2  * GIT - The information manager from hell
3  *
4  * Copyright (C) Linus Torvalds, 2005
5  * Copyright (C) Johannes Schindelin, 2005
6  *
7  */
8 #include "cache.h"
9 #include <regex.h>
10
11 #define MAXNAME (256)
12
13 static FILE *config_file;
14 static const char *config_file_name;
15 static int config_linenr;
16 static 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);
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                 }
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
42 static 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                 }
63                 if (!quote) {
64                         if (c == ';' || c == '#') {
65                                 comment = 1;
66                                 continue;
67                         }
68                 }
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;
88                         /* Some characters escape as themselves */
89                         case '\\': case '"':
90                                 break;
91                         /* Reject unknown escape sequences */
92                         default:
93                                 return NULL;
94                         }
95                         value[len++] = c;
96                         continue;
97                 }
98                 if (c == '"') {
99                         quote = 1-quote;
100                         continue;
101                 }
102                 value[len++] = c;
103         }
104 }
105
106 static 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
137 static int get_extended_base_var(char *name, int baselen, int c)
138 {
139         do {
140                 if (c == '\n')
141                         return -1;
142                 c = get_next_char();
143         } while (isspace(c));
144
145         /* We require the format to be '[base "extension"]' */
146         if (c != '"')
147                 return -1;
148         name[baselen++] = '.';
149
150         for (;;) {
151                 int c = get_next_char();
152                 if (c == '\n')
153                         return -1;
154                 if (c == '"')
155                         break;
156                 if (c == '\\') {
157                         c = get_next_char();
158                         if (c == '\n')
159                                 return -1;
160                 }
161                 name[baselen++] = c;
162                 if (baselen > MAXNAME / 2)
163                         return -1;
164         }
165
166         /* Final ']' */
167         if (get_next_char() != ']')
168                 return -1;
169         return baselen;
170 }
171
172 static int get_base_var(char *name)
173 {
174         int baselen = 0;
175
176         for (;;) {
177                 int c = get_next_char();
178                 if (c == EOF)
179                         return -1;
180                 if (c == ']')
181                         return baselen;
182                 if (isspace(c))
183                         return get_extended_base_var(name, baselen, c);
184                 if (!isalnum(c) && c != '.')
185                         return -1;
186                 if (baselen > MAXNAME / 2)
187                         return -1;
188                 name[baselen++] = tolower(c);
189         }
190 }
191
192 static int git_parse_file(config_fn_t fn)
193 {
194         int comment = 0;
195         int baselen = 0;
196         static char var[MAXNAME];
197
198         for (;;) {
199                 int c = get_next_char();
200                 if (c == '\n') {
201                         /* EOF? */
202                         if (!config_file)
203                                 return 0;
204                         comment = 0;
205                         continue;
206                 }
207                 if (comment || isspace(c))
208                         continue;
209                 if (c == '#' || c == ';') {
210                         comment = 1;
211                         continue;
212                 }
213                 if (c == '[') {
214                         baselen = get_base_var(var);
215                         if (baselen <= 0)
216                                 break;
217                         var[baselen++] = '.';
218                         var[baselen] = 0;
219                         continue;
220                 }
221                 if (!isalpha(c))
222                         break;
223                 var[baselen] = tolower(c);
224                 if (get_value(fn, var, baselen+1) < 0)
225                         break;
226         }
227         die("bad config file line %d in %s", config_linenr, config_file_name);
228 }
229
230 int git_config_int(const char *name, const char *value)
231 {
232         if (value && *value) {
233                 char *end;
234                 int val = strtol(value, &end, 0);
235                 if (!*end)
236                         return val;
237         }
238         die("bad config value for '%s' in %s", name, config_file_name);
239 }
240
241 int git_config_bool(const char *name, const char *value)
242 {
243         if (!value)
244                 return 1;
245         if (!*value)
246                 return 0;
247         if (!strcasecmp(value, "true"))
248                 return 1;
249         if (!strcasecmp(value, "false"))
250                 return 0;
251         return git_config_int(name, value) != 0;
252 }
253
254 int git_default_config(const char *var, const char *value)
255 {
256         /* This needs a better name */
257         if (!strcmp(var, "core.filemode")) {
258                 trust_executable_bit = git_config_bool(var, value);
259                 return 0;
260         }
261
262         if (!strcmp(var, "core.ignorestat")) {
263                 assume_unchanged = git_config_bool(var, value);
264                 return 0;
265         }
266
267         if (!strcmp(var, "core.prefersymlinkrefs")) {
268                 prefer_symlink_refs = git_config_bool(var, value);
269                 return 0;
270         }
271
272         if (!strcmp(var, "core.logallrefupdates")) {
273                 log_all_ref_updates = git_config_bool(var, value);
274                 return 0;
275         }
276
277         if (!strcmp(var, "core.warnambiguousrefs")) {
278                 warn_ambiguous_refs = git_config_bool(var, value);
279                 return 0;
280         }
281
282         if (!strcmp(var, "user.name")) {
283                 strncpy(git_default_name, value, sizeof(git_default_name));
284                 return 0;
285         }
286
287         if (!strcmp(var, "user.email")) {
288                 strncpy(git_default_email, value, sizeof(git_default_email));
289                 return 0;
290         }
291
292         if (!strcmp(var, "i18n.commitencoding")) {
293                 strncpy(git_commit_encoding, value, sizeof(git_commit_encoding));
294                 return 0;
295         }
296
297         /* Add other config variables here and to Documentation/config.txt. */
298         return 0;
299 }
300
301 int git_config_from_file(config_fn_t fn, const char *filename)
302 {
303         int ret;
304         FILE *f = fopen(filename, "r");
305
306         ret = -1;
307         if (f) {
308                 config_file = f;
309                 config_file_name = filename;
310                 config_linenr = 1;
311                 ret = git_parse_file(fn);
312                 fclose(f);
313                 config_file_name = NULL;
314         }
315         return ret;
316 }
317
318 int git_config(config_fn_t fn)
319 {
320         int ret = 0;
321         const char *home = getenv("HOME");
322
323         if (home) {
324                 ret = git_config_from_file(fn, mkpath("%s/.gitconfig", home));
325                 /* ignore if global config does not exist */
326                 if (ret < 0)
327                         ret = 0;
328         }
329
330         ret += git_config_from_file(fn, git_path("config"));
331         return ret;
332 }
333
334 /*
335  * Find all the stuff for git_config_set() below.
336  */
337
338 #define MAX_MATCHES 512
339
340 static struct {
341         int baselen;
342         char* key;
343         int do_not_match;
344         regex_t* value_regex;
345         int multi_replace;
346         off_t offset[MAX_MATCHES];
347         enum { START, SECTION_SEEN, SECTION_END_SEEN, KEY_SEEN } state;
348         int seen;
349 } store;
350
351 static int matches(const char* key, const char* value)
352 {
353         return !strcmp(key, store.key) &&
354                 (store.value_regex == NULL ||
355                  (store.do_not_match ^
356                   !regexec(store.value_regex, value, 0, NULL, 0)));
357 }
358
359 static int store_aux(const char* key, const char* value)
360 {
361         switch (store.state) {
362         case KEY_SEEN:
363                 if (matches(key, value)) {
364                         if (store.seen == 1 && store.multi_replace == 0) {
365                                 fprintf(stderr,
366                                         "Warning: %s has multiple values\n",
367                                         key);
368                         } else if (store.seen >= MAX_MATCHES) {
369                                 fprintf(stderr, "Too many matches\n");
370                                 return 1;
371                         }
372
373                         store.offset[store.seen] = ftell(config_file);
374                         store.seen++;
375                 }
376                 break;
377         case SECTION_SEEN:
378                 if (strncmp(key, store.key, store.baselen+1)) {
379                         store.state = SECTION_END_SEEN;
380                         break;
381                 } else
382                         /* do not increment matches: this is no match */
383                         store.offset[store.seen] = ftell(config_file);
384                 /* fallthru */
385         case SECTION_END_SEEN:
386         case START:
387                 if (matches(key, value)) {
388                         store.offset[store.seen] = ftell(config_file);
389                         store.state = KEY_SEEN;
390                         store.seen++;
391                 } else {
392                         if (strrchr(key, '.') - key == store.baselen &&
393                               !strncmp(key, store.key, store.baselen)) {
394                                         store.state = SECTION_SEEN;
395                                         store.offset[store.seen] = ftell(config_file);
396                         }
397                 }
398         }
399         return 0;
400 }
401
402 static void store_write_section(int fd, const char* key)
403 {
404         const char *dot = strchr(key, '.');
405         int len1 = store.baselen, len2 = -1;
406
407         dot = strchr(key, '.');
408         if (dot) {
409                 int dotlen = dot - key;
410                 if (dotlen < len1) {
411                         len2 = len1 - dotlen - 1;
412                         len1 = dotlen;
413                 }
414         }
415
416         write(fd, "[", 1);
417         write(fd, key, len1);
418         if (len2 >= 0) {
419                 write(fd, " \"", 2);
420                 while (--len2 >= 0) {
421                         unsigned char c = *++dot;
422                         if (c == '"')
423                                 write(fd, "\\", 1);
424                         write(fd, &c, 1);
425                 }
426                 write(fd, "\"", 1);
427         }
428         write(fd, "]\n", 2);
429 }
430
431 static void store_write_pair(int fd, const char* key, const char* value)
432 {
433         int i;
434
435         write(fd, "\t", 1);
436         write(fd, key+store.baselen+1,
437                 strlen(key+store.baselen+1));
438         write(fd, " = ", 3);
439         for (i = 0; value[i]; i++)
440                 switch (value[i]) {
441                 case '\n': write(fd, "\\n", 2); break;
442                 case '\t': write(fd, "\\t", 2); break;
443                 case '"': case '\\': write(fd, "\\", 1);
444                 default: write(fd, value+i, 1);
445         }
446         write(fd, "\n", 1);
447 }
448
449 static int find_beginning_of_line(const char* contents, int size,
450         int offset_, int* found_bracket)
451 {
452         int equal_offset = size, bracket_offset = size;
453         int offset;
454
455         for (offset = offset_-2; offset > 0 
456                         && contents[offset] != '\n'; offset--)
457                 switch (contents[offset]) {
458                         case '=': equal_offset = offset; break;
459                         case ']': bracket_offset = offset; break;
460                 }
461         if (bracket_offset < equal_offset) {
462                 *found_bracket = 1;
463                 offset = bracket_offset+1;
464         } else
465                 offset++;
466
467         return offset;
468 }
469
470 int git_config_set(const char* key, const char* value)
471 {
472         return git_config_set_multivar(key, value, NULL, 0);
473 }
474
475 /*
476  * If value==NULL, unset in (remove from) config,
477  * if value_regex!=NULL, disregard key/value pairs where value does not match.
478  * if multi_replace==0, nothing, or only one matching key/value is replaced,
479  *     else all matching key/values (regardless how many) are removed,
480  *     before the new pair is written.
481  *
482  * Returns 0 on success.
483  *
484  * This function does this:
485  *
486  * - it locks the config file by creating ".git/config.lock"
487  *
488  * - it then parses the config using store_aux() as validator to find
489  *   the position on the key/value pair to replace. If it is to be unset,
490  *   it must be found exactly once.
491  *
492  * - the config file is mmap()ed and the part before the match (if any) is
493  *   written to the lock file, then the changed part and the rest.
494  *
495  * - the config file is removed and the lock file rename()d to it.
496  *
497  */
498 int git_config_set_multivar(const char* key, const char* value,
499         const char* value_regex, int multi_replace)
500 {
501         int i, dot;
502         int fd = -1, in_fd;
503         int ret;
504         char* config_filename = strdup(git_path("config"));
505         char* lock_file = strdup(git_path("config.lock"));
506         const char* last_dot = strrchr(key, '.');
507
508         /*
509          * Since "key" actually contains the section name and the real
510          * key name separated by a dot, we have to know where the dot is.
511          */
512
513         if (last_dot == NULL) {
514                 fprintf(stderr, "key does not contain a section: %s\n", key);
515                 ret = 2;
516                 goto out_free;
517         }
518         store.baselen = last_dot - key;
519
520         store.multi_replace = multi_replace;
521
522         /*
523          * Validate the key and while at it, lower case it for matching.
524          */
525         store.key = (char*)malloc(strlen(key)+1);
526         dot = 0;
527         for (i = 0; key[i]; i++) {
528                 unsigned char c = key[i];
529                 if (c == '.')
530                         dot = 1;
531                 /* Leave the extended basename untouched.. */
532                 if (!dot || i > store.baselen) {
533                         if (!isalnum(c) || (i == store.baselen+1 && !isalpha(c))) {
534                                 fprintf(stderr, "invalid key: %s\n", key);
535                                 free(store.key);
536                                 ret = 1;
537                                 goto out_free;
538                         }
539                         c = tolower(c);
540                 }
541                 store.key[i] = c;
542         }
543         store.key[i] = 0;
544
545         /*
546          * The lock_file serves a purpose in addition to locking: the new
547          * contents of .git/config will be written into it.
548          */
549         fd = open(lock_file, O_WRONLY | O_CREAT | O_EXCL, 0666);
550         if (fd < 0 || adjust_shared_perm(lock_file)) {
551                 fprintf(stderr, "could not lock config file\n");
552                 free(store.key);
553                 ret = -1;
554                 goto out_free;
555         }
556
557         /*
558          * If .git/config does not exist yet, write a minimal version.
559          */
560         in_fd = open(config_filename, O_RDONLY);
561         if ( in_fd < 0 ) {
562                 free(store.key);
563
564                 if ( ENOENT != errno ) {
565                         error("opening %s: %s", config_filename,
566                               strerror(errno));
567                         ret = 3; /* same as "invalid config file" */
568                         goto out_free;
569                 }
570                 /* if nothing to unset, error out */
571                 if (value == NULL) {
572                         ret = 5;
573                         goto out_free;
574                 }
575
576                 store.key = (char*)key;
577                 store_write_section(fd, key);
578                 store_write_pair(fd, key, value);
579         } else{
580                 struct stat st;
581                 char* contents;
582                 int i, copy_begin, copy_end, new_line = 0;
583
584                 if (value_regex == NULL)
585                         store.value_regex = NULL;
586                 else {
587                         if (value_regex[0] == '!') {
588                                 store.do_not_match = 1;
589                                 value_regex++;
590                         } else
591                                 store.do_not_match = 0;
592
593                         store.value_regex = (regex_t*)malloc(sizeof(regex_t));
594                         if (regcomp(store.value_regex, value_regex,
595                                         REG_EXTENDED)) {
596                                 fprintf(stderr, "Invalid pattern: %s\n",
597                                         value_regex);
598                                 free(store.value_regex);
599                                 ret = 6;
600                                 goto out_free;
601                         }
602                 }
603
604                 store.offset[0] = 0;
605                 store.state = START;
606                 store.seen = 0;
607
608                 /*
609                  * After this, store.offset will contain the *end* offset
610                  * of the last match, or remain at 0 if no match was found.
611                  * As a side effect, we make sure to transform only a valid
612                  * existing config file.
613                  */
614                 if (git_config(store_aux)) {
615                         fprintf(stderr, "invalid config file\n");
616                         free(store.key);
617                         if (store.value_regex != NULL) {
618                                 regfree(store.value_regex);
619                                 free(store.value_regex);
620                         }
621                         ret = 3;
622                         goto out_free;
623                 }
624
625                 free(store.key);
626                 if (store.value_regex != NULL) {
627                         regfree(store.value_regex);
628                         free(store.value_regex);
629                 }
630
631                 /* if nothing to unset, or too many matches, error out */
632                 if ((store.seen == 0 && value == NULL) ||
633                                 (store.seen > 1 && multi_replace == 0)) {
634                         ret = 5;
635                         goto out_free;
636                 }
637
638                 fstat(in_fd, &st);
639                 contents = mmap(NULL, st.st_size, PROT_READ,
640                         MAP_PRIVATE, in_fd, 0);
641                 close(in_fd);
642
643                 if (store.seen == 0)
644                         store.seen = 1;
645
646                 for (i = 0, copy_begin = 0; i < store.seen; i++) {
647                         if (store.offset[i] == 0) {
648                                 store.offset[i] = copy_end = st.st_size;
649                         } else if (store.state != KEY_SEEN) {
650                                 copy_end = store.offset[i];
651                         } else
652                                 copy_end = find_beginning_of_line(
653                                         contents, st.st_size,
654                                         store.offset[i]-2, &new_line);
655
656                         /* write the first part of the config */
657                         if (copy_end > copy_begin) {
658                                 write(fd, contents + copy_begin,
659                                 copy_end - copy_begin);
660                                 if (new_line)
661                                         write(fd, "\n", 1);
662                         }
663                         copy_begin = store.offset[i];
664                 }
665
666                 /* write the pair (value == NULL means unset) */
667                 if (value != NULL) {
668                         if (store.state == START)
669                                 store_write_section(fd, key);
670                         store_write_pair(fd, key, value);
671                 }
672
673                 /* write the rest of the config */
674                 if (copy_begin < st.st_size)
675                         write(fd, contents + copy_begin,
676                                 st.st_size - copy_begin);
677
678                 munmap(contents, st.st_size);
679                 unlink(config_filename);
680         }
681
682         if (rename(lock_file, config_filename) < 0) {
683                 fprintf(stderr, "Could not rename the lock file?\n");
684                 ret = 4;
685                 goto out_free;
686         }
687
688         ret = 0;
689
690 out_free:
691         if (0 <= fd)
692                 close(fd);
693         if (config_filename)
694                 free(config_filename);
695         if (lock_file) {
696                 unlink(lock_file);
697                 free(lock_file);
698         }
699         return ret;
700 }
701
702