Add LDAP byte-pump tunnel, secrets rendering, and IAM engine
See CHANGELOG.md for the full breakdown. Summary:
- ldap_tunnel.go: serves a local unix socket for SSSD/PAM and relays raw
bytes to the SSO over the existing WSS channel (ldap_tunnel messages);
the agent never parses LDAP (DESIGN.md §4). Adds safeWriter to
serialize WebSocket writes now that telemetry, heartbeat, the LDAP
tunnel, and command responses all share one connection.
- secrets.go: renders local templates ({{ bao "path#key" }} placeholders)
by fetching node-scoped values from the SSO and writing the target
atomically at 0600, on a signed render_secrets command (DESIGN.md §5).
demo/ has minimal bash + Node consumers of the rendered file.
- iam.go: applies signed node IAM pushes -- sudoers.d rules (visudo -c
validated), SSH AuthorizedKeysCommand keys, /etc/security/access.conf,
and revocation via sss_cache -E + pkill -u (DESIGN.md §6).
- Capability reporting: the agent's enabled capabilities ride along in
its discovery frame so the SSO can show them in the Directory.
- DESIGN.md: the v2 protocol design this implements.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
+113
@@ -0,0 +1,113 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
)
|
||||
|
||||
// TestRenderSecrets verifies the agent parses `{{ bao "path#key" }}` placeholders,
|
||||
// fetches the secrets from the SSO, renders the template to its target
|
||||
// atomically, and runs the reload.
|
||||
func TestRenderSecrets(t *testing.T) {
|
||||
dir := t.TempDir()
|
||||
tpl := filepath.Join(dir, "db.env.tpl")
|
||||
target := filepath.Join(dir, "db.env")
|
||||
os.WriteFile(tpl, []byte("DB_USER=\"{{ bao \"secret/data/nodes/n1/db#username\" }}\"\nDB_PASS=\"{{ bao \"secret/data/nodes/n1/db#password\" }}\"\n"), 0600)
|
||||
|
||||
// Fake SSO secrets endpoint.
|
||||
var gotPaths []string
|
||||
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.URL.Path != "/api/v1/agent/secrets" {
|
||||
w.WriteHeader(404)
|
||||
return
|
||||
}
|
||||
var req struct{ Paths []string `json:"paths"` }
|
||||
json.NewDecoder(r.Body).Decode(&req)
|
||||
gotPaths = req.Paths
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
json.NewEncoder(w).Encode(map[string]interface{}{
|
||||
"secrets": map[string]interface{}{
|
||||
"secret/data/nodes/n1/db": map[string]interface{}{
|
||||
"username": "alice",
|
||||
"password": "s3cret",
|
||||
},
|
||||
},
|
||||
})
|
||||
}))
|
||||
defer srv.Close()
|
||||
|
||||
cfg := &Config{
|
||||
ServerURL: srv.URL,
|
||||
AuthToken: "tok",
|
||||
Secrets: []SecretTarget{
|
||||
{Template: tpl, Target: target, Reload: ""},
|
||||
},
|
||||
}
|
||||
|
||||
exec := &MockExecutor{}
|
||||
if err := renderSecrets(cfg, exec); err != nil {
|
||||
t.Fatalf("renderSecrets: %v", err)
|
||||
}
|
||||
|
||||
// The requested path should be the one in the template.
|
||||
if len(gotPaths) != 1 || gotPaths[0] != "secret/data/nodes/n1/db" {
|
||||
t.Fatalf("expected to request secret/data/nodes/n1/db, got %v", gotPaths)
|
||||
}
|
||||
|
||||
// The target should be rendered with the secret values.
|
||||
content, err := os.ReadFile(target)
|
||||
if err != nil {
|
||||
t.Fatalf("read target: %v", err)
|
||||
}
|
||||
expected := "DB_USER=\"alice\"\nDB_PASS=\"s3cret\"\n"
|
||||
if string(content) != expected {
|
||||
t.Fatalf("rendered content mismatch:\n got: %q\nwant: %q", content, expected)
|
||||
}
|
||||
|
||||
// The target should be 0600 (holds secrets).
|
||||
info, _ := os.Stat(target)
|
||||
if info.Mode().Perm() != 0600 {
|
||||
t.Fatalf("expected 0600, got %o", info.Mode().Perm())
|
||||
}
|
||||
}
|
||||
|
||||
// TestRenderSecretsReload verifies the reload command runs after rendering.
|
||||
func TestRenderSecretsReload(t *testing.T) {
|
||||
dir := t.TempDir()
|
||||
tpl := filepath.Join(dir, "app.tpl")
|
||||
target := filepath.Join(dir, "app.conf")
|
||||
os.WriteFile(tpl, []byte("KEY={{ bao \"secret/data/nodes/n1/app#key\" }}"), 0600)
|
||||
|
||||
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
json.NewEncoder(w).Encode(map[string]interface{}{
|
||||
"secrets": map[string]interface{}{
|
||||
"secret/data/nodes/n1/app": map[string]interface{}{"key": "v"},
|
||||
},
|
||||
})
|
||||
}))
|
||||
defer srv.Close()
|
||||
|
||||
cfg := &Config{
|
||||
ServerURL: srv.URL,
|
||||
AuthToken: "tok",
|
||||
Secrets: []SecretTarget{
|
||||
{Template: tpl, Target: target, Reload: "systemctl reload app"},
|
||||
},
|
||||
}
|
||||
exec := &MockExecutor{}
|
||||
if err := renderSecrets(cfg, exec); err != nil {
|
||||
t.Fatalf("renderSecrets: %v", err)
|
||||
}
|
||||
if len(exec.ExecutedCommands) != 1 {
|
||||
t.Fatalf("expected 1 reload command, got %v", exec.ExecutedCommands)
|
||||
}
|
||||
cmd := exec.ExecutedCommands[0]
|
||||
if len(cmd) != 3 || cmd[0] != "sh" || cmd[2] != "systemctl reload app" {
|
||||
t.Fatalf("expected reload 'sh -c systemctl reload app', got %v", cmd)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user