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/'
9OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/'
10
11# REST URI base endpoint paths.
12CONTROL_URI = OPENBMC_BASE_URI + 'control/'
13# old vs new code dependencies in many places.
14# TODO: remove when ready.
15SETTINGS_URI = '/org/openbmc/settings/'
16WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
17TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
18NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
19# SNMP
20SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/'
21# Sensors base variables.
22SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
23
24# State Manager base variables
25BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
26
27HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
28HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
29HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
30HOST_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.
39SYSTEM_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/'
44
45# Logging URI variables
46BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
47BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
48
49# Software manager version
50SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
51ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
52READY = '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'
59REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
60REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
61REQUESTED_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'
67
68# Image Upload Directory Path
69IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
70
71# Inventory URI
72HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
73
74# Led URI variable
75LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
76LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
77
78# Host control URI variables.
79CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
80
81# 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
89# Dump URI variables.
90DUMP_URI = OPENBMC_BASE_URI + '/dump/'
91DUMP_ENTRY_URI = DUMP_URI + 'entry/'
92# The path on the BMC where dumps are stored.
93DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
94
95# 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'
99OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
100OS_BOOT_SECPCI = STATE_DBUS_BASE + \
101    'Boot.Progress.ProgressStages.SecondaryProcInit'
102OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
103OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
104    'Boot.Progress.ProgressStages.MotherboardInit'
105
106# OperatingSystem status variables.
107OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
108    'OperatingSystem.Status.OSStatus.BootComplete'
109OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
110OS_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'
114
115# 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
124# 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
133# User manager variable.
134BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
135
136# The path on the BMC where signed keys are stored.
137ACTIVATION_DIR_PATH = "/etc/activationdata/"
138
139# Redfish variables.
140REDFISH_BASE_URI = '/redfish/v1/'
141REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
142REDFISH_SESSION_URI = 'SessionService/Sessions/'
143
144'''
145  QEMU HTTPS variable:
146
147  By default lib/resource.txt AUTH URI construct is as
148  ${AUTH_URI}   https://${OPENBMC_HOST}${AUTH_SUFFIX}
149  ${AUTH_SUFFIX} is populated here by default EMPTY else
150  the port from the OS environment
151'''
152
153
154def get_port_https():
155    # defaulted to empty string
156    l_suffix = ''
157    try:
158        l_https_port = os.getenv('HTTPS_PORT')
159        if l_https_port:
160            l_suffix = ':' + l_https_port
161    except BaseException:
162        print ("Environment variable HTTPS_PORT not set,\
163              using default HTTPS port")
164    return l_suffix
165
166
167AUTH_SUFFIX = {
168    "https_port": [get_port_https()],
169}
170
171# Update the ':Port number' to this variable
172AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
173
174# Here contains a list of valid Properties bases on fru_type after a boot.
175INVENTORY_ITEMS = {
176    "CPU": [
177        "Custom Field 1",
178        "Custom Field 2",
179        "Custom Field 3",
180        "Custom Field 4",
181        "Custom Field 5",
182        "Custom Field 6",
183        "Custom Field 7",
184        "Custom Field 8",
185        "FRU File ID",
186        "Manufacturer",
187        "Name",
188        "Part Number",
189        "Serial Number",
190        "fault",
191        "fru_type",
192        "is_fru",
193        "present",
194        "version",
195    ],
196
197    "DIMM": [
198        "Asset Tag",
199        "Custom Field 1",
200        "Custom Field 2",
201        "Custom Field 3",
202        "Custom Field 4",
203        "Custom Field 5",
204        "Custom Field 6",
205        "Custom Field 7",
206        "Custom Field 8",
207        "FRU File ID",
208        "Manufacturer",
209        "Model Number",
210        "Name",
211        "Serial Number",
212        "Version",
213        "fault",
214        "fru_type",
215        "is_fru",
216        "present",
217        "version",
218    ],
219    "MEMORY_BUFFER": [
220        "Custom Field 1",
221        "Custom Field 2",
222        "Custom Field 3",
223        "Custom Field 4",
224        "Custom Field 5",
225        "Custom Field 6",
226        "Custom Field 7",
227        "Custom Field 8",
228        "FRU File ID",
229        "Manufacturer",
230        "Name",
231        "Part Number",
232        "Serial Number",
233        "fault",
234        "fru_type",
235        "is_fru",
236        "present",
237        "version",
238    ],
239    "FAN": [
240        "fault",
241        "fru_type",
242        "is_fru",
243        "present",
244        "version",
245    ],
246    "DAUGHTER_CARD": [
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        "FRU File ID",
256        "Manufacturer",
257        "Name",
258        "Part Number",
259        "Serial Number",
260        "fault",
261        "fru_type",
262        "is_fru",
263        "present",
264        "version",
265    ],
266    "BMC": [
267        "fault",
268        "fru_type",
269        "is_fru",
270        "manufacturer",
271        "present",
272        "version",
273    ],
274    "MAIN_PLANAR": [
275        "Custom Field 1",
276        "Custom Field 2",
277        "Custom Field 3",
278        "Custom Field 4",
279        "Custom Field 5",
280        "Custom Field 6",
281        "Custom Field 7",
282        "Custom Field 8",
283        "Part Number",
284        "Serial Number",
285        "Type",
286        "fault",
287        "fru_type",
288        "is_fru",
289        "present",
290        "version",
291    ],
292    "SYSTEM": [
293        "Custom Field 1",
294        "Custom Field 2",
295        "Custom Field 3",
296        "Custom Field 4",
297        "Custom Field 5",
298        "Custom Field 6",
299        "Custom Field 7",
300        "Custom Field 8",
301        "FRU File ID",
302        "Manufacturer",
303        "Model Number",
304        "Name",
305        "Serial Number",
306        "Version",
307        "fault",
308        "fru_type",
309        "is_fru",
310        "present",
311        "version",
312    ],
313    "CORE": [
314        "fault",
315        "fru_type",
316        "is_fru",
317        "present",
318        "version",
319    ],
320}
321