2013-04-05 20:27:21 +02:00
|
|
|
import json
|
|
|
|
|
import subprocess
|
|
|
|
|
import os, errno
|
2013-04-07 02:41:58 +02:00
|
|
|
import threading
|
|
|
|
|
import time
|
|
|
|
|
from qmp import QEMUMonitorProtocol
|
2013-04-05 20:27:21 +02:00
|
|
|
|
2013-04-05 02:55:01 +02:00
|
|
|
class VMHelper:
|
2013-04-07 02:41:58 +02:00
|
|
|
def __init__(self, filename):
|
|
|
|
|
self.config = json.load(open(filename))
|
2013-04-05 20:27:21 +02:00
|
|
|
|
2013-04-07 02:41:58 +02:00
|
|
|
def getVmIds(self):
|
|
|
|
|
if ('VMs' in self.config):
|
|
|
|
|
return [x for x , y in self.config['VMs'].items()]
|
|
|
|
|
else:
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
def getPid(self,vmid) -> "int or None":
|
2013-04-05 20:27:21 +02:00
|
|
|
result = None
|
|
|
|
|
try:
|
|
|
|
|
with open(self.config['kvm']['pidfile'].replace("$VMID", vmid)) as pidfd:
|
|
|
|
|
firstline = pidfd.readline().strip()
|
|
|
|
|
result = int(firstline) if firstline.isdigit() else None
|
|
|
|
|
except IOError:
|
|
|
|
|
pass
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
2013-04-07 02:41:58 +02:00
|
|
|
def process_running(self,vmid) -> bool:
|
2013-04-05 20:27:21 +02:00
|
|
|
|
|
|
|
|
pid = self.getPid(vmid)
|
|
|
|
|
|
|
|
|
|
if pid is None:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
os.kill(pid,0)
|
|
|
|
|
except OSError as e:
|
2013-04-07 02:41:58 +02:00
|
|
|
return e.errno != errno.ESRCH
|
2013-04-05 20:27:21 +02:00
|
|
|
else:
|
2013-04-07 02:41:58 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def getQMPStatus(self,vmid):
|
|
|
|
|
# cmd doku http://git.qemu.org/?p=qemu.git;a=blob;f=qmp-commands.hx;h=1e0e11ee32571209e2dfce41b5c18f01d6ad3880;hb=HEAD
|
|
|
|
|
proto = QEMUMonitorProtocol(self.config['kvm']['qmpsocket'].replace("$VMID", vmid))
|
|
|
|
|
proto.connect()
|
|
|
|
|
|
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
|
|
queryKvm = proto.command("query-kvm")
|
|
|
|
|
result["kvm-enabled"] = queryKvm["enabled"]
|
|
|
|
|
result["kvm-present"] = queryKvm["present"]
|
|
|
|
|
|
|
|
|
|
result["status"] = proto.command("query-status")["status"]
|
2013-04-05 20:27:21 +02:00
|
|
|
|
2013-04-07 02:41:58 +02:00
|
|
|
proto.close()
|
2013-04-05 20:27:21 +02:00
|
|
|
return result
|
|
|
|
|
|
2013-04-07 02:41:58 +02:00
|
|
|
def autostartVMs(self):
|
|
|
|
|
if ('VMs' in self.config):
|
|
|
|
|
for vmid, vmcfg in self.config['VMs'].items():
|
|
|
|
|
if "autostart" in vmcfg and vmcfg["autostart"] and not self.process_running(vmid):
|
|
|
|
|
self.startVM(vmid)
|
|
|
|
|
else:
|
|
|
|
|
raise Exception("Missing VMs config section!")
|
|
|
|
|
|
2013-04-05 20:27:21 +02:00
|
|
|
def startVM(self, vmid):
|
|
|
|
|
self.setupNetwork(vmid)
|
|
|
|
|
cmd = []
|
|
|
|
|
cmd.append(self.config['kvm']['executable'])
|
|
|
|
|
cmd.append(vmid)
|
|
|
|
|
|
|
|
|
|
cmd.append("-pidfile")
|
|
|
|
|
cmd.append(self.config['kvm']['pidfile'].replace("$VMID", vmid))
|
|
|
|
|
|
|
|
|
|
cmd.append("-qmp")
|
|
|
|
|
cmd.append("unix:" + self.config['kvm']['qmpsocket'].replace("$VMID", vmid) + ",server,nowait")
|
|
|
|
|
|
2013-04-07 02:41:58 +02:00
|
|
|
cmd += ["-name", vmid]
|
|
|
|
|
|
2013-04-05 20:27:21 +02:00
|
|
|
default_args = self.config['kvm']['default_args'].replace("$VMID", vmid)
|
|
|
|
|
cmd += default_args.split()
|
|
|
|
|
cmd += self.createArguments(vmid).split()
|
|
|
|
|
#print(" ".join(cmd))
|
|
|
|
|
subprocess.Popen(cmd, stdout=open("/dev/null"), stderr=open("/dev/null"))
|
2013-04-07 02:41:58 +02:00
|
|
|
#subprocess.call(cmd
|
|
|
|
|
|
|
|
|
|
def shutdownVMs(self,timeout,parallel=True, statusCallback=lambda vmid, st : None):
|
|
|
|
|
threads = []
|
|
|
|
|
for vmid in self.getVmIds():
|
|
|
|
|
if self.process_running(vmid):
|
|
|
|
|
# i=vmid: strange workaround for strange problem the it uses the wrong vmid...
|
|
|
|
|
def stopCallback(st, i=vmid): statusCallback(i, st)
|
|
|
|
|
|
|
|
|
|
thread = threading.Thread(target=lambda : self.stopVM(vmid, timeout, stopCallback))
|
|
|
|
|
thread.start()
|
|
|
|
|
if parallel:
|
|
|
|
|
threads.append(thread)
|
|
|
|
|
else:
|
|
|
|
|
thread.join()
|
|
|
|
|
|
|
|
|
|
for thread in threads:
|
|
|
|
|
thread.join()
|
|
|
|
|
|
|
|
|
|
def stopVM(self, vmid, timeout=None, statusCallback=lambda st : None, wait=False):
|
|
|
|
|
proto = QEMUMonitorProtocol(self.config['kvm']['qmpsocket'].replace("$VMID", vmid))
|
|
|
|
|
proto.connect()
|
|
|
|
|
|
|
|
|
|
statusCallback("send_powerdown")
|
|
|
|
|
proto.cmd("system_powerdown")
|
|
|
|
|
|
|
|
|
|
if timeout is None and not wait:
|
|
|
|
|
proto.close()
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
timeoutEvent = threading.Event()
|
|
|
|
|
|
|
|
|
|
def waitForShutdown():
|
|
|
|
|
shutDown = False
|
|
|
|
|
while not timeoutEvent.is_set() and not shutDown :
|
|
|
|
|
event = proto.pull_event(wait=True)
|
|
|
|
|
shutDown = event is not None and event["event"] == 'SHUTDOWN'
|
|
|
|
|
|
|
|
|
|
eventWaitThread = threading.Thread(target=waitForShutdown)
|
|
|
|
|
eventWaitThread.start()
|
|
|
|
|
|
|
|
|
|
if(timeout is None and wait):
|
|
|
|
|
eventWaitThread.join()
|
|
|
|
|
proto.close()
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
eventWaitThread.join(timeout)
|
|
|
|
|
timeoutEvent.set()
|
|
|
|
|
if eventWaitThread.is_alive():
|
|
|
|
|
statusCallback("send_quit")
|
|
|
|
|
proto.cmd("quit")
|
|
|
|
|
time.sleep(1)
|
|
|
|
|
if(self.process_running(vmid)):
|
|
|
|
|
statusCallback("kill_vm")
|
|
|
|
|
self.killVm(vmid, 9) #kill it with fire!
|
|
|
|
|
|
|
|
|
|
proto.close()
|
|
|
|
|
|
|
|
|
|
def killVm(self, vmid, signal=15):
|
|
|
|
|
pid = self.getPid(vmid)
|
|
|
|
|
|
|
|
|
|
if pid is not None:
|
|
|
|
|
os.kill(pid,signal)
|
|
|
|
|
|
2013-04-05 20:27:21 +02:00
|
|
|
|
|
|
|
|
def createArguments(self, vmid):
|
|
|
|
|
if ('VMs' in self.config) and (vmid in self.config['VMs']):
|
|
|
|
|
config = self.config['VMs'][vmid]
|
|
|
|
|
else:
|
|
|
|
|
raise Exception("No such VM configuration")
|
2013-04-05 02:55:01 +02:00
|
|
|
|
|
|
|
|
args = ""
|
|
|
|
|
if ('cpu' in config):
|
|
|
|
|
args += " -cpu " + config['cpu']
|
|
|
|
|
if ('smp' in config):
|
|
|
|
|
args += " -smp " + str(config['smp'])
|
|
|
|
|
if ('memory' in config):
|
|
|
|
|
args += " -m " + str(config['memory'])
|
|
|
|
|
if ('disk' in config):
|
|
|
|
|
disk = config['disk']
|
|
|
|
|
if ('file' in disk):
|
|
|
|
|
args += " -drive file=" + disk['file']
|
|
|
|
|
if ('hw' in disk):
|
|
|
|
|
args += ",if=" + disk['hw']
|
|
|
|
|
if ('cdrom' in config):
|
|
|
|
|
args += " -cdrom " + config['cdrom']
|
|
|
|
|
if ('network' in config):
|
|
|
|
|
net = config['network']
|
|
|
|
|
args += " -net nic,vlan=1"
|
|
|
|
|
if ('mac' in net):
|
|
|
|
|
args += ",macaddr=" + net['mac']
|
|
|
|
|
if ('hw' in net):
|
|
|
|
|
args += ",model=" + net['hw']
|
|
|
|
|
args += " -net tap,vlan=1"
|
|
|
|
|
if ('dev' in net):
|
|
|
|
|
args += ",ifname=" + net['dev']
|
2013-04-05 20:27:21 +02:00
|
|
|
args += ",script=no,downscript=no"
|
2013-04-05 02:55:01 +02:00
|
|
|
if ('vnc' in config):
|
|
|
|
|
vnc = config['vnc']
|
|
|
|
|
if ('display' in vnc):
|
|
|
|
|
args += " -vnc 127.0.0.1:" + str(vnc['display'])
|
|
|
|
|
if ('keyboard' in config):
|
|
|
|
|
args += " -k " + config['keyboard']
|
|
|
|
|
if ('kernel' in config):
|
|
|
|
|
args += " -kernel " + config['kernel']
|
|
|
|
|
if ('append' in config):
|
|
|
|
|
args += " -append \"" + config['append'] + "\""
|
|
|
|
|
return args
|
|
|
|
|
|
2013-04-05 20:27:21 +02:00
|
|
|
def setupNetwork(self, vmid):
|
|
|
|
|
if ('VMs' in self.config) and (vmid in self.config['VMs']):
|
|
|
|
|
config = self.config['VMs'][vmid]
|
|
|
|
|
else:
|
|
|
|
|
raise Exception("No such VM configuration")
|
|
|
|
|
|
|
|
|
|
commands = []
|
2013-04-05 02:55:01 +02:00
|
|
|
if ('network' in config):
|
|
|
|
|
net = config['network']
|
|
|
|
|
if ('dev' in net):
|
2013-04-05 20:27:21 +02:00
|
|
|
commands.append(["tunctl", "-t", net['dev']])
|
|
|
|
|
commands.append(["ip", "link", "set", "dev", net['dev'], "up"])
|
|
|
|
|
commands.append(["ip", "addr", "add", "dev", net['dev'], "0.0.0.0"])
|
|
|
|
|
|
|
|
|
|
chain = "VMNET-FWD-" + vmid.upper()
|
|
|
|
|
|
|
|
|
|
commands.append(["iptables", "--new-chain", chain])
|
2013-04-05 02:55:01 +02:00
|
|
|
if ('ip' in net):
|
|
|
|
|
for ip in net['ip']:
|
2013-04-05 20:27:21 +02:00
|
|
|
commands.append(["ip", "route", "add", ip, "dev", net['dev']])
|
|
|
|
|
commands.append(["iptables", "-A", chain, "-i", net['dev'], "-s", ip, "-j", "ACCEPT"])
|
|
|
|
|
commands.append(["iptables", "-A", chain, "-i", net['dev'], "-j", "REJECT", "--reject-with", "icmp-admin-prohibited"])
|
|
|
|
|
commands.append(["iptables", "-A", "FORWARD", "-j", chain])
|
|
|
|
|
|
|
|
|
|
commands.append(["ip6tables", "--new-chain", chain])
|
2013-04-05 02:55:01 +02:00
|
|
|
if ('ipv6' in net):
|
|
|
|
|
for ipv6 in net['ipv6']:
|
2013-04-05 20:27:21 +02:00
|
|
|
commands.append( ["ip", "-6", "route", "add", ipv6, "dev", net['dev']])
|
|
|
|
|
commands.append(["ip6tables", "-A", chain, "-i", net['dev'], "-s", ipv6, "-j", "ACCEPT"])
|
|
|
|
|
commands.append(["ip6tables", "-A", chain, "-i", net['dev'], "-j", "REJECT", "--reject-with", "icmp6-adm-prohibited"])
|
|
|
|
|
commands.append(["ip6tables", "-A", "FORWARD", "-j", chain])
|
|
|
|
|
|
|
|
|
|
for cmd in commands:
|
|
|
|
|
subprocess.call(cmd, stdout=open("/dev/null"))
|
|
|
|
|
|
|
|
|
|
def teardownNetwork(self, vmid):
|
|
|
|
|
if ('VMs' in self.config) and (vmid in self.config['VMs']):
|
|
|
|
|
config = self.config['VMs'][vmid]
|
|
|
|
|
else:
|
|
|
|
|
raise Exception("No such VM configuration")
|
|
|
|
|
|
|
|
|
|
commands = []
|
|
|
|
|
if ('network' in config):
|
|
|
|
|
net = config['network']
|
|
|
|
|
if ('dev' in net):
|
|
|
|
|
commands.append(["tunctl", "-d", net['dev']])
|
|
|
|
|
|
|
|
|
|
chain = "VMNET-FWD-" + vmid.upper()
|
|
|
|
|
|
|
|
|
|
commands.append(["iptables", "-F", chain])
|
|
|
|
|
commands.append(["iptables", "-D", "FORWARD", "-j", chain])
|
|
|
|
|
commands.append(["iptables", "--delete-chain", chain])
|
|
|
|
|
|
|
|
|
|
commands.append(["ip6tables", "-F", chain])
|
|
|
|
|
commands.append(["ip6tables", "-D", "FORWARD", "-j", chain])
|
|
|
|
|
commands.append(["ip6tables", "--delete-chain", chain])
|
|
|
|
|
|
|
|
|
|
for cmd in commands:
|
|
|
|
|
subprocess.call(cmd, stdout=open("/dev/null"))
|