package backup import ( "context" "fmt" "log/slog" "sort" "strings" "time" "gitea.dooplex.hu/admin/felhom-agent/internal/hub" "gitea.dooplex.hu/admin/felhom-agent/internal/proxmox" "gitea.dooplex.hu/admin/felhom-agent/internal/reconcile" ) // BackupAPI is the read+backup proxmox surface the runner needs. *proxmox.Client satisfies it. type BackupAPI interface { Vzdump(ctx context.Context, opts proxmox.VzdumpOptions) (string, error) WaitTask(ctx context.Context, upid string, opts proxmox.WaitOptions) (proxmox.TaskStatus, error) GuestConfig(ctx context.Context, vmid int) (proxmox.GuestConfig, error) StorageContent(ctx context.Context, store string) ([]proxmox.StorageContent, error) // ListStorage enumerates storages (name+type) — used to scope local-only retention (never prune PBS). ListStorage(ctx context.Context) ([]proxmox.Storage, error) // TaskLogTail reads trailing task-log lines — used to read the ACTUAL vzdump mode // (PVE may downgrade a requested snapshot to stop for a stopped guest — spike B1). TaskLogTail(ctx context.Context, upid string, limit int) ([]string, error) } // BackupRunner orchestrates a crash-consistent vzdump to a local target and reports the // result (incl. the bulk-volume gap). An agent-initiated vzdump is crash-consistent only // (no fsfreeze); the report says so. type BackupRunner struct { api BackupAPI target string // backup storage (content=backup) mode proxmox.BackupMode // default ModeSnapshot notes string // optional notes-template // retention is the per-run `--prune-backups` spec (e.g. "keep-last=3") applied to a LOCAL target after // each successful backup, so the agent's own backups can't pile up and refill root. Empty → no prune // (the legacy behaviour; restore-test/selftest runners pass ""). NEVER applied to a PBS target. retention string logger *slog.Logger now func() time.Time } // NewBackupRunner builds a runner. mode defaults to snapshot (works for a stopped guest and // for lvm-thin); the caller may pass ModeStop for storages without snapshot support. retention is the // per-run prune spec ("keep-last=N", or "" to never prune) — only the periodic local backup sets it. func NewBackupRunner(api BackupAPI, target string, mode proxmox.BackupMode, notes, retention string, logger *slog.Logger) *BackupRunner { if mode == "" { mode = proxmox.ModeSnapshot } if logger == nil { logger = slog.Default() } return &BackupRunner{api: api, target: target, mode: mode, notes: notes, retention: retention, logger: logger, now: func() time.Time { return time.Now().UTC() }} } // localPruneSpec returns the `--prune-backups` spec to apply to THIS backup, or "" to skip pruning. It // applies the configured retention ONLY when the target is a non-PBS storage — PBS offsite retention is a // separate lifecycle and must never be pruned by the per-run flag (§9). Fail-safe: if the target's type // can't be confirmed (lookup error / not found), it SKIPS pruning rather than risk pruning PBS — the // host_disk + storage_fill detectors remain the safety net. func (r *BackupRunner) localPruneSpec(ctx context.Context) string { if r.retention == "" { return "" } stores, err := r.api.ListStorage(ctx) if err != nil { r.logger.Warn("backup: could not resolve target storage type — skipping local prune this run", "target", r.target, "err", err) return "" } for _, s := range stores { if s.Storage == r.target { if s.Type == "pbs" { return "" // PBS retention is out of scope — never prune the offsite DR } return r.retention } } r.logger.Warn("backup: target storage not found in list — skipping local prune this run (fail-safe)", "target", r.target) return "" } // snapshotMarker is the vzdump task-log line that signals the storage snapshot has been created // and the backup is now reading from it — the point after which resuming the guest's app cannot // affect the backup (slice 8B.2; validated on PVE 9.2.2: `INFO: create storage snapshot 'vzdump'`). // It only appears in snapshot mode (stop mode takes no storage snapshot), so its presence ⟹ // snapshot mode — the basis for the controller's early resume. const snapshotMarker = "create storage snapshot" // snapshotWatchInterval is how often watchForSnapshot polls the task log. A package var so tests // can shrink it (production: poll once a second — the marker appears in the first ~1s, §0). var snapshotWatchInterval = time.Second // Backup runs one vzdump of vmid to the local target and returns the report record. func (r *BackupRunner) Backup(ctx context.Context, vmid int) (hub.Backup, error) { return r.backup(ctx, vmid, nil) } // BackupWithSnapshotHook is Backup plus an onSnapshot callback invoked ONCE, mid-backup, when the // storage snapshot has been taken (snapshot mode only) — the 8B.2 early-resume signal. In // stop/downgraded mode the marker never appears, so onSnapshot is never called (the caller then // resumes at completion). onSnapshot must be cheap + non-blocking (it runs on a watcher goroutine). func (r *BackupRunner) BackupWithSnapshotHook(ctx context.Context, vmid int, onSnapshot func()) (hub.Backup, error) { return r.backup(ctx, vmid, onSnapshot) } // backup is the shared body. A failure is returned BOTH as an error and as a // Backup{Success:false,...} so the caller can record the failed attempt. func (r *BackupRunner) backup(ctx context.Context, vmid int, onSnapshot func()) (hub.Backup, error) { start := r.now() rec := hub.Backup{ TargetID: r.target, VMID: vmid, Mode: string(r.mode), CrashConsistent: true, // always, this slice (no controller quiesce) StartedAt: start.Format(time.RFC3339), } if r.target == "" { rec.Error = "no backup target configured" return rec, fmt.Errorf("backup: %s", rec.Error) } // Bulk-volume gap: which mountpoints the vzdump will EXCLUDE (best-effort; a config-read // failure just leaves the gap unknown, never fails the backup). if cfg, err := r.api.GuestConfig(ctx, vmid); err == nil { rec.UncoveredVolumes = uncoveredMountpoints(cfg.MountPoints()) } else { r.logger.Warn("backup: could not read guest config for bulk-gap", "vmid", vmid, "err", err) rec.UncoveredVolumes = []string{} } upid, err := r.api.Vzdump(ctx, proxmox.VzdumpOptions{ VMID: vmid, Storage: r.target, Mode: r.mode, Notes: r.notes, PruneBackups: r.localPruneSpec(ctx), // local target → keep-last=N; PBS/unknown → "" (no prune) }) if err != nil { rec.Error = err.Error() rec.DurationSeconds = time.Since(start).Seconds() return rec, fmt.Errorf("backup: vzdump vmid %d: %w", vmid, err) } if upid != "" { // 8B.2: while the backup runs, watch the task log for the storage-snapshot marker and // fire onSnapshot once (snapshot mode only) so the controller can resume its app early. if onSnapshot != nil { watchCtx, stopWatch := context.WithCancel(ctx) defer stopWatch() go r.watchForSnapshot(watchCtx, upid, onSnapshot) } if _, err := r.api.WaitTask(ctx, upid, proxmox.WaitOptions{Timeout: 30 * time.Minute}); err != nil { rec.Error = err.Error() rec.DurationSeconds = time.Since(start).Seconds() return rec, fmt.Errorf("backup: vzdump task vmid %d: %w", vmid, err) } // Report the ACTUAL mode PVE used (it may downgrade snapshot→stop for a stopped // guest — spike B1), read from the task log; fall back to the requested mode. if lines, err := r.api.TaskLogTail(ctx, upid, 200); err == nil { if actual := parseBackupMode(lines); actual != "" { rec.Mode = actual } } } // Resolve the produced archive (volid + size) — the task status carries no result volid. vol, size, err := r.latestArchive(ctx, vmid) if err != nil { rec.Error = fmt.Sprintf("backup succeeded but archive not resolved: %v", err) rec.DurationSeconds = time.Since(start).Seconds() return rec, fmt.Errorf("backup: resolve archive vmid %d: %w", vmid, err) } rec.Archive = vol rec.SizeBytes = size rec.Success = true rec.DurationSeconds = time.Since(start).Seconds() r.logger.Info("backup: completed", "vmid", vmid, "target", r.target, "archive", vol, "size_bytes", size, "uncovered_volumes", len(rec.UncoveredVolumes)) return rec, nil } // watchForSnapshot polls the running backup's task log until it sees the storage-snapshot marker // (→ onSnapshot once) or the requested mode is reported as `stop` (→ downgraded; the marker will // never come, so stop watching) or ctx is cancelled (backup finished). Best-effort: a log-read // error is retried on the next tick; onSnapshot fires at most once. func (r *BackupRunner) watchForSnapshot(ctx context.Context, upid string, onSnapshot func()) { ticker := time.NewTicker(snapshotWatchInterval) defer ticker.Stop() for { select { case <-ctx.Done(): return case <-ticker.C: lines, err := r.api.TaskLogTail(ctx, upid, 200) if err != nil { continue } // A stop-mode (or downgraded) backup never creates a storage snapshot → never resume early. if m := parseBackupMode(lines); m != "" && m != string(proxmox.ModeSnapshot) { return } for _, ln := range lines { if strings.Contains(ln, snapshotMarker) { onSnapshot() return } } } } } // PickRestoreCandidate returns the newest backup archive on the target (any guest), or "" // when there is none — the restore-test then no-ops cleanly. func (r *BackupRunner) PickRestoreCandidate(ctx context.Context) (string, error) { contents, err := r.api.StorageContent(ctx, r.target) if err != nil { return "", err } var best string var bestCTime int64 = -1 for _, e := range contents { if e.Content == "backup" && e.CTime > bestCTime { bestCTime, best = e.CTime, e.VolID } } return best, nil } // latestArchive finds the newest backup archive volid + size for vmid on the target. func (r *BackupRunner) latestArchive(ctx context.Context, vmid int) (string, int64, error) { contents, err := r.api.StorageContent(ctx, r.target) if err != nil { return "", 0, err } var vol string var size, bestCTime int64 = 0, -1 for _, e := range contents { if e.Content == "backup" && e.VMID == vmid && e.CTime > bestCTime { bestCTime, vol, size = e.CTime, e.VolID, e.Size } } if vol == "" { return "", 0, fmt.Errorf("no backup archive found for vmid %d on %s", vmid, r.target) } return vol, size, nil } // parseBackupMode extracts the actual mode from a vzdump task log line `… backup mode: ` // (e.g. "INFO: backup mode: stop"). Returns "" if not found. func parseBackupMode(lines []string) string { const marker = "backup mode:" for _, ln := range lines { if i := strings.Index(ln, marker); i >= 0 { return strings.TrimSpace(ln[i+len(marker):]) } } return "" } // uncoveredMountpoints returns the mountpoint paths the guest vzdump EXCLUDES. LXC mount // points are OPT-IN to vzdump: a mpN with `backup=1` is covered; ANY other state — the // `backup=` token absent OR `backup=0` — is excluded. We deliberately treat unset as // uncovered (the safe DR direction: never imply an unprotected volume is backed up). func uncoveredMountpoints(mps map[string]string) []string { var out []string for key, cfg := range mps { if mountpointCovered(cfg) { continue } out = append(out, mountpointLabel(key, cfg)) } sort.Strings(out) if out == nil { return []string{} } return out } // mountpointCovered reports whether a mpN config string is included in the vzdump — true // ONLY when it carries an explicit `backup=1`. func mountpointCovered(cfg string) bool { for _, tok := range strings.Split(cfg, ",") { if v, ok := strings.CutPrefix(tok, "backup="); ok { return v == "1" } } return false // no backup= token → opt-out by default → not covered } // mountpointLabel prefers the mp=/path token, falling back to the mpN key. func mountpointLabel(key, cfg string) string { for _, tok := range strings.Split(cfg, ",") { if p, ok := strings.CutPrefix(tok, "mp="); ok && p != "" { return p } } return key } // ToHubRestoreTest maps a reconcile restore-test result to the hub wire record (the backup // package owns the reconcile→hub mapping so reconcile need not import hub for the result). func ToHubRestoreTest(res reconcile.RestoreTestResult, testedAt time.Time) hub.RestoreTest { rt := hub.RestoreTest{ SourceArchive: res.Archive, SourceTier: res.SourceTier, ScratchVMID: res.ScratchVMID, Pass: res.Pass, Verified: res.Verified, TestedAt: testedAt.Format(time.RFC3339), DurationSeconds: res.Duration.Seconds(), Warnings: res.StartWarnings, WarningsRecognized: res.WarningsRecognized, MountParity: res.MountParity, MountInventory: res.MountInventory, } if res.Err != nil { rt.Error = res.Err.Error() } return rt }