blob: 556fe62f84cdc0488bffe6322b391b6c704f44b9 [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"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000022 "errors"
23 "fmt"
Holger Hildebrandt24d51952020-05-04 14:03:42 +000024 "strconv"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000025 "sync"
26 "time"
27
28 "github.com/gogo/protobuf/proto"
29 "github.com/golang/protobuf/ptypes"
30 "github.com/looplab/fsm"
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +000031 me "github.com/opencord/omci-lib-go/generated"
dbainbri4d3a0dc2020-12-02 00:33:42 +000032 "github.com/opencord/voltha-lib-go/v4/pkg/adapters/adapterif"
33 "github.com/opencord/voltha-lib-go/v4/pkg/db"
Himani Chawlac07fda02020-12-09 16:21:21 +053034 "github.com/opencord/voltha-lib-go/v4/pkg/events/eventif"
dbainbri4d3a0dc2020-12-02 00:33:42 +000035 flow "github.com/opencord/voltha-lib-go/v4/pkg/flows"
36 "github.com/opencord/voltha-lib-go/v4/pkg/log"
37 vc "github.com/opencord/voltha-protos/v4/go/common"
kesavandfdf77632021-01-26 23:40:33 -050038 "github.com/opencord/voltha-protos/v4/go/extension"
dbainbri4d3a0dc2020-12-02 00:33:42 +000039 ic "github.com/opencord/voltha-protos/v4/go/inter_container"
40 "github.com/opencord/voltha-protos/v4/go/openflow_13"
41 of "github.com/opencord/voltha-protos/v4/go/openflow_13"
42 ofp "github.com/opencord/voltha-protos/v4/go/openflow_13"
43 oop "github.com/opencord/voltha-protos/v4/go/openolt"
44 "github.com/opencord/voltha-protos/v4/go/voltha"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000045)
46
47/*
48// Constants for number of retries and for timeout
49const (
50 MaxRetry = 10
51 MaxTimeOutInMs = 500
52)
53*/
54
mpagenko1cc3cb42020-07-27 15:24:38 +000055const (
56 // events of Device FSM
57 devEvDeviceInit = "devEvDeviceInit"
58 devEvGrpcConnected = "devEvGrpcConnected"
59 devEvGrpcDisconnected = "devEvGrpcDisconnected"
60 devEvDeviceUpInd = "devEvDeviceUpInd"
61 devEvDeviceDownInd = "devEvDeviceDownInd"
62)
63const (
64 // states of Device FSM
65 devStNull = "devStNull"
66 devStDown = "devStDown"
67 devStInit = "devStInit"
68 devStConnected = "devStConnected"
69 devStUp = "devStUp"
70)
71
Holger Hildebrandt24d51952020-05-04 14:03:42 +000072//Event category and subcategory definitions - same as defiend for OLT in eventmgr.go - should be done more centrally
73const (
Himani Chawla4d908332020-08-31 12:30:20 +053074 pon = voltha.EventSubCategory_PON
75 //olt = voltha.EventSubCategory_OLT
76 //ont = voltha.EventSubCategory_ONT
77 //onu = voltha.EventSubCategory_ONU
78 //nni = voltha.EventSubCategory_NNI
79 //service = voltha.EventCategory_SERVICE
80 //security = voltha.EventCategory_SECURITY
81 equipment = voltha.EventCategory_EQUIPMENT
82 //processing = voltha.EventCategory_PROCESSING
83 //environment = voltha.EventCategory_ENVIRONMENT
84 //communication = voltha.EventCategory_COMMUNICATION
Holger Hildebrandt24d51952020-05-04 14:03:42 +000085)
86
87const (
88 cEventObjectType = "ONU"
89)
90const (
91 cOnuActivatedEvent = "ONU_ACTIVATED"
92)
93
Holger Hildebrandt10d98192021-01-27 15:29:31 +000094type usedOmciConfigFsms int
95
96const (
97 cUploadFsm usedOmciConfigFsms = iota
98 cDownloadFsm
99 cUniLockFsm
100 cUniUnLockFsm
101 cAniConfigFsm
102 cUniVlanConfigFsm
Girish Gowdrae0140f02021-02-02 16:55:09 -0800103 cL2PmFsm
mpagenko80622a52021-02-09 16:53:23 +0000104 cOnuUpgradeFsm
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000105)
106
mpagenkof1fc3862021-02-16 10:09:52 +0000107type omciIdleCheckStruct struct {
108 omciIdleCheckFunc func(*deviceHandler, context.Context, usedOmciConfigFsms, string) bool
109 omciIdleState string
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000110}
111
mpagenkof1fc3862021-02-16 10:09:52 +0000112var fsmOmciIdleStateFuncMap = map[usedOmciConfigFsms]omciIdleCheckStruct{
113 cUploadFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cMibUlFsmIdleState},
114 cDownloadFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cMibDlFsmIdleState},
115 cUniLockFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cUniFsmIdleState},
116 cUniUnLockFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cUniFsmIdleState},
117 cAniConfigFsm: {(*deviceHandler).isAniConfigFsmInOmciIdleState, cAniFsmIdleState},
118 cUniVlanConfigFsm: {(*deviceHandler).isUniVlanConfigFsmInOmciIdleState, cVlanFsmIdleState},
119 cL2PmFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cL2PmFsmIdleState},
mpagenko80622a52021-02-09 16:53:23 +0000120 cOnuUpgradeFsm: {(*deviceHandler).isFsmInOmciIdleStateDefault, cOnuUpgradeFsmIdleState},
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000121}
122
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000123const (
124 // device reasons
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000125 drUnset = 0
126 drActivatingOnu = 1
127 drStartingOpenomci = 2
128 drDiscoveryMibsyncComplete = 3
129 drInitialMibDownloaded = 4
130 drTechProfileConfigDownloadSuccess = 5
131 drOmciFlowsPushed = 6
132 drOmciAdminLock = 7
133 drOnuReenabled = 8
134 drStoppingOpenomci = 9
135 drRebooting = 10
136 drOmciFlowsDeleted = 11
137 drTechProfileConfigDeleteSuccess = 12
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000138)
139
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000140var deviceReasonMap = map[uint8]string{
141 drUnset: "unset",
142 drActivatingOnu: "activating-onu",
143 drStartingOpenomci: "starting-openomci",
144 drDiscoveryMibsyncComplete: "discovery-mibsync-complete",
145 drInitialMibDownloaded: "initial-mib-downloaded",
146 drTechProfileConfigDownloadSuccess: "tech-profile-config-download-success",
147 drOmciFlowsPushed: "omci-flows-pushed",
148 drOmciAdminLock: "omci-admin-lock",
149 drOnuReenabled: "onu-reenabled",
150 drStoppingOpenomci: "stopping-openomci",
151 drRebooting: "rebooting",
152 drOmciFlowsDeleted: "omci-flows-deleted",
153 drTechProfileConfigDeleteSuccess: "tech-profile-config-delete-success",
154}
155
Himani Chawla6d2ae152020-09-02 13:11:20 +0530156//deviceHandler will interact with the ONU ? device.
157type deviceHandler struct {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000158 deviceID string
159 DeviceType string
160 adminState string
161 device *voltha.Device
162 logicalDeviceID string
163 ProxyAddressID string
164 ProxyAddressType string
Himani Chawla4d908332020-08-31 12:30:20 +0530165 parentID string
Holger Hildebrandt24d51952020-05-04 14:03:42 +0000166 ponPortNumber uint32
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000167
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000168 coreProxy adapterif.CoreProxy
169 AdapterProxy adapterif.AdapterProxy
Himani Chawlac07fda02020-12-09 16:21:21 +0530170 EventProxy eventif.EventProxy
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000171
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800172 pmConfigs *voltha.PmConfigs
Girish Gowdrae09a6202021-01-12 18:10:59 -0800173
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000174 pOpenOnuAc *OpenONUAC
175 pDeviceStateFsm *fsm.FSM
Himani Chawla4d908332020-08-31 12:30:20 +0530176 //pPonPort *voltha.Port
mpagenko3af1f032020-06-10 08:53:41 +0000177 deviceEntrySet chan bool //channel for DeviceEntry set event
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000178 pOnuOmciDevice *OnuDeviceEntry
Himani Chawla6d2ae152020-09-02 13:11:20 +0530179 pOnuTP *onuUniTechProf
Girish Gowdrae09a6202021-01-12 18:10:59 -0800180 pOnuMetricsMgr *onuMetricsManager
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530181 pAlarmMgr *onuAlarmManager
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000182 exitChannel chan int
183 lockDevice sync.RWMutex
Holger Hildebrandt24d51952020-05-04 14:03:42 +0000184 pOnuIndication *oop.OnuIndication
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000185 deviceReason uint8
Himani Chawla6d2ae152020-09-02 13:11:20 +0530186 pLockStateFsm *lockStateFsm
187 pUnlockStateFsm *lockStateFsm
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000188
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000189 //flowMgr *OpenOltFlowMgr
190 //eventMgr *OpenOltEventMgr
191 //resourceMgr *rsrcMgr.OpenOltResourceMgr
192
193 //discOnus sync.Map
194 //onus sync.Map
195 //portStats *OpenOltStatisticsMgr
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000196 collectorIsRunning bool
197 mutexCollectorFlag sync.RWMutex
mpagenkofc4f56e2020-11-04 17:17:49 +0000198 stopCollector chan bool
Himani Chawla4c1d4c72021-02-18 12:14:31 +0530199 alarmManagerIsRunning bool
200 mutextAlarmManagerFlag sync.RWMutex
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
mpagenkof1fc3862021-02-16 10:09:52 +0000204 mutexKvStoreContext sync.Mutex
205 lockVlanConfig sync.RWMutex
mpagenkofc4f56e2020-11-04 17:17:49 +0000206 UniVlanConfigFsmMap map[uint8]*UniVlanConfigFsm
mpagenko80622a52021-02-09 16:53:23 +0000207 lockUpgradeFsm sync.RWMutex
208 pOnuUpradeFsm *OnuUpgradeFsm
mpagenkofc4f56e2020-11-04 17:17:49 +0000209 reconciling bool
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000210 mutexReconcilingFlag sync.RWMutex
211 chReconcilingFinished chan bool //channel to indicate that reconciling has been finished
mpagenkofc4f56e2020-11-04 17:17:49 +0000212 ReadyForSpecificOmciConfig bool
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000213}
214
Himani Chawla6d2ae152020-09-02 13:11:20 +0530215//newDeviceHandler creates a new device handler
Himani Chawlac07fda02020-12-09 16:21:21 +0530216func 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 +0530217 var dh deviceHandler
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000218 dh.coreProxy = cp
219 dh.AdapterProxy = ap
220 dh.EventProxy = ep
221 cloned := (proto.Clone(device)).(*voltha.Device)
222 dh.deviceID = cloned.Id
223 dh.DeviceType = cloned.Type
224 dh.adminState = "up"
225 dh.device = cloned
226 dh.pOpenOnuAc = adapter
227 dh.exitChannel = make(chan int, 1)
228 dh.lockDevice = sync.RWMutex{}
mpagenko3af1f032020-06-10 08:53:41 +0000229 dh.deviceEntrySet = make(chan bool, 1)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000230 dh.collectorIsRunning = false
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000231 dh.stopCollector = make(chan bool, 2)
Himani Chawla4c1d4c72021-02-18 12:14:31 +0530232 dh.alarmManagerIsRunning = false
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530233 dh.stopAlarmManager = make(chan bool, 2)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000234 dh.stopHeartbeatCheck = make(chan bool, 2)
235 //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 +0000236 //TODO initialize the support classes.
Himani Chawla6d2ae152020-09-02 13:11:20 +0530237 dh.uniEntityMap = make(map[uint32]*onuUniPort)
mpagenkof1fc3862021-02-16 10:09:52 +0000238 dh.lockVlanConfig = sync.RWMutex{}
mpagenko80622a52021-02-09 16:53:23 +0000239 dh.lockUpgradeFsm = sync.RWMutex{}
mpagenkodff5dda2020-08-28 11:52:01 +0000240 dh.UniVlanConfigFsmMap = make(map[uint8]*UniVlanConfigFsm)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000241 dh.reconciling = false
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000242 dh.chReconcilingFinished = make(chan bool)
mpagenkofc4f56e2020-11-04 17:17:49 +0000243 dh.ReadyForSpecificOmciConfig = false
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000244
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800245 if dh.device.PmConfigs != nil { // can happen after onu adapter restart
246 dh.pmConfigs = cloned.PmConfigs
247 } /* else {
248 // will be populated when onu_metrics_mananger is initialized.
249 }*/
Girish Gowdrae09a6202021-01-12 18:10:59 -0800250
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000251 // Device related state machine
252 dh.pDeviceStateFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +0000253 devStNull,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000254 fsm.Events{
mpagenko1cc3cb42020-07-27 15:24:38 +0000255 {Name: devEvDeviceInit, Src: []string{devStNull, devStDown}, Dst: devStInit},
256 {Name: devEvGrpcConnected, Src: []string{devStInit}, Dst: devStConnected},
257 {Name: devEvGrpcDisconnected, Src: []string{devStConnected, devStDown}, Dst: devStInit},
258 {Name: devEvDeviceUpInd, Src: []string{devStConnected, devStDown}, Dst: devStUp},
259 {Name: devEvDeviceDownInd, Src: []string{devStUp}, Dst: devStDown},
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000260 },
261 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000262 "before_event": func(e *fsm.Event) { dh.logStateChange(ctx, e) },
263 ("before_" + devEvDeviceInit): func(e *fsm.Event) { dh.doStateInit(ctx, e) },
264 ("after_" + devEvDeviceInit): func(e *fsm.Event) { dh.postInit(ctx, e) },
265 ("before_" + devEvGrpcConnected): func(e *fsm.Event) { dh.doStateConnected(ctx, e) },
266 ("before_" + devEvGrpcDisconnected): func(e *fsm.Event) { dh.doStateInit(ctx, e) },
267 ("after_" + devEvGrpcDisconnected): func(e *fsm.Event) { dh.postInit(ctx, e) },
268 ("before_" + devEvDeviceUpInd): func(e *fsm.Event) { dh.doStateUp(ctx, e) },
269 ("before_" + devEvDeviceDownInd): func(e *fsm.Event) { dh.doStateDown(ctx, e) },
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000270 },
271 )
mpagenkoaf801632020-07-03 10:00:42 +0000272
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000273 return &dh
274}
275
Himani Chawla6d2ae152020-09-02 13:11:20 +0530276// start save the device to the data model
277func (dh *deviceHandler) start(ctx context.Context) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000278 logger.Debugw(ctx, "starting-device-handler", log.Fields{"device": dh.device, "device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000279 // Add the initial device to the local model
dbainbri4d3a0dc2020-12-02 00:33:42 +0000280 logger.Debug(ctx, "device-handler-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000281}
282
Himani Chawla4d908332020-08-31 12:30:20 +0530283/*
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000284// stop stops the device dh. Not much to do for now
Himani Chawla6d2ae152020-09-02 13:11:20 +0530285func (dh *deviceHandler) stop(ctx context.Context) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000286 logger.Debug("stopping-device-handler")
287 dh.exitChannel <- 1
288}
Himani Chawla4d908332020-08-31 12:30:20 +0530289*/
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000290
291// ##########################################################################################
Himani Chawla6d2ae152020-09-02 13:11:20 +0530292// deviceHandler methods that implement the adapters interface requests ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000293
Girish Gowdrae0140f02021-02-02 16:55:09 -0800294//adoptOrReconcileDevice adopts the ONU device
Himani Chawla6d2ae152020-09-02 13:11:20 +0530295func (dh *deviceHandler) adoptOrReconcileDevice(ctx context.Context, device *voltha.Device) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000296 logger.Debugw(ctx, "Adopt_or_reconcile_device", log.Fields{"device-id": device.Id, "Address": device.GetHostAndPort()})
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())})
mpagenko1cc3cb42020-07-27 15:24:38 +0000299 if dh.pDeviceStateFsm.Is(devStNull) {
300 if err := dh.pDeviceStateFsm.Event(devEvDeviceInit); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000301 logger.Errorw(ctx, "Device FSM: Can't go to state DeviceInit", log.Fields{"err": err})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000302 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000303 logger.Debugw(ctx, "Device FSM: ", log.Fields{"state": string(dh.pDeviceStateFsm.Current())})
Girish Gowdraaf0ad632021-01-27 13:00:01 -0800304 // device.PmConfigs is not nil in cases when adapter restarts. We should not re-set the core again.
305 if device.PmConfigs == nil {
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800306 // Now, set the initial PM configuration for that device
307 if err := dh.coreProxy.DevicePMConfigUpdate(ctx, dh.pmConfigs); err != nil {
308 logger.Errorw(ctx, "error updating pm config to core", log.Fields{"device-id": dh.deviceID, "err": err})
309 }
Girish Gowdrae09a6202021-01-12 18:10:59 -0800310 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000311 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000312 logger.Debugw(ctx, "AdoptOrReconcileDevice: Agent/device init already done", log.Fields{"device-id": device.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000313 }
314
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000315}
316
mpagenko057889c2021-01-21 16:51:58 +0000317func (dh *deviceHandler) processInterAdapterOMCIReceiveMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
Himani Chawla26e555c2020-08-31 12:30:20 +0530318 msgBody := msg.GetBody()
319 omciMsg := &ic.InterAdapterOmciMessage{}
320 if err := ptypes.UnmarshalAny(msgBody, omciMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000321 logger.Warnw(ctx, "cannot-unmarshal-omci-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530322 "device-id": dh.deviceID, "error": err})
323 return err
324 }
325
mpagenko80622a52021-02-09 16:53:23 +0000326 /* msg print moved symmetrically to omci_cc, if wanted here as additional debug, than perhaps only based on additional debug setting!
Himani Chawla26e555c2020-08-31 12:30:20 +0530327 //assuming omci message content is hex coded!
328 // with restricted output of 16(?) bytes would be ...omciMsg.Message[:16]
dbainbri4d3a0dc2020-12-02 00:33:42 +0000329 logger.Debugw(ctx, "inter-adapter-recv-omci", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530330 "device-id": dh.deviceID, "RxOmciMessage": hex.EncodeToString(omciMsg.Message)})
mpagenko80622a52021-02-09 16:53:23 +0000331 */
dbainbri4d3a0dc2020-12-02 00:33:42 +0000332 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Himani Chawla26e555c2020-08-31 12:30:20 +0530333 if pDevEntry != nil {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000334 if pDevEntry.PDevOmciCC != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000335 return pDevEntry.PDevOmciCC.receiveMessage(log.WithSpanFromContext(context.TODO(), ctx), omciMsg.Message)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000336 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000337 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 +0530338 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000339 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000340 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530341}
342
Himani Chawla6d2ae152020-09-02 13:11:20 +0530343func (dh *deviceHandler) processInterAdapterTechProfileDownloadReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000344 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530345 msg *ic.InterAdapterMessage) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000346
dbainbri4d3a0dc2020-12-02 00:33:42 +0000347 logger.Infow(ctx, "tech-profile-download-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000348
dbainbri4d3a0dc2020-12-02 00:33:42 +0000349 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000350 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000351 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000352 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
353 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530354 if dh.pOnuTP == nil {
355 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000356 logger.Errorw(ctx, "onuTechProf instance not set up for DLMsg request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530357 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000358 return fmt.Errorf("techProfile DLMsg request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530359 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000360 if !dh.ReadyForSpecificOmciConfig {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000361 logger.Errorw(ctx, "TechProf-set rejected: improper device state", log.Fields{"device-id": dh.deviceID,
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000362 "device-state": deviceReasonMap[dh.deviceReason]})
363 return fmt.Errorf("improper device state %s on device %s", deviceReasonMap[dh.deviceReason], dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530364 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000365 //previous state test here was just this one, now extended for more states to reject the SetRequest:
366 // at least 'mib-downloaded' should be reached for processing of this specific ONU configuration
367 // if (dh.deviceReason == "stopping-openomci") || (dh.deviceReason == "omci-admin-lock")
Himani Chawla26e555c2020-08-31 12:30:20 +0530368
369 msgBody := msg.GetBody()
370 techProfMsg := &ic.InterAdapterTechProfileDownloadMessage{}
371 if err := ptypes.UnmarshalAny(msgBody, techProfMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000372 logger.Warnw(ctx, "cannot-unmarshal-techprof-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530373 "device-id": dh.deviceID, "error": err})
374 return err
375 }
376
377 // we have to lock access to TechProfile processing based on different messageType calls or
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000378 // even to fast subsequent calls of the same messageType as well as OnuKVStore processing due
379 // to possible concurrent access by flow processing
Himani Chawla26e555c2020-08-31 12:30:20 +0530380 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000381 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000382
383 if techProfMsg.UniId > 255 {
384 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
385 techProfMsg.UniId, dh.deviceID))
386 }
387 uniID := uint8(techProfMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800388 tpID, err := GetTpIDFromTpPath(techProfMsg.Path)
389 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000390 logger.Errorw(ctx, "error-parsing-tpid-from-tppath", log.Fields{"err": err, "tp-path": techProfMsg.Path})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800391 return err
392 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000393
dbainbri4d3a0dc2020-12-02 00:33:42 +0000394 if bTpModify := pDevEntry.updateOnuUniTpPath(ctx, uniID, uint8(tpID), techProfMsg.Path); bTpModify {
Himani Chawla26e555c2020-08-31 12:30:20 +0530395 // if there has been some change for some uni TechProfilePath
396 //in order to allow concurrent calls to other dh instances we do not wait for execution here
397 //but doing so we can not indicate problems to the caller (who does what with that then?)
398 //by now we just assume straightforward successful execution
399 //TODO!!! Generally: In this scheme it would be good to have some means to indicate
400 // possible problems to the caller later autonomously
401
402 // deadline context to ensure completion of background routines waited for
403 //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 +0530404 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
Himani Chawla26e555c2020-08-31 12:30:20 +0530405 dctx, cancel := context.WithDeadline(context.Background(), deadline)
406
Girish Gowdra041dcb32020-11-16 16:54:30 -0800407 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000408 pDevEntry.resetKvProcessingErrorIndication()
409
Himani Chawla26e555c2020-08-31 12:30:20 +0530410 var wg sync.WaitGroup
411 wg.Add(2) // for the 2 go routines to finish
412 // attention: deadline completion check and wg.Done is to be done in both routines
dbainbri4d3a0dc2020-12-02 00:33:42 +0000413 go dh.pOnuTP.configureUniTp(log.WithSpanFromContext(dctx, ctx), uniID, techProfMsg.Path, &wg)
414 go pDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
415 dh.waitForCompletion(ctx, cancel, &wg, "TechProfDwld") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000416
Girish Gowdra041dcb32020-11-16 16:54:30 -0800417 return dh.combineErrorStrings(dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID), pDevEntry.getKvProcessingErrorIndication())
Himani Chawla26e555c2020-08-31 12:30:20 +0530418 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000419 // no change, nothing really to do - return success
Himani Chawla26e555c2020-08-31 12:30:20 +0530420 return nil
421}
422
Himani Chawla6d2ae152020-09-02 13:11:20 +0530423func (dh *deviceHandler) processInterAdapterDeleteGemPortReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000424 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530425 msg *ic.InterAdapterMessage) error {
426
dbainbri4d3a0dc2020-12-02 00:33:42 +0000427 logger.Infow(ctx, "delete-gem-port-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000428
dbainbri4d3a0dc2020-12-02 00:33:42 +0000429 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000430 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000431 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000432 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
433 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530434 if dh.pOnuTP == nil {
435 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000436 logger.Warnw(ctx, "onuTechProf instance not set up for DelGem request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530437 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000438 return fmt.Errorf("techProfile DelGem request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530439 }
440
441 msgBody := msg.GetBody()
442 delGemPortMsg := &ic.InterAdapterDeleteGemPortMessage{}
443 if err := ptypes.UnmarshalAny(msgBody, delGemPortMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000444 logger.Warnw(ctx, "cannot-unmarshal-delete-gem-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530445 "device-id": dh.deviceID, "error": err})
446 return err
447 }
448
449 //compare TECH_PROFILE_DOWNLOAD_REQUEST
450 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000451 defer dh.pOnuTP.unlockTpProcMutex()
Himani Chawla26e555c2020-08-31 12:30:20 +0530452
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000453 if delGemPortMsg.UniId > 255 {
454 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
455 delGemPortMsg.UniId, dh.deviceID))
456 }
457 uniID := uint8(delGemPortMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800458 tpID, err := GetTpIDFromTpPath(delGemPortMsg.TpPath)
459 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000460 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 -0800461 return err
462 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530463
mpagenkofc4f56e2020-11-04 17:17:49 +0000464 //a removal of some GemPort would never remove the complete TechProfile entry (done on T-Cont)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000465
mpagenkofc4f56e2020-11-04 17:17:49 +0000466 // deadline context to ensure completion of background routines waited for
467 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
468 dctx, cancel := context.WithDeadline(context.Background(), deadline)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000469
Girish Gowdra041dcb32020-11-16 16:54:30 -0800470 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000471
mpagenkofc4f56e2020-11-04 17:17:49 +0000472 var wg sync.WaitGroup
473 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000474 go dh.pOnuTP.deleteTpResource(log.WithSpanFromContext(dctx, ctx), uniID, tpID, delGemPortMsg.TpPath,
mpagenkofc4f56e2020-11-04 17:17:49 +0000475 cResourceGemPort, delGemPortMsg.GemPortId, &wg)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000476 dh.waitForCompletion(ctx, cancel, &wg, "GemDelete") //wait for background process to finish
mpagenkofc4f56e2020-11-04 17:17:49 +0000477
Girish Gowdra041dcb32020-11-16 16:54:30 -0800478 return dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530479}
480
Himani Chawla6d2ae152020-09-02 13:11:20 +0530481func (dh *deviceHandler) processInterAdapterDeleteTcontReqMessage(
dbainbri4d3a0dc2020-12-02 00:33:42 +0000482 ctx context.Context,
Himani Chawla26e555c2020-08-31 12:30:20 +0530483 msg *ic.InterAdapterMessage) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000484
dbainbri4d3a0dc2020-12-02 00:33:42 +0000485 logger.Infow(ctx, "delete-tcont-request", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000486
dbainbri4d3a0dc2020-12-02 00:33:42 +0000487 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000488 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000489 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000490 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
491 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530492 if dh.pOnuTP == nil {
493 //should normally not happen ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000494 logger.Warnw(ctx, "onuTechProf instance not set up for DelTcont request - ignoring request",
Himani Chawla26e555c2020-08-31 12:30:20 +0530495 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000496 return fmt.Errorf("techProfile DelTcont request while onuTechProf instance not setup: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +0530497 }
498
499 msgBody := msg.GetBody()
500 delTcontMsg := &ic.InterAdapterDeleteTcontMessage{}
501 if err := ptypes.UnmarshalAny(msgBody, delTcontMsg); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000502 logger.Warnw(ctx, "cannot-unmarshal-delete-tcont-msg-body", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +0530503 "device-id": dh.deviceID, "error": err})
504 return err
505 }
506
507 //compare TECH_PROFILE_DOWNLOAD_REQUEST
508 dh.pOnuTP.lockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000509 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000510
511 if delTcontMsg.UniId > 255 {
512 return fmt.Errorf(fmt.Sprintf("received UniId value exceeds range: %d, device-id: %s",
513 delTcontMsg.UniId, dh.deviceID))
514 }
515 uniID := uint8(delTcontMsg.UniId)
Girish Gowdra041dcb32020-11-16 16:54:30 -0800516 tpPath := delTcontMsg.TpPath
517 tpID, err := GetTpIDFromTpPath(tpPath)
518 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000519 logger.Errorw(ctx, "error-extracting-tp-id-from-tp-path", log.Fields{"err": err, "tp-path": tpPath})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800520 return err
521 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000522
dbainbri4d3a0dc2020-12-02 00:33:42 +0000523 if bTpModify := pDevEntry.updateOnuUniTpPath(ctx, uniID, tpID, ""); bTpModify {
Himani Chawla26e555c2020-08-31 12:30:20 +0530524 // deadline context to ensure completion of background routines waited for
Himani Chawlad96df182020-09-28 11:12:02 +0530525 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
Himani Chawla26e555c2020-08-31 12:30:20 +0530526 dctx, cancel := context.WithDeadline(context.Background(), deadline)
527
Girish Gowdra041dcb32020-11-16 16:54:30 -0800528 dh.pOnuTP.resetTpProcessingErrorIndication(uniID, tpID)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000529 pDevEntry.resetKvProcessingErrorIndication()
530
Himani Chawla26e555c2020-08-31 12:30:20 +0530531 var wg sync.WaitGroup
532 wg.Add(2) // for the 2 go routines to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000533 go dh.pOnuTP.deleteTpResource(log.WithSpanFromContext(dctx, ctx), uniID, tpID, delTcontMsg.TpPath,
Himani Chawla26e555c2020-08-31 12:30:20 +0530534 cResourceTcont, delTcontMsg.AllocId, &wg)
535 // Removal of the tcont/alloc id mapping represents the removal of the tech profile
dbainbri4d3a0dc2020-12-02 00:33:42 +0000536 go pDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
537 dh.waitForCompletion(ctx, cancel, &wg, "TContDelete") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000538
Girish Gowdra041dcb32020-11-16 16:54:30 -0800539 return dh.combineErrorStrings(dh.pOnuTP.getTpProcessingErrorIndication(uniID, tpID), pDevEntry.getKvProcessingErrorIndication())
Himani Chawla26e555c2020-08-31 12:30:20 +0530540 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530541 return nil
542}
543
Himani Chawla6d2ae152020-09-02 13:11:20 +0530544//processInterAdapterMessage sends the proxied messages to the target device
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000545// If the proxy address is not found in the unmarshalled message, it first fetches the onu device for which the message
546// is meant, and then send the unmarshalled omci message to this onu
dbainbri4d3a0dc2020-12-02 00:33:42 +0000547func (dh *deviceHandler) processInterAdapterMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000548 msgID := msg.Header.Id
549 msgType := msg.Header.Type
550 fromTopic := msg.Header.FromTopic
551 toTopic := msg.Header.ToTopic
552 toDeviceID := msg.Header.ToDeviceId
553 proxyDeviceID := msg.Header.ProxyDeviceId
dbainbri4d3a0dc2020-12-02 00:33:42 +0000554 logger.Debugw(ctx, "InterAdapter message header", log.Fields{"msgID": msgID, "msgType": msgType,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000555 "fromTopic": fromTopic, "toTopic": toTopic, "toDeviceID": toDeviceID, "proxyDeviceID": proxyDeviceID})
556
557 switch msgType {
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000558 // case ic.InterAdapterMessageType_ONU_IND_REQUEST: was handled by OpenONUAC already - see comments there
mpagenko057889c2021-01-21 16:51:58 +0000559 //OMCI_RESPONSE also accepted acc. to VOL-3756 (OMCI_REQUEST request was legacy code)
560 case ic.InterAdapterMessageType_OMCI_RESPONSE, ic.InterAdapterMessageType_OMCI_REQUEST:
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000561 {
mpagenko057889c2021-01-21 16:51:58 +0000562 return dh.processInterAdapterOMCIReceiveMessage(ctx, msg)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000563 }
mpagenkoaf801632020-07-03 10:00:42 +0000564 case ic.InterAdapterMessageType_TECH_PROFILE_DOWNLOAD_REQUEST:
565 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000566 return dh.processInterAdapterTechProfileDownloadReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000567 }
568 case ic.InterAdapterMessageType_DELETE_GEM_PORT_REQUEST:
569 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000570 return dh.processInterAdapterDeleteGemPortReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000571
mpagenkoaf801632020-07-03 10:00:42 +0000572 }
573 case ic.InterAdapterMessageType_DELETE_TCONT_REQUEST:
574 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000575 return dh.processInterAdapterDeleteTcontReqMessage(ctx, msg)
mpagenkoaf801632020-07-03 10:00:42 +0000576 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000577 default:
578 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000579 logger.Errorw(ctx, "inter-adapter-unhandled-type", log.Fields{
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000580 "msgType": msg.Header.Type, "device-id": dh.deviceID})
581 return fmt.Errorf("inter-adapter-unhandled-type: %d, %s", msg.Header.Type, dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000582 }
583 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000584}
585
mpagenkodff5dda2020-08-28 11:52:01 +0000586//FlowUpdateIncremental removes and/or adds the flow changes on a given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000587func (dh *deviceHandler) FlowUpdateIncremental(ctx context.Context,
588 apOfFlowChanges *openflow_13.FlowChanges,
mpagenkodff5dda2020-08-28 11:52:01 +0000589 apOfGroupChanges *openflow_13.FlowGroupChanges, apFlowMetaData *voltha.FlowMetadata) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000590 logger.Debugw(ctx, "FlowUpdateIncremental started", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +0000591
mpagenko01e726e2020-10-23 09:45:29 +0000592 var retError error = nil
593 //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 +0000594 if apOfFlowChanges.ToRemove != nil {
595 for _, flowItem := range apOfFlowChanges.ToRemove.Items {
mpagenkodff5dda2020-08-28 11:52:01 +0000596 if flowItem.GetCookie() == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000597 logger.Warnw(ctx, "flow-remove no cookie: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000598 "device-id": dh.deviceID})
599 retError = fmt.Errorf("flow-remove no cookie, device-id %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +0000600 continue
601 }
602 flowInPort := flow.GetInPort(flowItem)
603 if flowInPort == uint32(of.OfpPortNo_OFPP_INVALID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000604 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 +0000605 retError = fmt.Errorf("flow-remove inPort invalid, device-id %s", dh.deviceID)
606 continue
607 //return fmt.Errorf("flow inPort invalid: %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +0000608 } else if flowInPort == dh.ponPortNumber {
mpagenko01e726e2020-10-23 09:45:29 +0000609 //this is some downstream flow, not regarded as error, just ignored
dbainbri4d3a0dc2020-12-02 00:33:42 +0000610 logger.Debugw(ctx, "flow-remove for downstream: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000611 "device-id": dh.deviceID, "inPort": flowInPort})
mpagenkodff5dda2020-08-28 11:52:01 +0000612 continue
613 } else {
614 // this is the relevant upstream flow
Himani Chawla6d2ae152020-09-02 13:11:20 +0530615 var loUniPort *onuUniPort
mpagenkodff5dda2020-08-28 11:52:01 +0000616 if uniPort, exist := dh.uniEntityMap[flowInPort]; exist {
617 loUniPort = uniPort
618 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000619 logger.Warnw(ctx, "flow-remove inPort not found in UniPorts: ignore and continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000620 log.Fields{"device-id": dh.deviceID, "inPort": flowInPort})
621 retError = fmt.Errorf("flow-remove inPort not found in UniPorts, inPort %d, device-id %s",
622 flowInPort, dh.deviceID)
623 continue
mpagenkodff5dda2020-08-28 11:52:01 +0000624 }
625 flowOutPort := flow.GetOutPort(flowItem)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000626 logger.Debugw(ctx, "flow-remove port indications", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000627 "device-id": dh.deviceID, "inPort": flowInPort, "outPort": flowOutPort,
mpagenkodff5dda2020-08-28 11:52:01 +0000628 "uniPortName": loUniPort.name})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000629 err := dh.removeFlowItemFromUniPort(ctx, flowItem, loUniPort)
mpagenko01e726e2020-10-23 09:45:29 +0000630 //try next flow after processing error
mpagenkodff5dda2020-08-28 11:52:01 +0000631 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000632 logger.Warnw(ctx, "flow-remove processing error: continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000633 log.Fields{"device-id": dh.deviceID, "error": err})
634 retError = err
635 continue
636 //return err
637 } else { // if last setting succeeds, overwrite possibly previously set error
638 retError = nil
mpagenkodff5dda2020-08-28 11:52:01 +0000639 }
640 }
641 }
642 }
mpagenko01e726e2020-10-23 09:45:29 +0000643 if apOfFlowChanges.ToAdd != nil {
644 for _, flowItem := range apOfFlowChanges.ToAdd.Items {
645 if flowItem.GetCookie() == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000646 logger.Debugw(ctx, "incremental flow-add no cookie: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000647 "device-id": dh.deviceID})
648 retError = fmt.Errorf("flow-add no cookie, device-id %s", dh.deviceID)
649 continue
650 }
651 flowInPort := flow.GetInPort(flowItem)
652 if flowInPort == uint32(of.OfpPortNo_OFPP_INVALID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000653 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 +0000654 retError = fmt.Errorf("flow-add inPort invalid, device-id %s", dh.deviceID)
655 continue
656 //return fmt.Errorf("flow inPort invalid: %s", dh.deviceID)
657 } else if flowInPort == dh.ponPortNumber {
658 //this is some downstream flow
dbainbri4d3a0dc2020-12-02 00:33:42 +0000659 logger.Debugw(ctx, "flow-add for downstream: ignore and continuing on checking further flows", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000660 "device-id": dh.deviceID, "inPort": flowInPort})
661 continue
662 } else {
663 // this is the relevant upstream flow
664 var loUniPort *onuUniPort
665 if uniPort, exist := dh.uniEntityMap[flowInPort]; exist {
666 loUniPort = uniPort
667 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000668 logger.Warnw(ctx, "flow-add inPort not found in UniPorts: ignore and continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000669 log.Fields{"device-id": dh.deviceID, "inPort": flowInPort})
670 retError = fmt.Errorf("flow-add inPort not found in UniPorts, inPort %d, device-id %s",
671 flowInPort, dh.deviceID)
672 continue
673 //return fmt.Errorf("flow-parameter inPort %d not found in internal UniPorts", flowInPort)
674 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000675 // let's still assume that we receive the flow-add only in some 'active' device state (as so far observed)
676 // if not, we just throw some error here to have an indication about that, if we really need to support that
677 // then we would need to create some means to activate the internal stored flows
678 // after the device gets active automatically (and still with its dependency to the TechProfile)
679 // for state checking compare also code here: processInterAdapterTechProfileDownloadReqMessage
680 // also abort for the other still possible flows here
681 if !dh.ReadyForSpecificOmciConfig {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000682 logger.Errorw(ctx, "flow-add rejected: improper device state", log.Fields{"device-id": dh.deviceID,
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000683 "last device-reason": deviceReasonMap[dh.deviceReason]})
mpagenkofc4f56e2020-11-04 17:17:49 +0000684 return fmt.Errorf("improper device state on device %s", dh.deviceID)
685 }
686
mpagenko01e726e2020-10-23 09:45:29 +0000687 flowOutPort := flow.GetOutPort(flowItem)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000688 logger.Debugw(ctx, "flow-add port indications", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000689 "device-id": dh.deviceID, "inPort": flowInPort, "outPort": flowOutPort,
690 "uniPortName": loUniPort.name})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000691 err := dh.addFlowItemToUniPort(ctx, flowItem, loUniPort)
mpagenko01e726e2020-10-23 09:45:29 +0000692 //try next flow after processing error
693 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000694 logger.Warnw(ctx, "flow-add processing error: continuing on checking further flows",
mpagenko01e726e2020-10-23 09:45:29 +0000695 log.Fields{"device-id": dh.deviceID, "error": err})
696 retError = err
697 continue
698 //return err
699 } else { // if last setting succeeds, overwrite possibly previously set error
700 retError = nil
701 }
702 }
703 }
704 }
705 return retError
mpagenkodff5dda2020-08-28 11:52:01 +0000706}
707
Himani Chawla6d2ae152020-09-02 13:11:20 +0530708//disableDevice locks the ONU and its UNI/VEIP ports (admin lock via OMCI)
mpagenkofc4f56e2020-11-04 17:17:49 +0000709//following are the expected device states after this activity:
710//Device Admin-State : down (on rwCore), Port-State: UNKNOWN, Conn-State: REACHABLE, Reason: omci-admin-lock
711// (Conn-State: REACHABLE might conflict with some previous ONU Down indication - maybe to be resolved later)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000712func (dh *deviceHandler) disableDevice(ctx context.Context, device *voltha.Device) {
713 logger.Debugw(ctx, "disable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000714
mpagenko900ee4b2020-10-12 11:56:34 +0000715 //admin-lock reason can also be used uniquely for setting the DeviceState accordingly
mpagenkofc4f56e2020-11-04 17:17:49 +0000716 //note that disableDevice sequences in some 'ONU active' state may yield also
717 // "tech...delete-success" or "omci-flow-deleted" according to further received requests in the end
mpagenko900ee4b2020-10-12 11:56:34 +0000718 // - inblock state checking to prevent possibly unneeded processing (on command repitition)
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000719 if dh.deviceReason != drOmciAdminLock {
mpagenkofc4f56e2020-11-04 17:17:49 +0000720 //disable-device shall be just a UNi/ONU-G related admin state setting
721 //all other configurations/FSM's shall not be impacted and shall execute as required by the system
mpagenko900ee4b2020-10-12 11:56:34 +0000722
mpagenkofc4f56e2020-11-04 17:17:49 +0000723 if dh.ReadyForSpecificOmciConfig {
mpagenko01e726e2020-10-23 09:45:29 +0000724 // disable UNI ports/ONU
725 // *** should generate UniDisableStateDone event - used to disable the port(s) on success
726 if dh.pLockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000727 dh.createUniLockFsm(ctx, true, UniDisableStateDone)
mpagenko01e726e2020-10-23 09:45:29 +0000728 } else { //LockStateFSM already init
729 dh.pLockStateFsm.setSuccessEvent(UniDisableStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000730 dh.runUniLockFsm(ctx, true)
mpagenko01e726e2020-10-23 09:45:29 +0000731 }
732 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000733 logger.Debugw(ctx, "DeviceStateUpdate upon disable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko01e726e2020-10-23 09:45:29 +0000734 "OperStatus": voltha.OperStatus_UNKNOWN, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000735 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko01e726e2020-10-23 09:45:29 +0000736 dh.deviceID, voltha.ConnectStatus_REACHABLE, voltha.OperStatus_UNKNOWN); err != nil {
737 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000738 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko01e726e2020-10-23 09:45:29 +0000739 }
mpagenko01e726e2020-10-23 09:45:29 +0000740 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000741
742 //TODO with VOL-3045/VOL-3046: catch and return error, valid for all occurrences in the codebase
dbainbri4d3a0dc2020-12-02 00:33:42 +0000743 _ = dh.deviceReasonUpdate(ctx, drOmciAdminLock, true)
mpagenko3af1f032020-06-10 08:53:41 +0000744 }
ozgecanetsiafce57b12020-05-25 14:39:35 +0300745 }
746}
747
Himani Chawla6d2ae152020-09-02 13:11:20 +0530748//reEnableDevice unlocks the ONU and its UNI/VEIP ports (admin unlock via OMCI)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000749func (dh *deviceHandler) reEnableDevice(ctx context.Context, device *voltha.Device) {
750 logger.Debugw(ctx, "reenable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
mpagenko3af1f032020-06-10 08:53:41 +0000751
mpagenkofc4f56e2020-11-04 17:17:49 +0000752 //setting ReadyForSpecificOmciConfig here is just a workaround for BBSIM testing in the sequence
753 // OnuSoftReboot-disable-enable, because BBSIM does not generate a new OnuIndication-Up event after SoftReboot
754 // which is the assumption for real ONU's, where the ready-state is then set according to the following MibUpload/Download
755 // for real ONU's that should have nearly no influence
756 // Note that for real ONU's there is anyway a problematic situation with following sequence:
757 // OnuIndication-Dw (or not active at all) (- disable) - enable: here already the LockFsm may run into timeout (no OmciResponse)
758 // but that anyway is hopefully resolved by some OnuIndication-Up event (maybe to be tested)
759 // one could also argue, that a device-enable should also enable attempts for specific omci configuration
760 dh.ReadyForSpecificOmciConfig = true //needed to allow subsequent flow/techProf config (on BBSIM)
761
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000762 // enable ONU/UNI ports
mpagenko900ee4b2020-10-12 11:56:34 +0000763 // *** should generate UniEnableStateDone event - used to disable the port(s) on success
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000764 if dh.pUnlockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000765 dh.createUniLockFsm(ctx, false, UniEnableStateDone)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000766 } else { //UnlockStateFSM already init
mpagenko900ee4b2020-10-12 11:56:34 +0000767 dh.pUnlockStateFsm.setSuccessEvent(UniEnableStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000768 dh.runUniLockFsm(ctx, false)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000769 }
ozgecanetsiafce57b12020-05-25 14:39:35 +0300770}
771
dbainbri4d3a0dc2020-12-02 00:33:42 +0000772func (dh *deviceHandler) reconcileDeviceOnuInd(ctx context.Context) {
773 logger.Debugw(ctx, "reconciling - simulate onu indication", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000774
dbainbri4d3a0dc2020-12-02 00:33:42 +0000775 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000776 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000777 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000778 return
779 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000780 if err := pDevEntry.restoreDataFromOnuKvStore(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
mpagenko2418ab02020-11-12 12:58:06 +0000781 if err == fmt.Errorf("no-ONU-data-found") {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000782 logger.Debugw(ctx, "no persistent data found - abort reconciling", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000783 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000784 logger.Errorw(ctx, "reconciling - restoring OnuTp-data failed - abort", log.Fields{"err": err, "device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000785 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000786 dh.stopReconciling(ctx)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000787 return
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000788 }
Himani Chawla4d908332020-08-31 12:30:20 +0530789 var onuIndication oop.OnuIndication
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000790 onuIndication.IntfId = pDevEntry.sOnuPersistentData.PersIntfID
791 onuIndication.OnuId = pDevEntry.sOnuPersistentData.PersOnuID
792 onuIndication.OperState = pDevEntry.sOnuPersistentData.PersOperState
793 onuIndication.AdminState = pDevEntry.sOnuPersistentData.PersAdminState
dbainbri4d3a0dc2020-12-02 00:33:42 +0000794 _ = dh.createInterface(ctx, &onuIndication)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000795}
796
dbainbri4d3a0dc2020-12-02 00:33:42 +0000797func (dh *deviceHandler) reconcileDeviceTechProf(ctx context.Context) {
798 logger.Debugw(ctx, "reconciling - trigger tech profile config", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000799
dbainbri4d3a0dc2020-12-02 00:33:42 +0000800 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000801 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000802 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000803 return
804 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000805 dh.pOnuTP.lockTpProcMutex()
806 defer dh.pOnuTP.unlockTpProcMutex()
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000807 pDevEntry.persUniConfigMutex.RLock()
808 defer pDevEntry.persUniConfigMutex.RUnlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000809
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000810 if len(pDevEntry.sOnuPersistentData.PersUniConfig) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000811 logger.Debugw(ctx, "reconciling - no uni-configs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000812 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000813 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000814 return
815 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000816 for _, uniData := range pDevEntry.sOnuPersistentData.PersUniConfig {
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000817 //TODO: check for uni-port specific reconcilement in case of multi-uni-port-per-onu-support
818 if len(uniData.PersTpPathMap) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000819 logger.Debugw(ctx, "reconciling - no TPs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000820 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000821 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000822 return
823 }
Girish Gowdra041dcb32020-11-16 16:54:30 -0800824 for tpID := range uniData.PersTpPathMap {
825 // deadline context to ensure completion of background routines waited for
826 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
827 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
dbainbri4d3a0dc2020-12-02 00:33:42 +0000828 dctx, cancel := context.WithDeadline(ctx, deadline)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000829
Girish Gowdra041dcb32020-11-16 16:54:30 -0800830 dh.pOnuTP.resetTpProcessingErrorIndication(uniData.PersUniID, tpID)
831 var wg sync.WaitGroup
832 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000833 go dh.pOnuTP.configureUniTp(log.WithSpanFromContext(dctx, ctx), uniData.PersUniID, uniData.PersTpPathMap[tpID], &wg)
834 dh.waitForCompletion(ctx, cancel, &wg, "TechProfReconcile") //wait for background process to finish
Girish Gowdra041dcb32020-11-16 16:54:30 -0800835 if err := dh.pOnuTP.getTpProcessingErrorIndication(uniData.PersUniID, tpID); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000836 logger.Errorw(ctx, err.Error(), log.Fields{"device-id": dh.deviceID})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800837 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000838 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000839 if len(uniData.PersFlowParams) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000840 logger.Debugw(ctx, "reconciling - no flows have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000841 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000842 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000843 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000844 }
845}
846
dbainbri4d3a0dc2020-12-02 00:33:42 +0000847func (dh *deviceHandler) reconcileDeviceFlowConfig(ctx context.Context) {
848 logger.Debugw(ctx, "reconciling - trigger flow config", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000849
dbainbri4d3a0dc2020-12-02 00:33:42 +0000850 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000851 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000852 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000853 return
854 }
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000855 pDevEntry.persUniConfigMutex.RLock()
856 defer pDevEntry.persUniConfigMutex.RUnlock()
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000857 if len(pDevEntry.sOnuPersistentData.PersUniConfig) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000858 logger.Debugw(ctx, "reconciling - no uni-configs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000859 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000860 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000861 return
862 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000863 for _, uniData := range pDevEntry.sOnuPersistentData.PersUniConfig {
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000864 //TODO: check for uni-port specific reconcilement in case of multi-uni-port-per-onu-support
865 if len(uniData.PersFlowParams) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000866 logger.Debugw(ctx, "reconciling - no flows have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000867 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000868 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000869 return
870 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000871 var uniPort *onuUniPort
872 var exist bool
dbainbri4d3a0dc2020-12-02 00:33:42 +0000873 uniNo := mkUniPortNum(ctx, dh.pOnuIndication.GetIntfId(), dh.pOnuIndication.GetOnuId(), uint32(uniData.PersUniID))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000874 if uniPort, exist = dh.uniEntityMap[uniNo]; !exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000875 logger.Errorw(ctx, "onuUniPort data not found!", log.Fields{"uniNo": uniNo, "device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000876 return
877 }
878 for _, flowData := range uniData.PersFlowParams {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000879 logger.Debugw(ctx, "add flow with cookie slice", log.Fields{"device-id": dh.deviceID, "cookies": flowData.CookieSlice})
mpagenko01e726e2020-10-23 09:45:29 +0000880 //the slice can be passed 'by value' here, - which internally passes its reference copy
mpagenkof1fc3862021-02-16 10:09:52 +0000881 dh.lockVlanConfig.RLock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000882 if _, exist = dh.UniVlanConfigFsmMap[uniData.PersUniID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000883 if err := dh.UniVlanConfigFsmMap[uniData.PersUniID].SetUniFlowParams(ctx, flowData.VlanRuleParams.TpID,
mpagenko01e726e2020-10-23 09:45:29 +0000884 flowData.CookieSlice, uint16(flowData.VlanRuleParams.MatchVid), uint16(flowData.VlanRuleParams.SetVid),
885 uint8(flowData.VlanRuleParams.SetPcp)); 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 }
mpagenkof1fc3862021-02-16 10:09:52 +0000888 dh.lockVlanConfig.RUnlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000889 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000890 dh.lockVlanConfig.RUnlock()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000891 if err := dh.createVlanFilterFsm(ctx, uniPort, flowData.VlanRuleParams.TpID, flowData.CookieSlice,
mpagenko01e726e2020-10-23 09:45:29 +0000892 uint16(flowData.VlanRuleParams.MatchVid), uint16(flowData.VlanRuleParams.SetVid),
mpagenkofc4f56e2020-11-04 17:17:49 +0000893 uint8(flowData.VlanRuleParams.SetPcp), OmciVlanFilterAddDone); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000894 logger.Errorw(ctx, err.Error(), log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000895 }
896 }
897 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000898 if len(uniData.PersTpPathMap) == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000899 logger.Debugw(ctx, "reconciling - no TPs have been stored before adapter restart - terminate reconcilement",
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000900 log.Fields{"uni-id": uniData.PersUniID, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000901 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000902 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000903 }
904}
905
dbainbri4d3a0dc2020-12-02 00:33:42 +0000906func (dh *deviceHandler) reconcileMetrics(ctx context.Context) {
907 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 +0000908
909 //TODO: reset of reconciling-flag has always to be done in the last reconcile*() function
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000910 dh.stopReconciling(ctx)
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000911}
912
dbainbri4d3a0dc2020-12-02 00:33:42 +0000913func (dh *deviceHandler) deleteDevicePersistencyData(ctx context.Context) error {
914 logger.Debugw(ctx, "delete device persistency data", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000915
dbainbri4d3a0dc2020-12-02 00:33:42 +0000916 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000917 if pDevEntry == nil {
mpagenko2418ab02020-11-12 12:58:06 +0000918 //IfDevEntry does not exist here, no problem - no persistent data should have been stored
dbainbri4d3a0dc2020-12-02 00:33:42 +0000919 logger.Debugw(ctx, "OnuDevice does not exist - nothing to delete", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000920 return nil
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000921 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000922
923 // deadline context to ensure completion of background routines waited for
924 //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 +0530925 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
dbainbri4d3a0dc2020-12-02 00:33:42 +0000926 dctx, cancel := context.WithDeadline(ctx, deadline)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000927
928 pDevEntry.resetKvProcessingErrorIndication()
929
930 var wg sync.WaitGroup
931 wg.Add(1) // for the 1 go routine to finish
dbainbri4d3a0dc2020-12-02 00:33:42 +0000932 go pDevEntry.deleteDataFromOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
933 dh.waitForCompletion(ctx, cancel, &wg, "DeleteDevice") //wait for background process to finish
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000934
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000935 // TODO: further actions - stop metrics and FSMs, remove device ...
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000936 return pDevEntry.getKvProcessingErrorIndication()
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000937}
938
dbainbri4d3a0dc2020-12-02 00:33:42 +0000939func (dh *deviceHandler) rebootDevice(ctx context.Context, device *voltha.Device) error {
940 logger.Debugw(ctx, "reboot-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300941 if device.ConnectStatus != voltha.ConnectStatus_REACHABLE {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000942 logger.Errorw(ctx, "device-unreachable", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000943 return fmt.Errorf("device-unreachable: %s, %s", dh.deviceID, device.SerialNumber)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300944 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000945 if err := dh.pOnuOmciDevice.reboot(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
Himani Chawla4d908332020-08-31 12:30:20 +0530946 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000947 logger.Errorw(ctx, "error-rebooting-device", log.Fields{"device-id": dh.deviceID, "error": err})
Himani Chawla4d908332020-08-31 12:30:20 +0530948 return err
949 }
mpagenko01e726e2020-10-23 09:45:29 +0000950
951 //transfer the possibly modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +0000952 dh.disableUniPortStateUpdate(ctx)
mpagenko01e726e2020-10-23 09:45:29 +0000953
dbainbri4d3a0dc2020-12-02 00:33:42 +0000954 logger.Debugw(ctx, "call DeviceStateUpdate upon reboot", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +0000955 "OperStatus": voltha.OperStatus_DISCOVERED, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000956 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.ConnectStatus_REACHABLE,
ozgecanetsiae11479f2020-07-06 09:44:47 +0300957 voltha.OperStatus_DISCOVERED); err != nil {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000958 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +0000959 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300960 return err
961 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000962 if err := dh.deviceReasonUpdate(ctx, drRebooting, true); err != nil {
ozgecanetsiae11479f2020-07-06 09:44:47 +0300963 return err
964 }
mpagenkofc4f56e2020-11-04 17:17:49 +0000965 dh.ReadyForSpecificOmciConfig = false
mpagenko8b07c1b2020-11-26 10:36:31 +0000966 //no specific activity to synchronize any internal FSM to the 'rebooted' state is explicitly done here
967 // the expectation ids for a real device, that it will be synced with the expected following 'down' indication
968 // as BBSIM does not support this testing requires explicite disable/enable device calls in which sequence also
969 // all other FSM's should be synchronized again
ozgecanetsiae11479f2020-07-06 09:44:47 +0300970 return nil
971}
972
mpagenkoc8bba412021-01-15 15:38:44 +0000973//doOnuSwUpgrade initiates the SW download transfer to the ONU and on success activates the (inactive) image
mpagenko80622a52021-02-09 16:53:23 +0000974func (dh *deviceHandler) doOnuSwUpgrade(ctx context.Context, apImageDsc *voltha.ImageDownload,
975 apDownloadManager *adapterDownloadManager) error {
976 logger.Debugw(ctx, "onuSwUpgrade requested", log.Fields{
mpagenkoc8bba412021-01-15 15:38:44 +0000977 "device-id": dh.deviceID, "image-name": (*apImageDsc).Name})
mpagenko80622a52021-02-09 16:53:23 +0000978
979 var err error
980 if dh.ReadyForSpecificOmciConfig {
981 dh.lockUpgradeFsm.Lock()
982 defer dh.lockUpgradeFsm.Unlock()
983 if dh.pOnuUpradeFsm == nil {
984 err = dh.createOnuUpgradeFsm(ctx, OmciOnuSwUpgradeDone)
985 if err == nil {
986 if err = dh.pOnuUpradeFsm.SetDownloadParams(ctx, apImageDsc, apDownloadManager); err != nil {
987 logger.Errorw(ctx, "onu upgrade fsm could not set parameters", log.Fields{
988 "device-id": dh.deviceID, "error": err})
989 }
990 } else {
991 logger.Errorw(ctx, "onu upgrade fsm could not be created", log.Fields{
992 "device-id": dh.deviceID, "error": err})
993 }
994 } else { //OnuSw upgrade already running - restart (with possible abort of running)
995 logger.Debugw(ctx, "Onu SW upgrade already running - abort", log.Fields{"device-id": dh.deviceID})
996 pUpgradeStatemachine := dh.pOnuUpradeFsm.pAdaptFsm.pFsm
997 if pUpgradeStatemachine != nil {
998 if err = pUpgradeStatemachine.Event(upgradeEvAbort); err != nil {
999 logger.Errorw(ctx, "onu upgrade fsm could not abort a running processing", log.Fields{
1000 "device-id": dh.deviceID, "error": err})
1001 }
1002 err = fmt.Errorf("aborted Onu SW upgrade but not automatically started, try again, device-id: %s", dh.deviceID)
1003 //TODO!!!: wait for 'ready' to start and configure - see above SetDownloadParams()
1004 // for now a second start of download should work again
1005 } else { //should never occur
1006 logger.Errorw(ctx, "onu upgrade fsm inconsistent setup", log.Fields{
1007 "device-id": dh.deviceID})
1008 err = fmt.Errorf("onu upgrade fsm inconsistent setup, baseFsm invalid for device-id: %s", dh.deviceID)
1009 }
1010 }
1011 } else {
1012 logger.Errorw(ctx, "Start Onu SW upgrade rejected: no active OMCI connection", log.Fields{"device-id": dh.deviceID})
1013 }
1014 return err
mpagenkoc8bba412021-01-15 15:38:44 +00001015}
1016
Himani Chawla6d2ae152020-09-02 13:11:20 +05301017// deviceHandler methods that implement the adapters interface requests## end #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001018// #####################################################################################
1019
1020// ################ to be updated acc. needs of ONU Device ########################
Himani Chawla6d2ae152020-09-02 13:11:20 +05301021// deviceHandler StateMachine related state transition methods ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001022
dbainbri4d3a0dc2020-12-02 00:33:42 +00001023func (dh *deviceHandler) logStateChange(ctx context.Context, e *fsm.Event) {
1024 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 +00001025}
1026
1027// doStateInit provides the device update to the core
dbainbri4d3a0dc2020-12-02 00:33:42 +00001028func (dh *deviceHandler) doStateInit(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001029
dbainbri4d3a0dc2020-12-02 00:33:42 +00001030 logger.Debug(ctx, "doStateInit-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001031 var err error
1032
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001033 // populate what we know. rest comes later after mib sync
1034 dh.device.Root = false
1035 dh.device.Vendor = "OpenONU"
1036 dh.device.Model = "go"
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001037 dh.device.Reason = deviceReasonMap[drActivatingOnu]
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001038 dh.deviceReason = drActivatingOnu
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001039
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001040 dh.logicalDeviceID = dh.deviceID // really needed - what for ??? //TODO!!!
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001041
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001042 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001043 logger.Infow(ctx, "DeviceUpdate", log.Fields{"deviceReason": dh.device.Reason, "device-id": dh.deviceID})
1044 _ = dh.coreProxy.DeviceUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.device)
Himani Chawlac07fda02020-12-09 16:21:21 +05301045 //TODO Need to Update Device Reason To CORE as part of device update userstory
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001046 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001047 logger.Debugw(ctx, "reconciling - don't notify core about DeviceUpdate",
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001048 log.Fields{"device-id": dh.deviceID})
1049 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001050
Himani Chawla4d908332020-08-31 12:30:20 +05301051 dh.parentID = dh.device.ParentId
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001052 dh.ponPortNumber = dh.device.ParentPortNo
1053
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001054 // store proxy parameters for later communication - assumption: invariant, else they have to be requested dynamically!!
1055 dh.ProxyAddressID = dh.device.ProxyAddress.GetDeviceId()
1056 dh.ProxyAddressType = dh.device.ProxyAddress.GetDeviceType()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001057 logger.Debugw(ctx, "device-updated", log.Fields{"device-id": dh.deviceID, "proxyAddressID": dh.ProxyAddressID,
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001058 "proxyAddressType": dh.ProxyAddressType, "SNR": dh.device.SerialNumber,
Himani Chawla4d908332020-08-31 12:30:20 +05301059 "ParentId": dh.parentID, "ParentPortNo": dh.ponPortNumber})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001060
1061 /*
1062 self._pon = PonPort.create(self, self._pon_port_number)
1063 self._pon.add_peer(self.parent_id, self._pon_port_number)
1064 self.logger.debug('adding-pon-port-to-agent',
1065 type=self._pon.get_port().type,
1066 admin_state=self._pon.get_port().admin_state,
1067 oper_status=self._pon.get_port().oper_status,
1068 )
1069 */
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001070 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001071 logger.Debugw(ctx, "adding-pon-port", log.Fields{"device-id": dh.deviceID, "ponPortNo": dh.ponPortNumber})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001072 var ponPortNo uint32 = 1
1073 if dh.ponPortNumber != 0 {
1074 ponPortNo = dh.ponPortNumber
1075 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001076
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001077 pPonPort := &voltha.Port{
1078 PortNo: ponPortNo,
1079 Label: fmt.Sprintf("pon-%d", ponPortNo),
1080 Type: voltha.Port_PON_ONU,
1081 OperStatus: voltha.OperStatus_ACTIVE,
Himani Chawla4d908332020-08-31 12:30:20 +05301082 Peers: []*voltha.Port_PeerPort{{DeviceId: dh.parentID, // Peer device is OLT
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001083 PortNo: ponPortNo}}, // Peer port is parent's port number
1084 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001085 if err = dh.coreProxy.PortCreated(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, pPonPort); err != nil {
1086 logger.Fatalf(ctx, "Device FSM: PortCreated-failed-%s", err)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001087 e.Cancel(err)
1088 return
1089 }
1090 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001091 logger.Debugw(ctx, "reconciling - pon-port already added", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001092 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001093 logger.Debug(ctx, "doStateInit-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001094}
1095
1096// postInit setups the DeviceEntry for the conerned device
dbainbri4d3a0dc2020-12-02 00:33:42 +00001097func (dh *deviceHandler) postInit(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001098
dbainbri4d3a0dc2020-12-02 00:33:42 +00001099 logger.Debug(ctx, "postInit-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001100 var err error
1101 /*
1102 dh.Client = oop.NewOpenoltClient(dh.clientCon)
1103 dh.pTransitionMap.Handle(ctx, GrpcConnected)
1104 return nil
1105 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001106 if err = dh.addOnuDeviceEntry(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
1107 logger.Fatalf(ctx, "Device FSM: addOnuDeviceEntry-failed-%s", err)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001108 e.Cancel(err)
1109 return
1110 }
1111
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001112 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001113 go dh.reconcileDeviceOnuInd(ctx)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001114 // reconcilement will be continued after mib download is done
1115 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08001116
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001117 /*
1118 ############################################################################
1119 # Setup Alarm handler
1120 self.events = AdapterEvents(self.core_proxy, device.id, self.logical_device_id,
1121 device.serial_number)
1122 ############################################################################
1123 # Setup PM configuration for this device
1124 # Pass in ONU specific options
1125 kwargs = {
1126 OnuPmMetrics.DEFAULT_FREQUENCY_KEY: OnuPmMetrics.DEFAULT_ONU_COLLECTION_FREQUENCY,
1127 'heartbeat': self.heartbeat,
1128 OnuOmciPmMetrics.OMCI_DEV_KEY: self._onu_omci_device
1129 }
1130 self.logger.debug('create-pm-metrics', device_id=device.id, serial_number=device.serial_number)
1131 self._pm_metrics = OnuPmMetrics(self.events, self.core_proxy, self.device_id,
1132 self.logical_device_id, device.serial_number,
1133 grouped=True, freq_override=False, **kwargs)
1134 pm_config = self._pm_metrics.make_proto()
1135 self._onu_omci_device.set_pm_config(self._pm_metrics.omci_pm.openomci_interval_pm)
1136 self.logger.info("initial-pm-config", device_id=device.id, serial_number=device.serial_number)
1137 yield self.core_proxy.device_pm_config_update(pm_config, init=True)
1138
1139 # Note, ONU ID and UNI intf set in add_uni_port method
1140 self._onu_omci_device.alarm_synchronizer.set_alarm_params(mgr=self.events,
1141 ani_ports=[self._pon])
1142
1143 # Code to Run OMCI Test Action
1144 kwargs_omci_test_action = {
1145 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
1146 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
1147 }
1148 serial_number = device.serial_number
1149 self._test_request = OmciTestRequest(self.core_proxy,
1150 self.omci_agent, self.device_id,
1151 AniG, serial_number,
1152 self.logical_device_id,
1153 exclusive=False,
1154 **kwargs_omci_test_action)
1155
1156 self.enabled = True
1157 else:
1158 self.logger.info('onu-already-activated')
1159 */
Girish Gowdrae09a6202021-01-12 18:10:59 -08001160
dbainbri4d3a0dc2020-12-02 00:33:42 +00001161 logger.Debug(ctx, "postInit-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001162}
1163
1164// doStateConnected get the device info and update to voltha core
1165// for comparison of the original method (not that easy to uncomment): compare here:
1166// voltha-openolt-adapter/adaptercore/device_handler.go
1167// -> this one obviously initiates all communication interfaces of the device ...?
dbainbri4d3a0dc2020-12-02 00:33:42 +00001168func (dh *deviceHandler) doStateConnected(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001169
dbainbri4d3a0dc2020-12-02 00:33:42 +00001170 logger.Debug(ctx, "doStateConnected-started")
Himani Chawla4d908332020-08-31 12:30:20 +05301171 err := errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001172 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001173 logger.Debug(ctx, "doStateConnected-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001174}
1175
1176// doStateUp handle the onu up indication and update to voltha core
dbainbri4d3a0dc2020-12-02 00:33:42 +00001177func (dh *deviceHandler) doStateUp(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001178
dbainbri4d3a0dc2020-12-02 00:33:42 +00001179 logger.Debug(ctx, "doStateUp-started")
Himani Chawla4d908332020-08-31 12:30:20 +05301180 err := errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001181 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001182 logger.Debug(ctx, "doStateUp-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001183
1184 /*
1185 // Synchronous call to update device state - this method is run in its own go routine
1186 if err := dh.coreProxy.DeviceStateUpdate(ctx, dh.device.Id, voltha.ConnectStatus_REACHABLE,
1187 voltha.OperStatus_ACTIVE); err != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001188 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 +00001189 return err
1190 }
1191 return nil
1192 */
1193}
1194
1195// doStateDown handle the onu down indication
dbainbri4d3a0dc2020-12-02 00:33:42 +00001196func (dh *deviceHandler) doStateDown(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001197
dbainbri4d3a0dc2020-12-02 00:33:42 +00001198 logger.Debug(ctx, "doStateDown-started")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001199 var err error
1200
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001201 device := dh.device
1202 if device == nil {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001203 /*TODO: needs to handle error scenarios */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001204 logger.Errorw(ctx, "Failed to fetch handler device", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001205 e.Cancel(err)
1206 return
1207 }
1208
1209 cloned := proto.Clone(device).(*voltha.Device)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001210 logger.Debugw(ctx, "do-state-down", log.Fields{"ClonedDeviceID": cloned.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001211 /*
1212 // Update the all ports state on that device to disable
1213 if er := dh.coreProxy.PortsStateUpdate(ctx, cloned.Id, voltha.OperStatus_UNKNOWN); er != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001214 logger.Errorw("updating-ports-failed", log.Fields{"device-id": device.Id, "error": er})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001215 return er
1216 }
1217
1218 //Update the device oper state and connection status
1219 cloned.OperStatus = voltha.OperStatus_UNKNOWN
1220 cloned.ConnectStatus = common.ConnectStatus_UNREACHABLE
1221 dh.device = cloned
1222
1223 if er := dh.coreProxy.DeviceStateUpdate(ctx, cloned.Id, cloned.ConnectStatus, cloned.OperStatus); er != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001224 logger.Errorw("error-updating-device-state", log.Fields{"device-id": device.Id, "error": er})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001225 return er
1226 }
1227
1228 //get the child device for the parent device
1229 onuDevices, err := dh.coreProxy.GetChildDevices(ctx, dh.device.Id)
1230 if err != nil {
mpagenko01e726e2020-10-23 09:45:29 +00001231 logger.Errorw("failed to get child devices information", log.Fields{"device-id": dh.device.Id, "error": err})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001232 return err
1233 }
1234 for _, onuDevice := range onuDevices.Items {
1235
1236 // Update onu state as down in onu adapter
1237 onuInd := oop.OnuIndication{}
1238 onuInd.OperState = "down"
1239 er := dh.AdapterProxy.SendInterAdapterMessage(ctx, &onuInd, ic.InterAdapterMessageType_ONU_IND_REQUEST,
1240 "openolt", onuDevice.Type, onuDevice.Id, onuDevice.ProxyAddress.DeviceId, "")
1241 if er != nil {
1242 logger.Errorw("Failed to send inter-adapter-message", log.Fields{"OnuInd": onuInd,
mpagenko01e726e2020-10-23 09:45:29 +00001243 "From Adapter": "openolt", "DevieType": onuDevice.Type, "device-id": onuDevice.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001244 //Do not return here and continue to process other ONUs
1245 }
1246 }
1247 // * Discovered ONUs entries need to be cleared , since after OLT
1248 // is up, it starts sending discovery indications again* /
1249 dh.discOnus = sync.Map{}
mpagenko01e726e2020-10-23 09:45:29 +00001250 logger.Debugw("do-state-down-end", log.Fields{"device-id": device.Id})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001251 return nil
1252 */
Himani Chawla4d908332020-08-31 12:30:20 +05301253 err = errors.New("device FSM: function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001254 e.Cancel(err)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001255 logger.Debug(ctx, "doStateDown-done")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001256}
1257
Himani Chawla6d2ae152020-09-02 13:11:20 +05301258// deviceHandler StateMachine related state transition methods ##### end #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001259// #################################################################################
1260
1261// ###################################################
Himani Chawla6d2ae152020-09-02 13:11:20 +05301262// deviceHandler utility methods ##### begin #########
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001263
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001264//getOnuDeviceEntry gets the ONU device entry and may wait until its value is defined
dbainbri4d3a0dc2020-12-02 00:33:42 +00001265func (dh *deviceHandler) getOnuDeviceEntry(ctx context.Context, aWait bool) *OnuDeviceEntry {
mpagenko3af1f032020-06-10 08:53:41 +00001266 dh.lockDevice.RLock()
1267 pOnuDeviceEntry := dh.pOnuOmciDevice
1268 if aWait && pOnuDeviceEntry == nil {
1269 //keep the read sema short to allow for subsequent write
1270 dh.lockDevice.RUnlock()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001271 logger.Debugw(ctx, "Waiting for DeviceEntry to be set ...", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001272 // based on concurrent processing the deviceEntry setup may not yet be finished at his point
1273 // so it might be needed to wait here for that event with some timeout
1274 select {
1275 case <-time.After(60 * time.Second): //timer may be discussed ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00001276 logger.Errorw(ctx, "No valid DeviceEntry set after maxTime", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001277 return nil
1278 case <-dh.deviceEntrySet:
dbainbri4d3a0dc2020-12-02 00:33:42 +00001279 logger.Debugw(ctx, "devicEntry ready now - continue", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001280 // if written now, we can return the written value without sema
1281 return dh.pOnuOmciDevice
1282 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001283 }
mpagenko3af1f032020-06-10 08:53:41 +00001284 dh.lockDevice.RUnlock()
1285 return pOnuDeviceEntry
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001286}
1287
Himani Chawla6d2ae152020-09-02 13:11:20 +05301288//setOnuDeviceEntry sets the ONU device entry within the handler
1289func (dh *deviceHandler) setOnuDeviceEntry(
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301290 apDeviceEntry *OnuDeviceEntry, apOnuTp *onuUniTechProf, apOnuMetricsMgr *onuMetricsManager, apOnuAlarmMgr *onuAlarmManager) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001291 dh.lockDevice.Lock()
1292 defer dh.lockDevice.Unlock()
mpagenkoaf801632020-07-03 10:00:42 +00001293 dh.pOnuOmciDevice = apDeviceEntry
1294 dh.pOnuTP = apOnuTp
Girish Gowdrae09a6202021-01-12 18:10:59 -08001295 dh.pOnuMetricsMgr = apOnuMetricsMgr
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301296 dh.pAlarmMgr = apOnuAlarmMgr
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001297}
1298
Himani Chawla6d2ae152020-09-02 13:11:20 +05301299//addOnuDeviceEntry creates a new ONU device or returns the existing
1300func (dh *deviceHandler) addOnuDeviceEntry(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001301 logger.Debugw(ctx, "adding-deviceEntry", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001302
dbainbri4d3a0dc2020-12-02 00:33:42 +00001303 deviceEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001304 if deviceEntry == nil {
1305 /* costum_me_map in python code seems always to be None,
1306 we omit that here first (declaration unclear) -> todo at Adapter specialization ...*/
1307 /* also no 'clock' argument - usage open ...*/
1308 /* and no alarm_db yet (oo.alarm_db) */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +00001309 deviceEntry = newOnuDeviceEntry(ctx, dh)
mpagenko01e726e2020-10-23 09:45:29 +00001310 onuTechProfProc := newOnuUniTechProf(ctx, dh)
Girish Gowdrae09a6202021-01-12 18:10:59 -08001311 onuMetricsMgr := newonuMetricsManager(ctx, dh)
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301312 onuAlarmManager := newAlarmManager(ctx, dh)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001313 //error treatment possible //TODO!!!
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301314 dh.setOnuDeviceEntry(deviceEntry, onuTechProfProc, onuMetricsMgr, onuAlarmManager)
mpagenko3af1f032020-06-10 08:53:41 +00001315 // fire deviceEntry ready event to spread to possibly waiting processing
1316 dh.deviceEntrySet <- true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001317 logger.Debugw(ctx, "onuDeviceEntry-added", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001318 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001319 logger.Debugw(ctx, "onuDeviceEntry-add: Device already exists", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001320 }
1321 // might be updated with some error handling !!!
1322 return nil
1323}
1324
dbainbri4d3a0dc2020-12-02 00:33:42 +00001325func (dh *deviceHandler) createInterface(ctx context.Context, onuind *oop.OnuIndication) error {
1326 logger.Debugw(ctx, "create_interface-started", log.Fields{"OnuId": onuind.GetOnuId(),
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001327 "OnuIntfId": onuind.GetIntfId(), "OnuSerialNumber": onuind.GetSerialNumber()})
1328
1329 dh.pOnuIndication = onuind // let's revise if storing the pointer is sufficient...
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001330
dbainbri4d3a0dc2020-12-02 00:33:42 +00001331 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001332 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001333 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001334 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
1335 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001336 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001337 if err := dh.storePersistentData(ctx); err != nil {
1338 logger.Warnw(ctx, "store persistent data error - continue as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001339 log.Fields{"device-id": dh.deviceID, "err": err})
1340 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001341 logger.Debugw(ctx, "call DeviceStateUpdate upon create interface", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001342 "OperStatus": voltha.OperStatus_ACTIVATING, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001343 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001344 voltha.ConnectStatus_REACHABLE, voltha.OperStatus_ACTIVATING); err != nil {
1345 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001346 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001347 }
1348 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001349 logger.Debugw(ctx, "reconciling - don't notify core about DeviceStateUpdate to ACTIVATING",
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001350 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001351
1352 if !pDevEntry.sOnuPersistentData.PersUniUnlockDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001353 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 +00001354 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001355 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001356 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001357 }
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001358 // It does not look to me as if makes sense to work with the real core device here, (not the stored clone)?
1359 // in this code the GetDevice would just make a check if the DeviceID's Device still exists in core
1360 // 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 +00001361 // 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 +00001362 // so let's just try to keep it simple ...
1363 /*
dbainbri4d3a0dc2020-12-02 00:33:42 +00001364 device, err := dh.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), dh.device.Id, dh.device.Id)
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001365 if err != nil || device == nil {
1366 //TODO: needs to handle error scenarios
1367 logger.Errorw("Failed to fetch device device at creating If", log.Fields{"err": err})
1368 return errors.New("Voltha Device not found")
1369 }
1370 */
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001371
dbainbri4d3a0dc2020-12-02 00:33:42 +00001372 if err := pDevEntry.start(log.WithSpanFromContext(context.TODO(), ctx)); err != nil {
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001373 return err
mpagenko3af1f032020-06-10 08:53:41 +00001374 }
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001375
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001376 _ = dh.deviceReasonUpdate(ctx, drStartingOpenomci, !dh.isReconciling())
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001377
1378 /* this might be a good time for Omci Verify message? */
1379 verifyExec := make(chan bool)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001380 omciVerify := newOmciTestRequest(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko3af1f032020-06-10 08:53:41 +00001381 dh.device.Id, pDevEntry.PDevOmciCC,
mpagenko900ee4b2020-10-12 11:56:34 +00001382 true, true) //exclusive and allowFailure (anyway not yet checked)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001383 omciVerify.performOmciTest(log.WithSpanFromContext(context.TODO(), ctx), verifyExec)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001384
1385 /* give the handler some time here to wait for the OMCi verification result
1386 after Timeout start and try MibUpload FSM anyway
1387 (to prevent stopping on just not supported OMCI verification from ONU) */
1388 select {
1389 case <-time.After(2 * time.Second):
dbainbri4d3a0dc2020-12-02 00:33:42 +00001390 logger.Warn(ctx, "omci start-verification timed out (continue normal)")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001391 case testresult := <-verifyExec:
dbainbri4d3a0dc2020-12-02 00:33:42 +00001392 logger.Infow(ctx, "Omci start verification done", log.Fields{"result": testresult})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001393 }
1394
1395 /* In py code it looks earlier (on activate ..)
1396 # Code to Run OMCI Test Action
1397 kwargs_omci_test_action = {
1398 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
1399 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
1400 }
1401 serial_number = device.serial_number
1402 self._test_request = OmciTestRequest(self.core_proxy,
1403 self.omci_agent, self.device_id,
1404 AniG, serial_number,
1405 self.logical_device_id,
1406 exclusive=False,
1407 **kwargs_omci_test_action)
1408 ...
1409 # Start test requests after a brief pause
1410 if not self._test_request_started:
1411 self._test_request_started = True
1412 tststart = _STARTUP_RETRY_WAIT * (random.randint(1, 5))
1413 reactor.callLater(tststart, self._test_request.start_collector)
1414
1415 */
1416 /* which is then: in omci_test_request.py : */
1417 /*
1418 def start_collector(self, callback=None):
1419 """
1420 Start the collection loop for an adapter if the frequency > 0
1421
1422 :param callback: (callable) Function to call to collect PM data
1423 """
1424 self.logger.info("starting-pm-collection", device_name=self.name, default_freq=self.default_freq)
1425 if callback is None:
1426 callback = self.perform_test_omci
1427
1428 if self.lc is None:
1429 self.lc = LoopingCall(callback)
1430
1431 if self.default_freq > 0:
1432 self.lc.start(interval=self.default_freq / 10)
1433
1434 def perform_test_omci(self):
1435 """
1436 Perform the initial test request
1437 """
1438 ani_g_entities = self._device.configuration.ani_g_entities
1439 ani_g_entities_ids = list(ani_g_entities.keys()) if ani_g_entities \
1440 is not None else None
1441 self._entity_id = ani_g_entities_ids[0]
1442 self.logger.info('perform-test', entity_class=self._entity_class,
1443 entity_id=self._entity_id)
1444 try:
1445 frame = MEFrame(self._entity_class, self._entity_id, []).test()
1446 result = yield self._device.omci_cc.send(frame)
1447 if not result.fields['omci_message'].fields['success_code']:
1448 self.logger.info('Self-Test Submitted Successfully',
1449 code=result.fields[
1450 'omci_message'].fields['success_code'])
1451 else:
1452 raise TestFailure('Test Failure: {}'.format(
1453 result.fields['omci_message'].fields['success_code']))
1454 except TimeoutError as e:
1455 self.deferred.errback(failure.Failure(e))
1456
1457 except Exception as e:
1458 self.logger.exception('perform-test-Error', e=e,
1459 class_id=self._entity_class,
1460 entity_id=self._entity_id)
1461 self.deferred.errback(failure.Failure(e))
1462
1463 */
1464
1465 // PM related heartbeat??? !!!TODO....
1466 //self._heartbeat.enabled = True
1467
mpagenko1cc3cb42020-07-27 15:24:38 +00001468 /* Note: Even though FSM calls look 'synchronous' here, FSM is running in background with the effect that possible errors
1469 * within the MibUpload are not notified in the OnuIndication response, this might be acceptable here,
1470 * 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 +05301471 * otherwise some processing synchronization would be required - cmp. e.g TechProfile processing
mpagenko1cc3cb42020-07-27 15:24:38 +00001472 */
1473 //call MibUploadFSM - transition up to state ulStInSync
mpagenko3af1f032020-06-10 08:53:41 +00001474 pMibUlFsm := pDevEntry.pMibUploadFsm.pFsm
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +00001475 if pMibUlFsm != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +00001476 if pMibUlFsm.Is(ulStDisabled) {
1477 if err := pMibUlFsm.Event(ulEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001478 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 +00001479 return fmt.Errorf("can't go to state starting: %s", dh.deviceID)
Himani Chawla4d908332020-08-31 12:30:20 +05301480 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001481 logger.Debugw(ctx, "MibSyncFsm", log.Fields{"state": string(pMibUlFsm.Current())})
Himani Chawla4d908332020-08-31 12:30:20 +05301482 //Determine ONU status and start/re-start MIB Synchronization tasks
1483 //Determine if this ONU has ever synchronized
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +00001484 if pDevEntry.isNewOnu() {
Himani Chawla4d908332020-08-31 12:30:20 +05301485 if err := pMibUlFsm.Event(ulEvResetMib); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001486 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 +00001487 return fmt.Errorf("can't go to state resetting_mib: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001488 }
Himani Chawla4d908332020-08-31 12:30:20 +05301489 } else {
1490 if err := pMibUlFsm.Event(ulEvExamineMds); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001491 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 +00001492 return fmt.Errorf("can't go to examine_mds: %s", dh.deviceID)
Himani Chawla4d908332020-08-31 12:30:20 +05301493 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001494 logger.Debugw(ctx, "state of MibSyncFsm", log.Fields{"state": string(pMibUlFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001495 }
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +00001496 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001497 logger.Errorw(ctx, "wrong state of MibSyncFsm - want: disabled", log.Fields{"have": string(pMibUlFsm.Current()),
mpagenko01e726e2020-10-23 09:45:29 +00001498 "device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001499 return fmt.Errorf("wrong state of MibSyncFsm: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001500 }
1501 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001502 logger.Errorw(ctx, "MibSyncFsm invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001503 return fmt.Errorf("can't execute MibSync: %s", dh.deviceID)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001504 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08001505
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001506 if !dh.getCollectorIsRunning() {
1507 // Start PM collector routine
1508 go dh.startCollector(ctx)
1509 }
Himani Chawla4c1d4c72021-02-18 12:14:31 +05301510 if !dh.getAlarmManagerIsRunning() {
1511 go dh.startAlarmManager(ctx)
1512 }
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05301513
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001514 return nil
1515}
1516
dbainbri4d3a0dc2020-12-02 00:33:42 +00001517func (dh *deviceHandler) updateInterface(ctx context.Context, onuind *oop.OnuIndication) error {
mpagenko3af1f032020-06-10 08:53:41 +00001518 //state checking to prevent unneeded processing (eg. on ONU 'unreachable' and 'down')
mpagenkofc4f56e2020-11-04 17:17:49 +00001519 // (but note that the deviceReason may also have changed to e.g. TechProf*Delete_Success in between)
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001520 if dh.deviceReason != drStoppingOpenomci {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001521 logger.Debugw(ctx, "updateInterface-started - stopping-device", log.Fields{"device-id": dh.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +00001522
mpagenko900ee4b2020-10-12 11:56:34 +00001523 //stop all running FSM processing - make use of the DH-state as mirrored in the deviceReason
1524 //here no conflict with aborted FSM's should arise as a complete OMCI initialization is assumed on ONU-Up
1525 //but that might change with some simple MDS check on ONU-Up treatment -> attention!!!
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001526 if err := dh.resetFsms(ctx, true); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001527 logger.Errorw(ctx, "error-updateInterface at FSM stop",
mpagenko900ee4b2020-10-12 11:56:34 +00001528 log.Fields{"device-id": dh.deviceID, "error": err})
1529 // abort: system behavior is just unstable ...
1530 return err
1531 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001532 //all stored persistent data are not valid anymore (loosing knowledge about the connected ONU)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001533 _ = 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 +00001534
1535 //deviceEntry stop without omciCC reset here, regarding the OMCI_CC still valid for this ONU
1536 // - in contrary to disableDevice - compare with processUniDisableStateDoneEvent
1537 //stop the device entry which resets the attached omciCC
dbainbri4d3a0dc2020-12-02 00:33:42 +00001538 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
mpagenko3af1f032020-06-10 08:53:41 +00001539 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001540 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001541 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
mpagenko3af1f032020-06-10 08:53:41 +00001542 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001543 _ = pDevEntry.stop(log.WithSpanFromContext(context.TODO(), ctx), false)
mpagenko3af1f032020-06-10 08:53:41 +00001544
1545 //TODO!!! remove existing traffic profiles
1546 /* from py code, if TP's exist, remove them - not yet implemented
1547 self._tp = dict()
1548 # Let TP download happen again
1549 for uni_id in self._tp_service_specific_task:
1550 self._tp_service_specific_task[uni_id].clear()
1551 for uni_id in self._tech_profile_download_done:
1552 self._tech_profile_download_done[uni_id].clear()
1553 */
1554
dbainbri4d3a0dc2020-12-02 00:33:42 +00001555 dh.disableUniPortStateUpdate(ctx)
mpagenko3af1f032020-06-10 08:53:41 +00001556
mpagenkofc4f56e2020-11-04 17:17:49 +00001557 dh.ReadyForSpecificOmciConfig = false
1558
dbainbri4d3a0dc2020-12-02 00:33:42 +00001559 if err := dh.deviceReasonUpdate(ctx, drStoppingOpenomci, true); err != nil {
mpagenko3af1f032020-06-10 08:53:41 +00001560 // abort: system behavior is just unstable ...
1561 return err
1562 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001563 logger.Debugw(ctx, "call DeviceStateUpdate upon update interface", log.Fields{"ConnectStatus": voltha.ConnectStatus_UNREACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001564 "OperStatus": voltha.OperStatus_DISCOVERED, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001565 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
mpagenko3af1f032020-06-10 08:53:41 +00001566 voltha.ConnectStatus_UNREACHABLE, voltha.OperStatus_DISCOVERED); err != nil {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001567 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001568 logger.Errorw(ctx, "error-updating-device-state unreachable-discovered",
divyadesai4d299552020-08-18 07:13:49 +00001569 log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko3af1f032020-06-10 08:53:41 +00001570 // abort: system behavior is just unstable ...
1571 return err
1572 }
1573 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001574 logger.Debugw(ctx, "updateInterface - device already stopped", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00001575 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001576 return nil
1577}
1578
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001579func (dh *deviceHandler) resetFsms(ctx context.Context, includingMibSyncFsm bool) error {
mpagenko900ee4b2020-10-12 11:56:34 +00001580 //all possible FSM's are stopped or reset here to ensure their transition to 'disabled'
1581 //it is not sufficient to stop/reset the latest running FSM as done in previous versions
1582 // as after down/up procedures all FSM's might be active/ongoing (in theory)
1583 // and using the stop/reset event should never harm
1584
dbainbri4d3a0dc2020-12-02 00:33:42 +00001585 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
mpagenko900ee4b2020-10-12 11:56:34 +00001586 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001587 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001588 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
1589 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001590 if includingMibSyncFsm {
1591 //the MibSync FSM might be active all the ONU-active time,
1592 // hence it must be stopped unconditionally
1593 pMibUlFsm := pDevEntry.pMibUploadFsm.pFsm
1594 if pMibUlFsm != nil {
1595 _ = pMibUlFsm.Event(ulEvStop) //TODO!! verify if MibSyncFsm stop-processing is sufficient (to allow it again afterwards)
1596 }
mpagenko900ee4b2020-10-12 11:56:34 +00001597 }
1598 //MibDownload may run
1599 pMibDlFsm := pDevEntry.pMibDownloadFsm.pFsm
1600 if pMibDlFsm != nil {
1601 _ = pMibDlFsm.Event(dlEvReset)
1602 }
1603 //port lock/unlock FSM's may be active
1604 if dh.pUnlockStateFsm != nil {
1605 _ = dh.pUnlockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
1606 }
1607 if dh.pLockStateFsm != nil {
1608 _ = dh.pLockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
1609 }
1610 //techProfile related PonAniConfigFsm FSM may be active
1611 if dh.pOnuTP != nil {
1612 // should always be the case here
1613 // FSM stop maybe encapsulated as OnuTP method - perhaps later in context of module splitting
1614 if dh.pOnuTP.pAniConfigFsm != nil {
Girish Gowdra041dcb32020-11-16 16:54:30 -08001615 for uniTP := range dh.pOnuTP.pAniConfigFsm {
1616 _ = dh.pOnuTP.pAniConfigFsm[uniTP].pAdaptFsm.pFsm.Event(aniEvReset)
1617 }
mpagenko900ee4b2020-10-12 11:56:34 +00001618 }
1619 for _, uniPort := range dh.uniEntityMap {
mpagenko900ee4b2020-10-12 11:56:34 +00001620 // reset the possibly existing VlanConfigFsm
mpagenkof1fc3862021-02-16 10:09:52 +00001621 dh.lockVlanConfig.RLock()
mpagenko900ee4b2020-10-12 11:56:34 +00001622 if pVlanFilterFsm, exist := dh.UniVlanConfigFsmMap[uniPort.uniID]; exist {
mpagenkof1fc3862021-02-16 10:09:52 +00001623 dh.lockVlanConfig.RUnlock()
mpagenko900ee4b2020-10-12 11:56:34 +00001624 //VlanFilterFsm exists and was already started
1625 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
1626 if pVlanFilterStatemachine != nil {
mpagenkoa40e99a2020-11-17 13:50:39 +00001627 //reset of all Fsm is always accompanied by global persistency data removal
mpagenko2418ab02020-11-12 12:58:06 +00001628 // no need to remove specific data
1629 pVlanFilterFsm.RequestClearPersistency(false)
1630 //and reset the UniVlanConfig FSM
mpagenko900ee4b2020-10-12 11:56:34 +00001631 _ = pVlanFilterStatemachine.Event(vlanEvReset)
1632 }
mpagenkof1fc3862021-02-16 10:09:52 +00001633 } else {
1634 dh.lockVlanConfig.RUnlock()
mpagenko900ee4b2020-10-12 11:56:34 +00001635 }
1636 }
1637 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001638 if dh.getCollectorIsRunning() {
1639 // Stop collector routine
1640 dh.stopCollector <- true
1641 }
Himani Chawla4c1d4c72021-02-18 12:14:31 +05301642 if dh.getAlarmManagerIsRunning() {
1643 dh.stopAlarmManager <- true
1644 }
1645
mpagenko80622a52021-02-09 16:53:23 +00001646 //reset a possibly running upgrade FSM
1647 // specific here: If the FSM is in upgradeStWaitForCommit, it is left there for possibly later commit
1648 // this possibly also refers later to (not yet existing) upgradeStWaitForActivate (with ctl API changes)
1649 dh.lockUpgradeFsm.RLock()
1650 if dh.pOnuUpradeFsm != nil {
1651 _ = dh.pOnuUpradeFsm.pAdaptFsm.pFsm.Event(upgradeEvReset)
1652 }
1653 dh.lockUpgradeFsm.RUnlock()
1654
mpagenko900ee4b2020-10-12 11:56:34 +00001655 return nil
1656}
1657
dbainbri4d3a0dc2020-12-02 00:33:42 +00001658func (dh *deviceHandler) processMibDatabaseSyncEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1659 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 +05301660
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001661 _ = dh.deviceReasonUpdate(ctx, drDiscoveryMibsyncComplete, !dh.isReconciling())
dbainbri4d3a0dc2020-12-02 00:33:42 +00001662 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001663 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001664 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001665 return
1666 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001667 i := uint8(0) //UNI Port limit: see MaxUnisPerOnu (by now 16) (OMCI supports max 255 p.b.)
mpagenko8b5fdd22020-12-17 17:58:32 +00001668 if pptpInstKeys := pDevEntry.pOnuDB.getSortedInstKeys(
1669 ctx, me.PhysicalPathTerminationPointEthernetUniClassID); len(pptpInstKeys) > 0 {
1670 for _, mgmtEntityID := range pptpInstKeys {
1671 logger.Debugw(ctx, "Add PPTPEthUni port for MIB-stored instance:", log.Fields{
1672 "device-id": dh.deviceID, "PPTPEthUni EntityID": mgmtEntityID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001673 dh.addUniPort(ctx, mgmtEntityID, i, uniPPTP)
Himani Chawla26e555c2020-08-31 12:30:20 +05301674 i++
1675 }
1676 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001677 logger.Debugw(ctx, "No UniG instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301678 }
mpagenko8b5fdd22020-12-17 17:58:32 +00001679 if veipInstKeys := pDevEntry.pOnuDB.getSortedInstKeys(
1680 ctx, me.VirtualEthernetInterfacePointClassID); len(veipInstKeys) > 0 {
Himani Chawla26e555c2020-08-31 12:30:20 +05301681 for _, mgmtEntityID := range veipInstKeys {
mpagenko8b5fdd22020-12-17 17:58:32 +00001682 logger.Debugw(ctx, "Add VEIP for MIB-stored instance:", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +05301683 "device-id": dh.deviceID, "VEIP EntityID": mgmtEntityID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001684 dh.addUniPort(ctx, mgmtEntityID, i, uniVEIP)
Himani Chawla26e555c2020-08-31 12:30:20 +05301685 i++
1686 }
1687 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001688 logger.Debugw(ctx, "No VEIP instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301689 }
1690 if i == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001691 logger.Warnw(ctx, "No PPTP instances found", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301692 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001693 /* 200605: lock processing after initial MIBUpload removed now as the ONU should be in the lock state per default here */
1694 /* 201117: build_dt-berlin-pod-openonugo_1T8GEM_voltha_DT_openonugo_master_test runs into error TC
1695 * 'Test Disable ONUs and OLT Then Delete ONUs and OLT for DT' with Sercom ONU, which obviously needs
1696 * disable/enable toggling here to allow traffic
1697 * but moreover it might be useful for tracking the interface operState changes if this will be implemented,
1698 * like the py comment says:
1699 * # start by locking all the unis till mib sync and initial mib is downloaded
1700 * # this way we can capture the port down/up events when we are ready
1701 */
Himani Chawla26e555c2020-08-31 12:30:20 +05301702
mpagenkoa40e99a2020-11-17 13:50:39 +00001703 // Init Uni Ports to Admin locked state
1704 // *** should generate UniLockStateDone event *****
1705 if dh.pLockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001706 dh.createUniLockFsm(ctx, true, UniLockStateDone)
mpagenkoa40e99a2020-11-17 13:50:39 +00001707 } else { //LockStateFSM already init
1708 dh.pLockStateFsm.setSuccessEvent(UniLockStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001709 dh.runUniLockFsm(ctx, true)
mpagenkoa40e99a2020-11-17 13:50:39 +00001710 }
1711}
1712
dbainbri4d3a0dc2020-12-02 00:33:42 +00001713func (dh *deviceHandler) processUniLockStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1714 logger.Infow(ctx, "UniLockStateDone event: Starting MIB download", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301715 /* Mib download procedure -
1716 ***** should run over 'downloaded' state and generate MibDownloadDone event *****
1717 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00001718 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001719 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001720 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001721 return
1722 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301723 pMibDlFsm := pDevEntry.pMibDownloadFsm.pFsm
1724 if pMibDlFsm != nil {
1725 if pMibDlFsm.Is(dlStDisabled) {
1726 if err := pMibDlFsm.Event(dlEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001727 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 +05301728 // maybe try a FSM reset and then again ... - TODO!!!
1729 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001730 logger.Debugw(ctx, "MibDownloadFsm", log.Fields{"state": string(pMibDlFsm.Current())})
Himani Chawla26e555c2020-08-31 12:30:20 +05301731 // maybe use more specific states here for the specific download steps ...
1732 if err := pMibDlFsm.Event(dlEvCreateGal); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001733 logger.Errorw(ctx, "MibDownloadFsm: Can't start CreateGal", log.Fields{"device-id": dh.deviceID, "err": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05301734 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001735 logger.Debugw(ctx, "state of MibDownloadFsm", log.Fields{"state": string(pMibDlFsm.Current())})
Himani Chawla26e555c2020-08-31 12:30:20 +05301736 //Begin MIB data download (running autonomously)
1737 }
1738 }
1739 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001740 logger.Errorw(ctx, "wrong state of MibDownloadFsm - want: disabled", log.Fields{"have": string(pMibDlFsm.Current()),
mpagenko01e726e2020-10-23 09:45:29 +00001741 "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301742 // maybe try a FSM reset and then again ... - TODO!!!
1743 }
1744 /***** Mib download started */
1745 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001746 logger.Errorw(ctx, "MibDownloadFsm invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301747 }
1748}
1749
dbainbri4d3a0dc2020-12-02 00:33:42 +00001750func (dh *deviceHandler) processMibDownloadDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1751 logger.Debugw(ctx, "MibDownloadDone event received, unlocking the ONU interfaces", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301752 //initiate DevStateUpdate
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001753 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001754 logger.Debugw(ctx, "call DeviceStateUpdate upon mib-download done", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00001755 "OperStatus": voltha.OperStatus_ACTIVE, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001756 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05301757 voltha.ConnectStatus_REACHABLE, voltha.OperStatus_ACTIVE); err != nil {
1758 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001759 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05301760 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001761 logger.Debugw(ctx, "dev state updated to 'Oper.Active'", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301762 }
1763 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001764 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001765 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001766 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001767 return
1768 }
1769 if pDevEntry.sOnuPersistentData.PersUniDisableDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001770 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 +00001771 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001772 dh.stopReconciling(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001773 return
1774 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00001775 logger.Debugw(ctx, "reconciling - don't notify core about DeviceStateUpdate to ACTIVE",
Himani Chawla26e555c2020-08-31 12:30:20 +05301776 log.Fields{"device-id": dh.deviceID})
1777 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001778 _ = dh.deviceReasonUpdate(ctx, drInitialMibDownloaded, !dh.isReconciling())
Girish Gowdrae0140f02021-02-02 16:55:09 -08001779
1780 // Initialize classical L2 PM Interval Counters
1781 if err := dh.pOnuMetricsMgr.pAdaptFsm.pFsm.Event(l2PmEventInit); err != nil {
1782 // There is no way we should be landing here, but if we do then
1783 // there is nothing much we can do about this other than log error
1784 logger.Errorw(ctx, "error starting l2 pm fsm", log.Fields{"device-id": dh.device.Id, "err": err})
1785 }
1786
mpagenkofc4f56e2020-11-04 17:17:49 +00001787 dh.ReadyForSpecificOmciConfig = true
Himani Chawla26e555c2020-08-31 12:30:20 +05301788 // *** should generate UniUnlockStateDone event *****
1789 if dh.pUnlockStateFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001790 dh.createUniLockFsm(ctx, false, UniUnlockStateDone)
Himani Chawla26e555c2020-08-31 12:30:20 +05301791 } else { //UnlockStateFSM already init
Himani Chawla6d2ae152020-09-02 13:11:20 +05301792 dh.pUnlockStateFsm.setSuccessEvent(UniUnlockStateDone)
dbainbri4d3a0dc2020-12-02 00:33:42 +00001793 dh.runUniLockFsm(ctx, false)
Himani Chawla26e555c2020-08-31 12:30:20 +05301794 }
1795}
1796
dbainbri4d3a0dc2020-12-02 00:33:42 +00001797func (dh *deviceHandler) processUniUnlockStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1798 dh.enableUniPortStateUpdate(ctx) //cmp python yield self.enable_ports()
Himani Chawla26e555c2020-08-31 12:30:20 +05301799
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001800 if !dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001801 logger.Infow(ctx, "UniUnlockStateDone event: Sending OnuUp event", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05301802 raisedTs := time.Now().UnixNano()
dbainbri4d3a0dc2020-12-02 00:33:42 +00001803 go dh.sendOnuOperStateEvent(ctx, voltha.OperStatus_ACTIVE, dh.deviceID, raisedTs) //cmp python onu_active_event
1804 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001805 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001806 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001807 return
1808 }
1809 pDevEntry.sOnuPersistentData.PersUniUnlockDone = true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001810 if err := dh.storePersistentData(ctx); err != nil {
1811 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001812 log.Fields{"device-id": dh.deviceID, "err": err})
1813 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301814 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001815 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 +05301816 log.Fields{"device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001817 go dh.reconcileDeviceTechProf(ctx)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001818 // reconcilement will be continued after ani config is done
Himani Chawla26e555c2020-08-31 12:30:20 +05301819 }
1820}
1821
dbainbri4d3a0dc2020-12-02 00:33:42 +00001822func (dh *deviceHandler) processUniDisableStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1823 logger.Debugw(ctx, "DeviceStateUpdate upon disable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001824 "OperStatus": voltha.OperStatus_UNKNOWN, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001825 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko900ee4b2020-10-12 11:56:34 +00001826 dh.deviceID, voltha.ConnectStatus_REACHABLE, voltha.OperStatus_UNKNOWN); err != nil {
1827 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001828 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko900ee4b2020-10-12 11:56:34 +00001829 }
1830
dbainbri4d3a0dc2020-12-02 00:33:42 +00001831 logger.Debugw(ctx, "DeviceReasonUpdate upon disable", log.Fields{"reason": deviceReasonMap[drOmciAdminLock], "device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001832 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
dbainbri4d3a0dc2020-12-02 00:33:42 +00001833 _ = dh.deviceReasonUpdate(ctx, drOmciAdminLock, true)
mpagenko900ee4b2020-10-12 11:56:34 +00001834
1835 //transfer the modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +00001836 dh.disableUniPortStateUpdate(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001837
dbainbri4d3a0dc2020-12-02 00:33:42 +00001838 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001839 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001840 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001841 return
1842 }
1843 pDevEntry.sOnuPersistentData.PersUniDisableDone = true
dbainbri4d3a0dc2020-12-02 00:33:42 +00001844 if err := dh.storePersistentData(ctx); err != nil {
1845 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001846 log.Fields{"device-id": dh.deviceID, "err": err})
1847 }
mpagenko900ee4b2020-10-12 11:56:34 +00001848}
1849
dbainbri4d3a0dc2020-12-02 00:33:42 +00001850func (dh *deviceHandler) processUniEnableStateDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
1851 logger.Debugw(ctx, "DeviceStateUpdate upon re-enable", log.Fields{"ConnectStatus": voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001852 "OperStatus": voltha.OperStatus_ACTIVE, "device-id": dh.deviceID})
dbainbri4d3a0dc2020-12-02 00:33:42 +00001853 if err := dh.coreProxy.DeviceStateUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, voltha.ConnectStatus_REACHABLE,
mpagenko900ee4b2020-10-12 11:56:34 +00001854 voltha.OperStatus_ACTIVE); err != nil {
1855 //TODO with VOL-3045/VOL-3046: return the error and stop further processing
dbainbri4d3a0dc2020-12-02 00:33:42 +00001856 logger.Errorw(ctx, "error-updating-device-state", log.Fields{"device-id": dh.deviceID, "error": err})
mpagenko900ee4b2020-10-12 11:56:34 +00001857 }
1858
dbainbri4d3a0dc2020-12-02 00:33:42 +00001859 logger.Debugw(ctx, "DeviceReasonUpdate upon re-enable", log.Fields{
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001860 "reason": deviceReasonMap[drOnuReenabled], "device-id": dh.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +00001861 // DeviceReason to update acc.to modified py code as per beginning of Sept 2020
dbainbri4d3a0dc2020-12-02 00:33:42 +00001862 _ = dh.deviceReasonUpdate(ctx, drOnuReenabled, true)
mpagenko900ee4b2020-10-12 11:56:34 +00001863
1864 //transfer the modified logical uni port state
dbainbri4d3a0dc2020-12-02 00:33:42 +00001865 dh.enableUniPortStateUpdate(ctx)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001866
dbainbri4d3a0dc2020-12-02 00:33:42 +00001867 pDevEntry := dh.getOnuDeviceEntry(ctx, false)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001868 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001869 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001870 return
1871 }
1872 pDevEntry.sOnuPersistentData.PersUniDisableDone = false
dbainbri4d3a0dc2020-12-02 00:33:42 +00001873 if err := dh.storePersistentData(ctx); err != nil {
1874 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00001875 log.Fields{"device-id": dh.deviceID, "err": err})
1876 }
mpagenko900ee4b2020-10-12 11:56:34 +00001877}
1878
dbainbri4d3a0dc2020-12-02 00:33:42 +00001879func (dh *deviceHandler) processOmciAniConfigDoneEvent(ctx context.Context, devEvent OnuDeviceEvent) {
mpagenkofc4f56e2020-11-04 17:17:49 +00001880 if devEvent == OmciAniConfigDone {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001881 logger.Debugw(ctx, "OmciAniConfigDone event received", log.Fields{"device-id": dh.deviceID})
mpagenkofc4f56e2020-11-04 17:17:49 +00001882 // attention: the device reason update is done based on ONU-UNI-Port related activity
1883 // - which may cause some inconsistency
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001884 if dh.deviceReason != drTechProfileConfigDownloadSuccess {
mpagenkofc4f56e2020-11-04 17:17:49 +00001885 // 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 +00001886 _ = dh.deviceReasonUpdate(ctx, drTechProfileConfigDownloadSuccess, !dh.isReconciling())
Himani Chawla26e555c2020-08-31 12:30:20 +05301887 }
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001888 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001889 go dh.reconcileDeviceFlowConfig(ctx)
mpagenkofc4f56e2020-11-04 17:17:49 +00001890 }
1891 } else { // should be the OmciAniResourceRemoved block
dbainbri4d3a0dc2020-12-02 00:33:42 +00001892 logger.Debugw(ctx, "OmciAniResourceRemoved event received", log.Fields{"device-id": dh.deviceID})
mpagenkofc4f56e2020-11-04 17:17:49 +00001893 // attention: the device reason update is done based on ONU-UNI-Port related activity
1894 // - which may cause some inconsistency
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001895 if dh.deviceReason != drTechProfileConfigDeleteSuccess {
mpagenkofc4f56e2020-11-04 17:17:49 +00001896 // 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 +00001897 _ = dh.deviceReasonUpdate(ctx, drTechProfileConfigDeleteSuccess, true)
mpagenkofc4f56e2020-11-04 17:17:49 +00001898 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001899 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301900}
1901
dbainbri4d3a0dc2020-12-02 00:33:42 +00001902func (dh *deviceHandler) processOmciVlanFilterDoneEvent(ctx context.Context, aDevEvent OnuDeviceEvent) {
1903 logger.Debugw(ctx, "OmciVlanFilterDone event received",
mpagenkofc4f56e2020-11-04 17:17:49 +00001904 log.Fields{"device-id": dh.deviceID, "event": aDevEvent})
Himani Chawla26e555c2020-08-31 12:30:20 +05301905 // attention: the device reason update is done based on ONU-UNI-Port related activity
1906 // - which may cause some inconsistency
Himani Chawla26e555c2020-08-31 12:30:20 +05301907
mpagenkof1fc3862021-02-16 10:09:52 +00001908 if aDevEvent == OmciVlanFilterAddDone || aDevEvent == OmciVlanFilterAddDoneNoKvStore {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001909 if dh.deviceReason != drOmciFlowsPushed {
mpagenkofc4f56e2020-11-04 17:17:49 +00001910 // which may be the case from some previous actvity on another UNI Port of the ONU
1911 // or even some previous flow add activity on the same port
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001912 _ = dh.deviceReasonUpdate(ctx, drOmciFlowsPushed, !dh.isReconciling())
1913 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001914 go dh.reconcileMetrics(ctx)
mpagenkofc4f56e2020-11-04 17:17:49 +00001915 }
1916 }
1917 } else {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00001918 if dh.deviceReason != drOmciFlowsDeleted {
mpagenkofc4f56e2020-11-04 17:17:49 +00001919 //not relevant for reconcile
dbainbri4d3a0dc2020-12-02 00:33:42 +00001920 _ = dh.deviceReasonUpdate(ctx, drOmciFlowsDeleted, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00001921 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301922 }
mpagenkof1fc3862021-02-16 10:09:52 +00001923
1924 if aDevEvent == OmciVlanFilterAddDone || aDevEvent == OmciVlanFilterRemDone {
1925 //events that request KvStore write
1926 if err := dh.storePersistentData(ctx); err != nil {
1927 logger.Warnw(ctx, "store persistent data error - continue for now as there will be additional write attempts",
1928 log.Fields{"device-id": dh.deviceID, "err": err})
1929 }
1930 } else {
1931 logger.Debugw(ctx, "OmciVlanFilter*Done* - write to KvStore not requested",
1932 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt10d98192021-01-27 15:29:31 +00001933 }
Himani Chawla26e555c2020-08-31 12:30:20 +05301934}
1935
Himani Chawla6d2ae152020-09-02 13:11:20 +05301936//deviceProcStatusUpdate evaluates possible processing events and initiates according next activities
dbainbri4d3a0dc2020-12-02 00:33:42 +00001937func (dh *deviceHandler) deviceProcStatusUpdate(ctx context.Context, devEvent OnuDeviceEvent) {
Himani Chawla4d908332020-08-31 12:30:20 +05301938 switch devEvent {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001939 case MibDatabaseSync:
1940 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001941 dh.processMibDatabaseSyncEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001942 }
mpagenkoa40e99a2020-11-17 13:50:39 +00001943 case UniLockStateDone:
1944 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001945 dh.processUniLockStateDoneEvent(ctx, devEvent)
mpagenkoa40e99a2020-11-17 13:50:39 +00001946 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001947 case MibDownloadDone:
1948 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001949 dh.processMibDownloadDoneEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001950 }
1951 case UniUnlockStateDone:
1952 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001953 dh.processUniUnlockStateDoneEvent(ctx, devEvent)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001954 }
mpagenko900ee4b2020-10-12 11:56:34 +00001955 case UniEnableStateDone:
1956 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001957 dh.processUniEnableStateDoneEvent(ctx, devEvent)
mpagenko900ee4b2020-10-12 11:56:34 +00001958 }
1959 case UniDisableStateDone:
1960 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001961 dh.processUniDisableStateDoneEvent(ctx, devEvent)
mpagenko900ee4b2020-10-12 11:56:34 +00001962 }
mpagenkofc4f56e2020-11-04 17:17:49 +00001963 case OmciAniConfigDone, OmciAniResourceRemoved:
mpagenko3dbcdd22020-07-22 07:38:45 +00001964 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001965 dh.processOmciAniConfigDoneEvent(ctx, devEvent)
mpagenko3dbcdd22020-07-22 07:38:45 +00001966 }
mpagenkof1fc3862021-02-16 10:09:52 +00001967 case OmciVlanFilterAddDone, OmciVlanFilterAddDoneNoKvStore, OmciVlanFilterRemDone, OmciVlanFilterRemDoneNoKvStore:
mpagenkodff5dda2020-08-28 11:52:01 +00001968 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001969 dh.processOmciVlanFilterDoneEvent(ctx, devEvent)
mpagenkodff5dda2020-08-28 11:52:01 +00001970 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001971 default:
1972 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001973 logger.Debugw(ctx, "unhandled-device-event", log.Fields{"device-id": dh.deviceID, "event": devEvent})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00001974 }
1975 } //switch
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001976}
1977
dbainbri4d3a0dc2020-12-02 00:33:42 +00001978func (dh *deviceHandler) addUniPort(ctx context.Context, aUniInstNo uint16, aUniID uint8, aPortType uniPortType) {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001979 // parameters are IntfId, OnuId, uniId
dbainbri4d3a0dc2020-12-02 00:33:42 +00001980 uniNo := mkUniPortNum(ctx, dh.pOnuIndication.GetIntfId(), dh.pOnuIndication.GetOnuId(),
Himani Chawla4d908332020-08-31 12:30:20 +05301981 uint32(aUniID))
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001982 if _, present := dh.uniEntityMap[uniNo]; present {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001983 logger.Warnw(ctx, "onuUniPort-add: Port already exists", log.Fields{"for InstanceId": aUniInstNo})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001984 } else {
Himani Chawla4d908332020-08-31 12:30:20 +05301985 //with arguments aUniID, a_portNo, aPortType
dbainbri4d3a0dc2020-12-02 00:33:42 +00001986 pUniPort := newOnuUniPort(ctx, aUniID, uniNo, aUniInstNo, aPortType)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001987 if pUniPort == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001988 logger.Warnw(ctx, "onuUniPort-add: Could not create Port", log.Fields{"for InstanceId": aUniInstNo})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001989 } else {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00001990 //store UniPort with the System-PortNumber key
1991 dh.uniEntityMap[uniNo] = pUniPort
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00001992 if !dh.isReconciling() {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001993 // create announce the UniPort to the core as VOLTHA Port object
dbainbri4d3a0dc2020-12-02 00:33:42 +00001994 if err := pUniPort.createVolthaPort(ctx, dh); err == nil {
1995 logger.Infow(ctx, "onuUniPort-added", log.Fields{"for PortNo": uniNo})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001996 } //error logging already within UniPort method
1997 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00001998 logger.Debugw(ctx, "reconciling - onuUniPort already added", log.Fields{"for PortNo": uniNo, "device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00001999 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00002000 }
2001 }
2002}
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002003
mpagenko3af1f032020-06-10 08:53:41 +00002004// enableUniPortStateUpdate enables UniPortState and update core port state accordingly
dbainbri4d3a0dc2020-12-02 00:33:42 +00002005func (dh *deviceHandler) enableUniPortStateUpdate(ctx context.Context) {
Holger Hildebrandtbe674422020-05-05 13:05:30 +00002006 // py code was updated 2003xx to activate the real ONU UNI ports per OMCI (VEIP or PPTP)
Himani Chawla4d908332020-08-31 12:30:20 +05302007 // but towards core only the first port active state is signaled
Holger Hildebrandtbe674422020-05-05 13:05:30 +00002008 // with following remark:
2009 // # TODO: for now only support the first UNI given no requirement for multiple uni yet. Also needed to reduce flow
2010 // # load on the core
2011
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002012 // lock_ports(false) as done in py code here is shifted to separate call from devicevent processing
Holger Hildebrandtbe674422020-05-05 13:05:30 +00002013
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002014 for uniNo, uniPort := range dh.uniEntityMap {
mpagenko3af1f032020-06-10 08:53:41 +00002015 // only if this port is validated for operState transfer
Himani Chawla6d2ae152020-09-02 13:11:20 +05302016 if (1<<uniPort.uniID)&activeUniPortStateUpdateMask == (1 << uniPort.uniID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002017 logger.Infow(ctx, "onuUniPort-forced-OperState-ACTIVE", log.Fields{"for PortNo": uniNo})
Himani Chawla6d2ae152020-09-02 13:11:20 +05302018 uniPort.setOperState(vc.OperStatus_ACTIVE)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00002019 if !dh.isReconciling() {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00002020 //maybe also use getter functions on uniPort - perhaps later ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00002021 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 +00002022 } else {
Andrea Campanellaab7b6a52020-10-06 16:17:13 +02002023 //TODO there is no retry mechanism, return error
dbainbri4d3a0dc2020-12-02 00:33:42 +00002024 logger.Debugw(ctx, "reconciling - don't notify core about PortStateUpdate", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtf41a1602020-08-19 09:52:50 +00002025 }
mpagenko3af1f032020-06-10 08:53:41 +00002026 }
2027 }
2028}
2029
2030// Disable UniPortState and update core port state accordingly
dbainbri4d3a0dc2020-12-02 00:33:42 +00002031func (dh *deviceHandler) disableUniPortStateUpdate(ctx context.Context) {
mpagenko3af1f032020-06-10 08:53:41 +00002032 // compare enableUniPortStateUpdate() above
2033 // -> use current restriction to operate only on first UNI port as inherited from actual Py code
2034 for uniNo, uniPort := range dh.uniEntityMap {
2035 // only if this port is validated for operState transfer
Himani Chawla6d2ae152020-09-02 13:11:20 +05302036 if (1<<uniPort.uniID)&activeUniPortStateUpdateMask == (1 << uniPort.uniID) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002037 logger.Infow(ctx, "onuUniPort-forced-OperState-UNKNOWN", log.Fields{"for PortNo": uniNo})
Himani Chawla6d2ae152020-09-02 13:11:20 +05302038 uniPort.setOperState(vc.OperStatus_UNKNOWN)
mpagenko3af1f032020-06-10 08:53:41 +00002039 //maybe also use getter functions on uniPort - perhaps later ...
dbainbri4d3a0dc2020-12-02 00:33:42 +00002040 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 +00002041 }
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002042 }
2043}
2044
2045// ONU_Active/Inactive announcement on system KAFKA bus
2046// tried to re-use procedure of oltUpDownIndication from openolt_eventmgr.go with used values from Py code
dbainbri4d3a0dc2020-12-02 00:33:42 +00002047func (dh *deviceHandler) sendOnuOperStateEvent(ctx context.Context, aOperState vc.OperStatus_Types, aDeviceID string, raisedTs int64) {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002048 var de voltha.DeviceEvent
2049 eventContext := make(map[string]string)
2050 //Populating event context
2051 // assume giving ParentId in GetDevice twice really gives the ParentDevice (there is no GetParentDevice()...)
dbainbri4d3a0dc2020-12-02 00:33:42 +00002052 parentDevice, err := dh.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), dh.parentID, dh.parentID)
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002053 if err != nil || parentDevice == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002054 logger.Errorw(ctx, "Failed to fetch parent device for OnuEvent",
Himani Chawla4d908332020-08-31 12:30:20 +05302055 log.Fields{"parentID": dh.parentID, "err": err})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002056 }
2057 oltSerialNumber := parentDevice.SerialNumber
2058
2059 eventContext["pon-id"] = strconv.FormatUint(uint64(dh.pOnuIndication.IntfId), 10)
2060 eventContext["onu-id"] = strconv.FormatUint(uint64(dh.pOnuIndication.OnuId), 10)
2061 eventContext["serial-number"] = dh.device.SerialNumber
ssiddiqui1221d1a2021-02-15 11:12:51 +05302062 eventContext["olt-serial-number"] = oltSerialNumber
2063 eventContext["device-id"] = aDeviceID
2064 eventContext["registration-id"] = aDeviceID //py: string(device_id)??
dbainbri4d3a0dc2020-12-02 00:33:42 +00002065 logger.Debugw(ctx, "prepare ONU_ACTIVATED event",
mpagenko01e726e2020-10-23 09:45:29 +00002066 log.Fields{"device-id": aDeviceID, "EventContext": eventContext})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002067
2068 /* Populating device event body */
2069 de.Context = eventContext
Himani Chawla4d908332020-08-31 12:30:20 +05302070 de.ResourceId = aDeviceID
2071 if aOperState == voltha.OperStatus_ACTIVE {
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002072 de.DeviceEventName = fmt.Sprintf("%s_%s", cOnuActivatedEvent, "RAISE_EVENT")
2073 de.Description = fmt.Sprintf("%s Event - %s - %s",
2074 cEventObjectType, cOnuActivatedEvent, "Raised")
2075 } else {
2076 de.DeviceEventName = fmt.Sprintf("%s_%s", cOnuActivatedEvent, "CLEAR_EVENT")
2077 de.Description = fmt.Sprintf("%s Event - %s - %s",
2078 cEventObjectType, cOnuActivatedEvent, "Cleared")
2079 }
2080 /* Send event to KAFKA */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002081 if err := dh.EventProxy.SendDeviceEvent(ctx, &de, equipment, pon, raisedTs); err != nil {
2082 logger.Warnw(ctx, "could not send ONU_ACTIVATED event",
Himani Chawla4d908332020-08-31 12:30:20 +05302083 log.Fields{"device-id": aDeviceID, "error": err})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002084 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002085 logger.Debugw(ctx, "ctx, ONU_ACTIVATED event sent to KAFKA",
Himani Chawla4d908332020-08-31 12:30:20 +05302086 log.Fields{"device-id": aDeviceID, "with-EventName": de.DeviceEventName})
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002087}
2088
Himani Chawla4d908332020-08-31 12:30:20 +05302089// createUniLockFsm initializes and runs the UniLock FSM to transfer the OMCI related commands for port lock/unlock
dbainbri4d3a0dc2020-12-02 00:33:42 +00002090func (dh *deviceHandler) createUniLockFsm(ctx context.Context, aAdminState bool, devEvent OnuDeviceEvent) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002091 chLSFsm := make(chan Message, 2048)
2092 var sFsmName string
Himani Chawla4d908332020-08-31 12:30:20 +05302093 if aAdminState {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002094 logger.Debugw(ctx, "createLockStateFSM", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002095 sFsmName = "LockStateFSM"
2096 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002097 logger.Debugw(ctx, "createUnlockStateFSM", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002098 sFsmName = "UnLockStateFSM"
2099 }
mpagenko3af1f032020-06-10 08:53:41 +00002100
dbainbri4d3a0dc2020-12-02 00:33:42 +00002101 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
mpagenko3af1f032020-06-10 08:53:41 +00002102 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002103 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +00002104 return
2105 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002106 pLSFsm := newLockStateFsm(ctx, pDevEntry.PDevOmciCC, aAdminState, devEvent,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +00002107 sFsmName, dh, chLSFsm)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002108 if pLSFsm != nil {
Himani Chawla4d908332020-08-31 12:30:20 +05302109 if aAdminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002110 dh.pLockStateFsm = pLSFsm
2111 } else {
2112 dh.pUnlockStateFsm = pLSFsm
2113 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002114 dh.runUniLockFsm(ctx, aAdminState)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002115 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002116 logger.Errorw(ctx, "LockStateFSM could not be created - abort!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002117 }
2118}
2119
2120// runUniLockFsm starts the UniLock FSM to transfer the OMCI related commands for port lock/unlock
dbainbri4d3a0dc2020-12-02 00:33:42 +00002121func (dh *deviceHandler) runUniLockFsm(ctx context.Context, aAdminState bool) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002122 /* Uni Port lock/unlock procedure -
2123 ***** should run via 'adminDone' state and generate the argument requested event *****
2124 */
2125 var pLSStatemachine *fsm.FSM
Himani Chawla4d908332020-08-31 12:30:20 +05302126 if aAdminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002127 pLSStatemachine = dh.pLockStateFsm.pAdaptFsm.pFsm
2128 //make sure the opposite FSM is not running and if so, terminate it as not relevant anymore
2129 if (dh.pUnlockStateFsm != nil) &&
mpagenko1cc3cb42020-07-27 15:24:38 +00002130 (dh.pUnlockStateFsm.pAdaptFsm.pFsm.Current() != uniStDisabled) {
Himani Chawla4d908332020-08-31 12:30:20 +05302131 _ = dh.pUnlockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002132 }
2133 } else {
2134 pLSStatemachine = dh.pUnlockStateFsm.pAdaptFsm.pFsm
2135 //make sure the opposite FSM is not running and if so, terminate it as not relevant anymore
2136 if (dh.pLockStateFsm != nil) &&
mpagenko1cc3cb42020-07-27 15:24:38 +00002137 (dh.pLockStateFsm.pAdaptFsm.pFsm.Current() != uniStDisabled) {
Himani Chawla4d908332020-08-31 12:30:20 +05302138 _ = dh.pLockStateFsm.pAdaptFsm.pFsm.Event(uniEvReset)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002139 }
2140 }
2141 if pLSStatemachine != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +00002142 if pLSStatemachine.Is(uniStDisabled) {
2143 if err := pLSStatemachine.Event(uniEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002144 logger.Warnw(ctx, "LockStateFSM: can't start", log.Fields{"err": err})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002145 // maybe try a FSM reset and then again ... - TODO!!!
2146 } else {
2147 /***** LockStateFSM started */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002148 logger.Debugw(ctx, "LockStateFSM started", log.Fields{
divyadesai4d299552020-08-18 07:13:49 +00002149 "state": pLSStatemachine.Current(), "device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002150 }
2151 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002152 logger.Warnw(ctx, "wrong state of LockStateFSM - want: disabled", log.Fields{
divyadesai4d299552020-08-18 07:13:49 +00002153 "have": pLSStatemachine.Current(), "device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002154 // maybe try a FSM reset and then again ... - TODO!!!
2155 }
2156 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002157 logger.Errorw(ctx, "LockStateFSM StateMachine invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +00002158 // maybe try a FSM reset and then again ... - TODO!!!
2159 }
2160}
2161
mpagenko80622a52021-02-09 16:53:23 +00002162// createOnuUpgradeFsm initializes and runs the Onu Software upgrade FSM
2163func (dh *deviceHandler) createOnuUpgradeFsm(ctx context.Context, devEvent OnuDeviceEvent) error {
2164 //in here lockUpgradeFsm is already locked
2165 chUpgradeFsm := make(chan Message, 2048)
2166 var sFsmName = "OnuSwUpgradeFSM"
2167 logger.Debugw(ctx, "create OnuSwUpgradeFSM", log.Fields{"device-id": dh.deviceID})
2168 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
2169 if pDevEntry == nil {
2170 logger.Errorw(ctx, "no valid OnuDevice -abort", log.Fields{"device-id": dh.deviceID})
2171 return fmt.Errorf(fmt.Sprintf("no valid OnuDevice - abort for device-id: %s", dh.device.Id))
2172 }
2173 dh.pOnuUpradeFsm = NewOnuUpgradeFsm(ctx, dh, pDevEntry.PDevOmciCC, pDevEntry.pOnuDB, devEvent,
2174 sFsmName, chUpgradeFsm)
2175 if dh.pOnuUpradeFsm != nil {
2176 pUpgradeStatemachine := dh.pOnuUpradeFsm.pAdaptFsm.pFsm
2177 if pUpgradeStatemachine != nil {
2178 if pUpgradeStatemachine.Is(upgradeStDisabled) {
2179 if err := pUpgradeStatemachine.Event(upgradeEvStart); err != nil {
2180 logger.Errorw(ctx, "OnuSwUpgradeFSM: can't start", log.Fields{"err": err})
2181 // maybe try a FSM reset and then again ... - TODO!!!
2182 return fmt.Errorf(fmt.Sprintf("OnuSwUpgradeFSM could not be started for device-id: %s", dh.device.Id))
2183 }
2184 /***** LockStateFSM started */
2185 logger.Debugw(ctx, "OnuSwUpgradeFSM started", log.Fields{
2186 "state": pUpgradeStatemachine.Current(), "device-id": dh.deviceID})
2187 } else {
2188 logger.Errorw(ctx, "wrong state of OnuSwUpgradeFSM to start - want: disabled", log.Fields{
2189 "have": pUpgradeStatemachine.Current(), "device-id": dh.deviceID})
2190 // maybe try a FSM reset and then again ... - TODO!!!
2191 return fmt.Errorf(fmt.Sprintf("OnuSwUpgradeFSM could not be started for device-id: %s, wrong internal state", dh.device.Id))
2192 }
2193 } else {
2194 logger.Errorw(ctx, "OnuSwUpgradeFSM internal FSM invalid - cannot be executed!!", log.Fields{"device-id": dh.deviceID})
2195 // maybe try a FSM reset and then again ... - TODO!!!
2196 return fmt.Errorf(fmt.Sprintf("OnuSwUpgradeFSM internal FSM could not be created for device-id: %s", dh.device.Id))
2197 }
2198 } else {
2199 logger.Errorw(ctx, "OnuSwUpgradeFSM could not be created - abort", log.Fields{"device-id": dh.deviceID})
2200 return fmt.Errorf(fmt.Sprintf("OnuSwUpgradeFSM could not be created - abort for device-id: %s", dh.device.Id))
2201 }
2202 return nil
2203}
2204
2205// removeOnuUpgradeFsm clears the Onu Software upgrade FSM
2206func (dh *deviceHandler) removeOnuUpgradeFsm(ctx context.Context) {
2207 logger.Debugw(ctx, "remove OnuSwUpgradeFSM StateMachine", log.Fields{
2208 "device-id": dh.deviceID})
2209 dh.lockUpgradeFsm.Lock()
2210 defer dh.lockUpgradeFsm.Unlock()
2211 dh.pOnuUpradeFsm = nil //resource clearing is left to garbage collector
2212}
2213
Himani Chawla6d2ae152020-09-02 13:11:20 +05302214//setBackend provides a DB backend for the specified path on the existing KV client
dbainbri4d3a0dc2020-12-02 00:33:42 +00002215func (dh *deviceHandler) setBackend(ctx context.Context, aBasePathKvStore string) *db.Backend {
Matteo Scandolo127c59d2021-01-28 11:31:18 -08002216
2217 logger.Debugw(ctx, "SetKVStoreBackend", log.Fields{"IpTarget": dh.pOpenOnuAc.KVStoreAddress,
divyadesai4d299552020-08-18 07:13:49 +00002218 "BasePathKvStore": aBasePathKvStore, "device-id": dh.deviceID})
mpagenkoaf801632020-07-03 10:00:42 +00002219 kvbackend := &db.Backend{
2220 Client: dh.pOpenOnuAc.kvClient,
2221 StoreType: dh.pOpenOnuAc.KVStoreType,
2222 /* address config update acc. to [VOL-2736] */
Matteo Scandolo127c59d2021-01-28 11:31:18 -08002223 Address: dh.pOpenOnuAc.KVStoreAddress,
mpagenkoaf801632020-07-03 10:00:42 +00002224 Timeout: dh.pOpenOnuAc.KVStoreTimeout,
2225 PathPrefix: aBasePathKvStore}
Holger Hildebrandtc54939a2020-06-17 08:14:27 +00002226
mpagenkoaf801632020-07-03 10:00:42 +00002227 return kvbackend
Holger Hildebrandt24d51952020-05-04 14:03:42 +00002228}
dbainbri4d3a0dc2020-12-02 00:33:42 +00002229func (dh *deviceHandler) getFlowOfbFields(ctx context.Context, apFlowItem *ofp.OfpFlowStats, loMatchVlan *uint16,
Himani Chawla26e555c2020-08-31 12:30:20 +05302230 loAddPcp *uint8, loIPProto *uint32) {
mpagenkodff5dda2020-08-28 11:52:01 +00002231
mpagenkodff5dda2020-08-28 11:52:01 +00002232 for _, field := range flow.GetOfbFields(apFlowItem) {
2233 switch field.Type {
2234 case of.OxmOfbFieldTypes_OFPXMT_OFB_ETH_TYPE:
2235 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002236 logger.Debugw(ctx, "flow type EthType", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002237 "EthType": strconv.FormatInt(int64(field.GetEthType()), 16)})
2238 }
mpagenko01e726e2020-10-23 09:45:29 +00002239 /* TT related temporary workaround - should not be needed anymore
mpagenkodff5dda2020-08-28 11:52:01 +00002240 case of.OxmOfbFieldTypes_OFPXMT_OFB_IP_PROTO:
2241 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302242 *loIPProto = field.GetIpProto()
mpagenko01e726e2020-10-23 09:45:29 +00002243 logger.Debugw("flow type IpProto", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302244 "IpProto": strconv.FormatInt(int64(*loIPProto), 16)})
2245 if *loIPProto == 2 {
mpagenkodff5dda2020-08-28 11:52:01 +00002246 // some workaround for TT workflow at proto == 2 (IGMP trap) -> ignore the flow
2247 // avoids installing invalid EVTOCD rule
mpagenko01e726e2020-10-23 09:45:29 +00002248 logger.Debugw("flow type IpProto 2: TT workaround: ignore flow",
2249 log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302250 return
mpagenkodff5dda2020-08-28 11:52:01 +00002251 }
2252 }
mpagenko01e726e2020-10-23 09:45:29 +00002253 */
mpagenkodff5dda2020-08-28 11:52:01 +00002254 case of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_VID:
2255 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302256 *loMatchVlan = uint16(field.GetVlanVid())
mpagenkodff5dda2020-08-28 11:52:01 +00002257 loMatchVlanMask := uint16(field.GetVlanVidMask())
Himani Chawla26e555c2020-08-31 12:30:20 +05302258 if !(*loMatchVlan == uint16(of.OfpVlanId_OFPVID_PRESENT) &&
mpagenkodff5dda2020-08-28 11:52:01 +00002259 loMatchVlanMask == uint16(of.OfpVlanId_OFPVID_PRESENT)) {
Himani Chawla26e555c2020-08-31 12:30:20 +05302260 *loMatchVlan = *loMatchVlan & 0xFFF // not transparent: copy only ID bits
mpagenkodff5dda2020-08-28 11:52:01 +00002261 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002262 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302263 "VID": strconv.FormatInt(int64(*loMatchVlan), 16)})
mpagenkodff5dda2020-08-28 11:52:01 +00002264 }
2265 case of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_PCP:
2266 {
Himani Chawla26e555c2020-08-31 12:30:20 +05302267 *loAddPcp = uint8(field.GetVlanPcp())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002268 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002269 "PCP": loAddPcp})
2270 }
2271 case of.OxmOfbFieldTypes_OFPXMT_OFB_UDP_DST:
2272 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002273 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002274 "UDP-DST": strconv.FormatInt(int64(field.GetUdpDst()), 16)})
2275 }
2276 case of.OxmOfbFieldTypes_OFPXMT_OFB_UDP_SRC:
2277 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002278 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002279 "UDP-SRC": strconv.FormatInt(int64(field.GetUdpSrc()), 16)})
2280 }
2281 case of.OxmOfbFieldTypes_OFPXMT_OFB_IPV4_DST:
2282 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002283 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002284 "IPv4-DST": field.GetIpv4Dst()})
2285 }
2286 case of.OxmOfbFieldTypes_OFPXMT_OFB_IPV4_SRC:
2287 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002288 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002289 "IPv4-SRC": field.GetIpv4Src()})
2290 }
2291 case of.OxmOfbFieldTypes_OFPXMT_OFB_METADATA:
2292 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002293 logger.Debugw(ctx, "flow field type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002294 "Metadata": field.GetTableMetadata()})
2295 }
2296 /*
2297 default:
2298 {
2299 //all other entires ignored
2300 }
2301 */
2302 }
2303 } //for all OfbFields
Himani Chawla26e555c2020-08-31 12:30:20 +05302304}
mpagenkodff5dda2020-08-28 11:52:01 +00002305
dbainbri4d3a0dc2020-12-02 00:33:42 +00002306func (dh *deviceHandler) getFlowActions(ctx context.Context, apFlowItem *ofp.OfpFlowStats, loSetPcp *uint8, loSetVlan *uint16) {
mpagenkodff5dda2020-08-28 11:52:01 +00002307 for _, action := range flow.GetActions(apFlowItem) {
2308 switch action.Type {
2309 /* not used:
2310 case of.OfpActionType_OFPAT_OUTPUT:
2311 {
mpagenko01e726e2020-10-23 09:45:29 +00002312 logger.Debugw("flow action type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002313 "Output": action.GetOutput()})
2314 }
2315 */
2316 case of.OfpActionType_OFPAT_PUSH_VLAN:
2317 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002318 logger.Debugw(ctx, "flow action type", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002319 "PushEthType": strconv.FormatInt(int64(action.GetPush().Ethertype), 16)})
2320 }
2321 case of.OfpActionType_OFPAT_SET_FIELD:
2322 {
2323 pActionSetField := action.GetSetField()
2324 if pActionSetField.Field.OxmClass != of.OfpOxmClass_OFPXMC_OPENFLOW_BASIC {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002325 logger.Warnw(ctx, "flow action SetField invalid OxmClass (ignored)", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002326 "OxcmClass": pActionSetField.Field.OxmClass})
2327 }
2328 if pActionSetField.Field.GetOfbField().Type == of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_VID {
Himani Chawla26e555c2020-08-31 12:30:20 +05302329 *loSetVlan = uint16(pActionSetField.Field.GetOfbField().GetVlanVid())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002330 logger.Debugw(ctx, "flow Set VLAN from SetField action", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302331 "SetVlan": strconv.FormatInt(int64(*loSetVlan), 16)})
mpagenkodff5dda2020-08-28 11:52:01 +00002332 } else if pActionSetField.Field.GetOfbField().Type == of.OxmOfbFieldTypes_OFPXMT_OFB_VLAN_PCP {
Himani Chawla26e555c2020-08-31 12:30:20 +05302333 *loSetPcp = uint8(pActionSetField.Field.GetOfbField().GetVlanPcp())
dbainbri4d3a0dc2020-12-02 00:33:42 +00002334 logger.Debugw(ctx, "flow Set PCP from SetField action", log.Fields{"device-id": dh.deviceID,
Himani Chawla26e555c2020-08-31 12:30:20 +05302335 "SetPcp": *loSetPcp})
mpagenkodff5dda2020-08-28 11:52:01 +00002336 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002337 logger.Warnw(ctx, "flow action SetField invalid FieldType", log.Fields{"device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002338 "Type": pActionSetField.Field.GetOfbField().Type})
2339 }
2340 }
2341 /*
2342 default:
2343 {
2344 //all other entires ignored
2345 }
2346 */
2347 }
2348 } //for all Actions
Himani Chawla26e555c2020-08-31 12:30:20 +05302349}
2350
2351//addFlowItemToUniPort parses the actual flow item to add it to the UniPort
dbainbri4d3a0dc2020-12-02 00:33:42 +00002352func (dh *deviceHandler) addFlowItemToUniPort(ctx context.Context, apFlowItem *ofp.OfpFlowStats, apUniPort *onuUniPort) error {
Himani Chawla26e555c2020-08-31 12:30:20 +05302353 var loSetVlan uint16 = uint16(of.OfpVlanId_OFPVID_NONE) //noValidEntry
2354 var loMatchVlan uint16 = uint16(of.OfpVlanId_OFPVID_PRESENT) //reserved VLANID entry
2355 var loAddPcp, loSetPcp uint8
2356 var loIPProto uint32
2357 /* the TechProfileId is part of the flow Metadata - compare also comment within
2358 * OLT-Adapter:openolt_flowmgr.go
2359 * Metadata 8 bytes:
2360 * Most Significant 2 Bytes = Inner VLAN
2361 * Next 2 Bytes = Tech Profile ID(TPID)
2362 * Least Significant 4 Bytes = Port ID
2363 * Flow Metadata carries Tech-Profile (TP) ID and is mandatory in all
2364 * subscriber related flows.
2365 */
2366
dbainbri4d3a0dc2020-12-02 00:33:42 +00002367 metadata := flow.GetMetadataFromWriteMetadataAction(ctx, apFlowItem)
Himani Chawla26e555c2020-08-31 12:30:20 +05302368 if metadata == 0 {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002369 logger.Debugw(ctx, "flow-add invalid metadata - abort",
Himani Chawla26e555c2020-08-31 12:30:20 +05302370 log.Fields{"device-id": dh.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +00002371 return fmt.Errorf("flow-add invalid metadata: %s", dh.deviceID)
Himani Chawla26e555c2020-08-31 12:30:20 +05302372 }
mpagenko551a4d42020-12-08 18:09:20 +00002373 loTpID := uint8(flow.GetTechProfileIDFromWriteMetaData(ctx, metadata))
mpagenko01e726e2020-10-23 09:45:29 +00002374 loCookie := apFlowItem.GetCookie()
2375 loCookieSlice := []uint64{loCookie}
dbainbri4d3a0dc2020-12-02 00:33:42 +00002376 logger.Debugw(ctx, "flow-add base indications", log.Fields{"device-id": dh.deviceID,
mpagenko01e726e2020-10-23 09:45:29 +00002377 "TechProf-Id": loTpID, "cookie": loCookie})
Himani Chawla26e555c2020-08-31 12:30:20 +05302378
dbainbri4d3a0dc2020-12-02 00:33:42 +00002379 dh.getFlowOfbFields(ctx, apFlowItem, &loMatchVlan, &loAddPcp, &loIPProto)
mpagenko01e726e2020-10-23 09:45:29 +00002380 /* TT related temporary workaround - should not be needed anymore
Himani Chawla26e555c2020-08-31 12:30:20 +05302381 if loIPProto == 2 {
2382 // some workaround for TT workflow at proto == 2 (IGMP trap) -> ignore the flow
2383 // avoids installing invalid EVTOCD rule
mpagenko01e726e2020-10-23 09:45:29 +00002384 logger.Debugw("flow-add type IpProto 2: TT workaround: ignore flow",
2385 log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302386 return nil
2387 }
mpagenko01e726e2020-10-23 09:45:29 +00002388 */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002389 dh.getFlowActions(ctx, apFlowItem, &loSetPcp, &loSetVlan)
mpagenkodff5dda2020-08-28 11:52:01 +00002390
2391 if loSetVlan == uint16(of.OfpVlanId_OFPVID_NONE) && loMatchVlan != uint16(of.OfpVlanId_OFPVID_PRESENT) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002392 logger.Errorw(ctx, "flow-add aborted - SetVlanId undefined, but MatchVid set", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002393 "device-id": dh.deviceID, "UniPort": apUniPort.portNo,
2394 "set_vid": strconv.FormatInt(int64(loSetVlan), 16),
2395 "match_vid": strconv.FormatInt(int64(loMatchVlan), 16)})
2396 //TODO!!: Use DeviceId within the error response to rwCore
2397 // likewise also in other error response cases to calling components as requested in [VOL-3458]
mpagenko01e726e2020-10-23 09:45:29 +00002398 return fmt.Errorf("flow-add Set/Match VlanId inconsistent: %s", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002399 }
2400 if loSetVlan == uint16(of.OfpVlanId_OFPVID_NONE) && loMatchVlan == uint16(of.OfpVlanId_OFPVID_PRESENT) {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002401 logger.Debugw(ctx, "flow-add vlan-any/copy", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +00002402 loSetVlan = loMatchVlan //both 'transparent' (copy any)
2403 } else {
2404 //looks like OMCI value 4097 (copyFromOuter - for Uni double tagged) is not supported here
2405 if loSetVlan != uint16(of.OfpVlanId_OFPVID_PRESENT) {
2406 // not set to transparent
Himani Chawla26e555c2020-08-31 12:30:20 +05302407 loSetVlan &= 0x0FFF //mask VID bits as prerequisite for vlanConfigFsm
mpagenkodff5dda2020-08-28 11:52:01 +00002408 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002409 logger.Debugw(ctx, "flow-add vlan-set", log.Fields{"device-id": dh.deviceID})
mpagenkodff5dda2020-08-28 11:52:01 +00002410 }
mpagenko9a304ea2020-12-16 15:54:01 +00002411
2412 //mutex protection as the update_flow rpc maybe running concurrently for different flows, perhaps also activities
mpagenkof1fc3862021-02-16 10:09:52 +00002413 dh.lockVlanConfig.RLock()
mpagenko9a304ea2020-12-16 15:54:01 +00002414 logger.Debugw(ctx, "flow-add got lock", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302415 if _, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
mpagenkof1fc3862021-02-16 10:09:52 +00002416 err := dh.UniVlanConfigFsmMap[apUniPort.uniID].SetUniFlowParams(ctx, loTpID, loCookieSlice,
mpagenko01e726e2020-10-23 09:45:29 +00002417 loMatchVlan, loSetVlan, loSetPcp)
mpagenkof1fc3862021-02-16 10:09:52 +00002418 dh.lockVlanConfig.RUnlock()
2419 return err
mpagenkodff5dda2020-08-28 11:52:01 +00002420 }
mpagenkof1fc3862021-02-16 10:09:52 +00002421 dh.lockVlanConfig.RUnlock()
dbainbri4d3a0dc2020-12-02 00:33:42 +00002422 return dh.createVlanFilterFsm(ctx, apUniPort, loTpID, loCookieSlice,
mpagenkofc4f56e2020-11-04 17:17:49 +00002423 loMatchVlan, loSetVlan, loSetPcp, OmciVlanFilterAddDone)
mpagenko01e726e2020-10-23 09:45:29 +00002424}
2425
2426//removeFlowItemFromUniPort parses the actual flow item to remove it from the UniPort
dbainbri4d3a0dc2020-12-02 00:33:42 +00002427func (dh *deviceHandler) removeFlowItemFromUniPort(ctx context.Context, apFlowItem *ofp.OfpFlowStats, apUniPort *onuUniPort) error {
mpagenko01e726e2020-10-23 09:45:29 +00002428 //optimization and assumption: the flow cookie uniquely identifies the flow and with that the internal rule
2429 //hence only the cookie is used here to find the relevant flow and possibly remove the rule
2430 //no extra check is done on the rule parameters
2431 //accordingly the removal is done only once - for the first found flow with that cookie, even though
2432 // at flow creation is not assured, that the same cookie is not configured for different flows - just assumed
2433 //additionally it is assumed here, that removal can only be done for one cookie per flow in a sequence (different
2434 // from addFlow - where at reconcilement multiple cookies per flow ) can be configured in one sequence)
mpagenkofc4f56e2020-11-04 17:17:49 +00002435 // - 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 +00002436 loCookie := apFlowItem.GetCookie()
dbainbri4d3a0dc2020-12-02 00:33:42 +00002437 logger.Debugw(ctx, "flow-remove base indications", log.Fields{"device-id": dh.deviceID, "cookie": loCookie})
mpagenko01e726e2020-10-23 09:45:29 +00002438
2439 /* TT related temporary workaround - should not be needed anymore
2440 for _, field := range flow.GetOfbFields(apFlowItem) {
2441 if field.Type == of.OxmOfbFieldTypes_OFPXMT_OFB_IP_PROTO {
2442 loIPProto := field.GetIpProto()
mpagenko551a4d42020-12-08 18:09:20 +00002443 logger.Debugw(ctx, "flow type IpProto", log.Fields{"device-id": dh.deviceID,
mpagenko01e726e2020-10-23 09:45:29 +00002444 "IpProto": strconv.FormatInt(int64(loIPProto), 16)})
2445 if loIPProto == 2 {
2446 // 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 +00002447 logger.Debugw(ctx, "flow-remove type IpProto 2: TT workaround: ignore flow",
mpagenko01e726e2020-10-23 09:45:29 +00002448 log.Fields{"device-id": dh.deviceID})
2449 return nil
2450 }
2451 }
2452 } //for all OfbFields
2453 */
2454
mpagenko9a304ea2020-12-16 15:54:01 +00002455 //mutex protection as the update_flow rpc maybe running concurrently for different flows, perhaps also activities
mpagenkof1fc3862021-02-16 10:09:52 +00002456 dh.lockVlanConfig.RLock()
2457 defer dh.lockVlanConfig.RUnlock()
mpagenko01e726e2020-10-23 09:45:29 +00002458 if _, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002459 return dh.UniVlanConfigFsmMap[apUniPort.uniID].RemoveUniFlowParams(ctx, loCookie)
mpagenko01e726e2020-10-23 09:45:29 +00002460 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002461 logger.Debugw(ctx, "flow-remove called, but no flow is configured (no VlanConfigFsm, flow already removed) ",
mpagenko01e726e2020-10-23 09:45:29 +00002462 log.Fields{"device-id": dh.deviceID})
2463 //but as we regard the flow as not existing = removed we respond just ok
mpagenkofc4f56e2020-11-04 17:17:49 +00002464 // and treat the reason accordingly (which in the normal removal procedure is initiated by the FSM)
dbainbri4d3a0dc2020-12-02 00:33:42 +00002465 go dh.deviceProcStatusUpdate(ctx, OmciVlanFilterRemDone)
mpagenkofc4f56e2020-11-04 17:17:49 +00002466
mpagenko01e726e2020-10-23 09:45:29 +00002467 return nil
mpagenkodff5dda2020-08-28 11:52:01 +00002468}
2469
Himani Chawla26e555c2020-08-31 12:30:20 +05302470// createVlanFilterFsm initializes and runs the VlanFilter FSM to transfer OMCI related VLAN config
mpagenko9a304ea2020-12-16 15:54:01 +00002471// if this function is called from possibly concurrent processes it must be mutex-protected from the caller!
mpagenko551a4d42020-12-08 18:09:20 +00002472func (dh *deviceHandler) createVlanFilterFsm(ctx context.Context, apUniPort *onuUniPort, aTpID uint8, aCookieSlice []uint64,
mpagenko01e726e2020-10-23 09:45:29 +00002473 aMatchVlan uint16, aSetVlan uint16, aSetPcp uint8, aDevEvent OnuDeviceEvent) error {
mpagenkodff5dda2020-08-28 11:52:01 +00002474 chVlanFilterFsm := make(chan Message, 2048)
2475
dbainbri4d3a0dc2020-12-02 00:33:42 +00002476 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
mpagenkodff5dda2020-08-28 11:52:01 +00002477 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002478 logger.Errorw(ctx, "No valid OnuDevice -aborting", log.Fields{"device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302479 return fmt.Errorf("no valid OnuDevice for device-id %x - aborting", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002480 }
2481
dbainbri4d3a0dc2020-12-02 00:33:42 +00002482 pVlanFilterFsm := NewUniVlanConfigFsm(ctx, dh, pDevEntry.PDevOmciCC, apUniPort, dh.pOnuTP,
mpagenko01e726e2020-10-23 09:45:29 +00002483 pDevEntry.pOnuDB, aTpID, aDevEvent, "UniVlanConfigFsm", chVlanFilterFsm,
2484 dh.pOpenOnuAc.AcceptIncrementalEvto, aCookieSlice, aMatchVlan, aSetVlan, aSetPcp)
mpagenkodff5dda2020-08-28 11:52:01 +00002485 if pVlanFilterFsm != nil {
mpagenkof1fc3862021-02-16 10:09:52 +00002486 dh.lockVlanConfig.Lock()
Himani Chawla26e555c2020-08-31 12:30:20 +05302487 dh.UniVlanConfigFsmMap[apUniPort.uniID] = pVlanFilterFsm
mpagenkof1fc3862021-02-16 10:09:52 +00002488 dh.lockVlanConfig.Unlock()
mpagenkodff5dda2020-08-28 11:52:01 +00002489 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
2490 if pVlanFilterStatemachine != nil {
2491 if pVlanFilterStatemachine.Is(vlanStDisabled) {
2492 if err := pVlanFilterStatemachine.Event(vlanEvStart); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002493 logger.Warnw(ctx, "UniVlanConfigFsm: can't start", log.Fields{"err": err})
Himani Chawla26e555c2020-08-31 12:30:20 +05302494 return fmt.Errorf("can't start UniVlanConfigFsm for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002495 }
Himani Chawla26e555c2020-08-31 12:30:20 +05302496 /***** UniVlanConfigFsm started */
dbainbri4d3a0dc2020-12-02 00:33:42 +00002497 logger.Debugw(ctx, "UniVlanConfigFsm started", log.Fields{
Himani Chawla26e555c2020-08-31 12:30:20 +05302498 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2499 "UniPort": apUniPort.portNo})
mpagenkodff5dda2020-08-28 11:52:01 +00002500 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002501 logger.Warnw(ctx, "wrong state of UniVlanConfigFsm - want: disabled", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002502 "have": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302503 return fmt.Errorf("uniVlanConfigFsm not in expected disabled state for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002504 }
2505 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002506 logger.Errorw(ctx, "UniVlanConfigFsm StateMachine invalid - cannot be executed!!", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002507 "device-id": dh.deviceID})
Himani Chawla26e555c2020-08-31 12:30:20 +05302508 return fmt.Errorf("uniVlanConfigFsm invalid for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002509 }
2510 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002511 logger.Errorw(ctx, "UniVlanConfigFsm could not be created - abort!!", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002512 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
Himani Chawla26e555c2020-08-31 12:30:20 +05302513 return fmt.Errorf("uniVlanConfigFsm could not be created for device-id %x", dh.deviceID)
mpagenkodff5dda2020-08-28 11:52:01 +00002514 }
2515 return nil
2516}
2517
mpagenkofc4f56e2020-11-04 17:17:49 +00002518//VerifyVlanConfigRequest checks on existence of a given uniPort
2519// and starts verification of flow config based on that
mpagenko551a4d42020-12-08 18:09:20 +00002520func (dh *deviceHandler) VerifyVlanConfigRequest(ctx context.Context, aUniID uint8, aTpID uint8) {
mpagenkofc4f56e2020-11-04 17:17:49 +00002521 //ensure that the given uniID is available (configured) in the UniPort class (used for OMCI entities)
2522 var pCurrentUniPort *onuUniPort
2523 for _, uniPort := range dh.uniEntityMap {
2524 // only if this port is validated for operState transfer
2525 if uniPort.uniID == uint8(aUniID) {
2526 pCurrentUniPort = uniPort
2527 break //found - end search loop
2528 }
2529 }
2530 if pCurrentUniPort == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002531 logger.Debugw(ctx, "VerifyVlanConfig aborted: requested uniID not found in PortDB",
mpagenkofc4f56e2020-11-04 17:17:49 +00002532 log.Fields{"device-id": dh.deviceID, "uni-id": aUniID})
2533 return
2534 }
mpagenko551a4d42020-12-08 18:09:20 +00002535 dh.verifyUniVlanConfigRequest(ctx, pCurrentUniPort, aTpID)
mpagenkofc4f56e2020-11-04 17:17:49 +00002536}
2537
mpagenkodff5dda2020-08-28 11:52:01 +00002538//verifyUniVlanConfigRequest checks on existence of flow configuration and starts it accordingly
mpagenko551a4d42020-12-08 18:09:20 +00002539func (dh *deviceHandler) verifyUniVlanConfigRequest(ctx context.Context, apUniPort *onuUniPort, aTpID uint8) {
mpagenkodff5dda2020-08-28 11:52:01 +00002540 //TODO!! verify and start pending flow configuration
2541 //some pending config request my exist in case the UniVlanConfig FSM was already started - with internal data -
2542 //but execution was set to 'on hold' as first the TechProfile config had to be applied
mpagenkof1fc3862021-02-16 10:09:52 +00002543
2544 dh.lockVlanConfig.RLock()
Himani Chawla26e555c2020-08-31 12:30:20 +05302545 if pVlanFilterFsm, exist := dh.UniVlanConfigFsmMap[apUniPort.uniID]; exist {
mpagenkof1fc3862021-02-16 10:09:52 +00002546 dh.lockVlanConfig.RUnlock()
mpagenkodff5dda2020-08-28 11:52:01 +00002547 //VlanFilterFsm exists and was already started (assumed to wait for TechProfile execution here)
2548 pVlanFilterStatemachine := pVlanFilterFsm.pAdaptFsm.pFsm
2549 if pVlanFilterStatemachine != nil {
mpagenko551a4d42020-12-08 18:09:20 +00002550 //if this was an event of the TP processing that was waited for in the VlanFilterFsm
2551 if pVlanFilterFsm.GetWaitingTpID() == aTpID {
2552 if pVlanFilterStatemachine.Is(vlanStWaitingTechProf) {
2553 if err := pVlanFilterStatemachine.Event(vlanEvContinueConfig); err != nil {
2554 logger.Warnw(ctx, "UniVlanConfigFsm: can't continue processing", log.Fields{"err": err,
2555 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
2556 } else {
2557 /***** UniVlanConfigFsm continued */
2558 logger.Debugw(ctx, "UniVlanConfigFsm continued", log.Fields{
2559 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2560 "UniPort": apUniPort.portNo})
2561 }
2562 } else if pVlanFilterStatemachine.Is(vlanStIncrFlowWaitTP) {
2563 if err := pVlanFilterStatemachine.Event(vlanEvIncrFlowConfig); err != nil {
2564 logger.Warnw(ctx, "UniVlanConfigFsm: can't continue processing", log.Fields{"err": err,
2565 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
2566 } else {
2567 /***** UniVlanConfigFsm continued */
2568 logger.Debugw(ctx, "UniVlanConfigFsm continued with incremental flow", log.Fields{
2569 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2570 "UniPort": apUniPort.portNo})
2571 }
mpagenkodff5dda2020-08-28 11:52:01 +00002572 } else {
mpagenko551a4d42020-12-08 18:09:20 +00002573 logger.Debugw(ctx, "no state of UniVlanConfigFsm to be continued", log.Fields{
2574 "have": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
mpagenkodff5dda2020-08-28 11:52:01 +00002575 "UniPort": apUniPort.portNo})
2576 }
2577 } else {
mpagenko551a4d42020-12-08 18:09:20 +00002578 logger.Debugw(ctx, "TechProfile Ready event for TpId that was not waited for in the VlanConfigFsm - continue waiting", log.Fields{
2579 "state": pVlanFilterStatemachine.Current(), "device-id": dh.deviceID,
2580 "UniPort": apUniPort.portNo, "techprofile-id (done)": aTpID})
mpagenkodff5dda2020-08-28 11:52:01 +00002581 }
2582 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002583 logger.Debugw(ctx, "UniVlanConfigFsm StateMachine does not exist, no flow processing", log.Fields{
mpagenko551a4d42020-12-08 18:09:20 +00002584 "device-id": dh.deviceID, "UniPort": apUniPort.portNo})
mpagenkodff5dda2020-08-28 11:52:01 +00002585 }
mpagenkof1fc3862021-02-16 10:09:52 +00002586 } else {
2587 dh.lockVlanConfig.RUnlock()
2588 }
mpagenkodff5dda2020-08-28 11:52:01 +00002589}
2590
2591//RemoveVlanFilterFsm deletes the stored pointer to the VlanConfigFsm
2592// 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 +00002593func (dh *deviceHandler) RemoveVlanFilterFsm(ctx context.Context, apUniPort *onuUniPort) {
2594 logger.Debugw(ctx, "remove UniVlanConfigFsm StateMachine", log.Fields{
mpagenkodff5dda2020-08-28 11:52:01 +00002595 "device-id": dh.deviceID, "uniPort": apUniPort.portNo})
2596 //save to do, even if entry dows not exist
mpagenkof1fc3862021-02-16 10:09:52 +00002597 dh.lockVlanConfig.Lock()
Himani Chawla26e555c2020-08-31 12:30:20 +05302598 delete(dh.UniVlanConfigFsmMap, apUniPort.uniID)
mpagenkof1fc3862021-02-16 10:09:52 +00002599 dh.lockVlanConfig.Unlock()
mpagenkodff5dda2020-08-28 11:52:01 +00002600}
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002601
Girish Gowdra26a40922021-01-29 17:14:34 -08002602//ProcessPendingTpDelete processes any pending TP delete (if available)
2603func (dh *deviceHandler) ProcessPendingTpDelete(ctx context.Context, apUniPort *onuUniPort, aTpID uint8) {
2604 logger.Debugw(ctx, "enter processing pending tp delete", log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2605 if apUniPort == nil {
2606 logger.Errorw(ctx, "uni port is nil", log.Fields{"device-id": dh.deviceID})
2607 return
2608 }
2609 k := uniTP{uniID: apUniPort.uniID, tpID: aTpID}
2610 if pAniConfigFsm, ok := dh.pOnuTP.pAniConfigFsm[k]; pAniConfigFsm != nil && ok {
2611 pAniConfigStatemachine := pAniConfigFsm.pAdaptFsm.pFsm
2612 if pAniConfigStatemachine != nil {
2613 //If the gem port delete was waiting on flow remove, indicate event that flow remove is done
2614 if pAniConfigStatemachine.Is(aniStWaitingFlowRem) {
2615 logger.Debugw(ctx, "ani fsm in aniStWaitingFlowRem state - handling aniEvFlowRemDone event",
2616 log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2617 if err := pAniConfigStatemachine.Event(aniEvFlowRemDone); err != nil {
2618 logger.Warnw(ctx, "AniConfigFsm: can't continue processing", log.Fields{"err": err,
2619 "device-id": dh.deviceID, "UniPort": apUniPort.portNo, "tpID": aTpID})
2620 return
2621 }
2622 } else {
2623 logger.Debugw(ctx, "ani fsm not in aniStWaitingFlowRem state", log.Fields{"device-id": dh.deviceID, "tpID": aTpID})
2624 return
2625 }
2626 }
2627 return
2628 }
2629}
2630
mpagenkof1fc3862021-02-16 10:09:52 +00002631//startWritingOnuDataToKvStore initiates the KVStore write of ONU persistent data
2632func (dh *deviceHandler) startWritingOnuDataToKvStore(ctx context.Context, aPDevEntry *OnuDeviceEntry) error {
2633 dh.mutexKvStoreContext.Lock() //this write routine may (could) be called with the same context,
2634 defer dh.mutexKvStoreContext.Unlock() //this write routine may (could) be called with the same context,
2635 // obviously then parallel processing on the cancel must be avoided
2636 // deadline context to ensure completion of background routines waited for
2637 //20200721: 10s proved to be less in 8*8 ONU test on local vbox machine with debug, might be further adapted
2638 deadline := time.Now().Add(dh.pOpenOnuAc.maxTimeoutInterAdapterComm) //allowed run time to finish before execution
2639 dctx, cancel := context.WithDeadline(context.Background(), deadline)
2640
2641 aPDevEntry.resetKvProcessingErrorIndication()
2642 var wg sync.WaitGroup
2643 wg.Add(1) // for the 1 go routine to finish
2644
2645 go aPDevEntry.updateOnuKvStore(log.WithSpanFromContext(dctx, ctx), &wg)
2646 dh.waitForCompletion(ctx, cancel, &wg, "UpdateKvStore") //wait for background process to finish
2647
2648 return aPDevEntry.getKvProcessingErrorIndication()
2649}
2650
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002651//storePersUniFlowConfig updates local storage of OnuUniFlowConfig and writes it into kv-store afterwards to have it
2652//available for potential reconcilement
mpagenkof1fc3862021-02-16 10:09:52 +00002653func (dh *deviceHandler) storePersUniFlowConfig(ctx context.Context, aUniID uint8,
2654 aUniVlanFlowParams *[]uniVlanFlowParams, aWriteToKvStore bool) error {
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002655
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00002656 if dh.isReconciling() {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002657 logger.Debugw(ctx, "reconciling - don't store persistent UniFlowConfig", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002658 return nil
2659 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002660 logger.Debugw(ctx, "Store or clear persistent UniFlowConfig", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002661
dbainbri4d3a0dc2020-12-02 00:33:42 +00002662 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002663 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002664 logger.Errorw(ctx, "No valid OnuDevice - aborting", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002665 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
2666 }
2667 pDevEntry.updateOnuUniFlowConfig(aUniID, aUniVlanFlowParams)
2668
mpagenkof1fc3862021-02-16 10:09:52 +00002669 if aWriteToKvStore {
2670 return dh.startWritingOnuDataToKvStore(ctx, pDevEntry)
2671 }
2672 return nil
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002673}
2674
dbainbri4d3a0dc2020-12-02 00:33:42 +00002675func (dh *deviceHandler) waitForCompletion(ctx context.Context, cancel context.CancelFunc, wg *sync.WaitGroup, aCallerIdent string) {
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002676 defer cancel() //ensure termination of context (may be pro forma)
2677 wg.Wait()
dbainbri4d3a0dc2020-12-02 00:33:42 +00002678 logger.Debugw(ctx, "WaitGroup processing completed", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +00002679 "device-id": dh.deviceID, "called from": aCallerIdent})
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002680}
2681
dbainbri4d3a0dc2020-12-02 00:33:42 +00002682func (dh *deviceHandler) deviceReasonUpdate(ctx context.Context, deviceReason uint8, notifyCore bool) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002683
2684 dh.deviceReason = deviceReason
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002685 if notifyCore {
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002686 //TODO with VOL-3045/VOL-3046: return the error and stop further processing at calling position
dbainbri4d3a0dc2020-12-02 00:33:42 +00002687 if err := dh.coreProxy.DeviceReasonUpdate(log.WithSpanFromContext(context.TODO(), ctx), dh.deviceID, deviceReasonMap[deviceReason]); err != nil {
2688 logger.Errorf(ctx, "DeviceReasonUpdate error: %s",
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002689 log.Fields{"device-id": dh.deviceID, "error": err}, deviceReasonMap[deviceReason])
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002690 return err
2691 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002692 logger.Infof(ctx, "DeviceReasonUpdate success: %s - device-id: %s", deviceReasonMap[deviceReason], dh.deviceID)
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002693 return nil
2694 }
dbainbri4d3a0dc2020-12-02 00:33:42 +00002695 logger.Infof(ctx, "Don't notify core about DeviceReasonUpdate: %s - device-id: %s", deviceReasonMap[deviceReason], dh.deviceID)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002696 return nil
2697}
2698
dbainbri4d3a0dc2020-12-02 00:33:42 +00002699func (dh *deviceHandler) storePersistentData(ctx context.Context) error {
2700 pDevEntry := dh.getOnuDeviceEntry(ctx, true)
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002701 if pDevEntry == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +00002702 logger.Warnw(ctx, "No valid OnuDevice", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt3a644642020-12-02 09:46:18 +00002703 return fmt.Errorf("no valid OnuDevice: %s", dh.deviceID)
2704 }
mpagenkof1fc3862021-02-16 10:09:52 +00002705 return dh.startWritingOnuDataToKvStore(ctx, pDevEntry)
Holger Hildebrandt80129db2020-11-23 10:49:32 +00002706}
2707
Holger Hildebrandt47555e72020-09-21 11:07:24 +00002708func (dh *deviceHandler) combineErrorStrings(errS ...error) error {
2709 var errStr string = ""
2710 for _, err := range errS {
2711 if err != nil {
2712 errStr = errStr + err.Error() + " "
2713 }
2714 }
2715 if errStr != "" {
2716 return fmt.Errorf("%s: %s", errStr, dh.deviceID)
2717 }
2718 return nil
2719}
ozgecanetsiab5000ef2020-11-27 14:38:20 +03002720
2721// getUniPortMEEntityID takes uniPortNo as the input and returns the Entity ID corresponding to this UNI-G ME Instance
2722func (dh *deviceHandler) getUniPortMEEntityID(uniPortNo uint32) (uint16, error) {
2723 dh.lockDevice.RLock()
2724 defer dh.lockDevice.RUnlock()
2725 if uniPort, ok := dh.uniEntityMap[uniPortNo]; ok {
2726 return uniPort.entityID, nil
2727 }
2728 return 0, errors.New("error-fetching-uni-port")
2729}
Girish Gowdrae09a6202021-01-12 18:10:59 -08002730
2731// updatePmConfig updates the pm metrics config.
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002732func (dh *deviceHandler) updatePmConfig(ctx context.Context, pmConfigs *voltha.PmConfigs) error {
2733 var errorsList []error
2734 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 -08002735
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002736 errorsList = append(dh.handleGlobalPmConfigUpdates(ctx, pmConfigs), errorsList...)
2737 errorsList = append(dh.handleGroupPmConfigUpdates(ctx, pmConfigs), errorsList...)
2738 errorsList = append(dh.handleStandalonePmConfigUpdates(ctx, pmConfigs), errorsList...)
2739
2740 // Note that if more than one pm config field is updated in a given call, it is possible that partial pm config is handled
2741 // successfully.
2742 // TODO: Although it is possible to revert to old config in case of partial failure, the code becomes quite complex. Needs more investigation
2743 // Is it possible the rw-core reverts to old config on partial failure but adapter retains a partial new config?
2744 if len(errorsList) > 0 {
2745 logger.Errorw(ctx, "one-or-more-pm-config-failed", log.Fields{"device-id": dh.deviceID, "pmConfig": dh.pmConfigs})
2746 return fmt.Errorf("errors-handling-one-or-more-pm-config, errors:%v", errorsList)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002747 }
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002748 logger.Infow(ctx, "pm-config-updated", log.Fields{"device-id": dh.deviceID, "pmConfig": dh.pmConfigs})
2749 return nil
Girish Gowdrae09a6202021-01-12 18:10:59 -08002750}
2751
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002752func (dh *deviceHandler) handleGlobalPmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2753 var err error
2754 var errorsList []error
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002755 logger.Infow(ctx, "handling-global-pm-config-params - start", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002756
2757 if pmConfigs.DefaultFreq != dh.pmConfigs.DefaultFreq {
2758 if err = dh.pOnuMetricsMgr.updateDefaultFrequency(ctx, pmConfigs); err != nil {
2759 errorsList = append(errorsList, err)
2760 }
2761 }
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002762 logger.Infow(ctx, "handling-global-pm-config-params - done", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002763 return errorsList
2764}
2765
2766func (dh *deviceHandler) handleGroupPmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2767 var err error
2768 var errorsList []error
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002769 logger.Debugw(ctx, "handling-group-pm-config-params - start", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002770 // Check if group metric related config is updated
2771 for _, v := range pmConfigs.Groups {
2772 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock()
2773 m, ok := dh.pOnuMetricsMgr.groupMetricMap[v.GroupName]
2774 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2775
2776 if ok && m.frequency != v.GroupFreq {
2777 if err = dh.pOnuMetricsMgr.updateGroupFreq(ctx, v.GroupName, pmConfigs); err != nil {
2778 errorsList = append(errorsList, err)
2779 }
2780 }
2781 if ok && m.enabled != v.Enabled {
2782 if err = dh.pOnuMetricsMgr.updateGroupSupport(ctx, v.GroupName, pmConfigs); err != nil {
2783 errorsList = append(errorsList, err)
2784 }
2785 }
2786 }
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002787 logger.Debugw(ctx, "handling-group-pm-config-params - done", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002788 return errorsList
2789}
2790
2791func (dh *deviceHandler) handleStandalonePmConfigUpdates(ctx context.Context, pmConfigs *voltha.PmConfigs) []error {
2792 var err error
2793 var errorsList []error
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002794 logger.Debugw(ctx, "handling-individual-pm-config-params - start", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002795 // Check if standalone metric related config is updated
2796 for _, v := range pmConfigs.Metrics {
2797 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock()
Girish Gowdraaf0ad632021-01-27 13:00:01 -08002798 m, ok := dh.pOnuMetricsMgr.standaloneMetricMap[v.Name]
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002799 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2800
2801 if ok && m.frequency != v.SampleFreq {
2802 if err = dh.pOnuMetricsMgr.updateMetricFreq(ctx, v.Name, pmConfigs); err != nil {
2803 errorsList = append(errorsList, err)
2804 }
2805 }
2806 if ok && m.enabled != v.Enabled {
2807 if err = dh.pOnuMetricsMgr.updateMetricSupport(ctx, v.Name, pmConfigs); err != nil {
2808 errorsList = append(errorsList, err)
2809 }
2810 }
2811 }
Girish Gowdra36ccf7d2021-02-25 20:42:51 -08002812 logger.Debugw(ctx, "handling-individual-pm-config-params - done", log.Fields{"device-id": dh.device.Id})
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002813 return errorsList
2814}
2815
2816// nolint: gocyclo
Girish Gowdrae09a6202021-01-12 18:10:59 -08002817func (dh *deviceHandler) startCollector(ctx context.Context) {
2818 logger.Debugf(ctx, "startingCollector")
2819
2820 // Start routine to process OMCI GET Responses
2821 go dh.pOnuMetricsMgr.processOmciMessages(ctx)
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002822 // Initialize the next metric collection time.
2823 // Normally done when the onu_metrics_manager is initialized the first time, but needed again later when ONU is
2824 // reset like onu rebooted.
2825 dh.pOnuMetricsMgr.initializeMetricCollectionTime(ctx)
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002826 dh.setCollectorIsRunning(true)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002827 for {
2828 select {
2829 case <-dh.stopCollector:
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002830 dh.setCollectorIsRunning(false)
Girish Gowdrae09a6202021-01-12 18:10:59 -08002831 logger.Debugw(ctx, "stopping-collector-for-onu", log.Fields{"device-id": dh.device.Id})
Girish Gowdrae0140f02021-02-02 16:55:09 -08002832 // Stop the L2 PM FSM
2833 go func() {
2834 if dh.pOnuMetricsMgr.pAdaptFsm != nil && dh.pOnuMetricsMgr.pAdaptFsm.pFsm != nil {
2835 if err := dh.pOnuMetricsMgr.pAdaptFsm.pFsm.Event(l2PmEventStop); err != nil {
2836 logger.Errorw(ctx, "error calling event", log.Fields{"device-id": dh.deviceID, "err": err})
2837 }
2838 } else {
2839 logger.Errorw(ctx, "metrics manager fsm not initialized", log.Fields{"device-id": dh.deviceID})
2840 }
2841 }()
2842
Girish Gowdrae09a6202021-01-12 18:10:59 -08002843 dh.pOnuMetricsMgr.stopProcessingOmciResponses <- true // Stop the OMCI GET response processing routine
Girish Gowdrae0140f02021-02-02 16:55:09 -08002844 dh.pOnuMetricsMgr.stopTicks <- true
2845
Girish Gowdrae09a6202021-01-12 18:10:59 -08002846 return
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002847 case <-time.After(time.Duration(FrequencyGranularity) * time.Second): // Check every FrequencyGranularity to see if it is time for collecting metrics
2848 if !dh.pmConfigs.FreqOverride { // If FreqOverride is false, then nextGlobalMetricCollectionTime applies
2849 // If the current time is eqaul to or greater than the nextGlobalMetricCollectionTime, collect the group and standalone metrics
2850 if time.Now().Equal(dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime) || time.Now().After(dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime) {
2851 go dh.pOnuMetricsMgr.collectAllGroupAndStandaloneMetrics(ctx)
Girish Gowdraaf0ad632021-01-27 13:00:01 -08002852 // Update the next metric collection time.
2853 dh.pOnuMetricsMgr.nextGlobalMetricCollectionTime = time.Now().Add(time.Duration(dh.pmConfigs.DefaultFreq) * time.Second)
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002854 }
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002855 } else {
2856 if dh.pmConfigs.Grouped { // metrics are managed as a group
2857 // parse through the group and standalone metrics to see it is time to collect their metrics
2858 dh.pOnuMetricsMgr.onuMetricsManagerLock.RLock() // Rlock as we are reading groupMetricMap and standaloneMetricMap
Girish Gowdrae09a6202021-01-12 18:10:59 -08002859
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002860 for n, g := range dh.pOnuMetricsMgr.groupMetricMap {
2861 // 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 -08002862 // Since the L2 PM counters are collected in a separate FSM, we should avoid those counters in the check.
2863 if g.enabled && !g.isL2PMCounter && (time.Now().Equal(g.nextCollectionInterval) || time.Now().After(g.nextCollectionInterval)) {
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002864 go dh.pOnuMetricsMgr.collectGroupMetric(ctx, n)
2865 }
2866 }
2867 for n, m := range dh.pOnuMetricsMgr.standaloneMetricMap {
2868 // If the standalone is enabled AND (current time is equal to OR after nextCollectionInterval, collect the metric)
2869 if m.enabled && (time.Now().Equal(m.nextCollectionInterval) || time.Now().After(m.nextCollectionInterval)) {
2870 go dh.pOnuMetricsMgr.collectStandaloneMetric(ctx, n)
2871 }
2872 }
2873 dh.pOnuMetricsMgr.onuMetricsManagerLock.RUnlock()
2874
2875 // parse through the group and update the next metric collection time
2876 dh.pOnuMetricsMgr.onuMetricsManagerLock.Lock() // Lock as we are writing the next metric collection time
2877 for _, g := range dh.pOnuMetricsMgr.groupMetricMap {
2878 // 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 -08002879 // Since the L2 PM counters are collected and managed in a separate FSM, we should avoid those counters in the check.
2880 if g.enabled && !g.isL2PMCounter && (g.nextCollectionInterval.Before(time.Now()) || g.nextCollectionInterval.Equal(time.Now())) {
Girish Gowdra5a7c4922021-01-22 18:33:41 -08002881 g.nextCollectionInterval = time.Now().Add(time.Duration(g.frequency) * time.Second)
2882 }
2883 }
2884 // parse through the standalone metrics and update the next metric collection time
2885 for _, m := range dh.pOnuMetricsMgr.standaloneMetricMap {
2886 // If standalone metrics enabled, and the nextCollectionInterval is old (before or equal to current time), update the next collection time stamp
2887 if m.enabled && (m.nextCollectionInterval.Before(time.Now()) || m.nextCollectionInterval.Equal(time.Now())) {
2888 m.nextCollectionInterval = time.Now().Add(time.Duration(m.frequency) * time.Second)
2889 }
2890 }
2891 dh.pOnuMetricsMgr.onuMetricsManagerLock.Unlock()
2892 } /* else { // metrics are not managed as a group
2893 // TODO: We currently do not have standalone metrics. When available, add code here to fetch the metric.
2894 } */
2895 }
Girish Gowdrae09a6202021-01-12 18:10:59 -08002896 }
2897 }
2898}
kesavandfdf77632021-01-26 23:40:33 -05002899
2900func (dh *deviceHandler) getUniPortStatus(ctx context.Context, uniInfo *extension.GetOnuUniInfoRequest) *extension.SingleGetValueResponse {
2901
2902 portStatus := NewUniPortStatus(dh.pOnuOmciDevice.PDevOmciCC)
2903 return portStatus.getUniPortStatus(ctx, uniInfo.UniIndex)
2904}
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002905
mpagenkof1fc3862021-02-16 10:09:52 +00002906func (dh *deviceHandler) isFsmInOmciIdleState(ctx context.Context, pFsm *fsm.FSM, wantedState string) bool {
2907 if pFsm == nil {
2908 return true //FSM not active - so there is no activity on omci
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002909 }
mpagenkof1fc3862021-02-16 10:09:52 +00002910 return pFsm.Current() == wantedState
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002911}
2912
mpagenkof1fc3862021-02-16 10:09:52 +00002913func (dh *deviceHandler) isFsmInOmciIdleStateDefault(ctx context.Context, omciFsm usedOmciConfigFsms, wantedState string) bool {
2914 var pFsm *fsm.FSM
2915 //note/TODO!!: might be that access to all these specific FSM; pointers need a semaphore protection as well, cmp lockUpgradeFsm
2916 switch omciFsm {
2917 case cUploadFsm:
2918 {
2919 pFsm = dh.pOnuOmciDevice.pMibUploadFsm.pFsm
2920 }
2921 case cDownloadFsm:
2922 {
2923 pFsm = dh.pOnuOmciDevice.pMibDownloadFsm.pFsm
2924 }
2925 case cUniLockFsm:
2926 {
2927 pFsm = dh.pLockStateFsm.pAdaptFsm.pFsm
2928 }
2929 case cUniUnLockFsm:
2930 {
2931 pFsm = dh.pUnlockStateFsm.pAdaptFsm.pFsm
2932 }
2933 case cL2PmFsm:
2934 {
2935 if dh.pOnuMetricsMgr != nil && dh.pOnuMetricsMgr.pAdaptFsm != nil {
2936 pFsm = dh.pOnuMetricsMgr.pAdaptFsm.pFsm
2937 } else {
2938 return true //FSM not active - so there is no activity on omci
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002939 }
2940 }
mpagenko80622a52021-02-09 16:53:23 +00002941 case cOnuUpgradeFsm:
2942 {
2943 dh.lockUpgradeFsm.RLock()
2944 defer dh.lockUpgradeFsm.RUnlock()
2945 pFsm = dh.pOnuUpradeFsm.pAdaptFsm.pFsm
2946 }
mpagenkof1fc3862021-02-16 10:09:52 +00002947 default:
2948 {
2949 logger.Errorw(ctx, "invalid stateMachine selected for idle check", log.Fields{
2950 "device-id": dh.deviceID, "selectedFsm number": omciFsm})
2951 return false //logical error in FSM check, do not not indicate 'idle' - we can't be sure
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002952 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002953 }
mpagenkof1fc3862021-02-16 10:09:52 +00002954 return dh.isFsmInOmciIdleState(ctx, pFsm, wantedState)
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002955}
2956
mpagenkof1fc3862021-02-16 10:09:52 +00002957func (dh *deviceHandler) isAniConfigFsmInOmciIdleState(ctx context.Context, omciFsm usedOmciConfigFsms, idleState string) bool {
2958 for _, v := range dh.pOnuTP.pAniConfigFsm {
2959 if !dh.isFsmInOmciIdleState(ctx, v.pAdaptFsm.pFsm, idleState) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +00002960 return false
2961 }
2962 }
2963 return true
2964}
2965
mpagenkof1fc3862021-02-16 10:09:52 +00002966func (dh *deviceHandler) isUniVlanConfigFsmInOmciIdleState(ctx context.Context, omciFsm usedOmciConfigFsms, idleState string) bool {
2967 dh.lockVlanConfig.RLock()
2968 defer dh.lockVlanConfig.RUnlock()
2969 for _, v := range dh.UniVlanConfigFsmMap {
2970 if !dh.isFsmInOmciIdleState(ctx, v.pAdaptFsm.pFsm, idleState) {
2971 return false
2972 }
2973 }
2974 return true //FSM not active - so there is no activity on omci
2975}
2976
2977func (dh *deviceHandler) checkUserServiceExists(ctx context.Context) bool {
2978 dh.lockVlanConfig.RLock()
2979 defer dh.lockVlanConfig.RUnlock()
2980 for _, v := range dh.UniVlanConfigFsmMap {
2981 if v.pAdaptFsm.pFsm != nil {
2982 if v.pAdaptFsm.pFsm.Is(cVlanFsmConfiguredState) {
2983 return true //there is at least one VLAN FSM with some active configuration
2984 }
2985 }
2986 }
2987 return false //there is no VLAN FSM with some active configuration
2988}
2989
2990func (dh *deviceHandler) checkAuditStartCondition(ctx context.Context, callingFsm usedOmciConfigFsms) bool {
2991 for fsmName, fsmStruct := range fsmOmciIdleStateFuncMap {
2992 if fsmName != callingFsm && !fsmStruct.omciIdleCheckFunc(dh, ctx, fsmName, fsmStruct.omciIdleState) {
2993 return false
2994 }
2995 }
2996 // a further check is done to identify, if at least some data traffic related configuration exists
2997 // so that a user of this ONU could be 'online' (otherwise it makes no sense to check the MDS [with the intention to keep the user service up])
2998 return dh.checkUserServiceExists(ctx)
2999}
3000
Holger Hildebrandt10d98192021-01-27 15:29:31 +00003001func (dh *deviceHandler) prepareReconcilingWithActiveAdapter(ctx context.Context) {
3002 logger.Debugw(ctx, "prepare to reconcile the ONU with adapter using persistency data", log.Fields{"device-id": dh.device.Id})
3003 if err := dh.resetFsms(ctx, false); err != nil {
3004 logger.Errorw(ctx, "reset of FSMs failed!", log.Fields{"device-id": dh.deviceID, "error": err})
3005 // TODO: fatal error reset ONU, delete deviceHandler!
3006 return
3007 }
3008 if !dh.getCollectorIsRunning() {
3009 // Start PM collector routine
3010 go dh.startCollector(ctx)
3011 }
Himani Chawla4c1d4c72021-02-18 12:14:31 +05303012 if !dh.getAlarmManagerIsRunning() {
3013 go dh.startAlarmManager(ctx)
3014 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +00003015 dh.uniEntityMap = make(map[uint32]*onuUniPort)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00003016 dh.startReconciling(ctx)
Holger Hildebrandt10d98192021-01-27 15:29:31 +00003017}
3018
3019func (dh *deviceHandler) setCollectorIsRunning(flagValue bool) {
3020 dh.mutexCollectorFlag.Lock()
3021 dh.collectorIsRunning = flagValue
3022 dh.mutexCollectorFlag.Unlock()
3023}
3024
3025func (dh *deviceHandler) getCollectorIsRunning() bool {
3026 dh.mutexCollectorFlag.RLock()
3027 flagValue := dh.collectorIsRunning
3028 dh.mutexCollectorFlag.RUnlock()
3029 return flagValue
3030}
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05303031
Himani Chawla4c1d4c72021-02-18 12:14:31 +05303032func (dh *deviceHandler) setAlarmManagerIsRunning(flagValue bool) {
3033 dh.mutextAlarmManagerFlag.Lock()
3034 dh.alarmManagerIsRunning = flagValue
3035 dh.mutextAlarmManagerFlag.Unlock()
3036}
3037
3038func (dh *deviceHandler) getAlarmManagerIsRunning() bool {
3039 dh.mutextAlarmManagerFlag.RLock()
3040 flagValue := dh.alarmManagerIsRunning
3041 dh.mutextAlarmManagerFlag.RUnlock()
3042 return flagValue
3043}
3044
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05303045func (dh *deviceHandler) startAlarmManager(ctx context.Context) {
3046 logger.Debugf(ctx, "startingAlarmManager")
3047
3048 // Start routine to process OMCI GET Responses
3049 go dh.pAlarmMgr.startOMCIAlarmMessageProcessing(ctx)
Himani Chawla4c1d4c72021-02-18 12:14:31 +05303050 dh.setAlarmManagerIsRunning(true)
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05303051 if stop := <-dh.stopAlarmManager; stop {
3052 logger.Debugw(ctx, "stopping-collector-for-onu", log.Fields{"device-id": dh.device.Id})
3053 dh.pAlarmMgr.stopProcessingOmciMessages <- true // Stop the OMCI routines if any
Himani Chawla4c1d4c72021-02-18 12:14:31 +05303054 dh.setAlarmManagerIsRunning(false)
3055
Himani Chawlaac1f5ad2021-02-04 21:21:54 +05303056 }
3057}
Holger Hildebrandt38985dc2021-02-18 16:25:20 +00003058
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00003059func (dh *deviceHandler) startReconciling(ctx context.Context) {
Holger Hildebrandt38985dc2021-02-18 16:25:20 +00003060 logger.Debugw(ctx, "start reconciling", log.Fields{"timeout": dh.pOpenOnuAc.maxTimeoutReconciling, "device-id": dh.deviceID})
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00003061 if !dh.isReconciling() {
3062 go func() {
3063 select {
3064 case <-dh.chReconcilingFinished:
3065 logger.Debugw(ctx, "reconciling has been finished in time",
3066 log.Fields{"device-id": dh.deviceID})
Holger Hildebrandt38985dc2021-02-18 16:25:20 +00003067 case <-time.After(dh.pOpenOnuAc.maxTimeoutReconciling):
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +00003068 logger.Errorw(ctx, "timeout waiting for reconciling to be finished!",
3069 log.Fields{"device-id": dh.deviceID})
3070 }
3071 dh.mutexReconcilingFlag.Lock()
3072 dh.reconciling = false
3073 dh.mutexReconcilingFlag.Unlock()
3074 }()
3075 dh.mutexReconcilingFlag.Lock()
3076 dh.reconciling = true
3077 dh.mutexReconcilingFlag.Unlock()
3078 } else {
3079 logger.Warnw(ctx, "reconciling is already running", log.Fields{"device-id": dh.deviceID})
3080 }
3081}
3082
3083func (dh *deviceHandler) stopReconciling(ctx context.Context) {
3084 logger.Debugw(ctx, "stop reconciling", log.Fields{"device-id": dh.deviceID})
3085 if dh.isReconciling() {
3086 dh.chReconcilingFinished <- true
3087 } else {
3088 logger.Infow(ctx, "reconciling is not running", log.Fields{"device-id": dh.deviceID})
3089 }
3090}
3091
3092func (dh *deviceHandler) isReconciling() bool {
3093 dh.mutexReconcilingFlag.RLock()
3094 value := dh.reconciling
3095 dh.mutexReconcilingFlag.RUnlock()
3096 return value
3097}