2013-10-30 23:58:17 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2015-01-14 02:05:26 +02:00
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
2013-10-30 23:58:17 +02: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 06:39:27 +02:00
|
|
|
"""
|
2014-03-11 23:45:04 +02:00
|
|
|
Set up and run the server.
|
2013-12-06 06:39:27 +02:00
|
|
|
"""
|
|
|
|
|
2013-12-05 09:21:06 +02:00
|
|
|
import os
|
2015-01-14 02:05:26 +02:00
|
|
|
import sys
|
2013-12-07 02:52:16 +02:00
|
|
|
import signal
|
2015-01-14 02:05:26 +02:00
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
2016-05-17 13:39:23 +03:00
|
|
|
import aiohttp_cors
|
2015-01-14 02:05:26 +02:00
|
|
|
import functools
|
|
|
|
import types
|
|
|
|
import time
|
2015-05-05 12:33:47 +03:00
|
|
|
import atexit
|
2014-04-11 04:42:26 +03:00
|
|
|
|
2016-03-03 17:02:27 +02:00
|
|
|
from .route import Route
|
|
|
|
from .request_handler import RequestHandler
|
|
|
|
from ..config import Config
|
2016-04-15 18:57:06 +03:00
|
|
|
from ..compute import MODULES
|
|
|
|
from ..compute.port_manager import PortManager
|
2016-04-19 16:35:50 +03:00
|
|
|
from ..controller import Controller
|
|
|
|
|
2013-10-30 23:58:17 +02:00
|
|
|
|
2015-02-27 04:31:18 +02:00
|
|
|
# do not delete this import
|
|
|
|
import gns3server.handlers
|
2015-01-14 02:05:26 +02:00
|
|
|
|
2013-12-05 09:21:06 +02:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
2013-10-30 23:58:17 +02:00
|
|
|
|
2014-09-30 00:56:01 +03:00
|
|
|
|
2016-03-03 17:02:27 +02:00
|
|
|
class WebServer:
|
2013-10-30 23:58:17 +02:00
|
|
|
|
2015-01-23 22:01:23 +02:00
|
|
|
def __init__(self, host, port):
|
2013-10-30 23:58:17 +02:00
|
|
|
|
2013-12-05 09:21:06 +02:00
|
|
|
self._host = host
|
|
|
|
self._port = port
|
2015-01-14 02:05:26 +02:00
|
|
|
self._loop = None
|
2015-03-13 02:44:05 +02:00
|
|
|
self._handler = None
|
2015-01-14 02:05:26 +02:00
|
|
|
self._start_time = time.time()
|
2015-01-23 22:01:23 +02:00
|
|
|
self._port_manager = PortManager(host)
|
2014-11-10 08:01:13 +02:00
|
|
|
|
2015-03-13 02:44:05 +02:00
|
|
|
@staticmethod
|
|
|
|
def instance(host=None, port=None):
|
|
|
|
"""
|
|
|
|
Singleton to return only one instance of Server.
|
|
|
|
|
|
|
|
:returns: instance of Server
|
|
|
|
"""
|
|
|
|
|
2016-03-03 17:02:27 +02:00
|
|
|
if not hasattr(WebServer, "_instance") or WebServer._instance is None:
|
2015-03-13 02:50:38 +02:00
|
|
|
assert host is not None
|
|
|
|
assert port is not None
|
2016-03-03 17:02:27 +02:00
|
|
|
WebServer._instance = WebServer(host, port)
|
|
|
|
return WebServer._instance
|
2015-03-13 02:44:05 +02:00
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
@asyncio.coroutine
|
2015-02-22 21:36:44 +02:00
|
|
|
def _run_application(self, handler, ssl_context=None):
|
2015-01-14 02:05:26 +02:00
|
|
|
|
2015-02-02 00:56:10 +02:00
|
|
|
try:
|
2015-02-22 21:36:44 +02:00
|
|
|
server = yield from self._loop.create_server(handler, self._host, self._port, ssl=ssl_context)
|
2015-02-02 00:56:10 +02:00
|
|
|
except OSError as e:
|
|
|
|
log.critical("Could not start the server: {}".format(e))
|
|
|
|
self._loop.stop()
|
|
|
|
return
|
2015-01-14 02:05:26 +02:00
|
|
|
return server
|
|
|
|
|
2015-02-03 02:01:25 +02:00
|
|
|
@asyncio.coroutine
|
2015-03-13 02:44:05 +02:00
|
|
|
def shutdown_server(self):
|
2013-12-06 06:39:27 +02:00
|
|
|
"""
|
2015-03-13 02:44:05 +02:00
|
|
|
Cleanly shutdown the server.
|
2013-10-30 23:58:17 +02:00
|
|
|
"""
|
|
|
|
|
2015-03-13 02:44:05 +02:00
|
|
|
if self._handler:
|
2015-07-22 03:00:03 +03:00
|
|
|
yield from self._handler.finish_connections()
|
2015-07-21 01:02:28 +03:00
|
|
|
self._handler = None
|
2015-03-13 02:44:05 +02:00
|
|
|
|
2015-01-22 12:49:22 +02:00
|
|
|
for module in MODULES:
|
|
|
|
log.debug("Unloading module {}".format(module.__name__))
|
|
|
|
m = module.instance()
|
2015-02-03 02:01:25 +02:00
|
|
|
yield from m.unload()
|
2015-02-24 02:42:55 +02:00
|
|
|
|
|
|
|
if self._port_manager.tcp_ports:
|
|
|
|
log.warning("TCP ports are still used {}".format(self._port_manager.tcp_ports))
|
|
|
|
|
|
|
|
if self._port_manager.udp_ports:
|
|
|
|
log.warning("UDP ports are still used {}".format(self._port_manager.udp_ports))
|
|
|
|
|
2015-10-16 21:42:13 +03:00
|
|
|
for task in asyncio.Task.all_tasks():
|
|
|
|
task.cancel()
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
self._loop.stop()
|
2014-03-16 05:41:04 +02:00
|
|
|
|
2015-03-13 02:44:05 +02:00
|
|
|
def _signal_handling(self):
|
2014-05-08 04:31:53 +03:00
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
def signal_handler(signame):
|
2015-01-20 15:59:19 +02:00
|
|
|
log.warning("Server has got signal {}, exiting...".format(signame))
|
2015-10-12 17:16:44 +03:00
|
|
|
asyncio.async(self.shutdown_server())
|
2015-01-14 02:05:26 +02:00
|
|
|
|
|
|
|
signals = ["SIGTERM", "SIGINT"]
|
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
signals.extend(["SIGBREAK"])
|
|
|
|
else:
|
|
|
|
signals.extend(["SIGHUP", "SIGQUIT"])
|
2014-03-16 05:41:04 +02:00
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
for signal_name in signals:
|
2015-10-12 17:16:44 +03:00
|
|
|
callback = functools.partial(signal_handler, signal_name)
|
2015-01-14 02:05:26 +02: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 21:11:51 +02: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 18:07:13 +03:00
|
|
|
log.info("SSL is enabled")
|
2015-01-24 21:11:51 +02:00
|
|
|
return ssl_context
|
|
|
|
|
2015-02-20 23:40:20 +02:00
|
|
|
@asyncio.coroutine
|
|
|
|
def start_shell(self):
|
2015-02-24 02:08:34 +02:00
|
|
|
try:
|
|
|
|
from ptpython.repl import embed
|
|
|
|
except ImportError:
|
|
|
|
log.error("Unable to start a shell: the ptpython module must be installed!")
|
|
|
|
return
|
2015-02-20 23:40:20 +02:00
|
|
|
yield from embed(globals(), locals(), return_asyncio_coroutine=True, patch_stdout=True)
|
|
|
|
|
2015-05-05 12:33:47 +03:00
|
|
|
def _exit_handling(self):
|
2015-07-21 01:02:28 +03:00
|
|
|
"""
|
|
|
|
Makes sure the asyncio loop is closed.
|
|
|
|
"""
|
|
|
|
|
2015-05-05 12:33:47 +03: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)
|
|
|
|
|
2013-10-30 23:58:17 +02:00
|
|
|
def run(self):
|
2013-12-05 09:21:06 +02:00
|
|
|
"""
|
2015-01-14 02:05:26 +02:00
|
|
|
Starts the server.
|
2013-10-30 23:58:17 +02:00
|
|
|
"""
|
|
|
|
|
2015-01-21 00:28:40 +02:00
|
|
|
logger = logging.getLogger("asyncio")
|
2015-10-14 19:10:05 +03:00
|
|
|
logger.setLevel(logging.ERROR)
|
2015-01-21 00:28:40 +02:00
|
|
|
|
2015-01-24 21:11:51 +02:00
|
|
|
server_config = Config.instance().get_section_config("Server")
|
2015-01-23 06:11:57 +02:00
|
|
|
if sys.platform.startswith("win"):
|
|
|
|
# use the Proactor event loop on Windows
|
2015-02-27 21:51:39 +02:00
|
|
|
loop = asyncio.ProactorEventLoop()
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
def wakeup():
|
2015-03-14 02:57:27 +02:00
|
|
|
loop.call_later(0.5, wakeup)
|
|
|
|
loop.call_later(0.5, wakeup)
|
2015-02-27 21:51:39 +02:00
|
|
|
asyncio.set_event_loop(loop)
|
2015-01-23 06:11:57 +02:00
|
|
|
|
2015-01-24 21:11:51 +02: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 02:05:26 +02:00
|
|
|
self._loop = asyncio.get_event_loop()
|
2015-10-12 17:26:07 +03:00
|
|
|
# Asyncio will raise error if coroutine is not called
|
|
|
|
self._loop.set_debug(True)
|
|
|
|
|
2016-04-19 16:35:50 +03:00
|
|
|
if server_config.getboolean("controller"):
|
|
|
|
asyncio.async(Controller.instance().load())
|
|
|
|
|
2016-01-15 11:11:32 +02:00
|
|
|
for key, val in os.environ.items():
|
|
|
|
log.debug("ENV %s=%s", key, val)
|
|
|
|
|
2015-01-14 02:05:26 +02:00
|
|
|
app = aiohttp.web.Application()
|
2016-05-17 13:39:23 +03:00
|
|
|
# Allow CORS for this domains
|
|
|
|
cors = aiohttp_cors.setup(app, defaults={
|
|
|
|
# Default web server for web gui dev
|
|
|
|
"http://localhost:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*")
|
|
|
|
})
|
2015-01-14 02:05:26 +02:00
|
|
|
for method, route, handler in Route.get_routes():
|
2015-01-20 15:59:19 +02:00
|
|
|
log.debug("Adding route: {} {}".format(method, route))
|
2016-05-17 13:39:23 +03:00
|
|
|
cors.add(app.router.add_route(method, route, handler))
|
2015-01-14 02:05:26 +02:00
|
|
|
for module in MODULES:
|
2015-01-20 15:59:19 +02:00
|
|
|
log.debug("Loading module {}".format(module.__name__))
|
2015-01-15 17:59:01 +02:00
|
|
|
m = module.instance()
|
|
|
|
m.port_manager = self._port_manager
|
2013-12-07 02:52:16 +02:00
|
|
|
|
2015-01-20 15:59:19 +02:00
|
|
|
log.info("Starting server on {}:{}".format(self._host, self._port))
|
2015-03-13 02:44:05 +02:00
|
|
|
self._handler = app.make_handler(handler=RequestHandler)
|
2015-07-21 01:02:28 +03:00
|
|
|
server = self._run_application(self._handler, ssl_context)
|
|
|
|
self._loop.run_until_complete(server)
|
2015-03-13 02:44:05 +02:00
|
|
|
self._signal_handling()
|
2015-05-05 12:33:47 +03:00
|
|
|
self._exit_handling()
|
|
|
|
|
2015-02-20 23:40:20 +02:00
|
|
|
if server_config.getboolean("shell"):
|
|
|
|
asyncio.async(self.start_shell())
|
|
|
|
|
2015-03-13 02:48:07 +02:00
|
|
|
try:
|
|
|
|
self._loop.run_forever()
|
|
|
|
except TypeError as e:
|
|
|
|
# This is to ignore an asyncio.windows_events exception
|
2015-03-13 02:50:38 +02:00
|
|
|
# on Windows when the process gets the SIGBREAK signal
|
2015-03-13 02:48:07 +02:00
|
|
|
# TypeError: async() takes 1 positional argument but 3 were given
|
|
|
|
log.warning("TypeError exception in the loop {}".format(e))
|
2015-07-21 01:02:28 +03:00
|
|
|
finally:
|
2015-07-27 00:27:47 +03:00
|
|
|
if self._handler and self._loop.is_running():
|
2015-07-22 03:00:03 +03:00
|
|
|
self._loop.run_until_complete(self._handler.finish_connections())
|
2015-07-21 01:02:28 +03:00
|
|
|
server.close()
|
2015-07-27 00:27:47 +03:00
|
|
|
if self._loop.is_running():
|
|
|
|
self._loop.run_until_complete(app.finish())
|