#!/usr/bin/env python3 import os, time, uuid, libvirt, kazoo.client class VMInstance: def __init__(self, domuuid, zk, thishypervisor): # Passed-in variables on creation self.domuuid = domuuid self.zkey = '/domains/%s' % domuuid self.zk = zk self.thishypervisor = thishypervisor # These will all be set later self.hypervisor = None self.state = None self.dom = None # Watch for changes to the hypervisor field in Zookeeper @zk.DataWatch(self.zkey + '/hypervisor') def watch_hypervisor(data, stat): self.hypervisor = data.decode('ascii') print("Version: %s, data: %s" % (stat.version, data.decode('ascii'))) self.manage_vm_state() # Watch for changes to the state field in Zookeeper @zk.DataWatch(self.zkey + '/state') def watch_state(data, stat): self.state = data.decode('ascii') print("Version: %s, data: %s" % (stat.version, self.state)) self.manage_vm_state() # Start up the VM def start_vm(self, conn, xmlconfig): print("Starting VM %s" % self.domuuid) dom = conn.createXML(xmlconfig, 0) if dom == None: print('Failed to create a domain from an XML definition.') exit(1) return dom # Stop the VM forcibly def stop_vm(self): print("Forcibly stopping VM %s" % self.domuuid) self.dom.destroy() # Shutdown the VM gracefully def shutdown_vm(self): print("Stopping VM %s" % self.domuuid) self.dom.shutdown() # Migrate the VM to a target host def migrate_vm(self): self.zk.set(self.zkey + '/status', b'migrate') dest_conn = libvirt.open('qemu+ssh://%s/system' % target) if dest_conn == None: print('Failed to open connection to qemu+ssh://%s/system' % target) exit(1) target_dom = self.dom.migrate(dest_conn, libvirt.VIR_MIGRATE_LIVE, None, None, 0) if target_dom == None: print('Could not migrate to the new domain') exit(1) print('Migrated successfully') dest_conn.close() # Receive the migration from another host (wait until VM is running) def receive_migrate(self): while True: if self.dom.state() != libvirt.VIR_DOMAIN_RUNNING: continue else: self.zk.set(self.zkey + '/status', b'start') break # # Main function to manage a VM (taking only self) # def manage_vm_state(self): # Start up a new Libvirt connection libvirt_name = "qemu:///system" conn = libvirt.open(libvirt_name) if conn == None: print('Failed to open local libvirt connection.') exit(1) # Check the current state of the VM try: self.dom = conn.lookupByUUID(uuid.UUID(self.domuuid).bytes) running = self.dom.state() except: running = False if running != False and self.state == "stop" and self.hypervisor == self.thishypervisor: self.stop_vm() if running != False and self.state == "shutdown" and self.hypervisor == self.thishypervisor: self.shutdown_vm() elif running == False and self.state == "migrate" and self.hypervisr == self.thishypervisor: self.receive_migrate() elif running != False and self.state == "migrate" and self.hypervisr != self.thishypervisor: self.migrate_vm() elif running == False and self.state == "start" and self.hypervisor == self.thishypervisor: # Grab the domain information from Zookeeper domxml, domxmlstat = self.zk.get(self.zkey + '/xml') domxml = str(domxml.decode('ascii')) self.dom = self.start_vm(conn, domxml) # The VM should now be running so return the domain and active connection conn.close