agent v0.33.0: C1 net — pre-start self-heal hook + decommission mp-delete
Pre-start PVE hookscript (internal/guesthook) creates host-root placeholders for absent bind-mount sources so the guest always boots (fail-closed); decommission now pct set --delete's the dead mp (GuestBinder.DetachBind) so a missing source can't brick the next reboot (B3 C1 bug). Non-hollow tests + companions. Installed + registered per-guest by the provision back-half. Transitional ahead of the intermediary-mount re-architecture which makes C1 structural. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
// Package guesthook is the LXC guest pre-start self-heal (C1 net, transitional).
|
||||
//
|
||||
// THE BUG IT FIXES (C1, B3 audit): in the per-drive bind model an external data drive is bound into the
|
||||
// guest as `pct set <vmid> -mpN <drive>/felhom-data,mp=/mnt/<name>`. When that drive is ABSENT at guest
|
||||
// boot, the bind SOURCE `<drive>/felhom-data` does not exist, `pct start` fails the mount, and the guest
|
||||
// BRICKS (pre-start exit 255 — ALL apps down). Today nothing recovers it.
|
||||
//
|
||||
// THE FIX: a PVE `pre-start` hookscript runs this code; for every BIND mountpoint whose source path is
|
||||
// missing it CREATES an empty, host-root-owned placeholder directory so the mount succeeds and the guest
|
||||
// boots. It is fail-closed: the placeholder is owned by host root (uid 0), which is UNMAPPED in the
|
||||
// unprivileged-LXC user namespace, so the in-guest controller/apps (even as guest-root) cannot write to
|
||||
// it — and a returning drive simply shadows it (the agent mounts over it).
|
||||
//
|
||||
// WHY CREATE, NOT DELETE: removing the dead mp would need `pct set <vmid> --delete mpN`, which takes the
|
||||
// per-guest config lock the start task ALREADY holds → it dead-times-out (~10s) and the guest still
|
||||
// bricks. So in pre-start we NEUTRALISE (placeholder) rather than mutate config. Proper mp removal runs
|
||||
// OUTSIDE the start lock — at decommission (handleDiskDecommission → DetachBind) and the startup
|
||||
// reconcile. The intermediary-mount re-architecture later makes C1 STRUCTURAL (the only bind source is
|
||||
// the permanent, always-present /mnt/felhom-drives parent), after which this hook is pure defense-in-depth.
|
||||
package guesthook
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// PhasePreStart is the PVE hook phase at which we self-heal (before the container mounts are set up).
|
||||
const PhasePreStart = "pre-start"
|
||||
|
||||
// placeholderMode is the mode for a created bind-source placeholder. Host-root-owned + this mode =
|
||||
// fail-closed against the unprivileged guest (host uid 0 is unmapped in the guest userns).
|
||||
const placeholderMode = 0o755
|
||||
|
||||
// ParseConfMounts parses an LXC config file body (/etc/pve/lxc/<vmid>.conf) and returns each mount key
|
||||
// (`mp0`..`mp255`, plus `rootfs`) mapped to its SOURCE — the first comma-field of the value, before any
|
||||
// `mp=`/`size=`/`backup=` options. A BIND mount has an absolute-path source (`/mnt/...`); a storage
|
||||
// volume has a `<storage>:<volid>` source (no leading slash). Lines that aren't a mountpoint/rootfs key
|
||||
// are ignored.
|
||||
func ParseConfMounts(conf string) map[string]string {
|
||||
out := map[string]string{}
|
||||
for _, line := range strings.Split(conf, "\n") {
|
||||
line = strings.TrimSpace(line)
|
||||
colon := strings.IndexByte(line, ':')
|
||||
if colon <= 0 {
|
||||
continue
|
||||
}
|
||||
key := line[:colon]
|
||||
if key != "rootfs" && !(strings.HasPrefix(key, "mp") && isAllDigits(strings.TrimPrefix(key, "mp"))) {
|
||||
continue
|
||||
}
|
||||
val := strings.TrimSpace(line[colon+1:])
|
||||
if val == "" {
|
||||
continue
|
||||
}
|
||||
src := val
|
||||
if c := strings.IndexByte(val, ','); c >= 0 {
|
||||
src = val[:c]
|
||||
}
|
||||
out[key] = strings.TrimSpace(src)
|
||||
}
|
||||
return out
|
||||
}
|
||||
|
||||
// isBindSource reports whether an mp source is a host-path BIND (an absolute path) rather than a PVE
|
||||
// storage volume (`<storage>:<volid>`, never absolute). On the Linux host a bind source is `/mnt/...`
|
||||
// (leading slash); the filepath.IsAbs arm additionally recognises an OS-absolute path so the real-IO
|
||||
// tests pass under a Windows temp dir too — on Linux both arms agree and a storage volid matches neither.
|
||||
func isBindSource(src string) bool {
|
||||
return strings.HasPrefix(src, "/") || filepath.IsAbs(src)
|
||||
}
|
||||
|
||||
func isAllDigits(s string) bool {
|
||||
if s == "" {
|
||||
return false
|
||||
}
|
||||
for _, c := range s {
|
||||
if c < '0' || c > '9' {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
// MissingBindSources returns the BIND-mount source paths (absolute host paths) that do NOT exist, sorted
|
||||
// and de-duplicated. Storage-volume sources (`<storage>:<volid>`, no leading '/') are NEVER returned —
|
||||
// only a real host-path bind can have a vanished source we must heal; a storage volume that's missing is
|
||||
// PVE's own concern, not ours to mkdir. `exists` reports whether a path is present (injected for tests).
|
||||
func MissingBindSources(mounts map[string]string, exists func(string) bool) []string {
|
||||
seen := map[string]bool{}
|
||||
var miss []string
|
||||
for _, src := range mounts {
|
||||
if !isBindSource(src) { // storage volume (<storage>:<volid>), not a host-path bind — never touch
|
||||
continue
|
||||
}
|
||||
if seen[src] || exists(src) {
|
||||
continue
|
||||
}
|
||||
seen[src] = true
|
||||
miss = append(miss, src)
|
||||
}
|
||||
sort.Strings(miss)
|
||||
return miss
|
||||
}
|
||||
|
||||
// Heal reads the LXC config at confPath and creates a placeholder directory for every bind-mount source
|
||||
// that is missing, returning the list of paths it created. It never returns a fatal error for an
|
||||
// unreadable/empty config (a guest with no config simply has nothing to heal) — the hook must NEVER block
|
||||
// a start. A mkdir failure on one path is collected into err but the others still proceed.
|
||||
func Heal(confPath string) (created []string, err error) {
|
||||
data, readErr := os.ReadFile(confPath)
|
||||
if readErr != nil {
|
||||
// No config = nothing to heal. Never block the start over a read error.
|
||||
return nil, nil
|
||||
}
|
||||
mounts := ParseConfMounts(string(data))
|
||||
miss := MissingBindSources(mounts, func(p string) bool {
|
||||
_, statErr := os.Stat(p)
|
||||
return statErr == nil
|
||||
})
|
||||
var errs []string
|
||||
for _, p := range miss {
|
||||
if mkErr := os.MkdirAll(p, placeholderMode); mkErr != nil {
|
||||
errs = append(errs, fmt.Sprintf("%s: %v", p, mkErr))
|
||||
continue
|
||||
}
|
||||
created = append(created, p)
|
||||
}
|
||||
if len(errs) > 0 {
|
||||
return created, fmt.Errorf("guesthook: placeholder creation failed for: %s", strings.Join(errs, "; "))
|
||||
}
|
||||
return created, nil
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
package guesthook
|
||||
|
||||
import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
const sampleConf = `arch: amd64
|
||||
cores: 2
|
||||
hostname: demo-felhom
|
||||
memory: 12288
|
||||
mp0: local-lvm:vm-9201-disk-1,mp=/var/lib/docker,backup=1,size=256G
|
||||
mp1: /mnt/felhom-usb/felhom-data,mp=/mnt/felhom-usb
|
||||
mp2: /mnt/felhom-flash/felhom-data,mp=/mnt/felhom-flash
|
||||
mp9: /var/lib/felhom-agent/guests/9201/bootstrap,mp=/etc/felhom-bootstrap,ro=1
|
||||
net0: name=eth0,bridge=vmbr0
|
||||
rootfs: local-lvm:vm-9201-disk-0,size=32G
|
||||
swap: 4096
|
||||
unprivileged: 1
|
||||
`
|
||||
|
||||
func TestParseConfMounts(t *testing.T) {
|
||||
got := ParseConfMounts(sampleConf)
|
||||
want := map[string]string{
|
||||
"mp0": "local-lvm:vm-9201-disk-1",
|
||||
"mp1": "/mnt/felhom-usb/felhom-data",
|
||||
"mp2": "/mnt/felhom-flash/felhom-data",
|
||||
"mp9": "/var/lib/felhom-agent/guests/9201/bootstrap",
|
||||
"rootfs": "local-lvm:vm-9201-disk-0",
|
||||
}
|
||||
if !reflect.DeepEqual(got, want) {
|
||||
t.Fatalf("ParseConfMounts mismatch:\n got=%v\nwant=%v", got, want)
|
||||
}
|
||||
// net0/arch/etc. (non-mount keys) must NOT leak in.
|
||||
if _, bad := got["net0"]; bad {
|
||||
t.Fatalf("net0 was parsed as a mount source")
|
||||
}
|
||||
}
|
||||
|
||||
// TestMissingBindSources is the load-bearing selector test. The flash drive is absent (its felhom-data
|
||||
// source missing); usb is present; mp0/rootfs are STORAGE volumes (must never be selected); mp9's
|
||||
// bootstrap source is present. Only the flash source may be returned.
|
||||
//
|
||||
// COMPANION GUARD — this test FAILS on the two trivial impls the spec warns about:
|
||||
// - "return nothing" (the pre-fix no-op hook) → flash not selected → guest still bricks → FAIL.
|
||||
// - "return every source" (mkdir everything) → would include the present usb bind AND the
|
||||
// local-lvm storage volumes (creating bogus dirs that shadow real data) → FAIL.
|
||||
func TestMissingBindSources(t *testing.T) {
|
||||
mounts := ParseConfMounts(sampleConf)
|
||||
present := map[string]bool{
|
||||
"/mnt/felhom-usb/felhom-data": true, // usb attached
|
||||
"/var/lib/felhom-agent/guests/9201/bootstrap": true, // bootstrap always present
|
||||
// "/mnt/felhom-flash/felhom-data" is ABSENT (drive unplugged)
|
||||
}
|
||||
got := MissingBindSources(mounts, func(p string) bool { return present[p] })
|
||||
want := []string{"/mnt/felhom-flash/felhom-data"}
|
||||
if !reflect.DeepEqual(got, want) {
|
||||
t.Fatalf("MissingBindSources mismatch:\n got=%v\nwant=%v", got, want)
|
||||
}
|
||||
|
||||
// Explicit companion assertions (pin both failure directions independently of want):
|
||||
for _, p := range got {
|
||||
if p == "/mnt/felhom-usb/felhom-data" {
|
||||
t.Fatalf("selected a PRESENT bind source — over-eager (would shadow live data)")
|
||||
}
|
||||
if p == "local-lvm:vm-9201-disk-1" || p == "local-lvm:vm-9201-disk-0" {
|
||||
t.Fatalf("selected a STORAGE VOLUME source — must only heal host-path binds")
|
||||
}
|
||||
}
|
||||
if len(got) == 0 {
|
||||
t.Fatalf("selected nothing — the absent flash bind would brick the guest (pre-fix no-op)")
|
||||
}
|
||||
}
|
||||
|
||||
// TestHealCreatesOnlyMissingBind drives the real filesystem path in a temp dir: a present bind source is
|
||||
// left untouched, an absent one is created (so the guest boots), a storage volume is never created.
|
||||
func TestHealCreatesOnlyMissingBind(t *testing.T) {
|
||||
root := t.TempDir()
|
||||
presentSrc := filepath.Join(root, "usb", "felhom-data")
|
||||
absentSrc := filepath.Join(root, "flash", "felhom-data")
|
||||
if err := os.MkdirAll(presentSrc, 0o755); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
conf := "" +
|
||||
"mp0: local-lvm:vm-9-disk-0,mp=/var/lib/docker,backup=1\n" +
|
||||
"mp1: " + presentSrc + ",mp=/mnt/usb\n" +
|
||||
"mp2: " + absentSrc + ",mp=/mnt/flash\n" +
|
||||
"rootfs: local-lvm:vm-9-disk-1,size=32G\n"
|
||||
confPath := filepath.Join(root, "9.conf")
|
||||
if err := os.WriteFile(confPath, []byte(conf), 0o644); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
created, err := Heal(confPath)
|
||||
if err != nil {
|
||||
t.Fatalf("Heal: %v", err)
|
||||
}
|
||||
if !reflect.DeepEqual(created, []string{absentSrc}) {
|
||||
t.Fatalf("Heal created %v, want [%s]", created, absentSrc)
|
||||
}
|
||||
if _, err := os.Stat(absentSrc); err != nil {
|
||||
t.Fatalf("absent bind source not created — guest would still brick: %v", err)
|
||||
}
|
||||
// A storage-volume mp must never produce a bogus host directory.
|
||||
if _, err := os.Stat(filepath.Join(root, "local-lvm:vm-9-disk-0")); err == nil {
|
||||
t.Fatalf("a storage volume source was materialised as a directory")
|
||||
}
|
||||
}
|
||||
|
||||
// TestHealMissingConfNeverErrors — a hook must never block a start, even for an unreadable config.
|
||||
func TestHealMissingConfNeverErrors(t *testing.T) {
|
||||
created, err := Heal(filepath.Join(t.TempDir(), "does-not-exist.conf"))
|
||||
if err != nil || created != nil {
|
||||
t.Fatalf("Heal on missing conf: created=%v err=%v (want nil,nil)", created, err)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
package guesthook
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
||||
"gitea.dooplex.hu/admin/felhom-agent/internal/proxmox"
|
||||
)
|
||||
|
||||
// Install/registration of the pre-start hook. The wrapper lives in a PVE `snippets`-enabled storage dir
|
||||
// (the `local` storage maps to /var/lib/vz/snippets) and is referenced per-guest by its volid.
|
||||
const (
|
||||
// SnippetDir is the local-storage snippets directory PVE serves hookscripts from.
|
||||
SnippetDir = "/var/lib/vz/snippets"
|
||||
// SnippetName is the wrapper filename.
|
||||
SnippetName = "felhom-guest-hook.sh"
|
||||
// HookVolID is the volid form `pct set --hookscript` expects.
|
||||
HookVolID = "local:snippets/" + SnippetName
|
||||
// AgentBin is the installed agent binary the wrapper delegates to.
|
||||
AgentBin = "/usr/local/bin/felhom-agent"
|
||||
)
|
||||
|
||||
// SnippetPath is the absolute path of the installed wrapper.
|
||||
var SnippetPath = filepath.Join(SnippetDir, SnippetName)
|
||||
|
||||
// snippetBody is the tiny wrapper PVE execs as `<script> <vmid> <phase>`. It delegates to the agent
|
||||
// binary so the heal LOGIC is the unit-tested Go, never duplicated (divergence-proof) shell. Executable.
|
||||
const snippetBody = `#!/bin/sh
|
||||
# felhom-agent guest pre-start self-heal hook (C1 net). PVE calls: <script> <vmid> <phase>.
|
||||
exec ` + AgentBin + ` guest-hook "$1" "$2"
|
||||
`
|
||||
|
||||
// InstallSnippet writes the pre-start hook wrapper into the PVE snippets dir (idempotent, root-owned,
|
||||
// executable). The agent runs as a non-root service user, so it writes an agent-writable temp file then
|
||||
// `install`s it host-root (same pattern as the bootstrap mount + dnsmasq drop-ins). Safe to call repeatedly.
|
||||
func InstallSnippet(ctx context.Context, runner proxmox.Runner) error {
|
||||
tmp := filepath.Join(os.TempDir(), "felhom-guest-hook.sh")
|
||||
if err := os.WriteFile(tmp, []byte(snippetBody), 0o755); err != nil {
|
||||
return fmt.Errorf("guesthook: write temp snippet: %w", err)
|
||||
}
|
||||
defer os.Remove(tmp)
|
||||
if _, stderr, err := runner.Run(ctx, "install", "-m", "0755", "--", tmp, SnippetPath); err != nil {
|
||||
return fmt.Errorf("guesthook: install snippet to %s: %w: %s", SnippetPath, err, string(stderr))
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Register points a guest at the pre-start hook (`pct set <vmid> --hookscript <volid>`). Idempotent —
|
||||
// re-setting the same hookscript is a no-op. Safe on a running guest (a config edit, not a start, so no
|
||||
// start-lock contention).
|
||||
func Register(ctx context.Context, runner proxmox.Runner, vmid int) error {
|
||||
if _, stderr, err := runner.Run(ctx, "pct", "set", strconv.Itoa(vmid), "--hookscript", HookVolID); err != nil {
|
||||
return fmt.Errorf("guesthook: register hookscript on %d: %w: %s", vmid, err, string(stderr))
|
||||
}
|
||||
return nil
|
||||
}
|
||||
@@ -124,6 +124,36 @@ func TestDecommission_Effects(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
// TestDecommission_DeletesGuestMount is the C1-fix regression: decommission must `--delete` the guest
|
||||
// mountpoint slot that binds the drive, so its now-missing source can't brick the next boot. The guest
|
||||
// has two binds (bootstrap mp9 + the data drive mp1); only mp1 (the one targeting /mnt/bulk) may be
|
||||
// detached.
|
||||
//
|
||||
// COMPANION GUARD: the pre-fix handler (the B3 bug) never called DetachBind → detachCount()==0 → this
|
||||
// test FAILS on it. A trivial impl deleting the WRONG/first slot is caught by the slot==mp1 assertion.
|
||||
func TestDecommission_DeletesGuestMount(t *testing.T) {
|
||||
d := &fakeDiskOps{}
|
||||
intent := newFakeIntent()
|
||||
intent.SetEnrolled("uuid:usb-1")
|
||||
ga := &fakeGuestAttacher{}
|
||||
srv := decommServer(t, d, userDataAndProtected(), fakeGuestList{}, intent, tempBindStore(t), ga, map[int]map[string]string{
|
||||
8200: {
|
||||
"mp9": "/var/lib/.../bootstrap,mp=/etc/felhom-bootstrap,ro=1",
|
||||
"mp1": "/mnt/bulk/felhom-data,mp=/mnt/bulk",
|
||||
},
|
||||
})
|
||||
w := do(t, srv.Handler(), "POST", "/disks/decommission", "A", `{"where":"/mnt/bulk"}`)
|
||||
if w.Code != http.StatusOK {
|
||||
t.Fatalf("decommission: got %d want 200 (%s)", w.Code, w.Body.String())
|
||||
}
|
||||
if ga.detachCount() != 1 {
|
||||
t.Fatalf("DetachBind called %d times, want 1 (C1 fix: the dead mp must be deleted)", ga.detachCount())
|
||||
}
|
||||
if got := ga.detaches[0]; got.vmid != 8200 || got.slot != "mp1" {
|
||||
t.Fatalf("DetachBind(vmid=%d, slot=%q), want (8200, mp1) — wrong slot deleted", got.vmid, got.slot)
|
||||
}
|
||||
}
|
||||
|
||||
// TestReassertGuestBinds_SkipsDecommissioned is the load-bearing F9-reconnect invariant: a
|
||||
// decommissioned-but-present drive still recorded in the bind store must NOT auto-rebind on agent
|
||||
// restart. Companion: with intent=enrolled the SAME setup DOES rebind — proving the intent gate is
|
||||
|
||||
@@ -68,6 +68,9 @@ type GuestLister interface {
|
||||
// host-side live inject is blocked on unprivileged guests). Satisfied by *GuestBinder.
|
||||
type GuestAttacher interface {
|
||||
AttachBind(ctx context.Context, vmid int, mountKey, where string) error
|
||||
// DetachBind removes a mountpoint slot from the guest config (the decommission C1 fix — a removed
|
||||
// bind can't brick the next boot with a missing source). Runs on the running guest (no start lock).
|
||||
DetachBind(ctx context.Context, vmid int, mountKey string) error
|
||||
RebootGuest(ctx context.Context, vmid int) error
|
||||
}
|
||||
|
||||
@@ -293,6 +296,18 @@ func (s *Server) handleDiskDecommission(w http.ResponseWriter, r *http.Request,
|
||||
s.logger.Warn("local-api: guest-bind remove failed", "vmid", vmid, "durable_id", id, "err", err)
|
||||
}
|
||||
}
|
||||
// C1 FIX (B3 critical bug): delete the guest mountpoint bind for this drive so its now-missing
|
||||
// source can't brick the guest on the NEXT reboot. The old decommission unmounted but left the
|
||||
// `mpN` in the config → pre-start mount failure → all apps down. Runs on the running guest (config
|
||||
// edit, no start lock → no deadlock). Best-effort: a missing slot is already clean.
|
||||
if s.guestAttach != nil {
|
||||
if slot := s.guestSlotForPath(r.Context(), vmid, req.Where); slot != "" {
|
||||
if err := s.guestAttach.DetachBind(r.Context(), vmid, slot); err != nil {
|
||||
s.logger.Warn("local-api: guest-detach failed — mp left in config (reboot may brick until reconciled)",
|
||||
"vmid", vmid, "slot", slot, "where", req.Where, "err", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
// Unmount (mirror eject) — benign, data preserved. NEVER format/mkfs here.
|
||||
if err := s.disks.Unmount(r.Context(), req.Where); err != nil {
|
||||
s.logger.Error("local-api: disk decommission", "vmid", vmid, "where", req.Where, "err", err)
|
||||
@@ -672,6 +687,26 @@ func (s *Server) guestBoundPaths(ctx context.Context, vmid int) map[string]bool
|
||||
return out
|
||||
}
|
||||
|
||||
// guestSlotForPath returns the mountpoint slot (mpN) whose bind targets the guest path `where`, or ""
|
||||
// if none. Used by decommission/eject to find the slot to `--delete` (the C1 fix). Best-effort: a
|
||||
// config-read error yields "" (nothing to detach — the safe direction).
|
||||
func (s *Server) guestSlotForPath(ctx context.Context, vmid int, where string) string {
|
||||
if s.guests == nil {
|
||||
return ""
|
||||
}
|
||||
cfg, err := s.guests.GuestConfig(ctx, vmid)
|
||||
if err != nil {
|
||||
s.logger.Warn("local-api: slot-for-path — could not read guest config", "vmid", vmid, "where", where, "err", err)
|
||||
return ""
|
||||
}
|
||||
for slot, spec := range cfg.MountPoints() {
|
||||
if _, mp, _ := parseMount(spec); mp == where {
|
||||
return slot
|
||||
}
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
// recordGuestBind persists that the drive at `where` (by its durable-id) is enrolled into `vmid`, so the
|
||||
// startup re-assert (ReassertGuestBinds) can restore the bind after a re-provision (F9). Best-effort.
|
||||
func (s *Server) recordGuestBind(ctx context.Context, vmid int, where string) {
|
||||
|
||||
@@ -389,7 +389,11 @@ type fakeGuestAttacher struct {
|
||||
vmid int
|
||||
slot, where string
|
||||
}
|
||||
reboots []int
|
||||
reboots []int
|
||||
detaches []struct {
|
||||
vmid int
|
||||
slot string
|
||||
}
|
||||
}
|
||||
|
||||
func (f *fakeGuestAttacher) AttachBind(_ context.Context, vmid int, mountKey, where string) error {
|
||||
@@ -403,6 +407,21 @@ func (f *fakeGuestAttacher) AttachBind(_ context.Context, vmid int, mountKey, wh
|
||||
}
|
||||
func (f *fakeGuestAttacher) count() int { f.mu.Lock(); defer f.mu.Unlock(); return len(f.calls) }
|
||||
|
||||
func (f *fakeGuestAttacher) DetachBind(_ context.Context, vmid int, mountKey string) error {
|
||||
f.mu.Lock()
|
||||
defer f.mu.Unlock()
|
||||
f.detaches = append(f.detaches, struct {
|
||||
vmid int
|
||||
slot string
|
||||
}{vmid, mountKey})
|
||||
return nil
|
||||
}
|
||||
func (f *fakeGuestAttacher) detachCount() int {
|
||||
f.mu.Lock()
|
||||
defer f.mu.Unlock()
|
||||
return len(f.detaches)
|
||||
}
|
||||
|
||||
func (f *fakeGuestAttacher) RebootGuest(_ context.Context, vmid int) error {
|
||||
f.mu.Lock()
|
||||
defer f.mu.Unlock()
|
||||
|
||||
@@ -70,6 +70,21 @@ func (b *GuestBinder) AttachBind(ctx context.Context, vmid int, mountKey, where
|
||||
return nil
|
||||
}
|
||||
|
||||
// DetachBind removes a mountpoint bind from the guest config (`pct set <vmid> --delete <mpN>`). This is
|
||||
// the decommission/eject counterpart to AttachBind and the C1 FIX: a drive whose bind is removed here
|
||||
// leaves NO dead `mpN` whose now-missing source would brick the guest on its next reboot (the B3
|
||||
// critical bug, where decommission unmounted the drive but never deleted the bind). It runs on a RUNNING
|
||||
// guest — a plain config edit, NOT a start — so it takes no start lock and cannot deadlock (unlike a
|
||||
// pre-start `--delete`, which is why the boot-time net uses placeholders instead). The live in-guest
|
||||
// mount lingers until the next reboot; the caller unmounts the host source separately.
|
||||
func (b *GuestBinder) DetachBind(ctx context.Context, vmid int, mountKey string) error {
|
||||
if err := b.run(ctx, "pct", "set", strconv.Itoa(vmid), "--delete", mountKey); err != nil {
|
||||
return fmt.Errorf("guest-detach: pct set %d --delete %s: %w", vmid, mountKey, err)
|
||||
}
|
||||
b.logger.Info("guest-detach: mountpoint bind removed from guest config", "vmid", vmid, "slot", mountKey)
|
||||
return nil
|
||||
}
|
||||
|
||||
// RebootGuest reboots the guest (graceful shutdown + start) so persisted-but-inactive mountpoint
|
||||
// binds activate (slice 10 P2: the host-side live inject is blocked on an unprivileged guest, so a
|
||||
// drive enrolled into a RUNNING guest activates only at the next boot — this is the user-triggered
|
||||
|
||||
@@ -8,6 +8,7 @@ import (
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
|
||||
"gitea.dooplex.hu/admin/felhom-agent/internal/guesthook"
|
||||
"gitea.dooplex.hu/admin/felhom-agent/internal/proxmox"
|
||||
)
|
||||
|
||||
@@ -145,6 +146,15 @@ func (b *BackHalf) Provision(ctx context.Context, in Input) (Result, error) {
|
||||
return Result{}, fmt.Errorf("provision: attach config mount: %w", err)
|
||||
}
|
||||
|
||||
// 6. Install + register the pre-start self-heal hook (C1 net): if a data drive is absent at a future
|
||||
// boot, the hook creates a placeholder for its missing bind source so the guest still starts.
|
||||
// Best-effort + non-fatal — it's defense-in-depth; a provision must not fail over the hook.
|
||||
if err := guesthook.InstallSnippet(ctx, b.runner); err != nil {
|
||||
b.logger.Warn("provision: pre-start hook snippet install failed (non-fatal)", "vmid", in.VMID, "err", err)
|
||||
} else if err := guesthook.Register(ctx, b.runner, in.VMID); err != nil {
|
||||
b.logger.Warn("provision: pre-start hook registration failed (non-fatal)", "vmid", in.VMID, "err", err)
|
||||
}
|
||||
|
||||
b.logger.Info("provision: back-half complete",
|
||||
"vmid", in.VMID, "mount", mountKey, "guest_path", guestPath, "endpoint", in.Endpoint)
|
||||
// tok intentionally goes out of scope here — never logged, never returned.
|
||||
|
||||
Reference in New Issue
Block a user