2 Functions to perform remctls.
5 from sipb_xen_database import Machine, Disk, Type, NIC, CDROM, ctx, meta
7 from webcommon import CodeError, InvalidInput
15 # ... and stolen from xend/uuid.py
17 """Generate a random UUID."""
19 return [ random.randint(0, 255) for _ in range(0, 16) ]
22 """Turn a numeric UUID to a hyphen-seperated one."""
23 return "-".join(["%02x" * 4, "%02x" * 2, "%02x" * 2, "%02x" * 2,
24 "%02x" * 6]) % tuple(u)
27 def kinit(username = 'daemon/sipb-xen.mit.edu', keytab = '/etc/sipb-xen.keytab'):
28 """Kinit with a given username and keytab"""
30 p = subprocess.Popen(['kinit', "-k", "-t", keytab, username],
31 stderr=subprocess.PIPE)
34 raise CodeError("Error %s in kinit: %s" % (e, p.stderr.read()))
37 """If we lack tickets, kinit."""
38 p = subprocess.Popen(['klist', '-s'])
42 def remctl(*args, **kws):
43 """Perform a remctl and return the output.
45 kinits if necessary, and outputs errors to stderr.
48 p = subprocess.Popen(['remctl', 'black-mesa.mit.edu']
50 stdout=subprocess.PIPE,
51 stderr=subprocess.PIPE)
54 return p.stdout.read(), p.stderr.read()
56 print >> sys.stderr, 'Error', v, 'on remctl', args, ':'
57 print >> sys.stderr, p.stderr.read()
58 raise CodeError('ERROR on remctl')
59 return p.stdout.read()
61 def lvcreate(machine, disk):
62 """Create a single disk for a machine"""
63 remctl('web', 'lvcreate', machine.name,
64 disk.guest_device_name, str(disk.size))
66 def makeDisks(machine):
67 """Update the lvm partitions to add a disk."""
68 for disk in machine.disks:
69 lvcreate(machine, disk)
71 def lvcopy(machine_orig_name, machine, rootpw):
72 """Copy a golden image onto a machine's disk"""
73 remctl('web', 'lvcopy', machine_orig_name, machine.name, rootpw)
75 def bootMachine(machine, cdtype):
76 """Boot a machine with a given boot CD.
78 If cdtype is None, give no boot cd. Otherwise, it is the string
79 id of the CD (e.g. 'gutsy_i386')
81 if cdtype is not None:
82 out, err = remctl('control', machine.name, 'create',
85 out, err = remctl('control', machine.name, 'create',
87 if 'already exists' in out:
88 raise InvalidInput('action', 'create',
89 'VM %s is already on' % machine.name)
91 raise CodeError('"%s" on "control %s create %s'
92 % (err, machine.name, cdtype))
94 def registerMachine(machine):
95 """Register a machine to be controlled by the web interface"""
96 remctl('web', 'register', machine.name)
98 def unregisterMachine(machine):
99 """Unregister a machine to not be controlled by the web interface"""
100 remctl('web', 'unregister', machine.name)
102 def createVm(owner, contact, name, memory, disk_size, machine_type, cdrom, clone_from):
103 """Create a VM and put it in the database"""
104 # put stuff in the table
105 transaction = ctx.current.create_transaction()
107 validation.validMemory(owner, memory)
108 validation.validDisk(owner, disk_size * 1. / 1024)
109 validation.validAddVm(owner)
110 res = meta.engine.execute('select nextval('
111 '\'"machines_machine_id_seq"\')')
112 id = res.fetchone()[0]
114 machine.machine_id = id
116 machine.memory = memory
117 machine.owner = owner
118 machine.administrator = owner
119 machine.contact = contact
120 machine.uuid = uuidToString(randomUUID())
121 machine.boot_off_cd = True
122 machine.type_id = machine_type.type_id
123 ctx.current.save(machine)
124 disk = Disk(machine_id=machine.machine_id,
125 guest_device_name='hda', size=disk_size)
126 open_nics = NIC.select_by(machine_id=None)
127 if not open_nics: #No IPs left!
128 raise CodeError("No IP addresses left! "
129 "Contact sipb-xen@mit.edu.")
131 nic.machine_id = machine.machine_id
133 ctx.current.save(nic)
134 ctx.current.save(disk)
135 cache_acls.refreshMachine(machine)
138 transaction.rollback()
140 registerMachine(machine)
143 lvcopy(clone_from, machine, 'password')
144 # tell it to boot with cdrom
145 bootMachine(machine, cdrom)
148 def getUptimes(machines=None):
149 """Return a dictionary mapping machine names to uptime strings"""
150 value_string = remctl('web', 'listvms')
151 lines = value_string.splitlines()
156 uptime = ' '.join(lst[2:])
160 ans[m] = d.get(m.name)
164 """Parse a status string into nested tuples of strings.
166 s = output of xm list --long <machine_name>
168 values = re.split('([()])', s)
170 for v in values[2:-2]: #remove initial and final '()'
177 if len(stack[-1]) == 1:
179 stack[-2].append(stack[-1])
184 stack[-1].extend(v.split())
187 def statusInfo(machine):
188 """Return the status list for a given machine.
190 Gets and parses xm list --long
192 value_string, err_string = remctl('control', machine.name, 'list-long',
194 if 'Unknown command' in err_string:
195 raise CodeError("ERROR in remctl list-long %s is not registered" %
197 elif 'does not exist' in err_string:
200 raise CodeError("ERROR in remctl list-long %s: %s" %
201 (machine.name, err_string))
202 status = parseStatus(value_string)
205 def deleteVM(machine):
207 remctl('control', machine.name, 'destroy', err=True)
208 transaction = ctx.current.create_transaction()
209 delete_disk_pairs = [(machine.name, d.guest_device_name)
210 for d in machine.disks]
212 for nic in machine.nics:
213 nic.machine_id = None
215 ctx.current.save(nic)
216 for disk in machine.disks:
217 ctx.current.delete(disk)
218 for access in machine.acl:
219 ctx.current.delete(access)
220 ctx.current.delete(machine)
223 transaction.rollback()
225 for mname, dname in delete_disk_pairs:
226 remctl('web', 'lvremove', mname, dname)
227 unregisterMachine(machine)
229 def commandResult(user, fields):
231 machine = validation.testMachineId(user, fields.getfirst('machine_id'))
232 action = fields.getfirst('action')
233 cdrom = fields.getfirst('cdrom')
234 if cdrom is not None and not CDROM.get(cdrom):
235 raise CodeError("Invalid cdrom type '%s'" % cdrom)
236 if action not in ('Reboot', 'Power on', 'Power off', 'Shutdown',
238 raise CodeError("Invalid action '%s'" % action)
239 if action == 'Reboot':
240 if cdrom is not None:
241 out, err = remctl('control', machine.name, 'reboot', cdrom,
244 out, err = remctl('control', machine.name, 'reboot',
247 if re.match("Error: Domain '.*' does not exist.", err):
248 raise InvalidInput("action", "reboot",
251 print >> sys.stderr, 'Error on reboot:'
252 print >> sys.stderr, err
253 raise CodeError('ERROR on remctl')
255 elif action == 'Power on':
256 if validation.maxMemory(user, machine) < machine.memory:
257 raise InvalidInput('action', 'Power on',
258 "You don't have enough free RAM quota "
259 "to turn on this machine.")
260 bootMachine(machine, cdrom)
261 elif action == 'Power off':
262 out, err = remctl('control', machine.name, 'destroy', err=True)
264 if re.match("Error: Domain '.*' does not exist.", err):
265 raise InvalidInput("action", "Power off",
266 "Machine is not on.")
268 print >> sys.stderr, 'Error on power off:'
269 print >> sys.stderr, err
270 raise CodeError('ERROR on remctl')
271 elif action == 'Shutdown':
272 out, err = remctl('control', machine.name, 'shutdown', err=True)
274 if re.match("Error: Domain '.*' does not exist.", err):
275 raise InvalidInput("action", "Shutdown",
276 "Machine is not on.")
278 print >> sys.stderr, 'Error on Shutdown:'
279 print >> sys.stderr, err
280 raise CodeError('ERROR on remctl')
281 elif action == 'Delete VM':
289 def resizeDisk(machine_name, disk_name, new_size):
290 remctl("web", "lvresize", machine_name, disk_name, new_size)
292 def renameMachine(machine, old_name, new_name):
293 for disk in machine.disks:
294 remctl("web", "lvrename", old_name,
295 disk.guest_device_name, new_name)
296 remctl("web", "moveregister", old_name, new_name)