119f7fd7e7c34075c059c64a830dba24c2401738
[monitor.git] / monitor / scanapi.py
1 #!/usr/bin/python
2
3 import os
4 import sys
5 import string
6 import time
7 from datetime import datetime,timedelta
8 import threadpool
9 import threading
10
11 import socket
12 from pcucontrol import reboot
13
14 from pcucontrol.util import command
15 from monitor import config
16
17 from monitor.database.info.model import *
18
19 from monitor.sources import comon
20 from monitor.wrapper import plc, plccache
21
22 import traceback
23 from monitor.common import nmap_port_status, email_exception
24
25 COMON_COTOPURL= "http://summer.cs.princeton.edu/status/tabulator.cgi?" + \
26                         "table=table_nodeview&" + \
27                         "dumpcols='name,resptime,sshstatus,uptime,lastcotop,cpuspeed,memsize,disksize'&" + \
28                         "formatcsv"
29
30 api = plc.getAuthAPI()
31 plc_lock = threading.Lock()
32 round = 1
33 global_round = round
34 count = 0
35
36
37 def get_pcu(pcuname):
38         plc_lock.acquire()
39         try:
40                 #print "GetPCU from PLC %s" % pcuname
41                 l_pcu  = plc.GetPCUs({'pcu_id' : pcuname})
42                 #print l_pcu
43                 if len(l_pcu) > 0:
44                         l_pcu = l_pcu[0]
45         except:
46                 try:
47                         #print "GetPCU from file %s" % pcuname
48                         l_pcus = plccache.l_pcus
49                         for i in l_pcus:
50                                 if i['pcu_id'] == pcuname:
51                                         l_pcu = i
52                 except:
53                         traceback.print_exc()
54                         l_pcu = None
55
56         plc_lock.release()
57         return l_pcu
58
59 def get_nodes(node_ids):
60         plc_lock.acquire()
61         l_node = []
62         try:
63                 l_node = plc.getNodes(node_ids, ['hostname', 'last_contact', 'node_id', 'ports'])
64         except:
65                 try:
66                         plc_nodes = plccache.l_nodes
67                         for n in plc_nodes:
68                                 if n['node_id'] in node_ids:
69                                         l_node.append(n)
70                 except:
71                         traceback.print_exc()
72                         l_node = None
73
74         plc_lock.release()
75         if l_node == []:
76                 l_node = None
77         return l_node
78         
79
80 def get_plc_pcu_values(pcuname):
81         """
82                 Try to contact PLC to get the PCU info.
83                 If that fails, try a backup copy from the last run.
84                 If that fails, return None
85         """
86         values = {}
87
88         l_pcu = get_pcu(pcuname)
89         
90         if l_pcu is not None:
91                 site_id = l_pcu['site_id']
92                 node_ids = l_pcu['node_ids']
93                 l_node = get_nodes(node_ids) 
94                                 
95                 if l_node is not None:
96                         for node in l_node:
97                                 values[node['hostname']] = node['ports'][0]
98
99                         values['nodenames'] = [node['hostname'] for node in l_node]
100
101                         # NOTE: this is for a dry run later. It doesn't matter which node.
102                         values['node_id'] = l_node[0]['node_id']
103
104                 values.update(l_pcu)
105         else:
106                 values = None
107         
108         return values
109
110 class ScanInterface(object):
111         recordclass = None
112         syncclass = None
113         primarykey = 'hostname'
114
115         def __init__(self, round=1):
116                 self.round = round
117                 self.count = 1
118
119         def __getattr__(self, name):
120                 if 'collect' in name or 'record' in name:
121                         method = getattr(self, name, None)
122                         if method is None:
123                                 raise Exception("No such method %s" % name)
124                         return method
125                 else:
126                         raise Exception("No such method %s" % name)
127
128         def collect(self, nodename, data):
129                 pass
130
131         def record(self, request, (nodename, values) ):
132
133                 try:
134                         if values is None:
135                                 return
136                         
137                         if self.syncclass:
138                                 fbnodesync = self.syncclass.findby_or_create(
139                                                                                                 #if_new_set={'round' : self.round},
140                                                                                                 **{ self.primarykey : nodename})
141                         # NOTE: This code will either add a new record for the new self.round, 
142                         #       OR it will find the previous value, and update it with new information.
143                         #       The data that is 'lost' is not that important, b/c older
144                         #       history still exists.  
145                         fbrec = self.recordclass.findby_or_create(
146                                                 **{ self.primarykey:nodename})
147
148                         fbrec.set( **values ) 
149
150                         fbrec.flush()
151                         if self.syncclass:
152                                 fbnodesync.round = self.round
153                                 fbnodesync.flush()
154
155                         print "%d %s %s" % (self.count, nodename, values)
156                         self.count += 1
157
158                 except:
159                         print "ERROR:"
160                         email_exception(str(nodename))
161                         print traceback.print_exc()
162                         pass
163
164 class ScanNodeInternal(ScanInterface):
165         recordclass = FindbadNodeRecord
166         #syncclass = FindbadNodeRecordSync
167         syncclass = None
168         primarykey = 'hostname'
169
170         def collectPorts(self, nodename, port_list=[22,80,806]):
171                 values = {}
172                 for port in port_list:
173                         ret = os.system("nc -w 5 -z %s %s > /dev/null" % (nodename, port) )
174                         if ret == 0:
175                                 values[str(port)] = "open"
176                         else:
177                                 values[str(port)] = "closed"
178                 return {'port_status' : values }
179
180         def collectNMAP(self, nodename, cohash):
181                 #### RUN NMAP ###############################
182                 # NOTE: run the same command three times and take the best of three
183                 #               runs.  NMAP can drop packets, and especially so when it runs many
184                 #               commands at once.
185                 values = {}
186                 nmap = command.CMD()
187                 print "nmap -oG - -P0 -p22,80,806 %s | grep Host:" % nodename
188                 (oval1,eval) = nmap.run_noexcept("nmap -oG - -P0 -p22,80,806 %s | grep Host:" % nodename)
189                 (oval2,eval) = nmap.run_noexcept("nmap -oG - -P0 -p22,80,806 %s | grep Host:" % nodename)
190                 (oval3,eval) = nmap.run_noexcept("nmap -oG - -P0 -p22,80,806 %s | grep Host:" % nodename)
191                 # NOTE: an empty / error value for oval, will still work.
192                 values['port_status'] = {}
193                 (o1,continue_probe) = nmap_port_status(oval1)
194                 (o2,continue_probe) = nmap_port_status(oval2)
195                 (o3,continue_probe) = nmap_port_status(oval3)
196                 for p in ['22', '80', '806']:
197                         l = [ o1[p], o2[p], o3[p] ]
198                         if len(filter(lambda x: x == 'open', l)) > 1:
199                                 values['port_status'][p] = 'open'
200                         else:
201                                 values['port_status'][p] = o1[p]
202
203                 print values['port_status']
204                 return (nodename, values)
205
206         def collectPING(self, nodename, cohash):
207                 values = {}
208                 ping = command.CMD()
209                 (oval,errval) = ping.run_noexcept("ping -c 1 -q %s | grep rtt" % nodename)
210
211                 values = {}
212                 if oval == "":
213                         # An error occurred
214                         values['ping_status'] = False
215                 else:
216                         values['ping_status'] = True
217
218                 return values
219
220         def collectTRACEROUTE(self, nodename, cohash):
221                 values = {}
222                 trace = command.CMD()
223                 (oval,errval) = trace.run_noexcept("traceroute %s" % nodename)
224
225                 values['traceroute'] = oval
226
227                 return values
228
229         def collectSSH(self, nodename, cohash):
230                 values = {}
231                 try:
232                         for port in [22, 806]: 
233                                 ssh = command.SSH('root', nodename, port)
234
235                                 (oval, errval) = ssh.run_noexcept2(""" <<\EOF
236                                         echo "{"
237                                         echo '  "kernel_version":"'`uname -a`'",'
238                                         echo '  "bmlog":"'`ls /tmp/bm.log`'",'
239                                         echo '  "bootcd_version":"'`cat /mnt/cdrom/bootme/ID`'",'
240                                         echo '  "nm_status":"'`ps ax | grep nm.py | grep -v grep`'",'
241                                         echo '  "dns_status":"'`host boot.planet-lab.org 2>&1`'",'
242                                         echo '  "iptables_status":"'`iptables -t mangle -nL | awk '$1~/^[A-Z]+$/ {modules[$1]=1;}END{for (k in modules) {if (k) printf "%s ",k;}}'`'",'
243                                         echo '  "princeton_comon_dir":"'`ls -d /vservers/princeton_comon`'",'
244                                         echo '  "uptime":"'`cat /proc/uptime`'",'
245
246                                         ID=`grep princeton_comon /etc/passwd | awk -F : '{if ( $3 > 500 ) { print $3}}'` 
247                                         echo '  "princeton_comon_running":"'`ls -d /proc/virtual/$ID`'",'
248                                         echo '  "princeton_comon_procs":"'`vps ax | grep $ID | grep -v grep | wc -l`'",'
249                                         echo '  "fs_status":"'`grep proc /proc/mounts | grep ro, ; if [ -x /usr/bin/timeout.pl ] ; then timeout.pl 20 touch /var/log/monitor 2>&1 ; if [ -d /vservers/ ] ; then timeout.pl 20 touch /vservers/monitor.log 2>&1  ; fi ; fi`'",'
250                                         echo '  "rpm_version":"'`if [ -x /usr/bin/timeout.pl ] ; then timeout.pl 30 rpm -q NodeManager ; fi`'",'
251                                         echo '  "rpm_versions":"'`if [ -x /usr/bin/timeout.pl ] ; then timeout.pl 45 rpm -q -a ; fi`'",'
252                                         echo "}"
253 EOF                     """)
254
255                                 values['ssh_error'] = errval
256                                 if len(oval) > 0:
257                                         #print "OVAL: %s" % oval
258                                         values.update(eval(oval))
259                                         values['ssh_portused'] = port
260                                         break
261                                 else:
262                                         values.update({'kernel_version': "", 'bmlog' : "", 'bootcd_version' : '', 
263                                                                         'nm_status' : '', 
264                                                                         'fs_status' : '',
265                                                                         'uptime' : '',
266                                                                         'dns_status' : '',
267                                                                         'rpm_version' : '',
268                                                                         'rpm_versions' : '',
269                                                                         'princeton_comon_dir' : "", 
270                                                                         'princeton_comon_running' : "", 
271                                                                         'princeton_comon_procs' : "", 'ssh_portused' : None})
272
273                         oval = values['nm_status']
274                         if "nm.py" in oval:
275                                 values['nm_status'] = "Y"
276                         else:
277                                 values['nm_status'] = "N"
278
279                         continue_slice_check = True
280                         oval = values['princeton_comon_dir']
281                         if "princeton_comon" in oval:
282                                 values['princeton_comon_dir'] = True
283                         else:
284                                 values['princeton_comon_dir'] = False
285                                 continue_slice_check = False
286
287                         if continue_slice_check:
288                                 oval = values['princeton_comon_running']
289                                 if len(oval) > len('/proc/virtual/'):
290                                         values['princeton_comon_running'] = True
291                                 else:
292                                         values['princeton_comon_running'] = False
293                                         continue_slice_check = False
294                         else:
295                                 values['princeton_comon_running'] = False
296                                 
297                         if continue_slice_check:
298                                 oval = values['princeton_comon_procs']
299                                 values['princeton_comon_procs'] = int(oval)
300                         else:
301                                 values['princeton_comon_procs'] = None
302                 except:
303                         print traceback.print_exc()
304                         sys.exit(1)
305
306                 return values
307
308         def collectPLC(self, nodename, cohash):
309                 values = {}
310                 ### GET PLC NODE ######################
311                 d_node = plccache.GetNodeByName(nodename)
312                 values['plc_node_stats'] = d_node
313
314                 ### GET PLC PCU ######################
315                 site_id = -1
316                 d_pcu = None
317                 if d_node and len(d_node['pcu_ids']) > 0:
318                         d_pcu = d_node['pcu_ids'][0]
319
320                 site_id = d_node['site_id']
321
322                 values['plc_pcuid'] = d_pcu
323
324                 ### GET PLC SITE ######################
325                 print "SITEID: %s" % site_id
326                 d_site = plccache.GetSitesById([ site_id ])[0]
327                 values['loginbase'] = d_site['login_base']
328                 values['plc_site_stats'] = d_site 
329
330                 return values
331
332         def evaluate(self, nodename, values):
333                 # TODO: this section can probably be reduced to a policy statement
334                 #               using patterns and values collected so far.
335                 # NOTE: A node is "DOWN" if 
336                 #       * cannot ssh into it.
337                 #   * all ports are not open for a 'BOOT' node
338                 #   * dns for hostname does not exist.
339                 b_getbootcd_id = True
340
341                 oval = values['kernel_version']
342                 values['ssh_status'] = True
343                 if "2.6.17" in oval or "2.6.2" in oval:
344                         values['observed_category'] = 'PROD'
345                         if "bm.log" in values['bmlog']:
346                                 values['observed_status'] = 'DEBUG'
347                         else:
348                                 values['observed_status'] = 'BOOT'
349                 elif "2.6.12" in oval or "2.6.10" in oval:
350                         values['observed_category'] = 'OLDPROD'
351                         if "bm.log" in values['bmlog']:
352                                 values['observed_status'] = 'DEBUG'
353                         else:
354                                 values['observed_status'] = 'BOOT'
355                 
356                 # NOTE: on 2.6.8 kernels, with 4.2 bootstrapfs, the chroot 
357                 #       command fails.  I have no idea why.
358                 elif "2.4" in oval or "2.6.8" in oval:
359                         b_getbootcd_id = False
360                         values['observed_category'] = 'OLDBOOTCD'
361                         values['observed_status'] = 'DEBUG'
362                 elif oval != "":
363                         values['observed_category'] = 'UNKNOWN'
364                         if "bm.log" in values['bmlog']:
365                                 values['observed_status'] = 'DEBUG'
366                         else:
367                                 values['observed_status'] = 'BOOT'
368                 else:
369                         # An error occurred.
370                         b_getbootcd_id = False
371                         values['ssh_status'] = False
372                         values['observed_category'] = 'ERROR'
373                         values['observed_status'] = 'DOWN'
374                         values['kernel_version'] = ""
375
376                 values['firewall'] = False
377
378                 # NOTE: A node is down if some of the public ports are not open
379                 if values['observed_status'] == "BOOT":
380                         # verify that all ports are open.  Else, report node as down.
381                         if not ( values['port_status']['22']  == "open" and \
382                                          values['port_status']['80']  == "open" and \
383                                          values['port_status']['806'] == "open") :
384                                 #email_exception(nodename, "%s FILTERED HOST" % nodename)
385                                 values['observed_status'] = 'DOWN'
386                                 values['firewall'] = True
387
388                         #if   values['port_status']['22']  == "open" and \
389                         #        values['port_status']['80']  == "closed" and \
390                         #        values['port_status']['806'] == "open" :
391                         #       email_exception("%s port 80 blocked" % nodename, "possible VSERVER ref blocked")
392
393                 #if not values['external_dns_status']:
394                 #       email_exception("%s DNS down" % nodename)
395
396                 if b_getbootcd_id:
397                         # try to get BootCD for all nodes that are not 2.4 nor inaccessible
398                         oval = values['bootcd_version']
399                         if "BootCD" in oval:
400                                 values['bootcd_version'] = oval
401                                 if "v2" in oval and \
402                                         ( nodename is not "planetlab1.cs.unc.edu" and \
403                                           nodename is not "planetlab2.cs.unc.edu" ):
404                                         values['observed_category'] = 'OLDBOOTCD'
405                         else:
406                                 values['bootcd_version'] = ""
407                 else:
408                         values['bootcd_version'] = ""
409
410                 return values
411
412         def collectDNS(self, nodename, cohash):
413                 values = {}
414                 try:
415                         ipaddr = socket.gethostbyname(nodename)
416                         # TODO: check that IP returned matches IP in plc db.
417                         values['external_dns_status'] = True
418                 except Exception, err:
419                         values['external_dns_status'] = False
420
421                 return values
422
423         def collectInternal(self, nodename, cohash):
424                 try:
425                         values = {}
426
427                         v = self.collectPING(nodename, cohash)
428                         values.update(v)
429
430                         v = self.collectPorts(nodename)
431                         values.update(v)
432
433                         v = self.collectSSH(nodename, cohash)
434                         values.update(v)
435
436                         v = self.collectDNS(nodename, cohash)
437                         values.update(v)
438
439                         v = self.collectTRACEROUTE(nodename, cohash)
440                         values.update(v)
441
442                         v = self.collectPLC(nodename, cohash)
443                         values.update(v)
444
445                         if nodename in cohash: 
446                                 values['comon_stats'] = cohash[nodename]
447                         else:
448                                 values['comon_stats'] = {'resptime':  '-1', 
449                                                                                 'uptime':    '-1',
450                                                                                 'sshstatus': '-1', 
451                                                                                 'lastcotop': '-1',
452                                                                                 'cpuspeed' : "null",
453                                                                                 'disksize' : 'null',
454                                                                                 'memsize'  : 'null'}
455
456                         values['rpms'] = values['rpm_versions']
457                         print "ALLVERSIONS: %s %s" % (nodename, values['rpm_versions'])
458                         print "RPMVERSION: %s %s" % (nodename, values['rpm_version'])
459                         print "UPTIME: %s %s" % (nodename, values['uptime'])
460
461                         values = self.evaluate(nodename, values)
462                         values['date_checked'] = datetime.now()
463
464                 except:
465                         print traceback.print_exc()
466
467                 return (nodename, values)
468
469
470 def internalprobe(hostname):
471         scannode = ScanNodeInternal()
472         try:
473                 (nodename, values) = scannode.collectInternal(hostname, {})
474                 scannode.record(None, (nodename, values))
475                 session.flush()
476                 return True
477         except:
478                 print traceback.print_exc()
479                 return False
480
481 def externalprobe(hostname):
482         scannode = ScanNodeInternal() 
483         try:
484                 values = self.collectPorts(hostname)
485                 scannode.record(None, (hostname, values))
486                 session.flush()
487                 return True
488         except:
489                 print traceback.print_exc()
490                 return False
491
492 class ScanPCU(ScanInterface):
493         recordclass = FindbadPCURecord
494         syncclass = None
495         primarykey = 'plc_pcuid'
496
497         def collectInternal(self, pcuname, cohash):
498
499                 continue_probe = True
500                 errors = None
501                 values = {'reboot_trial_status' : 'novalue'}
502                 ### GET PCU ######################
503                 try:
504                         b_except = False
505                         try:
506                                 v = get_plc_pcu_values(pcuname)
507                                 if v['hostname'] is not None: v['hostname'] = v['hostname'].strip()
508                                 if v['ip'] is not None: v['ip'] = v['ip'].strip()
509
510                                 if v is not None:
511                                         values['plc_pcu_stats'] = v
512                                 else:
513                                         continue_probe = False
514                         except:
515                                 b_except = True
516                                 traceback.print_exc()
517                                 continue_probe = False
518
519                         if b_except or not continue_probe: return (None, None, None)
520
521                         #### RUN NMAP ###############################
522                         if continue_probe:
523                                 nmap = command.CMD()
524                                 print "nmap -oG - -P0 -p22,23,80,443,5869,9100,16992 %s | grep Host:" % reboot.pcu_name(values['plc_pcu_stats'])
525                                 (oval,eval) = nmap.run_noexcept("nmap -oG - -P0 -p22,23,80,443,5869,9100,16992 %s | grep Host:" % reboot.pcu_name(values['plc_pcu_stats']))
526                                 # NOTE: an empty / error value for oval, will still work.
527                                 (values['port_status'], continue_probe) = nmap_port_status(oval)
528                         else:
529                                 values['port_status'] = None
530                                 
531                         #### COMPLETE ENTRY   #######################
532
533                         values['entry_complete'] = []
534                         #if values['protocol'] is None or values['protocol'] is "":
535                         #       values['entry_complete'] += ["protocol"]
536                         if values['plc_pcu_stats']['model'] is None or values['plc_pcu_stats']['model'] is "":
537                                 values['entry_complete'] += ["model"]
538                                 # Cannot continue due to this condition
539                                 continue_probe = False
540
541                         if values['plc_pcu_stats']['password'] is None or values['plc_pcu_stats']['password'] is "":
542                                 values['entry_complete'] += ["password"]
543                                 # Cannot continue due to this condition
544                                 continue_probe = False
545
546                         if len(values['entry_complete']) > 0:
547                                 continue_probe = False
548
549                         if values['plc_pcu_stats']['hostname'] is None or values['plc_pcu_stats']['hostname'] is "":
550                                 values['entry_complete'] += ["hostname"]
551                         if values['plc_pcu_stats']['ip'] is None or values['plc_pcu_stats']['ip'] is "":
552                                 values['entry_complete'] += ["ip"]
553
554                         # If there are no nodes associated with this PCU, then we cannot continue.
555                         if len(values['plc_pcu_stats']['node_ids']) == 0:
556                                 continue_probe = False
557                                 values['entry_complete'] += ['nodeids']
558
559
560                         #### DNS and IP MATCH #######################
561                         if values['plc_pcu_stats']['hostname'] is not None and values['plc_pcu_stats']['hostname'] is not "" and \
562                            values['plc_pcu_stats']['ip'] is not None and values['plc_pcu_stats']['ip'] is not "":
563                                 try:
564                                         ipaddr = socket.gethostbyname(values['plc_pcu_stats']['hostname'])
565                                         if ipaddr == values['plc_pcu_stats']['ip']:
566                                                 values['dns_status'] = "DNS-OK"
567                                         else:
568                                                 values['dns_status'] = "DNS-MISMATCH"
569                                                 values['plc_pcu_stats']['hostname'] = values['plc_pcu_stats']['ip']
570
571                                 except Exception, err:
572                                         values['dns_status'] = "DNS-NOENTRY"
573                                         values['plc_pcu_stats']['hostname'] = values['plc_pcu_stats']['ip']
574                         else:
575                                 if values['plc_pcu_stats']['ip'] is not None and values['plc_pcu_stats']['ip'] is not "":
576                                         values['dns_status'] = "NOHOSTNAME"
577                                         values['plc_pcu_stats']['hostname'] = values['plc_pcu_stats']['ip']
578                                 else:
579                                         values['dns_status'] = "NO-DNS-OR-IP"
580                                         values['plc_pcu_stats']['hostname'] = "No_entry_in_DB"
581                                         continue_probe = False
582
583
584                         ######  DRY RUN  ############################
585                         if continue_probe and 'node_ids' in values['plc_pcu_stats'] and \
586                                 len(values['plc_pcu_stats']['node_ids']) > 0:
587                                 rb_ret = reboot.reboot_test_new(values['plc_pcu_stats']['nodenames'][0], 
588                                                                                                 values, 1, True)
589                         else:
590                                 rb_ret = "Not_Run" # No nodes to test"
591
592                         values['reboot_trial_status'] = rb_ret
593
594                 except:
595                         print "____________________________________"
596                         print values
597                         errors = values
598                         print "____________________________________"
599                         errors['traceback'] = traceback.format_exc()
600                         print errors['traceback']
601                         values['reboot_trial_status'] = str(errors['traceback'])
602                         print values
603
604                 values['entry_complete']=" ".join(values['entry_complete'])
605
606                 values['date_checked'] = datetime.now()
607                 return (pcuname, values)
608