Skip to content

Commit 9b01f00

Browse files
cuvipergitster
authored andcommitted
blame: tolerate bogus e-mail addresses a bit better
The names and e-mails are sanitized by fmt_ident() when creating commits, so that they do not contain "<" nor ">", and the "committer" and "author" lines in the commit object will always be in the form: ("author" | "committer") name SP "<" email ">" SP timestamp SP zone When parsing the email part out, the current code looks for SP starting from the end of the email part, but the author could obfuscate the address as "author at example dot com". We should instead look for SP followed by "<", to match the logic of the side that formats these lines. Signed-off-by: Josh Stone <[email protected]> Reviewed-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ec014ea commit 9b01f00

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

builtin/blame.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ static void get_ac_line(const char *inbuf, const char *what,
13771377
timepos = tmp;
13781378

13791379
*tmp = 0;
1380-
while (person < tmp && *tmp != ' ')
1380+
while (person < tmp && !(*tmp == ' ' && tmp[1] == '<'))
13811381
tmp--;
13821382
if (tmp <= person)
13831383
return;

t/annotate-tests.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file isn't used as a test script directly, instead it is
2-
# sourced from t8001-annotate.sh and t8001-blame.sh.
2+
# sourced from t8001-annotate.sh and t8002-blame.sh.
33

44
check_count () {
55
head=
@@ -124,3 +124,13 @@ test_expect_success \
124124
test_expect_success \
125125
'some edit' \
126126
'check_count A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1'
127+
128+
test_expect_success \
129+
'an obfuscated email added' \
130+
'sed -e "1i No robots allowed" < file > file.new &&
131+
mv file.new file &&
132+
GIT_AUTHOR_NAME="E" GIT_AUTHOR_EMAIL="E at test dot git" git commit -a -m "norobots"'
133+
134+
test_expect_success \
135+
'obfuscated email parsed' \
136+
'check_count A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1 E 1'

t/t8002-blame.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PROG='git blame -c'
88

99
PROG='git blame -c -e'
1010
test_expect_success 'Blame --show-email works' '
11-
11+
check_count "<[email protected]>" 1 "<[email protected]>" 1 "<[email protected]>" 1 "<[email protected]>" 1 "<[email protected]>" 1 "<[email protected]>" 1 "<[email protected]>" 1 "<E at test dot git>" 1
1212
'
1313

1414
test_done

0 commit comments

Comments
 (0)