blob: 2b3f6e61d32cd309c73ac3817c02439fa80f3508 [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/'
George Keishingcf910442016-12-08 03:12:59 -060019
George Keishing06572472017-09-01 11:33:01 -050020# Sensors base variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050021SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
George Keishing06572472017-09-01 11:33:01 -050022
Sweta Potthuridaf91342017-09-07 12:05:56 -050023# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060024BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
25
George Keishingbec365b2017-01-19 01:28:41 -060026HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
27HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060028HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060029HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
30HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
31
32CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
33CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
34CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
35CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
36
37# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050038SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
39BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
40HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
41CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
42HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060043
George Keishing505d5b42017-02-21 11:01:54 -060044# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050045BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060046BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060047
George Keishingab5157b2017-02-09 12:24:25 -060048# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050049SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060050ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050051READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
52INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
53ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
54NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
55FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
56
57SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050058REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
59REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050060REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
61
62SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
63VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
64VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
65VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060066
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050067# Image Upload Directory Path
68IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
69
George Keishingc8166ed2017-02-24 03:53:38 -060070# Inventory URI
Sweta Potthuridaf91342017-09-07 12:05:56 -050071HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
George Keishingc8166ed2017-02-24 03:53:38 -060072
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060073# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050074LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
75LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060076
George Keishing1059b222017-07-21 13:24:43 -050077# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050078CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060079
George Keishing1c3a9662017-08-11 10:16:36 -050080# Power restore variables.
81POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
82CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
83
84RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
85ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
86ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
87
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060088# Dump URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050089DUMP_URI = OPENBMC_BASE_URI +'/dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050090DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Michael Walshe11a1362017-10-19 15:35:26 -050091# The path on the BMC where dumps are stored.
92DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050093
George Keishing2bd6fc02017-08-10 01:15:16 -050094# Boot progress variables.
95STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
96OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
97OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060098OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
99OS_BOOT_SECPCI = STATE_DBUS_BASE + \
100 'Boot.Progress.ProgressStages.SecondaryProcInit'
101OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
102OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
103 'Boot.Progress.ProgressStages.MotherboardInit'
104
105# OperatingSystem status variables.
George Keishing2bd6fc02017-08-10 01:15:16 -0500106OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600107OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
108OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
109OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
110OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
111OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500112
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500113# Boot variables.
114BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
115BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
116BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
117BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
118BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
119BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
120BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
121
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500122# Time variables.
123TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
124BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
125HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
126SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
127BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
128NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
129MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
130
George Keishingf1331672018-01-18 05:19:02 -0600131# User manager variable.
132BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
133
George Keishing0b837432018-03-20 13:46:10 -0500134# The path on the BMC where signed keys are stored.
135ACTIVATION_DIR_PATH = "/etc/activationdata/"
136
George Keishingfbeaecc2016-08-16 05:24:31 -0500137'''
138 QEMU HTTPS variable:
139
140 By default lib/resource.txt AUTH URI construct is as
141 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
142 ${AUTH_SUFFIX} is populated here by default EMPTY else
143 the port from the OS environment
144'''
George Keishingcf910442016-12-08 03:12:59 -0600145
146
George Keishingfbeaecc2016-08-16 05:24:31 -0500147def get_port_https():
148 # defaulted to empty string
149 l_suffix = ''
150 try:
151 l_https_port = os.getenv('HTTPS_PORT')
152 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600153 l_suffix = ':' + l_https_port
George Keishingfbeaecc2016-08-16 05:24:31 -0500154 except:
George Keishingcf910442016-12-08 03:12:59 -0600155 print "Environment variable HTTPS_PORT not set,\
156 using default HTTPS port"
George Keishingfbeaecc2016-08-16 05:24:31 -0500157 return l_suffix
158
George Keishingcf910442016-12-08 03:12:59 -0600159AUTH_SUFFIX = {
160 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500161}
162
163# Update the ':Port number' to this variable
164AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500165
166# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600167INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500168 "CPU": [
169 "Custom Field 1",
170 "Custom Field 2",
171 "Custom Field 3",
172 "Custom Field 4",
173 "Custom Field 5",
174 "Custom Field 6",
175 "Custom Field 7",
176 "Custom Field 8",
177 "FRU File ID",
178 "Manufacturer",
179 "Name",
180 "Part Number",
181 "Serial Number",
182 "fault",
183 "fru_type",
184 "is_fru",
185 "present",
186 "version",
187 ],
188
189 "DIMM": [
190 "Asset Tag",
191 "Custom Field 1",
192 "Custom Field 2",
193 "Custom Field 3",
194 "Custom Field 4",
195 "Custom Field 5",
196 "Custom Field 6",
197 "Custom Field 7",
198 "Custom Field 8",
199 "FRU File ID",
200 "Manufacturer",
201 "Model Number",
202 "Name",
203 "Serial Number",
204 "Version",
205 "fault",
206 "fru_type",
207 "is_fru",
208 "present",
209 "version",
210 ],
211 "MEMORY_BUFFER": [
212 "Custom Field 1",
213 "Custom Field 2",
214 "Custom Field 3",
215 "Custom Field 4",
216 "Custom Field 5",
217 "Custom Field 6",
218 "Custom Field 7",
219 "Custom Field 8",
220 "FRU File ID",
221 "Manufacturer",
222 "Name",
223 "Part Number",
224 "Serial Number",
225 "fault",
226 "fru_type",
227 "is_fru",
228 "present",
229 "version",
230 ],
231 "FAN": [
232 "fault",
233 "fru_type",
234 "is_fru",
235 "present",
236 "version",
237 ],
238 "DAUGHTER_CARD": [
239 "Custom Field 1",
240 "Custom Field 2",
241 "Custom Field 3",
242 "Custom Field 4",
243 "Custom Field 5",
244 "Custom Field 6",
245 "Custom Field 7",
246 "Custom Field 8",
247 "FRU File ID",
248 "Manufacturer",
249 "Name",
250 "Part Number",
251 "Serial Number",
252 "fault",
253 "fru_type",
254 "is_fru",
255 "present",
256 "version",
257 ],
258 "BMC": [
259 "fault",
260 "fru_type",
261 "is_fru",
262 "manufacturer",
263 "present",
264 "version",
265 ],
266 "MAIN_PLANAR": [
267 "Custom Field 1",
268 "Custom Field 2",
269 "Custom Field 3",
270 "Custom Field 4",
271 "Custom Field 5",
272 "Custom Field 6",
273 "Custom Field 7",
274 "Custom Field 8",
275 "Part Number",
276 "Serial Number",
277 "Type",
278 "fault",
279 "fru_type",
280 "is_fru",
281 "present",
282 "version",
283 ],
284 "SYSTEM": [
285 "Custom Field 1",
286 "Custom Field 2",
287 "Custom Field 3",
288 "Custom Field 4",
289 "Custom Field 5",
290 "Custom Field 6",
291 "Custom Field 7",
292 "Custom Field 8",
293 "FRU File ID",
294 "Manufacturer",
295 "Model Number",
296 "Name",
297 "Serial Number",
298 "Version",
299 "fault",
300 "fru_type",
301 "is_fru",
302 "present",
303 "version",
304 ],
305 "CORE": [
306 "fault",
307 "fru_type",
308 "is_fru",
309 "present",
310 "version",
311 ],
312}