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 IOU nodes.
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2020-10-19 07:30:41 +03:00
|
|
|
from fastapi import APIRouter, WebSocket, Depends, Body, status
|
2020-10-02 09:37:50 +03:00
|
|
|
from fastapi.encoders import jsonable_encoder
|
|
|
|
from fastapi.responses import StreamingResponse
|
|
|
|
from typing import Union
|
|
|
|
from uuid import UUID
|
|
|
|
|
2020-10-31 07:32:21 +02:00
|
|
|
from gns3server import schemas
|
2020-10-02 09:37:50 +03:00
|
|
|
from gns3server.compute.iou import IOU
|
2020-10-14 03:19:29 +03:00
|
|
|
from gns3server.compute.iou.iou_vm import IOUVM
|
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 IOU 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
|
|
|
|
|
|
|
def dep_node(project_id: UUID, node_id: UUID):
|
|
|
|
"""
|
|
|
|
Dependency to retrieve a node.
|
|
|
|
"""
|
|
|
|
|
|
|
|
iou_manager = IOU.instance()
|
|
|
|
node = iou_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.IOU,
|
|
|
|
status_code=status.HTTP_201_CREATED,
|
|
|
|
responses={409: {"model": schemas.ErrorMessage, "description": "Could not create IOU node"}},
|
|
|
|
)
|
2020-10-02 09:37:50 +03:00
|
|
|
async def create_iou_node(project_id: UUID, node_data: schemas.IOUCreate):
|
|
|
|
"""
|
|
|
|
Create a new IOU node.
|
|
|
|
"""
|
|
|
|
|
|
|
|
iou = IOU.instance()
|
|
|
|
node_data = jsonable_encoder(node_data, exclude_unset=True)
|
2021-04-13 12:16:50 +03:00
|
|
|
vm = await iou.create_node(
|
|
|
|
node_data.pop("name"),
|
|
|
|
str(project_id),
|
|
|
|
node_data.get("node_id"),
|
|
|
|
application_id=node_data.get("application_id"),
|
|
|
|
path=node_data.get("path"),
|
|
|
|
console=node_data.get("console"),
|
|
|
|
console_type=node_data.get("console_type", "telnet"),
|
|
|
|
)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
for name, value in node_data.items():
|
|
|
|
if hasattr(vm, name) and getattr(vm, name) != value:
|
|
|
|
if name == "application_id":
|
|
|
|
continue # we must ignore this to avoid overwriting the application_id allocated by the controller
|
|
|
|
if name == "startup_config_content" and (vm.startup_config_content and len(vm.startup_config_content) > 0):
|
|
|
|
continue
|
|
|
|
if name == "private_config_content" and (vm.private_config_content and len(vm.private_config_content) > 0):
|
|
|
|
continue
|
|
|
|
if node_data.get("use_default_iou_values") and (name == "ram" or name == "nvram"):
|
|
|
|
continue
|
|
|
|
setattr(vm, name, value)
|
2021-04-17 17:04:28 +03:00
|
|
|
return vm.asdict()
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.get("/{node_id}", response_model=schemas.IOU)
|
2020-10-14 03:19:29 +03:00
|
|
|
def get_iou_node(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Return an IOU node.
|
|
|
|
"""
|
|
|
|
|
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.put("/{node_id}", response_model=schemas.IOU)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def update_iou_node(node_data: schemas.IOUUpdate, node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Update an IOU node.
|
|
|
|
"""
|
|
|
|
|
|
|
|
node_data = jsonable_encoder(node_data, exclude_unset=True)
|
|
|
|
for name, value in node_data.items():
|
2020-10-14 03:19:29 +03:00
|
|
|
if hasattr(node, name) and getattr(node, name) != value:
|
2020-10-02 09:37:50 +03:00
|
|
|
if name == "application_id":
|
|
|
|
continue # we must ignore this to avoid overwriting the application_id allocated by the IOU manager
|
2020-10-14 03:19:29 +03:00
|
|
|
setattr(node, name, value)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
if node.use_default_iou_values:
|
2020-10-02 09:37:50 +03:00
|
|
|
# update the default IOU values in case the image or use_default_iou_values have changed
|
|
|
|
# this is important to have the correct NVRAM amount in order to correctly push the configs to the NVRAM
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.update_default_iou_values()
|
|
|
|
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)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def delete_iou_node(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Delete an IOU node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await IOU.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}/duplicate", response_model=schemas.IOU, status_code=status.HTTP_201_CREATED)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def duplicate_iou_node(destination_node_id: UUID = Body(..., embed=True), node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Duplicate an IOU node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
new_node = await IOU.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.post("/{node_id}/start", status_code=status.HTTP_204_NO_CONTENT)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def start_iou_node(start_data: schemas.IOUStart, node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Start an IOU node.
|
|
|
|
"""
|
|
|
|
|
|
|
|
start_data = jsonable_encoder(start_data, exclude_unset=True)
|
|
|
|
for name, value in start_data.items():
|
2020-10-14 03:19:29 +03:00
|
|
|
if hasattr(node, name) and getattr(node, name) != value:
|
|
|
|
setattr(node, name, value)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.start()
|
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}/stop", status_code=status.HTTP_204_NO_CONTENT)
|
2020-12-02 10:09:08 +02:00
|
|
|
async def stop_iou_node(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stop an IOU node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.stop()
|
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)
|
2020-10-14 03:19:29 +03:00
|
|
|
def suspend_iou_node(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Suspend an IOU node.
|
|
|
|
Does nothing since IOU doesn't support being suspended.
|
|
|
|
"""
|
|
|
|
|
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}/reload", status_code=status.HTTP_204_NO_CONTENT)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def reload_iou_node(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Reload an IOU node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.reload()
|
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=Union[schemas.EthernetNIO, schemas.TAPNIO, schemas.UDPNIO],
|
|
|
|
)
|
|
|
|
async def create_iou_node_nio(
|
|
|
|
adapter_number: int,
|
|
|
|
port_number: int,
|
|
|
|
nio_data: Union[schemas.EthernetNIO, schemas.TAPNIO, schemas.UDPNIO],
|
|
|
|
node: IOUVM = Depends(dep_node),
|
|
|
|
):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Add a NIO (Network Input/Output) to the node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
nio = IOU.instance().create_nio(jsonable_encoder(nio_data, exclude_unset=True))
|
|
|
|
await node.adapter_add_nio_binding(adapter_number, port_number, nio)
|
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.put(
|
|
|
|
"/{node_id}/adapters/{adapter_number}/ports/{port_number}/nio",
|
|
|
|
status_code=status.HTTP_201_CREATED,
|
|
|
|
response_model=Union[schemas.EthernetNIO, schemas.TAPNIO, schemas.UDPNIO],
|
|
|
|
)
|
|
|
|
async def update_iou_node_nio(
|
|
|
|
adapter_number: int,
|
|
|
|
port_number: int,
|
|
|
|
nio_data: Union[schemas.EthernetNIO, schemas.TAPNIO, schemas.UDPNIO],
|
|
|
|
node: IOUVM = Depends(dep_node),
|
|
|
|
):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Update a NIO (Network Input/Output) on the node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
nio = node.get_nio(adapter_number, port_number)
|
2020-10-02 09:37:50 +03:00
|
|
|
if nio_data.filters:
|
|
|
|
nio.filters = nio_data.filters
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.adapter_update_nio_binding(adapter_number, port_number, nio)
|
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)
|
2020-12-02 10:09:08 +02:00
|
|
|
async def delete_iou_node_nio(adapter_number: int, port_number: int, node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Delete a NIO (Network Input/Output) from the node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.adapter_remove_nio_binding(adapter_number, port_number)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
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_iou_node_capture(
|
|
|
|
adapter_number: int, port_number: int, node_capture_data: schemas.NodeCapture, node: IOUVM = Depends(dep_node)
|
|
|
|
):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Start a packet capture on the node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
pcap_file_path = os.path.join(node.project.capture_working_directory(), node_capture_data.capture_file_name)
|
|
|
|
await node.start_capture(adapter_number, pcap_file_path)
|
2020-10-02 09:37:50 +03:00
|
|
|
return {"pcap_file_path": str(pcap_file_path)}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
)
|
2020-12-02 10:09:08 +02:00
|
|
|
async def stop_iou_node_capture(adapter_number: int, port_number: int, node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stop a packet capture on the node.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.stop_capture(adapter_number, port_number)
|
2020-10-02 09:37:50 +03:00
|
|
|
|
|
|
|
|
2021-04-13 09:49:56 +03:00
|
|
|
@router.get("/{node_id}/adapters/{adapter_number}/ports/{port_number}/capture/stream")
|
2020-10-14 03:19:29 +03:00
|
|
|
async def stream_pcap_file(adapter_number: int, port_number: int, node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
"""
|
|
|
|
Stream the pcap capture file.
|
|
|
|
"""
|
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
nio = node.get_nio(adapter_number, port_number)
|
|
|
|
stream = IOU.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")
|
|
|
|
|
|
|
|
|
2020-10-19 07:30:41 +03:00
|
|
|
@router.websocket("/{node_id}/console/ws")
|
|
|
|
async def console_ws(websocket: WebSocket, node: IOUVM = Depends(dep_node)):
|
|
|
|
"""
|
|
|
|
Console WebSocket.
|
|
|
|
"""
|
|
|
|
|
|
|
|
await node.start_websocket_console(websocket)
|
|
|
|
|
|
|
|
|
2021-04-13 12:16:50 +03:00
|
|
|
@router.post("/{node_id}/console/reset", status_code=status.HTTP_204_NO_CONTENT)
|
2020-10-14 03:19:29 +03:00
|
|
|
async def reset_console(node: IOUVM = Depends(dep_node)):
|
2020-10-02 09:37:50 +03:00
|
|
|
|
2020-10-14 03:19:29 +03:00
|
|
|
await node.reset_console()
|