-
Notifications
You must be signed in to change notification settings - Fork 30
/
store.go
159 lines (136 loc) · 2.96 KB
/
store.go
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
package guardianagent
import (
"encoding/json"
"os"
"sync"
)
type Store struct {
mutex sync.RWMutex
rules map[Scope]AllowedCommands
path string
}
type AllowedCommands struct {
AllCommands bool `json:"AllCommands"`
Commands []string `json:"Commands"`
}
type storageEntry struct {
PolicyScope Scope `json:"Scope"`
PolicyRule AllowedCommands `json:"AllowedCommands"`
}
func NewStore(configPath string) (store *Store, err error) {
store = &Store{
path: configPath,
rules: make(map[Scope]AllowedCommands),
}
err = store.load()
return store, err
}
func (store *Store) load() (err error) {
store.mutex.Lock()
defer store.mutex.Unlock()
file, err := os.OpenFile(store.path, os.O_RDONLY|os.O_CREATE, 0600)
if err != nil {
return err
}
defer file.Close()
dec := json.NewDecoder(file)
if dec.More() {
if err = dec.Decode(&store); err != nil {
return err
}
}
return nil
}
func (store *Store) Save() (err error) {
file, err := os.OpenFile(store.path, os.O_WRONLY|os.O_CREATE, 0600)
if err != nil {
return err
}
defer file.Close()
enc := json.NewEncoder(file)
store.mutex.Lock()
defer store.mutex.Unlock()
if err := enc.Encode(store); err != nil {
return err
}
return nil
}
func (store *Store) MarshalJSON() ([]byte, error) {
ps := []storageEntry{}
for k, v := range store.rules {
ps = append(ps, storageEntry{PolicyScope: k, PolicyRule: v})
}
val, err := json.Marshal(ps)
if err != nil {
return nil, err
}
return val, nil
}
func (store *Store) UnmarshalJSON(b []byte) error {
tmpStore := []storageEntry{}
err := json.Unmarshal(b, &tmpStore)
if err != nil {
return err
}
for _, v := range tmpStore {
store.rules[v.PolicyScope] = v.PolicyRule
}
return nil
}
func (store *Store) AllowAll(scope Scope) (err error) {
store.mutex.RLock()
allowed, ok := store.rules[scope]
if !ok {
allowed = AllowedCommands{
AllCommands: false,
Commands: []string{}}
}
allowed.AllCommands = true
store.rules[scope] = allowed
store.mutex.RUnlock()
return store.Save()
}
func (store *Store) AllowCommand(scope Scope, cmd string) (err error) {
store.mutex.Lock()
allowed, ok := store.rules[scope]
if !ok {
allowed = AllowedCommands{
AllCommands: false,
Commands: []string{}}
}
for _, command := range allowed.Commands {
if cmd == command {
return
}
}
allowed.Commands = append(allowed.Commands, cmd)
store.rules[scope] = allowed
store.mutex.Unlock()
return store.Save()
}
func (store *Store) IsAllowed(scope Scope, cmd string) bool {
store.mutex.RLock()
defer store.mutex.RUnlock()
allowed, ok := store.rules[scope]
if !ok {
return false
}
if allowed.AllCommands {
return true
}
for _, storedCommand := range allowed.Commands {
if cmd == storedCommand {
return true
}
}
return false
}
func (store *Store) AreAllAllowed(scope Scope) bool {
store.mutex.RLock()
defer store.mutex.RUnlock()
allowed, ok := store.rules[scope]
if !ok {
return false
}
return allowed.AllCommands
}