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.ignorestat")) {
273 assume_unchanged
= git_config_bool(var
, value
);
277 if (!strcmp(var
, "core.prefersymlinkrefs")) {
278 prefer_symlink_refs
= git_config_bool(var
, value
);
282 if (!strcmp(var
, "core.logallrefupdates")) {
283 log_all_ref_updates
= git_config_bool(var
, value
);
287 if (!strcmp(var
, "core.warnambiguousrefs")) {
288 warn_ambiguous_refs
= git_config_bool(var
, value
);
292 if (!strcmp(var
, "core.legacyheaders")) {
293 use_legacy_headers
= git_config_bool(var
, value
);
297 if (!strcmp(var
, "core.compression")) {
298 int level
= git_config_int(var
, value
);
300 level
= Z_DEFAULT_COMPRESSION
;
301 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
302 die("bad zlib compression level %d", level
);
303 zlib_compression_level
= level
;
307 if (!strcmp(var
, "core.packedgitwindowsize")) {
308 int pgsz
= getpagesize();
309 packed_git_window_size
= git_config_int(var
, value
);
310 packed_git_window_size
/= pgsz
;
311 if (packed_git_window_size
< 2)
312 packed_git_window_size
= 2;
313 packed_git_window_size
*= pgsz
;
317 if (!strcmp(var
, "core.packedgitlimit")) {
318 packed_git_limit
= git_config_int(var
, value
);
322 if (!strcmp(var
, "user.name")) {
323 strlcpy(git_default_name
, value
, sizeof(git_default_name
));
327 if (!strcmp(var
, "user.email")) {
328 strlcpy(git_default_email
, value
, sizeof(git_default_email
));
332 if (!strcmp(var
, "i18n.commitencoding")) {
333 git_commit_encoding
= strdup(value
);
337 if (!strcmp(var
, "i18n.logoutputencoding")) {
338 git_log_output_encoding
= strdup(value
);
343 if (!strcmp(var
, "pager.color") || !strcmp(var
, "color.pager")) {
344 pager_use_color
= git_config_bool(var
,value
);
348 /* Add other config variables here and to Documentation/config.txt. */
352 int git_config_from_file(config_fn_t fn
, const char *filename
)
355 FILE *f
= fopen(filename
, "r");
360 config_file_name
= filename
;
362 ret
= git_parse_file(fn
);
364 config_file_name
= NULL
;
369 int git_config(config_fn_t fn
)
372 char *repo_config
= NULL
;
373 const char *home
= NULL
, *filename
;
375 /* $GIT_CONFIG makes git read _only_ the given config file,
376 * $GIT_CONFIG_LOCAL will make it process it in addition to the
377 * global config file, the same way it would the per-repository
378 * config file otherwise. */
379 filename
= getenv(CONFIG_ENVIRONMENT
);
381 home
= getenv("HOME");
382 filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
384 filename
= repo_config
= xstrdup(git_path("config"));
388 char *user_config
= xstrdup(mkpath("%s/.gitconfig", home
));
389 if (!access(user_config
, R_OK
))
390 ret
= git_config_from_file(fn
, user_config
);
394 ret
+= git_config_from_file(fn
, filename
);
400 * Find all the stuff for git_config_set() below.
403 #define MAX_MATCHES 512
409 regex_t
* value_regex
;
411 off_t offset
[MAX_MATCHES
];
412 enum { START
, SECTION_SEEN
, SECTION_END_SEEN
, KEY_SEEN
} state
;
416 static int matches(const char* key
, const char* value
)
418 return !strcmp(key
, store
.key
) &&
419 (store
.value_regex
== NULL
||
420 (store
.do_not_match
^
421 !regexec(store
.value_regex
, value
, 0, NULL
, 0)));
424 static int store_aux(const char* key
, const char* value
)
426 switch (store
.state
) {
428 if (matches(key
, value
)) {
429 if (store
.seen
== 1 && store
.multi_replace
== 0) {
431 "Warning: %s has multiple values\n",
433 } else if (store
.seen
>= MAX_MATCHES
) {
434 fprintf(stderr
, "Too many matches\n");
438 store
.offset
[store
.seen
] = ftell(config_file
);
443 if (strncmp(key
, store
.key
, store
.baselen
+1)) {
444 store
.state
= SECTION_END_SEEN
;
447 /* do not increment matches: this is no match */
448 store
.offset
[store
.seen
] = ftell(config_file
);
450 case SECTION_END_SEEN
:
452 if (matches(key
, value
)) {
453 store
.offset
[store
.seen
] = ftell(config_file
);
454 store
.state
= KEY_SEEN
;
457 if (strrchr(key
, '.') - key
== store
.baselen
&&
458 !strncmp(key
, store
.key
, store
.baselen
)) {
459 store
.state
= SECTION_SEEN
;
460 store
.offset
[store
.seen
] = ftell(config_file
);
467 static int write_error()
469 fprintf(stderr
, "Failed to write new configuration file\n");
471 /* Same error code as "failed to rename". */
475 static int store_write_section(int fd
, const char* key
)
477 const char *dot
= strchr(key
, '.');
478 int len1
= store
.baselen
, len2
= -1;
480 dot
= strchr(key
, '.');
482 int dotlen
= dot
- key
;
484 len2
= len1
- dotlen
- 1;
489 if (write_in_full(fd
, "[", 1) != 1 ||
490 write_in_full(fd
, key
, len1
) != len1
)
493 if (write_in_full(fd
, " \"", 2) != 2)
495 while (--len2
>= 0) {
496 unsigned char c
= *++dot
;
498 if (write_in_full(fd
, "\\", 1) != 1)
500 if (write_in_full(fd
, &c
, 1) != 1)
503 if (write_in_full(fd
, "\"", 1) != 1)
506 if (write_in_full(fd
, "]\n", 2) != 2)
512 static int store_write_pair(int fd
, const char* key
, const char* value
)
515 int length
= strlen(key
+store
.baselen
+1);
518 /* Check to see if the value needs to be quoted. */
521 for (i
= 0; value
[i
]; i
++)
522 if (value
[i
] == ';' || value
[i
] == '#')
524 if (value
[i
-1] == ' ')
527 if (write_in_full(fd
, "\t", 1) != 1 ||
528 write_in_full(fd
, key
+store
.baselen
+1, length
) != length
||
529 write_in_full(fd
, " = ", 3) != 3)
531 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
533 for (i
= 0; value
[i
]; i
++)
536 if (write_in_full(fd
, "\\n", 2) != 2)
540 if (write_in_full(fd
, "\\t", 2) != 2)
545 if (write_in_full(fd
, "\\", 1) != 1)
548 if (write_in_full(fd
, value
+i
, 1) != 1)
552 if (quote
&& write_in_full(fd
, "\"", 1) != 1)
554 if (write_in_full(fd
, "\n", 1) != 1)
559 static int find_beginning_of_line(const char* contents
, int size
,
560 int offset_
, int* found_bracket
)
562 int equal_offset
= size
, bracket_offset
= size
;
565 for (offset
= offset_
-2; offset
> 0
566 && contents
[offset
] != '\n'; offset
--)
567 switch (contents
[offset
]) {
568 case '=': equal_offset
= offset
; break;
569 case ']': bracket_offset
= offset
; break;
571 if (bracket_offset
< equal_offset
) {
573 offset
= bracket_offset
+1;
580 int git_config_set(const char* key
, const char* value
)
582 return git_config_set_multivar(key
, value
, NULL
, 0);
586 * If value==NULL, unset in (remove from) config,
587 * if value_regex!=NULL, disregard key/value pairs where value does not match.
588 * if multi_replace==0, nothing, or only one matching key/value is replaced,
589 * else all matching key/values (regardless how many) are removed,
590 * before the new pair is written.
592 * Returns 0 on success.
594 * This function does this:
596 * - it locks the config file by creating ".git/config.lock"
598 * - it then parses the config using store_aux() as validator to find
599 * the position on the key/value pair to replace. If it is to be unset,
600 * it must be found exactly once.
602 * - the config file is mmap()ed and the part before the match (if any) is
603 * written to the lock file, then the changed part and the rest.
605 * - the config file is removed and the lock file rename()d to it.
608 int git_config_set_multivar(const char* key
, const char* value
,
609 const char* value_regex
, int multi_replace
)
614 char* config_filename
;
616 const char* last_dot
= strrchr(key
, '.');
618 config_filename
= getenv(CONFIG_ENVIRONMENT
);
619 if (!config_filename
) {
620 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
621 if (!config_filename
)
622 config_filename
= git_path("config");
624 config_filename
= xstrdup(config_filename
);
625 lock_file
= xstrdup(mkpath("%s.lock", config_filename
));
628 * Since "key" actually contains the section name and the real
629 * key name separated by a dot, we have to know where the dot is.
632 if (last_dot
== NULL
) {
633 fprintf(stderr
, "key does not contain a section: %s\n", key
);
637 store
.baselen
= last_dot
- key
;
639 store
.multi_replace
= multi_replace
;
642 * Validate the key and while at it, lower case it for matching.
644 store
.key
= xmalloc(strlen(key
) + 1);
646 for (i
= 0; key
[i
]; i
++) {
647 unsigned char c
= key
[i
];
650 /* Leave the extended basename untouched.. */
651 if (!dot
|| i
> store
.baselen
) {
652 if (!iskeychar(c
) || (i
== store
.baselen
+1 && !isalpha(c
))) {
653 fprintf(stderr
, "invalid key: %s\n", key
);
665 * The lock_file serves a purpose in addition to locking: the new
666 * contents of .git/config will be written into it.
668 fd
= open(lock_file
, O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
669 if (fd
< 0 || adjust_shared_perm(lock_file
)) {
670 fprintf(stderr
, "could not lock config file\n");
677 * If .git/config does not exist yet, write a minimal version.
679 in_fd
= open(config_filename
, O_RDONLY
);
683 if ( ENOENT
!= errno
) {
684 error("opening %s: %s", config_filename
,
686 ret
= 3; /* same as "invalid config file" */
689 /* if nothing to unset, error out */
695 store
.key
= (char*)key
;
696 if (!store_write_section(fd
, key
) ||
697 !store_write_pair(fd
, key
, value
))
702 int i
, copy_begin
, copy_end
, new_line
= 0;
704 if (value_regex
== NULL
)
705 store
.value_regex
= NULL
;
707 if (value_regex
[0] == '!') {
708 store
.do_not_match
= 1;
711 store
.do_not_match
= 0;
713 store
.value_regex
= (regex_t
*)xmalloc(sizeof(regex_t
));
714 if (regcomp(store
.value_regex
, value_regex
,
716 fprintf(stderr
, "Invalid pattern: %s\n",
718 free(store
.value_regex
);
729 * After this, store.offset will contain the *end* offset
730 * of the last match, or remain at 0 if no match was found.
731 * As a side effect, we make sure to transform only a valid
732 * existing config file.
734 if (git_config_from_file(store_aux
, config_filename
)) {
735 fprintf(stderr
, "invalid config file\n");
737 if (store
.value_regex
!= NULL
) {
738 regfree(store
.value_regex
);
739 free(store
.value_regex
);
746 if (store
.value_regex
!= NULL
) {
747 regfree(store
.value_regex
);
748 free(store
.value_regex
);
751 /* if nothing to unset, or too many matches, error out */
752 if ((store
.seen
== 0 && value
== NULL
) ||
753 (store
.seen
> 1 && multi_replace
== 0)) {
759 contents
= xmmap(NULL
, st
.st_size
, PROT_READ
,
760 MAP_PRIVATE
, in_fd
, 0);
766 for (i
= 0, copy_begin
= 0; i
< store
.seen
; i
++) {
767 if (store
.offset
[i
] == 0) {
768 store
.offset
[i
] = copy_end
= st
.st_size
;
769 } else if (store
.state
!= KEY_SEEN
) {
770 copy_end
= store
.offset
[i
];
772 copy_end
= find_beginning_of_line(
773 contents
, st
.st_size
,
774 store
.offset
[i
]-2, &new_line
);
776 /* write the first part of the config */
777 if (copy_end
> copy_begin
) {
778 if (write_in_full(fd
, contents
+ copy_begin
,
779 copy_end
- copy_begin
) <
780 copy_end
- copy_begin
)
783 write_in_full(fd
, "\n", 1) != 1)
786 copy_begin
= store
.offset
[i
];
789 /* write the pair (value == NULL means unset) */
791 if (store
.state
== START
) {
792 if (!store_write_section(fd
, key
))
795 if (!store_write_pair(fd
, key
, value
))
799 /* write the rest of the config */
800 if (copy_begin
< st
.st_size
)
801 if (write_in_full(fd
, contents
+ copy_begin
,
802 st
.st_size
- copy_begin
) <
803 st
.st_size
- copy_begin
)
806 munmap(contents
, st
.st_size
);
807 unlink(config_filename
);
810 if (rename(lock_file
, config_filename
) < 0) {
811 fprintf(stderr
, "Could not rename the lock file?\n");
821 free(config_filename
);
834 int git_config_rename_section(const char *old_name
, const char *new_name
)
837 char *config_filename
;
838 struct lock_file
*lock
= xcalloc(sizeof(struct lock_file
), 1);
842 config_filename
= getenv(CONFIG_ENVIRONMENT
);
843 if (!config_filename
) {
844 config_filename
= getenv(CONFIG_LOCAL_ENVIRONMENT
);
845 if (!config_filename
)
846 config_filename
= git_path("config");
848 config_filename
= xstrdup(config_filename
);
849 out_fd
= hold_lock_file_for_update(lock
, config_filename
, 0);
851 ret
= error("Could not lock config file!");
855 if (!(config_file
= fopen(config_filename
, "rb"))) {
856 ret
= error("Could not open config file!");
860 while (fgets(buf
, sizeof(buf
), config_file
)) {
863 for (i
= 0; buf
[i
] && isspace(buf
[i
]); i
++)
868 for (i
++; buf
[i
] && buf
[i
] != ']'; i
++) {
869 if (!dot
&& isspace(buf
[i
])) {
871 if (old_name
[j
++] != '.')
873 for (i
++; isspace(buf
[i
]); i
++)
879 if (buf
[i
] == '\\' && dot
)
881 else if (buf
[i
] == '"' && dot
) {
882 for (i
++; isspace(buf
[i
]); i
++)
886 if (buf
[i
] != old_name
[j
++])
890 /* old_name matches */
892 store
.baselen
= strlen(new_name
);
893 if (!store_write_section(out_fd
, new_name
)) {
900 length
= strlen(buf
);
901 if (write_in_full(out_fd
, buf
, length
) != length
) {
907 if (close(out_fd
) || commit_lock_file(lock
) < 0)
908 ret
= error("Cannot commit config file!");
910 free(config_filename
);