George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | r""" |
| 4 | State Manager module: |
| 5 | |
| 6 | - Defines Valid states of the system |
| 7 | |
| 8 | """ |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 9 | import os |
| 10 | import re |
| 11 | import sys |
| 12 | |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 13 | from robot.libraries.BuiltIn import BuiltIn |
| 14 | |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 15 | robot_pgm_dir_path = os.path.dirname(__file__) + os.sep |
| 16 | repo_data_dir_path = re.sub('/lib', '/data', robot_pgm_dir_path) |
| 17 | sys.path.append(repo_data_dir_path) |
| 18 | |
| 19 | import gen_robot_keyword as keyword |
| 20 | import variables as var |
| 21 | |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 22 | BuiltIn().import_resource("state_manager.robot") |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 23 | BuiltIn().import_resource("rest_client.robot") |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 24 | |
| 25 | # We will build eventually the mapping for warm, cold reset as well. |
| 26 | VALID_STATES = { |
| 27 | 'reboot': |
| 28 | { |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 29 | # (Power Policy, BMC state, Chassis State, Host State) |
| 30 | ('LEAVE_OFF', 'Ready', 'Off', 'Off'), |
| 31 | ('ALWAYS_POWER_ON', 'Ready', 'On', 'Running'), |
| 32 | ('ALWAYS_POWER_ON', 'Ready', 'On', 'Off'), |
| 33 | ('RESTORE_LAST_STATE', 'Ready', 'On', 'Running'), |
| 34 | ('RESTORE_LAST_STATE', 'Ready', 'On', 'Off'), |
| 35 | ('RESTORE_LAST_STATE', 'Ready', 'Off', 'Off'), |
| 36 | }, |
| 37 | } |
| 38 | |
| 39 | VALID_BOOT_STATES = { |
| 40 | 'Off': # Valid states when Host is Off. |
| 41 | { |
| 42 | # (BMC , Chassis , Host , BootProgress, OperatingSystemState) |
| 43 | ( |
| 44 | "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 45 | "xyz.openbmc_project.State.Chassis.PowerState.Off", |
| 46 | "xyz.openbmc_project.State.Host.HostState.Off", |
| 47 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages.Unspecified", |
| 48 | "xyz.openbmc_project.State.OperatingSystem.Status.OSStatus.Inactive" |
| 49 | ), |
| 50 | }, |
| 51 | 'Reboot': # Valid states when BMC reset to standby. |
| 52 | { |
| 53 | # (BMC , Chassis , Host , BootProgress, OperatingSystemState) |
| 54 | ( |
| 55 | "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 56 | "xyz.openbmc_project.State.Chassis.PowerState.Off", |
| 57 | "xyz.openbmc_project.State.Host.HostState.Off", |
| 58 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages.Unspecified", |
| 59 | "xyz.openbmc_project.State.OperatingSystem.Status.OSStatus.Inactive" |
| 60 | ), |
| 61 | }, |
| 62 | 'Running': # Valid states when Host is powering on. |
| 63 | { |
| 64 | # (BMC , Chassis , Host , BootProgress, OperatingSystemState) |
| 65 | ( |
| 66 | "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 67 | "xyz.openbmc_project.State.Chassis.PowerState.On", |
| 68 | "xyz.openbmc_project.State.Host.HostState.Running", |
| 69 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages.MotherboardInit", |
| 70 | "xyz.openbmc_project.State.OperatingSystem.Status.OSStatus.Inactive" |
| 71 | ), |
| 72 | }, |
| 73 | 'Booted': # Valid state when Host is booted. |
| 74 | { |
| 75 | # (BMC , Chassis , Host , BootProgress, OperatingSystemState) |
| 76 | ( |
| 77 | "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 78 | "xyz.openbmc_project.State.Chassis.PowerState.On", |
| 79 | "xyz.openbmc_project.State.Host.HostState.Running", |
| 80 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages.OSStart", |
| 81 | "xyz.openbmc_project.State.OperatingSystem.Status.OSStatus.BootComplete" |
| 82 | ), |
| 83 | }, |
| 84 | 'ResetReload': # Valid state BMC reset reload when host is booted. |
| 85 | { |
| 86 | # (BMC , Chassis , Host , BootProgress, OperatingSystemState) |
| 87 | ( |
| 88 | "xyz.openbmc_project.State.BMC.BMCState.Ready", |
| 89 | "xyz.openbmc_project.State.Chassis.PowerState.On", |
| 90 | "xyz.openbmc_project.State.Host.HostState.Running", |
| 91 | "xyz.openbmc_project.State.Boot.Progress.ProgressStages.OSStart", |
| 92 | "xyz.openbmc_project.State.OperatingSystem.Status.OSStatus.BootComplete" |
| 93 | ), |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 94 | }, |
| 95 | } |
| 96 | |
| 97 | |
| 98 | class state_map(): |
| 99 | |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 100 | def get_boot_state(self): |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 101 | r""" |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 102 | Return the system state as a tuple of bmc, chassis, host state, |
| 103 | BootProgress and OperatingSystemState. |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 104 | """ |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 105 | |
| 106 | status, state = keyword.run_key("Read Properties " + |
| 107 | var.SYSTEM_STATE_URI + "enumerate") |
| 108 | bmc_state = state[var.SYSTEM_STATE_URI + 'bmc0']['CurrentBMCState'] |
| 109 | chassis_state = \ |
| 110 | state[var.SYSTEM_STATE_URI + 'chassis0']['CurrentPowerState'] |
| 111 | host_state = state[var.SYSTEM_STATE_URI + 'host0']['CurrentHostState'] |
| 112 | boot_state = state[var.SYSTEM_STATE_URI + 'host0']['BootProgress'] |
| 113 | os_state = \ |
| 114 | state[var.SYSTEM_STATE_URI + 'host0']['OperatingSystemState'] |
| 115 | |
| 116 | return (str(bmc_state), |
George Keishing | 4d6f3d6 | 2017-02-06 09:50:41 -0600 | [diff] [blame] | 117 | str(chassis_state), |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 118 | str(host_state), |
| 119 | str(boot_state), |
| 120 | str(os_state)) |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 121 | |
| 122 | def valid_boot_state(self, boot_type, state_set): |
| 123 | r""" |
| 124 | Validate a given set of states is valid. |
| 125 | |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 126 | Description of argument(s): |
| 127 | boot_type Boot type (e.g. off/running/host booted etc.) |
| 128 | state_set State set |
| 129 | (e.g.bmc,chassis,host,BootProgress,OperatingSystemState) |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 130 | """ |
George Keishing | 678b65c | 2017-08-31 16:16:39 -0500 | [diff] [blame] | 131 | |
| 132 | if state_set in set(VALID_BOOT_STATES[boot_type]): |
George Keishing | df9ad39 | 2017-01-25 13:01:15 -0600 | [diff] [blame] | 133 | return True |
| 134 | else: |
| 135 | return False |