File size: 13,420 Bytes
142cbad a07daae 142cbad 41b3e98 142cbad dc6756e 41b3e98 dc6756e 41b3e98 dc6756e 41b3e98 dc6756e 621cf5d dc6756e 142cbad a07daae 41b3e98 a07daae 41b3e98 a07daae 41b3e98 a07daae 41b3e98 a07daae 41b3e98 a07daae 41b3e98 a07daae 142cbad 41b3e98 142cbad dc6756e 142cbad dc6756e 2ef5999 142cbad dc6756e 142cbad 41b3e98 621cf5d dc6756e 142cbad dc6756e a07daae 621cf5d a07daae 621cf5d e3b5199 a19eae6 142cbad dc6756e 621cf5d dc6756e a07daae 142cbad a07daae a19eae6 a07daae 142cbad 621cf5d a07daae 621cf5d 142cbad 621cf5d a07daae 142cbad dc6756e 142cbad dc6756e 142cbad a07daae 142cbad 621cf5d 142cbad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | """Governed export packet writer for hackathon evidence."""
from __future__ import annotations
import json
import os
import re
import time
from pathlib import Path, PureWindowsPath
from typing import Any
from .catalog import active_stack, parameter_budget
REPO_ROOT = Path(__file__).resolve().parents[2]
ALLOWED_LOCAL_EXPORT_ROOTS = (
REPO_ROOT / "outputs",
REPO_ROOT / ".pi",
REPO_ROOT / ".codex",
)
def _is_within(path: Path, root: Path) -> bool:
"""
Checks if a path is within a given root directory.
Returns:
True if the path is within the root directory, False otherwise.
"""
try:
path.relative_to(root)
return True
except ValueError:
return False
def _safe_export_candidate(candidate: Path) -> Path | None:
"""
Validates and resolves an export directory candidate against allowed roots.
Returns:
Path | None: The resolved path if within an allowed export root, `None` otherwise.
"""
if not candidate.is_absolute():
candidate = REPO_ROOT / candidate
resolved = candidate.resolve(strict=False)
src_root = (REPO_ROOT / "src").resolve(strict=False)
if resolved == src_root or _is_within(resolved, src_root):
return None
allowed_roots = [root.resolve(strict=False) for root in ALLOWED_LOCAL_EXPORT_ROOTS]
if Path("/data").exists():
allowed_roots.append(Path("/data/nexus_visual_weaver").resolve(strict=False))
if any(resolved == root or _is_within(resolved, root) for root in allowed_roots):
return resolved
return None
def _artifact_name(output_path: Any) -> str | None:
"""
Extract the filename from a file path.
Returns:
filename (str | None): The filename if output_path is provided, None otherwise.
"""
if not output_path:
return None
text = str(output_path)
if "\\" in text or re.match(r"^[A-Za-z]:[\\/]", text):
return PureWindowsPath(text).name
return Path(text).name
def _safe_run_id(value: Any) -> str:
text = str(value or f"nw-{int(time.time())}")
safe = re.sub(r"[^A-Za-z0-9_.-]+", "-", text).strip(".-")
while ".." in safe:
safe = safe.replace("..", ".")
return safe or f"nw-{int(time.time())}"
SENSITIVE_KEY_RE = re.compile(r"(token|secret|api[_-]?key|authorization|payload_excerpt|raw|base64|bytes)", re.IGNORECASE)
SECRET_VALUE_RE = re.compile(r"(hf_[A-Za-z0-9]{20,}|Bearer [A-Za-z0-9._-]+|sk-[A-Za-z0-9_-]{20,})")
CREDENTIAL_NAME_RE = re.compile(r"\b[A-Z0-9_]*(?:API_KEY|TOKEN|SECRET)[A-Z0-9_]*\b")
WINDOWS_PATH_RE = re.compile(r"[A-Za-z]:[\\/][^\s\"']+")
def _sanitize_text(value: str) -> str:
"""
Redacts sensitive information and normalizes text for safe export.
Returns:
str: Text with secrets, credentials, and paths replaced with placeholders, truncated to 1000 characters if necessary.
"""
text = SECRET_VALUE_RE.sub("[redacted_secret]", value)
text = CREDENTIAL_NAME_RE.sub("[redacted_credential_name]", text)
text = WINDOWS_PATH_RE.sub(lambda match: f"[local_path]/{PureWindowsPath(match.group(0)).name}", text)
repo_text = str(REPO_ROOT)
if repo_text in text:
text = text.replace(repo_text, "[repo]")
if "/data/" in text:
text = text.replace("/data/", "[data]/")
if len(text) > 1000:
text = text[:997] + "..."
return text
def _safe_dict(value: Any, *, allow_size_bytes: bool = False) -> Any:
"""
Recursively sanitize data structures to remove sensitive keys and redact sensitive values.
Dictionary keys matching sensitive patterns are dropped unless the key is 'size_bytes' and
allow_size_bytes is True. Lists are limited to the first 40 elements. String values are sanitized
to remove secrets and credentials. Other types are returned unchanged.
Parameters:
allow_size_bytes (bool): If True, preserves the 'size_bytes' key in dictionaries even if it
matches a sensitive pattern. Defaults to False.
Returns:
The sanitized input value with sensitive data redacted and sensitive keys removed.
"""
if isinstance(value, dict):
clean: dict[str, Any] = {}
for key, item in value.items():
key_str = str(key)
if SENSITIVE_KEY_RE.search(key_str) and not (allow_size_bytes and key_str == "size_bytes"):
continue
clean[key_str] = _safe_dict(item, allow_size_bytes=allow_size_bytes)
return clean
if isinstance(value, list):
return [_safe_dict(item, allow_size_bytes=allow_size_bytes) for item in value[:40]]
if isinstance(value, str):
return _sanitize_text(value)
return value
def _safe_scan(scan: dict[str, Any]) -> dict[str, Any]:
"""
Extract and sanitize selected fields from a scan dictionary.
Returns:
A dictionary containing status, scanner, export_gate, extension, magic,
findings, and purification_actions.
"""
return {
"status": scan.get("status"),
"scanner": scan.get("scanner"),
"export_gate": scan.get("export_gate"),
"extension": scan.get("extension"),
"magic": scan.get("magic"),
"findings": _safe_dict(scan.get("findings") or []),
"purification_actions": _safe_dict(scan.get("purification_actions") or []),
}
def _safe_provider(provider: dict[str, Any] | None) -> dict[str, Any]:
"""
Normalize provider metadata by extracting safe fields and sanitizing sensitive data.
Parameters:
provider: Provider metadata dict, or None.
Returns:
Normalized provider dict with extracted and sanitized fields.
"""
provider = provider or {}
evidence = provider.get("evidence") if isinstance(provider.get("evidence"), dict) else {}
return {
"status": provider.get("status"),
"provider_state": provider.get("provider_state"),
"provider": provider.get("provider"),
"repo_id": provider.get("repo_id"),
"model": provider.get("model"),
"message": _safe_dict(provider.get("message", "")),
"evidence": _safe_dict(evidence),
"latency_seconds": provider.get("latency_seconds"),
}
def _safe_reference_metadata(records: Any) -> list[dict[str, Any]]:
"""
Filters and sanitizes reference metadata records.
Returns:
A list of sanitized reference metadata dicts, limited to the first 20 records.
"""
if not isinstance(records, list):
return []
cleaned: list[dict[str, Any]] = []
for record in records[:20]:
if not isinstance(record, dict):
continue
cleaned.append(
{
"source": record.get("source"),
"status": record.get("status"),
"basename": _artifact_name(record.get("basename")) if record.get("basename") else None,
"sha256": record.get("sha256"),
"size_bytes": record.get("size_bytes"),
"st3gg_status": record.get("st3gg_status"),
"export_gate": record.get("export_gate"),
"magic": record.get("magic"),
"extension": record.get("extension"),
"domain": record.get("domain"),
"url_hash": record.get("url_hash"),
"message": _safe_dict(record.get("message", "")),
}
)
return cleaned
def export_root() -> Path:
"""
Selects and creates a permitted directory for writing export JSON packets.
Returns:
Path: An existing export directory, prioritizing environment configuration
and system locations over the repository fallback.
"""
requested = os.environ.get("NEXUS_EXPORT_DIR")
candidates = [Path(requested)] if requested else []
if Path("/data").exists():
candidates.append(Path("/data/nexus_visual_weaver/exports"))
candidates.append(Path("outputs/exports"))
for candidate in candidates:
safe_candidate = _safe_export_candidate(candidate)
if safe_candidate is None:
continue
try:
safe_candidate.mkdir(parents=True, exist_ok=True)
return safe_candidate
except OSError:
continue
fallback = (REPO_ROOT / "outputs/exports").resolve(strict=False)
fallback.mkdir(parents=True, exist_ok=True)
return fallback
def write_export_packet(
*,
run: Any,
scan: dict[str, Any],
operator_state: dict[str, Any],
adult_mode: bool,
) -> dict[str, Any]:
"""
Builds a sanitized JSON export packet and writes it to disk.
Sanitizes sensitive metadata from run, scan, and operator state, then writes the
resulting packet to a controlled export directory.
Parameters:
run: Run object containing checkpoint, request, model_stack, and refined_prompt data.
Returns:
Dictionary with "path" (str) pointing to the written JSON file and "packet" (dict)
containing the constructed export packet.
"""
raw_run_id = getattr(getattr(run, "checkpoint", None), "checkpoint_id", f"nw-{int(time.time())}")
run_id = _safe_run_id(raw_run_id)
run_adult_mode = bool(getattr(getattr(run, "request", None), "adult_mode", adult_mode))
stack = list(getattr(run, "model_stack", None) or active_stack(run_adult_mode))
budget = parameter_budget(stack)
generation = dict(operator_state.get("generation") or {})
generation.pop("hf_token_present", None)
artifact = _artifact_name(generation.get("output_path"))
if "output_path" in generation:
generation["output_path"] = artifact
generation = _safe_dict(generation)
creator_controls = _safe_dict(operator_state.get("creator_controls") or getattr(getattr(run, "request", None), "creator_controls", {}) or {})
reference_metadata = _safe_reference_metadata(operator_state.get("reference_metadata") or getattr(getattr(run, "request", None), "reference_metadata", []) or [])
st3gg_scan = _safe_scan(scan)
minicpm_judge = _safe_provider(operator_state.get("minicpm_judge") or {})
nemotron_evidence = _safe_provider(operator_state.get("nemotron_evidence") or {})
operator_provider_state = _safe_dict(operator_state.get("provider_state"))
provider_states = {
"generation": generation.get("provider_state"),
"minicpm": minicpm_judge.get("status"),
"nemotron": nemotron_evidence.get("status"),
"operator": operator_provider_state,
}
override_reason = _safe_dict(operator_state.get("st3gg_override_reason", ""))
packet = {
"schema": "nexus_visual_weaver.export_packet.v1",
"run_id": run_id,
"created_at_epoch": int(time.time()),
"adult_mode": run_adult_mode,
"prompt": _safe_dict(getattr(getattr(run, "request", None), "prompt", "")),
"refined_prompt": _safe_dict(getattr(getattr(run, "refined_prompt", None), "refined", "")),
"artifact": artifact,
"image_basename": artifact,
"creator_controls": creator_controls,
"reference_metadata": reference_metadata,
"lora_status": {
"status": generation.get("lora_status"),
"repo_id": generation.get("lora_repo_id"),
"message": generation.get("lora_message"),
},
"generation": generation,
"st3gg_verdict": {
"status": st3gg_scan.get("status"),
"export_gate": st3gg_scan.get("export_gate"),
},
"st3gg_override": {
"used": bool(override_reason),
"reason": override_reason,
},
"st3gg_scan": st3gg_scan,
"minicpm_judge": minicpm_judge,
"nemotron_evidence": nemotron_evidence,
"checkpoint": {
"status": _safe_dict(operator_state.get("checkpoint")),
"message": _safe_dict(operator_state.get("message")),
"recommendation": _safe_dict(getattr(getattr(run, "checkpoint", None), "recommendation", None)),
"trust_score": getattr(getattr(run, "checkpoint", None), "trust_score", None),
"required_actions": _safe_dict(getattr(getattr(run, "checkpoint", None), "required_actions", [])),
},
"provider_state": operator_provider_state,
"provider_states": provider_states,
"model_stack": [
{
"repo_id": model.repo_id,
"role": model.role,
"params_b": model.params_b,
"license": model.license,
"gated": model.gated,
}
for model in stack
],
"parameter_budget": budget,
"hackathon_claims": {
"build_small_32b": budget["status"] == "pass",
"gradio_space": True,
"off_brand_custom_ui": True,
"openbmb_lane": minicpm_judge.get("status") == "success",
"nvidia_nemotron_lane": nemotron_evidence.get("status") == "success",
"st3gg_export_gate": st3gg_scan.get("export_gate"),
},
}
root = export_root()
target = (root / f"{run_id}.json").resolve(strict=False)
if not (target == root or _is_within(target, root)):
raise ValueError("Unsafe export target path.")
target.write_text(json.dumps(packet, indent=2, ensure_ascii=True), encoding="utf-8")
return {"path": str(target), "packet": packet}
|