From: Michael Haggerty <mhagger@alum.mit.edu>
To: git@vger.kernel.org
Cc: Junio C Hamano <gitster@pobox.com>,
cmn@elego.de, Michael Haggerty <mhagger@alum.mit.edu>
Subject: [PATCH v2 2/2] Forbid DEL characters in reference names
Date: Sat, 27 Aug 2011 06:12:44 +0200 [thread overview]
Message-ID: <1314418364-2532-3-git-send-email-mhagger@alum.mit.edu> (raw)
In-Reply-To: <1314418364-2532-1-git-send-email-mhagger@alum.mit.edu>
DEL is an ASCII control character and therefore should not be
permitted in reference names. Add tests for this and other unusual
characters.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
---
Please check that the uses of "printf" in the test script are portable
and quoted correctly.
refs.c | 2 +-
t/t1402-check-ref-format.sh | 3 +++
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/refs.c b/refs.c
index 3a8789d..0fa8dcf 100644
--- a/refs.c
+++ b/refs.c
@@ -837,7 +837,7 @@ int for_each_rawref(each_ref_fn fn, void *cb_data)
static inline int bad_ref_char(int ch)
{
- if (((unsigned) ch) <= ' ' ||
+ if (((unsigned) ch) <= ' ' || ch == 0x7f ||
ch == '~' || ch == '^' || ch == ':' || ch == '\\')
return 1;
/* 2.13 Pattern Matching Notation */
diff --git a/t/t1402-check-ref-format.sh b/t/t1402-check-ref-format.sh
index 7563043..ed4275a 100755
--- a/t/t1402-check-ref-format.sh
+++ b/t/t1402-check-ref-format.sh
@@ -30,6 +30,9 @@ invalid_ref 'heads/foo.lock'
valid_ref 'heads/foo@bar'
invalid_ref 'heads/v@{ation'
invalid_ref 'heads/foo\bar'
+invalid_ref "$(printf 'heads/foo\t')"
+invalid_ref "$(printf 'heads/foo\177')"
+valid_ref "$(printf 'heads/fu\303\237')"
test_expect_success "check-ref-format --branch @{-1}" '
T=$(git write-tree) &&
--
1.7.6.8.gd2879
next prev parent reply other threads:[~2011-08-27 4:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-27 4:12 [PATCH v2 0/2] Fix reference name format check and normalization Michael Haggerty
2011-08-27 4:12 ` [PATCH v2 1/2] check-ref-format --print: Normalize refnames that start with slashes Michael Haggerty
2011-08-27 4:22 ` Michael Haggerty
2011-08-27 18:30 ` Junio C Hamano
2011-08-28 15:50 ` git project patch workflow Michael Haggerty
2011-08-29 18:50 ` [PATCH v2 1/2] check-ref-format --print: Normalize refnames that start with slashes Jeff King
2011-08-29 19:01 ` Jeff King
2011-08-29 20:56 ` Junio C Hamano
2011-08-29 21:27 ` Jeff King
2011-08-29 19:57 ` Johannes Sixt
2011-08-29 20:02 ` Jeff King
2011-08-29 22:22 ` Junio C Hamano
2011-08-27 4:12 ` Michael Haggerty [this message]
2011-08-27 18:40 ` [PATCH v2 2/2] Forbid DEL characters in reference names Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1314418364-2532-3-git-send-email-mhagger@alum.mit.edu \
--to=mhagger@alum.mit.edu \
--cc=cmn@elego.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).