2020-10-02 09:37:50 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2020 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/>.
|
|
|
|
|
|
|
|
"""
|
2020-11-19 06:51:03 +02:00
|
|
|
API routes for Ethernet switch nodes.
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2021-04-18 09:10:38 +03:00
|
|
|
from fastapi import APIRouter, Depends, Body, Path, status
|
2020-10-02 09:37:50 +03:00
|
|
|
from fastapi.encoders import jsonable_encoder
|
|
|
|
from fastapi.responses import StreamingResponse
|
|
|
|
from uuid import UUID
|
|
|
|
|
|
|
|
from gns3server.compute.dynamips import Dynamips
|
2020-10-14 03:19:29 +03:00
|
|
|
from gns3server.compute.dynamips.nodes.ethernet_switch import EthernetSwitch
|
2020-10-31 07:32:21 +02:00
|
|
|
from gns3server import schemas
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
responses = {404: {"model": schemas.ErrorMessage, "description": "Could not find project or Ethernet switch node"}}
|
2020-10-14 03:19:29 +03:00
|
|
|
|
2021-04-13 09:49:56 +03:00
|
|
|
router = APIRouter(responses=responses)
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
|
2021-04-18 09:10:38 +03:00
|
|
|
def dep_node(project_id: UUID, node_id: UUID) -> EthernetSwitch:
|
2020-10-14 03:19:29 +03:00
|
|
|
"""
|
|
|
|
Dependency to retrieve a node.
|
|
|
|
"""
|
|
|
|
|
|
|
|
dynamips_manager = Dynamips.instance()
|
|
|
|
node = dynamips_manager.get_node(str(node_id), project_id=str(project_id))
|
|
|
|
return node
|
|
|
|
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post(
|
|
|
|
"",
|
|
|
|
response_model=schemas.EthernetSwitch,
|
|
|
|
status_code=status.HTTP_201_CREATED,
|
|
|
|
responses={409: {"model": schemas.ErrorMessage, "description": "Could not create Ethernet switch node"}},
|
|
|
|
)
|
2021-04-18 09:10:38 +03:00
|
|
|
async def create_ethernet_switch(project_id: UUID, node_data: schemas.EthernetSwitchCreate) -> schemas.EthernetSwitch:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Create a new Ethernet switch.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Use the Dynamips Ethernet switch to simulate this node
|
|
|
|
dynamips_manager = Dynamips.instance()
|
|
|
|
node_data = jsonable_encoder(node_data, exclude_unset=True)
|
2021-04-13 12:16:50 +03:00
|
|
|
node = await dynamips_manager.create_node(
|
|
|
|
node_data.pop("name"),
|
|
|
|
str(project_id),
|
|
|
|
node_data.get("node_id"),
|
|
|
|
console=node_data.get("console"),
|
|
|
|
console_type=node_data.get("console_type"),
|
|
|
|
node_type="ethernet_switch",
|
|
|
|
ports=node_data.get("ports_mapping"),
|
|
|
|
)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-17 17:04:28 +03:00
|
|
|
return node.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.get("/{node_id}", response_model=schemas.EthernetSwitch)
|
2021-04-18 09:10:38 +03:00
|
|
|
def get_ethernet_switch(node: EthernetSwitch = Depends(dep_node)) -> schemas.EthernetSwitch:
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2021-04-17 17:04:28 +03:00
|
|
|
return node.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post("/{node_id}/duplicate", response_model=schemas.EthernetSwitch, status_code=status.HTTP_201_CREATED)
|
|
|
|
async def duplicate_ethernet_switch(
|
2021-04-18 09:10:38 +03:00
|
|
|
destination_node_id: UUID = Body(..., embed=True),
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> schemas.EthernetSwitch:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Duplicate an Ethernet switch.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
new_node = await Dynamips.instance().duplicate_node(node.id, str(destination_node_id))
|
2021-04-17 17:04:28 +03:00
|
|
|
return new_node.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.put("/{node_id}", response_model=schemas.EthernetSwitch)
|
2021-04-18 09:10:38 +03:00
|
|
|
async def update_ethernet_switch(
|
|
|
|
node_data: schemas.EthernetSwitchUpdate,
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> schemas.EthernetSwitch:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Update an Ethernet switch.
|
|
|
|
"""
|
|
|
|
|
|
|
|
node_data = jsonable_encoder(node_data, exclude_unset=True)
|
|
|
|
if "name" in node_data and node.name != node_data["name"]:
|
|
|
|
await node.set_name(node_data["name"])
|
|
|
|
if "ports_mapping" in node_data:
|
|
|
|
node.ports_mapping = node_data["ports_mapping"]
|
|
|
|
await node.update_port_settings()
|
|
|
|
if "console_type" in node_data:
|
|
|
|
node.console_type = node_data["console_type"]
|
|
|
|
node.updated()
|
2021-04-17 17:04:28 +03:00
|
|
|
return node.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.delete("/{node_id}", status_code=status.HTTP_204_NO_CONTENT)
|
2021-04-18 09:10:38 +03:00
|
|
|
async def delete_ethernet_switch(node: EthernetSwitch = Depends(dep_node)) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Delete an Ethernet switch.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await Dynamips.instance().delete_node(node.id)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post("/{node_id}/start", status_code=status.HTTP_204_NO_CONTENT)
|
2021-04-18 09:10:38 +03:00
|
|
|
def start_ethernet_switch(node: EthernetSwitch = Depends(dep_node)) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Start an Ethernet switch.
|
|
|
|
This endpoint results in no action since Ethernet switch nodes are always on.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
pass
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post("/{node_id}/stop", status_code=status.HTTP_204_NO_CONTENT)
|
2021-04-18 09:10:38 +03:00
|
|
|
def stop_ethernet_switch(node: EthernetSwitch = Depends(dep_node)) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stop an Ethernet switch.
|
|
|
|
This endpoint results in no action since Ethernet switch nodes are always on.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
pass
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post("/{node_id}/suspend", status_code=status.HTTP_204_NO_CONTENT)
|
2021-04-18 09:10:38 +03:00
|
|
|
def suspend_ethernet_switch(node: EthernetSwitch = Depends(dep_node)) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Suspend an Ethernet switch.
|
|
|
|
This endpoint results in no action since Ethernet switch nodes are always on.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
pass
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post(
|
|
|
|
"/{node_id}/adapters/{adapter_number}/ports/{port_number}/nio",
|
|
|
|
status_code=status.HTTP_201_CREATED,
|
|
|
|
response_model=schemas.UDPNIO,
|
|
|
|
)
|
|
|
|
async def create_nio(
|
2021-04-18 09:10:38 +03:00
|
|
|
*,
|
|
|
|
adapter_number: int = Path(..., ge=0, le=0),
|
|
|
|
port_number: int,
|
|
|
|
nio_data: schemas.UDPNIO,
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> schemas.UDPNIO:
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
nio = await Dynamips.instance().create_nio(node, jsonable_encoder(nio_data, exclude_unset=True))
|
2020-10-02 09:37:50 +03:00
|
|
|
await node.add_nio(nio, port_number)
|
2021-04-17 17:04:28 +03:00
|
|
|
return nio.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.delete("/{node_id}/adapters/{adapter_number}/ports/{port_number}/nio", status_code=status.HTTP_204_NO_CONTENT)
|
2021-04-18 09:10:38 +03:00
|
|
|
async def delete_nio(
|
|
|
|
*,
|
|
|
|
adapter_number: int = Path(..., ge=0, le=0),
|
|
|
|
port_number: int,
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Delete a NIO (Network Input/Output) from the node.
|
|
|
|
The adapter number on the switch is always 0.
|
|
|
|
"""
|
|
|
|
|
|
|
|
nio = await node.remove_nio(port_number)
|
|
|
|
await nio.delete()
|
|
|
|
|
|
|
|
|
2021-04-13 09:49:56 +03:00
|
|
|
@router.post("/{node_id}/adapters/{adapter_number}/ports/{port_number}/capture/start")
|
2021-04-13 12:16:50 +03:00
|
|
|
async def start_capture(
|
2021-04-18 09:10:38 +03:00
|
|
|
*,
|
|
|
|
adapter_number: int = Path(..., ge=0, le=0),
|
|
|
|
port_number: int,
|
|
|
|
node_capture_data: schemas.NodeCapture,
|
|
|
|
node: EthernetSwitch = Depends(dep_node),
|
|
|
|
) -> dict:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Start a packet capture on the node.
|
|
|
|
The adapter number on the switch is always 0.
|
|
|
|
"""
|
|
|
|
|
|
|
|
pcap_file_path = os.path.join(node.project.capture_working_directory(), node_capture_data.capture_file_name)
|
|
|
|
await node.start_capture(port_number, pcap_file_path, node_capture_data.data_link_type)
|
|
|
|
return {"pcap_file_path": pcap_file_path}
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post(
|
|
|
|
"/{node_id}/adapters/{adapter_number}/ports/{port_number}/capture/stop", status_code=status.HTTP_204_NO_CONTENT
|
|
|
|
)
|
2021-04-18 09:10:38 +03:00
|
|
|
async def stop_capture(
|
|
|
|
*,
|
|
|
|
adapter_number: int = Path(..., ge=0, le=0),
|
|
|
|
port_number: int,
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> None:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stop a packet capture on the node.
|
|
|
|
The adapter number on the switch is always 0.
|
|
|
|
"""
|
|
|
|
|
|
|
|
await node.stop_capture(port_number)
|
|
|
|
|
|
|
|
|
2021-04-13 09:49:56 +03:00
|
|
|
@router.get("/{node_id}/adapters/{adapter_number}/ports/{port_number}/capture/stream")
|
2021-04-18 09:10:38 +03:00
|
|
|
async def stream_pcap_file(
|
|
|
|
*,
|
|
|
|
adapter_number: int = Path(..., ge=0, le=0),
|
|
|
|
port_number: int,
|
|
|
|
node: EthernetSwitch = Depends(dep_node)
|
|
|
|
) -> StreamingResponse:
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stream the pcap capture file.
|
|
|
|
The adapter number on the switch is always 0.
|
|
|
|
"""
|
|
|
|
|
|
|
|
nio = node.get_nio(port_number)
|
2020-10-14 03:19:29 +03:00
|
|
|
stream = Dynamips.instance().stream_pcap_file(nio, node.project.id)
|
2020-10-02 09:37:50 +03:00
|
|
|
return StreamingResponse(stream, media_type="application/vnd.tcpdump.pcap")
|