blob: 18b42149d8eb5f49c3a55da94aa2be020828adfd (
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
# $FreeBSD$
PIDFILE=ggated.pid
PLAINFILES=plainfiles
PORT=33080
CONF=gg.exports
atf_test_case ggated cleanup
ggated_head()
{
atf_set "descr" "ggated can proxy geoms"
atf_set "require.progs" "ggatec ggated"
atf_set "require.user" "root"
atf_set "timeout" 60
}
ggated_body()
{
us=$(alloc_ggate_dev)
work=$(alloc_md)
src=$(alloc_md)
atf_check -e ignore -o ignore \
dd if=/dev/random of=/dev/$work bs=1m count=1 conv=notrunc
atf_check -e ignore -o ignore \
dd if=/dev/random of=/dev/$src bs=1m count=1 conv=notrunc
echo $CONF >> $PLAINFILES
echo "127.0.0.1 RW /dev/$work" > $CONF
atf_check ggated -p $PORT -F $PIDFILE $CONF
atf_check ggatec create -p $PORT -u $us 127.0.0.1 /dev/$work
ggate_dev=/dev/ggate${us}
wait_for_ggate_device ${ggate_dev}
atf_check -e ignore -o ignore \
dd if=/dev/${src} of=${ggate_dev} bs=1m count=1 conv=notrunc
checksum /dev/$src /dev/$work
}
ggated_cleanup()
{
common_cleanup
}
atf_test_case ggatel_file cleanup
ggatel_file_head()
{
atf_set "descr" "ggatel can proxy files"
atf_set "require.progs" "ggatel"
atf_set "require.user" "root"
atf_set "timeout" 15
}
ggatel_file_body()
{
us=$(alloc_ggate_dev)
echo src work >> ${PLAINFILES}
dd if=/dev/random of=work bs=1m count=1
dd if=/dev/random of=src bs=1m count=1
atf_check ggatel create -u $us work
ggate_dev=/dev/ggate${us}
wait_for_ggate_device ${ggate_dev}
atf_check -e ignore -o ignore \
dd if=src of=${ggate_dev} bs=1m count=1 conv=notrunc
checksum src work
}
ggatel_file_cleanup()
{
common_cleanup
}
atf_test_case ggatel_md cleanup
ggatel_md_head()
{
atf_set "descr" "ggatel can proxy files"
atf_set "require.progs" "ggatel"
atf_set "require.user" "root"
atf_set "timeout" 15
}
ggatel_md_body()
{
us=$(alloc_ggate_dev)
work=$(alloc_md)
src=$(alloc_md)
atf_check -e ignore -o ignore \
dd if=/dev/random of=$work bs=1m count=1 conv=notrunc
atf_check -e ignore -o ignore \
dd if=/dev/random of=$src bs=1m count=1 conv=notrunc
atf_check ggatel create -u $us /dev/$work
ggate_dev=/dev/ggate${us}
wait_for_ggate_device ${ggate_dev}
atf_check -e ignore -o ignore \
dd if=/dev/$src of=${ggate_dev} bs=1m count=1 conv=notrunc
checksum /dev/$src /dev/$work
}
ggatel_md_cleanup()
{
common_cleanup
}
atf_init_test_cases()
{
atf_add_test_case ggated
atf_add_test_case ggatel_file
atf_add_test_case ggatel_md
}
alloc_ggate_dev()
{
local us
us=0
while [ -c /dev/ggate${us} ]; do
: $(( us += 1 ))
done
echo ${us} > ggate.devs
echo ${us}
}
alloc_md()
{
local md
md=$(mdconfig -a -t malloc -s 1M) || \
atf_fail "failed to allocate md device"
echo ${md} >> md.devs
echo ${md}
}
checksum()
{
local src work
src=$1
work=$2
src_checksum=$(dd if=${src} bs=1m | md5 -q)
work_checksum=$(dd if=${work} bs=1m | md5 -q)
if [ "$work_checksum" != "$src_checksum" ]; then
atf_fail "work md5 checksum didn't match"
fi
ggate_checksum=$(dd if=/dev/ggate${us} bs=1m | md5 -q)
if [ "$ggate_checksum" != "$src_checksum" ]; then
atf_fail "ggate md5 checksum didn't match"
fi
}
common_cleanup()
{
if [ -f "ggate.devs" ]; then
while read test_ggate; do
ggatec destroy -f -u $test_ggate >/dev/null
done < ggate.devs
rm ggate.devs
fi
if [ -f "$PIDFILE" ]; then
pkill -F "$PIDFILE"
rm $PIDFILE
fi
if [ -f "PLAINFILES" ]; then
while read f; do
rm -f ${f}
done < ${PLAINFILES}
rm ${PLAINFILES}
fi
if [ -f "md.devs" ]; then
while read test_md; do
mdconfig -d -u $test_md 2>/dev/null
done < md.devs
rm md.devs
fi
true
}
# Bug 204616: ggatel(8) creates /dev/ggate* asynchronously if `ggatel create`
# isn't called with `-v`.
wait_for_ggate_device()
{
ggate_device=$1
while [ ! -c $ggate_device ]; do
sleep 0.5
done
}
|