forked from envoyproxy/gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackendtrafficpolicy.go
484 lines (425 loc) · 13.3 KB
/
backendtrafficpolicy.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
// Copyright Envoy Gateway Authors
// SPDX-License-Identifier: Apache-2.0
// The full text of the Apache license is available in the LICENSE file at
// the root of the repo.
package gatewayapi
import (
"fmt"
"net"
"sort"
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
gwv1a2 "sigs.k8s.io/gateway-api/apis/v1alpha2"
gwv1b1 "sigs.k8s.io/gateway-api/apis/v1beta1"
egv1a1 "github.com/envoyproxy/gateway/api/v1alpha1"
"github.com/envoyproxy/gateway/internal/ir"
"github.com/envoyproxy/gateway/internal/status"
"github.com/envoyproxy/gateway/internal/utils/ptr"
)
type policyTargetRouteKey struct {
Kind string
Namespace string
Name string
}
type policyRouteTargetContext struct {
RouteContext
attached bool
}
type policyGatewayTargetContext struct {
*GatewayContext
attached bool
}
func (t *Translator) ProcessBackendTrafficPolicies(backendTrafficPolicies []*egv1a1.BackendTrafficPolicy,
gateways []*GatewayContext,
routes []RouteContext,
xdsIR XdsIRMap) []*egv1a1.BackendTrafficPolicy {
var res []*egv1a1.BackendTrafficPolicy
// Sort based on timestamp
sort.Slice(backendTrafficPolicies, func(i, j int) bool {
return backendTrafficPolicies[i].CreationTimestamp.Before(&(backendTrafficPolicies[j].CreationTimestamp))
})
// First build a map out of the routes and gateways for faster lookup since users might have thousands of routes or more.
// For gateways this probably isn't quite as necessary.
routeMap := map[policyTargetRouteKey]*policyRouteTargetContext{}
for _, route := range routes {
key := policyTargetRouteKey{
Kind: string(GetRouteType(route)),
Name: route.GetName(),
Namespace: route.GetNamespace(),
}
routeMap[key] = &policyRouteTargetContext{RouteContext: route}
}
gatewayMap := map[types.NamespacedName]*policyGatewayTargetContext{}
for _, gw := range gateways {
key := types.NamespacedName{
Name: gw.GetName(),
Namespace: gw.GetNamespace(),
}
gatewayMap[key] = &policyGatewayTargetContext{GatewayContext: gw}
}
// Translate
// 1. First translate Policies targeting xRoutes
// 2.. Finally, the policies targeting Gateways
// Process the policies targeting xRoutes
for _, policy := range backendTrafficPolicies {
if policy.Spec.TargetRef.Kind != KindGateway {
policy := policy.DeepCopy()
res = append(res, policy)
// Negative statuses have already been assigned so its safe to skip
route := resolveBTPolicyRouteTargetRef(policy, routeMap)
if route == nil {
continue
}
t.translateBackendTrafficPolicyForRoute(policy, route, xdsIR)
message := "BackendTrafficPolicy has been accepted."
status.SetBackendTrafficPolicyAcceptedIfUnset(&policy.Status, message)
}
}
// Process the policies targeting Gateways
for _, policy := range backendTrafficPolicies {
if policy.Spec.TargetRef.Kind == KindGateway {
policy := policy.DeepCopy()
res = append(res, policy)
// Negative statuses have already been assigned so its safe to skip
gateway := resolveBTPolicyGatewayTargetRef(policy, gatewayMap)
if gateway == nil {
continue
}
t.translateBackendTrafficPolicyForGateway(policy, gateway, xdsIR)
message := "BackendTrafficPolicy has been accepted."
status.SetBackendTrafficPolicyAcceptedIfUnset(&policy.Status, message)
}
}
return res
}
func resolveBTPolicyGatewayTargetRef(policy *egv1a1.BackendTrafficPolicy, gateways map[types.NamespacedName]*policyGatewayTargetContext) *GatewayContext {
targetNs := policy.Spec.TargetRef.Namespace
// If empty, default to namespace of policy
if targetNs == nil {
targetNs = ptr.To(gwv1b1.Namespace(policy.Namespace))
}
// Ensure Policy and target are in the same namespace
if policy.Namespace != string(*targetNs) {
message := fmt.Sprintf("Namespace:%s TargetRef.Namespace:%s, BackendTrafficPolicy can only target a resource in the same namespace.",
policy.Namespace, *targetNs)
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
// Find the Gateway
key := types.NamespacedName{
Name: string(policy.Spec.TargetRef.Name),
Namespace: string(*targetNs),
}
gateway, ok := gateways[key]
// Gateway not found
if !ok {
message := fmt.Sprintf("Gateway:%s not found.", policy.Spec.TargetRef.Name)
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonTargetNotFound,
message,
)
return nil
}
// Check if another policy targeting the same Gateway exists
if gateway.attached {
message := "Unable to target Gateway, another BackendTrafficPolicy has already attached to it"
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonConflicted,
message,
)
return nil
}
// Set context and save
gateway.attached = true
gateways[key] = gateway
return gateway.GatewayContext
}
func resolveBTPolicyRouteTargetRef(policy *egv1a1.BackendTrafficPolicy, routes map[policyTargetRouteKey]*policyRouteTargetContext) RouteContext {
targetNs := policy.Spec.TargetRef.Namespace
// If empty, default to namespace of policy
if targetNs == nil {
targetNs = ptr.To(gwv1b1.Namespace(policy.Namespace))
}
// Ensure Policy and target are in the same namespace
if policy.Namespace != string(*targetNs) {
message := fmt.Sprintf("Namespace:%s TargetRef.Namespace:%s, BackendTrafficPolicy can only target a resource in the same namespace.",
policy.Namespace, *targetNs)
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
// Check if the route exists
key := policyTargetRouteKey{
Kind: string(policy.Spec.TargetRef.Kind),
Name: string(policy.Spec.TargetRef.Name),
Namespace: string(*targetNs),
}
route, ok := routes[key]
// Route not found
if !ok {
message := fmt.Sprintf("%s/%s/%s not found.", policy.Spec.TargetRef.Kind, string(*targetNs), policy.Spec.TargetRef.Name)
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonTargetNotFound,
message,
)
return nil
}
// Check if another policy targeting the same xRoute exists
if route.attached {
message := fmt.Sprintf("Unable to target %s, another BackendTrafficPolicy has already attached to it", string(policy.Spec.TargetRef.Kind))
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonConflicted,
message,
)
return nil
}
// Set context and save
route.attached = true
routes[key] = route
return route.RouteContext
}
func (t *Translator) translateBackendTrafficPolicyForRoute(policy *egv1a1.BackendTrafficPolicy, route RouteContext, xdsIR XdsIRMap) {
var (
rl *ir.RateLimit
lb *ir.LoadBalancer
pp *ir.ProxyProtocol
)
// Build IR
if policy.Spec.RateLimit != nil {
rl = t.buildRateLimit(policy)
}
if policy.Spec.LoadBalancer != nil {
lb = t.buildLoadBalancer(policy)
}
if policy.Spec.ProxyProtocol != nil {
pp = t.buildProxyProtocol(policy)
}
// Apply IR to all relevant routes
prefix := irRoutePrefix(route)
for _, ir := range xdsIR {
for _, http := range ir.HTTP {
for _, r := range http.Routes {
// Apply if there is a match
if strings.HasPrefix(r.Name, prefix) {
r.RateLimit = rl
r.LoadBalancer = lb
r.ProxyProtocol = pp
}
}
}
}
}
func (t *Translator) translateBackendTrafficPolicyForGateway(policy *egv1a1.BackendTrafficPolicy, gateway *GatewayContext, xdsIR XdsIRMap) {
var (
rl *ir.RateLimit
lb *ir.LoadBalancer
pp *ir.ProxyProtocol
)
// Build IR
if policy.Spec.RateLimit != nil {
rl = t.buildRateLimit(policy)
}
if policy.Spec.LoadBalancer != nil {
lb = t.buildLoadBalancer(policy)
}
if policy.Spec.ProxyProtocol != nil {
pp = t.buildProxyProtocol(policy)
}
// Apply IR to all the routes within the specific Gateway
// If the feature is already set, then skip it, since it must be have
// set by a policy attaching to the route
irKey := t.getIRKey(gateway.Gateway)
// Should exist since we've validated this
ir := xdsIR[irKey]
for _, http := range ir.HTTP {
for _, r := range http.Routes {
// Apply if not already set
if r.RateLimit == nil {
r.RateLimit = rl
}
if r.LoadBalancer == nil {
r.LoadBalancer = lb
}
if r.ProxyProtocol == nil {
r.ProxyProtocol = pp
}
}
}
}
func (t *Translator) buildRateLimit(policy *egv1a1.BackendTrafficPolicy) *ir.RateLimit {
if policy.Spec.RateLimit.Global == nil {
message := "Global configuration empty for rateLimit"
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
if !t.GlobalRateLimitEnabled {
message := "Enable Ratelimit in the EnvoyGateway config to configure global rateLimit"
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
rateLimit := &ir.RateLimit{
Global: &ir.GlobalRateLimit{
Rules: make([]*ir.RateLimitRule, len(policy.Spec.RateLimit.Global.Rules)),
},
}
rules := rateLimit.Global.Rules
for i, rule := range policy.Spec.RateLimit.Global.Rules {
rules[i] = &ir.RateLimitRule{
Limit: &ir.RateLimitValue{
Requests: rule.Limit.Requests,
Unit: ir.RateLimitUnit(rule.Limit.Unit),
},
HeaderMatches: make([]*ir.StringMatch, 0),
}
for _, match := range rule.ClientSelectors {
for _, header := range match.Headers {
switch {
case header.Type == nil && header.Value != nil:
fallthrough
case *header.Type == egv1a1.HeaderMatchExact && header.Value != nil:
m := &ir.StringMatch{
Name: header.Name,
Exact: header.Value,
}
rules[i].HeaderMatches = append(rules[i].HeaderMatches, m)
case *header.Type == egv1a1.HeaderMatchRegularExpression && header.Value != nil:
m := &ir.StringMatch{
Name: header.Name,
SafeRegex: header.Value,
}
rules[i].HeaderMatches = append(rules[i].HeaderMatches, m)
case *header.Type == egv1a1.HeaderMatchDistinct && header.Value == nil:
m := &ir.StringMatch{
Name: header.Name,
Distinct: true,
}
rules[i].HeaderMatches = append(rules[i].HeaderMatches, m)
default:
// set negative status condition.
message := "Unable to translate rateLimit. Either the header.Type is not valid or the header is missing a value"
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
}
if match.SourceCIDR != nil {
// distinct means that each IP Address within the specified Source IP CIDR is treated as a
// distinct client selector and uses a separate rate limit bucket/counter.
distinct := false
sourceCIDR := match.SourceCIDR.Value
if match.SourceCIDR.Type != nil && *match.SourceCIDR.Type == egv1a1.SourceMatchDistinct {
distinct = true
}
ip, ipn, err := net.ParseCIDR(sourceCIDR)
if err != nil {
message := "Unable to translate rateLimit"
status.SetBackendTrafficPolicyCondition(policy,
gwv1a2.PolicyConditionAccepted,
metav1.ConditionFalse,
gwv1a2.PolicyReasonInvalid,
message,
)
return nil
}
mask, _ := ipn.Mask.Size()
rules[i].CIDRMatch = &ir.CIDRMatch{
CIDR: ipn.String(),
IPv6: ip.To4() == nil,
MaskLen: mask,
Distinct: distinct,
}
}
}
}
return rateLimit
}
func (t *Translator) buildLoadBalancer(policy *egv1a1.BackendTrafficPolicy) *ir.LoadBalancer {
var lb *ir.LoadBalancer
switch policy.Spec.LoadBalancer.Type {
case egv1a1.ConsistentHashLoadBalancerType:
lb = &ir.LoadBalancer{
ConsistentHash: &ir.ConsistentHash{},
}
if policy.Spec.LoadBalancer.ConsistentHash != nil &&
policy.Spec.LoadBalancer.ConsistentHash.Type == egv1a1.SourceIPConsistentHashType {
lb.ConsistentHash.SourceIP = ptr.To(true)
}
case egv1a1.LeastRequestLoadBalancerType:
lb = &ir.LoadBalancer{}
if policy.Spec.LoadBalancer.SlowStart != nil {
if policy.Spec.LoadBalancer.SlowStart.Window != nil {
lb.LeastRequest = &ir.LeastRequest{
SlowStart: &ir.SlowStart{
Window: policy.Spec.LoadBalancer.SlowStart.Window,
},
}
}
}
case egv1a1.RandomLoadBalancerType:
lb = &ir.LoadBalancer{
Random: &ir.Random{},
}
case egv1a1.RoundRobinLoadBalancerType:
lb = &ir.LoadBalancer{
RoundRobin: &ir.RoundRobin{
SlowStart: &ir.SlowStart{},
},
}
if policy.Spec.LoadBalancer.SlowStart != nil {
if policy.Spec.LoadBalancer.SlowStart.Window != nil {
lb.RoundRobin = &ir.RoundRobin{
SlowStart: &ir.SlowStart{
Window: policy.Spec.LoadBalancer.SlowStart.Window,
},
}
}
}
}
return lb
}
func (t *Translator) buildProxyProtocol(policy *egv1a1.BackendTrafficPolicy) *ir.ProxyProtocol {
var pp *ir.ProxyProtocol
switch policy.Spec.ProxyProtocol.Version {
case egv1a1.ProxyProtocolVersionV1:
pp = &ir.ProxyProtocol{
Version: ir.ProxyProtocolVersionV1,
}
case egv1a1.ProxyProtocolVersionV2:
pp = &ir.ProxyProtocol{
Version: ir.ProxyProtocolVersionV2,
}
}
return pp
}