2014-01-31 23:31:34 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014 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 re
|
|
|
|
from gns3server.modules import IModule
|
|
|
|
from ..nodes.atm_switch import ATMSwitch
|
|
|
|
from ..dynamips_error import DynamipsError
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
from ..schemas.atmsw import ATMSW_CREATE_SCHEMA
|
|
|
|
from ..schemas.atmsw import ATMSW_DELETE_SCHEMA
|
|
|
|
from ..schemas.atmsw import ATMSW_UPDATE_SCHEMA
|
|
|
|
from ..schemas.atmsw import ATMSW_ALLOCATE_UDP_PORT_SCHEMA
|
|
|
|
from ..schemas.atmsw import ATMSW_ADD_NIO_SCHEMA
|
|
|
|
from ..schemas.atmsw import ATMSW_DELETE_NIO_SCHEMA
|
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class ATMSW(object):
|
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.create")
|
|
|
|
def atmsw_create(self, request):
|
|
|
|
"""
|
|
|
|
Creates a new ATM switch.
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Optional request parameters:
|
|
|
|
- name (switch name)
|
|
|
|
|
|
|
|
Response parameters:
|
|
|
|
- id (switch identifier)
|
|
|
|
- name (switch name)
|
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if request and not self.validate_request(request, ATMSW_CREATE_SCHEMA):
|
|
|
|
return
|
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
name = None
|
|
|
|
if request and "name" in request:
|
|
|
|
name = request["name"]
|
|
|
|
|
|
|
|
try:
|
2014-03-16 03:41:04 +00:00
|
|
|
if not self._hypervisor_manager:
|
|
|
|
self.start_hypervisor_manager()
|
|
|
|
|
2014-02-21 00:39:03 +00:00
|
|
|
hypervisor = self._hypervisor_manager.allocate_hypervisor_for_simulated_device()
|
2014-01-31 23:31:34 +00:00
|
|
|
atmsw = ATMSwitch(hypervisor, name)
|
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
|
|
|
response = {"name": atmsw.name,
|
|
|
|
"id": atmsw.id}
|
|
|
|
|
|
|
|
self._atm_switches[atmsw.id] = atmsw
|
|
|
|
self.send_response(response)
|
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.delete")
|
|
|
|
def atmsw_delete(self, request):
|
|
|
|
"""
|
|
|
|
Deletes a ATM switch.
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Mandatory request parameters:
|
|
|
|
- id (switch identifier)
|
|
|
|
|
|
|
|
Response parameters:
|
2014-04-23 18:31:33 +00:00
|
|
|
- True on success
|
2014-02-26 18:47:12 +00:00
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if not self.validate_request(request, ATMSW_DELETE_SCHEMA):
|
2014-02-26 18:47:12 +00:00
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# get the ATM switch instance
|
2014-01-31 23:31:34 +00:00
|
|
|
atmsw_id = request["id"]
|
2014-04-23 18:31:33 +00:00
|
|
|
atmsw = self.get_device_instance(atmsw_id, self._atm_switches)
|
|
|
|
if not atmsw:
|
2014-04-12 20:43:30 +00:00
|
|
|
return
|
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
try:
|
|
|
|
atmsw.delete()
|
2014-02-21 00:39:03 +00:00
|
|
|
self._hypervisor_manager.unallocate_hypervisor_for_simulated_device(atmsw)
|
2014-03-11 21:45:04 +00:00
|
|
|
del self._atm_switches[atmsw_id]
|
2014-01-31 23:31:34 +00:00
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
2014-04-23 18:31:33 +00:00
|
|
|
self.send_response(True)
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.update")
|
|
|
|
def atmsw_update(self, request):
|
|
|
|
"""
|
|
|
|
Updates a ATM switch.
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Mandatory request parameters:
|
|
|
|
- id (switch identifier)
|
|
|
|
|
|
|
|
Optional request parameters:
|
|
|
|
- name (new switch name)
|
|
|
|
|
|
|
|
Response parameters:
|
2014-04-23 18:31:33 +00:00
|
|
|
- name if changed
|
2014-02-26 18:47:12 +00:00
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if not self.validate_request(request, ATMSW_UPDATE_SCHEMA):
|
2014-02-26 18:47:12 +00:00
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# get the ATM switch instance
|
|
|
|
atmsw = self.get_device_instance(request["id"], self._atm_switches)
|
|
|
|
if not atmsw:
|
2014-04-12 20:43:30 +00:00
|
|
|
return
|
2014-02-26 18:47:12 +00:00
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
response = {}
|
2014-02-26 18:47:12 +00:00
|
|
|
# rename the switch if requested
|
|
|
|
if "name" in request and atmsw.name != request["name"]:
|
|
|
|
try:
|
|
|
|
atmsw.name = request["name"]
|
2014-04-23 18:31:33 +00:00
|
|
|
response["name"] = atmsw.name
|
2014-02-26 18:47:12 +00:00
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
self.send_response(response)
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.allocate_udp_port")
|
|
|
|
def atmsw_allocate_udp_port(self, request):
|
|
|
|
"""
|
|
|
|
Allocates a UDP port in order to create an UDP NIO for an
|
|
|
|
ATM switch.
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Mandatory request parameters:
|
|
|
|
- id (switch identifier)
|
2014-02-28 04:50:46 +00:00
|
|
|
- port_id (port identifier)
|
2014-02-26 18:47:12 +00:00
|
|
|
|
|
|
|
Response parameters:
|
2014-02-28 04:50:46 +00:00
|
|
|
- port_id (port identifier)
|
2014-02-26 18:47:12 +00:00
|
|
|
- lport (allocated local port)
|
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if not self.validate_request(request, ATMSW_ALLOCATE_UDP_PORT_SCHEMA):
|
2014-02-26 18:47:12 +00:00
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# get the ATM switch instance
|
|
|
|
atmsw = self.get_device_instance(request["id"], self._atm_switches)
|
|
|
|
if not atmsw:
|
2014-04-12 20:43:30 +00:00
|
|
|
return
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
# allocate a new UDP port
|
|
|
|
response = self.allocate_udp_port(atmsw)
|
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
2014-02-28 04:50:46 +00:00
|
|
|
response["port_id"] = request["port_id"]
|
2014-01-31 23:31:34 +00:00
|
|
|
self.send_response(response)
|
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.add_nio")
|
|
|
|
def atmsw_add_nio(self, request):
|
|
|
|
"""
|
|
|
|
Adds an NIO (Network Input/Output) for an ATM switch.
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Mandatory request parameters:
|
|
|
|
- id (switch identifier)
|
|
|
|
- port (port identifier)
|
2014-02-28 04:50:46 +00:00
|
|
|
- port_id (port identifier)
|
2014-02-26 18:47:12 +00:00
|
|
|
- mappings (VCs/VPs mapped to the port)
|
2014-04-23 18:31:33 +00:00
|
|
|
- nio (one of the following)
|
|
|
|
- type "nio_udp"
|
2014-02-26 18:47:12 +00:00
|
|
|
- lport (local port)
|
|
|
|
- rhost (remote host)
|
|
|
|
- rport (remote port)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_generic_ethernet"
|
2014-02-26 18:47:12 +00:00
|
|
|
- ethernet_device (Ethernet device name e.g. eth0)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_linux_ethernet"
|
2014-02-26 18:47:12 +00:00
|
|
|
- ethernet_device (Ethernet device name e.g. eth0)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_tap"
|
2014-02-26 18:47:12 +00:00
|
|
|
- tap_device (TAP device name e.g. tap0)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_unix"
|
2014-02-26 18:47:12 +00:00
|
|
|
- local_file (path to UNIX socket file)
|
|
|
|
- remote_file (path to UNIX socket file)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_vde"
|
2014-02-26 18:47:12 +00:00
|
|
|
- control_file (path to VDE control file)
|
|
|
|
- local_file (path to VDE local file)
|
2014-04-23 18:31:33 +00:00
|
|
|
- type "nio_null"
|
2014-02-26 18:47:12 +00:00
|
|
|
|
|
|
|
Response parameters:
|
2014-04-23 18:31:33 +00:00
|
|
|
- port_id (unique port identifier)
|
2014-02-26 18:47:12 +00:00
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if not self.validate_request(request, ATMSW_ADD_NIO_SCHEMA):
|
2014-02-26 18:47:12 +00:00
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# get the ATM switch instance
|
|
|
|
atmsw = self.get_device_instance(request["id"], self._atm_switches)
|
|
|
|
if not atmsw:
|
2014-04-12 20:43:30 +00:00
|
|
|
return
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
port = request["port"]
|
2014-02-21 00:39:03 +00:00
|
|
|
mappings = request["mappings"]
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
nio = self.create_nio(atmsw, request)
|
2014-02-26 18:47:12 +00:00
|
|
|
if not nio:
|
|
|
|
raise DynamipsError("Requested NIO doesn't exist: {}".format(request["nio"]))
|
2014-01-31 23:31:34 +00:00
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
atmsw.add_nio(nio, port)
|
|
|
|
pvc_entry = re.compile(r"""^([0-9]*):([0-9]*):([0-9]*)$""")
|
2014-02-21 00:39:03 +00:00
|
|
|
for source, destination in mappings.items():
|
2014-01-31 23:31:34 +00:00
|
|
|
match_source_pvc = pvc_entry.search(source)
|
|
|
|
match_destination_pvc = pvc_entry.search(destination)
|
|
|
|
if match_source_pvc and match_destination_pvc:
|
|
|
|
# add the virtual channels mapped with this port/nio
|
|
|
|
source_port, source_vpi, source_vci = map(int, match_source_pvc.group(1, 2, 3))
|
|
|
|
destination_port, destination_vpi, destination_vci = map(int, match_destination_pvc.group(1, 2, 3))
|
|
|
|
if atmsw.has_port(destination_port):
|
|
|
|
if (source_port, source_vpi, source_vci) not in atmsw.mapping and \
|
|
|
|
(destination_port, destination_vpi, destination_vci) not in atmsw.mapping:
|
|
|
|
atmsw.map_pvc(source_port, source_vpi, source_vci, destination_port, destination_vpi, destination_vci)
|
|
|
|
atmsw.map_pvc(destination_port, destination_vpi, destination_vci, source_port, source_vpi, source_vci)
|
|
|
|
else:
|
|
|
|
# add the virtual paths mapped with this port/nio
|
|
|
|
source_port, source_vpi = map(int, source.split(':'))
|
|
|
|
destination_port, destination_vpi = map(int, destination.split(':'))
|
|
|
|
if atmsw.has_port(destination_port):
|
|
|
|
if (source_port, source_vpi) not in atmsw.mapping and (destination_port, destination_vpi) not in atmsw.mapping:
|
|
|
|
atmsw.map_vp(source_port, source_vpi, destination_port, destination_vpi)
|
|
|
|
atmsw.map_vp(destination_port, destination_vpi, source_port, source_vpi)
|
|
|
|
|
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
self.send_response({"port_id": request["port_id"]})
|
2014-01-31 23:31:34 +00:00
|
|
|
|
|
|
|
@IModule.route("dynamips.atmsw.delete_nio")
|
|
|
|
def atmsw_delete_nio(self, request):
|
|
|
|
"""
|
|
|
|
Deletes an NIO (Network Input/Output).
|
|
|
|
|
2014-02-26 18:47:12 +00:00
|
|
|
Mandatory request parameters:
|
|
|
|
- id (switch identifier)
|
|
|
|
- port (port identifier)
|
|
|
|
|
|
|
|
Response parameters:
|
2014-04-23 18:31:33 +00:00
|
|
|
- True on success
|
2014-02-26 18:47:12 +00:00
|
|
|
|
2014-01-31 23:31:34 +00:00
|
|
|
:param request: JSON request
|
|
|
|
"""
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# validate the request
|
|
|
|
if not self.validate_request(request, ATMSW_DELETE_NIO_SCHEMA):
|
2014-02-26 18:47:12 +00:00
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
# get the ATM switch instance
|
|
|
|
atmsw = self.get_device_instance(request["id"], self._atm_switches)
|
|
|
|
if not atmsw:
|
2014-04-12 20:43:30 +00:00
|
|
|
return
|
2014-01-31 23:31:34 +00:00
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
port = request["port"]
|
2014-01-31 23:31:34 +00:00
|
|
|
try:
|
|
|
|
for source, destination in atmsw.mapping.copy().items():
|
|
|
|
if len(source) == 3 and len(destination) == 3:
|
|
|
|
# remove the virtual channels mapped with this port/nio
|
|
|
|
source_port, source_vpi, source_vci = source
|
|
|
|
destination_port, destination_vpi, destination_vci = destination
|
|
|
|
if port == source_port:
|
|
|
|
atmsw.unmap_pvc(source_port, source_vpi, source_vci, destination_port, destination_vpi, destination_vci)
|
|
|
|
atmsw.unmap_pvc(destination_port, destination_vpi, destination_vci, source_port, source_vpi, source_vci)
|
|
|
|
else:
|
|
|
|
# remove the virtual paths mapped with this port/nio
|
|
|
|
source_port, source_vpi = source
|
|
|
|
destination_port, destination_vpi = destination
|
|
|
|
if port == source_port:
|
|
|
|
atmsw.unmap_vp(source_port, source_vpi, destination_port, destination_vpi)
|
|
|
|
atmsw.unmap_vp(destination_port, destination_vpi, source_port, source_vpi)
|
|
|
|
|
|
|
|
nio = atmsw.remove_nio(port)
|
|
|
|
nio.delete()
|
|
|
|
except DynamipsError as e:
|
|
|
|
self.send_custom_error(str(e))
|
|
|
|
return
|
|
|
|
|
2014-04-23 18:31:33 +00:00
|
|
|
self.send_response(True)
|