-
Notifications
You must be signed in to change notification settings - Fork 890
/
Copy pathinterceptor.go
228 lines (203 loc) · 6.97 KB
/
interceptor.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
// The MIT License
//
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
//
// Copyright (c) 2020 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package authorization
import (
"context"
"crypto/x509"
"crypto/x509/pkix"
"go.temporal.io/api/serviceerror"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/peer"
"go.temporal.io/server/common/log"
"go.temporal.io/server/common/log/tag"
"go.temporal.io/server/common/metrics"
)
type (
contextKeyMappedClaims struct{}
contextKeyAuthHeader struct{}
)
type (
// JWTAudienceMapper returns JWT audience for a given request
JWTAudienceMapper interface {
Audience(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo) string
}
)
const (
RequestUnauthorized = "Request unauthorized."
)
var (
errUnauthorized = serviceerror.NewPermissionDenied(RequestUnauthorized, "")
MappedClaims contextKeyMappedClaims
AuthHeader contextKeyAuthHeader
)
func (a *interceptor) Interceptor(
ctx context.Context,
req interface{},
info *grpc.UnaryServerInfo,
handler grpc.UnaryHandler,
) (interface{}, error) {
var claims *Claims
if a.claimMapper != nil && a.authorizer != nil {
var tlsSubject *pkix.Name
var authHeaders []string
var authExtraHeaders []string
var tlsConnection *credentials.TLSInfo
if md, ok := metadata.FromIncomingContext(ctx); ok {
authHeaders = md["authorization"]
authExtraHeaders = md["authorization-extras"]
}
tlsConnection = TLSInfoFormContext(ctx)
clientCert := PeerCert(tlsConnection)
if clientCert != nil {
tlsSubject = &clientCert.Subject
}
// Add auth info to context only if there's some auth info
if tlsSubject != nil || len(authHeaders) > 0 {
var authHeader string
var authExtraHeader string
var audience string
if len(authHeaders) > 0 {
authHeader = authHeaders[0]
}
if len(authExtraHeaders) > 0 {
authExtraHeader = authExtraHeaders[0]
}
if a.audienceGetter != nil {
audience = a.audienceGetter.Audience(ctx, req, info)
}
authInfo := AuthInfo{
AuthToken: authHeader,
TLSSubject: tlsSubject,
TLSConnection: tlsConnection,
ExtraData: authExtraHeader,
Audience: audience,
}
mappedClaims, err := a.claimMapper.GetClaims(&authInfo)
if err != nil {
a.logAuthError(err)
return nil, errUnauthorized // return a generic error to the caller without disclosing details
}
claims = mappedClaims
ctx = context.WithValue(ctx, MappedClaims, mappedClaims)
if authHeader != "" {
ctx = context.WithValue(ctx, AuthHeader, authHeader)
}
}
}
if a.authorizer != nil {
var namespace string
requestWithNamespace, ok := req.(hasNamespace)
if ok {
namespace = requestWithNamespace.GetNamespace()
}
scope := a.getMetricsScope(metrics.AuthorizationScope, namespace)
result, err := a.authorize(ctx, claims, &CallTarget{
Namespace: namespace,
APIName: info.FullMethod,
Request: req,
}, scope)
if err != nil {
scope.IncCounter(metrics.ServiceErrAuthorizeFailedCounter)
a.logAuthError(err)
return nil, errUnauthorized // return a generic error to the caller without disclosing details
}
if result.Decision != DecisionAllow {
scope.IncCounter(metrics.ServiceErrUnauthorizedCounter)
// if a reason is included in the result, include it in the error message
if result.Reason != "" {
return nil, serviceerror.NewPermissionDenied(RequestUnauthorized, result.Reason)
}
return nil, errUnauthorized // return a generic error to the caller without disclosing details
}
}
return handler(ctx, req)
}
func (a *interceptor) authorize(ctx context.Context, claims *Claims, callTarget *CallTarget, scope metrics.Scope) (Result, error) {
sw := scope.StartTimer(metrics.ServiceAuthorizationLatency)
defer sw.Stop()
return a.authorizer.Authorize(ctx, claims, callTarget)
}
func (a *interceptor) logAuthError(err error) {
a.logger.Error("Authorization error", tag.Error(err))
}
type interceptor struct {
authorizer Authorizer
claimMapper ClaimMapper
metricsClient metrics.Client
logger log.Logger
audienceGetter JWTAudienceMapper
}
// NewAuthorizationInterceptor creates an authorization interceptor and return a func that points to its Interceptor method
func NewAuthorizationInterceptor(
claimMapper ClaimMapper,
authorizer Authorizer,
metrics metrics.Client,
logger log.Logger,
audienceGetter JWTAudienceMapper,
) grpc.UnaryServerInterceptor {
return (&interceptor{
claimMapper: claimMapper,
authorizer: authorizer,
metricsClient: metrics,
logger: logger,
audienceGetter: audienceGetter,
}).Interceptor
}
// getMetricsScope return metrics scope with namespace tag
func (a *interceptor) getMetricsScope(
scope int,
namespace string,
) metrics.Scope {
var metricsScope metrics.Scope
if namespace != "" {
metricsScope = a.metricsClient.Scope(scope).Tagged(metrics.NamespaceTag(namespace))
} else {
metricsScope = a.metricsClient.Scope(scope).Tagged(metrics.NamespaceUnknownTag())
}
return metricsScope
}
func TLSInfoFormContext(ctx context.Context) *credentials.TLSInfo {
p, ok := peer.FromContext(ctx)
if !ok {
return nil
}
if tlsInfo, ok := p.AuthInfo.(credentials.TLSInfo); ok {
return &tlsInfo
}
return nil
}
func PeerCert(tlsInfo *credentials.TLSInfo) *x509.Certificate {
if tlsInfo == nil || len(tlsInfo.State.VerifiedChains) == 0 || len(tlsInfo.State.VerifiedChains[0]) == 0 {
return nil
}
// The assumption here is that we only expect a single verified chain of certs (first[0]).
// It's unclear how we should handle a situation when more than one chain is presented,
// which subject to use. It's okay for us to limit ourselves to one chain.
// We can always extend this logic later.
// We take the first element in the chain ([0]) because that's the client cert
// (at the beginning of the chain), not intermediary CAs or the root CA (at the end of the chain).
return tlsInfo.State.VerifiedChains[0][0]
}