blob: d4d271369fe553227fdba12fa05f555b6b380cf7 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: MIT
5#
6
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007import os
8import sys
Andrew Geisslerc926e172021-05-07 16:11:35 -05009import json
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010import errno
11import datetime
12import itertools
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013from .commands import runCmd
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015class BaseDumper(object):
16 """ Base class to dump commands from host/target """
17
18 def __init__(self, cmds, parent_dir):
19 self.cmds = []
Patrick Williamsf1e5d692016-03-30 15:21:19 -050020 # Some testing doesn't inherit testimage, so it is needed
21 # to set some defaults.
Brad Bishop977dc1a2019-02-06 16:01:43 -050022 self.parent_dir = parent_dir
Andrew Geissler5f350902021-07-23 13:09:54 -040023 self.dump_dir = parent_dir
Patrick Williamsf1e5d692016-03-30 15:21:19 -050024 dft_cmds = """ top -bn1
25 iostat -x -z -N -d -p ALL 20 2
26 ps -ef
27 free
28 df
29 memstat
30 dmesg
31 ip -s link
32 netstat -an"""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033 if not cmds:
Patrick Williamsf1e5d692016-03-30 15:21:19 -050034 cmds = dft_cmds
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035 for cmd in cmds.split('\n'):
36 cmd = cmd.lstrip()
37 if not cmd or cmd[0] == '#':
38 continue
39 self.cmds.append(cmd)
40
41 def create_dir(self, dir_suffix):
42 dump_subdir = ("%s_%s" % (
43 datetime.datetime.now().strftime('%Y%m%d%H%M'),
44 dir_suffix))
45 dump_dir = os.path.join(self.parent_dir, dump_subdir)
46 try:
47 os.makedirs(dump_dir)
48 except OSError as err:
49 if err.errno != errno.EEXIST:
50 raise err
51 self.dump_dir = dump_dir
52
Andrew Geissler5f350902021-07-23 13:09:54 -040053 def _construct_filename(self, command):
Andrew Geissler8f840682023-07-21 09:09:43 -050054 if isinstance(self, TargetDumper):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055 prefix = "target"
Andrew Geisslerc926e172021-05-07 16:11:35 -050056 elif isinstance(self, MonitorDumper):
57 prefix = "qmp"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050058 else:
59 prefix = "unknown"
60 for i in itertools.count():
61 filename = "%s_%02d_%s" % (prefix, i, command)
62 fullname = os.path.join(self.dump_dir, filename)
63 if not os.path.exists(fullname):
64 break
Andrew Geissler5f350902021-07-23 13:09:54 -040065 return fullname
66
67 def _write_dump(self, command, output):
68 fullname = self._construct_filename(command)
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000069 os.makedirs(os.path.dirname(fullname), exist_ok=True)
Andrew Geisslerc926e172021-05-07 16:11:35 -050070 if isinstance(self, MonitorDumper):
71 with open(fullname, 'w') as json_file:
72 json.dump(output, json_file, indent=4)
73 else:
74 with open(fullname, 'w') as dump_file:
75 dump_file.write(output)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077class TargetDumper(BaseDumper):
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060078 """ Class to get dumps from target, it only works with QemuRunner.
79 Will give up permanently after 5 errors from running commands over
80 serial console. This helps to end testing when target is really dead, hanging
81 or unresponsive.
82 """
Patrick Williamsc124f4f2015-09-15 14:41:29 -050083
Brad Bishop6e60e8b2018-02-01 10:27:11 -050084 def __init__(self, cmds, parent_dir, runner):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085 super(TargetDumper, self).__init__(cmds, parent_dir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050086 self.runner = runner
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060087 self.errors = 0
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088
89 def dump_target(self, dump_dir=""):
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060090 if self.errors >= 5:
91 print("Too many errors when dumping data from target, assuming it is dead! Will not dump data anymore!")
92 return
Patrick Williamsc124f4f2015-09-15 14:41:29 -050093 if dump_dir:
94 self.dump_dir = dump_dir
95 for cmd in self.cmds:
96 # We can continue with the testing if serial commands fail
97 try:
98 (status, output) = self.runner.run_serial(cmd)
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060099 if status == 0:
100 self.errors = self.errors + 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101 self._write_dump(cmd.split()[0], output)
102 except:
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600103 self.errors = self.errors + 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104 print("Tried to dump info from target but "
105 "serial console failed")
Andrew Geisslerc926e172021-05-07 16:11:35 -0500106 print("Failed CMD: %s" % (cmd))
107
108class MonitorDumper(BaseDumper):
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600109 """ Class to get dumps via the Qemu Monitor, it only works with QemuRunner
110 Will stop completely if there are more than 5 errors when dumping monitor data.
111 This helps to end testing when target is really dead, hanging or unresponsive.
112 """
Andrew Geisslerc926e172021-05-07 16:11:35 -0500113
114 def __init__(self, cmds, parent_dir, runner):
115 super(MonitorDumper, self).__init__(cmds, parent_dir)
116 self.runner = runner
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600117 self.errors = 0
Andrew Geisslerc926e172021-05-07 16:11:35 -0500118
119 def dump_monitor(self, dump_dir=""):
120 if self.runner is None:
121 return
122 if dump_dir:
123 self.dump_dir = dump_dir
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600124 if self.errors >= 5:
125 print("Too many errors when dumping data from qemu monitor, assuming it is dead! Will not dump data anymore!")
126 return
Andrew Geisslerc926e172021-05-07 16:11:35 -0500127 for cmd in self.cmds:
Andrew Geissler5f350902021-07-23 13:09:54 -0400128 cmd_name = cmd.split()[0]
Andrew Geisslerc926e172021-05-07 16:11:35 -0500129 try:
Andrew Geissler5f350902021-07-23 13:09:54 -0400130 if len(cmd.split()) > 1:
131 cmd_args = cmd.split()[1]
132 if "%s" in cmd_args:
133 filename = self._construct_filename(cmd_name)
134 cmd_data = json.loads(cmd_args % (filename))
135 output = self.runner.run_monitor(cmd_name, cmd_data)
136 else:
137 output = self.runner.run_monitor(cmd_name)
138 self._write_dump(cmd_name, output)
139 except Exception as e:
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600140 self.errors = self.errors + 1
Andrew Geissler595f6302022-01-24 19:11:47 +0000141 print("Failed to dump QMP CMD: %s with\nException: %s" % (cmd_name, e))