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.symlinks")) {
273 has_symlinks
= git_config_bool(var
, value
);
277 if (!strcmp(var
, "core.bare")) {
278 is_bare_repository_cfg
= git_config_bool(var
, value
);
282 if (!strcmp(var
, "core.ignorestat")) {
283 assume_unchanged
= git_config_bool(var
, value
);
287 if (!strcmp(var
, "core.prefersymlinkrefs")) {
288 prefer_symlink_refs
= git_config_bool(var
, value
);
292 if (!strcmp(var
, "core.logallrefupdates")) {
293 log_all_ref_updates
= git_config_bool(var
, value
);
297 if (!strcmp(var
, "core.warnambiguousrefs")) {
298 warn_ambiguous_refs
= git_config_bool(var
, value
);
302 if (!strcmp(var
, "core.legacyheaders")) {
303 use_legacy_headers
= git_config_bool(var
, value
);
307 if (!strcmp(var
, "core.compression")) {
308 int level
= git_config_int(var
, value
);
310 level
= Z_DEFAULT_COMPRESSION
;
311 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
312 die("bad zlib compression level %d", level
);
313 zlib_compression_level
= level
;
317 if (!strcmp(var
, "core.packedgitwindowsize")) {
318 int pgsz_x2
= getpagesize() * 2;
319 packed_git_window_size
= git_config_int(var
, value
);
321 /* This value must be multiple of (pagesize * 2) */
322 packed_git_window_size
/= pgsz_x2
;
323 if (packed_git_window_size
< 1)
324 packed_git_window_size
= 1;
325 packed_git_window_size
*= pgsz_x2
;
329 if (!strcmp(var
, "core.packedgitlimit")) {
330 packed_git_limit
= git_config_int(var
, value
);
334 if (!strcmp(var
, "core.deltabasecachelimit")) {
335 delta_base_cache_limit
= git_config_int(var
, value
);
339 if (!strcmp(var
, "core.autocrlf")) {
340 if (value
&& !strcasecmp(value
, "input")) {
344 auto_crlf
= git_config_bool(var
, value
);
348 if (!strcmp(var
, "user.name")) {
349 strlcpy(git_default_name
, value
, sizeof(git_default_name
));
353 if (!strcmp(var
, "user.email")) {
354 strlcpy(git_default_email
, value
, sizeof(git_default_email
));
358 if (!strcmp(var
, "i18n.commitencoding")) {
359 git_commit_encoding
= xstrdup(value
);
363 if (!strcmp(var
, "i18n.logoutputencoding")) {
364 git_log_output_encoding
= xstrdup(value
);
369 if (!strcmp(var
, "pager.color") || !strcmp(var
, "color.pager")) {
370 pager_use_color
= git_config_bool(var
,value
);
374 /* Add other config variables here and to Documentation/config.txt. */
378 int git_config_from_file(config_fn_t fn
, const char *filename
)
381 FILE *f
= fopen(filename
, "r");
386 config_file_name
= filename
;
388 ret
= git_parse_file(fn
);
390 config_file_name
= NULL
;
395 int git_config(config_fn_t fn
)
398 char *repo_config
= NULL
;
399 const char *home
= NULL
, *filename
;
401 /* $GIT_CONFIG makes git read _only_ the given config file,
402 * $GIT_CONFIG_LOCAL will make it process it in addition to the
403 * global config file, the same way it would the per-repository
404 * config file otherwise. */
405 filename
= getenv(CONFIG_ENVIRONMENT
);
407 if (!access(ETC_GITCONFIG
, R_OK
))
408 ret
+= git_config_from_file(fn
, ETC_GITCONFIG
);
409 home
= getenv("HOME");
410 filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
412 filename
= repo_config
= xstrdup(git_path("config"));
416 char *user_config
= xstrdup(mkpath("%s/.gitconfig", home
));
417 if (!access(user_config
, R_OK
))
418 ret
= git_config_from_file(fn
, user_config
);
422 ret
+= git_config_from_file(fn
, filename
);
428 * Find all the stuff for git_config_set() below.
431 #define MAX_MATCHES 512
437 regex_t
* value_regex
;
439 size_t offset
[MAX_MATCHES
];
440 enum { START
, SECTION_SEEN
, SECTION_END_SEEN
, KEY_SEEN
} state
;
444 static int matches(const char* key
, const char* value
)
446 return !strcmp(key
, store
.key
) &&
447 (store
.value_regex
== NULL
||
448 (store
.do_not_match
^
449 !regexec(store
.value_regex
, value
, 0, NULL
, 0)));
452 static int store_aux(const char* key
, const char* value
)
454 switch (store
.state
) {
456 if (matches(key
, value
)) {
457 if (store
.seen
== 1 && store
.multi_replace
== 0) {
459 "Warning: %s has multiple values\n",
461 } else if (store
.seen
>= MAX_MATCHES
) {
462 fprintf(stderr
, "Too many matches\n");
466 store
.offset
[store
.seen
] = ftell(config_file
);
471 if (strncmp(key
, store
.key
, store
.baselen
+1)) {
472 store
.state
= SECTION_END_SEEN
;
475 /* do not increment matches: this is no match */
476 store
.offset
[store
.seen
] = ftell(config_file
);
478 case SECTION_END_SEEN
:
480 if (matches(key
, value
)) {
481 store
.offset
[store
.seen
] = ftell(config_file
);
482 store
.state
= KEY_SEEN
;
485 if (strrchr(key
, '.') - key
== store
.baselen
&&
486 !strncmp(key
, store
.key
, store
.baselen
)) {
487 store
.state
= SECTION_SEEN
;
488 store
.offset
[store
.seen
] = ftell(config_file
);
495 static int write_error()
497 fprintf(stderr
, "Failed to write new configuration file\n");
499 /* Same error code as "failed to rename". */
503 static int store_write_section(int fd
, const char* key
)
505 const char *dot
= strchr(key
, '.');
506 int len1
= store
.baselen
, len2
= -1;
508 dot
= strchr(key
, '.');
510 int dotlen
= dot
- key
;
512 len2
= len1
- dotlen
- 1;
517 if (write_in_full(fd
, "[", 1) != 1 ||
518 write_in_full(fd
, key
, len1
) != len1
)
521 if (write_in_full(fd
, " \"", 2) != 2)
523 while (--len2
>= 0) {
524 unsigned char c
= *++dot
;
526 if (write_in_full(fd
, "\\", 1) != 1)
528 if (write_in_full(fd
, &c
, 1) != 1)
531 if (write_in_full(fd
, "\"", 1) != 1)
534 if (write_in_full(fd
, "]\n", 2) != 2)
540 static int store_write_pair(int fd
, const char* key
, const char* value
)
543 int length
= strlen(key
+store
.baselen
+1);
546 /* Check to see if the value needs to be quoted. */
549 for (i
= 0; value
[i
]; i
++)
550 if (value
[i
] == ';' || value
[i
] == '#')
552 if (value
[i
-1] == ' ')
555 if (write_in_full(fd
, "\t", 1) != 1 ||
556 write_in_full(fd
, key
+store
.baselen
+1, length
) != length
||
557 write_in_full(fd
, " = ", 3) != 3)
559 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
561 for (i
= 0; value
[i
]; i
++)
564 if (write_in_full(fd
, "\\n", 2) != 2)
568 if (write_in_full(fd
, "\\t", 2) != 2)
573 if (write_in_full(fd
, "\\", 1) != 1)
576 if (write_in_full(fd
, value
+i
, 1) != 1)
580 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
582 if (write_in_full(fd
, "\n", 1) != 1)
587 static ssize_t
find_beginning_of_line(const char* contents
, size_t size
,
588 size_t offset_
, int* found_bracket
)
590 size_t equal_offset
= size
, bracket_offset
= size
;
593 for (offset
= offset_
-2; offset
> 0
594 && contents
[offset
] != '\n'; offset
--)
595 switch (contents
[offset
]) {
596 case '=': equal_offset
= offset
; break;
597 case ']': bracket_offset
= offset
; break;
599 if (bracket_offset
< equal_offset
) {
601 offset
= bracket_offset
+1;
608 int git_config_set(const char* key
, const char* value
)
610 return git_config_set_multivar(key
, value
, NULL
, 0);
614 * If value==NULL, unset in (remove from) config,
615 * if value_regex!=NULL, disregard key/value pairs where value does not match.
616 * if multi_replace==0, nothing, or only one matching key/value is replaced,
617 * else all matching key/values (regardless how many) are removed,
618 * before the new pair is written.
620 * Returns 0 on success.
622 * This function does this:
624 * - it locks the config file by creating ".git/config.lock"
626 * - it then parses the config using store_aux() as validator to find
627 * the position on the key/value pair to replace. If it is to be unset,
628 * it must be found exactly once.
630 * - the config file is mmap()ed and the part before the match (if any) is
631 * written to the lock file, then the changed part and the rest.
633 * - the config file is removed and the lock file rename()d to it.
636 int git_config_set_multivar(const char* key
, const char* value
,
637 const char* value_regex
, int multi_replace
)
642 char* config_filename
;
644 const char* last_dot
= strrchr(key
, '.');
646 config_filename
= getenv(CONFIG_ENVIRONMENT
);
647 if (!config_filename
) {
648 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
649 if (!config_filename
)
650 config_filename
= git_path("config");
652 config_filename
= xstrdup(config_filename
);
653 lock_file
= xstrdup(mkpath("%s.lock", config_filename
));
656 * Since "key" actually contains the section name and the real
657 * key name separated by a dot, we have to know where the dot is.
660 if (last_dot
== NULL
) {
661 fprintf(stderr
, "key does not contain a section: %s\n", key
);
665 store
.baselen
= last_dot
- key
;
667 store
.multi_replace
= multi_replace
;
670 * Validate the key and while at it, lower case it for matching.
672 store
.key
= xmalloc(strlen(key
) + 1);
674 for (i
= 0; key
[i
]; i
++) {
675 unsigned char c
= key
[i
];
678 /* Leave the extended basename untouched.. */
679 if (!dot
|| i
> store
.baselen
) {
680 if (!iskeychar(c
) || (i
== store
.baselen
+1 && !isalpha(c
))) {
681 fprintf(stderr
, "invalid key: %s\n", key
);
687 } else if (c
== '\n') {
688 fprintf(stderr
, "invalid key (newline): %s\n", key
);
698 * The lock_file serves a purpose in addition to locking: the new
699 * contents of .git/config will be written into it.
701 fd
= open(lock_file
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
702 if (fd
< 0 || adjust_shared_perm(lock_file
)) {
703 fprintf(stderr
, "could not lock config file\n");
710 * If .git/config does not exist yet, write a minimal version.
712 in_fd
= open(config_filename
, O_RDONLY
);
716 if ( ENOENT
!= errno
) {
717 error("opening %s: %s", config_filename
,
719 ret
= 3; /* same as "invalid config file" */
722 /* if nothing to unset, error out */
728 store
.key
= (char*)key
;
729 if (!store_write_section(fd
, key
) ||
730 !store_write_pair(fd
, key
, value
))
735 size_t contents_sz
, copy_begin
, copy_end
;
738 if (value_regex
== NULL
)
739 store
.value_regex
= NULL
;
741 if (value_regex
[0] == '!') {
742 store
.do_not_match
= 1;
745 store
.do_not_match
= 0;
747 store
.value_regex
= (regex_t
*)xmalloc(sizeof(regex_t
));
748 if (regcomp(store
.value_regex
, value_regex
,
750 fprintf(stderr
, "Invalid pattern: %s\n",
752 free(store
.value_regex
);
763 * After this, store.offset will contain the *end* offset
764 * of the last match, or remain at 0 if no match was found.
765 * As a side effect, we make sure to transform only a valid
766 * existing config file.
768 if (git_config_from_file(store_aux
, config_filename
)) {
769 fprintf(stderr
, "invalid config file\n");
771 if (store
.value_regex
!= NULL
) {
772 regfree(store
.value_regex
);
773 free(store
.value_regex
);
780 if (store
.value_regex
!= NULL
) {
781 regfree(store
.value_regex
);
782 free(store
.value_regex
);
785 /* if nothing to unset, or too many matches, error out */
786 if ((store
.seen
== 0 && value
== NULL
) ||
787 (store
.seen
> 1 && multi_replace
== 0)) {
793 contents_sz
= xsize_t(st
.st_size
);
794 contents
= xmmap(NULL
, contents_sz
, PROT_READ
,
795 MAP_PRIVATE
, in_fd
, 0);
801 for (i
= 0, copy_begin
= 0; i
< store
.seen
; i
++) {
802 if (store
.offset
[i
] == 0) {
803 store
.offset
[i
] = copy_end
= contents_sz
;
804 } else if (store
.state
!= KEY_SEEN
) {
805 copy_end
= store
.offset
[i
];
807 copy_end
= find_beginning_of_line(
808 contents
, contents_sz
,
809 store
.offset
[i
]-2, &new_line
);
811 /* write the first part of the config */
812 if (copy_end
> copy_begin
) {
813 if (write_in_full(fd
, contents
+ copy_begin
,
814 copy_end
- copy_begin
) <
815 copy_end
- copy_begin
)
818 write_in_full(fd
, "\n", 1) != 1)
821 copy_begin
= store
.offset
[i
];
824 /* write the pair (value == NULL means unset) */
826 if (store
.state
== START
) {
827 if (!store_write_section(fd
, key
))
830 if (!store_write_pair(fd
, key
, value
))
834 /* write the rest of the config */
835 if (copy_begin
< contents_sz
)
836 if (write_in_full(fd
, contents
+ copy_begin
,
837 contents_sz
- copy_begin
) <
838 contents_sz
- copy_begin
)
841 munmap(contents
, contents_sz
);
842 unlink(config_filename
);
845 if (rename(lock_file
, config_filename
) < 0) {
846 fprintf(stderr
, "Could not rename the lock file?\n");
856 free(config_filename
);
869 static int section_name_match (const char *buf
, const char *name
)
871 int i
= 0, j
= 0, dot
= 0;
872 for (; buf
[i
] && buf
[i
] != ']'; i
++) {
873 if (!dot
&& isspace(buf
[i
])) {
875 if (name
[j
++] != '.')
877 for (i
++; isspace(buf
[i
]); i
++)
883 if (buf
[i
] == '\\' && dot
)
885 else if (buf
[i
] == '"' && dot
) {
886 for (i
++; isspace(buf
[i
]); i
++)
890 if (buf
[i
] != name
[j
++])
893 return (buf
[i
] == ']' && name
[j
] == 0);
896 /* if new_name == NULL, the section is removed instead */
897 int git_config_rename_section(const char *old_name
, const char *new_name
)
899 int ret
= 0, remove
= 0;
900 char *config_filename
;
901 struct lock_file
*lock
= xcalloc(sizeof(struct lock_file
), 1);
905 config_filename
= getenv(CONFIG_ENVIRONMENT
);
906 if (!config_filename
) {
907 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
908 if (!config_filename
)
909 config_filename
= git_path("config");
911 config_filename
= xstrdup(config_filename
);
912 out_fd
= hold_lock_file_for_update(lock
, config_filename
, 0);
914 ret
= error("Could not lock config file!");
918 if (!(config_file
= fopen(config_filename
, "rb"))) {
919 /* no config file means nothing to rename, no error */
923 while (fgets(buf
, sizeof(buf
), config_file
)) {
926 for (i
= 0; buf
[i
] && isspace(buf
[i
]); i
++)
930 if (section_name_match (&buf
[i
+1], old_name
)) {
932 if (new_name
== NULL
) {
936 store
.baselen
= strlen(new_name
);
937 if (!store_write_section(out_fd
, new_name
)) {
947 length
= strlen(buf
);
948 if (write_in_full(out_fd
, buf
, length
) != length
) {
955 if (close(out_fd
) || commit_lock_file(lock
) < 0)
956 ret
= error("Cannot commit config file!");
958 free(config_filename
);