* [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo
@ 2016-10-16 14:30 Michael Tokarev
2016-10-16 14:40 ` [Qemu-trivial] [Qemu-devel] " no-reply
2016-10-16 15:22 ` [Qemu-trivial] " Daniel Shahaf
0 siblings, 2 replies; 4+ messages in thread
From: Michael Tokarev @ 2016-10-16 14:30 UTC (permalink / raw)
To: qemu-devel, Daniel Shahaf; +Cc: qemu-trivial, Michael Tokarev
From: Daniel Shahaf <danielsh@apache.org>
Avoid undefined behaviour of echo(1) with backslashes in arguments
The behaviour is implementation-defined, different /bin/sh's behave
differently.
Signed-off-By: Michael Tokarev <mjt@tls.msk.ru>
---
Submitting this patch upstream, thank you very much!
Daniel, can you please add your Signed-off-By line?
scripts/hxtool | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/scripts/hxtool b/scripts/hxtool
index 995bb7f..04f7d7b 100644
--- a/scripts/hxtool
+++ b/scripts/hxtool
@@ -26,32 +26,32 @@ hxtotexi()
;;
STEXI*)
if test $flag -eq 1 ; then
- echo "line $line: syntax error: expected ETEXI, found $str" >&2
+ printf "line %d: syntax error: expected ETEXI, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=1
;;
ETEXI*)
if test $flag -ne 1 ; then
- echo "line $line: syntax error: expected STEXI, found $str" >&2
+ printf "line %d: syntax error: expected STEXI, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=0
;;
SQMP*|EQMP*)
if test $flag -eq 1 ; then
- echo "line $line: syntax error: expected ETEXI, found $str" >&2
+ printf "line %d: syntax error: expected ETEXI, found '%s'\n" "$line" "$str" >&2
exit 1
fi
;;
DEFHEADING*)
- echo "$(expr "$str" : "DEFHEADING(\(.*\))")"
+ printf '%s\n' "$(expr "$str" : "DEFHEADING(\(.*\))")"
;;
ARCHHEADING*)
- echo "$(expr "$str" : "ARCHHEADING(\(.*\),.*)")"
+ printf '%s\n' "$(expr "$str" : "ARCHHEADING(\(.*\),.*)")"
;;
*)
- test $flag -eq 1 && echo "$str"
+ test $flag -eq 1 && printf '%s\n' "$str"
;;
esac
line=$((line+1))
@@ -69,26 +69,26 @@ hxtoqmp()
;;
SQMP*)
if test $flag -eq 1 ; then
- echo "line $line: syntax error: expected EQMP, found $str" >&2
+ printf "line %d: syntax error: expected EQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=1
;;
EQMP*)
if test $flag -ne 1 ; then
- echo "line $line: syntax error: expected SQMP, found $str" >&2
+ printf "line %d: syntax error: expected SQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
flag=0
;;
STEXI*|ETEXI*)
if test $flag -eq 1 ; then
- echo "line $line: syntax error: expected EQMP, found $str" >&2
+ printf "line %d: syntax error: expected EQMP, found '%s'\n" "$line" "$str" >&2
exit 1
fi
;;
*)
- test $flag -eq 1 && echo "$str"
+ test $flag -eq 1 && printf '%s\n' "$str"
;;
esac
line=$((line+1))
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [Qemu-devel] [PATCH] scripts/hxtool: fix undefined behavour of echo
2016-10-16 14:30 [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo Michael Tokarev
@ 2016-10-16 14:40 ` no-reply
2016-10-16 15:22 ` [Qemu-trivial] " Daniel Shahaf
1 sibling, 0 replies; 4+ messages in thread
From: no-reply @ 2016-10-16 14:40 UTC (permalink / raw)
To: mjt; +Cc: famz, qemu-devel, danielsh, qemu-trivial, mjt
Hi,
Your series seems to have some coding style problems. See output below for
more information:
Type: series
Message-id: 1476628228-7425-1-git-send-email-mjt@msgid.tls.msk.ru
Subject: [Qemu-devel] [PATCH] scripts/hxtool: fix undefined behavour of echo
=== TEST SCRIPT BEGIN ===
#!/bin/bash
BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0
# Useful git options
git config --local diff.renamelimit 0
git config --local diff.renames True
commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
echo "Checking PATCH $n/$total: $(git show --no-patch --format=%s $c)..."
if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
failed=1
echo
fi
n=$((n+1))
done
exit $failed
=== TEST SCRIPT END ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
Switched to a new branch 'test'
af0a15c scripts/hxtool: fix undefined behavour of echo
=== OUTPUT BEGIN ===
Checking PATCH 1/1: scripts/hxtool: fix undefined behavour of echo...
ERROR: The correct form is "Signed-off-by"
#10:
Signed-off-By: Michael Tokarev <mjt@tls.msk.ru>
total: 1 errors, 0 warnings, 68 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo
2016-10-16 14:30 [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo Michael Tokarev
2016-10-16 14:40 ` [Qemu-trivial] [Qemu-devel] " no-reply
@ 2016-10-16 15:22 ` Daniel Shahaf
2016-10-16 15:26 ` Michael Tokarev
1 sibling, 1 reply; 4+ messages in thread
From: Daniel Shahaf @ 2016-10-16 15:22 UTC (permalink / raw)
To: Michael Tokarev; +Cc: qemu-devel, qemu-trivial
Michael Tokarev wrote on Sun, Oct 16, 2016 at 17:30:28 +0300:
> From: Daniel Shahaf <danielsh@apache.org>
>
> Avoid undefined behaviour of echo(1) with backslashes in arguments
> The behaviour is implementation-defined, different /bin/sh's behave
> differently.
>
Signed-off-by: Daniel Shahaf <danielsh@apache.org>
> Signed-off-By: Michael Tokarev <mjt@tls.msk.ru>
> ---
> Submitting this patch upstream, thank you very much!
> Daniel, can you please add your Signed-off-By line?
Like this?
Thank you for forwarding the patch upstream.
Daniel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo
2016-10-16 15:22 ` [Qemu-trivial] " Daniel Shahaf
@ 2016-10-16 15:26 ` Michael Tokarev
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tokarev @ 2016-10-16 15:26 UTC (permalink / raw)
To: Daniel Shahaf; +Cc: qemu-devel, qemu-trivial
16.10.2016 18:22, Daniel Shahaf wrote:
> Signed-off-by: Daniel Shahaf <danielsh@apache.org>
> Like this?
Yes, exactly, thank you! :)
/mjt
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-10-16 16:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-16 14:30 [Qemu-trivial] [PATCH] scripts/hxtool: fix undefined behavour of echo Michael Tokarev
2016-10-16 14:40 ` [Qemu-trivial] [Qemu-devel] " no-reply
2016-10-16 15:22 ` [Qemu-trivial] " Daniel Shahaf
2016-10-16 15:26 ` Michael Tokarev
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).