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