blob: 55a404e0da671911ab64cadab73118687c636c3b [file] [log] [blame]
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301/*
2 * Copyright 2018-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 */
Girish Gowdru6a80bbd2019-07-02 07:36:09 -070016
Scott Bakerdbd960e2020-02-28 08:57:51 -080017//Package core provides the utility for olt devices, flows and statistics
18package core
Phaneendra Manda4c62c802019-03-06 21:37:49 +053019
20import (
cuilin20187b2a8c32019-03-26 19:52:28 -070021 "context"
Matt Jeanneretceea2e02020-03-27 14:19:57 -040022 "encoding/binary"
Matt Jeanneret1359c732019-08-01 21:40:02 -040023 "encoding/hex"
Girish Gowdra491a9c62021-01-06 16:43:07 -080024 "errors"
cuilin20187b2a8c32019-03-26 19:52:28 -070025 "fmt"
26 "io"
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -040027 "net"
cuilin20187b2a8c32019-03-26 19:52:28 -070028 "strconv"
29 "strings"
30 "sync"
31 "time"
Phaneendra Manda4c62c802019-03-06 21:37:49 +053032
khenaidoo106c61a2021-08-11 18:05:46 -040033 "github.com/golang/protobuf/ptypes/empty"
34 vgrpc "github.com/opencord/voltha-lib-go/v7/pkg/grpc"
35 "github.com/opencord/voltha-protos/v5/go/adapter_services"
36
Matteo Scandolo945e4012019-12-12 14:16:11 -080037 "github.com/cenkalti/backoff/v3"
cuilin20187b2a8c32019-03-26 19:52:28 -070038 "github.com/gogo/protobuf/proto"
Girish Kumar93e91742020-07-27 16:43:19 +000039 grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
40 grpc_opentracing "github.com/grpc-ecosystem/go-grpc-middleware/tracing/opentracing"
khenaidoo106c61a2021-08-11 18:05:46 -040041 "github.com/opencord/voltha-lib-go/v7/pkg/config"
42 "github.com/opencord/voltha-lib-go/v7/pkg/events/eventif"
43 flow_utils "github.com/opencord/voltha-lib-go/v7/pkg/flows"
44 "github.com/opencord/voltha-lib-go/v7/pkg/log"
Mahir Gunyel85f61c12021-10-06 11:53:45 -070045 plt "github.com/opencord/voltha-lib-go/v7/pkg/platform"
khenaidoo106c61a2021-08-11 18:05:46 -040046 "github.com/opencord/voltha-lib-go/v7/pkg/pmmetrics"
Matteo Scandolodfa7a972020-11-06 13:03:40 -080047
khenaidoo106c61a2021-08-11 18:05:46 -040048 conf "github.com/opencord/voltha-openolt-adapter/internal/pkg/config"
Thomas Lee S94109f12020-03-03 16:39:29 +053049 "github.com/opencord/voltha-openolt-adapter/internal/pkg/olterrors"
Scott Bakerdbd960e2020-02-28 08:57:51 -080050 rsrcMgr "github.com/opencord/voltha-openolt-adapter/internal/pkg/resourcemanager"
khenaidoo106c61a2021-08-11 18:05:46 -040051 "github.com/opencord/voltha-protos/v5/go/common"
52 "github.com/opencord/voltha-protos/v5/go/extension"
53 ic "github.com/opencord/voltha-protos/v5/go/inter_container"
54 of "github.com/opencord/voltha-protos/v5/go/openflow_13"
55 oop "github.com/opencord/voltha-protos/v5/go/openolt"
56 "github.com/opencord/voltha-protos/v5/go/voltha"
cuilin20187b2a8c32019-03-26 19:52:28 -070057 "google.golang.org/grpc"
Devmalya Paula1efa642020-04-20 01:36:43 -040058 "google.golang.org/grpc/codes"
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -040059 "google.golang.org/grpc/status"
Phaneendra Manda4c62c802019-03-06 21:37:49 +053060)
61
salmansiddiqui7ac62132019-08-22 03:58:50 +000062// Constants for number of retries and for timeout
Manikkaraj kb1d51442019-07-23 10:41:02 -040063const (
Girish Gowdra491a9c62021-01-06 16:43:07 -080064 InvalidPort = 0xffffffff
65 MaxNumOfGroupHandlerChannels = 256
66
67 McastFlowOrGroupAdd = "McastFlowOrGroupAdd"
68 McastFlowOrGroupModify = "McastFlowOrGroupModify"
69 McastFlowOrGroupRemove = "McastFlowOrGroupRemove"
kesavand62126212021-01-12 04:56:06 -050070 oltPortInfoTimeout = 3
Manikkaraj kb1d51442019-07-23 10:41:02 -040071)
72
Phaneendra Manda4c62c802019-03-06 21:37:49 +053073//DeviceHandler will interact with the OLT device.
74type DeviceHandler struct {
khenaidoo106c61a2021-08-11 18:05:46 -040075 cm *config.ConfigManager
76 device *voltha.Device
77 cfg *conf.AdapterFlags
78 coreClient *vgrpc.Client
79 childAdapterClients map[string]*vgrpc.Client
80 lockChildAdapterClients sync.RWMutex
81 EventProxy eventif.EventProxy
82 openOLT *OpenOLT
83 exitChannel chan int
84 lockDevice sync.RWMutex
85 Client oop.OpenoltClient
86 transitionMap *TransitionMap
87 clientCon *grpc.ClientConn
88 flowMgr []*OpenOltFlowMgr
89 groupMgr *OpenOltGroupMgr
90 eventMgr *OpenOltEventMgr
91 resourceMgr []*rsrcMgr.OpenOltResourceMgr
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -070092
93 deviceInfo *oop.DeviceInfo
Naga Manjunatha8dc9372019-10-31 23:01:18 +053094
Girish Gowdra3ab6d212020-03-24 17:33:15 -070095 discOnus sync.Map
96 onus sync.Map
97 portStats *OpenOltStatisticsMgr
98 metrics *pmmetrics.PmMetrics
99 stopCollector chan bool
100 stopHeartbeatCheck chan bool
101 activePorts sync.Map
102 stopIndications chan bool
103 isReadIndicationRoutineActive bool
Girish Gowdracefae192020-03-19 18:14:10 -0700104
Mahir Gunyelb0046752021-02-26 13:51:05 -0800105 totalPonPorts uint32
106 perPonOnuIndicationChannel map[uint32]onuIndicationChannels
107 perPonOnuIndicationChannelLock sync.Mutex
Girish Gowdra491a9c62021-01-06 16:43:07 -0800108
109 // Slice of channels. Each channel in slice, index by (mcast-group-id modulo MaxNumOfGroupHandlerChannels)
110 // A go routine per index, waits on a unique channel for incoming mcast flow or group (add/modify/remove).
Girish Gowdra4736e5c2021-08-25 15:19:10 -0700111 incomingMcastFlowOrGroup []chan McastFlowOrGroupControlBlock
112 stopMcastHandlerRoutine []chan bool
113 mcastHandlerRoutineActive []bool
Gamze Abakac2c32a62021-03-11 11:44:18 +0000114
115 adapterPreviouslyConnected bool
116 agentPreviouslyConnected bool
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700117}
118
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700119//OnuDevice represents ONU related info
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700120type OnuDevice struct {
khenaidoo106c61a2021-08-11 18:05:46 -0400121 deviceID string
122 deviceType string
123 serialNumber string
124 onuID uint32
125 intfID uint32
126 proxyDeviceID string
127 losRaised bool
128 rdiRaised bool
129 adapterEndpoint string
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700130}
131
Mahir Gunyelb0046752021-02-26 13:51:05 -0800132type onuIndicationMsg struct {
133 ctx context.Context
134 indication *oop.Indication
Mahir Gunyel2fb81472020-12-16 23:18:34 -0800135}
136
137type onuIndicationChannels struct {
Mahir Gunyelb0046752021-02-26 13:51:05 -0800138 indicationChannel chan onuIndicationMsg
Mahir Gunyel2fb81472020-12-16 23:18:34 -0800139 stopChannel chan struct{}
140}
141
Girish Gowdra491a9c62021-01-06 16:43:07 -0800142//McastFlowOrGroupControlBlock is created per mcast flow/group add/modify/remove and pushed on the incomingMcastFlowOrGroup channel slice
143//The McastFlowOrGroupControlBlock is then picked by the mcastFlowOrGroupChannelHandlerRoutine for further processing.
144//There are MaxNumOfGroupHandlerChannels number of mcastFlowOrGroupChannelHandlerRoutine routines which monitor for any incoming mcast flow/group messages
145//and process them serially. The mcast flow/group are assigned these routines based on formula (group-id modulo MaxNumOfGroupHandlerChannels)
146type McastFlowOrGroupControlBlock struct {
147 ctx context.Context // Flow/group handler context
148 flowOrGroupAction string // one of McastFlowOrGroupAdd, McastFlowOrGroupModify or McastFlowOrGroupDelete
149 flow *voltha.OfpFlowStats // Flow message (can be nil or valid flow)
150 group *voltha.OfpGroupEntry // Group message (can be nil or valid group)
151 errChan *chan error // channel to report the mcast Flow/group handling error
152}
153
Naga Manjunath7615e552019-10-11 22:35:47 +0530154var pmNames = []string{
155 "rx_bytes",
156 "rx_packets",
157 "rx_mcast_packets",
158 "rx_bcast_packets",
159 "tx_bytes",
160 "tx_packets",
161 "tx_mcast_packets",
162 "tx_bcast_packets",
163}
164
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700165//NewOnuDevice creates a new Onu Device
khenaidoo106c61a2021-08-11 18:05:46 -0400166func NewOnuDevice(devID, deviceTp, serialNum string, onuID, intfID uint32, proxyDevID string, losRaised bool, adapterEndpoint string) *OnuDevice {
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700167 var device OnuDevice
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700168 device.deviceID = devID
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700169 device.deviceType = deviceTp
170 device.serialNumber = serialNum
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700171 device.onuID = onuID
172 device.intfID = intfID
173 device.proxyDeviceID = proxyDevID
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +0530174 device.losRaised = losRaised
khenaidoo106c61a2021-08-11 18:05:46 -0400175 device.adapterEndpoint = adapterEndpoint
Mahir Gunyela3f9add2019-06-06 15:13:19 -0700176 return &device
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530177}
178
179//NewDeviceHandler creates a new device handler
khenaidoo106c61a2021-08-11 18:05:46 -0400180func NewDeviceHandler(cc *vgrpc.Client, ep eventif.EventProxy, device *voltha.Device, adapter *OpenOLT, cm *config.ConfigManager, cfg *conf.AdapterFlags) *DeviceHandler {
cuilin20187b2a8c32019-03-26 19:52:28 -0700181 var dh DeviceHandler
Matteo Scandolodfa7a972020-11-06 13:03:40 -0800182 dh.cm = cm
khenaidoo106c61a2021-08-11 18:05:46 -0400183 dh.coreClient = cc
Devmalya Paulfb990a52019-07-09 10:01:49 -0400184 dh.EventProxy = ep
cuilin20187b2a8c32019-03-26 19:52:28 -0700185 cloned := (proto.Clone(device)).(*voltha.Device)
cuilin20187b2a8c32019-03-26 19:52:28 -0700186 dh.device = cloned
187 dh.openOLT = adapter
188 dh.exitChannel = make(chan int, 1)
189 dh.lockDevice = sync.RWMutex{}
Naga Manjunath7615e552019-10-11 22:35:47 +0530190 dh.stopCollector = make(chan bool, 2)
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +0530191 dh.stopHeartbeatCheck = make(chan bool, 2)
Naga Manjunath7615e552019-10-11 22:35:47 +0530192 dh.metrics = pmmetrics.NewPmMetrics(cloned.Id, pmmetrics.Frequency(150), pmmetrics.FrequencyOverride(false), pmmetrics.Grouped(false), pmmetrics.Metrics(pmNames))
Chaitrashree G Sef088112020-02-03 21:39:27 -0500193 dh.activePorts = sync.Map{}
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400194 dh.stopIndications = make(chan bool, 1)
Mahir Gunyelb0046752021-02-26 13:51:05 -0800195 dh.perPonOnuIndicationChannel = make(map[uint32]onuIndicationChannels)
khenaidoo106c61a2021-08-11 18:05:46 -0400196 dh.childAdapterClients = make(map[string]*vgrpc.Client)
197 dh.cfg = cfg
Girish Gowdra491a9c62021-01-06 16:43:07 -0800198 // Create a slice of buffered channels for handling concurrent mcast flow/group.
199 dh.incomingMcastFlowOrGroup = make([]chan McastFlowOrGroupControlBlock, MaxNumOfGroupHandlerChannels)
Girish Gowdra4736e5c2021-08-25 15:19:10 -0700200 dh.stopMcastHandlerRoutine = make([]chan bool, MaxNumOfGroupHandlerChannels)
201 dh.mcastHandlerRoutineActive = make([]bool, MaxNumOfGroupHandlerChannels)
Girish Gowdra491a9c62021-01-06 16:43:07 -0800202 for i := range dh.incomingMcastFlowOrGroup {
203 dh.incomingMcastFlowOrGroup[i] = make(chan McastFlowOrGroupControlBlock, MaxNumOfGroupHandlerChannels)
Girish Gowdra4736e5c2021-08-25 15:19:10 -0700204 dh.stopMcastHandlerRoutine[i] = make(chan bool, 1)
Girish Gowdra491a9c62021-01-06 16:43:07 -0800205 // Spin up a go routine to handling incoming mcast flow/group (add/modify/remove).
206 // There will be MaxNumOfGroupHandlerChannels number of mcastFlowOrGroupChannelHandlerRoutine go routines.
207 // These routines will be blocked on the dh.incomingMcastFlowOrGroup[mcast-group-id modulo MaxNumOfGroupHandlerChannels] channel
208 // for incoming mcast flow/group to be processed serially.
Girish Gowdra4736e5c2021-08-25 15:19:10 -0700209 dh.mcastHandlerRoutineActive[i] = true
210 go dh.mcastFlowOrGroupChannelHandlerRoutine(i, dh.incomingMcastFlowOrGroup[i], dh.stopMcastHandlerRoutine[i])
Girish Gowdra491a9c62021-01-06 16:43:07 -0800211 }
cuilin20187b2a8c32019-03-26 19:52:28 -0700212 //TODO initialize the support classes.
213 return &dh
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530214}
215
216// start save the device to the data model
217func (dh *DeviceHandler) start(ctx context.Context) {
cuilin20187b2a8c32019-03-26 19:52:28 -0700218 dh.lockDevice.Lock()
219 defer dh.lockDevice.Unlock()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000220 logger.Debugw(ctx, "starting-device-agent", log.Fields{"device": dh.device})
cuilin20187b2a8c32019-03-26 19:52:28 -0700221 // Add the initial device to the local model
Neha Sharma96b7bf22020-06-15 10:37:32 +0000222 logger.Debug(ctx, "device-agent-started")
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530223}
224
225// stop stops the device dh. Not much to do for now
226func (dh *DeviceHandler) stop(ctx context.Context) {
cuilin20187b2a8c32019-03-26 19:52:28 -0700227 dh.lockDevice.Lock()
228 defer dh.lockDevice.Unlock()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000229 logger.Debug(ctx, "stopping-device-agent")
cuilin20187b2a8c32019-03-26 19:52:28 -0700230 dh.exitChannel <- 1
khenaidoo106c61a2021-08-11 18:05:46 -0400231
Neha Sharma96b7bf22020-06-15 10:37:32 +0000232 logger.Debug(ctx, "device-agent-stopped")
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530233}
234
ssiddiqui04386ee2021-08-23 21:58:25 +0530235func (dh *DeviceHandler) getPonTechnology(intfID uint32) string {
236 for _, resourceRanges := range dh.deviceInfo.GetRanges() {
237 for _, pooledIntfID := range resourceRanges.GetIntfIds() {
238 if pooledIntfID == intfID {
239 return resourceRanges.GetTechnology()
240 }
241 }
242 }
243 return ""
244}
245
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400246func macifyIP(ip net.IP) string {
247 if len(ip) > 0 {
248 oct1 := strconv.FormatInt(int64(ip[12]), 16)
249 oct2 := strconv.FormatInt(int64(ip[13]), 16)
250 oct3 := strconv.FormatInt(int64(ip[14]), 16)
251 oct4 := strconv.FormatInt(int64(ip[15]), 16)
252 return fmt.Sprintf("00:00:%02v:%02v:%02v:%02v", oct1, oct2, oct3, oct4)
253 }
254 return ""
255}
256
Neha Sharma96b7bf22020-06-15 10:37:32 +0000257func generateMacFromHost(ctx context.Context, host string) (string, error) {
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400258 var genmac string
259 var addr net.IP
260 var ips []string
261 var err error
262
Neha Sharma96b7bf22020-06-15 10:37:32 +0000263 logger.Debugw(ctx, "generating-mac-from-host", log.Fields{"host": host})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400264
265 if addr = net.ParseIP(host); addr == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000266 logger.Debugw(ctx, "looking-up-hostname", log.Fields{"host": host})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400267
268 if ips, err = net.LookupHost(host); err == nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000269 logger.Debugw(ctx, "dns-result-ips", log.Fields{"ips": ips})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400270 if addr = net.ParseIP(ips[0]); addr == nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000271 return "", olterrors.NewErrInvalidValue(log.Fields{"ip": ips[0]}, nil)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400272 }
273 genmac = macifyIP(addr)
Neha Sharma96b7bf22020-06-15 10:37:32 +0000274 logger.Debugw(ctx, "using-ip-as-mac",
Shrey Baid807a2a02020-04-09 12:52:45 +0530275 log.Fields{"host": ips[0],
276 "mac": genmac})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400277 return genmac, nil
278 }
Girish Kumarf26e4882020-03-05 06:49:10 +0000279 return "", olterrors.NewErrAdapter("cannot-resolve-hostname-to-ip", log.Fields{"host": host}, err)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400280 }
281
282 genmac = macifyIP(addr)
Neha Sharma96b7bf22020-06-15 10:37:32 +0000283 logger.Debugw(ctx, "using-ip-as-mac",
Shrey Baid807a2a02020-04-09 12:52:45 +0530284 log.Fields{"host": host,
285 "mac": genmac})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400286 return genmac, nil
287}
288
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530289func macAddressToUint32Array(mac string) []uint32 {
cuilin20187b2a8c32019-03-26 19:52:28 -0700290 slist := strings.Split(mac, ":")
291 result := make([]uint32, len(slist))
292 var err error
293 var tmp int64
294 for index, val := range slist {
295 if tmp, err = strconv.ParseInt(val, 16, 32); err != nil {
296 return []uint32{1, 2, 3, 4, 5, 6}
297 }
298 result[index] = uint32(tmp)
299 }
300 return result
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530301}
302
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700303//GetportLabel returns the label for the NNI and the PON port based on port number and port type
David K. Bainbridge794735f2020-02-11 21:01:37 -0800304func GetportLabel(portNum uint32, portType voltha.Port_PortType) (string, error) {
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530305
David K. Bainbridge794735f2020-02-11 21:01:37 -0800306 switch portType {
307 case voltha.Port_ETHERNET_NNI:
308 return fmt.Sprintf("nni-%d", portNum), nil
309 case voltha.Port_PON_OLT:
310 return fmt.Sprintf("pon-%d", portNum), nil
cuilin20187b2a8c32019-03-26 19:52:28 -0700311 }
David K. Bainbridge794735f2020-02-11 21:01:37 -0800312
Girish Kumarf26e4882020-03-05 06:49:10 +0000313 return "", olterrors.NewErrInvalidValue(log.Fields{"port-type": portType}, nil)
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530314}
315
Neha Sharma96b7bf22020-06-15 10:37:32 +0000316func (dh *DeviceHandler) addPort(ctx context.Context, intfID uint32, portType voltha.Port_PortType, state string) error {
Esin Karamanccb714b2019-11-29 15:02:06 +0000317 var operStatus common.OperStatus_Types
cuilin20187b2a8c32019-03-26 19:52:28 -0700318 if state == "up" {
319 operStatus = voltha.OperStatus_ACTIVE
kesavand39e0aa32020-01-28 20:58:50 -0500320 //populating the intfStatus map
Chaitrashree G Sef088112020-02-03 21:39:27 -0500321 dh.activePorts.Store(intfID, true)
cuilin20187b2a8c32019-03-26 19:52:28 -0700322 } else {
323 operStatus = voltha.OperStatus_DISCOVERED
Chaitrashree G Sef088112020-02-03 21:39:27 -0500324 dh.activePorts.Store(intfID, false)
cuilin20187b2a8c32019-03-26 19:52:28 -0700325 }
Mahir Gunyel85f61c12021-10-06 11:53:45 -0700326 portNum := plt.IntfIDToPortNo(intfID, portType)
Chaitrashree G Sc0878ec2020-05-21 04:59:53 -0400327 label, err := GetportLabel(intfID, portType)
David K. Bainbridge794735f2020-02-11 21:01:37 -0800328 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000329 return olterrors.NewErrNotFound("port-label", log.Fields{"port-number": portNum, "port-type": portType}, err)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400330 }
Chaitrashree G Sded0a832020-01-09 20:21:48 -0500331
khenaidoo106c61a2021-08-11 18:05:46 -0400332 // Check if port exists
333 port, err := dh.getPortFromCore(ctx, &ic.PortFilter{
334 DeviceId: dh.device.Id,
335 Port: portNum,
336 })
337 if err == nil && port.Type == portType {
Girish Kumara1ea2aa2020-08-19 18:14:22 +0000338 logger.Debug(ctx, "port-already-exists-updating-oper-status-of-port")
khenaidoo106c61a2021-08-11 18:05:46 -0400339 err = dh.updatePortStateInCore(ctx, &ic.PortState{
340 DeviceId: dh.device.Id,
341 PortType: portType,
342 PortNo: portNum,
343 OperStatus: operStatus})
344 if err != nil {
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400345 return olterrors.NewErrAdapter("failed-to-update-port-state", log.Fields{
346 "device-id": dh.device.Id,
347 "port-type": portType,
348 "port-number": portNum,
349 "oper-status": operStatus}, err).Log()
Chaitrashree G Sded0a832020-01-09 20:21:48 -0500350 }
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400351 return nil
Chaitrashree G Sded0a832020-01-09 20:21:48 -0500352 }
khenaidoo106c61a2021-08-11 18:05:46 -0400353
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400354 // Now create Port
Girish Gowdra631ef3d2020-06-15 10:45:52 -0700355 capacity := uint32(of.OfpPortFeatures_OFPPF_1GB_FD | of.OfpPortFeatures_OFPPF_FIBER)
khenaidoo106c61a2021-08-11 18:05:46 -0400356 port = &voltha.Port{
357 DeviceId: dh.device.Id,
cuilin20187b2a8c32019-03-26 19:52:28 -0700358 PortNo: portNum,
359 Label: label,
360 Type: portType,
361 OperStatus: operStatus,
Girish Gowdra631ef3d2020-06-15 10:45:52 -0700362 OfpPort: &of.OfpPort{
363 HwAddr: macAddressToUint32Array(dh.device.MacAddress),
364 Config: 0,
365 State: uint32(of.OfpPortState_OFPPS_LIVE),
366 Curr: capacity,
367 Advertised: capacity,
368 Peer: capacity,
369 CurrSpeed: uint32(of.OfpPortFeatures_OFPPF_1GB_FD),
370 MaxSpeed: uint32(of.OfpPortFeatures_OFPPF_1GB_FD),
371 },
cuilin20187b2a8c32019-03-26 19:52:28 -0700372 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000373 logger.Debugw(ctx, "sending-port-update-to-core", log.Fields{"port": port})
cuilin20187b2a8c32019-03-26 19:52:28 -0700374 // Synchronous call to update device - this method is run in its own go routine
khenaidoo106c61a2021-08-11 18:05:46 -0400375 err = dh.createPortInCore(ctx, port)
376 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000377 return olterrors.NewErrAdapter("error-creating-port", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -0800378 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +0000379 "port-type": portType}, err)
Girish Gowdru1110ef22019-06-24 11:17:59 -0400380 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000381 go dh.updateLocalDevice(ctx)
Kishore Darapuaaf9c102020-05-04 13:06:57 +0530382 return nil
383}
384
Kent Hagermane6ff1012020-07-14 15:07:53 -0400385func (dh *DeviceHandler) updateLocalDevice(ctx context.Context) {
khenaidoo106c61a2021-08-11 18:05:46 -0400386 device, err := dh.getDeviceFromCore(ctx, dh.device.Id)
Kishore Darapuaaf9c102020-05-04 13:06:57 +0530387 if err != nil || device == nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400388 logger.Errorf(ctx, "device-not-found", log.Fields{"device-id": dh.device.Id}, err)
389 return
Kishore Darapuaaf9c102020-05-04 13:06:57 +0530390 }
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800391 dh.lockDevice.Lock()
392 defer dh.lockDevice.Unlock()
Kishore Darapuaaf9c102020-05-04 13:06:57 +0530393 dh.device = device
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530394}
395
David Bainbridge95a3fcf2020-06-09 10:49:31 -0700396// nolint: gocyclo
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530397// readIndications to read the indications from the OLT device
David K. Bainbridge794735f2020-02-11 21:01:37 -0800398func (dh *DeviceHandler) readIndications(ctx context.Context) error {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000399 defer logger.Debugw(ctx, "indications-ended", log.Fields{"device-id": dh.device.Id})
Girish Gowdra3ab6d212020-03-24 17:33:15 -0700400 defer func() {
401 dh.lockDevice.Lock()
402 dh.isReadIndicationRoutineActive = false
403 dh.lockDevice.Unlock()
404 }()
Girish Gowdra3f974912020-03-23 20:35:18 -0700405 indications, err := dh.startOpenOltIndicationStream(ctx)
cuilin20187b2a8c32019-03-26 19:52:28 -0700406 if err != nil {
Girish Gowdra3f974912020-03-23 20:35:18 -0700407 return err
cuilin20187b2a8c32019-03-26 19:52:28 -0700408 }
Girish Gowdru5ba46c92019-04-25 05:00:05 -0400409
David Bainbridgef5879ca2019-12-13 21:17:54 +0000410 // Create an exponential backoff around re-enabling indications. The
411 // maximum elapsed time for the back off is set to 0 so that we will
412 // continue to retry. The max interval defaults to 1m, but is set
413 // here for code clarity
414 indicationBackoff := backoff.NewExponentialBackOff()
415 indicationBackoff.MaxElapsedTime = 0
416 indicationBackoff.MaxInterval = 1 * time.Minute
Girish Gowdra3f974912020-03-23 20:35:18 -0700417
Girish Gowdra3ab6d212020-03-24 17:33:15 -0700418 dh.lockDevice.Lock()
419 dh.isReadIndicationRoutineActive = true
420 dh.lockDevice.Unlock()
421
Girish Gowdra3f974912020-03-23 20:35:18 -0700422Loop:
cuilin20187b2a8c32019-03-26 19:52:28 -0700423 for {
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400424 select {
425 case <-dh.stopIndications:
divyadesai3af43e12020-08-18 07:10:54 +0000426 logger.Debugw(ctx, "stopping-collecting-indications-for-olt", log.Fields{"device-id": dh.device.Id})
Girish Gowdra3f974912020-03-23 20:35:18 -0700427 break Loop
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400428 default:
429 indication, err := indications.Recv()
430 if err == io.EOF {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000431 logger.Infow(ctx, "eof-for-indications",
Shrey Baid807a2a02020-04-09 12:52:45 +0530432 log.Fields{"err": err,
Thomas Lee S985938d2020-05-04 11:40:41 +0530433 "device-id": dh.device.Id})
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400434 // Use an exponential back off to prevent getting into a tight loop
435 duration := indicationBackoff.NextBackOff()
436 if duration == backoff.Stop {
437 // If we reach a maximum then warn and reset the backoff
438 // timer and keep attempting.
Neha Sharma96b7bf22020-06-15 10:37:32 +0000439 logger.Warnw(ctx, "maximum-indication-backoff-reached--resetting-backoff-timer",
Shrey Baid807a2a02020-04-09 12:52:45 +0530440 log.Fields{"max-indication-backoff": indicationBackoff.MaxElapsedTime,
Thomas Lee S985938d2020-05-04 11:40:41 +0530441 "device-id": dh.device.Id})
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400442 indicationBackoff.Reset()
443 }
David Bainbridge95a3fcf2020-06-09 10:49:31 -0700444
445 // On failure process a backoff timer while watching for stopIndications
446 // events
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700447 backoffTimer := time.NewTimer(indicationBackoff.NextBackOff())
David Bainbridge95a3fcf2020-06-09 10:49:31 -0700448 select {
449 case <-dh.stopIndications:
divyadesai3af43e12020-08-18 07:10:54 +0000450 logger.Debugw(ctx, "stopping-collecting-indications-for-olt", log.Fields{"device-id": dh.device.Id})
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700451 if !backoffTimer.Stop() {
452 <-backoffTimer.C
David Bainbridge95a3fcf2020-06-09 10:49:31 -0700453 }
454 break Loop
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700455 case <-backoffTimer.C:
456 // backoffTimer expired continue
David Bainbridge95a3fcf2020-06-09 10:49:31 -0700457 }
Girish Gowdra3f974912020-03-23 20:35:18 -0700458 if indications, err = dh.startOpenOltIndicationStream(ctx); err != nil {
459 return err
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400460 }
461 continue
David Bainbridgef5879ca2019-12-13 21:17:54 +0000462 }
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530463 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000464 logger.Errorw(ctx, "read-indication-error",
Shrey Baid807a2a02020-04-09 12:52:45 +0530465 log.Fields{"err": err,
Thomas Lee S985938d2020-05-04 11:40:41 +0530466 "device-id": dh.device.Id})
Girish Gowdra3f974912020-03-23 20:35:18 -0700467 // Close the stream, and re-initialize it
468 if err = indications.CloseSend(); err != nil {
469 // Ok to ignore here, because we landed here due to a problem on the stream
470 // In all probability, the closeSend call may fail
Neha Sharma96b7bf22020-06-15 10:37:32 +0000471 logger.Debugw(ctx, "error-closing-send stream--error-ignored",
Shrey Baid807a2a02020-04-09 12:52:45 +0530472 log.Fields{"err": err,
Thomas Lee S985938d2020-05-04 11:40:41 +0530473 "device-id": dh.device.Id})
Girish Gowdra3f974912020-03-23 20:35:18 -0700474 }
Matteo Scandolof16389e2021-05-18 00:47:08 +0000475 if indications, err = dh.startOpenOltIndicationStream(ctx); err != nil {
Girish Gowdra3f974912020-03-23 20:35:18 -0700476 return err
477 }
478 // once we re-initialized the indication stream, continue to read indications
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400479 continue
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +0530480 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400481 // Reset backoff if we have a successful receive
482 indicationBackoff.Reset()
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400483 // When OLT is admin down, ignore all indications.
Girish Gowdra852ad912021-05-04 00:05:50 -0700484 if dh.device.AdminState == voltha.AdminState_DISABLED && !isIndicationAllowedDuringOltAdminDown(indication) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000485 logger.Debugw(ctx, "olt-is-admin-down, ignore indication",
Shrey Baid807a2a02020-04-09 12:52:45 +0530486 log.Fields{"indication": indication,
Thomas Lee S985938d2020-05-04 11:40:41 +0530487 "device-id": dh.device.Id})
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400488 continue
Devmalya Paul495b94a2019-08-27 19:42:00 -0400489 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400490 dh.handleIndication(ctx, indication)
cuilin20187b2a8c32019-03-26 19:52:28 -0700491 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700492 }
Girish Gowdra3f974912020-03-23 20:35:18 -0700493 // Close the send stream
494 _ = indications.CloseSend() // Ok to ignore error, as we stopping the readIndication anyway
Girish Gowdra3ab6d212020-03-24 17:33:15 -0700495
Girish Gowdra3f974912020-03-23 20:35:18 -0700496 return nil
497}
498
499func (dh *DeviceHandler) startOpenOltIndicationStream(ctx context.Context) (oop.Openolt_EnableIndicationClient, error) {
Girish Gowdra852ad912021-05-04 00:05:50 -0700500 logger.Infow(ctx, "enabling read indications", log.Fields{"device-id": dh.device.Id})
Girish Gowdra3f974912020-03-23 20:35:18 -0700501 indications, err := dh.Client.EnableIndication(ctx, new(oop.Empty))
502 if err != nil {
503 return nil, olterrors.NewErrCommunication("indication-read-failure", log.Fields{"device-id": dh.device.Id}, err).Log()
504 }
505 if indications == nil {
506 return nil, olterrors.NewErrInvalidValue(log.Fields{"indications": nil, "device-id": dh.device.Id}, nil).Log()
507 }
Girish Gowdra852ad912021-05-04 00:05:50 -0700508 logger.Infow(ctx, "read indication started successfully", log.Fields{"device-id": dh.device.Id})
Girish Gowdra3f974912020-03-23 20:35:18 -0700509 return indications, nil
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400510}
511
512// isIndicationAllowedDuringOltAdminDown returns true if the indication is allowed during OLT Admin down, else false
513func isIndicationAllowedDuringOltAdminDown(indication *oop.Indication) bool {
514 switch indication.Data.(type) {
515 case *oop.Indication_OltInd, *oop.Indication_IntfInd, *oop.Indication_IntfOperInd:
516 return true
517
518 default:
519 return false
520 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700521}
522
David K. Bainbridge794735f2020-02-11 21:01:37 -0800523func (dh *DeviceHandler) handleOltIndication(ctx context.Context, oltIndication *oop.OltIndication) error {
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -0700524 raisedTs := time.Now().Unix()
Gamze Abakaa1a50522019-10-03 19:28:27 +0000525 if oltIndication.OperState == "up" && dh.transitionMap.currentDeviceState != deviceStateUp {
npujarec5762e2020-01-01 14:08:48 +0530526 dh.transitionMap.Handle(ctx, DeviceUpInd)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700527 } else if oltIndication.OperState == "down" {
npujarec5762e2020-01-01 14:08:48 +0530528 dh.transitionMap.Handle(ctx, DeviceDownInd)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700529 }
Daniele Rossi051466a2019-07-26 13:39:37 +0000530 // Send or clear Alarm
Neha Sharma96b7bf22020-06-15 10:37:32 +0000531 if err := dh.eventMgr.oltUpDownIndication(ctx, oltIndication, dh.device.Id, raisedTs); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +0530532 return olterrors.NewErrAdapter("failed-indication", log.Fields{
divyadesai3af43e12020-08-18 07:10:54 +0000533 "device-id": dh.device.Id,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800534 "indication": oltIndication,
Girish Kumarf26e4882020-03-05 06:49:10 +0000535 "timestamp": raisedTs}, err)
David K. Bainbridge794735f2020-02-11 21:01:37 -0800536 }
537 return nil
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700538}
539
David K. Bainbridge794735f2020-02-11 21:01:37 -0800540// nolint: gocyclo
npujarec5762e2020-01-01 14:08:48 +0530541func (dh *DeviceHandler) handleIndication(ctx context.Context, indication *oop.Indication) {
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -0700542 raisedTs := time.Now().Unix()
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700543 switch indication.Data.(type) {
544 case *oop.Indication_OltInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000545 span, ctx := log.CreateChildSpan(ctx, "olt-indication", log.Fields{"device-id": dh.device.Id})
546 defer span.Finish()
Girish Gowdra852ad912021-05-04 00:05:50 -0700547 logger.Infow(ctx, "received olt indication", log.Fields{"device-id": dh.device.Id, "olt-ind": indication.GetOltInd()})
David K. Bainbridge794735f2020-02-11 21:01:37 -0800548 if err := dh.handleOltIndication(ctx, indication.GetOltInd()); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400549 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "olt", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800550 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700551 case *oop.Indication_IntfInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000552 span, ctx := log.CreateChildSpan(ctx, "interface-indication", log.Fields{"device-id": dh.device.Id})
553 defer span.Finish()
554
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700555 intfInd := indication.GetIntfInd()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800556 go func() {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000557 if err := dh.addPort(ctx, intfInd.GetIntfId(), voltha.Port_PON_OLT, intfInd.GetOperState()); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400558 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "interface", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800559 }
560 }()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000561 logger.Infow(ctx, "received-interface-indication", log.Fields{"InterfaceInd": intfInd, "device-id": dh.device.Id})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700562 case *oop.Indication_IntfOperInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000563 span, ctx := log.CreateChildSpan(ctx, "interface-oper-indication", log.Fields{"device-id": dh.device.Id})
564 defer span.Finish()
565
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700566 intfOperInd := indication.GetIntfOperInd()
567 if intfOperInd.GetType() == "nni" {
David K. Bainbridge794735f2020-02-11 21:01:37 -0800568 go func() {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000569 if err := dh.addPort(ctx, intfOperInd.GetIntfId(), voltha.Port_ETHERNET_NNI, intfOperInd.GetOperState()); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400570 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "interface-oper-nni", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800571 }
572 }()
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700573 } else if intfOperInd.GetType() == "pon" {
574 // TODO: Check what needs to be handled here for When PON PORT down, ONU will be down
575 // Handle pon port update
David K. Bainbridge794735f2020-02-11 21:01:37 -0800576 go func() {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000577 if err := dh.addPort(ctx, intfOperInd.GetIntfId(), voltha.Port_PON_OLT, intfOperInd.GetOperState()); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400578 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "interface-oper-pon", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800579 }
580 }()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000581 go dh.eventMgr.oltIntfOperIndication(ctx, indication.GetIntfOperInd(), dh.device.Id, raisedTs)
cuilin20187b2a8c32019-03-26 19:52:28 -0700582 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000583 logger.Infow(ctx, "received-interface-oper-indication",
Shrey Baid807a2a02020-04-09 12:52:45 +0530584 log.Fields{"interfaceOperInd": intfOperInd,
Thomas Lee S985938d2020-05-04 11:40:41 +0530585 "device-id": dh.device.Id})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700586 case *oop.Indication_OnuDiscInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000587 span, ctx := log.CreateChildSpan(ctx, "onu-discovery-indication", log.Fields{"device-id": dh.device.Id})
588 defer span.Finish()
589
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700590 onuDiscInd := indication.GetOnuDiscInd()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000591 logger.Infow(ctx, "received-onu-discovery-indication", log.Fields{"OnuDiscInd": onuDiscInd, "device-id": dh.device.Id})
Mahir Gunyel2fb81472020-12-16 23:18:34 -0800592 //put message to channel and return immediately
Mahir Gunyelb0046752021-02-26 13:51:05 -0800593 dh.putOnuIndicationToChannel(ctx, indication, onuDiscInd.GetIntfId())
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700594 case *oop.Indication_OnuInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000595 span, ctx := log.CreateChildSpan(ctx, "onu-indication", log.Fields{"device-id": dh.device.Id})
596 defer span.Finish()
597
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700598 onuInd := indication.GetOnuInd()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000599 logger.Infow(ctx, "received-onu-indication", log.Fields{"OnuInd": onuInd, "device-id": dh.device.Id})
Mahir Gunyel2fb81472020-12-16 23:18:34 -0800600 //put message to channel and return immediately
Mahir Gunyelb0046752021-02-26 13:51:05 -0800601 dh.putOnuIndicationToChannel(ctx, indication, onuInd.GetIntfId())
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700602 case *oop.Indication_OmciInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000603 span, ctx := log.CreateChildSpan(ctx, "omci-indication", log.Fields{"device-id": dh.device.Id})
604 defer span.Finish()
605
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700606 omciInd := indication.GetOmciInd()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000607 logger.Debugw(ctx, "received-omci-indication", log.Fields{"intf-id": omciInd.IntfId, "onu-id": omciInd.OnuId, "device-id": dh.device.Id})
David K. Bainbridge794735f2020-02-11 21:01:37 -0800608 go func() {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000609 if err := dh.omciIndication(ctx, omciInd); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400610 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "omci", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800611 }
612 }()
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700613 case *oop.Indication_PktInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000614 span, ctx := log.CreateChildSpan(ctx, "packet-indication", log.Fields{"device-id": dh.device.Id})
615 defer span.Finish()
616
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700617 pktInd := indication.GetPktInd()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000618 logger.Debugw(ctx, "received-packet-indication", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -0700619 "intf-type": pktInd.IntfId,
620 "intf-id": pktInd.IntfId,
621 "gem-port-id": pktInd.GemportId,
622 "port-no": pktInd.PortNo,
623 "device-id": dh.device.Id,
624 })
625
626 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000627 logger.Debugw(ctx, "received-packet-indication-packet", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -0700628 "intf-type": pktInd.IntfId,
629 "intf-id": pktInd.IntfId,
630 "gem-port-id": pktInd.GemportId,
631 "port-no": pktInd.PortNo,
632 "packet": hex.EncodeToString(pktInd.Pkt),
633 "device-id": dh.device.Id,
634 })
635 }
636
David K. Bainbridge794735f2020-02-11 21:01:37 -0800637 go func() {
638 if err := dh.handlePacketIndication(ctx, pktInd); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400639 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{"type": "packet", "device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800640 }
641 }()
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700642 case *oop.Indication_PortStats:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000643 span, ctx := log.CreateChildSpan(ctx, "port-statistics-indication", log.Fields{"device-id": dh.device.Id})
644 defer span.Finish()
645
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700646 portStats := indication.GetPortStats()
Girish Gowdra9602eb42020-09-09 15:50:39 -0700647 go dh.portStats.PortStatisticsIndication(ctx, portStats, dh.totalPonPorts)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700648 case *oop.Indication_FlowStats:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000649 span, ctx := log.CreateChildSpan(ctx, "flow-stats-indication", log.Fields{"device-id": dh.device.Id})
650 defer span.Finish()
651
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700652 flowStats := indication.GetFlowStats()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000653 logger.Infow(ctx, "received-flow-stats", log.Fields{"FlowStats": flowStats, "device-id": dh.device.Id})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700654 case *oop.Indication_AlarmInd:
Neha Sharma8f4e4322020-08-06 10:51:53 +0000655 span, ctx := log.CreateChildSpan(ctx, "alarm-indication", log.Fields{"device-id": dh.device.Id})
656 defer span.Finish()
657
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700658 alarmInd := indication.GetAlarmInd()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000659 logger.Infow(ctx, "received-alarm-indication", log.Fields{"AlarmInd": alarmInd, "device-id": dh.device.Id})
660 go dh.eventMgr.ProcessEvents(ctx, alarmInd, dh.device.Id, raisedTs)
cuilin20187b2a8c32019-03-26 19:52:28 -0700661 }
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530662}
663
664// doStateUp handle the olt up indication and update to voltha core
npujarec5762e2020-01-01 14:08:48 +0530665func (dh *DeviceHandler) doStateUp(ctx context.Context) error {
Thomas Lee S85f37312020-04-03 17:06:12 +0530666 //starting the stat collector
Neha Sharma96b7bf22020-06-15 10:37:32 +0000667 go startCollector(ctx, dh)
Thomas Lee S85f37312020-04-03 17:06:12 +0530668
Girish Gowdra618fa572021-09-01 17:19:29 -0700669 // instantiate the mcast handler routines.
670 for i := range dh.incomingMcastFlowOrGroup {
671 // We land inside the below "if" code path, after the OLT comes back from a reboot, otherwise the routines
672 // are already active when the DeviceHandler module is first instantiated (as part of Adopt_device RPC invocation).
673 if !dh.mcastHandlerRoutineActive[i] {
674 // Spin up a go routine to handling incoming mcast flow/group (add/modify/remove).
675 // There will be MaxNumOfGroupHandlerChannels number of mcastFlowOrGroupChannelHandlerRoutine go routines.
676 // These routines will be blocked on the dh.incomingMcastFlowOrGroup[mcast-group-id modulo MaxNumOfGroupHandlerChannels] channel
677 // for incoming mcast flow/group to be processed serially.
678 dh.mcastHandlerRoutineActive[i] = true
679 go dh.mcastFlowOrGroupChannelHandlerRoutine(i, dh.incomingMcastFlowOrGroup[i], dh.stopMcastHandlerRoutine[i])
680 }
681 }
682
Girish Gowdru0c588b22019-04-23 23:24:56 -0400683 // Synchronous call to update device state - this method is run in its own go routine
khenaidoo106c61a2021-08-11 18:05:46 -0400684 if err := dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
685 DeviceId: dh.device.Id,
686 OperStatus: voltha.OperStatus_ACTIVE,
687 ConnStatus: voltha.ConnectStatus_REACHABLE,
688 }); err != nil {
689 return olterrors.NewErrAdapter("device-state-update-failed", log.Fields{"device-id": dh.device.Id}, err)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400690 }
Gamze Abaka07868a52020-12-17 14:19:28 +0000691
692 //Clear olt communication failure event
693 dh.device.ConnectStatus = voltha.ConnectStatus_REACHABLE
694 dh.device.OperStatus = voltha.OperStatus_ACTIVE
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -0700695 raisedTs := time.Now().Unix()
Gamze Abaka07868a52020-12-17 14:19:28 +0000696 go dh.eventMgr.oltCommunicationEvent(ctx, dh.device, raisedTs)
697
Gamze Abakac2c32a62021-03-11 11:44:18 +0000698 //check adapter and agent reconcile status
699 //reboot olt if needed (olt disconnection case)
700 if dh.adapterPreviouslyConnected != dh.agentPreviouslyConnected {
701 logger.Warnw(ctx, "different-reconcile-status-between-adapter-and-agent-rebooting-device",
702 log.Fields{
703 "device-id": dh.device.Id,
704 "adapter-status": dh.adapterPreviouslyConnected,
705 "agent-status": dh.agentPreviouslyConnected,
706 })
707 _ = dh.RebootDevice(ctx, dh.device)
708 }
709
Girish Gowdru0c588b22019-04-23 23:24:56 -0400710 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530711}
712
713// doStateDown handle the olt down indication
npujarec5762e2020-01-01 14:08:48 +0530714func (dh *DeviceHandler) doStateDown(ctx context.Context) error {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000715 logger.Debugw(ctx, "do-state-down-start", log.Fields{"device-id": dh.device.Id})
Girish Gowdrud4245152019-05-10 00:47:31 -0400716
khenaidoo106c61a2021-08-11 18:05:46 -0400717 device, err := dh.getDeviceFromCore(ctx, dh.device.Id)
Girish Gowdrud4245152019-05-10 00:47:31 -0400718 if err != nil || device == nil {
719 /*TODO: needs to handle error scenarios */
Girish Kumarf26e4882020-03-05 06:49:10 +0000720 return olterrors.NewErrNotFound("device", log.Fields{"device-id": dh.device.Id}, err)
Girish Gowdrud4245152019-05-10 00:47:31 -0400721 }
722
723 cloned := proto.Clone(device).(*voltha.Device)
Girish Gowdrud4245152019-05-10 00:47:31 -0400724
725 //Update the device oper state and connection status
726 cloned.OperStatus = voltha.OperStatus_UNKNOWN
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800727 dh.lockDevice.Lock()
Girish Gowdrud4245152019-05-10 00:47:31 -0400728 dh.device = cloned
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800729 dh.lockDevice.Unlock()
Girish Gowdrud4245152019-05-10 00:47:31 -0400730
khenaidoo106c61a2021-08-11 18:05:46 -0400731 if err = dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
732 DeviceId: cloned.Id,
733 OperStatus: cloned.OperStatus,
734 ConnStatus: cloned.ConnectStatus,
735 }); err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000736 return olterrors.NewErrAdapter("state-update-failed", log.Fields{"device-id": device.Id}, err)
Girish Gowdrud4245152019-05-10 00:47:31 -0400737 }
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400738
739 //get the child device for the parent device
khenaidoo106c61a2021-08-11 18:05:46 -0400740 onuDevices, err := dh.getChildDevicesFromCore(ctx, dh.device.Id)
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400741 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000742 return olterrors.NewErrAdapter("child-device-fetch-failed", log.Fields{"device-id": dh.device.Id}, err)
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400743 }
744 for _, onuDevice := range onuDevices.Items {
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400745 // Update onu state as down in onu adapter
746 onuInd := oop.OnuIndication{}
747 onuInd.OperState = "down"
khenaidoo106c61a2021-08-11 18:05:46 -0400748
749 ogClient, err := dh.getChildAdapterServiceClient(onuDevice.AdapterEndpoint)
750 if err != nil {
751 return err
752 }
753 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
754 _, err = ogClient.OnuIndication(subCtx, &ic.OnuIndicationMessage{
755 DeviceId: onuDevice.Id,
756 OnuIndication: &onuInd,
757 })
758 cancel()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800759 if err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400760 _ = olterrors.NewErrCommunication("inter-adapter-send-failed", log.Fields{
khenaidoo106c61a2021-08-11 18:05:46 -0400761 "source": dh.openOLT.config.AdapterEndpoint,
David K. Bainbridge794735f2020-02-11 21:01:37 -0800762 "onu-indicator": onuInd,
763 "device-type": onuDevice.Type,
764 "device-id": onuDevice.Id}, err).LogAt(log.ErrorLevel)
serkant.uluderya245caba2019-09-24 23:15:29 -0700765 //Do not return here and continue to process other ONUs
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800766 } else {
767 logger.Debugw(ctx, "sending inter adapter down ind to onu success", log.Fields{"olt-device-id": device.Id, "onu-device-id": onuDevice.Id})
Girish Gowdru6a80bbd2019-07-02 07:36:09 -0700768 }
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -0400769 }
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800770 dh.lockDevice.Lock()
serkant.uluderya245caba2019-09-24 23:15:29 -0700771 /* Discovered ONUs entries need to be cleared , since after OLT
772 is up, it starts sending discovery indications again*/
Naga Manjunatha8dc9372019-10-31 23:01:18 +0530773 dh.discOnus = sync.Map{}
Girish Gowdrabe811ff2021-01-26 17:12:12 -0800774 dh.lockDevice.Unlock()
775
Neha Sharma96b7bf22020-06-15 10:37:32 +0000776 logger.Debugw(ctx, "do-state-down-end", log.Fields{"device-id": device.Id})
cuilin20187b2a8c32019-03-26 19:52:28 -0700777 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530778}
779
780// doStateInit dial the grpc before going to init state
npujarec5762e2020-01-01 14:08:48 +0530781func (dh *DeviceHandler) doStateInit(ctx context.Context) error {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400782 var err error
Gamze Abaka49c40b32021-05-06 09:30:41 +0000783
784 // if the connection is already available, close the previous connection (olt reboot case)
785 if dh.clientCon != nil {
786 if err = dh.clientCon.Close(); err != nil {
787 logger.Errorw(ctx, "failed-to-close-previous-connection", log.Fields{"device-id": dh.device.Id})
788 } else {
789 logger.Debugw(ctx, "previous-grpc-channel-closed-successfully", log.Fields{"device-id": dh.device.Id})
790 }
791 }
792
793 // Use Interceptors to automatically inject and publish Open Tracing Spans by this GRPC client
Girish Kumar93e91742020-07-27 16:43:19 +0000794 dh.clientCon, err = grpc.Dial(dh.device.GetHostAndPort(),
795 grpc.WithInsecure(),
796 grpc.WithBlock(),
797 grpc.WithStreamInterceptor(grpc_middleware.ChainStreamClient(
Girish Kumar935f7af2020-08-18 11:59:42 +0000798 grpc_opentracing.StreamClientInterceptor(grpc_opentracing.WithTracer(log.ActiveTracerProxy{})),
Girish Kumar93e91742020-07-27 16:43:19 +0000799 )),
800 grpc.WithUnaryInterceptor(grpc_middleware.ChainUnaryClient(
Girish Kumar935f7af2020-08-18 11:59:42 +0000801 grpc_opentracing.UnaryClientInterceptor(grpc_opentracing.WithTracer(log.ActiveTracerProxy{})),
Girish Kumar93e91742020-07-27 16:43:19 +0000802 )))
803
804 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +0530805 return olterrors.NewErrCommunication("dial-failure", log.Fields{
Thomas Lee S985938d2020-05-04 11:40:41 +0530806 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +0000807 "host-and-port": dh.device.GetHostAndPort()}, err)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400808 }
809 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530810}
811
812// postInit create olt client instance to invoke RPC on the olt device
npujarec5762e2020-01-01 14:08:48 +0530813func (dh *DeviceHandler) postInit(ctx context.Context) error {
Girish Gowdru0c588b22019-04-23 23:24:56 -0400814 dh.Client = oop.NewOpenoltClient(dh.clientCon)
npujarec5762e2020-01-01 14:08:48 +0530815 dh.transitionMap.Handle(ctx, GrpcConnected)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400816 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530817}
818
819// doStateConnected get the device info and update to voltha core
npujarec5762e2020-01-01 14:08:48 +0530820func (dh *DeviceHandler) doStateConnected(ctx context.Context) error {
Thomas Lee S985938d2020-05-04 11:40:41 +0530821 var err error
Neha Sharma96b7bf22020-06-15 10:37:32 +0000822 logger.Debugw(ctx, "olt-device-connected", log.Fields{"device-id": dh.device.Id})
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400823
824 // Case where OLT is disabled and then rebooted.
khenaidoo106c61a2021-08-11 18:05:46 -0400825 device, err := dh.getDeviceFromCore(ctx, dh.device.Id)
Thomas Lee S985938d2020-05-04 11:40:41 +0530826 if err != nil || device == nil {
827 /*TODO: needs to handle error scenarios */
828 return olterrors.NewErrAdapter("device-fetch-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
829 }
830 if device.AdminState == voltha.AdminState_DISABLED {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000831 logger.Debugln(ctx, "do-state-connected--device-admin-state-down")
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400832
833 cloned := proto.Clone(device).(*voltha.Device)
834 cloned.ConnectStatus = voltha.ConnectStatus_REACHABLE
835 cloned.OperStatus = voltha.OperStatus_UNKNOWN
836 dh.device = cloned
khenaidoo106c61a2021-08-11 18:05:46 -0400837
838 if err = dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
839 DeviceId: cloned.Id,
840 OperStatus: cloned.OperStatus,
841 ConnStatus: cloned.ConnectStatus,
842 }); err != nil {
Thomas Lee S985938d2020-05-04 11:40:41 +0530843 return olterrors.NewErrAdapter("device-state-update-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400844 }
845
Chaitrashree G S44124192019-08-07 20:21:36 -0400846 // Since the device was disabled before the OLT was rebooted, enforce the OLT to be Disabled after re-connection.
npujarec5762e2020-01-01 14:08:48 +0530847 _, err = dh.Client.DisableOlt(ctx, new(oop.Empty))
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400848 if err != nil {
Thomas Lee S985938d2020-05-04 11:40:41 +0530849 return olterrors.NewErrAdapter("olt-disable-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400850 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400851 // We should still go ahead an initialize various device handler modules so that when OLT is re-enabled, we have
852 // all the modules initialized and ready to handle incoming ONUs.
853
Thomas Lee S985938d2020-05-04 11:40:41 +0530854 err = dh.initializeDeviceHandlerModules(ctx)
855 if err != nil {
856 return olterrors.NewErrAdapter("device-handler-initialization-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400857 }
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400858
859 // Start reading indications
David K. Bainbridge794735f2020-02-11 21:01:37 -0800860 go func() {
Thomas Lee S985938d2020-05-04 11:40:41 +0530861 if err = dh.readIndications(ctx); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400862 _ = olterrors.NewErrAdapter("indication-read-failure", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
David K. Bainbridge794735f2020-02-11 21:01:37 -0800863 }
864 }()
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700865
866 go startHeartbeatCheck(ctx, dh)
867
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -0400868 return nil
869 }
870
khenaidoo106c61a2021-08-11 18:05:46 -0400871 ports, err := dh.listDevicePortsFromCore(ctx, dh.device.Id)
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400872 if err != nil {
Girish Gowdrud4245152019-05-10 00:47:31 -0400873 /*TODO: needs to handle error scenarios */
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400874 return olterrors.NewErrAdapter("fetch-ports-failed", log.Fields{"device-id": dh.device.Id}, err)
Girish Gowdrud4245152019-05-10 00:47:31 -0400875 }
khenaidoo106c61a2021-08-11 18:05:46 -0400876 dh.populateActivePorts(ctx, ports.Items)
877 if err := dh.disableAdminDownPorts(ctx, ports.Items); err != nil {
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400878 return olterrors.NewErrAdapter("port-status-update-failed", log.Fields{"ports": ports}, err)
Girish Gowdrud4245152019-05-10 00:47:31 -0400879 }
880
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400881 if err := dh.initializeDeviceHandlerModules(ctx); err != nil {
Thomas Lee S985938d2020-05-04 11:40:41 +0530882 return olterrors.NewErrAdapter("device-handler-initialization-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
Girish Gowdru0c588b22019-04-23 23:24:56 -0400883 }
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530884
cuilin20187b2a8c32019-03-26 19:52:28 -0700885 // Start reading indications
David K. Bainbridge794735f2020-02-11 21:01:37 -0800886 go func() {
887 if err := dh.readIndications(ctx); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -0400888 _ = olterrors.NewErrAdapter("read-indications-failure", log.Fields{"device-id": dh.device.Id}, err).Log()
David K. Bainbridge794735f2020-02-11 21:01:37 -0800889 }
890 }()
Neha Sharma96b7bf22020-06-15 10:37:32 +0000891 go dh.updateLocalDevice(ctx)
Rohan Agrawalda5e0b22020-05-20 11:10:26 +0000892
893 if device.PmConfigs != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000894 dh.UpdatePmConfig(ctx, device.PmConfigs)
Rohan Agrawalda5e0b22020-05-20 11:10:26 +0000895 }
Girish Gowdraa09aeab2020-09-14 16:30:52 -0700896
897 go startHeartbeatCheck(ctx, dh)
898
cuilin20187b2a8c32019-03-26 19:52:28 -0700899 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +0530900}
901
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400902func (dh *DeviceHandler) initializeDeviceHandlerModules(ctx context.Context) error {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700903 var err error
904 dh.deviceInfo, err = dh.populateDeviceInfo(ctx)
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400905
906 if err != nil {
907 return olterrors.NewErrAdapter("populate-device-info-failed", log.Fields{"device-id": dh.device.Id}, err)
908 }
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700909 dh.totalPonPorts = dh.deviceInfo.GetPonPorts()
910 dh.agentPreviouslyConnected = dh.deviceInfo.PreviouslyConnected
Girish Gowdra9602eb42020-09-09 15:50:39 -0700911
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700912 dh.resourceMgr = make([]*rsrcMgr.OpenOltResourceMgr, dh.totalPonPorts)
Girish Gowdra9602eb42020-09-09 15:50:39 -0700913 dh.flowMgr = make([]*OpenOltFlowMgr, dh.totalPonPorts)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700914 var i uint32
915 for i = 0; i < dh.totalPonPorts; i++ {
916 // Instantiate resource manager
917 if dh.resourceMgr[i] = rsrcMgr.NewResourceMgr(ctx, i, dh.device.Id, dh.openOLT.KVStoreAddress, dh.openOLT.KVStoreType, dh.device.Type, dh.deviceInfo, dh.cm.Backend.PathPrefix); dh.resourceMgr[i] == nil {
Girish Gowdra9602eb42020-09-09 15:50:39 -0700918 return olterrors.ErrResourceManagerInstantiating
919 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400920 }
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700921 // GroupManager instance is per OLT. But it needs a reference to any instance of resourceMgr to interface with
922 // the KV store to manage mcast group data. Provide the first instance (0th index)
923 if dh.groupMgr = NewGroupManager(ctx, dh, dh.resourceMgr[0]); dh.groupMgr == nil {
924 return olterrors.ErrGroupManagerInstantiating
925 }
926 for i = 0; i < dh.totalPonPorts; i++ {
927 // Instantiate flow manager
928 if dh.flowMgr[i] = NewFlowManager(ctx, dh, dh.resourceMgr[i], dh.groupMgr, i); dh.flowMgr[i] == nil {
929 return olterrors.ErrFlowManagerInstantiating
930 }
Girish Gowdra76a1b092021-07-28 10:07:04 -0700931 dh.resourceMgr[i].TechprofileRef = dh.flowMgr[i].techprofile
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700932 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400933 /* TODO: Instantiate Alarm , stats , BW managers */
934 /* Instantiating Event Manager to handle Alarms and KPIs */
935 dh.eventMgr = NewEventMgr(dh.EventProxy, dh)
936
937 // Stats config for new device
Neha Sharma96b7bf22020-06-15 10:37:32 +0000938 dh.portStats = NewOpenOltStatsMgr(ctx, dh)
Chaitrashree G Sa4649252020-03-11 21:24:11 -0400939
940 return nil
941
942}
943
Neha Sharma96b7bf22020-06-15 10:37:32 +0000944func (dh *DeviceHandler) populateDeviceInfo(ctx context.Context) (*oop.DeviceInfo, error) {
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400945 var err error
946 var deviceInfo *oop.DeviceInfo
947
Neha Sharma8f4e4322020-08-06 10:51:53 +0000948 deviceInfo, err = dh.Client.GetDeviceInfo(log.WithSpanFromContext(context.Background(), ctx), new(oop.Empty))
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400949
950 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000951 return nil, olterrors.NewErrPersistence("get", "device", 0, nil, err)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400952 }
953 if deviceInfo == nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000954 return nil, olterrors.NewErrInvalidValue(log.Fields{"device": nil}, nil)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400955 }
956
Neha Sharma96b7bf22020-06-15 10:37:32 +0000957 logger.Debugw(ctx, "fetched-device-info", log.Fields{"deviceInfo": deviceInfo, "device-id": dh.device.Id})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400958 dh.device.Root = true
959 dh.device.Vendor = deviceInfo.Vendor
960 dh.device.Model = deviceInfo.Model
961 dh.device.SerialNumber = deviceInfo.DeviceSerialNumber
962 dh.device.HardwareVersion = deviceInfo.HardwareVersion
963 dh.device.FirmwareVersion = deviceInfo.FirmwareVersion
964
965 if deviceInfo.DeviceId == "" {
Neha Sharma96b7bf22020-06-15 10:37:32 +0000966 logger.Warnw(ctx, "no-device-id-provided-using-host", log.Fields{"hostport": dh.device.GetHostAndPort()})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400967 host := strings.Split(dh.device.GetHostAndPort(), ":")[0]
Neha Sharma96b7bf22020-06-15 10:37:32 +0000968 genmac, err := generateMacFromHost(ctx, host)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400969 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000970 return nil, olterrors.NewErrAdapter("failed-to-generate-mac-host", log.Fields{"host": host}, err)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400971 }
Neha Sharma96b7bf22020-06-15 10:37:32 +0000972 logger.Debugw(ctx, "using-host-for-mac-address", log.Fields{"host": host, "mac": genmac})
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400973 dh.device.MacAddress = genmac
974 } else {
975 dh.device.MacAddress = deviceInfo.DeviceId
976 }
977
978 // Synchronous call to update device - this method is run in its own go routine
khenaidoo106c61a2021-08-11 18:05:46 -0400979 if err = dh.updateDeviceInCore(ctx, dh.device); err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +0000980 return nil, olterrors.NewErrAdapter("device-update-failed", log.Fields{"device-id": dh.device.Id}, err)
Matt Jeanneretf4fdcd72019-07-19 20:03:23 -0400981 }
982
983 return deviceInfo, nil
984}
985
Neha Sharma96b7bf22020-06-15 10:37:32 +0000986func startCollector(ctx context.Context, dh *DeviceHandler) {
Matteo Scandolo861e06e2021-05-26 11:51:46 -0700987 logger.Debugw(ctx, "starting-collector", log.Fields{"device-id": dh.device.Id})
Naga Manjunath7615e552019-10-11 22:35:47 +0530988 for {
989 select {
990 case <-dh.stopCollector:
divyadesai3af43e12020-08-18 07:10:54 +0000991 logger.Debugw(ctx, "stopping-collector-for-olt", log.Fields{"device-id": dh.device.Id})
Naga Manjunath7615e552019-10-11 22:35:47 +0530992 return
Rohan Agrawalda5e0b22020-05-20 11:10:26 +0000993 case <-time.After(time.Duration(dh.metrics.ToPmConfigs().DefaultFreq) * time.Second):
Girish Gowdra34815db2020-05-11 17:18:04 -0700994
khenaidoo106c61a2021-08-11 18:05:46 -0400995 ports, err := dh.listDevicePortsFromCore(ctx, dh.device.Id)
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400996 if err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -0700997 logger.Warnw(ctx, "failed-to-list-ports", log.Fields{"device-id": dh.device.Id, "err": err})
Kent Hagermanf1db18b2020-07-08 13:38:15 -0400998 continue
999 }
khenaidoo106c61a2021-08-11 18:05:46 -04001000 for _, port := range ports.Items {
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301001 // NNI Stats
1002 if port.Type == voltha.Port_ETHERNET_NNI {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001003 intfID := plt.PortNoToIntfID(port.PortNo, voltha.Port_ETHERNET_NNI)
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301004 cmnni := dh.portStats.collectNNIMetrics(intfID)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001005 logger.Debugw(ctx, "collect-nni-metrics", log.Fields{"metrics": cmnni})
Gamze Abakafcbd6e72020-12-17 13:25:16 +00001006 go dh.portStats.publishMetrics(ctx, NNIStats, cmnni, port, dh.device.Id, dh.device.Type)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001007 logger.Debugw(ctx, "publish-nni-metrics", log.Fields{"nni-port": port.Label})
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301008 }
1009 // PON Stats
1010 if port.Type == voltha.Port_PON_OLT {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001011 intfID := plt.PortNoToIntfID(port.PortNo, voltha.Port_PON_OLT)
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301012 if val, ok := dh.activePorts.Load(intfID); ok && val == true {
1013 cmpon := dh.portStats.collectPONMetrics(intfID)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001014 logger.Debugw(ctx, "collect-pon-metrics", log.Fields{"metrics": cmpon})
Gamze Abakafcbd6e72020-12-17 13:25:16 +00001015 go dh.portStats.publishMetrics(ctx, PONStats, cmpon, port, dh.device.Id, dh.device.Type)
Kishore Darapuaaf9c102020-05-04 13:06:57 +05301016 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001017 logger.Debugw(ctx, "publish-pon-metrics", log.Fields{"pon-port": port.Label})
Gamze Abakafcbd6e72020-12-17 13:25:16 +00001018
Girish Gowdrabcf98af2021-07-01 08:24:42 -07001019 onuGemInfoLst := dh.flowMgr[intfID].getOnuGemInfoList(ctx)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001020 if len(onuGemInfoLst) > 0 {
1021 go dh.portStats.collectOnuAndGemStats(ctx, onuGemInfoLst)
Gamze Abakafcbd6e72020-12-17 13:25:16 +00001022 }
Chaitrashree G Sef088112020-02-03 21:39:27 -05001023 }
Naga Manjunath7615e552019-10-11 22:35:47 +05301024 }
1025 }
1026 }
1027}
1028
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001029//AdoptDevice adopts the OLT device
npujarec5762e2020-01-01 14:08:48 +05301030func (dh *DeviceHandler) AdoptDevice(ctx context.Context, device *voltha.Device) {
Girish Gowdru0c588b22019-04-23 23:24:56 -04001031 dh.transitionMap = NewTransitionMap(dh)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001032 logger.Infow(ctx, "adopt-device", log.Fields{"device-id": device.Id, "Address": device.GetHostAndPort()})
npujarec5762e2020-01-01 14:08:48 +05301033 dh.transitionMap.Handle(ctx, DeviceInit)
Naga Manjunath7615e552019-10-11 22:35:47 +05301034
1035 // Now, set the initial PM configuration for that device
khenaidoo106c61a2021-08-11 18:05:46 -04001036 cgClient, err := dh.coreClient.GetCoreServiceClient()
1037 if err != nil {
1038 logger.Errorw(ctx, "no-core-connection", log.Fields{"device-id": dh.device.Id, "error": err})
1039 return
1040 }
1041
1042 // Now, set the initial PM configuration for that device
1043 if _, err := cgClient.DevicePMConfigUpdate(ctx, dh.metrics.ToPmConfigs()); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -04001044 _ = olterrors.NewErrAdapter("error-updating-performance-metrics", log.Fields{"device-id": device.Id}, err).LogAt(log.ErrorLevel)
Naga Manjunath7615e552019-10-11 22:35:47 +05301045 }
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301046}
1047
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001048//GetOfpDeviceInfo Gets the Ofp information of the given device
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301049func (dh *DeviceHandler) GetOfpDeviceInfo(device *voltha.Device) (*ic.SwitchCapability, error) {
cuilin20187b2a8c32019-03-26 19:52:28 -07001050 return &ic.SwitchCapability{
1051 Desc: &of.OfpDesc{
Devmalya Paul70dd4972019-06-10 15:19:17 +05301052 MfrDesc: "VOLTHA Project",
cuilin20187b2a8c32019-03-26 19:52:28 -07001053 HwDesc: "open_pon",
1054 SwDesc: "open_pon",
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001055 SerialNum: device.SerialNumber,
cuilin20187b2a8c32019-03-26 19:52:28 -07001056 },
1057 SwitchFeatures: &of.OfpSwitchFeatures{
1058 NBuffers: 256,
1059 NTables: 2,
1060 Capabilities: uint32(of.OfpCapabilities_OFPC_FLOW_STATS |
1061 of.OfpCapabilities_OFPC_TABLE_STATS |
1062 of.OfpCapabilities_OFPC_PORT_STATS |
1063 of.OfpCapabilities_OFPC_GROUP_STATS),
1064 },
1065 }, nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301066}
1067
khenaidoo106c61a2021-08-11 18:05:46 -04001068// GetTechProfileDownloadMessage fetches the TechProfileDownloadMessage for the caller.
1069func (dh *DeviceHandler) GetTechProfileDownloadMessage(ctx context.Context, request *ic.TechProfileInstanceRequestMessage) (*ic.TechProfileDownloadMessage, error) {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001070 ifID, err := plt.IntfIDFromPonPortNum(ctx, request.ParentPonPort)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001071 if err != nil {
khenaidoo106c61a2021-08-11 18:05:46 -04001072 return nil, err
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001073 }
khenaidoo106c61a2021-08-11 18:05:46 -04001074 return dh.flowMgr[ifID].getTechProfileDownloadMessage(ctx, request.TpInstancePath, request.OnuId, request.DeviceId)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001075}
1076
Neha Sharma96b7bf22020-06-15 10:37:32 +00001077func (dh *DeviceHandler) omciIndication(ctx context.Context, omciInd *oop.OmciIndication) error {
khenaidoo106c61a2021-08-11 18:05:46 -04001078 logger.Debugw(ctx, "omci-indication", log.Fields{"intf-id": omciInd.IntfId, "onu-id": omciInd.OnuId, "parent-device-id": dh.device.Id})
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001079 var deviceType string
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001080 var deviceID string
1081 var proxyDeviceID string
khenaidoo106c61a2021-08-11 18:05:46 -04001082 var childAdapterEndpoint string
cuilin20187b2a8c32019-03-26 19:52:28 -07001083
Matt Jeanneretceea2e02020-03-27 14:19:57 -04001084 transid := extractOmciTransactionID(omciInd.Pkt)
Matteo Scandolo92186242020-06-12 10:54:18 -07001085 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001086 logger.Debugw(ctx, "recv-omci-msg", log.Fields{"intf-id": omciInd.IntfId, "onu-id": omciInd.OnuId, "device-id": dh.device.Id,
Matteo Scandolo92186242020-06-12 10:54:18 -07001087 "omci-transaction-id": transid, "omci-msg": hex.EncodeToString(omciInd.Pkt)})
1088 }
Matt Jeanneretceea2e02020-03-27 14:19:57 -04001089
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001090 onuKey := dh.formOnuKey(omciInd.IntfId, omciInd.OnuId)
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301091
1092 if onuInCache, ok := dh.onus.Load(onuKey); !ok {
1093
Neha Sharma96b7bf22020-06-15 10:37:32 +00001094 logger.Debugw(ctx, "omci-indication-for-a-device-not-in-cache.", log.Fields{"intf-id": omciInd.IntfId, "onu-id": omciInd.OnuId, "device-id": dh.device.Id})
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001095 ponPort := plt.IntfIDToPortNo(omciInd.GetIntfId(), voltha.Port_PON_OLT)
cuilin20187b2a8c32019-03-26 19:52:28 -07001096
khenaidoo106c61a2021-08-11 18:05:46 -04001097 onuDevice, err := dh.getChildDeviceFromCore(ctx, &ic.ChildDeviceFilter{
1098 ParentId: dh.device.Id,
1099 OnuId: omciInd.OnuId,
1100 ParentPortNo: ponPort,
1101 })
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001102 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301103 return olterrors.NewErrNotFound("onu", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001104 "intf-id": omciInd.IntfId,
1105 "onu-id": omciInd.OnuId}, err)
cuilin20187b2a8c32019-03-26 19:52:28 -07001106 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001107 deviceType = onuDevice.Type
1108 deviceID = onuDevice.Id
1109 proxyDeviceID = onuDevice.ProxyAddress.DeviceId
khenaidoo106c61a2021-08-11 18:05:46 -04001110 childAdapterEndpoint = onuDevice.AdapterEndpoint
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001111 //if not exist in cache, then add to cache.
khenaidoo106c61a2021-08-11 18:05:46 -04001112 dh.onus.Store(onuKey, NewOnuDevice(deviceID, deviceType, onuDevice.SerialNumber, omciInd.OnuId, omciInd.IntfId, proxyDeviceID, false, onuDevice.AdapterEndpoint))
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001113 } else {
1114 //found in cache
Neha Sharma96b7bf22020-06-15 10:37:32 +00001115 logger.Debugw(ctx, "omci-indication-for-a-device-in-cache.", log.Fields{"intf-id": omciInd.IntfId, "onu-id": omciInd.OnuId, "device-id": dh.device.Id})
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301116 deviceType = onuInCache.(*OnuDevice).deviceType
1117 deviceID = onuInCache.(*OnuDevice).deviceID
1118 proxyDeviceID = onuInCache.(*OnuDevice).proxyDeviceID
khenaidoo106c61a2021-08-11 18:05:46 -04001119 childAdapterEndpoint = onuInCache.(*OnuDevice).adapterEndpoint
cuilin20187b2a8c32019-03-26 19:52:28 -07001120 }
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001121
khenaidoo106c61a2021-08-11 18:05:46 -04001122 if err := dh.sendOmciIndicationToChildAdapter(ctx, childAdapterEndpoint, &ic.OmciMessage{
1123 ParentDeviceId: proxyDeviceID,
1124 ChildDeviceId: deviceID,
1125 Message: omciInd.Pkt,
1126 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301127 return olterrors.NewErrCommunication("omci-request", log.Fields{
khenaidoo106c61a2021-08-11 18:05:46 -04001128 "source": dh.openOLT.config.AdapterEndpoint,
1129 "device-type": deviceType,
1130 "destination": childAdapterEndpoint,
David K. Bainbridge794735f2020-02-11 21:01:37 -08001131 "onu-id": deviceID,
Girish Kumarf26e4882020-03-05 06:49:10 +00001132 "proxy-device-id": proxyDeviceID}, err)
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001133 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001134 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301135}
1136
khenaidoo106c61a2021-08-11 18:05:46 -04001137// //ProcessInterAdapterMessage sends the proxied messages to the target device
1138// // If the proxy address is not found in the unmarshalled message, it first fetches the onu device for which the message
1139// // is meant, and then send the unmarshalled omci message to this onu
1140// func (dh *DeviceHandler) ProcessInterAdapterMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
1141// logger.Debugw(ctx, "process-inter-adapter-message", log.Fields{"msgID": msg.Header.Id})
1142// if msg.Header.Type == ic.InterAdapterMessageType_OMCI_REQUEST {
1143// return dh.handleInterAdapterOmciMsg(ctx, msg)
1144// }
1145// return olterrors.NewErrInvalidValue(log.Fields{"inter-adapter-message-type": msg.Header.Type}, nil)
1146// }
cuilin20187b2a8c32019-03-26 19:52:28 -07001147
khenaidoo106c61a2021-08-11 18:05:46 -04001148// ProxyOmciMessage sends the proxied OMCI message to the target device
1149func (dh *DeviceHandler) ProxyOmciMessage(ctx context.Context, omciMsg *ic.OmciMessage) error {
1150 logger.Debugw(ctx, "proxy-omci-message", log.Fields{"parent-device-id": omciMsg.ParentDeviceId, "child-device-id": omciMsg.ChildDeviceId, "proxy-address": omciMsg.ProxyAddress, "connect-status": omciMsg.ConnectStatus})
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001151
1152 if omciMsg.GetProxyAddress() == nil {
khenaidoo106c61a2021-08-11 18:05:46 -04001153 onuDevice, err := dh.getDeviceFromCore(ctx, omciMsg.ChildDeviceId)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001154 if err != nil {
1155 return olterrors.NewErrNotFound("onu", log.Fields{
khenaidoo106c61a2021-08-11 18:05:46 -04001156 "parent-device-id": dh.device.Id,
1157 "child-device-id": omciMsg.ChildDeviceId}, err)
cuilin20187b2a8c32019-03-26 19:52:28 -07001158 }
khenaidoo106c61a2021-08-11 18:05:46 -04001159 logger.Debugw(ctx, "device-retrieved-from-core", log.Fields{"onu-device-proxy-address": onuDevice.ProxyAddress})
1160 if err := dh.sendProxiedMessage(log.WithSpanFromContext(context.Background(), ctx), onuDevice, omciMsg); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001161 return olterrors.NewErrCommunication("send-failed", log.Fields{
khenaidoo106c61a2021-08-11 18:05:46 -04001162 "parent-device-id": dh.device.Id,
1163 "child-device-id": omciMsg.ChildDeviceId}, err)
cuilin20187b2a8c32019-03-26 19:52:28 -07001164 }
cuilin20187b2a8c32019-03-26 19:52:28 -07001165 } else {
khenaidoo106c61a2021-08-11 18:05:46 -04001166 logger.Debugw(ctx, "proxy-address-found-in-omci-message", log.Fields{"onu-device-proxy-address": omciMsg.ProxyAddress})
1167 if err := dh.sendProxiedMessage(log.WithSpanFromContext(context.Background(), ctx), nil, omciMsg); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001168 return olterrors.NewErrCommunication("send-failed", log.Fields{
khenaidoo106c61a2021-08-11 18:05:46 -04001169 "parent-device-id": dh.device.Id,
1170 "child-device-id": omciMsg.ChildDeviceId}, err)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001171 }
cuilin20187b2a8c32019-03-26 19:52:28 -07001172 }
1173 return nil
Phaneendra Manda4c62c802019-03-06 21:37:49 +05301174}
1175
khenaidoo106c61a2021-08-11 18:05:46 -04001176func (dh *DeviceHandler) sendProxiedMessage(ctx context.Context, onuDevice *voltha.Device, omciMsg *ic.OmciMessage) error {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001177 var intfID uint32
1178 var onuID uint32
Esin Karamanccb714b2019-11-29 15:02:06 +00001179 var connectStatus common.ConnectStatus_Types
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001180 if onuDevice != nil {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001181 intfID = onuDevice.ProxyAddress.GetChannelId()
1182 onuID = onuDevice.ProxyAddress.GetOnuId()
1183 connectStatus = onuDevice.ConnectStatus
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001184 } else {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001185 intfID = omciMsg.GetProxyAddress().GetChannelId()
1186 onuID = omciMsg.GetProxyAddress().GetOnuId()
1187 connectStatus = omciMsg.GetConnectStatus()
Mahir Gunyela3f9add2019-06-06 15:13:19 -07001188 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001189 if connectStatus != voltha.ConnectStatus_REACHABLE {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001190 logger.Debugw(ctx, "onu-not-reachable--cannot-send-omci", log.Fields{"intf-id": intfID, "onu-id": onuID})
David K. Bainbridge794735f2020-02-11 21:01:37 -08001191
Thomas Lee S94109f12020-03-03 16:39:29 +05301192 return olterrors.NewErrCommunication("unreachable", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001193 "intf-id": intfID,
1194 "onu-id": onuID}, nil)
cuilin20187b2a8c32019-03-26 19:52:28 -07001195 }
1196
Matt Jeanneretceea2e02020-03-27 14:19:57 -04001197 // TODO: OpenOLT Agent oop.OmciMsg expects a hex encoded string for OMCI packets rather than the actual bytes.
1198 // Fix this in the agent and then we can pass byte array as Pkt: omciMsg.Message.
lcuie24ef182019-04-29 22:58:36 -07001199 var omciMessage *oop.OmciMsg
Matt Jeanneretceea2e02020-03-27 14:19:57 -04001200 hexPkt := make([]byte, hex.EncodedLen(len(omciMsg.Message)))
1201 hex.Encode(hexPkt, omciMsg.Message)
1202 omciMessage = &oop.OmciMsg{IntfId: intfID, OnuId: onuID, Pkt: hexPkt}
1203
1204 // TODO: Below logging illustrates the "stringify" of the omci Pkt.
1205 // once above is fixed this log line can change to just use hex.EncodeToString(omciMessage.Pkt)
1206 transid := extractOmciTransactionID(omciMsg.Message)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001207 logger.Debugw(ctx, "sent-omci-msg", log.Fields{"intf-id": intfID, "onu-id": onuID,
Matt Jeanneretceea2e02020-03-27 14:19:57 -04001208 "omciTransactionID": transid, "omciMsg": string(omciMessage.Pkt)})
cuilin20187b2a8c32019-03-26 19:52:28 -07001209
Neha Sharma8f4e4322020-08-06 10:51:53 +00001210 _, err := dh.Client.OmciMsgOut(log.WithSpanFromContext(context.Background(), ctx), omciMessage)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001211 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301212 return olterrors.NewErrCommunication("omci-send-failed", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001213 "intf-id": intfID,
1214 "onu-id": onuID,
1215 "message": omciMessage}, err)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001216 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001217 return nil
cuilin20187b2a8c32019-03-26 19:52:28 -07001218}
1219
David K. Bainbridge794735f2020-02-11 21:01:37 -08001220func (dh *DeviceHandler) activateONU(ctx context.Context, intfID uint32, onuID int64, serialNum *oop.SerialNumber, serialNumber string) error {
kesavand494c2082020-08-31 11:16:12 +05301221 logger.Debugw(ctx, "activate-onu", log.Fields{"intf-id": intfID, "onu-id": onuID, "serialNum": serialNum, "serialNumber": serialNumber, "device-id": dh.device.Id, "OmccEncryption": dh.openOLT.config.OmccEncryption})
Girish Gowdra197acc12021-08-16 10:59:45 -07001222 if err := dh.flowMgr[intfID].AddOnuInfoToFlowMgrCacheAndKvStore(ctx, intfID, uint32(onuID), serialNumber); err != nil {
Matteo Scandolo92186242020-06-12 10:54:18 -07001223 return olterrors.NewErrAdapter("onu-activate-failed", log.Fields{"onu": onuID, "intf-id": intfID}, err)
Andrea Campanellab83b39d2020-03-30 11:41:16 +02001224 }
cuilin20187b2a8c32019-03-26 19:52:28 -07001225 var pir uint32 = 1000000
kesavand494c2082020-08-31 11:16:12 +05301226 Onu := oop.Onu{IntfId: intfID, OnuId: uint32(onuID), SerialNumber: serialNum, Pir: pir, OmccEncryption: dh.openOLT.config.OmccEncryption}
npujarec5762e2020-01-01 14:08:48 +05301227 if _, err := dh.Client.ActivateOnu(ctx, &Onu); err != nil {
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -04001228 st, _ := status.FromError(err)
1229 if st.Code() == codes.AlreadyExists {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001230 logger.Debugw(ctx, "onu-activation-in-progress", log.Fields{"SerialNumber": serialNumber, "onu-id": onuID, "device-id": dh.device.Id})
1231
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -04001232 } else {
Thomas Lee S985938d2020-05-04 11:40:41 +05301233 return olterrors.NewErrAdapter("onu-activate-failed", log.Fields{"onu": Onu, "device-id": dh.device.Id}, err)
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -04001234 }
cuilin20187b2a8c32019-03-26 19:52:28 -07001235 } else {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001236 logger.Infow(ctx, "activated-onu", log.Fields{"SerialNumber": serialNumber, "device-id": dh.device.Id})
cuilin20187b2a8c32019-03-26 19:52:28 -07001237 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001238 return nil
cuilin20187b2a8c32019-03-26 19:52:28 -07001239}
1240
Mahir Gunyelb0046752021-02-26 13:51:05 -08001241func (dh *DeviceHandler) onuDiscIndication(ctx context.Context, onuDiscInd *oop.OnuDiscIndication) error {
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001242 channelID := onuDiscInd.GetIntfId()
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001243 parentPortNo := plt.IntfIDToPortNo(onuDiscInd.GetIntfId(), voltha.Port_PON_OLT)
Matt Jeanneret53539512019-07-20 14:47:02 -04001244
Mahir Gunyelb0046752021-02-26 13:51:05 -08001245 sn := dh.stringifySerialNumber(onuDiscInd.SerialNumber)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001246 logger.Infow(ctx, "new-discovery-indication", log.Fields{"sn": sn})
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301247
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301248 var alarmInd oop.OnuAlarmIndication
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -07001249 raisedTs := time.Now().Unix()
Amit Ghoshe5c6a852020-02-10 15:09:46 +00001250 if _, loaded := dh.discOnus.LoadOrStore(sn, true); loaded {
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301251
1252 /* When PON cable disconnected and connected back from OLT, it was expected OnuAlarmIndication
1253 with "los_status: off" should be raised but BAL does not raise this Alarm hence manually sending
1254 OnuLosClear event on receiving OnuDiscoveryIndication for the Onu after checking whether
1255 OnuLosRaise event sent for it */
1256 dh.onus.Range(func(Onukey interface{}, onuInCache interface{}) bool {
1257 if onuInCache.(*OnuDevice).serialNumber == sn && onuInCache.(*OnuDevice).losRaised {
1258 if onuDiscInd.GetIntfId() != onuInCache.(*OnuDevice).intfID {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001259 logger.Warnw(ctx, "onu-is-on-a-different-intf-id-now", log.Fields{
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301260 "previousIntfId": onuInCache.(*OnuDevice).intfID,
1261 "currentIntfId": onuDiscInd.GetIntfId()})
1262 // TODO:: Should we need to ignore raising OnuLosClear event
1263 // when onu connected to different PON?
1264 }
1265 alarmInd.IntfId = onuInCache.(*OnuDevice).intfID
1266 alarmInd.OnuId = onuInCache.(*OnuDevice).onuID
1267 alarmInd.LosStatus = statusCheckOff
Kent Hagermane6ff1012020-07-14 15:07:53 -04001268 go func() {
1269 if err := dh.eventMgr.onuAlarmIndication(ctx, &alarmInd, onuInCache.(*OnuDevice).deviceID, raisedTs); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001270 logger.Debugw(ctx, "indication-failed", log.Fields{"err": err})
Kent Hagermane6ff1012020-07-14 15:07:53 -04001271 }
1272 }()
Thiyagarajan Subramani34a00282020-03-10 20:19:31 +05301273 }
1274 return true
1275 })
1276
Neha Sharma96b7bf22020-06-15 10:37:32 +00001277 logger.Warnw(ctx, "onu-sn-is-already-being-processed", log.Fields{"sn": sn})
David K. Bainbridge794735f2020-02-11 21:01:37 -08001278 return nil
Amit Ghoshe5c6a852020-02-10 15:09:46 +00001279 }
1280
Chaitrashree G S35b5d802019-07-08 23:12:03 -04001281 var onuID uint32
Matteo Scandolo945e4012019-12-12 14:16:11 -08001282
1283 // check the ONU is already know to the OLT
1284 // NOTE the second time the ONU is discovered this should return a device
khenaidoo106c61a2021-08-11 18:05:46 -04001285 onuDevice, err := dh.getChildDeviceFromCore(ctx, &ic.ChildDeviceFilter{
1286 ParentId: dh.device.Id,
1287 SerialNumber: sn,
1288 })
Matteo Scandolo945e4012019-12-12 14:16:11 -08001289
1290 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001291 logger.Debugw(ctx, "core-proxy-get-child-device-failed", log.Fields{"parentDevice": dh.device.Id, "err": err, "sn": sn})
Matteo Scandolo945e4012019-12-12 14:16:11 -08001292 if e, ok := status.FromError(err); ok {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001293 logger.Debugw(ctx, "core-proxy-get-child-device-failed-with-code", log.Fields{"errCode": e.Code(), "sn": sn})
Matteo Scandolo945e4012019-12-12 14:16:11 -08001294 switch e.Code() {
1295 case codes.Internal:
1296 // this probably means NOT FOUND, so just create a new device
1297 onuDevice = nil
1298 case codes.DeadlineExceeded:
1299 // if the call times out, cleanup and exit
1300 dh.discOnus.Delete(sn)
Girish Kumarf26e4882020-03-05 06:49:10 +00001301 return olterrors.NewErrTimeout("get-child-device", log.Fields{"device-id": dh.device.Id}, err)
Matteo Scandolo945e4012019-12-12 14:16:11 -08001302 }
1303 }
1304 }
1305
1306 if onuDevice == nil {
1307 // NOTE this should happen a single time, and only if GetChildDevice returns NotFound
Neha Sharma96b7bf22020-06-15 10:37:32 +00001308 logger.Debugw(ctx, "creating-new-onu", log.Fields{"sn": sn})
Matteo Scandolo945e4012019-12-12 14:16:11 -08001309 // we need to create a new ChildDevice
Matt Jeanneret53539512019-07-20 14:47:02 -04001310 ponintfid := onuDiscInd.GetIntfId()
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001311 onuID, err = dh.resourceMgr[ponintfid].GetONUID(ctx, ponintfid)
Chaitrashree G S35b5d802019-07-08 23:12:03 -04001312
Neha Sharma96b7bf22020-06-15 10:37:32 +00001313 logger.Infow(ctx, "creating-new-onu-got-onu-id", log.Fields{"sn": sn, "onuId": onuID})
Matteo Scandolo945e4012019-12-12 14:16:11 -08001314
1315 if err != nil {
1316 // if we can't create an ID in resource manager,
1317 // cleanup and exit
Matteo Scandolo945e4012019-12-12 14:16:11 -08001318 dh.discOnus.Delete(sn)
Girish Kumarf26e4882020-03-05 06:49:10 +00001319 return olterrors.NewErrAdapter("resource-manager-get-onu-id-failed", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001320 "pon-intf-id": ponintfid,
1321 "serial-number": sn}, err)
Matteo Scandolo945e4012019-12-12 14:16:11 -08001322 }
1323
khenaidoo106c61a2021-08-11 18:05:46 -04001324 if onuDevice, err = dh.sendChildDeviceDetectedToCore(ctx, &ic.DeviceDiscovery{
1325 ParentId: dh.device.Id,
1326 ParentPortNo: parentPortNo,
1327 ChannelId: channelID,
1328 VendorId: string(onuDiscInd.SerialNumber.GetVendorId()),
1329 SerialNumber: sn,
1330 OnuId: onuID,
1331 }); err != nil {
Matteo Scandolo945e4012019-12-12 14:16:11 -08001332 dh.discOnus.Delete(sn)
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001333 dh.resourceMgr[ponintfid].FreeonuID(ctx, ponintfid, []uint32{onuID}) // NOTE I'm not sure this method is actually cleaning up the right thing
Thomas Lee S94109f12020-03-03 16:39:29 +05301334 return olterrors.NewErrAdapter("core-proxy-child-device-detected-failed", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001335 "pon-intf-id": ponintfid,
1336 "serial-number": sn}, err)
Matteo Scandolo945e4012019-12-12 14:16:11 -08001337 }
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -07001338 if err := dh.eventMgr.OnuDiscoveryIndication(ctx, onuDiscInd, dh.device.Id, onuDevice.Id, onuID, sn, time.Now().Unix()); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001339 logger.Warnw(ctx, "discovery-indication-failed", log.Fields{"err": err})
Kent Hagermane6ff1012020-07-14 15:07:53 -04001340 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001341 logger.Infow(ctx, "onu-child-device-added",
Shrey Baid807a2a02020-04-09 12:52:45 +05301342 log.Fields{"onuDevice": onuDevice,
1343 "sn": sn,
Matteo Scandolo92186242020-06-12 10:54:18 -07001344 "onu-id": onuID,
Thomas Lee S985938d2020-05-04 11:40:41 +05301345 "device-id": dh.device.Id})
Chaitrashree G Sbe6ab942019-05-24 06:42:49 -04001346 }
Matteo Scandolo945e4012019-12-12 14:16:11 -08001347
khenaidoo106c61a2021-08-11 18:05:46 -04001348 // Setup the gRPC connection to the adapter responsible for that onuDevice, if not setup yet
1349 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
1350 err = dh.setupChildInterAdapterClient(subCtx, onuDevice.AdapterEndpoint)
1351 cancel()
1352 if err != nil {
1353 return olterrors.NewErrCommunication("no-connection-to-child-adapter", log.Fields{"device-id": onuDevice.Id}, err)
1354 }
1355
Matteo Scandolo945e4012019-12-12 14:16:11 -08001356 // we can now use the existing ONU Id
1357 onuID = onuDevice.ProxyAddress.OnuId
Mahir Gunyele77977b2019-06-27 05:36:22 -07001358 //Insert the ONU into cache to use in OnuIndication.
1359 //TODO: Do we need to remove this from the cache on ONU change, or wait for overwritten on next discovery.
Neha Sharma96b7bf22020-06-15 10:37:32 +00001360 logger.Debugw(ctx, "onu-discovery-indication-key-create",
Matteo Scandolo92186242020-06-12 10:54:18 -07001361 log.Fields{"onu-id": onuID,
Shrey Baid807a2a02020-04-09 12:52:45 +05301362 "intfId": onuDiscInd.GetIntfId(),
1363 "sn": sn})
Mahir Gunyele77977b2019-06-27 05:36:22 -07001364 onuKey := dh.formOnuKey(onuDiscInd.GetIntfId(), onuID)
Matt Jeanneret53539512019-07-20 14:47:02 -04001365
khenaidoo106c61a2021-08-11 18:05:46 -04001366 onuDev := NewOnuDevice(onuDevice.Id, onuDevice.Type, onuDevice.SerialNumber, onuID, onuDiscInd.GetIntfId(), onuDevice.ProxyAddress.DeviceId, false, onuDevice.AdapterEndpoint)
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301367 dh.onus.Store(onuKey, onuDev)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001368 logger.Debugw(ctx, "new-onu-device-discovered",
Shrey Baid807a2a02020-04-09 12:52:45 +05301369 log.Fields{"onu": onuDev,
1370 "sn": sn})
Chaitrashree G S35b5d802019-07-08 23:12:03 -04001371
khenaidoo106c61a2021-08-11 18:05:46 -04001372 if err := dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
1373 DeviceId: onuDevice.Id,
1374 ParentDeviceId: dh.device.Id,
1375 OperStatus: common.OperStatus_DISCOVERED,
1376 ConnStatus: common.ConnectStatus_REACHABLE,
1377 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301378 return olterrors.NewErrAdapter("failed-to-update-device-state", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001379 "device-id": onuDevice.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00001380 "serial-number": sn}, err)
cuilin20187b2a8c32019-03-26 19:52:28 -07001381 }
khenaidoo106c61a2021-08-11 18:05:46 -04001382
Neha Sharma96b7bf22020-06-15 10:37:32 +00001383 logger.Infow(ctx, "onu-discovered-reachable", log.Fields{"device-id": onuDevice.Id, "sn": sn})
Kent Hagermane6ff1012020-07-14 15:07:53 -04001384 if err := dh.activateONU(ctx, onuDiscInd.IntfId, int64(onuID), onuDiscInd.SerialNumber, sn); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301385 return olterrors.NewErrAdapter("onu-activation-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001386 "device-id": onuDevice.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00001387 "serial-number": sn}, err)
David K. Bainbridge794735f2020-02-11 21:01:37 -08001388 }
1389 return nil
cuilin20187b2a8c32019-03-26 19:52:28 -07001390}
1391
Mahir Gunyelb0046752021-02-26 13:51:05 -08001392func (dh *DeviceHandler) onuIndication(ctx context.Context, onuInd *oop.OnuIndication) error {
cuilin20187b2a8c32019-03-26 19:52:28 -07001393
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001394 ponPort := plt.IntfIDToPortNo(onuInd.GetIntfId(), voltha.Port_PON_OLT)
Mahir Gunyele77977b2019-06-27 05:36:22 -07001395 var onuDevice *voltha.Device
David K. Bainbridge794735f2020-02-11 21:01:37 -08001396 var err error
Mahir Gunyele77977b2019-06-27 05:36:22 -07001397 foundInCache := false
Neha Sharma96b7bf22020-06-15 10:37:32 +00001398 logger.Debugw(ctx, "onu-indication-key-create",
Shrey Baid807a2a02020-04-09 12:52:45 +05301399 log.Fields{"onuId": onuInd.OnuId,
1400 "intfId": onuInd.GetIntfId(),
Thomas Lee S985938d2020-05-04 11:40:41 +05301401 "device-id": dh.device.Id})
Mahir Gunyele77977b2019-06-27 05:36:22 -07001402 onuKey := dh.formOnuKey(onuInd.GetIntfId(), onuInd.OnuId)
Mahir Gunyelb0046752021-02-26 13:51:05 -08001403 serialNumber := dh.stringifySerialNumber(onuInd.SerialNumber)
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301404
David K. Bainbridge794735f2020-02-11 21:01:37 -08001405 errFields := log.Fields{"device-id": dh.device.Id}
1406
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301407 if onuInCache, ok := dh.onus.Load(onuKey); ok {
1408
Mahir Gunyele77977b2019-06-27 05:36:22 -07001409 //If ONU id is discovered before then use GetDevice to get onuDevice because it is cheaper.
1410 foundInCache = true
David K. Bainbridge794735f2020-02-11 21:01:37 -08001411 errFields["onu-id"] = onuInCache.(*OnuDevice).deviceID
khenaidoo106c61a2021-08-11 18:05:46 -04001412 onuDevice, err = dh.getDeviceFromCore(ctx, onuInCache.(*OnuDevice).deviceID)
cuilin20187b2a8c32019-03-26 19:52:28 -07001413 } else {
Mahir Gunyele77977b2019-06-27 05:36:22 -07001414 //If ONU not found in adapter cache then we have to use GetChildDevice to get onuDevice
1415 if serialNumber != "" {
David K. Bainbridge794735f2020-02-11 21:01:37 -08001416 errFields["serial-number"] = serialNumber
Mahir Gunyele77977b2019-06-27 05:36:22 -07001417 } else {
David K. Bainbridge794735f2020-02-11 21:01:37 -08001418 errFields["onu-id"] = onuInd.OnuId
1419 errFields["parent-port-no"] = ponPort
Mahir Gunyele77977b2019-06-27 05:36:22 -07001420 }
khenaidoo106c61a2021-08-11 18:05:46 -04001421 onuDevice, err = dh.getChildDeviceFromCore(ctx, &ic.ChildDeviceFilter{
1422 ParentId: dh.device.Id,
1423 SerialNumber: serialNumber,
1424 OnuId: onuInd.OnuId,
1425 ParentPortNo: ponPort,
1426 })
cuilin20187b2a8c32019-03-26 19:52:28 -07001427 }
Mahir Gunyele77977b2019-06-27 05:36:22 -07001428
David K. Bainbridge794735f2020-02-11 21:01:37 -08001429 if err != nil || onuDevice == nil {
Girish Kumarf26e4882020-03-05 06:49:10 +00001430 return olterrors.NewErrNotFound("onu-device", errFields, err)
cuilin20187b2a8c32019-03-26 19:52:28 -07001431 }
1432
David K. Bainbridge794735f2020-02-11 21:01:37 -08001433 if onuDevice.ParentPortNo != ponPort {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001434 logger.Warnw(ctx, "onu-is-on-a-different-intf-id-now", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001435 "previousIntfId": onuDevice.ParentPortNo,
1436 "currentIntfId": ponPort})
1437 }
1438
1439 if onuDevice.ProxyAddress.OnuId != onuInd.OnuId {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001440 logger.Warnw(ctx, "onu-id-mismatch-possible-if-voltha-and-olt-rebooted", log.Fields{
Shrey Baid807a2a02020-04-09 12:52:45 +05301441 "expected-onu-id": onuDevice.ProxyAddress.OnuId,
1442 "received-onu-id": onuInd.OnuId,
Thomas Lee S985938d2020-05-04 11:40:41 +05301443 "device-id": dh.device.Id})
David K. Bainbridge794735f2020-02-11 21:01:37 -08001444 }
1445 if !foundInCache {
1446 onuKey := dh.formOnuKey(onuInd.GetIntfId(), onuInd.GetOnuId())
1447
khenaidoo106c61a2021-08-11 18:05:46 -04001448 dh.onus.Store(onuKey, NewOnuDevice(onuDevice.Id, onuDevice.Type, onuDevice.SerialNumber, onuInd.GetOnuId(), onuInd.GetIntfId(), onuDevice.ProxyAddress.DeviceId, false, onuDevice.AdapterEndpoint))
David K. Bainbridge794735f2020-02-11 21:01:37 -08001449
1450 }
kesavand7cf3a052020-08-28 12:49:18 +05301451 if onuInd.OperState == "down" && onuInd.FailReason != oop.OnuIndication_ONU_ACTIVATION_FAIL_REASON_NONE {
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -07001452 if err := dh.eventMgr.onuActivationIndication(ctx, onuActivationFailEvent, onuInd, dh.device.Id, time.Now().Unix()); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001453 logger.Warnw(ctx, "onu-activation-indication-reporting-failed", log.Fields{"err": err})
kesavand7cf3a052020-08-28 12:49:18 +05301454 }
1455 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001456 if err := dh.updateOnuStates(ctx, onuDevice, onuInd); err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +00001457 return olterrors.NewErrCommunication("state-update-failed", errFields, err)
David K. Bainbridge794735f2020-02-11 21:01:37 -08001458 }
1459 return nil
cuilin20187b2a8c32019-03-26 19:52:28 -07001460}
1461
Neha Sharma96b7bf22020-06-15 10:37:32 +00001462func (dh *DeviceHandler) updateOnuStates(ctx context.Context, onuDevice *voltha.Device, onuInd *oop.OnuIndication) error {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001463 logger.Debugw(ctx, "onu-indication-for-state", log.Fields{"onuIndication": onuInd, "device-id": onuDevice.Id, "operStatus": onuDevice.OperStatus, "adminStatus": onuDevice.AdminState})
Girish Gowdra748de5c2020-07-01 10:27:52 -07001464 if onuInd.AdminState == "down" || onuInd.OperState == "down" {
1465 // The ONU has gone admin_state "down" or oper_state "down" - we expect the ONU to send discovery again
1466 // The ONU admin_state is "up" while "oper_state" is down in cases where ONU activation fails. In this case
1467 // the ONU sends Discovery again.
Girish Gowdra429f9502020-05-04 13:22:16 -07001468 dh.discOnus.Delete(onuDevice.SerialNumber)
Amit Ghosh9bbc5652020-02-17 13:37:32 +00001469 // Tests have shown that we sometimes get OperState as NOT down even if AdminState is down, forcing it
1470 if onuInd.OperState != "down" {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001471 logger.Warnw(ctx, "onu-admin-state-down", log.Fields{"operState": onuInd.OperState})
Amit Ghosh9bbc5652020-02-17 13:37:32 +00001472 onuInd.OperState = "down"
1473 }
1474 }
1475
David K. Bainbridge794735f2020-02-11 21:01:37 -08001476 switch onuInd.OperState {
khenaidoo106c61a2021-08-11 18:05:46 -04001477 case "up", "down":
Neha Sharma96b7bf22020-06-15 10:37:32 +00001478 logger.Debugw(ctx, "sending-interadapter-onu-indication", log.Fields{"onuIndication": onuInd, "device-id": onuDevice.Id, "operStatus": onuDevice.OperStatus, "adminStatus": onuDevice.AdminState})
khenaidoo106c61a2021-08-11 18:05:46 -04001479
1480 err := dh.sendOnuIndicationToChildAdapter(ctx, onuDevice.AdapterEndpoint, &ic.OnuIndicationMessage{
1481 DeviceId: onuDevice.Id,
1482 OnuIndication: onuInd,
1483 })
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001484 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301485 return olterrors.NewErrCommunication("inter-adapter-send-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001486 "onu-indicator": onuInd,
khenaidoo106c61a2021-08-11 18:05:46 -04001487 "source": dh.openOLT.config.AdapterEndpoint,
David K. Bainbridge794735f2020-02-11 21:01:37 -08001488 "device-type": onuDevice.Type,
Girish Kumarf26e4882020-03-05 06:49:10 +00001489 "device-id": onuDevice.Id}, err)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001490 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001491 default:
Girish Kumarf26e4882020-03-05 06:49:10 +00001492 return olterrors.NewErrInvalidValue(log.Fields{"oper-state": onuInd.OperState}, nil)
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001493 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001494 return nil
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001495}
1496
cuilin20187b2a8c32019-03-26 19:52:28 -07001497func (dh *DeviceHandler) stringifySerialNumber(serialNum *oop.SerialNumber) string {
1498 if serialNum != nil {
1499 return string(serialNum.VendorId) + dh.stringifyVendorSpecific(serialNum.VendorSpecific)
cuilin20187b2a8c32019-03-26 19:52:28 -07001500 }
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001501 return ""
cuilin20187b2a8c32019-03-26 19:52:28 -07001502}
Chaitrashree G S1a55b882020-02-04 17:35:35 -05001503func (dh *DeviceHandler) deStringifySerialNumber(serialNum string) (*oop.SerialNumber, error) {
1504 decodedStr, err := hex.DecodeString(serialNum[4:])
1505 if err != nil {
1506 return nil, err
1507 }
1508 return &oop.SerialNumber{
1509 VendorId: []byte(serialNum[:4]),
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001510 VendorSpecific: decodedStr,
Chaitrashree G S1a55b882020-02-04 17:35:35 -05001511 }, nil
1512}
cuilin20187b2a8c32019-03-26 19:52:28 -07001513
1514func (dh *DeviceHandler) stringifyVendorSpecific(vendorSpecific []byte) string {
Mahir Gunyelb0046752021-02-26 13:51:05 -08001515 if len(vendorSpecific) > 3 {
1516 tmp := fmt.Sprintf("%x", (uint32(vendorSpecific[0])>>4)&0x0f) +
1517 fmt.Sprintf("%x", uint32(vendorSpecific[0]&0x0f)) +
1518 fmt.Sprintf("%x", (uint32(vendorSpecific[1])>>4)&0x0f) +
1519 fmt.Sprintf("%x", (uint32(vendorSpecific[1]))&0x0f) +
1520 fmt.Sprintf("%x", (uint32(vendorSpecific[2])>>4)&0x0f) +
1521 fmt.Sprintf("%x", (uint32(vendorSpecific[2]))&0x0f) +
1522 fmt.Sprintf("%x", (uint32(vendorSpecific[3])>>4)&0x0f) +
1523 fmt.Sprintf("%x", (uint32(vendorSpecific[3]))&0x0f)
1524 return tmp
1525 }
1526 return ""
cuilin20187b2a8c32019-03-26 19:52:28 -07001527}
1528
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001529//UpdateFlowsBulk upates the bulk flow
1530func (dh *DeviceHandler) UpdateFlowsBulk() error {
Thomas Lee S94109f12020-03-03 16:39:29 +05301531 return olterrors.ErrNotImplemented
cuilin20187b2a8c32019-03-26 19:52:28 -07001532}
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001533
1534//GetChildDevice returns the child device for given parent port and onu id
Neha Sharma96b7bf22020-06-15 10:37:32 +00001535func (dh *DeviceHandler) GetChildDevice(ctx context.Context, parentPort, onuID uint32) (*voltha.Device, error) {
1536 logger.Debugw(ctx, "getchilddevice",
Shrey Baid807a2a02020-04-09 12:52:45 +05301537 log.Fields{"pon-port": parentPort,
Matteo Scandolo92186242020-06-12 10:54:18 -07001538 "onu-id": onuID,
Thomas Lee S985938d2020-05-04 11:40:41 +05301539 "device-id": dh.device.Id})
khenaidoo106c61a2021-08-11 18:05:46 -04001540
1541 onuDevice, err := dh.getChildDeviceFromCore(ctx, &ic.ChildDeviceFilter{
1542 ParentId: dh.device.Id,
1543 OnuId: onuID,
1544 ParentPortNo: parentPort,
1545 })
1546
Girish Gowdru0c588b22019-04-23 23:24:56 -04001547 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +00001548 return nil, olterrors.NewErrNotFound("onu-device", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001549 "intf-id": parentPort,
1550 "onu-id": onuID}, err)
Girish Gowdru0c588b22019-04-23 23:24:56 -04001551 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001552 logger.Debugw(ctx, "successfully-received-child-device-from-core", log.Fields{"child-device-id": onuDevice.Id, "child-device-sn": onuDevice.SerialNumber})
David K. Bainbridge794735f2020-02-11 21:01:37 -08001553 return onuDevice, nil
manikkaraj kbf256be2019-03-25 00:13:48 +05301554}
1555
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001556// SendPacketInToCore sends packet-in to core
1557// For this, it calls SendPacketIn of the core-proxy which uses a device specific topic to send the request.
1558// The adapter handling the device creates a device specific topic
Neha Sharma96b7bf22020-06-15 10:37:32 +00001559func (dh *DeviceHandler) SendPacketInToCore(ctx context.Context, logicalPort uint32, packetPayload []byte) error {
Matteo Scandolo92186242020-06-12 10:54:18 -07001560 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001561 logger.Debugw(ctx, "send-packet-in-to-core", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001562 "port": logicalPort,
1563 "packet": hex.EncodeToString(packetPayload),
1564 "device-id": dh.device.Id,
1565 })
1566 }
khenaidoo106c61a2021-08-11 18:05:46 -04001567
1568 if err := dh.sendPacketToCore(ctx, &ic.PacketIn{
1569 DeviceId: dh.device.Id,
1570 Port: logicalPort,
1571 Packet: packetPayload,
1572 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301573 return olterrors.NewErrCommunication("packet-send-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001574 "source": "adapter",
1575 "destination": "core",
1576 "device-id": dh.device.Id,
1577 "logical-port": logicalPort,
Girish Kumarf26e4882020-03-05 06:49:10 +00001578 "packet": hex.EncodeToString(packetPayload)}, err)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001579 }
Matteo Scandolo92186242020-06-12 10:54:18 -07001580 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001581 logger.Debugw(ctx, "sent-packet-in-to-core-successfully", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001582 "packet": hex.EncodeToString(packetPayload),
1583 "device-id": dh.device.Id,
1584 })
1585 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001586 return nil
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001587}
1588
Rohan Agrawalda5e0b22020-05-20 11:10:26 +00001589// UpdatePmConfig updates the pm metrics.
Neha Sharma96b7bf22020-06-15 10:37:32 +00001590func (dh *DeviceHandler) UpdatePmConfig(ctx context.Context, pmConfigs *voltha.PmConfigs) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001591 logger.Infow(ctx, "update-pm-configs", log.Fields{"device-id": dh.device.Id, "pm-configs": pmConfigs})
Rohan Agrawalda5e0b22020-05-20 11:10:26 +00001592
1593 if pmConfigs.DefaultFreq != dh.metrics.ToPmConfigs().DefaultFreq {
1594 dh.metrics.UpdateFrequency(pmConfigs.DefaultFreq)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001595 logger.Debugf(ctx, "frequency-updated")
Rohan Agrawalda5e0b22020-05-20 11:10:26 +00001596 }
1597
Kent Hagermane6ff1012020-07-14 15:07:53 -04001598 if !pmConfigs.Grouped {
Rohan Agrawalda5e0b22020-05-20 11:10:26 +00001599 metrics := dh.metrics.GetSubscriberMetrics()
1600 for _, m := range pmConfigs.Metrics {
1601 metrics[m.Name].Enabled = m.Enabled
1602
1603 }
1604 }
1605}
1606
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001607//UpdateFlowsIncrementally updates the device flow
npujarec5762e2020-01-01 14:08:48 +05301608func (dh *DeviceHandler) UpdateFlowsIncrementally(ctx context.Context, device *voltha.Device, flows *of.FlowChanges, groups *of.FlowGroupChanges, flowMetadata *voltha.FlowMetadata) error {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001609 logger.Debugw(ctx, "received-incremental-flowupdate-in-device-handler", log.Fields{"device-id": device.Id, "flows": flows, "groups": groups, "flowMetadata": flowMetadata})
Andrea Campanellac63bba92020-03-10 17:01:04 +01001610
Girish Gowdra491a9c62021-01-06 16:43:07 -08001611 var err error
Andrea Campanellac63bba92020-03-10 17:01:04 +01001612 var errorsList []error
1613
Girish Gowdru0c588b22019-04-23 23:24:56 -04001614 if flows != nil {
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -04001615 for _, flow := range flows.ToRemove.Items {
Girish Gowdrafb3d6102020-10-16 16:32:36 -07001616 ponIf := dh.getPonIfFromFlow(flow)
Girish Gowdracefae192020-03-19 18:14:10 -07001617
Neha Sharma96b7bf22020-06-15 10:37:32 +00001618 logger.Debugw(ctx, "removing-flow",
Shrey Baid807a2a02020-04-09 12:52:45 +05301619 log.Fields{"device-id": device.Id,
Girish Gowdra9602eb42020-09-09 15:50:39 -07001620 "ponIf": ponIf,
Shrey Baid807a2a02020-04-09 12:52:45 +05301621 "flowToRemove": flow})
Girish Gowdra491a9c62021-01-06 16:43:07 -08001622 if flow_utils.HasGroup(flow) {
1623 err = dh.RouteMcastFlowOrGroupMsgToChannel(ctx, flow, nil, McastFlowOrGroupRemove)
1624 } else {
1625 err = dh.flowMgr[ponIf].RouteFlowToOnuChannel(ctx, flow, false, nil)
1626 }
Girish Gowdracefae192020-03-19 18:14:10 -07001627 if err != nil {
1628 errorsList = append(errorsList, err)
1629 }
Manjunath Vanarajulu28c3e822019-05-16 11:14:28 -04001630 }
Girish Gowdra3d633032019-12-10 16:37:05 +05301631
1632 for _, flow := range flows.ToAdd.Items {
Girish Gowdrafb3d6102020-10-16 16:32:36 -07001633 ponIf := dh.getPonIfFromFlow(flow)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001634 logger.Debugw(ctx, "adding-flow",
Shrey Baid807a2a02020-04-09 12:52:45 +05301635 log.Fields{"device-id": device.Id,
Girish Gowdra9602eb42020-09-09 15:50:39 -07001636 "ponIf": ponIf,
Shrey Baid807a2a02020-04-09 12:52:45 +05301637 "flowToAdd": flow})
Girish Gowdra491a9c62021-01-06 16:43:07 -08001638 if flow_utils.HasGroup(flow) {
1639 err = dh.RouteMcastFlowOrGroupMsgToChannel(ctx, flow, nil, McastFlowOrGroupAdd)
1640 } else {
1641 err = dh.flowMgr[ponIf].RouteFlowToOnuChannel(ctx, flow, true, flowMetadata)
1642 }
Andrea Campanellac63bba92020-03-10 17:01:04 +01001643 if err != nil {
1644 errorsList = append(errorsList, err)
1645 }
Girish Gowdra3d633032019-12-10 16:37:05 +05301646 }
Girish Gowdru0c588b22019-04-23 23:24:56 -04001647 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001648
Girish Gowdracefae192020-03-19 18:14:10 -07001649 // Whether we need to synchronize multicast group adds and modifies like flow add and delete needs to be investigated
Esin Karamanccb714b2019-11-29 15:02:06 +00001650 if groups != nil {
1651 for _, group := range groups.ToAdd.Items {
Girish Gowdra491a9c62021-01-06 16:43:07 -08001652 // err = dh.groupMgr.AddGroup(ctx, group)
1653 err = dh.RouteMcastFlowOrGroupMsgToChannel(ctx, nil, group, McastFlowOrGroupAdd)
Andrea Campanellac63bba92020-03-10 17:01:04 +01001654 if err != nil {
1655 errorsList = append(errorsList, err)
1656 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001657 }
1658 for _, group := range groups.ToUpdate.Items {
Girish Gowdra491a9c62021-01-06 16:43:07 -08001659 // err = dh.groupMgr.ModifyGroup(ctx, group)
1660 err = dh.RouteMcastFlowOrGroupMsgToChannel(ctx, nil, group, McastFlowOrGroupModify)
Andrea Campanellac63bba92020-03-10 17:01:04 +01001661 if err != nil {
1662 errorsList = append(errorsList, err)
1663 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001664 }
Esin Karamand519bbf2020-07-01 11:16:03 +00001665 for _, group := range groups.ToRemove.Items {
Girish Gowdra491a9c62021-01-06 16:43:07 -08001666 // err = dh.groupMgr.DeleteGroup(ctx, group)
1667 err = dh.RouteMcastFlowOrGroupMsgToChannel(ctx, nil, group, McastFlowOrGroupRemove)
Esin Karamand519bbf2020-07-01 11:16:03 +00001668 if err != nil {
1669 errorsList = append(errorsList, err)
1670 }
Esin Karamanccb714b2019-11-29 15:02:06 +00001671 }
1672 }
Andrea Campanellac63bba92020-03-10 17:01:04 +01001673 if len(errorsList) > 0 {
1674 return fmt.Errorf("errors-installing-flows-groups, errors:%v", errorsList)
1675 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001676 logger.Debugw(ctx, "updated-flows-incrementally-successfully", log.Fields{"device-id": dh.device.Id})
Girish Gowdru0c588b22019-04-23 23:24:56 -04001677 return nil
manikkaraj kbf256be2019-03-25 00:13:48 +05301678}
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001679
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001680//DisableDevice disables the given device
1681//It marks the following for the given device:
1682//Device-Handler Admin-State : down
1683//Device Port-State: UNKNOWN
1684//Device Oper-State: UNKNOWN
Neha Sharma96b7bf22020-06-15 10:37:32 +00001685func (dh *DeviceHandler) DisableDevice(ctx context.Context, device *voltha.Device) error {
Chaitrashree G S44124192019-08-07 20:21:36 -04001686 /* On device disable ,admin state update has to be done prior sending request to agent since
1687 the indication thread may processes invalid indications of ONU and OLT*/
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001688 if dh.Client != nil {
Neha Sharma8f4e4322020-08-06 10:51:53 +00001689 if _, err := dh.Client.DisableOlt(log.WithSpanFromContext(context.Background(), ctx), new(oop.Empty)); err != nil {
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001690 if e, ok := status.FromError(err); ok && e.Code() == codes.Internal {
Girish Kumarf26e4882020-03-05 06:49:10 +00001691 return olterrors.NewErrAdapter("olt-disable-failed", log.Fields{"device-id": device.Id}, err)
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001692 }
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001693 }
Chaitrashree G S44124192019-08-07 20:21:36 -04001694 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001695 logger.Debugw(ctx, "olt-disabled", log.Fields{"device-id": device.Id})
Chaitrashree G S44124192019-08-07 20:21:36 -04001696 /* Discovered ONUs entries need to be cleared , since on device disable the child devices goes to
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001697 UNREACHABLE state which needs to be configured again*/
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301698
1699 dh.discOnus = sync.Map{}
1700 dh.onus = sync.Map{}
1701
Thomas Lee S85f37312020-04-03 17:06:12 +05301702 //stopping the stats collector
1703 dh.stopCollector <- true
1704
Neha Sharma96b7bf22020-06-15 10:37:32 +00001705 go dh.notifyChildDevices(ctx, "unreachable")
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001706 cloned := proto.Clone(device).(*voltha.Device)
Thomas Lee S985938d2020-05-04 11:40:41 +05301707 //Update device Admin state
1708 dh.device = cloned
khenaidoo106c61a2021-08-11 18:05:46 -04001709
kdarapu1afeceb2020-02-12 01:38:09 -05001710 // Update the all pon ports state on that device to disable and NNI remains active as NNI remains active in openolt agent.
khenaidoo106c61a2021-08-11 18:05:46 -04001711 if err := dh.updatePortsStateInCore(ctx, &ic.PortStateFilter{
1712 DeviceId: cloned.Id,
1713 PortTypeFilter: ^uint32(1 << voltha.Port_PON_OLT),
1714 OperStatus: voltha.OperStatus_UNKNOWN,
1715 }); err != nil {
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001716 return olterrors.NewErrAdapter("ports-state-update-failed", log.Fields{"device-id": device.Id}, err)
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001717 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001718 logger.Debugw(ctx, "disable-device-end", log.Fields{"device-id": device.Id})
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001719 return nil
1720}
1721
Neha Sharma96b7bf22020-06-15 10:37:32 +00001722func (dh *DeviceHandler) notifyChildDevices(ctx context.Context, state string) {
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001723 // Update onu state as unreachable in onu adapter
1724 onuInd := oop.OnuIndication{}
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05301725 onuInd.OperState = state
khenaidoo106c61a2021-08-11 18:05:46 -04001726
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001727 //get the child device for the parent device
khenaidoo106c61a2021-08-11 18:05:46 -04001728 onuDevices, err := dh.getChildDevicesFromCore(ctx, dh.device.Id)
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001729 if err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001730 logger.Errorw(ctx, "failed-to-get-child-devices-information", log.Fields{"device-id": dh.device.Id, "err": err})
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001731 }
1732 if onuDevices != nil {
1733 for _, onuDevice := range onuDevices.Items {
khenaidoo106c61a2021-08-11 18:05:46 -04001734 err := dh.sendOnuIndicationToChildAdapter(ctx, onuDevice.AdapterEndpoint, &ic.OnuIndicationMessage{
1735 DeviceId: onuDevice.Id,
1736 OnuIndication: &onuInd,
1737 })
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001738 if err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001739 logger.Errorw(ctx, "failed-to-send-inter-adapter-message", log.Fields{"OnuInd": onuInd,
khenaidoo106c61a2021-08-11 18:05:46 -04001740 "From Adapter": dh.openOLT.config.AdapterEndpoint, "DeviceType": onuDevice.Type, "device-id": onuDevice.Id})
Chaitrashree G S3b4c0352019-09-09 20:59:29 -04001741 }
1742
1743 }
1744 }
1745
1746}
1747
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001748//ReenableDevice re-enables the olt device after disable
1749//It marks the following for the given device:
1750//Device-Handler Admin-State : up
1751//Device Port-State: ACTIVE
1752//Device Oper-State: ACTIVE
Neha Sharma96b7bf22020-06-15 10:37:32 +00001753func (dh *DeviceHandler) ReenableDevice(ctx context.Context, device *voltha.Device) error {
Neha Sharma8f4e4322020-08-06 10:51:53 +00001754 if _, err := dh.Client.ReenableOlt(log.WithSpanFromContext(context.Background(), ctx), new(oop.Empty)); err != nil {
Abhilash Laxmeshwar5b302e12020-01-09 15:15:14 +05301755 if e, ok := status.FromError(err); ok && e.Code() == codes.Internal {
Girish Kumarf26e4882020-03-05 06:49:10 +00001756 return olterrors.NewErrAdapter("olt-reenable-failed", log.Fields{"device-id": dh.device.Id}, err)
Abhilash Laxmeshwar5b302e12020-01-09 15:15:14 +05301757 }
1758 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001759 logger.Debug(ctx, "olt-reenabled")
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001760
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001761 // Update the all ports state on that device to enable
khenaidoo106c61a2021-08-11 18:05:46 -04001762 ports, err := dh.listDevicePortsFromCore(ctx, device.Id)
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001763 if err != nil {
divyadesai3af43e12020-08-18 07:10:54 +00001764 return olterrors.NewErrAdapter("list-ports-failed", log.Fields{"device-id": device.Id}, err)
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001765 }
khenaidoo106c61a2021-08-11 18:05:46 -04001766 if err := dh.disableAdminDownPorts(ctx, ports.Items); err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +00001767 return olterrors.NewErrAdapter("port-status-update-failed-after-olt-reenable", log.Fields{"device": device}, err)
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001768 }
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001769 //Update the device oper status as ACTIVE
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001770 device.OperStatus = voltha.OperStatus_ACTIVE
1771 dh.device = device
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001772
khenaidoo106c61a2021-08-11 18:05:46 -04001773 if err := dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
1774 DeviceId: device.Id,
1775 OperStatus: device.OperStatus,
1776 ConnStatus: device.ConnectStatus,
1777 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301778 return olterrors.NewErrAdapter("state-update-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001779 "device-id": device.Id,
Kent Hagermanf1db18b2020-07-08 13:38:15 -04001780 "connect-status": device.ConnectStatus,
1781 "oper-status": device.OperStatus}, err)
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001782 }
kesavand39e0aa32020-01-28 20:58:50 -05001783
Neha Sharma96b7bf22020-06-15 10:37:32 +00001784 logger.Debugw(ctx, "reenabledevice-end", log.Fields{"device-id": device.Id})
Girish Gowdru5ba46c92019-04-25 05:00:05 -04001785
1786 return nil
1787}
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001788
npujarec5762e2020-01-01 14:08:48 +05301789func (dh *DeviceHandler) clearUNIData(ctx context.Context, onu *rsrcMgr.OnuGemInfo) error {
Devmalya Paul495b94a2019-08-27 19:42:00 -04001790 var uniID uint32
1791 var err error
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301792 for _, port := range onu.UniPorts {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001793 uniID = plt.UniIDFromPortNum(port)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001794 logger.Debugw(ctx, "clearing-resource-data-for-uni-port", log.Fields{"port": port, "uni-id": uniID})
A R Karthick1f85b802019-10-11 05:06:05 +00001795 /* Delete tech-profile instance from the KV store */
Girish Gowdraa09aeab2020-09-14 16:30:52 -07001796 if err = dh.flowMgr[onu.IntfID].DeleteTechProfileInstances(ctx, onu.IntfID, onu.OnuID, uniID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001797 logger.Debugw(ctx, "failed-to-remove-tech-profile-instance-for-onu", log.Fields{"onu-id": onu.OnuID})
Devmalya Paul495b94a2019-08-27 19:42:00 -04001798 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001799 logger.Debugw(ctx, "deleted-tech-profile-instance-for-onu", log.Fields{"onu-id": onu.OnuID})
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001800 tpIDList := dh.resourceMgr[onu.IntfID].GetTechProfileIDForOnu(ctx, onu.IntfID, onu.OnuID, uniID)
Gamze Abakafee36392019-10-03 11:17:24 +00001801 for _, tpID := range tpIDList {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001802 if err = dh.resourceMgr[onu.IntfID].RemoveMeterInfoForOnu(ctx, "upstream", onu.IntfID, onu.OnuID, uniID, tpID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001803 logger.Debugw(ctx, "failed-to-remove-meter-id-for-onu-upstream", log.Fields{"onu-id": onu.OnuID})
Gamze Abakafee36392019-10-03 11:17:24 +00001804 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001805 logger.Debugw(ctx, "removed-meter-id-for-onu-upstream", log.Fields{"onu-id": onu.OnuID})
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001806 if err = dh.resourceMgr[onu.IntfID].RemoveMeterInfoForOnu(ctx, "downstream", onu.IntfID, onu.OnuID, uniID, tpID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001807 logger.Debugw(ctx, "failed-to-remove-meter-id-for-onu-downstream", log.Fields{"onu-id": onu.OnuID})
Gamze Abakafee36392019-10-03 11:17:24 +00001808 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001809 logger.Debugw(ctx, "removed-meter-id-for-onu-downstream", log.Fields{"onu-id": onu.OnuID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301810 }
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001811 dh.resourceMgr[onu.IntfID].FreePONResourcesForONU(ctx, onu.IntfID, onu.OnuID, uniID)
1812 if err = dh.resourceMgr[onu.IntfID].RemoveTechProfileIDsForOnu(ctx, onu.IntfID, onu.OnuID, uniID); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001813 logger.Debugw(ctx, "failed-to-remove-tech-profile-id-for-onu", log.Fields{"onu-id": onu.OnuID})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301814 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001815 logger.Debugw(ctx, "removed-tech-profile-id-for-onu", log.Fields{"onu-id": onu.OnuID})
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001816 if err = dh.resourceMgr[onu.IntfID].DeletePacketInGemPortForOnu(ctx, onu.IntfID, onu.OnuID, port); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001817 logger.Debugw(ctx, "failed-to-remove-gemport-pkt-in", log.Fields{"intfid": onu.IntfID, "onuid": onu.OnuID, "uniId": uniID})
A R Karthick1f85b802019-10-11 05:06:05 +00001818 }
Devmalya Paul495b94a2019-08-27 19:42:00 -04001819 }
1820 return nil
1821}
1822
Devmalya Paul495b94a2019-08-27 19:42:00 -04001823// DeleteDevice deletes the device instance from openolt handler array. Also clears allocated resource manager resources. Also reboots the OLT hardware!
npujarec5762e2020-01-01 14:08:48 +05301824func (dh *DeviceHandler) DeleteDevice(ctx context.Context, device *voltha.Device) error {
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07001825 logger.Debugw(ctx, "function-entry-delete-device", log.Fields{"device-id": dh.device.Id})
Devmalya Paul495b94a2019-08-27 19:42:00 -04001826 /* Clear the KV store data associated with the all the UNI ports
1827 This clears up flow data and also resource map data for various
1828 other pon resources like alloc_id and gemport_id
1829 */
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07001830 dh.cleanupDeviceResources(ctx)
1831 logger.Debugw(ctx, "removed-device-from-Resource-manager-KV-store", log.Fields{"device-id": dh.device.Id})
Chaitrashree G Sa4649252020-03-11 21:24:11 -04001832 // Stop the Stats collector
1833 dh.stopCollector <- true
1834 // stop the heartbeat check routine
1835 dh.stopHeartbeatCheck <- true
Himani Chawla49a5d562020-11-25 11:53:44 +05301836 dh.lockDevice.RLock()
1837 // Stop the read indication only if it the routine is active
1838 if dh.isReadIndicationRoutineActive {
1839 dh.stopIndications <- true
1840 }
1841 dh.lockDevice.RUnlock()
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07001842 dh.removeOnuIndicationChannels(ctx)
Girish Gowdra4736e5c2021-08-25 15:19:10 -07001843 go dh.StopAllMcastHandlerRoutines(ctx)
1844 for _, flMgr := range dh.flowMgr {
1845 go flMgr.StopAllFlowHandlerRoutines(ctx)
1846 }
Chaitrashree G Sa4649252020-03-11 21:24:11 -04001847 //Reset the state
1848 if dh.Client != nil {
1849 if _, err := dh.Client.Reboot(ctx, new(oop.Empty)); err != nil {
Thomas Lee S985938d2020-05-04 11:40:41 +05301850 return olterrors.NewErrAdapter("olt-reboot-failed", log.Fields{"device-id": dh.device.Id}, err).Log()
Chaitrashree G Sa4649252020-03-11 21:24:11 -04001851 }
1852 }
Girish Gowdrab1caa442020-10-19 12:24:39 -07001853 // There is no need to update the core about operation status and connection status of the OLT.
1854 // The OLT is getting deleted anyway and the core might have already cleared the OLT device from its DB.
1855 // So any attempt to update the operation status and connection status of the OLT will result in core throwing an error back,
1856 // because the device does not exist in DB.
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07001857
khenaidoo7eb2d672021-10-22 19:08:50 -04001858 // Stop the adapter grpc clients for that parent device
1859 dh.deleteAdapterClients(ctx)
Chaitrashree G Sa4649252020-03-11 21:24:11 -04001860 return nil
1861}
Kent Hagermane6ff1012020-07-14 15:07:53 -04001862func (dh *DeviceHandler) cleanupDeviceResources(ctx context.Context) {
Neha Sharma8f4e4322020-08-06 10:51:53 +00001863
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001864 if dh.resourceMgr != nil {
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301865 var ponPort uint32
Girish Gowdra9602eb42020-09-09 15:50:39 -07001866 for ponPort = 0; ponPort < dh.totalPonPorts; ponPort++ {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001867 var err error
Girish Gowdrabcf98af2021-07-01 08:24:42 -07001868 onuGemData := dh.flowMgr[ponPort].getOnuGemInfoList(ctx)
Andrey Pozolotin32b36562021-06-02 10:23:26 +03001869 for i, onu := range onuGemData {
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301870 onuID := make([]uint32, 1)
Neha Sharma96b7bf22020-06-15 10:37:32 +00001871 logger.Debugw(ctx, "onu-data", log.Fields{"onu": onu})
Andrey Pozolotin32b36562021-06-02 10:23:26 +03001872 if err = dh.clearUNIData(ctx, &onuGemData[i]); err != nil {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001873 logger.Errorw(ctx, "failed-to-clear-data-for-onu", log.Fields{"onu-device": onu})
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301874 }
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301875 // Clear flowids for gem cache.
1876 for _, gem := range onu.GemPorts {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001877 dh.resourceMgr[ponPort].DeleteFlowIDsForGem(ctx, ponPort, gem)
Abhilash Laxmeshwar6d1acb92020-01-17 15:43:03 +05301878 }
1879 onuID[0] = onu.OnuID
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07001880 dh.resourceMgr[ponPort].FreeonuID(ctx, ponPort, onuID)
1881 err = dh.resourceMgr[ponPort].DelOnuGemInfo(ctx, ponPort, onu.OnuID)
1882 if err != nil {
1883 logger.Errorw(ctx, "failed-to-update-onugem-info", log.Fields{"intfid": ponPort, "onugeminfo": onuGemData})
1884 }
Abhilash Laxmeshwarab0bd522019-10-21 15:05:15 +05301885 }
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07001886 if err := dh.resourceMgr[ponPort].Delete(ctx, ponPort); err != nil {
1887 logger.Debug(ctx, err)
1888 }
Devmalya Paul495b94a2019-08-27 19:42:00 -04001889 }
Serkant Uluderya89ff40c2019-10-17 16:02:25 -07001890 }
A R Karthick1f85b802019-10-11 05:06:05 +00001891
Devmalya Paul495b94a2019-08-27 19:42:00 -04001892 /*Delete ONU map for the device*/
Naga Manjunatha8dc9372019-10-31 23:01:18 +05301893 dh.onus.Range(func(key interface{}, value interface{}) bool {
1894 dh.onus.Delete(key)
1895 return true
1896 })
1897
Chaitrashree G Sa4649252020-03-11 21:24:11 -04001898 /*Delete discovered ONU map for the device*/
1899 dh.discOnus.Range(func(key interface{}, value interface{}) bool {
1900 dh.discOnus.Delete(key)
1901 return true
1902 })
Devmalya Paul495b94a2019-08-27 19:42:00 -04001903}
1904
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001905//RebootDevice reboots the given device
Neha Sharma96b7bf22020-06-15 10:37:32 +00001906func (dh *DeviceHandler) RebootDevice(ctx context.Context, device *voltha.Device) error {
Neha Sharma8f4e4322020-08-06 10:51:53 +00001907 if _, err := dh.Client.Reboot(log.WithSpanFromContext(context.Background(), ctx), new(oop.Empty)); err != nil {
Thomas Lee S985938d2020-05-04 11:40:41 +05301908 return olterrors.NewErrAdapter("olt-reboot-failed", log.Fields{"device-id": dh.device.Id}, err)
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -04001909 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001910 logger.Debugw(ctx, "rebooted-device-successfully", log.Fields{"device-id": device.Id})
Girish Gowdru0fe5f7e2019-05-28 05:12:27 -04001911 return nil
1912}
1913
David K. Bainbridge794735f2020-02-11 21:01:37 -08001914func (dh *DeviceHandler) handlePacketIndication(ctx context.Context, packetIn *oop.PacketIndication) error {
Matteo Scandolo92186242020-06-12 10:54:18 -07001915 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001916 logger.Debugw(ctx, "received-packet-in", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001917 "packet-indication": *packetIn,
1918 "device-id": dh.device.Id,
1919 "packet": hex.EncodeToString(packetIn.Pkt),
1920 })
1921 }
Girish Gowdra9602eb42020-09-09 15:50:39 -07001922 logicalPortNum, err := dh.flowMgr[packetIn.IntfId].GetLogicalPortFromPacketIn(ctx, packetIn)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001923 if err != nil {
Girish Kumarf26e4882020-03-05 06:49:10 +00001924 return olterrors.NewErrNotFound("logical-port", log.Fields{"packet": hex.EncodeToString(packetIn.Pkt)}, err)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001925 }
Matteo Scandolo92186242020-06-12 10:54:18 -07001926 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001927 logger.Debugw(ctx, "sending-packet-in-to-core", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001928 "logical-port-num": logicalPortNum,
1929 "device-id": dh.device.Id,
1930 "packet": hex.EncodeToString(packetIn.Pkt),
1931 })
1932 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001933
khenaidoo106c61a2021-08-11 18:05:46 -04001934 if err := dh.sendPacketToCore(ctx, &ic.PacketIn{
1935 DeviceId: dh.device.Id,
1936 Port: logicalPortNum,
1937 Packet: packetIn.Pkt,
1938 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05301939 return olterrors.NewErrCommunication("send-packet-in", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08001940 "destination": "core",
Thomas Lee S985938d2020-05-04 11:40:41 +05301941 "source": dh.device.Type,
Matteo Scandolod625b4c2020-04-02 16:16:01 -07001942 "device-id": dh.device.Id,
1943 "packet": hex.EncodeToString(packetIn.Pkt),
1944 }, err)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001945 }
Neha Sharma96b7bf22020-06-15 10:37:32 +00001946
Matteo Scandolo92186242020-06-12 10:54:18 -07001947 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001948 logger.Debugw(ctx, "success-sending-packet-in-to-core!", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001949 "packet": hex.EncodeToString(packetIn.Pkt),
1950 "device-id": dh.device.Id,
1951 })
1952 }
David K. Bainbridge794735f2020-02-11 21:01:37 -08001953 return nil
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001954}
1955
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07001956// PacketOut sends packet-out from VOLTHA to OLT on the egress port provided
khenaidoo106c61a2021-08-11 18:05:46 -04001957func (dh *DeviceHandler) PacketOut(ctx context.Context, egressPortNo uint32, packet *of.OfpPacketOut) error {
Matteo Scandolo92186242020-06-12 10:54:18 -07001958 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001959 logger.Debugw(ctx, "incoming-packet-out", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001960 "device-id": dh.device.Id,
1961 "egress-port-no": egressPortNo,
1962 "pkt-length": len(packet.Data),
1963 "packet": hex.EncodeToString(packet.Data),
1964 })
1965 }
Matt Jeanneret1359c732019-08-01 21:40:02 -04001966
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001967 egressPortType := plt.IntfIDToPortTypeName(uint32(egressPortNo))
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001968 if egressPortType == voltha.Port_ETHERNET_UNI {
Matt Jeanneret1359c732019-08-01 21:40:02 -04001969 outerEthType := (uint16(packet.Data[12]) << 8) | uint16(packet.Data[13])
1970 innerEthType := (uint16(packet.Data[16]) << 8) | uint16(packet.Data[17])
Girish Gowdra6e1534a2019-11-15 19:24:04 +05301971 if outerEthType == 0x8942 || outerEthType == 0x88cc {
1972 // Do not packet-out lldp packets on uni port.
1973 // ONOS has no clue about uni/nni ports, it just packets out on all
1974 // available ports on the Logical Switch. It should not be interested
1975 // in the UNI links.
Neha Sharma96b7bf22020-06-15 10:37:32 +00001976 logger.Debugw(ctx, "dropping-lldp-packet-out-on-uni", log.Fields{
Matteo Scandolod625b4c2020-04-02 16:16:01 -07001977 "device-id": dh.device.Id,
1978 })
Girish Gowdra6e1534a2019-11-15 19:24:04 +05301979 return nil
1980 }
Matt Jeanneret1359c732019-08-01 21:40:02 -04001981 if outerEthType == 0x88a8 || outerEthType == 0x8100 {
1982 if innerEthType == 0x8100 {
1983 // q-in-q 802.1ad or 802.1q double tagged packet.
1984 // slice out the outer tag.
1985 packet.Data = append(packet.Data[:12], packet.Data[16:]...)
Matteo Scandolo92186242020-06-12 10:54:18 -07001986 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00001987 logger.Debugw(ctx, "packet-now-single-tagged", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07001988 "packet-data": hex.EncodeToString(packet.Data),
1989 "device-id": dh.device.Id,
1990 })
1991 }
manikkaraj k9eb6cac2019-05-09 12:32:03 -04001992 }
1993 }
Mahir Gunyel85f61c12021-10-06 11:53:45 -07001994 intfID := plt.IntfIDFromUniPortNum(uint32(egressPortNo))
1995 onuID := plt.OnuIDFromPortNum(uint32(egressPortNo))
1996 uniID := plt.UniIDFromPortNum(uint32(egressPortNo))
Manikkaraj kb1d51442019-07-23 10:41:02 -04001997
Girish Gowdra9602eb42020-09-09 15:50:39 -07001998 gemPortID, err := dh.flowMgr[intfID].GetPacketOutGemPortID(ctx, intfID, onuID, uint32(egressPortNo), packet.Data)
Manikkaraj kb1d51442019-07-23 10:41:02 -04001999 if err != nil {
2000 // In this case the openolt agent will receive the gemPortID as 0.
2001 // The agent tries to retrieve the gemPortID in this case.
2002 // This may not always succeed at the agent and packetOut may fail.
Neha Sharma96b7bf22020-06-15 10:37:32 +00002003 logger.Errorw(ctx, "failed-to-retrieve-gemport-id-for-packet-out", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07002004 "intf-id": intfID,
2005 "onu-id": onuID,
2006 "uni-id": uniID,
Matteo Scandolod625b4c2020-04-02 16:16:01 -07002007 "packet": hex.EncodeToString(packet.Data),
Thomas Lee S985938d2020-05-04 11:40:41 +05302008 "device-id": dh.device.Id,
Matteo Scandolo6056e822019-11-13 14:05:29 -08002009 })
Manikkaraj kb1d51442019-07-23 10:41:02 -04002010 }
2011
2012 onuPkt := oop.OnuPacket{IntfId: intfID, OnuId: onuID, PortNo: uint32(egressPortNo), GemportId: gemPortID, Pkt: packet.Data}
Matteo Scandolo92186242020-06-12 10:54:18 -07002013 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00002014 logger.Debugw(ctx, "sending-packet-to-onu", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07002015 "egress-port-no": egressPortNo,
2016 "intf-id": intfID,
2017 "onu-id": onuID,
2018 "uni-id": uniID,
2019 "gem-port-id": gemPortID,
2020 "packet": hex.EncodeToString(packet.Data),
2021 "device-id": dh.device.Id,
2022 })
2023 }
Matt Jeanneret1359c732019-08-01 21:40:02 -04002024
npujarec5762e2020-01-01 14:08:48 +05302025 if _, err := dh.Client.OnuPacketOut(ctx, &onuPkt); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302026 return olterrors.NewErrCommunication("packet-out-send", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08002027 "source": "adapter",
2028 "destination": "onu",
2029 "egress-port-number": egressPortNo,
Matteo Scandolo92186242020-06-12 10:54:18 -07002030 "intf-id": intfID,
David K. Bainbridge794735f2020-02-11 21:01:37 -08002031 "oni-id": onuID,
2032 "uni-id": uniID,
2033 "gem-port-id": gemPortID,
Matteo Scandolod625b4c2020-04-02 16:16:01 -07002034 "packet": hex.EncodeToString(packet.Data),
2035 "device-id": dh.device.Id,
2036 }, err)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04002037 }
2038 } else if egressPortType == voltha.Port_ETHERNET_NNI {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002039 nniIntfID, err := plt.IntfIDFromNniPortNum(ctx, uint32(egressPortNo))
David K. Bainbridge794735f2020-02-11 21:01:37 -08002040 if err != nil {
Matteo Scandolod625b4c2020-04-02 16:16:01 -07002041 return olterrors.NewErrInvalidValue(log.Fields{
2042 "egress-nni-port": egressPortNo,
2043 "device-id": dh.device.Id,
2044 }, err)
David K. Bainbridge794735f2020-02-11 21:01:37 -08002045 }
2046 uplinkPkt := oop.UplinkPacket{IntfId: nniIntfID, Pkt: packet.Data}
Matt Jeanneret1359c732019-08-01 21:40:02 -04002047
Matteo Scandolo92186242020-06-12 10:54:18 -07002048 if logger.V(log.DebugLevel) {
Neha Sharma96b7bf22020-06-15 10:37:32 +00002049 logger.Debugw(ctx, "sending-packet-to-nni", log.Fields{
Matteo Scandolo92186242020-06-12 10:54:18 -07002050 "uplink-pkt": uplinkPkt,
2051 "packet": hex.EncodeToString(packet.Data),
2052 "device-id": dh.device.Id,
2053 })
2054 }
Matt Jeanneret1359c732019-08-01 21:40:02 -04002055
npujarec5762e2020-01-01 14:08:48 +05302056 if _, err := dh.Client.UplinkPacketOut(ctx, &uplinkPkt); err != nil {
Matteo Scandolod625b4c2020-04-02 16:16:01 -07002057 return olterrors.NewErrCommunication("packet-out-to-nni", log.Fields{
2058 "packet": hex.EncodeToString(packet.Data),
2059 "device-id": dh.device.Id,
2060 }, err)
manikkaraj k9eb6cac2019-05-09 12:32:03 -04002061 }
2062 } else {
Neha Sharma96b7bf22020-06-15 10:37:32 +00002063 logger.Warnw(ctx, "packet-out-to-this-interface-type-not-implemented", log.Fields{
Shrey Baid807a2a02020-04-09 12:52:45 +05302064 "egress-port-no": egressPortNo,
Matteo Scandolo6056e822019-11-13 14:05:29 -08002065 "egressPortType": egressPortType,
2066 "packet": hex.EncodeToString(packet.Data),
Thomas Lee S985938d2020-05-04 11:40:41 +05302067 "device-id": dh.device.Id,
Matteo Scandolo6056e822019-11-13 14:05:29 -08002068 })
manikkaraj k9eb6cac2019-05-09 12:32:03 -04002069 }
2070 return nil
2071}
Mahir Gunyela3f9add2019-06-06 15:13:19 -07002072
Girish Gowdru6a80bbd2019-07-02 07:36:09 -07002073func (dh *DeviceHandler) formOnuKey(intfID, onuID uint32) string {
2074 return "" + strconv.Itoa(int(intfID)) + "." + strconv.Itoa(int(onuID))
Mahir Gunyela3f9add2019-06-06 15:13:19 -07002075}
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302076
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002077func startHeartbeatCheck(ctx context.Context, dh *DeviceHandler) {
Neha Sharma8f4e4322020-08-06 10:51:53 +00002078
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302079 // start the heartbeat check towards the OLT.
2080 var timerCheck *time.Timer
2081
2082 for {
2083 heartbeatTimer := time.NewTimer(dh.openOLT.HeartbeatCheckInterval)
2084 select {
2085 case <-heartbeatTimer.C:
Neha Sharma8f4e4322020-08-06 10:51:53 +00002086 ctxWithTimeout, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.openOLT.GrpcTimeoutInterval)
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002087 if heartBeat, err := dh.Client.HeartbeatCheck(ctxWithTimeout, new(oop.Empty)); err != nil {
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002088 logger.Warnw(ctx, "heartbeat-failed", log.Fields{"device-id": dh.device.Id})
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302089 if timerCheck == nil {
2090 // start a after func, when expired will update the state to the core
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002091 timerCheck = time.AfterFunc(dh.openOLT.HeartbeatFailReportInterval, func() { dh.updateStateUnreachable(ctx) })
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302092 }
2093 } else {
2094 if timerCheck != nil {
2095 if timerCheck.Stop() {
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002096 logger.Debugw(ctx, "got-heartbeat-within-timeout", log.Fields{"device-id": dh.device.Id})
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302097 }
2098 timerCheck = nil
2099 }
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002100 logger.Debugw(ctx, "heartbeat",
Shrey Baid807a2a02020-04-09 12:52:45 +05302101 log.Fields{"signature": heartBeat,
Thomas Lee S985938d2020-05-04 11:40:41 +05302102 "device-id": dh.device.Id})
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302103 }
2104 cancel()
2105 case <-dh.stopHeartbeatCheck:
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002106 logger.Debugw(ctx, "stopping-heartbeat-check", log.Fields{"device-id": dh.device.Id})
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302107 return
2108 }
2109 }
2110}
2111
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002112func (dh *DeviceHandler) updateStateUnreachable(ctx context.Context) {
khenaidoo106c61a2021-08-11 18:05:46 -04002113 device, err := dh.getDeviceFromCore(ctx, dh.device.Id)
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002114 if err != nil || device == nil {
Girish Gowdrab1caa442020-10-19 12:24:39 -07002115 // One case where we have seen core returning an error for GetDevice call is after OLT device delete.
2116 // After OLT delete, the adapter asks for OLT to reboot. When OLT is rebooted, shortly we loose heartbeat.
2117 // The 'startHeartbeatCheck' then asks the device to be marked unreachable towards the core, but the core
2118 // has already deleted the device and returns error. In this particular scenario, it is Ok because any necessary
2119 // cleanup in the adapter was already done during DeleteDevice API handler routine.
Kent Hagermane6ff1012020-07-14 15:07:53 -04002120 _ = olterrors.NewErrNotFound("device", log.Fields{"device-id": dh.device.Id}, err).Log()
Girish Gowdrab1caa442020-10-19 12:24:39 -07002121 // Immediately return, otherwise accessing a null 'device' struct would cause panic
2122 return
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002123 }
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302124
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002125 logger.Debugw(ctx, "update-state-unreachable", log.Fields{"device-id": dh.device.Id, "connect-status": device.ConnectStatus,
2126 "admin-state": device.AdminState, "oper-status": device.OperStatus})
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002127 if device.ConnectStatus == voltha.ConnectStatus_REACHABLE {
khenaidoo106c61a2021-08-11 18:05:46 -04002128 if err = dh.updateDeviceStateInCore(ctx, &ic.DeviceStateFilter{
2129 DeviceId: dh.device.Id,
2130 OperStatus: voltha.OperStatus_UNKNOWN,
2131 ConnStatus: voltha.ConnectStatus_UNREACHABLE,
2132 }); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -04002133 _ = olterrors.NewErrAdapter("device-state-update-failed", log.Fields{"device-id": dh.device.Id}, err).LogAt(log.ErrorLevel)
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002134 }
khenaidoo106c61a2021-08-11 18:05:46 -04002135
2136 if err = dh.updatePortsStateInCore(ctx, &ic.PortStateFilter{
2137 DeviceId: dh.device.Id,
2138 PortTypeFilter: 0,
2139 OperStatus: voltha.OperStatus_UNKNOWN,
2140 }); err != nil {
Kent Hagermane6ff1012020-07-14 15:07:53 -04002141 _ = olterrors.NewErrAdapter("port-update-failed", log.Fields{"device-id": dh.device.Id}, err).Log()
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002142 }
Gamze Abaka07868a52020-12-17 14:19:28 +00002143
2144 //raise olt communication failure event
Girish Gowdrac1b9d5e2021-04-22 12:47:44 -07002145 raisedTs := time.Now().Unix()
khenaidoo106c61a2021-08-11 18:05:46 -04002146 cloned := proto.Clone(device).(*voltha.Device)
2147 cloned.ConnectStatus = voltha.ConnectStatus_UNREACHABLE
2148 cloned.OperStatus = voltha.OperStatus_UNKNOWN
2149 dh.device = cloned // update local copy of the device
2150 go dh.eventMgr.oltCommunicationEvent(ctx, cloned, raisedTs)
Gamze Abaka07868a52020-12-17 14:19:28 +00002151
Girish Gowdrab8f1b5a2021-06-27 20:42:40 -07002152 dh.cleanupDeviceResources(ctx)
Matteo Scandolo861e06e2021-05-26 11:51:46 -07002153 // Stop the Stats collector
2154 dh.stopCollector <- true
2155 // stop the heartbeat check routine
2156 dh.stopHeartbeatCheck <- true
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002157
Girish Gowdra3ab6d212020-03-24 17:33:15 -07002158 dh.lockDevice.RLock()
2159 // Stop the read indication only if it the routine is active
2160 // The read indication would have already stopped due to failure on the gRPC stream following OLT going unreachable
2161 // Sending message on the 'stopIndication' channel again will cause the readIndication routine to immediately stop
2162 // on next execution of the readIndication routine.
2163 if dh.isReadIndicationRoutineActive {
2164 dh.stopIndications <- true
2165 }
2166 dh.lockDevice.RUnlock()
2167
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002168 go dh.StopAllMcastHandlerRoutines(ctx)
2169 for _, flMgr := range dh.flowMgr {
2170 go flMgr.StopAllFlowHandlerRoutines(ctx)
2171 }
2172
Gamze Abakac2c32a62021-03-11 11:44:18 +00002173 //reset adapter reconcile flag
2174 dh.adapterPreviouslyConnected = false
2175
Chaitrashree G Sa4649252020-03-11 21:24:11 -04002176 dh.transitionMap.Handle(ctx, DeviceInit)
2177
Abhilash Laxmeshwarf9942e92020-01-07 15:32:44 +05302178 }
2179}
kesavand39e0aa32020-01-28 20:58:50 -05002180
2181// EnablePort to enable Pon interface
Neha Sharma96b7bf22020-06-15 10:37:32 +00002182func (dh *DeviceHandler) EnablePort(ctx context.Context, port *voltha.Port) error {
2183 logger.Debugw(ctx, "enable-port", log.Fields{"Device": dh.device, "port": port})
2184 return dh.modifyPhyPort(ctx, port, true)
kesavand39e0aa32020-01-28 20:58:50 -05002185}
2186
2187// DisablePort to disable pon interface
Neha Sharma96b7bf22020-06-15 10:37:32 +00002188func (dh *DeviceHandler) DisablePort(ctx context.Context, port *voltha.Port) error {
2189 logger.Debugw(ctx, "disable-port", log.Fields{"Device": dh.device, "port": port})
2190 return dh.modifyPhyPort(ctx, port, false)
kesavand39e0aa32020-01-28 20:58:50 -05002191}
2192
kdarapu1afeceb2020-02-12 01:38:09 -05002193//modifyPhyPort is common function to enable and disable the port. parm :enablePort, true to enablePort and false to disablePort.
Neha Sharma96b7bf22020-06-15 10:37:32 +00002194func (dh *DeviceHandler) modifyPhyPort(ctx context.Context, port *voltha.Port, enablePort bool) error {
2195 logger.Infow(ctx, "modifyPhyPort", log.Fields{"port": port, "Enable": enablePort, "device-id": dh.device.Id})
kesavand39e0aa32020-01-28 20:58:50 -05002196 if port.GetType() == voltha.Port_ETHERNET_NNI {
2197 // Bug is opened for VOL-2505 to support NNI disable feature.
Neha Sharma96b7bf22020-06-15 10:37:32 +00002198 logger.Infow(ctx, "voltha-supports-single-nni-hence-disable-of-nni-not-allowed",
Shrey Baid807a2a02020-04-09 12:52:45 +05302199 log.Fields{"device": dh.device, "port": port})
Thomas Lee S94109f12020-03-03 16:39:29 +05302200 return olterrors.NewErrAdapter("illegal-port-request", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08002201 "port-type": port.GetType,
Girish Kumarf26e4882020-03-05 06:49:10 +00002202 "enable-state": enablePort}, nil)
kesavand39e0aa32020-01-28 20:58:50 -05002203 }
2204 // fetch interfaceid from PortNo
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002205 ponID := plt.PortNoToIntfID(port.GetPortNo(), voltha.Port_PON_OLT)
kesavand39e0aa32020-01-28 20:58:50 -05002206 ponIntf := &oop.Interface{IntfId: ponID}
2207 var operStatus voltha.OperStatus_Types
2208 if enablePort {
2209 operStatus = voltha.OperStatus_ACTIVE
npujarec5762e2020-01-01 14:08:48 +05302210 out, err := dh.Client.EnablePonIf(ctx, ponIntf)
kesavand39e0aa32020-01-28 20:58:50 -05002211
2212 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302213 return olterrors.NewErrAdapter("pon-port-enable-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08002214 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00002215 "port": port}, err)
kesavand39e0aa32020-01-28 20:58:50 -05002216 }
2217 // updating interface local cache for collecting stats
Chaitrashree G Sef088112020-02-03 21:39:27 -05002218 dh.activePorts.Store(ponID, true)
Neha Sharma96b7bf22020-06-15 10:37:32 +00002219 logger.Infow(ctx, "enabled-pon-port", log.Fields{"out": out, "device-id": dh.device, "Port": port})
kesavand39e0aa32020-01-28 20:58:50 -05002220 } else {
2221 operStatus = voltha.OperStatus_UNKNOWN
npujarec5762e2020-01-01 14:08:48 +05302222 out, err := dh.Client.DisablePonIf(ctx, ponIntf)
kesavand39e0aa32020-01-28 20:58:50 -05002223 if err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302224 return olterrors.NewErrAdapter("pon-port-disable-failed", log.Fields{
David K. Bainbridge794735f2020-02-11 21:01:37 -08002225 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00002226 "port": port}, err)
kesavand39e0aa32020-01-28 20:58:50 -05002227 }
2228 // updating interface local cache for collecting stats
Chaitrashree G Sef088112020-02-03 21:39:27 -05002229 dh.activePorts.Store(ponID, false)
Neha Sharma96b7bf22020-06-15 10:37:32 +00002230 logger.Infow(ctx, "disabled-pon-port", log.Fields{"out": out, "device-id": dh.device, "Port": port})
kesavand39e0aa32020-01-28 20:58:50 -05002231 }
khenaidoo106c61a2021-08-11 18:05:46 -04002232 if err := dh.updatePortStateInCore(ctx, &ic.PortState{
2233 DeviceId: dh.device.Id,
2234 PortType: voltha.Port_PON_OLT,
2235 PortNo: port.PortNo,
2236 OperStatus: operStatus,
2237 }); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302238 return olterrors.NewErrAdapter("port-state-update-failed", log.Fields{
Thomas Lee S985938d2020-05-04 11:40:41 +05302239 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00002240 "port": port.PortNo}, err)
kesavand39e0aa32020-01-28 20:58:50 -05002241 }
2242 return nil
2243}
2244
kdarapu1afeceb2020-02-12 01:38:09 -05002245//disableAdminDownPorts disables the ports, if the corresponding port Adminstate is disabled on reboot and Renable device.
Kent Hagermanf1db18b2020-07-08 13:38:15 -04002246func (dh *DeviceHandler) disableAdminDownPorts(ctx context.Context, ports []*voltha.Port) error {
kesavand39e0aa32020-01-28 20:58:50 -05002247 // Disable the port and update the oper_port_status to core
2248 // if the Admin state of the port is disabled on reboot and re-enable device.
Kent Hagermanf1db18b2020-07-08 13:38:15 -04002249 for _, port := range ports {
kesavand39e0aa32020-01-28 20:58:50 -05002250 if port.AdminState == common.AdminState_DISABLED {
Neha Sharma96b7bf22020-06-15 10:37:32 +00002251 if err := dh.DisablePort(ctx, port); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302252 return olterrors.NewErrAdapter("port-disable-failed", log.Fields{
Thomas Lee S985938d2020-05-04 11:40:41 +05302253 "device-id": dh.device.Id,
Girish Kumarf26e4882020-03-05 06:49:10 +00002254 "port": port}, err)
kesavand39e0aa32020-01-28 20:58:50 -05002255 }
2256 }
2257 }
2258 return nil
2259}
2260
2261//populateActivePorts to populate activePorts map
Kent Hagermanf1db18b2020-07-08 13:38:15 -04002262func (dh *DeviceHandler) populateActivePorts(ctx context.Context, ports []*voltha.Port) {
2263 logger.Infow(ctx, "populateActivePorts", log.Fields{"device-id": dh.device.Id})
2264 for _, port := range ports {
kesavand39e0aa32020-01-28 20:58:50 -05002265 if port.Type == voltha.Port_ETHERNET_NNI {
2266 if port.OperStatus == voltha.OperStatus_ACTIVE {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002267 dh.activePorts.Store(plt.PortNoToIntfID(port.PortNo, voltha.Port_ETHERNET_NNI), true)
kesavand39e0aa32020-01-28 20:58:50 -05002268 } else {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002269 dh.activePorts.Store(plt.PortNoToIntfID(port.PortNo, voltha.Port_ETHERNET_NNI), false)
kesavand39e0aa32020-01-28 20:58:50 -05002270 }
2271 }
2272 if port.Type == voltha.Port_PON_OLT {
2273 if port.OperStatus == voltha.OperStatus_ACTIVE {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002274 dh.activePorts.Store(plt.PortNoToIntfID(port.PortNo, voltha.Port_PON_OLT), true)
kesavand39e0aa32020-01-28 20:58:50 -05002275 } else {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002276 dh.activePorts.Store(plt.PortNoToIntfID(port.PortNo, voltha.Port_PON_OLT), false)
kesavand39e0aa32020-01-28 20:58:50 -05002277 }
2278 }
2279 }
2280}
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002281
2282// ChildDeviceLost deletes ONU and clears pon resources related to it.
Girish Gowdraa0870562021-03-11 14:30:14 -08002283func (dh *DeviceHandler) ChildDeviceLost(ctx context.Context, pPortNo uint32, onuID uint32, onuSn string) error {
divyadesai3af43e12020-08-18 07:10:54 +00002284 logger.Debugw(ctx, "child-device-lost", log.Fields{"parent-device-id": dh.device.Id})
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002285 intfID := plt.PortNoToIntfID(pPortNo, voltha.Port_PON_OLT)
Girish Gowdra89ae6d82020-05-28 23:40:53 -07002286 onuKey := dh.formOnuKey(intfID, onuID)
Girish Gowdraa0870562021-03-11 14:30:14 -08002287
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002288 var sn *oop.SerialNumber
2289 var err error
Girish Gowdraa0870562021-03-11 14:30:14 -08002290 if sn, err = dh.deStringifySerialNumber(onuSn); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302291 return olterrors.NewErrAdapter("failed-to-destringify-serial-number",
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002292 log.Fields{
Thomas Lee S985938d2020-05-04 11:40:41 +05302293 "devicer-id": dh.device.Id,
Girish Gowdraa0870562021-03-11 14:30:14 -08002294 "serial-number": onuSn}, err).Log()
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002295 }
Girish Gowdra89ae6d82020-05-28 23:40:53 -07002296
Girish Gowdra89ae6d82020-05-28 23:40:53 -07002297 onu := &oop.Onu{IntfId: intfID, OnuId: onuID, SerialNumber: sn}
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07002298 //clear PON resources associated with ONU
2299 onuGem, err := dh.resourceMgr[intfID].GetOnuGemInfo(ctx, intfID, onuID)
2300 if err != nil || onuGem == nil || onuGem.OnuID != onuID {
2301 logger.Warnw(ctx, "failed-to-get-onu-info-for-pon-port", log.Fields{
2302 "device-id": dh.device.Id,
2303 "intf-id": intfID,
2304 "onuID": onuID,
2305 "err": err})
2306 } else {
2307 logger.Debugw(ctx, "onu-data", log.Fields{"onu": onu})
2308 if err := dh.clearUNIData(ctx, onuGem); err != nil {
2309 logger.Warnw(ctx, "failed-to-clear-uni-data-for-onu", log.Fields{
2310 "device-id": dh.device.Id,
2311 "onu-device": onu,
2312 "err": err})
2313 }
2314 // Clear flowids for gem cache.
2315 for _, gem := range onuGem.GemPorts {
2316 dh.resourceMgr[intfID].DeleteFlowIDsForGem(ctx, intfID, gem)
2317 }
Girish Gowdra197acc12021-08-16 10:59:45 -07002318 if err := dh.flowMgr[intfID].RemoveOnuInfoFromFlowMgrCacheAndKvStore(ctx, intfID, onuID); err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07002319 logger.Warnw(ctx, "persistence-update-onu-gem-info-failed", log.Fields{
2320 "intf-id": intfID,
2321 "onu-device": onu,
2322 "onu-gem": onuGem,
2323 "err": err})
2324 //Not returning error on cleanup.
2325 }
2326 logger.Debugw(ctx, "removed-onu-gem-info", log.Fields{"intf": intfID, "onu-device": onu, "onugem": onuGem})
2327 dh.resourceMgr[intfID].FreeonuID(ctx, intfID, []uint32{onuGem.OnuID})
2328 }
2329 dh.onus.Delete(onuKey)
2330 dh.discOnus.Delete(onuSn)
2331
2332 // Now clear the ONU on the OLT
Neha Sharma8f4e4322020-08-06 10:51:53 +00002333 if _, err := dh.Client.DeleteOnu(log.WithSpanFromContext(context.Background(), ctx), onu); err != nil {
Thomas Lee S94109f12020-03-03 16:39:29 +05302334 return olterrors.NewErrAdapter("failed-to-delete-onu", log.Fields{
Thomas Lee S985938d2020-05-04 11:40:41 +05302335 "device-id": dh.device.Id,
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002336 "onu-id": onuID}, err).Log()
2337 }
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07002338
Chaitrashree G S1a55b882020-02-04 17:35:35 -05002339 return nil
2340}
Girish Gowdracefae192020-03-19 18:14:10 -07002341
2342func getInPortFromFlow(flow *of.OfpFlowStats) uint32 {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002343 for _, field := range flow_utils.GetOfbFields(flow) {
2344 if field.Type == flow_utils.IN_PORT {
Girish Gowdracefae192020-03-19 18:14:10 -07002345 return field.GetPort()
2346 }
2347 }
2348 return InvalidPort
2349}
2350
2351func getOutPortFromFlow(flow *of.OfpFlowStats) uint32 {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002352 for _, action := range flow_utils.GetActions(flow) {
2353 if action.Type == flow_utils.OUTPUT {
Girish Gowdracefae192020-03-19 18:14:10 -07002354 if out := action.GetOutput(); out != nil {
2355 return out.GetPort()
2356 }
2357 }
2358 }
2359 return InvalidPort
2360}
2361
Girish Gowdracefae192020-03-19 18:14:10 -07002362func getPorts(flow *of.OfpFlowStats) (uint32, uint32) {
2363 inPort := getInPortFromFlow(flow)
2364 outPort := getOutPortFromFlow(flow)
2365
2366 if inPort == InvalidPort || outPort == InvalidPort {
2367 return inPort, outPort
2368 }
2369
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002370 if isControllerFlow := plt.IsControllerBoundFlow(outPort); isControllerFlow {
Girish Gowdracefae192020-03-19 18:14:10 -07002371 /* Get UNI port/ IN Port from tunnel ID field for upstream controller bound flows */
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002372 if portType := plt.IntfIDToPortTypeName(inPort); portType == voltha.Port_PON_OLT {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002373 if uniPort := flow_utils.GetChildPortFromTunnelId(flow); uniPort != 0 {
Girish Gowdracefae192020-03-19 18:14:10 -07002374 return uniPort, outPort
2375 }
2376 }
2377 } else {
2378 // Downstream flow from NNI to PON port , Use tunnel ID as new OUT port / UNI port
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002379 if portType := plt.IntfIDToPortTypeName(outPort); portType == voltha.Port_PON_OLT {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002380 if uniPort := flow_utils.GetChildPortFromTunnelId(flow); uniPort != 0 {
Girish Gowdracefae192020-03-19 18:14:10 -07002381 return inPort, uniPort
2382 }
2383 // Upstream flow from PON to NNI port , Use tunnel ID as new IN port / UNI port
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002384 } else if portType := plt.IntfIDToPortTypeName(inPort); portType == voltha.Port_PON_OLT {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002385 if uniPort := flow_utils.GetChildPortFromTunnelId(flow); uniPort != 0 {
Girish Gowdracefae192020-03-19 18:14:10 -07002386 return uniPort, outPort
2387 }
2388 }
2389 }
2390
2391 return InvalidPort, InvalidPort
2392}
Matt Jeanneretceea2e02020-03-27 14:19:57 -04002393
2394func extractOmciTransactionID(omciPkt []byte) uint16 {
2395 if len(omciPkt) > 3 {
2396 d := omciPkt[0:2]
2397 transid := binary.BigEndian.Uint16(d)
2398 return transid
2399 }
2400 return 0
2401}
Mahir Gunyel0f89fd22020-04-11 18:24:42 -07002402
2403// StoreOnuDevice stores the onu parameters to the local cache.
2404func (dh *DeviceHandler) StoreOnuDevice(onuDevice *OnuDevice) {
2405 onuKey := dh.formOnuKey(onuDevice.intfID, onuDevice.onuID)
2406 dh.onus.Store(onuKey, onuDevice)
2407}
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002408
Neha Sharma8f4e4322020-08-06 10:51:53 +00002409func (dh *DeviceHandler) getExtValue(ctx context.Context, device *voltha.Device, value voltha.ValueType_Type) (*voltha.ReturnValues, error) {
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002410 var err error
Andrea Campanella9931ad62020-04-28 15:11:06 +02002411 var sn *oop.SerialNumber
Gamze Abaka78a1d2a2020-04-27 10:17:27 +00002412 var ID uint32
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002413 resp := new(voltha.ReturnValues)
2414 valueparam := new(oop.ValueParam)
Neha Sharma8f4e4322020-08-06 10:51:53 +00002415 ctx = log.WithSpanFromContext(context.Background(), ctx)
Girish Kumara1ea2aa2020-08-19 18:14:22 +00002416 logger.Infow(ctx, "getExtValue", log.Fields{"onu-id": device.Id, "pon-intf": device.ParentPortNo})
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002417 if sn, err = dh.deStringifySerialNumber(device.SerialNumber); err != nil {
2418 return nil, err
2419 }
2420 ID = device.ProxyAddress.GetOnuId()
2421 Onu := oop.Onu{IntfId: device.ParentPortNo, OnuId: ID, SerialNumber: sn}
2422 valueparam.Onu = &Onu
2423 valueparam.Value = value
2424
2425 // This API is unsupported until agent patch is added
2426 resp.Unsupported = uint32(value)
2427 _ = ctx
2428
2429 // Uncomment this code once agent changes are complete and tests
2430 /*
2431 resp, err = dh.Client.GetValue(ctx, valueparam)
2432 if err != nil {
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07002433 logger.Errorw("error-while-getValue", log.Fields{"DeviceID": dh.device, "onu-id": onuid, "err": err})
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002434 return nil, err
2435 }
2436 */
2437
Girish Kumara1ea2aa2020-08-19 18:14:22 +00002438 logger.Infow(ctx, "get-ext-value", log.Fields{"resp": resp, "device-id": dh.device, "onu-id": device.Id, "pon-intf": device.ParentPortNo})
Dinesh Belwalkardb587af2020-02-27 15:37:16 -08002439 return resp, nil
2440}
Girish Gowdra9602eb42020-09-09 15:50:39 -07002441
Girish Gowdrafb3d6102020-10-16 16:32:36 -07002442func (dh *DeviceHandler) getPonIfFromFlow(flow *of.OfpFlowStats) uint32 {
Girish Gowdra9602eb42020-09-09 15:50:39 -07002443 // Default to PON0
2444 var intfID uint32
2445 inPort, outPort := getPorts(flow)
Girish Gowdra9602eb42020-09-09 15:50:39 -07002446 if inPort != InvalidPort && outPort != InvalidPort {
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002447 _, intfID, _, _ = plt.ExtractAccessFromFlow(inPort, outPort)
Girish Gowdra9602eb42020-09-09 15:50:39 -07002448 }
2449 return intfID
2450}
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002451
Mahir Gunyelb0046752021-02-26 13:51:05 -08002452func (dh *DeviceHandler) getOnuIndicationChannel(ctx context.Context, intfID uint32) chan onuIndicationMsg {
2453 dh.perPonOnuIndicationChannelLock.Lock()
2454 if ch, ok := dh.perPonOnuIndicationChannel[intfID]; ok {
2455 dh.perPonOnuIndicationChannelLock.Unlock()
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002456 return ch.indicationChannel
2457 }
2458 channels := onuIndicationChannels{
2459 //We create a buffered channel here to avoid calling function to be blocked
Mahir Gunyelb0046752021-02-26 13:51:05 -08002460 //in case of multiple indications from the ONUs,
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002461 //especially in the case where indications are buffered in OLT.
Mahir Gunyelb0046752021-02-26 13:51:05 -08002462 indicationChannel: make(chan onuIndicationMsg, 500),
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002463 stopChannel: make(chan struct{}),
2464 }
Mahir Gunyelb0046752021-02-26 13:51:05 -08002465 dh.perPonOnuIndicationChannel[intfID] = channels
2466 dh.perPonOnuIndicationChannelLock.Unlock()
2467 go dh.onuIndicationsRoutine(&channels)
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002468 return channels.indicationChannel
2469
2470}
2471
Mahir Gunyelb0046752021-02-26 13:51:05 -08002472func (dh *DeviceHandler) removeOnuIndicationChannels(ctx context.Context) {
2473 logger.Debug(ctx, "remove-onu-indication-channels", log.Fields{"device-id": dh.device.Id})
2474 dh.perPonOnuIndicationChannelLock.Lock()
2475 defer dh.perPonOnuIndicationChannelLock.Unlock()
2476 for _, v := range dh.perPonOnuIndicationChannel {
2477 close(v.stopChannel)
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002478 }
Mahir Gunyelb0046752021-02-26 13:51:05 -08002479 dh.perPonOnuIndicationChannel = make(map[uint32]onuIndicationChannels)
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002480}
2481
Mahir Gunyelb0046752021-02-26 13:51:05 -08002482func (dh *DeviceHandler) putOnuIndicationToChannel(ctx context.Context, indication *oop.Indication, intfID uint32) {
2483 ind := onuIndicationMsg{
2484 ctx: ctx,
2485 indication: indication,
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002486 }
Mahir Gunyelb0046752021-02-26 13:51:05 -08002487 logger.Debugw(ctx, "put-onu-indication-to-channel", log.Fields{"indication": indication, "intfID": intfID})
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002488 // Send the onuIndication on the ONU channel
Mahir Gunyelb0046752021-02-26 13:51:05 -08002489 dh.getOnuIndicationChannel(ctx, intfID) <- ind
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002490}
2491
Mahir Gunyelb0046752021-02-26 13:51:05 -08002492func (dh *DeviceHandler) onuIndicationsRoutine(onuChannels *onuIndicationChannels) {
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002493 for {
2494 select {
2495 // process one indication per onu, before proceeding to the next one
2496 case onuInd := <-onuChannels.indicationChannel:
2497 logger.Debugw(onuInd.ctx, "calling-indication", log.Fields{"device-id": dh.device.Id,
Mahir Gunyelb0046752021-02-26 13:51:05 -08002498 "ind": onuInd.indication})
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002499 switch onuInd.indication.Data.(type) {
2500 case *oop.Indication_OnuInd:
Mahir Gunyelb0046752021-02-26 13:51:05 -08002501 if err := dh.onuIndication(onuInd.ctx, onuInd.indication.GetOnuInd()); err != nil {
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002502 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{
2503 "type": "onu-indication",
Mahir Gunyelb0046752021-02-26 13:51:05 -08002504 "device-id": dh.device.Id}, err).Log()
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002505 }
2506 case *oop.Indication_OnuDiscInd:
Mahir Gunyelb0046752021-02-26 13:51:05 -08002507 if err := dh.onuDiscIndication(onuInd.ctx, onuInd.indication.GetOnuDiscInd()); err != nil {
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002508 _ = olterrors.NewErrAdapter("handle-indication-error", log.Fields{
2509 "type": "onu-discovery",
Mahir Gunyelb0046752021-02-26 13:51:05 -08002510 "device-id": dh.device.Id}, err).Log()
Mahir Gunyel2fb81472020-12-16 23:18:34 -08002511 }
2512 }
2513 case <-onuChannels.stopChannel:
2514 logger.Debugw(context.Background(), "stop-signal-received-for-onu-channel", log.Fields{"device-id": dh.device.Id})
2515 close(onuChannels.indicationChannel)
2516 return
2517 }
2518 }
2519}
Girish Gowdra491a9c62021-01-06 16:43:07 -08002520
2521// RouteMcastFlowOrGroupMsgToChannel routes incoming mcast flow or group to a channel to be handled by the a specific
2522// instance of mcastFlowOrGroupChannelHandlerRoutine meant to handle messages for that group.
2523func (dh *DeviceHandler) RouteMcastFlowOrGroupMsgToChannel(ctx context.Context, flow *voltha.OfpFlowStats, group *voltha.OfpGroupEntry, action string) error {
2524 // Step1 : Fill McastFlowOrGroupControlBlock
2525 // Step2 : Push the McastFlowOrGroupControlBlock to appropriate channel
2526 // Step3 : Wait on response channel for response
2527 // Step4 : Return error value
Girish Gowdra8a0bdcd2021-05-13 12:31:04 -07002528 startTime := time.Now()
Girish Gowdra491a9c62021-01-06 16:43:07 -08002529 logger.Debugw(ctx, "process-flow-or-group", log.Fields{"flow": flow, "group": group, "action": action})
2530 errChan := make(chan error)
2531 var groupID uint32
2532 mcastFlowOrGroupCb := McastFlowOrGroupControlBlock{
2533 ctx: ctx,
2534 flowOrGroupAction: action,
2535 flow: flow,
2536 group: group,
2537 errChan: &errChan,
2538 }
2539 if flow != nil {
2540 groupID = flow_utils.GetGroup(flow)
2541 } else if group != nil {
2542 groupID = group.Desc.GroupId
2543 } else {
2544 return errors.New("flow-and-group-both-nil")
2545 }
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002546 mcastRoutineIdx := groupID % MaxNumOfGroupHandlerChannels
2547 if dh.mcastHandlerRoutineActive[mcastRoutineIdx] {
2548 // Derive the appropriate go routine to handle the request by a simple module operation.
2549 // There are only MaxNumOfGroupHandlerChannels number of channels to handle the mcast flow or group
2550 dh.incomingMcastFlowOrGroup[groupID%MaxNumOfGroupHandlerChannels] <- mcastFlowOrGroupCb
2551 // Wait for handler to return error value
2552 err := <-errChan
2553 logger.Debugw(ctx, "process-flow-or-group--received-resp", log.Fields{"err": err, "totalTimeInSeconds": time.Since(startTime).Milliseconds()})
2554 return err
2555 }
2556 logger.Errorw(ctx, "mcast handler routine not active for onu", log.Fields{"mcastRoutineIdx": mcastRoutineIdx})
2557 return fmt.Errorf("mcast-handler-routine-not-active-for-index-%v", mcastRoutineIdx)
Girish Gowdra491a9c62021-01-06 16:43:07 -08002558}
2559
2560// mcastFlowOrGroupChannelHandlerRoutine routine to handle incoming mcast flow/group message
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002561func (dh *DeviceHandler) mcastFlowOrGroupChannelHandlerRoutine(routineIndex int, mcastFlowOrGroupChannel chan McastFlowOrGroupControlBlock, stopHandler chan bool) {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002562 for {
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002563 select {
Girish Gowdra491a9c62021-01-06 16:43:07 -08002564 // block on the channel to receive an incoming mcast flow/group
2565 // process the flow completely before proceeding to handle the next flow
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002566 case mcastFlowOrGroupCb := <-mcastFlowOrGroupChannel:
2567 if mcastFlowOrGroupCb.flow != nil {
2568 if mcastFlowOrGroupCb.flowOrGroupAction == McastFlowOrGroupAdd {
2569 logger.Debugw(mcastFlowOrGroupCb.ctx, "adding-mcast-flow",
2570 log.Fields{"device-id": dh.device.Id,
2571 "flowToAdd": mcastFlowOrGroupCb.flow})
2572 // The mcast flow is not unique to any particular PON port, so it is OK to default to PON0
2573 err := dh.flowMgr[0].AddFlow(mcastFlowOrGroupCb.ctx, mcastFlowOrGroupCb.flow, nil)
2574 // Pass the return value over the return channel
2575 *mcastFlowOrGroupCb.errChan <- err
2576 } else { // flow remove
2577 logger.Debugw(mcastFlowOrGroupCb.ctx, "removing-mcast-flow",
2578 log.Fields{"device-id": dh.device.Id,
2579 "flowToRemove": mcastFlowOrGroupCb.flow})
2580 // The mcast flow is not unique to any particular PON port, so it is OK to default to PON0
2581 err := dh.flowMgr[0].RemoveFlow(mcastFlowOrGroupCb.ctx, mcastFlowOrGroupCb.flow)
2582 // Pass the return value over the return channel
2583 *mcastFlowOrGroupCb.errChan <- err
2584 }
2585 } else { // mcast group
2586 if mcastFlowOrGroupCb.flowOrGroupAction == McastFlowOrGroupAdd {
2587 logger.Debugw(mcastFlowOrGroupCb.ctx, "adding-mcast-group",
2588 log.Fields{"device-id": dh.device.Id,
2589 "groupToAdd": mcastFlowOrGroupCb.group})
2590 err := dh.groupMgr.AddGroup(mcastFlowOrGroupCb.ctx, mcastFlowOrGroupCb.group)
2591 // Pass the return value over the return channel
2592 *mcastFlowOrGroupCb.errChan <- err
2593 } else if mcastFlowOrGroupCb.flowOrGroupAction == McastFlowOrGroupModify { // group modify
2594 logger.Debugw(mcastFlowOrGroupCb.ctx, "modifying-mcast-group",
2595 log.Fields{"device-id": dh.device.Id,
2596 "groupToModify": mcastFlowOrGroupCb.group})
2597 err := dh.groupMgr.ModifyGroup(mcastFlowOrGroupCb.ctx, mcastFlowOrGroupCb.group)
2598 // Pass the return value over the return channel
2599 *mcastFlowOrGroupCb.errChan <- err
2600 } else { // group remove
2601 logger.Debugw(mcastFlowOrGroupCb.ctx, "removing-mcast-group",
2602 log.Fields{"device-id": dh.device.Id,
2603 "groupToRemove": mcastFlowOrGroupCb.group})
2604 err := dh.groupMgr.DeleteGroup(mcastFlowOrGroupCb.ctx, mcastFlowOrGroupCb.group)
2605 // Pass the return value over the return channel
2606 *mcastFlowOrGroupCb.errChan <- err
2607 }
Girish Gowdra491a9c62021-01-06 16:43:07 -08002608 }
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002609 case <-stopHandler:
2610 dh.mcastHandlerRoutineActive[routineIndex] = false
2611 return
Girish Gowdra491a9c62021-01-06 16:43:07 -08002612 }
2613 }
2614}
kesavand62126212021-01-12 04:56:06 -05002615
Girish Gowdra4736e5c2021-08-25 15:19:10 -07002616// StopAllMcastHandlerRoutines stops all flow handler routines. Call this when device is being rebooted or deleted
2617func (dh *DeviceHandler) StopAllMcastHandlerRoutines(ctx context.Context) {
2618 for i, v := range dh.stopMcastHandlerRoutine {
2619 if dh.mcastHandlerRoutineActive[i] {
2620 v <- true
2621 }
2622 }
2623 logger.Debug(ctx, "stopped all mcast handler routines")
2624}
2625
kesavand62126212021-01-12 04:56:06 -05002626func (dh *DeviceHandler) getOltPortCounters(ctx context.Context, oltPortInfo *extension.GetOltPortCounters) *extension.SingleGetValueResponse {
2627
2628 singleValResp := extension.SingleGetValueResponse{
2629 Response: &extension.GetValueResponse{
2630 Response: &extension.GetValueResponse_PortCoutners{
2631 PortCoutners: &extension.GetOltPortCountersResponse{},
2632 },
2633 },
2634 }
2635
2636 errResp := func(status extension.GetValueResponse_Status,
2637 reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
2638 return &extension.SingleGetValueResponse{
2639 Response: &extension.GetValueResponse{
2640 Status: status,
2641 ErrReason: reason,
2642 },
2643 }
2644 }
2645
2646 if oltPortInfo.PortType != extension.GetOltPortCounters_Port_ETHERNET_NNI &&
2647 oltPortInfo.PortType != extension.GetOltPortCounters_Port_PON_OLT {
2648 //send error response
2649 logger.Debugw(ctx, "getOltPortCounters invalid portType", log.Fields{"oltPortInfo": oltPortInfo.PortType})
2650 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_PORT_TYPE)
2651 }
2652 statIndChn := make(chan bool, 1)
2653 dh.portStats.RegisterForStatIndication(ctx, portStatsType, statIndChn, oltPortInfo.PortNo, oltPortInfo.PortType)
2654 defer dh.portStats.DeRegisterFromStatIndication(ctx, portStatsType, statIndChn)
2655 //request openOlt agent to send the the port statistics indication
2656
2657 go func() {
2658 _, err := dh.Client.CollectStatistics(ctx, new(oop.Empty))
2659 if err != nil {
2660 logger.Errorw(ctx, "getOltPortCounters CollectStatistics failed ", log.Fields{"err": err})
2661 }
2662 }()
2663 select {
2664 case <-statIndChn:
2665 //indication received for ports stats
2666 logger.Debugw(ctx, "getOltPortCounters recvd statIndChn", log.Fields{"oltPortInfo": oltPortInfo})
2667 case <-time.After(oltPortInfoTimeout * time.Second):
2668 logger.Debugw(ctx, "getOltPortCounters timeout happened", log.Fields{"oltPortInfo": oltPortInfo})
2669 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_TIMEOUT)
2670 case <-ctx.Done():
2671 logger.Debugw(ctx, "getOltPortCounters ctx Done ", log.Fields{"oltPortInfo": oltPortInfo})
2672 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_TIMEOUT)
2673 }
2674 if oltPortInfo.PortType == extension.GetOltPortCounters_Port_ETHERNET_NNI {
2675 //get nni stats
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002676 intfID := plt.PortNoToIntfID(oltPortInfo.PortNo, voltha.Port_ETHERNET_NNI)
kesavand62126212021-01-12 04:56:06 -05002677 logger.Debugw(ctx, "getOltPortCounters intfID ", log.Fields{"intfID": intfID})
2678 cmnni := dh.portStats.collectNNIMetrics(intfID)
2679 if cmnni == nil {
2680 //TODO define the error reason
2681 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
2682 }
2683 dh.portStats.updateGetOltPortCountersResponse(ctx, &singleValResp, cmnni)
2684 return &singleValResp
2685
2686 } else if oltPortInfo.PortType == extension.GetOltPortCounters_Port_PON_OLT {
2687 // get pon stats
Mahir Gunyel85f61c12021-10-06 11:53:45 -07002688 intfID := plt.PortNoToIntfID(oltPortInfo.PortNo, voltha.Port_PON_OLT)
kesavand62126212021-01-12 04:56:06 -05002689 if val, ok := dh.activePorts.Load(intfID); ok && val == true {
2690 cmpon := dh.portStats.collectPONMetrics(intfID)
2691 if cmpon == nil {
2692 //TODO define the error reason
2693 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
2694 }
2695 dh.portStats.updateGetOltPortCountersResponse(ctx, &singleValResp, cmpon)
2696 return &singleValResp
2697 }
2698 }
2699 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
2700}
Himani Chawla2c8ae0f2021-05-18 23:27:00 +05302701
2702func (dh *DeviceHandler) getOnuPonCounters(ctx context.Context, onuPonInfo *extension.GetOnuCountersRequest) *extension.SingleGetValueResponse {
2703
2704 singleValResp := extension.SingleGetValueResponse{
2705 Response: &extension.GetValueResponse{
2706 Response: &extension.GetValueResponse_OnuPonCounters{
2707 OnuPonCounters: &extension.GetOnuCountersResponse{},
2708 },
2709 },
2710 }
2711
2712 errResp := func(status extension.GetValueResponse_Status,
2713 reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
2714 return &extension.SingleGetValueResponse{
2715 Response: &extension.GetValueResponse{
2716 Status: status,
2717 ErrReason: reason,
2718 },
2719 }
2720 }
2721 intfID := onuPonInfo.IntfId
2722 onuID := onuPonInfo.OnuId
2723 onuKey := dh.formOnuKey(intfID, onuID)
2724
2725 if _, ok := dh.onus.Load(onuKey); !ok {
2726 logger.Errorw(ctx, "get-onui-pon-counters-request-invalid-request-received", log.Fields{"intfID": intfID, "onuID": onuID})
2727 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_DEVICE)
2728 }
2729 logger.Debugw(ctx, "get-onui-pon-counters-request-received", log.Fields{"intfID": intfID, "onuID": onuID})
2730 cmnni := dh.portStats.collectOnDemandOnuStats(ctx, intfID, onuID)
2731 if cmnni == nil {
2732 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
2733 }
2734 dh.portStats.updateGetOnuPonCountersResponse(ctx, &singleValResp, cmnni)
2735 return &singleValResp
2736
2737}
Gamze Abaka85e9a142021-05-26 13:41:39 +00002738
2739func (dh *DeviceHandler) getRxPower(ctx context.Context, rxPowerRequest *extension.GetRxPowerRequest) *extension.SingleGetValueResponse {
2740
2741 Onu := oop.Onu{IntfId: rxPowerRequest.IntfId, OnuId: rxPowerRequest.OnuId}
2742 rxPower, err := dh.Client.GetPonRxPower(ctx, &Onu)
2743 if err != nil {
2744 logger.Errorw(ctx, "error-while-getting-rx-power", log.Fields{"Onu": Onu, "err": err})
2745 return generateSingleGetValueErrorResponse(err)
2746 }
2747 return &extension.SingleGetValueResponse{
2748 Response: &extension.GetValueResponse{
2749 Status: extension.GetValueResponse_OK,
2750 Response: &extension.GetValueResponse_RxPower{
2751 RxPower: &extension.GetRxPowerResponse{
2752 IntfId: rxPowerRequest.IntfId,
2753 OnuId: rxPowerRequest.OnuId,
2754 Status: rxPower.Status,
2755 FailReason: rxPower.FailReason.String(),
2756 RxPower: rxPower.RxPowerMeanDbm,
2757 },
2758 },
2759 },
2760 }
2761}
2762
2763func generateSingleGetValueErrorResponse(err error) *extension.SingleGetValueResponse {
2764 errResp := func(status extension.GetValueResponse_Status,
2765 reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
2766 return &extension.SingleGetValueResponse{
2767 Response: &extension.GetValueResponse{
2768 Status: status,
2769 ErrReason: reason,
2770 },
2771 }
2772 }
2773
2774 if err != nil {
2775 if e, ok := status.FromError(err); ok {
2776 switch e.Code() {
2777 case codes.Internal:
2778 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INTERNAL_ERROR)
2779 case codes.DeadlineExceeded:
2780 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_TIMEOUT)
2781 case codes.Unimplemented:
2782 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_UNSUPPORTED)
2783 case codes.NotFound:
2784 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_INVALID_DEVICE)
2785 }
2786 }
2787 }
2788
2789 return errResp(extension.GetValueResponse_ERROR, extension.GetValueResponse_REASON_UNDEFINED)
2790}
khenaidoo106c61a2021-08-11 18:05:46 -04002791
2792/*
2793Helper functions to communicate with Core
2794*/
2795
2796func (dh *DeviceHandler) getDeviceFromCore(ctx context.Context, deviceID string) (*voltha.Device, error) {
2797 cClient, err := dh.coreClient.GetCoreServiceClient()
2798 if err != nil || cClient == nil {
2799 return nil, err
2800 }
2801 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2802 defer cancel()
2803 return cClient.GetDevice(subCtx, &common.ID{Id: deviceID})
2804}
2805
2806func (dh *DeviceHandler) getChildDeviceFromCore(ctx context.Context, childDeviceFilter *ic.ChildDeviceFilter) (*voltha.Device, error) {
2807 cClient, err := dh.coreClient.GetCoreServiceClient()
2808 if err != nil || cClient == nil {
2809 return nil, err
2810 }
2811 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2812 defer cancel()
2813 return cClient.GetChildDevice(subCtx, childDeviceFilter)
2814}
2815
2816func (dh *DeviceHandler) updateDeviceStateInCore(ctx context.Context, deviceStateFilter *ic.DeviceStateFilter) error {
2817 cClient, err := dh.coreClient.GetCoreServiceClient()
2818 if err != nil || cClient == nil {
2819 return err
2820 }
2821 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2822 defer cancel()
2823 _, err = cClient.DeviceStateUpdate(subCtx, deviceStateFilter)
2824 return err
2825}
2826
2827func (dh *DeviceHandler) getChildDevicesFromCore(ctx context.Context, deviceID string) (*voltha.Devices, error) {
2828 cClient, err := dh.coreClient.GetCoreServiceClient()
2829 if err != nil || cClient == nil {
2830 return nil, err
2831 }
2832 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2833 defer cancel()
2834 return cClient.GetChildDevices(subCtx, &common.ID{Id: deviceID})
2835}
2836
2837func (dh *DeviceHandler) listDevicePortsFromCore(ctx context.Context, deviceID string) (*voltha.Ports, error) {
2838 cClient, err := dh.coreClient.GetCoreServiceClient()
2839 if err != nil || cClient == nil {
2840 return nil, err
2841 }
2842 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2843 defer cancel()
2844 return cClient.ListDevicePorts(subCtx, &common.ID{Id: deviceID})
2845}
2846
2847func (dh *DeviceHandler) updateDeviceInCore(ctx context.Context, device *voltha.Device) error {
2848 cClient, err := dh.coreClient.GetCoreServiceClient()
2849 if err != nil || cClient == nil {
2850 return err
2851 }
2852 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2853 defer cancel()
2854 _, err = cClient.DeviceUpdate(subCtx, device)
2855 return err
2856}
2857
2858func (dh *DeviceHandler) sendChildDeviceDetectedToCore(ctx context.Context, deviceDiscoveryInfo *ic.DeviceDiscovery) (*voltha.Device, error) {
2859 cClient, err := dh.coreClient.GetCoreServiceClient()
2860 if err != nil || cClient == nil {
2861 return nil, err
2862 }
2863 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2864 defer cancel()
2865 return cClient.ChildDeviceDetected(subCtx, deviceDiscoveryInfo)
2866}
2867
2868func (dh *DeviceHandler) sendPacketToCore(ctx context.Context, pkt *ic.PacketIn) error {
2869 cClient, err := dh.coreClient.GetCoreServiceClient()
2870 if err != nil || cClient == nil {
2871 return err
2872 }
2873 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2874 defer cancel()
2875 _, err = cClient.SendPacketIn(subCtx, pkt)
2876 return err
2877}
2878
2879func (dh *DeviceHandler) createPortInCore(ctx context.Context, port *voltha.Port) error {
2880 cClient, err := dh.coreClient.GetCoreServiceClient()
2881 if err != nil || cClient == nil {
2882 return err
2883 }
2884 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2885 defer cancel()
2886 _, err = cClient.PortCreated(subCtx, port)
2887 return err
2888}
2889
2890func (dh *DeviceHandler) updatePortsStateInCore(ctx context.Context, portFilter *ic.PortStateFilter) error {
2891 cClient, err := dh.coreClient.GetCoreServiceClient()
2892 if err != nil || cClient == nil {
2893 return err
2894 }
2895 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2896 defer cancel()
2897 _, err = cClient.PortsStateUpdate(subCtx, portFilter)
2898 return err
2899}
2900
2901func (dh *DeviceHandler) updatePortStateInCore(ctx context.Context, portState *ic.PortState) error {
2902 cClient, err := dh.coreClient.GetCoreServiceClient()
2903 if err != nil || cClient == nil {
2904 return err
2905 }
2906 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2907 defer cancel()
2908 _, err = cClient.PortStateUpdate(subCtx, portState)
2909 return err
2910}
2911
2912func (dh *DeviceHandler) getPortFromCore(ctx context.Context, portFilter *ic.PortFilter) (*voltha.Port, error) {
2913 cClient, err := dh.coreClient.GetCoreServiceClient()
2914 if err != nil || cClient == nil {
2915 return nil, err
2916 }
2917 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2918 defer cancel()
2919 return cClient.GetDevicePort(subCtx, portFilter)
2920}
2921
2922/*
2923Helper functions to communicate with child adapter
2924*/
2925
2926func (dh *DeviceHandler) sendOmciIndicationToChildAdapter(ctx context.Context, childEndpoint string, response *ic.OmciMessage) error {
2927 aClient, err := dh.getChildAdapterServiceClient(childEndpoint)
2928 if err != nil || aClient == nil {
2929 return err
2930 }
2931 logger.Debugw(ctx, "sending-omci-response", log.Fields{"response": response, "child-endpoint": childEndpoint})
2932 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2933 defer cancel()
2934 _, err = aClient.OmciIndication(subCtx, response)
2935 return err
2936}
2937
2938func (dh *DeviceHandler) sendOnuIndicationToChildAdapter(ctx context.Context, childEndpoint string, onuInd *ic.OnuIndicationMessage) error {
2939 aClient, err := dh.getChildAdapterServiceClient(childEndpoint)
2940 if err != nil || aClient == nil {
2941 return err
2942 }
2943 logger.Debugw(ctx, "sending-onu-indication", log.Fields{"onu-indication": onuInd, "child-endpoint": childEndpoint})
2944 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2945 defer cancel()
2946 _, err = aClient.OnuIndication(subCtx, onuInd)
2947 return err
2948}
2949
2950func (dh *DeviceHandler) sendDeleteTContToChildAdapter(ctx context.Context, childEndpoint string, tContInfo *ic.DeleteTcontMessage) error {
2951 aClient, err := dh.getChildAdapterServiceClient(childEndpoint)
2952 if err != nil || aClient == nil {
2953 return err
2954 }
2955 logger.Debugw(ctx, "sending-delete-tcont", log.Fields{"tcont": tContInfo, "child-endpoint": childEndpoint})
2956 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2957 defer cancel()
2958 _, err = aClient.DeleteTCont(subCtx, tContInfo)
2959 return err
2960}
2961
2962func (dh *DeviceHandler) sendDeleteGemPortToChildAdapter(ctx context.Context, childEndpoint string, gemPortInfo *ic.DeleteGemPortMessage) error {
2963 aClient, err := dh.getChildAdapterServiceClient(childEndpoint)
2964 if err != nil || aClient == nil {
2965 return err
2966 }
2967 logger.Debugw(ctx, "sending-delete-gem-port", log.Fields{"gem-port-info": gemPortInfo, "child-endpoint": childEndpoint})
2968 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2969 defer cancel()
2970 _, err = aClient.DeleteGemPort(subCtx, gemPortInfo)
2971 return err
2972}
2973
2974func (dh *DeviceHandler) sendDownloadTechProfileToChildAdapter(ctx context.Context, childEndpoint string, tpDownloadInfo *ic.TechProfileDownloadMessage) error {
2975 aClient, err := dh.getChildAdapterServiceClient(childEndpoint)
2976 if err != nil || aClient == nil {
2977 return err
2978 }
2979 logger.Debugw(ctx, "sending-tech-profile-download", log.Fields{"tp-download-info": tpDownloadInfo, "child-endpoint": childEndpoint})
2980 subCtx, cancel := context.WithTimeout(log.WithSpanFromContext(context.Background(), ctx), dh.cfg.RPCTimeout)
2981 defer cancel()
2982 _, err = aClient.DownloadTechProfile(subCtx, tpDownloadInfo)
2983 return err
2984}
2985
2986/*
2987Helper functions for remote communication
2988*/
2989
2990// TODO: Use a connection tracker such that the adapter connection is stopped when the last device that adapter
2991// supports is deleted
2992func (dh *DeviceHandler) setupChildInterAdapterClient(ctx context.Context, endpoint string) error {
2993 logger.Infow(ctx, "setting-child-adapter-connection", log.Fields{"child-endpoint": endpoint})
2994
2995 dh.lockChildAdapterClients.Lock()
2996 defer dh.lockChildAdapterClients.Unlock()
2997 if _, ok := dh.childAdapterClients[endpoint]; ok {
2998 // Already set
2999 return nil
3000 }
3001
3002 // Setup child's adapter grpc connection
3003 var err error
3004 if dh.childAdapterClients[endpoint], err = vgrpc.NewClient(endpoint,
3005 dh.onuAdapterRestarted,
3006 vgrpc.ActivityCheck(true)); err != nil {
3007 logger.Errorw(ctx, "grpc-client-not-created", log.Fields{"error": err, "endpoint": endpoint})
3008 return err
3009 }
3010 go dh.childAdapterClients[endpoint].Start(log.WithSpanFromContext(context.TODO(), ctx), setAndTestAdapterServiceHandler)
3011
3012 // Wait until we have a connection to the child adapter.
3013 // Unlimited retries or until context expires
3014 subCtx := log.WithSpanFromContext(context.TODO(), ctx)
3015 backoff := vgrpc.NewBackoff(dh.cfg.MinBackoffRetryDelay, dh.cfg.MaxBackoffRetryDelay, 0)
3016 for {
3017 client, err := dh.childAdapterClients[endpoint].GetOnuInterAdapterServiceClient()
3018 if err == nil && client != nil {
3019 logger.Infow(subCtx, "connected-to-child-adapter", log.Fields{"child-endpoint": endpoint})
3020 break
3021 }
3022 logger.Warnw(subCtx, "connection-to-child-adapter-not-ready", log.Fields{"error": err, "child-endpoint": endpoint})
3023 // Backoff
3024 if err = backoff.Backoff(subCtx); err != nil {
3025 logger.Errorw(subCtx, "received-error-on-backoff", log.Fields{"error": err, "child-endpoint": endpoint})
3026 break
3027 }
3028 }
3029 return nil
3030}
3031
3032// func (dh *DeviceHandler) getChildAdapterServiceClient(endpoint string) (adapter_services.OnuInterAdapterServiceClient, error) {
3033// dh.lockChildAdapterClients.RLock()
3034// defer dh.lockChildAdapterClients.RUnlock()
3035// if cgClient, ok := dh.childAdapterClients[endpoint]; ok {
3036// return cgClient.GetOnuInterAdapterServiceClient()
3037// }
3038// return nil, fmt.Errorf("no-client-for-endpoint-%s", endpoint)
3039// }
3040
3041func (dh *DeviceHandler) getChildAdapterServiceClient(endpoint string) (adapter_services.OnuInterAdapterServiceClient, error) {
3042
3043 // First check from cache
3044 dh.lockChildAdapterClients.RLock()
3045 if cgClient, ok := dh.childAdapterClients[endpoint]; ok {
3046 dh.lockChildAdapterClients.RUnlock()
3047 return cgClient.GetOnuInterAdapterServiceClient()
3048 }
3049 dh.lockChildAdapterClients.RUnlock()
3050
3051 // Set the child connection - can occur on restarts
3052 ctx, cancel := context.WithTimeout(context.Background(), dh.cfg.RPCTimeout)
3053 err := dh.setupChildInterAdapterClient(ctx, endpoint)
3054 cancel()
3055 if err != nil {
3056 return nil, err
3057 }
3058
3059 // Get the child client now
3060 dh.lockChildAdapterClients.RLock()
3061 defer dh.lockChildAdapterClients.RUnlock()
3062 if cgClient, ok := dh.childAdapterClients[endpoint]; ok {
3063 return cgClient.GetOnuInterAdapterServiceClient()
3064 }
3065 return nil, fmt.Errorf("no-client-for-endpoint-%s", endpoint)
3066}
3067
3068func (dh *DeviceHandler) deleteAdapterClients(ctx context.Context) {
3069 dh.lockChildAdapterClients.Lock()
3070 defer dh.lockChildAdapterClients.Unlock()
3071 for key, client := range dh.childAdapterClients {
3072 client.Stop(ctx)
3073 delete(dh.childAdapterClients, key)
3074 }
3075}
3076
3077// TODO: Any action the adapter needs to do following a onu adapter restart?
3078func (dh *DeviceHandler) onuAdapterRestarted(ctx context.Context, endPoint string) error {
khenaidoo7eb2d672021-10-22 19:08:50 -04003079 logger.Warnw(ctx, "onu-adapter-reconnected", log.Fields{"endpoint": endPoint})
khenaidoo106c61a2021-08-11 18:05:46 -04003080 return nil
3081}
3082
3083// setAndTestAdapterServiceHandler is used to test whether the remote gRPC service is up
3084func setAndTestAdapterServiceHandler(ctx context.Context, conn *grpc.ClientConn) interface{} {
3085 svc := adapter_services.NewOnuInterAdapterServiceClient(conn)
3086 if h, err := svc.GetHealthStatus(ctx, &empty.Empty{}); err != nil || h.State != voltha.HealthStatus_HEALTHY {
3087 return nil
3088 }
3089 return svc
3090}