-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathgrbac.go
262 lines (228 loc) · 6.54 KB
/
grbac.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
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
// Copyright 2018 [email protected]
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package grbac
import (
"errors"
"net/http"
"sync"
"time"
"github.com/sirupsen/logrus"
"github.com/storyicon/grbac/pkg/loader"
"github.com/storyicon/grbac/pkg/meta"
"github.com/storyicon/grbac/pkg/tree"
)
// defines a set of errors
var (
ErrInvalidRequest = errors.New("invalid request")
ErrUndefinedLoader = errors.New("loader undefined")
)
// Controller defines the structure of the controller
type Controller struct {
cron *time.Ticker
loader func() (Rules, error)
loadInterval time.Duration
rules Rules
rulesLock sync.RWMutex
tree *tree.Tree
treeLock sync.RWMutex
logger *logrus.Logger
}
// ControllerOption provides an interface for user to define controller.
type ControllerOption func(*Controller) error
// WithJSON is used to load configuration via json file
func WithJSON(name string, loadInterval time.Duration) ControllerOption {
return func(c *Controller) error {
fd, err := loader.NewJSONLoader(name)
if err != nil {
return err
}
c.loader = fd.Load
c.loadInterval = loadInterval
return nil
}
}
// WithYAML is used to load configuration via yaml file
func WithYAML(name string, loadInterval time.Duration) ControllerOption {
return func(c *Controller) error {
fd, err := loader.NewYAMLLoader(name)
if err != nil {
return err
}
c.loader = fd.Load
c.loadInterval = loadInterval
return nil
}
}
// WithAdvancedRules provides a more concise way to define rules
func WithAdvancedRules(rules loader.AdvancedRules) ControllerOption {
return func(c *Controller) error {
fd, err := loader.NewAdvancedRulesLoader(rules)
if err != nil {
return nil
}
c.loader = fd.Load
c.loadInterval = -1
return nil
}
}
// WithRules is used to load config via user defined rules
func WithRules(rules Rules) ControllerOption {
return func(c *Controller) error {
fd, err := loader.NewRulesLoader(rules)
if err != nil {
return nil
}
c.loader = fd.Load
c.loadInterval = -1
return nil
}
}
// WithLoader provides a custom Loader entry that you can use to load arbitrary storage.
func WithLoader(loader func() (Rules, error), loadInterval time.Duration) ControllerOption {
return func(c *Controller) error {
if loader == nil {
return ErrUndefinedLoader
}
c.loader = loader
c.loadInterval = loadInterval
return nil
}
}
// New is used to initialize an RBAC instance
func New(loaderOptions ControllerOption, options ...ControllerOption) (*Controller, error) {
c := &Controller{
logger: logrus.New(),
}
opts := append([]ControllerOption{loaderOptions}, options...)
for _, opt := range opts {
err := opt(c)
if err != nil {
return nil, err
}
}
if c.loader == nil {
return nil, ErrUndefinedLoader
}
err := c.reload()
if err != nil {
return nil, err
}
go c.runCronTab()
return c, nil
}
// SetLogger is used to modify the default logger
func (c *Controller) SetLogger(logger *logrus.Logger) {
if logger != nil {
c.logger = logger
}
}
func (c *Controller) reload() error {
if c.loader == nil {
return ErrUndefinedLoader
}
rules, err := c.loader()
if err != nil {
return err
}
err = rules.IsValid()
if err != nil {
return err
}
c.rulesLock.Lock()
c.rules = rules
c.rulesLock.Unlock()
err = c.buildTree()
if err != nil {
return err
}
return nil
}
func (c *Controller) buildTree() error {
t := tree.NewTree()
c.rulesLock.RLock()
defer c.rulesLock.RUnlock()
for _, rule := range c.rules {
t.Insert(rule.GetArguments(), rule)
}
c.treeLock.Lock()
c.tree = t
c.treeLock.Unlock()
return nil
}
func (c *Controller) runCronTab() {
if c.loadInterval < time.Second && c.loadInterval >= 0 {
c.loadInterval = 5 * time.Second
}
if c.loadInterval < 0 {
c.logger.Warning("grbac abandoned the periodic loader because loadInterval is less than 0")
return
}
ticker := time.NewTicker(c.loadInterval)
c.cron = ticker
for {
select {
case <-ticker.C:
c.logger.Debugln("grbac loader is scheduled")
err := c.reload()
if err != nil {
c.logger.Errorln("error occurred while loading the configuration in grbac: ", err)
}
}
}
}
func getQueryByRequest(r *http.Request) *Query {
if r.URL == nil {
return nil
}
return &Query{
Path: r.URL.Path,
Host: r.Host,
Method: r.Method,
}
}
func (c *Controller) find(query *Query) (Rules, error) {
c.treeLock.RLock()
defer c.treeLock.RUnlock()
records, err := c.tree.Query(query.GetArguments())
if err != nil {
return nil, err
}
var perms Rules
for _, record := range records {
perm, ok := record.(*Rule)
if !ok {
continue
}
perms = append(perms, perm)
}
return perms, nil
}
// IsRequestGranted is used to verify whether a request has permission.
// * The parameter roles is the role of the current user.
func (c *Controller) IsRequestGranted(r *http.Request, roles []string) (PermissionState, error) {
query := getQueryByRequest(r)
if query == nil {
return meta.PermissionUnknown, ErrInvalidRequest
}
return c.IsQueryGranted(query, roles)
}
// IsQueryGranted allows query permissions with the given Query parameter
// * The parameter roles is the role of the current user.
func (c *Controller) IsQueryGranted(q *Query, roles []string) (PermissionState, error) {
rules, err := c.find(q)
if err != nil {
return meta.PermissionUnknown, err
}
return rules.IsRolesGranted(roles)
}