-
-
Notifications
You must be signed in to change notification settings - Fork 363
/
keto_engine_acp_ory.go
233 lines (188 loc) · 6.02 KB
/
keto_engine_acp_ory.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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package authz
import (
"bytes"
"crypto/sha256"
"encoding/json"
"fmt"
"net/http"
"net/url"
"text/template"
"time"
"github.com/hashicorp/go-retryablehttp"
"go.opentelemetry.io/otel/trace"
"github.com/ory/oathkeeper/driver/configuration"
"github.com/ory/oathkeeper/pipeline"
"github.com/ory/oathkeeper/pipeline/authn"
"github.com/ory/oathkeeper/x"
"github.com/ory/x/httpx"
"github.com/ory/x/otelx"
"github.com/ory/x/urlx"
"github.com/pkg/errors"
"github.com/tomasen/realip"
"github.com/ory/oathkeeper/helper"
)
type AuthorizerKetoEngineACPORYConfiguration struct {
RequiredAction string `json:"required_action"`
RequiredResource string `json:"required_resource"`
Subject string `json:"subject"`
Flavor string `json:"flavor"`
BaseURL string `json:"base_url"`
}
func (c *AuthorizerKetoEngineACPORYConfiguration) SubjectTemplateID() string {
return fmt.Sprintf("%x", sha256.Sum256([]byte(c.Subject)))
}
func (c *AuthorizerKetoEngineACPORYConfiguration) ActionTemplateID() string {
return fmt.Sprintf("%x", sha256.Sum256([]byte(c.RequiredAction)))
}
func (c *AuthorizerKetoEngineACPORYConfiguration) ResourceTemplateID() string {
return fmt.Sprintf("%x", sha256.Sum256([]byte(c.RequiredResource)))
}
type AuthorizerKetoEngineACPORY struct {
c configuration.Provider
client *retryablehttp.Client
contextCreator authorizerKetoWardenContext
t *template.Template
tracer trace.Tracer
}
func NewAuthorizerKetoEngineACPORY(c configuration.Provider, d interface{ Tracer() trace.Tracer }) *AuthorizerKetoEngineACPORY {
return &AuthorizerKetoEngineACPORY{
c: c,
client: httpx.NewResilientClient(
httpx.ResilientClientWithMaxRetryWait(100*time.Millisecond),
httpx.ResilientClientWithMaxRetry(5),
httpx.ResilientClientWithTracer(d.Tracer()),
),
contextCreator: func(r *http.Request) map[string]interface{} {
return map[string]interface{}{
"remoteIpAddress": realip.RealIP(r),
"requestedAt": time.Now().UTC(),
}
},
t: x.NewTemplate("keto_engine_acp_ory"),
tracer: d.Tracer(),
}
}
func (a *AuthorizerKetoEngineACPORY) GetID() string {
return "keto_engine_acp_ory"
}
type authorizerKetoWardenContext func(r *http.Request) map[string]interface{}
type AuthorizerKetoEngineACPORYRequestBody struct {
Action string `json:"action"`
Context map[string]interface{} `json:"context"`
Resource string `json:"resource"`
Subject string `json:"subject"`
}
func (a *AuthorizerKetoEngineACPORY) WithContextCreator(f authorizerKetoWardenContext) {
a.contextCreator = f
}
func (a *AuthorizerKetoEngineACPORY) Authorize(r *http.Request, session *authn.AuthenticationSession, config json.RawMessage, _ pipeline.Rule) (err error) {
ctx, span := a.tracer.Start(r.Context(), "authz.keto_engine_acp_ory")
defer otelx.End(span, &err)
r = r.WithContext(ctx)
cf, err := a.Config(config)
if err != nil {
return err
}
// only Regexp matching strategy is supported for now.
if !(a.c.AccessRuleMatchingStrategy() == "" || a.c.AccessRuleMatchingStrategy() == configuration.Regexp) {
return helper.ErrNonRegexpMatchingStrategy
}
subject := session.Subject
if cf.Subject != "" {
subject, err = a.parseParameter(session, cf.SubjectTemplateID(), cf.Subject)
if err != nil {
return errors.WithStack(err)
}
}
action, err := a.parseParameter(session, cf.ActionTemplateID(), cf.RequiredAction)
if err != nil {
return errors.WithStack(err)
}
resource, err := a.parseParameter(session, cf.ResourceTemplateID(), cf.RequiredResource)
if err != nil {
return errors.WithStack(err)
}
flavor := "regex"
if len(cf.Flavor) > 0 {
flavor = cf.Flavor
}
var b bytes.Buffer
if err := json.NewEncoder(&b).Encode(&AuthorizerKetoEngineACPORYRequestBody{
Action: action,
Resource: resource,
Context: a.contextCreator(r),
Subject: subject,
}); err != nil {
return errors.WithStack(err)
}
baseURL, err := url.ParseRequestURI(cf.BaseURL)
if err != nil {
return errors.WithStack(err)
}
req, err := http.NewRequest("POST", urlx.AppendPaths(baseURL, "/engines/acp/ory", flavor, "/allowed").String(), &b)
if err != nil {
return errors.WithStack(err)
}
req.Header.Add("Content-Type", "application/json")
retryableReq, err := retryablehttp.FromRequest(req.WithContext(r.Context()))
if err != nil {
return errors.WithStack(err)
}
res, err := a.client.Do(retryableReq)
if err != nil {
return errors.WithStack(err)
}
defer res.Body.Close()
if res.StatusCode == http.StatusForbidden {
return errors.WithStack(helper.ErrForbidden)
} else if res.StatusCode != http.StatusOK {
return errors.Errorf("expected status code %d but got %d", http.StatusOK, res.StatusCode)
}
var result struct {
Allowed bool `json:"allowed"`
}
if err := json.NewDecoder(res.Body).Decode(&result); err != nil {
return errors.WithStack(err)
}
if !result.Allowed {
return errors.WithStack(helper.ErrForbidden)
}
return nil
}
func (a *AuthorizerKetoEngineACPORY) parseParameter(session *authn.AuthenticationSession, templateID, templateString string) (string, error) {
t := a.t.Lookup(templateID)
if t == nil {
var err error
t, err = a.t.New(templateID).Parse(templateString)
if err != nil {
return "", err
}
}
var b bytes.Buffer
if err := t.Execute(&b, session); err != nil {
return "", err
}
return b.String(), nil
}
func (a *AuthorizerKetoEngineACPORY) Validate(config json.RawMessage) error {
if !a.c.AuthorizerIsEnabled(a.GetID()) {
return NewErrAuthorizerNotEnabled(a)
}
_, err := a.Config(config)
return err
}
func (a *AuthorizerKetoEngineACPORY) Config(config json.RawMessage) (*AuthorizerKetoEngineACPORYConfiguration, error) {
var c AuthorizerKetoEngineACPORYConfiguration
if err := a.c.AuthorizerConfig(a.GetID(), config, &c); err != nil {
return nil, NewErrAuthorizerMisconfigured(a, err)
}
if c.RequiredAction == "" {
c.RequiredAction = "unset"
}
if c.RequiredResource == "" {
c.RequiredResource = "unset"
}
return &c, nil
}