@@ -18,6 +18,9 @@ package gstate
18
18
import (
19
19
"encoding/json"
20
20
"errors"
21
+ "strconv"
22
+ "strings"
23
+ "sync"
21
24
22
25
"github.com/jainvipin/bitset"
23
26
@@ -37,6 +40,9 @@ const (
37
40
vxlanLocalVlanRange = "1-4094"
38
41
)
39
42
43
+ //GlobalMutex used to syncronize global configuration changes
44
+ var GlobalMutex sync.Mutex
45
+
40
46
// AutoParams specifies various parameters for the auto allocation and resource
41
47
// management for networks and endpoints. This allows for hands-free
42
48
// allocation of resources without having to specify these each time these
@@ -149,15 +155,15 @@ func (g *Oper) Clear() error {
149
155
return g .StateDriver .ClearState (key )
150
156
}
151
157
152
- func (gc * Cfg ) initVXLANBitset (vxlans string ) (* resources.AutoVXLANCfgResource , uint , error ) {
158
+ func (gc * Cfg ) initVXLANBitset (vxlans string ) (* resources.AutoVXLANCfgResource , error ) {
153
159
154
160
vxlanRsrcCfg := & resources.AutoVXLANCfgResource {}
155
161
vxlanRsrcCfg .VXLANs = netutils .CreateBitset (14 )
156
162
157
163
vxlanRange := netutils.TagRange {}
158
164
vxlanRanges , err := netutils .ParseTagRanges (vxlans , "vxlan" )
159
165
if err != nil {
160
- return nil , 0 , err
166
+ return nil , err
161
167
}
162
168
// XXX: REVISIT, we seem to accept one contiguous vxlan range
163
169
vxlanRange = vxlanRanges [0 ]
@@ -169,11 +175,12 @@ func (gc *Cfg) initVXLANBitset(vxlans string) (*resources.AutoVXLANCfgResource,
169
175
170
176
// Initialize local vlan bitset
171
177
vxlanRsrcCfg .LocalVLANs , err = gc .initVLANBitset (vxlanLocalVlanRange )
178
+ vxlanRsrcCfg .FreeVXLANsStart = freeVXLANsStart
172
179
if err != nil {
173
- return nil , 0 , err
180
+ return nil , err
174
181
}
175
182
176
- return vxlanRsrcCfg , freeVXLANsStart , nil
183
+ return vxlanRsrcCfg , nil
177
184
}
178
185
179
186
// GetVxlansInUse gets the vlans that are currently in use
@@ -339,11 +346,10 @@ func (gc *Cfg) Process(res string) error {
339
346
}
340
347
}
341
348
// Only define a vxlan resource if a valid range was specified
342
- var freeVXLANsStart uint
343
349
if res == "vxlan" {
350
+ var vxlanRsrcCfg * resources.AutoVXLANCfgResource
344
351
if gc .Auto .VXLANs != "" {
345
- var vxlanRsrcCfg * resources.AutoVXLANCfgResource
346
- vxlanRsrcCfg , freeVXLANsStart , err = gc .initVXLANBitset (gc .Auto .VXLANs )
352
+ vxlanRsrcCfg , err = gc .initVXLANBitset (gc .Auto .VXLANs )
347
353
if err != nil {
348
354
return err
349
355
}
@@ -353,7 +359,7 @@ func (gc *Cfg) Process(res string) error {
353
359
}
354
360
}
355
361
356
- g := & Oper {FreeVXLANsStart : freeVXLANsStart }
362
+ g := & Oper {FreeVXLANsStart : vxlanRsrcCfg . FreeVXLANsStart }
357
363
358
364
g .StateDriver = gc .StateDriver
359
365
err = g .Write ()
@@ -381,7 +387,6 @@ func (gc *Cfg) DeleteResources(res string) error {
381
387
log .Errorf ("Error deleting vlan resource. Err: %v" , err )
382
388
}
383
389
} else if res == "vxlan" {
384
-
385
390
err = ra .UndefineResource ("global" , resources .AutoVXLANResource )
386
391
if err != nil {
387
392
log .Errorf ("Error deleting vxlan resource. Err: %v" , err )
@@ -390,6 +395,53 @@ func (gc *Cfg) DeleteResources(res string) error {
390
395
return err
391
396
}
392
397
398
+ // UpdateResources deletes associated resources
399
+ func (gc * Cfg ) UpdateResources (res string ) error {
400
+ log .Infof ("Received update resource for res %s" , res )
401
+ tempRm , err := resources .GetStateResourceManager ()
402
+ if err != nil {
403
+ return err
404
+ }
405
+
406
+ ra := core .ResourceManager (tempRm )
407
+
408
+ err = gc .checkErrors (res )
409
+ if err != nil {
410
+ return core .Errorf ("process failed on error checks %s" , err )
411
+ }
412
+
413
+ if res == "vlan" {
414
+ var vlanRsrcCfg * bitset.BitSet
415
+ vlanRsrcCfg , err = gc .initVLANBitset (gc .Auto .VLANs )
416
+ if err != nil {
417
+ return err
418
+ }
419
+ err = ra .RedefineResource ("global" , resources .AutoVLANResource , vlanRsrcCfg )
420
+ if err != nil {
421
+ log .Errorf ("Error deleting vlan resource. Err: %v" , err )
422
+ }
423
+ } else if res == "vxlan" {
424
+ var vxlanRsrcCfg * resources.AutoVXLANCfgResource
425
+ vxlanRsrcCfg , err = gc .initVXLANBitset (gc .Auto .VXLANs )
426
+ if err != nil {
427
+ return err
428
+ }
429
+ err = ra .RedefineResource ("global" , resources .AutoVXLANResource , vxlanRsrcCfg )
430
+ if err != nil {
431
+ log .Errorf ("Error deleting vxlan resource. Err: %v" , err )
432
+ }
433
+ g := & Oper {FreeVXLANsStart : vxlanRsrcCfg .FreeVXLANsStart }
434
+
435
+ g .StateDriver = gc .StateDriver
436
+ err = g .Write ()
437
+ if err != nil {
438
+ log .Errorf ("error '%s' updating global oper state %v \n " , err , g )
439
+ return err
440
+ }
441
+ }
442
+ return err
443
+ }
444
+
393
445
// AssignDefaultNetwork assigns a default network for a tenant based on the configuration
394
446
// in case configuration is absent it uses the provided network name to be the default
395
447
// network. It records the default network in oper state (derived or configured)
@@ -436,3 +488,40 @@ func (gc *Cfg) UnassignNetwork(networkName string) error {
436
488
437
489
return nil
438
490
}
491
+
492
+ //CheckInBitRange to check if range includes inuse vlans
493
+ func (gc * Cfg ) CheckInBitRange (ranges , inUse , pktTagType string ) bool {
494
+
495
+ tags := strings .Split (inUse , "," )
496
+
497
+ if len (inUse ) == 0 {
498
+ return true
499
+ }
500
+ minUsed := 0
501
+ maxUsed := 0
502
+ if strings .Contains (tags [0 ], "-" ) {
503
+ minUsed , _ = strconv .Atoi (strings .Split (tags [0 ], "-" )[0 ])
504
+ maxUsed , _ = strconv .Atoi (strings .Split (tags [0 ], "-" )[1 ])
505
+ } else {
506
+ minUsed , _ = strconv .Atoi (tags [0 ])
507
+ maxUsed = minUsed
508
+ }
509
+
510
+ if len (inUse ) > 1 {
511
+ if strings .Contains (tags [len (tags )- 1 ], "-" ) {
512
+ maxUsed , _ = strconv .Atoi (strings .Split (tags [len (tags )- 1 ], "-" )[1 ])
513
+ } else {
514
+ maxUsed , _ = strconv .Atoi (strings .TrimSpace (tags [len (tags )- 1 ]))
515
+ }
516
+ }
517
+
518
+ r , err := netutils .ParseTagRanges (ranges , pktTagType )
519
+ if err != nil {
520
+ return false
521
+ }
522
+
523
+ if r [0 ].Min > minUsed || r [0 ].Max < maxUsed {
524
+ return false
525
+ }
526
+ return true
527
+ }
0 commit comments