blob: ad9c073163cc9cc0504a1a8597a943a1a9cbac46 [file] [log] [blame]
Scott Baker45fb7a12013-12-31 00:56:19 -08001import os
2import imp
3import inspect
Sapan Bhatia24836f12013-08-27 10:16:05 -04004import time
5import traceback
6import commands
7import threading
8import json
9
10from datetime import datetime
11from collections import defaultdict
12from core.models import *
13from django.db.models import F, Q
Tony Mack387a73f2013-09-18 07:59:14 -040014#from openstack.manager import OpenStackManager
15from openstack.driver import OpenStackDriver
Sapan Bhatia24836f12013-08-27 10:16:05 -040016from util.logger import Logger, logging, logger
17#from timeout import timeout
Sapan Bhatia757e0b62013-09-02 16:55:00 -040018from planetstack.config import Config
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040019from observer.steps import *
Scott Baker45fb7a12013-12-31 00:56:19 -080020from syncstep import SyncStep
Sapan Bhatia45cbbc32014-03-11 17:48:30 -040021from toposort import toposort
Sapan Bhatia31ebe5c2014-04-29 00:24:09 -040022from observer.error_mapper import error_mapper
Sapan Bhatia24836f12013-08-27 10:16:05 -040023
Sapan Bhatia13c7f112013-09-02 14:19:35 -040024debug_mode = False
Sapan Bhatia24836f12013-08-27 10:16:05 -040025
Andy Bavier04111b72013-10-22 16:47:10 -040026logger = Logger(level=logging.INFO)
Sapan Bhatia24836f12013-08-27 10:16:05 -040027
Sapan Bhatia13c7f112013-09-02 14:19:35 -040028class StepNotReady(Exception):
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040029 pass
Sapan Bhatia24836f12013-08-27 10:16:05 -040030
Scott Baker7771f412014-01-02 16:36:41 -080031class NoOpDriver:
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040032 def __init__(self):
33 self.enabled = True
Scott Baker7771f412014-01-02 16:36:41 -080034
Sapan Bhatia24836f12013-08-27 10:16:05 -040035class PlanetStackObserver:
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040036 #sync_steps = [SyncNetworks,SyncNetworkSlivers,SyncSites,SyncSitePrivileges,SyncSlices,SyncSliceMemberships,SyncSlivers,SyncSliverIps,SyncExternalRoutes,SyncUsers,SyncRoles,SyncNodes,SyncImages,GarbageCollector]
37 sync_steps = []
Sapan Bhatia24836f12013-08-27 10:16:05 -040038
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040039 def __init__(self):
40 # The Condition object that gets signalled by Feefie events
41 self.step_lookup = {}
42 self.load_sync_step_modules()
43 self.load_sync_steps()
44 self.event_cond = threading.Condition()
Scott Baker7771f412014-01-02 16:36:41 -080045
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040046 self.driver_kind = getattr(Config(), "observer_driver", "openstack")
47 if self.driver_kind=="openstack":
48 self.driver = OpenStackDriver()
49 else:
50 self.driver = NoOpDriver()
Sapan Bhatia24836f12013-08-27 10:16:05 -040051
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040052 def wait_for_event(self, timeout):
53 self.event_cond.acquire()
54 self.event_cond.wait(timeout)
55 self.event_cond.release()
Scott Baker45fb7a12013-12-31 00:56:19 -080056
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040057 def wake_up(self):
58 logger.info('Wake up routine called. Event cond %r'%self.event_cond)
59 self.event_cond.acquire()
60 self.event_cond.notify()
61 self.event_cond.release()
Sapan Bhatia24836f12013-08-27 10:16:05 -040062
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040063 def load_sync_step_modules(self, step_dir=None):
64 if step_dir is None:
65 if hasattr(Config(), "observer_steps_dir"):
66 step_dir = Config().observer_steps_dir
67 else:
68 step_dir = "/opt/planetstack/observer/steps"
Scott Baker45fb7a12013-12-31 00:56:19 -080069
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040070 for fn in os.listdir(step_dir):
71 pathname = os.path.join(step_dir,fn)
72 if os.path.isfile(pathname) and fn.endswith(".py") and (fn!="__init__.py"):
73 module = imp.load_source(fn[:-3],pathname)
74 for classname in dir(module):
75 c = getattr(module, classname, None)
Scott Baker45fb7a12013-12-31 00:56:19 -080076
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040077 # make sure 'c' is a descendent of SyncStep and has a
78 # provides field (this eliminates the abstract base classes
79 # since they don't have a provides)
Scott Baker45fb7a12013-12-31 00:56:19 -080080
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040081 if inspect.isclass(c) and issubclass(c, SyncStep) and hasattr(c,"provides") and (c not in self.sync_steps):
82 self.sync_steps.append(c)
83 logger.info('loaded sync steps: %s' % ",".join([x.__name__ for x in self.sync_steps]))
84 # print 'loaded sync steps: %s' % ",".join([x.__name__ for x in self.sync_steps])
Scott Baker45fb7a12013-12-31 00:56:19 -080085
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040086 def load_sync_steps(self):
87 dep_path = Config().observer_dependency_graph
88 logger.info('Loading model dependency graph from %s' % dep_path)
89 try:
90 # This contains dependencies between records, not sync steps
91 self.model_dependency_graph = json.loads(open(dep_path).read())
92 except Exception,e:
93 raise e
Sapan Bhatia24836f12013-08-27 10:16:05 -040094
Sapan Bhatiaf73664b2014-04-28 13:07:18 -040095 try:
96 backend_path = Config().observer_pl_dependency_graph
97 logger.info('Loading backend dependency graph from %s' % backend_path)
98 # This contains dependencies between backend records
99 self.backend_dependency_graph = json.loads(open(backend_path).read())
100 except Exception,e:
101 logger.info('Backend dependency graph not loaded')
102 # We can work without a backend graph
103 self.backend_dependency_graph = {}
Sapan Bhatia24836f12013-08-27 10:16:05 -0400104
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400105 provides_dict = {}
106 for s in self.sync_steps:
107 self.step_lookup[s.__name__] = s
108 for m in s.provides:
109 try:
110 provides_dict[m.__name__].append(s.__name__)
111 except KeyError:
112 provides_dict[m.__name__]=[s.__name__]
Sapan Bhatia04c94ad2013-09-02 18:00:28 -0400113
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400114
115 step_graph = {}
116 for k,v in self.model_dependency_graph.iteritems():
117 try:
118 for source in provides_dict[k]:
119 for m in v:
120 try:
121 for dest in provides_dict[m]:
122 # no deps, pass
123 try:
124 if (dest not in step_graph[source]):
125 step_graph[source].append(dest)
126 except:
127 step_graph[source]=[dest]
128 except KeyError:
129 pass
130
131 except KeyError:
132 pass
133 # no dependencies, pass
134
135 #import pdb
136 #pdb.set_trace()
137 if (self.backend_dependency_graph):
138 backend_dict = {}
139 for s in self.sync_steps:
140 for m in s.serves:
141 backend_dict[m]=s.__name__
142
143 for k,v in backend_dependency_graph.iteritems():
144 try:
145 source = backend_dict[k]
146 for m in v:
147 try:
148 dest = backend_dict[m]
149 except KeyError:
150 # no deps, pass
151 pass
152 step_graph[source]=dest
153
154 except KeyError:
155 pass
156 # no dependencies, pass
Sapan Bhatia24836f12013-08-27 10:16:05 -0400157
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400158 dependency_graph = step_graph
Sapan Bhatia24836f12013-08-27 10:16:05 -0400159
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400160 self.ordered_steps = toposort(dependency_graph, map(lambda s:s.__name__,self.sync_steps))
161 print "Order of steps=",self.ordered_steps
162 self.load_run_times()
163
Sapan Bhatia24836f12013-08-27 10:16:05 -0400164
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400165 def check_duration(self, step, duration):
166 try:
167 if (duration > step.deadline):
168 logger.info('Sync step %s missed deadline, took %.2f seconds'%(step.name,duration))
169 except AttributeError:
170 # S doesn't have a deadline
171 pass
Sapan Bhatia24836f12013-08-27 10:16:05 -0400172
Sapan Bhatia285decb2014-04-30 00:31:44 -0400173 def update_run_time(self, step, deletion):
174 if (not deletion):
175 self.last_run_times[step.__name__]=time.time()
176 else:
177 self.last_deletion_run_times[step.__name__]=time.time()
Sapan Bhatia13c7f112013-09-02 14:19:35 -0400178
Sapan Bhatia285decb2014-04-30 00:31:44 -0400179
180 def check_schedule(self, step, deletion):
181 last_run_times = self.last_run_times if not deletion else self.last_deletion_run_times
182
183 time_since_last_run = time.time() - last_run_times.get(step.__name__, 0)
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400184 try:
185 if (time_since_last_run < step.requested_interval):
186 raise StepNotReady
187 except AttributeError:
188 logger.info('Step %s does not have requested_interval set'%step.__name__)
189 raise StepNotReady
190
191 def load_run_times(self):
192 try:
193 jrun_times = open('/tmp/observer_run_times').read()
194 self.last_run_times = json.loads(jrun_times)
195 except:
196 self.last_run_times={}
197 for e in self.ordered_steps:
198 self.last_run_times[e]=0
Sapan Bhatia285decb2014-04-30 00:31:44 -0400199 try:
200 jrun_times = open('/tmp/observer_deletion_run_times').read()
201 self.last_deletion_run_times = json.loads(jrun_times)
202 except:
203 self.last_deletion_run_times={}
204 for e in self.ordered_steps:
205 self.last_deletion_run_times[e]=0
206
Sapan Bhatia36938ca2013-09-02 14:35:24 -0400207
208
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400209 def save_run_times(self):
210 run_times = json.dumps(self.last_run_times)
211 open('/tmp/observer_run_times','w').write(run_times)
Sapan Bhatia36938ca2013-09-02 14:35:24 -0400212
Sapan Bhatia285decb2014-04-30 00:31:44 -0400213 deletion_run_times = json.dumps(self.last_deletion_run_times)
214 open('/tmp/observer_deletion_run_times','w').write(deletion_run_times)
215
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400216 def check_class_dependency(self, step, failed_steps):
217 step.dependenices = []
218 for obj in step.provides:
219 step.dependenices.extend(self.model_dependency_graph.get(obj.__name__, []))
220 for failed_step in failed_steps:
221 if (failed_step in step.dependencies):
222 raise StepNotReady
223
224 def run(self):
225 if not self.driver.enabled:
226 return
227 if (self.driver_kind=="openstack") and (not self.driver.has_openstack):
228 return
229
230 while True:
231 try:
Sapan Bhatia31ebe5c2014-04-29 00:24:09 -0400232 error_map_file = getattr(Config(), "error_map_path", "/opt/planetstack/error_map.txt")
233 error_mapper = ErrorMapper(error_map_file)
234
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400235 logger.info('Waiting for event')
236 tBeforeWait = time.time()
237 self.wait_for_event(timeout=30)
238 logger.info('Observer woke up')
239
Sapan Bhatia285decb2014-04-30 00:31:44 -0400240 # Two passes. One for sync, the other for deletion.
241 for deletion in (False,True):
242 logger.info('Creation pass...')
243 # Set of whole steps that failed
244 failed_steps = []
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400245
Sapan Bhatia285decb2014-04-30 00:31:44 -0400246 # Set of individual objects within steps that failed
247 failed_step_objects = set()
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400248
Sapan Bhatia285decb2014-04-30 00:31:44 -0400249 ordered_steps = self.ordered_steps if not deletion else reversed(self.ordered_steps)
250
251 for S in ordered_steps:
252 step = self.step_lookup[S]
253 start_time=time.time()
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400254
Sapan Bhatia285decb2014-04-30 00:31:44 -0400255 sync_step = step(driver=self.driver,error_map=error_mapper)
256 sync_step.__name__ = step.__name__
257 sync_step.dependencies = []
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400258 try:
Sapan Bhatia285decb2014-04-30 00:31:44 -0400259 mlist = sync_step.provides
260
261 for m in mlist:
262 sync_step.dependencies.extend(self.model_dependency_graph[m.__name__])
263 except KeyError:
264 pass
265 sync_step.debug_mode = debug_mode
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400266
Sapan Bhatia285decb2014-04-30 00:31:44 -0400267 should_run = False
268 try:
269 # Various checks that decide whether
270 # this step runs or not
271 self.check_class_dependency(sync_step, failed_steps) # dont run Slices if Sites failed
272 self.check_schedule(sync_step,deletion) # dont run sync_network_routes if time since last run < 1 hour
273 should_run = True
274 except StepNotReady:
275 logging.info('Step not ready: %s'%sync_step.__name__)
276 failed_steps.append(sync_step)
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400277 except Exception,e:
Sapan Bhatia285decb2014-04-30 00:31:44 -0400278 logging.error('%r',e)
279 logger.log_exc("sync step failed: %r. Deletion: %r"%(sync_step,deletion))
280 failed_steps.append(sync_step)
281
282 if (should_run):
283 try:
284 duration=time.time() - start_time
285
286 logger.info('Executing step %s' % sync_step.__name__)
287
288 # ********* This is the actual sync step
289 #import pdb
290 #pdb.set_trace()
291 failed_objects = sync_step(failed=list(failed_step_objects), deletion=deletion)
292
293
294 self.check_duration(sync_step, duration)
295 if failed_objects:
296 failed_step_objects.update(failed_objects)
297
298 if (not deletion):
299 self.update_run_time(sync_step)
300 else:
301 self.update_deletion_run_time(sync_step)
302 except Exception,e:
303 logging.error('Model step failed. This seems like a misconfiguration or bug: %r. This error will not be relayed to the user!',e)
304 logger.log_exc(e)
305 failed_steps.append(S)
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400306 self.save_run_times()
307 except Exception, e:
Sapan Bhatia31ebe5c2014-04-29 00:24:09 -0400308 logging.error('Core error. This seems like a misconfiguration or bug: %r. This error will not be relayed to the user!',e)
Sapan Bhatiaf73664b2014-04-28 13:07:18 -0400309 logger.log_exc("Exception in observer run loop")
310 traceback.print_exc()