2 # VM testing base class
4 # Copyright 2017-2019 Red Hat Inc.
7 # Fam Zheng <famz@redhat.com>
8 # Gerd Hoffmann <kraxel@redhat.com>
10 # This code is licensed under the GPL version 2 or later. See
11 # the COPYING file in the top-level directory.
21 sys
.path
.append(os
.path
.join(os
.path
.dirname(__file__
), '..', '..', 'python'))
22 from qemu
.accel
import kvm_available
23 from qemu
.machine
import QEMUMachine
30 import multiprocessing
33 SSH_KEY
= open(os
.path
.join(os
.path
.dirname(__file__
),
34 "..", "keys", "id_rsa")).read()
35 SSH_PUB_KEY
= open(os
.path
.join(os
.path
.dirname(__file__
),
36 "..", "keys", "id_rsa.pub")).read()
40 GUEST_PASS
= "qemupass"
41 ROOT_PASS
= "qemupass"
50 # The script to run in the guest that builds QEMU
52 # The guest name, to be overridden by subclasses
54 # The guest architecture, to be overridden by subclasses
56 # command to halt the guest, can be overridden by subclasses
58 # enable IPv6 networking
60 # Scale up some timeouts under TCG.
61 # 4 is arbitrary, but greater than 2,
62 # since we found we need to wait more than twice as long.
63 tcg_ssh_timeout_multiplier
= 4
64 def __init__(self
, debug
=False, vcpus
=None, genisoimage
=None,
67 self
._genisoimage
= genisoimage
68 self
._build
_path
= build_path
69 self
._tmpdir
= os
.path
.realpath(tempfile
.mkdtemp(prefix
="vm-test-",
72 atexit
.register(shutil
.rmtree
, self
._tmpdir
)
74 self
._ssh
_key
_file
= os
.path
.join(self
._tmpdir
, "id_rsa")
75 open(self
._ssh
_key
_file
, "w").write(SSH_KEY
)
76 subprocess
.check_call(["chmod", "600", self
._ssh
_key
_file
])
78 self
._ssh
_pub
_key
_file
= os
.path
.join(self
._tmpdir
, "id_rsa.pub")
79 open(self
._ssh
_pub
_key
_file
, "w").write(SSH_PUB_KEY
)
82 self
._stderr
= sys
.stderr
83 self
._devnull
= open(os
.devnull
, "w")
85 self
._stdout
= sys
.stdout
87 self
._stdout
= self
._devnull
89 "-nodefaults", "-m", "4G",
91 "-netdev", "user,id=vnet,hostfwd=:127.0.0.1:0-:22" +
92 (",ipv6=no" if not self
.ipv6
else ""),
93 "-device", "virtio-net-pci,netdev=vnet",
94 "-vnc", "127.0.0.1:0,to=20"]
95 if vcpus
and vcpus
> 1:
96 self
._args
+= ["-smp", "%d" % vcpus
]
97 if kvm_available(self
.arch
):
98 self
._args
+= ["-enable-kvm"]
100 logging
.info("KVM not available, not using -enable-kvm")
103 def _download_with_cache(self
, url
, sha256sum
=None, sha512sum
=None):
104 def check_sha256sum(fname
):
107 checksum
= subprocess
.check_output(["sha256sum", fname
]).split()[0]
108 return sha256sum
== checksum
.decode("utf-8")
110 def check_sha512sum(fname
):
113 checksum
= subprocess
.check_output(["sha512sum", fname
]).split()[0]
114 return sha512sum
== checksum
.decode("utf-8")
116 cache_dir
= os
.path
.expanduser("~/.cache/qemu-vm/download")
117 if not os
.path
.exists(cache_dir
):
118 os
.makedirs(cache_dir
)
119 fname
= os
.path
.join(cache_dir
,
120 hashlib
.sha1(url
.encode("utf-8")).hexdigest())
121 if os
.path
.exists(fname
) and check_sha256sum(fname
) and check_sha512sum(fname
):
123 logging
.debug("Downloading %s to %s...", url
, fname
)
124 subprocess
.check_call(["wget", "-c", url
, "-O", fname
+ ".download"],
125 stdout
=self
._stdout
, stderr
=self
._stderr
)
126 os
.rename(fname
+ ".download", fname
)
129 def _ssh_do(self
, user
, cmd
, check
):
132 "-o", "StrictHostKeyChecking=no",
133 "-o", "UserKnownHostsFile=" + os
.devnull
,
134 "-o", "ConnectTimeout=1",
135 "-p", self
.ssh_port
, "-i", self
._ssh
_key
_file
]
136 # If not in debug mode, set ssh to quiet mode to
137 # avoid printing the results of commands.
140 for var
in self
.envvars
:
141 ssh_cmd
+= ['-o', "SendEnv=%s" % var
]
142 assert not isinstance(cmd
, str)
143 ssh_cmd
+= ["%s@127.0.0.1" % user
] + list(cmd
)
144 logging
.debug("ssh_cmd: %s", " ".join(ssh_cmd
))
145 r
= subprocess
.call(ssh_cmd
)
147 raise Exception("SSH command failed: %s" % cmd
)
151 return self
._ssh
_do
(self
.GUEST_USER
, cmd
, False)
153 def ssh_root(self
, *cmd
):
154 return self
._ssh
_do
("root", cmd
, False)
156 def ssh_check(self
, *cmd
):
157 self
._ssh
_do
(self
.GUEST_USER
, cmd
, True)
159 def ssh_root_check(self
, *cmd
):
160 self
._ssh
_do
("root", cmd
, True)
162 def build_image(self
, img
):
163 raise NotImplementedError
165 def exec_qemu_img(self
, *args
):
166 cmd
= [os
.environ
.get("QEMU_IMG", "qemu-img")]
167 cmd
.extend(list(args
))
168 subprocess
.check_call(cmd
)
170 def add_source_dir(self
, src_dir
):
171 name
= "data-" + hashlib
.sha1(src_dir
.encode("utf-8")).hexdigest()[:5]
172 tarfile
= os
.path
.join(self
._tmpdir
, name
+ ".tar")
173 logging
.debug("Creating archive %s for src_dir dir: %s", tarfile
, src_dir
)
174 subprocess
.check_call(["./scripts/archive-source.sh", tarfile
],
175 cwd
=src_dir
, stdin
=self
._devnull
,
176 stdout
=self
._stdout
, stderr
=self
._stderr
)
177 self
._data
_args
+= ["-drive",
178 "file=%s,if=none,id=%s,cache=writeback,format=raw" % \
181 "virtio-blk,drive=%s,serial=%s,bootindex=1" % (name
, name
)]
183 def boot(self
, img
, extra_args
=[]):
184 args
= self
._args
+ [
185 "-drive", "file=%s,if=none,id=drive0,cache=writeback" % img
,
186 "-device", "virtio-blk,drive=drive0,bootindex=0"]
187 args
+= self
._data
_args
+ extra_args
188 logging
.debug("QEMU args: %s", " ".join(args
))
189 qemu_path
= get_qemu_path(self
.arch
, self
._build
_path
)
190 guest
= QEMUMachine(binary
=qemu_path
, args
=args
)
191 guest
.set_machine('pc')
196 logging
.error("Failed to launch QEMU, command line:")
197 logging
.error(" ".join([qemu_path
] + args
))
198 logging
.error("Log:")
199 logging
.error(guest
.get_log())
200 logging
.error("QEMU version >= 2.10 is required")
202 atexit
.register(self
.shutdown
)
204 usernet_info
= guest
.qmp("human-monitor-command",
205 command_line
="info usernet")
207 for l
in usernet_info
["return"].splitlines():
209 if "TCP[HOST_FORWARD]" in fields
and "22" in fields
:
210 self
.ssh_port
= l
.split()[3]
211 if not self
.ssh_port
:
212 raise Exception("Cannot find ssh port from 'info usernet':\n%s" % \
215 def console_init(self
, timeout
= 120):
217 vm
.console_socket
.settimeout(timeout
)
218 self
.console_raw_path
= os
.path
.join(vm
._temp
_dir
,
219 vm
._name
+ "-console.raw")
220 self
.console_raw_file
= open(self
.console_raw_path
, 'wb')
222 def console_log(self
, text
):
223 for line
in re
.split("[\r\n]", text
):
224 # filter out terminal escape sequences
225 line
= re
.sub("\x1b\[[0-9;?]*[a-zA-Z]", "", line
)
226 line
= re
.sub("\x1b\([0-9;?]*[a-zA-Z]", "", line
)
227 # replace unprintable chars
228 line
= re
.sub("\x1b", "<esc>", line
)
229 line
= re
.sub("[\x00-\x1f]", ".", line
)
230 line
= re
.sub("[\x80-\xff]", ".", line
)
234 sys
.stderr
.write("con recv: %s\n" % line
)
236 def console_wait(self
, expect
, expectalt
= None):
241 chars
= vm
.console_socket
.recv(1)
242 if self
.console_raw_file
:
243 self
.console_raw_file
.write(chars
)
244 self
.console_raw_file
.flush()
245 except socket
.timeout
:
246 sys
.stderr
.write("console: *** read timeout ***\n")
247 sys
.stderr
.write("console: waiting for: '%s'\n" % expect
)
248 if not expectalt
is None:
249 sys
.stderr
.write("console: waiting for: '%s' (alt)\n" % expectalt
)
250 sys
.stderr
.write("console: line buffer:\n")
251 sys
.stderr
.write("\n")
252 self
.console_log(output
.rstrip())
253 sys
.stderr
.write("\n")
255 output
+= chars
.decode("latin1")
258 if not expectalt
is None and expectalt
in output
:
260 if "\r" in output
or "\n" in output
:
261 lines
= re
.split("[\r\n]", output
)
264 self
.console_log("\n".join(lines
))
266 self
.console_log(output
)
267 if not expectalt
is None and expectalt
in output
:
271 def console_consume(self
):
274 vm
.console_socket
.setblocking(0)
277 chars
= vm
.console_socket
.recv(1)
280 output
+= chars
.decode("latin1")
281 if "\r" in output
or "\n" in output
:
282 lines
= re
.split("[\r\n]", output
)
285 self
.console_log("\n".join(lines
))
287 self
.console_log(output
)
288 vm
.console_socket
.setblocking(1)
290 def console_send(self
, command
):
293 logline
= re
.sub("\n", "<enter>", command
)
294 logline
= re
.sub("[\x00-\x1f]", ".", logline
)
295 sys
.stderr
.write("con send: %s\n" % logline
)
296 for char
in list(command
):
297 vm
.console_socket
.send(char
.encode("utf-8"))
300 def console_wait_send(self
, wait
, command
):
301 self
.console_wait(wait
)
302 self
.console_send(command
)
304 def console_ssh_init(self
, prompt
, user
, pw
):
305 sshkey_cmd
= "echo '%s' > .ssh/authorized_keys\n" % SSH_PUB_KEY
.rstrip()
306 self
.console_wait_send("login:", "%s\n" % user
)
307 self
.console_wait_send("Password:", "%s\n" % pw
)
308 self
.console_wait_send(prompt
, "mkdir .ssh\n")
309 self
.console_wait_send(prompt
, sshkey_cmd
)
310 self
.console_wait_send(prompt
, "chmod 755 .ssh\n")
311 self
.console_wait_send(prompt
, "chmod 644 .ssh/authorized_keys\n")
313 def console_sshd_config(self
, prompt
):
314 self
.console_wait(prompt
)
315 self
.console_send("echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config\n")
316 for var
in self
.envvars
:
317 self
.console_wait(prompt
)
318 self
.console_send("echo 'AcceptEnv %s' >> /etc/ssh/sshd_config\n" % var
)
320 def print_step(self
, text
):
321 sys
.stderr
.write("### %s ...\n" % text
)
323 def wait_ssh(self
, wait_root
=False, seconds
=300):
324 # Allow more time for VM to boot under TCG.
325 if not kvm_available(self
.arch
):
326 seconds
*= self
.tcg_ssh_timeout_multiplier
327 starttime
= datetime
.datetime
.now()
328 endtime
= starttime
+ datetime
.timedelta(seconds
=seconds
)
330 while datetime
.datetime
.now() < endtime
:
331 if wait_root
and self
.ssh_root("exit 0") == 0:
334 elif self
.ssh("exit 0") == 0:
337 seconds
= (endtime
- datetime
.datetime
.now()).total_seconds()
338 logging
.debug("%ds before timeout", seconds
)
341 raise Exception("Timeout while waiting for guest ssh")
344 self
._guest
.shutdown()
349 def graceful_shutdown(self
):
350 self
.ssh_root(self
.poweroff
)
353 def qmp(self
, *args
, **kwargs
):
354 return self
._guest
.qmp(*args
, **kwargs
)
356 def gen_cloud_init_iso(self
):
358 mdata
= open(os
.path
.join(cidir
, "meta-data"), "w")
359 name
= self
.name
.replace(".","-")
360 mdata
.writelines(["instance-id: {}-vm-0\n".format(name
),
361 "local-hostname: {}-guest\n".format(name
)])
363 udata
= open(os
.path
.join(cidir
, "user-data"), "w")
364 print("guest user:pw {}:{}".format(self
.GUEST_USER
,
366 udata
.writelines(["#cloud-config\n",
369 " root:%s\n" % self
.ROOT_PASS
,
370 " %s:%s\n" % (self
.GUEST_USER
,
374 " - name: %s\n" % self
.GUEST_USER
,
375 " sudo: ALL=(ALL) NOPASSWD:ALL\n",
376 " ssh-authorized-keys:\n",
377 " - %s\n" % SSH_PUB_KEY
,
379 " ssh-authorized-keys:\n",
380 " - %s\n" % SSH_PUB_KEY
,
381 "locale: en_US.UTF-8\n"])
382 proxy
= os
.environ
.get("http_proxy")
383 if not proxy
is None:
384 udata
.writelines(["apt:\n",
385 " proxy: %s" % proxy
])
387 subprocess
.check_call([self
._genisoimage
, "-output", "cloud-init.iso",
388 "-volid", "cidata", "-joliet", "-rock",
389 "user-data", "meta-data"],
391 stdin
=self
._devnull
, stdout
=self
._stdout
,
394 return os
.path
.join(cidir
, "cloud-init.iso")
396 def get_qemu_path(arch
, build_path
=None):
397 """Fetch the path to the qemu binary."""
398 # If QEMU environment variable set, it takes precedence
399 if "QEMU" in os
.environ
:
400 qemu_path
= os
.environ
["QEMU"]
402 qemu_path
= os
.path
.join(build_path
, arch
+ "-softmmu")
403 qemu_path
= os
.path
.join(qemu_path
, "qemu-system-" + arch
)
405 # Default is to use system path for qemu.
406 qemu_path
= "qemu-system-" + arch
409 def parse_args(vmcls
):
411 def get_default_jobs():
412 if kvm_available(vmcls
.arch
):
413 return multiprocessing
.cpu_count() // 2
417 parser
= optparse
.OptionParser(
418 description
="VM test utility. Exit codes: "
420 "1 = command line error, "
421 "2 = environment initialization failed, "
422 "3 = test command failed")
423 parser
.add_option("--debug", "-D", action
="store_true",
424 help="enable debug output")
425 parser
.add_option("--image", "-i", default
="%s.img" % vmcls
.name
,
426 help="image file name")
427 parser
.add_option("--force", "-f", action
="store_true",
428 help="force build image even if image exists")
429 parser
.add_option("--jobs", type=int, default
=get_default_jobs(),
430 help="number of virtual CPUs")
431 parser
.add_option("--verbose", "-V", action
="store_true",
432 help="Pass V=1 to builds within the guest")
433 parser
.add_option("--build-image", "-b", action
="store_true",
435 parser
.add_option("--build-qemu",
436 help="build QEMU from source in guest")
437 parser
.add_option("--build-target",
438 help="QEMU build target", default
="check")
439 parser
.add_option("--build-path", default
=None,
440 help="Path of build directory, "\
441 "for using build tree QEMU binary. ")
442 parser
.add_option("--interactive", "-I", action
="store_true",
443 help="Interactively run command")
444 parser
.add_option("--snapshot", "-s", action
="store_true",
445 help="run tests with a snapshot")
446 parser
.add_option("--genisoimage", default
="genisoimage",
447 help="iso imaging tool")
448 parser
.disable_interspersed_args()
449 return parser
.parse_args()
453 args
, argv
= parse_args(vmcls
)
454 if not argv
and not args
.build_qemu
and not args
.build_image
:
455 print("Nothing to do?")
457 logging
.basicConfig(level
=(logging
.DEBUG
if args
.debug
459 vm
= vmcls(debug
=args
.debug
, vcpus
=args
.jobs
,
460 genisoimage
=args
.genisoimage
, build_path
=args
.build_path
)
462 if os
.path
.exists(args
.image
) and not args
.force
:
463 sys
.stderr
.writelines(["Image file exists: %s\n" % args
.image
,
464 "Use --force option to overwrite\n"])
466 return vm
.build_image(args
.image
)
468 vm
.add_source_dir(args
.build_qemu
)
469 cmd
= [vm
.BUILD_SCRIPT
.format(
470 configure_opts
= " ".join(argv
),
472 target
=args
.build_target
,
473 verbose
= "V=1" if args
.verbose
else "")]
478 img
+= ",snapshot=on"
481 except Exception as e
:
482 if isinstance(e
, SystemExit) and e
.code
== 0:
484 sys
.stderr
.write("Failed to prepare guest environment\n")
485 traceback
.print_exc()
489 if vm
.ssh(*cmd
) != 0:
494 if not args
.snapshot
:
495 vm
.graceful_shutdown()