3 # Copyright (C) 2009 Red Hat, Inc.
4 # Copyright (c) 2000-2006 Silicon Graphics, Inc. All Rights Reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 if [ "$HOSTOS" == "Linux" ]
24 command dd --help |
grep noxfer
> /dev
/null
2>&1
28 command dd status
=noxfer $@
37 # we need common.config
38 if [ "$iam" != "check" ]
40 if ! . .
/common.config
42 echo "$iam: failed to source common.config"
47 # make sure we have a standard umask
50 if [ "$IMGPROTO" = "file" ]; then
51 TEST_IMG
=$TEST_DIR/t.
$IMGFMT
52 elif [ "$IMGPROTO" = "nbd" ]; then
53 TEST_IMG_FILE
=$TEST_DIR/t.
$IMGFMT
54 TEST_IMG
="nbd:127.0.0.1:10810"
56 TEST_IMG
=$IMGPROTO:$TEST_DIR/t.
$IMGFMT
59 function valgrind_qemu_io
()
61 valgrind
--log-file=/tmp
/$$.valgrind
--error-exitcode=99 $REAL_QEMU_IO "$@"
65 rm -f /tmp
/$$.valgrind
78 _set_default_imgopts
()
80 if [ "$IMGFMT" == "qcow2" ] && ! (echo "$IMGOPTS" |
grep "compat=" > /dev
/null
); then
81 IMGOPTS
=$
(_optstr_add
"$IMGOPTS" "compat=1.1")
87 # extra qemu-img options can be added by tests
88 # at least one argument (the image size) needs to be added
89 local extra_img_options
=""
94 if [ -n "$TEST_IMG_FILE" ]; then
95 img_name
=$TEST_IMG_FILE
100 if [ -n "$IMGOPTS" ]; then
101 optstr
=$
(_optstr_add
"$optstr" "$IMGOPTS")
104 if [ "$1" = "-b" ]; then
105 extra_img_options
="$1 $2"
108 if [ \
( "$IMGFMT" = "qcow2" -o "$IMGFMT" = "qed" \
) -a -n "$CLUSTER_SIZE" ]; then
109 optstr
=$
(_optstr_add
"$optstr" "cluster_size=$CLUSTER_SIZE")
112 if [ -n "$optstr" ]; then
113 extra_img_options
="-o $optstr $extra_img_options"
116 # XXX(hch): have global image options?
117 $QEMU_IMG create
-f $IMGFMT $extra_img_options $img_name $image_size | \
118 sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
119 -e "s#$TEST_DIR#TEST_DIR#g" \
120 -e "s#$IMGFMT#IMGFMT#g" \
121 -e "s# encryption=off##g" \
122 -e "s# cluster_size=[0-9]\\+##g" \
123 -e "s# table_size=[0-9]\\+##g" \
124 -e "s# compat='[^']*'##g" \
125 -e "s# compat6=\\(on\\|off\\)##g" \
126 -e "s# static=\\(on\\|off\\)##g" \
127 -e "s# lazy_refcounts=\\(on\\|off\\)##g"
129 # Start an NBD server on the image file, which is what we'll be talking to
130 if [ $IMGPROTO = "nbd" ]; then
131 eval "$QEMU_NBD -v -t -b 127.0.0.1 -p 10810 $TEST_IMG_FILE &"
133 sleep 1 # FIXME: qemu-nbd needs to be listening before we continue
146 rm -f $TEST_DIR/t.
$IMGFMT
147 rm -f $TEST_DIR/t.
$IMGFMT.orig
148 rm -f $TEST_DIR/t.
$IMGFMT.base
152 rbd
rm $TEST_DIR/t.
$IMGFMT > /dev
/null
156 collie vdi delete
$TEST_DIR/t.
$IMGFMT
164 $QEMU_IMG check
-f $IMGFMT $TEST_IMG 2>&1 | \
165 grep -v "fragmented$" | \
166 sed -e 's/qemu-img\: This image format does not support checks/No errors were found on the image./'
171 $QEMU_IMG info
"$@" $TEST_IMG 2>&1 | \
172 sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
173 -e "s#$TEST_DIR#TEST_DIR#g" \
174 -e "s#$IMGFMT#IMGFMT#g" \
175 -e "/^disk size:/ D" \
183 echo "Usage: _get_pids_by_name process-name" 1>&2
187 # Algorithm ... all ps(1) variants have a time of the form MM:SS or
188 # HH:MM:SS before the psargs field, use this as the search anchor.
190 # Matches with $1 (process-name) occur if the first psarg is $1
191 # or ends in /$1 ... the matching uses sed's regular expressions,
192 # so passing a regex into $1 will work.
200 -e "/[0-9]:[0-9][0-9] *[^ ]*\/$1 /s/ .*//p" \
201 -e "/[0-9]:[0-9][0-9] *$1 /s/ .*//p"
209 $NSLOOKUP_PROG $host |
$AWK_PROG '{ if ($1 == "Name:") print $2 }'
212 # check if run as root
216 id
=`id | $SED_PROG -e 's/(.*//' -e 's/.*=//'`
219 echo "Arrgh ... you need to be root (not uid=$id) to run this test"
225 # Do a command, log it to $seq.full, optionally test return status
226 # and die if command fails. If called with one argument _do executes the
227 # command, logs it, and returns its exit status. With two arguments _do
228 # first prints the message passed in the first argument, and then "done"
229 # or "fail" depending on the return status of the command passed in the
230 # second argument. If the command fails and the variable _do_die_on_error
231 # is set to "always" or the two argument form is used and _do_die_on_error
232 # is set to "message_only" _do will print an error message to
237 if [ $# -eq 1 ]; then
239 elif [ $# -eq 2 ]; then
244 echo "Usage: _do [note] cmd" 1>&2
248 (eval "echo '---' \"$_cmd\"") >>$here/$seq.full
249 (eval "$_cmd") >$tmp._out
2>&1; ret
=$?
250 cat $tmp._out
>>$here/$seq.full
251 if [ $# -eq 2 ]; then
252 if [ $ret -eq 0 ]; then
259 && [ "$_do_die_on_error" = "always" \
260 -o \
( $# -eq 2 -a "$_do_die_on_error" = "message_only" \
) ]
263 eval "echo \"$_cmd\" failed \(returned $ret\): see $seq.full"
270 # bail out, setting up .notrun file
274 echo "$*" >$seq.notrun
275 echo "$seq not run: $*"
280 # just plain bail out
284 echo "$*" |
tee -a $here/$seq.full
285 echo "(see $seq.full for details)"
290 # tests whether $IMGFMT is one of the supported image formats for a test
295 if [ "$f" = "$IMGFMT" -o "$f" = "generic" ]; then
300 _notrun
"not suitable for this image format: $IMGFMT"
303 # tests whether $IMGPROTO is one of the supported image protocols for a test
308 if [ "$f" = "$IMGPROTO" -o "$f" = "generic" ]; then
313 _notrun
"not suitable for this image protocol: $IMGPROTO"
316 # tests whether the host OS is one of the supported OSes for a test
322 if [ "$h" = "$HOSTOS" ]
328 _notrun
"not suitable for this OS: $HOSTOS"
331 _unsupported_qemu_io_options
()
335 for opt
in $QEMU_IO_OPTIONS
337 if [ "$bad_opt" = "$opt" ]
339 _notrun
"not suitable for qemu-io option: $bad_opt"
345 # this test requires that a specified command (executable) exists
349 [ -x "$1" ] || _notrun
"$1 utility required, skipped this test"
352 _full_imgfmt_details
()
354 if [ -n "$IMGOPTS" ]; then
355 echo "$IMGFMT ($IMGOPTS)"
361 _full_imgproto_details
()
366 _full_platform_details
()
372 echo "$os/$platform $host $kernel"
378 echo Error must pass \
$seq.
382 if [ "`uname`" == "IRIX64" ] ||
[ "`uname`" == "IRIX" ]; then
384 elif [ "`uname`" == "Linux" ]; then
387 echo Error
test $seq does not run on the operating system
: `uname`
398 # make sure this script returns success