blob: 91f9a8d37a6d4d91aef0edd3a01ab53fdc351b1c [file] [log] [blame]
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001/*
2 * Copyright 2020-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//Package adaptercoreonu provides the utility for onu devices, flows and statistics
18package adaptercoreonu
19
20import (
21 "context"
22 "encoding/hex"
23 "errors"
24 "fmt"
Holger Hildebrandt24d51952020-05-04 14:03:42 +000025 "strconv"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000026 "sync"
27 "time"
28
29 "github.com/gogo/protobuf/proto"
30 "github.com/golang/protobuf/ptypes"
31 "github.com/looplab/fsm"
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +000032 me "github.com/opencord/omci-lib-go/generated"
dbainbri4d3a0dc2020-12-02 00:33:42 +000033 "github.com/opencord/voltha-lib-go/v4/pkg/adapters/adapterif"
34 "github.com/opencord/voltha-lib-go/v4/pkg/db"
Himani Chawlac07fda02020-12-09 16:21:21 +053035 "github.com/opencord/voltha-lib-go/v4/pkg/events/eventif"
dbainbri4d3a0dc2020-12-02 00:33:42 +000036 flow "github.com/opencord/voltha-lib-go/v4/pkg/flows"
37 "github.com/opencord/voltha-lib-go/v4/pkg/log"
38 vc "github.com/opencord/voltha-protos/v4/go/common"
kesavandfdf77632021-01-26 23:40:33 -050039 "github.com/opencord/voltha-protos/v4/go/extension"
dbainbri4d3a0dc2020-12-02 00:33:42 +000040 ic "github.com/opencord/voltha-protos/v4/go/inter_container"
41 "github.com/opencord/voltha-protos/v4/go/openflow_13"
42 of "github.com/opencord/voltha-protos/v4/go/openflow_13"
43 ofp "github.com/opencord/voltha-protos/v4/go/openflow_13"
44 oop "github.com/opencord/voltha-protos/v4/go/openolt"
45 "github.com/opencord/voltha-protos/v4/go/voltha"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000046)
47
48/*
49// Constants for number of retries and for timeout
50const (
51 MaxRetry = 10
52 MaxTimeOutInMs = 500
53)
54*/
55
mpagenko1cc3cb42020-07-27 15:24:38 +000056const (
57 // events of Device FSM
58 devEvDeviceInit = "devEvDeviceInit"
59 devEvGrpcConnected = "devEvGrpcConnected"
60 devEvGrpcDisconnected = "devEvGrpcDisconnected"
61 devEvDeviceUpInd = "devEvDeviceUpInd"
62 devEvDeviceDownInd = "devEvDeviceDownInd"
63)
64const (
65 // states of Device FSM
66 devStNull = "devStNull"
67 devStDown = "devStDown"
68 devStInit = "devStInit"
69 devStConnected = "devStConnected"
70 devStUp = "devStUp"
71)
72
Holger Hildebrandt24d51952020-05-04 14:03:42 +000073//Event category and subcategory definitions - same as defiend for OLT in eventmgr.go - should be done more centrally
74const (
Himani Chawla4d908332020-08-31 12:30:20 +053075 pon = voltha.EventSubCategory_PON
76 //olt = voltha.EventSubCategory_OLT
77 //ont = voltha.EventSubCategory_ONT
78 //onu = voltha.EventSubCategory_ONU
79 //nni = voltha.EventSubCategory_NNI
80 //service = voltha.EventCategory_SERVICE
81 //security = voltha.EventCategory_SECURITY
82 equipment = voltha.EventCategory_EQUIPMENT
83 //processing = voltha.EventCategory_PROCESSING
84 //environment = voltha.EventCategory_ENVIRONMENT
85 //communication = voltha.EventCategory_COMMUNICATION
Holger Hildebrandt24d51952020-05-04 14:03:42 +000086)
87
88const (
89 cEventObjectType = "ONU"
90)
91const (
92 cOnuActivatedEvent = "ONU_ACTIVATED"
93)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +000094const (
95 cReconcilingTimeout = 10 //seconds
96)
Holger Hildebrandt24d51952020-05-04 14:03:42 +000097
Holger Hildebrandt10d98192021-01-27 15:29:31 +000098type usedOmciConfigFsms int
99
100const (
101 cUploadFsm usedOmciConfigFsms = iota
102 cDownloadFsm
103 cUniLockFsm
104 cUniUnLockFsm
105 cAniConfigFsm
106 cUniVlanConfigFsm
Girish Gowdrae0140f02021-02-02 16:55:09 -0800107 cL2PmFsm
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000108)
109
110type idleCheckStruct struct {
111 idleCheckFunc func(*deviceHandler, context.Context, string) bool
112 idleState string
113}
114
115var fsmIdleStateFuncMap = map[usedOmciConfigFsms]idleCheckStruct{
116 cUploadFsm: {(*deviceHandler).mibUploadFsmInIdleState, cMibUlFsmIdleState},
117 cDownloadFsm: {(*deviceHandler).mibDownloadFsmInIdleState, cMibDlFsmIdleState},
118 cUniLockFsm: {(*deviceHandler).devUniLockFsmInIdleState, cUniFsmIdleState},
119 cUniUnLockFsm: {(*deviceHandler).devUniUnlockFsmInIdleState, cUniFsmIdleState},
120 cAniConfigFsm: {(*deviceHandler).devAniConfigFsmInIdleState, cAniFsmIdleState},
121 cUniVlanConfigFsm: {(*deviceHandler).devUniVlanConfigFsmInIdleState, cVlanFsmIdleState},
Girish Gowdrae0140f02021-02-02 16:55:09 -0800122 cL2PmFsm: {(*deviceHandler).l2PmFsmInIdleState, cL2PmFsmIdleState},
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000123}
124
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000125const (
126 // device reasons
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000127 drUnset = 0
128 drActivatingOnu = 1
129 drStartingOpenomci = 2
130 drDiscoveryMibsyncComplete = 3
131 drInitialMibDownloaded = 4
132 drTechProfileConfigDownloadSuccess = 5
133 drOmciFlowsPushed = 6
134 drOmciAdminLock = 7
135 drOnuReenabled = 8
136 drStoppingOpenomci = 9
137 drRebooting = 10
138 drOmciFlowsDeleted = 11
139 drTechProfileConfigDeleteSuccess = 12
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000140)
141
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000142var deviceReasonMap = map[uint8]string{
143 drUnset: "unset",
144 drActivatingOnu: "activating-onu",
145 drStartingOpenomci: "starting-openomci",
146 drDiscoveryMibsyncComplete: "discovery-mibsync-complete",
147 drInitialMibDownloaded: "initial-mib-downloaded",
148 drTechProfileConfigDownloadSuccess: "tech-profile-config-download-success",
149 drOmciFlowsPushed: "omci-flows-pushed",
150 drOmciAdminLock: "omci-admin-lock",
151 drOnuReenabled: "onu-reenabled",
152 drStoppingOpenomci: "stopping-openomci",
153 drRebooting: "rebooting",
154 drOmciFlowsDeleted: "omci-flows-deleted",
155 drTechProfileConfigDeleteSuccess: "tech-profile-config-delete-success",
156}
157
Himani Chawla6d2ae152020-09-02 13:11:20 +0530158//deviceHandler will interact with the ONU ? device.
159type deviceHandler struct {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000160 deviceID string
161 DeviceType string
162 adminState string
163 device *voltha.Device
164 logicalDeviceID string
165 ProxyAddressID string
166 ProxyAddressType string
Himani Chawla4d908332020-08-31 12:30:20 +0530167 parentID string
Holger Hildebrandt24d51952020-05-04 14:03:42 +0000168 ponPortNumber uint32
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000169
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000170 coreProxy adapterif.CoreProxy
171 AdapterProxy adapterif.AdapterProxy
Himani Chawlac07fda02020-12-09 16:21:21 +0530172 EventProxy eventif.EventProxy
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000173
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800174 pmConfigs *voltha.PmConfigs
Girish Gowdrae09a6202021-01-12 18:10:59 -0800175
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000176 pOpenOnuAc *OpenONUAC
177 pDeviceStateFsm *fsm.FSM
Himani Chawla4d908332020-08-31 12:30:20 +0530178 //pPonPort *voltha.Port
mpagenko3af1f032020-06-10 08:53:41 +0000179 deviceEntrySet chan bool //channel for DeviceEntry set event
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000180 pOnuOmciDevice *OnuDeviceEntry
Himani Chawla6d2ae152020-09-02 13:11:20 +0530181 pOnuTP *onuUniTechProf
Girish Gowdrae09a6202021-01-12 18:10:59 -0800182 pOnuMetricsMgr *onuMetricsManager
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530183 pAlarmMgr *onuAlarmManager
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000184 exitChannel chan int
185 lockDevice sync.RWMutex
Holger Hildebrandt24d51952020-05-04 14:03:42 +0000186 pOnuIndication *oop.OnuIndication
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000187 deviceReason uint8
Himani Chawla6d2ae152020-09-02 13:11:20 +0530188 pLockStateFsm *lockStateFsm
189 pUnlockStateFsm *lockStateFsm
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000190
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000191 //flowMgr *OpenOltFlowMgr
192 //eventMgr *OpenOltEventMgr
193 //resourceMgr *rsrcMgr.OpenOltResourceMgr
194
195 //discOnus sync.Map
196 //onus sync.Map
197 //portStats *OpenOltStatisticsMgr
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000198 collectorIsRunning bool
199 mutexCollectorFlag sync.RWMutex
mpagenkofc4f56e2020-11-04 17:17:49 +0000200 stopCollector chan bool
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530201 stopAlarmManager chan bool
mpagenkofc4f56e2020-11-04 17:17:49 +0000202 stopHeartbeatCheck chan bool
mpagenkofc4f56e2020-11-04 17:17:49 +0000203 uniEntityMap map[uint32]*onuUniPort
mpagenko9a304ea2020-12-16 15:54:01 +0000204 lockVlanConfig sync.Mutex
mpagenkofc4f56e2020-11-04 17:17:49 +0000205 UniVlanConfigFsmMap map[uint8]*UniVlanConfigFsm
206 reconciling bool
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000207 mutexReconcilingFlag sync.RWMutex
208 chReconcilingFinished chan bool //channel to indicate that reconciling has been finished
mpagenkofc4f56e2020-11-04 17:17:49 +0000209 ReadyForSpecificOmciConfig bool
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000210}
211
Himani Chawla6d2ae152020-09-02 13:11:20 +0530212//newDeviceHandler creates a new device handler
Himani Chawlac07fda02020-12-09 16:21:21 +0530213func newDeviceHandler(ctx context.Context, cp adapterif.CoreProxy, ap adapterif.AdapterProxy, ep eventif.EventProxy, device *voltha.Device, adapter *OpenONUAC) *deviceHandler {
Himani Chawla6d2ae152020-09-02 13:11:20 +0530214 var dh deviceHandler
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000215 dh.coreProxy = cp
216 dh.AdapterProxy = ap
217 dh.EventProxy = ep
218 cloned := (proto.Clone(device)).(*voltha.Device)
219 dh.deviceID = cloned.Id
220 dh.DeviceType = cloned.Type
221 dh.adminState = "up"
222 dh.device = cloned
223 dh.pOpenOnuAc = adapter
224 dh.exitChannel = make(chan int, 1)
225 dh.lockDevice = sync.RWMutex{}
mpagenko3af1f032020-06-10 08:53:41 +0000226 dh.deviceEntrySet = make(chan bool, 1)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000227 dh.collectorIsRunning = false
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000228 dh.stopCollector = make(chan bool, 2)
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530229 dh.stopAlarmManager = make(chan bool, 2)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000230 dh.stopHeartbeatCheck = make(chan bool, 2)
231 //dh.metrics = pmmetrics.NewPmMetrics(cloned.Id, pmmetrics.Frequency(150), pmmetrics.FrequencyOverride(false), pmmetrics.Grouped(false), pmmetrics.Metrics(pmNames))
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000232 //TODO initialize the support classes.
Himani Chawla6d2ae152020-09-02 13:11:20 +0530233 dh.uniEntityMap = make(map[uint32]*onuUniPort)
mpagenko9a304ea2020-12-16 15:54:01 +0000234 dh.lockVlanConfig = sync.Mutex{}
mpagenkodff5dda2020-08-28 11:52:01 +0000235 dh.UniVlanConfigFsmMap = make(map[uint8]*UniVlanConfigFsm)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000236 dh.reconciling = false
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000237 dh.chReconcilingFinished = make(chan bool)
mpagenkofc4f56e2020-11-04 17:17:49 +0000238 dh.ReadyForSpecificOmciConfig = false
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000239
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800240 if dh.device.PmConfigs != nil { // can happen after onu adapter restart
241 dh.pmConfigs = cloned.PmConfigs
242 } /* else {
243 // will be populated when onu_metrics_mananger is initialized.
244 }*/
Girish Gowdrae09a6202021-01-12 18:10:59 -0800245
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000246 // Device related state machine
247 dh.pDeviceStateFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +0000248 devStNull,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000249 fsm.Events{
mpagenko1cc3cb42020-07-27 15:24:38 +0000250 {Name: devEvDeviceInit, Src: []string{devStNull, devStDown}, Dst: devStInit},
251 {Name: devEvGrpcConnected, Src: []string{devStInit}, Dst: devStConnected},
252 {Name: devEvGrpcDisconnected, Src: []string{devStConnected, devStDown}, Dst: devStInit},
253 {Name: devEvDeviceUpInd, Src: []string{devStConnected, devStDown}, Dst: devStUp},
254 {Name: devEvDeviceDownInd, Src: []string{devStUp}, Dst: devStDown},
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000255 },
256 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000257 "before_event": func(e *fsm.Event) { dh.logStateChange(ctx, e) },
258 ("before_" + devEvDeviceInit): func(e *fsm.Event) { dh.doStateInit(ctx, e) },
259 ("after_" + devEvDeviceInit): func(e *fsm.Event) { dh.postInit(ctx, e) },
260 ("before_" + devEvGrpcConnected): func(e *fsm.Event) { dh.doStateConnected(ctx, e) },
261 ("before_" + devEvGrpcDisconnected): func(e *fsm.Event) { dh.doStateInit(ctx, e) },
262 ("after_" + devEvGrpcDisconnected): func(e *fsm.Event) { dh.postInit(ctx, e) },
263 ("before_" + devEvDeviceUpInd): func(e *fsm.Event) { dh.doStateUp(ctx, e) },
264 ("before_" + devEvDeviceDownInd): func(e *fsm.Event) { dh.doStateDown(ctx, e) },
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000265 },
266 )
mpagenkoaf801632020-07-03 10:00:42 +0000267
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000268 return &dh
269}
270
Himani Chawla6d2ae152020-09-02 13:11:20 +0530271// start save the device to the data model
272func (dh *deviceHandler) start(ctx context.Context) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000273 logger.Debugw(ctx, "starting-device-handler", log.Fields{"device": dh.device, "device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000274 // Add the initial device to the local model
dbainbri4d3a0dc2020-12-02 00:33:42 +0000275 logger.Debug(ctx, "device-handler-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000276}
277
Himani Chawla4d908332020-08-31 12:30:20 +0530278/*
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000279// stop stops the device dh. Not much to do for now
Himani Chawla6d2ae152020-09-02 13:11:20 +0530280func (dh *deviceHandler) stop(ctx context.Context) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000281 logger.Debug("stopping-device-handler")
282 dh.exitChannel <- 1
283}
Himani Chawla4d908332020-08-31 12:30:20 +0530284*/
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000285
286// ##########################################################################################
Himani Chawla6d2ae152020-09-02 13:11:20 +0530287// deviceHandler methods that implement the adapters interface requests ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000288
Girish Gowdrae0140f02021-02-02 16:55:09 -0800289//adoptOrReconcileDevice adopts the ONU device
Himani Chawla6d2ae152020-09-02 13:11:20 +0530290func (dh *deviceHandler) adoptOrReconcileDevice(ctx context.Context, device *voltha.Device) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000291 logger.Debugw(ctx, "Adopt_or_reconcile_device", log.Fields{"device-id": device.Id, "Address": device.GetHostAndPort()})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000292
dbainbri4d3a0dc2020-12-02 00:33:42 +0000293 logger.Debugw(ctx, "Device FSM: ", log.Fields{"state": string(dh.pDeviceStateFsm.Current())})
mpagenko1cc3cb42020-07-27 15:24:38 +0000294 if dh.pDeviceStateFsm.Is(devStNull) {
295 if err := dh.pDeviceStateFsm.Event(devEvDeviceInit); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000296 logger.Errorw(ctx, "Device FSM: Can't go to state DeviceInit", log.Fields{"err": err})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000297 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000298 logger.Debugw(ctx, "Device FSM: ", log.Fields{"state": string(dh.pDeviceStateFsm.Current())})
Girish Gowdraaf0ad632021-01-27 13:00:01 -0800299 // device.PmConfigs is not nil in cases when adapter restarts. We should not re-set the core again.
300 if device.PmConfigs == nil {
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800301 // Now, set the initial PM configuration for that device
302 if err := dh.coreProxy.DevicePMConfigUpdate(ctx, dh.pmConfigs); err != nil {
303 logger.Errorw(ctx, "error updating pm config to core", log.Fields{"device-id": dh.deviceID, "err": err})
304 }
Girish Gowdrae09a6202021-01-12 18:10:59 -0800305 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000306 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000307 logger.Debugw(ctx, "AdoptOrReconcileDevice: Agent/device init already done", log.Fields{"device-id": device.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000308 }
309
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000310}
311
mpagenko057889c2021-01-21 16:51:58 +0000312func (dh *deviceHandler) processInterAdapterOMCIReceiveMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
Himani Chawla26e555c2020-08-31 12:30:20 +0530313 msgBody := msg.GetBody()
314 omciMsg := &ic.InterAdapterOmciMessage{}
315 if err := ptypes.UnmarshalAny(msgBody, omciMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000316 logger.Warnw(ctx, "cannot-unmarshal-omci-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530317 "device-id": dh.deviceID, "error": err})
318 return err
319 }
320
321 //assuming omci message content is hex coded!
322 // with restricted output of 16(?) bytes would be ...omciMsg.Message[:16]
dbainbri4d3a0dc2020-12-02 00:33:42 +0000323 logger.Debugw(ctx, "inter-adapter-recv-omci", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530324 "device-id": dh.deviceID, "RxOmciMessage": hex.EncodeToString(omciMsg.Message)})
325 //receive_message(omci_msg.message)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000326 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Himani Chawla26e555c2020-08-31 12:30:20 +0530327 if pDevEntry != nil {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000328 if pDevEntry.PDevOmciCC != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000329 return pDevEntry.PDevOmciCC.receiveMessage(log.WithSpanFromContext(context.TODO(), ctx), omciMsg.Message)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000330 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000331 logger.Debugw(ctx, "omciCC not ready to receive omci messages - incoming omci message ignored", log.Fields{"rxMsg": omciMsg.Message})
Himani Chawla26e555c2020-08-31 12:30:20 +0530332 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000333 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000334 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530335}
336
Himani Chawla6d2ae152020-09-02 13:11:20 +0530337func (dh *deviceHandler) processInterAdapterTechProfileDownloadReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000338 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530339 msg *ic.InterAdapterMessage) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000340
dbainbri4d3a0dc2020-12-02 00:33:42 +0000341 logger.Infow(ctx, "tech-profile-download-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000342
dbainbri4d3a0dc2020-12-02 00:33:42 +0000343 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000344 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000345 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000346 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
347 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530348 if dh.pOnuTP == nil {
349 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000350 logger.Errorw(ctx, "onuTechProf instance not set up for DLMsg request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530351 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000352 return fmt.Errorf("techProfile DLMsg request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530353 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000354 if !dh.ReadyForSpecificOmciConfig {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000355 logger.Errorw(ctx, "TechProf-set rejected: improper device state", log.Fields{"device-id": dh.deviceID,
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000356 "device-state": deviceReasonMap[dh.deviceReason]})
357 return fmt.Errorf("improper device state %s on device %s", deviceReasonMap[dh.deviceReason], dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530358 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000359 //previous state test here was just this one, now extended for more states to reject the SetRequest:
360 // at least 'mib-downloaded' should be reached for processing of this specific ONU configuration
361 // if (dh.deviceReason == "stopping-openomci") || (dh.deviceReason == "omci-admin-lock")
Himani Chawla26e555c2020-08-31 12:30:20 +0530362
363 msgBody := msg.GetBody()
364 techProfMsg := &ic.InterAdapterTechProfileDownloadMessage{}
365 if err := ptypes.UnmarshalAny(msgBody, techProfMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000366 logger.Warnw(ctx, "cannot-unmarshal-techprof-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530367 "device-id": dh.deviceID, "error": err})
368 return err
369 }
370
371 // we have to lock access to TechProfile processing based on different messageType calls or
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000372 // even to fast subsequent calls of the same messageType as well as OnuKVStore processing due
373 // to possible concurrent access by flow processing
Himani Chawla26e555c2020-08-31 12:30:20 +0530374 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000375 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000376
377 if techProfMsg.UniId > 255 {
378 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
379 techProfMsg.UniId, dh.deviceID))
380 }
381 uniID := uint8(techProfMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800382 tpID, err := GetTpIDFromTpPath(techProfMsg.Path)
383 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000384 logger.Errorw(ctx, "error-parsing-tpid-from-tppath", log.Fields{"err": err, "tp-path": techProfMsg.Path})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800385 return err
386 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000387
dbainbri4d3a0dc2020-12-02 00:33:42 +0000388 if bTpModify := pDevEntry.updateOnuUniTpPath(ctx, uniID, uint8(tpID), techProfMsg.Path); bTpModify {
Himani Chawla26e555c2020-08-31 12:30:20 +0530389 // if there has been some change for some uni TechProfilePath
390 //in order to allow concurrent calls to other dh instances we do not wait for execution here
391 //but doing so we can not indicate problems to the caller (who does what with that then?)
392 //by now we just assume straightforward successful execution
393 //TODO!!! Generally: In this scheme it would be good to have some means to indicate
394 // possible problems to the caller later autonomously
395
396 // deadline context to ensure completion of background routines waited for
397 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
Himani Chawlad96df182020-09-28 11:12:02 +0530398 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
Himani Chawla26e555c2020-08-31 12:30:20 +0530399 dctx, cancel := context.WithDeadline(context.Background(), deadline)
400
Girish Gowdra041dcb32020-11-16 16:54:30 -0800401 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000402 pDevEntry.resetKvProcessingErrorIndication()
403
Himani Chawla26e555c2020-08-31 12:30:20 +0530404 var wg sync.WaitGroup
405 wg.Add(2) // for the 2 go routines to finish
406 // attention: deadline completion check and wg.Done is to be done in both routines
dbainbri4d3a0dc2020-12-02 00:33:42 +0000407 go dh.pOnuTP.configureUniTp(log.WithSpanFromContext(dctx, ctx), uniID, techProfMsg.Path, &wg)
408 go pDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
409 dh.waitForCompletion(ctx, cancel, &wg, "TechProfDwld") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000410
Girish Gowdra041dcb32020-11-16 16:54:30 -0800411 return dh.combineErrorStrings(dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID), pDevEntry.getKvProcessingErrorIndication())
Himani Chawla26e555c2020-08-31 12:30:20 +0530412 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000413 // no change, nothing really to do - return success
Himani Chawla26e555c2020-08-31 12:30:20 +0530414 return nil
415}
416
Himani Chawla6d2ae152020-09-02 13:11:20 +0530417func (dh *deviceHandler) processInterAdapterDeleteGemPortReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000418 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530419 msg *ic.InterAdapterMessage) error {
420
dbainbri4d3a0dc2020-12-02 00:33:42 +0000421 logger.Infow(ctx, "delete-gem-port-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000422
dbainbri4d3a0dc2020-12-02 00:33:42 +0000423 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000424 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000425 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000426 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
427 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530428 if dh.pOnuTP == nil {
429 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000430 logger.Warnw(ctx, "onuTechProf instance not set up for DelGem request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530431 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000432 return fmt.Errorf("techProfile DelGem request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530433 }
434
435 msgBody := msg.GetBody()
436 delGemPortMsg := &ic.InterAdapterDeleteGemPortMessage{}
437 if err := ptypes.UnmarshalAny(msgBody, delGemPortMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000438 logger.Warnw(ctx, "cannot-unmarshal-delete-gem-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530439 "device-id": dh.deviceID, "error": err})
440 return err
441 }
442
443 //compare TECH_PROFILE_DOWNLOAD_REQUEST
444 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000445 defer dh.pOnuTP.unlockTpProcMutex()
Himani Chawla26e555c2020-08-31 12:30:20 +0530446
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000447 if delGemPortMsg.UniId > 255 {
448 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
449 delGemPortMsg.UniId, dh.deviceID))
450 }
451 uniID := uint8(delGemPortMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800452 tpID, err := GetTpIDFromTpPath(delGemPortMsg.TpPath)
453 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000454 logger.Errorw(ctx, "error-extracting-tp-id-from-tp-path", log.Fields{"err": err, "tp-path": delGemPortMsg.TpPath})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800455 return err
456 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530457
mpagenkofc4f56e2020-11-04 17:17:49 +0000458 //a removal of some GemPort would never remove the complete TechProfile entry (done on T-Cont)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000459
mpagenkofc4f56e2020-11-04 17:17:49 +0000460 // deadline context to ensure completion of background routines waited for
461 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
462 dctx, cancel := context.WithDeadline(context.Background(), deadline)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000463
Girish Gowdra041dcb32020-11-16 16:54:30 -0800464 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000465
mpagenkofc4f56e2020-11-04 17:17:49 +0000466 var wg sync.WaitGroup
467 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000468 go dh.pOnuTP.deleteTpResource(log.WithSpanFromContext(dctx, ctx), uniID, tpID, delGemPortMsg.TpPath,
mpagenkofc4f56e2020-11-04 17:17:49 +0000469 cResourceGemPort, delGemPortMsg.GemPortId, &wg)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000470 dh.waitForCompletion(ctx, cancel, &wg, "GemDelete") //wait for background process to finish
mpagenkofc4f56e2020-11-04 17:17:49 +0000471
Girish Gowdra041dcb32020-11-16 16:54:30 -0800472 return dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530473}
474
Himani Chawla6d2ae152020-09-02 13:11:20 +0530475func (dh *deviceHandler) processInterAdapterDeleteTcontReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000476 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530477 msg *ic.InterAdapterMessage) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000478
dbainbri4d3a0dc2020-12-02 00:33:42 +0000479 logger.Infow(ctx, "delete-tcont-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000480
dbainbri4d3a0dc2020-12-02 00:33:42 +0000481 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000482 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000483 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000484 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
485 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530486 if dh.pOnuTP == nil {
487 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000488 logger.Warnw(ctx, "onuTechProf instance not set up for DelTcont request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530489 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000490 return fmt.Errorf("techProfile DelTcont request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530491 }
492
493 msgBody := msg.GetBody()
494 delTcontMsg := &ic.InterAdapterDeleteTcontMessage{}
495 if err := ptypes.UnmarshalAny(msgBody, delTcontMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000496 logger.Warnw(ctx, "cannot-unmarshal-delete-tcont-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530497 "device-id": dh.deviceID, "error": err})
498 return err
499 }
500
501 //compare TECH_PROFILE_DOWNLOAD_REQUEST
502 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000503 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000504
505 if delTcontMsg.UniId > 255 {
506 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
507 delTcontMsg.UniId, dh.deviceID))
508 }
509 uniID := uint8(delTcontMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800510 tpPath := delTcontMsg.TpPath
511 tpID, err := GetTpIDFromTpPath(tpPath)
512 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000513 logger.Errorw(ctx, "error-extracting-tp-id-from-tp-path", log.Fields{"err": err, "tp-path": tpPath})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800514 return err
515 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000516
dbainbri4d3a0dc2020-12-02 00:33:42 +0000517 if bTpModify := pDevEntry.updateOnuUniTpPath(ctx, uniID, tpID, ""); bTpModify {
Himani Chawla26e555c2020-08-31 12:30:20 +0530518 // deadline context to ensure completion of background routines waited for
Himani Chawlad96df182020-09-28 11:12:02 +0530519 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
Himani Chawla26e555c2020-08-31 12:30:20 +0530520 dctx, cancel := context.WithDeadline(context.Background(), deadline)
521
Girish Gowdra041dcb32020-11-16 16:54:30 -0800522 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000523 pDevEntry.resetKvProcessingErrorIndication()
524
Himani Chawla26e555c2020-08-31 12:30:20 +0530525 var wg sync.WaitGroup
526 wg.Add(2) // for the 2 go routines to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000527 go dh.pOnuTP.deleteTpResource(log.WithSpanFromContext(dctx, ctx), uniID, tpID, delTcontMsg.TpPath,
Himani Chawla26e555c2020-08-31 12:30:20 +0530528 cResourceTcont, delTcontMsg.AllocId, &wg)
529 // Removal of the tcont/alloc id mapping represents the removal of the tech profile
dbainbri4d3a0dc2020-12-02 00:33:42 +0000530 go pDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
531 dh.waitForCompletion(ctx, cancel, &wg, "TContDelete") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000532
Girish Gowdra041dcb32020-11-16 16:54:30 -0800533 return dh.combineErrorStrings(dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID), pDevEntry.getKvProcessingErrorIndication())
Himani Chawla26e555c2020-08-31 12:30:20 +0530534 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530535 return nil
536}
537
Himani Chawla6d2ae152020-09-02 13:11:20 +0530538//processInterAdapterMessage sends the proxied messages to the target device
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000539// If the proxy address is not found in the unmarshalled message, it first fetches the onu device for which the message
540// is meant, and then send the unmarshalled omci message to this onu
dbainbri4d3a0dc2020-12-02 00:33:42 +0000541func (dh *deviceHandler) processInterAdapterMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000542 msgID := msg.Header.Id
543 msgType := msg.Header.Type
544 fromTopic := msg.Header.FromTopic
545 toTopic := msg.Header.ToTopic
546 toDeviceID := msg.Header.ToDeviceId
547 proxyDeviceID := msg.Header.ProxyDeviceId
dbainbri4d3a0dc2020-12-02 00:33:42 +0000548 logger.Debugw(ctx, "InterAdapter message header", log.Fields{"msgID": msgID, "msgType": msgType,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000549 "fromTopic": fromTopic, "toTopic": toTopic, "toDeviceID": toDeviceID, "proxyDeviceID": proxyDeviceID})
550
551 switch msgType {
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000552 // case ic.InterAdapterMessageType_ONU_IND_REQUEST: was handled by OpenONUAC already - see comments there
mpagenko057889c2021-01-21 16:51:58 +0000553 //OMCI_RESPONSE also accepted acc. to VOL-3756 (OMCI_REQUEST request was legacy code)
554 case ic.InterAdapterMessageType_OMCI_RESPONSE, ic.InterAdapterMessageType_OMCI_REQUEST:
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000555 {
mpagenko057889c2021-01-21 16:51:58 +0000556 return dh.processInterAdapterOMCIReceiveMessage(ctx, msg)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000557 }
mpagenkoaf801632020-07-03 10:00:42 +0000558 case ic.InterAdapterMessageType_TECH_PROFILE_DOWNLOAD_REQUEST:
559 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000560 return dh.processInterAdapterTechProfileDownloadReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000561 }
562 case ic.InterAdapterMessageType_DELETE_GEM_PORT_REQUEST:
563 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000564 return dh.processInterAdapterDeleteGemPortReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000565
mpagenkoaf801632020-07-03 10:00:42 +0000566 }
567 case ic.InterAdapterMessageType_DELETE_TCONT_REQUEST:
568 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000569 return dh.processInterAdapterDeleteTcontReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000570 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000571 default:
572 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000573 logger.Errorw(ctx, "inter-adapter-unhandled-type", log.Fields{
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000574 "msgType": msg.Header.Type, "device-id": dh.deviceID})
575 return fmt.Errorf("inter-adapter-unhandled-type: %d, %s", msg.Header.Type, dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000576 }
577 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000578}
579
mpagenkodff5dda2020-08-28 11:52:01 +0000580//FlowUpdateIncremental removes and/or adds the flow changes on a given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000581func (dh *deviceHandler) FlowUpdateIncremental(ctx context.Context,
582 apOfFlowChanges *openflow_13.FlowChanges,
mpagenkodff5dda2020-08-28 11:52:01 +0000583 apOfGroupChanges *openflow_13.FlowGroupChanges, apFlowMetaData *voltha.FlowMetadata) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000584 logger.Debugw(ctx, "FlowUpdateIncremental started", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +0000585
mpagenko01e726e2020-10-23 09:45:29 +0000586 var retError error = nil
587 //Remove flows (always remove flows first - remove old and add new with same cookie may be part of the same request)
mpagenkodff5dda2020-08-28 11:52:01 +0000588 if apOfFlowChanges.ToRemove != nil {
589 for _, flowItem := range apOfFlowChanges.ToRemove.Items {
mpagenkodff5dda2020-08-28 11:52:01 +0000590 if flowItem.GetCookie() == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000591 logger.Warnw(ctx, "flow-remove no cookie: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000592 "device-id": dh.deviceID})
593 retError = fmt.Errorf("flow-remove no cookie, device-id %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +0000594 continue
595 }
596 flowInPort := flow.GetInPort(flowItem)
597 if flowInPort == uint32(of.OfpPortNo_OFPP_INVALID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000598 logger.Warnw(ctx, "flow-remove inPort invalid: ignore and continuing on checking further flows", log.Fields{"device-id": dh.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +0000599 retError = fmt.Errorf("flow-remove inPort invalid, device-id %s", dh.deviceID)
600 continue
601 //return fmt.Errorf("flow inPort invalid: %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +0000602 } else if flowInPort == dh.ponPortNumber {
mpagenko01e726e2020-10-23 09:45:29 +0000603 //this is some downstream flow, not regarded as error, just ignored
dbainbri4d3a0dc2020-12-02 00:33:42 +0000604 logger.Debugw(ctx, "flow-remove for downstream: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000605 "device-id": dh.deviceID, "inPort": flowInPort})
mpagenkodff5dda2020-08-28 11:52:01 +0000606 continue
607 } else {
608 // this is the relevant upstream flow
Himani Chawla6d2ae152020-09-02 13:11:20 +0530609 var loUniPort *onuUniPort
mpagenkodff5dda2020-08-28 11:52:01 +0000610 if uniPort, exist := dh.uniEntityMap[flowInPort]; exist {
611 loUniPort = uniPort
612 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000613 logger.Warnw(ctx, "flow-remove inPort not found in UniPorts: ignore and continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000614 log.Fields{"device-id": dh.deviceID, "inPort": flowInPort})
615 retError = fmt.Errorf("flow-remove inPort not found in UniPorts, inPort %d, device-id %s",
616 flowInPort, dh.deviceID)
617 continue
mpagenkodff5dda2020-08-28 11:52:01 +0000618 }
619 flowOutPort := flow.GetOutPort(flowItem)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000620 logger.Debugw(ctx, "flow-remove port indications", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000621 "device-id": dh.deviceID, "inPort": flowInPort, "outPort": flowOutPort,
mpagenkodff5dda2020-08-28 11:52:01 +0000622 "uniPortName": loUniPort.name})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000623 err := dh.removeFlowItemFromUniPort(ctx, flowItem, loUniPort)
mpagenko01e726e2020-10-23 09:45:29 +0000624 //try next flow after processing error
mpagenkodff5dda2020-08-28 11:52:01 +0000625 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000626 logger.Warnw(ctx, "flow-remove processing error: continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000627 log.Fields{"device-id": dh.deviceID, "error": err})
628 retError = err
629 continue
630 //return err
631 } else { // if last setting succeeds, overwrite possibly previously set error
632 retError = nil
mpagenkodff5dda2020-08-28 11:52:01 +0000633 }
634 }
635 }
636 }
mpagenko01e726e2020-10-23 09:45:29 +0000637 if apOfFlowChanges.ToAdd != nil {
638 for _, flowItem := range apOfFlowChanges.ToAdd.Items {
639 if flowItem.GetCookie() == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000640 logger.Debugw(ctx, "incremental flow-add no cookie: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000641 "device-id": dh.deviceID})
642 retError = fmt.Errorf("flow-add no cookie, device-id %s", dh.deviceID)
643 continue
644 }
645 flowInPort := flow.GetInPort(flowItem)
646 if flowInPort == uint32(of.OfpPortNo_OFPP_INVALID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000647 logger.Warnw(ctx, "flow-add inPort invalid: ignore and continuing on checking further flows", log.Fields{"device-id": dh.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +0000648 retError = fmt.Errorf("flow-add inPort invalid, device-id %s", dh.deviceID)
649 continue
650 //return fmt.Errorf("flow inPort invalid: %s", dh.deviceID)
651 } else if flowInPort == dh.ponPortNumber {
652 //this is some downstream flow
dbainbri4d3a0dc2020-12-02 00:33:42 +0000653 logger.Debugw(ctx, "flow-add for downstream: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000654 "device-id": dh.deviceID, "inPort": flowInPort})
655 continue
656 } else {
657 // this is the relevant upstream flow
658 var loUniPort *onuUniPort
659 if uniPort, exist := dh.uniEntityMap[flowInPort]; exist {
660 loUniPort = uniPort
661 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000662 logger.Warnw(ctx, "flow-add inPort not found in UniPorts: ignore and continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000663 log.Fields{"device-id": dh.deviceID, "inPort": flowInPort})
664 retError = fmt.Errorf("flow-add inPort not found in UniPorts, inPort %d, device-id %s",
665 flowInPort, dh.deviceID)
666 continue
667 //return fmt.Errorf("flow-parameter inPort %d not found in internal UniPorts", flowInPort)
668 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000669 // let's still assume that we receive the flow-add only in some 'active' device state (as so far observed)
670 // if not, we just throw some error here to have an indication about that, if we really need to support that
671 // then we would need to create some means to activate the internal stored flows
672 // after the device gets active automatically (and still with its dependency to the TechProfile)
673 // for state checking compare also code here: processInterAdapterTechProfileDownloadReqMessage
674 // also abort for the other still possible flows here
675 if !dh.ReadyForSpecificOmciConfig {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000676 logger.Errorw(ctx, "flow-add rejected: improper device state", log.Fields{"device-id": dh.deviceID,
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000677 "last device-reason": deviceReasonMap[dh.deviceReason]})
mpagenkofc4f56e2020-11-04 17:17:49 +0000678 return fmt.Errorf("improper device state on device %s", dh.deviceID)
679 }
680
mpagenko01e726e2020-10-23 09:45:29 +0000681 flowOutPort := flow.GetOutPort(flowItem)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000682 logger.Debugw(ctx, "flow-add port indications", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000683 "device-id": dh.deviceID, "inPort": flowInPort, "outPort": flowOutPort,
684 "uniPortName": loUniPort.name})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000685 err := dh.addFlowItemToUniPort(ctx, flowItem, loUniPort)
mpagenko01e726e2020-10-23 09:45:29 +0000686 //try next flow after processing error
687 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000688 logger.Warnw(ctx, "flow-add processing error: continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000689 log.Fields{"device-id": dh.deviceID, "error": err})
690 retError = err
691 continue
692 //return err
693 } else { // if last setting succeeds, overwrite possibly previously set error
694 retError = nil
695 }
696 }
697 }
698 }
699 return retError
mpagenkodff5dda2020-08-28 11:52:01 +0000700}
701
Himani Chawla6d2ae152020-09-02 13:11:20 +0530702//disableDevice locks the ONU and its UNI/VEIP ports (admin lock via OMCI)
mpagenkofc4f56e2020-11-04 17:17:49 +0000703//following are the expected device states after this activity:
704//Device Admin-State : down (on rwCore), Port-State: UNKNOWN, Conn-State: REACHABLE, Reason: omci-admin-lock
705// (Conn-State: REACHABLE might conflict with some previous ONU Down indication - maybe to be resolved later)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000706func (dh *deviceHandler) disableDevice(ctx context.Context, device *voltha.Device) {
707 logger.Debugw(ctx, "disable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000708
mpagenko900ee4b2020-10-12 11:56:34 +0000709 //admin-lock reason can also be used uniquely for setting the DeviceState accordingly
mpagenkofc4f56e2020-11-04 17:17:49 +0000710 //note that disableDevice sequences in some 'ONU active' state may yield also
711 // "tech...delete-success" or "omci-flow-deleted" according to further received requests in the end
mpagenko900ee4b2020-10-12 11:56:34 +0000712 // - inblock state checking to prevent possibly unneeded processing (on command repitition)
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000713 if dh.deviceReason != drOmciAdminLock {
mpagenkofc4f56e2020-11-04 17:17:49 +0000714 //disable-device shall be just a UNi/ONU-G related admin state setting
715 //all other configurations/FSM's shall not be impacted and shall execute as required by the system
mpagenko900ee4b2020-10-12 11:56:34 +0000716
mpagenkofc4f56e2020-11-04 17:17:49 +0000717 if dh.ReadyForSpecificOmciConfig {
mpagenko01e726e2020-10-23 09:45:29 +0000718 // disable UNI ports/ONU
719 // *** should generate UniDisableStateDone event - used to disable the port(s) on success
720 if dh.pLockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000721 dh.createUniLockFsm(ctx, true, UniDisableStateDone)
mpagenko01e726e2020-10-23 09:45:29 +0000722 } else { //LockStateFSM already init
723 dh.pLockStateFsm.setSuccessEvent(UniDisableStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000724 dh.runUniLockFsm(ctx, true)
mpagenko01e726e2020-10-23 09:45:29 +0000725 }
726 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000727 logger.Debugw(ctx, "DeviceStateUpdate upon disable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko01e726e2020-10-23 09:45:29 +0000728 "OperStatus": voltha.OperStatus_UNKNOWN, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000729 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko01e726e2020-10-23 09:45:29 +0000730 dh.deviceID, voltha.ConnectStatus_REACHABLE, voltha.OperStatus_UNKNOWN); err != nil {
731 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000732 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko01e726e2020-10-23 09:45:29 +0000733 }
mpagenko01e726e2020-10-23 09:45:29 +0000734 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000735
736 //TODO with VOL-3045/VOL-3046: catch and return error, valid for all occurrences in the codebase
dbainbri4d3a0dc2020-12-02 00:33:42 +0000737 _ = dh.deviceReasonUpdate(ctx, drOmciAdminLock, true)
mpagenko3af1f032020-06-10 08:53:41 +0000738 }
ozgecanetsiafce57b12020-05-25 14:39:35 +0300739 }
740}
741
Himani Chawla6d2ae152020-09-02 13:11:20 +0530742//reEnableDevice unlocks the ONU and its UNI/VEIP ports (admin unlock via OMCI)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000743func (dh *deviceHandler) reEnableDevice(ctx context.Context, device *voltha.Device) {
744 logger.Debugw(ctx, "reenable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
mpagenko3af1f032020-06-10 08:53:41 +0000745
mpagenkofc4f56e2020-11-04 17:17:49 +0000746 //setting ReadyForSpecificOmciConfig here is just a workaround for BBSIM testing in the sequence
747 // OnuSoftReboot-disable-enable, because BBSIM does not generate a new OnuIndication-Up event after SoftReboot
748 // which is the assumption for real ONU's, where the ready-state is then set according to the following MibUpload/Download
749 // for real ONU's that should have nearly no influence
750 // Note that for real ONU's there is anyway a problematic situation with following sequence:
751 // OnuIndication-Dw (or not active at all) (- disable) - enable: here already the LockFsm may run into timeout (no OmciResponse)
752 // but that anyway is hopefully resolved by some OnuIndication-Up event (maybe to be tested)
753 // one could also argue, that a device-enable should also enable attempts for specific omci configuration
754 dh.ReadyForSpecificOmciConfig = true //needed to allow subsequent flow/techProf config (on BBSIM)
755
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000756 // enable ONU/UNI ports
mpagenko900ee4b2020-10-12 11:56:34 +0000757 // *** should generate UniEnableStateDone event - used to disable the port(s) on success
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000758 if dh.pUnlockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000759 dh.createUniLockFsm(ctx, false, UniEnableStateDone)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000760 } else { //UnlockStateFSM already init
mpagenko900ee4b2020-10-12 11:56:34 +0000761 dh.pUnlockStateFsm.setSuccessEvent(UniEnableStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000762 dh.runUniLockFsm(ctx, false)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000763 }
ozgecanetsiafce57b12020-05-25 14:39:35 +0300764}
765
dbainbri4d3a0dc2020-12-02 00:33:42 +0000766func (dh *deviceHandler) reconcileDeviceOnuInd(ctx context.Context) {
767 logger.Debugw(ctx, "reconciling - simulate onu indication", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000768
dbainbri4d3a0dc2020-12-02 00:33:42 +0000769 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000770 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000771 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000772 return
773 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000774 if err := pDevEntry.restoreDataFromOnuKvStore(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
mpagenko2418ab02020-11-12 12:58:06 +0000775 if err == fmt.Errorf("no-ONU-data-found") {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000776 logger.Debugw(ctx, "no persistent data found - abort reconciling", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000777 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000778 logger.Errorw(ctx, "reconciling - restoring OnuTp-data failed - abort", log.Fields{"err": err, "device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000779 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000780 dh.stopReconciling(ctx)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000781 return
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000782 }
Himani Chawla4d908332020-08-31 12:30:20 +0530783 var onuIndication oop.OnuIndication
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000784 onuIndication.IntfId = pDevEntry.sOnuPersistentData.PersIntfID
785 onuIndication.OnuId = pDevEntry.sOnuPersistentData.PersOnuID
786 onuIndication.OperState = pDevEntry.sOnuPersistentData.PersOperState
787 onuIndication.AdminState = pDevEntry.sOnuPersistentData.PersAdminState
dbainbri4d3a0dc2020-12-02 00:33:42 +0000788 _ = dh.createInterface(ctx, &onuIndication)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000789}
790
dbainbri4d3a0dc2020-12-02 00:33:42 +0000791func (dh *deviceHandler) reconcileDeviceTechProf(ctx context.Context) {
792 logger.Debugw(ctx, "reconciling - trigger tech profile config", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000793
dbainbri4d3a0dc2020-12-02 00:33:42 +0000794 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000795 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000796 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000797 return
798 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000799 dh.pOnuTP.lockTpProcMutex()
800 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000801 pDevEntry.persUniConfigMutex.RLock()
802 defer pDevEntry.persUniConfigMutex.RUnlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000803
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000804 if len(pDevEntry.sOnuPersistentData.PersUniConfig) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000805 logger.Debugw(ctx, "reconciling - no uni-configs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000806 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000807 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000808 return
809 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000810 for _, uniData := range pDevEntry.sOnuPersistentData.PersUniConfig {
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000811 //TODO: check for uni-port specific reconcilement in case of multi-uni-port-per-onu-support
812 if len(uniData.PersTpPathMap) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000813 logger.Debugw(ctx, "reconciling - no TPs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000814 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000815 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000816 return
817 }
Girish Gowdra041dcb32020-11-16 16:54:30 -0800818 for tpID := range uniData.PersTpPathMap {
819 // deadline context to ensure completion of background routines waited for
820 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
821 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
dbainbri4d3a0dc2020-12-02 00:33:42 +0000822 dctx, cancel := context.WithDeadline(ctx, deadline)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000823
Girish Gowdra041dcb32020-11-16 16:54:30 -0800824 dh.pOnuTP.resetTpProcessingErrorIndication(uniData.PersUniID, tpID)
825 var wg sync.WaitGroup
826 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000827 go dh.pOnuTP.configureUniTp(log.WithSpanFromContext(dctx, ctx), uniData.PersUniID, uniData.PersTpPathMap[tpID], &wg)
828 dh.waitForCompletion(ctx, cancel, &wg, "TechProfReconcile") //wait for background process to finish
Girish Gowdra041dcb32020-11-16 16:54:30 -0800829 if err := dh.pOnuTP.getTpProcessingErrorIndication(uniData.PersUniID, tpID); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000830 logger.Errorw(ctx, err.Error(), log.Fields{"device-id": dh.deviceID})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800831 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000832 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000833 if len(uniData.PersFlowParams) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000834 logger.Debugw(ctx, "reconciling - no flows have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000835 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000836 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000837 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000838 }
839}
840
dbainbri4d3a0dc2020-12-02 00:33:42 +0000841func (dh *deviceHandler) reconcileDeviceFlowConfig(ctx context.Context) {
842 logger.Debugw(ctx, "reconciling - trigger flow config", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000843
dbainbri4d3a0dc2020-12-02 00:33:42 +0000844 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000845 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000846 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000847 return
848 }
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000849 pDevEntry.persUniConfigMutex.RLock()
850 defer pDevEntry.persUniConfigMutex.RUnlock()
851
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000852 if len(pDevEntry.sOnuPersistentData.PersUniConfig) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000853 logger.Debugw(ctx, "reconciling - no uni-configs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000854 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000855 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000856 return
857 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000858 for _, uniData := range pDevEntry.sOnuPersistentData.PersUniConfig {
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000859 //TODO: check for uni-port specific reconcilement in case of multi-uni-port-per-onu-support
860 if len(uniData.PersFlowParams) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000861 logger.Debugw(ctx, "reconciling - no flows have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000862 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000863 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000864 return
865 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000866 var uniPort *onuUniPort
867 var exist bool
dbainbri4d3a0dc2020-12-02 00:33:42 +0000868 uniNo := mkUniPortNum(ctx, dh.pOnuIndication.GetIntfId(), dh.pOnuIndication.GetOnuId(), uint32(uniData.PersUniID))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000869 if uniPort, exist = dh.uniEntityMap[uniNo]; !exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000870 logger.Errorw(ctx, "onuUniPort data not found!", log.Fields{"uniNo": uniNo, "device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000871 return
872 }
873 for _, flowData := range uniData.PersFlowParams {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000874 logger.Debugw(ctx, "add flow with cookie slice", log.Fields{"device-id": dh.deviceID, "cookies": flowData.CookieSlice})
mpagenko01e726e2020-10-23 09:45:29 +0000875 //the slice can be passed 'by value' here, - which internally passes its reference copy
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000876 if _, exist = dh.UniVlanConfigFsmMap[uniData.PersUniID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000877 if err := dh.UniVlanConfigFsmMap[uniData.PersUniID].SetUniFlowParams(ctx, flowData.VlanRuleParams.TpID,
mpagenko01e726e2020-10-23 09:45:29 +0000878 flowData.CookieSlice, uint16(flowData.VlanRuleParams.MatchVid), uint16(flowData.VlanRuleParams.SetVid),
879 uint8(flowData.VlanRuleParams.SetPcp)); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000880 logger.Errorw(ctx, err.Error(), log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000881 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000882 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000883 if err := dh.createVlanFilterFsm(ctx, uniPort, flowData.VlanRuleParams.TpID, flowData.CookieSlice,
mpagenko01e726e2020-10-23 09:45:29 +0000884 uint16(flowData.VlanRuleParams.MatchVid), uint16(flowData.VlanRuleParams.SetVid),
mpagenkofc4f56e2020-11-04 17:17:49 +0000885 uint8(flowData.VlanRuleParams.SetPcp), OmciVlanFilterAddDone); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000886 logger.Errorw(ctx, err.Error(), log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000887 }
888 }
889 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000890 if len(uniData.PersTpPathMap) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000891 logger.Debugw(ctx, "reconciling - no TPs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000892 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000893 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000894 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000895 }
896}
897
dbainbri4d3a0dc2020-12-02 00:33:42 +0000898func (dh *deviceHandler) reconcileMetrics(ctx context.Context) {
899 logger.Debugw(ctx, "reconciling - trigger metrics - to be implemented in scope of VOL-3324!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000900
901 //TODO: reset of reconciling-flag has always to be done in the last reconcile*() function
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000902 dh.stopReconciling(ctx)
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000903}
904
dbainbri4d3a0dc2020-12-02 00:33:42 +0000905func (dh *deviceHandler) deleteDevicePersistencyData(ctx context.Context) error {
906 logger.Debugw(ctx, "delete device persistency data", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000907
dbainbri4d3a0dc2020-12-02 00:33:42 +0000908 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000909 if pDevEntry == nil {
mpagenko2418ab02020-11-12 12:58:06 +0000910 //IfDevEntry does not exist here, no problem - no persistent data should have been stored
dbainbri4d3a0dc2020-12-02 00:33:42 +0000911 logger.Debugw(ctx, "OnuDevice does not exist - nothing to delete", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000912 return nil
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000913 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000914
915 // deadline context to ensure completion of background routines waited for
916 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
Himani Chawlad96df182020-09-28 11:12:02 +0530917 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
dbainbri4d3a0dc2020-12-02 00:33:42 +0000918 dctx, cancel := context.WithDeadline(ctx, deadline)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000919
920 pDevEntry.resetKvProcessingErrorIndication()
921
922 var wg sync.WaitGroup
923 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000924 go pDevEntry.deleteDataFromOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
925 dh.waitForCompletion(ctx, cancel, &wg, "DeleteDevice") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000926
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000927 // TODO: further actions - stop metrics and FSMs, remove device ...
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000928 return pDevEntry.getKvProcessingErrorIndication()
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000929}
930
dbainbri4d3a0dc2020-12-02 00:33:42 +0000931func (dh *deviceHandler) rebootDevice(ctx context.Context, device *voltha.Device) error {
932 logger.Debugw(ctx, "reboot-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300933 if device.ConnectStatus != voltha.ConnectStatus_REACHABLE {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000934 logger.Errorw(ctx, "device-unreachable", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000935 return fmt.Errorf("device-unreachable: %s, %s", dh.deviceID, device.SerialNumber)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300936 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000937 if err := dh.pOnuOmciDevice.reboot(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
Himani Chawla4d908332020-08-31 12:30:20 +0530938 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000939 logger.Errorw(ctx, "error-rebooting-device", log.Fields{"device-id": dh.deviceID, "error": err})
Himani Chawla4d908332020-08-31 12:30:20 +0530940 return err
941 }
mpagenko01e726e2020-10-23 09:45:29 +0000942
943 //transfer the possibly modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +0000944 dh.disableUniPortStateUpdate(ctx)
mpagenko01e726e2020-10-23 09:45:29 +0000945
dbainbri4d3a0dc2020-12-02 00:33:42 +0000946 logger.Debugw(ctx, "call DeviceStateUpdate upon reboot", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +0000947 "OperStatus": voltha.OperStatus_DISCOVERED, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000948 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.ConnectStatus_REACHABLE,
ozgecanetsiae11479f2020-07-06 09:44:47 +0300949 voltha.OperStatus_DISCOVERED); err != nil {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000950 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000951 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300952 return err
953 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000954 if err := dh.deviceReasonUpdate(ctx, drRebooting, true); err != nil {
ozgecanetsiae11479f2020-07-06 09:44:47 +0300955 return err
956 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000957 dh.ReadyForSpecificOmciConfig = false
mpagenko8b07c1b2020-11-26 10:36:31 +0000958 //no specific activity to synchronize any internal FSM to the 'rebooted' state is explicitly done here
959 // the expectation ids for a real device, that it will be synced with the expected following 'down' indication
960 // as BBSIM does not support this testing requires explicite disable/enable device calls in which sequence also
961 // all other FSM's should be synchronized again
ozgecanetsiae11479f2020-07-06 09:44:47 +0300962 return nil
963}
964
mpagenkoc8bba412021-01-15 15:38:44 +0000965//doOnuSwUpgrade initiates the SW download transfer to the ONU and on success activates the (inactive) image
966func (dh *deviceHandler) doOnuSwUpgrade(ctx context.Context, apImageDsc *voltha.ImageDownload) error {
967 logger.Warnw(ctx, "onuSwUpgrade not yet implemented in deviceHandler", log.Fields{
968 "device-id": dh.deviceID, "image-name": (*apImageDsc).Name})
mpagenko057889c2021-01-21 16:51:58 +0000969 //return success to comfort the core processing during integration
970 return nil
971 // TODO!!: also verify error response behavior
972 //return fmt.Errorf("onuSwUpgrade not yet implemented in deviceHandler: %s", dh.deviceID)
mpagenkoc8bba412021-01-15 15:38:44 +0000973}
974
Himani Chawla6d2ae152020-09-02 13:11:20 +0530975// deviceHandler methods that implement the adapters interface requests## end #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000976// #####################################################################################
977
978// ################ to be updated acc. needs of ONU Device ########################
Himani Chawla6d2ae152020-09-02 13:11:20 +0530979// deviceHandler StateMachine related state transition methods ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000980
dbainbri4d3a0dc2020-12-02 00:33:42 +0000981func (dh *deviceHandler) logStateChange(ctx context.Context, e *fsm.Event) {
982 logger.Debugw(ctx, "Device FSM: ", log.Fields{"event name": string(e.Event), "src state": string(e.Src), "dst state": string(e.Dst), "device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000983}
984
985// doStateInit provides the device update to the core
dbainbri4d3a0dc2020-12-02 00:33:42 +0000986func (dh *deviceHandler) doStateInit(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000987
dbainbri4d3a0dc2020-12-02 00:33:42 +0000988 logger.Debug(ctx, "doStateInit-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000989 var err error
990
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000991 // populate what we know. rest comes later after mib sync
992 dh.device.Root = false
993 dh.device.Vendor = "OpenONU"
994 dh.device.Model = "go"
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000995 dh.device.Reason = deviceReasonMap[drActivatingOnu]
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000996 dh.deviceReason = drActivatingOnu
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000997
Holger Hildebrandt24d51952020-05-04 14:03:42 +0000998 dh.logicalDeviceID = dh.deviceID // really needed - what for ??? //TODO!!!
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000999
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001000 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001001 logger.Infow(ctx, "DeviceUpdate", log.Fields{"deviceReason": dh.device.Reason, "device-id": dh.deviceID})
1002 _ = dh.coreProxy.DeviceUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.device)
Himani Chawlac07fda02020-12-09 16:21:21 +05301003 //TODO Need to Update Device Reason To CORE as part of device update userstory
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001004 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001005 logger.Debugw(ctx, "reconciling - don't notify core about DeviceUpdate",
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001006 log.Fields{"device-id": dh.deviceID})
1007 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001008
Himani Chawla4d908332020-08-31 12:30:20 +05301009 dh.parentID = dh.device.ParentId
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001010 dh.ponPortNumber = dh.device.ParentPortNo
1011
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001012 // store proxy parameters for later communication - assumption: invariant, else they have to be requested dynamically!!
1013 dh.ProxyAddressID = dh.device.ProxyAddress.GetDeviceId()
1014 dh.ProxyAddressType = dh.device.ProxyAddress.GetDeviceType()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001015 logger.Debugw(ctx, "device-updated", log.Fields{"device-id": dh.deviceID, "proxyAddressID": dh.ProxyAddressID,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001016 "proxyAddressType": dh.ProxyAddressType, "SNR": dh.device.SerialNumber,
Himani Chawla4d908332020-08-31 12:30:20 +05301017 "ParentId": dh.parentID, "ParentPortNo": dh.ponPortNumber})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001018
1019 /*
1020 self._pon = PonPort.create(self, self._pon_port_number)
1021 self._pon.add_peer(self.parent_id, self._pon_port_number)
1022 self.logger.debug('adding-pon-port-to-agent',
1023 type=self._pon.get_port().type,
1024 admin_state=self._pon.get_port().admin_state,
1025 oper_status=self._pon.get_port().oper_status,
1026 )
1027 */
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001028 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001029 logger.Debugw(ctx, "adding-pon-port", log.Fields{"device-id": dh.deviceID, "ponPortNo": dh.ponPortNumber})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001030 var ponPortNo uint32 = 1
1031 if dh.ponPortNumber != 0 {
1032 ponPortNo = dh.ponPortNumber
1033 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001034
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001035 pPonPort := &voltha.Port{
1036 PortNo: ponPortNo,
1037 Label: fmt.Sprintf("pon-%d", ponPortNo),
1038 Type: voltha.Port_PON_ONU,
1039 OperStatus: voltha.OperStatus_ACTIVE,
Himani Chawla4d908332020-08-31 12:30:20 +05301040 Peers: []*voltha.Port_PeerPort{{DeviceId: dh.parentID, // Peer device is OLT
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001041 PortNo: ponPortNo}}, // Peer port is parent's port number
1042 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001043 if err = dh.coreProxy.PortCreated(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, pPonPort); err != nil {
1044 logger.Fatalf(ctx, "Device FSM: PortCreated-failed-%s", err)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001045 e.Cancel(err)
1046 return
1047 }
1048 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001049 logger.Debugw(ctx, "reconciling - pon-port already added", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001050 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001051 logger.Debug(ctx, "doStateInit-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001052}
1053
1054// postInit setups the DeviceEntry for the conerned device
dbainbri4d3a0dc2020-12-02 00:33:42 +00001055func (dh *deviceHandler) postInit(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001056
dbainbri4d3a0dc2020-12-02 00:33:42 +00001057 logger.Debug(ctx, "postInit-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001058 var err error
1059 /*
1060 dh.Client = oop.NewOpenoltClient(dh.clientCon)
1061 dh.pTransitionMap.Handle(ctx, GrpcConnected)
1062 return nil
1063 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001064 if err = dh.addOnuDeviceEntry(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
1065 logger.Fatalf(ctx, "Device FSM: addOnuDeviceEntry-failed-%s", err)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001066 e.Cancel(err)
1067 return
1068 }
1069
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001070 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001071 go dh.reconcileDeviceOnuInd(ctx)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001072 // reconcilement will be continued after mib download is done
1073 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08001074
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001075 /*
1076 ############################################################################
1077 # Setup Alarm handler
1078 self.events = AdapterEvents(self.core_proxy, device.id, self.logical_device_id,
1079 device.serial_number)
1080 ############################################################################
1081 # Setup PM configuration for this device
1082 # Pass in ONU specific options
1083 kwargs = {
1084 OnuPmMetrics.DEFAULT_FREQUENCY_KEY: OnuPmMetrics.DEFAULT_ONU_COLLECTION_FREQUENCY,
1085 'heartbeat': self.heartbeat,
1086 OnuOmciPmMetrics.OMCI_DEV_KEY: self._onu_omci_device
1087 }
1088 self.logger.debug('create-pm-metrics', device_id=device.id, serial_number=device.serial_number)
1089 self._pm_metrics = OnuPmMetrics(self.events, self.core_proxy, self.device_id,
1090 self.logical_device_id, device.serial_number,
1091 grouped=True, freq_override=False, **kwargs)
1092 pm_config = self._pm_metrics.make_proto()
1093 self._onu_omci_device.set_pm_config(self._pm_metrics.omci_pm.openomci_interval_pm)
1094 self.logger.info("initial-pm-config", device_id=device.id, serial_number=device.serial_number)
1095 yield self.core_proxy.device_pm_config_update(pm_config, init=True)
1096
1097 # Note, ONU ID and UNI intf set in add_uni_port method
1098 self._onu_omci_device.alarm_synchronizer.set_alarm_params(mgr=self.events,
1099 ani_ports=[self._pon])
1100
1101 # Code to Run OMCI Test Action
1102 kwargs_omci_test_action = {
1103 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
1104 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
1105 }
1106 serial_number = device.serial_number
1107 self._test_request = OmciTestRequest(self.core_proxy,
1108 self.omci_agent, self.device_id,
1109 AniG, serial_number,
1110 self.logical_device_id,
1111 exclusive=False,
1112 **kwargs_omci_test_action)
1113
1114 self.enabled = True
1115 else:
1116 self.logger.info('onu-already-activated')
1117 */
Girish Gowdrae09a6202021-01-12 18:10:59 -08001118
dbainbri4d3a0dc2020-12-02 00:33:42 +00001119 logger.Debug(ctx, "postInit-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001120}
1121
1122// doStateConnected get the device info and update to voltha core
1123// for comparison of the original method (not that easy to uncomment): compare here:
1124// voltha-openolt-adapter/adaptercore/device_handler.go
1125// -> this one obviously initiates all communication interfaces of the device ...?
dbainbri4d3a0dc2020-12-02 00:33:42 +00001126func (dh *deviceHandler) doStateConnected(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001127
dbainbri4d3a0dc2020-12-02 00:33:42 +00001128 logger.Debug(ctx, "doStateConnected-started")
Himani Chawla4d908332020-08-31 12:30:20 +05301129 err := errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001130 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001131 logger.Debug(ctx, "doStateConnected-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001132}
1133
1134// doStateUp handle the onu up indication and update to voltha core
dbainbri4d3a0dc2020-12-02 00:33:42 +00001135func (dh *deviceHandler) doStateUp(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001136
dbainbri4d3a0dc2020-12-02 00:33:42 +00001137 logger.Debug(ctx, "doStateUp-started")
Himani Chawla4d908332020-08-31 12:30:20 +05301138 err := errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001139 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001140 logger.Debug(ctx, "doStateUp-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001141
1142 /*
1143 // Synchronous call to update device state - this method is run in its own go routine
1144 if err := dh.coreProxy.DeviceStateUpdate(ctx, dh.device.Id, voltha.ConnectStatus_REACHABLE,
1145 voltha.OperStatus_ACTIVE); err != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001146 logger.Errorw("Failed to update device with OLT UP indication", log.Fields{"device-id": dh.device.Id, "error": err})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001147 return err
1148 }
1149 return nil
1150 */
1151}
1152
1153// doStateDown handle the onu down indication
dbainbri4d3a0dc2020-12-02 00:33:42 +00001154func (dh *deviceHandler) doStateDown(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001155
dbainbri4d3a0dc2020-12-02 00:33:42 +00001156 logger.Debug(ctx, "doStateDown-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001157 var err error
1158
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001159 device := dh.device
1160 if device == nil {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001161 /*TODO: needs to handle error scenarios */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001162 logger.Errorw(ctx, "Failed to fetch handler device", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001163 e.Cancel(err)
1164 return
1165 }
1166
1167 cloned := proto.Clone(device).(*voltha.Device)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001168 logger.Debugw(ctx, "do-state-down", log.Fields{"ClonedDeviceID": cloned.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001169 /*
1170 // Update the all ports state on that device to disable
1171 if er := dh.coreProxy.PortsStateUpdate(ctx, cloned.Id, voltha.OperStatus_UNKNOWN); er != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001172 logger.Errorw("updating-ports-failed", log.Fields{"device-id": device.Id, "error": er})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001173 return er
1174 }
1175
1176 //Update the device oper state and connection status
1177 cloned.OperStatus = voltha.OperStatus_UNKNOWN
1178 cloned.ConnectStatus = common.ConnectStatus_UNREACHABLE
1179 dh.device = cloned
1180
1181 if er := dh.coreProxy.DeviceStateUpdate(ctx, cloned.Id, cloned.ConnectStatus, cloned.OperStatus); er != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001182 logger.Errorw("error-updating-device-state", log.Fields{"device-id": device.Id, "error": er})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001183 return er
1184 }
1185
1186 //get the child device for the parent device
1187 onuDevices, err := dh.coreProxy.GetChildDevices(ctx, dh.device.Id)
1188 if err != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001189 logger.Errorw("failed to get child devices information", log.Fields{"device-id": dh.device.Id, "error": err})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001190 return err
1191 }
1192 for _, onuDevice := range onuDevices.Items {
1193
1194 // Update onu state as down in onu adapter
1195 onuInd := oop.OnuIndication{}
1196 onuInd.OperState = "down"
1197 er := dh.AdapterProxy.SendInterAdapterMessage(ctx, &onuInd, ic.InterAdapterMessageType_ONU_IND_REQUEST,
1198 "openolt", onuDevice.Type, onuDevice.Id, onuDevice.ProxyAddress.DeviceId, "")
1199 if er != nil {
1200 logger.Errorw("Failed to send inter-adapter-message", log.Fields{"OnuInd": onuInd,
mpagenko01e726e2020-10-23 09:45:29 +00001201 "From Adapter": "openolt", "DevieType": onuDevice.Type, "device-id": onuDevice.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001202 //Do not return here and continue to process other ONUs
1203 }
1204 }
1205 // * Discovered ONUs entries need to be cleared , since after OLT
1206 // is up, it starts sending discovery indications again* /
1207 dh.discOnus = sync.Map{}
mpagenko01e726e2020-10-23 09:45:29 +00001208 logger.Debugw("do-state-down-end", log.Fields{"device-id": device.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001209 return nil
1210 */
Himani Chawla4d908332020-08-31 12:30:20 +05301211 err = errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001212 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001213 logger.Debug(ctx, "doStateDown-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001214}
1215
Himani Chawla6d2ae152020-09-02 13:11:20 +05301216// deviceHandler StateMachine related state transition methods ##### end #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001217// #################################################################################
1218
1219// ###################################################
Himani Chawla6d2ae152020-09-02 13:11:20 +05301220// deviceHandler utility methods ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001221
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001222//getOnuDeviceEntry gets the ONU device entry and may wait until its value is defined
dbainbri4d3a0dc2020-12-02 00:33:42 +00001223func (dh *deviceHandler) getOnuDeviceEntry(ctx context.Context, aWait bool) *OnuDeviceEntry {
mpagenko3af1f032020-06-10 08:53:41 +00001224 dh.lockDevice.RLock()
1225 pOnuDeviceEntry := dh.pOnuOmciDevice
1226 if aWait && pOnuDeviceEntry == nil {
1227 //keep the read sema short to allow for subsequent write
1228 dh.lockDevice.RUnlock()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001229 logger.Debugw(ctx, "Waiting for DeviceEntry to be set ...", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001230 // based on concurrent processing the deviceEntry setup may not yet be finished at his point
1231 // so it might be needed to wait here for that event with some timeout
1232 select {
1233 case <-time.After(60 * time.Second): //timer may be discussed ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00001234 logger.Errorw(ctx, "No valid DeviceEntry set after maxTime", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001235 return nil
1236 case <-dh.deviceEntrySet:
dbainbri4d3a0dc2020-12-02 00:33:42 +00001237 logger.Debugw(ctx, "devicEntry ready now - continue", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001238 // if written now, we can return the written value without sema
1239 return dh.pOnuOmciDevice
1240 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001241 }
mpagenko3af1f032020-06-10 08:53:41 +00001242 dh.lockDevice.RUnlock()
1243 return pOnuDeviceEntry
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001244}
1245
Himani Chawla6d2ae152020-09-02 13:11:20 +05301246//setOnuDeviceEntry sets the ONU device entry within the handler
1247func (dh *deviceHandler) setOnuDeviceEntry(
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301248 apDeviceEntry *OnuDeviceEntry, apOnuTp *onuUniTechProf, apOnuMetricsMgr *onuMetricsManager, apOnuAlarmMgr *onuAlarmManager) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001249 dh.lockDevice.Lock()
1250 defer dh.lockDevice.Unlock()
mpagenkoaf801632020-07-03 10:00:42 +00001251 dh.pOnuOmciDevice = apDeviceEntry
1252 dh.pOnuTP = apOnuTp
Girish Gowdrae09a6202021-01-12 18:10:59 -08001253 dh.pOnuMetricsMgr = apOnuMetricsMgr
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301254 dh.pAlarmMgr = apOnuAlarmMgr
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001255}
1256
Himani Chawla6d2ae152020-09-02 13:11:20 +05301257//addOnuDeviceEntry creates a new ONU device or returns the existing
1258func (dh *deviceHandler) addOnuDeviceEntry(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001259 logger.Debugw(ctx, "adding-deviceEntry", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001260
dbainbri4d3a0dc2020-12-02 00:33:42 +00001261 deviceEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001262 if deviceEntry == nil {
1263 /* costum_me_map in python code seems always to be None,
1264 we omit that here first (declaration unclear) -> todo at Adapter specialization ...*/
1265 /* also no 'clock' argument - usage open ...*/
1266 /* and no alarm_db yet (oo.alarm_db) */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +00001267 deviceEntry = newOnuDeviceEntry(ctx, dh)
mpagenko01e726e2020-10-23 09:45:29 +00001268 onuTechProfProc := newOnuUniTechProf(ctx, dh)
Girish Gowdrae09a6202021-01-12 18:10:59 -08001269 onuMetricsMgr := newonuMetricsManager(ctx, dh)
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301270 onuAlarmManager := newAlarmManager(ctx, dh)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001271 //error treatment possible //TODO!!!
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301272 dh.setOnuDeviceEntry(deviceEntry, onuTechProfProc, onuMetricsMgr, onuAlarmManager)
mpagenko3af1f032020-06-10 08:53:41 +00001273 // fire deviceEntry ready event to spread to possibly waiting processing
1274 dh.deviceEntrySet <- true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001275 logger.Debugw(ctx, "onuDeviceEntry-added", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001276 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001277 logger.Debugw(ctx, "onuDeviceEntry-add: Device already exists", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001278 }
1279 // might be updated with some error handling !!!
1280 return nil
1281}
1282
dbainbri4d3a0dc2020-12-02 00:33:42 +00001283func (dh *deviceHandler) createInterface(ctx context.Context, onuind *oop.OnuIndication) error {
1284 logger.Debugw(ctx, "create_interface-started", log.Fields{"OnuId": onuind.GetOnuId(),
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001285 "OnuIntfId": onuind.GetIntfId(), "OnuSerialNumber": onuind.GetSerialNumber()})
1286
1287 dh.pOnuIndication = onuind // let's revise if storing the pointer is sufficient...
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001288
dbainbri4d3a0dc2020-12-02 00:33:42 +00001289 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001290 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001291 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001292 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
1293 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001294 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001295 if err := dh.storePersistentData(ctx); err != nil {
1296 logger.Warnw(ctx, "store persistent data error - continue as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001297 log.Fields{"device-id": dh.deviceID, "err": err})
1298 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001299 logger.Debugw(ctx, "call DeviceStateUpdate upon create interface", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001300 "OperStatus": voltha.OperStatus_ACTIVATING, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001301 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001302 voltha.ConnectStatus_REACHABLE, voltha.OperStatus_ACTIVATING); err != nil {
1303 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001304 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001305 }
1306 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001307 logger.Debugw(ctx, "reconciling - don't notify core about DeviceStateUpdate to ACTIVATING",
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001308 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001309
1310 if !pDevEntry.sOnuPersistentData.PersUniUnlockDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001311 logger.Debugw(ctx, "reconciling - uni-ports were not unlocked before adapter restart - resume with a normal start-up",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001312 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001313 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001314 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001315 }
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001316 // It does not look to me as if makes sense to work with the real core device here, (not the stored clone)?
1317 // in this code the GetDevice would just make a check if the DeviceID's Device still exists in core
1318 // in python code it looks as the started onu_omci_device might have been updated with some new instance state of the core device
mpagenkoaf801632020-07-03 10:00:42 +00001319 // but I would not know why, and the go code anyway does not work with the device directly anymore in the OnuDeviceEntry
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001320 // so let's just try to keep it simple ...
1321 /*
dbainbri4d3a0dc2020-12-02 00:33:42 +00001322 device, err := dh.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), dh.device.Id, dh.device.Id)
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001323 if err != nil || device == nil {
1324 //TODO: needs to handle error scenarios
1325 logger.Errorw("Failed to fetch device device at creating If", log.Fields{"err": err})
1326 return errors.New("Voltha Device not found")
1327 }
1328 */
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001329
dbainbri4d3a0dc2020-12-02 00:33:42 +00001330 if err := pDevEntry.start(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001331 return err
mpagenko3af1f032020-06-10 08:53:41 +00001332 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001333
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001334 _ = dh.deviceReasonUpdate(ctx, drStartingOpenomci, !dh.isReconciling())
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001335
1336 /* this might be a good time for Omci Verify message? */
1337 verifyExec := make(chan bool)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001338 omciVerify := newOmciTestRequest(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko3af1f032020-06-10 08:53:41 +00001339 dh.device.Id, pDevEntry.PDevOmciCC,
mpagenko900ee4b2020-10-12 11:56:34 +00001340 true, true) //exclusive and allowFailure (anyway not yet checked)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001341 omciVerify.performOmciTest(log.WithSpanFromContext(context.TODO(), ctx), verifyExec)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001342
1343 /* give the handler some time here to wait for the OMCi verification result
1344 after Timeout start and try MibUpload FSM anyway
1345 (to prevent stopping on just not supported OMCI verification from ONU) */
1346 select {
1347 case <-time.After(2 * time.Second):
dbainbri4d3a0dc2020-12-02 00:33:42 +00001348 logger.Warn(ctx, "omci start-verification timed out (continue normal)")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001349 case testresult := <-verifyExec:
dbainbri4d3a0dc2020-12-02 00:33:42 +00001350 logger.Infow(ctx, "Omci start verification done", log.Fields{"result": testresult})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001351 }
1352
1353 /* In py code it looks earlier (on activate ..)
1354 # Code to Run OMCI Test Action
1355 kwargs_omci_test_action = {
1356 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
1357 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
1358 }
1359 serial_number = device.serial_number
1360 self._test_request = OmciTestRequest(self.core_proxy,
1361 self.omci_agent, self.device_id,
1362 AniG, serial_number,
1363 self.logical_device_id,
1364 exclusive=False,
1365 **kwargs_omci_test_action)
1366 ...
1367 # Start test requests after a brief pause
1368 if not self._test_request_started:
1369 self._test_request_started = True
1370 tststart = _STARTUP_RETRY_WAIT * (random.randint(1, 5))
1371 reactor.callLater(tststart, self._test_request.start_collector)
1372
1373 */
1374 /* which is then: in omci_test_request.py : */
1375 /*
1376 def start_collector(self, callback=None):
1377 """
1378 Start the collection loop for an adapter if the frequency > 0
1379
1380 :param callback: (callable) Function to call to collect PM data
1381 """
1382 self.logger.info("starting-pm-collection", device_name=self.name, default_freq=self.default_freq)
1383 if callback is None:
1384 callback = self.perform_test_omci
1385
1386 if self.lc is None:
1387 self.lc = LoopingCall(callback)
1388
1389 if self.default_freq > 0:
1390 self.lc.start(interval=self.default_freq / 10)
1391
1392 def perform_test_omci(self):
1393 """
1394 Perform the initial test request
1395 """
1396 ani_g_entities = self._device.configuration.ani_g_entities
1397 ani_g_entities_ids = list(ani_g_entities.keys()) if ani_g_entities \
1398 is not None else None
1399 self._entity_id = ani_g_entities_ids[0]
1400 self.logger.info('perform-test', entity_class=self._entity_class,
1401 entity_id=self._entity_id)
1402 try:
1403 frame = MEFrame(self._entity_class, self._entity_id, []).test()
1404 result = yield self._device.omci_cc.send(frame)
1405 if not result.fields['omci_message'].fields['success_code']:
1406 self.logger.info('Self-Test Submitted Successfully',
1407 code=result.fields[
1408 'omci_message'].fields['success_code'])
1409 else:
1410 raise TestFailure('Test Failure: {}'.format(
1411 result.fields['omci_message'].fields['success_code']))
1412 except TimeoutError as e:
1413 self.deferred.errback(failure.Failure(e))
1414
1415 except Exception as e:
1416 self.logger.exception('perform-test-Error', e=e,
1417 class_id=self._entity_class,
1418 entity_id=self._entity_id)
1419 self.deferred.errback(failure.Failure(e))
1420
1421 */
1422
1423 // PM related heartbeat??? !!!TODO....
1424 //self._heartbeat.enabled = True
1425
mpagenko1cc3cb42020-07-27 15:24:38 +00001426 /* Note: Even though FSM calls look 'synchronous' here, FSM is running in background with the effect that possible errors
1427 * within the MibUpload are not notified in the OnuIndication response, this might be acceptable here,
1428 * as further OltAdapter processing may rely on the deviceReason event 'MibUploadDone' as a result of the FSM processing
Himani Chawla4d908332020-08-31 12:30:20 +05301429 * otherwise some processing synchronization would be required - cmp. e.g TechProfile processing
mpagenko1cc3cb42020-07-27 15:24:38 +00001430 */
1431 //call MibUploadFSM - transition up to state ulStInSync
mpagenko3af1f032020-06-10 08:53:41 +00001432 pMibUlFsm := pDevEntry.pMibUploadFsm.pFsm
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +00001433 if pMibUlFsm != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +00001434 if pMibUlFsm.Is(ulStDisabled) {
1435 if err := pMibUlFsm.Event(ulEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001436 logger.Errorw(ctx, "MibSyncFsm: Can't go to state starting", log.Fields{"device-id": dh.deviceID, "err": err})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001437 return fmt.Errorf("can't go to state starting: %s", dh.deviceID)
Himani Chawla4d908332020-08-31 12:30:20 +05301438 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001439 logger.Debugw(ctx, "MibSyncFsm", log.Fields{"state": string(pMibUlFsm.Current())})
Himani Chawla4d908332020-08-31 12:30:20 +05301440 //Determine ONU status and start/re-start MIB Synchronization tasks
1441 //Determine if this ONU has ever synchronized
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +00001442 if pDevEntry.isNewOnu() {
Himani Chawla4d908332020-08-31 12:30:20 +05301443 if err := pMibUlFsm.Event(ulEvResetMib); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001444 logger.Errorw(ctx, "MibSyncFsm: Can't go to state resetting_mib", log.Fields{"device-id": dh.deviceID, "err": err})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001445 return fmt.Errorf("can't go to state resetting_mib: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001446 }
Himani Chawla4d908332020-08-31 12:30:20 +05301447 } else {
1448 if err := pMibUlFsm.Event(ulEvExamineMds); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001449 logger.Errorw(ctx, "MibSyncFsm: Can't go to state examine_mds", log.Fields{"device-id": dh.deviceID, "err": err})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001450 return fmt.Errorf("can't go to examine_mds: %s", dh.deviceID)
Himani Chawla4d908332020-08-31 12:30:20 +05301451 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001452 logger.Debugw(ctx, "state of MibSyncFsm", log.Fields{"state": string(pMibUlFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001453 }
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +00001454 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001455 logger.Errorw(ctx, "wrong state of MibSyncFsm - want: disabled", log.Fields{"have": string(pMibUlFsm.Current()),
mpagenko01e726e2020-10-23 09:45:29 +00001456 "device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001457 return fmt.Errorf("wrong state of MibSyncFsm: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001458 }
1459 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001460 logger.Errorw(ctx, "MibSyncFsm invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001461 return fmt.Errorf("can't execute MibSync: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001462 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08001463
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001464 if !dh.getCollectorIsRunning() {
1465 // Start PM collector routine
1466 go dh.startCollector(ctx)
1467 }
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301468 go dh.startAlarmManager(ctx)
1469
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001470 return nil
1471}
1472
dbainbri4d3a0dc2020-12-02 00:33:42 +00001473func (dh *deviceHandler) updateInterface(ctx context.Context, onuind *oop.OnuIndication) error {
mpagenko3af1f032020-06-10 08:53:41 +00001474 //state checking to prevent unneeded processing (eg. on ONU 'unreachable' and 'down')
mpagenkofc4f56e2020-11-04 17:17:49 +00001475 // (but note that the deviceReason may also have changed to e.g. TechProf*Delete_Success in between)
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001476 if dh.deviceReason != drStoppingOpenomci {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001477 logger.Debugw(ctx, "updateInterface-started - stopping-device", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +00001478
mpagenko900ee4b2020-10-12 11:56:34 +00001479 //stop all running FSM processing - make use of the DH-state as mirrored in the deviceReason
1480 //here no conflict with aborted FSM's should arise as a complete OMCI initialization is assumed on ONU-Up
1481 //but that might change with some simple MDS check on ONU-Up treatment -> attention!!!
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001482 if err := dh.resetFsms(ctx, true); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001483 logger.Errorw(ctx, "error-updateInterface at FSM stop",
mpagenko900ee4b2020-10-12 11:56:34 +00001484 log.Fields{"device-id": dh.deviceID, "error": err})
1485 // abort: system behavior is just unstable ...
1486 return err
1487 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001488 //all stored persistent data are not valid anymore (loosing knowledge about the connected ONU)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001489 _ = dh.deleteDevicePersistencyData(ctx) //ignore possible errors here and continue, hope is that data is synchronized with new ONU-Up
mpagenko900ee4b2020-10-12 11:56:34 +00001490
1491 //deviceEntry stop without omciCC reset here, regarding the OMCI_CC still valid for this ONU
1492 // - in contrary to disableDevice - compare with processUniDisableStateDoneEvent
1493 //stop the device entry which resets the attached omciCC
dbainbri4d3a0dc2020-12-02 00:33:42 +00001494 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
mpagenko3af1f032020-06-10 08:53:41 +00001495 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001496 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001497 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
mpagenko3af1f032020-06-10 08:53:41 +00001498 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001499 _ = pDevEntry.stop(log.WithSpanFromContext(context.TODO(), ctx), false)
mpagenko3af1f032020-06-10 08:53:41 +00001500
1501 //TODO!!! remove existing traffic profiles
1502 /* from py code, if TP's exist, remove them - not yet implemented
1503 self._tp = dict()
1504 # Let TP download happen again
1505 for uni_id in self._tp_service_specific_task:
1506 self._tp_service_specific_task[uni_id].clear()
1507 for uni_id in self._tech_profile_download_done:
1508 self._tech_profile_download_done[uni_id].clear()
1509 */
1510
dbainbri4d3a0dc2020-12-02 00:33:42 +00001511 dh.disableUniPortStateUpdate(ctx)
mpagenko3af1f032020-06-10 08:53:41 +00001512
mpagenkofc4f56e2020-11-04 17:17:49 +00001513 dh.ReadyForSpecificOmciConfig = false
1514
dbainbri4d3a0dc2020-12-02 00:33:42 +00001515 if err := dh.deviceReasonUpdate(ctx, drStoppingOpenomci, true); err != nil {
mpagenko3af1f032020-06-10 08:53:41 +00001516 // abort: system behavior is just unstable ...
1517 return err
1518 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001519 logger.Debugw(ctx, "call DeviceStateUpdate upon update interface", log.Fields{"ConnectStatus": voltha.ConnectStatus_UNREACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001520 "OperStatus": voltha.OperStatus_DISCOVERED, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001521 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
mpagenko3af1f032020-06-10 08:53:41 +00001522 voltha.ConnectStatus_UNREACHABLE, voltha.OperStatus_DISCOVERED); err != nil {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001523 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001524 logger.Errorw(ctx, "error-updating-device-state unreachable-discovered",
divyadesai4d299552020-08-18 07:13:49 +00001525 log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko3af1f032020-06-10 08:53:41 +00001526 // abort: system behavior is just unstable ...
1527 return err
1528 }
1529 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001530 logger.Debugw(ctx, "updateInterface - device already stopped", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001531 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001532 return nil
1533}
1534
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001535func (dh *deviceHandler) resetFsms(ctx context.Context, includingMibSyncFsm bool) error {
mpagenko900ee4b2020-10-12 11:56:34 +00001536 //all possible FSM's are stopped or reset here to ensure their transition to 'disabled'
1537 //it is not sufficient to stop/reset the latest running FSM as done in previous versions
1538 // as after down/up procedures all FSM's might be active/ongoing (in theory)
1539 // and using the stop/reset event should never harm
1540
dbainbri4d3a0dc2020-12-02 00:33:42 +00001541 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
mpagenko900ee4b2020-10-12 11:56:34 +00001542 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001543 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001544 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
1545 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001546 if includingMibSyncFsm {
1547 //the MibSync FSM might be active all the ONU-active time,
1548 // hence it must be stopped unconditionally
1549 pMibUlFsm := pDevEntry.pMibUploadFsm.pFsm
1550 if pMibUlFsm != nil {
1551 _ = pMibUlFsm.Event(ulEvStop) //TODO!! verify if MibSyncFsm stop-processing is sufficient (to allow it again afterwards)
1552 }
mpagenko900ee4b2020-10-12 11:56:34 +00001553 }
1554 //MibDownload may run
1555 pMibDlFsm := pDevEntry.pMibDownloadFsm.pFsm
1556 if pMibDlFsm != nil {
1557 _ = pMibDlFsm.Event(dlEvReset)
1558 }
1559 //port lock/unlock FSM's may be active
1560 if dh.pUnlockStateFsm != nil {
1561 _ = dh.pUnlockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
1562 }
1563 if dh.pLockStateFsm != nil {
1564 _ = dh.pLockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
1565 }
1566 //techProfile related PonAniConfigFsm FSM may be active
1567 if dh.pOnuTP != nil {
1568 // should always be the case here
1569 // FSM stop maybe encapsulated as OnuTP method - perhaps later in context of module splitting
1570 if dh.pOnuTP.pAniConfigFsm != nil {
Girish Gowdra041dcb32020-11-16 16:54:30 -08001571 for uniTP := range dh.pOnuTP.pAniConfigFsm {
1572 _ = dh.pOnuTP.pAniConfigFsm[uniTP].pAdaptFsm.pFsm.Event(aniEvReset)
1573 }
mpagenko900ee4b2020-10-12 11:56:34 +00001574 }
1575 for _, uniPort := range dh.uniEntityMap {
mpagenko900ee4b2020-10-12 11:56:34 +00001576 // reset the possibly existing VlanConfigFsm
1577 if pVlanFilterFsm, exist := dh.UniVlanConfigFsmMap[uniPort.uniID]; exist {
1578 //VlanFilterFsm exists and was already started
1579 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
1580 if pVlanFilterStatemachine != nil {
mpagenkoa40e99a2020-11-17 13:50:39 +00001581 //reset of all Fsm is always accompanied by global persistency data removal
mpagenko2418ab02020-11-12 12:58:06 +00001582 // no need to remove specific data
1583 pVlanFilterFsm.RequestClearPersistency(false)
1584 //and reset the UniVlanConfig FSM
mpagenko900ee4b2020-10-12 11:56:34 +00001585 _ = pVlanFilterStatemachine.Event(vlanEvReset)
1586 }
1587 }
1588 }
1589 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001590 if dh.getCollectorIsRunning() {
1591 // Stop collector routine
1592 dh.stopCollector <- true
1593 }
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301594 dh.stopAlarmManager <- true
mpagenko900ee4b2020-10-12 11:56:34 +00001595 return nil
1596}
1597
dbainbri4d3a0dc2020-12-02 00:33:42 +00001598func (dh *deviceHandler) processMibDatabaseSyncEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1599 logger.Debugw(ctx, "MibInSync event received, adding uni ports and locking the ONU interfaces", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301600
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001601 _ = dh.deviceReasonUpdate(ctx, drDiscoveryMibsyncComplete, !dh.isReconciling())
dbainbri4d3a0dc2020-12-02 00:33:42 +00001602 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001603 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001604 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001605 return
1606 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001607 i := uint8(0) //UNI Port limit: see MaxUnisPerOnu (by now 16) (OMCI supports max 255 p.b.)
mpagenko8b5fdd22020-12-17 17:58:32 +00001608 if pptpInstKeys := pDevEntry.pOnuDB.getSortedInstKeys(
1609 ctx, me.PhysicalPathTerminationPointEthernetUniClassID); len(pptpInstKeys) > 0 {
1610 for _, mgmtEntityID := range pptpInstKeys {
1611 logger.Debugw(ctx, "Add PPTPEthUni port for MIB-stored instance:", log.Fields{
1612 "device-id": dh.deviceID, "PPTPEthUni EntityID": mgmtEntityID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001613 dh.addUniPort(ctx, mgmtEntityID, i, uniPPTP)
Himani Chawla26e555c2020-08-31 12:30:20 +05301614 i++
1615 }
1616 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001617 logger.Debugw(ctx, "No UniG instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301618 }
mpagenko8b5fdd22020-12-17 17:58:32 +00001619 if veipInstKeys := pDevEntry.pOnuDB.getSortedInstKeys(
1620 ctx, me.VirtualEthernetInterfacePointClassID); len(veipInstKeys) > 0 {
Himani Chawla26e555c2020-08-31 12:30:20 +05301621 for _, mgmtEntityID := range veipInstKeys {
mpagenko8b5fdd22020-12-17 17:58:32 +00001622 logger.Debugw(ctx, "Add VEIP for MIB-stored instance:", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +05301623 "device-id": dh.deviceID, "VEIP EntityID": mgmtEntityID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001624 dh.addUniPort(ctx, mgmtEntityID, i, uniVEIP)
Himani Chawla26e555c2020-08-31 12:30:20 +05301625 i++
1626 }
1627 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001628 logger.Debugw(ctx, "No VEIP instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301629 }
1630 if i == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001631 logger.Warnw(ctx, "No PPTP instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301632 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001633 /* 200605: lock processing after initial MIBUpload removed now as the ONU should be in the lock state per default here */
1634 /* 201117: build_dt-berlin-pod-openonugo_1T8GEM_voltha_DT_openonugo_master_test runs into error TC
1635 * 'Test Disable ONUs and OLT Then Delete ONUs and OLT for DT' with Sercom ONU, which obviously needs
1636 * disable/enable toggling here to allow traffic
1637 * but moreover it might be useful for tracking the interface operState changes if this will be implemented,
1638 * like the py comment says:
1639 * # start by locking all the unis till mib sync and initial mib is downloaded
1640 * # this way we can capture the port down/up events when we are ready
1641 */
Himani Chawla26e555c2020-08-31 12:30:20 +05301642
mpagenkoa40e99a2020-11-17 13:50:39 +00001643 // Init Uni Ports to Admin locked state
1644 // *** should generate UniLockStateDone event *****
1645 if dh.pLockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001646 dh.createUniLockFsm(ctx, true, UniLockStateDone)
mpagenkoa40e99a2020-11-17 13:50:39 +00001647 } else { //LockStateFSM already init
1648 dh.pLockStateFsm.setSuccessEvent(UniLockStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001649 dh.runUniLockFsm(ctx, true)
mpagenkoa40e99a2020-11-17 13:50:39 +00001650 }
1651}
1652
dbainbri4d3a0dc2020-12-02 00:33:42 +00001653func (dh *deviceHandler) processUniLockStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1654 logger.Infow(ctx, "UniLockStateDone event: Starting MIB download", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301655 /* Mib download procedure -
1656 ***** should run over 'downloaded' state and generate MibDownloadDone event *****
1657 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001658 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001659 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001660 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001661 return
1662 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301663 pMibDlFsm := pDevEntry.pMibDownloadFsm.pFsm
1664 if pMibDlFsm != nil {
1665 if pMibDlFsm.Is(dlStDisabled) {
1666 if err := pMibDlFsm.Event(dlEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001667 logger.Errorw(ctx, "MibDownloadFsm: Can't go to state starting", log.Fields{"device-id": dh.deviceID, "err": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05301668 // maybe try a FSM reset and then again ... - TODO!!!
1669 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001670 logger.Debugw(ctx, "MibDownloadFsm", log.Fields{"state": string(pMibDlFsm.Current())})
Himani Chawla26e555c2020-08-31 12:30:20 +05301671 // maybe use more specific states here for the specific download steps ...
1672 if err := pMibDlFsm.Event(dlEvCreateGal); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001673 logger.Errorw(ctx, "MibDownloadFsm: Can't start CreateGal", log.Fields{"device-id": dh.deviceID, "err": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05301674 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001675 logger.Debugw(ctx, "state of MibDownloadFsm", log.Fields{"state": string(pMibDlFsm.Current())})
Himani Chawla26e555c2020-08-31 12:30:20 +05301676 //Begin MIB data download (running autonomously)
1677 }
1678 }
1679 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001680 logger.Errorw(ctx, "wrong state of MibDownloadFsm - want: disabled", log.Fields{"have": string(pMibDlFsm.Current()),
mpagenko01e726e2020-10-23 09:45:29 +00001681 "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301682 // maybe try a FSM reset and then again ... - TODO!!!
1683 }
1684 /***** Mib download started */
1685 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001686 logger.Errorw(ctx, "MibDownloadFsm invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301687 }
1688}
1689
dbainbri4d3a0dc2020-12-02 00:33:42 +00001690func (dh *deviceHandler) processMibDownloadDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1691 logger.Debugw(ctx, "MibDownloadDone event received, unlocking the ONU interfaces", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301692 //initiate DevStateUpdate
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001693 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001694 logger.Debugw(ctx, "call DeviceStateUpdate upon mib-download done", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001695 "OperStatus": voltha.OperStatus_ACTIVE, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001696 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05301697 voltha.ConnectStatus_REACHABLE, voltha.OperStatus_ACTIVE); err != nil {
1698 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001699 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05301700 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001701 logger.Debugw(ctx, "dev state updated to 'Oper.Active'", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301702 }
1703 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001704 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001705 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001706 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001707 return
1708 }
1709 if pDevEntry.sOnuPersistentData.PersUniDisableDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001710 logger.Debugw(ctx, "reconciling - uni-ports were disabled by admin before adapter restart - keep the ports locked and wait for re-enabling",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001711 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001712 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001713 return
1714 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001715 logger.Debugw(ctx, "reconciling - don't notify core about DeviceStateUpdate to ACTIVE",
Himani Chawla26e555c2020-08-31 12:30:20 +05301716 log.Fields{"device-id": dh.deviceID})
1717 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001718 _ = dh.deviceReasonUpdate(ctx, drInitialMibDownloaded, !dh.isReconciling())
Girish Gowdrae0140f02021-02-02 16:55:09 -08001719
1720 // Initialize classical L2 PM Interval Counters
1721 if err := dh.pOnuMetricsMgr.pAdaptFsm.pFsm.Event(l2PmEventInit); err != nil {
1722 // There is no way we should be landing here, but if we do then
1723 // there is nothing much we can do about this other than log error
1724 logger.Errorw(ctx, "error starting l2 pm fsm", log.Fields{"device-id": dh.device.Id, "err": err})
1725 }
1726
mpagenkofc4f56e2020-11-04 17:17:49 +00001727 dh.ReadyForSpecificOmciConfig = true
Himani Chawla26e555c2020-08-31 12:30:20 +05301728 // *** should generate UniUnlockStateDone event *****
1729 if dh.pUnlockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001730 dh.createUniLockFsm(ctx, false, UniUnlockStateDone)
Himani Chawla26e555c2020-08-31 12:30:20 +05301731 } else { //UnlockStateFSM already init
Himani Chawla6d2ae152020-09-02 13:11:20 +05301732 dh.pUnlockStateFsm.setSuccessEvent(UniUnlockStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001733 dh.runUniLockFsm(ctx, false)
Himani Chawla26e555c2020-08-31 12:30:20 +05301734 }
1735}
1736
dbainbri4d3a0dc2020-12-02 00:33:42 +00001737func (dh *deviceHandler) processUniUnlockStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1738 dh.enableUniPortStateUpdate(ctx) //cmp python yield self.enable_ports()
Himani Chawla26e555c2020-08-31 12:30:20 +05301739
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001740 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001741 logger.Infow(ctx, "UniUnlockStateDone event: Sending OnuUp event", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301742 raisedTs := time.Now().UnixNano()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001743 go dh.sendOnuOperStateEvent(ctx, voltha.OperStatus_ACTIVE, dh.deviceID, raisedTs) //cmp python onu_active_event
1744 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001745 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001746 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001747 return
1748 }
1749 pDevEntry.sOnuPersistentData.PersUniUnlockDone = true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001750 if err := dh.storePersistentData(ctx); err != nil {
1751 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001752 log.Fields{"device-id": dh.deviceID, "err": err})
1753 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301754 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001755 logger.Debugw(ctx, "reconciling - don't notify core that onu went to active but trigger tech profile config",
Himani Chawla26e555c2020-08-31 12:30:20 +05301756 log.Fields{"device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001757 go dh.reconcileDeviceTechProf(ctx)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001758 // reconcilement will be continued after ani config is done
Himani Chawla26e555c2020-08-31 12:30:20 +05301759 }
1760}
1761
dbainbri4d3a0dc2020-12-02 00:33:42 +00001762func (dh *deviceHandler) processUniDisableStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1763 logger.Debugw(ctx, "DeviceStateUpdate upon disable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001764 "OperStatus": voltha.OperStatus_UNKNOWN, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001765 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko900ee4b2020-10-12 11:56:34 +00001766 dh.deviceID, voltha.ConnectStatus_REACHABLE, voltha.OperStatus_UNKNOWN); err != nil {
1767 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001768 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko900ee4b2020-10-12 11:56:34 +00001769 }
1770
dbainbri4d3a0dc2020-12-02 00:33:42 +00001771 logger.Debugw(ctx, "DeviceReasonUpdate upon disable", log.Fields{"reason": deviceReasonMap[drOmciAdminLock], "device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001772 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
dbainbri4d3a0dc2020-12-02 00:33:42 +00001773 _ = dh.deviceReasonUpdate(ctx, drOmciAdminLock, true)
mpagenko900ee4b2020-10-12 11:56:34 +00001774
1775 //transfer the modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +00001776 dh.disableUniPortStateUpdate(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001777
dbainbri4d3a0dc2020-12-02 00:33:42 +00001778 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001779 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001780 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001781 return
1782 }
1783 pDevEntry.sOnuPersistentData.PersUniDisableDone = true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001784 if err := dh.storePersistentData(ctx); err != nil {
1785 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001786 log.Fields{"device-id": dh.deviceID, "err": err})
1787 }
mpagenko900ee4b2020-10-12 11:56:34 +00001788}
1789
dbainbri4d3a0dc2020-12-02 00:33:42 +00001790func (dh *deviceHandler) processUniEnableStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1791 logger.Debugw(ctx, "DeviceStateUpdate upon re-enable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001792 "OperStatus": voltha.OperStatus_ACTIVE, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001793 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001794 voltha.OperStatus_ACTIVE); err != nil {
1795 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001796 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko900ee4b2020-10-12 11:56:34 +00001797 }
1798
dbainbri4d3a0dc2020-12-02 00:33:42 +00001799 logger.Debugw(ctx, "DeviceReasonUpdate upon re-enable", log.Fields{
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001800 "reason": deviceReasonMap[drOnuReenabled], "device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001801 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
dbainbri4d3a0dc2020-12-02 00:33:42 +00001802 _ = dh.deviceReasonUpdate(ctx, drOnuReenabled, true)
mpagenko900ee4b2020-10-12 11:56:34 +00001803
1804 //transfer the modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +00001805 dh.enableUniPortStateUpdate(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001806
dbainbri4d3a0dc2020-12-02 00:33:42 +00001807 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001808 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001809 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001810 return
1811 }
1812 pDevEntry.sOnuPersistentData.PersUniDisableDone = false
dbainbri4d3a0dc2020-12-02 00:33:42 +00001813 if err := dh.storePersistentData(ctx); err != nil {
1814 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001815 log.Fields{"device-id": dh.deviceID, "err": err})
1816 }
mpagenko900ee4b2020-10-12 11:56:34 +00001817}
1818
dbainbri4d3a0dc2020-12-02 00:33:42 +00001819func (dh *deviceHandler) processOmciAniConfigDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
mpagenkofc4f56e2020-11-04 17:17:49 +00001820 if devEvent == OmciAniConfigDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001821 logger.Debugw(ctx, "OmciAniConfigDone event received", log.Fields{"device-id": dh.deviceID})
mpagenkofc4f56e2020-11-04 17:17:49 +00001822 // attention: the device reason update is done based on ONU-UNI-Port related activity
1823 // - which may cause some inconsistency
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001824 if dh.deviceReason != drTechProfileConfigDownloadSuccess {
mpagenkofc4f56e2020-11-04 17:17:49 +00001825 // which may be the case from some previous actvity even on this UNI Port (but also other UNI ports)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001826 _ = dh.deviceReasonUpdate(ctx, drTechProfileConfigDownloadSuccess, !dh.isReconciling())
Himani Chawla26e555c2020-08-31 12:30:20 +05301827 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001828 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001829 go dh.reconcileDeviceFlowConfig(ctx)
mpagenkofc4f56e2020-11-04 17:17:49 +00001830 }
1831 } else { // should be the OmciAniResourceRemoved block
dbainbri4d3a0dc2020-12-02 00:33:42 +00001832 logger.Debugw(ctx, "OmciAniResourceRemoved event received", log.Fields{"device-id": dh.deviceID})
mpagenkofc4f56e2020-11-04 17:17:49 +00001833 // attention: the device reason update is done based on ONU-UNI-Port related activity
1834 // - which may cause some inconsistency
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001835 if dh.deviceReason != drTechProfileConfigDeleteSuccess {
mpagenkofc4f56e2020-11-04 17:17:49 +00001836 // which may be the case from some previous actvity even on this ONU port (but also other UNI ports)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001837 _ = dh.deviceReasonUpdate(ctx, drTechProfileConfigDeleteSuccess, true)
mpagenkofc4f56e2020-11-04 17:17:49 +00001838 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001839 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301840}
1841
dbainbri4d3a0dc2020-12-02 00:33:42 +00001842func (dh *deviceHandler) processOmciVlanFilterDoneEvent(ctx context.Context, aDevEvent OnuDeviceEvent) {
1843 logger.Debugw(ctx, "OmciVlanFilterDone event received",
mpagenkofc4f56e2020-11-04 17:17:49 +00001844 log.Fields{"device-id": dh.deviceID, "event": aDevEvent})
Himani Chawla26e555c2020-08-31 12:30:20 +05301845 // attention: the device reason update is done based on ONU-UNI-Port related activity
1846 // - which may cause some inconsistency
Himani Chawla26e555c2020-08-31 12:30:20 +05301847
mpagenkofc4f56e2020-11-04 17:17:49 +00001848 if aDevEvent == OmciVlanFilterAddDone {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001849 if dh.deviceReason != drOmciFlowsPushed {
mpagenkofc4f56e2020-11-04 17:17:49 +00001850 // which may be the case from some previous actvity on another UNI Port of the ONU
1851 // or even some previous flow add activity on the same port
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001852 _ = dh.deviceReasonUpdate(ctx, drOmciFlowsPushed, !dh.isReconciling())
1853 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001854 go dh.reconcileMetrics(ctx)
mpagenkofc4f56e2020-11-04 17:17:49 +00001855 }
1856 }
1857 } else {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001858 if dh.deviceReason != drOmciFlowsDeleted {
mpagenkofc4f56e2020-11-04 17:17:49 +00001859 //not relevant for reconcile
dbainbri4d3a0dc2020-12-02 00:33:42 +00001860 _ = dh.deviceReasonUpdate(ctx, drOmciFlowsDeleted, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001861 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301862 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001863 if err := dh.storePersistentData(ctx); err != nil {
1864 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
1865 log.Fields{"device-id": dh.deviceID, "err": err})
1866 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301867}
1868
Himani Chawla6d2ae152020-09-02 13:11:20 +05301869//deviceProcStatusUpdate evaluates possible processing events and initiates according next activities
dbainbri4d3a0dc2020-12-02 00:33:42 +00001870func (dh *deviceHandler) deviceProcStatusUpdate(ctx context.Context, devEvent OnuDeviceEvent) {
Himani Chawla4d908332020-08-31 12:30:20 +05301871 switch devEvent {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001872 case MibDatabaseSync:
1873 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001874 dh.processMibDatabaseSyncEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001875 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001876 case UniLockStateDone:
1877 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001878 dh.processUniLockStateDoneEvent(ctx, devEvent)
mpagenkoa40e99a2020-11-17 13:50:39 +00001879 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001880 case MibDownloadDone:
1881 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001882 dh.processMibDownloadDoneEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001883 }
1884 case UniUnlockStateDone:
1885 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001886 dh.processUniUnlockStateDoneEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001887 }
mpagenko900ee4b2020-10-12 11:56:34 +00001888 case UniEnableStateDone:
1889 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001890 dh.processUniEnableStateDoneEvent(ctx, devEvent)
mpagenko900ee4b2020-10-12 11:56:34 +00001891 }
1892 case UniDisableStateDone:
1893 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001894 dh.processUniDisableStateDoneEvent(ctx, devEvent)
mpagenko900ee4b2020-10-12 11:56:34 +00001895 }
mpagenkofc4f56e2020-11-04 17:17:49 +00001896 case OmciAniConfigDone, OmciAniResourceRemoved:
mpagenko3dbcdd22020-07-22 07:38:45 +00001897 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001898 dh.processOmciAniConfigDoneEvent(ctx, devEvent)
mpagenko3dbcdd22020-07-22 07:38:45 +00001899 }
mpagenkofc4f56e2020-11-04 17:17:49 +00001900 case OmciVlanFilterAddDone, OmciVlanFilterRemDone:
mpagenkodff5dda2020-08-28 11:52:01 +00001901 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001902 dh.processOmciVlanFilterDoneEvent(ctx, devEvent)
mpagenkodff5dda2020-08-28 11:52:01 +00001903 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001904 default:
1905 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001906 logger.Debugw(ctx, "unhandled-device-event", log.Fields{"device-id": dh.deviceID, "event": devEvent})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001907 }
1908 } //switch
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001909}
1910
dbainbri4d3a0dc2020-12-02 00:33:42 +00001911func (dh *deviceHandler) addUniPort(ctx context.Context, aUniInstNo uint16, aUniID uint8, aPortType uniPortType) {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001912 // parameters are IntfId, OnuId, uniId
dbainbri4d3a0dc2020-12-02 00:33:42 +00001913 uniNo := mkUniPortNum(ctx, dh.pOnuIndication.GetIntfId(), dh.pOnuIndication.GetOnuId(),
Himani Chawla4d908332020-08-31 12:30:20 +05301914 uint32(aUniID))
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001915 if _, present := dh.uniEntityMap[uniNo]; present {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001916 logger.Warnw(ctx, "onuUniPort-add: Port already exists", log.Fields{"for InstanceId": aUniInstNo})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001917 } else {
Himani Chawla4d908332020-08-31 12:30:20 +05301918 //with arguments aUniID, a_portNo, aPortType
dbainbri4d3a0dc2020-12-02 00:33:42 +00001919 pUniPort := newOnuUniPort(ctx, aUniID, uniNo, aUniInstNo, aPortType)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001920 if pUniPort == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001921 logger.Warnw(ctx, "onuUniPort-add: Could not create Port", log.Fields{"for InstanceId": aUniInstNo})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001922 } else {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001923 //store UniPort with the System-PortNumber key
1924 dh.uniEntityMap[uniNo] = pUniPort
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001925 if !dh.isReconciling() {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001926 // create announce the UniPort to the core as VOLTHA Port object
dbainbri4d3a0dc2020-12-02 00:33:42 +00001927 if err := pUniPort.createVolthaPort(ctx, dh); err == nil {
1928 logger.Infow(ctx, "onuUniPort-added", log.Fields{"for PortNo": uniNo})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001929 } //error logging already within UniPort method
1930 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001931 logger.Debugw(ctx, "reconciling - onuUniPort already added", log.Fields{"for PortNo": uniNo, "device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001932 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001933 }
1934 }
1935}
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001936
mpagenko3af1f032020-06-10 08:53:41 +00001937// enableUniPortStateUpdate enables UniPortState and update core port state accordingly
dbainbri4d3a0dc2020-12-02 00:33:42 +00001938func (dh *deviceHandler) enableUniPortStateUpdate(ctx context.Context) {
Holger Hildebrandtbe674422020-05-05 13:05:30 +00001939 // py code was updated 2003xx to activate the real ONU UNI ports per OMCI (VEIP or PPTP)
Himani Chawla4d908332020-08-31 12:30:20 +05301940 // but towards core only the first port active state is signaled
Holger Hildebrandtbe674422020-05-05 13:05:30 +00001941 // with following remark:
1942 // # TODO: for now only support the first UNI given no requirement for multiple uni yet. Also needed to reduce flow
1943 // # load on the core
1944
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001945 // lock_ports(false) as done in py code here is shifted to separate call from devicevent processing
Holger Hildebrandtbe674422020-05-05 13:05:30 +00001946
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001947 for uniNo, uniPort := range dh.uniEntityMap {
mpagenko3af1f032020-06-10 08:53:41 +00001948 // only if this port is validated for operState transfer
Himani Chawla6d2ae152020-09-02 13:11:20 +05301949 if (1<<uniPort.uniID)&activeUniPortStateUpdateMask == (1 << uniPort.uniID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001950 logger.Infow(ctx, "onuUniPort-forced-OperState-ACTIVE", log.Fields{"for PortNo": uniNo})
Himani Chawla6d2ae152020-09-02 13:11:20 +05301951 uniPort.setOperState(vc.OperStatus_ACTIVE)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001952 if !dh.isReconciling() {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001953 //maybe also use getter functions on uniPort - perhaps later ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00001954 go dh.coreProxy.PortStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.Port_ETHERNET_UNI, uniPort.portNo, uniPort.operState)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001955 } else {
Andrea Campanellaab7b6a52020-10-06 16:17:13 +02001956 //TODO there is no retry mechanism, return error
dbainbri4d3a0dc2020-12-02 00:33:42 +00001957 logger.Debugw(ctx, "reconciling - don't notify core about PortStateUpdate", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001958 }
mpagenko3af1f032020-06-10 08:53:41 +00001959 }
1960 }
1961}
1962
1963// Disable UniPortState and update core port state accordingly
dbainbri4d3a0dc2020-12-02 00:33:42 +00001964func (dh *deviceHandler) disableUniPortStateUpdate(ctx context.Context) {
mpagenko3af1f032020-06-10 08:53:41 +00001965 // compare enableUniPortStateUpdate() above
1966 // -> use current restriction to operate only on first UNI port as inherited from actual Py code
1967 for uniNo, uniPort := range dh.uniEntityMap {
1968 // only if this port is validated for operState transfer
Himani Chawla6d2ae152020-09-02 13:11:20 +05301969 if (1<<uniPort.uniID)&activeUniPortStateUpdateMask == (1 << uniPort.uniID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001970 logger.Infow(ctx, "onuUniPort-forced-OperState-UNKNOWN", log.Fields{"for PortNo": uniNo})
Himani Chawla6d2ae152020-09-02 13:11:20 +05301971 uniPort.setOperState(vc.OperStatus_UNKNOWN)
mpagenko3af1f032020-06-10 08:53:41 +00001972 //maybe also use getter functions on uniPort - perhaps later ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00001973 go dh.coreProxy.PortStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.Port_ETHERNET_UNI, uniPort.portNo, uniPort.operState)
Holger Hildebrandtbe674422020-05-05 13:05:30 +00001974 }
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001975 }
1976}
1977
1978// ONU_Active/Inactive announcement on system KAFKA bus
1979// tried to re-use procedure of oltUpDownIndication from openolt_eventmgr.go with used values from Py code
dbainbri4d3a0dc2020-12-02 00:33:42 +00001980func (dh *deviceHandler) sendOnuOperStateEvent(ctx context.Context, aOperState vc.OperStatus_Types, aDeviceID string, raisedTs int64) {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001981 var de voltha.DeviceEvent
1982 eventContext := make(map[string]string)
1983 //Populating event context
1984 // assume giving ParentId in GetDevice twice really gives the ParentDevice (there is no GetParentDevice()...)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001985 parentDevice, err := dh.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), dh.parentID, dh.parentID)
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001986 if err != nil || parentDevice == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001987 logger.Errorw(ctx, "Failed to fetch parent device for OnuEvent",
Himani Chawla4d908332020-08-31 12:30:20 +05301988 log.Fields{"parentID": dh.parentID, "err": err})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001989 }
1990 oltSerialNumber := parentDevice.SerialNumber
1991
1992 eventContext["pon-id"] = strconv.FormatUint(uint64(dh.pOnuIndication.IntfId), 10)
1993 eventContext["onu-id"] = strconv.FormatUint(uint64(dh.pOnuIndication.OnuId), 10)
1994 eventContext["serial-number"] = dh.device.SerialNumber
ssiddiqui1221d1a2021-02-15 11:12:51 +05301995 eventContext["olt-serial-number"] = oltSerialNumber
1996 eventContext["device-id"] = aDeviceID
1997 eventContext["registration-id"] = aDeviceID //py: string(device_id)??
dbainbri4d3a0dc2020-12-02 00:33:42 +00001998 logger.Debugw(ctx, "prepare ONU_ACTIVATED event",
mpagenko01e726e2020-10-23 09:45:29 +00001999 log.Fields{"device-id": aDeviceID, "EventContext": eventContext})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002000
2001 /* Populating device event body */
2002 de.Context = eventContext
Himani Chawla4d908332020-08-31 12:30:20 +05302003 de.ResourceId = aDeviceID
2004 if aOperState == voltha.OperStatus_ACTIVE {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002005 de.DeviceEventName = fmt.Sprintf("%s_%s", cOnuActivatedEvent, "RAISE_EVENT")
2006 de.Description = fmt.Sprintf("%s Event - %s - %s",
2007 cEventObjectType, cOnuActivatedEvent, "Raised")
2008 } else {
2009 de.DeviceEventName = fmt.Sprintf("%s_%s", cOnuActivatedEvent, "CLEAR_EVENT")
2010 de.Description = fmt.Sprintf("%s Event - %s - %s",
2011 cEventObjectType, cOnuActivatedEvent, "Cleared")
2012 }
2013 /* Send event to KAFKA */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002014 if err := dh.EventProxy.SendDeviceEvent(ctx, &de, equipment, pon, raisedTs); err != nil {
2015 logger.Warnw(ctx, "could not send ONU_ACTIVATED event",
Himani Chawla4d908332020-08-31 12:30:20 +05302016 log.Fields{"device-id": aDeviceID, "error": err})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002017 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002018 logger.Debugw(ctx, "ctx, ONU_ACTIVATED event sent to KAFKA",
Himani Chawla4d908332020-08-31 12:30:20 +05302019 log.Fields{"device-id": aDeviceID, "with-EventName": de.DeviceEventName})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002020}
2021
Himani Chawla4d908332020-08-31 12:30:20 +05302022// createUniLockFsm initializes and runs the UniLock FSM to transfer the OMCI related commands for port lock/unlock
dbainbri4d3a0dc2020-12-02 00:33:42 +00002023func (dh *deviceHandler) createUniLockFsm(ctx context.Context, aAdminState bool, devEvent OnuDeviceEvent) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002024 chLSFsm := make(chan Message, 2048)
2025 var sFsmName string
Himani Chawla4d908332020-08-31 12:30:20 +05302026 if aAdminState {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002027 logger.Debugw(ctx, "createLockStateFSM", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002028 sFsmName = "LockStateFSM"
2029 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002030 logger.Debugw(ctx, "createUnlockStateFSM", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002031 sFsmName = "UnLockStateFSM"
2032 }
mpagenko3af1f032020-06-10 08:53:41 +00002033
dbainbri4d3a0dc2020-12-02 00:33:42 +00002034 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
mpagenko3af1f032020-06-10 08:53:41 +00002035 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002036 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00002037 return
2038 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002039 pLSFsm := newLockStateFsm(ctx, pDevEntry.PDevOmciCC, aAdminState, devEvent,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00002040 sFsmName, dh, chLSFsm)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002041 if pLSFsm != nil {
Himani Chawla4d908332020-08-31 12:30:20 +05302042 if aAdminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002043 dh.pLockStateFsm = pLSFsm
2044 } else {
2045 dh.pUnlockStateFsm = pLSFsm
2046 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002047 dh.runUniLockFsm(ctx, aAdminState)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002048 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002049 logger.Errorw(ctx, "LockStateFSM could not be created - abort!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002050 }
2051}
2052
2053// runUniLockFsm starts the UniLock FSM to transfer the OMCI related commands for port lock/unlock
dbainbri4d3a0dc2020-12-02 00:33:42 +00002054func (dh *deviceHandler) runUniLockFsm(ctx context.Context, aAdminState bool) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002055 /* Uni Port lock/unlock procedure -
2056 ***** should run via 'adminDone' state and generate the argument requested event *****
2057 */
2058 var pLSStatemachine *fsm.FSM
Himani Chawla4d908332020-08-31 12:30:20 +05302059 if aAdminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002060 pLSStatemachine = dh.pLockStateFsm.pAdaptFsm.pFsm
2061 //make sure the opposite FSM is not running and if so, terminate it as not relevant anymore
2062 if (dh.pUnlockStateFsm != nil) &&
mpagenko1cc3cb42020-07-27 15:24:38 +00002063 (dh.pUnlockStateFsm.pAdaptFsm.pFsm.Current() != uniStDisabled) {
Himani Chawla4d908332020-08-31 12:30:20 +05302064 _ = dh.pUnlockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002065 }
2066 } else {
2067 pLSStatemachine = dh.pUnlockStateFsm.pAdaptFsm.pFsm
2068 //make sure the opposite FSM is not running and if so, terminate it as not relevant anymore
2069 if (dh.pLockStateFsm != nil) &&
mpagenko1cc3cb42020-07-27 15:24:38 +00002070 (dh.pLockStateFsm.pAdaptFsm.pFsm.Current() != uniStDisabled) {
Himani Chawla4d908332020-08-31 12:30:20 +05302071 _ = dh.pLockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002072 }
2073 }
2074 if pLSStatemachine != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +00002075 if pLSStatemachine.Is(uniStDisabled) {
2076 if err := pLSStatemachine.Event(uniEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002077 logger.Warnw(ctx, "LockStateFSM: can't start", log.Fields{"err": err})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002078 // maybe try a FSM reset and then again ... - TODO!!!
2079 } else {
2080 /***** LockStateFSM started */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002081 logger.Debugw(ctx, "LockStateFSM started", log.Fields{
divyadesai4d299552020-08-18 07:13:49 +00002082 "state": pLSStatemachine.Current(), "device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002083 }
2084 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002085 logger.Warnw(ctx, "wrong state of LockStateFSM - want: disabled", log.Fields{
divyadesai4d299552020-08-18 07:13:49 +00002086 "have": pLSStatemachine.Current(), "device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002087 // maybe try a FSM reset and then again ... - TODO!!!
2088 }
2089 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002090 logger.Errorw(ctx, "LockStateFSM StateMachine invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002091 // maybe try a FSM reset and then again ... - TODO!!!
2092 }
2093}
2094
Himani Chawla6d2ae152020-09-02 13:11:20 +05302095//setBackend provides a DB backend for the specified path on the existing KV client
dbainbri4d3a0dc2020-12-02 00:33:42 +00002096func (dh *deviceHandler) setBackend(ctx context.Context, aBasePathKvStore string) *db.Backend {
Matteo Scandolo127c59d2021-01-28 11:31:18 -08002097
2098 logger.Debugw(ctx, "SetKVStoreBackend", log.Fields{"IpTarget": dh.pOpenOnuAc.KVStoreAddress,
divyadesai4d299552020-08-18 07:13:49 +00002099 "BasePathKvStore": aBasePathKvStore, "device-id": dh.deviceID})
mpagenkoaf801632020-07-03 10:00:42 +00002100 kvbackend := &db.Backend{
2101 Client: dh.pOpenOnuAc.kvClient,
2102 StoreType: dh.pOpenOnuAc.KVStoreType,
2103 /* address config update acc. to [VOL-2736] */
Matteo Scandolo127c59d2021-01-28 11:31:18 -08002104 Address: dh.pOpenOnuAc.KVStoreAddress,
mpagenkoaf801632020-07-03 10:00:42 +00002105 Timeout: dh.pOpenOnuAc.KVStoreTimeout,
2106 PathPrefix: aBasePathKvStore}
Holger Hildebrandtc54939a2020-06-17 08:14:27 +00002107
mpagenkoaf801632020-07-03 10:00:42 +00002108 return kvbackend
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002109}
dbainbri4d3a0dc2020-12-02 00:33:42 +00002110func (dh *deviceHandler) getFlowOfbFields(ctx context.Context, apFlowItem *ofp.OfpFlowStats, loMatchVlan *uint16,
Himani Chawla26e555c2020-08-31 12:30:20 +05302111 loAddPcp *uint8, loIPProto *uint32) {
mpagenkodff5dda2020-08-28 11:52:01 +00002112
mpagenkodff5dda2020-08-28 11:52:01 +00002113 for _, field := range flow.GetOfbFields(apFlowItem) {
2114 switch field.Type {
2115 case of.OxmOfbFieldTypes_OFPXMT_OFB_ETH_TYPE:
2116 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002117 logger.Debugw(ctx, "flow type EthType", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002118 "EthType": strconv.FormatInt(int64(field.GetEthType()), 16)})
2119 }
mpagenko01e726e2020-10-23 09:45:29 +00002120 /* TT related temporary workaround - should not be needed anymore
mpagenkodff5dda2020-08-28 11:52:01 +00002121 case of.OxmOfbFieldTypes_OFPXMT_OFB_IP_PROTO:
2122 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302123 *loIPProto = field.GetIpProto()
mpagenko01e726e2020-10-23 09:45:29 +00002124 logger.Debugw("flow type IpProto", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302125 "IpProto": strconv.FormatInt(int64(*loIPProto), 16)})
2126 if *loIPProto == 2 {
mpagenkodff5dda2020-08-28 11:52:01 +00002127 // some workaround for TT workflow at proto == 2 (IGMP trap) -> ignore the flow
2128 // avoids installing invalid EVTOCD rule
mpagenko01e726e2020-10-23 09:45:29 +00002129 logger.Debugw("flow type IpProto 2: TT workaround: ignore flow",
2130 log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302131 return
mpagenkodff5dda2020-08-28 11:52:01 +00002132 }
2133 }
mpagenko01e726e2020-10-23 09:45:29 +00002134 */
mpagenkodff5dda2020-08-28 11:52:01 +00002135 case of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_VID:
2136 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302137 *loMatchVlan = uint16(field.GetVlanVid())
mpagenkodff5dda2020-08-28 11:52:01 +00002138 loMatchVlanMask := uint16(field.GetVlanVidMask())
Himani Chawla26e555c2020-08-31 12:30:20 +05302139 if !(*loMatchVlan == uint16(of.OfpVlanId_OFPVID_PRESENT) &&
mpagenkodff5dda2020-08-28 11:52:01 +00002140 loMatchVlanMask == uint16(of.OfpVlanId_OFPVID_PRESENT)) {
Himani Chawla26e555c2020-08-31 12:30:20 +05302141 *loMatchVlan = *loMatchVlan & 0xFFF // not transparent: copy only ID bits
mpagenkodff5dda2020-08-28 11:52:01 +00002142 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002143 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302144 "VID": strconv.FormatInt(int64(*loMatchVlan), 16)})
mpagenkodff5dda2020-08-28 11:52:01 +00002145 }
2146 case of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_PCP:
2147 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302148 *loAddPcp = uint8(field.GetVlanPcp())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002149 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002150 "PCP": loAddPcp})
2151 }
2152 case of.OxmOfbFieldTypes_OFPXMT_OFB_UDP_DST:
2153 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002154 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002155 "UDP-DST": strconv.FormatInt(int64(field.GetUdpDst()), 16)})
2156 }
2157 case of.OxmOfbFieldTypes_OFPXMT_OFB_UDP_SRC:
2158 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002159 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002160 "UDP-SRC": strconv.FormatInt(int64(field.GetUdpSrc()), 16)})
2161 }
2162 case of.OxmOfbFieldTypes_OFPXMT_OFB_IPV4_DST:
2163 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002164 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002165 "IPv4-DST": field.GetIpv4Dst()})
2166 }
2167 case of.OxmOfbFieldTypes_OFPXMT_OFB_IPV4_SRC:
2168 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002169 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002170 "IPv4-SRC": field.GetIpv4Src()})
2171 }
2172 case of.OxmOfbFieldTypes_OFPXMT_OFB_METADATA:
2173 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002174 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002175 "Metadata": field.GetTableMetadata()})
2176 }
2177 /*
2178 default:
2179 {
2180 //all other entires ignored
2181 }
2182 */
2183 }
2184 } //for all OfbFields
Himani Chawla26e555c2020-08-31 12:30:20 +05302185}
mpagenkodff5dda2020-08-28 11:52:01 +00002186
dbainbri4d3a0dc2020-12-02 00:33:42 +00002187func (dh *deviceHandler) getFlowActions(ctx context.Context, apFlowItem *ofp.OfpFlowStats, loSetPcp *uint8, loSetVlan *uint16) {
mpagenkodff5dda2020-08-28 11:52:01 +00002188 for _, action := range flow.GetActions(apFlowItem) {
2189 switch action.Type {
2190 /* not used:
2191 case of.OfpActionType_OFPAT_OUTPUT:
2192 {
mpagenko01e726e2020-10-23 09:45:29 +00002193 logger.Debugw("flow action type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002194 "Output": action.GetOutput()})
2195 }
2196 */
2197 case of.OfpActionType_OFPAT_PUSH_VLAN:
2198 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002199 logger.Debugw(ctx, "flow action type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002200 "PushEthType": strconv.FormatInt(int64(action.GetPush().Ethertype), 16)})
2201 }
2202 case of.OfpActionType_OFPAT_SET_FIELD:
2203 {
2204 pActionSetField := action.GetSetField()
2205 if pActionSetField.Field.OxmClass != of.OfpOxmClass_OFPXMC_OPENFLOW_BASIC {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002206 logger.Warnw(ctx, "flow action SetField invalid OxmClass (ignored)", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002207 "OxcmClass": pActionSetField.Field.OxmClass})
2208 }
2209 if pActionSetField.Field.GetOfbField().Type == of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_VID {
Himani Chawla26e555c2020-08-31 12:30:20 +05302210 *loSetVlan = uint16(pActionSetField.Field.GetOfbField().GetVlanVid())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002211 logger.Debugw(ctx, "flow Set VLAN from SetField action", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302212 "SetVlan": strconv.FormatInt(int64(*loSetVlan), 16)})
mpagenkodff5dda2020-08-28 11:52:01 +00002213 } else if pActionSetField.Field.GetOfbField().Type == of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_PCP {
Himani Chawla26e555c2020-08-31 12:30:20 +05302214 *loSetPcp = uint8(pActionSetField.Field.GetOfbField().GetVlanPcp())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002215 logger.Debugw(ctx, "flow Set PCP from SetField action", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302216 "SetPcp": *loSetPcp})
mpagenkodff5dda2020-08-28 11:52:01 +00002217 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002218 logger.Warnw(ctx, "flow action SetField invalid FieldType", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002219 "Type": pActionSetField.Field.GetOfbField().Type})
2220 }
2221 }
2222 /*
2223 default:
2224 {
2225 //all other entires ignored
2226 }
2227 */
2228 }
2229 } //for all Actions
Himani Chawla26e555c2020-08-31 12:30:20 +05302230}
2231
2232//addFlowItemToUniPort parses the actual flow item to add it to the UniPort
dbainbri4d3a0dc2020-12-02 00:33:42 +00002233func (dh *deviceHandler) addFlowItemToUniPort(ctx context.Context, apFlowItem *ofp.OfpFlowStats, apUniPort *onuUniPort) error {
Himani Chawla26e555c2020-08-31 12:30:20 +05302234 var loSetVlan uint16 = uint16(of.OfpVlanId_OFPVID_NONE) //noValidEntry
2235 var loMatchVlan uint16 = uint16(of.OfpVlanId_OFPVID_PRESENT) //reserved VLANID entry
2236 var loAddPcp, loSetPcp uint8
2237 var loIPProto uint32
2238 /* the TechProfileId is part of the flow Metadata - compare also comment within
2239 * OLT-Adapter:openolt_flowmgr.go
2240 * Metadata 8 bytes:
2241 * Most Significant 2 Bytes = Inner VLAN
2242 * Next 2 Bytes = Tech Profile ID(TPID)
2243 * Least Significant 4 Bytes = Port ID
2244 * Flow Metadata carries Tech-Profile (TP) ID and is mandatory in all
2245 * subscriber related flows.
2246 */
2247
dbainbri4d3a0dc2020-12-02 00:33:42 +00002248 metadata := flow.GetMetadataFromWriteMetadataAction(ctx, apFlowItem)
Himani Chawla26e555c2020-08-31 12:30:20 +05302249 if metadata == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002250 logger.Debugw(ctx, "flow-add invalid metadata - abort",
Himani Chawla26e555c2020-08-31 12:30:20 +05302251 log.Fields{"device-id": dh.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +00002252 return fmt.Errorf("flow-add invalid metadata: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +05302253 }
mpagenko551a4d42020-12-08 18:09:20 +00002254 loTpID := uint8(flow.GetTechProfileIDFromWriteMetaData(ctx, metadata))
mpagenko01e726e2020-10-23 09:45:29 +00002255 loCookie := apFlowItem.GetCookie()
2256 loCookieSlice := []uint64{loCookie}
dbainbri4d3a0dc2020-12-02 00:33:42 +00002257 logger.Debugw(ctx, "flow-add base indications", log.Fields{"device-id": dh.deviceID,
mpagenko01e726e2020-10-23 09:45:29 +00002258 "TechProf-Id": loTpID, "cookie": loCookie})
Himani Chawla26e555c2020-08-31 12:30:20 +05302259
dbainbri4d3a0dc2020-12-02 00:33:42 +00002260 dh.getFlowOfbFields(ctx, apFlowItem, &loMatchVlan, &loAddPcp, &loIPProto)
mpagenko01e726e2020-10-23 09:45:29 +00002261 /* TT related temporary workaround - should not be needed anymore
Himani Chawla26e555c2020-08-31 12:30:20 +05302262 if loIPProto == 2 {
2263 // some workaround for TT workflow at proto == 2 (IGMP trap) -> ignore the flow
2264 // avoids installing invalid EVTOCD rule
mpagenko01e726e2020-10-23 09:45:29 +00002265 logger.Debugw("flow-add type IpProto 2: TT workaround: ignore flow",
2266 log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302267 return nil
2268 }
mpagenko01e726e2020-10-23 09:45:29 +00002269 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002270 dh.getFlowActions(ctx, apFlowItem, &loSetPcp, &loSetVlan)
mpagenkodff5dda2020-08-28 11:52:01 +00002271
2272 if loSetVlan == uint16(of.OfpVlanId_OFPVID_NONE) && loMatchVlan != uint16(of.OfpVlanId_OFPVID_PRESENT) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002273 logger.Errorw(ctx, "flow-add aborted - SetVlanId undefined, but MatchVid set", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002274 "device-id": dh.deviceID, "UniPort": apUniPort.portNo,
2275 "set_vid": strconv.FormatInt(int64(loSetVlan), 16),
2276 "match_vid": strconv.FormatInt(int64(loMatchVlan), 16)})
2277 //TODO!!: Use DeviceId within the error response to rwCore
2278 // likewise also in other error response cases to calling components as requested in [VOL-3458]
mpagenko01e726e2020-10-23 09:45:29 +00002279 return fmt.Errorf("flow-add Set/Match VlanId inconsistent: %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002280 }
2281 if loSetVlan == uint16(of.OfpVlanId_OFPVID_NONE) && loMatchVlan == uint16(of.OfpVlanId_OFPVID_PRESENT) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002282 logger.Debugw(ctx, "flow-add vlan-any/copy", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +00002283 loSetVlan = loMatchVlan //both 'transparent' (copy any)
2284 } else {
2285 //looks like OMCI value 4097 (copyFromOuter - for Uni double tagged) is not supported here
2286 if loSetVlan != uint16(of.OfpVlanId_OFPVID_PRESENT) {
2287 // not set to transparent
Himani Chawla26e555c2020-08-31 12:30:20 +05302288 loSetVlan &= 0x0FFF //mask VID bits as prerequisite for vlanConfigFsm
mpagenkodff5dda2020-08-28 11:52:01 +00002289 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002290 logger.Debugw(ctx, "flow-add vlan-set", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +00002291 }
mpagenko9a304ea2020-12-16 15:54:01 +00002292
2293 //mutex protection as the update_flow rpc maybe running concurrently for different flows, perhaps also activities
2294 dh.lockVlanConfig.Lock()
2295 defer dh.lockVlanConfig.Unlock()
2296 logger.Debugw(ctx, "flow-add got lock", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302297 if _, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002298 return dh.UniVlanConfigFsmMap[apUniPort.uniID].SetUniFlowParams(ctx, loTpID, loCookieSlice,
mpagenko01e726e2020-10-23 09:45:29 +00002299 loMatchVlan, loSetVlan, loSetPcp)
mpagenkodff5dda2020-08-28 11:52:01 +00002300 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002301 return dh.createVlanFilterFsm(ctx, apUniPort, loTpID, loCookieSlice,
mpagenkofc4f56e2020-11-04 17:17:49 +00002302 loMatchVlan, loSetVlan, loSetPcp, OmciVlanFilterAddDone)
mpagenko01e726e2020-10-23 09:45:29 +00002303}
2304
2305//removeFlowItemFromUniPort parses the actual flow item to remove it from the UniPort
dbainbri4d3a0dc2020-12-02 00:33:42 +00002306func (dh *deviceHandler) removeFlowItemFromUniPort(ctx context.Context, apFlowItem *ofp.OfpFlowStats, apUniPort *onuUniPort) error {
mpagenko01e726e2020-10-23 09:45:29 +00002307 //optimization and assumption: the flow cookie uniquely identifies the flow and with that the internal rule
2308 //hence only the cookie is used here to find the relevant flow and possibly remove the rule
2309 //no extra check is done on the rule parameters
2310 //accordingly the removal is done only once - for the first found flow with that cookie, even though
2311 // at flow creation is not assured, that the same cookie is not configured for different flows - just assumed
2312 //additionally it is assumed here, that removal can only be done for one cookie per flow in a sequence (different
2313 // from addFlow - where at reconcilement multiple cookies per flow ) can be configured in one sequence)
mpagenkofc4f56e2020-11-04 17:17:49 +00002314 // - some possible 'delete-all' sequence would have to be implemented separately (where the cookies are don't care anyway)
mpagenko01e726e2020-10-23 09:45:29 +00002315 loCookie := apFlowItem.GetCookie()
dbainbri4d3a0dc2020-12-02 00:33:42 +00002316 logger.Debugw(ctx, "flow-remove base indications", log.Fields{"device-id": dh.deviceID, "cookie": loCookie})
mpagenko01e726e2020-10-23 09:45:29 +00002317
2318 /* TT related temporary workaround - should not be needed anymore
2319 for _, field := range flow.GetOfbFields(apFlowItem) {
2320 if field.Type == of.OxmOfbFieldTypes_OFPXMT_OFB_IP_PROTO {
2321 loIPProto := field.GetIpProto()
mpagenko551a4d42020-12-08 18:09:20 +00002322 logger.Debugw(ctx, "flow type IpProto", log.Fields{"device-id": dh.deviceID,
mpagenko01e726e2020-10-23 09:45:29 +00002323 "IpProto": strconv.FormatInt(int64(loIPProto), 16)})
2324 if loIPProto == 2 {
2325 // some workaround for TT workflow on proto == 2 (IGMP trap) -> the flow was not added, no need to remove
mpagenko551a4d42020-12-08 18:09:20 +00002326 logger.Debugw(ctx, "flow-remove type IpProto 2: TT workaround: ignore flow",
mpagenko01e726e2020-10-23 09:45:29 +00002327 log.Fields{"device-id": dh.deviceID})
2328 return nil
2329 }
2330 }
2331 } //for all OfbFields
2332 */
2333
mpagenko9a304ea2020-12-16 15:54:01 +00002334 //mutex protection as the update_flow rpc maybe running concurrently for different flows, perhaps also activities
2335 dh.lockVlanConfig.Lock()
2336 defer dh.lockVlanConfig.Unlock()
mpagenko01e726e2020-10-23 09:45:29 +00002337 if _, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002338 return dh.UniVlanConfigFsmMap[apUniPort.uniID].RemoveUniFlowParams(ctx, loCookie)
mpagenko01e726e2020-10-23 09:45:29 +00002339 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002340 logger.Debugw(ctx, "flow-remove called, but no flow is configured (no VlanConfigFsm, flow already removed) ",
mpagenko01e726e2020-10-23 09:45:29 +00002341 log.Fields{"device-id": dh.deviceID})
2342 //but as we regard the flow as not existing = removed we respond just ok
mpagenkofc4f56e2020-11-04 17:17:49 +00002343 // and treat the reason accordingly (which in the normal removal procedure is initiated by the FSM)
dbainbri4d3a0dc2020-12-02 00:33:42 +00002344 go dh.deviceProcStatusUpdate(ctx, OmciVlanFilterRemDone)
mpagenkofc4f56e2020-11-04 17:17:49 +00002345
mpagenko01e726e2020-10-23 09:45:29 +00002346 return nil
mpagenkodff5dda2020-08-28 11:52:01 +00002347}
2348
Himani Chawla26e555c2020-08-31 12:30:20 +05302349// createVlanFilterFsm initializes and runs the VlanFilter FSM to transfer OMCI related VLAN config
mpagenko9a304ea2020-12-16 15:54:01 +00002350// if this function is called from possibly concurrent processes it must be mutex-protected from the caller!
mpagenko551a4d42020-12-08 18:09:20 +00002351func (dh *deviceHandler) createVlanFilterFsm(ctx context.Context, apUniPort *onuUniPort, aTpID uint8, aCookieSlice []uint64,
mpagenko01e726e2020-10-23 09:45:29 +00002352 aMatchVlan uint16, aSetVlan uint16, aSetPcp uint8, aDevEvent OnuDeviceEvent) error {
mpagenkodff5dda2020-08-28 11:52:01 +00002353 chVlanFilterFsm := make(chan Message, 2048)
2354
dbainbri4d3a0dc2020-12-02 00:33:42 +00002355 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
mpagenkodff5dda2020-08-28 11:52:01 +00002356 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002357 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302358 return fmt.Errorf("no valid OnuDevice for device-id %x - aborting", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002359 }
2360
dbainbri4d3a0dc2020-12-02 00:33:42 +00002361 pVlanFilterFsm := NewUniVlanConfigFsm(ctx, dh, pDevEntry.PDevOmciCC, apUniPort, dh.pOnuTP,
mpagenko01e726e2020-10-23 09:45:29 +00002362 pDevEntry.pOnuDB, aTpID, aDevEvent, "UniVlanConfigFsm", chVlanFilterFsm,
2363 dh.pOpenOnuAc.AcceptIncrementalEvto, aCookieSlice, aMatchVlan, aSetVlan, aSetPcp)
mpagenkodff5dda2020-08-28 11:52:01 +00002364 if pVlanFilterFsm != nil {
Himani Chawla26e555c2020-08-31 12:30:20 +05302365 dh.UniVlanConfigFsmMap[apUniPort.uniID] = pVlanFilterFsm
mpagenkodff5dda2020-08-28 11:52:01 +00002366 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
2367 if pVlanFilterStatemachine != nil {
2368 if pVlanFilterStatemachine.Is(vlanStDisabled) {
2369 if err := pVlanFilterStatemachine.Event(vlanEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002370 logger.Warnw(ctx, "UniVlanConfigFsm: can't start", log.Fields{"err": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05302371 return fmt.Errorf("can't start UniVlanConfigFsm for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002372 }
Himani Chawla26e555c2020-08-31 12:30:20 +05302373 /***** UniVlanConfigFsm started */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002374 logger.Debugw(ctx, "UniVlanConfigFsm started", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +05302375 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2376 "UniPort": apUniPort.portNo})
mpagenkodff5dda2020-08-28 11:52:01 +00002377 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002378 logger.Warnw(ctx, "wrong state of UniVlanConfigFsm - want: disabled", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002379 "have": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302380 return fmt.Errorf("uniVlanConfigFsm not in expected disabled state for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002381 }
2382 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002383 logger.Errorw(ctx, "UniVlanConfigFsm StateMachine invalid - cannot be executed!!", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002384 "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302385 return fmt.Errorf("uniVlanConfigFsm invalid for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002386 }
2387 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002388 logger.Errorw(ctx, "UniVlanConfigFsm could not be created - abort!!", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002389 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
Himani Chawla26e555c2020-08-31 12:30:20 +05302390 return fmt.Errorf("uniVlanConfigFsm could not be created for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002391 }
2392 return nil
2393}
2394
mpagenkofc4f56e2020-11-04 17:17:49 +00002395//VerifyVlanConfigRequest checks on existence of a given uniPort
2396// and starts verification of flow config based on that
mpagenko551a4d42020-12-08 18:09:20 +00002397func (dh *deviceHandler) VerifyVlanConfigRequest(ctx context.Context, aUniID uint8, aTpID uint8) {
mpagenkofc4f56e2020-11-04 17:17:49 +00002398 //ensure that the given uniID is available (configured) in the UniPort class (used for OMCI entities)
2399 var pCurrentUniPort *onuUniPort
2400 for _, uniPort := range dh.uniEntityMap {
2401 // only if this port is validated for operState transfer
2402 if uniPort.uniID == uint8(aUniID) {
2403 pCurrentUniPort = uniPort
2404 break //found - end search loop
2405 }
2406 }
2407 if pCurrentUniPort == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002408 logger.Debugw(ctx, "VerifyVlanConfig aborted: requested uniID not found in PortDB",
mpagenkofc4f56e2020-11-04 17:17:49 +00002409 log.Fields{"device-id": dh.deviceID, "uni-id": aUniID})
2410 return
2411 }
mpagenko551a4d42020-12-08 18:09:20 +00002412 dh.verifyUniVlanConfigRequest(ctx, pCurrentUniPort, aTpID)
mpagenkofc4f56e2020-11-04 17:17:49 +00002413}
2414
mpagenkodff5dda2020-08-28 11:52:01 +00002415//verifyUniVlanConfigRequest checks on existence of flow configuration and starts it accordingly
mpagenko551a4d42020-12-08 18:09:20 +00002416func (dh *deviceHandler) verifyUniVlanConfigRequest(ctx context.Context, apUniPort *onuUniPort, aTpID uint8) {
mpagenkodff5dda2020-08-28 11:52:01 +00002417 //TODO!! verify and start pending flow configuration
2418 //some pending config request my exist in case the UniVlanConfig FSM was already started - with internal data -
2419 //but execution was set to 'on hold' as first the TechProfile config had to be applied
Himani Chawla26e555c2020-08-31 12:30:20 +05302420 if pVlanFilterFsm, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
mpagenkodff5dda2020-08-28 11:52:01 +00002421 //VlanFilterFsm exists and was already started (assumed to wait for TechProfile execution here)
2422 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
2423 if pVlanFilterStatemachine != nil {
mpagenko551a4d42020-12-08 18:09:20 +00002424 //if this was an event of the TP processing that was waited for in the VlanFilterFsm
2425 if pVlanFilterFsm.GetWaitingTpID() == aTpID {
2426 if pVlanFilterStatemachine.Is(vlanStWaitingTechProf) {
2427 if err := pVlanFilterStatemachine.Event(vlanEvContinueConfig); err != nil {
2428 logger.Warnw(ctx, "UniVlanConfigFsm: can't continue processing", log.Fields{"err": err,
2429 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
2430 } else {
2431 /***** UniVlanConfigFsm continued */
2432 logger.Debugw(ctx, "UniVlanConfigFsm continued", log.Fields{
2433 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2434 "UniPort": apUniPort.portNo})
2435 }
2436 } else if pVlanFilterStatemachine.Is(vlanStIncrFlowWaitTP) {
2437 if err := pVlanFilterStatemachine.Event(vlanEvIncrFlowConfig); err != nil {
2438 logger.Warnw(ctx, "UniVlanConfigFsm: can't continue processing", log.Fields{"err": err,
2439 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
2440 } else {
2441 /***** UniVlanConfigFsm continued */
2442 logger.Debugw(ctx, "UniVlanConfigFsm continued with incremental flow", log.Fields{
2443 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2444 "UniPort": apUniPort.portNo})
2445 }
mpagenkodff5dda2020-08-28 11:52:01 +00002446 } else {
mpagenko551a4d42020-12-08 18:09:20 +00002447 logger.Debugw(ctx, "no state of UniVlanConfigFsm to be continued", log.Fields{
2448 "have": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002449 "UniPort": apUniPort.portNo})
2450 }
2451 } else {
mpagenko551a4d42020-12-08 18:09:20 +00002452 logger.Debugw(ctx, "TechProfile Ready event for TpId that was not waited for in the VlanConfigFsm - continue waiting", log.Fields{
2453 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2454 "UniPort": apUniPort.portNo, "techprofile-id (done)": aTpID})
mpagenkodff5dda2020-08-28 11:52:01 +00002455 }
2456 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002457 logger.Debugw(ctx, "UniVlanConfigFsm StateMachine does not exist, no flow processing", log.Fields{
mpagenko551a4d42020-12-08 18:09:20 +00002458 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
mpagenkodff5dda2020-08-28 11:52:01 +00002459 }
mpagenkodff5dda2020-08-28 11:52:01 +00002460 } // else: nothing to do
2461}
2462
2463//RemoveVlanFilterFsm deletes the stored pointer to the VlanConfigFsm
2464// intention is to provide this method to be called from VlanConfigFsm itself, when resources (and methods!) are cleaned up
dbainbri4d3a0dc2020-12-02 00:33:42 +00002465func (dh *deviceHandler) RemoveVlanFilterFsm(ctx context.Context, apUniPort *onuUniPort) {
2466 logger.Debugw(ctx, "remove UniVlanConfigFsm StateMachine", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002467 "device-id": dh.deviceID, "uniPort": apUniPort.portNo})
2468 //save to do, even if entry dows not exist
Himani Chawla26e555c2020-08-31 12:30:20 +05302469 delete(dh.UniVlanConfigFsmMap, apUniPort.uniID)
mpagenkodff5dda2020-08-28 11:52:01 +00002470}
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002471
Girish Gowdra26a40922021-01-29 17:14:34 -08002472//ProcessPendingTpDelete processes any pending TP delete (if available)
2473func (dh *deviceHandler) ProcessPendingTpDelete(ctx context.Context, apUniPort *onuUniPort, aTpID uint8) {
2474 logger.Debugw(ctx, "enter processing pending tp delete", log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2475 if apUniPort == nil {
2476 logger.Errorw(ctx, "uni port is nil", log.Fields{"device-id": dh.deviceID})
2477 return
2478 }
2479 k := uniTP{uniID: apUniPort.uniID, tpID: aTpID}
2480 if pAniConfigFsm, ok := dh.pOnuTP.pAniConfigFsm[k]; pAniConfigFsm != nil && ok {
2481 pAniConfigStatemachine := pAniConfigFsm.pAdaptFsm.pFsm
2482 if pAniConfigStatemachine != nil {
2483 //If the gem port delete was waiting on flow remove, indicate event that flow remove is done
2484 if pAniConfigStatemachine.Is(aniStWaitingFlowRem) {
2485 logger.Debugw(ctx, "ani fsm in aniStWaitingFlowRem state - handling aniEvFlowRemDone event",
2486 log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2487 if err := pAniConfigStatemachine.Event(aniEvFlowRemDone); err != nil {
2488 logger.Warnw(ctx, "AniConfigFsm: can't continue processing", log.Fields{"err": err,
2489 "device-id": dh.deviceID, "UniPort": apUniPort.portNo, "tpID": aTpID})
2490 return
2491 }
2492 } else {
2493 logger.Debugw(ctx, "ani fsm not in aniStWaitingFlowRem state", log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2494 return
2495 }
2496 }
2497 return
2498 }
2499}
2500
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002501//storePersUniFlowConfig updates local storage of OnuUniFlowConfig and writes it into kv-store afterwards to have it
2502//available for potential reconcilement
2503
dbainbri4d3a0dc2020-12-02 00:33:42 +00002504func (dh *deviceHandler) storePersUniFlowConfig(ctx context.Context, aUniID uint8, aUniVlanFlowParams *[]uniVlanFlowParams) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002505
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00002506 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002507 logger.Debugw(ctx, "reconciling - don't store persistent UniFlowConfig", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002508 return nil
2509 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002510 logger.Debugw(ctx, "Store or clear persistent UniFlowConfig", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002511
dbainbri4d3a0dc2020-12-02 00:33:42 +00002512 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002513 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002514 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002515 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
2516 }
2517 pDevEntry.updateOnuUniFlowConfig(aUniID, aUniVlanFlowParams)
2518
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002519 // deadline context to ensure completion of background routines waited for
2520 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
Himani Chawlad96df182020-09-28 11:12:02 +05302521 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002522 dctx, cancel := context.WithDeadline(context.Background(), deadline)
2523
2524 pDevEntry.resetKvProcessingErrorIndication()
2525 var wg sync.WaitGroup
2526 wg.Add(1) // for the 1 go routine to finish
2527
dbainbri4d3a0dc2020-12-02 00:33:42 +00002528 go pDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
2529 dh.waitForCompletion(ctx, cancel, &wg, "UpdateKvStore") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002530
2531 return pDevEntry.getKvProcessingErrorIndication()
2532}
2533
dbainbri4d3a0dc2020-12-02 00:33:42 +00002534func (dh *deviceHandler) waitForCompletion(ctx context.Context, cancel context.CancelFunc, wg *sync.WaitGroup, aCallerIdent string) {
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002535 defer cancel() //ensure termination of context (may be pro forma)
2536 wg.Wait()
dbainbri4d3a0dc2020-12-02 00:33:42 +00002537 logger.Debugw(ctx, "WaitGroup processing completed", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +00002538 "device-id": dh.deviceID, "called from": aCallerIdent})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002539}
2540
dbainbri4d3a0dc2020-12-02 00:33:42 +00002541func (dh *deviceHandler) deviceReasonUpdate(ctx context.Context, deviceReason uint8, notifyCore bool) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002542
2543 dh.deviceReason = deviceReason
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002544 if notifyCore {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002545 //TODO with VOL-3045/VOL-3046: return the error and stop further processing at calling position
dbainbri4d3a0dc2020-12-02 00:33:42 +00002546 if err := dh.coreProxy.DeviceReasonUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, deviceReasonMap[deviceReason]); err != nil {
2547 logger.Errorf(ctx, "DeviceReasonUpdate error: %s",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002548 log.Fields{"device-id": dh.deviceID, "error": err}, deviceReasonMap[deviceReason])
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002549 return err
2550 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002551 logger.Infof(ctx, "DeviceReasonUpdate success: %s - device-id: %s", deviceReasonMap[deviceReason], dh.deviceID)
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002552 return nil
2553 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002554 logger.Infof(ctx, "Don't notify core about DeviceReasonUpdate: %s - device-id: %s", deviceReasonMap[deviceReason], dh.deviceID)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002555 return nil
2556}
2557
dbainbri4d3a0dc2020-12-02 00:33:42 +00002558func (dh *deviceHandler) storePersistentData(ctx context.Context) error {
2559 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002560 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002561 logger.Warnw(ctx, "No valid OnuDevice", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002562 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
2563 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002564 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
2565 dctx, cancel := context.WithDeadline(context.Background(), deadline)
2566
2567 pDevEntry.resetKvProcessingErrorIndication()
2568 var wg sync.WaitGroup
2569 wg.Add(1) // for the 1 go routine to finish
2570
2571 go pDevEntry.updateOnuKvStore(dctx, &wg)
dbainbri4d3a0dc2020-12-02 00:33:42 +00002572 dh.waitForCompletion(ctx, cancel, &wg, "UpdateKvStore") //wait for background process to finish
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002573
2574 if err := pDevEntry.getKvProcessingErrorIndication(); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002575 logger.Warnw(ctx, "KV-processing error", log.Fields{"device-id": dh.deviceID, "err": err})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002576 return err
2577 }
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002578 return nil
2579}
2580
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002581func (dh *deviceHandler) combineErrorStrings(errS ...error) error {
2582 var errStr string = ""
2583 for _, err := range errS {
2584 if err != nil {
2585 errStr = errStr + err.Error() + " "
2586 }
2587 }
2588 if errStr != "" {
2589 return fmt.Errorf("%s: %s", errStr, dh.deviceID)
2590 }
2591 return nil
2592}
ozgecanetsiab5000ef2020-11-27 14:38:20 +03002593
2594// getUniPortMEEntityID takes uniPortNo as the input and returns the Entity ID corresponding to this UNI-G ME Instance
2595func (dh *deviceHandler) getUniPortMEEntityID(uniPortNo uint32) (uint16, error) {
2596 dh.lockDevice.RLock()
2597 defer dh.lockDevice.RUnlock()
2598 if uniPort, ok := dh.uniEntityMap[uniPortNo]; ok {
2599 return uniPort.entityID, nil
2600 }
2601 return 0, errors.New("error-fetching-uni-port")
2602}
Girish Gowdrae09a6202021-01-12 18:10:59 -08002603
2604// updatePmConfig updates the pm metrics config.
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002605func (dh *deviceHandler) updatePmConfig(ctx context.Context, pmConfigs *voltha.PmConfigs) error {
2606 var errorsList []error
2607 logger.Infow(ctx, "update-pm-config", log.Fields{"device-id": dh.device.Id, "new-pm-configs": pmConfigs, "old-pm-config": dh.pmConfigs})
Girish Gowdrae09a6202021-01-12 18:10:59 -08002608
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002609 errorsList = append(dh.handleGlobalPmConfigUpdates(ctx, pmConfigs), errorsList...)
2610 errorsList = append(dh.handleGroupPmConfigUpdates(ctx, pmConfigs), errorsList...)
2611 errorsList = append(dh.handleStandalonePmConfigUpdates(ctx, pmConfigs), errorsList...)
2612
2613 // Note that if more than one pm config field is updated in a given call, it is possible that partial pm config is handled
2614 // successfully.
2615 // TODO: Although it is possible to revert to old config in case of partial failure, the code becomes quite complex. Needs more investigation
2616 // Is it possible the rw-core reverts to old config on partial failure but adapter retains a partial new config?
2617 if len(errorsList) > 0 {
2618 logger.Errorw(ctx, "one-or-more-pm-config-failed", log.Fields{"device-id": dh.deviceID, "pmConfig": dh.pmConfigs})
2619 return fmt.Errorf("errors-handling-one-or-more-pm-config, errors:%v", errorsList)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002620 }
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002621 logger.Infow(ctx, "pm-config-updated", log.Fields{"device-id": dh.deviceID, "pmConfig": dh.pmConfigs})
2622 return nil
Girish Gowdrae09a6202021-01-12 18:10:59 -08002623}
2624
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002625func (dh *deviceHandler) handleGlobalPmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2626 var err error
2627 var errorsList []error
2628 logger.Infow(ctx, "handling-global-pm-config-params", log.Fields{"device-id": dh.device.Id})
2629
2630 if pmConfigs.DefaultFreq != dh.pmConfigs.DefaultFreq {
2631 if err = dh.pOnuMetricsMgr.updateDefaultFrequency(ctx, pmConfigs); err != nil {
2632 errorsList = append(errorsList, err)
2633 }
2634 }
2635
2636 return errorsList
2637}
2638
2639func (dh *deviceHandler) handleGroupPmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2640 var err error
2641 var errorsList []error
2642 logger.Debugw(ctx, "handling-group-pm-config-params", log.Fields{"device-id": dh.device.Id})
2643 // Check if group metric related config is updated
2644 for _, v := range pmConfigs.Groups {
2645 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock()
2646 m, ok := dh.pOnuMetricsMgr.groupMetricMap[v.GroupName]
2647 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2648
2649 if ok && m.frequency != v.GroupFreq {
2650 if err = dh.pOnuMetricsMgr.updateGroupFreq(ctx, v.GroupName, pmConfigs); err != nil {
2651 errorsList = append(errorsList, err)
2652 }
2653 }
2654 if ok && m.enabled != v.Enabled {
2655 if err = dh.pOnuMetricsMgr.updateGroupSupport(ctx, v.GroupName, pmConfigs); err != nil {
2656 errorsList = append(errorsList, err)
2657 }
2658 }
2659 }
2660 return errorsList
2661}
2662
2663func (dh *deviceHandler) handleStandalonePmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2664 var err error
2665 var errorsList []error
2666 logger.Debugw(ctx, "handling-individual-pm-config-params", log.Fields{"device-id": dh.device.Id})
2667 // Check if standalone metric related config is updated
2668 for _, v := range pmConfigs.Metrics {
2669 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock()
Girish Gowdraaf0ad632021-01-27 13:00:01 -08002670 m, ok := dh.pOnuMetricsMgr.standaloneMetricMap[v.Name]
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002671 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2672
2673 if ok && m.frequency != v.SampleFreq {
2674 if err = dh.pOnuMetricsMgr.updateMetricFreq(ctx, v.Name, pmConfigs); err != nil {
2675 errorsList = append(errorsList, err)
2676 }
2677 }
2678 if ok && m.enabled != v.Enabled {
2679 if err = dh.pOnuMetricsMgr.updateMetricSupport(ctx, v.Name, pmConfigs); err != nil {
2680 errorsList = append(errorsList, err)
2681 }
2682 }
2683 }
2684 return errorsList
2685}
2686
2687// nolint: gocyclo
Girish Gowdrae09a6202021-01-12 18:10:59 -08002688func (dh *deviceHandler) startCollector(ctx context.Context) {
2689 logger.Debugf(ctx, "startingCollector")
2690
2691 // Start routine to process OMCI GET Responses
2692 go dh.pOnuMetricsMgr.processOmciMessages(ctx)
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002693 // Initialize the next metric collection time.
2694 // Normally done when the onu_metrics_manager is initialized the first time, but needed again later when ONU is
2695 // reset like onu rebooted.
2696 dh.pOnuMetricsMgr.initializeMetricCollectionTime(ctx)
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002697 dh.setCollectorIsRunning(true)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002698 for {
2699 select {
2700 case <-dh.stopCollector:
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002701 dh.setCollectorIsRunning(false)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002702 logger.Debugw(ctx, "stopping-collector-for-onu", log.Fields{"device-id": dh.device.Id})
Girish Gowdrae0140f02021-02-02 16:55:09 -08002703 // Stop the L2 PM FSM
2704 go func() {
2705 if dh.pOnuMetricsMgr.pAdaptFsm != nil && dh.pOnuMetricsMgr.pAdaptFsm.pFsm != nil {
2706 if err := dh.pOnuMetricsMgr.pAdaptFsm.pFsm.Event(l2PmEventStop); err != nil {
2707 logger.Errorw(ctx, "error calling event", log.Fields{"device-id": dh.deviceID, "err": err})
2708 }
2709 } else {
2710 logger.Errorw(ctx, "metrics manager fsm not initialized", log.Fields{"device-id": dh.deviceID})
2711 }
2712 }()
2713
Girish Gowdrae09a6202021-01-12 18:10:59 -08002714 dh.pOnuMetricsMgr.stopProcessingOmciResponses <- true // Stop the OMCI GET response processing routine
Girish Gowdrae0140f02021-02-02 16:55:09 -08002715 dh.pOnuMetricsMgr.stopTicks <- true
2716
Girish Gowdrae09a6202021-01-12 18:10:59 -08002717 return
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002718 case <-time.After(time.Duration(FrequencyGranularity) * time.Second): // Check every FrequencyGranularity to see if it is time for collecting metrics
2719 if !dh.pmConfigs.FreqOverride { // If FreqOverride is false, then nextGlobalMetricCollectionTime applies
2720 // If the current time is eqaul to or greater than the nextGlobalMetricCollectionTime, collect the group and standalone metrics
2721 if time.Now().Equal(dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime) || time.Now().After(dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime) {
2722 go dh.pOnuMetricsMgr.collectAllGroupAndStandaloneMetrics(ctx)
Girish Gowdraaf0ad632021-01-27 13:00:01 -08002723 // Update the next metric collection time.
2724 dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime = time.Now().Add(time.Duration(dh.pmConfigs.DefaultFreq) * time.Second)
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002725 }
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002726 } else {
2727 if dh.pmConfigs.Grouped { // metrics are managed as a group
2728 // parse through the group and standalone metrics to see it is time to collect their metrics
2729 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock() // Rlock as we are reading groupMetricMap and standaloneMetricMap
Girish Gowdrae09a6202021-01-12 18:10:59 -08002730
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002731 for n, g := range dh.pOnuMetricsMgr.groupMetricMap {
2732 // If the group is enabled AND (current time is equal to OR after nextCollectionInterval, collect the group metric)
Girish Gowdrae0140f02021-02-02 16:55:09 -08002733 // Since the L2 PM counters are collected in a separate FSM, we should avoid those counters in the check.
2734 if g.enabled && !g.isL2PMCounter && (time.Now().Equal(g.nextCollectionInterval) || time.Now().After(g.nextCollectionInterval)) {
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002735 go dh.pOnuMetricsMgr.collectGroupMetric(ctx, n)
2736 }
2737 }
2738 for n, m := range dh.pOnuMetricsMgr.standaloneMetricMap {
2739 // If the standalone is enabled AND (current time is equal to OR after nextCollectionInterval, collect the metric)
2740 if m.enabled && (time.Now().Equal(m.nextCollectionInterval) || time.Now().After(m.nextCollectionInterval)) {
2741 go dh.pOnuMetricsMgr.collectStandaloneMetric(ctx, n)
2742 }
2743 }
2744 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2745
2746 // parse through the group and update the next metric collection time
2747 dh.pOnuMetricsMgr.onuMetricsManagerLock.Lock() // Lock as we are writing the next metric collection time
2748 for _, g := range dh.pOnuMetricsMgr.groupMetricMap {
2749 // If group enabled, and the nextCollectionInterval is old (before or equal to current time), update the next collection time stamp
Girish Gowdrae0140f02021-02-02 16:55:09 -08002750 // Since the L2 PM counters are collected and managed in a separate FSM, we should avoid those counters in the check.
2751 if g.enabled && !g.isL2PMCounter && (g.nextCollectionInterval.Before(time.Now()) || g.nextCollectionInterval.Equal(time.Now())) {
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002752 g.nextCollectionInterval = time.Now().Add(time.Duration(g.frequency) * time.Second)
2753 }
2754 }
2755 // parse through the standalone metrics and update the next metric collection time
2756 for _, m := range dh.pOnuMetricsMgr.standaloneMetricMap {
2757 // If standalone metrics enabled, and the nextCollectionInterval is old (before or equal to current time), update the next collection time stamp
2758 if m.enabled && (m.nextCollectionInterval.Before(time.Now()) || m.nextCollectionInterval.Equal(time.Now())) {
2759 m.nextCollectionInterval = time.Now().Add(time.Duration(m.frequency) * time.Second)
2760 }
2761 }
2762 dh.pOnuMetricsMgr.onuMetricsManagerLock.Unlock()
2763 } /* else { // metrics are not managed as a group
2764 // TODO: We currently do not have standalone metrics. When available, add code here to fetch the metric.
2765 } */
2766 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08002767 }
2768 }
2769}
kesavandfdf77632021-01-26 23:40:33 -05002770
2771func (dh *deviceHandler) getUniPortStatus(ctx context.Context, uniInfo *extension.GetOnuUniInfoRequest) *extension.SingleGetValueResponse {
2772
2773 portStatus := NewUniPortStatus(dh.pOnuOmciDevice.PDevOmciCC)
2774 return portStatus.getUniPortStatus(ctx, uniInfo.UniIndex)
2775}
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002776
2777func (dh *deviceHandler) isFsmInState(ctx context.Context, pFsm *fsm.FSM, wantedState string) bool {
2778 var currentState string
2779 if pFsm != nil {
2780 currentState = pFsm.Current()
2781 if currentState == wantedState {
2782 return true
2783 }
2784 } else {
2785 logger.Warnw(ctx, "FSM not defined!", log.Fields{"wantedState": wantedState, "device-id": dh.deviceID})
2786 }
2787 return false
2788}
2789
2790func (dh *deviceHandler) mibUploadFsmInIdleState(ctx context.Context, idleState string) bool {
2791 return dh.isFsmInState(ctx, dh.pOnuOmciDevice.pMibUploadFsm.pFsm, idleState)
2792}
2793
2794func (dh *deviceHandler) mibDownloadFsmInIdleState(ctx context.Context, idleState string) bool {
2795 return dh.isFsmInState(ctx, dh.pOnuOmciDevice.pMibDownloadFsm.pFsm, idleState)
2796}
2797
2798func (dh *deviceHandler) devUniLockFsmInIdleState(ctx context.Context, idleState string) bool {
2799 return dh.isFsmInState(ctx, dh.pLockStateFsm.pAdaptFsm.pFsm, idleState)
2800}
2801
2802func (dh *deviceHandler) devUniUnlockFsmInIdleState(ctx context.Context, idleState string) bool {
2803 return dh.isFsmInState(ctx, dh.pUnlockStateFsm.pAdaptFsm.pFsm, idleState)
2804}
2805
2806func (dh *deviceHandler) devAniConfigFsmInIdleState(ctx context.Context, idleState string) bool {
2807 if dh.pOnuTP.pAniConfigFsm != nil {
2808 for _, v := range dh.pOnuTP.pAniConfigFsm {
2809 if !dh.isFsmInState(ctx, v.pAdaptFsm.pFsm, idleState) {
2810 return false
2811 }
2812 }
2813 return true
2814 }
2815 logger.Warnw(ctx, "AniConfig FSM not defined!", log.Fields{"device-id": dh.deviceID})
2816 return false
2817}
2818
2819func (dh *deviceHandler) devUniVlanConfigFsmInIdleState(ctx context.Context, idleState string) bool {
2820 if dh.UniVlanConfigFsmMap != nil {
2821 for _, v := range dh.UniVlanConfigFsmMap {
2822 if !dh.isFsmInState(ctx, v.pAdaptFsm.pFsm, idleState) {
2823 return false
2824 }
2825 }
2826 return true
2827 }
2828 logger.Warnw(ctx, "UniVlanConfig FSM not defined!", log.Fields{"device-id": dh.deviceID})
2829 return false
2830}
2831
Girish Gowdrae0140f02021-02-02 16:55:09 -08002832func (dh *deviceHandler) l2PmFsmInIdleState(ctx context.Context, idleState string) bool {
2833 if dh.pOnuMetricsMgr != nil && dh.pOnuMetricsMgr.pAdaptFsm != nil && dh.pOnuMetricsMgr.pAdaptFsm.pFsm != nil {
2834 return dh.isFsmInState(ctx, dh.pOnuMetricsMgr.pAdaptFsm.pFsm, idleState)
2835 }
2836 logger.Warnw(ctx, "L2 PM FSM not defined!", log.Fields{"device-id": dh.deviceID})
2837 return false
2838}
2839
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002840func (dh *deviceHandler) allButCallingFsmInIdleState(ctx context.Context, callingFsm usedOmciConfigFsms) bool {
2841 for fsmName, fsmStruct := range fsmIdleStateFuncMap {
2842 if fsmName != callingFsm && !fsmStruct.idleCheckFunc(dh, ctx, fsmStruct.idleState) {
2843 return false
2844 }
2845 }
2846 return true
2847}
2848
2849func (dh *deviceHandler) prepareReconcilingWithActiveAdapter(ctx context.Context) {
2850 logger.Debugw(ctx, "prepare to reconcile the ONU with adapter using persistency data", log.Fields{"device-id": dh.device.Id})
2851 if err := dh.resetFsms(ctx, false); err != nil {
2852 logger.Errorw(ctx, "reset of FSMs failed!", log.Fields{"device-id": dh.deviceID, "error": err})
2853 // TODO: fatal error reset ONU, delete deviceHandler!
2854 return
2855 }
2856 if !dh.getCollectorIsRunning() {
2857 // Start PM collector routine
2858 go dh.startCollector(ctx)
2859 }
2860 dh.uniEntityMap = make(map[uint32]*onuUniPort)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00002861 dh.startReconciling(ctx)
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002862}
2863
2864func (dh *deviceHandler) setCollectorIsRunning(flagValue bool) {
2865 dh.mutexCollectorFlag.Lock()
2866 dh.collectorIsRunning = flagValue
2867 dh.mutexCollectorFlag.Unlock()
2868}
2869
2870func (dh *deviceHandler) getCollectorIsRunning() bool {
2871 dh.mutexCollectorFlag.RLock()
2872 flagValue := dh.collectorIsRunning
2873 dh.mutexCollectorFlag.RUnlock()
2874 return flagValue
2875}
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05302876
2877func (dh *deviceHandler) startAlarmManager(ctx context.Context) {
2878 logger.Debugf(ctx, "startingAlarmManager")
2879
2880 // Start routine to process OMCI GET Responses
2881 go dh.pAlarmMgr.startOMCIAlarmMessageProcessing(ctx)
2882 if stop := <-dh.stopAlarmManager; stop {
2883 logger.Debugw(ctx, "stopping-collector-for-onu", log.Fields{"device-id": dh.device.Id})
2884 dh.pAlarmMgr.stopProcessingOmciMessages <- true // Stop the OMCI routines if any
2885 }
2886}
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00002887func (dh *deviceHandler) startReconciling(ctx context.Context) {
2888 logger.Debugw(ctx, "start reconciling", log.Fields{"device-id": dh.deviceID})
2889 if !dh.isReconciling() {
2890 go func() {
2891 select {
2892 case <-dh.chReconcilingFinished:
2893 logger.Debugw(ctx, "reconciling has been finished in time",
2894 log.Fields{"device-id": dh.deviceID})
2895 case <-time.After(time.Duration(cReconcilingTimeout) * time.Second):
2896 logger.Errorw(ctx, "timeout waiting for reconciling to be finished!",
2897 log.Fields{"device-id": dh.deviceID})
2898 }
2899 dh.mutexReconcilingFlag.Lock()
2900 dh.reconciling = false
2901 dh.mutexReconcilingFlag.Unlock()
2902 }()
2903 dh.mutexReconcilingFlag.Lock()
2904 dh.reconciling = true
2905 dh.mutexReconcilingFlag.Unlock()
2906 } else {
2907 logger.Warnw(ctx, "reconciling is already running", log.Fields{"device-id": dh.deviceID})
2908 }
2909}
2910
2911func (dh *deviceHandler) stopReconciling(ctx context.Context) {
2912 logger.Debugw(ctx, "stop reconciling", log.Fields{"device-id": dh.deviceID})
2913 if dh.isReconciling() {
2914 dh.chReconcilingFinished <- true
2915 } else {
2916 logger.Infow(ctx, "reconciling is not running", log.Fields{"device-id": dh.deviceID})
2917 }
2918}
2919
2920func (dh *deviceHandler) isReconciling() bool {
2921 dh.mutexReconcilingFlag.RLock()
2922 value := dh.reconciling
2923 dh.mutexReconcilingFlag.RUnlock()
2924 return value
2925}