8b78b3d25c015a1bd6f9dcc712fe68c99843c303
[infrastructure.git] / scripts / manage-infrastructure.py
1 #!/usr/bin/python
2
3 import os.path, sys
4 import re
5 import subprocess
6 from optparse import OptionParser
7
8 class BuildBoxes:
9
10     # everything in the onelab.eu domain
11     domain = 'pl.sophia.inria.fr'
12     build_boxes = [ "mirror", "liquid", "reed", "velvet", ]
13     plc_boxes = [ "testplc" ]
14     testmaster = 'testmaster'
15     testmaster_boxes = [ testmaster ]
16     # cache the list of qemu boxes in ~/.qemu-boxes
17     # this can be refreshed by running -c
18     qemu_boxes=[]
19
20     def cache_file (self): return os.path.expanduser("~/.qemu-boxes")
21
22     def load_cache (self):
23         cache=self.cache_file()
24         if os.path.isfile(cache):
25             self.qemu_boxes=file(cache).read().split()
26         self.test_boxes = self.plc_boxes + self.qemu_boxes
27
28     # run LocalTestResources on testmaster
29     def refresh_cache (self):
30         retrieved= \
31             self.backquote_ssh(self.fqdn(self.testmaster),['LocalTestResources.py'],trash_err=True)
32         remove="."+BuildBoxes.domain
33         retrieved = [ x.replace(remove,"").strip() for x in retrieved.split()]
34         self.qemu_boxes = retrieved
35         cache=self.cache_file()
36         file(cache,'w').write(' '.join(self.qemu_boxes)+'\n')
37         print "New contents of %s:"%cache
38         print file(cache).read(),
39
40     def __init__ (self):
41         # dummy defaults
42         self.boxes = []
43         self.do_tracker_qemus = False
44         self.do_tracker_plcs = False
45         self.load_cache()
46
47     def fqdn (self, box):
48         return "%s.%s"%(box,self.domain)
49
50     ssh_command=['ssh','-o','ConnectTimeout=3']
51     @staticmethod
52     def root (box): return "root@%s"%box
53
54     @staticmethod
55     def ssh(box):
56         return BuildBoxes.ssh_command + [ BuildBoxes.root(box) ]
57
58     def header (self,message):
59         print "===============",message
60         sys.stdout.flush()
61
62     def run (self,argv,message, trash_err=False):
63         if self.options.dry_run:
64             print 'DRY_RUN:',
65             print " ".join(argv)
66             return 0
67         else:
68             if message: self.header(message)
69             if not trash_err:
70                 return subprocess.call(argv)
71             else:
72                 return subprocess.call(argv,stderr=file('/dev/null','w'))
73                 
74     def run_ssh (self, box, argv, message, trash_err=False):
75         result=self.run (self.ssh(box) + argv, message, trash_err)
76         if result!=0:
77             print "WARNING: failed to run %s on %s"%(" ".join(argv),box)
78         return result
79
80     def backquote (self, argv, trash_err=False):
81         if not trash_err:
82             return subprocess.Popen(argv,stdout=subprocess.PIPE).communicate()[0]
83         else:
84             return subprocess.Popen(argv,stdout=subprocess.PIPE,stderr=file('/dev/null','w')).communicate()[0]
85
86     def backquote_ssh (self, box, argv, trash_err=False):
87         # first probe the ssh link
88         hostname=self.backquote ( self.ssh(box) + [ "hostname"], trash_err=True )
89         if not hostname:
90             print "%s unreachable"%self.root(box)
91             return ''
92         else:
93             return self.backquote( ['ssh',self.root(box)] + argv, trash_err)
94
95     def reboot (self,box):
96         command=['ssh',self.root(box),'shutdown','-r','now']
97         self.run (command,"Rebooting %s"%box)
98
99     def handle_tracker_plcs (self):
100         box = self.fqdn (self.testmaster)
101         filename="tracker-plcs"
102         if not self.options.probe:
103             command=["rm","-rf",filename]
104             self.run_ssh(box,command,"Cleaning up %s on %s"%(filename,box))
105         else:
106             self.header ("++++++++++ Inspecting %s on %s"%(filename,box))
107             read_command = ["cat",filename]
108             trackers=self.backquote_ssh(box,read_command)
109             for tracker in trackers.split('\n'):
110                 if not tracker: continue
111                 try:
112                     tracker=tracker.strip()
113                     [hostname,buildname]=tracker.split('@')
114                     [left,plcname]=buildname.rsplit('-',1)
115                     print self.margin_outline(plcname),tracker
116                 except:
117                     print self.margin(""),tracker
118
119     def handle_tracker_qemus (self):
120         box = self.fqdn (self.testmaster)
121         filename="tracker-qemus"
122         if not self.options.probe:
123             command=["rm","-rf",filename]
124             self.run_ssh(box,command,"Cleaning up %s on %s"%(filename,box))
125         else:
126             self.header ("++++++++++ Inspecting %s on %s"%(filename,box))
127             read_command = ["cat",filename]
128             trackers=self.backquote_ssh(box,read_command)
129             for tracker in trackers.split('\n'):
130                 if not tracker: continue
131                 try:
132                     tracker=tracker.strip()
133                     [hostname,buildname,nodename]=tracker.split('@')
134                     nodename=nodename.split('.')[0]
135                     print self.margin_outline(nodename),tracker
136                 except:
137                     print self.margin(""),tracker
138
139     def handle_build_box (self,box):
140         if not self.options.probe:
141             self.reboot(box)
142         else:
143             command=['uptime']
144             uptime=self.backquote_ssh(box,command,True).strip()
145
146             command=['pgrep','build']
147             if self.options.dry_run:
148                 self.run_ssh(box,command,None)
149             else:
150                 pids=self.backquote_ssh(box,command,True)
151                 if not pids:
152                     self.header ('No build process on %s (%s)'%(box,uptime))
153                 else:
154                     command=['ps','-o','pid,command'] + [ pid for pid in pids.split("\n") if pid]
155                     self.run_ssh(box,command,"Active build processes on %s (%s)"%(box,uptime),True)
156
157     # this one is more accurate as it locates processes in the vservers as well
158     # but it's so sloooowww
159     def handle_build_box_deep (self,box):
160         if not self.options.probe:
161             self.reboot(box)
162         else:
163             command=['uptime']
164             uptime=self.backquote_ssh(box,command,True).strip()
165
166             command=['vps','-e']
167             if self.options.dry_run:
168                 self.run_ssh(box,command,None)
169             else:
170                 # simulate grep vbuild
171                 vps_lines=[ line for line in self.backquote_ssh(box,command,True).split("\n")
172                             if line.find('vbuild') >= 0]
173                 pids=[ line.split()[0] for line in vps_lines ]
174                 if not pids:
175                     self.header ('No build process on %s (%s)'%(box,uptime))
176                 else:
177                     command=['vps','-o','pid,command'] + pids
178                     self.run_ssh(box,command,"Active build processes on %s (%s)"%(box,uptime),True)
179
180
181     vplc_matcher = re.compile(".*(vplc[0-9]+$)")
182     def vplcname (self, vservername):
183         match = self.vplc_matcher.match(vservername)
184         if match: return match.groups(0)
185         else: return ""
186
187     margin_format="%-14s"
188     def margin(self,string): return self.margin_format%string
189     def outline (self, string): return '== %s =='%string
190     def margin_outline (self, string): return self.margin(self.outline(string))
191
192     def handle_plc_box (self,box):
193         # even for rebooting we need to scan vserver-stat to stop the vservers properly
194         vserver_names=[]
195         command=['vserver-stat']
196         if self.options.dry_run:
197             self.run_ssh(box,command,"Active vservers on %s"%box)
198         # try to find fullname (vserver_stat truncates to a ridiculously short name)
199         self.header ("vserver map on %s"%box)
200         # fetch the contexts for all vservers on that box
201         map_command=['grep','.','/etc/vservers/*/context','/dev/null',]
202         context_map=self.backquote_ssh (box,map_command)
203         # at this point we have a set of lines like
204         # /etc/vservers/2010.01.20--k27-f12-32-vplc03/context:40144
205         ctx_dict={}
206         for map_line in context_map.split("\n"):
207             if not map_line: continue
208             [path,xid] = map_line.split(':')
209             ctx_dict[xid]=os.path.basename(os.path.dirname(path))
210         # at this point ctx_id maps context id to vservername
211
212         vserver_stat = self.backquote_ssh (box,command)
213         for vserver_line in vserver_stat.split("\n"):
214             if not vserver_line: continue
215             context=vserver_line.split()[0]
216             if context=="CTX": 
217                 print self.margin(""),vserver_line
218                 continue
219             longname=ctx_dict[context]
220             vserver_names.append(longname)
221             print self.margin_outline(self.vplcname(longname)),"%(vserver_line)s [=%(longname)s]"%locals()
222         if not self.options.probe:
223 #            # remove mark for all running servers to avoid resurrection
224 #            if vserver_names:
225 #                bash="; ".join( [ "rm -f /etc/vservers/%s/apps/init/mark"%vs for vs in vserver_names ] )
226 #                stop_command=['bash','-c',"'" + bash + "'"]
227 #                self.run_ssh(box,stop_command,"Removing mark on running vservers on %s"%box)
228             # just trash all marks 
229             stop_command=['rm','-rf','/etc/vservers/*/apps/init/mark']
230             self.run_ssh(box,stop_command,"Removing all vserver marks on %s"%box)
231             self.reboot(box)
232
233     vnode_matcher = re.compile(".*(vnode[0-9]+)")
234     def vnodename (self, ps_line):
235         match = self.vnode_matcher.match(ps_line)
236         if match: return match.groups(0)
237         else: return ""
238
239     def handle_qemu_box (self,box):
240         if not self.options.probe:
241             self.reboot(box)
242         else:
243             command=['lsmod']
244             modules=self.backquote_ssh(box,command).split('\n')
245             kqemu_msg='*NO kqemu/kmv MODULE LOADED*'
246             for module in modules:
247                 if module.find('kqemu module loaded')==0:
248                     kqemu_msg='kqemu OK'
249                 elif module.find('kvm module loaded')==0:
250                     kqemu_msg='kvm OK'
251             
252             command=['pgrep','qemu']
253             if self.options.dry_run:
254                 self.run_ssh(box,command,None)
255             else:
256                 pids=self.backquote_ssh(box,command)
257                 if not pids:
258                     self.header ('No qemu process on %s'%box)
259                 else:
260                     self.header ("Active qemu processes on %s (%s)"%(box,kqemu_msg))
261                     command=['ps','-o','pid,command'] + [ pid for pid in pids.split("\n") if pid]
262                     ps_lines = self.backquote_ssh (box,command).split("\n")
263                     for ps_line in ps_lines:
264                         if not ps_line or ps_line.find('PID') >=0 : continue
265                         print self.margin_outline(self.vnodename(ps_line)), ps_line
266
267     # the ouput of ps -o pid,command gives us <pid> bash <buildname>/run_log
268     def testmaster_buildname (self, ps_line):
269         chunks=ps_line.split()
270         path=chunks[2]
271         [buildname,command]=path.split('/')
272         return buildname
273
274     def handle_testmaster_box (self, box):
275         if not self.options.probe: 
276             pass
277         else:
278             command=['pgrep','run_log']
279             if self.options.dry_run:
280                 self.run_ssh(box,command,None)
281             else:
282                 pids=self.backquote_ssh(box,command)
283                 if not pids:
284                     self.header ('No run_log process on %s'%box)
285                 else:
286                     self.header ("Active run_log processes on %s"%(box))
287                     command=['ps','-o','pid,command'] + [ pid for pid in pids.split("\n") if pid]
288                     ps_lines = self.backquote_ssh (box,command).split("\n")
289                     for ps_line in ps_lines:
290                         if not ps_line or ps_line.find('PID') >=0 : continue
291                         print self.margin_outline(self.testmaster_buildname(ps_line)), ps_line
292         
293
294     def handle_box(self,box,type):
295         if box in self.qemu_boxes:
296             if type=="qemu": self.handle_qemu_box(self.fqdn(box))
297         elif box in self.plc_boxes:
298             if type=="plc":  self.handle_plc_box(self.fqdn(box))
299         elif box in self.testmaster_boxes:
300             if type=='testmaster': self.handle_testmaster_box(self.fqdn(box))
301         elif type=="build":
302             if self.options.deep:
303                 self.handle_build_box_deep(self.fqdn(box))
304             else:
305                 self.handle_build_box(self.fqdn(box))
306
307     def handle_disk (self,box):
308         box=self.fqdn(box)
309         return self.run_ssh(box,["df","-h",],"Disk space on %s"%box)
310
311     def main (self):
312         usage="""%prog [options] [hostname..(s)]
313 Default is to act on test boxes only"""
314         parser = OptionParser (usage=usage)
315         parser.add_option ("-n","--dry-run",action="store_true",dest="dry_run",default=False,
316                            help="Dry run")
317         parser.add_option ("-r","--reboot", action="store_false",dest="probe",default=True,
318                            help="Actually reset/reboot stuff instead of just probing it")
319         # no need for -p = probe, as this is the default
320         parser.add_option ("-p","--plc", action="store_true",dest="plc_only",default=False,
321                            help="Acts on the plc box only")
322
323         parser.add_option ("-a","--all",action="store_true",dest="all_boxes",default=False,
324                            help="Acts on build and test boxes")
325         parser.add_option ("-b","--build",action="store_true",dest="build_only",default=False,
326                            help="Acts on build boxes only")
327         parser.add_option ("-e","--deep",action="store_true", dest="deep", default=False,
328                            help="on build boxes, shows vbuild processes in vservers as well; signif. slower")
329         parser.add_option ("-q","--qemu",action="store_true",dest="qemu_only",default=False,
330                            help="Only acts on the qemu boxes")
331         parser.add_option ("-t","--trackers",action="store_true",dest="trackers_only",default=False,
332                            help="Only wipes trackers")
333         parser.add_option ("-m","--master",action="store_true",dest="testmaster_only",default=False,
334                            help="Display the testmaster status")
335         parser.add_option ("-d","--disk",action="store_true",dest="show_disk",default=False,
336                            help="Only inspects disk status")
337         parser.add_option ("-c","--refresh-cache",action="store_true",dest="refresh_cache", default=False,
338                            help="Refresh cached list of qemu boxes at testmaster - implies -q")
339
340         (self.options,args) = parser.parse_args()
341
342         # -c implies -q
343         if self.options.refresh_cache:
344             self.options.qemu_only=True
345             self.refresh_cache()
346
347         # use given hostnames if provided
348         if args:
349             self.boxes=args
350             # if hostnames are specified, let's stay on the safe side and don't reset trackers
351             self.do_tracker_plcs = False
352             self.do_tracker_qemus = False
353         elif self.options.all_boxes:
354             self.boxes=self.test_boxes + self.build_boxes + self.testmaster_boxes
355             self.do_tracker_plcs = True
356             self.do_tracker_qemus = True
357         elif self.options.build_only:
358             self.boxes=self.build_boxes
359             self.do_tracker_plcs = False
360             self.do_tracker_qemus = False
361         elif self.options.qemu_only:
362             self.boxes=self.qemu_boxes
363             self.do_tracker_plcs = False
364             self.do_tracker_qemus = True
365         elif self.options.plc_only:
366             self.boxes=self.plc_boxes
367             self.do_tracker_plcs = True
368             self.do_tracker_qemus = False
369         elif self.options.testmaster_only:
370             self.boxes=self.testmaster_boxes
371             self.do_tracker_plcs = False
372             self.do_tracker_qemus = False
373         elif self.options.trackers_only:
374             self.boxes = []
375             self.do_tracker_plcs = True
376             self.do_tracker_qemus = True
377         # default
378         else:
379             self.boxes = self.test_boxes
380             self.do_tracker_plcs = True
381             self.do_tracker_qemus = True
382
383         if self.options.show_disk:
384             for box in self.boxes: self.handle_disk(box)
385             return
386
387         # PLCS
388         if self.do_tracker_plcs:self.handle_tracker_plcs ()
389         for box in self.boxes:  self.handle_box (box,"plc")
390         # QEMU
391         if self.do_tracker_qemus:self.handle_tracker_qemus ()
392         for box in self.boxes:  self.handle_box (box,"qemu")
393         # ALL OTHERS
394         for box in self.boxes:  self.handle_box (box,"build")
395         # TESTMASTER
396         for box in self.boxes:  self.handle_box (box,"testmaster")
397
398 if __name__ == "__main__":
399     BuildBoxes().main()