summaryrefslogtreecommitdiffstats
path: root/bin/sh/tests
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2015-08-23 20:44:53 +0000
committerjilles <jilles@FreeBSD.org>2015-08-23 20:44:53 +0000
commitf504ca457f15fb7151537bd610d757a4d8163951 (patch)
tree7649da2c39f43e98eb79a974979a3f8d15039d3a /bin/sh/tests
parent9dba4c6890736d6ff29340b1a48dd5e2f99d8539 (diff)
downloadFreeBSD-src-f504ca457f15fb7151537bd610d757a4d8163951.zip
FreeBSD-src-f504ca457f15fb7151537bd610d757a4d8163951.tar.gz
sh: Don't create bad parse result when postponing a bad substitution error.
An invalid substitution like ${var@} does not cause a parse error but is stored in the intermediate representation, to be written as part of the error message. If there is a CTL* byte in the stored part, this confuses some code such as the code to skip an unused alternative such as in ${var-alternative}. To keep things simple, do not store CTL* bytes. Found with afl-fuzz. MFC after: 1 week
Diffstat (limited to 'bin/sh/tests')
-rw-r--r--bin/sh/tests/errors/Makefile2
-rw-r--r--bin/sh/tests/errors/bad-parm-exp7.04
-rw-r--r--bin/sh/tests/errors/bad-parm-exp8.04
3 files changed, 10 insertions, 0 deletions
diff --git a/bin/sh/tests/errors/Makefile b/bin/sh/tests/errors/Makefile
index ace9a01..51a766f 100644
--- a/bin/sh/tests/errors/Makefile
+++ b/bin/sh/tests/errors/Makefile
@@ -19,6 +19,8 @@ FILES+= bad-parm-exp3.2 bad-parm-exp3.2.stderr
FILES+= bad-parm-exp4.2 bad-parm-exp4.2.stderr
FILES+= bad-parm-exp5.2 bad-parm-exp5.2.stderr
FILES+= bad-parm-exp6.2 bad-parm-exp6.2.stderr
+FILES+= bad-parm-exp7.0
+FILES+= bad-parm-exp8.0
FILES+= option-error.0
FILES+= redirection-error.0
FILES+= redirection-error2.2
diff --git a/bin/sh/tests/errors/bad-parm-exp7.0 b/bin/sh/tests/errors/bad-parm-exp7.0
new file mode 100644
index 0000000..b8562fb
--- /dev/null
+++ b/bin/sh/tests/errors/bad-parm-exp7.0
@@ -0,0 +1,4 @@
+# $FreeBSD$
+
+v=1
+eval ": $(printf '${v-${\372}}')"
diff --git a/bin/sh/tests/errors/bad-parm-exp8.0 b/bin/sh/tests/errors/bad-parm-exp8.0
new file mode 100644
index 0000000..28f00cd
--- /dev/null
+++ b/bin/sh/tests/errors/bad-parm-exp8.0
@@ -0,0 +1,4 @@
+# $FreeBSD$
+
+v=1
+eval ": $(printf '${v-${w\372}}')"
OpenPOWER on IntegriCloud