2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
5 * Copyright (C) Johannes Schindelin, 2005
14 static FILE *config_file
;
15 static const char *config_file_name
;
16 static int config_linenr
;
17 static int config_file_eof
;
18 static int zlib_compression_seen
;
20 const char *config_exclusive_filename
= NULL
;
24 struct config_item
*next
;
28 static struct config_item
*config_parameters
;
29 static struct config_item
**config_parameters_tail
= &config_parameters
;
31 static void lowercase(char *p
)
37 int git_config_parse_parameter(const char *text
)
39 struct config_item
*ct
;
40 struct strbuf tmp
= STRBUF_INIT
;
42 strbuf_addstr(&tmp
, text
);
43 pair
= strbuf_split(&tmp
, '=');
44 if (pair
[0]->len
&& pair
[0]->buf
[pair
[0]->len
- 1] == '=')
45 strbuf_setlen(pair
[0], pair
[0]->len
- 1);
48 strbuf_list_free(pair
);
51 ct
= xcalloc(1, sizeof(struct config_item
));
52 ct
->name
= strbuf_detach(pair
[0], NULL
);
55 ct
->value
= strbuf_detach(pair
[1], NULL
);
57 strbuf_list_free(pair
);
59 *config_parameters_tail
= ct
;
60 config_parameters_tail
= &ct
->next
;
64 static int get_next_char(void)
70 if ((f
= config_file
) != NULL
) {
73 /* DOS like systems */
90 static char *parse_value(void)
92 static char value
[1024];
93 int quote
= 0, comment
= 0, len
= 0, space
= 0;
96 int c
= get_next_char();
97 if (len
>= sizeof(value
) - 1)
107 if (isspace(c
) && !quote
) {
113 if (c
== ';' || c
== '#') {
118 for (; space
; space
--)
134 /* Some characters escape as themselves */
137 /* Reject unknown escape sequences */
152 static inline int iskeychar(int c
)
154 return isalnum(c
) || c
== '-';
157 static int get_value(config_fn_t fn
, void *data
, char *name
, unsigned int len
)
162 /* Get the full name */
169 name
[len
++] = tolower(c
);
174 while (c
== ' ' || c
== '\t')
181 value
= parse_value();
185 return fn(name
, value
, data
);
188 static int get_extended_base_var(char *name
, int baselen
, int c
)
194 } while (isspace(c
));
196 /* We require the format to be '[base "extension"]' */
199 name
[baselen
++] = '.';
202 int c
= get_next_char();
213 if (baselen
> MAXNAME
/ 2)
218 if (get_next_char() != ']')
223 static int get_base_var(char *name
)
228 int c
= get_next_char();
234 return get_extended_base_var(name
, baselen
, c
);
235 if (!iskeychar(c
) && c
!= '.')
237 if (baselen
> MAXNAME
/ 2)
239 name
[baselen
++] = tolower(c
);
243 static int git_parse_file(config_fn_t fn
, void *data
)
247 static char var
[MAXNAME
];
249 /* U+FEFF Byte Order Mark in UTF8 */
250 static const unsigned char *utf8_bom
= (unsigned char *) "\xef\xbb\xbf";
251 const unsigned char *bomptr
= utf8_bom
;
254 int c
= get_next_char();
255 if (bomptr
&& *bomptr
) {
256 /* We are at the file beginning; skip UTF8-encoded BOM
257 * if present. Sane editors won't put this in on their
258 * own, but e.g. Windows Notepad will do it happily. */
259 if ((unsigned char) c
== *bomptr
) {
263 /* Do not tolerate partial BOM. */
264 if (bomptr
!= utf8_bom
)
266 /* No BOM at file beginning. Cool. */
276 if (comment
|| isspace(c
))
278 if (c
== '#' || c
== ';') {
283 baselen
= get_base_var(var
);
286 var
[baselen
++] = '.';
292 var
[baselen
] = tolower(c
);
293 if (get_value(fn
, data
, var
, baselen
+1) < 0)
296 die("bad config file line %d in %s", config_linenr
, config_file_name
);
299 static int parse_unit_factor(const char *end
, unsigned long *val
)
303 else if (!strcasecmp(end
, "k")) {
307 else if (!strcasecmp(end
, "m")) {
311 else if (!strcasecmp(end
, "g")) {
312 *val
*= 1024 * 1024 * 1024;
318 static int git_parse_long(const char *value
, long *ret
)
320 if (value
&& *value
) {
322 long val
= strtol(value
, &end
, 0);
323 unsigned long factor
= 1;
324 if (!parse_unit_factor(end
, &factor
))
332 int git_parse_ulong(const char *value
, unsigned long *ret
)
334 if (value
&& *value
) {
336 unsigned long val
= strtoul(value
, &end
, 0);
337 if (!parse_unit_factor(end
, &val
))
345 static void die_bad_config(const char *name
)
347 if (config_file_name
)
348 die("bad config value for '%s' in %s", name
, config_file_name
);
349 die("bad config value for '%s'", name
);
352 int git_config_int(const char *name
, const char *value
)
355 if (!git_parse_long(value
, &ret
))
356 die_bad_config(name
);
360 unsigned long git_config_ulong(const char *name
, const char *value
)
363 if (!git_parse_ulong(value
, &ret
))
364 die_bad_config(name
);
368 int git_config_maybe_bool(const char *name
, const char *value
)
374 if (!strcasecmp(value
, "true")
375 || !strcasecmp(value
, "yes")
376 || !strcasecmp(value
, "on"))
378 if (!strcasecmp(value
, "false")
379 || !strcasecmp(value
, "no")
380 || !strcasecmp(value
, "off"))
385 int git_config_bool_or_int(const char *name
, const char *value
, int *is_bool
)
387 int v
= git_config_maybe_bool(name
, value
);
393 return git_config_int(name
, value
);
396 int git_config_bool(const char *name
, const char *value
)
399 return !!git_config_bool_or_int(name
, value
, &discard
);
402 int git_config_string(const char **dest
, const char *var
, const char *value
)
405 return config_error_nonbool(var
);
406 *dest
= xstrdup(value
);
410 int git_config_pathname(const char **dest
, const char *var
, const char *value
)
413 return config_error_nonbool(var
);
414 *dest
= expand_user_path(value
);
416 die("Failed to expand user dir in: '%s'", value
);
420 static int git_default_core_config(const char *var
, const char *value
)
422 /* This needs a better name */
423 if (!strcmp(var
, "core.filemode")) {
424 trust_executable_bit
= git_config_bool(var
, value
);
427 if (!strcmp(var
, "core.trustctime")) {
428 trust_ctime
= git_config_bool(var
, value
);
432 if (!strcmp(var
, "core.quotepath")) {
433 quote_path_fully
= git_config_bool(var
, value
);
437 if (!strcmp(var
, "core.symlinks")) {
438 has_symlinks
= git_config_bool(var
, value
);
442 if (!strcmp(var
, "core.ignorecase")) {
443 ignore_case
= git_config_bool(var
, value
);
447 if (!strcmp(var
, "core.bare")) {
448 is_bare_repository_cfg
= git_config_bool(var
, value
);
452 if (!strcmp(var
, "core.ignorestat")) {
453 assume_unchanged
= git_config_bool(var
, value
);
457 if (!strcmp(var
, "core.prefersymlinkrefs")) {
458 prefer_symlink_refs
= git_config_bool(var
, value
);
462 if (!strcmp(var
, "core.logallrefupdates")) {
463 log_all_ref_updates
= git_config_bool(var
, value
);
467 if (!strcmp(var
, "core.warnambiguousrefs")) {
468 warn_ambiguous_refs
= git_config_bool(var
, value
);
472 if (!strcmp(var
, "core.loosecompression")) {
473 int level
= git_config_int(var
, value
);
475 level
= Z_DEFAULT_COMPRESSION
;
476 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
477 die("bad zlib compression level %d", level
);
478 zlib_compression_level
= level
;
479 zlib_compression_seen
= 1;
483 if (!strcmp(var
, "core.compression")) {
484 int level
= git_config_int(var
, value
);
486 level
= Z_DEFAULT_COMPRESSION
;
487 else if (level
< 0 || level
> Z_BEST_COMPRESSION
)
488 die("bad zlib compression level %d", level
);
489 core_compression_level
= level
;
490 core_compression_seen
= 1;
491 if (!zlib_compression_seen
)
492 zlib_compression_level
= level
;
496 if (!strcmp(var
, "core.packedgitwindowsize")) {
497 int pgsz_x2
= getpagesize() * 2;
498 packed_git_window_size
= git_config_int(var
, value
);
500 /* This value must be multiple of (pagesize * 2) */
501 packed_git_window_size
/= pgsz_x2
;
502 if (packed_git_window_size
< 1)
503 packed_git_window_size
= 1;
504 packed_git_window_size
*= pgsz_x2
;
508 if (!strcmp(var
, "core.packedgitlimit")) {
509 packed_git_limit
= git_config_int(var
, value
);
513 if (!strcmp(var
, "core.deltabasecachelimit")) {
514 delta_base_cache_limit
= git_config_int(var
, value
);
518 if (!strcmp(var
, "core.autocrlf")) {
519 if (value
&& !strcasecmp(value
, "input")) {
521 return error("core.autocrlf=input conflicts with core.eol=crlf");
522 auto_crlf
= AUTO_CRLF_INPUT
;
525 auto_crlf
= git_config_bool(var
, value
);
529 if (!strcmp(var
, "core.safecrlf")) {
530 if (value
&& !strcasecmp(value
, "warn")) {
531 safe_crlf
= SAFE_CRLF_WARN
;
534 safe_crlf
= git_config_bool(var
, value
);
538 if (!strcmp(var
, "core.eol")) {
539 if (value
&& !strcasecmp(value
, "lf"))
541 else if (value
&& !strcasecmp(value
, "crlf"))
543 else if (value
&& !strcasecmp(value
, "native"))
547 if (eol
== EOL_CRLF
&& auto_crlf
== AUTO_CRLF_INPUT
)
548 return error("core.autocrlf=input conflicts with core.eol=crlf");
552 if (!strcmp(var
, "core.notesref")) {
553 notes_ref_name
= xstrdup(value
);
557 if (!strcmp(var
, "core.pager"))
558 return git_config_string(&pager_program
, var
, value
);
560 if (!strcmp(var
, "core.editor"))
561 return git_config_string(&editor_program
, var
, value
);
563 if (!strcmp(var
, "core.excludesfile"))
564 return git_config_pathname(&excludes_file
, var
, value
);
566 if (!strcmp(var
, "core.whitespace")) {
568 return config_error_nonbool(var
);
569 whitespace_rule_cfg
= parse_whitespace_rule(value
);
573 if (!strcmp(var
, "core.fsyncobjectfiles")) {
574 fsync_object_files
= git_config_bool(var
, value
);
578 if (!strcmp(var
, "core.preloadindex")) {
579 core_preload_index
= git_config_bool(var
, value
);
583 if (!strcmp(var
, "core.createobject")) {
584 if (!strcmp(value
, "rename"))
585 object_creation_mode
= OBJECT_CREATION_USES_RENAMES
;
586 else if (!strcmp(value
, "link"))
587 object_creation_mode
= OBJECT_CREATION_USES_HARDLINKS
;
589 die("Invalid mode for object creation: %s", value
);
593 if (!strcmp(var
, "core.sparsecheckout")) {
594 core_apply_sparse_checkout
= git_config_bool(var
, value
);
598 if (!strcmp(var
, "core.hidedotfiles")) {
599 if (value
&& !strcasecmp(value
, "dotgitonly")) {
600 hide_dotfiles
= HIDE_DOTFILES_DOTGITONLY
;
603 hide_dotfiles
= git_config_bool(var
, value
);
607 /* Add other config variables here and to Documentation/config.txt. */
611 static int git_default_user_config(const char *var
, const char *value
)
613 if (!strcmp(var
, "user.name")) {
615 return config_error_nonbool(var
);
616 strlcpy(git_default_name
, value
, sizeof(git_default_name
));
617 user_ident_explicitly_given
|= IDENT_NAME_GIVEN
;
621 if (!strcmp(var
, "user.email")) {
623 return config_error_nonbool(var
);
624 strlcpy(git_default_email
, value
, sizeof(git_default_email
));
625 user_ident_explicitly_given
|= IDENT_MAIL_GIVEN
;
629 /* Add other config variables here and to Documentation/config.txt. */
633 static int git_default_i18n_config(const char *var
, const char *value
)
635 if (!strcmp(var
, "i18n.commitencoding"))
636 return git_config_string(&git_commit_encoding
, var
, value
);
638 if (!strcmp(var
, "i18n.logoutputencoding"))
639 return git_config_string(&git_log_output_encoding
, var
, value
);
641 /* Add other config variables here and to Documentation/config.txt. */
645 static int git_default_branch_config(const char *var
, const char *value
)
647 if (!strcmp(var
, "branch.autosetupmerge")) {
648 if (value
&& !strcasecmp(value
, "always")) {
649 git_branch_track
= BRANCH_TRACK_ALWAYS
;
652 git_branch_track
= git_config_bool(var
, value
);
655 if (!strcmp(var
, "branch.autosetuprebase")) {
657 return config_error_nonbool(var
);
658 else if (!strcmp(value
, "never"))
659 autorebase
= AUTOREBASE_NEVER
;
660 else if (!strcmp(value
, "local"))
661 autorebase
= AUTOREBASE_LOCAL
;
662 else if (!strcmp(value
, "remote"))
663 autorebase
= AUTOREBASE_REMOTE
;
664 else if (!strcmp(value
, "always"))
665 autorebase
= AUTOREBASE_ALWAYS
;
667 return error("Malformed value for %s", var
);
671 /* Add other config variables here and to Documentation/config.txt. */
675 static int git_default_push_config(const char *var
, const char *value
)
677 if (!strcmp(var
, "push.default")) {
679 return config_error_nonbool(var
);
680 else if (!strcmp(value
, "nothing"))
681 push_default
= PUSH_DEFAULT_NOTHING
;
682 else if (!strcmp(value
, "matching"))
683 push_default
= PUSH_DEFAULT_MATCHING
;
684 else if (!strcmp(value
, "tracking"))
685 push_default
= PUSH_DEFAULT_TRACKING
;
686 else if (!strcmp(value
, "current"))
687 push_default
= PUSH_DEFAULT_CURRENT
;
689 error("Malformed value for %s: %s", var
, value
);
690 return error("Must be one of nothing, matching, "
691 "tracking or current.");
696 /* Add other config variables here and to Documentation/config.txt. */
700 static int git_default_mailmap_config(const char *var
, const char *value
)
702 if (!strcmp(var
, "mailmap.file"))
703 return git_config_string(&git_mailmap_file
, var
, value
);
705 /* Add other config variables here and to Documentation/config.txt. */
709 int git_default_config(const char *var
, const char *value
, void *dummy
)
711 if (!prefixcmp(var
, "core."))
712 return git_default_core_config(var
, value
);
714 if (!prefixcmp(var
, "user."))
715 return git_default_user_config(var
, value
);
717 if (!prefixcmp(var
, "i18n."))
718 return git_default_i18n_config(var
, value
);
720 if (!prefixcmp(var
, "branch."))
721 return git_default_branch_config(var
, value
);
723 if (!prefixcmp(var
, "push."))
724 return git_default_push_config(var
, value
);
726 if (!prefixcmp(var
, "mailmap."))
727 return git_default_mailmap_config(var
, value
);
729 if (!prefixcmp(var
, "advice."))
730 return git_default_advice_config(var
, value
);
732 if (!strcmp(var
, "pager.color") || !strcmp(var
, "color.pager")) {
733 pager_use_color
= git_config_bool(var
,value
);
737 /* Add other config variables here and to Documentation/config.txt. */
741 int git_config_from_file(config_fn_t fn
, const char *filename
, void *data
)
744 FILE *f
= fopen(filename
, "r");
749 config_file_name
= filename
;
752 ret
= git_parse_file(fn
, data
);
754 config_file_name
= NULL
;
759 const char *git_etc_gitconfig(void)
761 static const char *system_wide
;
763 system_wide
= system_path(ETC_GITCONFIG
);
767 int git_env_bool(const char *k
, int def
)
769 const char *v
= getenv(k
);
770 return v
? git_config_bool(k
, v
) : def
;
773 int git_config_system(void)
775 return !git_env_bool("GIT_CONFIG_NOSYSTEM", 0);
778 int git_config_global(void)
780 return !git_env_bool("GIT_CONFIG_NOGLOBAL", 0);
783 int git_config_from_parameters(config_fn_t fn
, void *data
)
785 const struct config_item
*ct
;
786 for (ct
= config_parameters
; ct
; ct
= ct
->next
)
787 if (fn(ct
->name
, ct
->value
, data
) < 0)
792 int git_config(config_fn_t fn
, void *data
)
794 int ret
= 0, found
= 0;
795 char *repo_config
= NULL
;
796 const char *home
= NULL
;
798 /* Setting $GIT_CONFIG makes git read _only_ the given config file. */
799 if (config_exclusive_filename
)
800 return git_config_from_file(fn
, config_exclusive_filename
, data
);
801 if (git_config_system() && !access(git_etc_gitconfig(), R_OK
)) {
802 ret
+= git_config_from_file(fn
, git_etc_gitconfig(),
807 home
= get_home_directory();
808 if (git_config_global() && home
) {
809 char *user_config
= xstrdup(mkpath("%s/.gitconfig", home
));
810 if (!access(user_config
, R_OK
)) {
811 ret
+= git_config_from_file(fn
, user_config
, data
);
817 repo_config
= git_pathdup("config");
818 if (!access(repo_config
, R_OK
)) {
819 ret
+= git_config_from_file(fn
, repo_config
, data
);
824 if (config_parameters
) {
825 ret
+= git_config_from_parameters(fn
, data
);
835 * Find all the stuff for git_config_set() below.
838 #define MAX_MATCHES 512
844 regex_t
*value_regex
;
846 size_t offset
[MAX_MATCHES
];
847 enum { START
, SECTION_SEEN
, SECTION_END_SEEN
, KEY_SEEN
} state
;
851 static int matches(const char *key
, const char *value
)
853 return !strcmp(key
, store
.key
) &&
854 (store
.value_regex
== NULL
||
855 (store
.do_not_match
^
856 !regexec(store
.value_regex
, value
, 0, NULL
, 0)));
859 static int store_aux(const char *key
, const char *value
, void *cb
)
864 switch (store
.state
) {
866 if (matches(key
, value
)) {
867 if (store
.seen
== 1 && store
.multi_replace
== 0) {
868 warning("%s has multiple values", key
);
869 } else if (store
.seen
>= MAX_MATCHES
) {
870 error("too many matches for %s", key
);
874 store
.offset
[store
.seen
] = ftell(config_file
);
880 * What we are looking for is in store.key (both
881 * section and var), and its section part is baselen
882 * long. We found key (again, both section and var).
883 * We would want to know if this key is in the same
884 * section as what we are looking for. We already
885 * know we are in the same section as what should
888 ep
= strrchr(key
, '.');
889 section_len
= ep
- key
;
891 if ((section_len
!= store
.baselen
) ||
892 memcmp(key
, store
.key
, section_len
+1)) {
893 store
.state
= SECTION_END_SEEN
;
898 * Do not increment matches: this is no match, but we
899 * just made sure we are in the desired section.
901 store
.offset
[store
.seen
] = ftell(config_file
);
903 case SECTION_END_SEEN
:
905 if (matches(key
, value
)) {
906 store
.offset
[store
.seen
] = ftell(config_file
);
907 store
.state
= KEY_SEEN
;
910 if (strrchr(key
, '.') - key
== store
.baselen
&&
911 !strncmp(key
, store
.key
, store
.baselen
)) {
912 store
.state
= SECTION_SEEN
;
913 store
.offset
[store
.seen
] = ftell(config_file
);
920 static int write_error(const char *filename
)
922 error("failed to write new configuration file %s", filename
);
924 /* Same error code as "failed to rename". */
928 static int store_write_section(int fd
, const char *key
)
932 struct strbuf sb
= STRBUF_INIT
;
934 dot
= memchr(key
, '.', store
.baselen
);
936 strbuf_addf(&sb
, "[%.*s \"", (int)(dot
- key
), key
);
937 for (i
= dot
- key
+ 1; i
< store
.baselen
; i
++) {
938 if (key
[i
] == '"' || key
[i
] == '\\')
939 strbuf_addch(&sb
, '\\');
940 strbuf_addch(&sb
, key
[i
]);
942 strbuf_addstr(&sb
, "\"]\n");
944 strbuf_addf(&sb
, "[%.*s]\n", store
.baselen
, key
);
947 success
= write_in_full(fd
, sb
.buf
, sb
.len
) == sb
.len
;
953 static int store_write_pair(int fd
, const char *key
, const char *value
)
956 int length
= strlen(key
+ store
.baselen
+ 1);
957 const char *quote
= "";
958 struct strbuf sb
= STRBUF_INIT
;
961 * Check to see if the value needs to be surrounded with a dq pair.
962 * Note that problematic characters are always backslash-quoted; this
963 * check is about not losing leading or trailing SP and strings that
964 * follow beginning-of-comment characters (i.e. ';' and '#') by the
965 * configuration parser.
969 for (i
= 0; value
[i
]; i
++)
970 if (value
[i
] == ';' || value
[i
] == '#')
972 if (i
&& value
[i
- 1] == ' ')
975 strbuf_addf(&sb
, "\t%.*s = %s",
976 length
, key
+ store
.baselen
+ 1, quote
);
978 for (i
= 0; value
[i
]; i
++)
981 strbuf_addstr(&sb
, "\\n");
984 strbuf_addstr(&sb
, "\\t");
988 strbuf_addch(&sb
, '\\');
990 strbuf_addch(&sb
, value
[i
]);
993 strbuf_addf(&sb
, "%s\n", quote
);
995 success
= write_in_full(fd
, sb
.buf
, sb
.len
) == sb
.len
;
1001 static ssize_t
find_beginning_of_line(const char *contents
, size_t size
,
1002 size_t offset_
, int *found_bracket
)
1004 size_t equal_offset
= size
, bracket_offset
= size
;
1008 for (offset
= offset_
-2; offset
> 0
1009 && contents
[offset
] != '\n'; offset
--)
1010 switch (contents
[offset
]) {
1011 case '=': equal_offset
= offset
; break;
1012 case ']': bracket_offset
= offset
; break;
1014 if (offset
> 0 && contents
[offset
-1] == '\\') {
1018 if (bracket_offset
< equal_offset
) {
1020 offset
= bracket_offset
+1;
1027 int git_config_set(const char *key
, const char *value
)
1029 return git_config_set_multivar(key
, value
, NULL
, 0);
1033 * If value==NULL, unset in (remove from) config,
1034 * if value_regex!=NULL, disregard key/value pairs where value does not match.
1035 * if multi_replace==0, nothing, or only one matching key/value is replaced,
1036 * else all matching key/values (regardless how many) are removed,
1037 * before the new pair is written.
1039 * Returns 0 on success.
1041 * This function does this:
1043 * - it locks the config file by creating ".git/config.lock"
1045 * - it then parses the config using store_aux() as validator to find
1046 * the position on the key/value pair to replace. If it is to be unset,
1047 * it must be found exactly once.
1049 * - the config file is mmap()ed and the part before the match (if any) is
1050 * written to the lock file, then the changed part and the rest.
1052 * - the config file is removed and the lock file rename()d to it.
1055 int git_config_set_multivar(const char *key
, const char *value
,
1056 const char *value_regex
, int multi_replace
)
1061 char *config_filename
;
1062 struct lock_file
*lock
= NULL
;
1063 const char *last_dot
= strrchr(key
, '.');
1065 if (config_exclusive_filename
)
1066 config_filename
= xstrdup(config_exclusive_filename
);
1068 config_filename
= git_pathdup("config");
1071 * Since "key" actually contains the section name and the real
1072 * key name separated by a dot, we have to know where the dot is.
1075 if (last_dot
== NULL
) {
1076 error("key does not contain a section: %s", key
);
1080 store
.baselen
= last_dot
- key
;
1082 store
.multi_replace
= multi_replace
;
1085 * Validate the key and while at it, lower case it for matching.
1087 store
.key
= xmalloc(strlen(key
) + 1);
1089 for (i
= 0; key
[i
]; i
++) {
1090 unsigned char c
= key
[i
];
1093 /* Leave the extended basename untouched.. */
1094 if (!dot
|| i
> store
.baselen
) {
1095 if (!iskeychar(c
) || (i
== store
.baselen
+1 && !isalpha(c
))) {
1096 error("invalid key: %s", key
);
1102 } else if (c
== '\n') {
1103 error("invalid key (newline): %s", key
);
1113 * The lock serves a purpose in addition to locking: the new
1114 * contents of .git/config will be written into it.
1116 lock
= xcalloc(sizeof(struct lock_file
), 1);
1117 fd
= hold_lock_file_for_update(lock
, config_filename
, 0);
1119 error("could not lock config file %s: %s", config_filename
, strerror(errno
));
1126 * If .git/config does not exist yet, write a minimal version.
1128 in_fd
= open(config_filename
, O_RDONLY
);
1132 if ( ENOENT
!= errno
) {
1133 error("opening %s: %s", config_filename
,
1135 ret
= 3; /* same as "invalid config file" */
1138 /* if nothing to unset, error out */
1139 if (value
== NULL
) {
1144 store
.key
= (char *)key
;
1145 if (!store_write_section(fd
, key
) ||
1146 !store_write_pair(fd
, key
, value
))
1151 size_t contents_sz
, copy_begin
, copy_end
;
1152 int i
, new_line
= 0;
1154 if (value_regex
== NULL
)
1155 store
.value_regex
= NULL
;
1157 if (value_regex
[0] == '!') {
1158 store
.do_not_match
= 1;
1161 store
.do_not_match
= 0;
1163 store
.value_regex
= (regex_t
*)xmalloc(sizeof(regex_t
));
1164 if (regcomp(store
.value_regex
, value_regex
,
1166 error("invalid pattern: %s", value_regex
);
1167 free(store
.value_regex
);
1173 store
.offset
[0] = 0;
1174 store
.state
= START
;
1178 * After this, store.offset will contain the *end* offset
1179 * of the last match, or remain at 0 if no match was found.
1180 * As a side effect, we make sure to transform only a valid
1181 * existing config file.
1183 if (git_config_from_file(store_aux
, config_filename
, NULL
)) {
1184 error("invalid config file %s", config_filename
);
1186 if (store
.value_regex
!= NULL
) {
1187 regfree(store
.value_regex
);
1188 free(store
.value_regex
);
1195 if (store
.value_regex
!= NULL
) {
1196 regfree(store
.value_regex
);
1197 free(store
.value_regex
);
1200 /* if nothing to unset, or too many matches, error out */
1201 if ((store
.seen
== 0 && value
== NULL
) ||
1202 (store
.seen
> 1 && multi_replace
== 0)) {
1208 contents_sz
= xsize_t(st
.st_size
);
1209 contents
= xmmap(NULL
, contents_sz
, PROT_READ
,
1210 MAP_PRIVATE
, in_fd
, 0);
1213 if (store
.seen
== 0)
1216 for (i
= 0, copy_begin
= 0; i
< store
.seen
; i
++) {
1217 if (store
.offset
[i
] == 0) {
1218 store
.offset
[i
] = copy_end
= contents_sz
;
1219 } else if (store
.state
!= KEY_SEEN
) {
1220 copy_end
= store
.offset
[i
];
1222 copy_end
= find_beginning_of_line(
1223 contents
, contents_sz
,
1224 store
.offset
[i
]-2, &new_line
);
1226 if (copy_end
> 0 && contents
[copy_end
-1] != '\n')
1229 /* write the first part of the config */
1230 if (copy_end
> copy_begin
) {
1231 if (write_in_full(fd
, contents
+ copy_begin
,
1232 copy_end
- copy_begin
) <
1233 copy_end
- copy_begin
)
1236 write_str_in_full(fd
, "\n") != 1)
1239 copy_begin
= store
.offset
[i
];
1242 /* write the pair (value == NULL means unset) */
1243 if (value
!= NULL
) {
1244 if (store
.state
== START
) {
1245 if (!store_write_section(fd
, key
))
1248 if (!store_write_pair(fd
, key
, value
))
1252 /* write the rest of the config */
1253 if (copy_begin
< contents_sz
)
1254 if (write_in_full(fd
, contents
+ copy_begin
,
1255 contents_sz
- copy_begin
) <
1256 contents_sz
- copy_begin
)
1259 munmap(contents
, contents_sz
);
1262 if (commit_lock_file(lock
) < 0) {
1263 error("could not commit config file %s", config_filename
);
1269 * lock is committed, so don't try to roll it back below.
1270 * NOTE: Since lockfile.c keeps a linked list of all created
1271 * lock_file structures, it isn't safe to free(lock). It's
1272 * better to just leave it hanging around.
1279 rollback_lock_file(lock
);
1280 free(config_filename
);
1284 ret
= write_error(lock
->filename
);
1289 static int section_name_match (const char *buf
, const char *name
)
1291 int i
= 0, j
= 0, dot
= 0;
1294 for (i
= 1; buf
[i
] && buf
[i
] != ']'; i
++) {
1295 if (!dot
&& isspace(buf
[i
])) {
1297 if (name
[j
++] != '.')
1299 for (i
++; isspace(buf
[i
]); i
++)
1305 if (buf
[i
] == '\\' && dot
)
1307 else if (buf
[i
] == '"' && dot
) {
1308 for (i
++; isspace(buf
[i
]); i
++)
1312 if (buf
[i
] != name
[j
++])
1315 if (buf
[i
] == ']' && name
[j
] == 0) {
1317 * We match, now just find the right length offset by
1318 * gobbling up any whitespace after it, as well
1321 for (; buf
[i
] && isspace(buf
[i
]); i
++)
1328 /* if new_name == NULL, the section is removed instead */
1329 int git_config_rename_section(const char *old_name
, const char *new_name
)
1331 int ret
= 0, remove
= 0;
1332 char *config_filename
;
1333 struct lock_file
*lock
= xcalloc(sizeof(struct lock_file
), 1);
1337 if (config_exclusive_filename
)
1338 config_filename
= xstrdup(config_exclusive_filename
);
1340 config_filename
= git_pathdup("config");
1341 out_fd
= hold_lock_file_for_update(lock
, config_filename
, 0);
1343 ret
= error("could not lock config file %s", config_filename
);
1347 if (!(config_file
= fopen(config_filename
, "rb"))) {
1348 /* no config file means nothing to rename, no error */
1349 goto unlock_and_out
;
1352 while (fgets(buf
, sizeof(buf
), config_file
)) {
1356 for (i
= 0; buf
[i
] && isspace(buf
[i
]); i
++)
1358 if (buf
[i
] == '[') {
1359 /* it's a section */
1360 int offset
= section_name_match(&buf
[i
], old_name
);
1363 if (new_name
== NULL
) {
1367 store
.baselen
= strlen(new_name
);
1368 if (!store_write_section(out_fd
, new_name
)) {
1369 ret
= write_error(lock
->filename
);
1373 * We wrote out the new section, with
1374 * a newline, now skip the old
1377 output
+= offset
+ i
;
1378 if (strlen(output
) > 0) {
1380 * More content means there's
1381 * a declaration to put on the
1382 * next line; indent with a
1393 length
= strlen(output
);
1394 if (write_in_full(out_fd
, output
, length
) != length
) {
1395 ret
= write_error(lock
->filename
);
1399 fclose(config_file
);
1401 if (commit_lock_file(lock
) < 0)
1402 ret
= error("could not commit config file %s", config_filename
);
1404 free(config_filename
);
1409 * Call this to report error for your variable that should not
1410 * get a boolean value (i.e. "[my] var" means "true").
1412 int config_error_nonbool(const char *var
)
1414 return error("Missing value for '%s'", var
);