* Corner case bug caused by shell dependent behavior
@ 2014-03-14 0:02 Uwe Storbeck
2014-03-14 0:37 ` Jonathan Nieder
2014-03-14 2:28 ` Jeff King
0 siblings, 2 replies; 5+ messages in thread
From: Uwe Storbeck @ 2014-03-14 0:02 UTC (permalink / raw)
To: git
[-- Attachment #1: Type: text/plain, Size: 799 bytes --]
Hi
When your system shell (/bin/sh) is a dash control sequences in
strings get interpreted by the echo command. A commit message
which ends with the string '\n' may result in a garbage line in
the todo list of an interactive rebase which causes the rebase
to fail.
To reproduce the behavior (with dash as /bin/sh):
mkdir test && cd test && git init
echo 1 >foo && git add foo
git commit -m"this commit message ends with '\n'"
echo 2 >foo && git commit -a --fixup HEAD
git rebase -i --autosquash --root
Now the editor opens with garbage in line 3 which has to be
removed or the rebase fails.
The attached one-line patch fixes the bug. Be free to edit the
commit message when it's too long.
Maybe there are more places where it would be more robust to use
printf instead of echo.
Uwe
[-- Attachment #2: 0001-git-rebase-interactive-replace-echo-by-printf.patch --]
[-- Type: text/x-diff, Size: 1434 bytes --]
>From 53262bc8a7a3ec9d9a6b0e8ecaaea598257b87fe Mon Sep 17 00:00:00 2001
From: Uwe Storbeck <uwe@ibr.ch>
Date: Fri, 14 Mar 2014 00:28:33 +0100
Subject: [PATCH] git-rebase--interactive: replace echo by printf
to avoid shell dependent behavior.
When your system shell (/bin/sh) is a dash control sequences in
strings get interpreted by the echo command. A commit message
which ends with the string '\n' may result in a garbage line in
the todo list of an interactive rebase which causes the rebase
to fail.
To reproduce the behavior (with dash as /bin/sh):
mkdir test && cd test && git init
echo 1 >foo && git add foo
git commit -m"this commit message ends with '\n'"
echo 2 >foo && git commit -a --fixup HEAD
git rebase -i --autosquash --root
Now the editor opens with garbage in line 3 which has to be
removed or the rebase fails.
---
git-rebase--interactive.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index a1adae8..3ffe14c 100644
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -749,7 +749,7 @@ rearrange_squash () {
;;
esac
done
- echo "$sha1 $action $prefix $rest"
+ printf "%s %s %s %s\n" "$sha1" "$action" "$prefix" "$rest"
# if it's a single word, try to resolve to a full sha1 and
# emit a second copy. This allows us to match on both message
# and on sha1 prefix
--
1.9.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Corner case bug caused by shell dependent behavior
2014-03-14 0:02 Corner case bug caused by shell dependent behavior Uwe Storbeck
@ 2014-03-14 0:37 ` Jonathan Nieder
2014-03-14 23:53 ` Uwe Storbeck
2014-03-14 2:28 ` Jeff King
1 sibling, 1 reply; 5+ messages in thread
From: Jonathan Nieder @ 2014-03-14 0:37 UTC (permalink / raw)
To: Uwe Storbeck; +Cc: git, Junio C Hamano
Hi,
Uwe Storbeck wrote:
> To reproduce the behavior (with dash as /bin/sh):
>
> mkdir test && cd test && git init
> echo 1 >foo && git add foo
> git commit -m"this commit message ends with '\n'"
> echo 2 >foo && git commit -a --fixup HEAD
> git rebase -i --autosquash --root
>
> Now the editor opens with garbage in line 3 which has to be
> removed or the rebase fails.
Would it make sense to add this as a test to e.g.
t/t3404-rebase-interactive.sh?
> The attached one-line patch fixes the bug.
May we have your sign-off? (See Documentation/SubmittingPatches
section "Sign your work" for what this means.
Looks obviously correct, so for what it's worth,
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Thanks,
Jonathan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Corner case bug caused by shell dependent behavior
2014-03-14 0:02 Corner case bug caused by shell dependent behavior Uwe Storbeck
2014-03-14 0:37 ` Jonathan Nieder
@ 2014-03-14 2:28 ` Jeff King
2014-03-14 6:08 ` David Kastrup
1 sibling, 1 reply; 5+ messages in thread
From: Jeff King @ 2014-03-14 2:28 UTC (permalink / raw)
To: Uwe Storbeck; +Cc: git
On Fri, Mar 14, 2014 at 01:02:13AM +0100, Uwe Storbeck wrote:
> When your system shell (/bin/sh) is a dash control sequences in
> strings get interpreted by the echo command. A commit message
> which ends with the string '\n' may result in a garbage line in
> the todo list of an interactive rebase which causes the rebase
> to fail.
>
> To reproduce the behavior (with dash as /bin/sh):
>
> mkdir test && cd test && git init
> echo 1 >foo && git add foo
> git commit -m"this commit message ends with '\n'"
> echo 2 >foo && git commit -a --fixup HEAD
> git rebase -i --autosquash --root
Hmph. We ran into this before and fixed all of the sites (e.g., d1c3b10
and 938791c). This one appears to have been added a few months later
(by 68d5d03).
> Maybe there are more places where it would be more robust to use
> printf instead of echo.
FWIW, I just looked through the other uses of "echo" in git-rebase*.sh,
and I think this is the only problematic case.
> - echo "$sha1 $action $prefix $rest"
> + printf "%s %s %s %s\n" "$sha1" "$action" "$prefix" "$rest"
Looks obviously correct. The echo just below here does not need the same
treatment, as "$rest" is the problematic bit ("$prefix" is always
"fixup" or "squash").
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Corner case bug caused by shell dependent behavior
2014-03-14 2:28 ` Jeff King
@ 2014-03-14 6:08 ` David Kastrup
0 siblings, 0 replies; 5+ messages in thread
From: David Kastrup @ 2014-03-14 6:08 UTC (permalink / raw)
To: Jeff King; +Cc: Uwe Storbeck, git
Jeff King <peff@peff.net> writes:
> Hmph. We ran into this before and fixed all of the sites (e.g., d1c3b10
> and 938791c). This one appears to have been added a few months later
> (by 68d5d03).
>
>> Maybe there are more places where it would be more robust to use
>> printf instead of echo.
>
> FWIW, I just looked through the other uses of "echo" in git-rebase*.sh,
> and I think this is the only problematic case.
>
>> - echo "$sha1 $action $prefix $rest"
>> + printf "%s %s %s %s\n" "$sha1" "$action" "$prefix" "$rest"
>
> Looks obviously correct. The echo just below here does not need the same
> treatment, as "$rest" is the problematic bit ("$prefix" is always
> "fixup" or "squash").
I'd not rationalize this away by deep analysis. Copy&paste is a thing,
so to just use printf whenever _any_ seriously variable strings (source
not immediately the shell script itself, perhaps even _any_ nonconstant
strings) are involved keeps people from introducing bugs by following
apparent practice.
--
David Kastrup
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Corner case bug caused by shell dependent behavior
2014-03-14 0:37 ` Jonathan Nieder
@ 2014-03-14 23:53 ` Uwe Storbeck
0 siblings, 0 replies; 5+ messages in thread
From: Uwe Storbeck @ 2014-03-14 23:53 UTC (permalink / raw)
To: Jonathan Nieder; +Cc: git
On Mar 13, Jonathan Nieder wrote:
> May we have your sign-off? (See Documentation/SubmittingPatches
> section "Sign your work" for what this means.
I could have found that myself .. thanks! I'll try to follow it
now. :)
I'll resend the patch. Hopefully I'll do it right.
> Would it make sense to add this as a test to e.g.
> t/t3404-rebase-interactive.sh?
It's a rather special case, so I'm not sure if it's worth it.
I'll send a patch which adds a test for it. The test works for
me, but as I don't understand the test mechanisms already good
enough a few questions:
- Is it correct to call the fake editor with an empty variable
FAKE_LINES when you want it to not change the todo list of a
rebase -i and use it as it is (the work is already done by the
autosquash option)? I can achieve the same with EDITOR=true.
What's the preferred way? Is there an advantage to use the fake
editor also in this case?
- The tests in t3404-rebase-interactive.sh use their variables
a bit differently, some just set the variables, some export
the variables and some use a subshell to encapsulate them.
Also some of the tests reset their rebase state so that
subsequent tests, which also use rebase, do not fail when the
rebase fails. Other tests don't do that.
What's the expected resp. recommended behavior?
While trying to understand the test mechanisms I stumbled over
two other problematic uses of echo. These although only affect
the test output, not git itself.
Uwe
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-03-14 23:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-14 0:02 Corner case bug caused by shell dependent behavior Uwe Storbeck
2014-03-14 0:37 ` Jonathan Nieder
2014-03-14 23:53 ` Uwe Storbeck
2014-03-14 2:28 ` Jeff King
2014-03-14 6:08 ` David Kastrup
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).