1import os 2 3OPENBMC_BASE_URI = '/xyz/openbmc_project/' 4OPENBMC_BASE_DBUS = 'xyz.openbmc_project.' 5 6# org open power base URI. 7OPENPOWER_BASE_URI = '/org/open_power/' 8OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/' 9 10# REST URI base endpoint paths. 11CONTROL_URI = OPENBMC_BASE_URI + 'control/' 12# old vs new code dependencies in many places. 13# TODO: remove when ready. 14SETTINGS_URI = '/org/openbmc/settings/' 15WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/' 16TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/' 17XYZ_NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/' 18 19# Sensors base variables. 20SENSORS_URI = OPENBMC_BASE_URI + 'sensors/' 21 22# State Manager base variables 23BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot' 24 25HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off' 26HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On' 27HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot' 28HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off' 29HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running' 30 31CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off' 32CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On' 33CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off' 34CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On' 35 36# State Manager URI variables. 37SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/' 38BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/' 39HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/' 40CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/' 41HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/' 42 43# Logging URI variables 44BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/' 45BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/' 46 47# Software manager version 48SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/' 49ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active' 50READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready' 51INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid' 52ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating' 53NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady' 54FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed' 55 56SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation' 57REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations' 58REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active' 59REQUESTED_NONE = REQUESTED_ACTIVATION + '.None' 60 61SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose' 62VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host' 63VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC' 64VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System' 65 66# Image Upload Directory Path 67IMAGE_UPLOAD_DIR_PATH = '/tmp/images/' 68 69# Inventory URI 70HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/' 71 72# Led URI variable 73LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/' 74LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/' 75 76# Host control URI variables. 77CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/' 78 79# Power restore variables. 80POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy' 81CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.' 82 83RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore' 84ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn' 85ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff' 86 87# Dump URI variable 88DUMP_URI = OPENBMC_BASE_URI +'/dump/' 89DUMP_ENTRY_URI = DUMP_URI + 'entry/' 90# The path on the BMC where dumps are stored. 91DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/" 92 93# Boot progress variables. 94STATE_DBUS_BASE = 'xyz.openbmc_project.State.' 95OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart' 96OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified' 97OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete' 98 99# Boot variables. 100BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default' 101BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network' 102BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk' 103BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia' 104BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe' 105BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup' 106BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular' 107 108# Time variables. 109TIME_DBUS_BASE = 'xyz.openbmc_project.Time.' 110BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC' 111HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host' 112SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split' 113BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both' 114NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP' 115MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual' 116 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''' 125 126 127def 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: 133 l_suffix = ':' + l_https_port 134 except: 135 print "Environment variable HTTPS_PORT not set,\ 136 using default HTTPS port" 137 return l_suffix 138 139AUTH_SUFFIX = { 140 "https_port": [get_port_https()], 141} 142 143# Update the ':Port number' to this variable 144AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0] 145 146# Here contains a list of valid Properties bases on fru_type after a boot. 147INVENTORY_ITEMS = { 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} 293