Skip to content

Commit a485d0b

Browse files
author
jojimt
committed
Support inter-profile aci contracts
1 parent b5fd3d3 commit a485d0b

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
@@ -201,11 +201,17 @@ host-unit-test-coverage-detail:
201201
@echo dev: running unit tests...
202202
cd $(GOPATH)/src/github.com/contiv/netplugin && sudo -E PATH=$(PATH) scripts/unittests --coverage-detail
203203

204-
host-integ-test: host-cleanup
204+
host-integ-test: host-cleanup start-aci-gw
205205
@echo dev: running integration tests...
206206
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vlan -fwd-mode bridge
207207
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vxlan -fwd-mode bridge
208208
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -encap vxlan -fwd-mode routing
209+
sudo -E /usr/local/go/bin/go test -v ./test/integration/ -check.v -check.f "AppProfile" -encap vlan -fwd-mode bridge --fabric-mode aci
210+
211+
start-aci-gw:
212+
@echo dev: starting aci gw...
213+
docker pull contiv/aci-gw:integ_test
214+
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
209215

210216
host-cleanup:
211217
@echo dev: cleaning up services...

netmaster/objApi/apiController.go

+50-8
Original file line numberDiff line numberDiff line change
@@ -1298,21 +1298,37 @@ func (ac *APIController) PolicyDelete(policy *contivModel.Policy) error {
12981298
return nil
12991299
}
13001300

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 {
13031303
profMap := make(map[string]bool)
1304-
1304+
// find all appProfiles that have an association via policy
13051305
for epg := range policy.LinkSets.EndpointGroups {
13061306
epgObj := contivModel.FindEndpointGroup(epg)
13071307
if epgObj == nil {
13081308
log.Warnf("syncAppProfile epg %s not found", epg)
13091309
} else {
13101310
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 != "" {
13111322
profMap[prof] = true
1312-
log.Infof("syncAppProfile epg %s ==> prof %s", epg, prof)
1323+
log.Infof("syncAppProfile epg %s ==> prof %s",
1324+
matchEpg, prof)
13131325
}
13141326
}
13151327

1328+
return profMap
1329+
}
1330+
1331+
func syncAppProfile(profMap map[string]bool) {
13161332
for ap := range profMap {
13171333
profObj := contivModel.FindAppProfile(ap)
13181334
if profObj == nil {
@@ -1328,6 +1344,8 @@ func syncAppProfile(policy *contivModel.Policy) {
13281344
// RuleCreate Creates the rule within a policy
13291345
func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13301346
log.Infof("Received RuleCreate: %+v", rule)
1347+
var epg *contivModel.EndpointGroup
1348+
epg = nil
13311349

13321350
// verify parameter values
13331351
if rule.Direction == "in" {
@@ -1359,7 +1377,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13591377
if rule.FromEndpointGroup != "" {
13601378
epgKey := rule.TenantName + ":" + rule.FromEndpointGroup
13611379
// find the endpoint group
1362-
epg := contivModel.FindEndpointGroup(epgKey)
1380+
epg = contivModel.FindEndpointGroup(epgKey)
13631381
if epg == nil {
13641382
log.Errorf("Error finding endpoint group %s", epgKey)
13651383
return errors.New("endpoint group not found")
@@ -1368,7 +1386,7 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
13681386
epgKey := rule.TenantName + ":" + rule.ToEndpointGroup
13691387

13701388
// find the endpoint group
1371-
epg := contivModel.FindEndpointGroup(epgKey)
1389+
epg = contivModel.FindEndpointGroup(epgKey)
13721390
if epg == nil {
13731391
log.Errorf("Error finding endpoint group %s", epgKey)
13741392
return errors.New("endpoint group not found")
@@ -1415,8 +1433,19 @@ func (ac *APIController) RuleCreate(rule *contivModel.Rule) error {
14151433
return err
14161434
}
14171435

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+
14181446
// Update any affected app profiles
1419-
syncAppProfile(policy)
1447+
pMap := getAffectedProfs(policy, epg)
1448+
syncAppProfile(pMap)
14201449

14211450
return nil
14221451
}
@@ -1429,6 +1458,9 @@ func (ac *APIController) RuleUpdate(rule, params *contivModel.Rule) error {
14291458

14301459
// RuleDelete deletes the rule within a policy
14311460
func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
1461+
var epg *contivModel.EndpointGroup
1462+
1463+
epg = nil
14321464
log.Infof("Received RuleDelete: %+v", rule)
14331465

14341466
policyKey := GetpolicyKey(rule.TenantName, rule.PolicyName)
@@ -1447,6 +1479,15 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
14471479
return err
14481480
}
14491481

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+
14501491
// Trigger policyDB Update
14511492
err = master.PolicyDelRule(policy, rule)
14521493
if err != nil {
@@ -1455,7 +1496,8 @@ func (ac *APIController) RuleDelete(rule *contivModel.Rule) error {
14551496
}
14561497

14571498
// Update any affected app profiles
1458-
syncAppProfile(policy)
1499+
pMap := getAffectedProfs(policy, epg)
1500+
syncAppProfile(pMap)
14591501

14601502
return nil
14611503
}

0 commit comments

Comments
 (0)