mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-17 18:42:00 +00:00
A basic implementation of port manager
This commit is contained in:
parent
3abcac43ab
commit
c1ef406311
@ -38,7 +38,7 @@ class VPCSHandler(object):
|
|||||||
vm = yield from vpcs.create_vm(request.json['name'])
|
vm = yield from vpcs.create_vm(request.json['name'])
|
||||||
response.json({'name': vm.name,
|
response.json({'name': vm.name,
|
||||||
"vpcs_id": vm.id,
|
"vpcs_id": vm.id,
|
||||||
"console": 4242})
|
"console": vm.console})
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@Route.post(
|
@Route.post(
|
||||||
|
@ -73,7 +73,7 @@ class BaseManager:
|
|||||||
else:
|
else:
|
||||||
if identifier in self._vms:
|
if identifier in self._vms:
|
||||||
raise DeviceError("VM identifier {} is already used by another VM instance".format(identifier))
|
raise DeviceError("VM identifier {} is already used by another VM instance".format(identifier))
|
||||||
vm = self._VM_CLASS(vmname, identifier)
|
vm = self._VM_CLASS(vmname, identifier, self.port_manager)
|
||||||
yield from vm.wait_for_creation()
|
yield from vm.wait_for_creation()
|
||||||
self._vms[vm.id] = vm
|
self._vms[vm.id] = vm
|
||||||
return vm
|
return vm
|
||||||
|
@ -26,7 +26,7 @@ log = logging.getLogger(__name__)
|
|||||||
class BaseVM:
|
class BaseVM:
|
||||||
_allocated_console_ports = []
|
_allocated_console_ports = []
|
||||||
|
|
||||||
def __init__(self, name, identifier):
|
def __init__(self, name, identifier, port_manager):
|
||||||
self._loop = asyncio.get_event_loop()
|
self._loop = asyncio.get_event_loop()
|
||||||
self._allocate_console()
|
self._allocate_console()
|
||||||
self._queue = asyncio.Queue()
|
self._queue = asyncio.Queue()
|
||||||
@ -34,6 +34,7 @@ class BaseVM:
|
|||||||
self._id = identifier
|
self._id = identifier
|
||||||
self._created = asyncio.Future()
|
self._created = asyncio.Future()
|
||||||
self._worker = asyncio.async(self._run())
|
self._worker = asyncio.async(self._run())
|
||||||
|
self._port_manager = port_manager
|
||||||
log.info("{type} device {name} [id={id}] has been created".format(
|
log.info("{type} device {name} [id={id}] has been created".format(
|
||||||
type=self.__class__.__name__,
|
type=self.__class__.__name__,
|
||||||
name=self._name,
|
name=self._name,
|
||||||
|
73
gns3server/modules/port_manager.py
Normal file
73
gns3server/modules/port_manager.py
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
# -*- 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 ipaddress
|
||||||
|
from .attic import find_unused_port
|
||||||
|
|
||||||
|
class PortManager:
|
||||||
|
"""
|
||||||
|
:param console: TCP console port
|
||||||
|
:param console_host: IP address to bind for console connections
|
||||||
|
:param console_start_port_range: TCP console port range start
|
||||||
|
:param console_end_port_range: TCP console port range end
|
||||||
|
"""
|
||||||
|
def __init__(self,
|
||||||
|
console_host,
|
||||||
|
console_bind_to_any,
|
||||||
|
console_start_port_range=10000,
|
||||||
|
console_end_port_range=15000):
|
||||||
|
|
||||||
|
self._console_start_port_range = console_start_port_range
|
||||||
|
self._console_end_port_range = console_end_port_range
|
||||||
|
self._used_ports = set()
|
||||||
|
|
||||||
|
if console_bind_to_any:
|
||||||
|
if ipaddress.ip_address(console_host).version == 6:
|
||||||
|
self._console_host = "::"
|
||||||
|
else:
|
||||||
|
self._console_host = "0.0.0.0"
|
||||||
|
else:
|
||||||
|
self._console_host = console_host
|
||||||
|
|
||||||
|
def get_free_port(self):
|
||||||
|
"""Get an available console port and reserve it"""
|
||||||
|
port = find_unused_port(self._console_start_port_range,
|
||||||
|
self._console_end_port_range,
|
||||||
|
host=self._console_host,
|
||||||
|
socket_type='TCP',
|
||||||
|
ignore_ports=self._used_ports)
|
||||||
|
self._used_ports.add(port)
|
||||||
|
return port
|
||||||
|
|
||||||
|
def reserve_port(port):
|
||||||
|
"""
|
||||||
|
Reserve a specific port number
|
||||||
|
|
||||||
|
:param port: Port number
|
||||||
|
"""
|
||||||
|
if port in self._used_ports:
|
||||||
|
raise Exception("Port already {} in use".format(port))
|
||||||
|
self._used_ports.add(port)
|
||||||
|
|
||||||
|
def release_port(port):
|
||||||
|
"""
|
||||||
|
Release a specific port number
|
||||||
|
|
||||||
|
:param port: Port number
|
||||||
|
"""
|
||||||
|
self._used_ports.remove(port)
|
||||||
|
|
@ -48,17 +48,11 @@ class VPCSDevice(BaseVM):
|
|||||||
:param path: path to VPCS executable
|
:param path: path to VPCS executable
|
||||||
:param working_dir: path to a working directory
|
:param working_dir: path to a working directory
|
||||||
:param console: TCP console port
|
:param console: TCP console port
|
||||||
:param console_host: IP address to bind for console connections
|
|
||||||
:param console_start_port_range: TCP console port range start
|
|
||||||
:param console_end_port_range: TCP console port range end
|
|
||||||
"""
|
"""
|
||||||
def __init__(self, name, vpcs_id,
|
def __init__(self, name, vpcs_id, port_manager,
|
||||||
path = None,
|
path = None,
|
||||||
working_dir = None,
|
working_dir = None,
|
||||||
console=None,
|
console=None):
|
||||||
console_host="0.0.0.0",
|
|
||||||
console_start_port_range=4512,
|
|
||||||
console_end_port_range=5000):
|
|
||||||
|
|
||||||
#self._path = path
|
#self._path = path
|
||||||
#self._working_dir = working_dir
|
#self._working_dir = working_dir
|
||||||
@ -67,13 +61,10 @@ class VPCSDevice(BaseVM):
|
|||||||
self._working_dir = "/tmp"
|
self._working_dir = "/tmp"
|
||||||
|
|
||||||
self._console = console
|
self._console = console
|
||||||
self._console_host = console_host
|
|
||||||
self._command = []
|
self._command = []
|
||||||
self._process = None
|
self._process = None
|
||||||
self._vpcs_stdout_file = ""
|
self._vpcs_stdout_file = ""
|
||||||
self._started = False
|
self._started = False
|
||||||
self._console_start_port_range = console_start_port_range
|
|
||||||
self._console_end_port_range = console_end_port_range
|
|
||||||
|
|
||||||
# VPCS settings
|
# VPCS settings
|
||||||
self._script_file = ""
|
self._script_file = ""
|
||||||
@ -87,8 +78,16 @@ class VPCSDevice(BaseVM):
|
|||||||
# # create the device own working directory
|
# # create the device own working directory
|
||||||
# self.working_dir = working_dir_path
|
# self.working_dir = working_dir_path
|
||||||
#
|
#
|
||||||
|
try:
|
||||||
|
if not self._console:
|
||||||
|
self._console = port_manager.get_free_port()
|
||||||
|
else:
|
||||||
|
self._console = port_manager.reserve_port(self._console)
|
||||||
|
except Exception as e:
|
||||||
|
raise VPCSError(e)
|
||||||
|
|
||||||
self._check_requirements()
|
self._check_requirements()
|
||||||
super().__init__(name, vpcs_id)
|
super().__init__(name, vpcs_id, port_manager)
|
||||||
|
|
||||||
def _check_requirements(self):
|
def _check_requirements(self):
|
||||||
"""
|
"""
|
||||||
@ -180,7 +179,6 @@ class VPCSDevice(BaseVM):
|
|||||||
flags = 0
|
flags = 0
|
||||||
if sys.platform.startswith("win32"):
|
if sys.platform.startswith("win32"):
|
||||||
flags = subprocess.CREATE_NEW_PROCESS_GROUP
|
flags = subprocess.CREATE_NEW_PROCESS_GROUP
|
||||||
yield from asyncio.create_subprocess_exec()
|
|
||||||
with open(self._vpcs_stdout_file, "w") as fd:
|
with open(self._vpcs_stdout_file, "w") as fd:
|
||||||
self._process = yield from asyncio.create_subprocess_exec(*self._command,
|
self._process = yield from asyncio.create_subprocess_exec(*self._command,
|
||||||
stdout=fd,
|
stdout=fd,
|
||||||
|
@ -24,7 +24,6 @@ import sys
|
|||||||
import signal
|
import signal
|
||||||
import asyncio
|
import asyncio
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import ipaddress
|
|
||||||
import functools
|
import functools
|
||||||
import types
|
import types
|
||||||
import time
|
import time
|
||||||
@ -32,6 +31,7 @@ import time
|
|||||||
from .web.route import Route
|
from .web.route import Route
|
||||||
from .config import Config
|
from .config import Config
|
||||||
from .modules import MODULES
|
from .modules import MODULES
|
||||||
|
from .modules.port_manager import PortManager
|
||||||
|
|
||||||
#TODO: get rid of * have something generic to automatically import handlers so the routes can be found
|
#TODO: get rid of * have something generic to automatically import handlers so the routes can be found
|
||||||
from gns3server.handlers import *
|
from gns3server.handlers import *
|
||||||
@ -48,14 +48,7 @@ class Server:
|
|||||||
self._port = port
|
self._port = port
|
||||||
self._loop = None
|
self._loop = None
|
||||||
self._start_time = time.time()
|
self._start_time = time.time()
|
||||||
|
self._port_manager = PortManager(host, console_bind_to_any)
|
||||||
if console_bind_to_any:
|
|
||||||
if ipaddress.ip_address(self._host).version == 6:
|
|
||||||
self._console_host = "::"
|
|
||||||
else:
|
|
||||||
self._console_host = "0.0.0.0"
|
|
||||||
else:
|
|
||||||
self._console_host = self._host
|
|
||||||
|
|
||||||
#TODO: server config file support, to be reviewed
|
#TODO: server config file support, to be reviewed
|
||||||
# # get the projects and temp directories from the configuration file (passed to the modules)
|
# # get the projects and temp directories from the configuration file (passed to the modules)
|
||||||
@ -147,7 +140,8 @@ class Server:
|
|||||||
app.router.add_route(method, route, handler)
|
app.router.add_route(method, route, handler)
|
||||||
for module in MODULES:
|
for module in MODULES:
|
||||||
log.debug("loading module {}".format(module.__name__))
|
log.debug("loading module {}".format(module.__name__))
|
||||||
module.instance()
|
m = module.instance()
|
||||||
|
m.port_manager = self._port_manager
|
||||||
|
|
||||||
log.info("starting server on {}:{}".format(self._host, self._port))
|
log.info("starting server on {}:{}".format(self._host, self._port))
|
||||||
self._loop.run_until_complete(self._run_application(app))
|
self._loop.run_until_complete(self._run_application(app))
|
||||||
|
@ -29,6 +29,7 @@ from gns3server.web.route import Route
|
|||||||
#TODO: get rid of *
|
#TODO: get rid of *
|
||||||
from gns3server.handlers import *
|
from gns3server.handlers import *
|
||||||
from gns3server.modules import MODULES
|
from gns3server.modules import MODULES
|
||||||
|
from gns3server.modules.port_manager import PortManager
|
||||||
|
|
||||||
|
|
||||||
class Query:
|
class Query:
|
||||||
@ -137,9 +138,12 @@ def loop(request):
|
|||||||
request.addfinalizer(tear_down)
|
request.addfinalizer(tear_down)
|
||||||
return loop
|
return loop
|
||||||
|
|
||||||
|
@pytest.fixture(scope="module")
|
||||||
|
def port_manager():
|
||||||
|
return PortManager("127.0.0.1", False)
|
||||||
|
|
||||||
@pytest.fixture(scope="module")
|
@pytest.fixture(scope="module")
|
||||||
def server(request, loop):
|
def server(request, loop, port_manager):
|
||||||
port = _get_unused_port()
|
port = _get_unused_port()
|
||||||
host = "localhost"
|
host = "localhost"
|
||||||
app = web.Application()
|
app = web.Application()
|
||||||
@ -147,6 +151,7 @@ def server(request, loop):
|
|||||||
app.router.add_route(method, route, handler)
|
app.router.add_route(method, route, handler)
|
||||||
for module in MODULES:
|
for module in MODULES:
|
||||||
instance = module.instance()
|
instance = module.instance()
|
||||||
|
instance.port_manager = port_manager
|
||||||
srv = loop.create_server(app.make_handler(), host, port)
|
srv = loop.create_server(app.make_handler(), host, port)
|
||||||
srv = loop.run_until_complete(srv)
|
srv = loop.run_until_complete(srv)
|
||||||
|
|
||||||
|
@ -20,41 +20,41 @@ import asyncio
|
|||||||
from tests.utils import asyncio_patch
|
from tests.utils import asyncio_patch
|
||||||
|
|
||||||
#Move loop to util
|
#Move loop to util
|
||||||
from tests.api.base import loop
|
from tests.api.base import loop, port_manager
|
||||||
from asyncio.subprocess import Process
|
from asyncio.subprocess import Process
|
||||||
from unittest.mock import patch, MagicMock
|
from unittest.mock import patch, MagicMock
|
||||||
from gns3server.modules.vpcs.vpcs_device import VPCSDevice
|
from gns3server.modules.vpcs.vpcs_device import VPCSDevice
|
||||||
from gns3server.modules.vpcs.vpcs_error import VPCSError
|
from gns3server.modules.vpcs.vpcs_error import VPCSError
|
||||||
|
|
||||||
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.6".encode("utf-8"))
|
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.6".encode("utf-8"))
|
||||||
def test_vm(tmpdir):
|
def test_vm(tmpdir, port_manager):
|
||||||
vm = VPCSDevice("test", 42, working_dir=str(tmpdir), path="/bin/test")
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
||||||
assert vm.name == "test"
|
assert vm.name == "test"
|
||||||
assert vm.id == 42
|
assert vm.id == 42
|
||||||
|
|
||||||
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.1".encode("utf-8"))
|
@patch("subprocess.check_output", return_value="Welcome to Virtual PC Simulator, version 0.1".encode("utf-8"))
|
||||||
def test_vm_invalid_vpcs_version(tmpdir):
|
def test_vm_invalid_vpcs_version(tmpdir, port_manager):
|
||||||
with pytest.raises(VPCSError):
|
with pytest.raises(VPCSError):
|
||||||
vm = VPCSDevice("test", 42, working_dir=str(tmpdir), path="/bin/test")
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
||||||
assert vm.name == "test"
|
assert vm.name == "test"
|
||||||
assert vm.id == 42
|
assert vm.id == 42
|
||||||
|
|
||||||
def test_vm_invalid_vpcs_path(tmpdir):
|
def test_vm_invalid_vpcs_path(tmpdir, port_manager):
|
||||||
with pytest.raises(VPCSError):
|
with pytest.raises(VPCSError):
|
||||||
vm = VPCSDevice("test", 42, working_dir=str(tmpdir), path="/bin/test_fake")
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test_fake")
|
||||||
assert vm.name == "test"
|
assert vm.name == "test"
|
||||||
assert vm.id == 42
|
assert vm.id == 42
|
||||||
|
|
||||||
def test_start(tmpdir, loop):
|
def test_start(tmpdir, loop, port_manager):
|
||||||
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()):
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()):
|
||||||
vm = VPCSDevice("test", 42, working_dir=str(tmpdir), path="/bin/test")
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
||||||
loop.run_until_complete(asyncio.async(vm.start()))
|
loop.run_until_complete(asyncio.async(vm.start()))
|
||||||
assert vm.is_running() == True
|
assert vm.is_running() == True
|
||||||
|
|
||||||
def test_stop(tmpdir, loop):
|
def test_stop(tmpdir, loop, port_manager):
|
||||||
process = MagicMock()
|
process = MagicMock()
|
||||||
with asyncio_patch("asyncio.create_subprocess_exec", return_value=process):
|
with asyncio_patch("asyncio.create_subprocess_exec", return_value=process):
|
||||||
vm = VPCSDevice("test", 42, working_dir=str(tmpdir), path="/bin/test")
|
vm = VPCSDevice("test", 42, port_manager, working_dir=str(tmpdir), path="/bin/test")
|
||||||
loop.run_until_complete(asyncio.async(vm.start()))
|
loop.run_until_complete(asyncio.async(vm.start()))
|
||||||
assert vm.is_running() == True
|
assert vm.is_running() == True
|
||||||
loop.run_until_complete(asyncio.async(vm.stop()))
|
loop.run_until_complete(asyncio.async(vm.stop()))
|
||||||
|
Loading…
Reference in New Issue
Block a user