2013-10-30 21:58:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2015-01-14 00:05:26 +00:00
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
2013-10-30 21:58:17 +00:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2013-12-06 04:39:27 +00:00
|
|
|
"""
|
2014-03-11 21:45:04 +00:00
|
|
|
Set up and run the server.
|
2013-12-06 04:39:27 +00:00
|
|
|
"""
|
|
|
|
|
2013-12-05 07:21:06 +00:00
|
|
|
import os
|
2015-01-14 00:05:26 +00:00
|
|
|
import sys
|
2013-12-07 00:52:16 +00:00
|
|
|
import signal
|
2015-01-14 00:05:26 +00:00
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
2016-05-17 10:39:23 +00:00
|
|
|
import aiohttp_cors
|
2015-01-14 00:05:26 +00:00
|
|
|
import functools
|
|
|
|
import time
|
2015-05-05 09:33:47 +00:00
|
|
|
import atexit
|
2014-04-11 01:42:26 +00:00
|
|
|
|
2016-03-03 15:02:27 +00:00
|
|
|
from .route import Route
|
|
|
|
from ..config import Config
|
2016-04-15 15:57:06 +00:00
|
|
|
from ..compute import MODULES
|
|
|
|
from ..compute.port_manager import PortManager
|
2017-05-15 13:23:29 +00:00
|
|
|
from ..compute.qemu import Qemu
|
2016-04-19 13:35:50 +00:00
|
|
|
from ..controller import Controller
|
|
|
|
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2015-02-27 02:31:18 +00:00
|
|
|
# do not delete this import
|
|
|
|
import gns3server.handlers
|
2015-01-14 00:05:26 +00:00
|
|
|
|
2013-12-05 07:21:06 +00:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2017-10-26 14:29:01 +00:00
|
|
|
if not (aiohttp.__version__.startswith("2.2") or aiohttp.__version__.startswith("2.3")):
|
|
|
|
raise RuntimeError("aiohttp 2.2.x or 2.3.x is required to run the GNS3 server")
|
2017-05-31 14:56:28 +00:00
|
|
|
|
2014-09-29 21:56:01 +00:00
|
|
|
|
2016-03-03 15:02:27 +00:00
|
|
|
class WebServer:
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2016-06-15 23:37:43 +00:00
|
|
|
def __init__(self, host, port):
|
2013-10-30 21:58:17 +00:00
|
|
|
|
2013-12-05 07:21:06 +00:00
|
|
|
self._host = host
|
|
|
|
self._port = port
|
2015-01-14 00:05:26 +00:00
|
|
|
self._loop = None
|
2015-03-13 00:44:05 +00:00
|
|
|
self._handler = None
|
2016-09-08 09:23:13 +00:00
|
|
|
self._server = None
|
|
|
|
self._app = None
|
2015-01-14 00:05:26 +00:00
|
|
|
self._start_time = time.time()
|
2016-06-15 23:37:43 +00:00
|
|
|
self._running = False
|
2016-08-26 12:14:19 +00:00
|
|
|
self._closing = False
|
2014-11-10 06:01:13 +00:00
|
|
|
|
2015-03-13 00:44:05 +00:00
|
|
|
@staticmethod
|
2016-06-15 23:37:43 +00:00
|
|
|
def instance(host=None, port=None):
|
2015-03-13 00:44:05 +00:00
|
|
|
"""
|
|
|
|
Singleton to return only one instance of Server.
|
|
|
|
|
|
|
|
:returns: instance of Server
|
|
|
|
"""
|
|
|
|
|
2016-03-03 15:02:27 +00:00
|
|
|
if not hasattr(WebServer, "_instance") or WebServer._instance is None:
|
2015-03-13 00:50:38 +00:00
|
|
|
assert host is not None
|
|
|
|
assert port is not None
|
2016-06-15 23:37:43 +00:00
|
|
|
WebServer._instance = WebServer(host, port)
|
2016-03-03 15:02:27 +00:00
|
|
|
return WebServer._instance
|
2015-03-13 00:44:05 +00:00
|
|
|
|
2015-02-22 19:36:44 +00:00
|
|
|
def _run_application(self, handler, ssl_context=None):
|
2015-02-01 22:56:10 +00:00
|
|
|
try:
|
2016-12-05 09:28:11 +00:00
|
|
|
srv = self._loop.create_server(handler, self._host, self._port, ssl=ssl_context)
|
|
|
|
self._server, startup_res = self._loop.run_until_complete(asyncio.gather(srv, self._app.startup(), loop=self._loop))
|
2017-10-01 16:47:16 +00:00
|
|
|
except (RuntimeError, OSError, asyncio.CancelledError) as e:
|
2015-02-01 22:56:10 +00:00
|
|
|
log.critical("Could not start the server: {}".format(e))
|
2016-08-31 07:57:37 +00:00
|
|
|
return False
|
2016-09-08 09:23:13 +00:00
|
|
|
return True
|
2015-01-14 00:05:26 +00:00
|
|
|
|
2015-02-03 00:01:25 +00:00
|
|
|
@asyncio.coroutine
|
2015-03-13 00:44:05 +00:00
|
|
|
def shutdown_server(self):
|
2013-12-06 04:39:27 +00:00
|
|
|
"""
|
2015-03-13 00:44:05 +00:00
|
|
|
Cleanly shutdown the server.
|
2013-10-30 21:58:17 +00:00
|
|
|
"""
|
|
|
|
|
2016-08-26 12:14:19 +00:00
|
|
|
if not self._closing:
|
|
|
|
self._closing = True
|
|
|
|
else:
|
|
|
|
log.warning("Close is already in progress")
|
|
|
|
return
|
|
|
|
|
2016-09-08 09:23:13 +00:00
|
|
|
if self._server:
|
|
|
|
self._server.close()
|
|
|
|
yield from self._server.wait_closed()
|
|
|
|
if self._app:
|
|
|
|
yield from self._app.shutdown()
|
2015-03-13 00:44:05 +00:00
|
|
|
if self._handler:
|
2017-10-26 14:29:01 +00:00
|
|
|
try:
|
|
|
|
# aiohttp < 2.3
|
|
|
|
yield from self._handler.finish_connections(2) # Parameter is timeout
|
|
|
|
except AttributeError:
|
|
|
|
# aiohttp >= 2.3
|
|
|
|
yield from self._handler.shutdown(2) # Parameter is timeout
|
2016-09-08 09:23:13 +00:00
|
|
|
if self._app:
|
|
|
|
yield from self._app.cleanup()
|
2015-03-13 00:44:05 +00:00
|
|
|
|
2016-09-07 08:04:28 +00:00
|
|
|
yield from Controller.instance().stop()
|
2016-06-02 11:44:12 +00:00
|
|
|
|
2015-01-22 10:49:22 +00:00
|
|
|
for module in MODULES:
|
|
|
|
log.debug("Unloading module {}".format(module.__name__))
|
|
|
|
m = module.instance()
|
2015-02-03 00:01:25 +00:00
|
|
|
yield from m.unload()
|
2015-02-24 00:42:55 +00:00
|
|
|
|
2016-10-26 12:43:47 +00:00
|
|
|
if PortManager.instance().tcp_ports:
|
|
|
|
log.warning("TCP ports are still used {}".format(PortManager.instance().tcp_ports))
|
2015-02-24 00:42:55 +00:00
|
|
|
|
2016-10-26 12:43:47 +00:00
|
|
|
if PortManager.instance().udp_ports:
|
|
|
|
log.warning("UDP ports are still used {}".format(PortManager.instance().udp_ports))
|
2015-02-24 00:42:55 +00:00
|
|
|
|
2015-10-16 18:42:13 +00:00
|
|
|
for task in asyncio.Task.all_tasks():
|
|
|
|
task.cancel()
|
2016-08-18 13:04:43 +00:00
|
|
|
try:
|
|
|
|
yield from asyncio.wait_for(task, 1)
|
2017-07-12 08:57:03 +00:00
|
|
|
except BaseException:
|
2016-08-18 13:04:43 +00:00
|
|
|
pass
|
2015-10-16 18:42:13 +00:00
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
self._loop.stop()
|
2014-03-16 03:41:04 +00:00
|
|
|
|
2015-03-13 00:44:05 +00:00
|
|
|
def _signal_handling(self):
|
2014-05-08 01:31:53 +00:00
|
|
|
|
2016-05-30 13:28:53 +00:00
|
|
|
def signal_handler(signame, *args):
|
2015-01-20 13:59:19 +00:00
|
|
|
log.warning("Server has got signal {}, exiting...".format(signame))
|
2015-10-12 14:16:44 +00:00
|
|
|
asyncio.async(self.shutdown_server())
|
2015-01-14 00:05:26 +00:00
|
|
|
|
|
|
|
signals = ["SIGTERM", "SIGINT"]
|
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
signals.extend(["SIGBREAK"])
|
|
|
|
else:
|
|
|
|
signals.extend(["SIGHUP", "SIGQUIT"])
|
2014-03-16 03:41:04 +00:00
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
for signal_name in signals:
|
2015-10-12 14:16:44 +00:00
|
|
|
callback = functools.partial(signal_handler, signal_name)
|
2015-01-14 00:05:26 +00:00
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
# add_signal_handler() is not yet supported on Windows
|
|
|
|
signal.signal(getattr(signal, signal_name), callback)
|
|
|
|
else:
|
|
|
|
self._loop.add_signal_handler(getattr(signal, signal_name), callback)
|
|
|
|
|
2015-01-24 19:11:51 +00:00
|
|
|
def _create_ssl_context(self, server_config):
|
|
|
|
|
|
|
|
import ssl
|
|
|
|
ssl_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
|
|
|
|
certfile = server_config["certfile"]
|
|
|
|
certkey = server_config["certkey"]
|
|
|
|
try:
|
|
|
|
ssl_context.load_cert_chain(certfile, certkey)
|
|
|
|
except FileNotFoundError:
|
|
|
|
log.critical("Could not find the SSL certfile or certkey")
|
|
|
|
raise SystemExit
|
|
|
|
except ssl.SSLError as e:
|
|
|
|
log.critical("SSL error: {}".format(e))
|
|
|
|
raise SystemExit
|
2015-06-11 15:07:13 +00:00
|
|
|
log.info("SSL is enabled")
|
2015-01-24 19:11:51 +00:00
|
|
|
return ssl_context
|
|
|
|
|
2015-02-20 21:40:20 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def start_shell(self):
|
2015-02-24 00:08:34 +00:00
|
|
|
try:
|
|
|
|
from ptpython.repl import embed
|
|
|
|
except ImportError:
|
|
|
|
log.error("Unable to start a shell: the ptpython module must be installed!")
|
|
|
|
return
|
2016-09-01 11:45:56 +00:00
|
|
|
yield from embed(globals(), locals(), return_asyncio_coroutine=True, patch_stdout=True, history_filename=".gns3_shell_history")
|
2015-02-20 21:40:20 +00:00
|
|
|
|
2015-05-05 09:33:47 +00:00
|
|
|
def _exit_handling(self):
|
2015-07-20 22:02:28 +00:00
|
|
|
"""
|
|
|
|
Makes sure the asyncio loop is closed.
|
|
|
|
"""
|
|
|
|
|
2015-05-05 09:33:47 +00:00
|
|
|
def close_asyncio_loop():
|
|
|
|
loop = None
|
|
|
|
try:
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
if loop is not None:
|
|
|
|
loop.close()
|
|
|
|
|
|
|
|
atexit.register(close_asyncio_loop)
|
|
|
|
|
2017-03-21 17:06:45 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def _on_startup(self, *args):
|
|
|
|
"""
|
|
|
|
Called when the HTTP server start
|
|
|
|
"""
|
|
|
|
yield from Controller.instance().start()
|
2017-05-15 13:23:29 +00:00
|
|
|
# Because with a large image collection
|
|
|
|
# without md5sum already computed we start the
|
|
|
|
# computing with server start
|
|
|
|
asyncio.async(Qemu.instance().list_images())
|
2017-03-21 17:06:45 +00:00
|
|
|
|
2013-10-30 21:58:17 +00:00
|
|
|
def run(self):
|
2013-12-05 07:21:06 +00:00
|
|
|
"""
|
2015-01-14 00:05:26 +00:00
|
|
|
Starts the server.
|
2013-10-30 21:58:17 +00:00
|
|
|
"""
|
|
|
|
|
2016-12-19 10:11:51 +00:00
|
|
|
server_logger = logging.getLogger('aiohttp.server')
|
|
|
|
# In debug mode we don't use the standard request log but a more complete in response.py
|
|
|
|
if log.getEffectiveLevel() == logging.DEBUG:
|
|
|
|
server_logger.setLevel(logging.CRITICAL)
|
|
|
|
|
2015-01-20 22:28:40 +00:00
|
|
|
logger = logging.getLogger("asyncio")
|
2015-10-14 16:10:05 +00:00
|
|
|
logger.setLevel(logging.ERROR)
|
2015-01-20 22:28:40 +00:00
|
|
|
|
2015-01-23 04:11:57 +00:00
|
|
|
if sys.platform.startswith("win"):
|
2016-05-30 13:18:49 +00:00
|
|
|
loop = asyncio.get_event_loop()
|
2015-02-27 19:51:39 +00:00
|
|
|
# Add a periodic callback to give a chance to process signals on Windows
|
|
|
|
# because asyncio.add_signal_handler() is not supported yet on that platform
|
|
|
|
# otherwise the loop runs outside of signal module's ability to trap signals.
|
2016-06-02 11:44:12 +00:00
|
|
|
|
2015-02-27 19:51:39 +00:00
|
|
|
def wakeup():
|
2015-03-14 00:57:27 +00:00
|
|
|
loop.call_later(0.5, wakeup)
|
|
|
|
loop.call_later(0.5, wakeup)
|
2015-01-23 04:11:57 +00:00
|
|
|
|
2016-05-30 13:18:49 +00:00
|
|
|
server_config = Config.instance().get_section_config("Server")
|
|
|
|
|
2015-01-24 19:11:51 +00:00
|
|
|
ssl_context = None
|
|
|
|
if server_config.getboolean("ssl"):
|
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
log.critical("SSL mode is not supported on Windows")
|
|
|
|
raise SystemExit
|
|
|
|
ssl_context = self._create_ssl_context(server_config)
|
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
self._loop = asyncio.get_event_loop()
|
2015-10-12 14:26:07 +00:00
|
|
|
# Asyncio will raise error if coroutine is not called
|
|
|
|
self._loop.set_debug(True)
|
|
|
|
|
2016-01-15 09:11:32 +00:00
|
|
|
for key, val in os.environ.items():
|
|
|
|
log.debug("ENV %s=%s", key, val)
|
|
|
|
|
2016-09-08 09:23:13 +00:00
|
|
|
self._app = aiohttp.web.Application()
|
2017-03-21 17:06:45 +00:00
|
|
|
# Background task started with the server
|
|
|
|
self._app.on_startup.append(self._on_startup)
|
2016-12-05 09:28:11 +00:00
|
|
|
|
2016-05-17 10:39:23 +00:00
|
|
|
# Allow CORS for this domains
|
2016-09-08 09:23:13 +00:00
|
|
|
cors = aiohttp_cors.setup(self._app, defaults={
|
2016-05-17 10:39:23 +00:00
|
|
|
# Default web server for web gui dev
|
2016-05-25 09:36:39 +00:00
|
|
|
"http://127.0.0.1:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
|
2016-05-17 15:51:22 +00:00
|
|
|
"http://localhost:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
|
2017-10-20 11:21:43 +00:00
|
|
|
"http://127.0.0.1:4200": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
|
|
|
|
"http://localhost:4200": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
|
|
|
|
"http://gns3.github.io": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
|
|
|
|
"https://gns3.github.io": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*")
|
2016-05-17 10:39:23 +00:00
|
|
|
})
|
2016-10-26 12:43:47 +00:00
|
|
|
|
|
|
|
PortManager.instance().console_host = self._host
|
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
for method, route, handler in Route.get_routes():
|
2015-01-20 13:59:19 +00:00
|
|
|
log.debug("Adding route: {} {}".format(method, route))
|
2016-09-08 09:23:13 +00:00
|
|
|
cors.add(self._app.router.add_route(method, route, handler))
|
2015-01-14 00:05:26 +00:00
|
|
|
for module in MODULES:
|
2015-01-20 13:59:19 +00:00
|
|
|
log.debug("Loading module {}".format(module.__name__))
|
2015-01-15 15:59:01 +00:00
|
|
|
m = module.instance()
|
2016-10-26 12:43:47 +00:00
|
|
|
m.port_manager = PortManager.instance()
|
2013-12-07 00:52:16 +00:00
|
|
|
|
2015-01-20 13:59:19 +00:00
|
|
|
log.info("Starting server on {}:{}".format(self._host, self._port))
|
2016-12-19 10:11:51 +00:00
|
|
|
|
|
|
|
self._handler = self._app.make_handler()
|
2016-09-08 09:23:13 +00:00
|
|
|
if self._run_application(self._handler, ssl_context) is False:
|
2016-08-31 07:57:37 +00:00
|
|
|
self._loop.stop()
|
|
|
|
return
|
2016-08-16 14:04:20 +00:00
|
|
|
|
2015-03-13 00:44:05 +00:00
|
|
|
self._signal_handling()
|
2015-05-05 09:33:47 +00:00
|
|
|
self._exit_handling()
|
|
|
|
|
2015-02-20 21:40:20 +00:00
|
|
|
if server_config.getboolean("shell"):
|
|
|
|
asyncio.async(self.start_shell())
|
|
|
|
|
2015-03-13 00:48:07 +00:00
|
|
|
try:
|
|
|
|
self._loop.run_forever()
|
|
|
|
except TypeError as e:
|
|
|
|
# This is to ignore an asyncio.windows_events exception
|
2015-03-13 00:50:38 +00:00
|
|
|
# on Windows when the process gets the SIGBREAK signal
|
2015-03-13 00:48:07 +00:00
|
|
|
# TypeError: async() takes 1 positional argument but 3 were given
|
|
|
|
log.warning("TypeError exception in the loop {}".format(e))
|
2015-07-20 22:02:28 +00:00
|
|
|
finally:
|
2015-07-26 21:27:47 +00:00
|
|
|
if self._loop.is_running():
|
2016-09-08 09:23:13 +00:00
|
|
|
self._loop.run_until_complete(self.shutdown_server())
|