feat(go): port FIM/pkgdb/rootcheck integrity engines and add go-sidecar dashboard consumer

Adds sidecar-only, --state-dir-gated FIM, package-DB-anchor, and rootcheck
engines to the Go migration sidecar, wired into agent.Sweep/Initialize
behind the existing baseline lifecycle. Adds a read-only, schema-checked
Python dashboard consumer (go_sidecar_state_dir, /api/go-sidecar/*, Sidecar
tab) that never starts, stops, or mutates the Go sidecar's state.

Also fixes drift found while reconciling this work: enodia_sentinel/web.py
had reinvented local schema constants instead of using the canonical
enodia_sentinel/schemas.py catalog (now registers enodia.go.sidecar.v1
there and reuses ALERT_SNAPSHOT_V1/INCIDENT_V1); docs/RULES.md had drifted
from what `rules docs` actually generates for SIDs 100069-100078 (ruleops.py
was missing metadata for four SIDs and had stale drill text for four more),
now back in sync with a regression test pinning them together.

Updates CLAUDE.md, README.md, go-agent/README.md, and docs/{ROADMAP,
GO_PORT_HANDOFF,SURICATA_ASSIMILATION,THREAT_MODEL,OPERATIONS,SCHEMAS,
COMMAND_REFERENCE}.md to reflect the landed work.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NQivSKBqQJsayz1xcYqWzZ
This commit is contained in:
Luna 2026-07-24 09:59:09 -07:00
parent 1d1dee7f6e
commit d835386381
No known key found for this signature in database
43 changed files with 3419 additions and 72 deletions

View file

@ -0,0 +1,152 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// Package pkgdb ports Sentinel's layer-one pacman database tamper evidence.
// It does not treat the mutable local database as a root of trust: it records
// a baseline fingerprint, permits only transaction-correlated change, and
// retains the old anchor when a change is unexplained.
package pkgdb
import (
"crypto/sha256"
"encoding/hex"
"encoding/json"
"io"
"os"
"path/filepath"
"strings"
"time"
"codeberg.org/anassaeneroi/enodia-sentinal/go-agent/internal/model"
)
const (
SIDTamper = 100021
defaultDBDir = "/var/lib/pacman/local"
defaultPacmanLog = "/var/log/pacman.log"
anchorFilename = "pkgdb-anchor.json"
transactionSlop = 120 * time.Second
)
// Anchor is deliberately compatible with Python's small JSON record. Time is
// an epoch value so both implementations can compare it with pacman's log
// timestamp without formatting or local-time ambiguity.
type Anchor struct {
Fingerprint string `json:"fingerprint"`
Time float64 `json:"time"`
}
// Fingerprint computes the deterministic SHA-256 used for the local package
// database. It reads each non-directory entry in lexical walk order; a read
// failure makes the whole check unavailable rather than producing a partial
// fingerprint that could become an unsafe new baseline.
func Fingerprint(directory string) (string, error) {
hash := sha256.New()
err := filepath.WalkDir(directory, func(path string, entry os.DirEntry, err error) error {
if err != nil {
return err
}
if entry.IsDir() {
return nil
}
if _, err := io.WriteString(hash, path+"\x00"); err != nil {
return err
}
file, err := os.Open(path)
if err != nil {
return err
}
_, copyErr := io.Copy(hash, file)
closeErr := file.Close()
if copyErr != nil {
return copyErr
}
return closeErr
})
if err != nil {
return "", err
}
return hex.EncodeToString(hash.Sum(nil)), nil
}
// LastTransactionTime returns the final pacman transaction marker. A missing
// or unparseable log is intentionally inconclusive; it is never treated as a
// successful transaction that could authorize a changed database.
func LastTransactionTime(path string) (time.Time, bool) {
raw, err := os.ReadFile(path)
if err != nil {
return time.Time{}, false
}
var latest time.Time
for _, line := range strings.Split(string(raw), "\n") {
if !strings.Contains(line, "transaction completed") && !strings.Contains(line, "transaction started") {
continue
}
end := strings.IndexByte(line, ']')
if !strings.HasPrefix(line, "[") || end < 2 {
continue
}
stamp := line[1:end]
for _, layout := range []string{time.RFC3339, "2006-01-02T15:04:05-0700"} {
if parsed, err := time.Parse(layout, stamp); err == nil {
latest = parsed
break
}
}
}
return latest, !latest.IsZero()
}
func tamperAlert() model.Alert {
return model.Alert{
SID: SIDTamper, Severity: "CRITICAL", Signature: "pkgdb_tamper",
Classtype: "anti-tamper", Key: "pkgdb:tamper", PIDs: []int{},
Detail: "pacman local DB changed with no corresponding transaction — the package checksum database may have been altered to mask file tampering",
}
}
func loadAnchor(path string) (Anchor, bool) {
raw, err := os.ReadFile(path)
if err != nil {
return Anchor{}, false
}
var anchor Anchor
if err := json.Unmarshal(raw, &anchor); err != nil || anchor.Fingerprint == "" || anchor.Time <= 0 {
return Anchor{}, false
}
return anchor, true
}
func saveAnchor(path string, anchor Anchor) error {
raw, err := json.Marshal(anchor)
if err != nil {
return err
}
raw = append(raw, '\n')
temporary := path + ".tmp"
if err := os.WriteFile(temporary, raw, 0o640); err != nil {
return err
}
if err := os.Rename(temporary, path); err != nil {
return err
}
return os.Chmod(path, 0o640)
}
// check returns an alert only for changed state that no later pacman
// transaction can explain. It deliberately returns a replacement anchor only
// for first observation or a transaction-correlated change.
func check(current string, anchor Anchor, hasAnchor bool, transaction time.Time, hasTransaction bool, now time.Time) (*model.Alert, *Anchor) {
if !hasAnchor {
fresh := Anchor{Fingerprint: current, Time: float64(now.Unix())}
return nil, &fresh
}
if current == anchor.Fingerprint {
return nil, nil
}
if hasTransaction && !transaction.Before(time.Unix(int64(anchor.Time), 0).Add(-transactionSlop)) {
fresh := Anchor{Fingerprint: current, Time: float64(now.Unix())}
return nil, &fresh
}
alert := tamperAlert()
return &alert, nil
}