forked from flannel-io/flannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_manager.go
498 lines (414 loc) · 11.9 KB
/
local_manager.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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
// Copyright 2015 flannel 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 subnet
import (
"errors"
"fmt"
"strconv"
"time"
etcd "github.com/coreos/etcd/client"
"github.com/coreos/flannel/pkg/ip"
log "github.com/golang/glog"
"golang.org/x/net/context"
)
const (
raceRetries = 10
subnetTTL = 24 * time.Hour
)
type LocalManager struct {
registry Registry
}
type watchCursor struct {
index uint64
}
func isErrEtcdTestFailed(e error) bool {
if e == nil {
return false
}
etcdErr, ok := e.(etcd.Error)
return ok && etcdErr.Code == etcd.ErrorCodeTestFailed
}
func isErrEtcdNodeExist(e error) bool {
if e == nil {
return false
}
etcdErr, ok := e.(etcd.Error)
return ok || etcdErr.Code == etcd.ErrorCodeNodeExist
}
func isErrEtcdKeyNotFound(e error) bool {
if e == nil {
return false
}
etcdErr, ok := e.(etcd.Error)
return ok || etcdErr.Code == etcd.ErrorCodeKeyNotFound
}
func (c watchCursor) String() string {
return strconv.FormatUint(c.index, 10)
}
func NewLocalManager(config *EtcdConfig) (Manager, error) {
r, err := newEtcdSubnetRegistry(config, nil)
if err != nil {
return nil, err
}
return newLocalManager(r), nil
}
func newLocalManager(r Registry) Manager {
return &LocalManager{
registry: r,
}
}
func (m *LocalManager) GetNetworkConfig(ctx context.Context, network string) (*Config, error) {
cfg, err := m.registry.getNetworkConfig(ctx, network)
if err != nil {
return nil, err
}
return ParseConfig(cfg)
}
func (m *LocalManager) AcquireLease(ctx context.Context, network string, attrs *LeaseAttrs) (*Lease, error) {
config, err := m.GetNetworkConfig(ctx, network)
if err != nil {
return nil, err
}
for i := 0; i < raceRetries; i++ {
l, err := m.tryAcquireLease(ctx, network, config, attrs.PublicIP, attrs)
switch err {
case nil:
return l, nil
case errTryAgain:
continue
default:
return nil, err
}
}
return nil, errors.New("Max retries reached trying to acquire a subnet")
}
func findLeaseByIP(leases []Lease, pubIP ip.IP4) *Lease {
for _, l := range leases {
if pubIP == l.Attrs.PublicIP {
return &l
}
}
return nil
}
func (m *LocalManager) tryAcquireLease(ctx context.Context, network string, config *Config, extIaddr ip.IP4, attrs *LeaseAttrs) (*Lease, error) {
leases, _, err := m.registry.getSubnets(ctx, network)
if err != nil {
return nil, err
}
// try to reuse a subnet if there's one that matches our IP
if l := findLeaseByIP(leases, extIaddr); l != nil {
// make sure the existing subnet is still within the configured network
if isSubnetConfigCompat(config, l.Subnet) {
log.Infof("Found lease (%v) for current IP (%v), reusing", l.Subnet, extIaddr)
ttl := time.Duration(0)
if !l.Expiration.IsZero() {
// Not a reservation
ttl = subnetTTL
}
exp, err := m.registry.updateSubnet(ctx, network, l.Subnet, attrs, ttl, 0)
if err != nil {
return nil, err
}
l.Attrs = *attrs
l.Expiration = exp
return l, nil
} else {
log.Infof("Found lease (%v) for current IP (%v) but not compatible with current config, deleting", l.Subnet, extIaddr)
if err := m.registry.deleteSubnet(ctx, network, l.Subnet); err != nil {
return nil, err
}
}
}
// no existing match, grab a new one
sn, err := m.allocateSubnet(config, leases)
if err != nil {
return nil, err
}
exp, err := m.registry.createSubnet(ctx, network, sn, attrs, subnetTTL)
switch {
case err == nil:
return &Lease{
Subnet: sn,
Attrs: *attrs,
Expiration: exp,
}, nil
case isErrEtcdNodeExist(err):
return nil, errTryAgain
default:
return nil, err
}
}
func (m *LocalManager) allocateSubnet(config *Config, leases []Lease) (ip.IP4Net, error) {
log.Infof("Picking subnet in range %s ... %s", config.SubnetMin, config.SubnetMax)
var bag []ip.IP4
sn := ip.IP4Net{IP: config.SubnetMin, PrefixLen: config.SubnetLen}
OuterLoop:
for ; sn.IP <= config.SubnetMax && len(bag) < 100; sn = sn.Next() {
for _, l := range leases {
if sn.Overlaps(l.Subnet) {
continue OuterLoop
}
}
bag = append(bag, sn.IP)
}
if len(bag) == 0 {
return ip.IP4Net{}, errors.New("out of subnets")
} else {
i := randInt(0, len(bag))
return ip.IP4Net{IP: bag[i], PrefixLen: config.SubnetLen}, nil
}
}
func (m *LocalManager) RevokeLease(ctx context.Context, network string, sn ip.IP4Net) error {
return m.registry.deleteSubnet(ctx, network, sn)
}
func (m *LocalManager) RenewLease(ctx context.Context, network string, lease *Lease) error {
exp, err := m.registry.updateSubnet(ctx, network, lease.Subnet, &lease.Attrs, subnetTTL, 0)
if err != nil {
return err
}
lease.Expiration = exp
return nil
}
func getNextIndex(cursor interface{}) (uint64, error) {
nextIndex := uint64(0)
if wc, ok := cursor.(watchCursor); ok {
nextIndex = wc.index
} else if s, ok := cursor.(string); ok {
var err error
nextIndex, err = strconv.ParseUint(s, 10, 64)
if err != nil {
return 0, fmt.Errorf("failed to parse cursor: %v", err)
}
} else {
return 0, fmt.Errorf("internal error: watch cursor is of unknown type")
}
return nextIndex, nil
}
func (m *LocalManager) leaseWatchReset(ctx context.Context, network string, sn ip.IP4Net) (LeaseWatchResult, error) {
l, index, err := m.registry.getSubnet(ctx, network, sn)
if err != nil {
return LeaseWatchResult{}, err
}
return LeaseWatchResult{
Snapshot: []Lease{*l},
Cursor: watchCursor{index},
}, nil
}
func (m *LocalManager) WatchLease(ctx context.Context, network string, sn ip.IP4Net, cursor interface{}) (LeaseWatchResult, error) {
if cursor == nil {
return m.leaseWatchReset(ctx, network, sn)
}
nextIndex, err := getNextIndex(cursor)
if err != nil {
return LeaseWatchResult{}, err
}
evt, index, err := m.registry.watchSubnet(ctx, network, nextIndex, sn)
switch {
case err == nil:
return LeaseWatchResult{
Events: []Event{evt},
Cursor: watchCursor{index},
}, nil
case isIndexTooSmall(err):
log.Warning("Watch of subnet leases failed because etcd index outside history window")
return m.leaseWatchReset(ctx, network, sn)
default:
return LeaseWatchResult{}, err
}
}
func (m *LocalManager) WatchLeases(ctx context.Context, network string, cursor interface{}) (LeaseWatchResult, error) {
if cursor == nil {
return m.leasesWatchReset(ctx, network)
}
nextIndex, err := getNextIndex(cursor)
if err != nil {
return LeaseWatchResult{}, err
}
evt, index, err := m.registry.watchSubnets(ctx, network, nextIndex)
switch {
case err == nil:
return LeaseWatchResult{
Events: []Event{evt},
Cursor: watchCursor{index},
}, nil
case isIndexTooSmall(err):
log.Warning("Watch of subnet leases failed because etcd index outside history window")
return m.leasesWatchReset(ctx, network)
default:
return LeaseWatchResult{}, err
}
}
func (m *LocalManager) WatchNetworks(ctx context.Context, cursor interface{}) (NetworkWatchResult, error) {
if cursor == nil {
return m.networkWatchReset(ctx)
}
nextIndex, err := getNextIndex(cursor)
if err != nil {
return NetworkWatchResult{}, err
}
for {
evt, index, err := m.registry.watchNetworks(ctx, nextIndex)
switch {
case err == nil:
return NetworkWatchResult{
Events: []Event{evt},
Cursor: watchCursor{index},
}, nil
case err == errTryAgain:
nextIndex = index
case isIndexTooSmall(err):
log.Warning("Watch of networks failed because etcd index outside history window")
return m.networkWatchReset(ctx)
default:
return NetworkWatchResult{}, err
}
}
}
func isIndexTooSmall(err error) bool {
etcdErr, ok := err.(etcd.Error)
return ok && etcdErr.Code == etcd.ErrorCodeEventIndexCleared
}
// leasesWatchReset is called when incremental lease watch failed and we need to grab a snapshot
func (m *LocalManager) leasesWatchReset(ctx context.Context, network string) (LeaseWatchResult, error) {
wr := LeaseWatchResult{}
leases, index, err := m.registry.getSubnets(ctx, network)
if err != nil {
return wr, fmt.Errorf("failed to retrieve subnet leases: %v", err)
}
wr.Cursor = watchCursor{index}
wr.Snapshot = leases
return wr, nil
}
// networkWatchReset is called when incremental network watch failed and we need to grab a snapshot
func (m *LocalManager) networkWatchReset(ctx context.Context) (NetworkWatchResult, error) {
wr := NetworkWatchResult{}
networks, index, err := m.registry.getNetworks(ctx)
if err != nil {
return wr, fmt.Errorf("failed to retrieve networks: %v", err)
}
wr.Cursor = watchCursor{index}
wr.Snapshot = networks
return wr, nil
}
func isSubnetConfigCompat(config *Config, sn ip.IP4Net) bool {
if sn.IP < config.SubnetMin || sn.IP > config.SubnetMax {
return false
}
return sn.PrefixLen == config.SubnetLen
}
func (m *LocalManager) tryAddReservation(ctx context.Context, network string, r *Reservation) error {
attrs := &LeaseAttrs{
PublicIP: r.PublicIP,
}
_, err := m.registry.createSubnet(ctx, network, r.Subnet, attrs, 0)
switch {
case err == nil:
return nil
case !isErrEtcdNodeExist(err):
return err
}
// This subnet or its reservation already exists.
// Get what's there and
// - if PublicIP matches, remove the TTL make it a reservation
// - otherwise, error out
sub, asof, err := m.registry.getSubnet(ctx, network, r.Subnet)
switch {
case err == nil:
case isErrEtcdKeyNotFound(err):
// Subnet just got expired or was deleted
return errTryAgain
default:
return err
}
if sub.Attrs.PublicIP != r.PublicIP {
// Subnet already taken
return ErrLeaseTaken
}
// remove TTL
_, err = m.registry.updateSubnet(ctx, network, r.Subnet, &sub.Attrs, 0, asof)
if isErrEtcdTestFailed(err) {
return errTryAgain
}
return err
}
func (m *LocalManager) AddReservation(ctx context.Context, network string, r *Reservation) error {
config, err := m.GetNetworkConfig(ctx, network)
if err != nil {
return err
}
if config.SubnetLen != r.Subnet.PrefixLen {
return fmt.Errorf("reservation subnet has mask incompatible with network config")
}
if !config.Network.Overlaps(r.Subnet) {
return fmt.Errorf("reservation subnet is outside of flannel network")
}
for i := 0; i < raceRetries; i++ {
err := m.tryAddReservation(ctx, network, r)
switch {
case err == nil:
return nil
case err == errTryAgain:
continue
default:
return err
}
}
return ErrNoMoreTries
}
func (m *LocalManager) tryRemoveReservation(ctx context.Context, network string, subnet ip.IP4Net) error {
sub, asof, err := m.registry.getSubnet(ctx, network, subnet)
if err != nil {
return err
}
// add back the TTL
_, err = m.registry.updateSubnet(ctx, network, subnet, &sub.Attrs, subnetTTL, asof)
if isErrEtcdTestFailed(err) {
return errTryAgain
}
return err
}
//RemoveReservation removes the subnet by setting TTL back to subnetTTL (24hours)
func (m *LocalManager) RemoveReservation(ctx context.Context, network string, subnet ip.IP4Net) error {
for i := 0; i < raceRetries; i++ {
err := m.tryRemoveReservation(ctx, network, subnet)
switch {
case err == nil:
return nil
case err == errTryAgain:
continue
default:
return err
}
}
return ErrNoMoreTries
}
func (m *LocalManager) ListReservations(ctx context.Context, network string) ([]Reservation, error) {
subnets, _, err := m.registry.getSubnets(ctx, network)
if err != nil {
return nil, err
}
rsvs := []Reservation{}
for _, sub := range subnets {
// Reservations don't have TTL and so no expiration
if !sub.Expiration.IsZero() {
continue
}
r := Reservation{
Subnet: sub.Subnet,
PublicIP: sub.Attrs.PublicIP,
}
rsvs = append(rsvs, r)
}
return rsvs, nil
}