@@ -22,6 +22,7 @@ import (
22
22
"github.com/contiv/netplugin/netmaster/intent"
23
23
"github.com/contiv/netplugin/netmaster/master"
24
24
"github.com/contiv/netplugin/utils"
25
+ "github.com/contiv/netplugin/utils/extContracts"
25
26
"github.com/contiv/objdb/modeldb"
26
27
"strconv"
27
28
"strings"
@@ -57,9 +58,8 @@ func NewAPIController(router *mux.Router, storeURL string) *APIController {
57
58
contivModel .RegisterRuleCallbacks (ctrler )
58
59
contivModel .RegisterTenantCallbacks (ctrler )
59
60
contivModel .RegisterBgpCallbacks (ctrler )
60
- contivModel .RegisterBgpCallbacks (ctrler )
61
61
contivModel .RegisterServiceLBCallbacks (ctrler )
62
-
62
+ contivModel . RegisterExtContractsGroupCallbacks ( ctrler )
63
63
// Register routes
64
64
contivModel .AddRoutes (router )
65
65
@@ -343,6 +343,12 @@ func endpointGroupCleanup(endpointGroup *contivModel.EndpointGroup) {
343
343
policy .Write ()
344
344
}
345
345
346
+ // Cleanup any external contracts
347
+ err = extContracts .CleanupExternalContracts (endpointGroup )
348
+ if err != nil {
349
+ return err
350
+ }
351
+
346
352
// Remove the endpoint group from network and tenant link sets.
347
353
nwObjKey := endpointGroup .TenantName + ":" + endpointGroup .NetworkName
348
354
network := contivModel .FindNetwork (nwObjKey )
@@ -360,6 +366,107 @@ func endpointGroupCleanup(endpointGroup *contivModel.EndpointGroup) {
360
366
// FIXME: hack to allocate unique endpoint group ids
361
367
var globalEpgID = 1
362
368
369
+ /*
370
+ // Some utility functions to work with the external contracts
371
+ func extContractsGrpDeregister(epg *contivModel.EndpointGroup, contractsGrp *contivModel.ExtContractsGroup, contractType string) error {
372
+ if contractsGrp == nil {
373
+ errStr := fmt.Sprintf("%s External contracts group not found", contractType)
374
+ log.Errorf(errStr)
375
+ return core.Errorf(errStr)
376
+ }
377
+
378
+ modeldb.RemoveLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
379
+ if contractType == "provided" {
380
+ modeldb.RemoveLinkSet(&epg.LinkSets.ProvExtContractsGrps, contractsGrp)
381
+ } else if contractType == "consumed" {
382
+ modeldb.RemoveLinkSet(&epg.LinkSets.ConsExtContractsGrps, contractsGrp)
383
+ }
384
+ // Links broken, update the contracts group object.
385
+ err := contractsGrp.Write()
386
+ if err != nil {
387
+ return err
388
+ }
389
+
390
+ return nil
391
+ }
392
+
393
+ func extContractsGrpValidateAndRegister(epg *contivModel.EndpointGroup, contractsGrp *contivModel.ExtContractsGroup, contractType string) error {
394
+ if contractsGrp == nil {
395
+ errStr := fmt.Sprintf("%s External contracts group not found", contractType)
396
+ log.Errorf(errStr)
397
+ return core.Errorf(errStr)
398
+ }
399
+
400
+ if strings.ToLower(contractsGrp.ContractsType) != contractType {
401
+ errStr := fmt.Sprintf("Incorrect type for contract group: %v", contractsGrp)
402
+ log.Errorf(errStr)
403
+ return core.Errorf(errStr)
404
+ }
405
+
406
+ // Establish the necessary links.
407
+ // TBD: Error handling. In the loop, we are bailing out
408
+ // on failure. How do we take care of already established
409
+ // links?
410
+ modeldb.AddLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
411
+ if contractType == "provided" {
412
+ modeldb.AddLinkSet(&epg.LinkSets.ProvExtContractsGrps, contractsGrp)
413
+ } else if contractType == "consumed" {
414
+ modeldb.AddLinkSet(&epg.LinkSets.ConsExtContractsGrps, contractsGrp)
415
+ }
416
+
417
+ // Links made, write the policy set object.
418
+ err := contractsGrp.Write()
419
+ if err != nil {
420
+ return err
421
+ }
422
+
423
+ return nil
424
+ }
425
+
426
+ func cleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
427
+ // Cleanup consumed external contracts
428
+ for _, consExtContractsGrp := range endpointGroup.ConsExtContractsGrps {
429
+ contractsGrp := contivModel.FindExtContractsGroup(consExtContractsGrp)
430
+ err = extContractsGrpDeregister(endpointGroup, contractsGrp, "consumed")
431
+ if err != nil {
432
+ return err
433
+ }
434
+ }
435
+
436
+ // Cleanup provided external contracts
437
+ for _, provExtContractsGrp := range endpointGroup.ProvExtContractsGrps {
438
+ contractsGrp := contivModel.FindExtContractsGroup(provExtContractsGrp)
439
+ err = extContractsGrpDeregister(endpointGroup, contractsGrp, "provided")
440
+ if err != nil {
441
+ return err
442
+ }
443
+ }
444
+
445
+ return nil
446
+ }
447
+
448
+ func setupExternalContracts(endpointGroup *contivModel.EndpointGroup, consContractsGrps, provContractsGrps string[]) error {
449
+ // Validate presence and register consumed external contracts
450
+ for _, consExtContractsGrp := range consContractsGrps {
451
+ contractsGrp := contivModel.FindExtContractsGroup(consExtContractsGrp)
452
+ err = extContractsGrpValidateAndRegister(endpointGroup, contractsGrp, "consumed")
453
+ if err != nil {
454
+ return err
455
+ }
456
+ }
457
+
458
+ // Validate presence and register provided external contracts
459
+ for _, provExtContractsGrp := range provContractsGrps {
460
+ contractsGrp := contivModel.FindExtContractsGroup(provExtContractsGrp)
461
+ err = extContractsGrpValidateAndRegister(endpointGroup, contractsGrp, "provided")
462
+ if err != nil {
463
+ return err
464
+ }
465
+ }
466
+
467
+ return nil
468
+ }
469
+ */
363
470
// EndpointGroupCreate creates end point group
364
471
func (ac * APIController ) EndpointGroupCreate (endpointGroup * contivModel.EndpointGroup ) error {
365
472
log .Infof ("Received EndpointGroupCreate: %+v" , endpointGroup )
@@ -391,6 +498,12 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
391
498
return err
392
499
}
393
500
501
+ // Setup external contracts this EPG might have.
502
+ err = extContracts .SetupExternalContracts (endpointGroup , endpointGroup .ConsExtContractsGrps , endpointGroup .ProvExtContractsGrps )
503
+ if err != nil {
504
+ return err
505
+ }
506
+
394
507
// for each policy create an epg policy Instance
395
508
for _ , policyName := range endpointGroup .Policies {
396
509
policyKey := endpointGroup .TenantName + ":" + policyName
@@ -512,10 +625,27 @@ func (ac *APIController) EndpointGroupUpdate(endpointGroup, params *contivModel.
512
625
}
513
626
}
514
627
}
515
-
516
628
// Update the policy list
517
629
endpointGroup .Policies = params .Policies
518
630
631
+ // For the external contracts, we can keep the update simple. Remove
632
+ // all that we have now, and update the epg with the new list.
633
+ // Step 1: Cleanup existing external contracts.
634
+ err := extContracts .CleanupExternalContracts (endpointGroup )
635
+ if err != nil {
636
+ return err
637
+ }
638
+ // Step 2: Add contracts from the update.
639
+ // Consumed contracts
640
+ err = extContracts .SetupExternalContracts (endpointGroup , params .ConsExtContractsGrps , params .ProvExtContractsGrps )
641
+ if err != nil {
642
+ return err
643
+ }
644
+
645
+ // Update the epg itself with the new contracts groups.
646
+ endpointGroup .ConsExtContractsGrps = params .ConsExtContractsGrps
647
+ endpointGroup .ProvExtContractsGrps = params .ProvExtContractsGrps
648
+
519
649
// if there is an associated app profiles, update that as well
520
650
profKey := endpointGroup .Links .AppProfile .ObjKey
521
651
profObj := contivModel .FindAppProfile (profKey )
@@ -1135,3 +1265,40 @@ func validatePorts(ports []string) bool {
1135
1265
}
1136
1266
return true
1137
1267
}
1268
+
1269
+ func isExtContractsGroupUsed (contractsGroup * contivModel.ExtContractsGroup ) bool {
1270
+ if len (contractsGroup .LinkSets .EndpointGroups ) > 0 {
1271
+ return true
1272
+ }
1273
+
1274
+ return false
1275
+ }
1276
+
1277
+ // ExtContractsGroupCreate creates a new group of external contracts
1278
+ func (ac * APIController ) ExtContractsGroupCreate (contractsGroup * contivModel.ExtContractsGroup ) error {
1279
+ log .Infof ("Received ExtContractsGroupCreate: %+v" , contractsGroup )
1280
+
1281
+ return nil
1282
+ }
1283
+
1284
+ // ExtContractsGroupUpdate updates an existing group of contract sets
1285
+ func (ac * APIController ) ExtContractsGroupUpdate (contractsGroup , params * contivModel.ExtContractsGroup ) error {
1286
+ log .Infof ("Received ExtContractsGroupUpdate: %+v, params: %+v" , contractsGroup , params )
1287
+ log .Errorf ("Error: external contracts update not supported: %s" , contractsGroup .ContractsGroupName )
1288
+
1289
+ return core .Errorf ("external contracts update not supported" )
1290
+ }
1291
+
1292
+ // ExtContractsGroupDelete deletes an existing external contracts group
1293
+ func (ac * APIController ) ExtContractsGroupDelete (contractsGroup * contivModel.ExtContractsGroup ) error {
1294
+ log .Infof ("Received ExtContractsGroupDelete: %+v" , contractsGroup )
1295
+
1296
+ // At this moment, we let the external contracts to be deleted only
1297
+ // if there are no consumers of this external contracts group
1298
+ if isExtContractsGroupUsed (contractsGroup ) == true {
1299
+ log .Errorf ("Error: External contracts groups is being used: %s" , contractsGroup .ContractsGroupName )
1300
+ return core .Errorf ("External contracts group is in-use" )
1301
+ }
1302
+
1303
+ return nil
1304
+ }
0 commit comments