mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
415 lines
15 KiB
Python
415 lines
15 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import sys
|
|
import aiohttp
|
|
import logging
|
|
import asyncio
|
|
import socket
|
|
|
|
from .base_gns3_vm import BaseGNS3VM
|
|
from .gns3_vm_error import GNS3VMError
|
|
from gns3server.utils import parse_version
|
|
from gns3server.utils.http_client import HTTPClient
|
|
from gns3server.utils.asyncio import wait_run_in_executor
|
|
|
|
from ...compute.virtualbox import VirtualBox, VirtualBoxError
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class VirtualBoxGNS3VM(BaseGNS3VM):
|
|
def __init__(self, controller):
|
|
|
|
self._engine = "virtualbox"
|
|
super().__init__(controller)
|
|
self._system_properties = {}
|
|
self._virtualbox_manager = VirtualBox()
|
|
|
|
async def _execute(self, subcommand, args, timeout=60):
|
|
|
|
try:
|
|
result = await self._virtualbox_manager.execute(subcommand, args, timeout)
|
|
return "\n".join(result)
|
|
except VirtualBoxError as e:
|
|
raise GNS3VMError(f"Error while executing VBoxManage command: {e}")
|
|
|
|
async def _get_state(self):
|
|
"""
|
|
Returns the VM state (e.g. running, paused etc.)
|
|
|
|
:returns: state (string)
|
|
"""
|
|
|
|
result = await self._execute("showvminfo", [self._vmname, "--machinereadable"])
|
|
for info in result.splitlines():
|
|
if "=" in info:
|
|
name, value = info.split("=", 1)
|
|
if name == "VMState":
|
|
return value.strip('"')
|
|
return "unknown"
|
|
|
|
async def _get_system_properties(self):
|
|
"""
|
|
Returns the VM state (e.g. running, paused etc.)
|
|
|
|
:returns: state (string)
|
|
"""
|
|
|
|
properties = await self._execute("list", ["systemproperties"])
|
|
for prop in properties.splitlines():
|
|
try:
|
|
name, value = prop.split(":", 1)
|
|
except ValueError:
|
|
continue
|
|
self._system_properties[name.strip()] = value.strip()
|
|
|
|
async def _check_requirements(self):
|
|
"""
|
|
Checks if the GNS3 VM can run on VirtualBox
|
|
"""
|
|
|
|
if not self._system_properties:
|
|
await self._get_system_properties()
|
|
if "API version" not in self._system_properties:
|
|
raise VirtualBoxError(f"Can't access to VirtualBox API version:\n{self._system_properties}")
|
|
from cpuinfo import get_cpu_info
|
|
|
|
cpu_info = await wait_run_in_executor(get_cpu_info)
|
|
vendor_id = cpu_info.get("vendor_id_raw")
|
|
if vendor_id == "GenuineIntel":
|
|
if parse_version(self._system_properties["API version"]) < parse_version("6_1"):
|
|
raise VirtualBoxError(
|
|
"VirtualBox version 6.1 or above is required to run the GNS3 VM with nested virtualization enabled on Intel processors"
|
|
)
|
|
elif vendor_id == "AuthenticAMD":
|
|
if parse_version(self._system_properties["API version"]) < parse_version("6_0"):
|
|
raise VirtualBoxError(
|
|
"VirtualBox version 6.0 or above is required to run the GNS3 VM with nested virtualization enabled on AMD processors"
|
|
)
|
|
else:
|
|
log.warning(f"Could not determine CPU vendor: {vendor_id}")
|
|
|
|
async def _look_for_interface(self, network_backend):
|
|
"""
|
|
Look for an interface with a specific network backend.
|
|
|
|
:returns: interface number or -1 if none is found
|
|
"""
|
|
|
|
result = await self._execute("showvminfo", [self._vmname, "--machinereadable"])
|
|
interface = -1
|
|
for info in result.splitlines():
|
|
if "=" in info:
|
|
name, value = info.split("=", 1)
|
|
if name.startswith("nic") and value.strip('"') == network_backend:
|
|
try:
|
|
interface = int(name[3:])
|
|
break
|
|
except ValueError:
|
|
continue
|
|
return interface
|
|
|
|
async def _look_for_vboxnet(self, interface_number):
|
|
"""
|
|
Look for the VirtualBox network name associated with a host only interface.
|
|
|
|
:returns: None or vboxnet name
|
|
"""
|
|
|
|
result = await self._execute("showvminfo", [self._vmname, "--machinereadable"])
|
|
for info in result.splitlines():
|
|
if "=" in info:
|
|
name, value = info.split("=", 1)
|
|
if name == f"hostonlyadapter{interface_number}":
|
|
return value.strip('"')
|
|
return None
|
|
|
|
async def _check_dhcp_server(self, vboxnet):
|
|
"""
|
|
Check if the DHCP server associated with a vboxnet is enabled.
|
|
|
|
:param vboxnet: vboxnet name
|
|
:returns: boolean
|
|
"""
|
|
|
|
properties = await self._execute("list", ["dhcpservers"])
|
|
flag_dhcp_server_found = False
|
|
for prop in properties.splitlines():
|
|
try:
|
|
name, value = prop.split(":", 1)
|
|
except ValueError:
|
|
continue
|
|
if name.strip() == "NetworkName" and value.strip().endswith(vboxnet):
|
|
flag_dhcp_server_found = True
|
|
if flag_dhcp_server_found and name.strip() == "Enabled":
|
|
if value.strip() == "Yes":
|
|
return True
|
|
return False
|
|
|
|
async def _check_vboxnet_exists(self, vboxnet):
|
|
"""
|
|
Check if the vboxnet interface exists
|
|
|
|
:param vboxnet: vboxnet name
|
|
:returns: boolean
|
|
"""
|
|
|
|
properties = await self._execute("list", ["hostonlyifs"])
|
|
for prop in properties.splitlines():
|
|
try:
|
|
name, value = prop.split(":", 1)
|
|
except ValueError:
|
|
continue
|
|
if name.strip() == "Name" and value.strip() == vboxnet:
|
|
return True
|
|
return False
|
|
|
|
async def _find_first_available_vboxnet(self):
|
|
"""
|
|
Find the first available vboxnet.
|
|
"""
|
|
|
|
properties = await self._execute("list", ["hostonlyifs"])
|
|
for prop in properties.splitlines():
|
|
try:
|
|
name, value = prop.split(":", 1)
|
|
except ValueError:
|
|
continue
|
|
if name.strip() == "Name":
|
|
return value.strip()
|
|
return None
|
|
|
|
async def _check_vbox_port_forwarding(self):
|
|
"""
|
|
Checks if the NAT port forwarding rule exists.
|
|
|
|
:returns: boolean
|
|
"""
|
|
|
|
result = await self._execute("showvminfo", [self._vmname, "--machinereadable"])
|
|
for info in result.splitlines():
|
|
if "=" in info:
|
|
name, value = info.split("=", 1)
|
|
if name.startswith("Forwarding") and value.strip('"').startswith("GNS3VM"):
|
|
return True
|
|
return False
|
|
|
|
async def list(self):
|
|
"""
|
|
List all VirtualBox VMs
|
|
"""
|
|
|
|
try:
|
|
await self._check_requirements()
|
|
return await self._virtualbox_manager.list_vms()
|
|
except VirtualBoxError as e:
|
|
raise GNS3VMError(f"Could not list VirtualBox VMs: {str(e)}")
|
|
|
|
async def start(self):
|
|
"""
|
|
Start the GNS3 VM.
|
|
"""
|
|
|
|
await self._check_requirements()
|
|
|
|
# get a NAT interface number
|
|
nat_interface_number = await self._look_for_interface("nat")
|
|
if nat_interface_number < 0:
|
|
raise GNS3VMError(f'VM "{self.vmname}" must have a NAT interface configured in order to start')
|
|
|
|
hostonly_interface_number = await self._look_for_interface("hostonly")
|
|
if hostonly_interface_number < 0:
|
|
raise GNS3VMError(f'VM "{self.vmname}" must have a host-only interface configured in order to start')
|
|
|
|
vboxnet = await self._look_for_vboxnet(hostonly_interface_number)
|
|
if vboxnet is None:
|
|
raise GNS3VMError(
|
|
f'A VirtualBox host-only network could not be found on network adapter {hostonly_interface_number} for "{self._vmname}"'
|
|
)
|
|
|
|
if not (await self._check_vboxnet_exists(vboxnet)):
|
|
raise GNS3VMError(
|
|
'VirtualBox host-only network "{}" does not exist, please make the sure the network adapter {} configuration is valid for "{}"'.format(
|
|
vboxnet, hostonly_interface_number, self._vmname
|
|
)
|
|
)
|
|
|
|
if not (await self._check_dhcp_server(vboxnet)):
|
|
raise GNS3VMError(f'DHCP must be enabled on VirtualBox host-only network "{vboxnet}"')
|
|
|
|
vm_state = await self._get_state()
|
|
log.info(f'"{self._vmname}" state is {vm_state}')
|
|
|
|
if vm_state == "poweroff":
|
|
if self.allocate_vcpus_ram:
|
|
log.info("Update GNS3 VM vCPUs and RAM settings")
|
|
await self.set_vcpus(self.vcpus)
|
|
await self.set_ram(self.ram)
|
|
|
|
log.info("Update GNS3 VM Hardware Virtualization setting")
|
|
await self.enable_nested_hw_virt()
|
|
|
|
if vm_state in ("poweroff", "saved"):
|
|
# start the VM if it is not running
|
|
args = [self._vmname]
|
|
if self._headless:
|
|
args.extend(["--type", "headless"])
|
|
await self._execute("startvm", args)
|
|
elif vm_state == "paused":
|
|
args = [self._vmname, "resume"]
|
|
await self._execute("controlvm", args)
|
|
ip_address = "127.0.0.1"
|
|
try:
|
|
# get a random port on localhost
|
|
with socket.socket() as s:
|
|
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
s.bind((ip_address, 0))
|
|
api_port = s.getsockname()[1]
|
|
except OSError as e:
|
|
raise GNS3VMError(f"Error while getting random port: {e}")
|
|
|
|
if await self._check_vbox_port_forwarding():
|
|
# delete the GNS3VM NAT port forwarding rule if it exists
|
|
log.info(f"Removing GNS3VM NAT port forwarding rule from interface {nat_interface_number}")
|
|
await self._execute("controlvm", [self._vmname, f"natpf{nat_interface_number}", "delete", "GNS3VM"])
|
|
|
|
# add a GNS3VM NAT port forwarding rule to redirect 127.0.0.1 with random port to the port in the VM
|
|
log.info(f"Adding GNS3VM NAT port forwarding rule with port {api_port} to interface {nat_interface_number}")
|
|
await self._execute(
|
|
"controlvm",
|
|
[self._vmname, f"natpf{nat_interface_number}", f"GNS3VM,tcp,{ip_address},{api_port},,{self.port}"],
|
|
)
|
|
|
|
self.ip_address = await self._get_ip(hostonly_interface_number, api_port)
|
|
log.info(f"GNS3 VM has been started with IP {self.ip_address}")
|
|
self.running = True
|
|
|
|
async def _get_ip(self, hostonly_interface_number, api_port):
|
|
"""
|
|
Get the IP from VirtualBox.
|
|
|
|
Due to VirtualBox limitation the only way is to send request each
|
|
second to a GNS3 endpoint in order to get the list of the interfaces and
|
|
their IP and after that match it with VirtualBox host only.
|
|
"""
|
|
|
|
remaining_try = 300
|
|
while remaining_try > 0:
|
|
try:
|
|
async with HTTPClient.get(f"http://127.0.0.1:{api_port}/v3/compute/network/interfaces") as resp:
|
|
if resp.status < 300:
|
|
try:
|
|
json_data = await resp.json()
|
|
if json_data:
|
|
for interface in json_data:
|
|
if "name" in interface and interface["name"] == "eth{}".format(
|
|
hostonly_interface_number - 1
|
|
):
|
|
if "ip_address" in interface and len(interface["ip_address"]) > 0:
|
|
return interface["ip_address"]
|
|
except ValueError:
|
|
pass
|
|
except (OSError, aiohttp.ClientError, TimeoutError, asyncio.TimeoutError):
|
|
pass
|
|
remaining_try -= 1
|
|
await asyncio.sleep(1)
|
|
raise GNS3VMError(f"Could not find guest IP address for {self.vmname}")
|
|
|
|
async def suspend(self):
|
|
"""
|
|
Suspend the GNS3 VM.
|
|
"""
|
|
|
|
await self._execute("controlvm", [self._vmname, "savestate"], timeout=3)
|
|
log.info("GNS3 VM has been suspend")
|
|
self.running = False
|
|
|
|
async def stop(self):
|
|
"""
|
|
Stops the GNS3 VM.
|
|
"""
|
|
|
|
vm_state = await self._get_state()
|
|
if vm_state == "poweroff":
|
|
self.running = False
|
|
return
|
|
|
|
await self._execute("controlvm", [self._vmname, "acpipowerbutton"], timeout=3)
|
|
trial = 120
|
|
while True:
|
|
try:
|
|
vm_state = await self._get_state()
|
|
# During a small amount of time the command will fail
|
|
except GNS3VMError:
|
|
vm_state = "running"
|
|
if vm_state == "poweroff":
|
|
break
|
|
trial -= 1
|
|
if trial == 0:
|
|
await self._execute("controlvm", [self._vmname, "poweroff"], timeout=3)
|
|
break
|
|
await asyncio.sleep(1)
|
|
|
|
log.info("GNS3 VM has been stopped")
|
|
self.running = False
|
|
|
|
async def set_vcpus(self, vcpus):
|
|
"""
|
|
Set the number of vCPU cores for the GNS3 VM.
|
|
|
|
:param vcpus: number of vCPU cores
|
|
"""
|
|
|
|
await self._execute("modifyvm", [self._vmname, "--cpus", str(vcpus)], timeout=3)
|
|
log.info(f"GNS3 VM vCPU count set to {vcpus}")
|
|
|
|
async def set_ram(self, ram):
|
|
"""
|
|
Set the RAM amount for the GNS3 VM.
|
|
|
|
:param ram: amount of memory
|
|
"""
|
|
|
|
await self._execute("modifyvm", [self._vmname, "--memory", str(ram)], timeout=3)
|
|
log.info(f"GNS3 VM RAM amount set to {ram}")
|
|
|
|
async def enable_nested_hw_virt(self):
|
|
"""
|
|
Enable nested hardware virtualization for the GNS3 VM.
|
|
"""
|
|
|
|
await self._execute("modifyvm", [self._vmname, "--nested-hw-virt", "on"], timeout=3)
|
|
log.info("Nested hardware virtualization enabled")
|
|
|
|
async def set_hostonly_network(self, adapter_number, hostonly_network_name):
|
|
"""
|
|
Set a VirtualBox host-only network on a network adapter for the GNS3 VM.
|
|
|
|
:param adapter_number: network adapter number
|
|
:param hostonly_network_name: name of the VirtualBox host-only network
|
|
"""
|
|
|
|
await self._execute(
|
|
"modifyvm", [self._vmname, f"--hostonlyadapter{adapter_number}", hostonly_network_name], timeout=3
|
|
)
|
|
log.info(
|
|
'VirtualBox host-only network "{}" set on network adapter {} for "{}"'.format(
|
|
hostonly_network_name, adapter_number, self._vmname
|
|
)
|
|
)
|