1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00
gns3-server/gns3server/compute/dynamips/hypervisor.py

211 lines
6.5 KiB
Python
Raw Normal View History

2013-12-22 00:42:33 +00:00
#
2015-02-10 01:24:13 +00:00
# Copyright (C) 2015 GNS3 Technologies Inc.
2013-12-22 00:42:33 +00:00
#
# 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 Dynamips hypervisor and starts/stops the associated Dynamips process.
"""
import sys
2013-12-22 00:42:33 +00:00
import os
import subprocess
2015-02-10 01:24:13 +00:00
import asyncio
2013-12-22 00:42:33 +00:00
2015-07-20 04:55:10 +00:00
from gns3server.utils.asyncio import wait_for_process_termination
2013-12-22 00:42:33 +00:00
from .dynamips_hypervisor import DynamipsHypervisor
from .dynamips_error import DynamipsError
2013-12-22 00:42:33 +00:00
import logging
2021-04-13 09:16:50 +00:00
log = logging.getLogger(__name__)
2013-12-22 00:42:33 +00:00
class Hypervisor(DynamipsHypervisor):
2015-02-13 13:43:28 +00:00
2013-12-22 00:42:33 +00:00
"""
Hypervisor.
:param path: path to Dynamips executable
:param working_dir: working directory
2013-12-22 00:42:33 +00:00
:param host: host/address for this hypervisor
:param port: port for this hypervisor
:param console_host: host/address for console connections
2013-12-22 00:42:33 +00:00
"""
2015-02-17 04:30:31 +00:00
_instance_count = 1
2013-12-22 00:42:33 +00:00
def __init__(self, path, working_dir, host, port, console_host, bind_console_host=False):
2013-12-22 00:42:33 +00:00
2015-04-08 17:17:34 +00:00
super().__init__(working_dir, host, port)
2013-12-22 00:42:33 +00:00
# create an unique ID
self._id = Hypervisor._instance_count
Hypervisor._instance_count += 1
self._console_host = console_host
self._bind_console_host = bind_console_host
2013-12-22 00:42:33 +00:00
self._path = path
self._command = []
self._process = None
self._stdout_file = ""
2014-03-20 00:48:42 +00:00
self._started = False
2013-12-22 00:42:33 +00:00
@property
def id(self):
"""
Returns the unique ID for this hypervisor.
:returns: id (integer)
"""
2014-05-28 12:26:20 +00:00
return self._id
2013-12-22 00:42:33 +00:00
@property
def process(self):
"""
Returns the subprocess of the Hypervisor
:returns: subprocess
"""
return self._process
2014-03-20 00:48:42 +00:00
@property
def started(self):
"""
Returns either this hypervisor has been started or not.
:returns: boolean
"""
return self._started
2013-12-22 00:42:33 +00:00
@property
def path(self):
"""
Returns the path to the Dynamips executable.
:returns: path to Dynamips
"""
2014-05-28 12:26:20 +00:00
return self._path
2013-12-22 00:42:33 +00:00
@path.setter
def path(self, path):
"""
Sets the path to the Dynamips executable.
2013-12-22 00:42:33 +00:00
:param path: path to Dynamips
"""
self._path = path
async def start(self):
2013-12-22 00:42:33 +00:00
"""
Starts the Dynamips hypervisor process.
"""
self._command = self._build_command()
env = os.environ.copy()
2013-12-22 00:42:33 +00:00
try:
2021-04-13 09:07:58 +00:00
log.info(f"Starting Dynamips: {self._command}")
self._stdout_file = os.path.join(self.working_dir, f"dynamips_i{self._id}_stdout.txt")
log.info(f"Dynamips process logging to {self._stdout_file}")
with open(self._stdout_file, "w", encoding="utf-8") as fd:
2021-04-13 09:16:50 +00:00
self._process = await asyncio.create_subprocess_exec(
*self._command, stdout=fd, stderr=subprocess.STDOUT, cwd=self._working_dir, env=env
)
2021-04-13 09:07:58 +00:00
log.info(f"Dynamips process started PID={self._process.pid}")
2014-03-20 00:48:42 +00:00
self._started = True
except (OSError, subprocess.SubprocessError) as e:
2021-04-13 09:07:58 +00:00
log.error(f"Could not start Dynamips: {e}")
raise DynamipsError(f"Could not start Dynamips: {e}")
2013-12-22 00:42:33 +00:00
async def stop(self):
2013-12-22 00:42:33 +00:00
"""
Stops the Dynamips hypervisor process.
"""
if self.is_running():
2021-04-13 09:07:58 +00:00
log.info(f"Stopping Dynamips process PID={self._process.pid}")
await DynamipsHypervisor.stop(self)
2015-02-10 01:24:13 +00:00
# give some time for the hypervisor to properly stop.
# time to delete UNIX NIOs for instance.
await asyncio.sleep(0.01)
try:
await wait_for_process_termination(self._process, timeout=3)
2015-02-10 01:24:13 +00:00
except asyncio.TimeoutError:
if self._process.returncode is None:
2021-04-13 09:07:58 +00:00
log.warning(f"Dynamips process {self._process.pid} is still running... killing it")
try:
self._process.kill()
except OSError as e:
2021-04-13 09:07:58 +00:00
log.error(f"Cannot stop the Dynamips process: {e}")
if self._process.returncode is None:
2021-04-13 09:16:50 +00:00
log.warning(f"Dynamips hypervisor with PID={self._process.pid} is still running")
2013-12-22 00:42:33 +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:
2021-04-13 09:07:58 +00:00
log.warning(f"could not delete temporary Dynamips log file: {e}")
2014-03-20 00:48:42 +00:00
self._started = False
2013-12-22 00:42:33 +00:00
def read_stdout(self):
"""
Reads the standard output of the Dynamips 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:
2021-04-13 09:07:58 +00:00
log.warning(f"could not read {self._stdout_file}: {e}")
2013-12-22 00:42:33 +00:00
return output
def is_running(self):
"""
Checks if the process is running
:returns: True or False
"""
2015-02-10 01:24:13 +00:00
if self._process and self._process.returncode is None:
2013-12-22 00:42:33 +00:00
return True
return False
def _build_command(self):
"""
Command to start the Dynamips hypervisor process.
(to be passed to subprocess.Popen())
"""
command = [self._path]
command.extend(["-N1"]) # use instance IDs for filenames
2015-02-17 04:30:31 +00:00
command.extend(["-l", "dynamips_i{}_log.txt".format(self._id)]) # log file
if self._bind_console_host:
# support was added in Dynamips version 0.2.23
command.extend(["-H", "{}:{}".format(self._host, self._port), "--console-binding-addr", self._console_host])
elif self._console_host != "0.0.0.0" and self._console_host != "::":
command.extend(["-H", "{}:{}".format(self._host, self._port)])
2013-12-22 00:42:33 +00:00
else:
2014-04-16 18:43:59 +00:00
command.extend(["-H", str(self._port)])
2013-12-22 00:42:33 +00:00
return command