1# $OpenBSD: sftp-badcmds.sh,v 1.4 2009/08/13 01:11:55 djm Exp $ 2# Placed in the Public Domain. 3 4tid="sftp invalid commands" 5 6DATA=/bin/ls${EXEEXT} 7DATA2=/bin/sh${EXEEXT} 8NONEXIST=/NONEXIST.$$ 9COPY=${OBJ}/copy 10GLOBFILES=`(cd /bin;echo l*)` 11 12rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd 13 14rm -f ${COPY} 15verbose "$tid: get nonexistent" 16echo "get $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 17 || fail "get nonexistent failed" 18test -f ${COPY} && fail "existing copy after get nonexistent" 19 20rm -f ${COPY}.dd/* 21verbose "$tid: glob get to nonexistent directory" 22echo "get /bin/l* $NONEXIST" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 23 || fail "get nonexistent failed" 24for x in $GLOBFILES; do 25 test -f ${COPY}.dd/$x && fail "existing copy after get nonexistent" 26done 27 28rm -f ${COPY} 29verbose "$tid: put nonexistent" 30echo "put $NONEXIST $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 31 || fail "put nonexistent failed" 32test -f ${COPY} && fail "existing copy after put nonexistent" 33 34rm -f ${COPY}.dd/* 35verbose "$tid: glob put to nonexistent directory" 36echo "put /bin/l* ${COPY}.dd" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 37 || fail "put nonexistent failed" 38for x in $GLOBFILES; do 39 test -f ${COPY}.dd/$x && fail "existing copy after nonexistent" 40done 41 42rm -f ${COPY} 43verbose "$tid: rename nonexistent" 44echo "rename $NONEXIST ${COPY}.1" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 45 || fail "rename nonexist failed" 46test -f ${COPY}.1 && fail "file exists after rename nonexistent" 47 48rm -rf ${COPY} ${COPY}.dd 49cp $DATA $COPY 50mkdir ${COPY}.dd 51verbose "$tid: rename target exists (directory)" 52echo "rename $COPY ${COPY}.dd" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 \ 53 || fail "rename target exists (directory) failed" 54test -f ${COPY} || fail "oldname missing after rename target exists (directory)" 55test -d ${COPY}.dd || fail "newname missing after rename target exists (directory)" 56cmp $DATA ${COPY} >/dev/null 2>&1 || fail "corrupted oldname after rename target exists (directory)" 57 58rm -f ${COPY}.dd/* 59rm -rf ${COPY} 60cp ${DATA2} ${COPY} 61verbose "$tid: glob put files to local file" 62echo "put /bin/l* $COPY" | ${SFTP} -D ${SFTPSERVER} >/dev/null 2>&1 63cmp ${DATA2} ${COPY} || fail "put successed when it should have failed" 64 65rm -rf ${COPY} ${COPY}.1 ${COPY}.2 ${COPY}.dd 66 67 68