blob: abfb73d1d9dd056cdd849a262903c13f6e75b390 [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"
25 "strconv"
Girish Gowdraa09aeab2020-09-14 16:30:52 -070026 "strings"
Girish Gowdra38d533d2020-03-30 20:38:51 -070027 "sync"
Neha Sharmacc656962020-04-14 14:26:11 +000028 "time"
Abhilash S.L7f17e402019-03-15 17:40:41 +053029
Kent Hagermane6ff1012020-07-14 15:07:53 -040030 "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
31
Girish Gowdraa09aeab2020-09-14 16:30:52 -070032 "github.com/opencord/voltha-lib-go/v4/pkg/db"
33 "github.com/opencord/voltha-lib-go/v4/pkg/db/kvstore"
34 "github.com/opencord/voltha-lib-go/v4/pkg/log"
35 ponrmgr "github.com/opencord/voltha-lib-go/v4/pkg/ponresourcemanager"
36 ofp "github.com/opencord/voltha-protos/v4/go/openflow_13"
37 "github.com/opencord/voltha-protos/v4/go/openolt"
Abhilash S.L7f17e402019-03-15 17:40:41 +053038)
39
salmansiddiqui7ac62132019-08-22 03:58:50 +000040const (
41 // KvstoreTimeout specifies the time out for KV Store Connection
Neha Sharmacc656962020-04-14 14:26:11 +000042 KvstoreTimeout = 5 * time.Second
salmansiddiqui7ac62132019-08-22 03:58:50 +000043 // BasePathKvStore - service/voltha/openolt/<device_id>
44 BasePathKvStore = "service/voltha/openolt/{%s}"
Gamze Abakafee36392019-10-03 11:17:24 +000045 // TpIDPathSuffix - <(pon_id, onu_id, uni_id)>/tp_id
46 TpIDPathSuffix = "{%d,%d,%d}/tp_id"
47 //MeterIDPathSuffix - <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
48 MeterIDPathSuffix = "{%d,%d,%d}/{%d}/meter_id/{%s}"
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +053049 //NnniIntfID - nniintfids
50 NnniIntfID = "nniintfids"
Girish Gowdraa09aeab2020-09-14 16:30:52 -070051 // OnuPacketINPathPrefix - path prefix where ONU packet-in vlanID/PCP is stored
52 //format: onu_packetin/{<intfid>,<onuid>,<logicalport>}
53 OnuPacketINPathPrefix = "onu_packetin/{%d,%d,%d}"
54 // OnuPacketINPath path on the kvstore to store packetin gemport,which will be used for packetin, packetout
55 //format: onu_packetin/{<intfid>,<onuid>,<logicalport>}/{<vlanId>,<priority>}
56 OnuPacketINPath = OnuPacketINPathPrefix + "/{%d,%d}"
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +053057 //FlowIDsForGem flowids_per_gem/<intfid>
58 FlowIDsForGem = "flowids_per_gem/{%d}"
Esin Karamanccb714b2019-11-29 15:02:06 +000059 //McastQueuesForIntf multicast queues for pon interfaces
60 McastQueuesForIntf = "mcast_qs_for_int"
61 //FlowGroup flow_groups/<flow_group_id>
62 // A group is stored under this path on the KV store after it has been installed to the device.
63 // It should also be deleted after it has been removed from the device accordingly.
64 FlowGroup = "flow_groups/{%d}"
65 //FlowGroupCached flow_groups_cached/<flow_group_id>
66 // When a group add request received, we create the group without setting any members to it since we cannot
67 // set any members to a group until it is associated with a multicast flow. It is a BAL limitation.
68 // When the related multicast flow has been created we perform set members operation for the group.
69 // That is why we need to keep the members of a group until the multicast flow creation request comes.
70 // We preserve the groups under "FlowGroupsCached" directory in the KV store temporarily. Having set members,
71 // we remove the group from the cached group store.
72 FlowGroupCached = "flow_groups_cached/{%d}"
Girish Gowdraa09aeab2020-09-14 16:30:52 -070073
74 //FlowIDPath - Path on the KV store for storing list of Flow IDs for a given subscriber
75 //Format: BasePathKvStore/<(pon_intf_id, onu_id, uni_id)>/flow_ids
76 FlowIDPath = "{%s}/flow_ids"
77 //FlowIDInfoPath - Used to store more metadata associated with the flow_id
78 //Format: BasePathKvStore/<(pon_intf_id, onu_id, uni_id)>/flow_id_info/<flow_id>
79 FlowIDInfoPath = "{%s}/flow_id_info/{%d}"
salmansiddiqui7ac62132019-08-22 03:58:50 +000080)
Abhilash S.L7f17e402019-03-15 17:40:41 +053081
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070082// FlowInfo holds the flow information
Abhilash S.L8ee90712019-04-29 16:24:22 +053083type FlowInfo struct {
Girish Gowdraa09aeab2020-09-14 16:30:52 -070084 Flow *openolt.Flow
85 IsSymmtricFlow bool
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +053086}
87
88// OnuGemInfo holds onu information along with gem port list and uni port list
89type OnuGemInfo struct {
90 OnuID uint32
91 SerialNumber string
92 IntfID uint32
93 GemPorts []uint32
94 UniPorts []uint32
95}
96
97// PacketInInfoKey is the key for packet in gemport
98type PacketInInfoKey struct {
99 IntfID uint32
100 OnuID uint32
101 LogicalPort uint32
Esin Karaman7fb80c22020-07-16 14:23:33 +0000102 VlanID uint16
103 Priority uint8
Abhilash S.L8ee90712019-04-29 16:24:22 +0530104}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700105
Esin Karamanccb714b2019-11-29 15:02:06 +0000106// GroupInfo holds group information
107type GroupInfo struct {
108 GroupID uint32
109 OutPorts []uint32
110}
111
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700112// OpenOltResourceMgr holds resource related information as provided below for each field
Abhilash S.L7f17e402019-03-15 17:40:41 +0530113type OpenOltResourceMgr struct {
Neha Sharma3f221ae2020-04-29 19:02:12 +0000114 DeviceID string // OLT device id
115 Address string // Host and port of the kv store to connect to
116 Args string // args
117 KVStore *db.Backend // backend kv store connection handle
118 DeviceType string
119 DevInfo *openolt.DeviceInfo // device information
Girish Gowdru0c588b22019-04-23 23:24:56 -0400120 // array of pon resource managers per interface technology
121 ResourceMgrs map[uint32]*ponrmgr.PONResourceManager
Girish Gowdra38d533d2020-03-30 20:38:51 -0700122
123 // This protects concurrent gemport_id allocate/delete calls on a per PON port basis
124 GemPortIDMgmtLock []sync.RWMutex
125 // This protects concurrent alloc_id allocate/delete calls on a per PON port basis
126 AllocIDMgmtLock []sync.RWMutex
127 // This protects concurrent onu_id allocate/delete calls on a per PON port basis
128 OnuIDMgmtLock []sync.RWMutex
Abhilash S.L7f17e402019-03-15 17:40:41 +0530129}
130
Neha Sharma96b7bf22020-06-15 10:37:32 +0000131func newKVClient(ctx context.Context, storeType string, address string, timeout time.Duration) (kvstore.Client, error) {
132 logger.Infow(ctx, "kv-store-type", log.Fields{"store": storeType})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400133 switch storeType {
134 case "consul":
Neha Sharma96b7bf22020-06-15 10:37:32 +0000135 return kvstore.NewConsulClient(ctx, address, timeout)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400136 case "etcd":
Neha Sharma96b7bf22020-06-15 10:37:32 +0000137 return kvstore.NewEtcdClient(ctx, address, timeout, log.FatalLevel)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400138 }
139 return nil, errors.New("unsupported-kv-store")
Abhilash S.L7f17e402019-03-15 17:40:41 +0530140}
141
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700142// SetKVClient sets the KV client and return a kv backend
Neha Sharma96b7bf22020-06-15 10:37:32 +0000143func SetKVClient(ctx context.Context, backend string, addr string, DeviceID string) *db.Backend {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400144 // TODO : Make sure direct call to NewBackend is working fine with backend , currently there is some
145 // issue between kv store and backend , core is not calling NewBackend directly
Neha Sharma96b7bf22020-06-15 10:37:32 +0000146 kvClient, err := newKVClient(ctx, backend, addr, KvstoreTimeout)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400147 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000148 logger.Fatalw(ctx, "Failed to init KV client\n", log.Fields{"err": err})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400149 return nil
150 }
Matteo Scandolod625b4c2020-04-02 16:16:01 -0700151
sbarbaria8910ba2019-11-05 10:12:23 -0500152 kvbackend := &db.Backend{
Girish Gowdru0c588b22019-04-23 23:24:56 -0400153 Client: kvClient,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700154 StoreType: backend,
Neha Sharma3f221ae2020-04-29 19:02:12 +0000155 Address: addr,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700156 Timeout: KvstoreTimeout,
157 PathPrefix: fmt.Sprintf(BasePathKvStore, DeviceID)}
Abhilash S.L7f17e402019-03-15 17:40:41 +0530158
Girish Gowdru0c588b22019-04-23 23:24:56 -0400159 return kvbackend
Abhilash S.L7f17e402019-03-15 17:40:41 +0530160}
161
Gamze Abakafee36392019-10-03 11:17:24 +0000162// NewResourceMgr init a New resource manager instance which in turn instantiates pon resource manager
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700163// instances according to technology. Initializes the default resource ranges for all
164// the resources.
Neha Sharma3f221ae2020-04-29 19:02:12 +0000165func NewResourceMgr(ctx context.Context, deviceID string, KVStoreAddress string, kvStoreType string, deviceType string, devInfo *openolt.DeviceInfo) *OpenOltResourceMgr {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400166 var ResourceMgr OpenOltResourceMgr
divyadesai3af43e12020-08-18 07:10:54 +0000167 logger.Debugf(ctx, "Init new resource manager , address: %s, device-id: %s", KVStoreAddress, deviceID)
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700168 ResourceMgr.DeviceID = deviceID
Neha Sharma3f221ae2020-04-29 19:02:12 +0000169 ResourceMgr.Address = KVStoreAddress
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700170 ResourceMgr.DeviceType = deviceType
171 ResourceMgr.DevInfo = devInfo
Girish Gowdra38d533d2020-03-30 20:38:51 -0700172 NumPONPorts := devInfo.GetPonPorts()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530173
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700174 Backend := kvStoreType
Neha Sharma96b7bf22020-06-15 10:37:32 +0000175 ResourceMgr.KVStore = SetKVClient(ctx, Backend, ResourceMgr.Address, deviceID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400176 if ResourceMgr.KVStore == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000177 logger.Error(ctx, "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
Neha Sharma96b7bf22020-06-15 10:37:32 +0000240 logger.Debugf(ctx, "Device info technology %s", technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400241 Ranges[technology] = TechRange
Neha Sharma96b7bf22020-06-15 10:37:32 +0000242
243 RsrcMgrsByTech[technology], err = ponrmgr.NewPONResourceManager(ctx, technology, deviceType, deviceID,
Neha Sharma3f221ae2020-04-29 19:02:12 +0000244 Backend, ResourceMgr.Address)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400245 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000246 logger.Errorf(ctx, "Failed to create pon resource manager instance for technology %s", technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400247 return nil
248 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700249 // resource_mgrs_by_tech[technology] = resource_mgr
Girish Gowdru0c588b22019-04-23 23:24:56 -0400250 if GlobalPONRsrcMgr == nil {
251 GlobalPONRsrcMgr = RsrcMgrsByTech[technology]
252 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700253 for _, IntfID := range TechRange.IntfIds {
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700254 ResourceMgr.ResourceMgrs[IntfID] = RsrcMgrsByTech[technology]
Girish Gowdru0c588b22019-04-23 23:24:56 -0400255 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700256 // self.initialize_device_resource_range_and_pool(resource_mgr, global_resource_mgr, arange)
npujarec5762e2020-01-01 14:08:48 +0530257 InitializeDeviceResourceRangeAndPool(ctx, RsrcMgrsByTech[technology], GlobalPONRsrcMgr,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700258 TechRange, devInfo)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400259 }
260 // After we have initialized resource ranges, initialize the
261 // resource pools accordingly.
262 for _, PONRMgr := range RsrcMgrsByTech {
npujarec5762e2020-01-01 14:08:48 +0530263 _ = PONRMgr.InitDeviceResourcePool(ctx)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400264 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000265 logger.Info(ctx, "Initialization of resource manager success!")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400266 return &ResourceMgr
Abhilash S.L7f17e402019-03-15 17:40:41 +0530267}
268
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700269// InitializeDeviceResourceRangeAndPool initializes the resource range pool according to the sharing type, then apply
270// device specific information. If KV doesn't exist
271// or is broader than the device, the device's information will
272// dictate the range limits
npujarec5762e2020-01-01 14:08:48 +0530273func InitializeDeviceResourceRangeAndPool(ctx context.Context, ponRMgr *ponrmgr.PONResourceManager, globalPONRMgr *ponrmgr.PONResourceManager,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700274 techRange *openolt.DeviceInfo_DeviceResourceRanges, devInfo *openolt.DeviceInfo) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530275
Girish Gowdru0c588b22019-04-23 23:24:56 -0400276 // init the resource range pool according to the sharing type
Abhilash S.L7f17e402019-03-15 17:40:41 +0530277
Neha Sharma96b7bf22020-06-15 10:37:32 +0000278 logger.Debugf(ctx, "Resource range pool init for technology %s", ponRMgr.Technology)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700279 // first load from KV profiles
npujarec5762e2020-01-01 14:08:48 +0530280 status := ponRMgr.InitResourceRangesFromKVStore(ctx)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700281 if !status {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000282 logger.Debugf(ctx, "Failed to load resource ranges from KV store for tech %s", ponRMgr.Technology)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400283 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530284
Girish Gowdru0c588b22019-04-23 23:24:56 -0400285 /*
286 Then apply device specific information. If KV doesn't exist
Gamze Abakafee36392019-10-03 11:17:24 +0000287 or is broader than the device, the device's information will
Girish Gowdru0c588b22019-04-23 23:24:56 -0400288 dictate the range limits
289 */
Neha Sharma96b7bf22020-06-15 10:37:32 +0000290 logger.Debugw(ctx, "Using device info to init pon resource ranges", log.Fields{"Tech": ponRMgr.Technology})
Abhilash S.L7f17e402019-03-15 17:40:41 +0530291
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700292 ONUIDStart := devInfo.OnuIdStart
293 ONUIDEnd := devInfo.OnuIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400294 ONUIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_DEDICATED_PER_INTF
295 ONUIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700296 AllocIDStart := devInfo.AllocIdStart
297 AllocIDEnd := devInfo.AllocIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400298 AllocIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
299 AllocIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700300 GEMPortIDStart := devInfo.GemportIdStart
301 GEMPortIDEnd := devInfo.GemportIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400302 GEMPortIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
303 GEMPortIDSharedPoolID := uint32(0)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700304 FlowIDStart := devInfo.FlowIdStart
305 FlowIDEnd := devInfo.FlowIdEnd
Girish Gowdru0c588b22019-04-23 23:24:56 -0400306 FlowIDShared := openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH // TODO EdgeCore/BAL limitation
307 FlowIDSharedPoolID := uint32(0)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530308
Girish Gowdru0c588b22019-04-23 23:24:56 -0400309 var FirstIntfPoolID uint32
310 var SharedPoolID uint32
Abhilash S.L7f17e402019-03-15 17:40:41 +0530311
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400312 /*
313 * 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 -0700314 * if resources are shared across interfaces then SharedPoolID is given a positive number.
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400315 */
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700316 for _, FirstIntfPoolID = range techRange.IntfIds {
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400317 // skip the intf id 0
318 if FirstIntfPoolID == 0 {
319 continue
320 }
Girish Gowdru0c588b22019-04-23 23:24:56 -0400321 break
322 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530323
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700324 for _, RangePool := range techRange.Pools {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400325 if RangePool.Sharing == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400326 SharedPoolID = FirstIntfPoolID
Girish Gowdru0c588b22019-04-23 23:24:56 -0400327 } else if RangePool.Sharing == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_SAME_TECH {
328 SharedPoolID = FirstIntfPoolID
329 } else {
330 SharedPoolID = 0
331 }
332 if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_ONU_ID {
333 ONUIDStart = RangePool.Start
334 ONUIDEnd = RangePool.End
335 ONUIDShared = RangePool.Sharing
336 ONUIDSharedPoolID = SharedPoolID
337 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_ALLOC_ID {
338 AllocIDStart = RangePool.Start
339 AllocIDEnd = RangePool.End
340 AllocIDShared = RangePool.Sharing
341 AllocIDSharedPoolID = SharedPoolID
342 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_GEMPORT_ID {
343 GEMPortIDStart = RangePool.Start
344 GEMPortIDEnd = RangePool.End
345 GEMPortIDShared = RangePool.Sharing
346 GEMPortIDSharedPoolID = SharedPoolID
347 } else if RangePool.Type == openolt.DeviceInfo_DeviceResourceRanges_Pool_FLOW_ID {
348 FlowIDStart = RangePool.Start
349 FlowIDEnd = RangePool.End
350 FlowIDShared = RangePool.Sharing
351 FlowIDSharedPoolID = SharedPoolID
352 }
353 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530354
Neha Sharma96b7bf22020-06-15 10:37:32 +0000355 logger.Debugw(ctx, "Device info init", log.Fields{"technology": techRange.Technology,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400356 "onu_id_start": ONUIDStart, "onu_id_end": ONUIDEnd, "onu_id_shared_pool_id": ONUIDSharedPoolID,
357 "alloc_id_start": AllocIDStart, "alloc_id_end": AllocIDEnd,
358 "alloc_id_shared_pool_id": AllocIDSharedPoolID,
359 "gemport_id_start": GEMPortIDStart, "gemport_id_end": GEMPortIDEnd,
360 "gemport_id_shared_pool_id": GEMPortIDSharedPoolID,
361 "flow_id_start": FlowIDStart,
362 "flow_id_end_idx": FlowIDEnd,
363 "flow_id_shared_pool_id": FlowIDSharedPoolID,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700364 "intf_ids": techRange.IntfIds,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400365 "uni_id_start": 0,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700366 "uni_id_end_idx": 1, /*MaxUNIIDperONU()*/
367 })
Abhilash S.L7f17e402019-03-15 17:40:41 +0530368
Neha Sharma96b7bf22020-06-15 10:37:32 +0000369 ponRMgr.InitDefaultPONResourceRanges(ctx, ONUIDStart, ONUIDEnd, ONUIDSharedPoolID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400370 AllocIDStart, AllocIDEnd, AllocIDSharedPoolID,
371 GEMPortIDStart, GEMPortIDEnd, GEMPortIDSharedPoolID,
372 FlowIDStart, FlowIDEnd, FlowIDSharedPoolID, 0, 1,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700373 devInfo.PonPorts, techRange.IntfIds)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530374
Girish Gowdru0c588b22019-04-23 23:24:56 -0400375 // For global sharing, make sure to refresh both local and global resource manager instances' range
Abhilash S.L7f17e402019-03-15 17:40:41 +0530376
Girish Gowdru0c588b22019-04-23 23:24:56 -0400377 if ONUIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000378 globalPONRMgr.UpdateRanges(ctx, ponrmgr.ONU_ID_START_IDX, ONUIDStart, ponrmgr.ONU_ID_END_IDX, ONUIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400379 "", 0, nil)
Neha Sharma96b7bf22020-06-15 10:37:32 +0000380 ponRMgr.UpdateRanges(ctx, ponrmgr.ONU_ID_START_IDX, ONUIDStart, ponrmgr.ONU_ID_END_IDX, ONUIDEnd,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700381 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400382 }
383 if AllocIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000384 globalPONRMgr.UpdateRanges(ctx, ponrmgr.ALLOC_ID_START_IDX, AllocIDStart, ponrmgr.ALLOC_ID_END_IDX, AllocIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400385 "", 0, nil)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530386
Neha Sharma96b7bf22020-06-15 10:37:32 +0000387 ponRMgr.UpdateRanges(ctx, ponrmgr.ALLOC_ID_START_IDX, AllocIDStart, ponrmgr.ALLOC_ID_END_IDX, AllocIDEnd,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700388 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400389 }
390 if GEMPortIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000391 globalPONRMgr.UpdateRanges(ctx, ponrmgr.GEMPORT_ID_START_IDX, GEMPortIDStart, ponrmgr.GEMPORT_ID_END_IDX, GEMPortIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400392 "", 0, nil)
Neha Sharma96b7bf22020-06-15 10:37:32 +0000393 ponRMgr.UpdateRanges(ctx, ponrmgr.GEMPORT_ID_START_IDX, GEMPortIDStart, ponrmgr.GEMPORT_ID_END_IDX, GEMPortIDEnd,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700394 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400395 }
396 if FlowIDShared == openolt.DeviceInfo_DeviceResourceRanges_Pool_SHARED_BY_ALL_INTF_ALL_TECH {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000397 globalPONRMgr.UpdateRanges(ctx, ponrmgr.FLOW_ID_START_IDX, FlowIDStart, ponrmgr.FLOW_ID_END_IDX, FlowIDEnd,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400398 "", 0, nil)
Neha Sharma96b7bf22020-06-15 10:37:32 +0000399 ponRMgr.UpdateRanges(ctx, ponrmgr.FLOW_ID_START_IDX, FlowIDStart, ponrmgr.FLOW_ID_END_IDX, FlowIDEnd,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700400 "", 0, globalPONRMgr)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400401 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530402
Girish Gowdru0c588b22019-04-23 23:24:56 -0400403 // Make sure loaded range fits the platform bit encoding ranges
Neha Sharma96b7bf22020-06-15 10:37:32 +0000404 ponRMgr.UpdateRanges(ctx, 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 +0530405}
406
Devmalya Paul495b94a2019-08-27 19:42:00 -0400407// Delete clears used resources for the particular olt device being deleted
npujarec5762e2020-01-01 14:08:48 +0530408func (RsrcMgr *OpenOltResourceMgr) Delete(ctx context.Context) error {
Devmalya Paul495b94a2019-08-27 19:42:00 -0400409 /* TODO
410 def __del__(self):
411 self.log.info("clearing-device-resource-pool")
412 for key, resource_mgr in self.resource_mgrs.iteritems():
413 resource_mgr.clear_device_resource_pool()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530414
Devmalya Paul495b94a2019-08-27 19:42:00 -0400415 def assert_pon_id_limit(self, pon_intf_id):
416 assert pon_intf_id in self.resource_mgrs
Abhilash S.L7f17e402019-03-15 17:40:41 +0530417
Devmalya Paul495b94a2019-08-27 19:42:00 -0400418 def assert_onu_id_limit(self, pon_intf_id, onu_id):
419 self.assert_pon_id_limit(pon_intf_id)
420 self.resource_mgrs[pon_intf_id].assert_resource_limits(onu_id, PONResourceManager.ONU_ID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530421
Devmalya Paul495b94a2019-08-27 19:42:00 -0400422 @property
423 def max_uni_id_per_onu(self):
424 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 +0530425
Devmalya Paul495b94a2019-08-27 19:42:00 -0400426 def assert_uni_id_limit(self, pon_intf_id, onu_id, uni_id):
427 self.assert_onu_id_limit(pon_intf_id, onu_id)
428 self.resource_mgrs[pon_intf_id].assert_resource_limits(uni_id, PONResourceManager.UNI_ID)
429 */
430 for _, rsrcMgr := range RsrcMgr.ResourceMgrs {
npujarec5762e2020-01-01 14:08:48 +0530431 if err := rsrcMgr.ClearDeviceResourcePool(ctx); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000432 logger.Debug(ctx, "Failed to clear device resource pool")
Devmalya Paul495b94a2019-08-27 19:42:00 -0400433 return err
434 }
435 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000436 logger.Debug(ctx, "Cleared device resource pool")
Devmalya Paul495b94a2019-08-27 19:42:00 -0400437 return nil
438}
Abhilash S.L7f17e402019-03-15 17:40:41 +0530439
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700440// GetONUID returns the available OnuID for the given pon-port
npujarec5762e2020-01-01 14:08:48 +0530441func (RsrcMgr *OpenOltResourceMgr) GetONUID(ctx context.Context, ponIntfID uint32) (uint32, error) {
salmansiddiqui352a45c2019-08-19 10:15:36 +0000442 // Check if Pon Interface ID is present in Resource-manager-map
Girish Gowdrab77ded92020-04-08 11:45:05 -0700443 RsrcMgr.OnuIDMgmtLock[ponIntfID].Lock()
444 defer RsrcMgr.OnuIDMgmtLock[ponIntfID].Unlock()
445
salmansiddiqui352a45c2019-08-19 10:15:36 +0000446 if _, ok := RsrcMgr.ResourceMgrs[ponIntfID]; !ok {
447 err := errors.New("invalid-pon-interface-" + strconv.Itoa(int(ponIntfID)))
448 return 0, err
449 }
Girish Gowdru0c588b22019-04-23 23:24:56 -0400450 // Get ONU id for a provided pon interface ID.
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700451 onuID, err := RsrcMgr.ResourceMgrs[ponIntfID].GetResourceID(ctx, ponIntfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400452 ponrmgr.ONU_ID, 1)
453 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000454 logger.Errorf(ctx, "Failed to get resource for interface %d for type %s",
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700455 ponIntfID, ponrmgr.ONU_ID)
cbabuabf02352019-10-15 13:14:56 +0200456 return 0, err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400457 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700458 if onuID != nil {
459 RsrcMgr.ResourceMgrs[ponIntfID].InitResourceMap(ctx, fmt.Sprintf("%d,%d", ponIntfID, onuID[0]))
460 return onuID[0], err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400461 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530462
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700463 return 0, err // return OnuID 0 on error
Abhilash S.L7f17e402019-03-15 17:40:41 +0530464}
465
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700466// GetFlowIDInfo returns the slice of flow info of the given pon-port
467// Note: For flows which trap from the NNI and not really associated with any particular
468// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700469func (RsrcMgr *OpenOltResourceMgr) GetFlowIDInfo(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32, flowID uint64) *FlowInfo {
470 var flowInfo FlowInfo
Abhilash S.L8ee90712019-04-29 16:24:22 +0530471
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700472 subs := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
473 Path := fmt.Sprintf(FlowIDInfoPath, subs, flowID)
474 value, err := RsrcMgr.KVStore.Get(ctx, Path)
475 if err == nil {
476 if value != nil {
477 Val, err := toByte(value.Value)
478 if err != nil {
479 logger.Errorw(ctx, "Failed to convert flowinfo into byte array", log.Fields{"error": err, "subs": subs})
480 return nil
481 }
482 if err = json.Unmarshal(Val, &flowInfo); err != nil {
483 logger.Errorw(ctx, "Failed to unmarshal", log.Fields{"error": err, "subs": subs})
484 return nil
485 }
486 }
487 }
488 if flowInfo.Flow == nil {
489 logger.Debugw(ctx, "No flowInfo found in KV store", log.Fields{"subs": subs})
Abhilash S.L8ee90712019-04-29 16:24:22 +0530490 return nil
491 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700492 return &flowInfo
Abhilash S.L8ee90712019-04-29 16:24:22 +0530493}
494
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700495// GetCurrentFlowIDsForOnu fetches flow ID from the resource manager
496// Note: For flows which trap from the NNI and not really associated with any particular
497// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700498func (RsrcMgr *OpenOltResourceMgr) GetCurrentFlowIDsForOnu(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32) ([]uint64, error) {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700499
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700500 subs := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
501 path := fmt.Sprintf(FlowIDPath, subs)
502
503 var data []uint64
504 value, err := RsrcMgr.KVStore.Get(ctx, path)
505 if err == nil {
506 if value != nil {
507 Val, _ := toByte(value.Value)
508 if err = json.Unmarshal(Val, &data); err != nil {
509 logger.Error(ctx, "Failed to unmarshal")
510 return nil, err
511 }
512 }
Serkant Uluderya89ff40c2019-10-17 16:02:25 -0700513 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700514 return data, nil
Abhilash S.L8ee90712019-04-29 16:24:22 +0530515}
516
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700517// UpdateFlowIDInfo updates flow info for the given pon interface, onu id, and uni id
518// Note: For flows which trap from the NNI and not really associated with any particular
519// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700520func (RsrcMgr *OpenOltResourceMgr) UpdateFlowIDInfo(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32,
521 flowID uint64, flowData FlowInfo) error {
522
523 subs := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
524 path := fmt.Sprintf(FlowIDInfoPath, subs, flowID)
525
526 var value []byte
527 var err error
528 value, err = json.Marshal(flowData)
529 if err != nil {
530 logger.Errorf(ctx, "failed to Marshal, resource path %s", path)
531 return err
532 }
533
534 if err = RsrcMgr.KVStore.Put(ctx, path, value); err != nil {
535 logger.Errorf(ctx, "Failed to update resource %s", path)
536 }
537
538 // Update the flowID list for the ONU
539 if err = RsrcMgr.UpdateFlowIDForOnu(ctx, ponIntfID, onuID, uniID, flowID, true); err != nil {
540 // If the operation fails, try to remove FlowInfo from the KV store
541 _ = RsrcMgr.KVStore.Delete(ctx, path)
542 return err
543 }
544 return err
Abhilash S.L8ee90712019-04-29 16:24:22 +0530545}
546
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700547// UpdateFlowIDForOnu updates the flow_id list of the ONU (add or remove flow_id from the list)
548func (RsrcMgr *OpenOltResourceMgr) UpdateFlowIDForOnu(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32, flowID uint64, add bool) error {
549 /*
550 Update the flow_id list of the ONU (add or remove flow_id from the list)
551 :param pon_intf_onu_id: reference of PON interface id and onu id
552 :param flow_id: flow ID
553 :param add: Boolean flag to indicate whether the flow_id should be
554 added or removed from the list. Defaults to adding the flow.
555 */
556 var Value []byte
557 var err error
558 var retVal bool
559 var idx uint64
560 subs := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
561 path := fmt.Sprintf(FlowIDPath, subs)
562 flowIDs, err := RsrcMgr.GetCurrentFlowIDsForOnu(ctx, ponIntfID, onuID, uniID)
563 if err != nil {
564 // Error logged in the called function
565 return err
566 }
567
568 if add {
569 if retVal, _ = checkForFlowIDInList(flowIDs, flowID); retVal {
570 return nil
571 }
572 flowIDs = append(flowIDs, flowID)
573 } else {
574 if retVal, idx = checkForFlowIDInList(flowIDs, flowID); !retVal {
575 return nil
576 }
577 // delete the index and shift
578 flowIDs = append(flowIDs[:idx], flowIDs[idx+1:]...)
579 }
580 Value, err = json.Marshal(flowIDs)
581 if err != nil {
582 logger.Error(ctx, "Failed to Marshal")
583 return err
584 }
585
586 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
587 logger.Errorf(ctx, "Failed to update resource %s", path)
588 return err
589 }
590 return err
591}
592
593// RemoveFlowIDInfo remove flow info for the given pon interface, onu id, and uni id
594// Note: For flows which trap from the NNI and not really associated with any particular
595// ONU (like LLDP), the onu_id and uni_id is set as -1. The intf_id is the NNI intf_id.
596func (RsrcMgr *OpenOltResourceMgr) RemoveFlowIDInfo(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32,
597 flowID uint64) error {
598
599 subs := fmt.Sprintf("%d,%d,%d", ponIntfID, onuID, uniID)
600 path := fmt.Sprintf(FlowIDInfoPath, subs, flowID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530601
Girish Gowdru0c588b22019-04-23 23:24:56 -0400602 var err error
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700603 if err = RsrcMgr.KVStore.Delete(ctx, path); err != nil {
604 logger.Errorf(ctx, "Failed to delete resource %s", path)
605 return err
606 }
Girish Gowdrab77ded92020-04-08 11:45:05 -0700607
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700608 // Update the flowID list for the ONU
609 err = RsrcMgr.UpdateFlowIDForOnu(ctx, ponIntfID, onuID, uniID, flowID, false)
Girish Gowdrab77ded92020-04-08 11:45:05 -0700610
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700611 return err
612}
613
614// RemoveAllFlowsForIntfOnuUniKey removes flow info for the given interface, onu id, and uni id
615func (RsrcMgr *OpenOltResourceMgr) RemoveAllFlowsForIntfOnuUniKey(ctx context.Context, intf uint32, onuID int32, uniID int32) error {
616 flowIDs, err := RsrcMgr.GetCurrentFlowIDsForOnu(ctx, intf, onuID, uniID)
617 if err != nil {
618 // error logged in the called function
619 return err
620 }
621 for _, flID := range flowIDs {
622 if err := RsrcMgr.RemoveFlowIDInfo(ctx, intf, onuID, uniID, flID); err != nil {
623 logger.Errorw(ctx, "failed-to-delete-flow-id-info", log.Fields{"intf": intf, "onuID": onuID, "uniID": uniID, "flowID": flID})
Abhilash S.L8ee90712019-04-29 16:24:22 +0530624 }
Girish Gowdru0c588b22019-04-23 23:24:56 -0400625 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700626 subs := fmt.Sprintf("%d,%d,%d", intf, onuID, uniID)
627 path := fmt.Sprintf(FlowIDPath, subs)
628 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
629 logger.Errorf(ctx, "Failed to delete resource %s", path)
630 return err
Girish Gowdru0c588b22019-04-23 23:24:56 -0400631 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700632 return nil
Abhilash S.L7f17e402019-03-15 17:40:41 +0530633}
634
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700635// GetAllocID return the first Alloc ID for a given pon interface id and onu id and then update the resource map on
636// the KV store with the list of alloc_ids allocated for the pon_intf_onu_id tuple
637// 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 +0530638func (RsrcMgr *OpenOltResourceMgr) GetAllocID(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530639
Girish Gowdru0c588b22019-04-23 23:24:56 -0400640 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700641 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
Girish Gowdrab77ded92020-04-08 11:45:05 -0700642
643 RsrcMgr.AllocIDMgmtLock[intfID].Lock()
644 defer RsrcMgr.AllocIDMgmtLock[intfID].Unlock()
645
npujarec5762e2020-01-01 14:08:48 +0530646 AllocID := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400647 if AllocID != nil {
648 // Since we support only one alloc_id for the ONU at the moment,
649 // return the first alloc_id in the list, if available, for that
650 // ONU.
Neha Sharma96b7bf22020-06-15 10:37:32 +0000651 logger.Debugw(ctx, "Retrieved alloc ID from pon resource mgr", log.Fields{"AllocID": AllocID})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400652 return AllocID[0]
653 }
npujarec5762e2020-01-01 14:08:48 +0530654 AllocID, err = RsrcMgr.ResourceMgrs[intfID].GetResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400655 ponrmgr.ALLOC_ID, 1)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530656
Girish Gowdru0c588b22019-04-23 23:24:56 -0400657 if AllocID == nil || err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000658 logger.Error(ctx, "Failed to allocate alloc id")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400659 return 0
660 }
661 // update the resource map on KV store with the list of alloc_id
662 // allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530663 err = RsrcMgr.ResourceMgrs[intfID].UpdateAllocIdsForOnu(ctx, IntfOnuIDUniID, AllocID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400664 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000665 logger.Error(ctx, "Failed to update Alloc ID")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400666 return 0
667 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000668 logger.Debugw(ctx, "Allocated new Tcont from pon resource mgr", log.Fields{"AllocID": AllocID})
Girish Gowdru0c588b22019-04-23 23:24:56 -0400669 return AllocID[0]
Abhilash S.L7f17e402019-03-15 17:40:41 +0530670}
671
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700672// UpdateAllocIdsForOnu updates alloc ids in kv store for a given pon interface id, onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530673func (RsrcMgr *OpenOltResourceMgr) UpdateAllocIdsForOnu(ctx context.Context, ponPort uint32, onuID uint32, uniID uint32, allocID []uint32) error {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530674
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700675 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530676 return RsrcMgr.ResourceMgrs[ponPort].UpdateAllocIdsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700677 allocID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530678}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700679
680// GetCurrentGEMPortIDsForOnu returns gem ports for given pon interface , onu id and uni id
npujarec5762e2020-01-01 14:08:48 +0530681func (RsrcMgr *OpenOltResourceMgr) GetCurrentGEMPortIDsForOnu(ctx context.Context, intfID uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700682 uniID uint32) []uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530683
Girish Gowdru0c588b22019-04-23 23:24:56 -0400684 /* Get gem ports for given pon interface , onu id and uni id. */
Abhilash S.L7f17e402019-03-15 17:40:41 +0530685
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700686 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530687 return RsrcMgr.ResourceMgrs[intfID].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530688}
689
Gamze Abakafee36392019-10-03 11:17:24 +0000690// GetCurrentAllocIDsForOnu returns alloc ids for given pon interface and onu id
npujarec5762e2020-01-01 14:08:48 +0530691func (RsrcMgr *OpenOltResourceMgr) GetCurrentAllocIDsForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) []uint32 {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530692
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700693 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530694 AllocID := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400695 if AllocID != nil {
Gamze Abakafee36392019-10-03 11:17:24 +0000696 return AllocID
Girish Gowdru0c588b22019-04-23 23:24:56 -0400697 }
Gamze Abakafee36392019-10-03 11:17:24 +0000698 return []uint32{}
699}
700
701// RemoveAllocIDForOnu removes the alloc id for given pon interface, onu id, uni id and alloc id
npujarec5762e2020-01-01 14:08:48 +0530702func (RsrcMgr *OpenOltResourceMgr) RemoveAllocIDForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32, allocID uint32) {
703 allocIDs := RsrcMgr.GetCurrentAllocIDsForOnu(ctx, intfID, onuID, uniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000704 for i := 0; i < len(allocIDs); i++ {
705 if allocIDs[i] == allocID {
706 allocIDs = append(allocIDs[:i], allocIDs[i+1:]...)
707 break
708 }
709 }
npujarec5762e2020-01-01 14:08:48 +0530710 err := RsrcMgr.UpdateAllocIdsForOnu(ctx, intfID, onuID, uniID, allocIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000711 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000712 logger.Errorf(ctx, "Failed to Remove Alloc Id For Onu. IntfID %d onuID %d uniID %d allocID %d",
Gamze Abakafee36392019-10-03 11:17:24 +0000713 intfID, onuID, uniID, allocID)
714 }
715}
716
717// RemoveGemPortIDForOnu removes the gem port id for given pon interface, onu id, uni id and gem port id
npujarec5762e2020-01-01 14:08:48 +0530718func (RsrcMgr *OpenOltResourceMgr) RemoveGemPortIDForOnu(ctx context.Context, intfID uint32, onuID uint32, uniID uint32, gemPortID uint32) {
719 gemPortIDs := RsrcMgr.GetCurrentGEMPortIDsForOnu(ctx, intfID, onuID, uniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000720 for i := 0; i < len(gemPortIDs); i++ {
721 if gemPortIDs[i] == gemPortID {
722 gemPortIDs = append(gemPortIDs[:i], gemPortIDs[i+1:]...)
723 break
724 }
725 }
npujarec5762e2020-01-01 14:08:48 +0530726 err := RsrcMgr.UpdateGEMPortIDsForOnu(ctx, intfID, onuID, uniID, gemPortIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000727 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000728 logger.Errorf(ctx, "Failed to Remove Gem Id For Onu. IntfID %d onuID %d uniID %d gemPortId %d",
Gamze Abakafee36392019-10-03 11:17:24 +0000729 intfID, onuID, uniID, gemPortID)
730 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530731}
732
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700733// UpdateGEMportsPonportToOnuMapOnKVStore updates onu and uni id associated with the gem port to the kv store
734// This stored information is used when packet_indication is received and we need to derive the ONU Id for which
735// the packet arrived based on the pon_intf and gemport available in the packet_indication
npujarec5762e2020-01-01 14:08:48 +0530736func (RsrcMgr *OpenOltResourceMgr) UpdateGEMportsPonportToOnuMapOnKVStore(ctx context.Context, gemPorts []uint32, PonPort uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700737 onuID uint32, uniID uint32) error {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530738
Girish Gowdru0c588b22019-04-23 23:24:56 -0400739 /* Update onu and uni id associated with the gem port to the kv store. */
740 var IntfGEMPortPath string
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700741 Data := fmt.Sprintf("%d %d", onuID, uniID)
742 for _, GEM := range gemPorts {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400743 IntfGEMPortPath = fmt.Sprintf("%d,%d", PonPort, GEM)
744 Val, err := json.Marshal(Data)
745 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000746 logger.Error(ctx, "failed to Marshal")
Girish Gowdru0c588b22019-04-23 23:24:56 -0400747 return err
748 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700749
npujarec5762e2020-01-01 14:08:48 +0530750 if err = RsrcMgr.KVStore.Put(ctx, IntfGEMPortPath, Val); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000751 logger.Errorf(ctx, "Failed to update resource %s", IntfGEMPortPath)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400752 return err
753 }
754 }
755 return nil
Abhilash S.L7f17e402019-03-15 17:40:41 +0530756}
757
Gamze Abakafee36392019-10-03 11:17:24 +0000758// RemoveGEMportPonportToOnuMapOnKVStore removes the relationship between the gem port and pon port
npujarec5762e2020-01-01 14:08:48 +0530759func (RsrcMgr *OpenOltResourceMgr) RemoveGEMportPonportToOnuMapOnKVStore(ctx context.Context, GemPort uint32, PonPort uint32) {
Gamze Abakafee36392019-10-03 11:17:24 +0000760 IntfGEMPortPath := fmt.Sprintf("%d,%d", PonPort, GemPort)
npujarec5762e2020-01-01 14:08:48 +0530761 err := RsrcMgr.KVStore.Delete(ctx, IntfGEMPortPath)
Gamze Abakafee36392019-10-03 11:17:24 +0000762 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000763 logger.Errorf(ctx, "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 +0000764 }
765}
766
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700767// GetGEMPortID gets gem port id for a particular pon port, onu id and uni id and then update the resource map on
768// the KV store with the list of gemport_id allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530769func (RsrcMgr *OpenOltResourceMgr) GetGEMPortID(ctx context.Context, ponPort uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700770 uniID uint32, NumOfPorts uint32) ([]uint32, error) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530771
Girish Gowdru0c588b22019-04-23 23:24:56 -0400772 /* Get gem port id for a particular pon port, onu id
773 and uni id.
774 */
Abhilash S.L7f17e402019-03-15 17:40:41 +0530775
Girish Gowdru0c588b22019-04-23 23:24:56 -0400776 var err error
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700777 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530778
Girish Gowdrab77ded92020-04-08 11:45:05 -0700779 RsrcMgr.GemPortIDMgmtLock[ponPort].Lock()
780 defer RsrcMgr.GemPortIDMgmtLock[ponPort].Unlock()
781
npujarec5762e2020-01-01 14:08:48 +0530782 GEMPortList := RsrcMgr.ResourceMgrs[ponPort].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400783 if GEMPortList != nil {
784 return GEMPortList, nil
785 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530786
npujarec5762e2020-01-01 14:08:48 +0530787 GEMPortList, err = RsrcMgr.ResourceMgrs[ponPort].GetResourceID(ctx, ponPort,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400788 ponrmgr.GEMPORT_ID, NumOfPorts)
789 if err != nil && GEMPortList == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000790 logger.Errorf(ctx, "Failed to get gem port id for %s", IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400791 return nil, err
792 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530793
Girish Gowdru0c588b22019-04-23 23:24:56 -0400794 // update the resource map on KV store with the list of gemport_id
795 // allocated for the pon_intf_onu_id tuple
npujarec5762e2020-01-01 14:08:48 +0530796 err = RsrcMgr.ResourceMgrs[ponPort].UpdateGEMPortIDsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400797 GEMPortList)
798 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000799 logger.Errorf(ctx, "Failed to update GEM ports to kv store for %s", IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400800 return nil, err
801 }
npujarec5762e2020-01-01 14:08:48 +0530802 _ = RsrcMgr.UpdateGEMportsPonportToOnuMapOnKVStore(ctx, GEMPortList, ponPort,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700803 onuID, uniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400804 return GEMPortList, err
Abhilash S.L7f17e402019-03-15 17:40:41 +0530805}
806
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700807// 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 +0530808func (RsrcMgr *OpenOltResourceMgr) UpdateGEMPortIDsForOnu(ctx context.Context, ponPort uint32, onuID uint32,
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700809 uniID uint32, GEMPortList []uint32) error {
810 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", ponPort, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +0530811 return RsrcMgr.ResourceMgrs[ponPort].UpdateGEMPortIDsForOnu(ctx, IntfOnuIDUniID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400812 GEMPortList)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530813
814}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700815
816// FreeonuID releases(make free) onu id for a particular pon-port
npujarec5762e2020-01-01 14:08:48 +0530817func (RsrcMgr *OpenOltResourceMgr) FreeonuID(ctx context.Context, intfID uint32, onuID []uint32) {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700818
Girish Gowdra38d533d2020-03-30 20:38:51 -0700819 RsrcMgr.OnuIDMgmtLock[intfID].Lock()
Girish Gowdrab77ded92020-04-08 11:45:05 -0700820 defer RsrcMgr.OnuIDMgmtLock[intfID].Unlock()
821
npujarec5762e2020-01-01 14:08:48 +0530822 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID, ponrmgr.ONU_ID, onuID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530823
Girish Gowdru0c588b22019-04-23 23:24:56 -0400824 /* Free onu id for a particular interface.*/
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700825 var IntfonuID string
826 for _, onu := range onuID {
827 IntfonuID = fmt.Sprintf("%d,%d", intfID, onu)
npujarec5762e2020-01-01 14:08:48 +0530828 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfonuID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400829 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530830}
831
Gamze Abakafee36392019-10-03 11:17:24 +0000832// FreeAllocID frees AllocID on the PON resource pool and also frees the allocID association
833// for the given OLT device.
npujarec5762e2020-01-01 14:08:48 +0530834func (RsrcMgr *OpenOltResourceMgr) FreeAllocID(ctx context.Context, IntfID uint32, onuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000835 uniID uint32, allocID uint32) {
Girish Gowdrab77ded92020-04-08 11:45:05 -0700836 RsrcMgr.AllocIDMgmtLock[IntfID].Lock()
837 defer RsrcMgr.AllocIDMgmtLock[IntfID].Unlock()
838
npujarec5762e2020-01-01 14:08:48 +0530839 RsrcMgr.RemoveAllocIDForOnu(ctx, IntfID, onuID, uniID, allocID)
Gamze Abakafee36392019-10-03 11:17:24 +0000840 allocIDs := make([]uint32, 0)
841 allocIDs = append(allocIDs, allocID)
npujarec5762e2020-01-01 14:08:48 +0530842 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.ALLOC_ID, allocIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000843}
844
845// FreeGemPortID frees GemPortID on the PON resource pool and also frees the gemPortID association
846// for the given OLT device.
npujarec5762e2020-01-01 14:08:48 +0530847func (RsrcMgr *OpenOltResourceMgr) FreeGemPortID(ctx context.Context, IntfID uint32, onuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +0000848 uniID uint32, gemPortID uint32) {
Girish Gowdrab77ded92020-04-08 11:45:05 -0700849 RsrcMgr.GemPortIDMgmtLock[IntfID].Lock()
850 defer RsrcMgr.GemPortIDMgmtLock[IntfID].Unlock()
851
npujarec5762e2020-01-01 14:08:48 +0530852 RsrcMgr.RemoveGemPortIDForOnu(ctx, IntfID, onuID, uniID, gemPortID)
Gamze Abakafee36392019-10-03 11:17:24 +0000853 gemPortIDs := make([]uint32, 0)
854 gemPortIDs = append(gemPortIDs, gemPortID)
npujarec5762e2020-01-01 14:08:48 +0530855 RsrcMgr.ResourceMgrs[IntfID].FreeResourceID(ctx, IntfID, ponrmgr.GEMPORT_ID, gemPortIDs)
Gamze Abakafee36392019-10-03 11:17:24 +0000856}
857
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700858// FreePONResourcesForONU make the pon resources free for a given pon interface and onu id, and the clears the
859// resource map and the onuID associated with (pon_intf_id, gemport_id) tuple,
npujarec5762e2020-01-01 14:08:48 +0530860func (RsrcMgr *OpenOltResourceMgr) FreePONResourcesForONU(ctx context.Context, intfID uint32, onuID uint32, uniID uint32) {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530861
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700862 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
Abhilash S.L7f17e402019-03-15 17:40:41 +0530863
Girish Gowdra0c595ba2020-04-09 15:04:27 -0700864 RsrcMgr.AllocIDMgmtLock[intfID].Lock()
Girish Gowdrab77ded92020-04-08 11:45:05 -0700865 AllocIDs := RsrcMgr.ResourceMgrs[intfID].GetCurrentAllocIDForOnu(ctx, IntfOnuIDUniID)
Matteo Scandolod625b4c2020-04-02 16:16:01 -0700866
npujarec5762e2020-01-01 14:08:48 +0530867 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400868 ponrmgr.ALLOC_ID,
869 AllocIDs)
Girish Gowdra0c595ba2020-04-09 15:04:27 -0700870 RsrcMgr.AllocIDMgmtLock[intfID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530871
Girish Gowdra0c595ba2020-04-09 15:04:27 -0700872 RsrcMgr.GemPortIDMgmtLock[intfID].Lock()
npujarec5762e2020-01-01 14:08:48 +0530873 GEMPortIDs := RsrcMgr.ResourceMgrs[intfID].GetCurrentGEMPortIDsForOnu(ctx, IntfOnuIDUniID)
874 RsrcMgr.ResourceMgrs[intfID].FreeResourceID(ctx, intfID,
Girish Gowdru0c588b22019-04-23 23:24:56 -0400875 ponrmgr.GEMPORT_ID,
876 GEMPortIDs)
Girish Gowdra0c595ba2020-04-09 15:04:27 -0700877 RsrcMgr.GemPortIDMgmtLock[intfID].Unlock()
Abhilash S.L7f17e402019-03-15 17:40:41 +0530878
Girish Gowdru0c588b22019-04-23 23:24:56 -0400879 // Clear resource map associated with (pon_intf_id, gemport_id) tuple.
npujarec5762e2020-01-01 14:08:48 +0530880 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfOnuIDUniID)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400881 // Clear the ONU Id associated with the (pon_intf_id, gemport_id) tuple.
882 for _, GEM := range GEMPortIDs {
npujarec5762e2020-01-01 14:08:48 +0530883 _ = RsrcMgr.KVStore.Delete(ctx, fmt.Sprintf("%d,%d", intfID, GEM))
Girish Gowdru0c588b22019-04-23 23:24:56 -0400884 }
Abhilash S.L7f17e402019-03-15 17:40:41 +0530885}
886
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700887// IsFlowOnKvStore checks if the given flowID is present on the kv store
888// Returns true if the flowID is found, otherwise it returns false
889func (RsrcMgr *OpenOltResourceMgr) IsFlowOnKvStore(ctx context.Context, ponIntfID uint32, onuID int32, uniID int32,
890 flowID uint64) bool {
Abhilash S.L7f17e402019-03-15 17:40:41 +0530891
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700892 FlowIDs, err := RsrcMgr.GetCurrentFlowIDsForOnu(ctx, ponIntfID, onuID, uniID)
893 if err != nil {
894 // error logged in the called function
895 return false
896 }
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400897 if FlowIDs != nil {
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700898 logger.Debugw(ctx, "Found flowId(s) for this ONU", log.Fields{"pon": ponIntfID, "onuID": onuID, "uniID": uniID})
899 for _, id := range FlowIDs {
900 if flowID == id {
901 return true
manikkaraj k9eb6cac2019-05-09 12:32:03 -0400902 }
903 }
904 }
905 return false
906}
Manikkaraj kb1d51442019-07-23 10:41:02 -0400907
salmansiddiqui7ac62132019-08-22 03:58:50 +0000908// GetTechProfileIDForOnu fetches Tech-Profile-ID from the KV-Store for the given onu based on the path
Gamze Abakafee36392019-10-03 11:17:24 +0000909// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530910func (RsrcMgr *OpenOltResourceMgr) GetTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32) []uint32 {
salmansiddiqui7ac62132019-08-22 03:58:50 +0000911 Path := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000912 var Data []uint32
npujarec5762e2020-01-01 14:08:48 +0530913 Value, err := RsrcMgr.KVStore.Get(ctx, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400914 if err == nil {
915 if Value != nil {
916 Val, err := kvstore.ToByte(Value.Value)
917 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000918 logger.Errorw(ctx, "Failed to convert into byte array", log.Fields{"error": err})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400919 return Data
920 }
921 if err = json.Unmarshal(Val, &Data); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000922 logger.Error(ctx, "Failed to unmarshal", log.Fields{"error": err})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400923 return Data
924 }
925 }
926 } else {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000927 logger.Errorf(ctx, "Failed to get TP id from kvstore for path %s", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400928 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000929 logger.Debugf(ctx, "Getting TP id %d from path %s", Data, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400930 return Data
931
932}
933
Gamze Abakafee36392019-10-03 11:17:24 +0000934// RemoveTechProfileIDsForOnu deletes all tech profile ids from the KV-Store for the given onu based on the path
935// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530936func (RsrcMgr *OpenOltResourceMgr) RemoveTechProfileIDsForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32) error {
salmansiddiqui7ac62132019-08-22 03:58:50 +0000937 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
npujarec5762e2020-01-01 14:08:48 +0530938 if err := RsrcMgr.KVStore.Delete(ctx, IntfOnuUniID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000939 logger.Errorw(ctx, "Failed to delete techprofile id resource in KV store", log.Fields{"path": IntfOnuUniID})
Manikkaraj kb1d51442019-07-23 10:41:02 -0400940 return err
941 }
942 return nil
943}
944
Gamze Abakafee36392019-10-03 11:17:24 +0000945// RemoveTechProfileIDForOnu deletes a specific tech profile id from the KV-Store for the given onu based on the path
946// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530947func (RsrcMgr *OpenOltResourceMgr) RemoveTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32, UniID uint32, TpID uint32) error {
948 tpIDList := RsrcMgr.GetTechProfileIDForOnu(ctx, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000949 for i, tpIDInList := range tpIDList {
950 if tpIDInList == TpID {
951 tpIDList = append(tpIDList[:i], tpIDList[i+1:]...)
952 }
953 }
954 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
955 Value, err := json.Marshal(tpIDList)
956 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000957 logger.Error(ctx, "failed to Marshal")
Gamze Abakafee36392019-10-03 11:17:24 +0000958 return err
959 }
npujarec5762e2020-01-01 14:08:48 +0530960 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000961 logger.Errorf(ctx, "Failed to update resource %s", IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000962 return err
963 }
964 return err
965}
966
967// UpdateTechProfileIDForOnu updates (put) already present tech-profile-id for the given onu based on the path
968// This path is formed as the following: {IntfID, OnuID, UniID}/tp_id
npujarec5762e2020-01-01 14:08:48 +0530969func (RsrcMgr *OpenOltResourceMgr) UpdateTechProfileIDForOnu(ctx context.Context, IntfID uint32, OnuID uint32,
salmansiddiqui7ac62132019-08-22 03:58:50 +0000970 UniID uint32, TpID uint32) error {
Manikkaraj kb1d51442019-07-23 10:41:02 -0400971 var Value []byte
972 var err error
973
salmansiddiqui7ac62132019-08-22 03:58:50 +0000974 IntfOnuUniID := fmt.Sprintf(TpIDPathSuffix, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000975
npujarec5762e2020-01-01 14:08:48 +0530976 tpIDList := RsrcMgr.GetTechProfileIDForOnu(ctx, IntfID, OnuID, UniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000977 for _, value := range tpIDList {
978 if value == TpID {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000979 logger.Debugf(ctx, "TpID %d is already in tpIdList for the path %s", TpID, IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000980 return err
981 }
982 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000983 logger.Debugf(ctx, "updating tp id %d on path %s", TpID, IntfOnuUniID)
Gamze Abakafee36392019-10-03 11:17:24 +0000984 tpIDList = append(tpIDList, TpID)
985 Value, err = json.Marshal(tpIDList)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400986 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000987 logger.Error(ctx, "failed to Marshal")
Manikkaraj kb1d51442019-07-23 10:41:02 -0400988 return err
989 }
npujarec5762e2020-01-01 14:08:48 +0530990 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000991 logger.Errorf(ctx, "Failed to update resource %s", IntfOnuUniID)
Manikkaraj kb1d51442019-07-23 10:41:02 -0400992 return err
993 }
994 return err
995}
996
salmansiddiqui7ac62132019-08-22 03:58:50 +0000997// UpdateMeterIDForOnu updates the meter id in the KV-Store for the given onu based on the path
Gamze Abakafee36392019-10-03 11:17:24 +0000998// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +0530999func (RsrcMgr *OpenOltResourceMgr) UpdateMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +00001000 UniID uint32, TpID uint32, MeterConfig *ofp.OfpMeterConfig) error {
Manikkaraj kb1d51442019-07-23 10:41:02 -04001001 var Value []byte
1002 var err error
1003
Gamze Abakafee36392019-10-03 11:17:24 +00001004 IntfOnuUniID := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001005 Value, err = json.Marshal(*MeterConfig)
1006 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001007 logger.Error(ctx, "failed to Marshal meter config")
Manikkaraj kb1d51442019-07-23 10:41:02 -04001008 return err
1009 }
npujarec5762e2020-01-01 14:08:48 +05301010 if err = RsrcMgr.KVStore.Put(ctx, IntfOnuUniID, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001011 logger.Errorf(ctx, "Failed to store meter into KV store %s", IntfOnuUniID)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001012 return err
1013 }
1014 return err
1015}
1016
Gamze Abakafee36392019-10-03 11:17:24 +00001017// GetMeterIDForOnu fetches the meter id from the kv store for the given onu based on the path
1018// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +05301019func (RsrcMgr *OpenOltResourceMgr) GetMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +00001020 UniID uint32, TpID uint32) (*ofp.OfpMeterConfig, error) {
1021 Path := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001022 var meterConfig ofp.OfpMeterConfig
npujarec5762e2020-01-01 14:08:48 +05301023 Value, err := RsrcMgr.KVStore.Get(ctx, Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001024 if err == nil {
1025 if Value != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001026 logger.Debug(ctx, "Found meter in KV store", log.Fields{"Direction": Direction})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001027 Val, er := kvstore.ToByte(Value.Value)
1028 if er != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001029 logger.Errorw(ctx, "Failed to convert into byte array", log.Fields{"error": er})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001030 return nil, er
Manikkaraj kb1d51442019-07-23 10:41:02 -04001031 }
salmansiddiqui7ac62132019-08-22 03:58:50 +00001032 if er = json.Unmarshal(Val, &meterConfig); er != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001033 logger.Error(ctx, "Failed to unmarshal meterconfig", log.Fields{"error": er})
salmansiddiqui7ac62132019-08-22 03:58:50 +00001034 return nil, er
Manikkaraj kb1d51442019-07-23 10:41:02 -04001035 }
1036 } else {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001037 logger.Debug(ctx, "meter-does-not-exists-in-KVStore")
Manikkaraj kb1d51442019-07-23 10:41:02 -04001038 return nil, err
1039 }
1040 } else {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001041 logger.Errorf(ctx, "Failed to get Meter config from kvstore for path %s", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001042
1043 }
1044 return &meterConfig, err
1045}
1046
Gamze Abakafee36392019-10-03 11:17:24 +00001047// RemoveMeterIDForOnu deletes the meter id from the kV-Store for the given onu based on the path
1048// This path is formed as the following: <(pon_id, onu_id, uni_id)>/<tp_id>/meter_id/<direction>
npujarec5762e2020-01-01 14:08:48 +05301049func (RsrcMgr *OpenOltResourceMgr) RemoveMeterIDForOnu(ctx context.Context, Direction string, IntfID uint32, OnuID uint32,
Gamze Abakafee36392019-10-03 11:17:24 +00001050 UniID uint32, TpID uint32) error {
1051 Path := fmt.Sprintf(MeterIDPathSuffix, IntfID, OnuID, UniID, TpID, Direction)
npujarec5762e2020-01-01 14:08:48 +05301052 if err := RsrcMgr.KVStore.Delete(ctx, Path); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001053 logger.Errorf(ctx, "Failed to delete meter id %s from kvstore ", Path)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001054 return err
1055 }
1056 return nil
1057}
salmansiddiqui7ac62132019-08-22 03:58:50 +00001058
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301059//AddGemToOnuGemInfo adds gemport to onugem info kvstore
npujarec5762e2020-01-01 14:08:48 +05301060func (RsrcMgr *OpenOltResourceMgr) AddGemToOnuGemInfo(ctx context.Context, intfID uint32, onuID uint32, gemPort uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301061 var onuGemData []OnuGemInfo
1062 var err error
1063
npujarec5762e2020-01-01 14:08:48 +05301064 if err = RsrcMgr.ResourceMgrs[intfID].GetOnuGemInfo(ctx, intfID, &onuGemData); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001065 logger.Errorf(ctx, "failed to get onuifo for intfid %d", intfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301066 return err
1067 }
1068 if len(onuGemData) == 0 {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001069 logger.Errorw(ctx, "failed to ger Onuid info ", log.Fields{"intfid": intfID, "onuid": onuID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301070 return err
1071 }
1072
1073 for idx, onugem := range onuGemData {
1074 if onugem.OnuID == onuID {
1075 for _, gem := range onuGemData[idx].GemPorts {
1076 if gem == gemPort {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001077 logger.Debugw(ctx, "Gem already present in onugem info, skpping addition", log.Fields{"gem": gem})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301078 return nil
1079 }
1080 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001081 logger.Debugw(ctx, "Added gem to onugem info", log.Fields{"gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301082 onuGemData[idx].GemPorts = append(onuGemData[idx].GemPorts, gemPort)
1083 break
1084 }
1085 }
npujarec5762e2020-01-01 14:08:48 +05301086 err = RsrcMgr.ResourceMgrs[intfID].AddOnuGemInfo(ctx, intfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301087 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001088 logger.Error(ctx, "Failed to add onugem to kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301089 return err
1090 }
1091 return err
1092}
1093
1094//GetOnuGemInfo gets onu gem info from the kvstore per interface
npujarec5762e2020-01-01 14:08:48 +05301095func (RsrcMgr *OpenOltResourceMgr) GetOnuGemInfo(ctx context.Context, IntfID uint32) ([]OnuGemInfo, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301096 var onuGemData []OnuGemInfo
1097
npujarec5762e2020-01-01 14:08:48 +05301098 if err := RsrcMgr.ResourceMgrs[IntfID].GetOnuGemInfo(ctx, IntfID, &onuGemData); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001099 logger.Errorf(ctx, "failed to get onuifo for intfid %d", IntfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301100 return nil, err
1101 }
1102
1103 return onuGemData, nil
1104}
1105
Chaitrashree G S1a55b882020-02-04 17:35:35 -05001106// AddOnuGemInfo adds onu info on to the kvstore per interface
1107func (RsrcMgr *OpenOltResourceMgr) AddOnuGemInfo(ctx context.Context, IntfID uint32, onuGem OnuGemInfo) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301108 var onuGemData []OnuGemInfo
1109 var err error
1110
npujarec5762e2020-01-01 14:08:48 +05301111 if err = RsrcMgr.ResourceMgrs[IntfID].GetOnuGemInfo(ctx, IntfID, &onuGemData); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001112 logger.Errorf(ctx, "failed to get onuifo for intfid %d", IntfID)
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001113 return olterrors.NewErrPersistence("get", "OnuGemInfo", uint64(IntfID),
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001114 log.Fields{"onuGem": onuGem, "intfID": IntfID}, err)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301115 }
1116 onuGemData = append(onuGemData, onuGem)
npujarec5762e2020-01-01 14:08:48 +05301117 err = RsrcMgr.ResourceMgrs[IntfID].AddOnuGemInfo(ctx, IntfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301118 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001119 logger.Error(ctx, "Failed to add onugem to kv store")
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001120 return olterrors.NewErrPersistence("set", "OnuGemInfo", uint64(IntfID),
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001121 log.Fields{"onuGemData": onuGemData, "intfID": IntfID}, err)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301122 }
1123
Neha Sharma96b7bf22020-06-15 10:37:32 +00001124 logger.Debugw(ctx, "added onu to onugeminfo", log.Fields{"intf": IntfID, "onugem": onuGem})
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001125 return nil
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301126}
1127
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301128// 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 +05301129func (RsrcMgr *OpenOltResourceMgr) AddUniPortToOnuInfo(ctx context.Context, intfID uint32, onuID uint32, portNo uint32) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301130 var onuGemData []OnuGemInfo
1131 var err error
1132
npujarec5762e2020-01-01 14:08:48 +05301133 if err = RsrcMgr.ResourceMgrs[intfID].GetOnuGemInfo(ctx, intfID, &onuGemData); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001134 logger.Errorf(ctx, "failed to get onuifo for intfid %d", intfID)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301135 return
1136 }
1137 for idx, onu := range onuGemData {
1138 if onu.OnuID == onuID {
1139 for _, uni := range onu.UniPorts {
1140 if uni == portNo {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001141 logger.Debugw(ctx, "uni already present in onugem info", log.Fields{"uni": portNo})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301142 return
1143 }
1144 }
1145 onuGemData[idx].UniPorts = append(onuGemData[idx].UniPorts, portNo)
1146 break
1147 }
1148 }
npujarec5762e2020-01-01 14:08:48 +05301149 err = RsrcMgr.ResourceMgrs[intfID].AddOnuGemInfo(ctx, intfID, onuGemData)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301150 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001151 logger.Errorw(ctx, "Failed to add uin port in onugem to kv store", log.Fields{"uni": portNo})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301152 return
1153 }
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301154}
1155
Esin Karaman7fb80c22020-07-16 14:23:33 +00001156//UpdateGemPortForPktIn updates gemport for pkt in path to kvstore, path being intfid, onuid, portno, vlan id, priority bit
npujarec5762e2020-01-01 14:08:48 +05301157func (RsrcMgr *OpenOltResourceMgr) UpdateGemPortForPktIn(ctx context.Context, pktIn PacketInInfoKey, gemPort uint32) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301158
Esin Karaman7fb80c22020-07-16 14:23:33 +00001159 path := fmt.Sprintf(OnuPacketINPath, pktIn.IntfID, pktIn.OnuID, pktIn.LogicalPort, pktIn.VlanID, pktIn.Priority)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301160 Value, err := json.Marshal(gemPort)
1161 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001162 logger.Error(ctx, "Failed to marshal data")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301163 return
1164 }
npujarec5762e2020-01-01 14:08:48 +05301165 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001166 logger.Errorw(ctx, "Failed to put to kvstore", log.Fields{"path": path, "value": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301167 return
1168 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001169 logger.Debugw(ctx, "added gem packet in successfully", log.Fields{"path": path, "gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301170}
1171
Esin Karaman7fb80c22020-07-16 14:23:33 +00001172// GetGemPortFromOnuPktIn gets the gem port from onu pkt in path, path being intfid, onuid, portno, vlan id, priority bit
1173func (RsrcMgr *OpenOltResourceMgr) GetGemPortFromOnuPktIn(ctx context.Context, packetInInfoKey PacketInInfoKey) (uint32, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301174
1175 var Val []byte
1176 var gemPort uint32
1177
Esin Karaman7fb80c22020-07-16 14:23:33 +00001178 path := fmt.Sprintf(OnuPacketINPath, packetInInfoKey.IntfID, packetInInfoKey.OnuID, packetInInfoKey.LogicalPort,
1179 packetInInfoKey.VlanID, packetInInfoKey.Priority)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301180
npujarec5762e2020-01-01 14:08:48 +05301181 value, err := RsrcMgr.KVStore.Get(ctx, path)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301182 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001183 logger.Errorw(ctx, "Failed to get from kv store", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301184 return uint32(0), err
1185 } else if value == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001186 logger.Debugw(ctx, "No pkt in gem found", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301187 return uint32(0), nil
1188 }
1189
1190 if Val, err = kvstore.ToByte(value.Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001191 logger.Error(ctx, "Failed to convert to byte array")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301192 return uint32(0), err
1193 }
1194 if err = json.Unmarshal(Val, &gemPort); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001195 logger.Error(ctx, "Failed to unmarshall")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301196 return uint32(0), err
1197 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001198 logger.Debugw(ctx, "found packein gemport from path", log.Fields{"path": path, "gem": gemPort})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301199
1200 return gemPort, nil
1201}
1202
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001203//DeletePacketInGemPortForOnu deletes the packet-in gemport for ONU
1204func (RsrcMgr *OpenOltResourceMgr) DeletePacketInGemPortForOnu(ctx context.Context, intfID uint32, onuID uint32, logicalPort uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301205
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001206 path := fmt.Sprintf(OnuPacketINPathPrefix, intfID, onuID, logicalPort)
1207 value, err := RsrcMgr.KVStore.List(ctx, path)
Esin Karaman7fb80c22020-07-16 14:23:33 +00001208 if err != nil {
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001209 logger.Errorf(ctx, "failed-to-read-value-from-path-%s", path)
1210 return errors.New("failed-to-read-value-from-path-" + path)
Esin Karaman7fb80c22020-07-16 14:23:33 +00001211 }
Esin Karaman7fb80c22020-07-16 14:23:33 +00001212
1213 //remove them one by one
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001214 for key := range value {
1215 // Formulate the right key path suffix ti be delete
1216 stringToBeReplaced := fmt.Sprintf(BasePathKvStore, RsrcMgr.DeviceID) + "/"
1217 replacedWith := ""
1218 key = strings.Replace(key, stringToBeReplaced, replacedWith, 1)
1219
1220 logger.Debugf(ctx, "removing-key-%s", key)
Esin Karaman7fb80c22020-07-16 14:23:33 +00001221 if err := RsrcMgr.KVStore.Delete(ctx, key); err != nil {
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001222 logger.Errorf(ctx, "failed-to-remove-resource-%s", key)
Esin Karaman7fb80c22020-07-16 14:23:33 +00001223 return err
1224 }
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301225 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001226
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301227 return nil
1228}
1229
1230// DelOnuGemInfoForIntf deletes the onugem info from kvstore per interface
npujarec5762e2020-01-01 14:08:48 +05301231func (RsrcMgr *OpenOltResourceMgr) DelOnuGemInfoForIntf(ctx context.Context, intfID uint32) error {
1232 if err := RsrcMgr.ResourceMgrs[intfID].DelOnuGemInfoForIntf(ctx, intfID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001233 logger.Errorw(ctx, "failed to delete onu gem info for", log.Fields{"intfid": intfID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301234 return err
1235 }
1236 return nil
1237}
1238
1239//GetNNIFromKVStore gets NNi intfids from kvstore. path being per device
npujarec5762e2020-01-01 14:08:48 +05301240func (RsrcMgr *OpenOltResourceMgr) GetNNIFromKVStore(ctx context.Context) ([]uint32, error) {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301241
1242 var nni []uint32
1243 var Val []byte
1244
Kent Hagermane6ff1012020-07-14 15:07:53 -04001245 path := NnniIntfID
npujarec5762e2020-01-01 14:08:48 +05301246 value, err := RsrcMgr.KVStore.Get(ctx, path)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301247 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001248 logger.Error(ctx, "failed to get data from kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301249 return nil, err
1250 }
1251 if value != nil {
1252 if Val, err = kvstore.ToByte(value.Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001253 logger.Error(ctx, "Failed to convert to byte array")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301254 return nil, err
1255 }
1256 if err = json.Unmarshal(Val, &nni); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001257 logger.Error(ctx, "Failed to unmarshall")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301258 return nil, err
1259 }
1260 }
1261 return nni, err
1262}
1263
1264// AddNNIToKVStore adds Nni interfaces to kvstore, path being per device.
npujarec5762e2020-01-01 14:08:48 +05301265func (RsrcMgr *OpenOltResourceMgr) AddNNIToKVStore(ctx context.Context, nniIntf uint32) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301266 var Value []byte
1267
npujarec5762e2020-01-01 14:08:48 +05301268 nni, err := RsrcMgr.GetNNIFromKVStore(ctx)
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301269 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001270 logger.Error(ctx, "failed to fetch nni interfaces from kv store")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301271 return err
1272 }
1273
Kent Hagermane6ff1012020-07-14 15:07:53 -04001274 path := NnniIntfID
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301275 nni = append(nni, nniIntf)
1276 Value, err = json.Marshal(nni)
1277 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001278 logger.Error(ctx, "Failed to marshal data")
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301279 }
npujarec5762e2020-01-01 14:08:48 +05301280 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001281 logger.Errorw(ctx, "Failed to put to kvstore", log.Fields{"path": path, "value": Value})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301282 return err
1283 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001284 logger.Debugw(ctx, "added nni to kv successfully", log.Fields{"path": path, "nni": nniIntf})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301285 return nil
1286}
1287
1288// DelNNiFromKVStore deletes nni interface list from kv store.
npujarec5762e2020-01-01 14:08:48 +05301289func (RsrcMgr *OpenOltResourceMgr) DelNNiFromKVStore(ctx context.Context) error {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301290
Kent Hagermane6ff1012020-07-14 15:07:53 -04001291 path := NnniIntfID
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301292
npujarec5762e2020-01-01 14:08:48 +05301293 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001294 logger.Errorw(ctx, "Failed to delete nni interfaces from kv store", log.Fields{"path": path})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301295 return err
1296 }
1297 return nil
1298}
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301299
1300//UpdateFlowIDsForGem updates flow id per gemport
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001301func (RsrcMgr *OpenOltResourceMgr) UpdateFlowIDsForGem(ctx context.Context, intf uint32, gem uint32, flowIDs []uint64) error {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301302 var val []byte
1303 path := fmt.Sprintf(FlowIDsForGem, intf)
1304
npujarec5762e2020-01-01 14:08:48 +05301305 flowsForGem, err := RsrcMgr.GetFlowIDsGemMapForInterface(ctx, intf)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301306 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001307 logger.Error(ctx, "Failed to ger flowids for interface", log.Fields{"error": err, "intf": intf})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301308 return err
1309 }
1310 if flowsForGem == nil {
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001311 flowsForGem = make(map[uint32][]uint64)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301312 }
1313 flowsForGem[gem] = flowIDs
1314 val, err = json.Marshal(flowsForGem)
1315 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001316 logger.Error(ctx, "Failed to marshal data", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301317 return err
1318 }
Girish Gowdrab77ded92020-04-08 11:45:05 -07001319
npujarec5762e2020-01-01 14:08:48 +05301320 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001321 logger.Errorw(ctx, "Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301322 return err
1323 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001324 logger.Debugw(ctx, "added flowid list for gem to kv successfully", log.Fields{"path": path, "flowidlist": flowsForGem[gem]})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301325 return nil
1326}
1327
1328//DeleteFlowIDsForGem deletes the flowID list entry per gem from kvstore.
npujarec5762e2020-01-01 14:08:48 +05301329func (RsrcMgr *OpenOltResourceMgr) DeleteFlowIDsForGem(ctx context.Context, intf uint32, gem uint32) {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301330 path := fmt.Sprintf(FlowIDsForGem, intf)
1331 var val []byte
1332
npujarec5762e2020-01-01 14:08:48 +05301333 flowsForGem, err := RsrcMgr.GetFlowIDsGemMapForInterface(ctx, intf)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301334 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001335 logger.Error(ctx, "Failed to ger flowids for interface", log.Fields{"error": err, "intf": intf})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301336 return
1337 }
1338 if flowsForGem == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001339 logger.Error(ctx, "No flowids found ", log.Fields{"intf": intf, "gemport": gem})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301340 return
1341 }
1342 // once we get the flows per gem map from kv , just delete the gem entry from the map
1343 delete(flowsForGem, gem)
1344 // once gem entry is deleted update the kv store.
1345 val, err = json.Marshal(flowsForGem)
1346 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001347 logger.Error(ctx, "Failed to marshal data", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301348 return
1349 }
Girish Gowdra38d533d2020-03-30 20:38:51 -07001350
npujarec5762e2020-01-01 14:08:48 +05301351 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001352 logger.Errorw(ctx, "Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301353 }
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301354}
1355
1356//GetFlowIDsGemMapForInterface gets flowids per gemport and interface
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001357func (RsrcMgr *OpenOltResourceMgr) GetFlowIDsGemMapForInterface(ctx context.Context, intf uint32) (map[uint32][]uint64, error) {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301358 path := fmt.Sprintf(FlowIDsForGem, intf)
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001359 var flowsForGem map[uint32][]uint64
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301360 var val []byte
npujarec5762e2020-01-01 14:08:48 +05301361 value, err := RsrcMgr.KVStore.Get(ctx, path)
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301362 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001363 logger.Error(ctx, "failed to get data from kv store")
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301364 return nil, err
1365 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001366 if value != nil && value.Value != nil {
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301367 if val, err = kvstore.ToByte(value.Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001368 logger.Error(ctx, "Failed to convert to byte array ", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301369 return nil, err
1370 }
1371 if err = json.Unmarshal(val, &flowsForGem); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001372 logger.Error(ctx, "Failed to unmarshall", log.Fields{"error": err})
Abhilash Laxmeshwar275c0742019-11-25 16:47:02 +05301373 return nil, err
1374 }
1375 }
1376 return flowsForGem, nil
1377}
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301378
1379//DeleteIntfIDGempMapPath deletes the intf id path used to store flow ids per gem to kvstore.
npujarec5762e2020-01-01 14:08:48 +05301380func (RsrcMgr *OpenOltResourceMgr) DeleteIntfIDGempMapPath(ctx context.Context, intf uint32) {
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301381 path := fmt.Sprintf(FlowIDsForGem, intf)
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001382
npujarec5762e2020-01-01 14:08:48 +05301383 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001384 logger.Errorw(ctx, "Failed to delete nni interfaces from kv store", log.Fields{"path": path})
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301385 }
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301386}
1387
1388// RemoveResourceMap Clear resource map associated with (intfid, onuid, uniid) tuple.
npujarec5762e2020-01-01 14:08:48 +05301389func (RsrcMgr *OpenOltResourceMgr) RemoveResourceMap(ctx context.Context, intfID uint32, onuID int32, uniID int32) {
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301390 IntfOnuIDUniID := fmt.Sprintf("%d,%d,%d", intfID, onuID, uniID)
npujarec5762e2020-01-01 14:08:48 +05301391 RsrcMgr.ResourceMgrs[intfID].RemoveResourceMap(ctx, IntfOnuIDUniID)
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301392}
Esin Karamanccb714b2019-11-29 15:02:06 +00001393
1394//GetMcastQueuePerInterfaceMap gets multicast queue info per pon interface
npujarec5762e2020-01-01 14:08:48 +05301395func (RsrcMgr *OpenOltResourceMgr) GetMcastQueuePerInterfaceMap(ctx context.Context) (map[uint32][]uint32, error) {
Kent Hagermane6ff1012020-07-14 15:07:53 -04001396 path := McastQueuesForIntf
Esin Karamanccb714b2019-11-29 15:02:06 +00001397 var mcastQueueToIntfMap map[uint32][]uint32
1398 var val []byte
1399
npujarec5762e2020-01-01 14:08:48 +05301400 kvPair, err := RsrcMgr.KVStore.Get(ctx, path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001401 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001402 logger.Error(ctx, "failed to get data from kv store")
Esin Karamanccb714b2019-11-29 15:02:06 +00001403 return nil, err
1404 }
1405 if kvPair != nil && kvPair.Value != nil {
1406 if val, err = kvstore.ToByte(kvPair.Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001407 logger.Error(ctx, "Failed to convert to byte array ", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001408 return nil, err
1409 }
1410 if err = json.Unmarshal(val, &mcastQueueToIntfMap); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001411 logger.Error(ctx, "Failed to unmarshall ", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001412 return nil, err
1413 }
1414 }
1415 return mcastQueueToIntfMap, nil
1416}
1417
1418//AddMcastQueueForIntf adds multicast queue for pon interface
npujarec5762e2020-01-01 14:08:48 +05301419func (RsrcMgr *OpenOltResourceMgr) AddMcastQueueForIntf(ctx context.Context, intf uint32, gem uint32, servicePriority uint32) error {
Esin Karamanccb714b2019-11-29 15:02:06 +00001420 var val []byte
Kent Hagermane6ff1012020-07-14 15:07:53 -04001421 path := McastQueuesForIntf
Esin Karamanccb714b2019-11-29 15:02:06 +00001422
npujarec5762e2020-01-01 14:08:48 +05301423 mcastQueues, err := RsrcMgr.GetMcastQueuePerInterfaceMap(ctx)
Esin Karamanccb714b2019-11-29 15:02:06 +00001424 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001425 logger.Errorw(ctx, "Failed to get multicast queue info for interface", log.Fields{"error": err, "intf": intf})
Esin Karamanccb714b2019-11-29 15:02:06 +00001426 return err
1427 }
1428 if mcastQueues == nil {
1429 mcastQueues = make(map[uint32][]uint32)
1430 }
1431 mcastQueues[intf] = []uint32{gem, servicePriority}
1432 if val, err = json.Marshal(mcastQueues); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001433 logger.Errorw(ctx, "Failed to marshal data", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001434 return err
1435 }
npujarec5762e2020-01-01 14:08:48 +05301436 if err = RsrcMgr.KVStore.Put(ctx, path, val); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001437 logger.Errorw(ctx, "Failed to put to kvstore", log.Fields{"error": err, "path": path, "value": val})
Esin Karamanccb714b2019-11-29 15:02:06 +00001438 return err
1439 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001440 logger.Debugw(ctx, "added multicast queue info to KV store successfully", log.Fields{"path": path, "mcastQueueInfo": mcastQueues[intf], "interfaceId": intf})
Esin Karamanccb714b2019-11-29 15:02:06 +00001441 return nil
1442}
1443
1444//AddFlowGroupToKVStore adds flow group into KV store
npujarec5762e2020-01-01 14:08:48 +05301445func (RsrcMgr *OpenOltResourceMgr) AddFlowGroupToKVStore(ctx context.Context, groupEntry *ofp.OfpGroupEntry, cached bool) error {
Esin Karamanccb714b2019-11-29 15:02:06 +00001446 var Value []byte
1447 var err error
1448 var path string
1449 if cached {
1450 path = fmt.Sprintf(FlowGroupCached, groupEntry.Desc.GroupId)
1451 } else {
1452 path = fmt.Sprintf(FlowGroup, groupEntry.Desc.GroupId)
1453 }
1454 //build group info object
1455 var outPorts []uint32
1456 for _, ofBucket := range groupEntry.Desc.Buckets {
1457 for _, ofAction := range ofBucket.Actions {
1458 if ofAction.Type == ofp.OfpActionType_OFPAT_OUTPUT {
1459 outPorts = append(outPorts, ofAction.GetOutput().Port)
1460 }
1461 }
1462 }
1463 groupInfo := GroupInfo{
1464 GroupID: groupEntry.Desc.GroupId,
1465 OutPorts: outPorts,
1466 }
1467
1468 Value, err = json.Marshal(groupInfo)
1469
1470 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001471 logger.Error(ctx, "failed to Marshal flow group object")
Esin Karamanccb714b2019-11-29 15:02:06 +00001472 return err
1473 }
1474
npujarec5762e2020-01-01 14:08:48 +05301475 if err = RsrcMgr.KVStore.Put(ctx, path, Value); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001476 logger.Errorf(ctx, "Failed to update resource %s", path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001477 return err
1478 }
1479 return nil
1480}
1481
1482//RemoveFlowGroupFromKVStore removes flow group from KV store
Esin Karamand519bbf2020-07-01 11:16:03 +00001483func (RsrcMgr *OpenOltResourceMgr) RemoveFlowGroupFromKVStore(ctx context.Context, groupID uint32, cached bool) error {
Esin Karamanccb714b2019-11-29 15:02:06 +00001484 var path string
1485 if cached {
1486 path = fmt.Sprintf(FlowGroupCached, groupID)
1487 } else {
1488 path = fmt.Sprintf(FlowGroup, groupID)
1489 }
npujarec5762e2020-01-01 14:08:48 +05301490 if err := RsrcMgr.KVStore.Delete(ctx, path); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001491 logger.Errorf(ctx, "Failed to remove resource %s due to %s", path, err)
Esin Karamand519bbf2020-07-01 11:16:03 +00001492 return err
Esin Karamanccb714b2019-11-29 15:02:06 +00001493 }
Esin Karamand519bbf2020-07-01 11:16:03 +00001494 return nil
Esin Karamanccb714b2019-11-29 15:02:06 +00001495}
1496
1497//GetFlowGroupFromKVStore fetches flow group from the KV store. Returns (false, {} error) if any problem occurs during
1498//fetching the data. Returns (true, groupInfo, nil) if the group is fetched successfully.
1499// Returns (false, {}, nil) if the group does not exists in the KV store.
npujarec5762e2020-01-01 14:08:48 +05301500func (RsrcMgr *OpenOltResourceMgr) GetFlowGroupFromKVStore(ctx context.Context, groupID uint32, cached bool) (bool, GroupInfo, error) {
Esin Karamanccb714b2019-11-29 15:02:06 +00001501 var groupInfo GroupInfo
1502 var path string
1503 if cached {
1504 path = fmt.Sprintf(FlowGroupCached, groupID)
1505 } else {
1506 path = fmt.Sprintf(FlowGroup, groupID)
1507 }
npujarec5762e2020-01-01 14:08:48 +05301508 kvPair, err := RsrcMgr.KVStore.Get(ctx, path)
Esin Karamanccb714b2019-11-29 15:02:06 +00001509 if err != nil {
1510 return false, groupInfo, err
1511 }
1512 if kvPair != nil && kvPair.Value != nil {
1513 Val, err := kvstore.ToByte(kvPair.Value)
1514 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001515 logger.Errorw(ctx, "Failed to convert flow group into byte array", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001516 return false, groupInfo, err
1517 }
1518 if err = json.Unmarshal(Val, &groupInfo); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001519 logger.Errorw(ctx, "Failed to unmarshal", log.Fields{"error": err})
Esin Karamanccb714b2019-11-29 15:02:06 +00001520 return false, groupInfo, err
1521 }
1522 return true, groupInfo, nil
1523 }
1524 return false, groupInfo, nil
1525}
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001526
1527// toByte converts an interface value to a []byte. The interface should either be of
1528// a string type or []byte. Otherwise, an error is returned.
1529func toByte(value interface{}) ([]byte, error) {
1530 switch t := value.(type) {
1531 case []byte:
1532 return value.([]byte), nil
1533 case string:
1534 return []byte(value.(string)), nil
1535 default:
1536 return nil, fmt.Errorf("unexpected-type-%T", t)
1537 }
1538}
1539
1540func checkForFlowIDInList(FlowIDList []uint64, FlowID uint64) (bool, uint64) {
1541 /*
1542 Check for a flow id in a given list of flow IDs.
1543 :param FLowIDList: List of Flow IDs
1544 :param FlowID: Flowd to check in the list
1545 : return true and the index if present false otherwise.
1546 */
1547
1548 for idx := range FlowIDList {
1549 if FlowID == FlowIDList[idx] {
1550 return true, uint64(idx)
1551 }
1552 }
1553 return false, 0
1554}