blob: 105f9fbc1b75b9aa10caec4cf2d01d1cbb004edd [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
2
Sweta Potthuridaf91342017-09-07 12:05:56 -05003OPENBMC_BASE_URI = '/xyz/openbmc_project/'
4OPENBMC_BASE_DBUS = 'xyz.openbmc_project.'
George Keishingcf910442016-12-08 03:12:59 -06005
George Keishingcae6e902017-09-07 13:35:59 -05006# org open power base URI.
7OPENPOWER_BASE_URI = '/org/open_power/'
8OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/'
George Keishingac512252018-02-05 02:04:30 -06009OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/'
George Keishingcae6e902017-09-07 13:35:59 -050010
11# REST URI base endpoint paths.
George Keishingcf910442016-12-08 03:12:59 -060012CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishing0da47e92017-10-23 02:22:29 -050013# old vs new code dependencies in many places.
14# TODO: remove when ready.
15SETTINGS_URI = '/org/openbmc/settings/'
George Keishingcf910442016-12-08 03:12:59 -060016WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
Sweta Potthuridaf91342017-09-07 12:05:56 -050017TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
manasarm104cc6b2018-02-07 12:35:05 +053018NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
Prashanth Katti081b3d92018-06-15 05:13:11 -050019# SNMP
20SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/'
George Keishing06572472017-09-01 11:33:01 -050021# Sensors base variables.
Gunnar Millsdca35792018-03-26 10:05:38 -050022SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
George Keishing06572472017-09-01 11:33:01 -050023
Sweta Potthuridaf91342017-09-07 12:05:56 -050024# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060025BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
26
George Keishingbec365b2017-01-19 01:28:41 -060027HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
28HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060029HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060030HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
31HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
32
33CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
34CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
35CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
36CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
37
38# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050039SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
40BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
41HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
42CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
43HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060044
George Keishing505d5b42017-02-21 11:01:54 -060045# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050046BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060047BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060048
George Keishingab5157b2017-02-09 12:24:25 -060049# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050050SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060051ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050052READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
53INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
54ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
55NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
56FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
57
58SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050059REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
60REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050061REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
62
63SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
64VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
65VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
66VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060067
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050068# Image Upload Directory Path
69IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
70
George Keishingc8166ed2017-02-24 03:53:38 -060071# Inventory URI
Sweta Potthuridaf91342017-09-07 12:05:56 -050072HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
George Keishingc8166ed2017-02-24 03:53:38 -060073
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060074# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050075LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
76LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060077
George Keishing1059b222017-07-21 13:24:43 -050078# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050079CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060080
George Keishing1c3a9662017-08-11 10:16:36 -050081# Power restore variables.
82POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
83CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
84
85RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
86ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
87ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
88
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060089# Dump URI variables.
Gunnar Millsdca35792018-03-26 10:05:38 -050090DUMP_URI = OPENBMC_BASE_URI + '/dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050091DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Michael Walshe11a1362017-10-19 15:35:26 -050092# The path on the BMC where dumps are stored.
93DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050094
George Keishing2bd6fc02017-08-10 01:15:16 -050095# Boot progress variables.
96STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
97OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
98OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060099OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
100OS_BOOT_SECPCI = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500101 'Boot.Progress.ProgressStages.SecondaryProcInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600102OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
103OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500104 'Boot.Progress.ProgressStages.MotherboardInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600105
106# OperatingSystem status variables.
Gunnar Millsdca35792018-03-26 10:05:38 -0500107OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
108 'OperatingSystem.Status.OSStatus.BootComplete'
109OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600110OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
111OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
112OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
113OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500114
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500115# Boot variables.
116BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
117BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
118BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
119BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
120BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
121BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
122BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
123
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500124# Time variables.
125TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
126BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
127HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
128SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
129BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
130NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
131MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
132
George Keishingf1331672018-01-18 05:19:02 -0600133# User manager variable.
134BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
135
George Keishing0b837432018-03-20 13:46:10 -0500136# The path on the BMC where signed keys are stored.
137ACTIVATION_DIR_PATH = "/etc/activationdata/"
138
George Keishingeaa73b72018-07-30 09:30:16 -0500139# Redfish variables.
140REDFISH_BASE_URI = '/redfish/v1/'
141REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
George Keishing9cef1092018-08-06 01:06:24 -0500142REDFISH_SESSION_URI = 'SessionService/Sessions/'
George Keishingeaa73b72018-07-30 09:30:16 -0500143
George Keishing6a514ef2018-08-27 05:19:19 -0500144# rsyslog variables.
145REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
146
George Keishingfbeaecc2016-08-16 05:24:31 -0500147'''
148 QEMU HTTPS variable:
149
150 By default lib/resource.txt AUTH URI construct is as
151 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
152 ${AUTH_SUFFIX} is populated here by default EMPTY else
153 the port from the OS environment
154'''
George Keishingcf910442016-12-08 03:12:59 -0600155
156
George Keishingfbeaecc2016-08-16 05:24:31 -0500157def get_port_https():
158 # defaulted to empty string
159 l_suffix = ''
160 try:
161 l_https_port = os.getenv('HTTPS_PORT')
162 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600163 l_suffix = ':' + l_https_port
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500164 except BaseException:
George Keishing3b7115a2018-08-02 10:48:17 -0500165 print ("Environment variable HTTPS_PORT not set,\
166 using default HTTPS port")
George Keishingfbeaecc2016-08-16 05:24:31 -0500167 return l_suffix
168
Gunnar Millsdca35792018-03-26 10:05:38 -0500169
George Keishingcf910442016-12-08 03:12:59 -0600170AUTH_SUFFIX = {
171 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500172}
173
174# Update the ':Port number' to this variable
175AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500176
177# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600178INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500179 "CPU": [
180 "Custom Field 1",
181 "Custom Field 2",
182 "Custom Field 3",
183 "Custom Field 4",
184 "Custom Field 5",
185 "Custom Field 6",
186 "Custom Field 7",
187 "Custom Field 8",
188 "FRU File ID",
189 "Manufacturer",
190 "Name",
191 "Part Number",
192 "Serial Number",
193 "fault",
194 "fru_type",
195 "is_fru",
196 "present",
197 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500198 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500199
200 "DIMM": [
201 "Asset Tag",
202 "Custom Field 1",
203 "Custom Field 2",
204 "Custom Field 3",
205 "Custom Field 4",
206 "Custom Field 5",
207 "Custom Field 6",
208 "Custom Field 7",
209 "Custom Field 8",
210 "FRU File ID",
211 "Manufacturer",
212 "Model Number",
213 "Name",
214 "Serial Number",
215 "Version",
216 "fault",
217 "fru_type",
218 "is_fru",
219 "present",
220 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500221 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500222 "MEMORY_BUFFER": [
223 "Custom Field 1",
224 "Custom Field 2",
225 "Custom Field 3",
226 "Custom Field 4",
227 "Custom Field 5",
228 "Custom Field 6",
229 "Custom Field 7",
230 "Custom Field 8",
231 "FRU File ID",
232 "Manufacturer",
233 "Name",
234 "Part Number",
235 "Serial Number",
236 "fault",
237 "fru_type",
238 "is_fru",
239 "present",
240 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500241 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500242 "FAN": [
243 "fault",
244 "fru_type",
245 "is_fru",
246 "present",
247 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500248 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500249 "DAUGHTER_CARD": [
250 "Custom Field 1",
251 "Custom Field 2",
252 "Custom Field 3",
253 "Custom Field 4",
254 "Custom Field 5",
255 "Custom Field 6",
256 "Custom Field 7",
257 "Custom Field 8",
258 "FRU File ID",
259 "Manufacturer",
260 "Name",
261 "Part Number",
262 "Serial Number",
263 "fault",
264 "fru_type",
265 "is_fru",
266 "present",
267 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500268 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500269 "BMC": [
270 "fault",
271 "fru_type",
272 "is_fru",
273 "manufacturer",
274 "present",
275 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500276 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500277 "MAIN_PLANAR": [
278 "Custom Field 1",
279 "Custom Field 2",
280 "Custom Field 3",
281 "Custom Field 4",
282 "Custom Field 5",
283 "Custom Field 6",
284 "Custom Field 7",
285 "Custom Field 8",
286 "Part Number",
287 "Serial Number",
288 "Type",
289 "fault",
290 "fru_type",
291 "is_fru",
292 "present",
293 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500294 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500295 "SYSTEM": [
296 "Custom Field 1",
297 "Custom Field 2",
298 "Custom Field 3",
299 "Custom Field 4",
300 "Custom Field 5",
301 "Custom Field 6",
302 "Custom Field 7",
303 "Custom Field 8",
304 "FRU File ID",
305 "Manufacturer",
306 "Model Number",
307 "Name",
308 "Serial Number",
309 "Version",
310 "fault",
311 "fru_type",
312 "is_fru",
313 "present",
314 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500315 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500316 "CORE": [
317 "fault",
318 "fru_type",
319 "is_fru",
320 "present",
321 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500322 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500323}