1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
package paths
import (
"fmt"
"os"
"path/filepath"
)
// PathManager handles the resolution of configuration and runtime directories.
// By using a struct, we can instantiate different managers for parallel tests.
type PathManager struct {
ConfigDirOverride string
RuntimeBaseOverride string
}
// NewPathManager creates a PathManager with the given overrides.
func NewPathManager(configOverride, runtimeOverride string) *PathManager {
return &PathManager{
ConfigDirOverride: configOverride,
RuntimeBaseOverride: runtimeOverride,
}
}
// ConfigDir returns the persistent storage path for .conf files.
func (pm *PathManager) ConfigDir() string {
if pm.ConfigDirOverride != "" {
return pm.ConfigDirOverride
}
configHome := os.Getenv("XDG_CONFIG_HOME")
if configHome == "" {
home, err := os.UserHomeDir()
if err != nil {
return "/etc/wg-wrap/profiles" // Fallback
}
configHome = filepath.Join(home, ".config")
}
return filepath.Join(configHome, "wg-wrap", "profiles")
}
// RuntimeBaseDir returns the base ephemeral path.
func (pm *PathManager) RuntimeBaseDir() string {
if pm.RuntimeBaseOverride != "" {
return pm.RuntimeBaseOverride
}
if envDir := os.Getenv("WG_WRAP_HOST_RUNTIME_BASE_DIR"); envDir != "" {
return envDir
}
if envDir := os.Getenv("XDG_RUNTIME_DIR"); envDir != "" {
return envDir
}
uid := os.Getuid()
return fmt.Sprintf("/run/user/%d", uid)
}
// ProfileNamespacePath returns the specific path for a pinned namespace.
func (pm *PathManager) ProfileNamespacePath(profile string) string {
return filepath.Join(pm.RuntimeBaseDir(), "profiles", profile+".ns")
}
// ProfilePidsDir returns the path for PID tracking.
func (pm *PathManager) ProfilePidsDir(profile string) string {
return filepath.Join(pm.RuntimeBaseDir(), "profiles", profile, "pids")
}
|