blob: 3d62f621265e285762dde8a7838c2f5a4da04edf (
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
#!/usr/bin/env atf-sh
. $(atf_get_srcdir)/test_env.sh
init_tests \
setup_sshd_usage \
setup_sshd_empty \
setup_sshd_dropbear \
setup_sshd_openssh \
setup_sshd_openssh_c_compat \
setup_sshd_interactive_openssh_nologin \
setup_sshd_interactive_openssh_prohibitpass \
setup_sshd_interactive_openssh_nokey \
setup_sshd_interactive_openssh_user_exist \
setup_sshd_openssh_ssh_key
setup_sshd_usage_body() {
test_usage setup-sshd
}
setup_sshd_empty_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o empty \
setup-sshd none
}
setup_sshd_dropbear_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o match:"^apk add .* dropbear" \
-o match:"service dropbear added" \
-o match:"Starting dropbear" \
setup-sshd dropbear
}
setup_sshd_openssh_body() {
init_env
export WGETCONTENT="ssh-id FOOBAR"
atf_check -s exit:0 \
-e empty \
-o match:"^apk add .* openssh" \
-o match:"service sshd added" \
-o match:"Starting sshd" \
setup-sshd -k 'https://example.com/user.keys' openssh
grep -x 'ssh-id FOOBAR' root/.ssh/authorized_keys \
|| atf_fail "failed to wget ssh key"
# check that permissions are set properly
atf_check -o match:"^700$" \
stat -c '%a' root/.ssh
atf_check -o match:"^600$" \
stat -c '%a' root/.ssh/authorized_keys
}
setup_sshd_openssh_c_compat_body() {
init_env
atf_check -s exit:0 \
-e empty \
-o match:"^apk add .* openssh" \
-o match:"service sshd added" \
-o match:"Starting sshd" \
-o not-match:"Allow root ssh" \
setup-sshd -c openssh
}
setup_sshd_interactive_openssh_nologin_body() {
init_env
mkdir -p etc/ssh
echo "PermitRootLogin foobar" > etc/ssh/sshd_config
(
echo "openssh"
echo "no"
) >answers
atf_check -s exit:0 \
-e empty \
-o match:"Which ssh server" \
-o match:"Allow root ssh login" \
-o not-match:"Enter ssh key" \
-o match:"apk add.* openssh" \
setup-sshd < answers
grep '^PermitRootLogin no$' etc/ssh/sshd_config || atf_fail "did not set PermitRootLogin"
}
setup_sshd_interactive_openssh_prohibitpass_body() {
init_env
mkdir -p etc/ssh
echo "PermitRootLogin foobar" > etc/ssh/sshd_config
(
echo "openssh"
echo ""
echo "gh user"
echo ""
) >answers
export WGETCONTENT="key from github"
atf_check -s exit:0 \
-e empty \
-o match:"Which ssh server" \
-o match:"apk add.* openssh" \
-o match:"Allow root ssh login.*\[prohibit-password\]" \
-o match:"Enter ssh key" \
-o match:"Enter ssh key.*github.com.*user.keys" \
setup-sshd <answers
grep '^PermitRootLogin prohibit-password$' etc/ssh/sshd_config \
|| atf_fail "did not set PermitRootLogin"
grep "$WGETCONTENT" root/.ssh/authorized_keys \
|| atf_fail "failed to fetch key from github"
}
setup_sshd_interactive_openssh_nokey_body() {
init_env
mkdir -p etc/ssh
echo "PermitRootLogin foobar" > etc/ssh/sshd_config
(
echo "openssh"
echo "yes"
echo "none"
) >answers
export WGETCONTENT="key from github"
atf_check -s exit:0 \
-e empty \
-o match:"Which ssh server" \
-o match:"apk add.* openssh" \
-o match:"Allow root ssh login.*\[prohibit-password\]" \
-o match:"Enter ssh key" \
setup-sshd <answers
grep '^PermitRootLogin yes$' etc/ssh/sshd_config \
|| atf_fail "did not set PermitRootLogin"
}
setup_sshd_interactive_openssh_user_exist_body() {
init_env
mkdir -p etc/ssh
# should not ask permit root login or ssh key if user exists
echo "joe:x:1000:1000:joe,,,:/home/joe:/bin/ash" >etc/passwd
(
echo "openssh"
) >answers
atf_check -s exit:0 \
-e empty \
-o match:"Which ssh server" \
-o not-match:"Allow root ssh login" \
-o not-match:"Enter ssh key" \
-o match:"apk add.* openssh" \
setup-sshd < answers
}
setup_sshd_openssh_ssh_key_body() {
init_env
SSH_KEY="ssh-rsa foobar user@example.com" atf_check -s exit:0 \
-o match:"apk add.*openssh" \
-e empty \
setup-sshd openssh
grep "ssh-rsa foobar user@example.com" root/.ssh/authorized_keys \
|| atf_fail "did not add ssh key"
# check that permissions are set properly
atf_check -o match:"^700$" \
stat -c '%a' root/.ssh
atf_check -o match:"^600$" \
stat -c '%a' root/.ssh/authorized_keys
}
|