2015-07-20 04:55:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 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/>.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Represents a uBridge hypervisor and starts/stops the associated uBridge process.
|
|
|
|
"""
|
|
|
|
|
2016-05-21 20:43:10 +00:00
|
|
|
import sys
|
2015-07-20 04:55:10 +00:00
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import asyncio
|
|
|
|
import socket
|
2015-07-21 23:58:53 +00:00
|
|
|
import re
|
2015-07-20 04:55:10 +00:00
|
|
|
|
2016-05-02 15:13:23 +00:00
|
|
|
from gns3server.utils import parse_version
|
2015-07-20 04:55:10 +00:00
|
|
|
from gns3server.utils.asyncio import wait_for_process_termination
|
2020-03-20 11:00:05 +00:00
|
|
|
from gns3server.utils.asyncio import monitor_process
|
2015-07-21 23:58:53 +00:00
|
|
|
from gns3server.utils.asyncio import subprocess_check_output
|
2015-07-20 04:55:10 +00:00
|
|
|
from .ubridge_hypervisor import UBridgeHypervisor
|
|
|
|
from .ubridge_error import UbridgeError
|
|
|
|
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Hypervisor(UBridgeHypervisor):
|
|
|
|
|
|
|
|
"""
|
|
|
|
Hypervisor.
|
|
|
|
|
|
|
|
:param project: Project instance
|
|
|
|
:param path: path to uBridge executable
|
|
|
|
:param working_dir: working directory
|
|
|
|
:param host: host/address for this hypervisor
|
|
|
|
:param port: port for this hypervisor
|
|
|
|
"""
|
|
|
|
|
|
|
|
_instance_count = 1
|
|
|
|
|
|
|
|
def __init__(self, project, path, working_dir, host, port=None):
|
|
|
|
|
|
|
|
if port is None:
|
|
|
|
try:
|
|
|
|
port = None
|
|
|
|
info = socket.getaddrinfo(host, 0, socket.AF_UNSPEC, socket.SOCK_STREAM, 0, socket.AI_PASSIVE)
|
|
|
|
if not info:
|
|
|
|
raise UbridgeError("getaddrinfo returns an empty list on {}".format(host))
|
|
|
|
for res in info:
|
|
|
|
af, socktype, proto, _, sa = res
|
|
|
|
# let the OS find an unused port for the uBridge hypervisor
|
|
|
|
with socket.socket(af, socktype, proto) as sock:
|
2018-04-16 08:36:36 +00:00
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
2015-07-20 04:55:10 +00:00
|
|
|
sock.bind(sa)
|
|
|
|
port = sock.getsockname()[1]
|
|
|
|
break
|
|
|
|
except OSError as e:
|
|
|
|
raise UbridgeError("Could not find free port for the uBridge hypervisor: {}".format(e))
|
|
|
|
|
|
|
|
super().__init__(host, port)
|
|
|
|
self._project = project
|
|
|
|
self._path = path
|
|
|
|
self._working_dir = working_dir
|
|
|
|
self._command = []
|
|
|
|
self._process = None
|
|
|
|
self._stdout_file = ""
|
|
|
|
self._started = False
|
2016-11-06 10:27:49 +00:00
|
|
|
self._version = ""
|
2015-07-20 04:55:10 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def process(self):
|
|
|
|
"""
|
|
|
|
Returns the subprocess of the Hypervisor
|
|
|
|
|
|
|
|
:returns: subprocess
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._process
|
|
|
|
|
|
|
|
@property
|
|
|
|
def started(self):
|
|
|
|
"""
|
|
|
|
Returns either this hypervisor has been started or not.
|
|
|
|
|
|
|
|
:returns: boolean
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._started
|
|
|
|
|
|
|
|
@property
|
|
|
|
def path(self):
|
|
|
|
"""
|
|
|
|
Returns the path to the uBridge executable.
|
|
|
|
|
|
|
|
:returns: path to uBridge
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._path
|
|
|
|
|
|
|
|
@path.setter
|
|
|
|
def path(self, path):
|
|
|
|
"""
|
|
|
|
Sets the path to the uBridge executable.
|
|
|
|
|
|
|
|
:param path: path to uBridge
|
|
|
|
"""
|
|
|
|
|
|
|
|
self._path = path
|
|
|
|
|
2016-11-06 10:27:49 +00:00
|
|
|
@property
|
|
|
|
def version(self):
|
|
|
|
"""
|
|
|
|
Returns the uBridge version.
|
|
|
|
|
|
|
|
:returns: string
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._version
|
|
|
|
|
2018-10-15 10:05:49 +00:00
|
|
|
async def _check_ubridge_version(self, env=None):
|
2015-07-21 23:58:53 +00:00
|
|
|
"""
|
2016-11-11 16:07:20 +00:00
|
|
|
Checks if the ubridge executable version
|
2015-07-21 23:58:53 +00:00
|
|
|
"""
|
|
|
|
try:
|
2018-10-15 10:05:49 +00:00
|
|
|
output = await subprocess_check_output(self._path, "-v", cwd=self._working_dir, env=env)
|
2019-01-17 11:01:58 +00:00
|
|
|
match = re.search(r"ubridge version ([0-9a-z\.]+)", output)
|
2015-07-21 23:58:53 +00:00
|
|
|
if match:
|
2016-11-06 10:27:49 +00:00
|
|
|
self._version = match.group(1)
|
2018-03-12 06:38:50 +00:00
|
|
|
if sys.platform.startswith("win") or sys.platform.startswith("darwin"):
|
|
|
|
minimum_required_version = "0.9.12"
|
|
|
|
else:
|
|
|
|
# uBridge version 0.9.14 is required for packet filters
|
|
|
|
# to work for IOU nodes.
|
|
|
|
minimum_required_version = "0.9.14"
|
|
|
|
if parse_version(self._version) < parse_version(minimum_required_version):
|
|
|
|
raise UbridgeError("uBridge executable version must be >= {}".format(minimum_required_version))
|
2015-07-21 23:58:53 +00:00
|
|
|
else:
|
|
|
|
raise UbridgeError("Could not determine uBridge version for {}".format(self._path))
|
|
|
|
except (OSError, subprocess.SubprocessError) as e:
|
|
|
|
raise UbridgeError("Error while looking for uBridge version: {}".format(e))
|
|
|
|
|
2018-10-15 10:05:49 +00:00
|
|
|
async def start(self):
|
2015-07-20 04:55:10 +00:00
|
|
|
"""
|
|
|
|
Starts the uBridge hypervisor process.
|
|
|
|
"""
|
|
|
|
|
2016-05-21 20:43:10 +00:00
|
|
|
env = os.environ.copy()
|
|
|
|
if sys.platform.startswith("win"):
|
2016-06-01 23:50:31 +00:00
|
|
|
# add the Npcap directory to $PATH to force uBridge to use npcap DLL instead of Winpcap (if installed)
|
2016-05-21 20:43:10 +00:00
|
|
|
system_root = os.path.join(os.path.expandvars("%SystemRoot%"), "System32", "Npcap")
|
|
|
|
if os.path.isdir(system_root):
|
|
|
|
env["PATH"] = system_root + ';' + env["PATH"]
|
2018-10-15 10:05:49 +00:00
|
|
|
await self._check_ubridge_version(env)
|
2015-07-20 04:55:10 +00:00
|
|
|
try:
|
|
|
|
command = self._build_command()
|
|
|
|
log.info("starting ubridge: {}".format(command))
|
|
|
|
self._stdout_file = os.path.join(self._working_dir, "ubridge.log")
|
|
|
|
log.info("logging to {}".format(self._stdout_file))
|
|
|
|
with open(self._stdout_file, "w", encoding="utf-8") as fd:
|
2018-10-15 10:05:49 +00:00
|
|
|
self._process = await asyncio.create_subprocess_exec(*command,
|
2015-07-20 04:55:10 +00:00
|
|
|
stdout=fd,
|
|
|
|
stderr=subprocess.STDOUT,
|
2016-05-21 20:43:10 +00:00
|
|
|
cwd=self._working_dir,
|
|
|
|
env=env)
|
2015-07-20 04:55:10 +00:00
|
|
|
|
|
|
|
log.info("ubridge started PID={}".format(self._process.pid))
|
2020-04-06 04:22:04 +00:00
|
|
|
# recv: Bad address is received by uBridge when a docker image stops by itself
|
|
|
|
# see https://github.com/GNS3/gns3-gui/issues/2957
|
|
|
|
#monitor_process(self._process, self._termination_callback)
|
2018-09-11 13:06:01 +00:00
|
|
|
except (OSError, subprocess.SubprocessError) as e:
|
2015-07-20 04:55:10 +00:00
|
|
|
ubridge_stdout = self.read_stdout()
|
|
|
|
log.error("Could not start ubridge: {}\n{}".format(e, ubridge_stdout))
|
2017-03-13 15:57:24 +00:00
|
|
|
raise UbridgeError("Could not start ubridge: {}\n{}".format(e, ubridge_stdout))
|
2015-07-20 04:55:10 +00:00
|
|
|
|
|
|
|
def _termination_callback(self, returncode):
|
|
|
|
"""
|
|
|
|
Called when the process has stopped.
|
|
|
|
|
|
|
|
:param returncode: Process returncode
|
|
|
|
"""
|
|
|
|
|
|
|
|
if returncode != 0:
|
2020-03-20 11:00:05 +00:00
|
|
|
error_msg = "uBridge process has stopped, return code: {}\n{}\n".format(returncode, self.read_stdout())
|
|
|
|
log.error(error_msg)
|
|
|
|
self._project.emit("log.error", {"message": error_msg})
|
|
|
|
else:
|
|
|
|
log.info("uBridge process has stopped, return code: %d", returncode)
|
2015-07-20 04:55:10 +00:00
|
|
|
|
2018-10-15 10:05:49 +00:00
|
|
|
async def stop(self):
|
2015-07-20 04:55:10 +00:00
|
|
|
"""
|
|
|
|
Stops the uBridge hypervisor process.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self.is_running():
|
|
|
|
log.info("Stopping uBridge process PID={}".format(self._process.pid))
|
2018-10-15 10:05:49 +00:00
|
|
|
await UBridgeHypervisor.stop(self)
|
2015-07-20 04:55:10 +00:00
|
|
|
try:
|
2018-10-15 10:05:49 +00:00
|
|
|
await wait_for_process_termination(self._process, timeout=3)
|
2015-07-20 04:55:10 +00:00
|
|
|
except asyncio.TimeoutError:
|
2017-04-14 08:33:19 +00:00
|
|
|
if self._process and self._process.returncode is None:
|
2018-03-15 07:17:39 +00:00
|
|
|
log.warning("uBridge process {} is still running... killing it".format(self._process.pid))
|
2017-03-13 17:21:43 +00:00
|
|
|
try:
|
|
|
|
self._process.kill()
|
|
|
|
except ProcessLookupError:
|
|
|
|
pass
|
2015-07-20 04:55:10 +00:00
|
|
|
|
|
|
|
if self._stdout_file and os.access(self._stdout_file, os.W_OK):
|
|
|
|
try:
|
|
|
|
os.remove(self._stdout_file)
|
|
|
|
except OSError as e:
|
|
|
|
log.warning("could not delete temporary uBridge log file: {}".format(e))
|
2016-11-17 17:11:56 +00:00
|
|
|
self._process = None
|
2015-07-20 04:55:10 +00:00
|
|
|
self._started = False
|
|
|
|
|
|
|
|
def read_stdout(self):
|
|
|
|
"""
|
|
|
|
Reads the standard output of the uBridge process.
|
|
|
|
Only use when the process has been stopped or has crashed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
output = ""
|
|
|
|
if self._stdout_file and os.access(self._stdout_file, os.R_OK):
|
|
|
|
try:
|
|
|
|
with open(self._stdout_file, "rb") as file:
|
|
|
|
output = file.read().decode("utf-8", errors="replace")
|
|
|
|
except OSError as e:
|
2018-03-15 07:17:39 +00:00
|
|
|
log.warning("could not read {}: {}".format(self._stdout_file, e))
|
2015-07-20 04:55:10 +00:00
|
|
|
return output
|
|
|
|
|
|
|
|
def is_running(self):
|
|
|
|
"""
|
|
|
|
Checks if the process is running
|
|
|
|
|
|
|
|
:returns: True or False
|
|
|
|
"""
|
|
|
|
|
|
|
|
if self._process and self._process.returncode is None:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _build_command(self):
|
|
|
|
"""
|
|
|
|
Command to start the uBridge hypervisor process.
|
|
|
|
(to be passed to subprocess.Popen())
|
|
|
|
"""
|
|
|
|
|
|
|
|
command = [self._path]
|
|
|
|
command.extend(["-H", "{}:{}".format(self._host, self._port)])
|
2015-10-14 16:10:05 +00:00
|
|
|
if log.getEffectiveLevel() == logging.DEBUG:
|
2019-06-12 12:35:13 +00:00
|
|
|
command.extend(["-d", "1"])
|
2015-07-20 04:55:10 +00:00
|
|
|
return command
|