diff options
author | Colin Watson <cjwatson@debian.org> | 2005-05-25 11:01:01 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2005-05-25 11:01:01 +0000 |
commit | e88de75a1a236779a10e8ccbcc51d25308be8840 (patch) | |
tree | 7495477a2a7d0cac17a9fcded020b6ea816182ef /regress/reexec.sh | |
parent | 30a0f9443782cd9d7308acd09430bf586186aa55 (diff) | |
parent | 5d05471f6657646d1d6500c7c43134462c407ee6 (diff) |
Merge 4.0p1 to the trunk.
Diffstat (limited to 'regress/reexec.sh')
-rw-r--r-- | regress/reexec.sh | 73 |
1 files changed, 29 insertions, 44 deletions
diff --git a/regress/reexec.sh b/regress/reexec.sh index 39fffefbc..d69b8c577 100644 --- a/regress/reexec.sh +++ b/regress/reexec.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: reexec.sh,v 1.3 2004/06/25 01:32:44 djm Exp $ | 1 | # $OpenBSD: reexec.sh,v 1.5 2004/10/08 02:01:50 djm Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="reexec tests" | 4 | tid="reexec tests" |
@@ -6,36 +6,40 @@ tid="reexec tests" | |||
6 | DATA=/bin/ls | 6 | DATA=/bin/ls |
7 | COPY=${OBJ}/copy | 7 | COPY=${OBJ}/copy |
8 | SSHD_ORIG=$SSHD | 8 | SSHD_ORIG=$SSHD |
9 | SSHD_COPY=$OBJ/sshd.copy | 9 | SSHD_COPY=$OBJ/sshd |
10 | 10 | ||
11 | # Start a sshd and then delete it | 11 | # Start a sshd and then delete it |
12 | start_sshd_copy_zap () | 12 | start_sshd_copy () |
13 | { | 13 | { |
14 | cp $SSHD_ORIG $SSHD_COPY | 14 | cp $SSHD_ORIG $SSHD_COPY |
15 | SSHD=$SSHD_COPY | 15 | SSHD=$SSHD_COPY |
16 | start_sshd | 16 | start_sshd |
17 | rm -f $SSHD_COPY | ||
18 | SSHD=$SSHD_ORIG | 17 | SSHD=$SSHD_ORIG |
19 | } | 18 | } |
20 | 19 | ||
20 | # Do basic copy tests | ||
21 | copy_tests () | ||
22 | { | ||
23 | rm -f ${COPY} | ||
24 | for p in 1 2; do | ||
25 | verbose "$tid: proto $p" | ||
26 | ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \ | ||
27 | cat ${DATA} > ${COPY} | ||
28 | if [ $? -ne 0 ]; then | ||
29 | fail "ssh cat $DATA failed" | ||
30 | fi | ||
31 | cmp ${DATA} ${COPY} || fail "corrupted copy" | ||
32 | rm -f ${COPY} | ||
33 | done | ||
34 | } | ||
35 | |||
21 | verbose "test config passing" | 36 | verbose "test config passing" |
22 | cp $OBJ/sshd_config $OBJ/sshd_config.orig | ||
23 | 37 | ||
38 | cp $OBJ/sshd_config $OBJ/sshd_config.orig | ||
24 | start_sshd | 39 | start_sshd |
25 | |||
26 | echo "InvalidXXX=no" >> $OBJ/sshd_config | 40 | echo "InvalidXXX=no" >> $OBJ/sshd_config |
27 | 41 | ||
28 | rm -f ${COPY} | 42 | copy_tests |
29 | for p in 1 2; do | ||
30 | verbose "$tid: proto $p" | ||
31 | ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \ | ||
32 | cat ${DATA} > ${COPY} | ||
33 | if [ $? -ne 0 ]; then | ||
34 | fail "ssh cat $DATA failed" | ||
35 | fi | ||
36 | cmp ${DATA} ${COPY} || fail "corrupted copy" | ||
37 | rm -f ${COPY} | ||
38 | done | ||
39 | 43 | ||
40 | $SUDO kill `cat $PIDFILE` | 44 | $SUDO kill `cat $PIDFILE` |
41 | rm -f $PIDFILE | 45 | rm -f $PIDFILE |
@@ -44,19 +48,10 @@ cp $OBJ/sshd_config.orig $OBJ/sshd_config | |||
44 | 48 | ||
45 | verbose "test reexec fallback" | 49 | verbose "test reexec fallback" |
46 | 50 | ||
47 | start_sshd_copy_zap | 51 | start_sshd_copy |
48 | 52 | rm -f $SSHD_COPY | |
49 | rm -f ${COPY} | 53 | |
50 | for p in 1 2; do | 54 | copy_tests |
51 | verbose "$tid: proto $p" | ||
52 | ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \ | ||
53 | cat ${DATA} > ${COPY} | ||
54 | if [ $? -ne 0 ]; then | ||
55 | fail "ssh cat $DATA failed" | ||
56 | fi | ||
57 | cmp ${DATA} ${COPY} || fail "corrupted copy" | ||
58 | rm -f ${COPY} | ||
59 | done | ||
60 | 55 | ||
61 | $SUDO kill `cat $PIDFILE` | 56 | $SUDO kill `cat $PIDFILE` |
62 | rm -f $PIDFILE | 57 | rm -f $PIDFILE |
@@ -66,22 +61,12 @@ verbose "test reexec fallback without privsep" | |||
66 | cp $OBJ/sshd_config.orig $OBJ/sshd_config | 61 | cp $OBJ/sshd_config.orig $OBJ/sshd_config |
67 | echo "UsePrivilegeSeparation=no" >> $OBJ/sshd_config | 62 | echo "UsePrivilegeSeparation=no" >> $OBJ/sshd_config |
68 | 63 | ||
69 | start_sshd_copy_zap | 64 | start_sshd_copy |
70 | 65 | rm -f $SSHD_COPY | |
71 | rm -f ${COPY} | 66 | |
72 | for p in 1 2; do | 67 | copy_tests |
73 | verbose "$tid: proto $p" | ||
74 | ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \ | ||
75 | cat ${DATA} > ${COPY} | ||
76 | if [ $? -ne 0 ]; then | ||
77 | fail "ssh cat $DATA failed" | ||
78 | fi | ||
79 | cmp ${DATA} ${COPY} || fail "corrupted copy" | ||
80 | rm -f ${COPY} | ||
81 | done | ||
82 | 68 | ||
83 | $SUDO kill `cat $PIDFILE` | 69 | $SUDO kill `cat $PIDFILE` |
84 | rm -f $PIDFILE | 70 | rm -f $PIDFILE |
85 | 71 | ||
86 | cp $OBJ/sshd_config.orig $OBJ/sshd_config | ||
87 | 72 | ||