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-08-25 17:14:29 +00:00
|
|
|
import ipaddress
|
2016-03-10 09:32:07 +00:00
|
|
|
import aiohttp
|
|
|
|
import asyncio
|
2016-08-22 16:49:25 +00:00
|
|
|
import socket
|
2016-03-10 09:32:07 +00:00
|
|
|
import json
|
2016-05-25 12:10:03 +00:00
|
|
|
import uuid
|
2016-08-30 07:58:37 +00:00
|
|
|
import sys
|
2016-06-08 12:14:03 +00:00
|
|
|
import os
|
2016-06-07 17:38:01 +00:00
|
|
|
import io
|
2016-03-03 15:02:27 +00:00
|
|
|
|
2016-05-14 00:48:10 +00:00
|
|
|
from ..utils import parse_version
|
2016-06-08 12:14:03 +00:00
|
|
|
from ..utils.images import scan_for_images
|
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-06-07 17:38:01 +00:00
|
|
|
class ComputeConflict(aiohttp.web.HTTPConflict):
|
|
|
|
"""
|
|
|
|
Raise when the compute send a 409 that we can handle
|
|
|
|
|
|
|
|
:param response: The response of the compute
|
|
|
|
"""
|
2016-06-08 12:14:03 +00:00
|
|
|
|
2016-06-07 17:38:01 +00:00
|
|
|
def __init__(self, response):
|
|
|
|
super().__init__(text=response["message"])
|
|
|
|
self.response = response
|
|
|
|
|
|
|
|
|
2016-06-07 09:21:19 +00:00
|
|
|
class Timeout(aiohttp.Timeout):
|
|
|
|
"""
|
|
|
|
Could be removed with aiohttp 0.22 that support None timeout
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
if self._timeout:
|
|
|
|
return super().__enter__()
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
|
|
if self._timeout:
|
|
|
|
return super().__exit__(exc_type, exc_val, exc_tb)
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
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-05-25 12:10:03 +00:00
|
|
|
def __init__(self, compute_id, controller=None, protocol="http", host="localhost", port=3080, user=None, password=None, name=None):
|
2016-07-22 09:43:14 +00:00
|
|
|
self._http_session = 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)
|
2016-05-25 12:10:03 +00:00
|
|
|
|
|
|
|
if compute_id is None:
|
|
|
|
self._id = str(uuid.uuid4())
|
|
|
|
else:
|
|
|
|
self._id = compute_id
|
|
|
|
|
2016-05-25 09:27:41 +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-08-29 15:36:24 +00:00
|
|
|
self._closed = False # Close mean we are destroying the compute node
|
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-06-30 07:45:11 +00:00
|
|
|
self._cpu_usage_percent = None
|
|
|
|
self._memory_usage_percent = None
|
2016-08-29 13:53:10 +00:00
|
|
|
self._capabilities = {
|
|
|
|
"version": None,
|
|
|
|
"node_types": []
|
|
|
|
}
|
2016-05-23 09:20:52 +00:00
|
|
|
self.name = name
|
2016-06-08 15:18:40 +00:00
|
|
|
# Websocket for notifications
|
|
|
|
self._ws = None
|
2016-03-03 15:02:27 +00:00
|
|
|
|
2016-08-25 17:14:29 +00:00
|
|
|
# Cache of interfaces on remote host
|
|
|
|
self._interfaces_cache = None
|
|
|
|
|
2016-07-20 10:43:23 +00:00
|
|
|
def _session(self):
|
|
|
|
if self._http_session is None or self._http_session.closed is True:
|
|
|
|
self._http_session = aiohttp.ClientSession()
|
|
|
|
return self._http_session
|
|
|
|
|
2016-03-18 15:55:54 +00:00
|
|
|
def __del__(self):
|
2016-07-20 10:43:23 +00:00
|
|
|
if self._http_session:
|
|
|
|
self._http_session.close()
|
2016-03-18 15:55:54 +00:00
|
|
|
|
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
|
|
|
|
"""
|
2016-05-26 08:11:11 +00:00
|
|
|
if user is None or len(user.strip()) == 0:
|
|
|
|
self._user = None
|
|
|
|
self._password = None
|
2016-03-16 14:55:07 +00:00
|
|
|
self._auth = None
|
2016-05-26 08:11:11 +00:00
|
|
|
else:
|
|
|
|
self._user = user.strip()
|
2016-05-26 11:32:52 +00:00
|
|
|
if password:
|
|
|
|
self._password = password.strip()
|
|
|
|
self._auth = aiohttp.BasicAuth(self._user, self._password)
|
|
|
|
else:
|
|
|
|
self._password = None
|
|
|
|
self._auth = aiohttp.BasicAuth(self._user, "")
|
2016-03-16 14:55:07 +00:00
|
|
|
|
2016-08-25 17:14:29 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def interfaces(self):
|
|
|
|
"""
|
|
|
|
Get the list of network on compute
|
|
|
|
"""
|
|
|
|
if not self._interfaces_cache:
|
|
|
|
response = yield from self.get("/network/interfaces")
|
|
|
|
self._interfaces_cache = response.json
|
|
|
|
return self._interfaces_cache
|
|
|
|
|
2016-05-25 09:27:41 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def update(self, **kwargs):
|
|
|
|
for kw in kwargs:
|
|
|
|
setattr(self, kw, kwargs[kw])
|
2016-07-20 10:43:23 +00:00
|
|
|
if self._http_session:
|
|
|
|
self._http_session.close()
|
2016-05-25 09:27:41 +00:00
|
|
|
self._connected = False
|
|
|
|
self._controller.notification.emit("compute.updated", self.__json__())
|
2016-06-08 12:25:11 +00:00
|
|
|
self._controller.save()
|
2016-05-25 09:27:41 +00:00
|
|
|
|
2016-06-02 11:44:12 +00:00
|
|
|
@asyncio.coroutine
|
|
|
|
def close(self):
|
|
|
|
self._connected = False
|
2016-07-20 10:43:23 +00:00
|
|
|
if self._http_session:
|
|
|
|
self._http_session.close()
|
2016-06-08 15:18:40 +00:00
|
|
|
if self._ws:
|
|
|
|
yield from self._ws.close()
|
|
|
|
self._ws = None
|
2016-08-29 15:36:24 +00:00
|
|
|
self._closed = True
|
2016-06-02 11:44:12 +00:00
|
|
|
|
2016-05-23 09:20:52 +00:00
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""
|
|
|
|
:returns: Compute name
|
|
|
|
"""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@name.setter
|
|
|
|
def name(self, name):
|
|
|
|
if name is not None:
|
|
|
|
self._name = name
|
|
|
|
else:
|
2016-05-25 11:58:29 +00:00
|
|
|
if self._user:
|
|
|
|
user = self._user
|
|
|
|
# Due to random user generated by 1.4 it's common to have a very long user
|
|
|
|
if len(user) > 14:
|
|
|
|
user = user[:11] + "..."
|
|
|
|
self._name = "{}://{}@{}:{}".format(self._protocol, user, self._host, self._port)
|
|
|
|
else:
|
|
|
|
self._name = "{}://{}:{}".format(self._protocol, self._host, self._port)
|
2016-05-23 09:20:52 +00:00
|
|
|
|
2016-05-11 14:31:16 +00:00
|
|
|
@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-08-25 17:14:29 +00:00
|
|
|
@property
|
|
|
|
def host_ip(self):
|
|
|
|
"""
|
|
|
|
Return the IP associated to the host
|
|
|
|
"""
|
|
|
|
return socket.gethostbyname(self._host)
|
|
|
|
|
2016-05-25 09:27:41 +00:00
|
|
|
@host.setter
|
|
|
|
def host(self, host):
|
|
|
|
self._host = host
|
|
|
|
|
2016-04-19 13:35:50 +00:00
|
|
|
@property
|
|
|
|
def port(self):
|
|
|
|
"""
|
|
|
|
:returns: Compute port (integer)
|
|
|
|
"""
|
|
|
|
return self._port
|
|
|
|
|
2016-05-25 09:27:41 +00:00
|
|
|
@port.setter
|
|
|
|
def port(self, port):
|
|
|
|
self._port = port
|
|
|
|
|
2016-04-19 13:35:50 +00:00
|
|
|
@property
|
|
|
|
def protocol(self):
|
|
|
|
"""
|
|
|
|
:returns: Compute protocol (string)
|
|
|
|
"""
|
|
|
|
return self._protocol
|
|
|
|
|
2016-05-25 09:27:41 +00:00
|
|
|
@protocol.setter
|
|
|
|
def protocol(self, protocol):
|
|
|
|
self._protocol = 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
|
|
|
|
|
2016-06-01 23:50:31 +00:00
|
|
|
@password.setter
|
2016-03-16 14:55:07 +00:00
|
|
|
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-06-30 07:45:11 +00:00
|
|
|
@property
|
|
|
|
def cpu_usage_percent(self):
|
|
|
|
return self._cpu_usage_percent
|
|
|
|
|
|
|
|
@property
|
|
|
|
def memory_usage_percent(self):
|
|
|
|
return self._memory_usage_percent
|
|
|
|
|
2016-06-15 13:12:38 +00:00
|
|
|
def __json__(self, topology_dump=False):
|
|
|
|
"""
|
|
|
|
:param topology_dump: Filter to keep only properties require for saving on disk
|
|
|
|
"""
|
|
|
|
if topology_dump:
|
|
|
|
return {
|
|
|
|
"compute_id": self._id,
|
|
|
|
"name": self._name,
|
|
|
|
"protocol": self._protocol,
|
|
|
|
"host": self._host,
|
2016-06-15 16:22:11 +00:00
|
|
|
"port": self._port
|
2016-06-15 13:12:38 +00:00
|
|
|
}
|
2016-03-03 15:02:27 +00:00
|
|
|
return {
|
2016-04-15 15:57:06 +00:00
|
|
|
"compute_id": self._id,
|
2016-05-23 09:20:52 +00:00
|
|
|
"name": self._name,
|
2016-03-03 15:02:27 +00:00
|
|
|
"protocol": self._protocol,
|
|
|
|
"host": self._host,
|
|
|
|
"port": self._port,
|
|
|
|
"user": self._user,
|
2016-06-30 07:45:11 +00:00
|
|
|
"connected": self._connected,
|
|
|
|
"cpu_usage_percent": self._cpu_usage_percent,
|
2016-08-29 13:53:10 +00:00
|
|
|
"memory_usage_percent": self._memory_usage_percent,
|
|
|
|
"capabilities": self._capabilities
|
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-07-21 18:17:36 +00:00
|
|
|
def download_file(self, project, path):
|
|
|
|
"""
|
|
|
|
Read file of a project and download it
|
|
|
|
|
|
|
|
:param project: A project object
|
|
|
|
:param path: The path of the file in the project
|
|
|
|
:returns: A file stream
|
|
|
|
"""
|
|
|
|
|
|
|
|
url = self._getUrl("/projects/{}/files/{}".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
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def stream_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
|
|
|
|
"""
|
|
|
|
|
2016-08-19 09:05:54 +00:00
|
|
|
# Due to Python 3.4 limitation we can't use with and asyncio
|
|
|
|
# https://www.python.org/dev/peps/pep-0492/
|
|
|
|
# that why we wrap the answer
|
|
|
|
class StreamResponse:
|
2016-08-19 09:20:56 +00:00
|
|
|
|
2016-08-19 09:05:54 +00:00
|
|
|
def __init__(self, response):
|
|
|
|
self._response = response
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
return self._response.content
|
|
|
|
|
|
|
|
def __exit__(self):
|
|
|
|
self._response.close()
|
|
|
|
|
2016-04-22 14:22:03 +00:00
|
|
|
url = self._getUrl("/projects/{}/stream/{}".format(project.id, path))
|
2016-07-20 10:43:23 +00:00
|
|
|
response = yield from self._session().request("GET", url, auth=self._auth)
|
2016-04-22 14:22:03 +00:00
|
|
|
if response.status == 404:
|
|
|
|
raise aiohttp.web.HTTPNotFound(text="{} not found on compute".format(path))
|
2016-08-19 09:05:54 +00:00
|
|
|
return StreamResponse(response)
|
2016-04-22 14:22:03 +00:00
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-19 14:21:35 +00:00
|
|
|
def http_query(self, method, path, data=None, **kwargs):
|
2016-03-18 15:55:54 +00:00
|
|
|
if not self._connected:
|
2016-08-29 13:53:10 +00:00
|
|
|
yield from self.connect()
|
2016-04-20 14:24:30 +00:00
|
|
|
if not self._connected:
|
2016-08-29 15:36:24 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text="Can't connect to {}".format(self._name))
|
2016-05-19 14:21:35 +00:00
|
|
|
response = yield from self._run_http_query(method, path, data=data, **kwargs)
|
2016-04-14 10:22:10 +00:00
|
|
|
return response
|
2016-03-18 15:55:54 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2016-08-29 13:53:10 +00:00
|
|
|
def connect(self):
|
2016-03-18 15:55:54 +00:00
|
|
|
"""
|
|
|
|
Check if remote server is accessible
|
|
|
|
"""
|
2016-08-29 15:36:24 +00:00
|
|
|
if not self._connected and not self._closed:
|
2016-08-29 13:53:10 +00:00
|
|
|
try:
|
|
|
|
response = yield from self._run_http_query("GET", "/capabilities")
|
2016-08-29 16:59:13 +00:00
|
|
|
except (aiohttp.errors.ClientOSError, aiohttp.errors.ClientRequestError, aiohttp.ClientResponseError):
|
2016-08-30 07:58:37 +00:00
|
|
|
# Try to reconnect after 2 seconds if server unavailable only if not during tests (otherwise we create a ressources usage bomb)
|
|
|
|
if not hasattr(sys, "_called_from_test") or not sys._called_from_test:
|
|
|
|
asyncio.get_event_loop().call_later(2, lambda: asyncio.async(self.connect()))
|
2016-08-29 13:53:10 +00:00
|
|
|
return
|
2016-04-20 14:24:30 +00:00
|
|
|
|
2016-03-16 14:55:07 +00:00
|
|
|
if "version" not in response.json:
|
2016-07-21 13:10:11 +00:00
|
|
|
self._http_session.close()
|
2016-03-16 14:55:07 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} is not a GNS3 server".format(self._id))
|
2016-08-29 13:53:10 +00:00
|
|
|
self._capabilities = response.json
|
2016-03-16 14:55:07 +00:00
|
|
|
if parse_version(__version__)[:2] != parse_version(response.json["version"])[:2]:
|
2016-07-21 13:10:11 +00:00
|
|
|
self._http_session.close()
|
2016-03-16 14:55:07 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} versions are not compatible {} != {}".format(self._id, __version__, response.json["version"]))
|
|
|
|
|
2016-07-21 13:10:11 +00:00
|
|
|
self._notifications = asyncio.gather(self._connect_notification())
|
2016-03-18 15:55:54 +00:00
|
|
|
self._connected = True
|
2016-05-23 16:44:20 +00:00
|
|
|
self._controller.notification.emit("compute.updated", self.__json__())
|
2016-03-18 15:55:54 +00:00
|
|
|
|
|
|
|
@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-08-31 07:59:50 +00:00
|
|
|
try:
|
|
|
|
self._ws = yield from self._session().ws_connect(self._getUrl("/notifications/ws"))
|
|
|
|
except aiohttp.errors.WSServerHandshakeError:
|
|
|
|
self._ws
|
|
|
|
while self._ws is not None:
|
2016-08-19 09:20:56 +00:00
|
|
|
try:
|
|
|
|
response = yield from self._ws.receive()
|
|
|
|
except aiohttp.errors.WSServerHandshakeError:
|
|
|
|
self._ws = None
|
2016-08-29 15:36:24 +00:00
|
|
|
break
|
2016-03-18 15:55:54 +00:00
|
|
|
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-06-30 07:45:11 +00:00
|
|
|
|
|
|
|
if action == "ping":
|
|
|
|
self._cpu_usage_percent = event["cpu_usage_percent"]
|
|
|
|
self._memory_usage_percent = event["memory_usage_percent"]
|
|
|
|
self._controller.notification.emit("compute.updated", self.__json__())
|
|
|
|
else:
|
|
|
|
self._controller.notification.dispatch(action, event, compute_id=self.id)
|
2016-08-29 15:36:24 +00:00
|
|
|
if self._ws:
|
|
|
|
yield from self._ws.close()
|
|
|
|
|
2016-08-30 07:58:37 +00:00
|
|
|
# Try to reconnect after 1 seconds if server unavailable only if not during tests (otherwise we create a ressources usage bomb)
|
|
|
|
if not hasattr(sys, "_called_from_test") or not sys._called_from_test:
|
|
|
|
asyncio.get_event_loop().call_later(1, lambda: asyncio.async(self.connect()))
|
2016-06-08 15:18:40 +00:00
|
|
|
self._ws = None
|
2016-08-29 15:36:24 +00:00
|
|
|
self._cpu_usage_percent = None
|
|
|
|
self._memory_usage_percent = None
|
|
|
|
self._controller.notification.emit("compute.updated", self.__json__())
|
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-07-27 16:31:02 +00:00
|
|
|
def _run_http_query(self, method, path, data=None, timeout=10, raw=False):
|
2016-06-07 09:21:19 +00:00
|
|
|
with Timeout(timeout):
|
2016-03-18 15:55:54 +00:00
|
|
|
url = self._getUrl(path)
|
2016-06-06 17:51:35 +00:00
|
|
|
headers = {}
|
|
|
|
headers['content-type'] = 'application/json'
|
|
|
|
chunked = False
|
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__'):
|
2016-06-06 17:51:35 +00:00
|
|
|
data = json.dumps(data.__json__())
|
|
|
|
# Stream the request
|
2016-07-27 16:31:02 +00:00
|
|
|
elif isinstance(data, aiohttp.streams.StreamReader) or isinstance(data, io.BufferedIOBase) or isinstance(data, bytes):
|
2016-06-06 17:51:35 +00:00
|
|
|
chunked = True
|
|
|
|
headers['content-type'] = 'application/octet-stream'
|
|
|
|
else:
|
|
|
|
data = json.dumps(data)
|
2016-04-14 10:22:10 +00:00
|
|
|
|
2016-07-27 16:31:02 +00:00
|
|
|
response = yield from self._session().request(method, url, headers=headers, data=data, auth=self._auth, chunked=chunked)
|
2016-07-11 07:33:55 +00:00
|
|
|
body = yield from response.read()
|
2016-07-27 16:31:02 +00:00
|
|
|
if body and not raw:
|
2016-07-11 07:33:55 +00:00
|
|
|
body = body.decode()
|
|
|
|
|
|
|
|
if response.status >= 300:
|
|
|
|
# Try to decode the GNS3 error
|
2016-07-27 16:31:02 +00:00
|
|
|
if body and not raw:
|
2016-03-18 15:55:54 +00:00
|
|
|
try:
|
2016-07-11 07:33:55 +00:00
|
|
|
msg = json.loads(body)["message"]
|
|
|
|
except (KeyError, ValueError):
|
|
|
|
msg = body
|
|
|
|
else:
|
|
|
|
msg = ""
|
|
|
|
|
|
|
|
if response.status == 400:
|
|
|
|
raise aiohttp.web.HTTPBadRequest(text="Bad request {} {}".format(url, body))
|
|
|
|
elif response.status == 401:
|
|
|
|
raise aiohttp.web.HTTPUnauthorized(text="Invalid authentication for compute {}".format(self.id))
|
|
|
|
elif response.status == 403:
|
|
|
|
raise aiohttp.web.HTTPForbidden(text=msg)
|
|
|
|
elif response.status == 404:
|
|
|
|
raise aiohttp.web.HTTPNotFound(text=msg)
|
|
|
|
elif response.status == 409:
|
|
|
|
try:
|
|
|
|
raise ComputeConflict(json.loads(body))
|
|
|
|
# If the 409 doesn't come from a GNS3 server
|
2016-05-11 21:19:00 +00:00
|
|
|
except ValueError:
|
2016-07-11 07:33:55 +00:00
|
|
|
raise aiohttp.web.HTTPConflict(text=msg)
|
|
|
|
elif response.status == 500:
|
|
|
|
raise aiohttp.web.HTTPInternalServerError(text="Internal server error {}".format(url))
|
|
|
|
elif response.status == 503:
|
|
|
|
raise aiohttp.web.HTTPServiceUnavailable(text="Service unavailable {} {}".format(url, body))
|
2016-06-06 17:51:35 +00:00
|
|
|
else:
|
2016-07-11 07:33:55 +00:00
|
|
|
raise NotImplementedError("{} status code is not supported".format(response.status))
|
|
|
|
if body and len(body):
|
2016-07-27 16:31:02 +00:00
|
|
|
if raw:
|
|
|
|
response.body = body
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
response.json = json.loads(body)
|
|
|
|
except ValueError:
|
|
|
|
raise aiohttp.web.HTTPConflict(text="The server {} is not a GNS3 server".format(self._id))
|
2016-07-11 07:33:55 +00:00
|
|
|
else:
|
|
|
|
response.json = {}
|
2016-07-27 16:31:02 +00:00
|
|
|
response.body = b""
|
2016-07-11 07:33:55 +00:00
|
|
|
return response
|
2016-03-10 09:32:07 +00:00
|
|
|
|
2016-04-14 10:22:10 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-19 14:21:35 +00:00
|
|
|
def get(self, path, **kwargs):
|
|
|
|
return (yield from self.http_query("GET", path, **kwargs))
|
2016-04-14 10:22:10 +00:00
|
|
|
|
2016-03-10 09:32:07 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-19 14:21:35 +00:00
|
|
|
def post(self, path, data={}, **kwargs):
|
|
|
|
response = yield from self.http_query("POST", path, data, **kwargs)
|
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
|
2016-05-19 14:21:35 +00:00
|
|
|
def put(self, path, data={}, **kwargs):
|
|
|
|
response = yield from self.http_query("PUT", path, data, **kwargs)
|
2016-04-18 15:36:38 +00:00
|
|
|
return response
|
|
|
|
|
2016-03-14 19:54:05 +00:00
|
|
|
@asyncio.coroutine
|
2016-05-19 14:21:35 +00:00
|
|
|
def delete(self, path, **kwargs):
|
|
|
|
return (yield from self.http_query("DELETE", path, **kwargs))
|
2016-06-02 14:44:38 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2016-06-06 13:45:32 +00:00
|
|
|
def forward(self, method, type, path, data=None):
|
2016-06-02 14:44:38 +00:00
|
|
|
"""
|
|
|
|
Forward a call to the emulator on compute
|
|
|
|
"""
|
2016-06-07 09:21:19 +00:00
|
|
|
res = yield from self.http_query(method, "/{}/{}".format(type, path), data=data, timeout=None)
|
2016-06-02 16:38:47 +00:00
|
|
|
return res.json
|
2016-06-08 12:14:03 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def images(self, type):
|
|
|
|
"""
|
|
|
|
Return the list of images available for this type on controller
|
|
|
|
and on the compute node.
|
|
|
|
"""
|
|
|
|
images = []
|
|
|
|
|
|
|
|
res = yield from self.http_query("GET", "/{}/images".format(type), timeout=120)
|
|
|
|
images = res.json
|
|
|
|
|
2016-06-08 13:59:54 +00:00
|
|
|
if type in ["qemu", "dynamips", "iou"]:
|
|
|
|
for path in scan_for_images(type):
|
|
|
|
image = os.path.basename(path)
|
|
|
|
if image not in [i['filename'] for i in images]:
|
|
|
|
images.append({"filename": image, "path": image})
|
2016-06-08 12:14:03 +00:00
|
|
|
return images
|
2016-07-21 18:17:36 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def list_files(self, project):
|
|
|
|
"""
|
|
|
|
List files in the project on computes
|
|
|
|
"""
|
|
|
|
path = "/projects/{}/files".format(project.id)
|
|
|
|
res = yield from self.http_query("GET", path, timeout=120)
|
|
|
|
return res.json
|
2016-08-25 17:14:29 +00:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def get_ip_on_same_subnet(self, other_compute):
|
|
|
|
"""
|
|
|
|
Try to found the best ip for communication from one compute
|
|
|
|
to another
|
|
|
|
|
|
|
|
:returns: Tuple (ip_for_this_compute, ip_for_other_compute)
|
|
|
|
"""
|
|
|
|
if other_compute == self:
|
|
|
|
return (self.host_ip, self.host_ip)
|
|
|
|
|
|
|
|
this_compute_interfaces = yield from self.interfaces()
|
|
|
|
other_compute_interfaces = yield from other_compute.interfaces()
|
|
|
|
|
|
|
|
# Sort interface to put the compute host in first position
|
|
|
|
# we guess that if user specified this host it could have a reason (VMware Nat / Host only interface)
|
|
|
|
this_compute_interfaces = sorted(this_compute_interfaces, key=lambda i: i["ip_address"] != self.host_ip)
|
|
|
|
other_compute_interfaces = sorted(other_compute_interfaces, key=lambda i: i["ip_address"] != other_compute.host_ip)
|
|
|
|
|
|
|
|
for this_interface in this_compute_interfaces:
|
|
|
|
if len(this_interface["ip_address"]) == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
this_network = ipaddress.ip_network("{}/{}".format(this_interface["ip_address"], this_interface["netmask"]), strict=False)
|
|
|
|
|
|
|
|
for other_interface in other_compute_interfaces:
|
|
|
|
if len(other_interface["ip_address"]) == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Avoid stuff like 127.0.0.1
|
|
|
|
if other_interface["ip_address"] == this_interface["ip_address"]:
|
|
|
|
continue
|
|
|
|
|
|
|
|
other_network = ipaddress.ip_network("{}/{}".format(other_interface["ip_address"], other_interface["netmask"]), strict=False)
|
|
|
|
if this_network.overlaps(other_network):
|
|
|
|
return (this_interface["ip_address"], other_interface["ip_address"])
|
|
|
|
raise ValueError("No common subnet for compute {} and {}".format(self.name, other_compute.name))
|