2006-01-31 12:06:14 +01:00
|
|
|
# $OpenBSD: scp.sh,v 1.6 2006/01/31 10:23:23 djm Exp $
|
2004-06-16 12:15:59 +02:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
|
|
|
|
tid="scp"
|
|
|
|
|
|
|
|
#set -x
|
|
|
|
|
2004-06-17 07:18:32 +02:00
|
|
|
# Figure out if diff understands "-N"
|
|
|
|
if diff -N ${SRC}/scp.sh ${SRC}/scp.sh 2>/dev/null; then
|
|
|
|
DIFFOPT="-rN"
|
|
|
|
else
|
|
|
|
DIFFOPT="-r"
|
|
|
|
fi
|
|
|
|
|
2004-08-29 11:39:09 +02:00
|
|
|
DATA=/bin/ls${EXEEXT}
|
2004-06-16 12:15:59 +02:00
|
|
|
COPY=${OBJ}/copy
|
|
|
|
COPY2=${OBJ}/copy2
|
|
|
|
DIR=${COPY}.dd
|
|
|
|
DIR2=${COPY}.dd2
|
|
|
|
|
|
|
|
SRC=`dirname ${SCRIPT}`
|
2004-08-29 11:39:09 +02:00
|
|
|
cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp
|
|
|
|
chmod 755 ${OBJ}/scp-ssh-wrapper.scp
|
|
|
|
scpopts="-q -S ${OBJ}/scp-ssh-wrapper.scp"
|
2004-06-16 12:15:59 +02:00
|
|
|
|
|
|
|
scpclean() {
|
|
|
|
rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
|
|
|
|
mkdir ${DIR} ${DIR2}
|
|
|
|
}
|
|
|
|
|
2006-01-31 12:05:23 +01:00
|
|
|
verbose "$tid: simple copy local file to local file"
|
|
|
|
scpclean
|
|
|
|
$SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy"
|
|
|
|
|
2004-06-16 12:15:59 +02:00
|
|
|
verbose "$tid: simple copy local file to remote file"
|
|
|
|
scpclean
|
|
|
|
$SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy"
|
|
|
|
|
|
|
|
verbose "$tid: simple copy remote file to local file"
|
|
|
|
scpclean
|
|
|
|
$SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
|
|
|
|
cmp ${DATA} ${COPY} || fail "corrupted copy"
|
|
|
|
|
|
|
|
verbose "$tid: simple copy local file to remote dir"
|
|
|
|
scpclean
|
|
|
|
cp ${DATA} ${COPY}
|
|
|
|
$SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed"
|
|
|
|
cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
|
|
|
|
|
2006-01-31 12:05:23 +01:00
|
|
|
verbose "$tid: simple copy local file to local dir"
|
|
|
|
scpclean
|
|
|
|
cp ${DATA} ${COPY}
|
|
|
|
$SCP $scpopts ${COPY} ${DIR} || fail "copy failed"
|
|
|
|
cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
|
|
|
|
|
2004-06-16 12:15:59 +02:00
|
|
|
verbose "$tid: simple copy remote file to local dir"
|
|
|
|
scpclean
|
|
|
|
cp ${DATA} ${COPY}
|
|
|
|
$SCP $scpopts somehost:${COPY} ${DIR} || fail "copy failed"
|
|
|
|
cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
|
|
|
|
|
|
|
|
verbose "$tid: recursive local dir to remote dir"
|
|
|
|
scpclean
|
2004-06-16 15:22:37 +02:00
|
|
|
rm -rf ${DIR2}
|
2004-06-16 12:15:59 +02:00
|
|
|
cp ${DATA} ${DIR}/copy
|
|
|
|
$SCP $scpopts -r ${DIR} somehost:${DIR2} || fail "copy failed"
|
2004-06-17 07:18:32 +02:00
|
|
|
diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
|
2004-06-16 12:15:59 +02:00
|
|
|
|
2006-01-31 12:05:23 +01:00
|
|
|
verbose "$tid: recursive local dir to local dir"
|
|
|
|
scpclean
|
|
|
|
rm -rf ${DIR2}
|
|
|
|
cp ${DATA} ${DIR}/copy
|
|
|
|
$SCP $scpopts -r ${DIR} ${DIR2} || fail "copy failed"
|
|
|
|
diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
|
|
|
|
|
2004-06-16 12:15:59 +02:00
|
|
|
verbose "$tid: recursive remote dir to local dir"
|
|
|
|
scpclean
|
2004-06-16 15:22:37 +02:00
|
|
|
rm -rf ${DIR2}
|
2004-06-16 12:15:59 +02:00
|
|
|
cp ${DATA} ${DIR}/copy
|
|
|
|
$SCP $scpopts -r somehost:${DIR} ${DIR2} || fail "copy failed"
|
2004-06-17 07:18:32 +02:00
|
|
|
diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
|
2004-06-16 12:15:59 +02:00
|
|
|
|
2006-01-31 12:06:14 +01:00
|
|
|
verbose "$tid: shell metacharacters"
|
|
|
|
scpclean
|
|
|
|
(cd ${DIR} && \
|
|
|
|
touch '`touch metachartest`' && \
|
|
|
|
$SCP $scpopts *metachar* ${DIR2} 2>/dev/null; \
|
|
|
|
[ ! -f metachartest ] ) || fail "shell metacharacters"
|
|
|
|
|
2004-12-06 13:03:27 +01:00
|
|
|
if [ ! -z "$SUDO" ]; then
|
|
|
|
verbose "$tid: skipped file after scp -p with failed chown+utimes"
|
|
|
|
scpclean
|
|
|
|
cp -p ${DATA} ${DIR}/copy
|
|
|
|
cp -p ${DATA} ${DIR}/copy2
|
|
|
|
cp ${DATA} ${DIR2}/copy
|
|
|
|
chmod 660 ${DIR2}/copy
|
|
|
|
$SUDO chown root ${DIR2}/copy
|
|
|
|
$SCP -p $scpopts somehost:${DIR}/\* ${DIR2} >/dev/null 2>&1
|
2006-01-31 12:01:42 +01:00
|
|
|
$SUDO diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
|
2004-12-06 13:03:27 +01:00
|
|
|
$SUDO rm ${DIR2}/copy
|
|
|
|
fi
|
|
|
|
|
2004-06-16 12:15:59 +02:00
|
|
|
for i in 0 1 2 3 4; do
|
|
|
|
verbose "$tid: disallow bad server #$i"
|
|
|
|
SCPTESTMODE=badserver_$i
|
|
|
|
export DIR SCPTESTMODE
|
|
|
|
scpclean
|
|
|
|
$SCP $scpopts somehost:${DATA} ${DIR} >/dev/null 2>/dev/null
|
|
|
|
[ -d {$DIR}/rootpathdir ] && fail "allows dir relative to root dir"
|
|
|
|
[ -d ${DIR}/dotpathdir ] && fail "allows dir creation in non-recursive mode"
|
|
|
|
|
|
|
|
scpclean
|
|
|
|
$SCP -r $scpopts somehost:${DATA} ${DIR2} >/dev/null 2>/dev/null
|
|
|
|
[ -d ${DIR}/dotpathdir ] && fail "allows dir creation outside of subdir"
|
|
|
|
done
|
|
|
|
|
|
|
|
scpclean
|
2004-08-29 11:39:09 +02:00
|
|
|
rm -f ${OBJ}/scp-ssh-wrapper.scp
|