-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathvirtualBridge.py
245 lines (199 loc) · 10 KB
/
virtualBridge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import os
import re
import time
import json
from typing import Optional
import xml.etree.ElementTree as et
from pathlib import Path
from logger import logger
import common
import host
from clustersConfig import BridgeConfig, NodeConfig
from libvirt import Libvirt
def bridge_dhcp_range_str(dhcp_range: Optional[tuple[str, str]]) -> str:
if dhcp_range is not None:
return f"<range start='{dhcp_range[0]}' end='{dhcp_range[1]}'/>"
return ""
def bridge_ip_address_str(ip: str, mask: str) -> str:
return f"<ip address='{ip}' netmask='{mask}'>"
class VirBridge:
"""
Wrapper on top of the libvirt virtual bridge.
It can be running locally or remote.
"""
hostconn: host.Host
config: BridgeConfig
libvirt: Libvirt
def __init__(self, h: host.Host, config: BridgeConfig):
self.hostconn = h
self.config = config
self.libvirt = Libvirt(h)
def setup_dhcp_entries(self, vms: list[NodeConfig]) -> None:
# DHCP entries should have been removed during teardown.
# However, leases sometimes came back.
self.remove_dhcp_entries(vms)
for cfg in vms:
if cfg.ip is None:
logger.error_and_exit(f"Missing IP for node {cfg.name}")
ip = cfg.ip
mac = cfg.mac
name = cfg.name
host_xml = f"<host mac='{mac}' name='{name}' ip='{ip}'/>"
logger.info(f"Creating static DHCP entry for VM {name}, ip {ip} mac {mac}")
cmd = f"virsh net-update default add ip-dhcp-host \"{host_xml}\" --live --config"
self.hostconn.run_or_die(cmd)
def remove_dhcp_entries(self, vms: list[NodeConfig]) -> None:
def filter_dhcp_leases(j: list[dict[str, str]], removed_macs: list[str], names: list[str]) -> list[dict[str, str]]:
filtered = []
for entry in j:
if entry["mac-address"] in removed_macs:
logger.info(f'Removed host with mac {entry["mac-address"]}')
continue
if "hostname" in entry and entry["hostname"] in names:
logger.info(f'Removed host with name {entry["hostname"]}')
continue
logger.info(f'Kept entry {entry}')
filtered.append(entry)
return filtered
xml_str = self.hostconn.run("virsh net-dumpxml default").out
q = et.fromstring(xml_str)
removed_macs = [] # type: list[str]
names = [vm.name for vm in vms]
ips = [vm.ip for vm in vms]
ip_tree = next((it for it in q.iter("ip")), et.Element(''))
dhcp = next((it for it in ip_tree.iter("dhcp")), et.Element(''))
for e in dhcp:
if e.get('name') in names or e.get('ip') in ips:
# For all dhcp entries, check whether the name or the ip has been assigned to one of our "vms", and remove it if it's the case.
mac = e.attrib["mac"]
name = e.attrib["name"]
ip = e.attrib["ip"]
pre = "virsh net-update default delete ip-dhcp-host"
cmd = f"{pre} \"<host mac='{mac}' name='{name}' ip='{ip}'/>\" --live --config"
result = self.hostconn.run(cmd)
logger.info(f"Delete DHCP configuration for {name}: {result}")
removed_macs.append(mac)
fn = "/var/lib/libvirt/dnsmasq/virbr0.status"
p = Path(fn)
with p.open() as f:
contents = f.read()
if contents:
j = json.loads(contents)
names = [vm.name for vm in vms]
logger.info(f'Cleaning up {fn}')
logger.info(f'removing hosts with mac in {removed_macs} or name in {names}')
filtered = filter_dhcp_leases(j, removed_macs, names)
result = self.hostconn.run("virsh net-destroy default")
logger.info(f"Delete \"default\" Libvirt network: {result}")
with p.open("w") as f:
f.write(json.dumps(filtered, indent=4))
result = self.hostconn.run("virsh net-start default")
logger.info(f"Start \"default\" Libvirt network: {result}")
self.libvirt.restart("qemu")
def _ensure_started(self, bridge_xml: str, api_port: Optional[str]) -> None:
cmd = "virsh net-destroy default"
self.hostconn.run(cmd) # ignore return code - it might fail if net was not started
cmd = "virsh net-undefine default"
ret = self.hostconn.run(cmd)
if ret.returncode != 0 and "Network not found" not in ret.err:
logger.error_and_exit(str(ret))
# Fix cases where virsh net-start fails with error "... interface virbr0: File exists"
cmd = "ip link delete virbr0"
self.hostconn.run(cmd) # ignore return code - it might fail if virbr did not exist
cmd = f"virsh net-define {bridge_xml}"
self.hostconn.run_or_die(cmd)
if api_port is not None:
# set interface down before starting bridge as otherwise bridge start might fail if interface
# already got an IP address in same network as bridge
self.hostconn.run(f"ip link set {api_port} down")
cmd = "virsh net-start default"
self.hostconn.run_or_die(cmd)
if api_port is not None:
self.hostconn.run(f"ip link set {api_port} up")
def _network_xml(self) -> str:
if self.config.dynamic_ip_range is None:
dhcp_part = ""
else:
dhcp_part = f"""<dhcp>
{bridge_dhcp_range_str(self.config.dynamic_ip_range)}
</dhcp>"""
return f"""
<network>
<name>default</name>
<forward mode='nat'/>
<bridge name='virbr0' stp='off' delay='0'/>
{bridge_ip_address_str(self.config.ip, self.config.mask)}
{dhcp_part}
</ip>
</network>"""
def _ensure_run_as_root(self) -> None:
qemu_conf = self.hostconn.read_file("/etc/libvirt/qemu.conf")
if re.search('\nuser = "root"', qemu_conf) and re.search('\nuser = "root"', qemu_conf):
return
self.hostconn.run("sed -e 's/#\\(user\\|group\\) = \".*\"$/\\1 = \"root\"/' -i /etc/libvirt/qemu.conf")
self.libvirt.restart("qemu")
def configure(self, api_port: Optional[str]) -> None:
hostname = self.hostconn.hostname()
self.libvirt.configure()
self._ensure_run_as_root()
# stp must be disabled or it might conflict with default configuration of some physical switches
# 'bridge' section of network 'default' can't be updated => destroy and recreate
# check that default exists and contains stp=off
cmd = "virsh net-dumpxml default"
ret = self.hostconn.run(cmd)
needs_reconfigure = False
expected_dhcp_range = bridge_dhcp_range_str(self.config.dynamic_ip_range)
if not expected_dhcp_range and "dhcp" in ret.out:
logger.info("Bridge needs to be reconfigured: unexpected dhcp range present")
needs_reconfigure = True
# Make sure STP is off on the virtual bridge.
if "stp='off'" not in ret.out:
logger.info("Bridge needs to be reconfigured: stp enabled")
needs_reconfigure = True
# Make sure the correct bridge IP is configured.
if bridge_ip_address_str(self.config.ip, self.config.mask) not in ret.out:
logger.info("Bridge needs to be reconfigured: unexpected bridge IP")
needs_reconfigure = True
if needs_reconfigure:
logger.info("Destoying and recreating bridge")
logger.info(f"creating default-net.xml on {hostname}")
contents = self._network_xml()
bridge_xml = os.path.join("/tmp", 'vir_bridge.xml')
self.hostconn.write(bridge_xml, contents)
# Not sure why/whether this is needed. But we saw failures w/o it.
# Without this, net-undefine within ensure_bridge_is_started fails as libvirtd fails to restart
# We need to investigate how to remove the sleep to speed up
time.sleep(5)
self._ensure_started(bridge_xml, api_port)
self.libvirt.restart()
# Not sure why/whether this is needed. But we saw failures w/o it.
# We need to investigate how to remove the sleep to speed up
time.sleep(5)
# Reconfiguring bridge by deleting and recreating it causes existing bridge configuration (dhcp entries, bridge masters...) to get lost.
# The dynamic range might change if we add workers. Update dynamic range ... dynamically, without restarting bridge, to avoid
# losing existing bridge config.
# We can't modify the dhcp range, but we can delete/add it back. First delete it.
range_elem = None
xml_str = ""
if expected_dhcp_range not in ret.out:
tree = et.fromstring(ret.out)
range_elem = next((it for it in tree.iter('range')), et.Element(''))
for attr in range_elem.attrib:
xml_str = xml_str + f"{attr}='{range_elem.attrib[attr]}' "
if range_elem.tag:
xml_str = f"\"<range {xml_str}/>\""
cmd = f"virsh net-update default delete ip-dhcp-range {xml_str} --live --config"
self.hostconn.run(cmd)
cmd = f"virsh net-update default add ip-dhcp-range \"{expected_dhcp_range}\" --live --config"
self.hostconn.run_or_die(cmd)
def eth_address(self) -> str:
max_tries = 3
logger.info(f"Will try {max_tries} times to get the virbr0 ethernet address on {self.hostconn.hostname()}")
for i in range(max_tries):
logger.debug(f"Trying to get the virbr0 ethernet address on {self.hostconn.hostname()} (try #{i})")
bridge_port = common.find_port(self.hostconn, 'virbr0')
if bridge_port is not None:
return bridge_port.address
time.sleep(5)
logger.error_and_exit(f"Failed to get the virbr0 ethernet address on {self.hostconn.hostname()}")
return ""