blob: c962602a63a46e505d9764d04fb05049fd23462a [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# Copyright (C) 2013 Intel Corporation
2#
3# Released under the MIT license (see COPYING.MIT)
4
5# This module provides a class for starting qemu images using runqemu.
6# It's used by testimage.bbclass.
7
8import subprocess
9import os
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010import sys
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011import time
12import signal
13import re
14import socket
15import select
16import errno
Patrick Williamsf1e5d692016-03-30 15:21:19 -050017import string
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018import threading
Patrick Williamsf1e5d692016-03-30 15:21:19 -050019import codecs
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020import logging
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021from oeqa.utils.dump import HostDumper
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022
Patrick Williamsf1e5d692016-03-30 15:21:19 -050023# Get Unicode non printable control chars
Patrick Williamsc0f7c042017-02-23 20:41:17 -060024control_range = list(range(0,32))+list(range(127,160))
25control_chars = [chr(x) for x in control_range
26 if chr(x) not in string.printable]
Patrick Williamsf1e5d692016-03-30 15:21:19 -050027re_control_char = re.compile('[%s]' % re.escape("".join(control_chars)))
28
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029class QemuRunner:
30
Brad Bishopd7bf8c12018-02-25 22:55:05 -050031 def __init__(self, machine, rootfs, display, tmpdir, deploy_dir_image, logfile, boottime, dump_dir, dump_host_cmds, use_kvm, logger):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032
33 # Popen object for runqemu
34 self.runqemu = None
35 # pid of the qemu process that runqemu will start
36 self.qemupid = None
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037 # target ip - from the command line or runqemu output
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038 self.ip = None
39 # host ip - where qemu is running
40 self.server_ip = None
Brad Bishop6e60e8b2018-02-01 10:27:11 -050041 # target ip netmask
42 self.netmask = None
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043
44 self.machine = machine
45 self.rootfs = rootfs
46 self.display = display
47 self.tmpdir = tmpdir
48 self.deploy_dir_image = deploy_dir_image
49 self.logfile = logfile
50 self.boottime = boottime
51 self.logged = False
52 self.thread = None
Patrick Williamsc0f7c042017-02-23 20:41:17 -060053 self.use_kvm = use_kvm
Brad Bishopd7bf8c12018-02-25 22:55:05 -050054 self.msg = ''
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055
Brad Bishopd7bf8c12018-02-25 22:55:05 -050056 self.runqemutime = 120
57 self.qemu_pidfile = 'pidfile_'+str(os.getpid())
Patrick Williamsc124f4f2015-09-15 14:41:29 -050058 self.host_dumper = HostDumper(dump_host_cmds, dump_dir)
59
Brad Bishopd7bf8c12018-02-25 22:55:05 -050060 self.logger = logger
61
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062 def create_socket(self):
63 try:
64 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
65 sock.setblocking(0)
66 sock.bind(("127.0.0.1",0))
67 sock.listen(2)
68 port = sock.getsockname()[1]
Brad Bishopd7bf8c12018-02-25 22:55:05 -050069 self.logger.debug("Created listening socket for qemu serial console on: 127.0.0.1:%s" % port)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050070 return (sock, port)
71
72 except socket.error:
73 sock.close()
74 raise
75
76 def log(self, msg):
77 if self.logfile:
Patrick Williamsf1e5d692016-03-30 15:21:19 -050078 # It is needed to sanitize the data received from qemu
79 # because is possible to have control characters
Brad Bishop6e60e8b2018-02-01 10:27:11 -050080 msg = msg.decode("utf-8", errors='ignore')
Patrick Williamsc0f7c042017-02-23 20:41:17 -060081 msg = re_control_char.sub('', msg)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050082 self.msg += msg
Patrick Williamsf1e5d692016-03-30 15:21:19 -050083 with codecs.open(self.logfile, "a", encoding="utf-8") as f:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050084 f.write("%s" % msg)
85
86 def getOutput(self, o):
87 import fcntl
88 fl = fcntl.fcntl(o, fcntl.F_GETFL)
89 fcntl.fcntl(o, fcntl.F_SETFL, fl | os.O_NONBLOCK)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060090 return os.read(o.fileno(), 1000000).decode("utf-8")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091
92
93 def handleSIGCHLD(self, signum, frame):
94 if self.runqemu and self.runqemu.poll():
95 if self.runqemu.returncode:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050096 self.logger.debug('runqemu exited with code %d' % self.runqemu.returncode)
97 self.logger.debug("Output from runqemu:\n%s" % self.getOutput(self.runqemu.stdout))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098 self.stop()
99 self._dump_host()
100 raise SystemExit
101
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500102 def start(self, qemuparams = None, get_ip = True, extra_bootparams = None, runqemuparams='', launch_cmd=None, discard_writes=True):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500103 env = os.environ.copy()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104 if self.display:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500105 env["DISPLAY"] = self.display
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500106 # Set this flag so that Qemu doesn't do any grabs as SDL grabs
107 # interact badly with screensavers.
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500108 env["QEMU_DONT_GRAB"] = "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500109 if not os.path.exists(self.rootfs):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500110 self.logger.error("Invalid rootfs %s" % self.rootfs)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500111 return False
112 if not os.path.exists(self.tmpdir):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500113 self.logger.error("Invalid TMPDIR path %s" % self.tmpdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500114 return False
115 else:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500116 env["OE_TMPDIR"] = self.tmpdir
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500117 if not os.path.exists(self.deploy_dir_image):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500118 self.logger.error("Invalid DEPLOY_DIR_IMAGE path %s" % self.deploy_dir_image)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500119 return False
120 else:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500121 env["DEPLOY_DIR_IMAGE"] = self.deploy_dir_image
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500122
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500123 if not launch_cmd:
124 launch_cmd = 'runqemu %s %s ' % ('snapshot' if discard_writes else '', runqemuparams)
125 if self.use_kvm:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500126 self.logger.debug('Using kvm for runqemu')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500127 launch_cmd += ' kvm'
128 else:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500129 self.logger.debug('Not using kvm for runqemu')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500130 if not self.display:
131 launch_cmd += ' nographic'
132 launch_cmd += ' %s %s' % (self.machine, self.rootfs)
133
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500134 return self.launch(launch_cmd, qemuparams=qemuparams, get_ip=get_ip, extra_bootparams=extra_bootparams, env=env)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500135
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500136 def launch(self, launch_cmd, get_ip = True, qemuparams = None, extra_bootparams = None, env = None):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137 try:
138 threadsock, threadport = self.create_socket()
139 self.server_socket, self.serverport = self.create_socket()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600140 except socket.error as msg:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500141 self.logger.error("Failed to create listening socket: %s" % msg[1])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500142 return False
143
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600144 bootparams = 'console=tty1 console=ttyS0,115200n8 printk.time=1'
145 if extra_bootparams:
146 bootparams = bootparams + ' ' + extra_bootparams
147
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500148 # Ask QEMU to store the QEMU process PID in file, this way we don't have to parse running processes
149 # and analyze descendents in order to determine it.
150 if os.path.exists(self.qemu_pidfile):
151 os.remove(self.qemu_pidfile)
152 self.qemuparams = 'bootparams="{0}" qemuparams="-serial tcp:127.0.0.1:{1} -pidfile {2}"'.format(bootparams, threadport, self.qemu_pidfile)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500153 if qemuparams:
154 self.qemuparams = self.qemuparams[:-1] + " " + qemuparams + " " + '\"'
155
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500156 launch_cmd += ' tcpserial=%s %s' % (self.serverport, self.qemuparams)
157
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500158 self.origchldhandler = signal.getsignal(signal.SIGCHLD)
159 signal.signal(signal.SIGCHLD, self.handleSIGCHLD)
160
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500161 self.logger.debug('launchcmd=%s'%(launch_cmd))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600162
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500163 # FIXME: We pass in stdin=subprocess.PIPE here to work around stty
164 # blocking at the end of the runqemu script when using this within
165 # oe-selftest (this makes stty error out immediately). There ought
166 # to be a proper fix but this will suffice for now.
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500167 self.runqemu = subprocess.Popen(launch_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE, preexec_fn=os.setpgrp, env=env)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168 output = self.runqemu.stdout
169
170 #
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600171 # We need the preexec_fn above so that all runqemu processes can easily be killed
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500172 # (by killing their process group). This presents a problem if this controlling
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600173 # process itself is killed however since those processes don't notice the death
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500174 # of the parent and merrily continue on.
175 #
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600176 # Rather than hack runqemu to deal with this, we add something here instead.
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500177 # Basically we fork off another process which holds an open pipe to the parent
178 # and also is setpgrp. If/when the pipe sees EOF from the parent dieing, it kills
179 # the process group. This is like pctrl's PDEATHSIG but for a process group
180 # rather than a single process.
181 #
182 r, w = os.pipe()
183 self.monitorpid = os.fork()
184 if self.monitorpid:
185 os.close(r)
186 self.monitorpipe = os.fdopen(w, "w")
187 else:
188 # child process
189 os.setpgrp()
190 os.close(w)
191 r = os.fdopen(r)
192 x = r.read()
193 os.killpg(os.getpgid(self.runqemu.pid), signal.SIGTERM)
194 sys.exit(0)
195
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500196 self.logger.debug("runqemu started, pid is %s" % self.runqemu.pid)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400197 self.logger.debug("waiting at most %s seconds for qemu pid (%s)" %
198 (self.runqemutime, time.strftime("%D %H:%M:%S")))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500199 endtime = time.time() + self.runqemutime
200 while not self.is_alive() and time.time() < endtime:
201 if self.runqemu.poll():
202 if self.runqemu.returncode:
203 # No point waiting any longer
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500204 self.logger.debug('runqemu exited with code %d' % self.runqemu.returncode)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500205 self._dump_host()
206 self.stop()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500207 self.logger.debug("Output from runqemu:\n%s" % self.getOutput(output))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500208 return False
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500209 time.sleep(0.5)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500210
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500211 if not self.is_alive():
Brad Bishop316dfdd2018-06-25 12:45:53 -0400212 self.logger.error("Qemu pid didn't appear in %s seconds (%s)" %
213 (self.runqemutime, time.strftime("%D %H:%M:%S")))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500214 # Dump all processes to help us to figure out what is going on...
215 ps = subprocess.Popen(['ps', 'axww', '-o', 'pid,ppid,command '], stdout=subprocess.PIPE).communicate()[0]
216 processes = ps.decode("utf-8")
217 self.logger.debug("Running processes:\n%s" % processes)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500218 self._dump_host()
219 self.stop()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500220 op = self.getOutput(output)
221 if op:
222 self.logger.error("Output from runqemu:\n%s" % op)
223 else:
224 self.logger.error("No output from runqemu.\n")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500225 return False
226
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500227 # We are alive: qemu is running
228 out = self.getOutput(output)
229 netconf = False # network configuration is not required by default
Brad Bishop316dfdd2018-06-25 12:45:53 -0400230 self.logger.debug("qemu started in %s seconds - qemu procces pid is %s (%s)" %
231 (time.time() - (endtime - self.runqemutime),
232 self.qemupid, time.strftime("%D %H:%M:%S")))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500233 if get_ip:
234 cmdline = ''
235 with open('/proc/%s/cmdline' % self.qemupid) as p:
236 cmdline = p.read()
237 # It is needed to sanitize the data received
238 # because is possible to have control characters
239 cmdline = re_control_char.sub(' ', cmdline)
240 try:
241 ips = re.findall("((?:[0-9]{1,3}\.){3}[0-9]{1,3})", cmdline.split("ip=")[1])
242 self.ip = ips[0]
243 self.server_ip = ips[1]
244 self.logger.debug("qemu cmdline used:\n{}".format(cmdline))
245 except (IndexError, ValueError):
246 # Try to get network configuration from runqemu output
247 match = re.match('.*Network configuration: ([0-9.]+)::([0-9.]+):([0-9.]+)$.*',
248 out, re.MULTILINE|re.DOTALL)
249 if match:
250 self.ip, self.server_ip, self.netmask = match.groups()
251 # network configuration is required as we couldn't get it
252 # from the runqemu command line, so qemu doesn't run kernel
253 # and guest networking is not configured
254 netconf = True
255 else:
256 self.logger.error("Couldn't get ip from qemu command line and runqemu output! "
257 "Here is the qemu command line used:\n%s\n"
258 "and output from runqemu:\n%s" % (cmdline, out))
259 self._dump_host()
260 self.stop()
261 return False
262
263 self.logger.debug("Target IP: %s" % self.ip)
264 self.logger.debug("Server IP: %s" % self.server_ip)
265
266 self.thread = LoggingThread(self.log, threadsock, self.logger)
267 self.thread.start()
268 if not self.thread.connection_established.wait(self.boottime):
269 self.logger.error("Didn't receive a console connection from qemu. "
270 "Here is the qemu command line used:\n%s\nand "
271 "output from runqemu:\n%s" % (cmdline, out))
272 self.stop_thread()
273 return False
274
275 self.logger.debug("Output from runqemu:\n%s", out)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400276 self.logger.debug("Waiting at most %d seconds for login banner (%s)" %
277 (self.boottime, time.strftime("%D %H:%M:%S")))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500278 endtime = time.time() + self.boottime
279 socklist = [self.server_socket]
280 reachedlogin = False
281 stopread = False
282 qemusock = None
283 bootlog = b''
284 data = b''
285 while time.time() < endtime and not stopread:
286 try:
287 sread, swrite, serror = select.select(socklist, [], [], 5)
288 except InterruptedError:
289 continue
290 for sock in sread:
291 if sock is self.server_socket:
292 qemusock, addr = self.server_socket.accept()
293 qemusock.setblocking(0)
294 socklist.append(qemusock)
295 socklist.remove(self.server_socket)
296 self.logger.debug("Connection from %s:%s" % addr)
297 else:
298 data = data + sock.recv(1024)
299 if data:
300 bootlog += data
301 data = b''
302 if b' login:' in bootlog:
303 self.server_socket = qemusock
304 stopread = True
305 reachedlogin = True
Brad Bishop316dfdd2018-06-25 12:45:53 -0400306 self.logger.debug("Reached login banner in %s seconds (%s)" %
307 (time.time() - (endtime - self.boottime),
308 time.strftime("%D %H:%M:%S")))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500309 else:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400310 # no need to check if reachedlogin unless we support multiple connections
311 self.logger.debug("QEMU socket disconnected before login banner reached. (%s)" %
312 time.strftime("%D %H:%M:%S"))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500313 socklist.remove(sock)
314 sock.close()
315 stopread = True
316
317
318 if not reachedlogin:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400319 if time.time() >= endtime:
320 self.logger.debug("Target didn't reach login banner in %d seconds (%s)" %
321 (self.boottime, time.strftime("%D %H:%M:%S")))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500322 tail = lambda l: "\n".join(l.splitlines()[-25:])
323 # in case bootlog is empty, use tail qemu log store at self.msg
324 lines = tail(bootlog if bootlog else self.msg)
325 self.logger.debug("Last 25 lines of text:\n%s" % lines)
326 self.logger.debug("Check full boot log: %s" % self.logfile)
327 self._dump_host()
328 self.stop()
329 return False
330
331 # If we are not able to login the tests can continue
332 try:
333 (status, output) = self.run_serial("root\n", raw=True)
334 if re.search("root@[a-zA-Z0-9\-]+:~#", output):
335 self.logged = True
336 self.logger.debug("Logged as root in serial console")
337 if netconf:
338 # configure guest networking
339 cmd = "ifconfig eth0 %s netmask %s up\n" % (self.ip, self.netmask)
340 output = self.run_serial(cmd, raw=True)[1]
341 if re.search("root@[a-zA-Z0-9\-]+:~#", output):
342 self.logger.debug("configured ip address %s", self.ip)
343 else:
344 self.logger.debug("Couldn't configure guest networking")
345 else:
346 self.logger.debug("Couldn't login into serial console"
347 " as root using blank password")
348 except:
349 self.logger.debug("Serial console failed while trying to login")
350 return True
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500351
352 def stop(self):
353 self.stop_thread()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500354 self.stop_qemu_system()
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500355 if hasattr(self, "origchldhandler"):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500356 signal.signal(signal.SIGCHLD, self.origchldhandler)
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500357 if self.runqemu:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600358 if hasattr(self, "monitorpid"):
359 os.kill(self.monitorpid, signal.SIGKILL)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500360 self.logger.debug("Sending SIGTERM to runqemu")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600361 try:
362 os.killpg(os.getpgid(self.runqemu.pid), signal.SIGTERM)
363 except OSError as e:
364 if e.errno != errno.ESRCH:
365 raise
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500366 endtime = time.time() + self.runqemutime
367 while self.runqemu.poll() is None and time.time() < endtime:
368 time.sleep(1)
369 if self.runqemu.poll() is None:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500370 self.logger.debug("Sending SIGKILL to runqemu")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500371 os.killpg(os.getpgid(self.runqemu.pid), signal.SIGKILL)
372 self.runqemu = None
373 if hasattr(self, 'server_socket') and self.server_socket:
374 self.server_socket.close()
375 self.server_socket = None
376 self.qemupid = None
377 self.ip = None
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500378 if os.path.exists(self.qemu_pidfile):
379 os.remove(self.qemu_pidfile)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500380
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500381 def stop_qemu_system(self):
382 if self.qemupid:
383 try:
384 # qemu-system behaves well and a SIGTERM is enough
385 os.kill(self.qemupid, signal.SIGTERM)
386 except ProcessLookupError as e:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500387 self.logger.warn('qemu-system ended unexpectedly')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500388
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500389 def stop_thread(self):
390 if self.thread and self.thread.is_alive():
391 self.thread.stop()
392 self.thread.join()
393
394 def restart(self, qemuparams = None):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500395 self.logger.debug("Restarting qemu process")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500396 if self.runqemu.poll() is None:
397 self.stop()
398 if self.start(qemuparams):
399 return True
400 return False
401
402 def is_alive(self):
403 if not self.runqemu:
404 return False
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500405 if os.path.isfile(self.qemu_pidfile):
406 f = open(self.qemu_pidfile, 'r')
407 qemu_pid = f.read()
408 f.close()
409 qemupid = int(qemu_pid)
410 if os.path.exists("/proc/" + str(qemupid)):
411 self.qemupid = qemupid
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500412 return True
413 return False
414
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500415 def run_serial(self, command, raw=False, timeout=5):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500416 # We assume target system have echo to get command status
417 if not raw:
418 command = "%s; echo $?\n" % command
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500419
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500420 data = ''
421 status = 0
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600422 self.server_socket.sendall(command.encode('utf-8'))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500423 start = time.time()
424 end = start + timeout
425 while True:
426 now = time.time()
427 if now >= end:
428 data += "<<< run_serial(): command timed out after %d seconds without output >>>\r\n\r\n" % timeout
429 break
430 try:
431 sread, _, _ = select.select([self.server_socket],[],[], end - now)
432 except InterruptedError:
433 continue
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500434 if sread:
435 answer = self.server_socket.recv(1024)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500436 if answer:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600437 data += answer.decode('utf-8')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500438 # Search the prompt to stop
439 if re.search("[a-zA-Z0-9]+@[a-zA-Z0-9\-]+:~#", data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500440 break
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500441 else:
442 raise Exception("No data on serial console socket")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500443
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500444 if data:
445 if raw:
446 status = 1
447 else:
448 # Remove first line (command line) and last line (prompt)
449 data = data[data.find('$?\r\n')+4:data.rfind('\r\n')]
450 index = data.rfind('\r\n')
451 if index == -1:
452 status_cmd = data
453 data = ""
454 else:
455 status_cmd = data[index+2:]
456 data = data[:index]
457 if (status_cmd == "0"):
458 status = 1
459 return (status, str(data))
460
461
462 def _dump_host(self):
463 self.host_dumper.create_dir("qemu")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500464 self.logger.warn("Qemu ended unexpectedly, dump data from host"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500465 " is in %s" % self.host_dumper.dump_dir)
466 self.host_dumper.dump_host()
467
468# This class is for reading data from a socket and passing it to logfunc
469# to be processed. It's completely event driven and has a straightforward
470# event loop. The mechanism for stopping the thread is a simple pipe which
471# will wake up the poll and allow for tearing everything down.
472class LoggingThread(threading.Thread):
473 def __init__(self, logfunc, sock, logger):
474 self.connection_established = threading.Event()
475 self.serversock = sock
476 self.logfunc = logfunc
477 self.logger = logger
478 self.readsock = None
479 self.running = False
480
481 self.errorevents = select.POLLERR | select.POLLHUP | select.POLLNVAL
482 self.readevents = select.POLLIN | select.POLLPRI
483
484 threading.Thread.__init__(self, target=self.threadtarget)
485
486 def threadtarget(self):
487 try:
488 self.eventloop()
489 finally:
490 self.teardown()
491
492 def run(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500493 self.logger.debug("Starting logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500494 self.readpipe, self.writepipe = os.pipe()
495 threading.Thread.run(self)
496
497 def stop(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500498 self.logger.debug("Stopping logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500499 if self.running:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600500 os.write(self.writepipe, bytes("stop", "utf-8"))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500501
502 def teardown(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500503 self.logger.debug("Tearing down logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500504 self.close_socket(self.serversock)
505
506 if self.readsock is not None:
507 self.close_socket(self.readsock)
508
509 self.close_ignore_error(self.readpipe)
510 self.close_ignore_error(self.writepipe)
511 self.running = False
512
513 def eventloop(self):
514 poll = select.poll()
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500515 event_read_mask = self.errorevents | self.readevents
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500516 poll.register(self.serversock.fileno())
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500517 poll.register(self.readpipe, event_read_mask)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500518
519 breakout = False
520 self.running = True
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500521 self.logger.debug("Starting thread event loop")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500522 while not breakout:
523 events = poll.poll()
524 for event in events:
525 # An error occurred, bail out
526 if event[1] & self.errorevents:
527 raise Exception(self.stringify_event(event[1]))
528
529 # Event to stop the thread
530 if self.readpipe == event[0]:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500531 self.logger.debug("Stop event received")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500532 breakout = True
533 break
534
535 # A connection request was received
536 elif self.serversock.fileno() == event[0]:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500537 self.logger.debug("Connection request received")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500538 self.readsock, _ = self.serversock.accept()
539 self.readsock.setblocking(0)
540 poll.unregister(self.serversock.fileno())
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500541 poll.register(self.readsock.fileno(), event_read_mask)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500542
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500543 self.logger.debug("Setting connection established event")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500544 self.connection_established.set()
545
546 # Actual data to be logged
547 elif self.readsock.fileno() == event[0]:
548 data = self.recv(1024)
549 self.logfunc(data)
550
551 # Since the socket is non-blocking make sure to honor EAGAIN
552 # and EWOULDBLOCK.
553 def recv(self, count):
554 try:
555 data = self.readsock.recv(count)
556 except socket.error as e:
557 if e.errno == errno.EAGAIN or e.errno == errno.EWOULDBLOCK:
558 return ''
559 else:
560 raise
561
562 if data is None:
563 raise Exception("No data on read ready socket")
564 elif not data:
565 # This actually means an orderly shutdown
566 # happened. But for this code it counts as an
567 # error since the connection shouldn't go away
568 # until qemu exits.
569 raise Exception("Console connection closed unexpectedly")
570
571 return data
572
573 def stringify_event(self, event):
574 val = ''
575 if select.POLLERR == event:
576 val = 'POLLER'
577 elif select.POLLHUP == event:
578 val = 'POLLHUP'
579 elif select.POLLNVAL == event:
580 val = 'POLLNVAL'
581 return val
582
583 def close_socket(self, sock):
584 sock.shutdown(socket.SHUT_RDWR)
585 sock.close()
586
587 def close_ignore_error(self, fd):
588 try:
589 os.close(fd)
590 except OSError:
591 pass