blob: b87d7765e7e2cfaeb89f4caa4cb0403b8cd6491d [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:
Brad Bishopf86d0552018-12-04 14:18:15 -0800138 self.threadsock, threadport = self.create_socket()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500139 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()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500206 self.logger.debug("Output from runqemu:\n%s" % self.getOutput(output))
Brad Bishopf86d0552018-12-04 14:18:15 -0800207 self.stop()
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()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500219 op = self.getOutput(output)
Brad Bishopf86d0552018-12-04 14:18:15 -0800220 self.stop()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500221 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:
Brad Bishopf86d0552018-12-04 14:18:15 -0800241 ips = re.findall(r"((?:[0-9]{1,3}\.){3}[0-9]{1,3})", cmdline.split("ip=")[1])
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500242 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
Brad Bishopf86d0552018-12-04 14:18:15 -0800247 match = re.match(r'.*Network configuration: ([0-9.]+)::([0-9.]+):([0-9.]+)$.*',
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500248 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
Brad Bishopf86d0552018-12-04 14:18:15 -0800266 self.thread = LoggingThread(self.log, self.threadsock, self.logger)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500267 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)
Brad Bishopf86d0552018-12-04 14:18:15 -0800334 if re.search(r"root@[a-zA-Z0-9\-]+:~#", output):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500335 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]
Brad Bishopf86d0552018-12-04 14:18:15 -0800341 if re.search(r"root@[a-zA-Z0-9\-]+:~#", output):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500342 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)
Brad Bishopf86d0552018-12-04 14:18:15 -0800372 self.runqemu.stdin.close()
373 self.runqemu.stdout.close()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500374 self.runqemu = None
Brad Bishopf86d0552018-12-04 14:18:15 -0800375
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500376 if hasattr(self, 'server_socket') and self.server_socket:
377 self.server_socket.close()
378 self.server_socket = None
Brad Bishopf86d0552018-12-04 14:18:15 -0800379 if hasattr(self, 'threadsock') and self.threadsock:
380 self.threadsock.close()
381 self.threadsock = None
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500382 self.qemupid = None
383 self.ip = None
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500384 if os.path.exists(self.qemu_pidfile):
385 os.remove(self.qemu_pidfile)
Brad Bishopf86d0552018-12-04 14:18:15 -0800386 if self.monitorpipe:
387 self.monitorpipe.close()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500388
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500389 def stop_qemu_system(self):
390 if self.qemupid:
391 try:
392 # qemu-system behaves well and a SIGTERM is enough
393 os.kill(self.qemupid, signal.SIGTERM)
394 except ProcessLookupError as e:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500395 self.logger.warn('qemu-system ended unexpectedly')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500396
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500397 def stop_thread(self):
398 if self.thread and self.thread.is_alive():
399 self.thread.stop()
400 self.thread.join()
401
402 def restart(self, qemuparams = None):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500403 self.logger.debug("Restarting qemu process")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500404 if self.runqemu.poll() is None:
405 self.stop()
406 if self.start(qemuparams):
407 return True
408 return False
409
410 def is_alive(self):
411 if not self.runqemu:
412 return False
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500413 if os.path.isfile(self.qemu_pidfile):
414 f = open(self.qemu_pidfile, 'r')
415 qemu_pid = f.read()
416 f.close()
417 qemupid = int(qemu_pid)
418 if os.path.exists("/proc/" + str(qemupid)):
419 self.qemupid = qemupid
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500420 return True
421 return False
422
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500423 def run_serial(self, command, raw=False, timeout=5):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500424 # We assume target system have echo to get command status
425 if not raw:
426 command = "%s; echo $?\n" % command
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500427
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500428 data = ''
429 status = 0
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600430 self.server_socket.sendall(command.encode('utf-8'))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500431 start = time.time()
432 end = start + timeout
433 while True:
434 now = time.time()
435 if now >= end:
436 data += "<<< run_serial(): command timed out after %d seconds without output >>>\r\n\r\n" % timeout
437 break
438 try:
439 sread, _, _ = select.select([self.server_socket],[],[], end - now)
440 except InterruptedError:
441 continue
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500442 if sread:
443 answer = self.server_socket.recv(1024)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500444 if answer:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600445 data += answer.decode('utf-8')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500446 # Search the prompt to stop
Brad Bishopf86d0552018-12-04 14:18:15 -0800447 if re.search(r"[a-zA-Z0-9]+@[a-zA-Z0-9\-]+:~#", data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500448 break
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500449 else:
450 raise Exception("No data on serial console socket")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500451
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500452 if data:
453 if raw:
454 status = 1
455 else:
456 # Remove first line (command line) and last line (prompt)
457 data = data[data.find('$?\r\n')+4:data.rfind('\r\n')]
458 index = data.rfind('\r\n')
459 if index == -1:
460 status_cmd = data
461 data = ""
462 else:
463 status_cmd = data[index+2:]
464 data = data[:index]
465 if (status_cmd == "0"):
466 status = 1
467 return (status, str(data))
468
469
470 def _dump_host(self):
471 self.host_dumper.create_dir("qemu")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500472 self.logger.warn("Qemu ended unexpectedly, dump data from host"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500473 " is in %s" % self.host_dumper.dump_dir)
474 self.host_dumper.dump_host()
475
476# This class is for reading data from a socket and passing it to logfunc
477# to be processed. It's completely event driven and has a straightforward
478# event loop. The mechanism for stopping the thread is a simple pipe which
479# will wake up the poll and allow for tearing everything down.
480class LoggingThread(threading.Thread):
481 def __init__(self, logfunc, sock, logger):
482 self.connection_established = threading.Event()
483 self.serversock = sock
484 self.logfunc = logfunc
485 self.logger = logger
486 self.readsock = None
487 self.running = False
488
489 self.errorevents = select.POLLERR | select.POLLHUP | select.POLLNVAL
490 self.readevents = select.POLLIN | select.POLLPRI
491
492 threading.Thread.__init__(self, target=self.threadtarget)
493
494 def threadtarget(self):
495 try:
496 self.eventloop()
497 finally:
498 self.teardown()
499
500 def run(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500501 self.logger.debug("Starting logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500502 self.readpipe, self.writepipe = os.pipe()
503 threading.Thread.run(self)
504
505 def stop(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500506 self.logger.debug("Stopping logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500507 if self.running:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600508 os.write(self.writepipe, bytes("stop", "utf-8"))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500509
510 def teardown(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500511 self.logger.debug("Tearing down logging thread")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500512 self.close_socket(self.serversock)
513
514 if self.readsock is not None:
515 self.close_socket(self.readsock)
516
517 self.close_ignore_error(self.readpipe)
518 self.close_ignore_error(self.writepipe)
519 self.running = False
520
521 def eventloop(self):
522 poll = select.poll()
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500523 event_read_mask = self.errorevents | self.readevents
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500524 poll.register(self.serversock.fileno())
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500525 poll.register(self.readpipe, event_read_mask)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500526
527 breakout = False
528 self.running = True
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500529 self.logger.debug("Starting thread event loop")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500530 while not breakout:
531 events = poll.poll()
532 for event in events:
533 # An error occurred, bail out
534 if event[1] & self.errorevents:
535 raise Exception(self.stringify_event(event[1]))
536
537 # Event to stop the thread
538 if self.readpipe == event[0]:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500539 self.logger.debug("Stop event received")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500540 breakout = True
541 break
542
543 # A connection request was received
544 elif self.serversock.fileno() == event[0]:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500545 self.logger.debug("Connection request received")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500546 self.readsock, _ = self.serversock.accept()
547 self.readsock.setblocking(0)
548 poll.unregister(self.serversock.fileno())
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500549 poll.register(self.readsock.fileno(), event_read_mask)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500550
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500551 self.logger.debug("Setting connection established event")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500552 self.connection_established.set()
553
554 # Actual data to be logged
555 elif self.readsock.fileno() == event[0]:
556 data = self.recv(1024)
557 self.logfunc(data)
558
559 # Since the socket is non-blocking make sure to honor EAGAIN
560 # and EWOULDBLOCK.
561 def recv(self, count):
562 try:
563 data = self.readsock.recv(count)
564 except socket.error as e:
565 if e.errno == errno.EAGAIN or e.errno == errno.EWOULDBLOCK:
566 return ''
567 else:
568 raise
569
570 if data is None:
571 raise Exception("No data on read ready socket")
572 elif not data:
573 # This actually means an orderly shutdown
574 # happened. But for this code it counts as an
575 # error since the connection shouldn't go away
576 # until qemu exits.
577 raise Exception("Console connection closed unexpectedly")
578
579 return data
580
581 def stringify_event(self, event):
582 val = ''
583 if select.POLLERR == event:
584 val = 'POLLER'
585 elif select.POLLHUP == event:
586 val = 'POLLHUP'
587 elif select.POLLNVAL == event:
588 val = 'POLLNVAL'
589 return val
590
591 def close_socket(self, sock):
592 sock.shutdown(socket.SHUT_RDWR)
593 sock.close()
594
595 def close_ignore_error(self, fd):
596 try:
597 os.close(fd)
598 except OSError:
599 pass