blob: 5a940e86cf26b2cf2fe21bfa0f94b645580709db (
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
|
#!/bin/bash
#
# libseccomp test output generator
#
# Copyright (c) 2013 Red Hat <pmoore@redhat.com>
# Author: Paul Moore <paul@paul-moore.com>
#
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of version 2.1 of the GNU Lesser General Public License as
# published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, see <http://www.gnu.org/licenses>.
#
####
# functions
#
# Dependency verification
#
# Arguments:
# 1 Dependency to check for
#
function verify_deps() {
[[ -z "$1" ]] && return
if ! which "$1" >& /dev/null; then
echo "error: install \"$1\" and include it in your \$PATH"
exit 1
fi
}
#
# Print out script usage details
#
function usage() {
cat << EOF
usage: regression [-h] [-d] [-l LABEL]
libseccomp test output generator script
optional arguments:
-h show this help message and exit
-b generate BPF output
-d generate disassembled BPF output
-p generate PFC output
-v perform valgrind checks
-l [LABEL] specifies label for the test output
EOF
}
#
# Print the test result
#
# Arguments:
# 1 string containing generated test number
# 2 string containing the test result
#
function print_result() {
printf "Test %s result: %s\n" "$1" "$2"
}
#
# Run the tests
#
# Arguments:
# 1 string containing output label
#
function run_tests() {
local batch_name
local label
local rc
if [[ -n $1 ]]; then
label=".$1"
else
label=""
fi
for file in *-sim-*.tests; do
# extract the batch name from the file name
batch_name=$(basename $file .tests)
if [[ -x "$batch_name" ]]; then
if [[ $opt_pfc -eq 1 ]]; then
./$batch_name > ${batch_name}${label}.pfc
rc=$?
stats_all=$(($stats_all + 1))
if [[ $rc -eq 0 ]]; then
print_result "$batch_name [pfc]" "SUCCESS"
else
stats_failure=$(($stats_failure + 1))
print_result "$batch_name [pfc]" "FAILURE"
fi
fi
if [[ $opt_bpf -eq 1 ]]; then
./$batch_name -b > ${batch_name}${label}.bpf
rc=$?
stats_all=$(($stats_all + 1))
if [[ $rc -eq 0 ]]; then
print_result "$batch_name [bpf]" "SUCCESS"
else
stats_failure=$(($stats_failure + 1))
print_result "$batch_name [bpf]" "FAILURE"
fi
fi
if [[ $opt_disasm -eq 1 ]]; then
./$batch_name -b | \
../tools/scmp_bpf_disasm > ${batch_name}${label}.bpfd
rc=$?
stats_all=$(($stats_all + 1))
if [[ $rc -eq 0 ]]; then
print_result "$batch_name [bpfd]" "SUCCESS"
else
stats_failure=$(($stats_failure + 1))
print_result "$batch_name [bpfd]" "FAILURE"
fi
fi
if [[ $opt_valgrind -eq 1 ]]; then
valgrind --tool=memcheck \
--quiet --error-exitcode=1 \
--leak-check=full \
--read-var-info=yes \
--track-origins=yes \
--suppressions=valgrind_test.supp \
-- ./$batch_name -b > /dev/null
rc=$?
stats_all=$(($stats_all + 1))
if [[ $rc -eq 0 ]]; then
print_result "$batch_name [valgrind]" "SUCCESS"
else
stats_failure=$(($stats_failure + 1))
print_result "$batch_name [valgrind]" "FAILURE"
fi
fi
else
stats_failure=$(($stats_failure + 1))
print_result "$batch_name" "FAILURE"
fi
done
return
}
####
# main
opt_label=
opt_bpf=0
opt_disasm=0
opt_pfc=0
opt_valgrind=0
while getopts "bphdl:v" opt; do
case $opt in
b)
opt_bpf=1
;;
d)
opt_disasm=1
;;
l)
opt_label="$OPTARG"
;;
p)
opt_pfc=1
;;
v)
opt_valgrind=1
;;
h|*)
usage
exit 1
;;
esac
done
# verify valgrind
[[ $opt_valgrind -eq 1 ]] && verify_deps valgrind
stats_all=0
stats_failure=0
# display the test output and run the requested tests
echo "=============== $(date) ==============="
echo "Collecting Test Output (\"testgen $*\")"
run_tests "$opt_label"
echo "Test Summary"
echo " tests run: $stats_all"
echo " tests failed: $stats_failure"
echo "============================================================"
# cleanup and exit
rc=0
[[ $stats_failure -gt 0 ]] && rc=$(($rc + 2))
exit $rc
|