Scan images for known vulnerabilities (0.59.0)
The Images page knew what was running and whether it was current. It could not say whether any of it was exploitable, which is the question people actually have about a homelab full of images they pulled once and forgot. Trivy runs as a throwaway container rather than being installed into StackPilot's image, reusing the helper-container pattern backups already use for volume contents. Three reasons: a 100 MB security tool and a vulnerability database that changes weekly have no business in a release artifact, pinning SCANNER_IMAGE is then a real version control, and the scanner updates itself by pulling a newer tag. It gets the socket read-only so it inspects images the daemon already has instead of pulling them again, and a named volume for its database so the ~50 MB download happens once rather than per scan. The number the UI leads with is "fixable", not the total. A base image with 300 unfixable low-severity CVEs is not a task and a page that shows 300 in red teaches people to ignore it; three findings with a fixed version available are something to do this afternoon. Counts are stored per severity, findings are sorted worst-first and capped at 200 — every finding is counted, only the list is trimmed, so the cap can never hide the severity distribution. The failure mode this had to avoid is a security feature that reads as clean when it is broken. A scanner that cannot run stores the error and *keeps the previous counts* rather than resetting to zero, so a transient daemon problem does not silently turn a bad image green. There is a test for exactly that, and another for unparseable output. Staleness is handled the same way: the local image id is recorded with the scan, and pulling the image marks the result stale instead of presenting yesterday's numbers for today's bytes. Sweeps are deliberately serial and singly-locked. Scanning is CPU- and IO-heavy, and running eight at once on a homelab box would starve the very containers the scan is meant to protect. docker-py is synchronous, so the scan itself goes to a thread — otherwise a ten-minute scan blocks every other request on the loop. Reading results is allowed for the read-only role, which the authorization matrix made me justify in writing: CVE ids and package versions for images whose tags and compose files that role can already see, and polling them is the monitoring use case a read-only API token exists for. Running a scan stays admin-only because it spends real CPU. 20 tests against a report shaped like Trivy's real output, covering the counting, the fixable number, worst-first ordering, the cap, both failure paths, staleness, and that two sweeps cannot overlap. Verified end to end through the API as well, including that a failed rescan keeps its previous counts and shows the error. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,263 @@
|
||||
"""Vulnerability scanning for the images stacks actually run.
|
||||
|
||||
Scanning runs Trivy in a throwaway container — the same helper-container trick
|
||||
backups already use — rather than adding a scanner to StackPilot's own image.
|
||||
That keeps a 100 MB security tool and its weekly-changing vulnerability database
|
||||
out of the release, and means the scanner updates itself by pulling a newer tag.
|
||||
|
||||
The container gets the Docker socket read-only, so it inspects images the daemon
|
||||
already has instead of pulling them again from a registry, and a named volume
|
||||
for its database, so the ~50 MB download happens once rather than per scan.
|
||||
|
||||
Findings are stored worst-first and capped. A base image with 400 known CVEs is
|
||||
common and the tail is unreadable; what matters is how many there are, how many
|
||||
have a fix, and what the worst ones are.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import json
|
||||
import logging
|
||||
import threading
|
||||
import time
|
||||
from datetime import datetime, timezone
|
||||
from typing import Optional
|
||||
|
||||
from sqlmodel import Session, select
|
||||
|
||||
from config import settings
|
||||
from docker_client import DockerError, get_client, safe_call
|
||||
from models.image_scan import SEVERITIES, ImageScan
|
||||
|
||||
logger = logging.getLogger("stackpilot.scan")
|
||||
|
||||
#: Named volume for Trivy's vulnerability database.
|
||||
CACHE_VOLUME = "stackpilot-trivy-cache"
|
||||
|
||||
#: Kept per image. Enough to see the shape of the problem, not enough to turn a
|
||||
#: database row into a megabyte of JSON nobody reads.
|
||||
MAX_FINDINGS = 200
|
||||
|
||||
SCAN_TIMEOUT = 900.0
|
||||
|
||||
#: One sweep at a time. Scanning is CPU- and IO-heavy, and two passes over the
|
||||
#: same images would just fight each other for the daemon.
|
||||
_sweep_lock = threading.Lock()
|
||||
_sweeping = {"active": False, "done": 0, "total": 0}
|
||||
|
||||
|
||||
class ScanError(Exception):
|
||||
"""The scanner could not run, or produced something unusable."""
|
||||
|
||||
|
||||
# --------------------------------------------------------------------------- #
|
||||
# Running the scanner
|
||||
# --------------------------------------------------------------------------- #
|
||||
|
||||
|
||||
def _run_trivy(image: str) -> str:
|
||||
"""Run Trivy against a local image and return its JSON report."""
|
||||
client = get_client()
|
||||
socket_path = settings.DOCKER_SOCKET
|
||||
command = [
|
||||
"image",
|
||||
"--format", "json",
|
||||
"--quiet",
|
||||
# Vulnerabilities only: secret and misconfiguration scanning are a
|
||||
# different feature with a very different false-positive profile.
|
||||
"--scanners", "vuln",
|
||||
"--timeout", "10m",
|
||||
image,
|
||||
]
|
||||
try:
|
||||
output = safe_call(
|
||||
client.containers.run,
|
||||
settings.SCANNER_IMAGE,
|
||||
command,
|
||||
volumes={
|
||||
socket_path: {"bind": "/var/run/docker.sock", "mode": "ro"},
|
||||
CACHE_VOLUME: {"bind": "/root/.cache/trivy", "mode": "rw"},
|
||||
},
|
||||
remove=True,
|
||||
stdout=True,
|
||||
stderr=False,
|
||||
)
|
||||
except DockerError as exc:
|
||||
raise ScanError(str(exc)) from exc
|
||||
except Exception as exc: # noqa: BLE001 - docker-py raises ContainerError etc.
|
||||
raise ScanError(_readable(exc)) from exc
|
||||
return (output or b"").decode("utf-8", "replace")
|
||||
|
||||
|
||||
def _readable(exc: Exception) -> str:
|
||||
"""A scanner failure a person can act on, not a docker-py repr."""
|
||||
text = str(exc)
|
||||
if "No such image" in text or "not found" in text.lower():
|
||||
return "The scanner image could not be pulled, or the image no longer exists locally"
|
||||
return text[:500]
|
||||
|
||||
|
||||
def _parse(report: str) -> tuple[dict[str, int], int, list[dict]]:
|
||||
"""Counts by severity, how many are fixable, and the findings themselves."""
|
||||
try:
|
||||
data = json.loads(report or "{}")
|
||||
except json.JSONDecodeError as exc:
|
||||
raise ScanError("The scanner returned output that is not JSON") from exc
|
||||
|
||||
counts = {name: 0 for name in SEVERITIES}
|
||||
fixable = 0
|
||||
findings: list[dict] = []
|
||||
for result in data.get("Results") or []:
|
||||
target = result.get("Target") or ""
|
||||
for vuln in result.get("Vulnerabilities") or []:
|
||||
severity = str(vuln.get("Severity") or "unknown").lower()
|
||||
if severity not in counts:
|
||||
severity = "unknown"
|
||||
counts[severity] += 1
|
||||
fixed = vuln.get("FixedVersion") or ""
|
||||
if fixed:
|
||||
fixable += 1
|
||||
findings.append(
|
||||
{
|
||||
"id": vuln.get("VulnerabilityID"),
|
||||
"severity": severity,
|
||||
"package": vuln.get("PkgName"),
|
||||
"installed": vuln.get("InstalledVersion"),
|
||||
"fixed": fixed or None,
|
||||
"title": (vuln.get("Title") or "")[:300] or None,
|
||||
"url": vuln.get("PrimaryURL"),
|
||||
"target": target,
|
||||
}
|
||||
)
|
||||
|
||||
findings.sort(key=lambda f: (SEVERITIES.index(f["severity"]), f["id"] or ""))
|
||||
return counts, fixable, findings[:MAX_FINDINGS]
|
||||
|
||||
|
||||
def local_digest(image: str) -> Optional[str]:
|
||||
"""The digest of the image the daemon currently has for this tag."""
|
||||
try:
|
||||
client = get_client()
|
||||
img = safe_call(client.images.get, image)
|
||||
except DockerError:
|
||||
return None
|
||||
return img.id # the content-addressable local id, which changes on a pull
|
||||
|
||||
|
||||
# --------------------------------------------------------------------------- #
|
||||
# Scanning and storing
|
||||
# --------------------------------------------------------------------------- #
|
||||
|
||||
|
||||
async def scan(session: Session, image: str) -> ImageScan:
|
||||
"""Scan one image and store the result, replacing any previous one."""
|
||||
started = time.monotonic()
|
||||
row = session.exec(select(ImageScan).where(ImageScan.image == image)).first()
|
||||
if row is None:
|
||||
row = ImageScan(image=image)
|
||||
|
||||
try:
|
||||
# docker-py is synchronous and a scan takes minutes; off the event loop
|
||||
# it goes, or every other request waits behind it.
|
||||
report = await asyncio.wait_for(
|
||||
asyncio.to_thread(_run_trivy, image), timeout=SCAN_TIMEOUT
|
||||
)
|
||||
counts, fixable, findings = _parse(report)
|
||||
except asyncio.TimeoutError:
|
||||
return _store_error(session, row, image, "The scan timed out", started)
|
||||
except ScanError as exc:
|
||||
return _store_error(session, row, image, str(exc), started)
|
||||
|
||||
row.digest = local_digest(image)
|
||||
row.scanner = "trivy"
|
||||
for name in SEVERITIES:
|
||||
setattr(row, name, counts[name])
|
||||
row.fixable = fixable
|
||||
row.findings = json.dumps(findings)
|
||||
row.scanned_at = datetime.now(timezone.utc)
|
||||
row.duration_ms = int((time.monotonic() - started) * 1000)
|
||||
row.error = None
|
||||
session.add(row)
|
||||
session.commit()
|
||||
session.refresh(row)
|
||||
return row
|
||||
|
||||
|
||||
def _store_error(
|
||||
session: Session, row: ImageScan, image: str, message: str, started: float
|
||||
) -> ImageScan:
|
||||
"""Record a failed scan, keeping whatever counts the last good one found.
|
||||
|
||||
A scanner that cannot run must not silently turn into "no vulnerabilities".
|
||||
"""
|
||||
row.image = image
|
||||
row.error = message[:500]
|
||||
row.scanned_at = datetime.now(timezone.utc)
|
||||
row.duration_ms = int((time.monotonic() - started) * 1000)
|
||||
session.add(row)
|
||||
session.commit()
|
||||
session.refresh(row)
|
||||
return row
|
||||
|
||||
|
||||
def total(row: ImageScan) -> int:
|
||||
return sum(getattr(row, name) for name in SEVERITIES)
|
||||
|
||||
|
||||
def is_stale(row: ImageScan) -> bool:
|
||||
"""Has the image been pulled since it was scanned?"""
|
||||
if not row.digest or row.error:
|
||||
return False
|
||||
current = local_digest(row.image)
|
||||
return bool(current and current != row.digest)
|
||||
|
||||
|
||||
def all_scans(session: Session) -> dict[str, ImageScan]:
|
||||
return {row.image: row for row in session.exec(select(ImageScan)).all()}
|
||||
|
||||
|
||||
def forget(session: Session, images: set[str]) -> int:
|
||||
"""Drop scans for images that no longer exist. Returns how many went."""
|
||||
removed = 0
|
||||
for row in session.exec(select(ImageScan)).all():
|
||||
if row.image not in images:
|
||||
session.delete(row)
|
||||
removed += 1
|
||||
if removed:
|
||||
session.commit()
|
||||
return removed
|
||||
|
||||
|
||||
# --------------------------------------------------------------------------- #
|
||||
# Scanning everything
|
||||
# --------------------------------------------------------------------------- #
|
||||
|
||||
|
||||
def sweep_status() -> dict:
|
||||
return dict(_sweeping)
|
||||
|
||||
|
||||
async def sweep(session: Session, images: list[str]) -> dict:
|
||||
"""Scan a list of images one after another.
|
||||
|
||||
Deliberately serial: each scan is already CPU-hungry, and running several at
|
||||
once on a homelab box would starve the very containers being protected.
|
||||
"""
|
||||
if not _sweep_lock.acquire(blocking=False):
|
||||
raise ScanError("A scan is already running")
|
||||
_sweeping.update({"active": True, "done": 0, "total": len(images)})
|
||||
failed = 0
|
||||
try:
|
||||
for image in images:
|
||||
try:
|
||||
row = await scan(session, image)
|
||||
if row.error:
|
||||
failed += 1
|
||||
except Exception as exc: # noqa: BLE001 - one image must not stop the sweep
|
||||
logger.warning("Scan failed for %s: %s", image, exc)
|
||||
failed += 1
|
||||
_sweeping["done"] += 1
|
||||
finally:
|
||||
_sweeping.update({"active": False})
|
||||
_sweep_lock.release()
|
||||
return {"scanned": len(images), "failed": failed}
|
||||
Reference in New Issue
Block a user