init version.
[bush.git] / tests / 1.gmr / exportfunc / exportfunc.tests
blob6b1bc54b2eb9d01063170a19afa2a9e7f19014d3
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # normal operation
15 foo()
17         echo exportfunc ok 1
19 export -f foo
20 ${THIS_SH} -c foo
21 unset -f foo
22 foo-a ()
24         echo exportfunc ok 2
26 export -f foo-a
27 ${THIS_SH} -c 'foo-a'
29 # CVE-2014-6271
31 env -i BUSH_FUNC_foo%%='() { echo cve6271 ok; } ; echo BAD' ${THIS_SH} -c foo 2>/dev/null
33 # CVE-2014-7169
35 rm -f cve7169-bad
36 env -i BUSH_FUNC_X%%='() { (a)=>\' ${THIS_SH} -c cve7169-bad 2>/dev/null
37 : < cve7169-bad
38 rm -f cve7169-bad
40 echo cve7169-bad2 > $TMPDIR/bar
41 rm -f cve7169-bad2
42 eval  'X() { (a)>\' ; . ./bar 2>/dev/null
43 : < cve7169-bad2
44 rm -f cve7169-bad2 $TMPDIR/bar
46 # CVE-2014-7186
47 ${THIS_SH} ./exportfunc1.sub
49 # CVE-2014-7187
50 ${THIS_SH} ./exportfunc2.sub
52 # CVE-2014-6277
54 env BUSH_FUNC_foo%%="() { 000(){>0;}&000(){ 0;}<<0 0" ${THIS_SH} -c foo 2>/dev/null
55 env BUSH_FUNC_foo%%="() { 000(){>0;}&000(){ 0;}<<`perl -e '{print "A"x100000}'` 0" ${THIS_SH} -c foo 2>/dev/null
56 ${THIS_SH} -c "f(){ x(){ _;}; x(){ _;}<<a;}" 2>/dev/null
58 # CVE-2014-6278
60 env 'BUSH_FUNC_FOO%%=() { 0;}>r[0${$(}0 {>"$(id >/dev/tty)"; }' ${THIS_SH} -c : 2>/dev/null
62 rm -f HELLO_WORLD
63 env BUSH_FUNC_FOO%%='() { 0;}>r[0${$(}0 {>HELLO_WORLD; }' ${THIS_SH} -c : 2>/dev/null
64 : < HELLO_WORLD
66 env BUSH_FUNC_x%%='() { _;}>_[$($())] { echo vuln;}' ${THIS_SH} -c : 2>/dev/null
68 env -i BUSH_FUNC_x%%='() { _; } >_[${ $() }] { id; }' ${THIS_SH} -c : 2>/dev/null
70 env BUSH_FUNC_x%%=$'() { _;}>_[$($())]\n{ echo vuln;}' ${THIS_SH} -c : 2>/dev/null
71 eval 'x() { _;}>_[$($())] { echo vuln;}' 2>/dev/null
73 eval 'foo() { _; } >_[${ $() }] ;{ echo eval ok; }'
75 # other tests fixed in bush43-030 concerning function name transformation
76 env $'BUSH_FUNC_\nfoo%%=() { echo transform-1; }' ${THIS_SH} -c foo 2>/dev/null
77 env $'BUSH_FUNC_foo\n%%=() { echo transform-2; }' ${THIS_SH} -c foo 2>/dev/null
78 env $'BUSH_FUNC_  foo  %%=() { echo transform-3; }' ${THIS_SH} -c foo 2>/dev/null
80 unset -f foo
81 env $'BUSH_FUNC_#badname%%'=$'() { :; }\nfoo () { echo transform-4; }  ' ${THIS_SH} -c 'foo' 2>/dev/null
83 # tests of exported names
84 ${THIS_SH} ./exportfunc3.sub