2015-01-14 03:26:32 +02: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/>.
|
|
|
|
|
2015-01-23 03:04:24 +02:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import struct
|
|
|
|
import stat
|
2015-01-14 03:26:32 +02:00
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
2015-01-23 03:04:24 +02:00
|
|
|
import socket
|
2015-02-09 03:10:04 +02:00
|
|
|
import shutil
|
2015-01-23 03:04:24 +02:00
|
|
|
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
from uuid import UUID, uuid4
|
2015-01-21 04:02:22 +02:00
|
|
|
from ..config import Config
|
2015-02-09 03:10:04 +02:00
|
|
|
from ..utils.asyncio import wait_run_in_executor
|
2015-01-20 13:46:15 +02:00
|
|
|
from .project_manager import ProjectManager
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-02-24 04:00:34 +02:00
|
|
|
from .nios.nio_udp import NIOUDP
|
|
|
|
from .nios.nio_tap import NIOTAP
|
|
|
|
from .nios.nio_generic_ethernet import NIOGenericEthernet
|
2015-01-23 03:04:24 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
class BaseManager:
|
2015-01-20 14:24:00 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
2015-01-14 19:52:02 +02:00
|
|
|
Base class for all Manager.
|
2015-01-14 03:26:32 +02:00
|
|
|
Responsible of management of a VM pool
|
|
|
|
"""
|
|
|
|
|
2015-02-28 07:12:43 +02:00
|
|
|
_convert_lock = None
|
2015-02-26 03:55:35 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
def __init__(self):
|
2015-01-19 23:43:35 +02:00
|
|
|
|
2015-02-28 07:12:43 +02:00
|
|
|
BaseManager._convert_lock = asyncio.Lock()
|
2015-01-14 03:26:32 +02:00
|
|
|
self._vms = {}
|
2015-01-19 23:43:35 +02:00
|
|
|
self._port_manager = None
|
2015-01-21 04:02:22 +02:00
|
|
|
self._config = Config.instance()
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def instance(cls):
|
|
|
|
"""
|
2015-01-19 00:41:53 +02:00
|
|
|
Singleton to return only one instance of BaseManager.
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-01-19 23:43:35 +02:00
|
|
|
:returns: instance of BaseManager
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
|
|
|
|
2015-01-16 18:09:45 +02:00
|
|
|
if not hasattr(cls, "_instance") or cls._instance is None:
|
2015-01-14 03:26:32 +02:00
|
|
|
cls._instance = cls()
|
|
|
|
return cls._instance
|
|
|
|
|
2015-01-22 00:21:15 +02:00
|
|
|
@property
|
|
|
|
def module_name(self):
|
|
|
|
"""
|
|
|
|
Returns the module name.
|
|
|
|
|
|
|
|
:returns: module name
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self.__class__.__name__
|
|
|
|
|
2015-01-19 12:22:24 +02:00
|
|
|
@property
|
|
|
|
def port_manager(self):
|
|
|
|
"""
|
2015-01-21 04:02:22 +02:00
|
|
|
Returns the port manager.
|
2015-01-19 12:22:24 +02:00
|
|
|
|
|
|
|
:returns: Port manager
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._port_manager
|
|
|
|
|
|
|
|
@port_manager.setter
|
|
|
|
def port_manager(self, new_port_manager):
|
|
|
|
|
2015-01-19 23:43:35 +02:00
|
|
|
self._port_manager = new_port_manager
|
2015-01-19 12:22:24 +02:00
|
|
|
|
2015-01-21 04:02:22 +02:00
|
|
|
@property
|
|
|
|
def config(self):
|
|
|
|
"""
|
|
|
|
Returns the server config.
|
|
|
|
|
|
|
|
:returns: Config
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._config
|
|
|
|
|
2015-01-23 06:31:26 +02:00
|
|
|
@asyncio.coroutine
|
2015-01-23 08:40:51 +02:00
|
|
|
def unload(self):
|
|
|
|
|
2015-02-05 23:24:06 +02:00
|
|
|
tasks = []
|
2015-02-04 22:48:29 +02:00
|
|
|
for vm_id in self._vms.keys():
|
2015-02-05 23:24:06 +02:00
|
|
|
tasks.append(asyncio.async(self.close_vm(vm_id)))
|
|
|
|
|
|
|
|
if tasks:
|
|
|
|
done, _ = yield from asyncio.wait(tasks)
|
|
|
|
for future in done:
|
|
|
|
try:
|
|
|
|
future.result()
|
|
|
|
except Exception as e:
|
|
|
|
log.error("Could not close VM {}".format(e), exc_info=1)
|
|
|
|
continue
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-01-23 08:40:51 +02:00
|
|
|
if hasattr(BaseManager, "_instance"):
|
|
|
|
BaseManager._instance = None
|
2015-01-23 22:01:23 +02:00
|
|
|
log.debug("Module {} unloaded".format(self.module_name))
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-02-05 02:13:35 +02:00
|
|
|
def get_vm(self, vm_id, project_id=None):
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
|
|
|
Returns a VM instance.
|
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
:param vm_id: VM identifier
|
2015-02-05 02:13:35 +02:00
|
|
|
:param project_id: Project identifier
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
:returns: VM instance
|
|
|
|
"""
|
|
|
|
|
2015-02-05 02:13:35 +02:00
|
|
|
if project_id:
|
|
|
|
# check the project_id exists
|
|
|
|
project = ProjectManager.instance().get_project(project_id)
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
try:
|
2015-02-04 22:48:29 +02:00
|
|
|
UUID(vm_id, version=4)
|
2015-01-20 03:30:57 +02:00
|
|
|
except ValueError:
|
2015-02-05 02:13:35 +02:00
|
|
|
raise aiohttp.web.HTTPBadRequest(text="VM ID {} is not a valid UUID".format(vm_id))
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
if vm_id not in self._vms:
|
2015-02-05 02:13:35 +02:00
|
|
|
raise aiohttp.web.HTTPNotFound(text="VM ID {} doesn't exist".format(vm_id))
|
|
|
|
|
|
|
|
vm = self._vms[vm_id]
|
|
|
|
if project_id:
|
|
|
|
if vm.project.id != project.id:
|
|
|
|
raise aiohttp.web.HTTPNotFound(text="Project ID {} doesn't belong to VM {}".format(project_id, vm.name))
|
|
|
|
|
2015-02-15 21:18:12 +02:00
|
|
|
return vm
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-02-26 03:55:35 +02:00
|
|
|
@asyncio.coroutine
|
|
|
|
def _convert_old_project(self, project, legacy_id, name):
|
|
|
|
"""
|
|
|
|
Convert project made before version 1.3
|
|
|
|
|
|
|
|
:param project: Project instance
|
|
|
|
:param legacy_id: old identifier
|
|
|
|
:param name: VM name
|
|
|
|
|
|
|
|
:returns: new VM identifier
|
|
|
|
"""
|
|
|
|
|
|
|
|
vm_id = str(uuid4())
|
|
|
|
if hasattr(self, "get_legacy_vm_workdir"):
|
|
|
|
# move old project VM files to a new location
|
|
|
|
log.info("Converting old project...")
|
|
|
|
project_name = os.path.basename(project.path)
|
2015-03-01 00:00:00 +02:00
|
|
|
legacy_project_files_path = os.path.join(project.path, "{}-files".format(project_name))
|
2015-02-26 03:55:35 +02:00
|
|
|
legacy_vm_dir = self.get_legacy_vm_workdir(legacy_id, name)
|
2015-03-01 00:00:00 +02:00
|
|
|
legacy_vm_working_path = os.path.join(legacy_project_files_path, legacy_vm_dir)
|
|
|
|
new_project_files_path = os.path.join(project.path, "project-files")
|
|
|
|
new_vm_working_path = os.path.join(new_project_files_path, self.module_name.lower(), vm_id)
|
2015-02-26 03:55:35 +02:00
|
|
|
try:
|
2015-03-01 00:00:00 +02:00
|
|
|
log.info('Moving "{}" to "{}"'.format(legacy_vm_working_path, new_vm_working_path))
|
|
|
|
yield from wait_run_in_executor(shutil.move, legacy_vm_working_path, new_vm_working_path)
|
2015-02-26 03:55:35 +02:00
|
|
|
except OSError as e:
|
2015-03-01 00:00:00 +02:00
|
|
|
raise aiohttp.web.HTTPInternalServerError(text="Could not move VM working directory: {} to {} {}".format(legacy_vm_working_path,
|
|
|
|
new_vm_working_path,
|
|
|
|
e))
|
|
|
|
|
|
|
|
old_images_dir = os.path.join(legacy_project_files_path, "images")
|
|
|
|
new_images_dir = os.path.join(new_project_files_path, "images")
|
|
|
|
if os.path.isdir(old_images_dir):
|
|
|
|
try:
|
|
|
|
log.info('Moving "{}" to "{}"'.format(old_images_dir, new_images_dir))
|
|
|
|
yield from wait_run_in_executor(shutil.move, old_images_dir, new_images_dir)
|
|
|
|
except OSError as e:
|
|
|
|
raise aiohttp.web.HTTPInternalServerError(text="Could not move images directory: {} to {} {}".format(old_images_dir,
|
|
|
|
new_images_dir,
|
|
|
|
e))
|
2015-02-26 03:55:35 +02:00
|
|
|
|
|
|
|
try:
|
2015-03-01 00:00:00 +02:00
|
|
|
os.rmdir(os.path.dirname(legacy_vm_working_path))
|
2015-02-26 03:55:35 +02:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2015-03-01 00:00:00 +02:00
|
|
|
os.rmdir(legacy_project_files_path)
|
2015-02-26 03:55:35 +02:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return vm_id
|
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
@asyncio.coroutine
|
2015-02-04 22:48:29 +02:00
|
|
|
def create_vm(self, name, project_id, vm_id, *args, **kwargs):
|
2015-01-20 13:46:15 +02:00
|
|
|
"""
|
|
|
|
Create a new VM
|
|
|
|
|
2015-01-21 04:02:22 +02:00
|
|
|
:param name: VM name
|
2015-02-04 22:48:29 +02:00
|
|
|
:param project_id: Project identifier
|
|
|
|
:param vm_id: restore a VM identifier
|
2015-01-20 13:46:15 +02:00
|
|
|
"""
|
2015-01-21 00:28:40 +02:00
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
project = ProjectManager.instance().get_project(project_id)
|
2015-02-25 19:23:41 +02:00
|
|
|
# If it's not an UUID, old topology
|
2015-02-26 03:55:35 +02:00
|
|
|
if vm_id and isinstance(vm_id, int):
|
|
|
|
with (yield from BaseManager._convert_lock):
|
|
|
|
vm_id = yield from self._convert_old_project(project, vm_id, name)
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
if not vm_id:
|
|
|
|
vm_id = str(uuid4())
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
vm = self._VM_CLASS(name, vm_id, project, self, *args, **kwargs)
|
2015-01-22 02:41:35 +02:00
|
|
|
if asyncio.iscoroutinefunction(vm.create):
|
|
|
|
yield from vm.create()
|
|
|
|
else:
|
|
|
|
vm.create()
|
2015-02-04 22:48:29 +02:00
|
|
|
self._vms[vm.id] = vm
|
2015-02-03 03:56:13 +02:00
|
|
|
project.add_vm(vm)
|
2015-01-14 03:26:32 +02:00
|
|
|
return vm
|
2015-01-22 12:34:10 +02:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-02-04 22:48:29 +02:00
|
|
|
def close_vm(self, vm_id):
|
2015-01-22 12:34:10 +02:00
|
|
|
"""
|
|
|
|
Delete a VM
|
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
:param vm_id: VM identifier
|
|
|
|
|
2015-01-23 12:28:58 +02:00
|
|
|
:returns: VM instance
|
2015-01-22 12:34:10 +02:00
|
|
|
"""
|
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
vm = self.get_vm(vm_id)
|
2015-01-23 04:06:17 +02:00
|
|
|
if asyncio.iscoroutinefunction(vm.close):
|
|
|
|
yield from vm.close()
|
2015-01-22 12:34:10 +02:00
|
|
|
else:
|
2015-01-23 04:06:17 +02:00
|
|
|
vm.close()
|
2015-01-23 12:28:58 +02:00
|
|
|
return vm
|
|
|
|
|
2015-02-16 07:13:24 +02:00
|
|
|
@asyncio.coroutine
|
2015-02-28 01:51:17 +02:00
|
|
|
def project_closed(self, project):
|
2015-02-16 07:13:24 +02:00
|
|
|
"""
|
|
|
|
Called when a project is closed.
|
|
|
|
|
2015-02-28 01:51:17 +02:00
|
|
|
:param project: Project instance
|
|
|
|
"""
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def project_moved(self, project):
|
|
|
|
"""
|
|
|
|
Called when a project is moved
|
|
|
|
|
|
|
|
:param project: project instance
|
2015-02-16 07:13:24 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
2015-01-23 12:28:58 +02:00
|
|
|
@asyncio.coroutine
|
2015-02-04 22:48:29 +02:00
|
|
|
def delete_vm(self, vm_id):
|
2015-01-23 12:28:58 +02:00
|
|
|
"""
|
|
|
|
Delete a VM. VM working directory will be destroy when
|
|
|
|
we receive a commit.
|
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
:param vm_id: VM identifier
|
2015-01-23 12:28:58 +02:00
|
|
|
:returns: VM instance
|
|
|
|
"""
|
|
|
|
|
2015-02-04 22:48:29 +02:00
|
|
|
vm = yield from self.close_vm(vm_id)
|
2015-01-23 12:28:58 +02:00
|
|
|
vm.project.mark_vm_for_destruction(vm)
|
2015-02-04 22:48:29 +02:00
|
|
|
del self._vms[vm.id]
|
2015-01-23 12:28:58 +02:00
|
|
|
return vm
|
2015-01-23 03:04:24 +02:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _has_privileged_access(executable):
|
|
|
|
"""
|
|
|
|
Check if an executable can access Ethernet and TAP devices in
|
|
|
|
RAW mode.
|
|
|
|
|
|
|
|
:param executable: executable path
|
|
|
|
|
|
|
|
:returns: True or False
|
|
|
|
"""
|
|
|
|
|
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
# do not check anything on Windows
|
|
|
|
return True
|
|
|
|
|
|
|
|
if os.geteuid() == 0:
|
|
|
|
# we are root, so we should have privileged access.
|
|
|
|
return True
|
|
|
|
if os.stat(executable).st_mode & stat.S_ISUID or os.stat(executable).st_mode & stat.S_ISGID:
|
|
|
|
# the executable has set UID bit.
|
|
|
|
return True
|
|
|
|
|
|
|
|
# test if the executable has the CAP_NET_RAW capability (Linux only)
|
|
|
|
if sys.platform.startswith("linux") and "security.capability" in os.listxattr(executable):
|
|
|
|
try:
|
|
|
|
caps = os.getxattr(executable, "security.capability")
|
|
|
|
# test the 2nd byte and check if the 13th bit (CAP_NET_RAW) is set
|
|
|
|
if struct.unpack("<IIIII", caps)[1] & 1 << 13:
|
|
|
|
return True
|
|
|
|
except Exception as e:
|
|
|
|
log.error("could not determine if CAP_NET_RAW capability is set for {}: {}".format(executable, e))
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_nio(self, executable, nio_settings):
|
|
|
|
"""
|
|
|
|
Creates a new NIO.
|
|
|
|
|
|
|
|
:param nio_settings: information to create the NIO
|
|
|
|
|
|
|
|
:returns: a NIO object
|
|
|
|
"""
|
|
|
|
|
|
|
|
nio = None
|
|
|
|
if nio_settings["type"] == "nio_udp":
|
|
|
|
lport = nio_settings["lport"]
|
|
|
|
rhost = nio_settings["rhost"]
|
|
|
|
rport = nio_settings["rport"]
|
|
|
|
try:
|
|
|
|
# TODO: handle IPv6
|
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
|
|
|
|
sock.connect((rhost, rport))
|
|
|
|
except OSError as e:
|
|
|
|
raise aiohttp.web.HTTPInternalServerError(text="Could not create an UDP connection to {}:{}: {}".format(rhost, rport, e))
|
2015-02-24 04:00:34 +02:00
|
|
|
nio = NIOUDP(lport, rhost, rport)
|
2015-01-23 03:04:24 +02:00
|
|
|
elif nio_settings["type"] == "nio_tap":
|
|
|
|
tap_device = nio_settings["tap_device"]
|
|
|
|
if not self._has_privileged_access(executable):
|
|
|
|
raise aiohttp.web.HTTPForbidden(text="{} has no privileged access to {}.".format(executable, tap_device))
|
2015-02-24 04:00:34 +02:00
|
|
|
nio = NIOTAP(tap_device)
|
2015-02-13 17:41:18 +02:00
|
|
|
elif nio_settings["type"] == "nio_generic_ethernet":
|
2015-02-24 04:00:34 +02:00
|
|
|
nio = NIOGenericEthernet(nio_settings["ethernet_device"])
|
2015-01-23 03:04:24 +02:00
|
|
|
assert nio is not None
|
|
|
|
return nio
|