Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | r""" |
| 4 | This module is the python counterpart to obmc_boot_test. |
| 5 | """ |
| 6 | |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 7 | import os |
| 8 | import imp |
| 9 | import time |
| 10 | import glob |
| 11 | import random |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 12 | import re |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 13 | import signal |
George Keishing | d54bbc2 | 2018-08-03 08:24:58 -0500 | [diff] [blame] | 14 | try: |
| 15 | import cPickle as pickle |
| 16 | except ImportError: |
| 17 | import pickle |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 18 | import socket |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 19 | |
| 20 | from robot.utils import DotDict |
| 21 | from robot.libraries.BuiltIn import BuiltIn |
| 22 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 23 | from boot_data import * |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 24 | import gen_print as gp |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 25 | import gen_robot_plug_in as grpi |
Michael Walsh | f75d435 | 2019-12-05 17:01:20 -0600 | [diff] [blame] | 26 | import gen_arg as ga |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 27 | import gen_valid as gv |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 28 | import gen_misc as gm |
| 29 | import gen_cmd as gc |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 30 | import gen_robot_keyword as grk |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 31 | import state as st |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 32 | import var_stack as vs |
Michael Walsh | c9bd2e8 | 2019-04-18 11:06:52 -0500 | [diff] [blame] | 33 | import gen_plug_in_utils as gpu |
Michael Shepos | 1a67b08 | 2020-08-28 16:01:58 -0500 | [diff] [blame] | 34 | import pel_utils as pel |
Michael Shepos | 0e5f113 | 2020-09-30 16:24:25 -0500 | [diff] [blame] | 35 | import logging_utils as log |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 36 | |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 37 | base_path = os.path.dirname(os.path.dirname( |
| 38 | imp.find_module("gen_robot_print")[1])) +\ |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 39 | os.sep |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 40 | sys.path.append(base_path + "extended/") |
| 41 | import run_keyword as rk |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 42 | |
Michael Walsh | e1e2644 | 2017-03-06 17:50:07 -0600 | [diff] [blame] | 43 | # Setting master_pid correctly influences the behavior of plug-ins like |
| 44 | # DB_Logging |
| 45 | program_pid = os.getpid() |
| 46 | master_pid = os.environ.get('AUTOBOOT_MASTER_PID', program_pid) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 47 | pgm_name = re.sub('\\.py$', '', os.path.basename(__file__)) |
Michael Walsh | e1e2644 | 2017-03-06 17:50:07 -0600 | [diff] [blame] | 48 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 49 | # Set up boot data structures. |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 50 | os_host = BuiltIn().get_variable_value("${OS_HOST}", default="") |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 51 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 52 | boot_lists = read_boot_lists() |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 53 | |
| 54 | # The maximum number of entries that can be in the boot_history global variable. |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 55 | max_boot_history = 10 |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 56 | boot_history = [] |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 57 | |
Michael Walsh | 7dc885b | 2018-03-14 17:51:59 -0500 | [diff] [blame] | 58 | state = st.return_state_constant('default_state') |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 59 | cp_setup_called = 0 |
| 60 | next_boot = "" |
| 61 | base_tool_dir_path = os.path.normpath(os.environ.get( |
| 62 | 'AUTOBOOT_BASE_TOOL_DIR_PATH', "/tmp")) + os.sep |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 63 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 64 | ffdc_dir_path = os.path.normpath(os.environ.get('FFDC_DIR_PATH', '')) + os.sep |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 65 | boot_success = 0 |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 66 | status_dir_path = os.environ.get('STATUS_DIR_PATH', "") |
| 67 | if status_dir_path != "": |
| 68 | status_dir_path = os.path.normpath(status_dir_path) + os.sep |
Michael Shepos | 34c7956 | 2021-03-18 18:49:44 -0500 | [diff] [blame] | 69 | redfish_support_trans_state = int(os.environ.get('REDFISH_SUPPORT_TRANS_STATE', 0)) or \ |
| 70 | int(BuiltIn().get_variable_value("${REDFISH_SUPPORT_TRANS_STATE}", default=0)) |
Michael Walsh | e58df1c | 2019-08-07 09:57:43 -0500 | [diff] [blame] | 71 | redfish_supported = BuiltIn().get_variable_value("${REDFISH_SUPPORTED}", default=False) |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 72 | redfish_rest_supported = BuiltIn().get_variable_value("${REDFISH_REST_SUPPORTED}", default=False) |
George Keishing | d86e45c | 2021-03-19 07:38:14 -0500 | [diff] [blame] | 73 | redfish_delete_sessions = int(BuiltIn().get_variable_value("${REDFISH_DELETE_SESSIONS}", default=1)) |
Michael Walsh | e58df1c | 2019-08-07 09:57:43 -0500 | [diff] [blame] | 74 | if redfish_supported: |
George Keishing | 89537a8 | 2020-06-17 00:37:25 -0500 | [diff] [blame] | 75 | redfish = BuiltIn().get_library_instance('redfish') |
Michael Walsh | e58df1c | 2019-08-07 09:57:43 -0500 | [diff] [blame] | 76 | default_power_on = "Redfish Power On" |
| 77 | default_power_off = "Redfish Power Off" |
George Keishing | 870999a | 2021-03-31 23:43:57 -0500 | [diff] [blame] | 78 | if not redfish_support_trans_state: |
Michael Shepos | cc490b4 | 2020-08-26 12:53:01 -0500 | [diff] [blame] | 79 | delete_errlogs_cmd = "Delete Error Logs ${quiet}=${1}" |
Michael Shepos | 92a54bf | 2020-11-11 11:48:55 -0600 | [diff] [blame] | 80 | delete_bmcdump_cmd = "Delete All BMC Dump" |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 81 | default_set_power_policy = "Set BMC Power Policy ALWAYS_POWER_OFF" |
| 82 | else: |
| 83 | delete_errlogs_cmd = "Redfish Purge Event Log" |
Michael Shepos | 92a54bf | 2020-11-11 11:48:55 -0600 | [diff] [blame] | 84 | delete_bmcdump_cmd = "Redfish Delete All BMC Dumps" |
George Keishing | 2ef6a7d | 2021-05-19 09:05:32 -0500 | [diff] [blame] | 85 | delete_sysdump_cmd = "Redfish Delete All System Dumps" |
George Keishing | eb1fe35 | 2020-06-19 03:02:22 -0500 | [diff] [blame] | 86 | default_set_power_policy = "Redfish Set Power Restore Policy AlwaysOff" |
Michael Walsh | e58df1c | 2019-08-07 09:57:43 -0500 | [diff] [blame] | 87 | else: |
| 88 | default_power_on = "REST Power On" |
| 89 | default_power_off = "REST Power Off" |
Michael Shepos | cc490b4 | 2020-08-26 12:53:01 -0500 | [diff] [blame] | 90 | delete_errlogs_cmd = "Delete Error Logs ${quiet}=${1}" |
Michael Shepos | 92a54bf | 2020-11-11 11:48:55 -0600 | [diff] [blame] | 91 | delete_bmcdump_cmd = "Delete All BMC Dump" |
George Keishing | a54e06f | 2020-06-12 10:42:41 -0500 | [diff] [blame] | 92 | default_set_power_policy = "Set BMC Power Policy ALWAYS_POWER_OFF" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 93 | boot_count = 0 |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 94 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 95 | LOG_LEVEL = BuiltIn().get_variable_value("${LOG_LEVEL}") |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 96 | AUTOBOOT_FFDC_PREFIX = os.environ.get('AUTOBOOT_FFDC_PREFIX', '') |
| 97 | ffdc_prefix = AUTOBOOT_FFDC_PREFIX |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 98 | boot_start_time = "" |
| 99 | boot_end_time = "" |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 100 | save_stack = vs.var_stack('save_stack') |
| 101 | main_func_parm_list = ['boot_stack', 'stack_mode', 'quiet'] |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 102 | |
| 103 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 104 | def dump_ffdc_rc(): |
| 105 | r""" |
| 106 | Return the constant dump ffdc test return code value. |
| 107 | |
| 108 | When a plug-in call point program returns this value, it indicates that |
| 109 | this program should collect FFDC. |
| 110 | """ |
| 111 | |
| 112 | return 0x00000200 |
| 113 | |
| 114 | |
| 115 | def stop_test_rc(): |
| 116 | r""" |
| 117 | Return the constant stop test return code value. |
| 118 | |
| 119 | When a plug-in call point program returns this value, it indicates that |
| 120 | this program should stop running. |
| 121 | """ |
| 122 | |
| 123 | return 0x00000200 |
| 124 | |
| 125 | |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 126 | def process_host(host, |
| 127 | host_var_name=""): |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 128 | r""" |
| 129 | Process a host by getting the associated host name and IP address and |
| 130 | setting them in global variables. |
| 131 | |
| 132 | If the caller does not pass the host_var_name, this function will try to |
| 133 | figure out the name of the variable used by the caller for the host parm. |
| 134 | Callers are advised to explicitly specify the host_var_name when calling |
| 135 | with an exec command. In such cases, the get_arg_name cannot figure out |
| 136 | the host variable name. |
| 137 | |
| 138 | This function will then create similar global variable names by |
| 139 | removing "_host" and appending "_host_name" or "_ip" to the host variable |
| 140 | name. |
| 141 | |
| 142 | Example: |
| 143 | |
| 144 | If a call is made like this: |
| 145 | process_host(openbmc_host) |
| 146 | |
| 147 | Global variables openbmc_host_name and openbmc_ip will be set. |
| 148 | |
| 149 | Description of argument(s): |
| 150 | host A host name or IP. The name of the variable used should |
| 151 | have a suffix of "_host". |
| 152 | host_var_name The name of the variable being used as the host parm. |
| 153 | """ |
| 154 | |
| 155 | if host_var_name == "": |
| 156 | host_var_name = gp.get_arg_name(0, 1, stack_frame_ix=2) |
| 157 | |
| 158 | host_name_var_name = re.sub("host", "host_name", host_var_name) |
| 159 | ip_var_name = re.sub("host", "ip", host_var_name) |
| 160 | cmd_buf = "global " + host_name_var_name + ", " + ip_var_name + " ; " +\ |
| 161 | host_name_var_name + ", " + ip_var_name + " = gm.get_host_name_ip('" +\ |
| 162 | host + "')" |
| 163 | exec(cmd_buf) |
| 164 | |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 165 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 166 | def process_pgm_parms(): |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 167 | r""" |
| 168 | Process the program parameters by assigning them all to corresponding |
| 169 | globals. Also, set some global values that depend on program parameters. |
| 170 | """ |
| 171 | |
| 172 | # Program parameter processing. |
| 173 | # Assign all program parms to python variables which are global to this |
| 174 | # module. |
| 175 | |
| 176 | global parm_list |
| 177 | parm_list = BuiltIn().get_variable_value("${parm_list}") |
| 178 | # The following subset of parms should be processed as integers. |
| 179 | int_list = ['max_num_tests', 'boot_pass', 'boot_fail', 'ffdc_only', |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 180 | 'boot_fail_threshold', 'delete_errlogs', |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 181 | 'call_post_stack_plug', 'do_pre_boot_plug_in_setup', 'quiet', |
| 182 | 'test_mode', 'debug'] |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 183 | for parm in parm_list: |
| 184 | if parm in int_list: |
| 185 | sub_cmd = "int(BuiltIn().get_variable_value(\"${" + parm +\ |
| 186 | "}\", \"0\"))" |
| 187 | else: |
| 188 | sub_cmd = "BuiltIn().get_variable_value(\"${" + parm + "}\")" |
| 189 | cmd_buf = "global " + parm + " ; " + parm + " = " + sub_cmd |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 190 | gp.dpissuing(cmd_buf) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 191 | exec(cmd_buf) |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 192 | if re.match(r".*_host$", parm): |
| 193 | cmd_buf = "process_host(" + parm + ", '" + parm + "')" |
| 194 | exec(cmd_buf) |
| 195 | if re.match(r".*_password$", parm): |
| 196 | # Register the value of any parm whose name ends in _password. |
| 197 | # This will cause the print functions to replace passwords with |
| 198 | # asterisks in the output. |
| 199 | cmd_buf = "gp.register_passwords(" + parm + ")" |
| 200 | exec(cmd_buf) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 201 | |
| 202 | global ffdc_dir_path_style |
| 203 | global boot_list |
| 204 | global boot_stack |
| 205 | global boot_results_file_path |
| 206 | global boot_results |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 207 | global boot_history |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 208 | global ffdc_list_file_path |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 209 | global ffdc_report_list_path |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 210 | global ffdc_summary_list_path |
Michael Walsh | a3e7b22 | 2020-02-03 15:32:16 -0600 | [diff] [blame] | 211 | global boot_table |
| 212 | global valid_boot_types |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 213 | |
| 214 | if ffdc_dir_path_style == "": |
| 215 | ffdc_dir_path_style = int(os.environ.get('FFDC_DIR_PATH_STYLE', '0')) |
| 216 | |
| 217 | # Convert these program parms to lists for easier processing.. |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 218 | boot_list = list(filter(None, boot_list.split(":"))) |
| 219 | boot_stack = list(filter(None, boot_stack.split(":"))) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 220 | |
Michael Walsh | a3e7b22 | 2020-02-03 15:32:16 -0600 | [diff] [blame] | 221 | boot_table = create_boot_table(boot_table_path, os_host=os_host) |
| 222 | valid_boot_types = create_valid_boot_list(boot_table) |
| 223 | |
Michael Walsh | 903e0b2 | 2017-09-19 17:00:33 -0500 | [diff] [blame] | 224 | cleanup_boot_results_file() |
| 225 | boot_results_file_path = create_boot_results_file_path(pgm_name, |
| 226 | openbmc_nickname, |
| 227 | master_pid) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 228 | |
| 229 | if os.path.isfile(boot_results_file_path): |
| 230 | # We've been called before in this run so we'll load the saved |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 231 | # boot_results and boot_history objects. |
| 232 | boot_results, boot_history =\ |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 233 | pickle.load(open(boot_results_file_path, 'rb')) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 234 | else: |
| 235 | boot_results = boot_results(boot_table, boot_pass, boot_fail) |
| 236 | |
| 237 | ffdc_list_file_path = base_tool_dir_path + openbmc_nickname +\ |
| 238 | "/FFDC_FILE_LIST" |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 239 | ffdc_report_list_path = base_tool_dir_path + openbmc_nickname +\ |
| 240 | "/FFDC_REPORT_FILE_LIST" |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 241 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 242 | ffdc_summary_list_path = base_tool_dir_path + openbmc_nickname +\ |
| 243 | "/FFDC_SUMMARY_FILE_LIST" |
| 244 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 245 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 246 | def initial_plug_in_setup(): |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 247 | r""" |
| 248 | Initialize all plug-in environment variables which do not change for the |
| 249 | duration of the program. |
| 250 | |
| 251 | """ |
| 252 | |
| 253 | global LOG_LEVEL |
| 254 | BuiltIn().set_log_level("NONE") |
| 255 | |
| 256 | BuiltIn().set_global_variable("${master_pid}", master_pid) |
| 257 | BuiltIn().set_global_variable("${FFDC_DIR_PATH}", ffdc_dir_path) |
| 258 | BuiltIn().set_global_variable("${STATUS_DIR_PATH}", status_dir_path) |
| 259 | BuiltIn().set_global_variable("${BASE_TOOL_DIR_PATH}", base_tool_dir_path) |
| 260 | BuiltIn().set_global_variable("${FFDC_LIST_FILE_PATH}", |
| 261 | ffdc_list_file_path) |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 262 | BuiltIn().set_global_variable("${FFDC_REPORT_LIST_PATH}", |
| 263 | ffdc_report_list_path) |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 264 | BuiltIn().set_global_variable("${FFDC_SUMMARY_LIST_PATH}", |
| 265 | ffdc_summary_list_path) |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 266 | |
| 267 | BuiltIn().set_global_variable("${FFDC_DIR_PATH_STYLE}", |
| 268 | ffdc_dir_path_style) |
| 269 | BuiltIn().set_global_variable("${FFDC_CHECK}", |
| 270 | ffdc_check) |
| 271 | |
| 272 | # For each program parameter, set the corresponding AUTOBOOT_ environment |
| 273 | # variable value. Also, set an AUTOBOOT_ environment variable for every |
| 274 | # element in additional_values. |
| 275 | additional_values = ["program_pid", "master_pid", "ffdc_dir_path", |
| 276 | "status_dir_path", "base_tool_dir_path", |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 277 | "ffdc_list_file_path", "ffdc_report_list_path", |
Michael Shepos | 7fe83b3 | 2020-09-21 15:46:01 -0500 | [diff] [blame] | 278 | "ffdc_summary_list_path", "execdir", "redfish_supported", |
Michael Shepos | 34c7956 | 2021-03-18 18:49:44 -0500 | [diff] [blame] | 279 | "redfish_rest_supported", "redfish_support_trans_state"] |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 280 | |
| 281 | plug_in_vars = parm_list + additional_values |
| 282 | |
| 283 | for var_name in plug_in_vars: |
| 284 | var_value = BuiltIn().get_variable_value("${" + var_name + "}") |
| 285 | var_name = var_name.upper() |
| 286 | if var_value is None: |
| 287 | var_value = "" |
| 288 | os.environ["AUTOBOOT_" + var_name] = str(var_value) |
| 289 | |
| 290 | BuiltIn().set_log_level(LOG_LEVEL) |
| 291 | |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 292 | # Make sure the ffdc list directory exists. |
| 293 | ffdc_list_dir_path = os.path.dirname(ffdc_list_file_path) + os.sep |
| 294 | if not os.path.exists(ffdc_list_dir_path): |
| 295 | os.makedirs(ffdc_list_dir_path) |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 296 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 297 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 298 | def plug_in_setup(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 299 | r""" |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 300 | Initialize all changing plug-in environment variables for use by the |
| 301 | plug-in programs. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 302 | """ |
| 303 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 304 | global LOG_LEVEL |
| 305 | global test_really_running |
| 306 | |
| 307 | BuiltIn().set_log_level("NONE") |
| 308 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 309 | boot_pass, boot_fail = boot_results.return_total_pass_fail() |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 310 | if boot_pass > 1: |
| 311 | test_really_running = 1 |
| 312 | else: |
| 313 | test_really_running = 0 |
| 314 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 315 | BuiltIn().set_global_variable("${test_really_running}", |
| 316 | test_really_running) |
| 317 | BuiltIn().set_global_variable("${boot_type_desc}", next_boot) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 318 | BuiltIn().set_global_variable("${boot_pass}", boot_pass) |
| 319 | BuiltIn().set_global_variable("${boot_fail}", boot_fail) |
| 320 | BuiltIn().set_global_variable("${boot_success}", boot_success) |
| 321 | BuiltIn().set_global_variable("${ffdc_prefix}", ffdc_prefix) |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 322 | BuiltIn().set_global_variable("${boot_start_time}", boot_start_time) |
| 323 | BuiltIn().set_global_variable("${boot_end_time}", boot_end_time) |
Michael Walsh | 4c9a645 | 2016-12-13 16:03:11 -0600 | [diff] [blame] | 324 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 325 | # For each program parameter, set the corresponding AUTOBOOT_ environment |
| 326 | # variable value. Also, set an AUTOBOOT_ environment variable for every |
| 327 | # element in additional_values. |
| 328 | additional_values = ["boot_type_desc", "boot_success", "boot_pass", |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 329 | "boot_fail", "test_really_running", "ffdc_prefix", |
| 330 | "boot_start_time", "boot_end_time"] |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 331 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 332 | plug_in_vars = additional_values |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 333 | |
| 334 | for var_name in plug_in_vars: |
| 335 | var_value = BuiltIn().get_variable_value("${" + var_name + "}") |
| 336 | var_name = var_name.upper() |
| 337 | if var_value is None: |
| 338 | var_value = "" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 339 | os.environ["AUTOBOOT_" + var_name] = str(var_value) |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 340 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 341 | if debug: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 342 | shell_rc, out_buf = \ |
| 343 | gc.cmd_fnc_u("printenv | egrep AUTOBOOT_ | sort -u") |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 344 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 345 | BuiltIn().set_log_level(LOG_LEVEL) |
| 346 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 347 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 348 | def pre_boot_plug_in_setup(): |
| 349 | |
| 350 | # Clear the ffdc_list_file_path file. Plug-ins may now write to it. |
| 351 | try: |
| 352 | os.remove(ffdc_list_file_path) |
| 353 | except OSError: |
| 354 | pass |
| 355 | |
| 356 | # Clear the ffdc_report_list_path file. Plug-ins may now write to it. |
| 357 | try: |
| 358 | os.remove(ffdc_report_list_path) |
| 359 | except OSError: |
| 360 | pass |
| 361 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 362 | # Clear the ffdc_summary_list_path file. Plug-ins may now write to it. |
| 363 | try: |
| 364 | os.remove(ffdc_summary_list_path) |
| 365 | except OSError: |
| 366 | pass |
| 367 | |
Michael Walsh | e1974b9 | 2017-08-03 13:39:51 -0500 | [diff] [blame] | 368 | global ffdc_prefix |
| 369 | |
| 370 | seconds = time.time() |
| 371 | loc_time = time.localtime(seconds) |
| 372 | time_string = time.strftime("%y%m%d.%H%M%S.", loc_time) |
| 373 | |
| 374 | ffdc_prefix = openbmc_nickname + "." + time_string |
| 375 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 376 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 377 | def default_sigusr1(signal_number=0, |
| 378 | frame=None): |
| 379 | r""" |
| 380 | Handle SIGUSR1 by doing nothing. |
| 381 | |
| 382 | This function assists in debugging SIGUSR1 processing by printing messages |
| 383 | to stdout and to the log.html file. |
| 384 | |
| 385 | Description of argument(s): |
| 386 | signal_number The signal number (should always be 10 for SIGUSR1). |
| 387 | frame The frame data. |
| 388 | """ |
| 389 | |
Michael Walsh | 80dddde | 2019-10-22 13:54:38 -0500 | [diff] [blame] | 390 | gp.qprintn() |
| 391 | gp.qprint_executing() |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 392 | gp.lprint_executing() |
| 393 | |
| 394 | |
| 395 | def set_default_siguser1(): |
| 396 | r""" |
| 397 | Set the default_sigusr1 function to be the SIGUSR1 handler. |
| 398 | """ |
| 399 | |
Michael Walsh | 80dddde | 2019-10-22 13:54:38 -0500 | [diff] [blame] | 400 | gp.qprintn() |
| 401 | gp.qprint_executing() |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 402 | gp.lprint_executing() |
| 403 | signal.signal(signal.SIGUSR1, default_sigusr1) |
| 404 | |
| 405 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 406 | def setup(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 407 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 408 | Do general program setup tasks. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 409 | """ |
| 410 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 411 | global cp_setup_called |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 412 | global transitional_boot_selected |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 413 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 414 | gp.qprintn() |
| 415 | |
George Keishing | a54e06f | 2020-06-12 10:42:41 -0500 | [diff] [blame] | 416 | if redfish_supported: |
| 417 | redfish.login() |
| 418 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 419 | set_default_siguser1() |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 420 | transitional_boot_selected = False |
| 421 | |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 422 | robot_pgm_dir_path = os.path.dirname(__file__) + os.sep |
| 423 | repo_bin_path = robot_pgm_dir_path.replace("/lib/", "/bin/") |
Michael Walsh | d061c04 | 2017-05-23 14:46:57 -0500 | [diff] [blame] | 424 | # If we can't find process_plug_in_packages.py, ssh_pw or |
| 425 | # validate_plug_ins.py, then we don't have our repo bin in PATH. |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 426 | shell_rc, out_buf = gc.cmd_fnc_u("which process_plug_in_packages.py" |
| 427 | + " ssh_pw validate_plug_ins.py", quiet=1, |
Michael Walsh | d061c04 | 2017-05-23 14:46:57 -0500 | [diff] [blame] | 428 | print_output=0, show_err=0) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 429 | if shell_rc != 0: |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 430 | os.environ['PATH'] = repo_bin_path + ":" + os.environ.get('PATH', "") |
| 431 | # Likewise, our repo lib subdir needs to be in sys.path and PYTHONPATH. |
| 432 | if robot_pgm_dir_path not in sys.path: |
| 433 | sys.path.append(robot_pgm_dir_path) |
| 434 | PYTHONPATH = os.environ.get("PYTHONPATH", "") |
| 435 | if PYTHONPATH == "": |
| 436 | os.environ['PYTHONPATH'] = robot_pgm_dir_path |
| 437 | else: |
| 438 | os.environ['PYTHONPATH'] = robot_pgm_dir_path + ":" + PYTHONPATH |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 439 | |
| 440 | validate_parms() |
| 441 | |
Michael Walsh | c108e42 | 2019-03-28 12:27:18 -0500 | [diff] [blame] | 442 | gp.qprint_pgm_header() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 443 | |
George Keishing | a54e06f | 2020-06-12 10:42:41 -0500 | [diff] [blame] | 444 | grk.run_key_u(default_set_power_policy) |
Michael Walsh | 11cfc8c | 2017-03-31 09:40:55 -0500 | [diff] [blame] | 445 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 446 | initial_plug_in_setup() |
| 447 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 448 | plug_in_setup() |
| 449 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 450 | call_point='setup') |
| 451 | if rc != 0: |
| 452 | error_message = "Plug-in setup failed.\n" |
Michael Walsh | c108e42 | 2019-03-28 12:27:18 -0500 | [diff] [blame] | 453 | gp.print_error_report(error_message) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 454 | BuiltIn().fail(error_message) |
| 455 | # Setting cp_setup_called lets our Teardown know that it needs to call |
| 456 | # the cleanup plug-in call point. |
| 457 | cp_setup_called = 1 |
| 458 | |
| 459 | # Keyword "FFDC" will fail if TEST_MESSAGE is not set. |
| 460 | BuiltIn().set_global_variable("${TEST_MESSAGE}", "${EMPTY}") |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 461 | # FFDC_LOG_PATH is used by "FFDC" keyword. |
| 462 | BuiltIn().set_global_variable("${FFDC_LOG_PATH}", ffdc_dir_path) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 463 | |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 464 | # Also printed by FFDC. |
| 465 | global host_name |
| 466 | global host_ip |
| 467 | host = socket.gethostname() |
| 468 | host_name, host_ip = gm.get_host_name_ip(host) |
| 469 | |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 470 | gp.dprint_var(boot_table) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 471 | gp.dprint_var(boot_lists) |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 472 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 473 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 474 | def validate_parms(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 475 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 476 | Validate all program parameters. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 477 | """ |
| 478 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 479 | process_pgm_parms() |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 480 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 481 | gp.qprintn() |
| 482 | |
| 483 | global openbmc_model |
Michael Walsh | f5ce38c | 2020-02-27 12:46:20 -0600 | [diff] [blame] | 484 | if openbmc_model == "": |
| 485 | status, ret_values =\ |
| 486 | grk.run_key_u("Get BMC System Model") |
| 487 | openbmc_model = ret_values |
| 488 | BuiltIn().set_global_variable("${openbmc_model}", openbmc_model) |
| 489 | gv.set_exit_on_error(True) |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 490 | gv.valid_value(openbmc_host) |
| 491 | gv.valid_value(openbmc_username) |
| 492 | gv.valid_value(openbmc_password) |
| 493 | gv.valid_value(rest_username) |
| 494 | gv.valid_value(rest_password) |
| 495 | gv.valid_value(ipmi_username) |
| 496 | gv.valid_value(ipmi_password) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 497 | if os_host != "": |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 498 | gv.valid_value(os_username) |
| 499 | gv.valid_value(os_password) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 500 | if pdu_host != "": |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 501 | gv.valid_value(pdu_username) |
| 502 | gv.valid_value(pdu_password) |
| 503 | gv.valid_integer(pdu_slot_no) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 504 | if openbmc_serial_host != "": |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 505 | gv.valid_integer(openbmc_serial_port) |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 506 | gv.valid_value(openbmc_model) |
| 507 | gv.valid_integer(max_num_tests) |
| 508 | gv.valid_integer(boot_pass) |
| 509 | gv.valid_integer(boot_fail) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 510 | plug_in_packages_list = grpi.rvalidate_plug_ins(plug_in_dir_paths) |
| 511 | BuiltIn().set_global_variable("${plug_in_packages_list}", |
| 512 | plug_in_packages_list) |
Michael Walsh | 44cef25 | 2019-08-01 12:38:56 -0500 | [diff] [blame] | 513 | gv.valid_value(stack_mode, valid_values=['normal', 'skip']) |
Michael Walsh | f5ce38c | 2020-02-27 12:46:20 -0600 | [diff] [blame] | 514 | gv.set_exit_on_error(False) |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 515 | if len(boot_list) == 0 and len(boot_stack) == 0 and not ffdc_only: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 516 | error_message = "You must provide either a value for either the" +\ |
| 517 | " boot_list or the boot_stack parm.\n" |
| 518 | BuiltIn().fail(gp.sprint_error(error_message)) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 519 | valid_boot_list(boot_list, valid_boot_types) |
| 520 | valid_boot_list(boot_stack, valid_boot_types) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 521 | selected_PDU_boots = list(set(boot_list + boot_stack) |
| 522 | & set(boot_lists['PDU_reboot'])) |
Michael Walsh | 11cfc8c | 2017-03-31 09:40:55 -0500 | [diff] [blame] | 523 | if len(selected_PDU_boots) > 0 and pdu_host == "": |
| 524 | error_message = "You have selected the following boots which" +\ |
| 525 | " require a PDU host but no value for pdu_host:\n" |
| 526 | error_message += gp.sprint_var(selected_PDU_boots) |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 527 | error_message += gp.sprint_var(pdu_host, fmt=gp.blank()) |
Michael Walsh | 11cfc8c | 2017-03-31 09:40:55 -0500 | [diff] [blame] | 528 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 529 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 530 | return |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 531 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 532 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 533 | def my_get_state(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 534 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 535 | Get the system state plus a little bit of wrapping. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 536 | """ |
| 537 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 538 | global state |
| 539 | |
| 540 | req_states = ['epoch_seconds'] + st.default_req_states |
| 541 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 542 | gp.qprint_timen("Getting system state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 543 | if test_mode: |
| 544 | state['epoch_seconds'] = int(time.time()) |
| 545 | else: |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 546 | state = st.get_state(req_states=req_states, quiet=quiet) |
| 547 | gp.qprint_var(state) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 548 | |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 549 | |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 550 | def valid_state(): |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 551 | r""" |
| 552 | Verify that our state dictionary contains no blank values. If we don't get |
| 553 | valid state data, we cannot continue to work. |
| 554 | """ |
| 555 | |
| 556 | if st.compare_states(state, st.invalid_state_match, 'or'): |
| 557 | error_message = "The state dictionary contains blank fields which" +\ |
| 558 | " is illegal.\n" + gp.sprint_var(state) |
| 559 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 560 | |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 561 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 562 | def select_boot(): |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 563 | r""" |
| 564 | Select a boot test to be run based on our current state and return the |
| 565 | chosen boot type. |
| 566 | |
| 567 | Description of arguments: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 568 | state The state of the machine. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 569 | """ |
| 570 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 571 | global transitional_boot_selected |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 572 | global boot_stack |
| 573 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 574 | gp.qprint_timen("Selecting a boot test.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 575 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 576 | if transitional_boot_selected and not boot_success: |
| 577 | prior_boot = next_boot |
| 578 | boot_candidate = boot_stack.pop() |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 579 | gp.qprint_timen("The prior '" + next_boot + "' was chosen to" |
| 580 | + " transition to a valid state for '" + boot_candidate |
| 581 | + "' which was at the top of the boot_stack. Since" |
| 582 | + " the '" + next_boot + "' failed, the '" |
| 583 | + boot_candidate + "' has been removed from the stack" |
| 584 | + " to avoid and endless failure loop.") |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 585 | if len(boot_stack) == 0: |
| 586 | return "" |
| 587 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 588 | my_get_state() |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 589 | valid_state() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 590 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 591 | transitional_boot_selected = False |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 592 | stack_popped = 0 |
| 593 | if len(boot_stack) > 0: |
| 594 | stack_popped = 1 |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 595 | gp.qprint_dashes() |
| 596 | gp.qprint_var(boot_stack) |
| 597 | gp.qprint_dashes() |
| 598 | skip_boot_printed = 0 |
| 599 | while len(boot_stack) > 0: |
| 600 | boot_candidate = boot_stack.pop() |
| 601 | if stack_mode == 'normal': |
| 602 | break |
| 603 | else: |
| 604 | if st.compare_states(state, boot_table[boot_candidate]['end']): |
| 605 | if not skip_boot_printed: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 606 | gp.qprint_var(stack_mode) |
| 607 | gp.qprintn() |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 608 | gp.qprint_timen("Skipping the following boot tests" |
| 609 | + " which are unnecessary since their" |
| 610 | + " required end states match the" |
| 611 | + " current machine state:") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 612 | skip_boot_printed = 1 |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 613 | gp.qprint_var(boot_candidate) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 614 | boot_candidate = "" |
| 615 | if boot_candidate == "": |
| 616 | gp.qprint_dashes() |
| 617 | gp.qprint_var(boot_stack) |
| 618 | gp.qprint_dashes() |
| 619 | return boot_candidate |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 620 | if st.compare_states(state, boot_table[boot_candidate]['start']): |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 621 | gp.qprint_timen("The machine state is valid for a '" |
| 622 | + boot_candidate + "' boot test.") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 623 | gp.qprint_dashes() |
| 624 | gp.qprint_var(boot_stack) |
| 625 | gp.qprint_dashes() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 626 | return boot_candidate |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 627 | else: |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 628 | gp.qprint_timen("The machine state does not match the required" |
| 629 | + " starting state for a '" + boot_candidate |
| 630 | + "' boot test:") |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 631 | gp.qprint_varx("boot_table_start_entry", |
| 632 | boot_table[boot_candidate]['start']) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 633 | boot_stack.append(boot_candidate) |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 634 | transitional_boot_selected = True |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 635 | popped_boot = boot_candidate |
| 636 | |
| 637 | # Loop through your list selecting a boot_candidates |
| 638 | boot_candidates = [] |
| 639 | for boot_candidate in boot_list: |
| 640 | if st.compare_states(state, boot_table[boot_candidate]['start']): |
| 641 | if stack_popped: |
| 642 | if st.compare_states(boot_table[boot_candidate]['end'], |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 643 | boot_table[popped_boot]['start']): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 644 | boot_candidates.append(boot_candidate) |
| 645 | else: |
| 646 | boot_candidates.append(boot_candidate) |
| 647 | |
| 648 | if len(boot_candidates) == 0: |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 649 | gp.qprint_timen("The user's boot list contained no boot tests" |
| 650 | + " which are valid for the current machine state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 651 | boot_candidate = default_power_on |
| 652 | if not st.compare_states(state, boot_table[default_power_on]['start']): |
| 653 | boot_candidate = default_power_off |
| 654 | boot_candidates.append(boot_candidate) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 655 | gp.qprint_timen("Using default '" + boot_candidate |
| 656 | + "' boot type to transition to valid state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 657 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 658 | gp.dprint_var(boot_candidates) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 659 | |
| 660 | # Randomly select a boot from the candidate list. |
| 661 | boot = random.choice(boot_candidates) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 662 | |
| 663 | return boot |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 664 | |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 665 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 666 | def print_defect_report(ffdc_file_list): |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 667 | r""" |
| 668 | Print a defect report. |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 669 | |
| 670 | Description of argument(s): |
| 671 | ffdc_file_list A list of files which were collected by our ffdc functions. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 672 | """ |
| 673 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 674 | # Making deliberate choice to NOT run plug_in_setup(). We don't want |
| 675 | # ffdc_prefix updated. |
| 676 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 677 | call_point='ffdc_report', stop_on_plug_in_failure=0) |
| 678 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 679 | # Get additional header data which may have been created by ffdc plug-ins. |
| 680 | # Also, delete the individual header files to cleanup. |
| 681 | cmd_buf = "file_list=$(cat " + ffdc_report_list_path + " 2>/dev/null)" +\ |
| 682 | " ; [ ! -z \"${file_list}\" ] && cat ${file_list}" +\ |
| 683 | " 2>/dev/null ; rm -rf ${file_list} 2>/dev/null || :" |
| 684 | shell_rc, more_header_info = gc.cmd_fnc_u(cmd_buf, print_output=0, |
| 685 | show_err=0) |
| 686 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 687 | # Get additional summary data which may have been created by ffdc plug-ins. |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 688 | # Also, delete the individual header files to cleanup. |
| 689 | cmd_buf = "file_list=$(cat " + ffdc_summary_list_path + " 2>/dev/null)" +\ |
| 690 | " ; [ ! -z \"${file_list}\" ] && cat ${file_list}" +\ |
| 691 | " 2>/dev/null ; rm -rf ${file_list} 2>/dev/null || :" |
| 692 | shell_rc, ffdc_summary_info = gc.cmd_fnc_u(cmd_buf, print_output=0, |
| 693 | show_err=0) |
| 694 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 695 | # ffdc_list_file_path contains a list of any ffdc files created by plug- |
| 696 | # ins, etc. Read that data into a list. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 697 | try: |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 698 | plug_in_ffdc_list = \ |
| 699 | open(ffdc_list_file_path, 'r').read().rstrip("\n").split("\n") |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 700 | plug_in_ffdc_list = list(filter(None, plug_in_ffdc_list)) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 701 | except IOError: |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 702 | plug_in_ffdc_list = [] |
| 703 | |
| 704 | # Combine the files from plug_in_ffdc_list with the ffdc_file_list passed |
| 705 | # in. Eliminate duplicates and sort the list. |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 706 | ffdc_file_list = sorted(set(ffdc_file_list + plug_in_ffdc_list)) |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 707 | |
| 708 | if status_file_path != "": |
| 709 | ffdc_file_list.insert(0, status_file_path) |
| 710 | |
| 711 | # Convert the list to a printable list. |
| 712 | printable_ffdc_file_list = "\n".join(ffdc_file_list) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 713 | |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 714 | # Open ffdc_file_list for writing. We will write a complete list of |
| 715 | # FFDC files to it for possible use by plug-ins like cp_stop_check. |
| 716 | ffdc_list_file = open(ffdc_list_file_path, 'w') |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 717 | ffdc_list_file.write(printable_ffdc_file_list + "\n") |
| 718 | ffdc_list_file.close() |
| 719 | |
| 720 | indent = 0 |
| 721 | width = 90 |
| 722 | linefeed = 1 |
| 723 | char = "=" |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 724 | |
| 725 | gp.qprintn() |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 726 | gp.qprint_dashes(indent, width, linefeed, char) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 727 | gp.qprintn("Copy this data to the defect:\n") |
| 728 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 729 | if len(more_header_info) > 0: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 730 | gp.qprintn(more_header_info) |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 731 | gp.qpvars(host_name, host_ip, openbmc_nickname, openbmc_host, |
| 732 | openbmc_host_name, openbmc_ip, openbmc_username, |
Michael Walsh | 0a3bdb4 | 2019-01-31 16:21:44 +0000 | [diff] [blame] | 733 | openbmc_password, rest_username, rest_password, ipmi_username, |
| 734 | ipmi_password, os_host, os_host_name, os_ip, os_username, |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 735 | os_password, pdu_host, pdu_host_name, pdu_ip, pdu_username, |
| 736 | pdu_password, pdu_slot_no, openbmc_serial_host, |
| 737 | openbmc_serial_host_name, openbmc_serial_ip, openbmc_serial_port) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 738 | |
| 739 | gp.qprintn() |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 740 | print_boot_history(boot_history) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 741 | gp.qprintn() |
| 742 | gp.qprint_var(state) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 743 | gp.qprintn() |
| 744 | gp.qprintn("FFDC data files:") |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 745 | gp.qprintn(printable_ffdc_file_list) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 746 | gp.qprintn() |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 747 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 748 | if len(ffdc_summary_info) > 0: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 749 | gp.qprintn(ffdc_summary_info) |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 750 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 751 | gp.qprint_dashes(indent, width, linefeed, char) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 752 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 753 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 754 | def my_ffdc(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 755 | r""" |
| 756 | Collect FFDC data. |
| 757 | """ |
| 758 | |
| 759 | global state |
| 760 | |
| 761 | plug_in_setup() |
| 762 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 763 | call_point='ffdc', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 764 | |
| 765 | AUTOBOOT_FFDC_PREFIX = os.environ['AUTOBOOT_FFDC_PREFIX'] |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 766 | status, ffdc_file_list = grk.run_key_u("FFDC ffdc_prefix=" |
| 767 | + AUTOBOOT_FFDC_PREFIX |
| 768 | + " ffdc_function_list=" |
| 769 | + ffdc_function_list, ignore=1) |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 770 | if status != 'PASS': |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 771 | gp.qprint_error("Call to ffdc failed.\n") |
Michael Walsh | c9bd2e8 | 2019-04-18 11:06:52 -0500 | [diff] [blame] | 772 | if type(ffdc_file_list) is not list: |
| 773 | ffdc_file_list = [] |
| 774 | # Leave a record for caller that "soft" errors occurred. |
| 775 | soft_errors = 1 |
| 776 | gpu.save_plug_in_value(soft_errors, pgm_name) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 777 | |
| 778 | my_get_state() |
| 779 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 780 | print_defect_report(ffdc_file_list) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 781 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 782 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 783 | def print_test_start_message(boot_keyword): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 784 | r""" |
| 785 | Print a message indicating what boot test is about to run. |
| 786 | |
| 787 | Description of arguments: |
| 788 | boot_keyword The name of the boot which is to be run |
| 789 | (e.g. "BMC Power On"). |
| 790 | """ |
| 791 | |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 792 | global boot_history |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 793 | global boot_start_time |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 794 | |
| 795 | doing_msg = gp.sprint_timen("Doing \"" + boot_keyword + "\".") |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 796 | |
| 797 | # Set boot_start_time for use by plug-ins. |
| 798 | boot_start_time = doing_msg[1:33] |
| 799 | gp.qprint_var(boot_start_time) |
| 800 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 801 | gp.qprint(doing_msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 802 | |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 803 | update_boot_history(boot_history, doing_msg, max_boot_history) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 804 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 805 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 806 | def stop_boot_test(signal_number=0, |
| 807 | frame=None): |
| 808 | r""" |
| 809 | Handle SIGUSR1 by aborting the boot test that is running. |
| 810 | |
| 811 | Description of argument(s): |
| 812 | signal_number The signal number (should always be 10 for SIGUSR1). |
| 813 | frame The frame data. |
| 814 | """ |
| 815 | |
Michael Walsh | 80dddde | 2019-10-22 13:54:38 -0500 | [diff] [blame] | 816 | gp.qprintn() |
| 817 | gp.qprint_executing() |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 818 | gp.lprint_executing() |
| 819 | |
| 820 | # Restore original sigusr1 handler. |
| 821 | set_default_siguser1() |
| 822 | |
| 823 | message = "The caller has asked that the boot test be stopped and marked" |
| 824 | message += " as a failure." |
| 825 | |
| 826 | function_stack = gm.get_function_stack() |
| 827 | if "wait_state" in function_stack: |
Michael Walsh | c44aa53 | 2019-06-14 13:33:29 -0500 | [diff] [blame] | 828 | st.set_exit_wait_early_message(message) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 829 | else: |
| 830 | BuiltIn().fail(gp.sprint_error(message)) |
| 831 | |
| 832 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 833 | def run_boot(boot): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 834 | r""" |
| 835 | Run the specified boot. |
| 836 | |
| 837 | Description of arguments: |
| 838 | boot The name of the boot test to be performed. |
| 839 | """ |
| 840 | |
| 841 | global state |
| 842 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 843 | signal.signal(signal.SIGUSR1, stop_boot_test) |
| 844 | gp.qprint_timen("stop_boot_test is armed.") |
| 845 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 846 | print_test_start_message(boot) |
| 847 | |
| 848 | plug_in_setup() |
| 849 | rc, shell_rc, failed_plug_in_name = \ |
| 850 | grpi.rprocess_plug_in_packages(call_point="pre_boot") |
| 851 | if rc != 0: |
| 852 | error_message = "Plug-in failed with non-zero return code.\n" +\ |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 853 | gp.sprint_var(rc, fmt=gp.hexa()) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 854 | set_default_siguser1() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 855 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 856 | |
| 857 | if test_mode: |
| 858 | # In test mode, we'll pretend the boot worked by assigning its |
| 859 | # required end state to the default state value. |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 860 | state = st.strip_anchor_state(boot_table[boot]['end']) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 861 | else: |
| 862 | # Assertion: We trust that the state data was made fresh by the |
| 863 | # caller. |
| 864 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 865 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 866 | |
| 867 | if boot_table[boot]['method_type'] == "keyword": |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 868 | rk.my_run_keywords(boot_table[boot].get('lib_file_path', ''), |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 869 | boot_table[boot]['method'], |
| 870 | quiet=quiet) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 871 | |
| 872 | if boot_table[boot]['bmc_reboot']: |
| 873 | st.wait_for_comm_cycle(int(state['epoch_seconds'])) |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 874 | plug_in_setup() |
| 875 | rc, shell_rc, failed_plug_in_name = \ |
| 876 | grpi.rprocess_plug_in_packages(call_point="post_reboot") |
| 877 | if rc != 0: |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 878 | error_message = "Plug-in failed with non-zero return code.\n" |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 879 | error_message += gp.sprint_var(rc, fmt=gp.hexa()) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 880 | set_default_siguser1() |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 881 | BuiltIn().fail(gp.sprint_error(error_message)) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 882 | else: |
| 883 | match_state = st.anchor_state(state) |
| 884 | del match_state['epoch_seconds'] |
| 885 | # Wait for the state to change in any way. |
| 886 | st.wait_state(match_state, wait_time=state_change_timeout, |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 887 | interval="10 seconds", invert=1) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 888 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 889 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 890 | if boot_table[boot]['end']['chassis'] == "Off": |
| 891 | boot_timeout = power_off_timeout |
| 892 | else: |
| 893 | boot_timeout = power_on_timeout |
| 894 | st.wait_state(boot_table[boot]['end'], wait_time=boot_timeout, |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 895 | interval="10 seconds") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 896 | |
| 897 | plug_in_setup() |
| 898 | rc, shell_rc, failed_plug_in_name = \ |
| 899 | grpi.rprocess_plug_in_packages(call_point="post_boot") |
| 900 | if rc != 0: |
| 901 | error_message = "Plug-in failed with non-zero return code.\n" +\ |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 902 | gp.sprint_var(rc, fmt=gp.hexa()) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 903 | set_default_siguser1() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 904 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 905 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 906 | # Restore original sigusr1 handler. |
| 907 | set_default_siguser1() |
| 908 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 909 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 910 | def test_loop_body(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 911 | r""" |
| 912 | The main loop body for the loop in main_py. |
| 913 | |
| 914 | Description of arguments: |
| 915 | boot_count The iteration number (starts at 1). |
| 916 | """ |
| 917 | |
| 918 | global boot_count |
| 919 | global state |
| 920 | global next_boot |
| 921 | global boot_success |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 922 | global boot_end_time |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 923 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 924 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 925 | |
| 926 | next_boot = select_boot() |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 927 | if next_boot == "": |
| 928 | return True |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 929 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 930 | boot_count += 1 |
| 931 | gp.qprint_timen("Starting boot " + str(boot_count) + ".") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 932 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 933 | pre_boot_plug_in_setup() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 934 | |
| 935 | cmd_buf = ["run_boot", next_boot] |
| 936 | boot_status, msg = BuiltIn().run_keyword_and_ignore_error(*cmd_buf) |
| 937 | if boot_status == "FAIL": |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 938 | gp.qprint(msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 939 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 940 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 941 | if boot_status == "PASS": |
| 942 | boot_success = 1 |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 943 | completion_msg = gp.sprint_timen("BOOT_SUCCESS: \"" + next_boot |
| 944 | + "\" succeeded.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 945 | else: |
| 946 | boot_success = 0 |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 947 | completion_msg = gp.sprint_timen("BOOT_FAILED: \"" + next_boot |
| 948 | + "\" failed.") |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 949 | |
| 950 | # Set boot_end_time for use by plug-ins. |
| 951 | boot_end_time = completion_msg[1:33] |
| 952 | gp.qprint_var(boot_end_time) |
| 953 | |
| 954 | gp.qprint(completion_msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 955 | |
| 956 | boot_results.update(next_boot, boot_status) |
| 957 | |
| 958 | plug_in_setup() |
| 959 | # NOTE: A post_test_case call point failure is NOT counted as a boot |
| 960 | # failure. |
| 961 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 962 | call_point='post_test_case', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 963 | |
| 964 | plug_in_setup() |
| 965 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 966 | call_point='ffdc_check', shell_rc=dump_ffdc_rc(), |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 967 | stop_on_plug_in_failure=1, stop_on_non_zero_rc=1) |
Michael Walsh | 12059e2 | 2019-03-21 11:03:45 -0500 | [diff] [blame] | 968 | if ffdc_check == "All" or\ |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 969 | shell_rc == dump_ffdc_rc(): |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 970 | status, ret_values = grk.run_key_u("my_ffdc", ignore=1) |
| 971 | if status != 'PASS': |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 972 | gp.qprint_error("Call to my_ffdc failed.\n") |
Michael Walsh | c9bd2e8 | 2019-04-18 11:06:52 -0500 | [diff] [blame] | 973 | # Leave a record for caller that "soft" errors occurred. |
| 974 | soft_errors = 1 |
| 975 | gpu.save_plug_in_value(soft_errors, pgm_name) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 976 | |
Michael Walsh | aabef1e | 2017-09-20 15:16:17 -0500 | [diff] [blame] | 977 | if delete_errlogs: |
Michael Shepos | 1a67b08 | 2020-08-28 16:01:58 -0500 | [diff] [blame] | 978 | # print error logs before delete |
| 979 | status, error_logs = grk.run_key_u("Get Error Logs") |
| 980 | pels = pel.peltool("-l", ignore_err=1) |
Michael Shepos | 0e5f113 | 2020-09-30 16:24:25 -0500 | [diff] [blame] | 981 | log.print_error_logs(error_logs, "AdditionalData Message Severity") |
| 982 | gp.qprint_var(pels) |
Michael Shepos | 1a67b08 | 2020-08-28 16:01:58 -0500 | [diff] [blame] | 983 | |
Michael Walsh | aabef1e | 2017-09-20 15:16:17 -0500 | [diff] [blame] | 984 | # We need to purge error logs between boots or they build up. |
Michael Walsh | 409ad35 | 2020-02-06 11:46:35 -0600 | [diff] [blame] | 985 | grk.run_key(delete_errlogs_cmd, ignore=1) |
Michael Shepos | 92a54bf | 2020-11-11 11:48:55 -0600 | [diff] [blame] | 986 | grk.run_key(delete_bmcdump_cmd, ignore=1) |
George Keishing | 2ef6a7d | 2021-05-19 09:05:32 -0500 | [diff] [blame] | 987 | if redfish_support_trans_state: |
| 988 | grk.run_key(delete_sysdump_cmd, ignore=1) |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 989 | |
Michael Walsh | 952f9b0 | 2017-03-09 13:11:14 -0600 | [diff] [blame] | 990 | boot_results.print_report() |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 991 | gp.qprint_timen("Finished boot " + str(boot_count) + ".") |
Michael Walsh | 952f9b0 | 2017-03-09 13:11:14 -0600 | [diff] [blame] | 992 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 993 | plug_in_setup() |
| 994 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 995 | call_point='stop_check', shell_rc=stop_test_rc(), |
| 996 | stop_on_non_zero_rc=1) |
| 997 | if shell_rc == stop_test_rc(): |
Michael Walsh | 3ba8ecd | 2018-04-24 11:33:25 -0500 | [diff] [blame] | 998 | message = "Stopping as requested by user.\n" |
Michael Walsh | 80dddde | 2019-10-22 13:54:38 -0500 | [diff] [blame] | 999 | gp.qprint_time(message) |
Michael Walsh | 3ba8ecd | 2018-04-24 11:33:25 -0500 | [diff] [blame] | 1000 | BuiltIn().fail(message) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1001 | |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 1002 | # This should help prevent ConnectionErrors. |
George Keishing | 4d65c86 | 2020-12-03 06:52:11 -0600 | [diff] [blame] | 1003 | # Purge all redfish and REST connection sessions. |
George Keishing | d86e45c | 2021-03-19 07:38:14 -0500 | [diff] [blame] | 1004 | if redfish_delete_sessions: |
| 1005 | grk.run_key_u("Close All Connections", ignore=1) |
| 1006 | grk.run_key_u("Delete All Redfish Sessions", ignore=1) |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 1007 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1008 | return True |
| 1009 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1010 | |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 1011 | def obmc_boot_test_teardown(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1012 | r""" |
Michael Walsh | f75d435 | 2019-12-05 17:01:20 -0600 | [diff] [blame] | 1013 | Clean up after the main keyword. |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1014 | """ |
Michael Walsh | f75d435 | 2019-12-05 17:01:20 -0600 | [diff] [blame] | 1015 | gp.qprint_executing() |
| 1016 | |
| 1017 | if ga.psutil_imported: |
| 1018 | ga.terminate_descendants() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1019 | |
| 1020 | if cp_setup_called: |
| 1021 | plug_in_setup() |
| 1022 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 1023 | call_point='cleanup', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1024 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 1025 | if 'boot_results_file_path' in globals(): |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 1026 | # Save boot_results and boot_history objects to a file in case they are |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 1027 | # needed again. |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 1028 | gp.qprint_timen("Saving boot_results to the following path.") |
| 1029 | gp.qprint_var(boot_results_file_path) |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 1030 | pickle.dump((boot_results, boot_history), |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 1031 | open(boot_results_file_path, 'wb'), |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 1032 | pickle.HIGHEST_PROTOCOL) |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 1033 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1034 | global save_stack |
| 1035 | # Restore any global values saved on the save_stack. |
| 1036 | for parm_name in main_func_parm_list: |
| 1037 | # Get the parm_value if it was saved on the stack. |
| 1038 | try: |
| 1039 | parm_value = save_stack.pop(parm_name) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 1040 | except BaseException: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1041 | # If it was not saved, no further action is required. |
| 1042 | continue |
| 1043 | |
| 1044 | # Restore the saved value. |
| 1045 | cmd_buf = "BuiltIn().set_global_variable(\"${" + parm_name +\ |
| 1046 | "}\", parm_value)" |
| 1047 | gp.dpissuing(cmd_buf) |
| 1048 | exec(cmd_buf) |
| 1049 | |
| 1050 | gp.dprintn(save_stack.sprint_obj()) |
| 1051 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1052 | |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1053 | def test_teardown(): |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1054 | r""" |
| 1055 | Clean up after this test case. |
| 1056 | """ |
| 1057 | |
| 1058 | gp.qprintn() |
Michael Walsh | f75d435 | 2019-12-05 17:01:20 -0600 | [diff] [blame] | 1059 | gp.qprint_executing() |
| 1060 | |
| 1061 | if ga.psutil_imported: |
| 1062 | ga.terminate_descendants() |
| 1063 | |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1064 | cmd_buf = ["Print Error", |
| 1065 | "A keyword timeout occurred ending this program.\n"] |
| 1066 | BuiltIn().run_keyword_if_timeout_occurred(*cmd_buf) |
| 1067 | |
George Keishing | a54e06f | 2020-06-12 10:42:41 -0500 | [diff] [blame] | 1068 | if redfish_supported: |
| 1069 | redfish.logout() |
| 1070 | |
Michael Walsh | c108e42 | 2019-03-28 12:27:18 -0500 | [diff] [blame] | 1071 | gp.qprint_pgm_footer() |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1072 | |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1073 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1074 | def post_stack(): |
| 1075 | r""" |
| 1076 | Process post_stack plug-in programs. |
| 1077 | """ |
| 1078 | |
| 1079 | if not call_post_stack_plug: |
| 1080 | # The caller does not wish to have post_stack plug-in processing done. |
| 1081 | return |
| 1082 | |
| 1083 | global boot_success |
| 1084 | |
| 1085 | # NOTE: A post_stack call-point failure is NOT counted as a boot failure. |
| 1086 | pre_boot_plug_in_setup() |
| 1087 | # For the purposes of the following plug-ins, mark the "boot" as a success. |
| 1088 | boot_success = 1 |
| 1089 | plug_in_setup() |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 1090 | rc, shell_rc, failed_plug_in_name, history =\ |
| 1091 | grpi.rprocess_plug_in_packages(call_point='post_stack', |
| 1092 | stop_on_plug_in_failure=0, |
| 1093 | return_history=True) |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 1094 | for doing_msg in history: |
| 1095 | update_boot_history(boot_history, doing_msg, max_boot_history) |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 1096 | if rc != 0: |
| 1097 | boot_success = 0 |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1098 | |
| 1099 | plug_in_setup() |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 1100 | rc, shell_rc, failed_plug_in_name =\ |
| 1101 | grpi.rprocess_plug_in_packages(call_point='ffdc_check', |
| 1102 | shell_rc=dump_ffdc_rc(), |
| 1103 | stop_on_plug_in_failure=1, |
| 1104 | stop_on_non_zero_rc=1) |
| 1105 | if shell_rc == dump_ffdc_rc(): |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1106 | status, ret_values = grk.run_key_u("my_ffdc", ignore=1) |
| 1107 | if status != 'PASS': |
| 1108 | gp.qprint_error("Call to my_ffdc failed.\n") |
Michael Walsh | c9bd2e8 | 2019-04-18 11:06:52 -0500 | [diff] [blame] | 1109 | # Leave a record for caller that "soft" errors occurred. |
| 1110 | soft_errors = 1 |
| 1111 | gpu.save_plug_in_value(soft_errors, pgm_name) |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1112 | |
| 1113 | plug_in_setup() |
| 1114 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 1115 | call_point='stop_check', shell_rc=stop_test_rc(), |
| 1116 | stop_on_non_zero_rc=1) |
| 1117 | if shell_rc == stop_test_rc(): |
| 1118 | message = "Stopping as requested by user.\n" |
Michael Walsh | 80dddde | 2019-10-22 13:54:38 -0500 | [diff] [blame] | 1119 | gp.qprint_time(message) |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1120 | BuiltIn().fail(message) |
| 1121 | |
| 1122 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1123 | def obmc_boot_test_py(loc_boot_stack=None, |
| 1124 | loc_stack_mode=None, |
| 1125 | loc_quiet=None): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1126 | r""" |
| 1127 | Do main program processing. |
| 1128 | """ |
| 1129 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1130 | global save_stack |
| 1131 | |
Michael Walsh | f75d435 | 2019-12-05 17:01:20 -0600 | [diff] [blame] | 1132 | ga.set_term_options(term_requests={'pgm_names': ['process_plug_in_packages.py']}) |
| 1133 | |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1134 | gp.dprintn() |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1135 | # Process function parms. |
| 1136 | for parm_name in main_func_parm_list: |
| 1137 | # Get parm's value. |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1138 | parm_value = eval("loc_" + parm_name) |
| 1139 | gp.dpvars(parm_name, parm_value) |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1140 | |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1141 | if parm_value is not None: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1142 | # Save the global value on a stack. |
| 1143 | cmd_buf = "save_stack.push(BuiltIn().get_variable_value(\"${" +\ |
| 1144 | parm_name + "}\"), \"" + parm_name + "\")" |
| 1145 | gp.dpissuing(cmd_buf) |
| 1146 | exec(cmd_buf) |
| 1147 | |
| 1148 | # Set the global value to the passed value. |
| 1149 | cmd_buf = "BuiltIn().set_global_variable(\"${" + parm_name +\ |
| 1150 | "}\", loc_" + parm_name + ")" |
| 1151 | gp.dpissuing(cmd_buf) |
| 1152 | exec(cmd_buf) |
| 1153 | |
| 1154 | gp.dprintn(save_stack.sprint_obj()) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1155 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1156 | setup() |
| 1157 | |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1158 | init_boot_pass, init_boot_fail = boot_results.return_total_pass_fail() |
| 1159 | |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 1160 | if ffdc_only: |
| 1161 | gp.qprint_timen("Caller requested ffdc_only.") |
Michael Walsh | 986d8ae | 2019-07-17 10:02:23 -0500 | [diff] [blame] | 1162 | if do_pre_boot_plug_in_setup: |
| 1163 | pre_boot_plug_in_setup() |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 1164 | grk.run_key_u("my_ffdc") |
Michael Walsh | 764d2f8 | 2017-04-27 16:01:08 -0500 | [diff] [blame] | 1165 | return |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 1166 | |
Michael Walsh | 409ad35 | 2020-02-06 11:46:35 -0600 | [diff] [blame] | 1167 | if delete_errlogs: |
Michael Shepos | 1a67b08 | 2020-08-28 16:01:58 -0500 | [diff] [blame] | 1168 | # print error logs before delete |
| 1169 | status, error_logs = grk.run_key_u("Get Error Logs") |
| 1170 | pels = pel.peltool("-l", ignore_err=1) |
Michael Shepos | 0e5f113 | 2020-09-30 16:24:25 -0500 | [diff] [blame] | 1171 | log.print_error_logs(error_logs, "AdditionalData Message Severity") |
| 1172 | gp.qprint_var(pels) |
Michael Shepos | 1a67b08 | 2020-08-28 16:01:58 -0500 | [diff] [blame] | 1173 | |
Michael Walsh | 409ad35 | 2020-02-06 11:46:35 -0600 | [diff] [blame] | 1174 | # Delete errlogs prior to doing any boot tests. |
| 1175 | grk.run_key(delete_errlogs_cmd, ignore=1) |
Michael Shepos | 92a54bf | 2020-11-11 11:48:55 -0600 | [diff] [blame] | 1176 | grk.run_key(delete_bmcdump_cmd, ignore=1) |
George Keishing | 2ef6a7d | 2021-05-19 09:05:32 -0500 | [diff] [blame] | 1177 | if redfish_support_trans_state: |
| 1178 | grk.run_key(delete_sysdump_cmd, ignore=1) |
Michael Walsh | 409ad35 | 2020-02-06 11:46:35 -0600 | [diff] [blame] | 1179 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1180 | # Process caller's boot_stack. |
| 1181 | while (len(boot_stack) > 0): |
| 1182 | test_loop_body() |
| 1183 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1184 | gp.qprint_timen("Finished processing stack.") |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 1185 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1186 | post_stack() |
| 1187 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1188 | # Process caller's boot_list. |
| 1189 | if len(boot_list) > 0: |
| 1190 | for ix in range(1, max_num_tests + 1): |
| 1191 | test_loop_body() |
| 1192 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1193 | gp.qprint_timen("Completed all requested boot tests.") |
| 1194 | |
| 1195 | boot_pass, boot_fail = boot_results.return_total_pass_fail() |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1196 | new_fail = boot_fail - init_boot_fail |
| 1197 | if new_fail > boot_fail_threshold: |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1198 | error_message = "Boot failures exceed the boot failure" +\ |
| 1199 | " threshold:\n" +\ |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1200 | gp.sprint_var(new_fail) +\ |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1201 | gp.sprint_var(boot_fail_threshold) |
| 1202 | BuiltIn().fail(gp.sprint_error(error_message)) |