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
|
// Copyright 2018 Envoyproxy Authors
//
// 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 cache defines a configuration cache for the server.
package cache
import (
"context"
"errors"
"fmt"
"sync/atomic"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
"google.golang.org/protobuf/types/known/durationpb"
"github.com/envoyproxy/go-control-plane/pkg/cache/types"
"github.com/envoyproxy/go-control-plane/pkg/server/stream/v3"
discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
)
// Request is an alias for the discovery request type.
type Request = discovery.DiscoveryRequest
// DeltaRequest is an alias for the delta discovery request type.
type DeltaRequest = discovery.DeltaDiscoveryRequest
// ConfigWatcher requests watches for configuration resources by a node, last
// applied version identifier, and resource names hint. The watch should send
// the responses when they are ready. The watch can be canceled by the
// consumer, in effect terminating the watch for the request.
// ConfigWatcher implementation must be thread-safe.
type ConfigWatcher interface {
// CreateWatch returns a new open watch from a non-empty request.
// An individual consumer normally issues a single open watch by each type URL.
//
// The provided channel produces requested resources as responses, once they are available.
//
// Cancel is an optional function to release resources in the producer. If
// provided, the consumer may call this function multiple times.
CreateWatch(*Request, stream.StreamState, chan Response) (cancel func())
// CreateDeltaWatch returns a new open incremental xDS watch.
//
// The provided channel produces requested resources as responses, or spontaneous updates in accordance
// with the incremental xDS specification.
//
// Cancel is an optional function to release resources in the producer. If
// provided, the consumer may call this function multiple times.
CreateDeltaWatch(*DeltaRequest, stream.StreamState, chan DeltaResponse) (cancel func())
}
// ConfigFetcher fetches configuration resources from cache
type ConfigFetcher interface {
// Fetch implements the polling method of the config cache using a non-empty request.
Fetch(context.Context, *Request) (Response, error)
}
// Cache is a generic config cache with a watcher.
type Cache interface {
ConfigWatcher
ConfigFetcher
}
// Response is a wrapper around Envoy's DiscoveryResponse.
type Response interface {
// Get the Constructed DiscoveryResponse
GetDiscoveryResponse() (*discovery.DiscoveryResponse, error)
// Get the original Request for the Response.
GetRequest() *discovery.DiscoveryRequest
// Get the version in the Response.
GetVersion() (string, error)
// Get the context provided during response creation.
GetContext() context.Context
}
// DeltaResponse is a wrapper around Envoy's DeltaDiscoveryResponse
type DeltaResponse interface {
// Get the constructed DeltaDiscoveryResponse
GetDeltaDiscoveryResponse() (*discovery.DeltaDiscoveryResponse, error)
// Get the request that created the watch that we're now responding to. This is provided to allow the caller to correlate the
// response with a request. Generally this will be the latest request seen on the stream for the specific type.
GetDeltaRequest() *discovery.DeltaDiscoveryRequest
// Get the version in the DeltaResponse. This field is generally used for debugging purposes as noted by the Envoy documentation.
GetSystemVersion() (string, error)
// Get the version map of the internal cache.
// The version map consists of updated version mappings after this response is applied
GetNextVersionMap() map[string]string
// Get the context provided during response creation
GetContext() context.Context
}
// RawResponse is a pre-serialized xDS response containing the raw resources to
// be included in the final Discovery Response.
type RawResponse struct {
// Request is the original request.
Request *discovery.DiscoveryRequest
// Version of the resources as tracked by the cache for the given type.
// Proxy responds with this version as an acknowledgement.
Version string
// Resources to be included in the response.
Resources []types.ResourceWithTTL
// Whether this is a heartbeat response. For xDS versions that support TTL, this
// will be converted into a response that doesn't contain the actual resource protobuf.
// This allows for more lightweight updates that server only to update the TTL timer.
Heartbeat bool
// Context provided at the time of response creation. This allows associating additional
// information with a generated response.
Ctx context.Context
// marshaledResponse holds an atomic reference to the serialized discovery response.
marshaledResponse atomic.Value
}
// RawDeltaResponse is a pre-serialized xDS response that utilizes the delta discovery request/response objects.
type RawDeltaResponse struct {
// Request is the latest delta request on the stream.
DeltaRequest *discovery.DeltaDiscoveryRequest
// SystemVersionInfo holds the currently applied response system version and should be used for debugging purposes only.
SystemVersionInfo string
// Resources to be included in the response.
Resources []types.Resource
// RemovedResources is a list of resource aliases which should be dropped by the consuming client.
RemovedResources []string
// NextVersionMap consists of updated version mappings after this response is applied
NextVersionMap map[string]string
// Context provided at the time of response creation. This allows associating additional
// information with a generated response.
Ctx context.Context
// Marshaled Resources to be included in the response.
marshaledResponse atomic.Value
}
var _ Response = &RawResponse{}
var _ DeltaResponse = &RawDeltaResponse{}
// PassthroughResponse is a pre constructed xDS response that need not go through marshaling transformations.
type PassthroughResponse struct {
// Request is the original request.
Request *discovery.DiscoveryRequest
// The discovery response that needs to be sent as is, without any marshaling transformations.
DiscoveryResponse *discovery.DiscoveryResponse
ctx context.Context
}
// DeltaPassthroughResponse is a pre constructed xDS response that need not go through marshaling transformations.
type DeltaPassthroughResponse struct {
// Request is the latest delta request on the stream
DeltaRequest *discovery.DeltaDiscoveryRequest
// NextVersionMap consists of updated version mappings after this response is applied
NextVersionMap map[string]string
// This discovery response that needs to be sent as is, without any marshaling transformations
DeltaDiscoveryResponse *discovery.DeltaDiscoveryResponse
ctx context.Context
}
var _ Response = &PassthroughResponse{}
var _ DeltaResponse = &DeltaPassthroughResponse{}
// GetDiscoveryResponse performs the marshaling the first time its called and uses the cached response subsequently.
// This is necessary because the marshaled response does not change across the calls.
// This caching behavior is important in high throughput scenarios because grpc marshaling has a cost and it drives the cpu utilization under load.
func (r *RawResponse) GetDiscoveryResponse() (*discovery.DiscoveryResponse, error) {
marshaledResponse := r.marshaledResponse.Load()
if marshaledResponse == nil {
marshaledResources := make([]*anypb.Any, len(r.Resources))
for i, resource := range r.Resources {
maybeTtldResource, resourceType, err := r.maybeCreateTTLResource(resource)
if err != nil {
return nil, err
}
marshaledResource, err := MarshalResource(maybeTtldResource)
if err != nil {
return nil, err
}
marshaledResources[i] = &anypb.Any{
TypeUrl: resourceType,
Value: marshaledResource,
}
}
marshaledResponse = &discovery.DiscoveryResponse{
VersionInfo: r.Version,
Resources: marshaledResources,
TypeUrl: r.Request.TypeUrl,
}
r.marshaledResponse.Store(marshaledResponse)
}
return marshaledResponse.(*discovery.DiscoveryResponse), nil
}
// GetDeltaDiscoveryResponse performs the marshaling the first time its called and uses the cached response subsequently.
// We can do this because the marshaled response does not change across the calls.
// This caching behavior is important in high throughput scenarios because grpc marshaling has a cost and it drives the cpu utilization under load.
func (r *RawDeltaResponse) GetDeltaDiscoveryResponse() (*discovery.DeltaDiscoveryResponse, error) {
marshaledResponse := r.marshaledResponse.Load()
if marshaledResponse == nil {
marshaledResources := make([]*discovery.Resource, len(r.Resources))
for i, resource := range r.Resources {
name := GetResourceName(resource)
marshaledResource, err := MarshalResource(resource)
if err != nil {
return nil, err
}
version := HashResource(marshaledResource)
if version == "" {
return nil, errors.New("failed to create a resource hash")
}
marshaledResources[i] = &discovery.Resource{
Name: name,
Resource: &anypb.Any{
TypeUrl: r.DeltaRequest.TypeUrl,
Value: marshaledResource,
},
Version: version,
}
}
marshaledResponse = &discovery.DeltaDiscoveryResponse{
Resources: marshaledResources,
RemovedResources: r.RemovedResources,
TypeUrl: r.DeltaRequest.TypeUrl,
SystemVersionInfo: r.SystemVersionInfo,
}
r.marshaledResponse.Store(marshaledResponse)
}
return marshaledResponse.(*discovery.DeltaDiscoveryResponse), nil
}
// GetRequest returns the original Discovery Request.
func (r *RawResponse) GetRequest() *discovery.DiscoveryRequest {
return r.Request
}
func (r *RawResponse) GetContext() context.Context {
return r.Ctx
}
// GetDeltaRequest returns the original DeltaRequest
func (r *RawDeltaResponse) GetDeltaRequest() *discovery.DeltaDiscoveryRequest {
return r.DeltaRequest
}
// GetVersion returns the response version.
func (r *RawResponse) GetVersion() (string, error) {
return r.Version, nil
}
// GetSystemVersion returns the raw SystemVersion
func (r *RawDeltaResponse) GetSystemVersion() (string, error) {
return r.SystemVersionInfo, nil
}
// NextVersionMap returns the version map which consists of updated version mappings after this response is applied
func (r *RawDeltaResponse) GetNextVersionMap() map[string]string {
return r.NextVersionMap
}
func (r *RawDeltaResponse) GetContext() context.Context {
return r.Ctx
}
var deltaResourceTypeURL = "type.googleapis.com/" + string(proto.MessageName(&discovery.Resource{}))
func (r *RawResponse) maybeCreateTTLResource(resource types.ResourceWithTTL) (types.Resource, string, error) {
if resource.TTL != nil {
wrappedResource := &discovery.Resource{
Name: GetResourceName(resource.Resource),
Ttl: durationpb.New(*resource.TTL),
}
if !r.Heartbeat {
rsrc, err := anypb.New(resource.Resource)
if err != nil {
return nil, "", err
}
rsrc.TypeUrl = r.Request.TypeUrl
wrappedResource.Resource = rsrc
}
return wrappedResource, deltaResourceTypeURL, nil
}
return resource.Resource, r.Request.TypeUrl, nil
}
// GetDiscoveryResponse returns the final passthrough Discovery Response.
func (r *PassthroughResponse) GetDiscoveryResponse() (*discovery.DiscoveryResponse, error) {
return r.DiscoveryResponse, nil
}
// GetDeltaDiscoveryResponse returns the final passthrough Delta Discovery Response.
func (r *DeltaPassthroughResponse) GetDeltaDiscoveryResponse() (*discovery.DeltaDiscoveryResponse, error) {
return r.DeltaDiscoveryResponse, nil
}
// GetRequest returns the original Discovery Request
func (r *PassthroughResponse) GetRequest() *discovery.DiscoveryRequest {
return r.Request
}
// GetDeltaRequest returns the original Delta Discovery Request
func (r *DeltaPassthroughResponse) GetDeltaRequest() *discovery.DeltaDiscoveryRequest {
return r.DeltaRequest
}
// GetVersion returns the response version.
func (r *PassthroughResponse) GetVersion() (string, error) {
if r.DiscoveryResponse != nil {
return r.DiscoveryResponse.VersionInfo, nil
}
return "", fmt.Errorf("DiscoveryResponse is nil")
}
func (r *PassthroughResponse) GetContext() context.Context {
return r.ctx
}
// GetSystemVersion returns the response version.
func (r *DeltaPassthroughResponse) GetSystemVersion() (string, error) {
if r.DeltaDiscoveryResponse != nil {
return r.DeltaDiscoveryResponse.SystemVersionInfo, nil
}
return "", fmt.Errorf("DeltaDiscoveryResponse is nil")
}
// NextVersionMap returns the version map from a DeltaPassthroughResponse
func (r *DeltaPassthroughResponse) GetNextVersionMap() map[string]string {
return r.NextVersionMap
}
func (r *DeltaPassthroughResponse) GetContext() context.Context {
return r.ctx
}
|