-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathapiController.go
executable file
·2349 lines (2009 loc) · 69.1 KB
/
apiController.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***
Copyright 2014 Cisco Systems Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package objApi
import (
"errors"
"fmt"
"strconv"
"strings"
"encoding/json"
"github.com/contiv/contivmodel"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/drivers"
"github.com/contiv/netplugin/netmaster/docknet"
"github.com/contiv/netplugin/netmaster/gstate"
"github.com/contiv/netplugin/netmaster/intent"
"github.com/contiv/netplugin/netmaster/master"
"github.com/contiv/netplugin/netmaster/mastercfg"
"github.com/contiv/netplugin/objdb"
"github.com/contiv/netplugin/objdb/modeldb"
"github.com/contiv/netplugin/utils"
"github.com/contiv/netplugin/utils/netutils"
"io/ioutil"
"net/http"
log "github.com/Sirupsen/logrus"
"github.com/gorilla/mux"
bgpconf "github.com/osrg/gobgp/config"
)
const (
defHostPvtNet = "172.19.0.0/16"
)
// APIController stores the api controller state
type APIController struct {
router *mux.Router
objdbClient objdb.API // Objdb client
}
// BgpInspect is bgp inspect struct
type BgpInspect struct {
Peers []*bgpconf.Neighbor
Dsts []string
}
var apiCtrler *APIController
// NewAPIController creates a new controller
func NewAPIController(router *mux.Router, objdbClient objdb.API, storeURL string) *APIController {
ctrler := new(APIController)
ctrler.router = router
ctrler.objdbClient = objdbClient
// init modeldb
modeldb.Init(storeURL)
// initialize the model objects
contivModel.Init()
// Register Callbacks
contivModel.RegisterGlobalCallbacks(ctrler)
contivModel.RegisterAppProfileCallbacks(ctrler)
contivModel.RegisterEndpointGroupCallbacks(ctrler)
contivModel.RegisterNetworkCallbacks(ctrler)
contivModel.RegisterPolicyCallbacks(ctrler)
contivModel.RegisterRuleCallbacks(ctrler)
contivModel.RegisterTenantCallbacks(ctrler)
contivModel.RegisterBgpCallbacks(ctrler)
contivModel.RegisterServiceLBCallbacks(ctrler)
contivModel.RegisterExtContractsGroupCallbacks(ctrler)
contivModel.RegisterEndpointCallbacks(ctrler)
contivModel.RegisterNetprofileCallbacks(ctrler)
contivModel.RegisterAciGwCallbacks(ctrler)
// Register routes
contivModel.AddRoutes(router)
// Init global state
gc := contivModel.FindGlobal("global")
if gc != nil {
// Cover any upgrade scenario
if gc.ArpMode == "" || gc.PvtSubnet == "" {
updGC := *gc
if updGC.ArpMode == "" {
updGC.ArpMode = "proxy"
}
if updGC.PvtSubnet == "" {
updGC.PvtSubnet = defHostPvtNet
}
log.Infof("Upgrading default global config")
err := contivModel.CreateGlobal(&updGC)
if err != nil {
log.Fatalf("Error creating global state. Err: %v", err)
}
}
} else {
log.Infof("Creating default global config")
err := contivModel.CreateGlobal(&contivModel.Global{
Key: "global",
Name: "global",
NetworkInfraType: "default",
Vlans: "1-4094",
Vxlans: "1-10000",
FwdMode: "", // set empty fwd mode by default
ArpMode: "proxy",
PvtSubnet: defHostPvtNet,
})
if err != nil {
log.Fatalf("Error creating global state. Err: %v", err)
}
}
// Add default tenant if it doesnt exist
tenant := contivModel.FindTenant("default")
if tenant == nil {
log.Infof("Creating default tenant")
err := contivModel.CreateTenant(&contivModel.Tenant{
Key: "default",
TenantName: "default",
})
if err != nil {
log.Fatalf("Error creating default tenant. Err: %v", err)
}
}
return ctrler
}
// Utility function to check if string exists in a slice
func stringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}
// GlobalGetOper retrieves glboal operational information
func (ac *APIController) GlobalGetOper(global *contivModel.GlobalInspect) error {
log.Infof("Received GlobalInspect: %+v", global)
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
gOper := &gstate.Oper{}
gOper.StateDriver = stateDriver
err = gOper.Read("")
if err != nil {
log.Errorf("Error obtaining global operational state")
return err
}
global.Oper.DefaultNetwork = gOper.DefaultNetwork
global.Oper.FreeVXLANsStart = int(gOper.FreeVXLANsStart)
gCfg := &gstate.Cfg{}
gCfg.StateDriver = stateDriver
numVlans, vlansInUse := gCfg.GetVlansInUse()
numVxlans, vxlansInUse := gCfg.GetVxlansInUse()
global.Oper.NumNetworks = int(numVlans + numVxlans)
global.Oper.VlansInUse = vlansInUse
global.Oper.VxlansInUse = vxlansInUse
global.Oper.ClusterMode = master.GetClusterMode()
return nil
}
// GlobalCreate creates global state
func (ac *APIController) GlobalCreate(global *contivModel.Global) error {
log.Infof("Received GlobalCreate: %+v", global)
// Get the state driver
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
// Build global config
gCfg := intent.ConfigGlobal{
NwInfraType: global.NetworkInfraType,
VLANs: global.Vlans,
VXLANs: global.Vxlans,
FwdMode: global.FwdMode,
ArpMode: global.ArpMode,
PvtSubnet: global.PvtSubnet,
}
// Create the object
err = master.CreateGlobal(stateDriver, &gCfg)
if err != nil {
log.Errorf("Error creating global config {%+v}. Err: %v", global, err)
return err
}
return nil
}
// GlobalUpdate updates global state
func (ac *APIController) GlobalUpdate(global, params *contivModel.Global) error {
log.Infof("Received GlobalUpdate: %+v. Old: %+v", params, global)
// Get the state driver
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
gCfg := &gstate.Cfg{}
gCfg.StateDriver = stateDriver
numVlans, vlansInUse := gCfg.GetVlansInUse()
numVxlans, vxlansInUse := gCfg.GetVxlansInUse()
// Build global config
globalCfg := intent.ConfigGlobal{}
//check for change in forwarding mode
if global.FwdMode != params.FwdMode {
//check if there exists any non default network and tenants
if numVlans+numVxlans > 0 {
log.Errorf("Unable to update forwarding mode due to existing %d vlans and %d vxlans", numVlans, numVxlans)
return fmt.Errorf("please delete %v vlans and %v vxlans before changing forwarding mode", vlansInUse, vxlansInUse)
}
if global.FwdMode == "routing" {
//check if any bgp configurations exists.
bgpCfgs := &mastercfg.CfgBgpState{}
bgpCfgs.StateDriver = stateDriver
cfgs, _ := bgpCfgs.ReadAll()
if len(cfgs) != 0 {
log.Errorf("Unable to change the forwarding mode due to existing bgp configs")
return fmt.Errorf("please delete existing Bgp configs")
}
}
globalCfg.FwdMode = params.FwdMode
}
if global.ArpMode != params.ArpMode {
globalCfg.ArpMode = params.ArpMode
}
if global.Vlans != params.Vlans {
globalCfg.VLANs = params.Vlans
}
if global.Vxlans != params.Vxlans {
globalCfg.VXLANs = params.Vxlans
}
if global.NetworkInfraType != params.NetworkInfraType {
globalCfg.NwInfraType = params.NetworkInfraType
}
if global.PvtSubnet != params.PvtSubnet {
if (global.PvtSubnet != "" || params.PvtSubnet != defHostPvtNet) && numVlans+numVxlans > 0 {
log.Errorf("Unable to update provate subnet due to existing networks")
return fmt.Errorf("please delete %v vlans and %v vxlans before changing private subnet", vlansInUse, vxlansInUse)
}
globalCfg.PvtSubnet = params.PvtSubnet
}
// Create the object
err = master.UpdateGlobal(stateDriver, &globalCfg)
if err != nil {
log.Errorf("Error creating global config {%+v}. Err: %v", global, err)
return err
}
global.NetworkInfraType = params.NetworkInfraType
global.Vlans = params.Vlans
global.Vxlans = params.Vxlans
global.FwdMode = params.FwdMode
global.ArpMode = params.ArpMode
global.PvtSubnet = params.PvtSubnet
return nil
}
// GlobalDelete is not supported
func (ac *APIController) GlobalDelete(global *contivModel.Global) error {
log.Infof("Received GlobalDelete: %+v", global)
// Get the state driver
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
// Delete global state
err = master.DeleteGlobal(stateDriver)
if err != nil {
log.Errorf("Error deleting global config. Err: %v", err)
return err
}
return nil
}
// AciGwCreate creates aci state
func (ac *APIController) AciGwCreate(aci *contivModel.AciGw) error {
log.Infof("Received AciGwCreate: %+v", aci)
// Fail the create if app profiles exist
profCount := contivModel.GetAppProfileCount()
if profCount != 0 {
log.Warnf("AciGwCreate: %d existing App-Profiles found.",
profCount)
}
return nil
}
// AciGwUpdate updates aci state
func (ac *APIController) AciGwUpdate(aci, params *contivModel.AciGw) error {
log.Infof("Received AciGwUpdate: %+v", params)
// Fail the update if app profiles exist
profCount := contivModel.GetAppProfileCount()
if profCount != 0 {
log.Warnf("AciGwUpdate: %d existing App-Profiles found.",
profCount)
}
aci.EnforcePolicies = params.EnforcePolicies
aci.IncludeCommonTenant = params.IncludeCommonTenant
aci.NodeBindings = params.NodeBindings
aci.PathBindings = params.PathBindings
aci.PhysicalDomain = params.PhysicalDomain
return nil
}
// AciGwDelete deletes aci state
func (ac *APIController) AciGwDelete(aci *contivModel.AciGw) error {
log.Infof("Received AciGwDelete")
// Fail the delete if app profiles exist
profCount := contivModel.GetAppProfileCount()
if profCount != 0 {
return core.Errorf("%d App-Profiles found. Delete them first",
profCount)
}
return nil
}
// AciGwGetOper provides operational info for the aci object
func (ac *APIController) AciGwGetOper(op *contivModel.AciGwInspect) error {
op.Oper.NumAppProfiles = contivModel.GetAppProfileCount()
return nil
}
// AppProfileCreate creates app profile state
func (ac *APIController) AppProfileCreate(prof *contivModel.AppProfile) error {
log.Infof("Received AppProfileCreate: %+v", prof)
// Make sure tenant exists
if prof.TenantName == "" {
return core.Errorf("Invalid tenant name")
}
tenant := contivModel.FindTenant(prof.TenantName)
if tenant == nil {
return core.Errorf("Tenant %s not found", prof.TenantName)
}
for _, epg := range prof.EndpointGroups {
epgKey := prof.TenantName + ":" + epg
epgObj := contivModel.FindEndpointGroup(epgKey)
if epgObj == nil {
return core.Errorf("EndpointGroup %s not found", epgKey)
}
modeldb.AddLinkSet(&prof.LinkSets.EndpointGroups, epgObj)
modeldb.AddLink(&epgObj.Links.AppProfile, prof)
err := epgObj.Write()
if err != nil {
log.Errorf("Error updating epg state(%+v). Err: %v", epgObj, err)
return err
}
}
// Setup links
modeldb.AddLink(&prof.Links.Tenant, tenant)
modeldb.AddLinkSet(&tenant.LinkSets.AppProfiles, prof)
err := tenant.Write()
if err != nil {
log.Errorf("Error updating tenant state(%+v). Err: %v", tenant, err)
return err
}
err = CreateAppNw(prof)
return err
}
// AppProfileUpdate updates app
func (ac *APIController) AppProfileUpdate(oldProf, newProf *contivModel.AppProfile) error {
log.Infof("Received AppProfileUpdate: %+v, newProf: %+v", oldProf, newProf)
// handle any epg addition
for _, epg := range newProf.EndpointGroups {
epgKey := newProf.TenantName + ":" + epg
log.Infof("Add %s to %s", epgKey, newProf.AppProfileName)
epgObj := contivModel.FindEndpointGroup(epgKey)
if epgObj == nil {
return core.Errorf("EndpointGroup %s not found", epgKey)
}
modeldb.AddLinkSet(&newProf.LinkSets.EndpointGroups, epgObj)
// workaround for objdb update problem
modeldb.AddLinkSet(&oldProf.LinkSets.EndpointGroups, epgObj)
modeldb.AddLink(&epgObj.Links.AppProfile, newProf)
err := epgObj.Write()
if err != nil {
log.Errorf("Error updating epg state(%+v). Err: %v", epgObj, err)
return err
}
}
// handle any epg removal
for _, epg := range oldProf.EndpointGroups {
if !stringInSlice(epg, newProf.EndpointGroups) {
epgKey := newProf.TenantName + ":" + epg
log.Infof("Remove %s from %s", epgKey, newProf.AppProfileName)
epgObj := contivModel.FindEndpointGroup(epgKey)
if epgObj == nil {
return core.Errorf("EndpointGroup %s not found", epgKey)
}
modeldb.RemoveLink(&epgObj.Links.AppProfile, oldProf)
err := epgObj.Write()
if err != nil {
log.Errorf("Error updating epg state(%+v). Err: %v",
epgObj, err)
return err
}
// workaround for objdb update problem
modeldb.RemoveLinkSet(&oldProf.LinkSets.EndpointGroups, epgObj)
}
}
// workaround for objdb update problem -- should fix model
oldProf.EndpointGroups = newProf.EndpointGroups
// update the app nw
DeleteAppNw(oldProf)
lErr := CreateAppNw(oldProf)
return lErr
}
// AppProfileDelete delete the app
func (ac *APIController) AppProfileDelete(prof *contivModel.AppProfile) error {
log.Infof("Received AppProfileDelete: %+v", prof)
tenant := contivModel.FindTenant(prof.TenantName)
if tenant == nil {
return core.Errorf("Tenant %s not found", prof.TenantName)
}
DeleteAppNw(prof)
// remove all links
for _, epg := range prof.EndpointGroups {
epgKey := prof.TenantName + ":" + epg
epgObj := contivModel.FindEndpointGroup(epgKey)
if epgObj == nil {
log.Errorf("EndpointGroup %s not found", epgKey)
continue
}
modeldb.RemoveLink(&epgObj.Links.AppProfile, prof)
err := epgObj.Write()
if err != nil {
log.Errorf("Error updating epg state(%+v). Err: %v", epgObj, err)
}
}
modeldb.RemoveLinkSet(&tenant.LinkSets.AppProfiles, prof)
tenant.Write()
return nil
}
// EndpointGetOper retrieves glboal operational information
func (ac *APIController) EndpointGetOper(endpoint *contivModel.EndpointInspect) error {
log.Infof("Received EndpointInspect: %+v", endpoint)
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
readEp := &mastercfg.CfgEndpointState{}
readEp.StateDriver = stateDriver
// TODO avoid linear read
epCfgs, err := readEp.ReadAll()
if err == nil {
for _, epCfg := range epCfgs {
ep := epCfg.(*mastercfg.CfgEndpointState)
if strings.Contains(ep.EndpointID, endpoint.Oper.Key) ||
strings.Contains(ep.ContainerID, endpoint.Oper.Key) ||
strings.Contains(ep.EPCommonName, endpoint.Oper.Key) {
endpoint.Oper.Network = ep.NetID
endpoint.Oper.EndpointID = ep.EndpointID
endpoint.Oper.ServiceName = ep.ServiceName
endpoint.Oper.EndpointGroupID = ep.EndpointGroupID
endpoint.Oper.EndpointGroupKey = ep.EndpointGroupKey
endpoint.Oper.IpAddress = []string{ep.IPAddress, ep.IPv6Address}
endpoint.Oper.MacAddress = ep.MacAddress
endpoint.Oper.HomingHost = ep.HomingHost
endpoint.Oper.IntfName = ep.IntfName
endpoint.Oper.VtepIP = ep.VtepIP
endpoint.Oper.Labels = fmt.Sprintf("%s", ep.Labels)
endpoint.Oper.ContainerID = ep.ContainerID
endpoint.Oper.ContainerName = ep.EPCommonName
epOper := &drivers.OperEndpointState{}
epOper.StateDriver = stateDriver
err := epOper.Read(ep.NetID + "-" + ep.EndpointID)
if err == nil {
endpoint.Oper.VirtualPort = "v" + epOper.PortName
}
return nil
}
}
}
return fmt.Errorf("endpoint not found")
}
//GetNetprofileKey gets the netprofile key.
func GetNetprofileKey(tenantName, profileName string) string {
key := tenantName + ":" + profileName
return key
}
//GetpolicyKey will return the policy key
func GetpolicyKey(tenantName, policyName string) string {
key := tenantName + ":" + policyName
return key
}
// Cleans up state off endpointGroup and related objects.
func endpointGroupCleanup(endpointGroup *contivModel.EndpointGroup) error {
// delete the endpoint group state
err := master.DeleteEndpointGroup(endpointGroup.TenantName, endpointGroup.GroupName)
if err != nil {
log.Errorf("Error deleting endpoint group %+v. Err: %v", endpointGroup, err)
return err
}
// Detach the endpoint group from the Policies
for _, policyName := range endpointGroup.Policies {
policyKey := GetpolicyKey(endpointGroup.TenantName, policyName)
// find the policy
policy := contivModel.FindPolicy(policyKey)
if policy == nil {
log.Errorf("Could not find policy %s", policyName)
continue
}
// detach policy to epg
err := master.PolicyDetach(endpointGroup, policy)
if err != nil && err != master.EpgPolicyExists {
log.Errorf("Error detaching policy %s from epg %s", policyName, endpointGroup.Key)
}
// Remove links
modeldb.RemoveLinkSet(&policy.LinkSets.EndpointGroups, endpointGroup)
modeldb.RemoveLinkSet(&endpointGroup.LinkSets.Policies, policy)
policy.Write()
}
// Cleanup any external contracts
err = cleanupExternalContracts(endpointGroup)
if err != nil {
log.Errorf("Error cleaning up external contracts for epg %s", endpointGroup.Key)
}
// Remove the endpoint group from network and tenant link sets.
nwObjKey := endpointGroup.TenantName + ":" + endpointGroup.NetworkName
network := contivModel.FindNetwork(nwObjKey)
if network != nil {
modeldb.RemoveLinkSet(&network.LinkSets.EndpointGroups, endpointGroup)
network.Write()
}
tenant := contivModel.FindTenant(endpointGroup.TenantName)
if tenant != nil {
modeldb.RemoveLinkSet(&tenant.LinkSets.EndpointGroups, endpointGroup)
tenant.Write()
}
return nil
}
// FIXME: hack to allocate unique endpoint group ids
var globalEpgID = 1
// EndpointGroupCreate creates Endpoint Group
func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.EndpointGroup) error {
log.Infof("Received EndpointGroupCreate: %+v", endpointGroup)
// Find the tenant
tenant := contivModel.FindTenant(endpointGroup.TenantName)
if tenant == nil {
return core.Errorf("Tenant not found")
}
// Find the network
nwObjKey := endpointGroup.TenantName + ":" + endpointGroup.NetworkName
network := contivModel.FindNetwork(nwObjKey)
if network == nil {
return core.Errorf("Network %s not found", endpointGroup.NetworkName)
}
// If there is a Network with the same name as this endpointGroup, reject.
nameClash := contivModel.FindNetwork(endpointGroup.Key)
if nameClash != nil {
return core.Errorf("Network %s conflicts with the endpointGroup name",
nameClash.NetworkName)
}
// create the endpoint group state
err := master.CreateEndpointGroup(endpointGroup.TenantName, endpointGroup.NetworkName,
endpointGroup.GroupName, endpointGroup.IpPool, endpointGroup.CfgdTag)
if err != nil {
log.Errorf("Error creating endpoint group %+v. Err: %v", endpointGroup, err)
return err
}
// for each policy create an epg policy Instance
for _, policyName := range endpointGroup.Policies {
policyKey := GetpolicyKey(endpointGroup.TenantName, policyName)
// find the policy
policy := contivModel.FindPolicy(policyKey)
if policy == nil {
log.Errorf("Could not find policy %s", policyName)
endpointGroupCleanup(endpointGroup)
return core.Errorf("Policy not found")
}
// attach policy to epg
err = master.PolicyAttach(endpointGroup, policy)
if err != nil {
log.Errorf("Error attaching policy %s to epg %s", policyName, endpointGroup.Key)
endpointGroupCleanup(endpointGroup)
return err
}
// establish Links
modeldb.AddLinkSet(&policy.LinkSets.EndpointGroups, endpointGroup)
modeldb.AddLinkSet(&endpointGroup.LinkSets.Policies, policy)
// Write the policy
err = policy.Write()
if err != nil {
endpointGroupCleanup(endpointGroup)
return err
}
}
// If endpoint group is to be attached to any netprofile, then attach the netprofile and create links and linksets.
if endpointGroup.NetProfile != "" {
profileKey := GetNetprofileKey(endpointGroup.TenantName, endpointGroup.NetProfile)
netprofile := contivModel.FindNetprofile(profileKey)
if netprofile == nil {
log.Errorf("Error finding netprofile: %s", profileKey)
return errors.New("netprofile not found")
}
// attach NetProfile to epg
err = master.UpdateEndpointGroup(netprofile.Bandwidth, endpointGroup.GroupName, endpointGroup.TenantName, netprofile.DSCP, netprofile.Burst)
if err != nil {
log.Errorf("Error attaching NetProfile %s to epg %s", endpointGroup.NetProfile, endpointGroup.Key)
endpointGroupCleanup(endpointGroup)
return err
}
//establish links (epg - netprofile)
modeldb.AddLink(&endpointGroup.Links.NetProfile, netprofile)
//establish linksets (Netprofile - epg)
modeldb.AddLinkSet(&netprofile.LinkSets.EndpointGroups, endpointGroup)
//Write the attached Netprofile to modeldb
err = netprofile.Write()
if err != nil {
endpointGroupCleanup(endpointGroup)
return err
}
}
// Setup external contracts this EPG might have.
err = setupExternalContracts(endpointGroup, endpointGroup.ExtContractsGrps)
if err != nil {
log.Errorf("Error setting up external contracts for epg %s", endpointGroup.Key)
endpointGroupCleanup(endpointGroup)
return err
}
// Setup links
modeldb.AddLink(&endpointGroup.Links.Network, network)
modeldb.AddLink(&endpointGroup.Links.Tenant, tenant)
modeldb.AddLinkSet(&network.LinkSets.EndpointGroups, endpointGroup)
modeldb.AddLinkSet(&tenant.LinkSets.EndpointGroups, endpointGroup)
// Save the tenant and network since we added the links
err = network.Write()
if err != nil {
endpointGroupCleanup(endpointGroup)
return err
}
err = tenant.Write()
if err != nil {
endpointGroupCleanup(endpointGroup)
return err
}
return nil
}
// EndpointGroupUpdate updates endpoint group
func (ac *APIController) EndpointGroupUpdate(endpointGroup, params *contivModel.EndpointGroup) error {
log.Infof("Received EndpointGroupUpdate: %+v, params: %+v", endpointGroup, params)
// if the network association was changed, reject the update.
if endpointGroup.NetworkName != params.NetworkName {
return core.Errorf("Cannot change network association after epg is created.")
}
if endpointGroup.IpPool != params.IpPool {
return core.Errorf("Cannot change IP pool after epg is created.")
}
// Only update policy attachments
// Look for policy adds
for _, policyName := range params.Policies {
if !stringInSlice(policyName, endpointGroup.Policies) {
policyKey := GetpolicyKey(endpointGroup.TenantName, policyName)
// find the policy
policy := contivModel.FindPolicy(policyKey)
if policy == nil {
log.Errorf("Could not find policy %s", policyName)
return core.Errorf("Policy not found")
}
// attach policy to epg
err := master.PolicyAttach(endpointGroup, policy)
if err != nil && err != master.EpgPolicyExists {
log.Errorf("Error attaching policy %s to epg %s", policyName, endpointGroup.Key)
return err
}
// Setup links
modeldb.AddLinkSet(&policy.LinkSets.EndpointGroups, endpointGroup)
modeldb.AddLinkSet(&endpointGroup.LinkSets.Policies, policy)
err = policy.Write()
if err != nil {
return err
}
}
}
//for netProfile removal,
if endpointGroup.NetProfile != "" && params.NetProfile == "" {
profileKey := GetNetprofileKey(endpointGroup.TenantName, endpointGroup.NetProfile)
netprofile := contivModel.FindNetprofile(profileKey)
if netprofile == nil {
log.Errorf("Error finding netprofile: %s", profileKey)
return errors.New("netprofile not found")
}
// attach NetProfile to epg
err := master.UpdateEndpointGroup("", endpointGroup.GroupName, endpointGroup.TenantName, 0, 0)
if err != nil {
log.Errorf("Error attaching NetProfile %s to epg %s", endpointGroup.NetProfile, endpointGroup.Key)
endpointGroupCleanup(endpointGroup)
return err
}
modeldb.RemoveLink(&endpointGroup.Links.NetProfile, netprofile)
modeldb.RemoveLinkSet(&netprofile.LinkSets.EndpointGroups, endpointGroup)
err = netprofile.Write()
if err != nil {
endpointGroupCleanup(endpointGroup)
return err
}
endpointGroup.NetProfile = params.NetProfile
} else if params.NetProfile != "" {
paramsKey := GetNetprofileKey(params.TenantName, params.NetProfile)
netprofile := contivModel.FindNetprofile(paramsKey)
if netprofile == nil {
log.Errorf("Error finding netprofile: %s", paramsKey)
return errors.New("netprofile not found")
}
// attach NetProfile to epg
err := master.UpdateEndpointGroup(netprofile.Bandwidth, endpointGroup.GroupName, endpointGroup.TenantName, netprofile.DSCP, netprofile.Burst)
if err != nil {
log.Errorf("Error attaching NetProfile %s to epg %s", params.NetProfile, endpointGroup.Key)
endpointGroupCleanup(endpointGroup)
return err
}
if endpointGroup.NetProfile != "" && endpointGroup.NetProfile != params.NetProfile {
// get the epg netprofile object.
profileKey := GetNetprofileKey(endpointGroup.TenantName, endpointGroup.NetProfile)
epgnetprofile := contivModel.FindNetprofile(profileKey)
if epgnetprofile == nil {
log.Errorf("Error finding netprofile: %s", profileKey)
return errors.New("netprofile not found")
}
//remove links and linksets from the old netprofile.
modeldb.RemoveLink(&endpointGroup.Links.NetProfile, epgnetprofile)
modeldb.RemoveLinkSet(&epgnetprofile.LinkSets.EndpointGroups, endpointGroup)
//add links and linksets to new netprofile.
modeldb.AddLink(&endpointGroup.Links.NetProfile, netprofile)
modeldb.AddLinkSet(&netprofile.LinkSets.EndpointGroups, endpointGroup)
} else if endpointGroup.NetProfile == "" {
//add links from epg to netprofile and linksets from netprofile to epg
modeldb.AddLink(&endpointGroup.Links.NetProfile, netprofile)
modeldb.AddLinkSet(&netprofile.LinkSets.EndpointGroups, endpointGroup)
}
err = netprofile.Write()
if err != nil {
endpointGroupCleanup(params)
return err
}
endpointGroup.NetProfile = params.NetProfile
}
// now look for policy removals
for _, policyName := range endpointGroup.Policies {
if !stringInSlice(policyName, params.Policies) {
policyKey := GetpolicyKey(endpointGroup.TenantName, policyName)
// find the policy
policy := contivModel.FindPolicy(policyKey)
if policy == nil {
log.Errorf("Could not find policy %s", policyName)
return core.Errorf("Policy not found")
}
// detach policy to epg
err := master.PolicyDetach(endpointGroup, policy)
if err != nil && err != master.EpgPolicyExists {
log.Errorf("Error detaching policy %s from epg %s", policyName, endpointGroup.Key)
return err
}
// Remove linksets
modeldb.RemoveLinkSet(&policy.LinkSets.EndpointGroups, endpointGroup)
modeldb.RemoveLinkSet(&endpointGroup.LinkSets.Policies, policy)
err = policy.Write()
if err != nil {
return err
}
}
}
// Update the policy list
endpointGroup.Policies = params.Policies
// For the external contracts, we can keep the update simple. Remove
// all that we have now, and update the epg with the new list.
// Step 1: Cleanup existing external contracts.
err := cleanupExternalContracts(endpointGroup)
if err != nil {
return err
}
// Step 2: Add contracts from the update.
// Consumed contracts
err = setupExternalContracts(endpointGroup, params.ExtContractsGrps)
if err != nil {
return err
}
// Update the epg itself with the new contracts groups.
endpointGroup.ExtContractsGrps = params.ExtContractsGrps
if endpointGroup.Links.AppProfile.ObjKey != "" {
// if there is an associated app profiles, update that as well
profKey := endpointGroup.Links.AppProfile.ObjKey
profObj := contivModel.FindAppProfile(profKey)
if profObj == nil {
log.Warnf("EndpointGroupUpdate prof %s not found", profKey)
} else {
log.Infof("EndpointGroupUpdate sync prof %s", profKey)
DeleteAppNw(profObj)
CreateAppNw(profObj)
}
}
return nil
}
// EndpointGroupGetOper inspects endpointGroup
func (ac *APIController) EndpointGroupGetOper(endpointGroup *contivModel.EndpointGroupInspect) error {
log.Infof("Received EndpointGroupInspect: %+v", endpointGroup)
// Get the state driver
stateDriver, err := utils.GetStateDriver()
if err != nil {
return err
}
epgCfg := &mastercfg.EndpointGroupState{}
epgCfg.StateDriver = stateDriver
epgID := endpointGroup.Config.GroupName + ":" + endpointGroup.Config.TenantName
if err := epgCfg.Read(epgID); err != nil {
log.Errorf("Error fetching endpointGroup from mastercfg: %s", epgID)
return err
}
nwName := epgCfg.NetworkName + "." + epgCfg.TenantName
nwCfg := &mastercfg.CfgNetworkState{}
nwCfg.StateDriver = stateDriver
if err := nwCfg.Read(nwName); err != nil {
log.Errorf("Error fetching network config %s", nwName)
return err
}
endpointGroup.Oper.ExternalPktTag = epgCfg.ExtPktTag
endpointGroup.Oper.PktTag = epgCfg.PktTag
endpointGroup.Oper.NumEndpoints = epgCfg.EpCount
endpointGroup.Oper.AvailableIPAddresses = netutils.ListAvailableIPs(epgCfg.EPGIPAllocMap,
nwCfg.SubnetIP, nwCfg.SubnetLen)
endpointGroup.Oper.AllocatedIPAddresses = netutils.ListAllocatedIPs(epgCfg.EPGIPAllocMap,
epgCfg.IPPool, nwCfg.SubnetIP, nwCfg.SubnetLen)
endpointGroup.Oper.GroupTag = epgCfg.GroupTag
readEp := &mastercfg.CfgEndpointState{}
readEp.StateDriver = stateDriver
epCfgs, err := readEp.ReadAll()
if err == nil {
for _, epCfg := range epCfgs {
ep := epCfg.(*mastercfg.CfgEndpointState)
if ep.EndpointGroupKey == epgID {
epOper := contivModel.EndpointOper{}
epOper.Network = ep.NetID
epOper.EndpointID = ep.EndpointID
epOper.ServiceName = ep.ServiceName
epOper.EndpointGroupID = ep.EndpointGroupID
epOper.EndpointGroupKey = ep.EndpointGroupKey
epOper.IpAddress = []string{ep.IPAddress, ep.IPv6Address}
epOper.MacAddress = ep.MacAddress
epOper.HomingHost = ep.HomingHost
epOper.IntfName = ep.IntfName
epOper.VtepIP = ep.VtepIP
epOper.Labels = fmt.Sprintf("%s", ep.Labels)
epOper.ContainerID = ep.ContainerID
epOper.ContainerName = ep.EPCommonName
endpointGroup.Oper.Endpoints = append(endpointGroup.Oper.Endpoints, epOper)
}
}
}
return nil
}
// EndpointGroupDelete deletes end point group
func (ac *APIController) EndpointGroupDelete(endpointGroup *contivModel.EndpointGroup) error {
log.Infof("Received EndpointGroupDelete: %+v", endpointGroup)
// if this is associated with an app profile, reject the delete
if endpointGroup.Links.AppProfile.ObjKey != "" {
return core.Errorf("Cannot delete %s, associated to appProfile %s",
endpointGroup.GroupName, endpointGroup.Links.AppProfile.ObjKey)
}
// In swarm-mode work-flow, if epg is mapped to a docker network, reject the delete
if master.GetClusterMode() == master.SwarmMode {
dnet, err := docknet.GetDocknetState(endpointGroup.TenantName, endpointGroup.NetworkName, endpointGroup.GroupName)
if err == nil {
return fmt.Errorf("cannot delete group %s mapped to docker network %s",
endpointGroup.GroupName, dnet.DocknetUUID)
}
if !strings.Contains(strings.ToLower(err.Error()), "key not found") {
log.Errorf("Error getting docknet state for %s.%s. (retval = %s)",
endpointGroup.TenantName, endpointGroup.GroupName, err.Error())
return err
}
log.Infof("No docknet state for %s.%s. (retval = %s)",