blob: b8745914f03df17606336dac256d8676224ed194 [file] [log] [blame]
Abhilash S.L7f17e402019-03-15 17:40:41 +05301/*
2 * Copyright 2019-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070017//Package resourcemanager provides the utility for managing resources
manikkaraj kbf256be2019-03-25 00:13:48 +053018package resourcemanager
Abhilash S.L7f17e402019-03-15 17:40:41 +053019
20import (
npujarec5762e2020-01-01 14:08:48 +053021 "context"
Girish Gowdru0c588b22019-04-23 23:24:56 -040022 "encoding/json"
23 "errors"
24 "fmt"
Andrea Campanellab83b39d2020-03-30 11:41:16 +020025 "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
Girish Gowdru0c588b22019-04-23 23:24:56 -040026 "strconv"
27 "strings"
Girish Gowdra38d533d2020-03-30 20:38:51 -070028 "sync"
Abhilash S.L7f17e402019-03-15 17:40:41 +053029
Esin Karamanccb714b2019-11-29 15:02:06 +000030 "github.com/opencord/voltha-lib-go/v3/pkg/db"
31 "github.com/opencord/voltha-lib-go/v3/pkg/db/kvstore"
32 "github.com/opencord/voltha-lib-go/v3/pkg/log"
33 ponrmgr "github.com/opencord/voltha-lib-go/v3/pkg/ponresourcemanager"
34 ofp "github.com/opencord/voltha-protos/v3/go/openflow_13"
35 "github.com/opencord/voltha-protos/v3/go/openolt"
Abhilash S.L7f17e402019-03-15 17:40:41 +053036)
37
salmansiddiqui7ac62132019-08-22 03:58:50 +000038const (
39 // KvstoreTimeout specifies the time out for KV Store Connection
40 KvstoreTimeout = 5
41 // BasePathKvStore - service/voltha/openolt/<device_id>
42 BasePathKvStore = "service/voltha/openolt/{%s}"
Gamze Abakafee36392019-10-03 11:17:24 +000043 // TpIDPathSuffix - <(pon_id, onu_id, uni_id)>/tp_id
44 TpIDPathSuffix = "{%d,%d,%d}/tp_id"
45 //MeterIDPathSuffix - <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
46 MeterIDPathSuffix = "{%d,%d,%d}/{%d}/meter_id/{%s}"
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +053047 //NnniIntfID - nniintfids
48 NnniIntfID = "nniintfids"
49 // OnuPacketINPath path on the kvstore to store packetin gemport,which will be used for packetin, pcketout
50 //format: onu_packetin/<intfid>,<onuid>,<logicalport>
51 OnuPacketINPath = "onu_packetin/{%d,%d,%d}"
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +053052 //FlowIDsForGem flowids_per_gem/<intfid>
53 FlowIDsForGem = "flowids_per_gem/{%d}"
Esin Karamanccb714b2019-11-29 15:02:06 +000054 //McastQueuesForIntf multicast queues for pon interfaces
55 McastQueuesForIntf = "mcast_qs_for_int"
56 //FlowGroup flow_groups/<flow_group_id>
57 // A group is stored under this path on the KV store after it has been installed to the device.
58 // It should also be deleted after it has been removed from the device accordingly.
59 FlowGroup = "flow_groups/{%d}"
60 //FlowGroupCached flow_groups_cached/<flow_group_id>
61 // When a group add request received, we create the group without setting any members to it since we cannot
62 // set any members to a group until it is associated with a multicast flow. It is a BAL limitation.
63 // When the related multicast flow has been created we perform set members operation for the group.
64 // That is why we need to keep the members of a group until the multicast flow creation request comes.
65 // We preserve the groups under "FlowGroupsCached" directory in the KV store temporarily. Having set members,
66 // we remove the group from the cached group store.
67 FlowGroupCached = "flow_groups_cached/{%d}"
salmansiddiqui7ac62132019-08-22 03:58:50 +000068)
Abhilash S.L7f17e402019-03-15 17:40:41 +053069
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070070// FlowInfo holds the flow information
Abhilash S.L8ee90712019-04-29 16:24:22 +053071type FlowInfo struct {
72 Flow *openolt.Flow
73 FlowStoreCookie uint64
74 FlowCategory string
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +053075 LogicalFlowID uint64
76}
77
78// OnuGemInfo holds onu information along with gem port list and uni port list
79type OnuGemInfo struct {
80 OnuID uint32
81 SerialNumber string
82 IntfID uint32
83 GemPorts []uint32
84 UniPorts []uint32
85}
86
87// PacketInInfoKey is the key for packet in gemport
88type PacketInInfoKey struct {
89 IntfID uint32
90 OnuID uint32
91 LogicalPort uint32
Abhilash S.L8ee90712019-04-29 16:24:22 +053092}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070093
Esin Karamanccb714b2019-11-29 15:02:06 +000094// GroupInfo holds group information
95type GroupInfo struct {
96 GroupID uint32
97 OutPorts []uint32
98}
99
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700100// OpenOltResourceMgr holds resource related information as provided below for each field
Abhilash S.L7f17e402019-03-15 17:40:41 +0530101type OpenOltResourceMgr struct {
sbarbaria8910ba2019-11-05 10:12:23 -0500102 DeviceID string // OLT device id
103 HostAndPort string // Host and port of the kv store to connect to
104 Args string // args
105 KVStore *db.Backend // backend kv store connection handle
Girish Gowdru0c588b22019-04-23 23:24:56 -0400106 DeviceType string
107 Host string // Host ip of the kv store
108 Port int // port of the kv store
109 DevInfo *openolt.DeviceInfo // device information
110 // array of pon resource managers per interface technology
111 ResourceMgrs map[uint32]*ponrmgr.PONResourceManager
Girish Gowdra38d533d2020-03-30 20:38:51 -0700112
113 // This protects concurrent gemport_id allocate/delete calls on a per PON port basis
114 GemPortIDMgmtLock []sync.RWMutex
115 // This protects concurrent alloc_id allocate/delete calls on a per PON port basis
116 AllocIDMgmtLock []sync.RWMutex
117 // This protects concurrent onu_id allocate/delete calls on a per PON port basis
118 OnuIDMgmtLock []sync.RWMutex
119 // This protects concurrent flow_id allocate/delete calls. We do not need this on a
120 // per PON port basis as flow IDs are unique across the OLT.
121 FlowIDMgmtLock sync.RWMutex
122
123 // This protects concurrent access to flowids_per_gem info stored on KV store
124 flowIDToGemInfoLock sync.RWMutex
Abhilash S.L7f17e402019-03-15 17:40:41 +0530125}
126
Manikkaraj kb1d51442019-07-23 10:41:02 -0400127func newKVClient(storeType string, address string, timeout uint32) (kvstore.Client, error) {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000128 logger.Infow("kv-store-type", log.Fields{"store": storeType})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400129 switch storeType {
130 case "consul":
131 return kvstore.NewConsulClient(address, int(timeout))
132 case "etcd":
133 return kvstore.NewEtcdClient(address, int(timeout))
134 }
135 return nil, errors.New("unsupported-kv-store")
Abhilash S.L7f17e402019-03-15 17:40:41 +0530136}
137
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700138// SetKVClient sets the KV client and return a kv backend
sbarbaria8910ba2019-11-05 10:12:23 -0500139func SetKVClient(backend string, Host string, Port int, DeviceID string) *db.Backend {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400140 addr := Host + ":" + strconv.Itoa(Port)
141 // TODO : Make sure direct call to NewBackend is working fine with backend , currently there is some
142 // issue between kv store and backend , core is not calling NewBackend directly
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700143 kvClient, err := newKVClient(backend, addr, KvstoreTimeout)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400144 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000145 logger.Fatalw("Failed to init KV client\n", log.Fields{"err": err})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400146 return nil
147 }
sbarbaria8910ba2019-11-05 10:12:23 -0500148 kvbackend := &db.Backend{
Girish Gowdru0c588b22019-04-23 23:24:56 -0400149 Client: kvClient,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700150 StoreType: backend,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400151 Host: Host,
152 Port: Port,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700153 Timeout: KvstoreTimeout,
154 PathPrefix: fmt.Sprintf(BasePathKvStore, DeviceID)}
Abhilash S.L7f17e402019-03-15 17:40:41 +0530155
Girish Gowdru0c588b22019-04-23 23:24:56 -0400156 return kvbackend
Abhilash S.L7f17e402019-03-15 17:40:41 +0530157}
158
Gamze Abakafee36392019-10-03 11:17:24 +0000159// NewResourceMgr init a New resource manager instance which in turn instantiates pon resource manager
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700160// instances according to technology. Initializes the default resource ranges for all
161// the resources.
npujarec5762e2020-01-01 14:08:48 +0530162func NewResourceMgr(ctx context.Context, deviceID string, KVStoreHostPort string, kvStoreType string, deviceType string, devInfo *openolt.DeviceInfo) *OpenOltResourceMgr {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400163 var ResourceMgr OpenOltResourceMgr
Girish Kumar2ad402b2020-03-20 19:45:12 +0000164 logger.Debugf("Init new resource manager , host_port: %s, deviceid: %s", KVStoreHostPort, deviceID)
Abhilash S.L8ee90712019-04-29 16:24:22 +0530165 ResourceMgr.HostAndPort = KVStoreHostPort
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700166 ResourceMgr.DeviceType = deviceType
167 ResourceMgr.DevInfo = devInfo
168 IPPort := strings.Split(KVStoreHostPort, ":")
169 ResourceMgr.Host = IPPort[0]
170 ResourceMgr.Port, _ = strconv.Atoi(IPPort[1])
Girish Gowdra38d533d2020-03-30 20:38:51 -0700171 NumPONPorts := devInfo.GetPonPorts()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530172
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700173 Backend := kvStoreType
Girish Gowdru0c588b22019-04-23 23:24:56 -0400174 ResourceMgr.KVStore = SetKVClient(Backend, ResourceMgr.Host,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700175 ResourceMgr.Port, deviceID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400176 if ResourceMgr.KVStore == nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000177 logger.Error("Failed to setup KV store")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400178 }
179 Ranges := make(map[string]*openolt.DeviceInfo_DeviceResourceRanges)
180 RsrcMgrsByTech := make(map[string]*ponrmgr.PONResourceManager)
181 ResourceMgr.ResourceMgrs = make(map[uint32]*ponrmgr.PONResourceManager)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530182
Girish Gowdra38d533d2020-03-30 20:38:51 -0700183 ResourceMgr.AllocIDMgmtLock = make([]sync.RWMutex, NumPONPorts)
184 ResourceMgr.GemPortIDMgmtLock = make([]sync.RWMutex, NumPONPorts)
185 ResourceMgr.OnuIDMgmtLock = make([]sync.RWMutex, NumPONPorts)
186
Girish Gowdru0c588b22019-04-23 23:24:56 -0400187 // TODO self.args = registry('main').get_args()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530188
Girish Gowdru0c588b22019-04-23 23:24:56 -0400189 /*
190 If a legacy driver returns protobuf without any ranges,s synthesize one from
Gamze Abakafee36392019-10-03 11:17:24 +0000191 the legacy global per-device information. This, in theory, is temporary until
Girish Gowdru0c588b22019-04-23 23:24:56 -0400192 the legacy drivers are upgrade to support pool ranges.
193 */
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700194 if devInfo.Ranges == nil {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400195 var ranges openolt.DeviceInfo_DeviceResourceRanges
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700196 ranges.Technology = devInfo.GetTechnology()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530197
Girish Gowdru0c588b22019-04-23 23:24:56 -0400198 var index uint32
199 for index = 0; index < NumPONPorts; index++ {
200 ranges.IntfIds = append(ranges.IntfIds, index)
201 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530202
Abhilash S.L8ee90712019-04-29 16:24:22 +0530203 var Pool openolt.DeviceInfo_DeviceResourceRanges_Pool
Girish Gowdru0c588b22019-04-23 23:24:56 -0400204 Pool.Type = openolt.DeviceInfo_DeviceResourceRanges_Pool_ONU_ID
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700205 Pool.Start = devInfo.OnuIdStart
206 Pool.End = devInfo.OnuIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400207 Pool.Sharing = openolt.DeviceInfo_DeviceResourceRanges_Pool_DEDICATED_PER_INTF
cbabuabf02352019-10-15 13:14:56 +0200208 onuPool := Pool
209 ranges.Pools = append(ranges.Pools, &onuPool)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530210
Girish Gowdru0c588b22019-04-23 23:24:56 -0400211 Pool.Type = openolt.DeviceInfo_DeviceResourceRanges_Pool_ALLOC_ID
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700212 Pool.Start = devInfo.AllocIdStart
213 Pool.End = devInfo.AllocIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400214 Pool.Sharing = openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH
cbabuabf02352019-10-15 13:14:56 +0200215 allocPool := Pool
216 ranges.Pools = append(ranges.Pools, &allocPool)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530217
Girish Gowdru0c588b22019-04-23 23:24:56 -0400218 Pool.Type = openolt.DeviceInfo_DeviceResourceRanges_Pool_GEMPORT_ID
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700219 Pool.Start = devInfo.GemportIdStart
220 Pool.End = devInfo.GemportIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400221 Pool.Sharing = openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH
cbabuabf02352019-10-15 13:14:56 +0200222 gemPool := Pool
223 ranges.Pools = append(ranges.Pools, &gemPool)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530224
Girish Gowdru0c588b22019-04-23 23:24:56 -0400225 Pool.Type = openolt.DeviceInfo_DeviceResourceRanges_Pool_FLOW_ID
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700226 Pool.Start = devInfo.FlowIdStart
227 Pool.End = devInfo.FlowIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400228 Pool.Sharing = openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH
Abhilash S.L8ee90712019-04-29 16:24:22 +0530229 ranges.Pools = append(ranges.Pools, &Pool)
230 // Add to device info
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700231 devInfo.Ranges = append(devInfo.Ranges, &ranges)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400232 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530233
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700234 // Create a separate Resource Manager instance for each range. This assumes that
Girish Gowdru0c588b22019-04-23 23:24:56 -0400235 // each technology is represented by only a single range
236 var GlobalPONRsrcMgr *ponrmgr.PONResourceManager
237 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700238 for _, TechRange := range devInfo.Ranges {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400239 technology := TechRange.Technology
Girish Kumar2ad402b2020-03-20 19:45:12 +0000240 logger.Debugf("Device info technology %s", technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400241 Ranges[technology] = TechRange
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700242 RsrcMgrsByTech[technology], err = ponrmgr.NewPONResourceManager(technology, deviceType, deviceID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400243 Backend, ResourceMgr.Host, ResourceMgr.Port)
244 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000245 logger.Errorf("Failed to create pon resource manager instance for technology %s", technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400246 return nil
247 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700248 // resource_mgrs_by_tech[technology] = resource_mgr
Girish Gowdru0c588b22019-04-23 23:24:56 -0400249 if GlobalPONRsrcMgr == nil {
250 GlobalPONRsrcMgr = RsrcMgrsByTech[technology]
251 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700252 for _, IntfID := range TechRange.IntfIds {
253 ResourceMgr.ResourceMgrs[uint32(IntfID)] = RsrcMgrsByTech[technology]
Girish Gowdru0c588b22019-04-23 23:24:56 -0400254 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700255 // self.initialize_device_resource_range_and_pool(resource_mgr, global_resource_mgr, arange)
npujarec5762e2020-01-01 14:08:48 +0530256 InitializeDeviceResourceRangeAndPool(ctx, RsrcMgrsByTech[technology], GlobalPONRsrcMgr,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700257 TechRange, devInfo)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400258 }
259 // After we have initialized resource ranges, initialize the
260 // resource pools accordingly.
261 for _, PONRMgr := range RsrcMgrsByTech {
npujarec5762e2020-01-01 14:08:48 +0530262 _ = PONRMgr.InitDeviceResourcePool(ctx)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400263 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000264 logger.Info("Initialization of resource manager success!")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400265 return &ResourceMgr
Abhilash S.L7f17e402019-03-15 17:40:41 +0530266}
267
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700268// InitializeDeviceResourceRangeAndPool initializes the resource range pool according to the sharing type, then apply
269// device specific information. If KV doesn't exist
270// or is broader than the device, the device's information will
271// dictate the range limits
npujarec5762e2020-01-01 14:08:48 +0530272func InitializeDeviceResourceRangeAndPool(ctx context.Context, ponRMgr *ponrmgr.PONResourceManager, globalPONRMgr *ponrmgr.PONResourceManager,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700273 techRange *openolt.DeviceInfo_DeviceResourceRanges, devInfo *openolt.DeviceInfo) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530274
Girish Gowdru0c588b22019-04-23 23:24:56 -0400275 // init the resource range pool according to the sharing type
Abhilash S.L7f17e402019-03-15 17:40:41 +0530276
Girish Kumar2ad402b2020-03-20 19:45:12 +0000277 logger.Debugf("Resource range pool init for technology %s", ponRMgr.Technology)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700278 // first load from KV profiles
npujarec5762e2020-01-01 14:08:48 +0530279 status := ponRMgr.InitResourceRangesFromKVStore(ctx)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700280 if !status {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000281 logger.Debugf("Failed to load resource ranges from KV store for tech %s", ponRMgr.Technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400282 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530283
Girish Gowdru0c588b22019-04-23 23:24:56 -0400284 /*
285 Then apply device specific information. If KV doesn't exist
Gamze Abakafee36392019-10-03 11:17:24 +0000286 or is broader than the device, the device's information will
Girish Gowdru0c588b22019-04-23 23:24:56 -0400287 dictate the range limits
288 */
Girish Kumar2ad402b2020-03-20 19:45:12 +0000289 logger.Debugw("Using device info to init pon resource ranges", log.Fields{"Tech": ponRMgr.Technology})
Abhilash S.L7f17e402019-03-15 17:40:41 +0530290
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700291 ONUIDStart := devInfo.OnuIdStart
292 ONUIDEnd := devInfo.OnuIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400293 ONUIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_DEDICATED_PER_INTF
294 ONUIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700295 AllocIDStart := devInfo.AllocIdStart
296 AllocIDEnd := devInfo.AllocIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400297 AllocIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
298 AllocIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700299 GEMPortIDStart := devInfo.GemportIdStart
300 GEMPortIDEnd := devInfo.GemportIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400301 GEMPortIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
302 GEMPortIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700303 FlowIDStart := devInfo.FlowIdStart
304 FlowIDEnd := devInfo.FlowIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400305 FlowIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
306 FlowIDSharedPoolID := uint32(0)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530307
Girish Gowdru0c588b22019-04-23 23:24:56 -0400308 var FirstIntfPoolID uint32
309 var SharedPoolID uint32
Abhilash S.L7f17e402019-03-15 17:40:41 +0530310
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400311 /*
312 * As a zero check is made against SharedPoolID to check whether the resources are shared across all intfs
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700313 * if resources are shared across interfaces then SharedPoolID is given a positive number.
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400314 */
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700315 for _, FirstIntfPoolID = range techRange.IntfIds {
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400316 // skip the intf id 0
317 if FirstIntfPoolID == 0 {
318 continue
319 }
Girish Gowdru0c588b22019-04-23 23:24:56 -0400320 break
321 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530322
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700323 for _, RangePool := range techRange.Pools {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400324 if RangePool.Sharing == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400325 SharedPoolID = FirstIntfPoolID
Girish Gowdru0c588b22019-04-23 23:24:56 -0400326 } else if RangePool.Sharing == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_SAME_TECH {
327 SharedPoolID = FirstIntfPoolID
328 } else {
329 SharedPoolID = 0
330 }
331 if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_ONU_ID {
332 ONUIDStart = RangePool.Start
333 ONUIDEnd = RangePool.End
334 ONUIDShared = RangePool.Sharing
335 ONUIDSharedPoolID = SharedPoolID
336 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_ALLOC_ID {
337 AllocIDStart = RangePool.Start
338 AllocIDEnd = RangePool.End
339 AllocIDShared = RangePool.Sharing
340 AllocIDSharedPoolID = SharedPoolID
341 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_GEMPORT_ID {
342 GEMPortIDStart = RangePool.Start
343 GEMPortIDEnd = RangePool.End
344 GEMPortIDShared = RangePool.Sharing
345 GEMPortIDSharedPoolID = SharedPoolID
346 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_FLOW_ID {
347 FlowIDStart = RangePool.Start
348 FlowIDEnd = RangePool.End
349 FlowIDShared = RangePool.Sharing
350 FlowIDSharedPoolID = SharedPoolID
351 }
352 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530353
Girish Kumar2ad402b2020-03-20 19:45:12 +0000354 logger.Debugw("Device info init", log.Fields{"technology": techRange.Technology,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400355 "onu_id_start": ONUIDStart, "onu_id_end": ONUIDEnd, "onu_id_shared_pool_id": ONUIDSharedPoolID,
356 "alloc_id_start": AllocIDStart, "alloc_id_end": AllocIDEnd,
357 "alloc_id_shared_pool_id": AllocIDSharedPoolID,
358 "gemport_id_start": GEMPortIDStart, "gemport_id_end": GEMPortIDEnd,
359 "gemport_id_shared_pool_id": GEMPortIDSharedPoolID,
360 "flow_id_start": FlowIDStart,
361 "flow_id_end_idx": FlowIDEnd,
362 "flow_id_shared_pool_id": FlowIDSharedPoolID,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700363 "intf_ids": techRange.IntfIds,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400364 "uni_id_start": 0,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700365 "uni_id_end_idx": 1, /*MaxUNIIDperONU()*/
366 })
Abhilash S.L7f17e402019-03-15 17:40:41 +0530367
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700368 ponRMgr.InitDefaultPONResourceRanges(ONUIDStart, ONUIDEnd, ONUIDSharedPoolID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400369 AllocIDStart, AllocIDEnd, AllocIDSharedPoolID,
370 GEMPortIDStart, GEMPortIDEnd, GEMPortIDSharedPoolID,
371 FlowIDStart, FlowIDEnd, FlowIDSharedPoolID, 0, 1,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700372 devInfo.PonPorts, techRange.IntfIds)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530373
Girish Gowdru0c588b22019-04-23 23:24:56 -0400374 // For global sharing, make sure to refresh both local and global resource manager instances' range
Abhilash S.L7f17e402019-03-15 17:40:41 +0530375
Girish Gowdru0c588b22019-04-23 23:24:56 -0400376 if ONUIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700377 globalPONRMgr.UpdateRanges(ponrmgr.ONU_ID_START_IDX, ONUIDStart, ponrmgr.ONU_ID_END_IDX, ONUIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400378 "", 0, nil)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700379 ponRMgr.UpdateRanges(ponrmgr.ONU_ID_START_IDX, ONUIDStart, ponrmgr.ONU_ID_END_IDX, ONUIDEnd,
380 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400381 }
382 if AllocIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700383 globalPONRMgr.UpdateRanges(ponrmgr.ALLOC_ID_START_IDX, AllocIDStart, ponrmgr.ALLOC_ID_END_IDX, AllocIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400384 "", 0, nil)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530385
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700386 ponRMgr.UpdateRanges(ponrmgr.ALLOC_ID_START_IDX, AllocIDStart, ponrmgr.ALLOC_ID_END_IDX, AllocIDEnd,
387 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400388 }
389 if GEMPortIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700390 globalPONRMgr.UpdateRanges(ponrmgr.GEMPORT_ID_START_IDX, GEMPortIDStart, ponrmgr.GEMPORT_ID_END_IDX, GEMPortIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400391 "", 0, nil)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700392 ponRMgr.UpdateRanges(ponrmgr.GEMPORT_ID_START_IDX, GEMPortIDStart, ponrmgr.GEMPORT_ID_END_IDX, GEMPortIDEnd,
393 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400394 }
395 if FlowIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700396 globalPONRMgr.UpdateRanges(ponrmgr.FLOW_ID_START_IDX, FlowIDStart, ponrmgr.FLOW_ID_END_IDX, FlowIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400397 "", 0, nil)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700398 ponRMgr.UpdateRanges(ponrmgr.FLOW_ID_START_IDX, FlowIDStart, ponrmgr.FLOW_ID_END_IDX, FlowIDEnd,
399 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400400 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530401
Girish Gowdru0c588b22019-04-23 23:24:56 -0400402 // Make sure loaded range fits the platform bit encoding ranges
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700403 ponRMgr.UpdateRanges(ponrmgr.UNI_ID_START_IDX, 0, ponrmgr.UNI_ID_END_IDX /* TODO =OpenOltPlatform.MAX_UNIS_PER_ONU-1*/, 1, "", 0, nil)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530404}
405
Devmalya Paul495b94a2019-08-27 19:42:00 -0400406// Delete clears used resources for the particular olt device being deleted
npujarec5762e2020-01-01 14:08:48 +0530407func (RsrcMgr *OpenOltResourceMgr) Delete(ctx context.Context) error {
Devmalya Paul495b94a2019-08-27 19:42:00 -0400408 /* TODO
409 def __del__(self):
410 self.log.info("clearing-device-resource-pool")
411 for key, resource_mgr in self.resource_mgrs.iteritems():
412 resource_mgr.clear_device_resource_pool()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530413
Devmalya Paul495b94a2019-08-27 19:42:00 -0400414 def assert_pon_id_limit(self, pon_intf_id):
415 assert pon_intf_id in self.resource_mgrs
Abhilash S.L7f17e402019-03-15 17:40:41 +0530416
Devmalya Paul495b94a2019-08-27 19:42:00 -0400417 def assert_onu_id_limit(self, pon_intf_id, onu_id):
418 self.assert_pon_id_limit(pon_intf_id)
419 self.resource_mgrs[pon_intf_id].assert_resource_limits(onu_id, PONResourceManager.ONU_ID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530420
Devmalya Paul495b94a2019-08-27 19:42:00 -0400421 @property
422 def max_uni_id_per_onu(self):
423 return 0 #OpenOltPlatform.MAX_UNIS_PER_ONU-1, zero-based indexing Uncomment or override to make default multi-uni
Abhilash S.L7f17e402019-03-15 17:40:41 +0530424
Devmalya Paul495b94a2019-08-27 19:42:00 -0400425 def assert_uni_id_limit(self, pon_intf_id, onu_id, uni_id):
426 self.assert_onu_id_limit(pon_intf_id, onu_id)
427 self.resource_mgrs[pon_intf_id].assert_resource_limits(uni_id, PONResourceManager.UNI_ID)
428 */
429 for _, rsrcMgr := range RsrcMgr.ResourceMgrs {
npujarec5762e2020-01-01 14:08:48 +0530430 if err := rsrcMgr.ClearDeviceResourcePool(ctx); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000431 logger.Debug("Failed to clear device resource pool")
Devmalya Paul495b94a2019-08-27 19:42:00 -0400432 return err
433 }
434 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000435 logger.Debug("Cleared device resource pool")
Devmalya Paul495b94a2019-08-27 19:42:00 -0400436 return nil
437}
Abhilash S.L7f17e402019-03-15 17:40:41 +0530438
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700439// GetONUID returns the available OnuID for the given pon-port
npujarec5762e2020-01-01 14:08:48 +0530440func (RsrcMgr *OpenOltResourceMgr) GetONUID(ctx context.Context, ponIntfID uint32) (uint32, error) {
salmansiddiqui352a45c2019-08-19 10:15:36 +0000441 // Check if Pon Interface ID is present in Resource-manager-map
442 if _, ok := RsrcMgr.ResourceMgrs[ponIntfID]; !ok {
443 err := errors.New("invalid-pon-interface-" + strconv.Itoa(int(ponIntfID)))
444 return 0, err
445 }
Girish Gowdra38d533d2020-03-30 20:38:51 -0700446 RsrcMgr.OnuIDMgmtLock[ponIntfID].Lock()
Girish Gowdru0c588b22019-04-23 23:24:56 -0400447 // Get ONU id for a provided pon interface ID.
npujarec5762e2020-01-01 14:08:48 +0530448 ONUID, err := RsrcMgr.ResourceMgrs[ponIntfID].GetResourceID(ctx, ponIntfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400449 ponrmgr.ONU_ID, 1)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700450 RsrcMgr.OnuIDMgmtLock[ponIntfID].Unlock()
Girish Gowdru0c588b22019-04-23 23:24:56 -0400451 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000452 logger.Errorf("Failed to get resource for interface %d for type %s",
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700453 ponIntfID, ponrmgr.ONU_ID)
cbabuabf02352019-10-15 13:14:56 +0200454 return 0, err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400455 }
456 if ONUID != nil {
npujarec5762e2020-01-01 14:08:48 +0530457 RsrcMgr.ResourceMgrs[ponIntfID].InitResourceMap(ctx, fmt.Sprintf("%d,%d", ponIntfID, ONUID[0]))
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700458 return ONUID[0], err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400459 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530460
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700461 return 0, err // return OnuID 0 on error
Abhilash S.L7f17e402019-03-15 17:40:41 +0530462}
463
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700464// GetFlowIDInfo returns the slice of flow info of the given pon-port
465// Note: For flows which trap from the NNI and not really associated with any particular
466// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
npujarec5762e2020-01-01 14:08:48 +0530467func (RsrcMgr *OpenOltResourceMgr) GetFlowIDInfo(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32, flowID uint32) *[]FlowInfo {
Abhilash S.L8ee90712019-04-29 16:24:22 +0530468 var flows []FlowInfo
469
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700470 FlowPath := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530471 if err := RsrcMgr.ResourceMgrs[ponIntfID].GetFlowIDInfo(ctx, FlowPath, flowID, &flows); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000472 logger.Errorw("Error while getting flows from KV store", log.Fields{"flowId": flowID})
Abhilash S.L8ee90712019-04-29 16:24:22 +0530473 return nil
474 }
475 if len(flows) == 0 {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000476 logger.Debugw("No flowInfo found in KV store", log.Fields{"flowPath": FlowPath})
Abhilash S.L8ee90712019-04-29 16:24:22 +0530477 return nil
478 }
479 return &flows
480}
481
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700482// GetCurrentFlowIDsForOnu fetches flow ID from the resource manager
483// Note: For flows which trap from the NNI and not really associated with any particular
484// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
npujarec5762e2020-01-01 14:08:48 +0530485func (RsrcMgr *OpenOltResourceMgr) GetCurrentFlowIDsForOnu(ctx context.Context, PONIntfID uint32, ONUID int32, UNIID int32) []uint32 {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700486
Abhilash S.L8ee90712019-04-29 16:24:22 +0530487 FlowPath := fmt.Sprintf("%d,%d,%d", PONIntfID, ONUID, UNIID)
Serkant Uluderya89ff40c2019-10-17 16:02:25 -0700488 if mgrs, exist := RsrcMgr.ResourceMgrs[PONIntfID]; exist {
npujarec5762e2020-01-01 14:08:48 +0530489 return mgrs.GetCurrentFlowIDsForOnu(ctx, FlowPath)
Serkant Uluderya89ff40c2019-10-17 16:02:25 -0700490 }
491 return nil
Abhilash S.L8ee90712019-04-29 16:24:22 +0530492}
493
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700494// UpdateFlowIDInfo updates flow info for the given pon interface, onu id, and uni id
495// Note: For flows which trap from the NNI and not really associated with any particular
496// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
npujarec5762e2020-01-01 14:08:48 +0530497func (RsrcMgr *OpenOltResourceMgr) UpdateFlowIDInfo(ctx context.Context, ponIntfID int32, onuID int32, uniID int32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700498 flowID uint32, flowData *[]FlowInfo) error {
499 FlowPath := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530500 return RsrcMgr.ResourceMgrs[uint32(ponIntfID)].UpdateFlowIDInfoForOnu(ctx, FlowPath, flowID, *flowData)
Abhilash S.L8ee90712019-04-29 16:24:22 +0530501}
502
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700503// GetFlowID return flow ID for a given pon interface id, onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530504func (RsrcMgr *OpenOltResourceMgr) GetFlowID(ctx context.Context, ponIntfID uint32, ONUID int32, uniID int32,
Manikkaraj kb1d51442019-07-23 10:41:02 -0400505 gemportID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700506 flowStoreCookie uint64,
Manikkaraj kb1d51442019-07-23 10:41:02 -0400507 flowCategory string, vlanPcp ...uint32) (uint32, error) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530508
Girish Gowdru0c588b22019-04-23 23:24:56 -0400509 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700510 FlowPath := fmt.Sprintf("%d,%d,%d", ponIntfID, ONUID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530511 FlowIDs := RsrcMgr.ResourceMgrs[ponIntfID].GetCurrentFlowIDsForOnu(ctx, FlowPath)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400512 if FlowIDs != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000513 logger.Debugw("Found flowId(s) for this ONU", log.Fields{"pon": ponIntfID, "ONUID": ONUID, "uniID": uniID, "KVpath": FlowPath})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700514 for _, flowID := range FlowIDs {
npujarec5762e2020-01-01 14:08:48 +0530515 FlowInfo := RsrcMgr.GetFlowIDInfo(ctx, ponIntfID, int32(ONUID), int32(uniID), uint32(flowID))
salmansiddiqui7ac62132019-08-22 03:58:50 +0000516 er := getFlowIDFromFlowInfo(FlowInfo, flowID, gemportID, flowStoreCookie, flowCategory, vlanPcp...)
517 if er == nil {
518 return flowID, er
Abhilash S.L8ee90712019-04-29 16:24:22 +0530519 }
520 }
Girish Gowdru0c588b22019-04-23 23:24:56 -0400521 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000522 logger.Debug("No matching flows with flow cookie or flow category, allocating new flowid")
Girish Gowdra38d533d2020-03-30 20:38:51 -0700523 RsrcMgr.FlowIDMgmtLock.Lock()
npujarec5762e2020-01-01 14:08:48 +0530524 FlowIDs, err = RsrcMgr.ResourceMgrs[ponIntfID].GetResourceID(ctx, ponIntfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400525 ponrmgr.FLOW_ID, 1)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700526 RsrcMgr.FlowIDMgmtLock.Unlock()
Girish Gowdru0c588b22019-04-23 23:24:56 -0400527 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000528 logger.Errorf("Failed to get resource for interface %d for type %s",
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700529 ponIntfID, ponrmgr.FLOW_ID)
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400530 return uint32(0), err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400531 }
532 if FlowIDs != nil {
npujarec5762e2020-01-01 14:08:48 +0530533 _ = RsrcMgr.ResourceMgrs[ponIntfID].UpdateFlowIDForOnu(ctx, FlowPath, FlowIDs[0], true)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700534 return FlowIDs[0], err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400535 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530536
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700537 return 0, err
Abhilash S.L7f17e402019-03-15 17:40:41 +0530538}
539
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700540// GetAllocID return the first Alloc ID for a given pon interface id and onu id and then update the resource map on
541// the KV store with the list of alloc_ids allocated for the pon_intf_onu_id tuple
542// Currently of all the alloc_ids available, it returns the first alloc_id in the list for tha given ONU
npujarec5762e2020-01-01 14:08:48 +0530543func (RsrcMgr *OpenOltResourceMgr) GetAllocID(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530544
Girish Gowdru0c588b22019-04-23 23:24:56 -0400545 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700546 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530547 AllocID := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400548 if AllocID != nil {
549 // Since we support only one alloc_id for the ONU at the moment,
550 // return the first alloc_id in the list, if available, for that
551 // ONU.
Girish Kumar2ad402b2020-03-20 19:45:12 +0000552 logger.Debugw("Retrieved alloc ID from pon resource mgr", log.Fields{"AllocID": AllocID})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400553 return AllocID[0]
554 }
Girish Gowdra38d533d2020-03-30 20:38:51 -0700555 RsrcMgr.AllocIDMgmtLock[intfID].Lock()
npujarec5762e2020-01-01 14:08:48 +0530556 AllocID, err = RsrcMgr.ResourceMgrs[intfID].GetResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400557 ponrmgr.ALLOC_ID, 1)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700558 RsrcMgr.AllocIDMgmtLock[intfID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530559
Girish Gowdru0c588b22019-04-23 23:24:56 -0400560 if AllocID == nil || err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000561 logger.Error("Failed to allocate alloc id")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400562 return 0
563 }
564 // update the resource map on KV store with the list of alloc_id
565 // allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530566 err = RsrcMgr.ResourceMgrs[intfID].UpdateAllocIdsForOnu(ctx, IntfOnuIDUniID, AllocID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400567 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000568 logger.Error("Failed to update Alloc ID")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400569 return 0
570 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000571 logger.Debugw("Allocated new Tcont from pon resource mgr", log.Fields{"AllocID": AllocID})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400572 return AllocID[0]
Abhilash S.L7f17e402019-03-15 17:40:41 +0530573}
574
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700575// UpdateAllocIdsForOnu updates alloc ids in kv store for a given pon interface id, onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530576func (RsrcMgr *OpenOltResourceMgr) UpdateAllocIdsForOnu(ctx context.Context, ponPort uint32, onuID uint32, uniID uint32, allocID []uint32) error {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530577
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700578 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530579 return RsrcMgr.ResourceMgrs[ponPort].UpdateAllocIdsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700580 allocID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530581}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700582
583// GetCurrentGEMPortIDsForOnu returns gem ports for given pon interface , onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530584func (RsrcMgr *OpenOltResourceMgr) GetCurrentGEMPortIDsForOnu(ctx context.Context, intfID uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700585 uniID uint32) []uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530586
Girish Gowdru0c588b22019-04-23 23:24:56 -0400587 /* Get gem ports for given pon interface , onu id and uni id. */
Abhilash S.L7f17e402019-03-15 17:40:41 +0530588
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700589 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530590 return RsrcMgr.ResourceMgrs[intfID].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530591}
592
Gamze Abakafee36392019-10-03 11:17:24 +0000593// GetCurrentAllocIDsForOnu returns alloc ids for given pon interface and onu id
npujarec5762e2020-01-01 14:08:48 +0530594func (RsrcMgr *OpenOltResourceMgr) GetCurrentAllocIDsForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) []uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530595
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700596 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530597 AllocID := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400598 if AllocID != nil {
Gamze Abakafee36392019-10-03 11:17:24 +0000599 return AllocID
Girish Gowdru0c588b22019-04-23 23:24:56 -0400600 }
Gamze Abakafee36392019-10-03 11:17:24 +0000601 return []uint32{}
602}
603
604// RemoveAllocIDForOnu removes the alloc id for given pon interface, onu id, uni id and alloc id
npujarec5762e2020-01-01 14:08:48 +0530605func (RsrcMgr *OpenOltResourceMgr) RemoveAllocIDForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32, allocID uint32) {
606 allocIDs := RsrcMgr.GetCurrentAllocIDsForOnu(ctx, intfID, onuID, uniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000607 for i := 0; i < len(allocIDs); i++ {
608 if allocIDs[i] == allocID {
609 allocIDs = append(allocIDs[:i], allocIDs[i+1:]...)
610 break
611 }
612 }
npujarec5762e2020-01-01 14:08:48 +0530613 err := RsrcMgr.UpdateAllocIdsForOnu(ctx, intfID, onuID, uniID, allocIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000614 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000615 logger.Errorf("Failed to Remove Alloc Id For Onu. IntfID %d onuID %d uniID %d allocID %d",
Gamze Abakafee36392019-10-03 11:17:24 +0000616 intfID, onuID, uniID, allocID)
617 }
618}
619
620// RemoveGemPortIDForOnu removes the gem port id for given pon interface, onu id, uni id and gem port id
npujarec5762e2020-01-01 14:08:48 +0530621func (RsrcMgr *OpenOltResourceMgr) RemoveGemPortIDForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32, gemPortID uint32) {
622 gemPortIDs := RsrcMgr.GetCurrentGEMPortIDsForOnu(ctx, intfID, onuID, uniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000623 for i := 0; i < len(gemPortIDs); i++ {
624 if gemPortIDs[i] == gemPortID {
625 gemPortIDs = append(gemPortIDs[:i], gemPortIDs[i+1:]...)
626 break
627 }
628 }
npujarec5762e2020-01-01 14:08:48 +0530629 err := RsrcMgr.UpdateGEMPortIDsForOnu(ctx, intfID, onuID, uniID, gemPortIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000630 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000631 logger.Errorf("Failed to Remove Gem Id For Onu. IntfID %d onuID %d uniID %d gemPortId %d",
Gamze Abakafee36392019-10-03 11:17:24 +0000632 intfID, onuID, uniID, gemPortID)
633 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530634}
635
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700636// UpdateGEMportsPonportToOnuMapOnKVStore updates onu and uni id associated with the gem port to the kv store
637// This stored information is used when packet_indication is received and we need to derive the ONU Id for which
638// the packet arrived based on the pon_intf and gemport available in the packet_indication
npujarec5762e2020-01-01 14:08:48 +0530639func (RsrcMgr *OpenOltResourceMgr) UpdateGEMportsPonportToOnuMapOnKVStore(ctx context.Context, gemPorts []uint32, PonPort uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700640 onuID uint32, uniID uint32) error {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530641
Girish Gowdru0c588b22019-04-23 23:24:56 -0400642 /* Update onu and uni id associated with the gem port to the kv store. */
643 var IntfGEMPortPath string
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700644 Data := fmt.Sprintf("%d %d", onuID, uniID)
645 for _, GEM := range gemPorts {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400646 IntfGEMPortPath = fmt.Sprintf("%d,%d", PonPort, GEM)
647 Val, err := json.Marshal(Data)
648 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000649 logger.Error("failed to Marshal")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400650 return err
651 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700652
npujarec5762e2020-01-01 14:08:48 +0530653 if err = RsrcMgr.KVStore.Put(ctx, IntfGEMPortPath, Val); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000654 logger.Errorf("Failed to update resource %s", IntfGEMPortPath)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400655 return err
656 }
657 }
658 return nil
Abhilash S.L7f17e402019-03-15 17:40:41 +0530659}
660
Gamze Abakafee36392019-10-03 11:17:24 +0000661// RemoveGEMportPonportToOnuMapOnKVStore removes the relationship between the gem port and pon port
npujarec5762e2020-01-01 14:08:48 +0530662func (RsrcMgr *OpenOltResourceMgr) RemoveGEMportPonportToOnuMapOnKVStore(ctx context.Context, GemPort uint32, PonPort uint32) {
Gamze Abakafee36392019-10-03 11:17:24 +0000663 IntfGEMPortPath := fmt.Sprintf("%d,%d", PonPort, GemPort)
npujarec5762e2020-01-01 14:08:48 +0530664 err := RsrcMgr.KVStore.Delete(ctx, IntfGEMPortPath)
Gamze Abakafee36392019-10-03 11:17:24 +0000665 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000666 logger.Errorf("Failed to Remove Gem port-Pon port to onu map on kv store. Gem %d PonPort %d", GemPort, PonPort)
Gamze Abakafee36392019-10-03 11:17:24 +0000667 }
668}
669
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700670// GetGEMPortID gets gem port id for a particular pon port, onu id and uni id and then update the resource map on
671// the KV store with the list of gemport_id allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530672func (RsrcMgr *OpenOltResourceMgr) GetGEMPortID(ctx context.Context, ponPort uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700673 uniID uint32, NumOfPorts uint32) ([]uint32, error) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530674
Girish Gowdru0c588b22019-04-23 23:24:56 -0400675 /* Get gem port id for a particular pon port, onu id
676 and uni id.
677 */
Abhilash S.L7f17e402019-03-15 17:40:41 +0530678
Girish Gowdru0c588b22019-04-23 23:24:56 -0400679 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700680 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530681
npujarec5762e2020-01-01 14:08:48 +0530682 GEMPortList := RsrcMgr.ResourceMgrs[ponPort].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400683 if GEMPortList != nil {
684 return GEMPortList, nil
685 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530686
Girish Gowdra38d533d2020-03-30 20:38:51 -0700687 RsrcMgr.GemPortIDMgmtLock[ponPort].Lock()
npujarec5762e2020-01-01 14:08:48 +0530688 GEMPortList, err = RsrcMgr.ResourceMgrs[ponPort].GetResourceID(ctx, ponPort,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400689 ponrmgr.GEMPORT_ID, NumOfPorts)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700690 RsrcMgr.GemPortIDMgmtLock[ponPort].Unlock()
Girish Gowdru0c588b22019-04-23 23:24:56 -0400691 if err != nil && GEMPortList == nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000692 logger.Errorf("Failed to get gem port id for %s", IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400693 return nil, err
694 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530695
Girish Gowdru0c588b22019-04-23 23:24:56 -0400696 // update the resource map on KV store with the list of gemport_id
697 // allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530698 err = RsrcMgr.ResourceMgrs[ponPort].UpdateGEMPortIDsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400699 GEMPortList)
700 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000701 logger.Errorf("Failed to update GEM ports to kv store for %s", IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400702 return nil, err
703 }
npujarec5762e2020-01-01 14:08:48 +0530704 _ = RsrcMgr.UpdateGEMportsPonportToOnuMapOnKVStore(ctx, GEMPortList, ponPort,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700705 onuID, uniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400706 return GEMPortList, err
Abhilash S.L7f17e402019-03-15 17:40:41 +0530707}
708
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700709// UpdateGEMPortIDsForOnu updates gemport ids on to the kv store for a given pon port, onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530710func (RsrcMgr *OpenOltResourceMgr) UpdateGEMPortIDsForOnu(ctx context.Context, ponPort uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700711 uniID uint32, GEMPortList []uint32) error {
712 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530713 return RsrcMgr.ResourceMgrs[ponPort].UpdateGEMPortIDsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400714 GEMPortList)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530715
716}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700717
718// FreeonuID releases(make free) onu id for a particular pon-port
npujarec5762e2020-01-01 14:08:48 +0530719func (RsrcMgr *OpenOltResourceMgr) FreeonuID(ctx context.Context, intfID uint32, onuID []uint32) {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700720
Girish Gowdra38d533d2020-03-30 20:38:51 -0700721 RsrcMgr.OnuIDMgmtLock[intfID].Lock()
npujarec5762e2020-01-01 14:08:48 +0530722 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID, ponrmgr.ONU_ID, onuID)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700723 RsrcMgr.OnuIDMgmtLock[intfID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530724
Girish Gowdru0c588b22019-04-23 23:24:56 -0400725 /* Free onu id for a particular interface.*/
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700726 var IntfonuID string
727 for _, onu := range onuID {
728 IntfonuID = fmt.Sprintf("%d,%d", intfID, onu)
npujarec5762e2020-01-01 14:08:48 +0530729 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfonuID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400730 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530731}
732
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700733// FreeFlowID returns the free flow id for a given interface, onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530734func (RsrcMgr *OpenOltResourceMgr) FreeFlowID(ctx context.Context, IntfID uint32, onuID int32,
Devmalya Paul495b94a2019-08-27 19:42:00 -0400735 uniID int32, FlowID uint32) {
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -0400736 var IntfONUID string
737 var err error
Abhilash Laxmeshwar83695912019-10-01 14:37:19 +0530738 FlowIds := make([]uint32, 0)
739
740 FlowIds = append(FlowIds, FlowID)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700741 IntfONUID = fmt.Sprintf("%d,%d,%d", IntfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530742 err = RsrcMgr.ResourceMgrs[IntfID].UpdateFlowIDForOnu(ctx, IntfONUID, FlowID, false)
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -0400743 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000744 logger.Errorw("Failed to Update flow id for", log.Fields{"intf": IntfONUID})
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -0400745 }
npujarec5762e2020-01-01 14:08:48 +0530746 RsrcMgr.ResourceMgrs[IntfID].RemoveFlowIDInfo(ctx, IntfONUID, FlowID)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700747 RsrcMgr.FlowIDMgmtLock.Lock()
748 defer RsrcMgr.FlowIDMgmtLock.Unlock()
npujarec5762e2020-01-01 14:08:48 +0530749 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.FLOW_ID, FlowIds)
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -0400750}
751
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700752// FreeFlowIDs releases the flow Ids
npujarec5762e2020-01-01 14:08:48 +0530753func (RsrcMgr *OpenOltResourceMgr) FreeFlowIDs(ctx context.Context, IntfID uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700754 uniID uint32, FlowID []uint32) {
Girish Gowdra38d533d2020-03-30 20:38:51 -0700755 RsrcMgr.FlowIDMgmtLock.Lock()
npujarec5762e2020-01-01 14:08:48 +0530756 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.FLOW_ID, FlowID)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700757 RsrcMgr.FlowIDMgmtLock.Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530758
Abhilash S.L8ee90712019-04-29 16:24:22 +0530759 var IntfOnuIDUniID string
Girish Gowdru0c588b22019-04-23 23:24:56 -0400760 var err error
761 for _, flow := range FlowID {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700762 IntfOnuIDUniID = fmt.Sprintf("%d,%d,%d", IntfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530763 err = RsrcMgr.ResourceMgrs[IntfID].UpdateFlowIDForOnu(ctx, IntfOnuIDUniID, flow, false)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400764 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000765 logger.Errorw("Failed to Update flow id for", log.Fields{"intf": IntfOnuIDUniID})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400766 }
npujarec5762e2020-01-01 14:08:48 +0530767 RsrcMgr.ResourceMgrs[IntfID].RemoveFlowIDInfo(ctx, IntfOnuIDUniID, flow)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400768 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530769}
770
Gamze Abakafee36392019-10-03 11:17:24 +0000771// FreeAllocID frees AllocID on the PON resource pool and also frees the allocID association
772// for the given OLT device.
npujarec5762e2020-01-01 14:08:48 +0530773func (RsrcMgr *OpenOltResourceMgr) FreeAllocID(ctx context.Context, IntfID uint32, onuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000774 uniID uint32, allocID uint32) {
npujarec5762e2020-01-01 14:08:48 +0530775 RsrcMgr.RemoveAllocIDForOnu(ctx, IntfID, onuID, uniID, allocID)
Gamze Abakafee36392019-10-03 11:17:24 +0000776 allocIDs := make([]uint32, 0)
777 allocIDs = append(allocIDs, allocID)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700778 RsrcMgr.AllocIDMgmtLock[IntfID].Lock()
779 defer RsrcMgr.AllocIDMgmtLock[IntfID].Unlock()
npujarec5762e2020-01-01 14:08:48 +0530780 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.ALLOC_ID, allocIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000781}
782
783// FreeGemPortID frees GemPortID on the PON resource pool and also frees the gemPortID association
784// for the given OLT device.
npujarec5762e2020-01-01 14:08:48 +0530785func (RsrcMgr *OpenOltResourceMgr) FreeGemPortID(ctx context.Context, IntfID uint32, onuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000786 uniID uint32, gemPortID uint32) {
npujarec5762e2020-01-01 14:08:48 +0530787 RsrcMgr.RemoveGemPortIDForOnu(ctx, IntfID, onuID, uniID, gemPortID)
Gamze Abakafee36392019-10-03 11:17:24 +0000788 gemPortIDs := make([]uint32, 0)
789 gemPortIDs = append(gemPortIDs, gemPortID)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700790 RsrcMgr.GemPortIDMgmtLock[IntfID].Lock()
791 defer RsrcMgr.GemPortIDMgmtLock[IntfID].Unlock()
npujarec5762e2020-01-01 14:08:48 +0530792 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.GEMPORT_ID, gemPortIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000793}
794
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700795// FreePONResourcesForONU make the pon resources free for a given pon interface and onu id, and the clears the
796// resource map and the onuID associated with (pon_intf_id, gemport_id) tuple,
npujarec5762e2020-01-01 14:08:48 +0530797func (RsrcMgr *OpenOltResourceMgr) FreePONResourcesForONU(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530798
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700799 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530800
npujarec5762e2020-01-01 14:08:48 +0530801 AllocIDs := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530802
Girish Gowdra38d533d2020-03-30 20:38:51 -0700803 RsrcMgr.AllocIDMgmtLock[onuID].Lock()
npujarec5762e2020-01-01 14:08:48 +0530804 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400805 ponrmgr.ALLOC_ID,
806 AllocIDs)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700807 RsrcMgr.AllocIDMgmtLock[onuID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530808
Girish Gowdra38d533d2020-03-30 20:38:51 -0700809 RsrcMgr.GemPortIDMgmtLock[onuID].Lock()
npujarec5762e2020-01-01 14:08:48 +0530810 GEMPortIDs := RsrcMgr.ResourceMgrs[intfID].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
811 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400812 ponrmgr.GEMPORT_ID,
813 GEMPortIDs)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700814 RsrcMgr.GemPortIDMgmtLock[onuID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530815
Girish Gowdra38d533d2020-03-30 20:38:51 -0700816 RsrcMgr.FlowIDMgmtLock.Lock()
npujarec5762e2020-01-01 14:08:48 +0530817 FlowIDs := RsrcMgr.ResourceMgrs[intfID].GetCurrentFlowIDsForOnu(ctx, IntfOnuIDUniID)
818 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400819 ponrmgr.FLOW_ID,
820 FlowIDs)
Girish Gowdra38d533d2020-03-30 20:38:51 -0700821 RsrcMgr.FlowIDMgmtLock.Unlock()
822
Girish Gowdru0c588b22019-04-23 23:24:56 -0400823 // Clear resource map associated with (pon_intf_id, gemport_id) tuple.
npujarec5762e2020-01-01 14:08:48 +0530824 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400825 // Clear the ONU Id associated with the (pon_intf_id, gemport_id) tuple.
826 for _, GEM := range GEMPortIDs {
npujarec5762e2020-01-01 14:08:48 +0530827 _ = RsrcMgr.KVStore.Delete(ctx, fmt.Sprintf("%d,%d", intfID, GEM))
Girish Gowdru0c588b22019-04-23 23:24:56 -0400828 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530829}
830
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700831// IsFlowCookieOnKVStore checks if the given flow cookie is present on the kv store
832// Returns true if the flow cookie is found, otherwise it returns false
npujarec5762e2020-01-01 14:08:48 +0530833func (RsrcMgr *OpenOltResourceMgr) IsFlowCookieOnKVStore(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700834 flowStoreCookie uint64) bool {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530835
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700836 FlowPath := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530837 FlowIDs := RsrcMgr.ResourceMgrs[ponIntfID].GetCurrentFlowIDsForOnu(ctx, FlowPath)
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400838 if FlowIDs != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000839 logger.Debugw("Found flowId(s) for this ONU", log.Fields{"pon": ponIntfID, "onuID": onuID, "uniID": uniID, "KVpath": FlowPath})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700840 for _, flowID := range FlowIDs {
npujarec5762e2020-01-01 14:08:48 +0530841 FlowInfo := RsrcMgr.GetFlowIDInfo(ctx, ponIntfID, int32(onuID), int32(uniID), uint32(flowID))
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400842 if FlowInfo != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000843 logger.Debugw("Found flows", log.Fields{"flows": *FlowInfo, "flowId": flowID})
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400844 for _, Info := range *FlowInfo {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700845 if Info.FlowStoreCookie == flowStoreCookie {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000846 logger.Debug("Found flow matching with flowStore cookie", log.Fields{"flowId": flowID, "flowStoreCookie": flowStoreCookie})
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400847 return true
848 }
849 }
850 }
851 }
852 }
853 return false
854}
Manikkaraj kb1d51442019-07-23 10:41:02 -0400855
salmansiddiqui7ac62132019-08-22 03:58:50 +0000856// GetTechProfileIDForOnu fetches Tech-Profile-ID from the KV-Store for the given onu based on the path
Gamze Abakafee36392019-10-03 11:17:24 +0000857// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530858func (RsrcMgr *OpenOltResourceMgr) GetTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32) []uint32 {
salmansiddiqui7ac62132019-08-22 03:58:50 +0000859 Path := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000860 var Data []uint32
npujarec5762e2020-01-01 14:08:48 +0530861 Value, err := RsrcMgr.KVStore.Get(ctx, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400862 if err == nil {
863 if Value != nil {
864 Val, err := kvstore.ToByte(Value.Value)
865 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000866 logger.Errorw("Failed to convert into byte array", log.Fields{"error": err})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400867 return Data
868 }
869 if err = json.Unmarshal(Val, &Data); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000870 logger.Error("Failed to unmarshal", log.Fields{"error": err})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400871 return Data
872 }
873 }
874 } else {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000875 logger.Errorf("Failed to get TP id from kvstore for path %s", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400876 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000877 logger.Debugf("Getting TP id %d from path %s", Data, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400878 return Data
879
880}
881
Gamze Abakafee36392019-10-03 11:17:24 +0000882// RemoveTechProfileIDsForOnu deletes all tech profile ids from the KV-Store for the given onu based on the path
883// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530884func (RsrcMgr *OpenOltResourceMgr) RemoveTechProfileIDsForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32) error {
salmansiddiqui7ac62132019-08-22 03:58:50 +0000885 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
npujarec5762e2020-01-01 14:08:48 +0530886 if err := RsrcMgr.KVStore.Delete(ctx, IntfOnuUniID); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000887 logger.Errorw("Failed to delete techprofile id resource in KV store", log.Fields{"path": IntfOnuUniID})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400888 return err
889 }
890 return nil
891}
892
Gamze Abakafee36392019-10-03 11:17:24 +0000893// RemoveTechProfileIDForOnu deletes a specific tech profile id from the KV-Store for the given onu based on the path
894// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530895func (RsrcMgr *OpenOltResourceMgr) RemoveTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32, TpID uint32) error {
896 tpIDList := RsrcMgr.GetTechProfileIDForOnu(ctx, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000897 for i, tpIDInList := range tpIDList {
898 if tpIDInList == TpID {
899 tpIDList = append(tpIDList[:i], tpIDList[i+1:]...)
900 }
901 }
902 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
903 Value, err := json.Marshal(tpIDList)
904 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000905 logger.Error("failed to Marshal")
Gamze Abakafee36392019-10-03 11:17:24 +0000906 return err
907 }
npujarec5762e2020-01-01 14:08:48 +0530908 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000909 logger.Errorf("Failed to update resource %s", IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000910 return err
911 }
912 return err
913}
914
915// UpdateTechProfileIDForOnu updates (put) already present tech-profile-id for the given onu based on the path
916// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530917func (RsrcMgr *OpenOltResourceMgr) UpdateTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32,
salmansiddiqui7ac62132019-08-22 03:58:50 +0000918 UniID uint32, TpID uint32) error {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400919 var Value []byte
920 var err error
921
salmansiddiqui7ac62132019-08-22 03:58:50 +0000922 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000923
npujarec5762e2020-01-01 14:08:48 +0530924 tpIDList := RsrcMgr.GetTechProfileIDForOnu(ctx, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000925 for _, value := range tpIDList {
926 if value == TpID {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000927 logger.Debugf("TpID %d is already in tpIdList for the path %s", TpID, IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000928 return err
929 }
930 }
Girish Kumar2ad402b2020-03-20 19:45:12 +0000931 logger.Debugf("updating tp id %d on path %s", TpID, IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000932 tpIDList = append(tpIDList, TpID)
933 Value, err = json.Marshal(tpIDList)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400934 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000935 logger.Error("failed to Marshal")
Manikkaraj kb1d51442019-07-23 10:41:02 -0400936 return err
937 }
npujarec5762e2020-01-01 14:08:48 +0530938 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000939 logger.Errorf("Failed to update resource %s", IntfOnuUniID)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400940 return err
941 }
942 return err
943}
944
salmansiddiqui7ac62132019-08-22 03:58:50 +0000945// UpdateMeterIDForOnu updates the meter id in the KV-Store for the given onu based on the path
Gamze Abakafee36392019-10-03 11:17:24 +0000946// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +0530947func (RsrcMgr *OpenOltResourceMgr) UpdateMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000948 UniID uint32, TpID uint32, MeterConfig *ofp.OfpMeterConfig) error {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400949 var Value []byte
950 var err error
951
Gamze Abakafee36392019-10-03 11:17:24 +0000952 IntfOnuUniID := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400953 Value, err = json.Marshal(*MeterConfig)
954 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000955 logger.Error("failed to Marshal meter config")
Manikkaraj kb1d51442019-07-23 10:41:02 -0400956 return err
957 }
npujarec5762e2020-01-01 14:08:48 +0530958 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000959 logger.Errorf("Failed to store meter into KV store %s", IntfOnuUniID)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400960 return err
961 }
962 return err
963}
964
Gamze Abakafee36392019-10-03 11:17:24 +0000965// GetMeterIDForOnu fetches the meter id from the kv store for the given onu based on the path
966// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +0530967func (RsrcMgr *OpenOltResourceMgr) GetMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000968 UniID uint32, TpID uint32) (*ofp.OfpMeterConfig, error) {
969 Path := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400970 var meterConfig ofp.OfpMeterConfig
npujarec5762e2020-01-01 14:08:48 +0530971 Value, err := RsrcMgr.KVStore.Get(ctx, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400972 if err == nil {
973 if Value != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000974 logger.Debug("Found meter in KV store", log.Fields{"Direction": Direction})
salmansiddiqui7ac62132019-08-22 03:58:50 +0000975 Val, er := kvstore.ToByte(Value.Value)
976 if er != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000977 logger.Errorw("Failed to convert into byte array", log.Fields{"error": er})
salmansiddiqui7ac62132019-08-22 03:58:50 +0000978 return nil, er
Manikkaraj kb1d51442019-07-23 10:41:02 -0400979 }
salmansiddiqui7ac62132019-08-22 03:58:50 +0000980 if er = json.Unmarshal(Val, &meterConfig); er != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000981 logger.Error("Failed to unmarshal meterconfig", log.Fields{"error": er})
salmansiddiqui7ac62132019-08-22 03:58:50 +0000982 return nil, er
Manikkaraj kb1d51442019-07-23 10:41:02 -0400983 }
984 } else {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000985 logger.Debug("meter-does-not-exists-in-KVStore")
Manikkaraj kb1d51442019-07-23 10:41:02 -0400986 return nil, err
987 }
988 } else {
Girish Kumar2ad402b2020-03-20 19:45:12 +0000989 logger.Errorf("Failed to get Meter config from kvstore for path %s", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400990
991 }
992 return &meterConfig, err
993}
994
Gamze Abakafee36392019-10-03 11:17:24 +0000995// RemoveMeterIDForOnu deletes the meter id from the kV-Store for the given onu based on the path
996// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +0530997func (RsrcMgr *OpenOltResourceMgr) RemoveMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000998 UniID uint32, TpID uint32) error {
999 Path := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
npujarec5762e2020-01-01 14:08:48 +05301000 if err := RsrcMgr.KVStore.Delete(ctx, Path); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001001 logger.Errorf("Failed to delete meter id %s from kvstore ", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001002 return err
1003 }
1004 return nil
1005}
salmansiddiqui7ac62132019-08-22 03:58:50 +00001006
1007func getFlowIDFromFlowInfo(FlowInfo *[]FlowInfo, flowID, gemportID uint32, flowStoreCookie uint64, flowCategory string, vlanPcp ...uint32) error {
1008 if FlowInfo != nil {
1009 for _, Info := range *FlowInfo {
1010 if int32(gemportID) == Info.Flow.GemportId && flowCategory != "" && Info.FlowCategory == flowCategory {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001011 logger.Debug("Found flow matching with flow category", log.Fields{"flowId": flowID, "FlowCategory": flowCategory})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001012 if Info.FlowCategory == "HSIA_FLOW" && Info.Flow.Classifier.OPbits == vlanPcp[0] {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001013 logger.Debug("Found matching vlan pcp ", log.Fields{"flowId": flowID, "Vlanpcp": vlanPcp[0]})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001014 return nil
1015 }
1016 }
1017 if int32(gemportID) == Info.Flow.GemportId && flowStoreCookie != 0 && Info.FlowStoreCookie == flowStoreCookie {
1018 if flowCategory != "" && Info.FlowCategory == flowCategory {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001019 logger.Debug("Found flow matching with flow category", log.Fields{"flowId": flowID, "FlowCategory": flowCategory})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001020 return nil
1021 }
1022 }
1023 }
1024 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001025 logger.Debugw("the flow can be related to a different service", log.Fields{"flow_info": FlowInfo})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001026 return errors.New("invalid flow-info")
1027}
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301028
1029//AddGemToOnuGemInfo adds gemport to onugem info kvstore
npujarec5762e2020-01-01 14:08:48 +05301030func (RsrcMgr *OpenOltResourceMgr) AddGemToOnuGemInfo(ctx context.Context, intfID uint32, onuID uint32, gemPort uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301031 var onuGemData []OnuGemInfo
1032 var err error
1033
npujarec5762e2020-01-01 14:08:48 +05301034 if err = RsrcMgr.ResourceMgrs[intfID].GetOnuGemInfo(ctx, intfID, &onuGemData); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001035 logger.Errorf("failed to get onuifo for intfid %d", intfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301036 return err
1037 }
1038 if len(onuGemData) == 0 {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001039 logger.Errorw("failed to ger Onuid info ", log.Fields{"intfid": intfID, "onuid": onuID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301040 return err
1041 }
1042
1043 for idx, onugem := range onuGemData {
1044 if onugem.OnuID == onuID {
1045 for _, gem := range onuGemData[idx].GemPorts {
1046 if gem == gemPort {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001047 logger.Debugw("Gem already present in onugem info, skpping addition", log.Fields{"gem": gem})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301048 return nil
1049 }
1050 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001051 logger.Debugw("Added gem to onugem info", log.Fields{"gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301052 onuGemData[idx].GemPorts = append(onuGemData[idx].GemPorts, gemPort)
1053 break
1054 }
1055 }
npujarec5762e2020-01-01 14:08:48 +05301056 err = RsrcMgr.ResourceMgrs[intfID].AddOnuGemInfo(ctx, intfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301057 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001058 logger.Error("Failed to add onugem to kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301059 return err
1060 }
1061 return err
1062}
1063
1064//GetOnuGemInfo gets onu gem info from the kvstore per interface
npujarec5762e2020-01-01 14:08:48 +05301065func (RsrcMgr *OpenOltResourceMgr) GetOnuGemInfo(ctx context.Context, IntfID uint32) ([]OnuGemInfo, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301066 var onuGemData []OnuGemInfo
1067
npujarec5762e2020-01-01 14:08:48 +05301068 if err := RsrcMgr.ResourceMgrs[IntfID].GetOnuGemInfo(ctx, IntfID, &onuGemData); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001069 logger.Errorf("failed to get onuifo for intfid %d", IntfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301070 return nil, err
1071 }
1072
1073 return onuGemData, nil
1074}
1075
Chaitrashree G S1a55b882020-02-04 17:35:35 -05001076// AddOnuGemInfo adds onu info on to the kvstore per interface
1077func (RsrcMgr *OpenOltResourceMgr) AddOnuGemInfo(ctx context.Context, IntfID uint32, onuGem OnuGemInfo) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301078 var onuGemData []OnuGemInfo
1079 var err error
1080
npujarec5762e2020-01-01 14:08:48 +05301081 if err = RsrcMgr.ResourceMgrs[IntfID].GetOnuGemInfo(ctx, IntfID, &onuGemData); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001082 logger.Errorf("failed to get onuifo for intfid %d", IntfID)
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001083 return olterrors.NewErrPersistence("get", "OnuGemInfo", IntfID,
1084 log.Fields{"onuGem": onuGem, "intfID": IntfID}, err)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301085 }
1086 onuGemData = append(onuGemData, onuGem)
npujarec5762e2020-01-01 14:08:48 +05301087 err = RsrcMgr.ResourceMgrs[IntfID].AddOnuGemInfo(ctx, IntfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301088 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001089 logger.Error("Failed to add onugem to kv store")
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001090 return olterrors.NewErrPersistence("set", "OnuGemInfo", IntfID,
1091 log.Fields{"onuGemData": onuGemData, "intfID": IntfID}, err)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301092 }
1093
Girish Kumar2ad402b2020-03-20 19:45:12 +00001094 logger.Debugw("added onu to onugeminfo", log.Fields{"intf": IntfID, "onugem": onuGem})
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001095 return nil
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301096}
1097
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301098// AddUniPortToOnuInfo adds uni port to the onuinfo kvstore. check if the uni is already present if not update the kv store.
npujarec5762e2020-01-01 14:08:48 +05301099func (RsrcMgr *OpenOltResourceMgr) AddUniPortToOnuInfo(ctx context.Context, intfID uint32, onuID uint32, portNo uint32) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301100 var onuGemData []OnuGemInfo
1101 var err error
1102
npujarec5762e2020-01-01 14:08:48 +05301103 if err = RsrcMgr.ResourceMgrs[intfID].GetOnuGemInfo(ctx, intfID, &onuGemData); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001104 logger.Errorf("failed to get onuifo for intfid %d", intfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301105 return
1106 }
1107 for idx, onu := range onuGemData {
1108 if onu.OnuID == onuID {
1109 for _, uni := range onu.UniPorts {
1110 if uni == portNo {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001111 logger.Debugw("uni already present in onugem info", log.Fields{"uni": portNo})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301112 return
1113 }
1114 }
1115 onuGemData[idx].UniPorts = append(onuGemData[idx].UniPorts, portNo)
1116 break
1117 }
1118 }
npujarec5762e2020-01-01 14:08:48 +05301119 err = RsrcMgr.ResourceMgrs[intfID].AddOnuGemInfo(ctx, intfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301120 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001121 logger.Errorw("Failed to add uin port in onugem to kv store", log.Fields{"uni": portNo})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301122 return
1123 }
1124 return
1125}
1126
1127//UpdateGemPortForPktIn updates gemport for pkt in path to kvstore, path being intfid, onuid, portno
npujarec5762e2020-01-01 14:08:48 +05301128func (RsrcMgr *OpenOltResourceMgr) UpdateGemPortForPktIn(ctx context.Context, pktIn PacketInInfoKey, gemPort uint32) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301129
1130 path := fmt.Sprintf(OnuPacketINPath, pktIn.IntfID, pktIn.OnuID, pktIn.LogicalPort)
1131 Value, err := json.Marshal(gemPort)
1132 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001133 logger.Error("Failed to marshal data")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301134 return
1135 }
npujarec5762e2020-01-01 14:08:48 +05301136 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001137 logger.Errorw("Failed to put to kvstore", log.Fields{"path": path, "value": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301138 return
1139 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001140 logger.Debugw("added gem packet in successfully", log.Fields{"path": path, "gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301141
1142 return
1143}
1144
1145// GetGemPortFromOnuPktIn gets the gem port from onu pkt in path, path being intfid, onuid, portno
npujarec5762e2020-01-01 14:08:48 +05301146func (RsrcMgr *OpenOltResourceMgr) GetGemPortFromOnuPktIn(ctx context.Context, intfID uint32, onuID uint32, logicalPort uint32) (uint32, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301147
1148 var Val []byte
1149 var gemPort uint32
1150
1151 path := fmt.Sprintf(OnuPacketINPath, intfID, onuID, logicalPort)
1152
npujarec5762e2020-01-01 14:08:48 +05301153 value, err := RsrcMgr.KVStore.Get(ctx, path)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301154 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001155 logger.Errorw("Failed to get from kv store", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301156 return uint32(0), err
1157 } else if value == nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001158 logger.Debugw("No pkt in gem found", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301159 return uint32(0), nil
1160 }
1161
1162 if Val, err = kvstore.ToByte(value.Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001163 logger.Error("Failed to convert to byte array")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301164 return uint32(0), err
1165 }
1166 if err = json.Unmarshal(Val, &gemPort); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001167 logger.Error("Failed to unmarshall")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301168 return uint32(0), err
1169 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001170 logger.Debugw("found packein gemport from path", log.Fields{"path": path, "gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301171
1172 return gemPort, nil
1173}
1174
1175// DelGemPortPktIn deletes the gemport from the pkt in path
npujarec5762e2020-01-01 14:08:48 +05301176func (RsrcMgr *OpenOltResourceMgr) DelGemPortPktIn(ctx context.Context, intfID uint32, onuID uint32, logicalPort uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301177
1178 path := fmt.Sprintf(OnuPacketINPath, intfID, onuID, logicalPort)
npujarec5762e2020-01-01 14:08:48 +05301179 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001180 logger.Errorf("Falied to remove resource %s", path)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301181 return err
1182 }
1183 return nil
1184}
1185
1186// DelOnuGemInfoForIntf deletes the onugem info from kvstore per interface
npujarec5762e2020-01-01 14:08:48 +05301187func (RsrcMgr *OpenOltResourceMgr) DelOnuGemInfoForIntf(ctx context.Context, intfID uint32) error {
1188 if err := RsrcMgr.ResourceMgrs[intfID].DelOnuGemInfoForIntf(ctx, intfID); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001189 logger.Errorw("failed to delete onu gem info for", log.Fields{"intfid": intfID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301190 return err
1191 }
1192 return nil
1193}
1194
1195//GetNNIFromKVStore gets NNi intfids from kvstore. path being per device
npujarec5762e2020-01-01 14:08:48 +05301196func (RsrcMgr *OpenOltResourceMgr) GetNNIFromKVStore(ctx context.Context) ([]uint32, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301197
1198 var nni []uint32
1199 var Val []byte
1200
1201 path := fmt.Sprintf(NnniIntfID)
npujarec5762e2020-01-01 14:08:48 +05301202 value, err := RsrcMgr.KVStore.Get(ctx, path)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301203 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001204 logger.Error("failed to get data from kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301205 return nil, err
1206 }
1207 if value != nil {
1208 if Val, err = kvstore.ToByte(value.Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001209 logger.Error("Failed to convert to byte array")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301210 return nil, err
1211 }
1212 if err = json.Unmarshal(Val, &nni); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001213 logger.Error("Failed to unmarshall")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301214 return nil, err
1215 }
1216 }
1217 return nni, err
1218}
1219
1220// AddNNIToKVStore adds Nni interfaces to kvstore, path being per device.
npujarec5762e2020-01-01 14:08:48 +05301221func (RsrcMgr *OpenOltResourceMgr) AddNNIToKVStore(ctx context.Context, nniIntf uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301222 var Value []byte
1223
npujarec5762e2020-01-01 14:08:48 +05301224 nni, err := RsrcMgr.GetNNIFromKVStore(ctx)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301225 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001226 logger.Error("failed to fetch nni interfaces from kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301227 return err
1228 }
1229
1230 path := fmt.Sprintf(NnniIntfID)
1231 nni = append(nni, nniIntf)
1232 Value, err = json.Marshal(nni)
1233 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001234 logger.Error("Failed to marshal data")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301235 }
npujarec5762e2020-01-01 14:08:48 +05301236 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001237 logger.Errorw("Failed to put to kvstore", log.Fields{"path": path, "value": Value})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301238 return err
1239 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001240 logger.Debugw("added nni to kv successfully", log.Fields{"path": path, "nni": nniIntf})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301241 return nil
1242}
1243
1244// DelNNiFromKVStore deletes nni interface list from kv store.
npujarec5762e2020-01-01 14:08:48 +05301245func (RsrcMgr *OpenOltResourceMgr) DelNNiFromKVStore(ctx context.Context) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301246
1247 path := fmt.Sprintf(NnniIntfID)
1248
npujarec5762e2020-01-01 14:08:48 +05301249 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001250 logger.Errorw("Failed to delete nni interfaces from kv store", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301251 return err
1252 }
1253 return nil
1254}
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301255
1256//UpdateFlowIDsForGem updates flow id per gemport
npujarec5762e2020-01-01 14:08:48 +05301257func (RsrcMgr *OpenOltResourceMgr) UpdateFlowIDsForGem(ctx context.Context, intf uint32, gem uint32, flowIDs []uint32) error {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301258 var val []byte
1259 path := fmt.Sprintf(FlowIDsForGem, intf)
1260
npujarec5762e2020-01-01 14:08:48 +05301261 flowsForGem, err := RsrcMgr.GetFlowIDsGemMapForInterface(ctx, intf)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301262 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001263 logger.Error("Failed to ger flowids for interface", log.Fields{"error": err, "intf": intf})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301264 return err
1265 }
1266 if flowsForGem == nil {
1267 flowsForGem = make(map[uint32][]uint32)
1268 }
1269 flowsForGem[gem] = flowIDs
1270 val, err = json.Marshal(flowsForGem)
1271 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001272 logger.Error("Failed to marshal data", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301273 return err
1274 }
Girish Gowdra38d533d2020-03-30 20:38:51 -07001275 RsrcMgr.flowIDToGemInfoLock.Lock()
1276 defer RsrcMgr.flowIDToGemInfoLock.Unlock()
npujarec5762e2020-01-01 14:08:48 +05301277 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001278 logger.Errorw("Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301279 return err
1280 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001281 logger.Debugw("added flowid list for gem to kv successfully", log.Fields{"path": path, "flowidlist": flowsForGem[gem]})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301282 return nil
1283}
1284
1285//DeleteFlowIDsForGem deletes the flowID list entry per gem from kvstore.
npujarec5762e2020-01-01 14:08:48 +05301286func (RsrcMgr *OpenOltResourceMgr) DeleteFlowIDsForGem(ctx context.Context, intf uint32, gem uint32) {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301287 path := fmt.Sprintf(FlowIDsForGem, intf)
1288 var val []byte
1289
npujarec5762e2020-01-01 14:08:48 +05301290 flowsForGem, err := RsrcMgr.GetFlowIDsGemMapForInterface(ctx, intf)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301291 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001292 logger.Error("Failed to ger flowids for interface", log.Fields{"error": err, "intf": intf})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301293 return
1294 }
1295 if flowsForGem == nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001296 logger.Error("No flowids found ", log.Fields{"intf": intf, "gemport": gem})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301297 return
1298 }
1299 // once we get the flows per gem map from kv , just delete the gem entry from the map
1300 delete(flowsForGem, gem)
1301 // once gem entry is deleted update the kv store.
1302 val, err = json.Marshal(flowsForGem)
1303 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001304 logger.Error("Failed to marshal data", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301305 return
1306 }
Girish Gowdra38d533d2020-03-30 20:38:51 -07001307
1308 RsrcMgr.flowIDToGemInfoLock.Lock()
1309 defer RsrcMgr.flowIDToGemInfoLock.Unlock()
1310
npujarec5762e2020-01-01 14:08:48 +05301311 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001312 logger.Errorw("Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301313 return
1314 }
1315 return
1316}
1317
1318//GetFlowIDsGemMapForInterface gets flowids per gemport and interface
npujarec5762e2020-01-01 14:08:48 +05301319func (RsrcMgr *OpenOltResourceMgr) GetFlowIDsGemMapForInterface(ctx context.Context, intf uint32) (map[uint32][]uint32, error) {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301320 path := fmt.Sprintf(FlowIDsForGem, intf)
1321 var flowsForGem map[uint32][]uint32
1322 var val []byte
Girish Gowdra38d533d2020-03-30 20:38:51 -07001323 RsrcMgr.flowIDToGemInfoLock.RLock()
npujarec5762e2020-01-01 14:08:48 +05301324 value, err := RsrcMgr.KVStore.Get(ctx, path)
Girish Gowdra38d533d2020-03-30 20:38:51 -07001325 RsrcMgr.flowIDToGemInfoLock.RUnlock()
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301326 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001327 logger.Error("failed to get data from kv store")
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301328 return nil, err
1329 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001330 if value != nil && value.Value != nil {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301331 if val, err = kvstore.ToByte(value.Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001332 logger.Error("Failed to convert to byte array ", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301333 return nil, err
1334 }
1335 if err = json.Unmarshal(val, &flowsForGem); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001336 logger.Error("Failed to unmarshall", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301337 return nil, err
1338 }
1339 }
1340 return flowsForGem, nil
1341}
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301342
1343//DeleteIntfIDGempMapPath deletes the intf id path used to store flow ids per gem to kvstore.
npujarec5762e2020-01-01 14:08:48 +05301344func (RsrcMgr *OpenOltResourceMgr) DeleteIntfIDGempMapPath(ctx context.Context, intf uint32) {
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301345 path := fmt.Sprintf(FlowIDsForGem, intf)
Girish Gowdra38d533d2020-03-30 20:38:51 -07001346 RsrcMgr.flowIDToGemInfoLock.Lock()
1347 defer RsrcMgr.flowIDToGemInfoLock.Unlock()
npujarec5762e2020-01-01 14:08:48 +05301348 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001349 logger.Errorw("Failed to delete nni interfaces from kv store", log.Fields{"path": path})
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301350 return
1351 }
1352 return
1353}
1354
1355// RemoveResourceMap Clear resource map associated with (intfid, onuid, uniid) tuple.
npujarec5762e2020-01-01 14:08:48 +05301356func (RsrcMgr *OpenOltResourceMgr) RemoveResourceMap(ctx context.Context, intfID uint32, onuID int32, uniID int32) {
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301357 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +05301358 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfOnuIDUniID)
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301359}
Esin Karamanccb714b2019-11-29 15:02:06 +00001360
1361//GetMcastQueuePerInterfaceMap gets multicast queue info per pon interface
npujarec5762e2020-01-01 14:08:48 +05301362func (RsrcMgr *OpenOltResourceMgr) GetMcastQueuePerInterfaceMap(ctx context.Context) (map[uint32][]uint32, error) {
Esin Karamanccb714b2019-11-29 15:02:06 +00001363 path := fmt.Sprintf(McastQueuesForIntf)
1364 var mcastQueueToIntfMap map[uint32][]uint32
1365 var val []byte
1366
npujarec5762e2020-01-01 14:08:48 +05301367 kvPair, err := RsrcMgr.KVStore.Get(ctx, path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001368 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001369 logger.Error("failed to get data from kv store")
Esin Karamanccb714b2019-11-29 15:02:06 +00001370 return nil, err
1371 }
1372 if kvPair != nil && kvPair.Value != nil {
1373 if val, err = kvstore.ToByte(kvPair.Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001374 logger.Error("Failed to convert to byte array ", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001375 return nil, err
1376 }
1377 if err = json.Unmarshal(val, &mcastQueueToIntfMap); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001378 logger.Error("Failed to unmarshall ", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001379 return nil, err
1380 }
1381 }
1382 return mcastQueueToIntfMap, nil
1383}
1384
1385//AddMcastQueueForIntf adds multicast queue for pon interface
npujarec5762e2020-01-01 14:08:48 +05301386func (RsrcMgr *OpenOltResourceMgr) AddMcastQueueForIntf(ctx context.Context, intf uint32, gem uint32, servicePriority uint32) error {
Esin Karamanccb714b2019-11-29 15:02:06 +00001387 var val []byte
1388 path := fmt.Sprintf(McastQueuesForIntf)
1389
npujarec5762e2020-01-01 14:08:48 +05301390 mcastQueues, err := RsrcMgr.GetMcastQueuePerInterfaceMap(ctx)
Esin Karamanccb714b2019-11-29 15:02:06 +00001391 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001392 logger.Errorw("Failed to get multicast queue info for interface", log.Fields{"error": err, "intf": intf})
Esin Karamanccb714b2019-11-29 15:02:06 +00001393 return err
1394 }
1395 if mcastQueues == nil {
1396 mcastQueues = make(map[uint32][]uint32)
1397 }
1398 mcastQueues[intf] = []uint32{gem, servicePriority}
1399 if val, err = json.Marshal(mcastQueues); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001400 logger.Errorw("Failed to marshal data", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001401 return err
1402 }
npujarec5762e2020-01-01 14:08:48 +05301403 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001404 logger.Errorw("Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Esin Karamanccb714b2019-11-29 15:02:06 +00001405 return err
1406 }
Girish Kumar2ad402b2020-03-20 19:45:12 +00001407 logger.Debugw("added multicast queue info to KV store successfully", log.Fields{"path": path, "mcastQueueInfo": mcastQueues[intf], "interfaceId": intf})
Esin Karamanccb714b2019-11-29 15:02:06 +00001408 return nil
1409}
1410
1411//AddFlowGroupToKVStore adds flow group into KV store
npujarec5762e2020-01-01 14:08:48 +05301412func (RsrcMgr *OpenOltResourceMgr) AddFlowGroupToKVStore(ctx context.Context, groupEntry *ofp.OfpGroupEntry, cached bool) error {
Esin Karamanccb714b2019-11-29 15:02:06 +00001413 var Value []byte
1414 var err error
1415 var path string
1416 if cached {
1417 path = fmt.Sprintf(FlowGroupCached, groupEntry.Desc.GroupId)
1418 } else {
1419 path = fmt.Sprintf(FlowGroup, groupEntry.Desc.GroupId)
1420 }
1421 //build group info object
1422 var outPorts []uint32
1423 for _, ofBucket := range groupEntry.Desc.Buckets {
1424 for _, ofAction := range ofBucket.Actions {
1425 if ofAction.Type == ofp.OfpActionType_OFPAT_OUTPUT {
1426 outPorts = append(outPorts, ofAction.GetOutput().Port)
1427 }
1428 }
1429 }
1430 groupInfo := GroupInfo{
1431 GroupID: groupEntry.Desc.GroupId,
1432 OutPorts: outPorts,
1433 }
1434
1435 Value, err = json.Marshal(groupInfo)
1436
1437 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001438 logger.Error("failed to Marshal flow group object")
Esin Karamanccb714b2019-11-29 15:02:06 +00001439 return err
1440 }
1441
npujarec5762e2020-01-01 14:08:48 +05301442 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001443 logger.Errorf("Failed to update resource %s", path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001444 return err
1445 }
1446 return nil
1447}
1448
1449//RemoveFlowGroupFromKVStore removes flow group from KV store
npujarec5762e2020-01-01 14:08:48 +05301450func (RsrcMgr *OpenOltResourceMgr) RemoveFlowGroupFromKVStore(ctx context.Context, groupID uint32, cached bool) bool {
Esin Karamanccb714b2019-11-29 15:02:06 +00001451 var path string
1452 if cached {
1453 path = fmt.Sprintf(FlowGroupCached, groupID)
1454 } else {
1455 path = fmt.Sprintf(FlowGroup, groupID)
1456 }
npujarec5762e2020-01-01 14:08:48 +05301457 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001458 logger.Errorf("Failed to remove resource %s due to %s", path, err)
Esin Karamanccb714b2019-11-29 15:02:06 +00001459 return false
1460 }
1461 return true
1462}
1463
1464//GetFlowGroupFromKVStore fetches flow group from the KV store. Returns (false, {} error) if any problem occurs during
1465//fetching the data. Returns (true, groupInfo, nil) if the group is fetched successfully.
1466// Returns (false, {}, nil) if the group does not exists in the KV store.
npujarec5762e2020-01-01 14:08:48 +05301467func (RsrcMgr *OpenOltResourceMgr) GetFlowGroupFromKVStore(ctx context.Context, groupID uint32, cached bool) (bool, GroupInfo, error) {
Esin Karamanccb714b2019-11-29 15:02:06 +00001468 var groupInfo GroupInfo
1469 var path string
1470 if cached {
1471 path = fmt.Sprintf(FlowGroupCached, groupID)
1472 } else {
1473 path = fmt.Sprintf(FlowGroup, groupID)
1474 }
npujarec5762e2020-01-01 14:08:48 +05301475 kvPair, err := RsrcMgr.KVStore.Get(ctx, path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001476 if err != nil {
1477 return false, groupInfo, err
1478 }
1479 if kvPair != nil && kvPair.Value != nil {
1480 Val, err := kvstore.ToByte(kvPair.Value)
1481 if err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001482 logger.Errorw("Failed to convert flow group into byte array", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001483 return false, groupInfo, err
1484 }
1485 if err = json.Unmarshal(Val, &groupInfo); err != nil {
Girish Kumar2ad402b2020-03-20 19:45:12 +00001486 logger.Errorw("Failed to unmarshal", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001487 return false, groupInfo, err
1488 }
1489 return true, groupInfo, nil
1490 }
1491 return false, groupInfo, nil
1492}