Skip to content

Commit 7fb6853

Browse files
author
jojimt
authored
Merge pull request #569 from jojimt/profile-cotracts
Support inter-profile contracts with ACI
2 parents 2f46153 + a485d0b commit 7fb6853

File tree

6 files changed

+488
-77
lines changed

6 files changed

+488
-77
lines changed

Makefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,17 @@ host-unit-test-coverage-detail:
204204
@echo dev: running unit tests...
205205
cd $(GOPATH)/src/github.com/contiv/netplugin && sudo -E PATH=$(PATH) scripts/unittests --coverage-detail
206206

207-
host-integ-test: host-cleanup
207+
host-integ-test: host-cleanup start-aci-gw
208208
@echo dev: running integration tests...
209209
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vlan -fwd-mode bridge
210210
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vxlan -fwd-mode bridge
211211
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vxlan -fwd-mode routing
212+
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -check.f "AppProfile" -encap vlan -fwd-mode bridge --fabric-mode aci
213+
214+
start-aci-gw:
215+
@echo dev: starting aci gw...
216+
docker pull contiv/aci-gw:integ_test
217+
docker run --net=host -itd -e "APIC_URL=SANITY" -e "APIC_USERNAME=IGNORE" -e "APIC_PASSWORD=IGNORE" -e "APIC_LEAF_NODE=IGNORE" -e "APIC_PHYS_DOMAIN=IGNORE" --name=contiv-aci-gw contiv/aci-gw:integ_test
212218

213219
host-cleanup:
214220
@echo dev: cleaning up services...

netmaster/objApi/apiController.go

+50-8
Original file line numberDiff line numberDiff line change
@@ -1304,21 +1304,37 @@ func (ac *APIController) PolicyDelete(policy *contivModel.Policy) error {
13041304
return nil
13051305
}
13061306

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 {
13091309
profMap := make(map[string]bool)
1310-
1310+
// find all appProfiles that have an association via policy
13111311
for epg := range policy.LinkSets.EndpointGroups {
13121312
epgObj := contivModel.FindEndpointGroup(epg)
13131313
if epgObj == nil {
13141314
log.Warnf("syncAppProfile epg %s not found", epg)
13151315
} else {
13161316
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 != "" {
13171328
profMap[prof] = true
1318-
log.Infof("syncAppProfile epg %s ==> prof %s", epg, prof)
1329+
log.Infof("syncAppProfile epg %s ==> prof %s",
1330+
matchEpg, prof)
13191331
}
13201332
}
13211333

1334+
return profMap
1335+
}
1336+
1337+
func syncAppProfile(profMap map[string]bool) {
13221338
for ap := range profMap {
13231339
profObj := contivModel.FindAppProfile(ap)
13241340
if profObj == nil {
@@ -1334,6 +1350,8 @@ func syncAppProfile(policy *contivModel.Policy) {
13341350
// RuleCreate Creates the rule within a policy
13351351
func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13361352
log.Infof("Received RuleCreate: %+v", rule)
1353+
var epg *contivModel.EndpointGroup
1354+
epg = nil
13371355

13381356
// verify parameter values
13391357
if rule.Direction == "in" {
@@ -1365,7 +1383,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13651383
if rule.FromEndpointGroup != "" {
13661384
epgKey := rule.TenantName + ":" + rule.FromEndpointGroup
13671385
// find the endpoint group
1368-
epg := contivModel.FindEndpointGroup(epgKey)
1386+
epg = contivModel.FindEndpointGroup(epgKey)
13691387
if epg == nil {
13701388
log.Errorf("Error finding endpoint group %s", epgKey)
13711389
return errors.New("endpoint group not found")
@@ -1374,7 +1392,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13741392
epgKey := rule.TenantName + ":" + rule.ToEndpointGroup
13751393

13761394
// find the endpoint group
1377-
epg := contivModel.FindEndpointGroup(epgKey)
1395+
epg = contivModel.FindEndpointGroup(epgKey)
13781396
if epg == nil {
13791397
log.Errorf("Error finding endpoint group %s", epgKey)
13801398
return errors.New("endpoint group not found")
@@ -1421,8 +1439,19 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
14211439
return err
14221440
}
14231441

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+
14241452
// Update any affected app profiles
1425-
syncAppProfile(policy)
1453+
pMap := getAffectedProfs(policy, epg)
1454+
syncAppProfile(pMap)
14261455

14271456
return nil
14281457
}
@@ -1435,6 +1464,9 @@ func (ac *APIController) RuleUpdate(rule, params *contivModel.Rule) error {
14351464

14361465
// RuleDelete deletes the rule within a policy
14371466
func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1467+
var epg *contivModel.EndpointGroup
1468+
1469+
epg = nil
14381470
log.Infof("Received RuleDelete: %+v", rule)
14391471

14401472
policyKey := GetpolicyKey(rule.TenantName, rule.PolicyName)
@@ -1453,6 +1485,15 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
14531485
return err
14541486
}
14551487

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+
14561497
// Trigger policyDB Update
14571498
err = master.PolicyDelRule(policy, rule)
14581499
if err != nil {
@@ -1461,7 +1502,8 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
14611502
}
14621503

14631504
// Update any affected app profiles
1464-
syncAppProfile(policy)
1505+
pMap := getAffectedProfs(policy, epg)
1506+
syncAppProfile(pMap)
14651507

14661508
return nil
14671509
}

0 commit comments

Comments
 (0)