@@ -1304,21 +1304,37 @@ func (ac *APIController) PolicyDelete(policy *contivModel.Policy) error {
1304
1304
return nil
1305
1305
}
1306
1306
1307
- func syncAppProfile (policy * contivModel.Policy ) {
1308
- // find all appProfiles that have an association
1307
+ func getAffectedProfs (policy * contivModel.Policy ,
1308
+ matchEpg * contivModel. EndpointGroup ) map [ string ] bool {
1309
1309
profMap := make (map [string ]bool )
1310
-
1310
+ // find all appProfiles that have an association via policy
1311
1311
for epg := range policy .LinkSets .EndpointGroups {
1312
1312
epgObj := contivModel .FindEndpointGroup (epg )
1313
1313
if epgObj == nil {
1314
1314
log .Warnf ("syncAppProfile epg %s not found" , epg )
1315
1315
} else {
1316
1316
prof := epgObj .Links .AppProfile .ObjKey
1317
+ if prof != "" {
1318
+ profMap [prof ] = true
1319
+ log .Infof ("syncAppProfile epg %s ==> prof %s" , epg , prof )
1320
+ }
1321
+ }
1322
+ }
1323
+
1324
+ // add any app-profile associated via a matching epg
1325
+ if matchEpg != nil {
1326
+ prof := matchEpg .Links .AppProfile .ObjKey
1327
+ if prof != "" {
1317
1328
profMap [prof ] = true
1318
- log .Infof ("syncAppProfile epg %s ==> prof %s" , epg , prof )
1329
+ log .Infof ("syncAppProfile epg %s ==> prof %s" ,
1330
+ matchEpg , prof )
1319
1331
}
1320
1332
}
1321
1333
1334
+ return profMap
1335
+ }
1336
+
1337
+ func syncAppProfile (profMap map [string ]bool ) {
1322
1338
for ap := range profMap {
1323
1339
profObj := contivModel .FindAppProfile (ap )
1324
1340
if profObj == nil {
@@ -1334,6 +1350,8 @@ func syncAppProfile(policy *contivModel.Policy) {
1334
1350
// RuleCreate Creates the rule within a policy
1335
1351
func (ac * APIController ) RuleCreate (rule * contivModel.Rule ) error {
1336
1352
log .Infof ("Received RuleCreate: %+v" , rule )
1353
+ var epg * contivModel.EndpointGroup
1354
+ epg = nil
1337
1355
1338
1356
// verify parameter values
1339
1357
if rule .Direction == "in" {
@@ -1365,7 +1383,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1365
1383
if rule .FromEndpointGroup != "" {
1366
1384
epgKey := rule .TenantName + ":" + rule .FromEndpointGroup
1367
1385
// find the endpoint group
1368
- epg : = contivModel .FindEndpointGroup (epgKey )
1386
+ epg = contivModel .FindEndpointGroup (epgKey )
1369
1387
if epg == nil {
1370
1388
log .Errorf ("Error finding endpoint group %s" , epgKey )
1371
1389
return errors .New ("endpoint group not found" )
@@ -1374,7 +1392,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1374
1392
epgKey := rule .TenantName + ":" + rule .ToEndpointGroup
1375
1393
1376
1394
// find the endpoint group
1377
- epg : = contivModel .FindEndpointGroup (epgKey )
1395
+ epg = contivModel .FindEndpointGroup (epgKey )
1378
1396
if epg == nil {
1379
1397
log .Errorf ("Error finding endpoint group %s" , epgKey )
1380
1398
return errors .New ("endpoint group not found" )
@@ -1421,8 +1439,19 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
1421
1439
return err
1422
1440
}
1423
1441
1442
+ // link the rule to epg and vice versa
1443
+ if epg != nil {
1444
+ modeldb .AddLinkSet (& epg .LinkSets .MatchRules , rule )
1445
+ modeldb .AddLink (& rule .Links .MatchEndpointGroup , epg )
1446
+ err = epg .Write ()
1447
+ if err != nil {
1448
+ return err
1449
+ }
1450
+ }
1451
+
1424
1452
// Update any affected app profiles
1425
- syncAppProfile (policy )
1453
+ pMap := getAffectedProfs (policy , epg )
1454
+ syncAppProfile (pMap )
1426
1455
1427
1456
return nil
1428
1457
}
@@ -1435,6 +1464,9 @@ func (ac *APIController) RuleUpdate(rule, params *contivModel.Rule) error {
1435
1464
1436
1465
// RuleDelete deletes the rule within a policy
1437
1466
func (ac * APIController ) RuleDelete (rule * contivModel.Rule ) error {
1467
+ var epg * contivModel.EndpointGroup
1468
+
1469
+ epg = nil
1438
1470
log .Infof ("Received RuleDelete: %+v" , rule )
1439
1471
1440
1472
policyKey := GetpolicyKey (rule .TenantName , rule .PolicyName )
@@ -1453,6 +1485,15 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1453
1485
return err
1454
1486
}
1455
1487
1488
+ // unlink the rule from matching epg
1489
+ epgKey := rule .Links .MatchEndpointGroup .ObjKey
1490
+ if epgKey != "" {
1491
+ epg = contivModel .FindEndpointGroup (epgKey )
1492
+ if epg != nil {
1493
+ modeldb .RemoveLinkSet (& epg .LinkSets .MatchRules , rule )
1494
+ }
1495
+ }
1496
+
1456
1497
// Trigger policyDB Update
1457
1498
err = master .PolicyDelRule (policy , rule )
1458
1499
if err != nil {
@@ -1461,7 +1502,8 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1461
1502
}
1462
1503
1463
1504
// Update any affected app profiles
1464
- syncAppProfile (policy )
1505
+ pMap := getAffectedProfs (policy , epg )
1506
+ syncAppProfile (pMap )
1465
1507
1466
1508
return nil
1467
1509
}
0 commit comments