Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging
[qemu/ar7.git] / tests / qemu-iotests / common.rc
blob5502c3da2f879c54c7385e96048194c9b8532cfd
1 #!/usr/bin/env bash
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/>.
20 SED=
21 for sed in sed gsed; do
22 ($sed --version | grep 'GNU sed') > /dev/null 2>&1
23 if [ "$?" -eq 0 ]; then
24 SED=$sed
25 break
27 done
28 if [ -z "$SED" ]; then
29 echo "$0: GNU sed not found"
30 exit 1
33 dd()
35 if [ "$HOSTOS" == "Linux" ]
36 then
37 command dd --help | grep noxfer > /dev/null 2>&1
39 if [ "$?" -eq 0 ]
40 then
41 command dd status=noxfer $@
42 else
43 command dd $@
45 else
46 command dd $@
50 # poke_file 'test.img' 512 '\xff\xfe'
51 poke_file()
53 printf "$3" | dd "of=$1" bs=1 "seek=$2" conv=notrunc &>/dev/null
57 if ! . ./common.config
58 then
59 echo "$0: failed to source common.config"
60 exit 1
63 _qemu_wrapper()
66 if [ -n "${QEMU_NEED_PID}" ]; then
67 echo $BASHPID > "${QEMU_TEST_DIR}/qemu-${_QEMU_HANDLE}.pid"
69 exec "$QEMU_PROG" $QEMU_OPTIONS "$@"
73 _qemu_img_wrapper()
75 (exec "$QEMU_IMG_PROG" $QEMU_IMG_OPTIONS "$@")
78 _qemu_io_wrapper()
80 local VALGRIND_LOGFILE="${TEST_DIR}"/$$.valgrind
81 local QEMU_IO_ARGS="$QEMU_IO_OPTIONS"
82 if [ "$IMGOPTSSYNTAX" = "true" ]; then
83 QEMU_IO_ARGS="--image-opts $QEMU_IO_ARGS"
84 if [ -n "$IMGKEYSECRET" ]; then
85 QEMU_IO_ARGS="--object secret,id=keysec0,data=$IMGKEYSECRET $QEMU_IO_ARGS"
88 local RETVAL
90 if [ "${VALGRIND_QEMU}" == "y" ]; then
91 exec valgrind --log-file="${VALGRIND_LOGFILE}" --error-exitcode=99 "$QEMU_IO_PROG" $QEMU_IO_ARGS "$@"
92 else
93 exec "$QEMU_IO_PROG" $QEMU_IO_ARGS "$@"
96 RETVAL=$?
97 if [ "${VALGRIND_QEMU}" == "y" ]; then
98 if [ $RETVAL == 99 ]; then
99 cat "${VALGRIND_LOGFILE}"
101 rm -f "${VALGRIND_LOGFILE}"
103 (exit $RETVAL)
106 _qemu_nbd_wrapper()
108 "$QEMU_NBD_PROG" --pid-file="${QEMU_TEST_DIR}/qemu-nbd.pid" \
109 $QEMU_NBD_OPTIONS "$@"
112 _qemu_vxhs_wrapper()
115 echo $BASHPID > "${TEST_DIR}/qemu-vxhs.pid"
116 exec "$QEMU_VXHS_PROG" $QEMU_VXHS_OPTIONS "$@"
120 export QEMU=_qemu_wrapper
121 export QEMU_IMG=_qemu_img_wrapper
122 export QEMU_IO=_qemu_io_wrapper
123 export QEMU_NBD=_qemu_nbd_wrapper
124 export QEMU_VXHS=_qemu_vxhs_wrapper
126 if [ "$IMGOPTSSYNTAX" = "true" ]; then
127 DRIVER="driver=$IMGFMT"
128 QEMU_IMG_EXTRA_ARGS="--image-opts $QEMU_IMG_EXTRA_ARGS"
129 if [ -n "$IMGKEYSECRET" ]; then
130 QEMU_IMG_EXTRA_ARGS="--object secret,id=keysec0,data=$IMGKEYSECRET $QEMU_IMG_EXTRA_ARGS"
132 if [ "$IMGFMT" = "luks" ]; then
133 DRIVER="$DRIVER,key-secret=keysec0"
135 if [ "$IMGPROTO" = "file" ]; then
136 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
137 TEST_IMG="$DRIVER,file.filename=$TEST_DIR/t.$IMGFMT"
138 elif [ "$IMGPROTO" = "nbd" ]; then
139 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
140 TEST_IMG="$DRIVER,file.driver=nbd,file.host=127.0.0.1,file.port=10810"
141 elif [ "$IMGPROTO" = "ssh" ]; then
142 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
143 TEST_IMG="$DRIVER,file.driver=ssh,file.host=127.0.0.1,file.path=$TEST_IMG_FILE"
144 elif [ "$IMGPROTO" = "nfs" ]; then
145 TEST_DIR="$DRIVER,file.driver=nfs,file.filename=nfs://127.0.0.1/$TEST_DIR"
146 TEST_IMG=$TEST_DIR/t.$IMGFMT
147 else
148 TEST_IMG="$DRIVER,file.driver=$IMGPROTO,file.filename=$TEST_DIR/t.$IMGFMT"
150 else
151 QEMU_IMG_EXTRA_ARGS=
152 if [ "$IMGPROTO" = "file" ]; then
153 TEST_IMG=$TEST_DIR/t.$IMGFMT
154 elif [ "$IMGPROTO" = "nbd" ]; then
155 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
156 TEST_IMG="nbd:127.0.0.1:10810"
157 elif [ "$IMGPROTO" = "ssh" ]; then
158 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
159 REMOTE_TEST_DIR="ssh://\\($USER@\\)\\?127.0.0.1\\(:[0-9]\\+\\)\\?$TEST_DIR"
160 TEST_IMG="ssh://127.0.0.1$TEST_IMG_FILE"
161 elif [ "$IMGPROTO" = "nfs" ]; then
162 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
163 REMOTE_TEST_DIR="nfs://127.0.0.1$TEST_DIR"
164 TEST_IMG="nfs://127.0.0.1$TEST_IMG_FILE"
165 elif [ "$IMGPROTO" = "vxhs" ]; then
166 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
167 TEST_IMG="vxhs://127.0.0.1:9999/t.$IMGFMT"
168 else
169 TEST_IMG=$IMGPROTO:$TEST_DIR/t.$IMGFMT
172 ORIG_TEST_IMG="$TEST_IMG"
174 if [ -z "$TEST_DIR" ]; then
175 TEST_DIR=$PWD/scratch
178 QEMU_TEST_DIR="${TEST_DIR}"
180 if [ ! -e "$TEST_DIR" ]; then
181 mkdir "$TEST_DIR"
184 if [ ! -d "$TEST_DIR" ]; then
185 echo "common.rc: Error: \$TEST_DIR ($TEST_DIR) is not a directory"
186 exit 1
189 if [ -z "$REMOTE_TEST_DIR" ]; then
190 REMOTE_TEST_DIR="$TEST_DIR"
193 if [ ! -d "$SAMPLE_IMG_DIR" ]; then
194 echo "common.rc: Error: \$SAMPLE_IMG_DIR ($SAMPLE_IMG_DIR) is not a directory"
195 exit 1
198 _use_sample_img()
200 SAMPLE_IMG_FILE="${1%\.bz2}"
201 TEST_IMG="$TEST_DIR/$SAMPLE_IMG_FILE"
202 bzcat "$SAMPLE_IMG_DIR/$1" > "$TEST_IMG"
203 if [ $? -ne 0 ]
204 then
205 echo "_use_sample_img error, cannot extract '$SAMPLE_IMG_DIR/$1'"
206 exit 1
210 _stop_nbd_server()
212 if [ -f "${QEMU_TEST_DIR}/qemu-nbd.pid" ]; then
213 local QEMU_NBD_PID
214 read QEMU_NBD_PID < "${QEMU_TEST_DIR}/qemu-nbd.pid"
215 kill ${QEMU_NBD_PID}
216 rm -f "${QEMU_TEST_DIR}/qemu-nbd.pid"
220 _make_test_img()
222 # extra qemu-img options can be added by tests
223 # at least one argument (the image size) needs to be added
224 local extra_img_options=""
225 local image_size=$*
226 local optstr=""
227 local img_name=""
228 local use_backing=0
229 local backing_file=""
230 local object_options=""
232 if [ -n "$TEST_IMG_FILE" ]; then
233 img_name=$TEST_IMG_FILE
234 else
235 img_name=$TEST_IMG
238 if [ -n "$IMGOPTS" ]; then
239 optstr=$(_optstr_add "$optstr" "$IMGOPTS")
241 if [ -n "$IMGKEYSECRET" ]; then
242 object_options="--object secret,id=keysec0,data=$IMGKEYSECRET"
243 optstr=$(_optstr_add "$optstr" "key-secret=keysec0")
246 if [ "$1" = "-b" ]; then
247 use_backing=1
248 backing_file=$2
249 image_size=$3
251 if [ \( "$IMGFMT" = "qcow2" -o "$IMGFMT" = "qed" \) -a -n "$CLUSTER_SIZE" ]; then
252 optstr=$(_optstr_add "$optstr" "cluster_size=$CLUSTER_SIZE")
255 if [ -n "$optstr" ]; then
256 extra_img_options="-o $optstr $extra_img_options"
259 if [ $IMGPROTO = "nbd" ]; then
260 _stop_nbd_server
263 # XXX(hch): have global image options?
265 if [ $use_backing = 1 ]; then
266 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options -b "$backing_file" "$img_name" $image_size 2>&1
267 else
268 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options "$img_name" $image_size 2>&1
270 ) | _filter_img_create
272 # Start an NBD server on the image file, which is what we'll be talking to
273 if [ $IMGPROTO = "nbd" ]; then
274 # Pass a sufficiently high number to -e that should be enough for all
275 # tests
276 eval "$QEMU_NBD -v -t -b 127.0.0.1 -p 10810 -f $IMGFMT -e 42 -x '' $TEST_IMG_FILE >/dev/null &"
277 sleep 1 # FIXME: qemu-nbd needs to be listening before we continue
280 # Start QNIO server on image directory for vxhs protocol
281 if [ $IMGPROTO = "vxhs" ]; then
282 eval "$QEMU_VXHS -d $TEST_DIR > /dev/null &"
283 sleep 1 # Wait for server to come up.
287 _rm_test_img()
289 local img=$1
290 if [ "$IMGFMT" = "vmdk" ]; then
291 # Remove all the extents for vmdk
292 "$QEMU_IMG" info "$img" 2>/dev/null | grep 'filename:' | cut -f 2 -d: \
293 | xargs -I {} rm -f "{}"
295 rm -f "$img"
298 _cleanup_test_img()
300 case "$IMGPROTO" in
302 nbd)
303 _stop_nbd_server
304 rm -f "$TEST_IMG_FILE"
306 vxhs)
307 if [ -f "${TEST_DIR}/qemu-vxhs.pid" ]; then
308 local QEMU_VXHS_PID
309 read QEMU_VXHS_PID < "${TEST_DIR}/qemu-vxhs.pid"
310 kill ${QEMU_VXHS_PID} >/dev/null 2>&1
311 rm -f "${TEST_DIR}/qemu-vxhs.pid"
313 rm -f "$TEST_IMG_FILE"
316 file)
317 _rm_test_img "$TEST_DIR/t.$IMGFMT"
318 _rm_test_img "$TEST_DIR/t.$IMGFMT.orig"
319 _rm_test_img "$TEST_DIR/t.$IMGFMT.base"
320 if [ -n "$SAMPLE_IMG_FILE" ]
321 then
322 rm -f "$TEST_DIR/$SAMPLE_IMG_FILE"
323 SAMPLE_IMG_FILE=
324 TEST_IMG="$ORIG_TEST_IMG"
328 rbd)
329 rbd --no-progress rm "$TEST_DIR/t.$IMGFMT" > /dev/null
332 sheepdog)
333 collie vdi delete "$TEST_DIR/t.$IMGFMT"
336 esac
339 _check_test_img()
342 if [ "$IMGOPTSSYNTAX" = "true" ]; then
343 $QEMU_IMG check $QEMU_IMG_EXTRA_ARGS "$@" "$TEST_IMG" 2>&1
344 else
345 $QEMU_IMG check "$@" -f $IMGFMT "$TEST_IMG" 2>&1
347 ) | _filter_testdir | _filter_qemu_img_check
350 _img_info()
352 if [[ "$1" == "--format-specific" ]]; then
353 local format_specific=1
354 shift
355 else
356 local format_specific=0
359 discard=0
360 regex_json_spec_start='^ *"format-specific": \{'
361 $QEMU_IMG info $QEMU_IMG_EXTRA_ARGS "$@" "$TEST_IMG" 2>&1 | \
362 sed -e "s#$REMOTE_TEST_DIR#TEST_DIR#g" \
363 -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
364 -e "s#$TEST_DIR#TEST_DIR#g" \
365 -e "s#$IMGFMT#IMGFMT#g" \
366 -e "/^disk size:/ D" \
367 -e "/actual-size/ D" | \
368 while IFS='' read -r line; do
369 if [[ $format_specific == 1 ]]; then
370 discard=0
371 elif [[ $line == "Format specific information:" ]]; then
372 discard=1
373 elif [[ $line =~ $regex_json_spec_start ]]; then
374 discard=2
375 regex_json_spec_end="^${line%%[^ ]*}\\},? *$"
377 if [[ $discard == 0 ]]; then
378 echo "$line"
379 elif [[ $discard == 1 && ! $line ]]; then
380 echo
381 discard=0
382 elif [[ $discard == 2 && $line =~ $regex_json_spec_end ]]; then
383 discard=0
385 done
388 # bail out, setting up .notrun file
390 _notrun()
392 echo "$*" >"$OUTPUT_DIR/$seq.notrun"
393 echo "$seq not run: $*"
394 status=0
395 exit
398 # just plain bail out
400 _fail()
402 echo "$*" | tee -a "$OUTPUT_DIR/$seq.full"
403 echo "(see $seq.full for details)"
404 status=1
405 exit 1
408 # tests whether $IMGFMT is one of the supported image formats for a test
410 _supported_fmt()
412 # "generic" is suitable for most image formats. For some formats it doesn't
413 # work, however (most notably read-only formats), so they can opt out by
414 # setting IMGFMT_GENERIC to false.
415 for f; do
416 if [ "$f" = "$IMGFMT" -o "$f" = "generic" -a "$IMGFMT_GENERIC" = "true" ]; then
417 return
419 done
421 _notrun "not suitable for this image format: $IMGFMT"
424 # tests whether $IMGFMT is one of the unsupported image format for a test
426 _unsupported_fmt()
428 for f; do
429 if [ "$f" = "$IMGFMT" ]; then
430 _notrun "not suitable for this image format: $IMGFMT"
432 done
435 # tests whether $IMGPROTO is one of the supported image protocols for a test
437 _supported_proto()
439 for f; do
440 if [ "$f" = "$IMGPROTO" -o "$f" = "generic" ]; then
441 return
443 done
445 _notrun "not suitable for this image protocol: $IMGPROTO"
448 # tests whether $IMGPROTO is specified as an unsupported image protocol for a test
450 _unsupported_proto()
452 for f; do
453 if [ "$f" = "$IMGPROTO" ]; then
454 _notrun "not suitable for this image protocol: $IMGPROTO"
455 return
457 done
460 # tests whether the host OS is one of the supported OSes for a test
462 _supported_os()
464 for h
466 if [ "$h" = "$HOSTOS" ]
467 then
468 return
470 done
472 _notrun "not suitable for this OS: $HOSTOS"
475 _supported_cache_modes()
477 for mode; do
478 if [ "$mode" = "$CACHEMODE" ]; then
479 return
481 done
482 _notrun "not suitable for cache mode: $CACHEMODE"
485 _default_cache_mode()
487 if $CACHEMODE_IS_DEFAULT; then
488 CACHEMODE="$1"
489 QEMU_IO="$QEMU_IO --cache $1"
490 return
494 _unsupported_imgopts()
496 for bad_opt
498 if echo "$IMGOPTS" | grep -q 2>/dev/null "$bad_opt"
499 then
500 _notrun "not suitable for image option: $bad_opt"
502 done
505 # this test requires that a specified command (executable) exists
507 _require_command()
509 if [ "$1" = "QEMU" ]; then
510 c=$QEMU_PROG
511 elif [ "$1" = "QEMU_IMG" ]; then
512 c=$QEMU_IMG_PROG
513 elif [ "$1" = "QEMU_IO" ]; then
514 c=$QEMU_IO_PROG
515 elif [ "$1" = "QEMU_NBD" ]; then
516 c=$QEMU_NBD_PROG
517 else
518 eval c=\$$1
520 [ -x "$c" ] || _notrun "$1 utility required, skipped this test"
523 # make sure this script returns success
524 true