# # 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 . import sys import os import struct import stat import asyncio import aiofiles import socket import shutil import re import logging log = logging.getLogger(__name__) from gns3server.utils.asyncio import cancellable_wait_run_in_executor from gns3server.compute.compute_error import ComputeError, ComputeForbiddenError, ComputeNotFoundError from gns3server.utils.interfaces import is_interface_up from uuid import UUID, uuid4 from typing import Type from ..config import Config from ..utils.asyncio import wait_run_in_executor from ..utils import force_unix_path from .project_manager import ProjectManager from .port_manager import PortManager from .base_node import BaseNode from .nios.nio_udp import NIOUDP from .nios.nio_tap import NIOTAP from .nios.nio_ethernet import NIOEthernet from ..utils.images import md5sum, remove_checksum, images_directories, default_images_directory, list_images from .error import NodeError, ImageMissingError CHUNK_SIZE = 1024 * 8 # 8KB class BaseManager: """ Base class for all Manager classes. Responsible of management of a node pool of the same type. """ _convert_lock = None def __init__(self): BaseManager._convert_lock = asyncio.Lock() self._nodes = {} self._port_manager = None self._config = Config.instance() @classmethod def node_types(cls): """ :returns: Array of supported node type on this computer """ # By default we transform DockerVM => docker but you can override this (see builtins) return [cls._NODE_CLASS.__name__.rstrip("VM").lower()] @property def nodes(self): """ List of nodes manage by the module """ return self._nodes.values() @classmethod def instance(cls): """ Singleton to return only one instance of BaseManager. :returns: instance of BaseManager """ if not hasattr(cls, "_instance") or cls._instance is None: cls._instance = cls() return cls._instance @property def module_name(self): """ Returns the module name. :returns: module name """ return self.__class__.__name__ @property def port_manager(self): """ Returns the port manager. :returns: Port manager """ if self._port_manager is None: self._port_manager = PortManager.instance() return self._port_manager @port_manager.setter def port_manager(self, new_port_manager): self._port_manager = new_port_manager @property def config(self): """ Returns the server config. :returns: Config """ return self._config async def unload(self): tasks = [] for node_id in self._nodes.keys(): tasks.append(asyncio.ensure_future(self.close_node(node_id))) if tasks: done, _ = await asyncio.wait(tasks) for future in done: try: future.result() except (Exception, GeneratorExit) as e: log.error(f"Could not close node: {e}", exc_info=1) continue if hasattr(BaseManager, "_instance"): BaseManager._instance = None log.debug(f"Module {self.module_name} unloaded") def get_node(self, node_id, project_id=None) -> Type[BaseNode]: """ Returns a Node instance. :param node_id: Node identifier :param project_id: Project identifier :returns: Node instance """ if project_id: # check the project_id exists project = ProjectManager.instance().get_project(project_id) try: UUID(node_id, version=4) except ValueError: raise ComputeError(f"Node ID {node_id} is not a valid UUID") if node_id not in self._nodes: raise ComputeNotFoundError(f"Node ID {node_id} doesn't exist") node = self._nodes[node_id] if project_id: if node.project.id != project.id: raise ComputeNotFoundError("Project ID {project_id} doesn't belong to node {node.name}") return node async def create_node(self, name, project_id, node_id, *args, **kwargs): """ Create a new node :param name: Node name :param project_id: Project identifier :param node_id: restore a node identifier """ if node_id in self._nodes: return self._nodes[node_id] project = ProjectManager.instance().get_project(project_id) if not node_id: node_id = str(uuid4()) node = self._NODE_CLASS(name, node_id, project, self, *args, **kwargs) if asyncio.iscoroutinefunction(node.create): await node.create() else: node.create() self._nodes[node.id] = node project.add_node(node) return node async def duplicate_node(self, source_node_id, destination_node_id): """ Duplicate a node :param source_node_id: Source node identifier :param destination_node_id: Destination node identifier :returns: New node instance """ source_node = self.get_node(source_node_id) destination_node = self.get_node(destination_node_id) # Some node don't have working dir like switch if not hasattr(destination_node, "working_dir"): return destination_node destination_dir = destination_node.working_dir try: shutil.rmtree(destination_dir) shutil.copytree(source_node.working_dir, destination_dir, symlinks=True, ignore_dangling_symlinks=True) except OSError as e: raise ComputeError(f"Cannot duplicate node data: {e}") # We force a refresh of the name. This forces the rewrite # of some configuration files node_name = destination_node.name destination_node.name = node_name + str(uuid4()) destination_node.name = node_name return destination_node async def close_node(self, node_id): """ Close a node :param node_id: Node identifier :returns: Node instance """ node = self.get_node(node_id) if asyncio.iscoroutinefunction(node.close): await node.close() else: node.close() return node async def project_closing(self, project): """ Called when a project is about to be closed. :param project: Project instance """ pass async def project_closed(self, project): """ Called when a project is closed. :param project: Project instance """ for node in project.nodes: if node.id in self._nodes: del self._nodes[node.id] async def delete_node(self, node_id): """ Delete a node. The node working directory will be destroyed when a commit is received. :param node_id: Node identifier :returns: Node instance """ node = None try: node = self.get_node(node_id) await self.close_node(node_id) finally: if node: node.project.emit("node.deleted", node) await node.project.remove_node(node) if node.id in self._nodes: del self._nodes[node.id] return node @staticmethod def has_privileged_access(executable): """ Check if an executable have the right to attach to Ethernet and TAP adapters. :param executable: executable path :returns: True or False """ if sys.platform.startswith("win"): # do not check anything on Windows return True if sys.platform.startswith("darwin"): if os.stat(executable).st_uid == 0: return True if os.geteuid() == 0: # we are root, so we should have privileged access. return True if os.stat(executable).st_uid == 0 and ( 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) try: if sys.platform.startswith("linux") and "security.capability" in os.listxattr(executable): caps = os.getxattr(executable, "security.capability") # test the 2nd byte and check if the 13th bit (CAP_NET_RAW) is set if struct.unpack("