-
Notifications
You must be signed in to change notification settings - Fork 550
/
Copy pathsource.go
301 lines (257 loc) · 6.73 KB
/
source.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
package grpc
import (
"context"
"net"
"net/url"
"os"
"sync"
"time"
"github.com/operator-framework/operator-registry/pkg/client"
"github.com/sirupsen/logrus"
"golang.org/x/net/http/httpproxy"
"golang.org/x/net/proxy"
"google.golang.org/grpc"
"google.golang.org/grpc/connectivity"
"google.golang.org/grpc/credentials/insecure"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/operator-framework/operator-lifecycle-manager/pkg/controller/registry"
)
type SourceMeta struct {
Address string
LastConnect metav1.Time
ConnectionState connectivity.State
}
type SourceState struct {
Key registry.CatalogKey
State connectivity.State
}
type SourceConn struct {
SourceMeta
Conn *grpc.ClientConn
cancel context.CancelFunc
}
type SourceStore struct {
sync.Once
sources map[registry.CatalogKey]SourceConn
sourcesLock sync.RWMutex
syncFn func(SourceState)
logger *logrus.Logger
notify chan SourceState
timeout time.Duration
readyTimeout time.Duration
}
func NewSourceStore(logger *logrus.Logger, timeout, readyTimeout time.Duration, sync func(SourceState)) *SourceStore {
return &SourceStore{
sources: make(map[registry.CatalogKey]SourceConn),
notify: make(chan SourceState),
syncFn: sync,
logger: logger,
timeout: timeout,
readyTimeout: readyTimeout,
}
}
func (s *SourceStore) Start(ctx context.Context) {
s.logger.Debug("starting source manager")
go func() {
s.Do(func() {
for {
select {
case <-ctx.Done():
s.logger.Debug("closing source manager")
return
case e := <-s.notify:
s.logger.Debugf("Got source event: %#v", e)
s.syncFn(e)
}
}
})
}()
}
func (s *SourceStore) GetMeta(key registry.CatalogKey) *SourceMeta {
s.sourcesLock.RLock()
source, ok := s.sources[key]
s.sourcesLock.RUnlock()
if !ok {
return nil
}
return &source.SourceMeta
}
func (s *SourceStore) Exists(key registry.CatalogKey) bool {
s.sourcesLock.RLock()
_, ok := s.sources[key]
s.sourcesLock.RUnlock()
return ok
}
func (s *SourceStore) Get(key registry.CatalogKey) *SourceConn {
s.sourcesLock.RLock()
source, ok := s.sources[key]
s.sourcesLock.RUnlock()
if !ok {
return nil
}
return &source
}
func grpcProxyURL(addr string) (*url.URL, error) {
// Handle ip addresses
host, _, err := net.SplitHostPort(addr)
if err != nil {
return nil, err
}
url, err := url.Parse(host)
if err != nil {
return nil, err
}
// Hardcode fields required for proxy resolution
url.Host = addr
url.Scheme = "http"
// Override HTTPS_PROXY and HTTP_PROXY with GRPC_PROXY
proxyConfig := &httpproxy.Config{
HTTPProxy: getGRPCProxyEnv(),
HTTPSProxy: getGRPCProxyEnv(),
NoProxy: getEnvAny("NO_PROXY", "no_proxy"),
CGI: os.Getenv("REQUEST_METHOD") != "",
}
// Check if a proxy should be used based on environment variables
return proxyConfig.ProxyFunc()(url)
}
func getGRPCProxyEnv() string {
return getEnvAny("GRPC_PROXY", "grpc_proxy")
}
func getEnvAny(names ...string) string {
for _, n := range names {
if val := os.Getenv(n); val != "" {
return val
}
}
return ""
}
func grpcConnection(address string) (*grpc.ClientConn, error) {
dialOptions := []grpc.DialOption{grpc.WithTransportCredentials(insecure.NewCredentials())}
proxyURL, err := grpcProxyURL(address)
if err != nil {
return nil, err
}
if proxyURL != nil {
dialOptions = append(dialOptions, grpc.WithContextDialer(func(ctx context.Context, addr string) (net.Conn, error) {
dialer, err := proxy.FromURL(proxyURL, &net.Dialer{})
if err != nil {
return nil, err
}
return dialer.Dial("tcp", addr)
}))
}
return grpc.NewClient(address, dialOptions...)
}
func (s *SourceStore) Add(key registry.CatalogKey, address string) (*SourceConn, error) {
_ = s.Remove(key)
conn, err := grpcConnection(address)
if err != nil {
return nil, err
}
ctx, cancel := context.WithCancel(context.Background())
source := SourceConn{
SourceMeta: SourceMeta{
Address: address,
LastConnect: metav1.Now(),
ConnectionState: connectivity.Idle,
},
Conn: conn,
cancel: cancel,
}
s.sourcesLock.Lock()
s.sources[key] = source
s.sourcesLock.Unlock()
go s.watch(ctx, key, source)
return &source, nil
}
func (s *SourceStore) stateTimeout(state connectivity.State) time.Duration {
if state == connectivity.Ready {
return s.readyTimeout
}
return s.timeout
}
func (s *SourceStore) watch(ctx context.Context, key registry.CatalogKey, source SourceConn) {
state := source.ConnectionState
for {
select {
case <-ctx.Done():
return
default:
func() {
timer, cancel := context.WithTimeout(ctx, s.stateTimeout(state))
defer cancel()
if source.Conn.WaitForStateChange(timer, state) {
newState := source.Conn.GetState()
state = newState
// update connection state
src := s.Get(key)
if src == nil {
// source was removed, cleanup this goroutine
return
}
src.LastConnect = metav1.Now()
src.ConnectionState = newState
s.sourcesLock.Lock()
s.sources[key] = *src
s.sourcesLock.Unlock()
// Always try to reconnect. If the connection is already connected, this is a no-op.
//
// This function is non-blocking. Therefore, when it returns we'll still return IDLE
// as the state (we'll see further state changes in subsequent iterations of the loop).
source.Conn.Connect()
// notify subscriber
s.notify <- SourceState{Key: key, State: newState}
}
}()
}
}
}
func (s *SourceStore) Remove(key registry.CatalogKey) error {
s.sourcesLock.RLock()
source, ok := s.sources[key]
s.sourcesLock.RUnlock()
// no source to close
if !ok {
return nil
}
s.sourcesLock.Lock()
delete(s.sources, key)
s.sourcesLock.Unlock()
// clean up watcher
source.cancel()
return source.Conn.Close()
}
func (s *SourceStore) AsClients(namespaces ...string) map[registry.CatalogKey]registry.ClientInterface {
refs := map[registry.CatalogKey]registry.ClientInterface{}
s.sourcesLock.RLock()
defer s.sourcesLock.RUnlock()
for key, source := range s.sources {
if source.LastConnect.IsZero() {
continue
}
for _, namespace := range namespaces {
if key.Namespace == namespace {
refs[key] = registry.NewClientFromConn(source.Conn)
}
}
}
// TODO : remove unhealthy
return refs
}
func (s *SourceStore) ClientsForNamespaces(namespaces ...string) map[registry.CatalogKey]client.Interface {
refs := map[registry.CatalogKey]client.Interface{}
s.sourcesLock.RLock()
defer s.sourcesLock.RUnlock()
for key, source := range s.sources {
if source.LastConnect.IsZero() {
continue
}
for _, namespace := range namespaces {
if key.Namespace == namespace {
refs[key] = client.NewClientFromConn(source.Conn)
}
}
}
// TODO : remove unhealthy
return refs
}