git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Use git-config to Break your Config File
@ 2012-04-24  2:57 David E. Wheeler
  2012-04-26  1:47 ` [PATCH] config: reject bogus section names for --rename-section Jeff King
  0 siblings, 1 reply; 3+ messages in thread
From: David E. Wheeler @ 2012-04-24  2:57 UTC (permalink / raw)
  To: git

Gitsters,

I was fooling around and realized that I could assign an empty string as the name of a config section, like so:

    $ git config --rename-section my ''

This leaves the config file looking like this:

    []
        foo = goodbye

Which does not appear to be valid:

    $ git config --get '.foo'          
    fatal: bad config file line 13 in .git/config

So maybe git-config should disallow setting a section to an empty string?

Best,

David

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] config: reject bogus section names for --rename-section
  2012-04-24  2:57 Use git-config to Break your Config File David E. Wheeler
@ 2012-04-26  1:47 ` Jeff King
  2012-04-26  4:19   ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2012-04-26  1:47 UTC (permalink / raw)
  To: David E. Wheeler; +Cc: Junio C Hamano, git

You can feed junk to "git config --rename-section", which
will result in a config file that git will not even parse
(so you cannot fix it with git-config). We already have
syntactic sanity checks when setting a variable; let's do
the same for section names.

Signed-off-by: Jeff King <peff@peff.net>
---
On Mon, Apr 23, 2012 at 07:57:19PM -0700, David E. Wheeler wrote:

> I was fooling around and realized that I could assign an empty string
> as the name of a config section, like so:
> 
>     $ git config --rename-section my ''
> 
> This leaves the config file looking like this:
> 
>     []
>         foo = goodbye
> 
> Which does not appear to be valid:
> 
>     $ git config --get '.foo'          
>     fatal: bad config file line 13 in .git/config
> 
> So maybe git-config should disallow setting a section to an empty string?

Yes, we should definitely be more careful.

 config.c               |   24 +++++++++++++++++++++++-
 t/t1300-repo-config.sh |    8 ++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/config.c b/config.c
index 68d3294..9ef947e 100644
--- a/config.c
+++ b/config.c
@@ -1552,20 +1552,42 @@ static int section_name_match (const char *buf, const char *name)
 	return 0;
 }
 
+static int section_name_is_ok(const char *name)
+{
+	/* Empty section names are bogus. */
+	if (!*name)
+		return 0;
+
+	/*
+	 * Before a dot, we must be alphanumeric or dash. After the first dot,
+	 * anything goes, so we can stop checking.
+	 */
+	for (; *name && *name != '.'; name++)
+		if (*name != '-' && !isalnum(*name))
+			return 0;
+	return 1;
+}
+
 /* if new_name == NULL, the section is removed instead */
 int git_config_rename_section_in_file(const char *config_filename,
 				      const char *old_name, const char *new_name)
 {
 	int ret = 0, remove = 0;
 	char *filename_buf = NULL;
-	struct lock_file *lock = xcalloc(sizeof(struct lock_file), 1);
+	struct lock_file *lock;
 	int out_fd;
 	char buf[1024];
 	FILE *config_file;
 
+	if (new_name && !section_name_is_ok(new_name)) {
+		ret = error("invalid section name: %s", new_name);
+		goto out;
+	}
+
 	if (!config_filename)
 		config_filename = filename_buf = git_pathdup("config");
 
+	lock = xcalloc(sizeof(struct lock_file), 1);
 	out_fd = hold_lock_file_for_update(lock, config_filename, 0);
 	if (out_fd < 0) {
 		ret = error("could not lock config file %s", config_filename);
diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh
index 36e227b..a477453 100755
--- a/t/t1300-repo-config.sh
+++ b/t/t1300-repo-config.sh
@@ -550,6 +550,14 @@ EOF
 
 test_expect_success "rename succeeded" "test_cmp expect .git/config"
 
+test_expect_success 'renaming empty section name is rejected' '
+	test_must_fail git config --rename-section branch.zwei ""
+'
+
+test_expect_success 'renaming to bogus section is rejected' '
+	test_must_fail git config --rename-section branch.zwei "bogus name"
+'
+
 cat >> .git/config << EOF
   [branch "zwei"] a = 1 [branch "vier"]
 EOF
-- 
1.7.9.6.11.gd9951

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] config: reject bogus section names for --rename-section
  2012-04-26  1:47 ` [PATCH] config: reject bogus section names for --rename-section Jeff King
@ 2012-04-26  4:19   ` Junio C Hamano
  0 siblings, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2012-04-26  4:19 UTC (permalink / raw)
  To: Jeff King; +Cc: David E. Wheeler, git

Thanks, will queue.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-04-26  4:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-24  2:57 Use git-config to Break your Config File David E. Wheeler
2012-04-26  1:47 ` [PATCH] config: reject bogus section names for --rename-section Jeff King
2012-04-26  4:19   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).