mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 23:25:24 +00:00
add ability to show interface's ip address with qemu agent. Add checking agent if installed or not
This commit is contained in:
parent
adfdad013c
commit
592112590c
6 changed files with 122 additions and 23 deletions
|
@ -876,7 +876,8 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>{% trans 'Name' %}</th>
|
<th>{% trans 'Name' %}</th>
|
||||||
<th>{% trans 'MAC' %}</th>
|
<th>{% trans 'MAC' %}</th>
|
||||||
<th>{% trans 'NIC' %}</th>
|
<th>{% trans 'IP Address' %}</th>
|
||||||
|
<th>{% trans 'Source' %}</th>
|
||||||
<th>{% trans 'Filter' %}</th>
|
<th>{% trans 'Filter' %}</th>
|
||||||
<th>{% trans 'Qos' %}</th>
|
<th>{% trans 'Qos' %}</th>
|
||||||
<th>{% trans 'Actions' %}</th>
|
<th>{% trans 'Actions' %}</th>
|
||||||
|
@ -886,9 +887,10 @@
|
||||||
{% for network in networks %}
|
{% for network in networks %}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="col-sm-2"><label>eth{{ forloop.counter0 }}({{ network.target|default:"no target" }})</label></td>
|
<td class="col-sm-2"><label>eth{{ forloop.counter0 }}({{ network.target|default:"no target" }})</label></td>
|
||||||
<td><input class="form-control" type="text" value="{{ network.mac }}" readonly/></td>
|
<td><label>{{ network.mac }}</label></td>
|
||||||
<td><input class="form-control" type="text" value="{{ network.nic }}" readonly/></td>
|
<td><label>{{ network.ipv4|default:"unknown" }}</label></td>
|
||||||
<td><input class="form-control" type="text" value="{{ network.filterref }}" readonly/></td>
|
<td><label>{{ network.nic }}</label></td>
|
||||||
|
<td><label>{{ network.filterref|default:"None" }}</label></td>
|
||||||
<td>
|
<td>
|
||||||
<form class="form-horizontal" method="post" name="add_qos{{ forloop.counter0 }}" role="form">{% csrf_token %}
|
<form class="form-horizontal" method="post" name="add_qos{{ forloop.counter0 }}" role="form">{% csrf_token %}
|
||||||
<input type="text" name="net-mac-{{ forloop.counter0 }}" value="{{ network.mac }}" hidden/>
|
<input type="text" name="net-mac-{{ forloop.counter0 }}" value="{{ network.mac }}" hidden/>
|
||||||
|
|
|
@ -266,6 +266,7 @@ def instance(request, compute_id, vname):
|
||||||
compute.password,
|
compute.password,
|
||||||
compute.type,
|
compute.type,
|
||||||
vname)
|
vname)
|
||||||
|
|
||||||
status = conn.get_status()
|
status = conn.get_status()
|
||||||
autostart = conn.get_autostart()
|
autostart = conn.get_autostart()
|
||||||
bootmenu = conn.get_bootmenu()
|
bootmenu = conn.get_bootmenu()
|
||||||
|
@ -282,7 +283,7 @@ def instance(request, compute_id, vname):
|
||||||
cur_memory = conn.get_cur_memory()
|
cur_memory = conn.get_cur_memory()
|
||||||
title = conn.get_title()
|
title = conn.get_title()
|
||||||
description = conn.get_description()
|
description = conn.get_description()
|
||||||
networks = conn.get_net_device()
|
networks = conn.get_net_devices()
|
||||||
qos = conn.get_all_qos()
|
qos = conn.get_all_qos()
|
||||||
disks = conn.get_disk_devices()
|
disks = conn.get_disk_devices()
|
||||||
media = conn.get_media_devices()
|
media = conn.get_media_devices()
|
||||||
|
|
|
@ -30,7 +30,7 @@ def interfaces(request, compute_id):
|
||||||
compute.type)
|
compute.type)
|
||||||
ifaces = conn.get_ifaces()
|
ifaces = conn.get_ifaces()
|
||||||
try:
|
try:
|
||||||
netdevs = conn.get_net_device()
|
netdevs = conn.get_net_devices()
|
||||||
except:
|
except:
|
||||||
netdevs = ['eth0', 'eth1']
|
netdevs = ['eth0', 'eth1']
|
||||||
|
|
||||||
|
|
|
@ -686,7 +686,7 @@ class wvmConnect(object):
|
||||||
instance.append(dom.name())
|
instance.append(dom.name())
|
||||||
return instance
|
return instance
|
||||||
|
|
||||||
def get_net_device(self):
|
def get_net_devices(self):
|
||||||
netdevice = []
|
netdevice = []
|
||||||
|
|
||||||
def get_info(doc):
|
def get_info(doc):
|
||||||
|
|
|
@ -11,6 +11,7 @@ try:
|
||||||
VIR_MIGRATE_COMPRESSED, \
|
VIR_MIGRATE_COMPRESSED, \
|
||||||
VIR_MIGRATE_AUTO_CONVERGE, \
|
VIR_MIGRATE_AUTO_CONVERGE, \
|
||||||
VIR_MIGRATE_POSTCOPY
|
VIR_MIGRATE_POSTCOPY
|
||||||
|
from libvirt import VIR_DOMAIN_INTERFACE_ADDRESSES_SRC_AGENT
|
||||||
except:
|
except:
|
||||||
from libvirt import libvirtError, VIR_DOMAIN_XML_SECURE, VIR_MIGRATE_LIVE
|
from libvirt import libvirtError, VIR_DOMAIN_XML_SECURE, VIR_MIGRATE_LIVE
|
||||||
|
|
||||||
|
@ -148,6 +149,7 @@ class wvmInstances(wvmConnect):
|
||||||
class wvmInstance(wvmConnect):
|
class wvmInstance(wvmConnect):
|
||||||
def __init__(self, host, login, passwd, conn, vname):
|
def __init__(self, host, login, passwd, conn, vname):
|
||||||
wvmConnect.__init__(self, host, login, passwd, conn)
|
wvmConnect.__init__(self, host, login, passwd, conn)
|
||||||
|
self._ip_cache = None
|
||||||
self.instance = self.get_instance(vname)
|
self.instance = self.get_instance(vname)
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
|
@ -276,17 +278,73 @@ class wvmInstance(wvmConnect):
|
||||||
range_pcpus = xrange(1, int(pcpus + 1))
|
range_pcpus = xrange(1, int(pcpus + 1))
|
||||||
return range_pcpus
|
return range_pcpus
|
||||||
|
|
||||||
def get_net_device(self):
|
def get_interface_addresses(self, iface_mac):
|
||||||
def get_mac_ipaddr(net, mac_host):
|
if self._ip_cache is None:
|
||||||
def fixed(doc):
|
self.refresh_interface_addresses()
|
||||||
for net in doc.xpath('/network/ip/dhcp/host'):
|
|
||||||
mac = net.xpath('@mac')[0]
|
|
||||||
host = net.xpath('@ip')[0]
|
|
||||||
if mac == mac_host:
|
|
||||||
return host
|
|
||||||
return None
|
|
||||||
|
|
||||||
return util.get_xml_path(net.XMLDesc(0), func=fixed)
|
qemuga = self._ip_cache["qemuga"]
|
||||||
|
arp = self._ip_cache["arp"]
|
||||||
|
leases = []
|
||||||
|
|
||||||
|
def extract_dom(info):
|
||||||
|
ipv4 = None
|
||||||
|
ipv6 = None
|
||||||
|
for addrs in info.values():
|
||||||
|
if addrs["hwaddr"] != iface_mac:
|
||||||
|
continue
|
||||||
|
if not addrs["addrs"]:
|
||||||
|
continue
|
||||||
|
for addr in addrs["addrs"]:
|
||||||
|
if addr["type"] == 0:
|
||||||
|
ipv4 = addr["addr"]
|
||||||
|
elif (addr["type"] == 1 and
|
||||||
|
not str(addr["addr"]).startswith("fe80")):
|
||||||
|
ipv6 = addr["addr"] + "/" + str(addr["prefix"])
|
||||||
|
return ipv4, ipv6
|
||||||
|
|
||||||
|
def extract_lease(info):
|
||||||
|
ipv4 = None
|
||||||
|
ipv6 = None
|
||||||
|
if info["mac"] == iface_mac:
|
||||||
|
if info["type"] == 0:
|
||||||
|
ipv4 = info["ipaddr"]
|
||||||
|
elif info["type"] == 1:
|
||||||
|
ipv6 = info["ipaddr"]
|
||||||
|
return ipv4, ipv6
|
||||||
|
|
||||||
|
for ips in ([qemuga] + leases + [arp]):
|
||||||
|
if "expirytime" in ips:
|
||||||
|
ipv4, ipv6 = extract_lease(ips)
|
||||||
|
else:
|
||||||
|
ipv4, ipv6 = extract_dom(ips)
|
||||||
|
if ipv4 or ipv6:
|
||||||
|
return ipv4, ipv6
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
def _get_interface_addresses(self, source):
|
||||||
|
#("Calling interfaceAddresses source=%s", source)
|
||||||
|
try:
|
||||||
|
return self.instance.interfaceAddresses(source)
|
||||||
|
except Exception as e:
|
||||||
|
#log.debug("interfaceAddresses failed: %s", str(e))
|
||||||
|
pass
|
||||||
|
return {}
|
||||||
|
|
||||||
|
def refresh_interface_addresses(self):
|
||||||
|
|
||||||
|
self._ip_cache = {"qemuga": {}, "arp": {}}
|
||||||
|
|
||||||
|
if not self.get_status() == 1:
|
||||||
|
return
|
||||||
|
|
||||||
|
if self.agent_ready():
|
||||||
|
self._ip_cache["qemuga"] = self._get_interface_addresses(
|
||||||
|
VIR_DOMAIN_INTERFACE_ADDRESSES_SRC_AGENT)
|
||||||
|
|
||||||
|
arp_flag = 3 # libvirt."VIR_DOMAIN_INTERFACE_ADDRESSES_SRC_ARP"
|
||||||
|
self._ip_cache["arp"] = self._get_interface_addresses(arp_flag)
|
||||||
|
|
||||||
|
def get_net_devices(self):
|
||||||
|
|
||||||
def networks(ctx):
|
def networks(ctx):
|
||||||
result = []
|
result = []
|
||||||
|
@ -310,14 +368,14 @@ class wvmInstance(wvmConnect):
|
||||||
outbound = {'average': out_av, 'peak': out_peak, 'burst': out_burst}
|
outbound = {'average': out_av, 'peak': out_peak, 'burst': out_burst}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
net = self.get_network(nic_inst)
|
ipv4, ipv6 = self.get_interface_addresses(mac_inst)
|
||||||
ip = get_mac_ipaddr(net, mac_inst)
|
except:
|
||||||
except libvirtError:
|
ipv4, ipv6 = None, None
|
||||||
ip = None
|
|
||||||
result.append({'mac': mac_inst,
|
result.append({'mac': mac_inst,
|
||||||
'nic': nic_inst,
|
'nic': nic_inst,
|
||||||
'target': target_inst,
|
'target': target_inst,
|
||||||
'ip': ip,
|
'ipv4': ipv4,
|
||||||
|
'ipv6': ipv6,
|
||||||
'filterref': filterref_inst,
|
'filterref': filterref_inst,
|
||||||
'inbound': inbound,
|
'inbound': inbound,
|
||||||
'outbound': outbound,
|
'outbound': outbound,
|
||||||
|
@ -709,7 +767,7 @@ class wvmInstance(wvmConnect):
|
||||||
tx_diff_usage = (tx_use_now - tx_use_ago) * 8
|
tx_diff_usage = (tx_use_now - tx_use_ago) * 8
|
||||||
dev_usage.append({'dev': i, 'rx': rx_diff_usage, 'tx': tx_diff_usage})
|
dev_usage.append({'dev': i, 'rx': rx_diff_usage, 'tx': tx_diff_usage})
|
||||||
else:
|
else:
|
||||||
for i, dev in enumerate(self.get_net_device()):
|
for i, dev in enumerate(self.get_net_devices()):
|
||||||
dev_usage.append({'dev': i, 'rx': 0, 'tx': 0})
|
dev_usage.append({'dev': i, 'rx': 0, 'tx': 0})
|
||||||
return dev_usage
|
return dev_usage
|
||||||
|
|
||||||
|
@ -1311,4 +1369,29 @@ class wvmInstance(wvmConnect):
|
||||||
|
|
||||||
self.wvm.defineXML(etree.tostring(tree))
|
self.wvm.defineXML(etree.tostring(tree))
|
||||||
|
|
||||||
|
def agent_ready(self):
|
||||||
|
"""
|
||||||
|
Return connected state of an agent.
|
||||||
|
"""
|
||||||
|
# we need to get a fresh agent channel object on each call so it
|
||||||
|
# reflects the current state
|
||||||
|
def _get_agent(doc):
|
||||||
|
"""
|
||||||
|
Return agent channel object if it is defined.
|
||||||
|
"""
|
||||||
|
for channel in doc.xpath('/domain/devices/channel'):
|
||||||
|
type = channel.get("type")
|
||||||
|
target = channel.find("target")
|
||||||
|
target_name = target.get("name")
|
||||||
|
if type == "unix" and target_name == "org.qemu.guest_agent.0":
|
||||||
|
return channel
|
||||||
|
return None
|
||||||
|
|
||||||
|
dev = util.get_xml_path(self._XMLDesc(0), func=_get_agent)
|
||||||
|
state = dev.xpath("target/@state")[0]
|
||||||
|
if dev and state == "connected":
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -89,6 +89,7 @@ class wvmNetworks(wvmConnect):
|
||||||
class wvmNetwork(wvmConnect):
|
class wvmNetwork(wvmConnect):
|
||||||
def __init__(self, host, login, passwd, conn, net):
|
def __init__(self, host, login, passwd, conn, net):
|
||||||
wvmConnect.__init__(self, host, login, passwd, conn)
|
wvmConnect.__init__(self, host, login, passwd, conn)
|
||||||
|
self.leases = None
|
||||||
self.net = self.get_network(net)
|
self.net = self.get_network(net)
|
||||||
self.parent_count = len(self.get_ip_networks())
|
self.parent_count = len(self.get_ip_networks())
|
||||||
|
|
||||||
|
@ -347,3 +348,15 @@ class wvmNetwork(wvmConnect):
|
||||||
|
|
||||||
def edit_network(self, new_xml):
|
def edit_network(self, new_xml):
|
||||||
self.wvm.networkDefineXML(new_xml)
|
self.wvm.networkDefineXML(new_xml)
|
||||||
|
|
||||||
|
def refresh_dhcp_leases(self):
|
||||||
|
try:
|
||||||
|
self.leases = self.net.DHCPLeases()
|
||||||
|
except Exception as e:
|
||||||
|
self.leases = []
|
||||||
|
raise "Error getting %s DHCP leases: %s" % self, str(e)
|
||||||
|
|
||||||
|
def get_dhcp_leases(self):
|
||||||
|
if self.leases is None:
|
||||||
|
self.refresh_dhcp_leases()
|
||||||
|
return self.leases
|
||||||
|
|
Loading…
Reference in a new issue