forked from ory/ladon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ladon.go
131 lines (114 loc) · 4.03 KB
/
ladon.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
/*
* Copyright © 2016-2018 Aeneas Rekkas <[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.
*
* @author Aeneas Rekkas <[email protected]>
* @copyright 2015-2018 Aeneas Rekkas <[email protected]>
* @license Apache-2.0
*/
package ladon
import (
"github.com/pkg/errors"
)
// Ladon is an implementation of Warden.
type Ladon struct {
Manager Manager
Matcher matcher
AuditLogger AuditLogger
}
func (l *Ladon) matcher() matcher {
if l.Matcher == nil {
l.Matcher = DefaultMatcher
}
return l.Matcher
}
func (l *Ladon) auditLogger() AuditLogger {
if l.AuditLogger == nil {
l.AuditLogger = DefaultAuditLogger
}
return l.AuditLogger
}
// IsAllowed returns nil if subject s has permission p on resource r with context c or an error otherwise.
func (l *Ladon) IsAllowed(r *Request) (err error) {
policies, err := l.Manager.FindRequestCandidates(r)
if err != nil {
return err
}
// Although the manager is responsible of matching the policies, it might decide to just scan for
// subjects, it might return all policies, or it might have a different pattern matching than Golang.
// Thus, we need to make sure that we actually matched the right policies.
return l.DoPoliciesAllow(r, policies)
}
// DoPoliciesAllow returns nil if subject s has permission p on resource r with context c for a given policy list or an error otherwise.
// The IsAllowed interface should be preferred since it uses the manager directly. This is a lower level interface for when you don't want to use the ladon manager.
func (l *Ladon) DoPoliciesAllow(r *Request, policies []Policy) (err error) {
var allowed = false
var deciders = Policies{}
// Iterate through all policies
for _, p := range policies {
// Does the action match with one of the policies?
// This is the first check because usually actions are a superset of get|update|delete|set
// and thus match faster.
if pm, err := l.matcher().Matches(p, p.GetActions(), r.Action); err != nil {
return errors.WithStack(err)
} else if !pm {
// no, continue to next policy
continue
}
// Does the subject match with one of the policies?
// There are usually less subjects than resources which is why this is checked
// before checking for resources.
if sm, err := l.matcher().Matches(p, p.GetSubjects(), r.Subject); err != nil {
return err
} else if !sm {
// no, continue to next policy
continue
}
// Does the resource match with one of the policies?
if rm, err := l.matcher().Matches(p, p.GetResources(), r.Resource); err != nil {
return errors.WithStack(err)
} else if !rm {
// no, continue to next policy
continue
}
// Are the policies conditions met?
// This is checked first because it usually has a small complexity.
if !l.passesConditions(p, r) {
// no, continue to next policy
continue
}
// Is the policies effect deny? If yes, this overrides all allow policies -> access denied.
if !p.AllowAccess() {
deciders = append(deciders, p)
l.auditLogger().LogRejectedAccessRequest(r, policies, deciders)
return errors.WithStack(ErrRequestForcefullyDenied)
}
allowed = true
deciders = append(deciders, p)
}
if !allowed {
l.auditLogger().LogRejectedAccessRequest(r, policies, deciders)
return errors.WithStack(ErrRequestDenied)
}
l.auditLogger().LogGrantedAccessRequest(r, policies, deciders)
return nil
}
func (l *Ladon) passesConditions(p Policy, r *Request) bool {
for key, condition := range p.GetConditions() {
if pass := condition.Fulfills(r.Context[key], r); !pass {
return false
}
}
return true
}