* tests: read checked-in files as UTF-8 instead of the platform default Path.read_text() with no encoding uses locale.getpreferredencoding(), which is UTF-8 on the Linux runners and cp1252 on a stock Windows install. Nine module-level reads of checked-in source files were relying on that default. studio/backend/routes/inference.py carries the DeepSeek tool-call token regexes, so it holds U+FF5C and U+2581. Under cp1252 that read raised UnicodeDecodeError on byte 0x81 at position 97806, and because the reads run at import time it took test_cancel_atomicity.py and test_cancel_id_wiring.py out at collection, not as failures. Green on CI, permanently broken for a Windows contributor running the suite locally. Adds a guard: at module scope there is no tmp_path fixture, so a bare read_text()/write_text()/open() there is always touching a checked-in file. That makes the rule mechanical enough to enforce with no allowlist, while staying quiet about temp-dir I/O inside test bodies where the platform default is harmless. The repo already spells this correctly in 464 other places; this only stops the stragglers coming back. * tests: cover import-time helper reads and keep the guard py3.9-safe Follows up on the Codex review: - add `from __future__ import annotations`, since `str | None` in `_offender` is evaluated at import on Python 3.9 and pyproject declares requires-python ">=3.9,<3.15". - widen the guard from module scope to import time. Class bodies and the bodies of module-level helpers called from an executing statement run during collection too, so `CODE = _extract_mixed_precision_code()` was the same hazard as an inline read. `if __name__ == "__main__":` blocks are skipped: pytest never executes them. - scan studio/backend/tests/ as well as tests/. Both trees are collected on Windows by separate CI jobs, and the offender that started this, test_tool_xml_strip.py reading routes/inference.py, lives there. Widening it surfaced seven more import-time reads of checked-in sources; all now name utf-8. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Harden the import-time encoding guard for PR #7438 Close the detector gaps raised in review, all of which I reproduced against the actual AST before changing anything. False negatives (the guard let a real hazard through): - _is_main_guard ignored the comparison operator, so if __name__ != "__main__" counted as script-only even though its body runs at import. - The else arm of a main guard was discarded with the rest of the If node. - Decorators and argument defaults on a module-level def were skipped with the body, though both are evaluated when the def executes. - Path.open() in text mode was invisible; only builtin open() was matched. - encoding = None and encoding = "locale" both re-select the platform default, but the keyword merely being present counted as pinned. False positives (the guard would have blocked a compliant contributor): - A non-literal mode fell through to the "r" default, so open(p, mode) was flagged even when mode is "rb", where adding encoding= is a ValueError and there is no edit that satisfies the rule. - Same for open(*args) and a **kwargs splat, which hide the mode and can hide an encoding. - Lambda bodies and comprehension elements were walked even though neither runs at definition. Verified: still reports the same 22 offenders on unpatched main, green on this branch and on the tree merged with latest main (557 files), and an adversarial corpus of 33 cases now scores zero false positives and zero false negatives. Also corrected two docstring claims: neither collecting job runs on Windows, and the read is governed by locale.getencoding(). * Walk eager comprehensions and treat io.open as the builtin Two regressions from the previous commit, both reproduced against the AST before changing anything. Lumping list, set and dict comprehensions in with generator expressions was wrong. Only a genexp is lazy; the other three run their element expression, their filters and their nested iterators immediately, so CONTENTS = [p.read_text() for p in PATHS] at module scope is an import-time read the guard was silently missing. Comprehensions are now walked in full and only the genexp keeps the outermost-iterable-only treatment. io was also in the not-a-path-opener list, but io.open is the builtin, with the same mode position and the same platform default. io.open(CHECKED_IN_FILE) is exactly the hazard this guard exists for, so it is matched now, with binary modes and a pinned encoding still exempt. tarfile.open and fitz.open stay exempt since neither has an encoding to name. Verified: 13 targeted cases covering all five eager comprehension forms and io.open in text, binary and pinned shapes all classify correctly; still 22 offenders on unpatched main; green on this branch and on the tree merged with latest main. * Close three more walker gaps in the import-time guard All three reproduced against the AST first. A generator expression handed straight to a call is consumed there, so DATA = "".join(p.read_text() for p in paths) runs its element at import. Only an unconsumed genexp bound to a name stays lazy, so the walker now follows the consumed ones in full and keeps the outermost-iterable-only treatment for the rest. if "__main__" == __name__ is an equivalent and accepted spelling of the main guard, but requiring __name__ on the left meant its body was treated as import-time code. That is a false positive on a block pytest never runs, so both operand orders are recognised now. The helper table was built from module-level defs only, so a def in a class body invoked while the class is constructed was never followed, contradicting the walker's stated coverage of class bodies. Helpers are now collected from the module body and from class bodies at any nesting. Verified: 15 targeted cases including all three fixes and the earlier ones still classify correctly; still 22 offenders on unpatched main; green on this branch and on the tree merged with latest main. * Handle positional read_text encodings, lazy generators and nested helpers * Guard reads reached from test bodies, unbound Path calls and __file__ paths * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Follow derived paths, skip lazy generator helpers, cover compressed openers * Guard the CLI tests, helper parameters and unbound Path arguments * Discover test roots and follow literal, in-place and tuple-derived paths * Identify module openers by import, unwrap starred paths, pin subprocess snippets * Resolve import origins, seed helper locals, follow named generators and parametrize * Scope imports lexically, list tracked test files, bind unpacked names * Resolve aliased openers, keyword-only params, destructured targets, next() * Pin the encoding on subprocess snippets, workflow lint and CLI output for PR #7438 * Harden the CLI encoding guard against detached streams for PR #7438 * Tighten the encoding guard's path and scope analysis for PR #7438 * Resolve path provenance more precisely and keep POSIX stream encodings for PR #7438 * Resolve qualified path classes and scope conditional imports for PR #7438 * Scope CLI stream setup to the entry point and align two encoding pairs for PR #7438 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: danielhanchen <danielhanchen@gmail.com>
114 lines
5 KiB
Python
114 lines
5 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
|
|
|
|
"""Deterministic consistency guards for the model-load security gate.
|
|
|
|
The gate spans many parallel sites (validate/load/status, the inference/training/export
|
|
workers, the preflight route); past regressions were a fix at one site with a sibling
|
|
left behind. These guards enumerate the sites mechanically (AST + source) so a new site
|
|
that drops the token or mis-reports the requirement fails here, not in a later review.
|
|
"""
|
|
|
|
import ast
|
|
from pathlib import Path
|
|
|
|
_BACKEND = Path(__file__).resolve().parent.parent
|
|
|
|
# Probes read Hub config to classify a model; a token-less call 404s on a gated repo.
|
|
# Scan callers under routes/ and core/ (probe definitions live in utils/).
|
|
_PROBE_FUNCS = {"is_vision_model", "is_embedding_model", "detect_audio_type"}
|
|
_PROBE_CALLER_ROOTS = ("routes", "core")
|
|
|
|
|
|
def _iter_caller_files():
|
|
for root in _PROBE_CALLER_ROOTS:
|
|
yield from (_BACKEND / root).rglob("*.py")
|
|
|
|
|
|
def _passes_token(call: ast.Call) -> bool:
|
|
"""True if the call passes an hf_token (keyword, or the 2nd positional slot)."""
|
|
if any(kw.arg in ("hf_token", "token") for kw in call.keywords if kw.arg is not None):
|
|
return True
|
|
return len(call.args) >= 2
|
|
|
|
|
|
def _call_name(call: ast.Call):
|
|
fn = call.func
|
|
return fn.id if isinstance(fn, ast.Name) else getattr(fn, "attr", None)
|
|
|
|
|
|
def test_capability_probes_thread_the_hf_token():
|
|
"""Every capability-probe caller passes the token; a token-less probe misclassifies
|
|
a gated model (the /check-vision regression)."""
|
|
offenders = []
|
|
for path in _iter_caller_files():
|
|
try:
|
|
tree = ast.parse(path.read_text(encoding = "utf-8"))
|
|
except SyntaxError:
|
|
continue
|
|
for node in ast.walk(tree):
|
|
if isinstance(node, ast.Call) and _call_name(node) in _PROBE_FUNCS:
|
|
if not _passes_token(node):
|
|
rel = path.relative_to(_BACKEND)
|
|
offenders.append(f"{rel}:{node.lineno} {_call_name(node)}() drops the hf_token")
|
|
assert not offenders, (
|
|
"A capability probe must pass the hf_token so gated/private models classify "
|
|
"correctly:\n " + "\n ".join(offenders)
|
|
)
|
|
|
|
|
|
def test_gguf_trust_remote_code_reported_inert_not_from_yaml():
|
|
"""GGUF never executes auto_map, so requires_trust_remote_code is reported via the
|
|
resolver or False, never the raw YAML bool() (the round-6 regression)."""
|
|
src = (_BACKEND / "routes" / "inference.py").read_text(encoding = "utf-8")
|
|
assert "requires_trust_remote_code = bool(" not in src, (
|
|
"Report requires_trust_remote_code via _resolve_loaded_trust_remote_code "
|
|
"(non-GGUF) or set it False (GGUF); never bool(inference_config.get(...))."
|
|
)
|
|
|
|
|
|
def test_capability_detection_caches_are_token_aware():
|
|
"""Every capability cache is keyed by (model, token_fingerprint) so an unauthenticated
|
|
miss cannot poison a later authenticated lookup (the audio-cache regression)."""
|
|
src = (_BACKEND / "utils" / "models" / "model_config.py").read_text(encoding = "utf-8")
|
|
offenders = []
|
|
for line in src.splitlines():
|
|
stripped = line.strip()
|
|
if "_detection_cache:" in stripped and stripped.endswith("= {}"):
|
|
if "Dict[Tuple" not in stripped and "Dict[tuple" not in stripped:
|
|
offenders.append(stripped)
|
|
assert not offenders, (
|
|
"A capability cache must be keyed by (model, token_fingerprint), not the bare "
|
|
"model name:\n " + "\n ".join(offenders)
|
|
)
|
|
|
|
|
|
def test_malware_and_consent_gates_cover_the_lora_base():
|
|
"""Every worker that runs a load gate also resolves the LoRA base, so a poisoned or
|
|
custom-code base is never skipped."""
|
|
gated_workers = [
|
|
"core/inference/worker.py",
|
|
"core/export/worker.py",
|
|
"core/training/worker.py",
|
|
]
|
|
offenders = []
|
|
for rel in gated_workers:
|
|
src = (_BACKEND / rel).read_text(encoding = "utf-8")
|
|
runs_gate = "evaluate_file_security(" in src or "evaluate_remote_code_consent" in src
|
|
resolves_base = "get_base_model_from_lora_identifier(" in src or "base_model" in src
|
|
if runs_gate and not resolves_base:
|
|
offenders.append(f"{rel} runs a load gate but never resolves the LoRA base")
|
|
assert not offenders, "\n".join(offenders)
|
|
|
|
|
|
def test_rag_embedding_path_runs_the_malware_gate():
|
|
"""The RAG embedding model is set through /settings and later loaded by
|
|
SentenceTransformer, which deserializes pickles; both sites must run the malware gate
|
|
or a flagged repo loads unscanned (bypassing the normal model-load protections)."""
|
|
offenders = []
|
|
for rel in ("routes/settings.py", "core/rag/embeddings.py"):
|
|
if "evaluate_file_security(" not in (_BACKEND / rel).read_text(encoding = "utf-8"):
|
|
offenders.append(
|
|
f"{rel} loads/persists an embedding model without evaluate_file_security"
|
|
)
|
|
assert not offenders, "\n".join(offenders)
|