blob: d35c9d8d30fc6b23ea1cfde5419f7870e0a8b6f8 [file] [log] [blame]
George Keishing4346a412016-07-19 11:26:49 -05001#!/usr/bin/python
Gunnar Millsa812e0f2016-09-29 20:30:03 -05002r"""
George Keishing4346a412016-07-19 11:26:49 -05003#############################################################
4# @file openbmc_ffdc_list.py
George Keishing4346a412016-07-19 11:26:49 -05005#
6# @brief List for FFDC ( First failure data capture )
7# commands and files to be collected as a part
8# of the test case failure.
9#############################################################
Gunnar Millsa812e0f2016-09-29 20:30:03 -050010"""
George Keishing4346a412016-07-19 11:26:49 -050011
Gunnar Millsa812e0f2016-09-29 20:30:03 -050012# -------------------
George Keishing4346a412016-07-19 11:26:49 -050013# FFDC default list
Gunnar Millsa812e0f2016-09-29 20:30:03 -050014# -------------------
George Keishing4346a412016-07-19 11:26:49 -050015
Gunnar Millsa812e0f2016-09-29 20:30:03 -050016# -----------------------------------------------------------------
17# Dict Name { Index string : { Key String : Comand string} }
18# -----------------------------------------------------------------
George Keishing69e6f712016-09-12 06:30:09 -050019# Add cmd's needed to be part of the ffdc report manifest file
20FFDC_BMC_CMD = {
Gunnar Millsa812e0f2016-09-29 20:30:03 -050021 'DRIVER INFO':
22 {
23 # String Name Command
Gunnar Millsa812e0f2016-09-29 20:30:03 -050024 'FW Level': 'cat /etc/os-release',
George Keishingc5ab1b62017-08-16 13:51:14 -050025 'FW Timestamp': 'cat /etc/timestamp',
Gunnar Millsa812e0f2016-09-29 20:30:03 -050026 },
27 'BMC DATA':
28 {
29 'BMC OS': 'uname -a',
30 'BMC Uptime': 'uptime',
Gunnar Millsa812e0f2016-09-29 20:30:03 -050031 'BMC File System Disk Space Usage': 'df -hT',
32 },
33 'APPLICATION DATA':
34 {
Michael Walshe53e47a2017-06-30 17:03:24 -050035 'BMC state': '/usr/sbin/obmcutil state',
Gunnar Millsa812e0f2016-09-29 20:30:03 -050036 },
37}
George Keishing4346a412016-07-19 11:26:49 -050038
George Keishing69e6f712016-09-12 06:30:09 -050039# Add file name and correcponding command needed for BMC
40FFDC_BMC_FILE = {
Gunnar Millsa812e0f2016-09-29 20:30:03 -050041 'BMC FILES':
42 {
43 # File Name Command
44 'BMC_proc_list': 'top -n 1 -b',
George Keishing158a76c2017-07-18 00:53:37 -050045 'BMC_proc_fd_active_list': 'ls -Al /proc/*/fd/',
George Keishingf6cc55e2017-08-30 04:16:21 -050046 'BMC_journalctl_nopager': 'journalctl --no-pager',
47 'BMC_journalctl_pretty': 'journalctl -o json-pretty',
Gunnar Millsa812e0f2016-09-29 20:30:03 -050048 'BMC_dmesg': 'dmesg',
Gunnar Millsaca140d2016-10-26 13:05:10 -050049 'BMC_procinfo': 'cat /proc/cpuinfo',
50 'BMC_meminfo': 'cat /proc/meminfo',
Gunnar Millsa812e0f2016-09-29 20:30:03 -050051 },
52}
53
Gunnar Mills7e2cda22016-10-11 15:37:34 -050054# Add file name and correcponding command needed for all Linux distributions
55FFDC_OS_ALL_DISTROS_FILE = {
56 'OS FILES':
57 {
58 # File Name Command
59 'OS_msglog': 'cat /sys/firmware/opal/msglog',
60 'OS_cpufrequency': 'ppc64_cpu --frequency',
61 'OS_dmesg': 'dmesg',
62 'OS_boot': 'cat /var/log/boot.log',
Gunnar Millsaca140d2016-10-26 13:05:10 -050063 'OS_procinfo': 'cat /proc/cpuinfo',
64 'OS_meminfo': 'cat /proc/meminfo',
65 'OS_netstat': 'netstat -a',
Steven Sombar60ade082017-08-16 11:27:26 -050066 'OS_lspci': 'lspci',
67 'OS_lscpu': 'lscpu',
68 'OS_lscfg': 'lscfg',
Gunnar Mills7e2cda22016-10-11 15:37:34 -050069 },
70}
71
Gunnar Millscce185d2016-10-17 17:04:15 -050072# Add file name and correcponding command needed for Ubuntu Linux
73FFDC_OS_UBUNTU_FILE = {
74 'OS FILES':
75 {
76 # File Name Command
77 'OS_isusb': 'lsusb -t ; lsusb -v',
78 'OS_kern': 'tail -n 50000 /var/log/kern.log',
79 'OS_authlog': 'cat /var/log/auth.log; cat /var/log/auth.log.1',
80 'OS_syslog': 'tail -n 200000 /var/log/syslog',
81 'OS_info': 'uname -a; dpkg -s opal-prd; dpkg -s ipmitool',
82 },
83}
84
85# Add file name and correcponding command needed for RHEL Linux
86FFDC_OS_RHEL_FILE = {
87 'OS FILES':
88 {
89 # File Name Command
90 'OS_rsct': '/usr/bin/ctversion -bv',
91 'OS_secure': 'cat /var/log/secure',
92 'OS_syslog': 'tail -n 200000 /var/log/messages',
93 'OS_info': 'lsb_release -a; cat /etc/redhat-release; uname -a; rpm -qa',
94 },
95}
96
97# Add file name and correcponding command needed for RHEL Linux
98FFDC_OS_IBM_POWERKVM_FILE = {
99 'OS FILES':
100 {
101 # File Name Command
102 'OS_secure': 'cat /var/log/secure',
103 'OS_syslog': 'tail -n 200000 /var/log/messages',
104 'OS_info': 'lsb_release -a; uname -a; rpm -qa',
105 },
106}
107
George Keishing136bcc62016-11-23 08:34:16 -0600108# Enable when ready with openbmc/openbmc-test-automation#203
109# replace with new path /xyz/openbmc_project
110OPENBMC_BASE = '/org/openbmc/'
George Keishingfe5724d2016-11-23 09:25:36 -0600111ENUMERATE_SENSORS = OPENBMC_BASE + 'sensors/enumerate'
George Keishing7f7040c2017-02-20 10:23:56 -0600112# TODO: Use the xyz enums once moved to xyz completely
113# ENUMERATE_SYSTEMS = OPENBMC_BASE + 'inventory/enumerate'
George Keishingc06fc992017-02-22 09:01:08 -0600114ENUMERATE_SYSTEMS = '/xyz/openbmc_project/inventory/enumerate'
115ENUMERATE_ELOG = '/xyz/openbmc_project/logging/entry/enumerate'
George Keishingfe5724d2016-11-23 09:25:36 -0600116ENUMERATE_EVENTS = OPENBMC_BASE + 'records/events/enumerate'
117ENUMERATE_LED = OPENBMC_BASE + 'control/led/enumerate'
118
George Keishing49e24a72017-08-09 11:37:42 -0500119# Sensors/control data.
120ENUMERATE_SENSOR = '/xyz/openbmc_project/sensors/enumerate'
121ENUMERATE_CONTROL = '/xyz/openbmc_project/control/enumerate'
122
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500123# Add file name and correcponding Get Request
124FFDC_GET_REQUEST = {
125 'GET REQUESTS':
126 {
127 # File Name Command
George Keishingfe5724d2016-11-23 09:25:36 -0600128 'BMC_sensor_list': ENUMERATE_SENSORS,
George Keishing49e24a72017-08-09 11:37:42 -0500129 'BMC_sensor_xyz_list': ENUMERATE_SENSOR,
130 'BMC_control_list': ENUMERATE_CONTROL,
George Keishingfe5724d2016-11-23 09:25:36 -0600131 'BMC_inventory': ENUMERATE_SYSTEMS,
George Keishingc06fc992017-02-22 09:01:08 -0600132 'BMC_elog': ENUMERATE_ELOG,
George Keishingfe5724d2016-11-23 09:25:36 -0600133 'BMC_led': ENUMERATE_EVENTS,
134 'BMC_record_log': ENUMERATE_LED,
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500135 },
136}
137
George Keishing69e6f712016-09-12 06:30:09 -0500138
139# Define your keywords in method/utils and call here
140FFDC_METHOD_CALL = {
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500141 'BMC LOGS':
142 {
143 # Description Keyword name
144 'FFDC Generic Report': 'BMC FFDC Manifest',
145 'BMC Specific Files': 'BMC FFDC Files',
146 'Get Request FFDC': 'BMC FFDC Get Requests',
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500147 'OS FFDC': 'OS FFDC Files',
George Keishing7a520222017-02-27 09:44:30 -0600148 'Core Files': 'SCP Coredump Files',
George Keishingeb7b4bc2017-03-13 12:04:28 -0500149 'SEL Log': 'Collect eSEL Log',
Steven Sombar96de5732017-08-17 09:04:52 -0500150 'Sys Inventory Files': 'System Inventory Files',
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500151 },
152}
George Keishing4346a412016-07-19 11:26:49 -0500153
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500154# -----------------------------------------------------------------
George Keishing4346a412016-07-19 11:26:49 -0500155
156
157# base class for FFDC default list
158class openbmc_ffdc_list():
159
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500160 def get_ffdc_bmc_cmd(self, i_type):
161 r"""
162 ########################################################################
163 # @brief This method returns the list from the dictionary for cmds
164 # @param i_type: @type string: string index lookup
165 # @return List of key pair from the dictionary
166 ########################################################################
167 """
George Keishing69e6f712016-09-12 06:30:09 -0500168 return FFDC_BMC_CMD[i_type].items()
George Keishing4346a412016-07-19 11:26:49 -0500169
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500170 def get_ffdc_bmc_file(self, i_type):
171 r"""
172 ########################################################################
173 # @brief This method returns the list from the dictionary for scp
174 # @param i_type: @type string: string index lookup
175 # @return List of key pair from the dictionary
176 ########################################################################
177 """
George Keishing69e6f712016-09-12 06:30:09 -0500178 return FFDC_BMC_FILE[i_type].items()
George Keishing4346a412016-07-19 11:26:49 -0500179
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500180 def get_ffdc_get_request(self, i_type):
181 r"""
182 ########################################################################
183 # @brief This method returns the list from the dictionary for scp
184 # @param i_type: @type string: string index lookup
185 # @return List of key pair from the dictionary
186 ########################################################################
187 """
188 return FFDC_GET_REQUEST[i_type].items()
189
George Keishing69e6f712016-09-12 06:30:09 -0500190 def get_ffdc_cmd_index(self):
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500191 r"""
192 ########################################################################
193 # @brief This method returns the list index from dictionary
194 # @return List of index to the dictionary
195 ########################################################################
196 """
George Keishing69e6f712016-09-12 06:30:09 -0500197 return FFDC_BMC_CMD.keys()
198
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500199 def get_ffdc_get_request_index(self):
200 r"""
201 ########################################################################
202 # @brief This method returns the list index from dictionary
203 # @return List of index to the dictionary
204 ########################################################################
205 """
206 return FFDC_GET_REQUEST.keys()
207
George Keishing69e6f712016-09-12 06:30:09 -0500208 def get_ffdc_file_index(self):
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500209 r"""
210 ########################################################################
211 # @brief This method returns the list index from dictionary
212 # @return List of index to the dictionary
213 ########################################################################
214 """
George Keishing69e6f712016-09-12 06:30:09 -0500215 return FFDC_BMC_FILE.keys()
216
George Keishing69e6f712016-09-12 06:30:09 -0500217 def get_ffdc_method_index(self):
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500218 r"""
219 ########################################################################
220 # @brief This method returns the key pair from the dictionary
221 # @return Index of the method dictionary
222 ########################################################################
223 """
George Keishing69e6f712016-09-12 06:30:09 -0500224 return FFDC_METHOD_CALL.keys()
225
Michael Walshe844e9a2017-04-20 16:51:10 -0500226 def get_ffdc_method_desc(self,
227 index):
228 r"""
229 ########################################################################
230 # @brief This method returns the just the keys from the dictionary.
231 # @return List of ffdc descriptions.
232 ########################################################################
233 """
234 return FFDC_METHOD_CALL[index].keys()
235
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500236 def get_ffdc_method_call(self, i_type):
237 r"""
238 ########################################################################
239 # @brief This method returns the key pair from the dictionary
240 # @return List of key pair keywords
241 ########################################################################
242 """
George Keishing69e6f712016-09-12 06:30:09 -0500243 return FFDC_METHOD_CALL[i_type].items()
George Keishing4346a412016-07-19 11:26:49 -0500244
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500245 def get_ffdc_os_all_distros_index(self):
246 r"""
247 ########################################################################
248 # @brief This method returns the key pair from the dictionary
249 # @return Index of the method dictionary
250 ########################################################################
251 """
252 return FFDC_OS_ALL_DISTROS_FILE.keys()
253
254 def get_ffdc_os_all_distros_call(self, i_type):
255 r"""
256 ########################################################################
257 # @brief This method returns the key pair from the dictionary
258 # @return List of key pair keywords
259 ########################################################################
260 """
261 return FFDC_OS_ALL_DISTROS_FILE[i_type].items()
262
Gunnar Millscce185d2016-10-17 17:04:15 -0500263 def get_ffdc_os_distro_index(self, distro):
264 r"""
265 ########################################################################
266 # @brief This method returns the key pair from the dictionary
267 # @return Index of the method dictionary
268 ########################################################################
269 """
270 distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE"
271 return eval(distro_file).keys()
272
273 def get_ffdc_os_distro_call(self, i_type, distro):
274 r"""
275 ########################################################################
276 # @brief This method returns the key pair from the dictionary
277 # @return List of key pair keywords
278 ########################################################################
279 """
280 distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE"
281 return eval(distro_file)[i_type].items()
282
George Keishing4346a412016-07-19 11:26:49 -0500283 def get_strip_string(self, i_str):
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500284 r"""
285 ########################################################################
286 # @brief Returns the stripped strings
287 # @param i_str: @type string: string name
288 # @return Remove all special chars and return the string
289 ########################################################################
290 """
George Keishing4346a412016-07-19 11:26:49 -0500291 return ''.join(e for e in i_str if e.isalnum())
George Keishing28da9482017-07-27 13:38:54 -0500292
293 def get_esel_index(self, esel_list):
294 r"""
295 #######################################################################
296 # @brief Returns the eSEL binary index.
297 # @param esel_ist: @type list: eSEL list.
298 # @return Index of "ESEL=" in the list.
299 #######################################################################
300 """
301 index = [i for i, str in enumerate(esel_list) if 'ESEL=' in str]
302 return index[0]