@@ -1298,21 +1298,37 @@ func (ac *APIController) PolicyDelete(policy *contivModel.Policy) error {
1298
1298
return nil
1299
1299
}
1300
1300
1301
- func syncAppProfile (policy * contivModel.Policy ) {
1302
- // find all appProfiles that have an association
1301
+ func getAffectedProfs (policy * contivModel.Policy ,
1302
+ matchEpg * contivModel. EndpointGroup ) map [ string ] bool {
1303
1303
profMap := make (map [string ]bool )
1304
-
1304
+ // find all appProfiles that have an association via policy
1305
1305
for epg := range policy .LinkSets .EndpointGroups {
1306
1306
epgObj := contivModel .FindEndpointGroup (epg )
1307
1307
if epgObj == nil {
1308
1308
log .Warnf ("syncAppProfile epg %s not found" , epg )
1309
1309
} else {
1310
1310
prof := epgObj .Links .AppProfile .ObjKey
1311
+ if prof != "" {
1312
+ profMap [prof ] = true
1313
+ log .Infof ("syncAppProfile epg %s ==> prof %s" , epg , prof )
1314
+ }
1315
+ }
1316
+ }
1317
+
1318
+ // add any app-profile associated via a matching epg
1319
+ if matchEpg != nil {
1320
+ prof := matchEpg .Links .AppProfile .ObjKey
1321
+ if prof != "" {
1311
1322
profMap [prof ] = true
1312
- log .Infof ("syncAppProfile epg %s ==> prof %s" , epg , prof )
1323
+ log .Infof ("syncAppProfile epg %s ==> prof %s" ,
1324
+ matchEpg , prof )
1313
1325
}
1314
1326
}
1315
1327
1328
+ return profMap
1329
+ }
1330
+
1331
+ func syncAppProfile (profMap map [string ]bool ) {
1316
1332
for ap := range profMap {
1317
1333
profObj := contivModel .FindAppProfile (ap )
1318
1334
if profObj == nil {
@@ -1328,6 +1344,8 @@ func syncAppProfile(policy *contivModel.Policy) {
1328
1344
// RuleCreate Creates the rule within a policy
1329
1345
func (ac * APIController ) RuleCreate (rule * contivModel.Rule ) error {
1330
1346
log .Infof ("Received RuleCreate: %+v" , rule )
1347
+ var epg * contivModel.EndpointGroup
1348
+ epg = nil
1331
1349
1332
1350
// verify parameter values
1333
1351
if rule .Direction == "in" {
@@ -1359,7 +1377,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1359
1377
if rule .FromEndpointGroup != "" {
1360
1378
epgKey := rule .TenantName + ":" + rule .FromEndpointGroup
1361
1379
// find the endpoint group
1362
- epg : = contivModel .FindEndpointGroup (epgKey )
1380
+ epg = contivModel .FindEndpointGroup (epgKey )
1363
1381
if epg == nil {
1364
1382
log .Errorf ("Error finding endpoint group %s" , epgKey )
1365
1383
return errors .New ("endpoint group not found" )
@@ -1368,7 +1386,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1368
1386
epgKey := rule .TenantName + ":" + rule .ToEndpointGroup
1369
1387
1370
1388
// find the endpoint group
1371
- epg : = contivModel .FindEndpointGroup (epgKey )
1389
+ epg = contivModel .FindEndpointGroup (epgKey )
1372
1390
if epg == nil {
1373
1391
log .Errorf ("Error finding endpoint group %s" , epgKey )
1374
1392
return errors .New ("endpoint group not found" )
@@ -1415,8 +1433,19 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1415
1433
return err
1416
1434
}
1417
1435
1436
+ // link the rule to epg and vice versa
1437
+ if epg != nil {
1438
+ modeldb .AddLinkSet (& epg .LinkSets .MatchRules , rule )
1439
+ modeldb .AddLink (& rule .Links .MatchEndpointGroup , epg )
1440
+ err = epg .Write ()
1441
+ if err != nil {
1442
+ return err
1443
+ }
1444
+ }
1445
+
1418
1446
// Update any affected app profiles
1419
- syncAppProfile (policy )
1447
+ pMap := getAffectedProfs (policy , epg )
1448
+ syncAppProfile (pMap )
1420
1449
1421
1450
return nil
1422
1451
}
@@ -1429,6 +1458,9 @@ func (ac *APIController) RuleUpdate(rule, params *contivModel.Rule) error {
1429
1458
1430
1459
// RuleDelete deletes the rule within a policy
1431
1460
func (ac * APIController ) RuleDelete (rule * contivModel.Rule ) error {
1461
+ var epg * contivModel.EndpointGroup
1462
+
1463
+ epg = nil
1432
1464
log .Infof ("Received RuleDelete: %+v" , rule )
1433
1465
1434
1466
policyKey := GetpolicyKey (rule .TenantName , rule .PolicyName )
@@ -1447,6 +1479,15 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1447
1479
return err
1448
1480
}
1449
1481
1482
+ // unlink the rule from matching epg
1483
+ epgKey := rule .Links .MatchEndpointGroup .ObjKey
1484
+ if epgKey != "" {
1485
+ epg = contivModel .FindEndpointGroup (epgKey )
1486
+ if epg != nil {
1487
+ modeldb .RemoveLinkSet (& epg .LinkSets .MatchRules , rule )
1488
+ }
1489
+ }
1490
+
1450
1491
// Trigger policyDB Update
1451
1492
err = master .PolicyDelRule (policy , rule )
1452
1493
if err != nil {
@@ -1455,7 +1496,8 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1455
1496
}
1456
1497
1457
1498
// Update any affected app profiles
1458
- syncAppProfile (policy )
1499
+ pMap := getAffectedProfs (policy , epg )
1500
+ syncAppProfile (pMap )
1459
1501
1460
1502
return nil
1461
1503
}
0 commit comments