2016-08-24 09:36:32 +00:00
|
|
|
#!/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
|
2016-08-26 12:09:18 +00:00
|
|
|
import copy
|
2016-08-24 09:36:32 +00:00
|
|
|
import asyncio
|
|
|
|
|
2016-09-01 13:36:41 +00:00
|
|
|
from ...utils.asyncio import locked_coroutine
|
2016-08-24 09:36:32 +00:00
|
|
|
from .vmware_gns3_vm import VMwareGNS3VM
|
|
|
|
from .virtualbox_gns3_vm import VirtualBoxGNS3VM
|
2016-08-30 08:19:01 +00:00
|
|
|
from .remote_gns3_vm import RemoteGNS3VM
|
2016-09-01 13:36:41 +00:00
|
|
|
from .gns3_vm_error import GNS3VMError
|
2016-08-24 09:36:32 +00:00
|
|
|
|
2016-08-25 09:49:06 +00:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2016-08-24 09:36:32 +00:00
|
|
|
|
|
|
|
class GNS3VM:
|
|
|
|
"""
|
|
|
|
Proxy between the controller and the GNS3 VM engine
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, controller, settings={}):
|
|
|
|
self._controller = controller
|
|
|
|
# Keep instance of the loaded engines
|
|
|
|
self._engines = {}
|
|
|
|
self._settings = {
|
|
|
|
"vmname": None,
|
2016-08-25 12:26:01 +00:00
|
|
|
"auto_stop": True,
|
2016-08-24 09:36:32 +00:00
|
|
|
"headless": False,
|
|
|
|
"enable": False,
|
|
|
|
"engine": "vmware"
|
|
|
|
}
|
2016-08-26 12:09:18 +00:00
|
|
|
self.settings = settings
|
2016-08-24 09:36:32 +00:00
|
|
|
|
|
|
|
def engine_list(self):
|
|
|
|
"""
|
|
|
|
:returns: Return list of engines supported by GNS3 for the GNS3VM
|
|
|
|
"""
|
|
|
|
vmware_informations = {
|
|
|
|
"engine_id": "vmware",
|
2016-08-30 08:19:01 +00:00
|
|
|
"description": "VMware is the recommended choice for best performances.",
|
|
|
|
"support_auto_stop": True,
|
|
|
|
"support_headless": True
|
2016-08-24 09:36:32 +00:00
|
|
|
}
|
|
|
|
if sys.platform.startswith("darwin"):
|
|
|
|
vmware_informations["name"] = "VMware Fusion"
|
|
|
|
else:
|
|
|
|
vmware_informations["name"] = "VMware Workstation / Player"
|
2016-08-30 08:19:01 +00:00
|
|
|
|
|
|
|
virtualbox_informations = {
|
|
|
|
"engine_id": "virtualbox",
|
|
|
|
"name": "VirtualBox",
|
|
|
|
"description": "VirtualBox doesn't support nested virtualization, this means running Qemu based VM could be very slow.",
|
|
|
|
"support_auto_stop": True,
|
|
|
|
"support_headless": True
|
|
|
|
}
|
|
|
|
|
|
|
|
remote_informations = {
|
|
|
|
"engine_id": "remote",
|
|
|
|
"name": "Remote",
|
|
|
|
"description": "Use a remote GNS3 server as the GNS3 VM.",
|
|
|
|
"support_auto_stop": False,
|
|
|
|
"support_headless": False
|
|
|
|
}
|
|
|
|
|
2016-08-24 09:36:32 +00:00
|
|
|
return [
|
|
|
|
vmware_informations,
|
2016-08-30 08:19:01 +00:00
|
|
|
virtualbox_informations,
|
|
|
|
remote_informations
|
2016-08-24 09:36:32 +00:00
|
|
|
]
|
|
|
|
|
2016-08-25 09:49:06 +00:00
|
|
|
def _current_engine(self):
|
|
|
|
return self._get_engine(self._settings["engine"])
|
|
|
|
|
|
|
|
@property
|
|
|
|
def ip_address(self):
|
|
|
|
"""
|
|
|
|
Returns the GNS3 VM IP address.
|
|
|
|
|
|
|
|
:returns: VM IP address
|
|
|
|
"""
|
|
|
|
return self._current_engine().ip_address
|
|
|
|
|
2016-08-26 12:09:18 +00:00
|
|
|
@property
|
|
|
|
def running(self):
|
|
|
|
"""
|
|
|
|
Returns if the GNS3 VM is running.
|
|
|
|
|
|
|
|
:returns: Boolean
|
|
|
|
"""
|
|
|
|
return self._current_engine().running
|
|
|
|
|
2016-08-25 09:49:06 +00:00
|
|
|
@property
|
|
|
|
def user(self):
|
|
|
|
"""
|
|
|
|
Returns the GNS3 VM user.
|
|
|
|
|
|
|
|
:returns: VM user
|
|
|
|
"""
|
|
|
|
return self._current_engine().user
|
|
|
|
|
|
|
|
@property
|
|
|
|
def password(self):
|
|
|
|
"""
|
|
|
|
Returns the GNS3 VM password.
|
|
|
|
|
|
|
|
:returns: VM password
|
|
|
|
"""
|
|
|
|
return self._current_engine().password
|
|
|
|
|
|
|
|
@property
|
|
|
|
def port(self):
|
|
|
|
"""
|
|
|
|
Returns the GNS3 VM port.
|
|
|
|
|
|
|
|
:returns: VM port
|
|
|
|
"""
|
|
|
|
return self._current_engine().port
|
|
|
|
|
|
|
|
@property
|
|
|
|
def protocol(self):
|
|
|
|
"""
|
|
|
|
Returns the GNS3 VM protocol.
|
|
|
|
|
|
|
|
:returns: VM protocol
|
|
|
|
"""
|
|
|
|
return self._current_engine().protocol
|
|
|
|
|
|
|
|
@property
|
|
|
|
def enable(self):
|
|
|
|
"""
|
|
|
|
The GNSVM is activated
|
|
|
|
"""
|
2016-08-29 12:07:52 +00:00
|
|
|
return self._settings.get("enable", False)
|
2016-08-25 09:49:06 +00:00
|
|
|
|
2016-08-25 12:26:01 +00:00
|
|
|
@property
|
|
|
|
def auto_stop(self):
|
|
|
|
"""
|
|
|
|
The GNSVM should auto stop
|
|
|
|
"""
|
|
|
|
return self._settings["auto_stop"]
|
|
|
|
|
2016-08-24 09:36:32 +00:00
|
|
|
@property
|
|
|
|
def settings(self):
|
|
|
|
return self._settings
|
|
|
|
|
|
|
|
@settings.setter
|
|
|
|
def settings(self, val):
|
|
|
|
self._settings.update(val)
|
2016-08-26 12:09:18 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def update_settings(self, settings):
|
|
|
|
"""
|
|
|
|
Update settings and will restart the VM if require
|
|
|
|
"""
|
|
|
|
new_settings = copy.copy(self._settings)
|
|
|
|
new_settings.update(settings)
|
|
|
|
if self.settings != new_settings:
|
|
|
|
yield from self._stop()
|
|
|
|
self._settings = settings
|
|
|
|
self._controller.save()
|
|
|
|
yield from self.auto_start_vm()
|
2016-08-24 09:36:32 +00:00
|
|
|
|
|
|
|
def _get_engine(self, engine):
|
|
|
|
"""
|
|
|
|
Load an engine
|
|
|
|
"""
|
|
|
|
if engine in self._engines:
|
|
|
|
return self._engines[engine]
|
|
|
|
|
|
|
|
if engine == "vmware":
|
2016-08-30 08:19:01 +00:00
|
|
|
self._engines["vmware"] = VMwareGNS3VM(self._controller)
|
2016-08-24 09:36:32 +00:00
|
|
|
return self._engines["vmware"]
|
|
|
|
elif engine == "virtualbox":
|
2016-08-30 08:19:01 +00:00
|
|
|
self._engines["virtualbox"] = VirtualBoxGNS3VM(self._controller)
|
2016-08-24 09:36:32 +00:00
|
|
|
return self._engines["virtualbox"]
|
2016-08-30 08:19:01 +00:00
|
|
|
elif engine == "remote":
|
|
|
|
self._engines["remote"] = RemoteGNS3VM(self._controller)
|
|
|
|
return self._engines["remote"]
|
2016-08-24 09:36:32 +00:00
|
|
|
raise NotImplementedError("The engine {} for the GNS3 VM is not supported".format(engine))
|
|
|
|
|
|
|
|
def __json__(self):
|
|
|
|
return self._settings
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def list(self, engine):
|
|
|
|
"""
|
|
|
|
List VMS for an engine
|
|
|
|
"""
|
|
|
|
engine = self._get_engine(engine)
|
|
|
|
vms = []
|
|
|
|
for vm in (yield from engine.list()):
|
|
|
|
vms.append({"vmname": vm["vmname"]})
|
|
|
|
return vms
|
2016-08-25 09:49:06 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2016-08-26 12:09:18 +00:00
|
|
|
def auto_start_vm(self):
|
|
|
|
"""
|
|
|
|
Auto start the GNS3 VM if require
|
|
|
|
"""
|
|
|
|
if self.enable:
|
2016-09-01 13:36:41 +00:00
|
|
|
try:
|
|
|
|
yield from self.start()
|
|
|
|
except GNS3VMError as e:
|
|
|
|
# User will receive the error later when they will try to use the node
|
|
|
|
yield from self._controller.add_compute(compute_id="vm",
|
|
|
|
name="GNS3 VM ({})".format(self._current_engine().vmname),
|
|
|
|
host=None,
|
|
|
|
force=True)
|
2016-09-06 11:06:20 +00:00
|
|
|
|
2016-08-26 12:09:18 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def auto_stop_vm(self):
|
|
|
|
if self.enable and self.auto_stop:
|
2016-08-30 14:38:19 +00:00
|
|
|
try:
|
|
|
|
yield from self._stop()
|
|
|
|
except GNS3VMError as e:
|
|
|
|
log.warn(str(e))
|
2016-08-26 12:09:18 +00:00
|
|
|
|
2016-09-01 13:36:41 +00:00
|
|
|
@locked_coroutine
|
|
|
|
def start(self):
|
2016-08-25 09:49:06 +00:00
|
|
|
"""
|
|
|
|
Start the GNS3 VM
|
|
|
|
"""
|
|
|
|
engine = self._current_engine()
|
|
|
|
if not engine.running:
|
|
|
|
log.info("Start the GNS3 VM")
|
|
|
|
engine.vmname = self._settings["vmname"]
|
|
|
|
yield from engine.start()
|
2016-09-01 13:36:41 +00:00
|
|
|
yield from self._controller.add_compute(compute_id="vm",
|
2016-09-06 11:06:20 +00:00
|
|
|
name="GNS3 VM ({})".format(engine.vmname),
|
|
|
|
protocol=self.protocol,
|
|
|
|
host=self.ip_address,
|
|
|
|
port=self.port,
|
|
|
|
user=self.user,
|
|
|
|
password=self.password,
|
|
|
|
force=True)
|
2016-08-25 09:49:06 +00:00
|
|
|
|
2016-09-01 13:36:41 +00:00
|
|
|
@locked_coroutine
|
2016-08-26 12:09:18 +00:00
|
|
|
def _stop(self):
|
2016-08-25 12:26:01 +00:00
|
|
|
"""
|
|
|
|
Stop the GNS3 VM
|
|
|
|
"""
|
|
|
|
engine = self._current_engine()
|
2016-08-26 12:09:18 +00:00
|
|
|
if "vm" in self._controller.computes:
|
|
|
|
yield from self._controller.delete_compute("vm")
|
|
|
|
if engine.running:
|
2016-08-25 12:26:01 +00:00
|
|
|
log.info("Stop the GNS3 VM")
|
|
|
|
yield from engine.stop()
|