e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
99 lines
4.2 KiB
Python
99 lines
4.2 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Bind-host trust policy for the Studio backend.
|
|
|
|
Stdlib only -- safe to import without the rest of the backend.
|
|
|
|
`is_external_host` mirrors the CLI's `unsloth_cli/_tool_policy.py`: a loopback
|
|
bind is the user's own machine, any other address is network-reachable. The
|
|
logic is duplicated rather than shared because the backend is self-contained
|
|
(see run.py: "can be moved to any directory") and runs from a venv that may not
|
|
have `unsloth_cli` on sys.path. Keep the two in sync.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
# Loopback aliases; any other bind address is treated as network-reachable. Only
|
|
# the exact aliases the rest of the stack assumes for loopback (health checks,
|
|
# banner URLs, run.py all hard-code 127.0.0.1), so other 127.0.0.0/8 addresses
|
|
# are deliberately left out -- they are not supported launch hosts.
|
|
_LOOPBACK_HOSTS = frozenset({"127.0.0.1", "localhost", "::1"})
|
|
|
|
# Whether a loopback launch in THIS process auto-enabled the gate. run_server
|
|
# normally runs once per process, but if it is reused with a different host
|
|
# (embedders, tests) a stale loopback default must not carry into a later
|
|
# public bind, so we only ever take back a value we set ourselves.
|
|
_auto_enabled = False
|
|
|
|
|
|
def is_external_host(host: str) -> bool:
|
|
"""True when `host` is reachable from beyond loopback."""
|
|
return host.lower() not in _LOOPBACK_HOSTS
|
|
|
|
|
|
# Tauri desktop webview origins. api-only serving (the desktop app calling a
|
|
# local backend) locks CORS to these.
|
|
_TAURI_CORS_ORIGINS = (
|
|
"tauri://localhost", # Linux/macOS Tauri webview
|
|
"http://tauri.localhost", # Windows Tauri webview
|
|
"http://localhost", # dev fallback
|
|
"http://localhost:5173", # Tauri dev/Vite
|
|
"http://127.0.0.1:5173", # Tauri dev/Vite fallback
|
|
)
|
|
|
|
|
|
def cors_origins_for_mode(*, api_only: bool, secure: bool) -> list[str]:
|
|
"""Allowed CORS origins. Default is any-origin (["*"]); api-only locks down
|
|
to the Tauri desktop app, except in secure mode where the API is published
|
|
over Cloudflare and must stay reachable from remote browser origins."""
|
|
if api_only and not secure:
|
|
return list(_TAURI_CORS_ORIGINS)
|
|
return ["*"]
|
|
|
|
|
|
def apply_stdio_mcp_loopback_default(host: str, *, is_colab: bool = False) -> None:
|
|
"""Default stdio MCP servers on when bound to loopback.
|
|
|
|
A loopback bind is the user's own machine -- the same trust boundary the
|
|
Tauri desktop app relies on (see main.py, which also binds 127.0.0.1 and
|
|
setdefaults this var). Colab is excluded: even its loopback is a hosted VM
|
|
reachable through Colab's proxy, so it stays off unless opted in. An explicit
|
|
operator value wins: a pre-set `UNSLOTH_STUDIO_ALLOW_STDIO_MCP=0`
|
|
force-disables and `=1` opts in, including on a network bind. We only ever
|
|
set or clear a default we applied ourselves, so reusing run_server with a
|
|
public host after a loopback one does not leave the gate on.
|
|
"""
|
|
global _auto_enabled
|
|
current = os.environ.get("UNSLOTH_STUDIO_ALLOW_STDIO_MCP")
|
|
# If our prior auto-default was changed out from under us (in-process reuse),
|
|
# relinquish ownership: an explicit =0 is then honored below as a sticky
|
|
# force-disable, while a cleared var falls back to the host default like a
|
|
# fresh process.
|
|
if _auto_enabled and current != "1":
|
|
_auto_enabled = False
|
|
# An explicit operator value is one we did not set; never touch it.
|
|
if current is not None and not _auto_enabled:
|
|
return
|
|
if is_colab or is_external_host(host):
|
|
if _auto_enabled:
|
|
os.environ.pop("UNSLOTH_STUDIO_ALLOW_STDIO_MCP", None)
|
|
_auto_enabled = False
|
|
else:
|
|
os.environ["UNSLOTH_STUDIO_ALLOW_STDIO_MCP"] = "1"
|
|
_auto_enabled = True
|
|
|
|
|
|
def loopback_default_active() -> bool:
|
|
"""True when stdio MCP is on only because a loopback bind auto-enabled it,
|
|
rather than an explicit operator opt-in. Lets the gate tell the two apart."""
|
|
return _auto_enabled
|
|
|
|
|
|
def _reset_loopback_default_state() -> None:
|
|
"""Test hook: forget any auto-enable applied earlier in this process."""
|
|
global _auto_enabled
|
|
_auto_enabled = False
|