2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Johannes Schindelin, 2005
12 static FILE *config_file
;
13 static const char *config_file_name
;
14 static int config_linenr
;
15 static int get_next_char(void)
21 if ((f
= config_file
) != NULL
) {
24 /* DOS like systems */
41 static char *parse_value(void)
43 static char value
[1024];
44 int quote
= 0, comment
= 0, len
= 0, space
= 0;
47 int c
= get_next_char();
48 if (len
>= sizeof(value
))
58 if (isspace(c
) && !quote
) {
63 if (c
== ';' || c
== '#') {
87 /* Some characters escape as themselves */
90 /* Reject unknown escape sequences */
105 static inline int iskeychar(int c
)
107 return isalnum(c
) || c
== '-';
110 static int get_value(config_fn_t fn
, char *name
, unsigned int len
)
115 /* Get the full name */
122 name
[len
++] = tolower(c
);
127 while (c
== ' ' || c
== '\t')
134 value
= parse_value();
138 return fn(name
, value
);
141 static int get_extended_base_var(char *name
, int baselen
, int c
)
147 } while (isspace(c
));
149 /* We require the format to be '[base "extension"]' */
152 name
[baselen
++] = '.';
155 int c
= get_next_char();
166 if (baselen
> MAXNAME
/ 2)
171 if (get_next_char() != ']')
176 static int get_base_var(char *name
)
181 int c
= get_next_char();
187 return get_extended_base_var(name
, baselen
, c
);
188 if (!iskeychar(c
) && c
!= '.')
190 if (baselen
> MAXNAME
/ 2)
192 name
[baselen
++] = tolower(c
);
196 static int git_parse_file(config_fn_t fn
)
200 static char var
[MAXNAME
];
203 int c
= get_next_char();
211 if (comment
|| isspace(c
))
213 if (c
== '#' || c
== ';') {
218 baselen
= get_base_var(var
);
221 var
[baselen
++] = '.';
227 var
[baselen
] = tolower(c
);
228 if (get_value(fn
, var
, baselen
+1) < 0)
231 die("bad config file line %d in %s", config_linenr
, config_file_name
);
234 int git_config_int(const char *name
, const char *value
)
236 if (value
&& *value
) {
238 int val
= strtol(value
, &end
, 0);
241 if (!strcasecmp(end
, "k"))
243 if (!strcasecmp(end
, "m"))
244 return val
* 1024 * 1024;
245 if (!strcasecmp(end
, "g"))
246 return val
* 1024 * 1024 * 1024;
248 die("bad config value for '%s' in %s", name
, config_file_name
);
251 int git_config_bool(const char *name
, const char *value
)
257 if (!strcasecmp(value
, "true") || !strcasecmp(value
, "yes"))
259 if (!strcasecmp(value
, "false") || !strcasecmp(value
, "no"))
261 return git_config_int(name
, value
) != 0;
264 int git_default_config(const char *var
, const char *value
)
266 /* This needs a better name */
267 if (!strcmp(var
, "core.filemode")) {
268 trust_executable_bit
= git_config_bool(var
, value
);
272 if (!strcmp(var
, "core.bare")) {
273 is_bare_repository_cfg
= git_config_bool(var
, value
);
277 if (!strcmp(var
, "core.ignorestat")) {
278 assume_unchanged
= git_config_bool(var
, value
);
282 if (!strcmp(var
, "core.prefersymlinkrefs")) {
283 prefer_symlink_refs
= git_config_bool(var
, value
);
287 if (!strcmp(var
, "core.logallrefupdates")) {
288 log_all_ref_updates
= git_config_bool(var
, value
);
292 if (!strcmp(var
, "core.warnambiguousrefs")) {
293 warn_ambiguous_refs
= git_config_bool(var
, value
);
297 if (!strcmp(var
, "core.legacyheaders")) {
298 use_legacy_headers
= git_config_bool(var
, value
);
302 if (!strcmp(var
, "core.compression")) {
303 int level
= git_config_int(var
, value
);
305 level
= Z_DEFAULT_COMPRESSION
;
306 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
307 die("bad zlib compression level %d", level
);
308 zlib_compression_level
= level
;
312 if (!strcmp(var
, "core.packedgitwindowsize")) {
313 int pgsz_x2
= getpagesize() * 2;
314 packed_git_window_size
= git_config_int(var
, value
);
316 /* This value must be multiple of (pagesize * 2) */
317 packed_git_window_size
/= pgsz_x2
;
318 if (packed_git_window_size
< 1)
319 packed_git_window_size
= 1;
320 packed_git_window_size
*= pgsz_x2
;
324 if (!strcmp(var
, "core.packedgitlimit")) {
325 packed_git_limit
= git_config_int(var
, value
);
329 if (!strcmp(var
, "core.autocrlf")) {
330 if (value
&& !strcasecmp(value
, "input")) {
334 auto_crlf
= git_config_bool(var
, value
);
338 if (!strcmp(var
, "user.name")) {
339 strlcpy(git_default_name
, value
, sizeof(git_default_name
));
343 if (!strcmp(var
, "user.email")) {
344 strlcpy(git_default_email
, value
, sizeof(git_default_email
));
348 if (!strcmp(var
, "i18n.commitencoding")) {
349 git_commit_encoding
= strdup(value
);
353 if (!strcmp(var
, "i18n.logoutputencoding")) {
354 git_log_output_encoding
= strdup(value
);
359 if (!strcmp(var
, "pager.color") || !strcmp(var
, "color.pager")) {
360 pager_use_color
= git_config_bool(var
,value
);
364 /* Add other config variables here and to Documentation/config.txt. */
368 int git_config_from_file(config_fn_t fn
, const char *filename
)
371 FILE *f
= fopen(filename
, "r");
376 config_file_name
= filename
;
378 ret
= git_parse_file(fn
);
380 config_file_name
= NULL
;
385 int git_config(config_fn_t fn
)
388 char *repo_config
= NULL
;
389 const char *home
= NULL
, *filename
;
391 /* $GIT_CONFIG makes git read _only_ the given config file,
392 * $GIT_CONFIG_LOCAL will make it process it in addition to the
393 * global config file, the same way it would the per-repository
394 * config file otherwise. */
395 filename
= getenv(CONFIG_ENVIRONMENT
);
397 if (!access(ETC_GITCONFIG
, R_OK
))
398 ret
+= git_config_from_file(fn
, ETC_GITCONFIG
);
399 home
= getenv("HOME");
400 filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
402 filename
= repo_config
= xstrdup(git_path("config"));
406 char *user_config
= xstrdup(mkpath("%s/.gitconfig", home
));
407 if (!access(user_config
, R_OK
))
408 ret
= git_config_from_file(fn
, user_config
);
412 ret
+= git_config_from_file(fn
, filename
);
418 * Find all the stuff for git_config_set() below.
421 #define MAX_MATCHES 512
427 regex_t
* value_regex
;
429 off_t offset
[MAX_MATCHES
];
430 enum { START
, SECTION_SEEN
, SECTION_END_SEEN
, KEY_SEEN
} state
;
434 static int matches(const char* key
, const char* value
)
436 return !strcmp(key
, store
.key
) &&
437 (store
.value_regex
== NULL
||
438 (store
.do_not_match
^
439 !regexec(store
.value_regex
, value
, 0, NULL
, 0)));
442 static int store_aux(const char* key
, const char* value
)
444 switch (store
.state
) {
446 if (matches(key
, value
)) {
447 if (store
.seen
== 1 && store
.multi_replace
== 0) {
449 "Warning: %s has multiple values\n",
451 } else if (store
.seen
>= MAX_MATCHES
) {
452 fprintf(stderr
, "Too many matches\n");
456 store
.offset
[store
.seen
] = ftell(config_file
);
461 if (strncmp(key
, store
.key
, store
.baselen
+1)) {
462 store
.state
= SECTION_END_SEEN
;
465 /* do not increment matches: this is no match */
466 store
.offset
[store
.seen
] = ftell(config_file
);
468 case SECTION_END_SEEN
:
470 if (matches(key
, value
)) {
471 store
.offset
[store
.seen
] = ftell(config_file
);
472 store
.state
= KEY_SEEN
;
475 if (strrchr(key
, '.') - key
== store
.baselen
&&
476 !strncmp(key
, store
.key
, store
.baselen
)) {
477 store
.state
= SECTION_SEEN
;
478 store
.offset
[store
.seen
] = ftell(config_file
);
485 static int write_error()
487 fprintf(stderr
, "Failed to write new configuration file\n");
489 /* Same error code as "failed to rename". */
493 static int store_write_section(int fd
, const char* key
)
495 const char *dot
= strchr(key
, '.');
496 int len1
= store
.baselen
, len2
= -1;
498 dot
= strchr(key
, '.');
500 int dotlen
= dot
- key
;
502 len2
= len1
- dotlen
- 1;
507 if (write_in_full(fd
, "[", 1) != 1 ||
508 write_in_full(fd
, key
, len1
) != len1
)
511 if (write_in_full(fd
, " \"", 2) != 2)
513 while (--len2
>= 0) {
514 unsigned char c
= *++dot
;
516 if (write_in_full(fd
, "\\", 1) != 1)
518 if (write_in_full(fd
, &c
, 1) != 1)
521 if (write_in_full(fd
, "\"", 1) != 1)
524 if (write_in_full(fd
, "]\n", 2) != 2)
530 static int store_write_pair(int fd
, const char* key
, const char* value
)
533 int length
= strlen(key
+store
.baselen
+1);
536 /* Check to see if the value needs to be quoted. */
539 for (i
= 0; value
[i
]; i
++)
540 if (value
[i
] == ';' || value
[i
] == '#')
542 if (value
[i
-1] == ' ')
545 if (write_in_full(fd
, "\t", 1) != 1 ||
546 write_in_full(fd
, key
+store
.baselen
+1, length
) != length
||
547 write_in_full(fd
, " = ", 3) != 3)
549 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
551 for (i
= 0; value
[i
]; i
++)
554 if (write_in_full(fd
, "\\n", 2) != 2)
558 if (write_in_full(fd
, "\\t", 2) != 2)
563 if (write_in_full(fd
, "\\", 1) != 1)
566 if (write_in_full(fd
, value
+i
, 1) != 1)
570 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
572 if (write_in_full(fd
, "\n", 1) != 1)
577 static int find_beginning_of_line(const char* contents
, int size
,
578 int offset_
, int* found_bracket
)
580 int equal_offset
= size
, bracket_offset
= size
;
583 for (offset
= offset_
-2; offset
> 0
584 && contents
[offset
] != '\n'; offset
--)
585 switch (contents
[offset
]) {
586 case '=': equal_offset
= offset
; break;
587 case ']': bracket_offset
= offset
; break;
589 if (bracket_offset
< equal_offset
) {
591 offset
= bracket_offset
+1;
598 int git_config_set(const char* key
, const char* value
)
600 return git_config_set_multivar(key
, value
, NULL
, 0);
604 * If value==NULL, unset in (remove from) config,
605 * if value_regex!=NULL, disregard key/value pairs where value does not match.
606 * if multi_replace==0, nothing, or only one matching key/value is replaced,
607 * else all matching key/values (regardless how many) are removed,
608 * before the new pair is written.
610 * Returns 0 on success.
612 * This function does this:
614 * - it locks the config file by creating ".git/config.lock"
616 * - it then parses the config using store_aux() as validator to find
617 * the position on the key/value pair to replace. If it is to be unset,
618 * it must be found exactly once.
620 * - the config file is mmap()ed and the part before the match (if any) is
621 * written to the lock file, then the changed part and the rest.
623 * - the config file is removed and the lock file rename()d to it.
626 int git_config_set_multivar(const char* key
, const char* value
,
627 const char* value_regex
, int multi_replace
)
632 char* config_filename
;
634 const char* last_dot
= strrchr(key
, '.');
636 config_filename
= getenv(CONFIG_ENVIRONMENT
);
637 if (!config_filename
) {
638 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
639 if (!config_filename
)
640 config_filename
= git_path("config");
642 config_filename
= xstrdup(config_filename
);
643 lock_file
= xstrdup(mkpath("%s.lock", config_filename
));
646 * Since "key" actually contains the section name and the real
647 * key name separated by a dot, we have to know where the dot is.
650 if (last_dot
== NULL
) {
651 fprintf(stderr
, "key does not contain a section: %s\n", key
);
655 store
.baselen
= last_dot
- key
;
657 store
.multi_replace
= multi_replace
;
660 * Validate the key and while at it, lower case it for matching.
662 store
.key
= xmalloc(strlen(key
) + 1);
664 for (i
= 0; key
[i
]; i
++) {
665 unsigned char c
= key
[i
];
668 /* Leave the extended basename untouched.. */
669 if (!dot
|| i
> store
.baselen
) {
670 if (!iskeychar(c
) || (i
== store
.baselen
+1 && !isalpha(c
))) {
671 fprintf(stderr
, "invalid key: %s\n", key
);
677 } else if (c
== '\n') {
678 fprintf(stderr
, "invalid key (newline): %s\n", key
);
688 * The lock_file serves a purpose in addition to locking: the new
689 * contents of .git/config will be written into it.
691 fd
= open(lock_file
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
692 if (fd
< 0 || adjust_shared_perm(lock_file
)) {
693 fprintf(stderr
, "could not lock config file\n");
700 * If .git/config does not exist yet, write a minimal version.
702 in_fd
= open(config_filename
, O_RDONLY
);
706 if ( ENOENT
!= errno
) {
707 error("opening %s: %s", config_filename
,
709 ret
= 3; /* same as "invalid config file" */
712 /* if nothing to unset, error out */
718 store
.key
= (char*)key
;
719 if (!store_write_section(fd
, key
) ||
720 !store_write_pair(fd
, key
, value
))
725 int i
, copy_begin
, copy_end
, new_line
= 0;
727 if (value_regex
== NULL
)
728 store
.value_regex
= NULL
;
730 if (value_regex
[0] == '!') {
731 store
.do_not_match
= 1;
734 store
.do_not_match
= 0;
736 store
.value_regex
= (regex_t
*)xmalloc(sizeof(regex_t
));
737 if (regcomp(store
.value_regex
, value_regex
,
739 fprintf(stderr
, "Invalid pattern: %s\n",
741 free(store
.value_regex
);
752 * After this, store.offset will contain the *end* offset
753 * of the last match, or remain at 0 if no match was found.
754 * As a side effect, we make sure to transform only a valid
755 * existing config file.
757 if (git_config_from_file(store_aux
, config_filename
)) {
758 fprintf(stderr
, "invalid config file\n");
760 if (store
.value_regex
!= NULL
) {
761 regfree(store
.value_regex
);
762 free(store
.value_regex
);
769 if (store
.value_regex
!= NULL
) {
770 regfree(store
.value_regex
);
771 free(store
.value_regex
);
774 /* if nothing to unset, or too many matches, error out */
775 if ((store
.seen
== 0 && value
== NULL
) ||
776 (store
.seen
> 1 && multi_replace
== 0)) {
782 contents
= xmmap(NULL
, st
.st_size
, PROT_READ
,
783 MAP_PRIVATE
, in_fd
, 0);
789 for (i
= 0, copy_begin
= 0; i
< store
.seen
; i
++) {
790 if (store
.offset
[i
] == 0) {
791 store
.offset
[i
] = copy_end
= st
.st_size
;
792 } else if (store
.state
!= KEY_SEEN
) {
793 copy_end
= store
.offset
[i
];
795 copy_end
= find_beginning_of_line(
796 contents
, st
.st_size
,
797 store
.offset
[i
]-2, &new_line
);
799 /* write the first part of the config */
800 if (copy_end
> copy_begin
) {
801 if (write_in_full(fd
, contents
+ copy_begin
,
802 copy_end
- copy_begin
) <
803 copy_end
- copy_begin
)
806 write_in_full(fd
, "\n", 1) != 1)
809 copy_begin
= store
.offset
[i
];
812 /* write the pair (value == NULL means unset) */
814 if (store
.state
== START
) {
815 if (!store_write_section(fd
, key
))
818 if (!store_write_pair(fd
, key
, value
))
822 /* write the rest of the config */
823 if (copy_begin
< st
.st_size
)
824 if (write_in_full(fd
, contents
+ copy_begin
,
825 st
.st_size
- copy_begin
) <
826 st
.st_size
- copy_begin
)
829 munmap(contents
, st
.st_size
);
830 unlink(config_filename
);
833 if (rename(lock_file
, config_filename
) < 0) {
834 fprintf(stderr
, "Could not rename the lock file?\n");
844 free(config_filename
);
857 int git_config_rename_section(const char *old_name
, const char *new_name
)
860 char *config_filename
;
861 struct lock_file
*lock
= xcalloc(sizeof(struct lock_file
), 1);
865 config_filename
= getenv(CONFIG_ENVIRONMENT
);
866 if (!config_filename
) {
867 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
868 if (!config_filename
)
869 config_filename
= git_path("config");
871 config_filename
= xstrdup(config_filename
);
872 out_fd
= hold_lock_file_for_update(lock
, config_filename
, 0);
874 ret
= error("Could not lock config file!");
878 if (!(config_file
= fopen(config_filename
, "rb"))) {
879 ret
= error("Could not open config file!");
883 while (fgets(buf
, sizeof(buf
), config_file
)) {
886 for (i
= 0; buf
[i
] && isspace(buf
[i
]); i
++)
891 for (i
++; buf
[i
] && buf
[i
] != ']'; i
++) {
892 if (!dot
&& isspace(buf
[i
])) {
894 if (old_name
[j
++] != '.')
896 for (i
++; isspace(buf
[i
]); i
++)
902 if (buf
[i
] == '\\' && dot
)
904 else if (buf
[i
] == '"' && dot
) {
905 for (i
++; isspace(buf
[i
]); i
++)
909 if (buf
[i
] != old_name
[j
++])
912 if (buf
[i
] == ']' && old_name
[j
] == 0) {
913 /* old_name matches */
915 store
.baselen
= strlen(new_name
);
916 if (!store_write_section(out_fd
, new_name
)) {
923 length
= strlen(buf
);
924 if (write_in_full(out_fd
, buf
, length
) != length
) {
930 if (close(out_fd
) || commit_lock_file(lock
) < 0)
931 ret
= error("Cannot commit config file!");
933 free(config_filename
);