George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 1 | import os |
| 2 | |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 3 | OPENBMC_BASE_URI = '/xyz/openbmc_project/' |
| 4 | OPENBMC_BASE_DBUS = 'xyz.openbmc_project.' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 5 | |
George Keishing | cae6e90 | 2017-09-07 13:35:59 -0500 | [diff] [blame] | 6 | # org open power base URI. |
| 7 | OPENPOWER_BASE_URI = '/org/open_power/' |
| 8 | OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/' |
| 9 | |
| 10 | # REST URI base endpoint paths. |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 11 | CONTROL_URI = OPENBMC_BASE_URI + 'control/' |
George Keishing | 0da47e9 | 2017-10-23 02:22:29 -0500 | [diff] [blame] | 12 | # old vs new code dependencies in many places. |
| 13 | # TODO: remove when ready. |
| 14 | SETTINGS_URI = '/org/openbmc/settings/' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 15 | WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/' |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 16 | TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/' |
| 17 | XYZ_NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 18 | |
George Keishing | 0657247 | 2017-09-01 11:33:01 -0500 | [diff] [blame] | 19 | # Sensors base variables. |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 20 | SENSORS_URI = OPENBMC_BASE_URI + 'sensors/' |
George Keishing | 0657247 | 2017-09-01 11:33:01 -0500 | [diff] [blame] | 21 | |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 22 | # State Manager base variables |
Rahul Maheshwari | 2f8de6c | 2017-01-17 07:00:22 -0600 | [diff] [blame] | 23 | BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot' |
| 24 | |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 25 | HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off' |
| 26 | HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On' |
Rahul Maheshwari | f7ead24 | 2017-02-14 01:59:42 -0600 | [diff] [blame] | 27 | HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 28 | HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off' |
| 29 | HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running' |
| 30 | |
| 31 | CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off' |
| 32 | CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On' |
| 33 | CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off' |
| 34 | CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On' |
| 35 | |
| 36 | # State Manager URI variables. |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 37 | SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/' |
| 38 | BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/' |
| 39 | HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/' |
| 40 | CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/' |
| 41 | HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/' |
George Keishing | bec365b | 2017-01-19 01:28:41 -0600 | [diff] [blame] | 42 | |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 43 | # Logging URI variables |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 44 | BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/' |
George Keishing | a71dd20 | 2017-02-24 00:49:40 -0600 | [diff] [blame] | 45 | BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/' |
George Keishing | 505d5b4 | 2017-02-21 11:01:54 -0600 | [diff] [blame] | 46 | |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 47 | # Software manager version |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 48 | SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 49 | ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active' |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 50 | READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready' |
| 51 | INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid' |
| 52 | ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating' |
| 53 | NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady' |
| 54 | FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed' |
| 55 | |
| 56 | SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation' |
George Keishing | 4af8f36 | 2017-10-23 00:26:58 -0500 | [diff] [blame] | 57 | REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations' |
| 58 | REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active' |
Saqib Khan | bb8b63f | 2017-05-24 10:58:01 -0500 | [diff] [blame] | 59 | REQUESTED_NONE = REQUESTED_ACTIVATION + '.None' |
| 60 | |
| 61 | SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose' |
| 62 | VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host' |
| 63 | VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC' |
| 64 | VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System' |
George Keishing | ab5157b | 2017-02-09 12:24:25 -0600 | [diff] [blame] | 65 | |
Charles Paul Hofer | 9f74d3a | 2017-08-18 09:54:28 -0500 | [diff] [blame] | 66 | # Image Upload Directory Path |
| 67 | IMAGE_UPLOAD_DIR_PATH = '/tmp/images/' |
| 68 | |
George Keishing | c8166ed | 2017-02-24 03:53:38 -0600 | [diff] [blame] | 69 | # Inventory URI |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 70 | HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/' |
George Keishing | c8166ed | 2017-02-24 03:53:38 -0600 | [diff] [blame] | 71 | |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 72 | # Led URI variable |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 73 | LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/' |
| 74 | LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 75 | |
George Keishing | 1059b22 | 2017-07-21 13:24:43 -0500 | [diff] [blame] | 76 | # Host control URI variables. |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 77 | CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/' |
Rahul Maheshwari | 7258aec | 2017-02-02 04:46:38 -0600 | [diff] [blame] | 78 | |
George Keishing | 1c3a966 | 2017-08-11 10:16:36 -0500 | [diff] [blame] | 79 | # Power restore variables. |
| 80 | POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy' |
| 81 | CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.' |
| 82 | |
| 83 | RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore' |
| 84 | ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn' |
| 85 | ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff' |
| 86 | |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 87 | # Dump URI variable |
Sweta Potthuri | daf9134 | 2017-09-07 12:05:56 -0500 | [diff] [blame] | 88 | DUMP_URI = OPENBMC_BASE_URI +'/dump/' |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 89 | DUMP_ENTRY_URI = DUMP_URI + 'entry/' |
Michael Walsh | e11a136 | 2017-10-19 15:35:26 -0500 | [diff] [blame] | 90 | # The path on the BMC where dumps are stored. |
| 91 | DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/" |
Rahul Maheshwari | 23b18fb | 2017-08-01 00:30:26 -0500 | [diff] [blame] | 92 | |
George Keishing | 2bd6fc0 | 2017-08-10 01:15:16 -0500 | [diff] [blame] | 93 | # Boot progress variables. |
| 94 | STATE_DBUS_BASE = 'xyz.openbmc_project.State.' |
| 95 | OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart' |
| 96 | OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified' |
| 97 | OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete' |
| 98 | |
Rahul Maheshwari | 85c4d34 | 2017-08-09 21:59:30 -0500 | [diff] [blame] | 99 | # Boot variables. |
| 100 | BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default' |
| 101 | BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network' |
| 102 | BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk' |
| 103 | BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia' |
| 104 | BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe' |
| 105 | BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup' |
| 106 | BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular' |
| 107 | |
Rahul Maheshwari | f486ae8 | 2017-10-24 06:10:14 -0500 | [diff] [blame] | 108 | # Time variables. |
| 109 | TIME_DBUS_BASE = 'xyz.openbmc_project.Time.' |
| 110 | BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC' |
| 111 | HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host' |
| 112 | SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split' |
| 113 | BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both' |
| 114 | NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP' |
| 115 | MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual' |
| 116 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 117 | ''' |
| 118 | QEMU HTTPS variable: |
| 119 | |
| 120 | By default lib/resource.txt AUTH URI construct is as |
| 121 | ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX} |
| 122 | ${AUTH_SUFFIX} is populated here by default EMPTY else |
| 123 | the port from the OS environment |
| 124 | ''' |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 125 | |
| 126 | |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 127 | def get_port_https(): |
| 128 | # defaulted to empty string |
| 129 | l_suffix = '' |
| 130 | try: |
| 131 | l_https_port = os.getenv('HTTPS_PORT') |
| 132 | if l_https_port: |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 133 | l_suffix = ':' + l_https_port |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 134 | except: |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 135 | print "Environment variable HTTPS_PORT not set,\ |
| 136 | using default HTTPS port" |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 137 | return l_suffix |
| 138 | |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 139 | AUTH_SUFFIX = { |
| 140 | "https_port": [get_port_https()], |
George Keishing | fbeaecc | 2016-08-16 05:24:31 -0500 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | # Update the ':Port number' to this variable |
| 144 | AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0] |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 145 | |
| 146 | # Here contains a list of valid Properties bases on fru_type after a boot. |
George Keishing | cf91044 | 2016-12-08 03:12:59 -0600 | [diff] [blame] | 147 | INVENTORY_ITEMS = { |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 148 | "CPU": [ |
| 149 | "Custom Field 1", |
| 150 | "Custom Field 2", |
| 151 | "Custom Field 3", |
| 152 | "Custom Field 4", |
| 153 | "Custom Field 5", |
| 154 | "Custom Field 6", |
| 155 | "Custom Field 7", |
| 156 | "Custom Field 8", |
| 157 | "FRU File ID", |
| 158 | "Manufacturer", |
| 159 | "Name", |
| 160 | "Part Number", |
| 161 | "Serial Number", |
| 162 | "fault", |
| 163 | "fru_type", |
| 164 | "is_fru", |
| 165 | "present", |
| 166 | "version", |
| 167 | ], |
| 168 | |
| 169 | "DIMM": [ |
| 170 | "Asset Tag", |
| 171 | "Custom Field 1", |
| 172 | "Custom Field 2", |
| 173 | "Custom Field 3", |
| 174 | "Custom Field 4", |
| 175 | "Custom Field 5", |
| 176 | "Custom Field 6", |
| 177 | "Custom Field 7", |
| 178 | "Custom Field 8", |
| 179 | "FRU File ID", |
| 180 | "Manufacturer", |
| 181 | "Model Number", |
| 182 | "Name", |
| 183 | "Serial Number", |
| 184 | "Version", |
| 185 | "fault", |
| 186 | "fru_type", |
| 187 | "is_fru", |
| 188 | "present", |
| 189 | "version", |
| 190 | ], |
| 191 | "MEMORY_BUFFER": [ |
| 192 | "Custom Field 1", |
| 193 | "Custom Field 2", |
| 194 | "Custom Field 3", |
| 195 | "Custom Field 4", |
| 196 | "Custom Field 5", |
| 197 | "Custom Field 6", |
| 198 | "Custom Field 7", |
| 199 | "Custom Field 8", |
| 200 | "FRU File ID", |
| 201 | "Manufacturer", |
| 202 | "Name", |
| 203 | "Part Number", |
| 204 | "Serial Number", |
| 205 | "fault", |
| 206 | "fru_type", |
| 207 | "is_fru", |
| 208 | "present", |
| 209 | "version", |
| 210 | ], |
| 211 | "FAN": [ |
| 212 | "fault", |
| 213 | "fru_type", |
| 214 | "is_fru", |
| 215 | "present", |
| 216 | "version", |
| 217 | ], |
| 218 | "DAUGHTER_CARD": [ |
| 219 | "Custom Field 1", |
| 220 | "Custom Field 2", |
| 221 | "Custom Field 3", |
| 222 | "Custom Field 4", |
| 223 | "Custom Field 5", |
| 224 | "Custom Field 6", |
| 225 | "Custom Field 7", |
| 226 | "Custom Field 8", |
| 227 | "FRU File ID", |
| 228 | "Manufacturer", |
| 229 | "Name", |
| 230 | "Part Number", |
| 231 | "Serial Number", |
| 232 | "fault", |
| 233 | "fru_type", |
| 234 | "is_fru", |
| 235 | "present", |
| 236 | "version", |
| 237 | ], |
| 238 | "BMC": [ |
| 239 | "fault", |
| 240 | "fru_type", |
| 241 | "is_fru", |
| 242 | "manufacturer", |
| 243 | "present", |
| 244 | "version", |
| 245 | ], |
| 246 | "MAIN_PLANAR": [ |
| 247 | "Custom Field 1", |
| 248 | "Custom Field 2", |
| 249 | "Custom Field 3", |
| 250 | "Custom Field 4", |
| 251 | "Custom Field 5", |
| 252 | "Custom Field 6", |
| 253 | "Custom Field 7", |
| 254 | "Custom Field 8", |
| 255 | "Part Number", |
| 256 | "Serial Number", |
| 257 | "Type", |
| 258 | "fault", |
| 259 | "fru_type", |
| 260 | "is_fru", |
| 261 | "present", |
| 262 | "version", |
| 263 | ], |
| 264 | "SYSTEM": [ |
| 265 | "Custom Field 1", |
| 266 | "Custom Field 2", |
| 267 | "Custom Field 3", |
| 268 | "Custom Field 4", |
| 269 | "Custom Field 5", |
| 270 | "Custom Field 6", |
| 271 | "Custom Field 7", |
| 272 | "Custom Field 8", |
| 273 | "FRU File ID", |
| 274 | "Manufacturer", |
| 275 | "Model Number", |
| 276 | "Name", |
| 277 | "Serial Number", |
| 278 | "Version", |
| 279 | "fault", |
| 280 | "fru_type", |
| 281 | "is_fru", |
| 282 | "present", |
| 283 | "version", |
| 284 | ], |
| 285 | "CORE": [ |
| 286 | "fault", |
| 287 | "fru_type", |
| 288 | "is_fru", |
| 289 | "present", |
| 290 | "version", |
| 291 | ], |
| 292 | } |