gns3-server/tests/api/routes/controller/test_console_tickets.py
YueGuobin 6d6b5351fa
fix: issue short-lived console tickets instead of JWTs in node_console MCP tool
LLM clients transcribing the console WebSocket URL into shell commands
reliably corrupted the ~200-char JWT embedded in it (dropped header
segment -> "MissingAlgorithmError: Missing 'alg' value in header" on
every connection attempt). The node_console tool now mints a short
random ticket ("gns3t_" + 16 urlsafe chars, 10 min TTL, multi-use)
stored server-side and bound to the node's console endpoints:

- new ConsoleTicketService (gns3server/services/console_tickets.py),
  in-memory store with lazy expiry sweeps
- get_current_active_user_from_websocket redeems tickets through the
  existing "token" query parameter, gated on websocket.path_params so a
  ticket only authenticates the console/ws and console/vnc routes of
  the node it was minted for; the JWT path is unchanged
- redemption reuses the existing user lookup, token_version revocation
  and is_active checks, so logging out invalidates outstanding tickets
- vnc_url no longer embeds the full session JWT
- the tool docstring now tells clients to run the returned command
  verbatim instead of reconstructing the URL
2026-08-29 01:00:12 +08:00

228 lines
9.3 KiB
Python

#
# Copyright (C) 2026 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 hashlib
from types import SimpleNamespace
from typing import List
import aiohttp
import pytest
from fastapi import FastAPI
from httpx import AsyncClient
from httpx_ws import aconnect_ws
from httpx_ws.transport import ASGIWebSocketTransport
from pydantic import SecretStr
from gns3server.config import Config
from gns3server.controller import Controller
from gns3server.controller.compute import Compute
from gns3server.controller.node import Node
from gns3server.controller.project import Project
from gns3server.services.console_tickets import (
ConsoleTicketService,
DEFAULT_TICKET_TTL,
TICKET_PREFIX,
)
from gns3server.services import console_ticket_service
from gns3server.utils.http_client import HTTPClient
from tests.api.routes.controller.test_nodes import FakeComputeConsoleWebSocket
class TestConsoleTicketService:
"""Unit tests for the in-memory ticket store (fresh instances, no app)."""
def test_mint_format(self) -> None:
service = ConsoleTicketService()
ticket = service.mint("admin", 1, "p1", "n1")
assert ticket.startswith(TICKET_PREFIX)
# 12 random bytes -> 16 urlsafe chars; shell-safe alphabet (no quoting hazards)
assert len(ticket) == len(TICKET_PREFIX) + 16
assert "." not in ticket # never confusable with a JWT
assert service.mint("admin", 1, "p1", "n1") != ticket
def test_redeem_valid_ticket_is_multi_use(self) -> None:
service = ConsoleTicketService()
ticket = service.mint("admin", 7, "p1", "n1")
path_params = {"project_id": "p1", "node_id": "n1"}
first = service.redeem(ticket, path_params)
second = service.redeem(ticket, path_params) # console clients reconnect, tickets stay usable
assert first is not None and second is not None
assert first.username == "admin"
assert first.token_version == 7
def test_redeem_rejects_wrong_binding(self) -> None:
service = ConsoleTicketService()
ticket = service.mint("admin", 0, "p1", "n1")
assert service.redeem(ticket, {"project_id": "p1", "node_id": "n2"}) is None
assert service.redeem(ticket, {"project_id": "p2", "node_id": "n1"}) is None
# routes without a node_id path parameter (notifications, wireshark…) never accept a ticket
assert service.redeem(ticket, {"project_id": "p1"}) is None
assert service.redeem(ticket, {}) is None
def test_redeem_rejects_unknown_ticket(self) -> None:
service = ConsoleTicketService()
assert service.redeem(TICKET_PREFIX + "doesnotexist", {"project_id": "p1", "node_id": "n1"}) is None
def test_expired_ticket_is_rejected_and_removed(self) -> None:
service = ConsoleTicketService()
ticket = service.mint("admin", 0, "p1", "n1", ttl=0)
assert service.redeem(ticket, {"project_id": "p1", "node_id": "n1"}) is None
assert ticket not in service._tickets
def test_mint_sweeps_expired_entries(self) -> None:
service = ConsoleTicketService()
stale = service.mint("admin", 0, "p1", "n1", ttl=0)
fresh = service.mint("admin", 0, "p1", "n2", ttl=DEFAULT_TICKET_TTL)
assert stale not in service._tickets
assert fresh in service._tickets
class TestConsoleTicketWebSocketAuth:
"""
Drive the console WebSocket auth dependency end-to-end through the real
routes (the shared service singleton is the one the dependency consults).
"""
pytestmark = pytest.mark.asyncio
@pytest.fixture(autouse=True)
def _reset_controller_singleton(self, controller):
# The project/compute fixtures register state on the shared Controller
# singleton; reset it after each test so files running later (e.g. the
# controller statistics endpoint) see a pristine controller regardless
# of test order — same reset the controller fixture applies at setup.
yield
Controller._instance = None
@pytest.fixture
def node(self, project: Project, compute: Compute) -> Node:
compute.host = "127.0.0.1"
compute.port = 3080
node = Node(project, compute, "test", node_type="vpcs")
project._nodes[node.id] = node
return node
@pytest.fixture
def compute_credentials(self) -> None:
server_config = Config.instance().settings.Server
server_config.compute_username = "admin"
server_config.compute_password = SecretStr("password")
@staticmethod
def _ws_client(app: FastAPI, base_client: AsyncClient) -> AsyncClient:
# base_client must be requested so the app gets the test-DB dependency
# override, but the WebSocket connection itself needs a function-local
# client: closing the WS transport from the class-scoped base_client
# teardown exits anyio cancel scopes in the wrong task.
return AsyncClient(base_url="http://test-api", transport=ASGIWebSocketTransport(app=app))
@staticmethod
def _forward_compute_ws(monkeypatch, messages: List[aiohttp.WSMessage]) -> FakeComputeConsoleWebSocket:
compute_ws = FakeComputeConsoleWebSocket(messages)
monkeypatch.setattr(
HTTPClient,
"get_client",
classmethod(lambda cls: SimpleNamespace(ws_connect=lambda *args, **kwargs: compute_ws))
)
return compute_ws
async def test_console_ws_accepts_valid_ticket(
self,
app: FastAPI,
base_client: AsyncClient,
compute_credentials,
project: Project,
node: Node,
monkeypatch
) -> None:
# admin is the seeded superadmin, so the RBAC privilege check is skipped
ticket = console_ticket_service.mint("admin", 0, project.id, node.id)
self._forward_compute_ws(monkeypatch, [
aiohttp.WSMessage(aiohttp.WSMsgType.TEXT, "device output", None),
])
async with self._ws_client(app, base_client) as client:
async with aconnect_ws(
f"/v3/projects/{project.id}/nodes/{node.id}/console/ws",
client,
params={"token": ticket}
) as ws:
# reaching the compute forwarding loop means ticket auth succeeded
assert await ws.receive_text() == "device output"
async def test_console_ws_rejects_ticket_bound_to_other_node(
self,
app: FastAPI,
base_client: AsyncClient,
project: Project,
node: Node
) -> None:
other_node = "00000000-0000-0000-0000-000000000000"
ticket = console_ticket_service.mint("admin", 0, project.id, other_node)
async with self._ws_client(app, base_client) as client:
async with aconnect_ws(
f"/v3/projects/{project.id}/nodes/{node.id}/console/ws",
client,
params={"token": ticket}
) as ws:
notification = await ws.receive_json()
assert notification["event"]["message"] == (
"Could not authenticate while connecting to controller WebSocket: "
"Invalid or expired console ticket "
f"(received token sha256 prefix: {hashlib.sha256(ticket.encode()).hexdigest()[:8]})"
)
async def test_console_ws_rejects_ticket_with_stale_token_version(
self,
app: FastAPI,
base_client: AsyncClient,
project: Project,
node: Node
) -> None:
# logging out bumps the user's token_version: outstanding tickets must die with it
ticket = console_ticket_service.mint("admin", 999, project.id, node.id)
async with self._ws_client(app, base_client) as client:
async with aconnect_ws(
f"/v3/projects/{project.id}/nodes/{node.id}/console/ws",
client,
params={"token": ticket}
) as ws:
notification = await ws.receive_json()
assert "Token has been revoked for 'admin'" in notification["event"]["message"]
async def test_ticket_rejected_on_non_console_websocket(
self,
app: FastAPI,
base_client: AsyncClient
) -> None:
# the controller notification stream shares the WS auth dependency but has
# no node binding: a console ticket must not authenticate it
ticket = console_ticket_service.mint("admin", 0, "p1", "n1")
async with self._ws_client(app, base_client) as client:
async with aconnect_ws("/v3/notifications/ws", client, params={"token": ticket}) as ws:
notification = await ws.receive_json()
assert "Invalid or expired console ticket" in notification["event"]["message"]