1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/gns3server/modules/base_vm.py

276 lines
8.4 KiB
Python
Raw Normal View History

2015-01-14 01:26:32 +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/>.
import os
2015-01-14 17:52:02 +00:00
import logging
import aiohttp
import shutil
import asyncio
2015-03-17 15:31:45 +00:00
import tempfile
from ..utils.asyncio import wait_run_in_executor
2015-03-17 21:18:55 +00:00
from .vm_error import VMError
2015-01-14 17:52:02 +00:00
log = logging.getLogger(__name__)
2015-01-14 01:26:32 +00:00
2015-01-15 23:50:36 +00:00
2015-01-14 01:26:32 +00:00
class BaseVM:
2015-02-19 10:33:25 +00:00
"""
Base vm implementation.
:param name: name of this IOU vm
:param vm_id: IOU instance identifier
:param project: Project instance
:param manager: parent VM Manager
:param console: TCP console port
"""
def __init__(self, name, vm_id, project, manager, console=None, console_type="telnet"):
2015-01-16 00:43:06 +00:00
2015-01-14 01:26:32 +00:00
self._name = name
self._id = vm_id
2015-01-20 11:46:15 +00:00
self._project = project
2015-01-19 10:22:24 +00:00
self._manager = manager
2015-02-19 10:33:25 +00:00
self._console = console
self._console_type = console_type
2015-03-17 15:31:45 +00:00
self._temporary_directory = None
self._hw_virtualization = False
self._vm_status = "stopped"
2015-02-19 10:33:25 +00:00
if self._console is not None:
self._console = self._manager.port_manager.reserve_tcp_port(self._console, self._project)
2015-02-19 10:33:25 +00:00
else:
if console_type == "vnc":
# VNC is a special case and the range must be 5900-6000
self._console = self._manager.port_manager.get_free_tcp_port(self._project, 5900, 6000)
else:
self._console = self._manager.port_manager.get_free_tcp_port(self._project)
2015-01-14 17:52:02 +00:00
2015-04-08 17:17:34 +00:00
log.debug("{module}: {name} [{id}] initialized. Console port {console}".format(module=self.manager.module_name,
name=self.name,
id=self.id,
console=self._console))
2015-01-21 22:21:15 +00:00
2015-01-22 10:49:22 +00:00
def __del__(self):
self.close()
2015-03-17 15:31:45 +00:00
if self._temporary_directory is not None:
if os.path.exists(self._temporary_directory):
2015-04-08 17:17:34 +00:00
shutil.rmtree(self._temporary_directory, ignore_errors=True)
2015-01-19 10:22:24 +00:00
@property
def status(self):
"""Return current VM status"""
return self._vm_status
@status.setter
def status(self, status):
self._vm_status = status
self._project.emit("vm.{}".format(status), self)
2015-01-20 11:46:15 +00:00
@property
def project(self):
"""
Returns the VM current project.
:returns: Project instance.
"""
2015-01-20 11:46:15 +00:00
return self._project
2015-01-14 01:26:32 +00:00
@property
def name(self):
2015-01-14 01:26:32 +00:00
"""
Returns the name for this VM.
2015-01-14 01:26:32 +00:00
:returns: name
2015-01-14 01:26:32 +00:00
"""
return self._name
@name.setter
def name(self, new_name):
"""
Sets the name of this VM.
:param new_name: name
"""
log.info("{module}: {name} [{id}] renamed to {new_name}".format(module=self.manager.module_name,
name=self.name,
id=self.id,
new_name=new_name))
self._name = new_name
2015-01-14 01:26:32 +00:00
@property
def id(self):
2015-01-14 01:26:32 +00:00
"""
Returns the ID for this VM.
2015-01-14 01:26:32 +00:00
:returns: VM identifier (string)
2015-01-14 01:26:32 +00:00
"""
return self._id
2015-01-14 01:26:32 +00:00
@property
def manager(self):
"""
Returns the manager for this VM.
:returns: instance of manager
"""
return self._manager
2015-01-14 01:26:32 +00:00
@property
def working_dir(self):
"""
Return VM working directory
"""
2015-01-23 10:28:58 +00:00
return self._project.vm_working_directory(self)
2015-03-17 15:31:45 +00:00
@property
def temporary_directory(self):
if self._temporary_directory is None:
2015-03-17 21:18:55 +00:00
try:
self._temporary_directory = tempfile.mkdtemp()
except OSError as e:
raise VMError("Can't create temporary directory: {}".format(e))
2015-03-17 15:31:45 +00:00
return self._temporary_directory
def create(self):
"""
Creates the VM.
"""
2015-01-14 01:26:32 +00:00
log.info("{module}: {name} [{id}] created".format(module=self.manager.module_name,
name=self.name,
id=self.id))
2015-01-14 01:26:32 +00:00
@asyncio.coroutine
def delete(self):
"""
Delete the VM (including all its files).
"""
2015-02-16 09:11:46 +00:00
directory = self.project.vm_working_directory(self)
if os.path.exists(directory):
try:
yield from wait_run_in_executor(shutil.rmtree, directory)
except OSError as e:
raise aiohttp.web.HTTPInternalServerError(text="Could not delete the VM working directory: {}".format(e))
2015-01-15 23:50:36 +00:00
def start(self):
2015-01-14 17:52:02 +00:00
"""
Starts the VM process.
"""
2015-01-14 17:52:02 +00:00
raise NotImplementedError
def stop(self):
"""
Starts the VM process.
2015-01-14 01:26:32 +00:00
"""
raise NotImplementedError
2015-01-22 10:49:22 +00:00
def close(self):
2015-01-22 10:49:22 +00:00
"""
Close the VM process.
2015-01-22 10:49:22 +00:00
"""
raise NotImplementedError
2015-02-19 10:33:25 +00:00
@property
def console(self):
"""
Returns the console port of this VM.
2015-02-19 10:33:25 +00:00
:returns: console port
"""
return self._console
@console.setter
def console(self, console):
"""
2015-04-08 17:17:34 +00:00
Changes the console port
2015-02-19 10:33:25 +00:00
:params console: Console port (integer)
"""
if console == self._console:
return
if self._console:
self._manager.port_manager.release_tcp_port(self._console, self._project)
self._console = self._manager.port_manager.reserve_tcp_port(console, self._project)
2015-04-08 17:17:34 +00:00
log.info("{module}: '{name}' [{id}]: console port set to {port}".format(module=self.manager.module_name,
name=self.name,
id=self.id,
port=console))
@property
def console_type(self):
"""
Returns the console type for this VM.
:returns: console type (string)
"""
return self._console_type
@console_type.setter
def console_type(self, console_type):
"""
Sets the console type for this VM.
:param console_type: console type (string)
"""
log.info('QEMU VM "{name}" [{id}] has set the console type to {console_type}'.format(name=self._name,
id=self._id,
console_type=console_type))
if console_type != self._console_type:
# get a new port if the console type change
self._manager.port_manager.release_tcp_port(self._console, self._project)
if console_type == "vnc":
# VNC is a special case and the range must be 5900-6000
self._console = self._manager.port_manager.get_free_tcp_port(self._project, 5900, 6000)
else:
self._console = self._manager.port_manager.get_free_tcp_port(self._project)
self._console_type = console_type
log.info("{module}: '{name}' [{id}]: console type set to {console_type}".format(module=self.manager.module_name,
name=self.name,
id=self.id,
console_type=console_type))
@property
def hw_virtualization(self):
"""
Returns either the VM is using hardware virtualization or not.
:return: boolean
"""
return self._hw_virtualization