-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathconfig.go
More file actions
431 lines (403 loc) · 11.6 KB
/
Copy pathconfig.go
File metadata and controls
431 lines (403 loc) · 11.6 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package configstore
import (
"fmt"
"os"
"os/user"
"path/filepath"
"strings"
)
// Config represents the persisted leash configuration.
type Config struct {
CommandVolumes map[string]*bool `toml:"-"`
ProjectCommandVolumes map[string]map[string]*bool `toml:"-"`
CustomVolumes map[string]string `toml:"-"`
ProjectCustomVolumes map[string]map[string]string
ProjectVolumeDisables map[string]map[string]bool
TargetImage string
ProjectTargetImages map[string]string
EnvVars map[string]string
ProjectEnvVars map[string]map[string]string
PolicyFile string
ProjectPolicyFiles map[string]string
}
// DecisionScope models the precedence layer that yielded an effective choice.
type DecisionScope string
const (
ScopeUnset DecisionScope = "unset"
ScopeGlobal DecisionScope = "global"
ScopeProject DecisionScope = "project"
ScopeEphemeral DecisionScope = "ephemeral"
)
// Decision represents the effective state for a command after applying the
// precedence rules.
type Decision struct {
Enabled bool
Scope DecisionScope
}
// EnvVarValue captures the effective value and scope for an environment variable.
type EnvVarValue struct {
Value string
Scope DecisionScope
}
// New returns a Config with initialized maps. Callers that mutate the
// configuration should always start from this constructor to avoid nil maps.
func New() Config {
return Config{
CommandVolumes: make(map[string]*bool),
ProjectCommandVolumes: make(map[string]map[string]*bool),
CustomVolumes: make(map[string]string),
ProjectCustomVolumes: make(map[string]map[string]string),
ProjectVolumeDisables: make(map[string]map[string]bool),
ProjectTargetImages: make(map[string]string),
EnvVars: make(map[string]string),
ProjectEnvVars: make(map[string]map[string]string),
ProjectPolicyFiles: make(map[string]string),
}
}
// Clone produces a deep copy suitable for mutation without affecting the
// original instance.
func (c Config) Clone() Config {
out := New()
for cmd, value := range c.CommandVolumes {
if value == nil {
continue
}
out.CommandVolumes[cmd] = boolPtr(*value)
}
for host, spec := range c.CustomVolumes {
out.CustomVolumes[host] = spec
}
for projectPath, settings := range c.ProjectCommandVolumes {
if settings == nil {
out.ProjectCommandVolumes[projectPath] = make(map[string]*bool)
continue
}
dst := make(map[string]*bool, len(settings))
for cmd, value := range settings {
if value == nil {
continue
}
dst[cmd] = boolPtr(*value)
}
out.ProjectCommandVolumes[projectPath] = dst
}
for projectPath, specs := range c.ProjectCustomVolumes {
if specs == nil {
out.ProjectCustomVolumes[projectPath] = make(map[string]string)
continue
}
dst := make(map[string]string, len(specs))
for key, value := range specs {
dst[key] = value
}
out.ProjectCustomVolumes[projectPath] = dst
}
for projectPath, disables := range c.ProjectVolumeDisables {
if disables == nil {
out.ProjectVolumeDisables[projectPath] = make(map[string]bool)
continue
}
dst := make(map[string]bool, len(disables))
for key, value := range disables {
dst[key] = value
}
out.ProjectVolumeDisables[projectPath] = dst
}
for projectPath, image := range c.ProjectTargetImages {
out.ProjectTargetImages[projectPath] = image
}
for key, value := range c.EnvVars {
out.EnvVars[key] = value
}
for projectPath, envs := range c.ProjectEnvVars {
if envs == nil {
out.ProjectEnvVars[projectPath] = make(map[string]string)
continue
}
dst := make(map[string]string, len(envs))
for key, value := range envs {
dst[key] = value
}
out.ProjectEnvVars[projectPath] = dst
}
for projectPath, policyFile := range c.ProjectPolicyFiles {
out.ProjectPolicyFiles[projectPath] = policyFile
}
out.TargetImage = c.TargetImage
out.PolicyFile = c.PolicyFile
return out
}
// normalizeProjectKey resolves the absolute path for use as a project key.
func normalizeProjectKey(path string) (string, error) {
if strings.TrimSpace(path) == "" {
return "", fmt.Errorf("project path must not be empty")
}
abs, err := filepath.Abs(path)
if err != nil {
return "", fmt.Errorf("abs project path: %w", err)
}
normalized, err := filepath.EvalSymlinks(abs)
if err != nil {
// If the path does not exist yet, fall back to cleaned absolute path.
if os.IsNotExist(err) {
return filepath.Clean(abs), nil
}
return "", fmt.Errorf("resolve symlinks: %w", err)
}
return filepath.Clean(normalized), nil
}
func expandProjectSpecifier(spec string) (string, error) {
trimmed := strings.TrimSpace(spec)
if trimmed == "" {
return "", fmt.Errorf("project key must not be empty")
}
expanded := os.ExpandEnv(trimmed)
return expandLeadingTilde(expanded)
}
func expandLeadingTilde(path string) (string, error) {
if path == "" || path[0] != '~' {
return path, nil
}
if len(path) == 1 || isPathSeparator(path[1]) {
home, err := resolveHomeDir()
if err != nil {
return "", fmt.Errorf("resolve home directory: %w", err)
}
if len(path) == 1 {
return home, nil
}
return filepath.Join(home, strings.TrimLeft(path[2:], "/\\")), nil
}
sep := strings.IndexAny(path, "/\\")
var username, rest string
if sep == -1 {
username = path[1:]
rest = ""
} else {
username = path[1:sep]
rest = path[sep:]
}
if username == "" {
return path, nil
}
account, err := user.Lookup(username)
if err != nil {
return "", fmt.Errorf("lookup home for %s: %w", username, err)
}
trimmed := strings.TrimLeft(rest, "/\\")
if trimmed == "" {
return account.HomeDir, nil
}
return filepath.Join(account.HomeDir, trimmed), nil
}
func isPathSeparator(r byte) bool {
return r == '/' || r == '\\'
}
func resolveConfigProjectKey(spec string) (string, error) {
expanded, err := expandProjectSpecifier(spec)
if err != nil {
return "", err
}
return normalizeProjectKey(expanded)
}
func (c *Config) ensureInitialized() {
if c.CommandVolumes == nil {
c.CommandVolumes = make(map[string]*bool)
}
if c.ProjectCommandVolumes == nil {
c.ProjectCommandVolumes = make(map[string]map[string]*bool)
}
if c.CustomVolumes == nil {
c.CustomVolumes = make(map[string]string)
}
if c.ProjectCustomVolumes == nil {
c.ProjectCustomVolumes = make(map[string]map[string]string)
}
if c.ProjectVolumeDisables == nil {
c.ProjectVolumeDisables = make(map[string]map[string]bool)
}
for key, settings := range c.ProjectCommandVolumes {
if settings == nil {
c.ProjectCommandVolumes[key] = make(map[string]*bool)
}
}
for key, specs := range c.ProjectCustomVolumes {
if specs == nil {
c.ProjectCustomVolumes[key] = make(map[string]string)
}
}
for key, disables := range c.ProjectVolumeDisables {
if disables == nil {
c.ProjectVolumeDisables[key] = make(map[string]bool)
}
}
if c.ProjectTargetImages == nil {
c.ProjectTargetImages = make(map[string]string)
}
if c.EnvVars == nil {
c.EnvVars = make(map[string]string)
}
if c.ProjectEnvVars == nil {
c.ProjectEnvVars = make(map[string]map[string]string)
}
if c.ProjectPolicyFiles == nil {
c.ProjectPolicyFiles = make(map[string]string)
}
for key, envs := range c.ProjectEnvVars {
if envs == nil {
c.ProjectEnvVars[key] = make(map[string]string)
}
}
}
func boolPtr(v bool) *bool {
b := v
return &b
}
// SetGlobalTargetImage records the default container image for leash-managed sessions.
func (c *Config) SetGlobalTargetImage(image string) {
c.TargetImage = strings.TrimSpace(image)
}
// SetProjectTargetImage associates a target image with the given project path.
// Passing an empty image removes the override.
func (c *Config) SetProjectTargetImage(projectPath, image string) error {
key, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
c.ensureInitialized()
trimmed := strings.TrimSpace(image)
if trimmed == "" {
delete(c.ProjectTargetImages, key)
return nil
}
c.ProjectTargetImages[key] = trimmed
return nil
}
// UnsetProjectTargetImage removes any project-specific image override.
func (c *Config) UnsetProjectTargetImage(projectPath string) error {
key, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
if c.ProjectTargetImages == nil {
return nil
}
delete(c.ProjectTargetImages, key)
return nil
}
// SetGlobalEnvVar records a global environment variable to be injected into leash-managed containers.
// An empty value is permitted and results in KEY= being emitted.
func (c *Config) SetGlobalEnvVar(key, value string) error {
key = strings.TrimSpace(key)
if key == "" {
return fmt.Errorf("environment variable key must not be empty")
}
c.ensureInitialized()
c.EnvVars[key] = value
return nil
}
// UnsetGlobalEnvVar removes a global environment variable override.
func (c *Config) UnsetGlobalEnvVar(key string) {
if c.EnvVars == nil {
return
}
key = strings.TrimSpace(key)
if key == "" {
return
}
delete(c.EnvVars, key)
}
// SetProjectEnvVar assigns a project-scoped environment variable override. The project path is normalized
// to ensure consistent keys regardless of symlinks or relative inputs.
func (c *Config) SetProjectEnvVar(projectPath, key, value string) error {
key = strings.TrimSpace(key)
if key == "" {
return fmt.Errorf("environment variable key must not be empty")
}
projectKey, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
c.ensureInitialized()
envs := c.ProjectEnvVars[projectKey]
if envs == nil {
envs = make(map[string]string)
}
envs[key] = value
c.ProjectEnvVars[projectKey] = envs
return nil
}
// UnsetProjectEnvVar removes a project-specific environment variable override.
func (c *Config) UnsetProjectEnvVar(projectPath, key string) error {
if c.ProjectEnvVars == nil {
return nil
}
projectKey, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
envs, ok := c.ProjectEnvVars[projectKey]
if !ok || envs == nil {
return nil
}
key = strings.TrimSpace(key)
if key == "" {
return nil
}
delete(envs, key)
if len(envs) == 0 {
delete(c.ProjectEnvVars, projectKey)
return nil
}
c.ProjectEnvVars[projectKey] = envs
return nil
}
// SetGlobalPolicyFile records the default Cedar policy file path for leash-managed sessions.
func (c *Config) SetGlobalPolicyFile(policyFile string) {
c.PolicyFile = strings.TrimSpace(policyFile)
}
// SetProjectPolicyFile associates a policy file path with the given project path.
// Passing an empty policy file removes the override.
func (c *Config) SetProjectPolicyFile(projectPath, policyFile string) error {
key, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
c.ensureInitialized()
trimmed := strings.TrimSpace(policyFile)
if trimmed == "" {
delete(c.ProjectPolicyFiles, key)
return nil
}
c.ProjectPolicyFiles[key] = trimmed
return nil
}
// UnsetProjectPolicyFile removes any project-specific policy file override.
func (c *Config) UnsetProjectPolicyFile(projectPath string) error {
key, err := normalizeProjectKey(projectPath)
if err != nil {
return err
}
if c.ProjectPolicyFiles == nil {
return nil
}
delete(c.ProjectPolicyFiles, key)
return nil
}
// GetPolicyFile returns the effective policy file path and scope for the given project.
// It applies precedence rules: project-specific policy file overrides global policy file.
func (c *Config) GetPolicyFile(projectPath string) (string, DecisionScope, error) {
key, err := normalizeProjectKey(projectPath)
if err != nil {
return "", ScopeUnset, err
}
if c.ProjectPolicyFiles != nil {
if policyFile, ok := c.ProjectPolicyFiles[key]; ok && strings.TrimSpace(policyFile) != "" {
return strings.TrimSpace(policyFile), ScopeProject, nil
}
}
if c.PolicyFile != "" {
return c.PolicyFile, ScopeGlobal, nil
}
return "", ScopeUnset, nil
}