2016-03-03 15:02:27 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 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/>.
|
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
import aiohttp
|
|
|
|
import asyncio
|
|
|
|
import json
|
2016-03-03 15:02:27 +00:00
|
|
|
|
2016-05-14 00:48:10 +00:00
|
|
|
from ..utils import parse_version
|
2016-03-04 15:11:31 +00:00
|
|
|
from ..controller.controller_error import ControllerError
|
|
|
|
from ..config import Config
|
2016-03-04 15:58:53 +00:00
|
|
|
from ..version import __version__
|
|
|
|
|
2016-03-04 15:11:31 +00:00
|
|
|
|
2016-03-04 15:55:59 +00:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2016-03-04 15:11:31 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
class ComputeError(ControllerError):
|
2016-03-04 15:11:31 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
class Compute:
|
2016-03-03 15:02:27 +00:00
|
|
|
"""
|
2016-04-15 15:57:06 +00:00
|
|
|
A GNS3 compute.
|
2016-03-03 15:02:27 +00:00
|
|
|
"""
|
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
def __init__(self, compute_id, controller=None, protocol="http", host="localhost", port=8000, user=None, password=None):
|
2016-03-18 15:55:54 +00:00
|
|
|
assert controller is not None
|
2016-04-15 15:57:06 +00:00
|
|
|
log.info("Create compute %s", compute_id)
|
|
|
|
self._id = compute_id
|
2016-03-03 15:02:27 +00:00
|
|
|
self._protocol = protocol
|
|
|
|
self._host = host
|
|
|
|
self._port = port
|
2016-03-16 14:55:07 +00:00
|
|
|
self._user = None
|
|
|
|
self._password = None
|
2016-03-03 15:02:27 +00:00
|
|
|
self._connected = False
|
2016-03-18 15:55:54 +00:00
|
|
|
self._controller = controller
|
2016-05-11 21:19:00 +00:00
|
|
|
self._set_auth(user, password)
|
2016-04-15 15:57:06 +00:00
|
|
|
self._session = aiohttp.ClientSession()
|
2016-05-11 14:31:16 +00:00
|
|
|
self._version = None
|
2016-03-03 15:02:27 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
# If the compute is local but the compute id is local
|
2016-03-04 15:11:31 +00:00
|
|
|
# it's a configuration issue
|
2016-04-15 15:57:06 +00:00
|
|
|
if compute_id == "local" and Config.instance().get_section_config("Server")["local"] is False:
|
|
|
|
raise ComputeError("The local compute is started without --local")
|
2016-03-04 15:11:31 +00:00
|
|
|
|
2016-03-18 15:55:54 +00:00
|
|
|
def __del__(self):
|
|
|
|
self._session.close()
|
|
|
|
|
2016-05-11 21:19:00 +00:00
|
|
|
def _set_auth(self, user, password):
|
2016-03-16 14:55:07 +00:00
|
|
|
"""
|
|
|
|
Set authentication parameters
|
|
|
|
"""
|
|
|
|
self._user = user
|
|
|
|
self._password = password
|
|
|
|
if self._user and self._password:
|
|
|
|
self._auth = aiohttp.BasicAuth(self._user, self._password)
|
|
|
|
else:
|
|
|
|
self._auth = None
|
|
|
|
|
2016-05-11 14:31:16 +00:00
|
|
|
@property
|
|
|
|
def version(self):
|
|
|
|
"""
|
|
|
|
:returns: Version of compute node (string or None if not connected)
|
|
|
|
"""
|
|
|
|
return self._version
|
|
|
|
|
|
|
|
@property
|
|
|
|
def connected(self):
|
|
|
|
"""
|
|
|
|
:returns: True if compute node is connected
|
|
|
|
"""
|
|
|
|
return self._connected
|
|
|
|
|
2016-03-03 15:02:27 +00:00
|
|
|
@property
|
|
|
|
def id(self):
|
|
|
|
"""
|
2016-04-15 15:57:06 +00:00
|
|
|
:returns: Compute identifier (string)
|
2016-03-03 15:02:27 +00:00
|
|
|
"""
|
|
|
|
return self._id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def host(self):
|
|
|
|
"""
|
2016-04-15 15:57:06 +00:00
|
|
|
:returns: Compute host (string)
|
2016-03-03 15:02:27 +00:00
|
|
|
"""
|
|
|
|
return self._host
|
|
|
|
|
2016-04-19 13:35:50 +00:00
|
|
|
@property
|
|
|
|
def port(self):
|
|
|
|
"""
|
|
|
|
:returns: Compute port (integer)
|
|
|
|
"""
|
|
|
|
return self._port
|
|
|
|
|
|
|
|
@property
|
|
|
|
def protocol(self):
|
|
|
|
"""
|
|
|
|
:returns: Compute protocol (string)
|
|
|
|
"""
|
|
|
|
return self._protocol
|
|
|
|
|
2016-03-16 14:55:07 +00:00
|
|
|
@property
|
|
|
|
def user(self):
|
|
|
|
return self._user
|
|
|
|
|
|
|
|
@user.setter
|
|
|
|
def user(self, value):
|
2016-05-11 21:19:00 +00:00
|
|
|
self._set_auth(value, self._password)
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def password(self):
|
|
|
|
return self._password
|
|
|
|
|
|
|
|
@user.setter
|
|
|
|
def password(self, value):
|
2016-05-11 21:19:00 +00:00
|
|
|
self._set_auth(self._user, value)
|
2016-03-16 14:55:07 +00:00
|
|
|
|
2016-03-03 15:02:27 +00:00
|
|
|
def __json__(self):
|
|
|
|
return {
|
2016-04-15 15:57:06 +00:00
|
|
|
"compute_id": self._id,
|
2016-03-03 15:02:27 +00:00
|
|
|
"protocol": self._protocol,
|
|
|
|
"host": self._host,
|
|
|
|
"port": self._port,
|
|
|
|
"user": self._user,
|
2016-03-16 14:55:07 +00:00
|
|
|
"connected": self._connected
|
2016-03-03 15:02:27 +00:00
|
|
|
}
|
2016-03-10 09:32:07 +00:00
|
|
|
|
2016-04-22 14:22:03 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-11 21:19:00 +00:00
|
|
|
def steam_file(self, project, path):
|
2016-04-22 14:22:03 +00:00
|
|
|
"""
|
|
|
|
Read file of a project and stream it
|
|
|
|
|
|
|
|
:param project: A project object
|
|
|
|
:param path: The path of the file in the project
|
|
|
|
:returns: A file stream
|
|
|
|
"""
|
|
|
|
|
|
|
|
url = self._getUrl("/projects/{}/stream/{}".format(project.id, path))
|
|
|
|
response = yield from self._session.request("GET", url, auth=self._auth)
|
|
|
|
if response.status == 404:
|
|
|
|
raise aiohttp.web.HTTPNotFound(text="{} not found on compute".format(path))
|
|
|
|
return response.content
|
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-11 21:19:00 +00:00
|
|
|
def http_query(self, method, path, data=None):
|
2016-03-18 15:55:54 +00:00
|
|
|
if not self._connected:
|
|
|
|
yield from self._connect()
|
2016-04-20 14:24:30 +00:00
|
|
|
if not self._connected:
|
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} is not a GNS3 server".format(self._id))
|
2016-05-11 21:19:00 +00:00
|
|
|
response = yield from self._run_http_query(method, path, data=data)
|
2016-04-14 10:22:10 +00:00
|
|
|
return response
|
2016-03-18 15:55:54 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def _connect(self):
|
|
|
|
"""
|
|
|
|
Check if remote server is accessible
|
|
|
|
"""
|
2016-03-16 14:55:07 +00:00
|
|
|
if not self._connected:
|
2016-05-11 21:19:00 +00:00
|
|
|
response = yield from self._run_http_query("GET", "/version")
|
2016-04-20 14:24:30 +00:00
|
|
|
|
2016-03-16 14:55:07 +00:00
|
|
|
if "version" not in response.json:
|
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} is not a GNS3 server".format(self._id))
|
2016-05-11 14:31:16 +00:00
|
|
|
self._version = response.json["version"]
|
2016-03-16 14:55:07 +00:00
|
|
|
if parse_version(__version__)[:2] != parse_version(response.json["version"])[:2]:
|
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} versions are not compatible {} != {}".format(self._id, __version__, response.json["version"]))
|
|
|
|
|
2016-05-11 21:19:00 +00:00
|
|
|
self._notifications = asyncio.async(self._connect_notification())
|
2016-03-18 15:55:54 +00:00
|
|
|
self._connected = True
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2016-05-11 21:19:00 +00:00
|
|
|
def _connect_notification(self):
|
2016-03-18 15:55:54 +00:00
|
|
|
"""
|
|
|
|
Connect to the notification stream
|
|
|
|
"""
|
2016-04-14 10:22:10 +00:00
|
|
|
ws = yield from self._session.ws_connect(self._getUrl("/notifications/ws"))
|
2016-03-18 15:55:54 +00:00
|
|
|
while True:
|
|
|
|
response = yield from ws.receive()
|
|
|
|
if response.tp == aiohttp.MsgType.closed or response.tp == aiohttp.MsgType.error:
|
|
|
|
self._connected = False
|
|
|
|
break
|
|
|
|
msg = json.loads(response.data)
|
|
|
|
action = msg.pop("action")
|
|
|
|
event = msg.pop("event")
|
2016-05-18 14:12:13 +00:00
|
|
|
self._controller.notification.dispatch(action, event, compute_id=self.id)
|
2016-03-18 15:55:54 +00:00
|
|
|
|
|
|
|
def _getUrl(self, path):
|
2016-04-15 15:57:06 +00:00
|
|
|
return "{}://{}:{}/v2/compute{}".format(self._protocol, self._host, self._port, path)
|
2016-03-16 14:55:07 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2016-05-11 21:19:00 +00:00
|
|
|
def _run_http_query(self, method, path, data=None):
|
2016-03-10 09:32:07 +00:00
|
|
|
with aiohttp.Timeout(10):
|
2016-03-18 15:55:54 +00:00
|
|
|
url = self._getUrl(path)
|
|
|
|
headers = {'content-type': 'application/json'}
|
2016-04-14 10:22:10 +00:00
|
|
|
if data == {}:
|
|
|
|
data = None
|
|
|
|
elif data is not None:
|
2016-03-18 15:55:54 +00:00
|
|
|
if hasattr(data, '__json__'):
|
|
|
|
data = data.__json__()
|
|
|
|
data = json.dumps(data)
|
2016-04-14 10:22:10 +00:00
|
|
|
|
2016-04-15 15:57:06 +00:00
|
|
|
response = yield from self._session.request(method, url, headers=headers, data=data, auth=self._auth)
|
2016-03-18 15:55:54 +00:00
|
|
|
body = yield from response.read()
|
|
|
|
if body:
|
|
|
|
body = body.decode()
|
|
|
|
|
|
|
|
if response.status >= 300:
|
|
|
|
if response.status == 400:
|
|
|
|
raise aiohttp.web.HTTPBadRequest(text="Bad request {} {}".format(url, body))
|
|
|
|
elif response.status == 401:
|
2016-04-15 15:57:06 +00:00
|
|
|
raise aiohttp.web.HTTPUnauthorized(text="Invalid authentication for compute {}".format(self.id))
|
2016-03-18 15:55:54 +00:00
|
|
|
elif response.status == 403:
|
|
|
|
raise aiohttp.web.HTTPForbidden(text="Forbidden {} {}".format(url, body))
|
|
|
|
elif response.status == 404:
|
2016-04-15 15:57:06 +00:00
|
|
|
raise aiohttp.web.HTTPNotFound(text="{} not found on compute".format(url))
|
2016-03-18 15:55:54 +00:00
|
|
|
elif response.status == 409:
|
|
|
|
raise aiohttp.web.HTTPConflict(text="Conflict {} {}".format(url, body))
|
2016-04-20 14:24:30 +00:00
|
|
|
elif response.status == 503:
|
|
|
|
raise aiohttp.web.HTTPServiceUnavailable(text="Service unavailable {} {}".format(url, body))
|
2016-03-18 15:55:54 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("{} status code is not supported".format(response.status))
|
|
|
|
if body and len(body):
|
|
|
|
try:
|
|
|
|
response.json = json.loads(body)
|
2016-05-11 21:19:00 +00:00
|
|
|
except ValueError:
|
2016-03-18 15:55:54 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} is not a GNS3 server".format(self._id))
|
|
|
|
if response.json is None:
|
|
|
|
response.json = {}
|
|
|
|
return response
|
2016-03-10 09:32:07 +00:00
|
|
|
|
2016-04-14 10:22:10 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def get(self, path):
|
2016-05-11 21:19:00 +00:00
|
|
|
return (yield from self.http_query("GET", path))
|
2016-04-14 10:22:10 +00:00
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
@asyncio.coroutine
|
2016-03-10 09:57:14 +00:00
|
|
|
def post(self, path, data={}):
|
2016-05-11 21:19:00 +00:00
|
|
|
response = yield from self.http_query("POST", path, data)
|
2016-04-14 10:22:10 +00:00
|
|
|
return response
|
2016-03-14 19:54:05 +00:00
|
|
|
|
2016-04-18 15:36:38 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def put(self, path, data={}):
|
2016-05-11 21:19:00 +00:00
|
|
|
response = yield from self.http_query("PUT", path, data)
|
2016-04-18 15:36:38 +00:00
|
|
|
return response
|
|
|
|
|
2016-03-14 19:54:05 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def delete(self, path):
|
2016-05-11 21:19:00 +00:00
|
|
|
return (yield from self.http_query("DELETE", path))
|