Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-01-30 00:15:18 +0400
committerRussell Belfer <rb@github.com>2013-01-30 00:15:18 +0400
commit1e7799e8b84491cadb99cc306749316beec8a339 (patch)
tree9204f5915365199a7278b2dc48e0dd560ba7d839 /src/config_file.c
parent17c92beaca15f40bc8456cc38ced40f6921c4640 (diff)
Implement config key validation rules
This is a new implementation of core git's config key checking rules that prevents non-alphanumeric characters (and '-') for the top-level section and key names inside of config files. This also validates the target section name when renaming sections.
Diffstat (limited to 'src/config_file.c')
-rw-r--r--src/config_file.c70
1 files changed, 51 insertions, 19 deletions
diff --git a/src/config_file.c b/src/config_file.c
index 2b1be05bf..8b51ab21b 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -105,6 +105,29 @@ static void cvar_free(cvar_t *var)
git__free(var);
}
+int git_config_file_normalize_section(char *start, char *end)
+{
+ char *scan;
+
+ if (start == end)
+ return GIT_EINVALIDSPEC;
+
+ /* Validate and downcase range */
+ for (scan = start; *scan; ++scan) {
+ if (end && scan >= end)
+ break;
+ if (isalnum(*scan))
+ *scan = tolower(*scan);
+ else if (*scan != '-' || scan == start)
+ return GIT_EINVALIDSPEC;
+ }
+
+ if (scan == start)
+ return GIT_EINVALIDSPEC;
+
+ return 0;
+}
+
/* Take something the user gave us and make it nice for our hash function */
static int normalize_name(const char *in, char **out)
{
@@ -118,19 +141,26 @@ static int normalize_name(const char *in, char **out)
fdot = strchr(name, '.');
ldot = strrchr(name, '.');
- if (fdot == NULL || ldot == NULL) {
- git__free(name);
- giterr_set(GITERR_CONFIG,
- "Invalid variable name: '%s'", in);
- return -1;
- }
+ if (fdot == NULL || fdot == name || ldot == NULL || !ldot[1])
+ goto invalid;
+
+ /* Validate and downcase up to first dot and after last dot */
+ if (git_config_file_normalize_section(name, fdot) < 0 ||
+ git_config_file_normalize_section(ldot + 1, NULL) < 0)
+ goto invalid;
- /* Downcase up to the first dot and after the last one */
- git__strntolower(name, fdot - name);
- git__strtolower(ldot);
+ /* If there is a middle range, make sure it doesn't have newlines */
+ while (fdot < ldot)
+ if (*fdot++ == '\n')
+ goto invalid;
*out = name;
return 0;
+
+invalid:
+ git__free(name);
+ giterr_set(GITERR_CONFIG, "Invalid config item name '%s'", in);
+ return GIT_EINVALIDSPEC;
}
static void free_vars(git_strmap *values)
@@ -271,8 +301,8 @@ static int config_set(git_config_backend *cfg, const char *name, const char *val
khiter_t pos;
int rval, ret;
- if (normalize_name(name, &key) < 0)
- return -1;
+ if ((rval = normalize_name(name, &key)) < 0)
+ return rval;
/*
* Try to find it in the existing values and update it if it
@@ -352,9 +382,10 @@ static int config_get(const git_config_backend *cfg, const char *name, const git
diskfile_backend *b = (diskfile_backend *)cfg;
char *key;
khiter_t pos;
+ int error;
- if (normalize_name(name, &key) < 0)
- return -1;
+ if ((error = normalize_name(name, &key)) < 0)
+ return error;
pos = git_strmap_lookup_index(b->values, key);
git__free(key);
@@ -379,9 +410,10 @@ static int config_get_multivar(
diskfile_backend *b = (diskfile_backend *)cfg;
char *key;
khiter_t pos;
+ int error;
- if (normalize_name(name, &key) < 0)
- return -1;
+ if ((error = normalize_name(name, &key)) < 0)
+ return error;
pos = git_strmap_lookup_index(b->values, key);
git__free(key);
@@ -444,8 +476,8 @@ static int config_set_multivar(
assert(regexp);
- if (normalize_name(name, &key) < 0)
- return -1;
+ if ((result = normalize_name(name, &key)) < 0)
+ return result;
pos = git_strmap_lookup_index(b->values, key);
if (!git_strmap_valid_index(b->values, pos)) {
@@ -515,8 +547,8 @@ static int config_delete(git_config_backend *cfg, const char *name)
int result;
khiter_t pos;
- if (normalize_name(name, &key) < 0)
- return -1;
+ if ((result = normalize_name(name, &key)) < 0)
+ return result;
pos = git_strmap_lookup_index(b->values, key);
git__free(key);