blob: 15868fc3bb94b4a24c0605f2507f8dc21797d839 [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 (
Holger Hildebrandt2fb70892020-10-28 11:53:18 +000021 "bytes"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000022 "context"
Holger Hildebrandtc54939a2020-06-17 08:14:27 +000023 "encoding/hex"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000024 "encoding/json"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000025 "errors"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000026 "fmt"
27 "strconv"
mpagenko3af1f032020-06-10 08:53:41 +000028 "strings"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000029
30 "github.com/looplab/fsm"
31
32 //"sync"
divyadesaibbed37c2020-08-28 13:35:20 +053033 "time"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000034
dbainbri4d3a0dc2020-12-02 00:33:42 +000035 //"github.com/opencord/voltha-lib-go/v4/pkg/kafka"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000036 "github.com/opencord/omci-lib-go"
37 me "github.com/opencord/omci-lib-go/generated"
dbainbri4d3a0dc2020-12-02 00:33:42 +000038 "github.com/opencord/voltha-lib-go/v4/pkg/db/kvstore"
39 "github.com/opencord/voltha-lib-go/v4/pkg/log"
40 //ic "github.com/opencord/voltha-protos/v4/go/inter_container"
41 //"github.com/opencord/voltha-protos/v4/go/openflow_13"
42 //"github.com/opencord/voltha-protos/v4/go/voltha"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000043)
44
mpagenko01499812021-03-25 10:37:12 +000045type sLastTxMeParameter struct {
46 lastTxMessageType omci.MessageType
47 pLastTxMeInstance *me.ManagedEntity
48 repeatCount uint8
49}
50
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000051var supportedClassIds = []me.ClassID{
52 me.CardholderClassID, // 5
53 me.CircuitPackClassID, // 6
54 me.SoftwareImageClassID, // 7
55 me.PhysicalPathTerminationPointEthernetUniClassID, // 11
56 me.OltGClassID, // 131
57 me.OnuPowerSheddingClassID, // 133
58 me.IpHostConfigDataClassID, // 134
59 me.OnuGClassID, // 256
60 me.Onu2GClassID, // 257
61 me.TContClassID, // 262
62 me.AniGClassID, // 263
63 me.UniGClassID, // 264
64 me.PriorityQueueClassID, // 277
65 me.TrafficSchedulerClassID, // 278
66 me.VirtualEthernetInterfacePointClassID, // 329
67 me.EnhancedSecurityControlClassID, // 332
68 me.OnuDynamicPowerManagementControlClassID, // 336
69 // 347 // definitions for ME "IPv6 host config data" are currently missing in omci-lib-go!
70}
71
72var fsmMsg TestMessageType
73
dbainbri4d3a0dc2020-12-02 00:33:42 +000074func (oo *OnuDeviceEntry) enterStartingState(ctx context.Context, e *fsm.Event) {
75 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start processing MibSync-msgs in State": e.FSM.Current(), "device-id": oo.deviceID})
76 oo.pOnuDB = newOnuDeviceDB(log.WithSpanFromContext(context.TODO(), ctx), oo)
77 go oo.processMibSyncMessages(ctx)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000078}
79
dbainbri4d3a0dc2020-12-02 00:33:42 +000080func (oo *OnuDeviceEntry) enterResettingMibState(ctx context.Context, e *fsm.Event) {
81 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibTemplate processing in State": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000082
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +000083 if !oo.isNewOnu() && !oo.baseDeviceHandler.isReconciling() {
Holger Hildebrandt10d98192021-01-27 15:29:31 +000084 oo.baseDeviceHandler.prepareReconcilingWithActiveAdapter(ctx)
85 oo.devState = DeviceStatusInit
86 }
dbainbri4d3a0dc2020-12-02 00:33:42 +000087 logger.Debugw(ctx, "MibSync FSM", log.Fields{"send mibReset in State": e.FSM.Current(), "device-id": oo.deviceID})
Girish Gowdra0b235842021-03-09 13:06:46 -080088 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000089 //TODO: needs to handle timeouts
mpagenko01499812021-03-25 10:37:12 +000090 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
91 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
92 oo.lastTxParamStruct.lastTxMessageType = omci.MibResetRequestType
93 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandtc54939a2020-06-17 08:14:27 +000094}
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000095
dbainbri4d3a0dc2020-12-02 00:33:42 +000096func (oo *OnuDeviceEntry) enterGettingVendorAndSerialState(ctx context.Context, e *fsm.Event) {
97 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting VendorId and SerialNumber in State": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandtc54939a2020-06-17 08:14:27 +000098 requestedAttributes := me.AttributeValueMap{"VendorId": "", "SerialNumber": 0}
Girish Gowdra0b235842021-03-09 13:06:46 -080099 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.OnuGClassID, onugMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000100 //accept also nil as (error) return value for writing to LastTx
101 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000102 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
103 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000104}
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000105
dbainbri4d3a0dc2020-12-02 00:33:42 +0000106func (oo *OnuDeviceEntry) enterGettingEquipmentIDState(ctx context.Context, e *fsm.Event) {
107 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting EquipmentId in State": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000108 requestedAttributes := me.AttributeValueMap{"EquipmentId": ""}
Girish Gowdra0b235842021-03-09 13:06:46 -0800109 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.Onu2GClassID, onu2gMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000110 //accept also nil as (error) return value for writing to LastTx
111 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000112 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
113 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000114}
115
dbainbri4d3a0dc2020-12-02 00:33:42 +0000116func (oo *OnuDeviceEntry) enterGettingFirstSwVersionState(ctx context.Context, e *fsm.Event) {
117 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting IsActive and Version of first SW-image in State": e.FSM.Current(), "device-id": oo.deviceID})
mpagenko15ff4a52021-03-02 10:09:20 +0000118 requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
Girish Gowdra0b235842021-03-09 13:06:46 -0800119 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.SoftwareImageClassID, firstSwImageMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000120 //accept also nil as (error) return value for writing to LastTx
121 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000122 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
123 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000124}
125
dbainbri4d3a0dc2020-12-02 00:33:42 +0000126func (oo *OnuDeviceEntry) enterGettingSecondSwVersionState(ctx context.Context, e *fsm.Event) {
127 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting IsActive and Version of second SW-image in State": e.FSM.Current(), "device-id": oo.deviceID})
mpagenko15ff4a52021-03-02 10:09:20 +0000128 requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
Girish Gowdra0b235842021-03-09 13:06:46 -0800129 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.SoftwareImageClassID, secondSwImageMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000130 //accept also nil as (error) return value for writing to LastTx
131 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000132 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
133 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000134}
135
dbainbri4d3a0dc2020-12-02 00:33:42 +0000136func (oo *OnuDeviceEntry) enterGettingMacAddressState(ctx context.Context, e *fsm.Event) {
137 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start getting MacAddress in State": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000138 requestedAttributes := me.AttributeValueMap{"MacAddress": ""}
Girish Gowdra0b235842021-03-09 13:06:46 -0800139 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx), me.IpHostConfigDataClassID, ipHostConfigDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000140 //accept also nil as (error) return value for writing to LastTx
141 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000142 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
143 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000144}
145
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000146func (oo *OnuDeviceEntry) enterGettingMibTemplateState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000147
mpagenko15ff4a52021-03-02 10:09:20 +0000148 if oo.onuSwImageIndications.activeEntityEntry.valid {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000149 oo.sOnuPersistentData.PersActiveSwVersion = oo.onuSwImageIndications.activeEntityEntry.version
mpagenko15ff4a52021-03-02 10:09:20 +0000150 } else {
151 logger.Errorw(ctx, "get-mib-template: no active SW version found, working with empty SW version, which might be untrustworthy",
152 log.Fields{"device-id": oo.deviceID})
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000153 }
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000154 if oo.getMibFromTemplate(ctx) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000155 logger.Debug(ctx, "MibSync FSM - valid MEs stored from template")
156 oo.pOnuDB.logMeDb(ctx)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000157 fsmMsg = LoadMibTemplateOk
158 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000159 logger.Debug(ctx, "MibSync FSM - no valid MEs stored from template - perform MIB-upload!")
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000160 fsmMsg = LoadMibTemplateFailed
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000161
Holger Hildebrandt441a0172020-12-10 13:57:08 +0000162 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
163 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
164 if mibTemplateIsGenerated {
165 logger.Debugw(ctx,
166 "MibSync FSM - template was successfully generated before, but doesn't exist or isn't usable anymore - reset flag in map",
167 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
168 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
169 }
170 }
171 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
172 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000173 mibSyncMsg := Message{
174 Type: TestMsg,
175 Data: TestMessage{
176 TestMessageVal: fsmMsg,
177 },
178 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000179 oo.pMibUploadFsm.commChan <- mibSyncMsg
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000180}
181
dbainbri4d3a0dc2020-12-02 00:33:42 +0000182func (oo *OnuDeviceEntry) enterUploadingState(ctx context.Context, e *fsm.Event) {
183 logger.Debugw(ctx, "MibSync FSM", log.Fields{"send MibUpload in State": e.FSM.Current(), "device-id": oo.deviceID})
Girish Gowdra0b235842021-03-09 13:06:46 -0800184 _ = oo.PDevOmciCC.sendMibUpload(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000185 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
186 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
187 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadRequestType
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000188}
189
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000190func (oo *OnuDeviceEntry) enterUploadDoneState(ctx context.Context, e *fsm.Event) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000191 logger.Debugw(ctx, "MibSync FSM", log.Fields{"send notification to core in State": e.FSM.Current(), "device-id": oo.deviceID})
192 oo.transferSystemEvent(ctx, MibDatabaseSync)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000193 go func() {
194 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
195 }()
196}
197
198func (oo *OnuDeviceEntry) enterInSyncState(ctx context.Context, e *fsm.Event) {
199 oo.sOnuPersistentData.PersMibLastDbSync = uint32(time.Now().Unix())
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000200 if oo.mibAuditInterval > 0 {
201 logger.Debugw(ctx, "MibSync FSM", log.Fields{"trigger next Audit in State": e.FSM.Current(), "oo.mibAuditInterval": oo.mibAuditInterval, "device-id": oo.deviceID})
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000202 go func() {
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000203 time.Sleep(oo.mibAuditInterval)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000204 if err := oo.pMibUploadFsm.pFsm.Event(ulEvAuditMib); err != nil {
205 logger.Debugw(ctx, "MibSyncFsm: Can't go to state auditing", log.Fields{"device-id": oo.deviceID, "err": err})
206 }
207 }()
208 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000209}
210
dbainbri4d3a0dc2020-12-02 00:33:42 +0000211func (oo *OnuDeviceEntry) enterExaminingMdsState(ctx context.Context, e *fsm.Event) {
212 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start GetMds processing in State": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000213 oo.requestMdsValue(ctx)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000214}
215
dbainbri4d3a0dc2020-12-02 00:33:42 +0000216func (oo *OnuDeviceEntry) enterResynchronizingState(ctx context.Context, e *fsm.Event) {
217 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibResync processing in State": e.FSM.Current(), "device-id": oo.deviceID})
218 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000219 // TODOs:
220 // VOL-3805 - Provide exclusive OMCI channel for one FSM
221 // VOL-3785 - New event notifications and corresponding performance counters for openonu-adapter-go
222 // VOL-3792 - Support periodical audit via mib resync
223 // VOL-3793 - ONU-reconcile handling after adapter restart based on mib resync
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000224}
225
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000226func (oo *OnuDeviceEntry) enterExaminingMdsSuccessState(ctx context.Context, e *fsm.Event) {
227 logger.Debugw(ctx, "MibSync FSM",
228 log.Fields{"Start processing on examining MDS success in State": e.FSM.Current(), "device-id": oo.deviceID})
229
230 if oo.getMibFromTemplate(ctx) {
231 oo.baseDeviceHandler.startReconciling(ctx, true)
232 oo.baseDeviceHandler.addAllUniPorts(ctx)
233 oo.baseDeviceHandler.setDeviceReason(drInitialMibDownloaded)
234 oo.baseDeviceHandler.ReadyForSpecificOmciConfig = true
235 // no need to reconcile additional data for MibDownloadFsm, LockStateFsm, or UnlockStateFsm
236
237 oo.baseDeviceHandler.reconcileDeviceTechProf(ctx)
Holger Hildebrandt7e9de862021-03-26 14:01:49 +0000238 oo.baseDeviceHandler.reconcileDeviceFlowConfig(ctx)
239
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000240 if oo.sOnuPersistentData.PersUniDisableDone {
241 oo.baseDeviceHandler.disableUniPortStateUpdate(ctx)
242 oo.baseDeviceHandler.setDeviceReason(drOmciAdminLock)
243 } else {
244 oo.baseDeviceHandler.enableUniPortStateUpdate(ctx)
245 }
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000246 go func() {
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +0000247 // In multi-ONU/multi-flow environment stopping reconcilement has to be delayed until
248 // we get a signal that the processing of the last step to rebuild the adapter internal
249 // flow data is finished.
250 select {
251 case success := <-oo.baseDeviceHandler.chReconcilingFlowsFinished:
252 if success {
253 logger.Debugw(ctx, "reconciling flows has been finished in time",
254 log.Fields{"device-id": oo.deviceID})
255 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
256 } else {
257 logger.Debugw(ctx, "wait for reconciling flows aborted",
258 log.Fields{"device-id": oo.deviceID})
259 oo.baseDeviceHandler.setReconcilingFlows(false)
260 return
261 }
262 case <-time.After(100 * time.Millisecond):
263 logger.Errorw(ctx, "timeout waiting for reconciling flows to be finished!",
264 log.Fields{"device-id": oo.deviceID})
265 oo.baseDeviceHandler.setReconcilingFlows(false)
266 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
267 }
Holger Hildebrandt1b8f4ad2021-03-25 15:53:51 +0000268 oo.baseDeviceHandler.stopReconciling(ctx)
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000269 }()
270
271 } else {
272 logger.Debugw(ctx, "MibSync FSM",
273 log.Fields{"Getting MIB from template not successful": e.FSM.Current(), "device-id": oo.deviceID})
274 go func() {
275 //switch to reconciling with OMCI config
276 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
277 }()
278 }
279}
280
dbainbri4d3a0dc2020-12-02 00:33:42 +0000281func (oo *OnuDeviceEntry) enterAuditingState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000282 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibAudit processing in State": e.FSM.Current(), "device-id": oo.deviceID})
mpagenkof1fc3862021-02-16 10:09:52 +0000283 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000284 oo.requestMdsValue(ctx)
285 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000286 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Configuration is ongoing or missing - skip auditing!": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000287 go func() {
288 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
289 }()
290 }
291}
292
293func (oo *OnuDeviceEntry) enterReAuditingState(ctx context.Context, e *fsm.Event) {
294 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start retest MdsValue processing in State": e.FSM.Current(), "device-id": oo.deviceID})
mpagenkof1fc3862021-02-16 10:09:52 +0000295 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000296 oo.requestMdsValue(ctx)
297 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000298 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Configuration is ongoing or missing - skip re-auditing!": e.FSM.Current(), "device-id": oo.deviceID})
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000299 go func() {
300 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
301 }()
302 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000303}
304
dbainbri4d3a0dc2020-12-02 00:33:42 +0000305func (oo *OnuDeviceEntry) enterOutOfSyncState(ctx context.Context, e *fsm.Event) {
306 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibReconcile processing in State": e.FSM.Current(), "device-id": oo.deviceID})
307 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000308}
309
dbainbri4d3a0dc2020-12-02 00:33:42 +0000310func (oo *OnuDeviceEntry) processMibSyncMessages(ctx context.Context) {
311 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Start routine to process OMCI-messages for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000312loop:
313 for {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000314 // case <-ctx.Done():
315 // logger.Info("MibSync Msg", log.Fields{"Message handling canceled via context for device-id": onuDeviceEntry.deviceID})
316 // break loop
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000317 message, ok := <-oo.pMibUploadFsm.commChan
Himani Chawla4d908332020-08-31 12:30:20 +0530318 if !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000319 logger.Info(ctx, "MibSync Msg", log.Fields{"Message couldn't be read from channel for device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530320 break loop
321 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000322 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Received message on ONU MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000323
Himani Chawla4d908332020-08-31 12:30:20 +0530324 switch message.Type {
325 case TestMsg:
326 msg, _ := message.Data.(TestMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000327 oo.handleTestMsg(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530328 case OMCI:
329 msg, _ := message.Data.(OmciMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000330 oo.handleOmciMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530331 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000332 logger.Warn(ctx, "MibSync Msg", log.Fields{"Unknown message type received for device-id": oo.deviceID, "message.Type": message.Type})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000333 }
334 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000335 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000336 // TODO: only this action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000337 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000338}
339
dbainbri4d3a0dc2020-12-02 00:33:42 +0000340func (oo *OnuDeviceEntry) handleTestMsg(ctx context.Context, msg TestMessage) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000341
dbainbri4d3a0dc2020-12-02 00:33:42 +0000342 logger.Debugw(ctx, "MibSync Msg", log.Fields{"TestMessage received for device-id": oo.deviceID, "msg.TestMessageVal": msg.TestMessageVal})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000343
344 switch msg.TestMessageVal {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000345 case LoadMibTemplateFailed:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000346 _ = oo.pMibUploadFsm.pFsm.Event(ulEvUploadMib)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000347 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000348 case LoadMibTemplateOk:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000349 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000350 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000351 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000352 logger.Warn(ctx, "MibSync Msg", log.Fields{"Unknown message type received for device-id": oo.deviceID, "msg.TestMessageVal": msg.TestMessageVal})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000353 }
354}
355
dbainbri4d3a0dc2020-12-02 00:33:42 +0000356func (oo *OnuDeviceEntry) handleOmciMibResetResponseMessage(ctx context.Context, msg OmciMessage) {
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000357 if oo.pMibUploadFsm.pFsm.Is(ulStResettingMib) {
Himani Chawla4d908332020-08-31 12:30:20 +0530358 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibResetResponse)
359 if msgLayer != nil {
360 msgObj, msgOk := msgLayer.(*omci.MibResetResponse)
361 if msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000362 logger.Debugw(ctx, "MibResetResponse Data", log.Fields{"data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530363 if msgObj.Result == me.Success {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000364 oo.sOnuPersistentData.PersMibDataSyncAdpt = 0
Himani Chawla4d908332020-08-31 12:30:20 +0530365 // trigger retrieval of VendorId and SerialNumber
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000366 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetVendorAndSerial)
Himani Chawla4d908332020-08-31 12:30:20 +0530367 return
368 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000369 logger.Errorw(ctx, "Omci MibResetResponse Error", log.Fields{"device-id": oo.deviceID, "Error": msgObj.Result})
Himani Chawla4d908332020-08-31 12:30:20 +0530370 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000371 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530372 }
373 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000374 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530375 }
376 } else {
mpagenko01499812021-03-25 10:37:12 +0000377 //in case the last request was MdsGetRequest this issue may appear if the ONU was online before and has received the MIB reset
378 // with Sequence number 0x8000 as last request before - so it may still respond to that
379 // then we may force the ONU to react on the MdsGetRequest with a new message that uses an increased Sequence number
380 if oo.lastTxParamStruct.lastTxMessageType == omci.GetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
381 logger.Debugw(ctx, "MibSync FSM - repeat MdsGetRequest (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
382 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
383 _ = oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
384 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
385 //TODO: needs extra handling of timeouts
386 oo.lastTxParamStruct.repeatCount = 1
387 return
388 }
389 logger.Errorw(ctx, "unexpected MibResetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
390 //perhaps some still lingering message from some prior activity, let's wait for the real response
391 return
Himani Chawla4d908332020-08-31 12:30:20 +0530392 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000393 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000394 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Himani Chawla4d908332020-08-31 12:30:20 +0530395}
396
dbainbri4d3a0dc2020-12-02 00:33:42 +0000397func (oo *OnuDeviceEntry) handleOmciMibUploadResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530398 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadResponse)
399 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000400 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530401 return
402 }
403 msgObj, msgOk := msgLayer.(*omci.MibUploadResponse)
404 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000405 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530406 return
407 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000408 logger.Debugw(ctx, "MibUploadResponse Data for:", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530409 /* to be verified / reworked !!! */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000410 oo.PDevOmciCC.uploadNoOfCmds = msgObj.NumberOfCommands
411 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800412 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000413 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
414 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
415 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530416 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000417 logger.Errorw(ctx, "Invalid number of commands received for:", log.Fields{"device-id": oo.deviceID, "uploadNoOfCmds": oo.PDevOmciCC.uploadNoOfCmds})
Himani Chawla4d908332020-08-31 12:30:20 +0530418 //TODO right action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000419 _ = oo.pMibUploadFsm.pFsm.Event(ulEvTimeout)
Himani Chawla4d908332020-08-31 12:30:20 +0530420 }
421}
422
dbainbri4d3a0dc2020-12-02 00:33:42 +0000423func (oo *OnuDeviceEntry) handleOmciMibUploadNextResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530424 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadNextResponse)
Andrea Campanella6515c582020-10-05 11:25:00 +0200425
Holger Hildebrandte2439342020-12-03 16:06:54 +0000426 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000427 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000428 return
429 }
430 msgObj, msgOk := msgLayer.(*omci.MibUploadNextResponse)
431 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000432 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000433 return
434 }
435 meName := msgObj.ReportedME.GetName()
436 if meName == "UnknownItuG988ManagedEntity" || meName == "UnknownVendorSpecificManagedEntity" {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000437 logger.Debugw(ctx, "MibUploadNextResponse Data for unknown ME received - temporary workaround is to ignore it!",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000438 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj, "meName": meName})
439 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000440 logger.Debugw(ctx, "MibUploadNextResponse Data for:",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000441 log.Fields{"device-id": oo.deviceID, "meName": meName, "data-fields": msgObj})
Holger Hildebrandt8998b872020-10-05 13:48:39 +0000442 meClassID := msgObj.ReportedME.GetClassID()
443 meEntityID := msgObj.ReportedME.GetEntityID()
444 meAttributes := msgObj.ReportedME.GetAttributeValueMap()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000445 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, meAttributes)
Himani Chawla4d908332020-08-31 12:30:20 +0530446 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000447 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800448 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000449 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
450 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
451 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530452 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000453 oo.pOnuDB.logMeDb(ctx)
454 err := oo.createAndPersistMibTemplate(ctx)
Himani Chawla4d908332020-08-31 12:30:20 +0530455 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000456 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to create and persist the mib template", log.Fields{"error": err, "device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530457 }
458
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000459 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
Himani Chawla4d908332020-08-31 12:30:20 +0530460 }
461}
462
dbainbri4d3a0dc2020-12-02 00:33:42 +0000463func (oo *OnuDeviceEntry) handleOmciGetResponseMessage(ctx context.Context, msg OmciMessage) error {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000464 var err error = nil
mpagenko01499812021-03-25 10:37:12 +0000465
466 if oo.lastTxParamStruct.lastTxMessageType != omci.GetRequestType ||
467 oo.lastTxParamStruct.pLastTxMeInstance == nil {
468 //in case the last request was MibReset this issue may appear if the ONU was online before and has received the MDS GetRequest
469 // with Sequence number 0x8000 as last request before - so it may still respond to that
470 // then we may force the ONU to react on the MIB reset with a new message that uses an increased Sequence number
471 if oo.lastTxParamStruct.lastTxMessageType == omci.MibResetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
472 logger.Debugw(ctx, "MibSync FSM - repeat mibReset (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
473 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
474 //TODO: needs extra handling of timeouts
475 oo.lastTxParamStruct.repeatCount = 1
476 return nil
477 }
478 logger.Warnw(ctx, "unexpected GetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
479 //perhaps some still lingering message from some prior activity, let's wait for the real response
480 return nil
481 }
Himani Chawla4d908332020-08-31 12:30:20 +0530482 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeGetResponse)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000483 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000484 logger.Errorw(ctx, "omci Msg layer could not be detected for GetResponse - handling of MibSyncChan stopped", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000485 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
486 return fmt.Errorf("omci Msg layer could not be detected for GetResponse - handling of MibSyncChan stopped: %s", oo.deviceID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000487 }
488 msgObj, msgOk := msgLayer.(*omci.GetResponse)
489 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000490 logger.Errorw(ctx, "omci Msg layer could not be assigned for GetResponse - handling of MibSyncChan stopped", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000491 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
492 return fmt.Errorf("omci Msg layer could not be assigned for GetResponse - handling of MibSyncChan stopped: %s", oo.deviceID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000493 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000494 logger.Debugw(ctx, "MibSync FSM - GetResponse Data", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000495 if msgObj.Result == me.Success {
mpagenko01499812021-03-25 10:37:12 +0000496 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
497 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000498 meAttributes := msgObj.Attributes
mpagenko01499812021-03-25 10:37:12 +0000499 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000500 logger.Debugf(ctx, "MibSync FSM - GetResponse Data for %s", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, meInstance)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000501 switch meInstance {
502 case "OnuG":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000503 oo.sOnuPersistentData.PersVendorID = trimStringFromInterface(meAttributes["VendorId"])
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000504 snBytes, _ := me.InterfaceToOctets(meAttributes["SerialNumber"])
505 if onugSerialNumberLen == len(snBytes) {
506 snVendorPart := fmt.Sprintf("%s", snBytes[:4])
507 snNumberPart := hex.EncodeToString(snBytes[4:])
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000508 oo.sOnuPersistentData.PersSerialNumber = snVendorPart + snNumberPart
dbainbri4d3a0dc2020-12-02 00:33:42 +0000509 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu-G - VendorId/SerialNumber", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000510 "onuDeviceEntry.vendorID": oo.sOnuPersistentData.PersVendorID, "onuDeviceEntry.serialNumber": oo.sOnuPersistentData.PersSerialNumber})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000511 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000512 logger.Infow(ctx, "MibSync FSM - SerialNumber has wrong length - fill serialNumber with zeros", log.Fields{"device-id": oo.deviceID, "length": len(snBytes)})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000513 oo.sOnuPersistentData.PersSerialNumber = cEmptySerialNumberString
Himani Chawla4d908332020-08-31 12:30:20 +0530514 }
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000515 // trigger retrieval of EquipmentId
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000516 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetEquipmentID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000517 return nil
518 case "Onu2G":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000519 oo.sOnuPersistentData.PersEquipmentID = trimStringFromInterface(meAttributes["EquipmentId"])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000520 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu2-G - EquipmentId", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000521 "onuDeviceEntry.equipmentID": oo.sOnuPersistentData.PersEquipmentID})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000522 // trigger retrieval of 1st SW-image info
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000523 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetFirstSwVersion)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000524 return nil
525 case "SoftwareImage":
mpagenko15ff4a52021-03-02 10:09:20 +0000526 if entityID > secondSwImageMeID {
527 logger.Errorw(ctx, "mibSync FSM - Failed to GetResponse Data for SoftwareImage with expected EntityId",
528 log.Fields{"device-id": oo.deviceID, "entity-ID": entityID})
529 return fmt.Errorf("mibSync FSM - SwResponse Data with unexpected EntityId: %s %x",
530 oo.deviceID, entityID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000531 }
mpagenko15ff4a52021-03-02 10:09:20 +0000532 // need to use function for go lint complexity
533 oo.handleSwImageIndications(ctx, entityID, meAttributes)
534 return nil
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000535 case "IpHostConfigData":
536 macBytes, _ := me.InterfaceToOctets(meAttributes["MacAddress"])
537 if omciMacAddressLen == len(macBytes) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000538 oo.sOnuPersistentData.PersMacAddress = hex.EncodeToString(macBytes[:])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000539 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for IpHostConfigData - MacAddress", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000540 "macAddress": oo.sOnuPersistentData.PersMacAddress})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000541 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000542 logger.Infow(ctx, "MibSync FSM - MacAddress wrong length - fill macAddress with zeros", log.Fields{"device-id": oo.deviceID, "length": len(macBytes)})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000543 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000544 }
545 // trigger retrieval of mib template
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000546 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000547 return nil
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000548 case "OnuData":
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000549 oo.checkMdsValue(ctx, meAttributes["MibDataSync"].(uint8))
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000550 return nil
Himani Chawla4d908332020-08-31 12:30:20 +0530551 }
Matteo Scandolo20ca10c2021-01-21 14:35:45 -0800552 } else {
553 logger.Warnf(ctx, "MibSync FSM - Received GetResponse Data for %s with wrong classID or entityID ", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, msgObj.EntityClass)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000554 }
Himani Chawla4d908332020-08-31 12:30:20 +0530555 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000556 if err = oo.handleOmciGetResponseErrors(ctx, msgObj); err == nil {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000557 return nil
558 }
Himani Chawla4d908332020-08-31 12:30:20 +0530559 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000560 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000561 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000562 return err
Himani Chawla4d908332020-08-31 12:30:20 +0530563}
564
mpagenko15ff4a52021-03-02 10:09:20 +0000565func (oo *OnuDeviceEntry) handleSwImageIndications(ctx context.Context, entityID uint16, meAttributes me.AttributeValueMap) {
566 imageIsCommitted := meAttributes["IsCommitted"].(uint8)
567 imageIsActive := meAttributes["IsActive"].(uint8)
568 imageVersion := trimStringFromInterface(meAttributes["Version"])
569 logger.Infow(ctx, "MibSync FSM - GetResponse Data for SoftwareImage",
570 log.Fields{"device-id": oo.deviceID, "entityID": entityID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000571 "version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted, "SNR": oo.sOnuPersistentData.PersSerialNumber})
mpagenko15ff4a52021-03-02 10:09:20 +0000572 if firstSwImageMeID == entityID {
573 //always accept the state of the first image (2nd image info should not yet be available)
574 if imageIsActive == swIsActive {
575 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
576 oo.onuSwImageIndications.activeEntityEntry.valid = true
577 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
578 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000579 //as the SW version indication may stem from some ONU Down/up event
580 //the complementary image state is to be invalidated
581 // (state of the second image is always expected afterwards or just invalid)
582 oo.onuSwImageIndications.inactiveEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000583 } else {
584 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
585 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
586 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
587 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000588 //as the SW version indication may stem form some ONU Down/up event
589 //the complementary image state is to be invalidated
590 // (state of the second image is always expected afterwards or just invalid)
591 oo.onuSwImageIndications.activeEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000592 }
593 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetSecondSwVersion)
594 return
595 } else if secondSwImageMeID == entityID {
596 //2nd image info might conflict with first image info, in which case we priorize first image info!
597 if imageIsActive == swIsActive { //2nd image reported to be active
598 if oo.onuSwImageIndications.activeEntityEntry.valid {
599 //conflict exists - state of first image is left active
600 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as active - assuming 2nd to be inactive",
601 log.Fields{"device-id": oo.deviceID})
602 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
603 oo.onuSwImageIndications.inactiveEntityEntry.valid = true ////to indicate that at least something has been reported
604 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
605 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
606 } else { //first image inactive, this one active
607 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
608 oo.onuSwImageIndications.activeEntityEntry.valid = true
609 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
610 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
611 }
612 } else { //2nd image reported to be inactive
613 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
614 //conflict exists - both images inactive - regard it as ONU failure and assume first image to be active
615 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as inactive, defining first to be active",
616 log.Fields{"device-id": oo.deviceID})
617 oo.onuSwImageIndications.activeEntityEntry.entityID = firstSwImageMeID
618 oo.onuSwImageIndications.activeEntityEntry.valid = true //to indicate that at least something has been reported
619 //copy active commit/version from the previously stored inactive position
620 oo.onuSwImageIndications.activeEntityEntry.version = oo.onuSwImageIndications.inactiveEntityEntry.version
621 oo.onuSwImageIndications.activeEntityEntry.isCommitted = oo.onuSwImageIndications.inactiveEntityEntry.isCommitted
622 }
623 //in any case we indicate (and possibly overwrite) the second image indications as inactive
624 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
625 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
626 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
627 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
628 }
629 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMacAddress)
630 return
631 }
632}
633
dbainbri4d3a0dc2020-12-02 00:33:42 +0000634func (oo *OnuDeviceEntry) handleOmciMessage(ctx context.Context, msg OmciMessage) {
635 logger.Debugw(ctx, "MibSync Msg", log.Fields{"OmciMessage received for device-id": oo.deviceID,
Andrea Campanella6515c582020-10-05 11:25:00 +0200636 "msgType": msg.OmciMsg.MessageType, "msg": msg})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000637 //further analysis could be done here based on msg.OmciMsg.Payload, e.g. verification of error code ...
638 switch msg.OmciMsg.MessageType {
639 case omci.MibResetResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000640 oo.handleOmciMibResetResponseMessage(ctx, msg)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000641
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000642 case omci.MibUploadResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000643 oo.handleOmciMibUploadResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530644
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000645 case omci.MibUploadNextResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000646 oo.handleOmciMibUploadNextResponseMessage(ctx, msg)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000647
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000648 case omci.GetResponseType:
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000649 //TODO: error handling
dbainbri4d3a0dc2020-12-02 00:33:42 +0000650 _ = oo.handleOmciGetResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530651
Andrea Campanella6515c582020-10-05 11:25:00 +0200652 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000653 logger.Warnw(ctx, "Unknown Message Type", log.Fields{"msgType": msg.OmciMsg.MessageType})
Andrea Campanella6515c582020-10-05 11:25:00 +0200654
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000655 }
656}
657
dbainbri4d3a0dc2020-12-02 00:33:42 +0000658func (oo *OnuDeviceEntry) handleOmciGetResponseErrors(ctx context.Context, msgObj *omci.GetResponse) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000659 var err error = nil
dbainbri4d3a0dc2020-12-02 00:33:42 +0000660 logger.Debugf(ctx, "MibSync FSM - erroneous result in GetResponse Data: %s", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, msgObj.Result)
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000661 // Up to now the following erroneous results have been seen for different ONU-types to indicate an unsupported ME
662 if msgObj.Result == me.UnknownInstance || msgObj.Result == me.UnknownEntity || msgObj.Result == me.ProcessingError || msgObj.Result == me.NotSupported {
mpagenko01499812021-03-25 10:37:12 +0000663 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
664 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
665 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000666 switch meInstance {
667 case "IpHostConfigData":
dbainbri4d3a0dc2020-12-02 00:33:42 +0000668 logger.Debugw(ctx, "MibSync FSM - erroneous result for IpHostConfigData received - ONU doesn't support ME - fill macAddress with zeros",
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000669 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000670 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000671 // trigger retrieval of mib template
672 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
673 return nil
674 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000675 logger.Warnf(ctx, "MibSync FSM - erroneous result for %s received - no exceptional treatment defined", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, meInstance)
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000676 err = fmt.Errorf("erroneous result for %s received - no exceptional treatment defined: %s", meInstance, oo.deviceID)
677 }
678 }
679 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000680 logger.Errorf(ctx, "MibSync FSM - erroneous result in GetResponse Data: %s", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, msgObj.Result)
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000681 err = fmt.Errorf("erroneous result in GetResponse Data: %s - %s", msgObj.Result, oo.deviceID)
682 }
683 return err
684}
685
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000686func (oo *OnuDeviceEntry) isNewOnu() bool {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000687 return oo.sOnuPersistentData.PersMibLastDbSync == 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000688}
689
Himani Chawla6d2ae152020-09-02 13:11:20 +0530690func isSupportedClassID(meClassID me.ClassID) bool {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000691 for _, v := range supportedClassIds {
Himani Chawla4d908332020-08-31 12:30:20 +0530692 if v == meClassID {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000693 return true
694 }
695 }
696 return false
697}
698
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000699func trimStringFromInterface(input interface{}) string {
700 ifBytes, _ := me.InterfaceToOctets(input)
701 return fmt.Sprintf("%s", bytes.Trim(ifBytes, "\x00"))
702}
703
dbainbri4d3a0dc2020-12-02 00:33:42 +0000704func (oo *OnuDeviceEntry) mibDbVolatileDict(ctx context.Context) error {
705 logger.Debug(ctx, "MibVolatileDict- running from default Entry code")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000706 return errors.New("not_implemented")
707}
708
Himani Chawla6d2ae152020-09-02 13:11:20 +0530709// createAndPersistMibTemplate method creates a mib template for the device id when operator enables the ONU device for the first time.
divyadesaibbed37c2020-08-28 13:35:20 +0530710// We are creating a placeholder for "SerialNumber" for ME Class ID 6 and 256 and "MacAddress" for ME Class ID 134 in the template
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000711// and then storing the template into etcd "service/voltha/omci_mibs/go_templates/verdor_id/equipment_id/software_version" path.
dbainbri4d3a0dc2020-12-02 00:33:42 +0000712func (oo *OnuDeviceEntry) createAndPersistMibTemplate(ctx context.Context) error {
713 logger.Debugw(ctx, "MibSync - MibTemplate - path name", log.Fields{"path": oo.mibTemplatePath,
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000714 "device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530715
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000716 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
717 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
718 if mibTemplateIsGenerated {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000719 logger.Debugw(ctx, "MibSync - MibTemplate - another thread has already started to generate it - skip",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000720 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
721 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
722 return nil
723 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000724 logger.Debugw(ctx, "MibSync - MibTemplate - previous generation attempt seems to be failed - try again",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000725 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
726 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000727 logger.Debugw(ctx, "MibSync - MibTemplate - first ONU-instance of this kind - start generation",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000728 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
729 }
730 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = true
731 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
732
733 currentTime := time.Now()
divyadesaibbed37c2020-08-28 13:35:20 +0530734 templateMap := make(map[string]interface{})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000735 templateMap["TemplateName"] = oo.mibTemplatePath
divyadesaibbed37c2020-08-28 13:35:20 +0530736 templateMap["TemplateCreated"] = currentTime.Format("2006-01-02 15:04:05.000000")
737
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000738 firstLevelMap := oo.pOnuDB.meDb
divyadesaibbed37c2020-08-28 13:35:20 +0530739 for firstLevelKey, firstLevelValue := range firstLevelMap {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000740 logger.Debugw(ctx, "MibSync - MibTemplate - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
Himani Chawla26e555c2020-08-31 12:30:20 +0530741 classID := strconv.Itoa(int(firstLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530742
743 secondLevelMap := make(map[string]interface{})
744 for secondLevelKey, secondLevelValue := range firstLevelValue {
745 thirdLevelMap := make(map[string]interface{})
Himani Chawla26e555c2020-08-31 12:30:20 +0530746 entityID := strconv.Itoa(int(secondLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530747 thirdLevelMap["Attributes"] = secondLevelValue
Himani Chawla26e555c2020-08-31 12:30:20 +0530748 thirdLevelMap["InstanceId"] = entityID
749 secondLevelMap[entityID] = thirdLevelMap
750 if classID == "6" || classID == "256" {
divyadesaibbed37c2020-08-28 13:35:20 +0530751 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
752 delete(forthLevelMap, "SerialNumber")
753 forthLevelMap["SerialNumber"] = "%SERIAL_NUMBER%"
754
755 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530756 if classID == "134" {
divyadesaibbed37c2020-08-28 13:35:20 +0530757 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
758 delete(forthLevelMap, "MacAddress")
759 forthLevelMap["MacAddress"] = "%MAC_ADDRESS%"
760 }
761 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530762 secondLevelMap["ClassId"] = classID
763 templateMap[classID] = secondLevelMap
divyadesaibbed37c2020-08-28 13:35:20 +0530764 }
765 mibTemplate, err := json.Marshal(&templateMap)
766 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000767 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to marshal mibTemplate", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000768 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
769 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
770 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530771 return err
772 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000773 err = oo.mibTemplateKVStore.Put(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath, string(mibTemplate))
divyadesaibbed37c2020-08-28 13:35:20 +0530774 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000775 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to store template in etcd", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000776 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
777 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
778 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530779 return err
780 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000781 logger.Debugw(ctx, "MibSync - MibTemplate - Stored the template to etcd", log.Fields{"device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530782 return nil
783}
784
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000785func (oo *OnuDeviceEntry) requestMdsValue(ctx context.Context) {
786 logger.Debugw(ctx, "Request MDS value", log.Fields{"device-id": oo.deviceID})
787 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
788 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
Girish Gowdra0b235842021-03-09 13:06:46 -0800789 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000790 //accept also nil as (error) return value for writing to LastTx
791 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000792 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
793 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
794 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000795}
796
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000797func (oo *OnuDeviceEntry) checkMdsValue(ctx context.Context, mibDataSyncOnu uint8) {
798 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu-Data - MibDataSync", log.Fields{"device-id": oo.deviceID,
799 "mibDataSyncOnu": mibDataSyncOnu, "PersMibDataSyncAdpt": oo.sOnuPersistentData.PersMibDataSyncAdpt})
800
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000801 mdsValuesAreEqual := oo.sOnuPersistentData.PersMibDataSyncAdpt == mibDataSyncOnu
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000802 if oo.pMibUploadFsm.pFsm.Is(ulStAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000803 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000804 logger.Debugw(ctx, "MibSync FSM - mib audit - MDS check ok", log.Fields{"device-id": oo.deviceID})
805 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
806 } else {
807 logger.Warnw(ctx, "MibSync FSM - mib audit - MDS check failed for the first time!", log.Fields{"device-id": oo.deviceID})
808 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
809 }
810 } else if oo.pMibUploadFsm.pFsm.Is(ulStReAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000811 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000812 logger.Debugw(ctx, "MibSync FSM - mib reaudit - MDS check ok", log.Fields{"device-id": oo.deviceID})
813 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
814 } else {
815 logger.Errorw(ctx, "MibSync FSM - mib audit - MDS check failed for the second time!", log.Fields{"device-id": oo.deviceID})
816 //TODO: send new event notification "MDS counter mismatch" to the core
817 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
818 }
819 } else if oo.pMibUploadFsm.pFsm.Is(ulStExaminingMds) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000820 if mdsValuesAreEqual && mibDataSyncOnu != 0 {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000821 logger.Debugw(ctx, "MibSync FSM - MDS examination ok", log.Fields{"device-id": oo.deviceID})
822 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
823 } else {
824 logger.Debugw(ctx, "MibSync FSM - MDS examination failed - new provisioning", log.Fields{"device-id": oo.deviceID})
825 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
826 }
827 } else {
828 logger.Warnw(ctx, "wrong state for MDS evaluation!", log.Fields{"state": oo.pMibUploadFsm.pFsm.Current(), "device-id": oo.deviceID})
829 }
830}
mpagenko15ff4a52021-03-02 10:09:20 +0000831
832//GetActiveImageMeID returns the Omci MeId of the active ONU image together with error code for validity
833func (oo *OnuDeviceEntry) GetActiveImageMeID(ctx context.Context) (uint16, error) {
834 if oo.onuSwImageIndications.activeEntityEntry.valid {
835 return oo.onuSwImageIndications.activeEntityEntry.entityID, nil
836 }
837 return 0xFFFF, fmt.Errorf("no valid active image found: %s", oo.deviceID)
838}
839
840//GetInactiveImageMeID returns the Omci MeId of the inactive ONU image together with error code for validity
841func (oo *OnuDeviceEntry) GetInactiveImageMeID(ctx context.Context) (uint16, error) {
842 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
843 return oo.onuSwImageIndications.inactiveEntityEntry.entityID, nil
844 }
845 return 0xFFFF, fmt.Errorf("no valid inactive image found: %s", oo.deviceID)
846}
847
848//IsImageToBeCommitted returns true if the active image is still uncommitted
849func (oo *OnuDeviceEntry) IsImageToBeCommitted(ctx context.Context, aImageID uint16) bool {
850 if oo.onuSwImageIndications.activeEntityEntry.valid {
851 if oo.onuSwImageIndications.activeEntityEntry.entityID == aImageID {
852 if oo.onuSwImageIndications.activeEntityEntry.isCommitted == swIsUncommitted {
853 return true
854 }
855 }
856 }
857 return false //all other case are treated as 'nothing to commit
858}
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000859func (oo *OnuDeviceEntry) getMibFromTemplate(ctx context.Context) bool {
860
861 oo.mibTemplatePath = oo.buildMibTemplatePath()
862 logger.Debugw(ctx, "MibSync FSM - get Mib from template", log.Fields{"path": fmt.Sprintf("%s/%s", cBasePathMibTemplateKvStore, oo.mibTemplatePath)})
863
864 restoredFromMibTemplate := false
865 Value, err := oo.mibTemplateKVStore.Get(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath)
866 if err == nil {
867 if Value != nil {
868 logger.Debugf(ctx, "MibSync FSM - Mib template read: Key: %s, Value: %s %s", Value.Key, Value.Value)
869
870 // swap out tokens with specific data
871 mibTmpString, _ := kvstore.ToString(Value.Value)
872 mibTmpString2 := strings.Replace(mibTmpString, "%SERIAL_NUMBER%", oo.sOnuPersistentData.PersSerialNumber, -1)
873 mibTmpString = strings.Replace(mibTmpString2, "%MAC_ADDRESS%", oo.sOnuPersistentData.PersMacAddress, -1)
874 mibTmpBytes := []byte(mibTmpString)
875 logger.Debugf(ctx, "MibSync FSM - Mib template tokens swapped out: %s", mibTmpBytes)
876
877 var firstLevelMap map[string]interface{}
878 if err = json.Unmarshal(mibTmpBytes, &firstLevelMap); err != nil {
879 logger.Errorw(ctx, "MibSync FSM - Failed to unmarshal template", log.Fields{"error": err, "device-id": oo.deviceID})
880 } else {
881 for firstLevelKey, firstLevelValue := range firstLevelMap {
882 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
883 if uint16ValidNumber, err := strconv.ParseUint(firstLevelKey, 10, 16); err == nil {
884 meClassID := me.ClassID(uint16ValidNumber)
885 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a number in uint16-range", log.Fields{"uint16ValidNumber": uint16ValidNumber})
886 if isSupportedClassID(meClassID) {
887 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a supported classID", log.Fields{"meClassID": meClassID})
888 secondLevelMap := firstLevelValue.(map[string]interface{})
889 for secondLevelKey, secondLevelValue := range secondLevelMap {
890 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey", log.Fields{"secondLevelKey": secondLevelKey})
891 if uint16ValidNumber, err := strconv.ParseUint(secondLevelKey, 10, 16); err == nil {
892 meEntityID := uint16(uint16ValidNumber)
893 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey is a number and a valid EntityId", log.Fields{"meEntityID": meEntityID})
894 thirdLevelMap := secondLevelValue.(map[string]interface{})
895 for thirdLevelKey, thirdLevelValue := range thirdLevelMap {
896 if thirdLevelKey == "Attributes" {
897 //logger.Debugw(ctx, "MibSync FSM - thirdLevelKey refers to attributes", log.Fields{"thirdLevelKey": thirdLevelKey})
898 attributesMap := thirdLevelValue.(map[string]interface{})
899 //logger.Debugw(ctx, "MibSync FSM - attributesMap", log.Fields{"attributesMap": attributesMap})
900 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, attributesMap)
901 restoredFromMibTemplate = true
902 }
903 }
904 }
905 }
906 }
907 }
908 }
909 }
910 } else {
911 logger.Debugw(ctx, "No MIB template found", log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
912 }
913 } else {
914 logger.Errorf(ctx, "Get from kvstore operation failed for path",
915 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
916 }
917 return restoredFromMibTemplate
918}
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +0000919
920//CancelProcessing terminates potentially running reconciling processes and stops the FSM
921func (oo *OnuDeviceEntry) CancelProcessing(ctx context.Context) {
922
923 if oo.baseDeviceHandler.isReconcilingFlows() {
924 oo.baseDeviceHandler.chReconcilingFlowsFinished <- false
925 }
926 if oo.baseDeviceHandler.isReconciling() {
927 oo.baseDeviceHandler.chReconcilingFinished <- false
928 }
929 //the MibSync FSM might be active all the ONU-active time,
930 // hence it must be stopped unconditionally
931 pMibUlFsm := oo.pMibUploadFsm.pFsm
932 if pMibUlFsm != nil {
933 _ = pMibUlFsm.Event(ulEvStop)
934 }
935}