Modified invirt-availability and invirt-vmcontrol to stat /etc/invirt/nocreate.
[invirt/packages/invirt-remote.git] / host / usr / sbin / invirt-availability
1 #!/usr/bin/env python
2 """
3 Gathers availability data for the VM host it's running on.
4 """
5
6 from subprocess import PIPE, Popen, call
7 import sys
8 import yaml
9
10 # return the amount of memory in kilobytes represented by s
11 def parseUnits(s):
12     num, unit = s.split(' ')
13     return int(num) * {'kb':1, 'mb':1024}[unit.lower()]
14
15 def main(argv):
16     """
17     Calculate the amount of memory available for new VMs
18     The numbers returned by xm info and xm info -c are in MB
19     The numbers in /proc/xen/balloon have nice units
20     All math is done in kilobytes for consistency
21     Output is in MB
22
23     Bail if /etc/invirt/nocreate exists
24     """
25     try:
26         os.stat('/etc/invirt/nocreate')
27         print 0
28         return 0
29     except OSError:
30         pass
31
32     p = Popen(['/usr/sbin/xm', 'info'], stdout=PIPE)
33     output = p.communicate()[0]
34     if p.returncode != 0:
35         raise RuntimeError("Command '%s' returned non-zero exit status %d"
36                            % ('/usr/sbin/xm info', p.returncode)) 
37     xminfo = yaml.load(output, yaml.CSafeLoader)
38
39     free_memory = int(xminfo['free_memory']) * 1024
40
41     ballooninfo = yaml.load(open('/proc/xen/balloon', 'r').read())
42     currentallocation = parseUnits(ballooninfo['Current allocation'])
43     minimumtarget = parseUnits(ballooninfo['Minimum target'])
44
45     p = Popen(['/usr/sbin/xm', 'info', '-c'], stdout=PIPE)
46     output = p.communicate()[0]
47     if p.returncode != 0:
48         raise RuntimeError("Command '%s' returned non-zero exit status %d"
49                            % ('/usr/sbin/xm info -c', p.returncode)) 
50     xminfoc = yaml.load(output, yaml.CSafeLoader)
51
52     # In kilobytes
53     dom0minmem = int(xminfoc['dom0-min-mem']) * 1024
54
55     dom0_spare_memory = currentallocation - max(minimumtarget, dom0minmem)
56     print int((free_memory + dom0_spare_memory)/1024)
57     return 0
58
59 if __name__ == '__main__':
60     sys.exit(main(sys.argv))