1e7e9171eSGeorge Keishing#!/usr/bin/env python3 2a812e0f2SGunnar Millsr""" 34346a413SGeorge Keishing# @file openbmc_ffdc_list.py 44346a413SGeorge Keishing# @brief List for FFDC ( First failure data capture ) 54346a413SGeorge Keishing# commands and files to be collected as a part 64346a413SGeorge Keishing# of the test case failure. 7a812e0f2SGunnar Mills""" 8c056c2bbSKonstantin Aladyshevimport os 9c056c2bbSKonstantin Aladyshev 106788049aSKonstantin Aladyshevfrom robot.libraries.BuiltIn import BuiltIn 116788049aSKonstantin Aladyshev 124346a413SGeorge Keishing# ------------------- 134346a413SGeorge Keishing# FFDC default list 144346a413SGeorge Keishing# ------------------- 154346a413SGeorge Keishing# ----------------------------------------------------------------- 1628e403b8SGunnar Mills# Dict Name { Index string : { Key String : Command string} } 174346a413SGeorge Keishing# ----------------------------------------------------------------- 1869e6f711SGeorge Keishing# Add cmd's needed to be part of the ffdc report manifest file 1969e6f711SGeorge KeishingFFDC_BMC_CMD = { 2020f38712SPatrick Williams "DRIVER INFO": { 2169e6f711SGeorge Keishing # String Name Command 2220f38712SPatrick Williams "FW Level": "cat /etc/os-release", 2320f38712SPatrick Williams "FW Timestamp": "cat /etc/timestamp", 244346a413SGeorge Keishing }, 2520f38712SPatrick Williams "BMC DATA": { 2620f38712SPatrick Williams "BMC OS": "uname -a", 2720f38712SPatrick Williams "BMC Uptime": "uptime;cat /proc/uptime", 2820f38712SPatrick Williams "BMC File System Disk Space Usage": "df -hT", 2920f38712SPatrick Williams "BMC Date Time": "date;/sbin/hwclock --show;/usr/bin/timedatectl", 304346a413SGeorge Keishing }, 3120f38712SPatrick Williams "APPLICATION DATA": { 3220f38712SPatrick Williams "BMC state": "/usr/bin/obmcutil state", 334346a413SGeorge Keishing }, 344346a413SGeorge Keishing} 35671dd661SGeorge Keishing# Add file name and corresponding command needed for BMC 3669e6f711SGeorge KeishingFFDC_BMC_FILE = { 3720f38712SPatrick Williams "BMC FILES": { 3869e6f711SGeorge Keishing # File Name Command 3920f38712SPatrick Williams "BMC_flash_side.txt": ( 4020f38712SPatrick Williams "cat /sys/class/watchdog/watchdog1/bootstatus" 4120f38712SPatrick Williams " >/tmp/BMC_flash_side.txt 2>&1" 4220f38712SPatrick Williams ), 4320f38712SPatrick Williams "BMC_hwmon.txt": ( 4420f38712SPatrick Williams "grep -r . /sys/class/hwmon/* >/tmp/BMC_hwmon.txt 2>&1" 4520f38712SPatrick Williams ), 4620f38712SPatrick Williams "BMC_proc_list.txt": "top -n 1 -b >/tmp/BMC_proc_list.txt 2>&1", 4720f38712SPatrick Williams "BMC_proc_fd_active_list.txt": ( 4820f38712SPatrick Williams "ls -Al /proc/*/fd/ >/tmp/BMC_proc_fd_active_list.txt 2>&1" 4920f38712SPatrick Williams ), 50*c42f5bf5SSridevi Ramesh "BMC_journalctl.txt": ( 51*c42f5bf5SSridevi Ramesh "journalctl -o short-precise >/tmp/BMC_journalctl.txt 2>&1" 5220f38712SPatrick Williams ), 5320f38712SPatrick Williams "BMC_journalctl_pretty.json": ( 5420f38712SPatrick Williams "journalctl -o json-pretty >/tmp/BMC_journalctl_pretty.json 2>&1" 5520f38712SPatrick Williams ), 5620f38712SPatrick Williams "BMC_dmesg.txt": "dmesg >/tmp/BMC_dmesg.txt 2>&1", 5720f38712SPatrick Williams "BMC_procinfo.txt": "cat /proc/cpuinfo >/tmp/BMC_procinfo.txt 2>&1", 5820f38712SPatrick Williams "BMC_meminfo.txt": "cat /proc/meminfo >/tmp/BMC_meminfo.txt 2>&1", 5920f38712SPatrick Williams "BMC_systemd.txt": "systemctl status --all >/tmp/BMC_systemd.txt 2>&1", 6020f38712SPatrick Williams "BMC_failed_service.txt": ( 6120f38712SPatrick Williams "systemctl list-units --failed >/tmp/BMC_failed_service.txt 2>&1" 6220f38712SPatrick Williams ), 6320f38712SPatrick Williams "BMC_list_service.txt": ( 6420f38712SPatrick Williams "systemctl list-jobs >/tmp/BMC_list_service.txt 2>&1" 6520f38712SPatrick Williams ), 6620f38712SPatrick Williams "BMC_obmc_console.txt": ( 6720f38712SPatrick Williams "cat /var/log/obmc-console.log >/tmp/BMC_obmc_console.txt 2>&1" 6820f38712SPatrick Williams ), 6920f38712SPatrick Williams "BMC_obmc_console1.txt": ( 7020f38712SPatrick Williams "cat /var/log/obmc-console1.log >/tmp/BMC_obmc_console1.txt 2>&1" 7120f38712SPatrick Williams ), 72ecf4428cSGeorge Keishing "vpd-inventory.txt": "vpd-tool -i >/tmp/vpd-inventory.txt 2>&1", 7320f38712SPatrick Williams "PEL_logs_list.json": "peltool -l >/tmp/PEL_logs_list.json 2>&1", 7420f38712SPatrick Williams "PEL_logs_complete_list.json": ( 7520f38712SPatrick Williams "peltool -l -a -f >/tmp/PEL_logs_complete_list.json 2>&1" 7620f38712SPatrick Williams ), 7720f38712SPatrick Williams "PEL_logs_display.json": "peltool -a >/tmp/PEL_logs_display.json 2>&1", 7820f38712SPatrick Williams "PEL_logs_complete_display.json": ( 7920f38712SPatrick Williams "peltool -a -f -h>/tmp/PEL_logs_complete_display.json 2>&1" 8020f38712SPatrick Williams ), 814afd655eSGeorge Keishing "PEL_logs_badPEL.txt": ( 824afd655eSGeorge Keishing "hexdump -C" 8320f38712SPatrick Williams + " /var/lib/phosphor-logging/extensions/pels/badPEL>/tmp/PEL_logs_badPEL.txt" 844afd655eSGeorge Keishing " 2>&1" 854afd655eSGeorge Keishing ), 8620f38712SPatrick Williams "PLDM_fru_record.txt": ( 8720f38712SPatrick Williams "pldmtool fru getfrurecordtable>/tmp/PLDM_fru_record.txt 2>&1" 8820f38712SPatrick Williams ), 8920f38712SPatrick Williams "BMC_pldm_flight_recorder.txt": ( 9020f38712SPatrick Williams "rm -rf /tmp/pldm_flight_recorder; killall -s SIGUSR1 pldmd;" 9120f38712SPatrick Williams + " sleep 5; cat /tmp/pldm_flight_recorder >" 924afd655eSGeorge Keishing " /tmp/BMC_pldm_flight_recorder.txt 2>&1;" 934afd655eSGeorge Keishing ), 944afd655eSGeorge Keishing "OCC_state.txt": ( 954afd655eSGeorge Keishing 'echo "OCC state check";for i in {0..3};' 9620f38712SPatrick Williams + " do (echo /org/open_power/control/occ$i;" 9720f38712SPatrick Williams + " busctl get-property org.open_power.OCC.Control" 9820f38712SPatrick Williams " /org/open_power/control/occ$i" 9920f38712SPatrick Williams + " org.open_power.OCC.Status OccActive) done > /tmp/OCC_state.txt" 1004afd655eSGeorge Keishing " 2>&1" 1014afd655eSGeorge Keishing ), 10220f38712SPatrick Williams "GUARD_list.txt": "guard -l > /tmp/GUARD_list.txt 2>&1", 10320f38712SPatrick Williams "fan_control_dump.json": "fanctl dump; sleep 5", 104326e41b1SGeorge Keishing "fan_monitor_dump.json": "killall -s SIGUSR1 phosphor-fan-monitor; sleep 5", 10520f38712SPatrick Williams "DEVTREE": ( 10620f38712SPatrick Williams "cat /var/lib/phosphor-software-manager/pnor/rw/DEVTREE >" 10720f38712SPatrick Williams " /tmp/DEVTREE 2>&1" 10820f38712SPatrick Williams ), 109706785cdSGeorge Keishing "kernel_sys_trace.txt": ( 110706785cdSGeorge Keishing "cat /sys/kernel/tracing/trace >/tmp/kernel_sys_trace.txt 2>&1" 111706785cdSGeorge Keishing ), 11269e6f711SGeorge Keishing }, 11369e6f711SGeorge Keishing} 114f9f661dbSGeorge Keishing# Add file name and corresponding command needed for all Linux distributions 1157e2cda2cSGunnar MillsFFDC_OS_ALL_DISTROS_FILE = { 11620f38712SPatrick Williams "OS FILES": { 1177e2cda2cSGunnar Mills # File Name Command 11820f38712SPatrick Williams "OS_msglog.txt": ( 11920f38712SPatrick Williams "cat /sys/firmware/opal/msglog >/tmp/OS_msglog.txt 2>&1" 12020f38712SPatrick Williams ), 1214afd655eSGeorge Keishing "OS_cpufrequency.txt": ( 1224afd655eSGeorge Keishing "ppc64_cpu --frequency >/tmp/OS_cpufrequency.txt 2>&1" 1234afd655eSGeorge Keishing ), 12420f38712SPatrick Williams "OS_dmesg.txt": "dmesg >/tmp/OS_dmesg.txt 2>&1", 12520f38712SPatrick Williams "OS_opal_prd.txt": "cat /var/log/opal-prd* >/tmp/OS_opal_prd.txt 2>&1", 12620f38712SPatrick Williams "OS_boot.txt": "cat /var/log/boot.log >/tmp/OS_boot.txt 2>&1", 12720f38712SPatrick Williams "OS_procinfo.txt": "cat /proc/cpuinfo >/tmp/OS_procinfo.txt 2>&1", 12820f38712SPatrick Williams "OS_meminfo.txt": "cat /proc/meminfo >/tmp/OS_meminfo.txt 2>&1", 12920f38712SPatrick Williams "OS_netstat.txt": "netstat -a >/tmp/OS_netstat.txt 2>&1", 13020f38712SPatrick Williams "OS_lspci.txt": "lspci >/tmp/OS_lspci.txt 2>&1", 13120f38712SPatrick Williams "OS_lscpu.txt": "lscpu >/tmp/OS_lscpu.txt 2>&1", 13220f38712SPatrick Williams "OS_lscfg.txt": "lscfg >/tmp/OS_lscfg.txt 2>&1", 1334afd655eSGeorge Keishing "OS_journalctl_nopager.txt": ( 1344afd655eSGeorge Keishing "journalctl --no-pager -b " 1354afd655eSGeorge Keishing + "> /tmp/OS_journalctl_nopager.txt 2>&1" 1364afd655eSGeorge Keishing ), 1377e2cda2cSGunnar Mills }, 1387e2cda2cSGunnar Mills} 139671dd661SGeorge Keishing# Add file name and corresponding command needed for Ubuntu Linux 140cce185d3SGunnar MillsFFDC_OS_UBUNTU_FILE = { 14120f38712SPatrick Williams "OS FILES": { 142cce185d3SGunnar Mills # File Name Command 14320f38712SPatrick Williams "OS_isusb.txt": "{ lsusb -t ; lsusb -v ; } >/tmp/OS_isusb.txt 2>&1", 14420f38712SPatrick Williams "OS_kern.txt": ( 14520f38712SPatrick Williams "tail -n 50000 /var/log/kern.log >/tmp/OS_kern.txt 2>&1" 14620f38712SPatrick Williams ), 14720f38712SPatrick Williams "OS_authlog.txt": ( 14820f38712SPatrick Williams "{ cat /var/log/auth.log; cat /var/log/auth.log.1 ; } " 1494afd655eSGeorge Keishing + ">/tmp/OS_authlog.txt 2>&1" 1504afd655eSGeorge Keishing ), 15120f38712SPatrick Williams "OS_syslog.txt": ( 15220f38712SPatrick Williams "tail -n 200000 /var/log/syslog >/tmp/OS_syslog.txt 2>&1" 15320f38712SPatrick Williams ), 1544afd655eSGeorge Keishing "OS_info.txt": ( 1554afd655eSGeorge Keishing "{ uname -a; dpkg -s opal-prd; dpkg -s ipmitool ; } " 1564afd655eSGeorge Keishing + ">/tmp/OS_info.txt 2>&1" 1574afd655eSGeorge Keishing ), 15820f38712SPatrick Williams "OS_sosreport.txt": ( 15920f38712SPatrick Williams "{ rm -rf /tmp/sosreport*FFDC* ; sosreport --batch --tmp-dir " 1604afd655eSGeorge Keishing + "/tmp --ticket-number FFDC ; } >/tmp/OS_sosreport.txt 2>&1" 1614afd655eSGeorge Keishing ), 162cce185d3SGunnar Mills }, 163cce185d3SGunnar Mills} 164671dd661SGeorge Keishing# Add file name and corresponding command needed for RHEL Linux 165cce185d3SGunnar MillsFFDC_OS_RHEL_FILE = { 16620f38712SPatrick Williams "OS FILES": { 167cce185d3SGunnar Mills # File Name Command 16820f38712SPatrick Williams "OS_rsct.txt": "/usr/bin/ctversion -bv >/tmp/OS_rsct.txt 2>&1", 16920f38712SPatrick Williams "OS_secure.txt": "cat /var/log/secure >/tmp/OS_secure.txt 2>&1", 1704afd655eSGeorge Keishing "OS_syslog.txt": ( 1714afd655eSGeorge Keishing "tail -n 200000 /var/log/messages >/tmp/OS_syslog.txt 2>&1" 1724afd655eSGeorge Keishing ), 1734afd655eSGeorge Keishing "OS_info.txt": ( 1744afd655eSGeorge Keishing "{ lsb_release -a; cat /etc/redhat-release; " 1754afd655eSGeorge Keishing + "uname -a; rpm -qa ; } >/tmp/OS_info.txt 2>&1" 1764afd655eSGeorge Keishing ), 17720f38712SPatrick Williams "OS_sosreport.txt": ( 17820f38712SPatrick Williams "{ rm -rf /tmp/sosreport*FFDC* ; sosreport --batch --tmp-dir " 1794afd655eSGeorge Keishing + "/tmp --label FFDC ; } >/tmp/OS_sosreport.txt 2>&1" 1804afd655eSGeorge Keishing ), 181cce185d3SGunnar Mills }, 182cce185d3SGunnar Mills} 183671dd661SGeorge Keishing# Add file name and corresponding command needed for AIX. 184671dd661SGeorge KeishingFFDC_OS_AIX_FILE = { 18520f38712SPatrick Williams "OS FILES": { 186671dd661SGeorge Keishing # File Name Command 18720f38712SPatrick Williams "OS_errpt.txt": "errpt >/tmp/OS_errpt.txt 2>&1 ; errclear 0;", 18820f38712SPatrick Williams "OS_processors.txt": "bindprocessor -q >/tmp/OS_processors.txt 2>&1", 189671dd661SGeorge Keishing }, 190671dd661SGeorge Keishing} 1911970076eSGeorge Keishing 192a5bbc301SGeorge Keishingtry: 19320f38712SPatrick Williams redfish_support_trans_state = os.environ.get( 19420f38712SPatrick Williams "REDFISH_SUPPORT_TRANS_STATE", 0 19520f38712SPatrick Williams ) or int( 19620f38712SPatrick Williams BuiltIn().get_variable_value( 19720f38712SPatrick Williams "${REDFISH_SUPPORT_TRANS_STATE}", default=0 19820f38712SPatrick Williams ) 19920f38712SPatrick Williams ) 200a5bbc301SGeorge Keishingexcept RobotNotRunningError: 201a5bbc301SGeorge Keishing pass 202a5bbc301SGeorge Keishing 20320f38712SPatrick WilliamsOPENBMC_BASE = "/xyz/openbmc_project/" 20420f38712SPatrick WilliamsOPENPOWER_BASE = "/org/open_power/" 20520f38712SPatrick WilliamsENUMERATE_SENSORS = OPENBMC_BASE + "sensors/enumerate" 20620f38712SPatrick WilliamsENUMERATE_INVENTORY = OPENBMC_BASE + "inventory/enumerate" 20720f38712SPatrick WilliamsENUMERATE_ELOG = OPENBMC_BASE + "logging/entry/enumerate" 20820f38712SPatrick WilliamsENUMERATE_LED = OPENBMC_BASE + "led/enumerate" 20920f38712SPatrick WilliamsENUMERATE_SW = OPENBMC_BASE + "software/enumerate" 21020f38712SPatrick WilliamsENUMERATE_CONTROL = OPENBMC_BASE + "control/enumerate" 21120f38712SPatrick WilliamsENUMERATE_STATE = OPENBMC_BASE + "state/enumerate" 21220f38712SPatrick WilliamsENUMERATE_OCC = OPENPOWER_BASE + "/enumerate" 21320f38712SPatrick WilliamsENUMERATE_DUMPS = OPENBMC_BASE + "dumps/enumerate" 21420f38712SPatrick WilliamsENUMERATE_USER = OPENBMC_BASE + "user/enumerate" 215a82efd64SSweta Potthuri 216671dd661SGeorge Keishing# Add file name and corresponding Get Request 217a812e0f2SGunnar MillsFFDC_GET_REQUEST = { 21820f38712SPatrick Williams "GET REQUESTS": { 219a812e0f2SGunnar Mills # File Name Command 22020f38712SPatrick Williams "FIRMWARE_list.txt": ENUMERATE_SW, 22120f38712SPatrick Williams "BMC_sensor_list.txt": ENUMERATE_SENSORS, 22220f38712SPatrick Williams "BMC_control_list.txt": ENUMERATE_CONTROL, 22320f38712SPatrick Williams "BMC_inventory.txt": ENUMERATE_INVENTORY, 22420f38712SPatrick Williams "BMC_elog.txt": ENUMERATE_ELOG, 22520f38712SPatrick Williams "BMC_led.txt": ENUMERATE_LED, 22620f38712SPatrick Williams "BMC_state.txt": ENUMERATE_STATE, 22720f38712SPatrick Williams "OCC_state.txt": ENUMERATE_OCC, 22820f38712SPatrick Williams "BMC_dumps.txt": ENUMERATE_DUMPS, 22920f38712SPatrick Williams "BMC_USER.txt": ENUMERATE_USER, 230a812e0f2SGunnar Mills }, 231a812e0f2SGunnar Mills} 2328c42bbc4SGeorge Keishing 233a5bbc301SGeorge Keishing# Remove the REST dictionary elements. 234a5bbc301SGeorge Keishingif redfish_support_trans_state == 1: 235a5bbc301SGeorge Keishing for key in list(FFDC_GET_REQUEST): 236a5bbc301SGeorge Keishing del FFDC_GET_REQUEST[key] 237a5bbc301SGeorge Keishing 23820f38712SPatrick WilliamsREDFISH_BASE = "/redfish/v1/" 23920f38712SPatrick WilliamsREDFISH_FIRMWARE = REDFISH_BASE + "UpdateService/FirmwareInventory" 2408c42bbc4SGeorge Keishing 241c32434a3SYi Hutry: 242c32434a3SYi Hu REDFISH_SYSTEM_ID = REDFISH_SYSTEM_ID = os.environ.get( 243c32434a3SYi Hu "SYSTEM_ID", "" 244c32434a3SYi Hu ) or BuiltIn().get_variable_value("${SYSTEM_ID}", default="system") 245c32434a3SYi Hu 246c32434a3SYi Hu REDFISH_ELOG = ( 247c32434a3SYi Hu REDFISH_BASE 248c32434a3SYi Hu + "Systems/" 249c32434a3SYi Hu + REDFISH_SYSTEM_ID 250c32434a3SYi Hu + "/LogServices/EventLog/Entries" 251c32434a3SYi Hu ) 252c32434a3SYi Huexcept RobotNotRunningError: 253c32434a3SYi Hu REDFISH_ELOG = REDFISH_BASE + "Systems/system/LogServices/EventLog/Entries" 254c32434a3SYi Hu pass 255c32434a3SYi Hu 2568c42bbc4SGeorge Keishing# Add file name and corresponding Get Request 2578c42bbc4SGeorge KeishingFFDC_GET_REDFISH_REQUEST = { 25820f38712SPatrick Williams "GET REQUESTS": { 2598c42bbc4SGeorge Keishing # File Name Command 26020f38712SPatrick Williams "BMC_redfish_elog.txt": REDFISH_ELOG, 2618c42bbc4SGeorge Keishing }, 2628c42bbc4SGeorge Keishing} 2638c42bbc4SGeorge Keishing 26469e6f711SGeorge Keishing# Define your keywords in method/utils and call here 26569e6f711SGeorge KeishingFFDC_METHOD_CALL = { 26620f38712SPatrick Williams "BMC LOGS": { 26769e6f711SGeorge Keishing # Description Keyword name 26820f38712SPatrick Williams "Start ffdc cleanup": "BMC FFDC Cleanup", 26920f38712SPatrick Williams "FFDC Generic Report": "BMC FFDC Manifest", 27020f38712SPatrick Williams "BMC Specific Files": "BMC FFDC Files", 27120f38712SPatrick Williams "Get Request FFDC": "BMC FFDC Get Requests", 27220f38712SPatrick Williams "Get Redfish Request FFDC": "BMC FFDC Get Redfish Requests", 27320f38712SPatrick Williams "OS FFDC": "OS FFDC Files", 27420f38712SPatrick Williams "Core Files": "SCP Coredump Files", 27520f38712SPatrick Williams "SEL Log": "Collect eSEL Log", 27620f38712SPatrick Williams "Sys Inventory Files": "System Inventory Files", 27720f38712SPatrick Williams "Dump Files": "SCP Dump Files", 27820f38712SPatrick Williams "PEL Files": "Collect PEL Log", 27920f38712SPatrick Williams "Redfish Log": "Enumerate Redfish Resources", 2804afd655eSGeorge Keishing "Firmware Log": ( 2814afd655eSGeorge Keishing "Enumerate Redfish Resources " 28220f38712SPatrick Williams + " enum_uri=/redfish/v1/UpdateService/FirmwareInventory " 2834afd655eSGeorge Keishing + " file_enum_name=redfish_FIRMWARE_list.txt" 2844afd655eSGeorge Keishing ), 28520f38712SPatrick Williams "Redfish OEM Log": "Enumerate Redfish OEM Resources", 28620f38712SPatrick Williams "End ffdc cleanup": "BMC FFDC Cleanup", 2874346a413SGeorge Keishing }, 2884346a413SGeorge Keishing} 2896788049aSKonstantin Aladyshev 2904b4eef76SGeorge Keishingtry: 29120f38712SPatrick Williams platform_arch_type = os.environ.get( 29220f38712SPatrick Williams "PLATFORM_ARCH_TYPE", "" 29320f38712SPatrick Williams ) or BuiltIn().get_variable_value("${PLATFORM_ARCH_TYPE}", default="power") 2944b4eef76SGeorge Keishingexcept RobotNotRunningError: 2954b4eef76SGeorge Keishing pass 2964b4eef76SGeorge Keishing 2976788049aSKonstantin Aladyshev# Filter the logs based on platform type. 2986788049aSKonstantin Aladyshevif platform_arch_type == "x86": 29920f38712SPatrick Williams del FFDC_BMC_FILE["BMC FILES"]["PEL_logs_list.json"] 30020f38712SPatrick Williams del FFDC_BMC_FILE["BMC FILES"]["PEL_logs_display.json"] 30120f38712SPatrick Williams del FFDC_METHOD_CALL["BMC LOGS"]["PEL Files"] 3026788049aSKonstantin Aladyshev 3034346a413SGeorge Keishing# ----------------------------------------------------------------- 3044346a413SGeorge Keishing# base class for FFDC default list 305096cd565SGunnar Mills 306096cd565SGunnar Mills 30720f38712SPatrick Williamsclass openbmc_ffdc_list: 308a812e0f2SGunnar Mills def get_ffdc_bmc_cmd(self, i_type): 309a812e0f2SGunnar Mills r""" 310004ad3c9SJoy Onyerikwu ####################################################################### 31169e6f711SGeorge Keishing # @brief This method returns the list from the dictionary for cmds 3124346a413SGeorge Keishing # @param i_type: @type string: string index lookup 3134346a413SGeorge Keishing # @return List of key pair from the dictionary 314004ad3c9SJoy Onyerikwu ####################################################################### 315a812e0f2SGunnar Mills """ 31669e6f711SGeorge Keishing return FFDC_BMC_CMD[i_type].items() 317096cd565SGunnar Mills 318a812e0f2SGunnar Mills def get_ffdc_bmc_file(self, i_type): 319a812e0f2SGunnar Mills r""" 320004ad3c9SJoy Onyerikwu ####################################################################### 32169e6f711SGeorge Keishing # @brief This method returns the list from the dictionary for scp 3224346a413SGeorge Keishing # @param i_type: @type string: string index lookup 3234346a413SGeorge Keishing # @return List of key pair from the dictionary 324004ad3c9SJoy Onyerikwu ####################################################################### 325a812e0f2SGunnar Mills """ 32669e6f711SGeorge Keishing return FFDC_BMC_FILE[i_type].items() 327096cd565SGunnar Mills 328a812e0f2SGunnar Mills def get_ffdc_get_request(self, i_type): 329a812e0f2SGunnar Mills r""" 330004ad3c9SJoy Onyerikwu ####################################################################### 331a812e0f2SGunnar Mills # @brief This method returns the list from the dictionary for scp 332a812e0f2SGunnar Mills # @param i_type: @type string: string index lookup 333a812e0f2SGunnar Mills # @return List of key pair from the dictionary 334004ad3c9SJoy Onyerikwu ####################################################################### 335a812e0f2SGunnar Mills """ 336a812e0f2SGunnar Mills return FFDC_GET_REQUEST[i_type].items() 337096cd565SGunnar Mills 3388c42bbc4SGeorge Keishing def get_ffdc_get_redfish_request(self, i_type): 3398c42bbc4SGeorge Keishing r""" 3408c42bbc4SGeorge Keishing ####################################################################### 3418c42bbc4SGeorge Keishing # @brief This method returns the list from the dictionary for scp 3428c42bbc4SGeorge Keishing # @param i_type: @type string: string index lookup 3438c42bbc4SGeorge Keishing # @return List of key pair from the dictionary 3448c42bbc4SGeorge Keishing ####################################################################### 3458c42bbc4SGeorge Keishing """ 3468c42bbc4SGeorge Keishing return FFDC_GET_REDFISH_REQUEST[i_type].items() 3478c42bbc4SGeorge Keishing 348a812e0f2SGunnar Mills def get_ffdc_cmd_index(self): 349a812e0f2SGunnar Mills r""" 350004ad3c9SJoy Onyerikwu ####################################################################### 35169e6f711SGeorge Keishing # @brief This method returns the list index from dictionary 3524346a413SGeorge Keishing # @return List of index to the dictionary 353004ad3c9SJoy Onyerikwu ####################################################################### 354a812e0f2SGunnar Mills """ 35569e6f711SGeorge Keishing return FFDC_BMC_CMD.keys() 356096cd565SGunnar Mills 357a812e0f2SGunnar Mills def get_ffdc_get_request_index(self): 358a812e0f2SGunnar Mills r""" 359004ad3c9SJoy Onyerikwu ####################################################################### 36069e6f711SGeorge Keishing # @brief This method returns the list index from dictionary 36169e6f711SGeorge Keishing # @return List of index to the dictionary 362004ad3c9SJoy Onyerikwu ####################################################################### 363a812e0f2SGunnar Mills """ 364a812e0f2SGunnar Mills return FFDC_GET_REQUEST.keys() 365096cd565SGunnar Mills 3668c42bbc4SGeorge Keishing def get_ffdc_get_redfish_request_index(self): 3678c42bbc4SGeorge Keishing r""" 3688c42bbc4SGeorge Keishing ####################################################################### 3698c42bbc4SGeorge Keishing # @brief This method returns the list index from dictionary 3708c42bbc4SGeorge Keishing # @return List of index to the dictionary 3718c42bbc4SGeorge Keishing ####################################################################### 3728c42bbc4SGeorge Keishing """ 3738c42bbc4SGeorge Keishing return FFDC_GET_REDFISH_REQUEST.keys() 3748c42bbc4SGeorge Keishing 37569e6f711SGeorge Keishing def get_ffdc_file_index(self): 376a812e0f2SGunnar Mills r""" 377004ad3c9SJoy Onyerikwu ####################################################################### 378a812e0f2SGunnar Mills # @brief This method returns the list index from dictionary 379a812e0f2SGunnar Mills # @return List of index to the dictionary 380004ad3c9SJoy Onyerikwu ####################################################################### 381a812e0f2SGunnar Mills """ 38269e6f711SGeorge Keishing return FFDC_BMC_FILE.keys() 383096cd565SGunnar Mills 384a812e0f2SGunnar Mills def get_ffdc_method_index(self): 385a812e0f2SGunnar Mills r""" 386004ad3c9SJoy Onyerikwu ####################################################################### 38769e6f711SGeorge Keishing # @brief This method returns the key pair from the dictionary 38869e6f711SGeorge Keishing # @return Index of the method dictionary 389004ad3c9SJoy Onyerikwu ####################################################################### 390a812e0f2SGunnar Mills """ 39169e6f711SGeorge Keishing return FFDC_METHOD_CALL.keys() 392096cd565SGunnar Mills 39320f38712SPatrick Williams def get_ffdc_method_desc(self, index): 394e844e9a1SMichael Walsh r""" 395004ad3c9SJoy Onyerikwu ####################################################################### 396e844e9a1SMichael Walsh # @brief This method returns the just the keys from the dictionary. 397e844e9a1SMichael Walsh # @return List of ffdc descriptions. 398004ad3c9SJoy Onyerikwu ####################################################################### 399e844e9a1SMichael Walsh """ 400e844e9a1SMichael Walsh return FFDC_METHOD_CALL[index].keys() 401096cd565SGunnar Mills 402a812e0f2SGunnar Mills def get_ffdc_method_call(self, i_type): 403a812e0f2SGunnar Mills r""" 404004ad3c9SJoy Onyerikwu ####################################################################### 40569e6f711SGeorge Keishing # @brief This method returns the key pair from the dictionary 40669e6f711SGeorge Keishing # @return List of key pair keywords 407004ad3c9SJoy Onyerikwu ####################################################################### 408a812e0f2SGunnar Mills """ 40969e6f711SGeorge Keishing return FFDC_METHOD_CALL[i_type].items() 410096cd565SGunnar Mills 4117e2cda2cSGunnar Mills def get_ffdc_os_all_distros_index(self): 4127e2cda2cSGunnar Mills r""" 413004ad3c9SJoy Onyerikwu ####################################################################### 4147e2cda2cSGunnar Mills # @brief This method returns the key pair from the dictionary 4157e2cda2cSGunnar Mills # @return Index of the method dictionary 416004ad3c9SJoy Onyerikwu ####################################################################### 4177e2cda2cSGunnar Mills """ 4187e2cda2cSGunnar Mills return FFDC_OS_ALL_DISTROS_FILE.keys() 419096cd565SGunnar Mills 4207e2cda2cSGunnar Mills def get_ffdc_os_all_distros_call(self, i_type): 4217e2cda2cSGunnar Mills r""" 422004ad3c9SJoy Onyerikwu ####################################################################### 4237e2cda2cSGunnar Mills # @brief This method returns the key pair from the dictionary 4247e2cda2cSGunnar Mills # @return List of key pair keywords 425004ad3c9SJoy Onyerikwu ####################################################################### 4267e2cda2cSGunnar Mills """ 4277e2cda2cSGunnar Mills return FFDC_OS_ALL_DISTROS_FILE[i_type].items() 428096cd565SGunnar Mills 429cce185d3SGunnar Mills def get_ffdc_os_distro_index(self, distro): 430cce185d3SGunnar Mills r""" 431004ad3c9SJoy Onyerikwu ####################################################################### 432cce185d3SGunnar Mills # @brief This method returns the key pair from the dictionary 433cce185d3SGunnar Mills # @return Index of the method dictionary 434004ad3c9SJoy Onyerikwu ####################################################################### 435cce185d3SGunnar Mills """ 436cce185d3SGunnar Mills distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE" 437cce185d3SGunnar Mills return eval(distro_file).keys() 438096cd565SGunnar Mills 439cce185d3SGunnar Mills def get_ffdc_os_distro_call(self, i_type, distro): 440cce185d3SGunnar Mills r""" 441004ad3c9SJoy Onyerikwu ####################################################################### 442cce185d3SGunnar Mills # @brief This method returns the key pair from the dictionary 443cce185d3SGunnar Mills # @return List of key pair keywords 444004ad3c9SJoy Onyerikwu ####################################################################### 445cce185d3SGunnar Mills """ 446cce185d3SGunnar Mills distro_file = "FFDC_OS_" + str(distro).upper() + "_FILE" 447cce185d3SGunnar Mills return eval(distro_file)[i_type].items() 448096cd565SGunnar Mills 449a812e0f2SGunnar Mills def get_strip_string(self, i_str): 450a812e0f2SGunnar Mills r""" 451004ad3c9SJoy Onyerikwu ####################################################################### 4524346a413SGeorge Keishing # @brief Returns the stripped strings 4534346a413SGeorge Keishing # @param i_str: @type string: string name 4544346a413SGeorge Keishing # @return Remove all special chars and return the string 455004ad3c9SJoy Onyerikwu ####################################################################### 456a812e0f2SGunnar Mills """ 45720f38712SPatrick Williams return "".join(e for e in i_str if e.isalnum()) 458096cd565SGunnar Mills 45928da9481SGeorge Keishing def get_esel_index(self, esel_list): 46028da9481SGeorge Keishing r""" 46128da9481SGeorge Keishing ####################################################################### 46228da9481SGeorge Keishing # @brief Returns the eSEL binary index. 46328da9481SGeorge Keishing # @param esel_ist: @type list: eSEL list. 46428da9481SGeorge Keishing # @return Index of "ESEL=" in the list. 46528da9481SGeorge Keishing ####################################################################### 46628da9481SGeorge Keishing """ 46720f38712SPatrick Williams index = [i for i, str in enumerate(esel_list) if "ESEL=" in str] 46828da9481SGeorge Keishing return index[0] 469a82efd64SSweta Potthuri 470a82efd64SSweta Potthuri def get_dump_index(self, dump_list): 471a82efd64SSweta Potthuri r""" 472a82efd64SSweta Potthuri ####################################################################### 473a82efd64SSweta Potthuri # @brief Returns the eSEL binary index. 474a82efd64SSweta Potthuri # @param esel_ist: @type list: eSEL list. 475a82efd64SSweta Potthuri # @return Index of "ESEL=" in the list. 476a82efd64SSweta Potthuri ####################################################################### 477a82efd64SSweta Potthuri """ 47820f38712SPatrick Williams index = [i for i, str in enumerate(dump_list) if "DUMP=" in str] 479a82efd64SSweta Potthuri return index[0] 480