summaryrefslogtreecommitdiff
path: root/regress/reexec.sh
blob: 39fffefbc35640c35bc4b0eb4ec3e50c643ab90c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#	$OpenBSD: reexec.sh,v 1.3 2004/06/25 01:32:44 djm Exp $
#	Placed in the Public Domain.

tid="reexec tests"

DATA=/bin/ls
COPY=${OBJ}/copy
SSHD_ORIG=$SSHD
SSHD_COPY=$OBJ/sshd.copy

# Start a sshd and then delete it
start_sshd_copy_zap ()
{
	cp $SSHD_ORIG $SSHD_COPY
	SSHD=$SSHD_COPY
	start_sshd
	rm -f $SSHD_COPY
	SSHD=$SSHD_ORIG
}

verbose "test config passing"
cp $OBJ/sshd_config $OBJ/sshd_config.orig

start_sshd

echo "InvalidXXX=no" >> $OBJ/sshd_config

rm -f ${COPY}
for p in 1 2; do
	verbose "$tid: proto $p"
	${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
	    cat ${DATA} > ${COPY}
	if [ $? -ne 0 ]; then
		fail "ssh cat $DATA failed"
	fi
	cmp ${DATA} ${COPY}		|| fail "corrupted copy"
	rm -f ${COPY}
done

$SUDO kill `cat $PIDFILE`
rm -f $PIDFILE

cp $OBJ/sshd_config.orig $OBJ/sshd_config

verbose "test reexec fallback"

start_sshd_copy_zap

rm -f ${COPY}
for p in 1 2; do
	verbose "$tid: proto $p"
	${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
	    cat ${DATA} > ${COPY}
	if [ $? -ne 0 ]; then
		fail "ssh cat $DATA failed"
	fi
	cmp ${DATA} ${COPY}		|| fail "corrupted copy"
	rm -f ${COPY}
done

$SUDO kill `cat $PIDFILE`
rm -f $PIDFILE

verbose "test reexec fallback without privsep"

cp $OBJ/sshd_config.orig $OBJ/sshd_config
echo "UsePrivilegeSeparation=no" >> $OBJ/sshd_config

start_sshd_copy_zap

rm -f ${COPY}
for p in 1 2; do
	verbose "$tid: proto $p"
	${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
	    cat ${DATA} > ${COPY}
	if [ $? -ne 0 ]; then
		fail "ssh cat $DATA failed"
	fi
	cmp ${DATA} ${COPY}		|| fail "corrupted copy"
	rm -f ${COPY}
done

$SUDO kill `cat $PIDFILE`
rm -f $PIDFILE

cp $OBJ/sshd_config.orig $OBJ/sshd_config