2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Johannes Schindelin, 2005
13 static FILE *config_file
;
14 static const char *config_file_name
;
15 static int config_linenr
;
16 static int get_next_char(void)
22 if ((f
= config_file
) != NULL
) {
25 /* DOS like systems */
42 static char *parse_value(void)
44 static char value
[1024];
45 int quote
= 0, comment
= 0, len
= 0, space
= 0;
48 int c
= get_next_char();
49 if (len
>= sizeof(value
))
59 if (isspace(c
) && !quote
) {
64 if (c
== ';' || c
== '#') {
88 /* Some characters escape as themselves */
91 /* Reject unknown escape sequences */
106 static int get_value(config_fn_t fn
, char *name
, unsigned int len
)
111 /* Get the full name */
118 name
[len
++] = tolower(c
);
123 while (c
== ' ' || c
== '\t')
130 value
= parse_value();
134 return fn(name
, value
);
137 static int get_extended_base_var(char *name
, int baselen
, int c
)
143 } while (isspace(c
));
145 /* We require the format to be '[base "extension"]' */
148 name
[baselen
++] = '.';
151 int c
= get_next_char();
162 if (baselen
> MAXNAME
/ 2)
167 if (get_next_char() != ']')
172 static int get_base_var(char *name
)
177 int c
= get_next_char();
183 return get_extended_base_var(name
, baselen
, c
);
184 if (!isalnum(c
) && c
!= '.')
186 if (baselen
> MAXNAME
/ 2)
188 name
[baselen
++] = tolower(c
);
192 static int git_parse_file(config_fn_t fn
)
196 static char var
[MAXNAME
];
199 int c
= get_next_char();
207 if (comment
|| isspace(c
))
209 if (c
== '#' || c
== ';') {
214 baselen
= get_base_var(var
);
217 var
[baselen
++] = '.';
223 var
[baselen
] = tolower(c
);
224 if (get_value(fn
, var
, baselen
+1) < 0)
227 die("bad config file line %d in %s", config_linenr
, config_file_name
);
230 int git_config_int(const char *name
, const char *value
)
232 if (value
&& *value
) {
234 int val
= strtol(value
, &end
, 0);
238 die("bad config value for '%s' in %s", name
, config_file_name
);
241 int git_config_bool(const char *name
, const char *value
)
247 if (!strcasecmp(value
, "true") || !strcasecmp(value
, "yes"))
249 if (!strcasecmp(value
, "false") || !strcasecmp(value
, "no"))
251 return git_config_int(name
, value
) != 0;
254 int git_default_config(const char *var
, const char *value
)
256 /* This needs a better name */
257 if (!strcmp(var
, "core.filemode")) {
258 trust_executable_bit
= git_config_bool(var
, value
);
262 if (!strcmp(var
, "core.ignorestat")) {
263 assume_unchanged
= git_config_bool(var
, value
);
267 if (!strcmp(var
, "core.prefersymlinkrefs")) {
268 prefer_symlink_refs
= git_config_bool(var
, value
);
272 if (!strcmp(var
, "core.logallrefupdates")) {
273 log_all_ref_updates
= git_config_bool(var
, value
);
277 if (!strcmp(var
, "core.warnambiguousrefs")) {
278 warn_ambiguous_refs
= git_config_bool(var
, value
);
282 if (!strcmp(var
, "core.legacyheaders")) {
283 use_legacy_headers
= git_config_bool(var
, value
);
287 if (!strcmp(var
, "core.compression")) {
288 int level
= git_config_int(var
, value
);
290 level
= Z_DEFAULT_COMPRESSION
;
291 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
292 die("bad zlib compression level %d", level
);
293 zlib_compression_level
= level
;
297 if (!strcmp(var
, "user.name")) {
298 strlcpy(git_default_name
, value
, sizeof(git_default_name
));
302 if (!strcmp(var
, "user.email")) {
303 strlcpy(git_default_email
, value
, sizeof(git_default_email
));
307 if (!strcmp(var
, "i18n.commitencoding")) {
308 strlcpy(git_commit_encoding
, value
, sizeof(git_commit_encoding
));
312 if (!strcmp(var
, "pager.color")) {
313 pager_use_color
= git_config_bool(var
,value
);
317 /* Add other config variables here and to Documentation/config.txt. */
321 int git_config_from_file(config_fn_t fn
, const char *filename
)
324 FILE *f
= fopen(filename
, "r");
329 config_file_name
= filename
;
331 ret
= git_parse_file(fn
);
333 config_file_name
= NULL
;
338 int git_config(config_fn_t fn
)
341 char *repo_config
= NULL
;
342 const char *home
= NULL
, *filename
;
344 /* $GIT_CONFIG makes git read _only_ the given config file,
345 * $GIT_CONFIG_LOCAL will make it process it in addition to the
346 * global config file, the same way it would the per-repository
347 * config file otherwise. */
348 filename
= getenv("GIT_CONFIG");
350 home
= getenv("HOME");
351 filename
= getenv("GIT_CONFIG_LOCAL");
353 filename
= repo_config
= strdup(git_path("config"));
357 char *user_config
= strdup(mkpath("%s/.gitconfig", home
));
358 if (!access(user_config
, R_OK
))
359 ret
= git_config_from_file(fn
, user_config
);
363 ret
+= git_config_from_file(fn
, filename
);
370 * Find all the stuff for git_config_set() below.
373 #define MAX_MATCHES 512
379 regex_t
* value_regex
;
381 off_t offset
[MAX_MATCHES
];
382 enum { START
, SECTION_SEEN
, SECTION_END_SEEN
, KEY_SEEN
} state
;
386 static int matches(const char* key
, const char* value
)
388 return !strcmp(key
, store
.key
) &&
389 (store
.value_regex
== NULL
||
390 (store
.do_not_match
^
391 !regexec(store
.value_regex
, value
, 0, NULL
, 0)));
394 static int store_aux(const char* key
, const char* value
)
396 switch (store
.state
) {
398 if (matches(key
, value
)) {
399 if (store
.seen
== 1 && store
.multi_replace
== 0) {
401 "Warning: %s has multiple values\n",
403 } else if (store
.seen
>= MAX_MATCHES
) {
404 fprintf(stderr
, "Too many matches\n");
408 store
.offset
[store
.seen
] = ftell(config_file
);
413 if (strncmp(key
, store
.key
, store
.baselen
+1)) {
414 store
.state
= SECTION_END_SEEN
;
417 /* do not increment matches: this is no match */
418 store
.offset
[store
.seen
] = ftell(config_file
);
420 case SECTION_END_SEEN
:
422 if (matches(key
, value
)) {
423 store
.offset
[store
.seen
] = ftell(config_file
);
424 store
.state
= KEY_SEEN
;
427 if (strrchr(key
, '.') - key
== store
.baselen
&&
428 !strncmp(key
, store
.key
, store
.baselen
)) {
429 store
.state
= SECTION_SEEN
;
430 store
.offset
[store
.seen
] = ftell(config_file
);
437 static void store_write_section(int fd
, const char* key
)
439 const char *dot
= strchr(key
, '.');
440 int len1
= store
.baselen
, len2
= -1;
442 dot
= strchr(key
, '.');
444 int dotlen
= dot
- key
;
446 len2
= len1
- dotlen
- 1;
452 write(fd
, key
, len1
);
455 while (--len2
>= 0) {
456 unsigned char c
= *++dot
;
466 static void store_write_pair(int fd
, const char* key
, const char* value
)
471 write(fd
, key
+store
.baselen
+1,
472 strlen(key
+store
.baselen
+1));
474 for (i
= 0; value
[i
]; i
++)
476 case '\n': write(fd
, "\\n", 2); break;
477 case '\t': write(fd
, "\\t", 2); break;
478 case '"': case '\\': write(fd
, "\\", 1);
479 default: write(fd
, value
+i
, 1);
484 static int find_beginning_of_line(const char* contents
, int size
,
485 int offset_
, int* found_bracket
)
487 int equal_offset
= size
, bracket_offset
= size
;
490 for (offset
= offset_
-2; offset
> 0
491 && contents
[offset
] != '\n'; offset
--)
492 switch (contents
[offset
]) {
493 case '=': equal_offset
= offset
; break;
494 case ']': bracket_offset
= offset
; break;
496 if (bracket_offset
< equal_offset
) {
498 offset
= bracket_offset
+1;
505 int git_config_set(const char* key
, const char* value
)
507 return git_config_set_multivar(key
, value
, NULL
, 0);
511 * If value==NULL, unset in (remove from) config,
512 * if value_regex!=NULL, disregard key/value pairs where value does not match.
513 * if multi_replace==0, nothing, or only one matching key/value is replaced,
514 * else all matching key/values (regardless how many) are removed,
515 * before the new pair is written.
517 * Returns 0 on success.
519 * This function does this:
521 * - it locks the config file by creating ".git/config.lock"
523 * - it then parses the config using store_aux() as validator to find
524 * the position on the key/value pair to replace. If it is to be unset,
525 * it must be found exactly once.
527 * - the config file is mmap()ed and the part before the match (if any) is
528 * written to the lock file, then the changed part and the rest.
530 * - the config file is removed and the lock file rename()d to it.
533 int git_config_set_multivar(const char* key
, const char* value
,
534 const char* value_regex
, int multi_replace
)
539 char* config_filename
;
541 const char* last_dot
= strrchr(key
, '.');
543 config_filename
= getenv("GIT_CONFIG");
544 if (!config_filename
) {
545 config_filename
= getenv("GIT_CONFIG_LOCAL");
546 if (!config_filename
)
547 config_filename
= git_path("config");
549 config_filename
= strdup(config_filename
);
550 lock_file
= strdup(mkpath("%s.lock", config_filename
));
553 * Since "key" actually contains the section name and the real
554 * key name separated by a dot, we have to know where the dot is.
557 if (last_dot
== NULL
) {
558 fprintf(stderr
, "key does not contain a section: %s\n", key
);
562 store
.baselen
= last_dot
- key
;
564 store
.multi_replace
= multi_replace
;
567 * Validate the key and while at it, lower case it for matching.
569 store
.key
= (char*)malloc(strlen(key
)+1);
571 for (i
= 0; key
[i
]; i
++) {
572 unsigned char c
= key
[i
];
575 /* Leave the extended basename untouched.. */
576 if (!dot
|| i
> store
.baselen
) {
577 if (!isalnum(c
) || (i
== store
.baselen
+1 && !isalpha(c
))) {
578 fprintf(stderr
, "invalid key: %s\n", key
);
590 * The lock_file serves a purpose in addition to locking: the new
591 * contents of .git/config will be written into it.
593 fd
= open(lock_file
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
594 if (fd
< 0 || adjust_shared_perm(lock_file
)) {
595 fprintf(stderr
, "could not lock config file\n");
602 * If .git/config does not exist yet, write a minimal version.
604 in_fd
= open(config_filename
, O_RDONLY
);
608 if ( ENOENT
!= errno
) {
609 error("opening %s: %s", config_filename
,
611 ret
= 3; /* same as "invalid config file" */
614 /* if nothing to unset, error out */
620 store
.key
= (char*)key
;
621 store_write_section(fd
, key
);
622 store_write_pair(fd
, key
, value
);
626 int i
, copy_begin
, copy_end
, new_line
= 0;
628 if (value_regex
== NULL
)
629 store
.value_regex
= NULL
;
631 if (value_regex
[0] == '!') {
632 store
.do_not_match
= 1;
635 store
.do_not_match
= 0;
637 store
.value_regex
= (regex_t
*)malloc(sizeof(regex_t
));
638 if (regcomp(store
.value_regex
, value_regex
,
640 fprintf(stderr
, "Invalid pattern: %s\n",
642 free(store
.value_regex
);
653 * After this, store.offset will contain the *end* offset
654 * of the last match, or remain at 0 if no match was found.
655 * As a side effect, we make sure to transform only a valid
656 * existing config file.
658 if (git_config_from_file(store_aux
, config_filename
)) {
659 fprintf(stderr
, "invalid config file\n");
661 if (store
.value_regex
!= NULL
) {
662 regfree(store
.value_regex
);
663 free(store
.value_regex
);
670 if (store
.value_regex
!= NULL
) {
671 regfree(store
.value_regex
);
672 free(store
.value_regex
);
675 /* if nothing to unset, or too many matches, error out */
676 if ((store
.seen
== 0 && value
== NULL
) ||
677 (store
.seen
> 1 && multi_replace
== 0)) {
683 contents
= mmap(NULL
, st
.st_size
, PROT_READ
,
684 MAP_PRIVATE
, in_fd
, 0);
690 for (i
= 0, copy_begin
= 0; i
< store
.seen
; i
++) {
691 if (store
.offset
[i
] == 0) {
692 store
.offset
[i
] = copy_end
= st
.st_size
;
693 } else if (store
.state
!= KEY_SEEN
) {
694 copy_end
= store
.offset
[i
];
696 copy_end
= find_beginning_of_line(
697 contents
, st
.st_size
,
698 store
.offset
[i
]-2, &new_line
);
700 /* write the first part of the config */
701 if (copy_end
> copy_begin
) {
702 write(fd
, contents
+ copy_begin
,
703 copy_end
- copy_begin
);
707 copy_begin
= store
.offset
[i
];
710 /* write the pair (value == NULL means unset) */
712 if (store
.state
== START
)
713 store_write_section(fd
, key
);
714 store_write_pair(fd
, key
, value
);
717 /* write the rest of the config */
718 if (copy_begin
< st
.st_size
)
719 write(fd
, contents
+ copy_begin
,
720 st
.st_size
- copy_begin
);
722 munmap(contents
, st
.st_size
);
723 unlink(config_filename
);
726 if (rename(lock_file
, config_filename
) < 0) {
727 fprintf(stderr
, "Could not rename the lock file?\n");
738 free(config_filename
);