blob: 93ba6032353776ff45b782837946ccf3d527d07e [file] [log] [blame]
Norman James42c1be82015-10-22 14:34:26 -05001#!/usr/bin/python -u
Norman James89de9162015-08-27 21:41:36 -05002
Norman James471ab592015-08-30 22:29:40 -05003import sys
Norman James89de9162015-08-27 21:41:36 -05004import subprocess
Norman James6f8d0422015-09-14 18:48:00 -05005import gobject
Norman James89de9162015-08-27 21:41:36 -05006import dbus
7import dbus.service
8import dbus.mainloop.glib
Norman James90baede2015-09-02 20:32:49 -05009import os
Norman James88872672015-09-21 16:51:35 -050010import time
Brad Bishopee1b1542016-05-12 16:55:00 -040011import obmc.dbuslib.propertycacher as PropertyCacher
Brad Bishop84e73b52016-05-12 15:57:52 -040012from obmc.dbuslib.bindings import DbusProperties, DbusObjectManager, get_dbus
13import obmc.enums
Brad Bishop0b380f72016-06-10 00:29:50 -040014import obmc_system_config as System
Norman James89de9162015-08-27 21:41:36 -050015
16DBUS_NAME = 'org.openbmc.managers.System'
17OBJ_NAME = '/org/openbmc/managers/System'
Norman James471ab592015-08-30 22:29:40 -050018HEARTBEAT_CHECK_INTERVAL = 20000
Norman James9a60a7b2015-10-06 16:53:23 -050019STATE_START_TIMEOUT = 10
Norman James66c02692015-10-15 10:23:12 -050020INTF_SENSOR = 'org.openbmc.SensorValue'
21INTF_ITEM = 'org.openbmc.InventoryItem'
Norman Jamesa3e47c42015-10-18 14:43:10 -050022INTF_CONTROL = 'org.openbmc.Control'
Norman James89de9162015-08-27 21:41:36 -050023
Norman Jamescf74f952015-10-28 12:45:18 -050024
Brad Bishop84e73b52016-05-12 15:57:52 -040025class SystemManager(DbusProperties,DbusObjectManager):
Norman James98e1f7b2015-11-24 22:17:56 -060026 def __init__(self,bus,obj_name):
Brad Bishop84e73b52016-05-12 15:57:52 -040027 DbusProperties.__init__(self)
28 DbusObjectManager.__init__(self)
Norman James98e1f7b2015-11-24 22:17:56 -060029 dbus.service.Object.__init__(self,bus,obj_name)
Norman James9e6acf92015-09-08 07:00:04 -050030
Norman Jamescfc2b442015-10-31 17:31:46 -050031 bus.add_signal_receiver(self.NewObjectHandler,
Brad Bishop58e694d2016-04-13 16:04:32 -040032 signal_name = "InterfacesAdded", sender_keyword = 'bus_name')
Norman James362a80f2015-09-14 14:04:39 -050033 bus.add_signal_receiver(self.SystemStateHandler,signal_name = "GotoSystemState")
Norman James88872672015-09-21 16:51:35 -050034
Norman James98e1f7b2015-11-24 22:17:56 -060035 self.Set(DBUS_NAME,"current_state","")
Norman James362a80f2015-09-14 14:04:39 -050036 self.system_states = {}
Norman James19e45912015-10-04 20:19:41 -050037 self.bus_name_lookup = {}
Norman Jamesc36372d2015-10-08 07:03:07 -050038 self.bin_path = os.path.dirname(os.path.realpath(sys.argv[0]))
39
Norman Jamescf74f952015-10-28 12:45:18 -050040 for name in System.APPS.keys():
41 sys_state = System.APPS[name]['system_state']
Norman James362a80f2015-09-14 14:04:39 -050042 if (self.system_states.has_key(sys_state) == False):
43 self.system_states[sys_state] = []
Norman Jamescf74f952015-10-28 12:45:18 -050044 self.system_states[sys_state].append(name)
Norman James19e45912015-10-04 20:19:41 -050045
46 ## replace symbolic path in ID_LOOKUP
47 for category in System.ID_LOOKUP:
48 for key in System.ID_LOOKUP[category]:
49 val = System.ID_LOOKUP[category][key]
50 new_val = val.replace("<inventory_root>",System.INVENTORY_ROOT)
51 System.ID_LOOKUP[category][key] = new_val
52
Norman James7aeefa72015-10-19 11:13:25 -050053 self.SystemStateHandler(System.SYSTEM_STATES[0])
Norman Jamescfc2b442015-10-31 17:31:46 -050054
55 if not os.path.exists(PropertyCacher.CACHE_PATH):
56 print "Creating cache directory: "+PropertyCacher.CACHE_PATH
57 os.makedirs(PropertyCacher.CACHE_PATH)
58
Norman James323ed972015-12-09 09:06:37 -060059 self.InterfacesAdded(obj_name,self.properties)
Norman James362a80f2015-09-14 14:04:39 -050060 print "SystemManager Init Done"
61
Norman James7aeefa72015-10-19 11:13:25 -050062
Norman James362a80f2015-09-14 14:04:39 -050063 def SystemStateHandler(self,state_name):
Norman Jamesa3e47c42015-10-18 14:43:10 -050064 ## clearing object started flags
Norman James98e1f7b2015-11-24 22:17:56 -060065 current_state = self.Get(DBUS_NAME,"current_state")
Norman Jamesa3e47c42015-10-18 14:43:10 -050066 try:
Norman James98e1f7b2015-11-24 22:17:56 -060067 for obj_path in System.EXIT_STATE_DEPEND[current_state]:
68 System.EXIT_STATE_DEPEND[current_state][obj_path] = 0
Norman Jamesa3e47c42015-10-18 14:43:10 -050069 except:
70 pass
Norman James65a295a2015-09-26 22:21:10 -050071
Norman James362a80f2015-09-14 14:04:39 -050072 print "Running System State: "+state_name
73 if (self.system_states.has_key(state_name)):
Norman Jamescf74f952015-10-28 12:45:18 -050074 for name in self.system_states[state_name]:
75 self.start_process(name)
Norman James90baede2015-09-02 20:32:49 -050076
Norman Jamesa3e47c42015-10-18 14:43:10 -050077 if (state_name == "BMC_INIT"):
Norman James362a80f2015-09-14 14:04:39 -050078 ## Add poll for heartbeat
Norman James6f8d0422015-09-14 18:48:00 -050079 gobject.timeout_add(HEARTBEAT_CHECK_INTERVAL, self.heartbeat_check)
Norman James9e6acf92015-09-08 07:00:04 -050080
Norman Jamesa3e47c42015-10-18 14:43:10 -050081 try:
Norman James362a80f2015-09-14 14:04:39 -050082 cb = System.ENTER_STATE_CALLBACK[state_name]
Norman Jamese38859c2015-10-29 06:19:40 -050083 for methd in cb.keys():
Norman James85f050b2015-12-18 14:58:20 -060084 obj = bus.get_object(cb[methd]['bus_name'],cb[methd]['obj_name'],introspect=False)
Norman Jamese38859c2015-10-29 06:19:40 -050085 method = obj.get_dbus_method(methd,cb[methd]['interface_name'])
86 method()
Norman Jamesa3e47c42015-10-18 14:43:10 -050087 except:
88 pass
Norman James471ab592015-08-30 22:29:40 -050089
Norman James98e1f7b2015-11-24 22:17:56 -060090 self.Set(DBUS_NAME,"current_state",state_name)
Norman James7aeefa72015-10-19 11:13:25 -050091
92 def gotoNextState(self):
93 s = 0
Norman James98e1f7b2015-11-24 22:17:56 -060094 current_state = self.Get(DBUS_NAME,"current_state")
Norman James7aeefa72015-10-19 11:13:25 -050095 for i in range(len(System.SYSTEM_STATES)):
Norman James98e1f7b2015-11-24 22:17:56 -060096 if (System.SYSTEM_STATES[i] == current_state):
Norman James7aeefa72015-10-19 11:13:25 -050097 s = i+1
98
99 if (s == len(System.SYSTEM_STATES)):
100 print "ERROR SystemManager: No more system states"
101 else:
102 new_state_name = System.SYSTEM_STATES[s]
103 print "SystemManager Goto System State: "+new_state_name
104 self.SystemStateHandler(new_state_name)
105
106
Norman James19e45912015-10-04 20:19:41 -0500107 @dbus.service.method(DBUS_NAME,
Norman James7aeefa72015-10-19 11:13:25 -0500108 in_signature='', out_signature='s')
109 def getSystemState(self):
Norman James98e1f7b2015-11-24 22:17:56 -0600110 return self.Get(DBUS_NAME,"current_state")
Norman James7aeefa72015-10-19 11:13:25 -0500111
112 def doObjectLookup(self,category,key):
Norman James19e45912015-10-04 20:19:41 -0500113 bus_name = ""
114 obj_path = ""
Norman James66c02692015-10-15 10:23:12 -0500115 intf_name = INTF_ITEM
116 try:
117 obj_path = System.ID_LOOKUP[category][key]
Norman James19e45912015-10-04 20:19:41 -0500118 bus_name = self.bus_name_lookup[obj_path]
Norman James66c02692015-10-15 10:23:12 -0500119 parts = obj_path.split('/')
Norman James323ed972015-12-09 09:06:37 -0600120 if (parts[3] == 'sensors'):
Norman James66c02692015-10-15 10:23:12 -0500121 intf_name = INTF_SENSOR
Norman Jamesd9f1d4e2015-10-14 09:40:18 -0500122 except Exception as e:
123 print "ERROR SystemManager: "+str(e)+" not found in lookup"
124
Norman James66c02692015-10-15 10:23:12 -0500125 return [bus_name,obj_path,intf_name]
Norman Jamesd9f1d4e2015-10-14 09:40:18 -0500126
Norman James7aeefa72015-10-19 11:13:25 -0500127 @dbus.service.method(DBUS_NAME,
128 in_signature='ss', out_signature='(sss)')
129 def getObjectFromId(self,category,key):
130 return self.doObjectLookup(category,key)
131
132 @dbus.service.method(DBUS_NAME,
133 in_signature='sy', out_signature='(sss)')
134 def getObjectFromByteId(self,category,key):
135 byte = int(key)
136 return self.doObjectLookup(category,byte)
Yi Li5cf1e112016-04-15 15:30:30 +0800137
138 # Get the FRU area names defined in ID_LOOKUP table given a fru_id.
139 # If serval areas are defined for a fru_id, the areas are returned
140 # together as a string with each area name seperated with ','.
141 # If no fru area defined in ID_LOOKUP, an empty string will be returned.
142 @dbus.service.method(DBUS_NAME,
143 in_signature='y', out_signature='s')
144 def getFRUArea(self,fru_id):
145 ret_str = ''
146 fru_id = '_' + str(fru_id)
147 area_list = [area for area in System.ID_LOOKUP['FRU_STR'].keys() \
148 if area.endswith(fru_id)]
149 for area in area_list:
150 ret_str = area + ',' + ret_str
151 # remove the last ','
152 return ret_str[:-1]
153
Norman Jamescf74f952015-10-28 12:45:18 -0500154 def start_process(self,name):
155 if (System.APPS[name]['start_process'] == True):
156 app = System.APPS[name]
157 process_name = self.bin_path+"/"+app['process_name']
Norman James5d78b4d2015-09-05 13:34:34 -0500158 cmdline = [ ]
159 cmdline.append(process_name)
Norman Jamescf74f952015-10-28 12:45:18 -0500160 if (app.has_key('args')):
161 for a in app['args']:
162 cmdline.append(a)
Norman James5d78b4d2015-09-05 13:34:34 -0500163 try:
Norman Jamescf74f952015-10-28 12:45:18 -0500164 print "Starting process: "+" ".join(cmdline)+": "+name
Norman Jamesbfa561e2015-11-01 07:38:14 -0600165 if (app['monitor_process'] == True):
166 app['popen'] = subprocess.Popen(cmdline)
167 else:
168 subprocess.Popen(cmdline)
169
Norman James5d78b4d2015-09-05 13:34:34 -0500170 except Exception as e:
171 ## TODO: error
Norman James8c6d8382015-10-06 07:47:16 -0500172 print "ERROR: starting process: "+" ".join(cmdline)
Norman James471ab592015-08-30 22:29:40 -0500173
Norman James89de9162015-08-27 21:41:36 -0500174 def heartbeat_check(self):
Norman Jamescf74f952015-10-28 12:45:18 -0500175 for name in System.APPS.keys():
176 app = System.APPS[name]
Norman Jamesbfa561e2015-11-01 07:38:14 -0600177 if (app['start_process'] == True and app.has_key('popen')):
Norman James5d78b4d2015-09-05 13:34:34 -0500178 ## make sure process is still alive
Norman Jamescf74f952015-10-28 12:45:18 -0500179 p = app['popen']
Norman James5d78b4d2015-09-05 13:34:34 -0500180 p.poll()
181 if (p.returncode != None):
Norman Jamescf74f952015-10-28 12:45:18 -0500182 print "Process for "+name+" appears to be dead"
183 self.start_process(name)
Norman James5d78b4d2015-09-05 13:34:34 -0500184
Norman James471ab592015-08-30 22:29:40 -0500185 return True
Norman James89de9162015-08-27 21:41:36 -0500186
Brad Bishop58e694d2016-04-13 16:04:32 -0400187 def NewObjectHandler(self, obj_path, iprops, bus_name = None):
Norman James98e1f7b2015-11-24 22:17:56 -0600188 current_state = self.Get(DBUS_NAME,"current_state")
Norman Jamescfc2b442015-10-31 17:31:46 -0500189 if (self.bus_name_lookup.has_key(obj_path)):
190 if (self.bus_name_lookup[obj_path] == bus_name):
191 return
192 self.bus_name_lookup[obj_path] = bus_name
193 print "New object: "+obj_path+" ("+bus_name+")"
194 try:
Norman James98e1f7b2015-11-24 22:17:56 -0600195 if (System.EXIT_STATE_DEPEND[current_state].has_key(obj_path) == True):
196 System.EXIT_STATE_DEPEND[current_state][obj_path] = 1
Norman Jamescf74f952015-10-28 12:45:18 -0500197 ## check if all required objects are started to move to next state
Norman Jamescfc2b442015-10-31 17:31:46 -0500198 state = 1
Norman James98e1f7b2015-11-24 22:17:56 -0600199 for obj_path in System.EXIT_STATE_DEPEND[current_state]:
200 if (System.EXIT_STATE_DEPEND[current_state][obj_path] == 0):
Norman Jamescfc2b442015-10-31 17:31:46 -0500201 state = 0
202 ## all required objects have started so go to next state
203 if (state == 1):
Norman James98e1f7b2015-11-24 22:17:56 -0600204 print "All required objects started for "+current_state
Norman Jamescfc2b442015-10-31 17:31:46 -0500205 self.gotoNextState()
206 except:
207 pass
Norman Jamesa3e47c42015-10-18 14:43:10 -0500208
Norman James89de9162015-08-27 21:41:36 -0500209
210 @dbus.service.method(DBUS_NAME,
211 in_signature='s', out_signature='sis')
212 def gpioInit(self,name):
213 gpio_path = ''
Norman Jamescf74f952015-10-28 12:45:18 -0500214 gpio_num = -1
215 r = ['',gpio_num,'']
Norman James471ab592015-08-30 22:29:40 -0500216 if (System.GPIO_CONFIG.has_key(name) == False):
Norman James89de9162015-08-27 21:41:36 -0500217 # TODO: Error handling
218 print "ERROR: "+name+" not found in GPIO config table"
Norman James89de9162015-08-27 21:41:36 -0500219 else:
Norman Jamescf74f952015-10-28 12:45:18 -0500220
221 gpio_num = -1
222 gpio = System.GPIO_CONFIG[name]
223 if (System.GPIO_CONFIG[name].has_key('gpio_num')):
224 gpio_num = gpio['gpio_num']
225 else:
226 if (System.GPIO_CONFIG[name].has_key('gpio_pin')):
227 gpio_num = System.convertGpio(gpio['gpio_pin'])
228 else:
229 print "ERROR: SystemManager - GPIO lookup failed for "+name
230
231 if (gpio_num != -1):
Brad Bishop84e73b52016-05-12 15:57:52 -0400232 r = [obmc.enums.GPIO_DEV, gpio_num, gpio['direction']]
Norman Jamescf74f952015-10-28 12:45:18 -0500233 return r
Norman James5236a8f2015-11-05 20:39:31 -0600234
Norman James88872672015-09-21 16:51:35 -0500235
Norman James89de9162015-08-27 21:41:36 -0500236
237if __name__ == '__main__':
238 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
Brad Bishop84e73b52016-05-12 15:57:52 -0400239 bus = get_dbus()
Norman James89de9162015-08-27 21:41:36 -0500240 name = dbus.service.BusName(DBUS_NAME,bus)
241 obj = SystemManager(bus,OBJ_NAME)
Norman James6f8d0422015-09-14 18:48:00 -0500242 mainloop = gobject.MainLoop()
Norman James89de9162015-08-27 21:41:36 -0500243
Norman James89de9162015-08-27 21:41:36 -0500244 print "Running SystemManager"
245 mainloop.run()
246