Merge tag 'v2.10.0-rc0'
[qemu/ar7.git] / tests / qemu-iotests / common.rc
blob48f7a83db1333197a21168570c0aba0516561e67
1 #!/bin/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 dd()
22 if [ "$HOSTOS" == "Linux" ]
23 then
24 command dd --help | grep noxfer > /dev/null 2>&1
26 if [ "$?" -eq 0 ]
27 then
28 command dd status=noxfer $@
29 else
30 command dd $@
32 else
33 command dd $@
37 # poke_file 'test.img' 512 '\xff\xfe'
38 poke_file()
40 printf "$3" | dd "of=$1" bs=1 "seek=$2" conv=notrunc &>/dev/null
43 # we need common.config
44 if [ "$iam" != "check" ]
45 then
46 if ! . ./common.config
47 then
48 echo "$iam: failed to source common.config"
49 exit 1
53 # make sure we have a standard umask
54 umask 022
56 if [ "$IMGOPTSSYNTAX" = "true" ]; then
57 DRIVER="driver=$IMGFMT"
58 if [ "$IMGFMT" = "luks" ]; then
59 DRIVER="$DRIVER,key-secret=keysec0"
61 if [ "$IMGPROTO" = "file" ]; then
62 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
63 TEST_IMG="$DRIVER,file.filename=$TEST_DIR/t.$IMGFMT"
64 elif [ "$IMGPROTO" = "nbd" ]; then
65 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
66 TEST_IMG="$DRIVER,file.driver=nbd,file.host=127.0.0.1,file.port=10810"
67 elif [ "$IMGPROTO" = "ssh" ]; then
68 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
69 TEST_IMG="$DRIVER,file.driver=ssh,file.host=127.0.0.1,file.path=$TEST_IMG_FILE"
70 elif [ "$IMGPROTO" = "nfs" ]; then
71 TEST_DIR="$DRIVER,file.driver=nfs,file.filename=nfs://127.0.0.1/$TEST_DIR"
72 TEST_IMG=$TEST_DIR/t.$IMGFMT
73 else
74 TEST_IMG="$DRIVER,file.driver=$IMGPROTO,file.filename=$TEST_DIR/t.$IMGFMT"
76 else
77 if [ "$IMGPROTO" = "file" ]; then
78 TEST_IMG=$TEST_DIR/t.$IMGFMT
79 elif [ "$IMGPROTO" = "nbd" ]; then
80 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
81 TEST_IMG="nbd:127.0.0.1:10810"
82 elif [ "$IMGPROTO" = "ssh" ]; then
83 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
84 TEST_IMG="ssh://127.0.0.1$TEST_IMG_FILE"
85 elif [ "$IMGPROTO" = "nfs" ]; then
86 TEST_DIR="nfs://127.0.0.1/$TEST_DIR"
87 TEST_IMG=$TEST_DIR/t.$IMGFMT
88 elif [ "$IMGPROTO" = "vxhs" ]; then
89 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
90 TEST_IMG="vxhs://127.0.0.1:9999/t.$IMGFMT"
91 else
92 TEST_IMG=$IMGPROTO:$TEST_DIR/t.$IMGFMT
96 _optstr_add()
98 if [ -n "$1" ]; then
99 echo "$1,$2"
100 else
101 echo "$2"
105 _set_default_imgopts()
107 if [ "$IMGFMT" == "qcow2" ] && ! (echo "$IMGOPTS" | grep "compat=" > /dev/null); then
108 IMGOPTS=$(_optstr_add "$IMGOPTS" "compat=1.1")
110 if [ "$IMGFMT" == "luks" ] && ! (echo "$IMGOPTS" | grep "iter-time=" > /dev/null); then
111 IMGOPTS=$(_optstr_add "$IMGOPTS" "iter-time=10")
115 _use_sample_img()
117 SAMPLE_IMG_FILE="${1%\.bz2}"
118 TEST_IMG="$TEST_DIR/$SAMPLE_IMG_FILE"
119 bzcat "$SAMPLE_IMG_DIR/$1" > "$TEST_IMG"
120 if [ $? -ne 0 ]
121 then
122 echo "_use_sample_img error, cannot extract '$SAMPLE_IMG_DIR/$1'"
123 exit 1
127 _make_test_img()
129 # extra qemu-img options can be added by tests
130 # at least one argument (the image size) needs to be added
131 local extra_img_options=""
132 local image_size=$*
133 local optstr=""
134 local img_name=""
135 local use_backing=0
136 local backing_file=""
137 local object_options=""
139 if [ -n "$TEST_IMG_FILE" ]; then
140 img_name=$TEST_IMG_FILE
141 else
142 img_name=$TEST_IMG
145 if [ -n "$IMGOPTS" ]; then
146 optstr=$(_optstr_add "$optstr" "$IMGOPTS")
148 if [ -n "$IMGKEYSECRET" ]; then
149 object_options="--object secret,id=keysec0,data=$IMGKEYSECRET"
150 optstr=$(_optstr_add "$optstr" "key-secret=keysec0")
153 if [ "$1" = "-b" ]; then
154 use_backing=1
155 backing_file=$2
156 image_size=$3
158 if [ \( "$IMGFMT" = "qcow2" -o "$IMGFMT" = "qed" \) -a -n "$CLUSTER_SIZE" ]; then
159 optstr=$(_optstr_add "$optstr" "cluster_size=$CLUSTER_SIZE")
162 if [ -n "$optstr" ]; then
163 extra_img_options="-o $optstr $extra_img_options"
166 # XXX(hch): have global image options?
168 if [ $use_backing = 1 ]; then
169 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options -b "$backing_file" "$img_name" $image_size 2>&1
170 else
171 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options "$img_name" $image_size 2>&1
173 ) | _filter_img_create
175 # Start an NBD server on the image file, which is what we'll be talking to
176 if [ $IMGPROTO = "nbd" ]; then
177 # Pass a sufficiently high number to -e that should be enough for all
178 # tests
179 eval "$QEMU_NBD -v -t -b 127.0.0.1 -p 10810 -f $IMGFMT -e 42 $TEST_IMG_FILE >/dev/null &"
180 sleep 1 # FIXME: qemu-nbd needs to be listening before we continue
183 # Start QNIO server on image directory for vxhs protocol
184 if [ $IMGPROTO = "vxhs" ]; then
185 eval "$QEMU_VXHS -d $TEST_DIR > /dev/null &"
186 sleep 1 # Wait for server to come up.
190 _rm_test_img()
192 local img=$1
193 if [ "$IMGFMT" = "vmdk" ]; then
194 # Remove all the extents for vmdk
195 "$QEMU_IMG" info "$img" 2>/dev/null | grep 'filename:' | cut -f 2 -d: \
196 | xargs -I {} rm -f "{}"
198 rm -f "$img"
201 _cleanup_test_img()
203 case "$IMGPROTO" in
205 nbd)
206 if [ -f "${QEMU_TEST_DIR}/qemu-nbd.pid" ]; then
207 local QEMU_NBD_PID
208 read QEMU_NBD_PID < "${QEMU_TEST_DIR}/qemu-nbd.pid"
209 kill ${QEMU_NBD_PID}
210 rm -f "${QEMU_TEST_DIR}/qemu-nbd.pid"
212 rm -f "$TEST_IMG_FILE"
214 vxhs)
215 if [ -f "${TEST_DIR}/qemu-vxhs.pid" ]; then
216 local QEMU_VXHS_PID
217 read QEMU_VXHS_PID < "${TEST_DIR}/qemu-vxhs.pid"
218 kill ${QEMU_VXHS_PID} >/dev/null 2>&1
219 rm -f "${TEST_DIR}/qemu-vxhs.pid"
221 rm -f "$TEST_IMG_FILE"
224 file)
225 _rm_test_img "$TEST_DIR/t.$IMGFMT"
226 _rm_test_img "$TEST_DIR/t.$IMGFMT.orig"
227 _rm_test_img "$TEST_DIR/t.$IMGFMT.base"
228 if [ -n "$SAMPLE_IMG_FILE" ]
229 then
230 rm -f "$TEST_DIR/$SAMPLE_IMG_FILE"
234 rbd)
235 rbd --no-progress rm "$TEST_DIR/t.$IMGFMT" > /dev/null
238 sheepdog)
239 collie vdi delete "$TEST_DIR/t.$IMGFMT"
242 esac
245 _check_test_img()
248 if [ "$IMGOPTSSYNTAX" = "true" ]; then
249 $QEMU_IMG check $QEMU_IMG_EXTRA_ARGS "$@" "$TEST_IMG" 2>&1
250 else
251 $QEMU_IMG check "$@" -f $IMGFMT "$TEST_IMG" 2>&1
253 ) | _filter_testdir | _filter_qemu_img_check
256 _img_info()
258 if [[ "$1" == "--format-specific" ]]; then
259 local format_specific=1
260 shift
261 else
262 local format_specific=0
265 discard=0
266 regex_json_spec_start='^ *"format-specific": \{'
267 $QEMU_IMG info "$@" "$TEST_IMG" 2>&1 | \
268 sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
269 -e "s#$TEST_DIR#TEST_DIR#g" \
270 -e "s#$IMGFMT#IMGFMT#g" \
271 -e "/^disk size:/ D" \
272 -e "/actual-size/ D" | \
273 while IFS='' read line; do
274 if [[ $format_specific == 1 ]]; then
275 discard=0
276 elif [[ $line == "Format specific information:" ]]; then
277 discard=1
278 elif [[ $line =~ $regex_json_spec_start ]]; then
279 discard=2
280 regex_json_spec_end="^${line%%[^ ]*}\\},? *$"
282 if [[ $discard == 0 ]]; then
283 echo "$line"
284 elif [[ $discard == 1 && ! $line ]]; then
285 echo
286 discard=0
287 elif [[ $discard == 2 && $line =~ $regex_json_spec_end ]]; then
288 discard=0
290 done
293 _get_pids_by_name()
295 if [ $# -ne 1 ]
296 then
297 echo "Usage: _get_pids_by_name process-name" 1>&2
298 exit 1
301 # Algorithm ... all ps(1) variants have a time of the form MM:SS or
302 # HH:MM:SS before the psargs field, use this as the search anchor.
304 # Matches with $1 (process-name) occur if the first psarg is $1
305 # or ends in /$1 ... the matching uses sed's regular expressions,
306 # so passing a regex into $1 will work.
308 ps $PS_ALL_FLAGS \
309 | sed -n \
310 -e 's/$/ /' \
311 -e 's/[ ][ ]*/ /g' \
312 -e 's/^ //' \
313 -e 's/^[^ ]* //' \
314 -e "/[0-9]:[0-9][0-9] *[^ ]*\/$1 /s/ .*//p" \
315 -e "/[0-9]:[0-9][0-9] *$1 /s/ .*//p"
318 # fqdn for localhost
320 _get_fqdn()
322 host=`hostname`
323 $NSLOOKUP_PROG $host | $AWK_PROG '{ if ($1 == "Name:") print $2 }'
326 # check if run as root
328 _need_to_be_root()
330 id=`id | $SED_PROG -e 's/(.*//' -e 's/.*=//'`
331 if [ "$id" -ne 0 ]
332 then
333 echo "Arrgh ... you need to be root (not uid=$id) to run this test"
334 exit 1
338 # bail out, setting up .notrun file
340 _notrun()
342 echo "$*" >"$OUTPUT_DIR/$seq.notrun"
343 echo "$seq not run: $*"
344 status=0
345 exit
348 # just plain bail out
350 _fail()
352 echo "$*" | tee -a "$OUTPUT_DIR/$seq.full"
353 echo "(see $seq.full for details)"
354 status=1
355 exit 1
358 # tests whether $IMGFMT is one of the supported image formats for a test
360 _supported_fmt()
362 # "generic" is suitable for most image formats. For some formats it doesn't
363 # work, however (most notably read-only formats), so they can opt out by
364 # setting IMGFMT_GENERIC to false.
365 for f; do
366 if [ "$f" = "$IMGFMT" -o "$f" = "generic" -a "$IMGFMT_GENERIC" = "true" ]; then
367 return
369 done
371 _notrun "not suitable for this image format: $IMGFMT"
374 # tests whether $IMGFMT is one of the unsupported image format for a test
376 _unsupported_fmt()
378 for f; do
379 if [ "$f" = "$IMGFMT" ]; then
380 _notrun "not suitable for this image format: $IMGFMT"
382 done
385 # tests whether $IMGPROTO is one of the supported image protocols for a test
387 _supported_proto()
389 for f; do
390 if [ "$f" = "$IMGPROTO" -o "$f" = "generic" ]; then
391 return
393 done
395 _notrun "not suitable for this image protocol: $IMGPROTO"
398 # tests whether $IMGPROTO is specified as an unsupported image protocol for a test
400 _unsupported_proto()
402 for f; do
403 if [ "$f" = "$IMGPROTO" ]; then
404 _notrun "not suitable for this image protocol: $IMGPROTO"
405 return
407 done
410 # tests whether the host OS is one of the supported OSes for a test
412 _supported_os()
414 for h
416 if [ "$h" = "$HOSTOS" ]
417 then
418 return
420 done
422 _notrun "not suitable for this OS: $HOSTOS"
425 _supported_cache_modes()
427 for mode; do
428 if [ "$mode" = "$CACHEMODE" ]; then
429 return
431 done
432 _notrun "not suitable for cache mode: $CACHEMODE"
435 _default_cache_mode()
437 if $CACHEMODE_IS_DEFAULT; then
438 CACHEMODE="$1"
439 QEMU_IO="$QEMU_IO --cache $1"
440 return
444 _unsupported_imgopts()
446 for bad_opt
448 if echo "$IMGOPTS" | grep -q 2>/dev/null "$bad_opt"
449 then
450 _notrun "not suitable for image option: $bad_opt"
452 done
455 # this test requires that a specified command (executable) exists
457 _require_command()
459 if [ "$1" = "QEMU" ]; then
460 c=$QEMU_PROG
461 elif [ "$1" = "QEMU_IMG" ]; then
462 c=$QEMU_IMG_PROG
463 elif [ "$1" = "QEMU_IO" ]; then
464 c=$QEMU_IO_PROG
465 elif [ "$1" = "QEMU_NBD" ]; then
466 c=$QEMU_NBD_PROG
467 else
468 eval c=\$$1
470 [ -x "$c" ] || _notrun "$1 utility required, skipped this test"
473 _full_imgfmt_details()
475 if [ -n "$IMGOPTS" ]; then
476 echo "$IMGFMT ($IMGOPTS)"
477 else
478 echo "$IMGFMT"
482 _full_imgproto_details()
484 echo "$IMGPROTO"
487 _full_platform_details()
489 os=`uname -s`
490 host=`hostname -s 2>/dev/null || hostname`
491 kernel=`uname -r`
492 platform=`uname -m`
493 echo "$os/$platform $host $kernel"
496 _link_out_file()
498 if [ -z "$1" ]; then
499 echo Error must pass \$seq.
500 exit
502 rm -f $1
503 if [ "`uname`" == "IRIX64" ] || [ "`uname`" == "IRIX" ]; then
504 ln -s $1.irix $1
505 elif [ "`uname`" == "Linux" ]; then
506 ln -s $1.linux $1
507 else
508 echo Error test $seq does not run on the operating system: `uname`
509 exit
513 _die()
515 echo $@
516 exit 1
519 # make sure this script returns success
520 true