blob: 8aabeb79bd7c278a55e13ce45a0f8a24618351a4 [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 Hildebrandt1b8f4ad2021-03-25 15:53:51 +0000247 // Stopping reconcilement has to be delayed as in multi-ONU/multi-flow environment
248 // the parallel processing to rebuild the adapter internal flow data could still be
249 // running here. It will take only a few milliseconds until the corresponding threads
250 // will be finished as no OMCI-config is done in this use case.
251 // TODO: The timer approach should be replaced by a more sophisticated solution using
252 // a real interaction between this routine and the threads configuring the flow data
253 // after imminent release VOLTHA v2.7
254 time.Sleep(100 * time.Millisecond)
255 oo.baseDeviceHandler.stopReconciling(ctx)
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000256 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
257 }()
258
259 } else {
260 logger.Debugw(ctx, "MibSync FSM",
261 log.Fields{"Getting MIB from template not successful": e.FSM.Current(), "device-id": oo.deviceID})
262 go func() {
263 //switch to reconciling with OMCI config
264 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
265 }()
266 }
267}
268
dbainbri4d3a0dc2020-12-02 00:33:42 +0000269func (oo *OnuDeviceEntry) enterAuditingState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000270 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 +0000271 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000272 oo.requestMdsValue(ctx)
273 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000274 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 +0000275 go func() {
276 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
277 }()
278 }
279}
280
281func (oo *OnuDeviceEntry) enterReAuditingState(ctx context.Context, e *fsm.Event) {
282 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 +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 re-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 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000291}
292
dbainbri4d3a0dc2020-12-02 00:33:42 +0000293func (oo *OnuDeviceEntry) enterOutOfSyncState(ctx context.Context, e *fsm.Event) {
294 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibReconcile processing in State": e.FSM.Current(), "device-id": oo.deviceID})
295 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000296}
297
dbainbri4d3a0dc2020-12-02 00:33:42 +0000298func (oo *OnuDeviceEntry) processMibSyncMessages(ctx context.Context) {
299 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 +0000300loop:
301 for {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000302 // case <-ctx.Done():
303 // logger.Info("MibSync Msg", log.Fields{"Message handling canceled via context for device-id": onuDeviceEntry.deviceID})
304 // break loop
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000305 message, ok := <-oo.pMibUploadFsm.commChan
Himani Chawla4d908332020-08-31 12:30:20 +0530306 if !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000307 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 +0530308 break loop
309 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000310 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Received message on ONU MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000311
Himani Chawla4d908332020-08-31 12:30:20 +0530312 switch message.Type {
313 case TestMsg:
314 msg, _ := message.Data.(TestMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000315 oo.handleTestMsg(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530316 case OMCI:
317 msg, _ := message.Data.(OmciMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000318 oo.handleOmciMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530319 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000320 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 +0000321 }
322 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000323 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000324 // TODO: only this action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000325 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000326}
327
dbainbri4d3a0dc2020-12-02 00:33:42 +0000328func (oo *OnuDeviceEntry) handleTestMsg(ctx context.Context, msg TestMessage) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000329
dbainbri4d3a0dc2020-12-02 00:33:42 +0000330 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 +0000331
332 switch msg.TestMessageVal {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000333 case LoadMibTemplateFailed:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000334 _ = oo.pMibUploadFsm.pFsm.Event(ulEvUploadMib)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000335 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000336 case LoadMibTemplateOk:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000337 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000338 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000339 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000340 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 +0000341 }
342}
343
dbainbri4d3a0dc2020-12-02 00:33:42 +0000344func (oo *OnuDeviceEntry) handleOmciMibResetResponseMessage(ctx context.Context, msg OmciMessage) {
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000345 if oo.pMibUploadFsm.pFsm.Is(ulStResettingMib) {
Himani Chawla4d908332020-08-31 12:30:20 +0530346 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibResetResponse)
347 if msgLayer != nil {
348 msgObj, msgOk := msgLayer.(*omci.MibResetResponse)
349 if msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000350 logger.Debugw(ctx, "MibResetResponse Data", log.Fields{"data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530351 if msgObj.Result == me.Success {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000352 oo.sOnuPersistentData.PersMibDataSyncAdpt = 0
Himani Chawla4d908332020-08-31 12:30:20 +0530353 // trigger retrieval of VendorId and SerialNumber
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000354 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetVendorAndSerial)
Himani Chawla4d908332020-08-31 12:30:20 +0530355 return
356 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000357 logger.Errorw(ctx, "Omci MibResetResponse Error", log.Fields{"device-id": oo.deviceID, "Error": msgObj.Result})
Himani Chawla4d908332020-08-31 12:30:20 +0530358 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000359 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530360 }
361 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000362 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530363 }
364 } else {
mpagenko01499812021-03-25 10:37:12 +0000365 //in case the last request was MdsGetRequest this issue may appear if the ONU was online before and has received the MIB reset
366 // with Sequence number 0x8000 as last request before - so it may still respond to that
367 // then we may force the ONU to react on the MdsGetRequest with a new message that uses an increased Sequence number
368 if oo.lastTxParamStruct.lastTxMessageType == omci.GetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
369 logger.Debugw(ctx, "MibSync FSM - repeat MdsGetRequest (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
370 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
371 _ = oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
372 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
373 //TODO: needs extra handling of timeouts
374 oo.lastTxParamStruct.repeatCount = 1
375 return
376 }
377 logger.Errorw(ctx, "unexpected MibResetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
378 //perhaps some still lingering message from some prior activity, let's wait for the real response
379 return
Himani Chawla4d908332020-08-31 12:30:20 +0530380 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000381 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000382 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Himani Chawla4d908332020-08-31 12:30:20 +0530383}
384
dbainbri4d3a0dc2020-12-02 00:33:42 +0000385func (oo *OnuDeviceEntry) handleOmciMibUploadResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530386 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadResponse)
387 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000388 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530389 return
390 }
391 msgObj, msgOk := msgLayer.(*omci.MibUploadResponse)
392 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000393 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530394 return
395 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000396 logger.Debugw(ctx, "MibUploadResponse Data for:", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530397 /* to be verified / reworked !!! */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000398 oo.PDevOmciCC.uploadNoOfCmds = msgObj.NumberOfCommands
399 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800400 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000401 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
402 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
403 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530404 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000405 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 +0530406 //TODO right action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000407 _ = oo.pMibUploadFsm.pFsm.Event(ulEvTimeout)
Himani Chawla4d908332020-08-31 12:30:20 +0530408 }
409}
410
dbainbri4d3a0dc2020-12-02 00:33:42 +0000411func (oo *OnuDeviceEntry) handleOmciMibUploadNextResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530412 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadNextResponse)
Andrea Campanella6515c582020-10-05 11:25:00 +0200413
Holger Hildebrandte2439342020-12-03 16:06:54 +0000414 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000415 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000416 return
417 }
418 msgObj, msgOk := msgLayer.(*omci.MibUploadNextResponse)
419 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000420 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000421 return
422 }
423 meName := msgObj.ReportedME.GetName()
424 if meName == "UnknownItuG988ManagedEntity" || meName == "UnknownVendorSpecificManagedEntity" {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000425 logger.Debugw(ctx, "MibUploadNextResponse Data for unknown ME received - temporary workaround is to ignore it!",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000426 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj, "meName": meName})
427 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000428 logger.Debugw(ctx, "MibUploadNextResponse Data for:",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000429 log.Fields{"device-id": oo.deviceID, "meName": meName, "data-fields": msgObj})
Holger Hildebrandt8998b872020-10-05 13:48:39 +0000430 meClassID := msgObj.ReportedME.GetClassID()
431 meEntityID := msgObj.ReportedME.GetEntityID()
432 meAttributes := msgObj.ReportedME.GetAttributeValueMap()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000433 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, meAttributes)
Himani Chawla4d908332020-08-31 12:30:20 +0530434 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000435 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800436 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000437 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
438 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
439 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530440 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000441 oo.pOnuDB.logMeDb(ctx)
442 err := oo.createAndPersistMibTemplate(ctx)
Himani Chawla4d908332020-08-31 12:30:20 +0530443 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000444 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 +0530445 }
446
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000447 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
Himani Chawla4d908332020-08-31 12:30:20 +0530448 }
449}
450
dbainbri4d3a0dc2020-12-02 00:33:42 +0000451func (oo *OnuDeviceEntry) handleOmciGetResponseMessage(ctx context.Context, msg OmciMessage) error {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000452 var err error = nil
mpagenko01499812021-03-25 10:37:12 +0000453
454 if oo.lastTxParamStruct.lastTxMessageType != omci.GetRequestType ||
455 oo.lastTxParamStruct.pLastTxMeInstance == nil {
456 //in case the last request was MibReset this issue may appear if the ONU was online before and has received the MDS GetRequest
457 // with Sequence number 0x8000 as last request before - so it may still respond to that
458 // then we may force the ONU to react on the MIB reset with a new message that uses an increased Sequence number
459 if oo.lastTxParamStruct.lastTxMessageType == omci.MibResetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
460 logger.Debugw(ctx, "MibSync FSM - repeat mibReset (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
461 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
462 //TODO: needs extra handling of timeouts
463 oo.lastTxParamStruct.repeatCount = 1
464 return nil
465 }
466 logger.Warnw(ctx, "unexpected GetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
467 //perhaps some still lingering message from some prior activity, let's wait for the real response
468 return nil
469 }
Himani Chawla4d908332020-08-31 12:30:20 +0530470 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeGetResponse)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000471 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000472 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 +0000473 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
474 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 +0000475 }
476 msgObj, msgOk := msgLayer.(*omci.GetResponse)
477 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000478 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 +0000479 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
480 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 +0000481 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000482 logger.Debugw(ctx, "MibSync FSM - GetResponse Data", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000483 if msgObj.Result == me.Success {
mpagenko01499812021-03-25 10:37:12 +0000484 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
485 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000486 meAttributes := msgObj.Attributes
mpagenko01499812021-03-25 10:37:12 +0000487 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000488 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 +0000489 switch meInstance {
490 case "OnuG":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000491 oo.sOnuPersistentData.PersVendorID = trimStringFromInterface(meAttributes["VendorId"])
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000492 snBytes, _ := me.InterfaceToOctets(meAttributes["SerialNumber"])
493 if onugSerialNumberLen == len(snBytes) {
494 snVendorPart := fmt.Sprintf("%s", snBytes[:4])
495 snNumberPart := hex.EncodeToString(snBytes[4:])
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000496 oo.sOnuPersistentData.PersSerialNumber = snVendorPart + snNumberPart
dbainbri4d3a0dc2020-12-02 00:33:42 +0000497 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 +0000498 "onuDeviceEntry.vendorID": oo.sOnuPersistentData.PersVendorID, "onuDeviceEntry.serialNumber": oo.sOnuPersistentData.PersSerialNumber})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000499 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000500 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 +0000501 oo.sOnuPersistentData.PersSerialNumber = cEmptySerialNumberString
Himani Chawla4d908332020-08-31 12:30:20 +0530502 }
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000503 // trigger retrieval of EquipmentId
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000504 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetEquipmentID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000505 return nil
506 case "Onu2G":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000507 oo.sOnuPersistentData.PersEquipmentID = trimStringFromInterface(meAttributes["EquipmentId"])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000508 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu2-G - EquipmentId", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000509 "onuDeviceEntry.equipmentID": oo.sOnuPersistentData.PersEquipmentID})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000510 // trigger retrieval of 1st SW-image info
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000511 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetFirstSwVersion)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000512 return nil
513 case "SoftwareImage":
mpagenko15ff4a52021-03-02 10:09:20 +0000514 if entityID > secondSwImageMeID {
515 logger.Errorw(ctx, "mibSync FSM - Failed to GetResponse Data for SoftwareImage with expected EntityId",
516 log.Fields{"device-id": oo.deviceID, "entity-ID": entityID})
517 return fmt.Errorf("mibSync FSM - SwResponse Data with unexpected EntityId: %s %x",
518 oo.deviceID, entityID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000519 }
mpagenko15ff4a52021-03-02 10:09:20 +0000520 // need to use function for go lint complexity
521 oo.handleSwImageIndications(ctx, entityID, meAttributes)
522 return nil
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000523 case "IpHostConfigData":
524 macBytes, _ := me.InterfaceToOctets(meAttributes["MacAddress"])
525 if omciMacAddressLen == len(macBytes) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000526 oo.sOnuPersistentData.PersMacAddress = hex.EncodeToString(macBytes[:])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000527 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for IpHostConfigData - MacAddress", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000528 "macAddress": oo.sOnuPersistentData.PersMacAddress})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000529 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000530 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 +0000531 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000532 }
533 // trigger retrieval of mib template
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000534 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000535 return nil
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000536 case "OnuData":
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000537 oo.checkMdsValue(ctx, meAttributes["MibDataSync"].(uint8))
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000538 return nil
Himani Chawla4d908332020-08-31 12:30:20 +0530539 }
Matteo Scandolo20ca10c2021-01-21 14:35:45 -0800540 } else {
541 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 +0000542 }
Himani Chawla4d908332020-08-31 12:30:20 +0530543 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000544 if err = oo.handleOmciGetResponseErrors(ctx, msgObj); err == nil {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000545 return nil
546 }
Himani Chawla4d908332020-08-31 12:30:20 +0530547 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000548 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000549 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000550 return err
Himani Chawla4d908332020-08-31 12:30:20 +0530551}
552
mpagenko15ff4a52021-03-02 10:09:20 +0000553func (oo *OnuDeviceEntry) handleSwImageIndications(ctx context.Context, entityID uint16, meAttributes me.AttributeValueMap) {
554 imageIsCommitted := meAttributes["IsCommitted"].(uint8)
555 imageIsActive := meAttributes["IsActive"].(uint8)
556 imageVersion := trimStringFromInterface(meAttributes["Version"])
557 logger.Infow(ctx, "MibSync FSM - GetResponse Data for SoftwareImage",
558 log.Fields{"device-id": oo.deviceID, "entityID": entityID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000559 "version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted, "SNR": oo.sOnuPersistentData.PersSerialNumber})
mpagenko15ff4a52021-03-02 10:09:20 +0000560 if firstSwImageMeID == entityID {
561 //always accept the state of the first image (2nd image info should not yet be available)
562 if imageIsActive == swIsActive {
563 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
564 oo.onuSwImageIndications.activeEntityEntry.valid = true
565 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
566 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000567 //as the SW version indication may stem from some ONU Down/up event
568 //the complementary image state is to be invalidated
569 // (state of the second image is always expected afterwards or just invalid)
570 oo.onuSwImageIndications.inactiveEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000571 } else {
572 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
573 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
574 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
575 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000576 //as the SW version indication may stem form some ONU Down/up event
577 //the complementary image state is to be invalidated
578 // (state of the second image is always expected afterwards or just invalid)
579 oo.onuSwImageIndications.activeEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000580 }
581 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetSecondSwVersion)
582 return
583 } else if secondSwImageMeID == entityID {
584 //2nd image info might conflict with first image info, in which case we priorize first image info!
585 if imageIsActive == swIsActive { //2nd image reported to be active
586 if oo.onuSwImageIndications.activeEntityEntry.valid {
587 //conflict exists - state of first image is left active
588 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as active - assuming 2nd to be inactive",
589 log.Fields{"device-id": oo.deviceID})
590 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
591 oo.onuSwImageIndications.inactiveEntityEntry.valid = true ////to indicate that at least something has been reported
592 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
593 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
594 } else { //first image inactive, this one active
595 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
596 oo.onuSwImageIndications.activeEntityEntry.valid = true
597 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
598 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
599 }
600 } else { //2nd image reported to be inactive
601 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
602 //conflict exists - both images inactive - regard it as ONU failure and assume first image to be active
603 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as inactive, defining first to be active",
604 log.Fields{"device-id": oo.deviceID})
605 oo.onuSwImageIndications.activeEntityEntry.entityID = firstSwImageMeID
606 oo.onuSwImageIndications.activeEntityEntry.valid = true //to indicate that at least something has been reported
607 //copy active commit/version from the previously stored inactive position
608 oo.onuSwImageIndications.activeEntityEntry.version = oo.onuSwImageIndications.inactiveEntityEntry.version
609 oo.onuSwImageIndications.activeEntityEntry.isCommitted = oo.onuSwImageIndications.inactiveEntityEntry.isCommitted
610 }
611 //in any case we indicate (and possibly overwrite) the second image indications as inactive
612 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
613 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
614 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
615 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
616 }
617 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMacAddress)
618 return
619 }
620}
621
dbainbri4d3a0dc2020-12-02 00:33:42 +0000622func (oo *OnuDeviceEntry) handleOmciMessage(ctx context.Context, msg OmciMessage) {
623 logger.Debugw(ctx, "MibSync Msg", log.Fields{"OmciMessage received for device-id": oo.deviceID,
Andrea Campanella6515c582020-10-05 11:25:00 +0200624 "msgType": msg.OmciMsg.MessageType, "msg": msg})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000625 //further analysis could be done here based on msg.OmciMsg.Payload, e.g. verification of error code ...
626 switch msg.OmciMsg.MessageType {
627 case omci.MibResetResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000628 oo.handleOmciMibResetResponseMessage(ctx, msg)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000629
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000630 case omci.MibUploadResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000631 oo.handleOmciMibUploadResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530632
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000633 case omci.MibUploadNextResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000634 oo.handleOmciMibUploadNextResponseMessage(ctx, msg)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000635
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000636 case omci.GetResponseType:
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000637 //TODO: error handling
dbainbri4d3a0dc2020-12-02 00:33:42 +0000638 _ = oo.handleOmciGetResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530639
Andrea Campanella6515c582020-10-05 11:25:00 +0200640 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000641 logger.Warnw(ctx, "Unknown Message Type", log.Fields{"msgType": msg.OmciMsg.MessageType})
Andrea Campanella6515c582020-10-05 11:25:00 +0200642
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000643 }
644}
645
dbainbri4d3a0dc2020-12-02 00:33:42 +0000646func (oo *OnuDeviceEntry) handleOmciGetResponseErrors(ctx context.Context, msgObj *omci.GetResponse) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000647 var err error = nil
dbainbri4d3a0dc2020-12-02 00:33:42 +0000648 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 +0000649 // Up to now the following erroneous results have been seen for different ONU-types to indicate an unsupported ME
650 if msgObj.Result == me.UnknownInstance || msgObj.Result == me.UnknownEntity || msgObj.Result == me.ProcessingError || msgObj.Result == me.NotSupported {
mpagenko01499812021-03-25 10:37:12 +0000651 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
652 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
653 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000654 switch meInstance {
655 case "IpHostConfigData":
dbainbri4d3a0dc2020-12-02 00:33:42 +0000656 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 +0000657 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000658 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000659 // trigger retrieval of mib template
660 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
661 return nil
662 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000663 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 +0000664 err = fmt.Errorf("erroneous result for %s received - no exceptional treatment defined: %s", meInstance, oo.deviceID)
665 }
666 }
667 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000668 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 +0000669 err = fmt.Errorf("erroneous result in GetResponse Data: %s - %s", msgObj.Result, oo.deviceID)
670 }
671 return err
672}
673
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000674func (oo *OnuDeviceEntry) isNewOnu() bool {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000675 return oo.sOnuPersistentData.PersMibLastDbSync == 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000676}
677
Himani Chawla6d2ae152020-09-02 13:11:20 +0530678func isSupportedClassID(meClassID me.ClassID) bool {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000679 for _, v := range supportedClassIds {
Himani Chawla4d908332020-08-31 12:30:20 +0530680 if v == meClassID {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000681 return true
682 }
683 }
684 return false
685}
686
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000687func trimStringFromInterface(input interface{}) string {
688 ifBytes, _ := me.InterfaceToOctets(input)
689 return fmt.Sprintf("%s", bytes.Trim(ifBytes, "\x00"))
690}
691
dbainbri4d3a0dc2020-12-02 00:33:42 +0000692func (oo *OnuDeviceEntry) mibDbVolatileDict(ctx context.Context) error {
693 logger.Debug(ctx, "MibVolatileDict- running from default Entry code")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000694 return errors.New("not_implemented")
695}
696
Himani Chawla6d2ae152020-09-02 13:11:20 +0530697// 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 +0530698// 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 +0000699// 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 +0000700func (oo *OnuDeviceEntry) createAndPersistMibTemplate(ctx context.Context) error {
701 logger.Debugw(ctx, "MibSync - MibTemplate - path name", log.Fields{"path": oo.mibTemplatePath,
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000702 "device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530703
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000704 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
705 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
706 if mibTemplateIsGenerated {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000707 logger.Debugw(ctx, "MibSync - MibTemplate - another thread has already started to generate it - skip",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000708 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
709 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
710 return nil
711 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000712 logger.Debugw(ctx, "MibSync - MibTemplate - previous generation attempt seems to be failed - try again",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000713 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
714 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000715 logger.Debugw(ctx, "MibSync - MibTemplate - first ONU-instance of this kind - start generation",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000716 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
717 }
718 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = true
719 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
720
721 currentTime := time.Now()
divyadesaibbed37c2020-08-28 13:35:20 +0530722 templateMap := make(map[string]interface{})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000723 templateMap["TemplateName"] = oo.mibTemplatePath
divyadesaibbed37c2020-08-28 13:35:20 +0530724 templateMap["TemplateCreated"] = currentTime.Format("2006-01-02 15:04:05.000000")
725
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000726 firstLevelMap := oo.pOnuDB.meDb
divyadesaibbed37c2020-08-28 13:35:20 +0530727 for firstLevelKey, firstLevelValue := range firstLevelMap {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000728 logger.Debugw(ctx, "MibSync - MibTemplate - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
Himani Chawla26e555c2020-08-31 12:30:20 +0530729 classID := strconv.Itoa(int(firstLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530730
731 secondLevelMap := make(map[string]interface{})
732 for secondLevelKey, secondLevelValue := range firstLevelValue {
733 thirdLevelMap := make(map[string]interface{})
Himani Chawla26e555c2020-08-31 12:30:20 +0530734 entityID := strconv.Itoa(int(secondLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530735 thirdLevelMap["Attributes"] = secondLevelValue
Himani Chawla26e555c2020-08-31 12:30:20 +0530736 thirdLevelMap["InstanceId"] = entityID
737 secondLevelMap[entityID] = thirdLevelMap
738 if classID == "6" || classID == "256" {
divyadesaibbed37c2020-08-28 13:35:20 +0530739 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
740 delete(forthLevelMap, "SerialNumber")
741 forthLevelMap["SerialNumber"] = "%SERIAL_NUMBER%"
742
743 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530744 if classID == "134" {
divyadesaibbed37c2020-08-28 13:35:20 +0530745 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
746 delete(forthLevelMap, "MacAddress")
747 forthLevelMap["MacAddress"] = "%MAC_ADDRESS%"
748 }
749 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530750 secondLevelMap["ClassId"] = classID
751 templateMap[classID] = secondLevelMap
divyadesaibbed37c2020-08-28 13:35:20 +0530752 }
753 mibTemplate, err := json.Marshal(&templateMap)
754 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000755 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to marshal mibTemplate", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000756 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
757 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
758 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530759 return err
760 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000761 err = oo.mibTemplateKVStore.Put(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath, string(mibTemplate))
divyadesaibbed37c2020-08-28 13:35:20 +0530762 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000763 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 +0000764 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
765 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
766 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530767 return err
768 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000769 logger.Debugw(ctx, "MibSync - MibTemplate - Stored the template to etcd", log.Fields{"device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530770 return nil
771}
772
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000773func (oo *OnuDeviceEntry) requestMdsValue(ctx context.Context) {
774 logger.Debugw(ctx, "Request MDS value", log.Fields{"device-id": oo.deviceID})
775 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
776 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
Girish Gowdra0b235842021-03-09 13:06:46 -0800777 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000778 //accept also nil as (error) return value for writing to LastTx
779 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000780 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
781 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
782 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000783}
784
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000785func (oo *OnuDeviceEntry) checkMdsValue(ctx context.Context, mibDataSyncOnu uint8) {
786 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu-Data - MibDataSync", log.Fields{"device-id": oo.deviceID,
787 "mibDataSyncOnu": mibDataSyncOnu, "PersMibDataSyncAdpt": oo.sOnuPersistentData.PersMibDataSyncAdpt})
788
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000789 mdsValuesAreEqual := oo.sOnuPersistentData.PersMibDataSyncAdpt == mibDataSyncOnu
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000790 if oo.pMibUploadFsm.pFsm.Is(ulStAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000791 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000792 logger.Debugw(ctx, "MibSync FSM - mib audit - MDS check ok", log.Fields{"device-id": oo.deviceID})
793 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
794 } else {
795 logger.Warnw(ctx, "MibSync FSM - mib audit - MDS check failed for the first time!", log.Fields{"device-id": oo.deviceID})
796 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
797 }
798 } else if oo.pMibUploadFsm.pFsm.Is(ulStReAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000799 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000800 logger.Debugw(ctx, "MibSync FSM - mib reaudit - MDS check ok", log.Fields{"device-id": oo.deviceID})
801 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
802 } else {
803 logger.Errorw(ctx, "MibSync FSM - mib audit - MDS check failed for the second time!", log.Fields{"device-id": oo.deviceID})
804 //TODO: send new event notification "MDS counter mismatch" to the core
805 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
806 }
807 } else if oo.pMibUploadFsm.pFsm.Is(ulStExaminingMds) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000808 if mdsValuesAreEqual && mibDataSyncOnu != 0 {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000809 logger.Debugw(ctx, "MibSync FSM - MDS examination ok", log.Fields{"device-id": oo.deviceID})
810 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
811 } else {
812 logger.Debugw(ctx, "MibSync FSM - MDS examination failed - new provisioning", log.Fields{"device-id": oo.deviceID})
813 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
814 }
815 } else {
816 logger.Warnw(ctx, "wrong state for MDS evaluation!", log.Fields{"state": oo.pMibUploadFsm.pFsm.Current(), "device-id": oo.deviceID})
817 }
818}
mpagenko15ff4a52021-03-02 10:09:20 +0000819
820//GetActiveImageMeID returns the Omci MeId of the active ONU image together with error code for validity
821func (oo *OnuDeviceEntry) GetActiveImageMeID(ctx context.Context) (uint16, error) {
822 if oo.onuSwImageIndications.activeEntityEntry.valid {
823 return oo.onuSwImageIndications.activeEntityEntry.entityID, nil
824 }
825 return 0xFFFF, fmt.Errorf("no valid active image found: %s", oo.deviceID)
826}
827
828//GetInactiveImageMeID returns the Omci MeId of the inactive ONU image together with error code for validity
829func (oo *OnuDeviceEntry) GetInactiveImageMeID(ctx context.Context) (uint16, error) {
830 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
831 return oo.onuSwImageIndications.inactiveEntityEntry.entityID, nil
832 }
833 return 0xFFFF, fmt.Errorf("no valid inactive image found: %s", oo.deviceID)
834}
835
836//IsImageToBeCommitted returns true if the active image is still uncommitted
837func (oo *OnuDeviceEntry) IsImageToBeCommitted(ctx context.Context, aImageID uint16) bool {
838 if oo.onuSwImageIndications.activeEntityEntry.valid {
839 if oo.onuSwImageIndications.activeEntityEntry.entityID == aImageID {
840 if oo.onuSwImageIndications.activeEntityEntry.isCommitted == swIsUncommitted {
841 return true
842 }
843 }
844 }
845 return false //all other case are treated as 'nothing to commit
846}
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000847func (oo *OnuDeviceEntry) getMibFromTemplate(ctx context.Context) bool {
848
849 oo.mibTemplatePath = oo.buildMibTemplatePath()
850 logger.Debugw(ctx, "MibSync FSM - get Mib from template", log.Fields{"path": fmt.Sprintf("%s/%s", cBasePathMibTemplateKvStore, oo.mibTemplatePath)})
851
852 restoredFromMibTemplate := false
853 Value, err := oo.mibTemplateKVStore.Get(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath)
854 if err == nil {
855 if Value != nil {
856 logger.Debugf(ctx, "MibSync FSM - Mib template read: Key: %s, Value: %s %s", Value.Key, Value.Value)
857
858 // swap out tokens with specific data
859 mibTmpString, _ := kvstore.ToString(Value.Value)
860 mibTmpString2 := strings.Replace(mibTmpString, "%SERIAL_NUMBER%", oo.sOnuPersistentData.PersSerialNumber, -1)
861 mibTmpString = strings.Replace(mibTmpString2, "%MAC_ADDRESS%", oo.sOnuPersistentData.PersMacAddress, -1)
862 mibTmpBytes := []byte(mibTmpString)
863 logger.Debugf(ctx, "MibSync FSM - Mib template tokens swapped out: %s", mibTmpBytes)
864
865 var firstLevelMap map[string]interface{}
866 if err = json.Unmarshal(mibTmpBytes, &firstLevelMap); err != nil {
867 logger.Errorw(ctx, "MibSync FSM - Failed to unmarshal template", log.Fields{"error": err, "device-id": oo.deviceID})
868 } else {
869 for firstLevelKey, firstLevelValue := range firstLevelMap {
870 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
871 if uint16ValidNumber, err := strconv.ParseUint(firstLevelKey, 10, 16); err == nil {
872 meClassID := me.ClassID(uint16ValidNumber)
873 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a number in uint16-range", log.Fields{"uint16ValidNumber": uint16ValidNumber})
874 if isSupportedClassID(meClassID) {
875 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a supported classID", log.Fields{"meClassID": meClassID})
876 secondLevelMap := firstLevelValue.(map[string]interface{})
877 for secondLevelKey, secondLevelValue := range secondLevelMap {
878 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey", log.Fields{"secondLevelKey": secondLevelKey})
879 if uint16ValidNumber, err := strconv.ParseUint(secondLevelKey, 10, 16); err == nil {
880 meEntityID := uint16(uint16ValidNumber)
881 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey is a number and a valid EntityId", log.Fields{"meEntityID": meEntityID})
882 thirdLevelMap := secondLevelValue.(map[string]interface{})
883 for thirdLevelKey, thirdLevelValue := range thirdLevelMap {
884 if thirdLevelKey == "Attributes" {
885 //logger.Debugw(ctx, "MibSync FSM - thirdLevelKey refers to attributes", log.Fields{"thirdLevelKey": thirdLevelKey})
886 attributesMap := thirdLevelValue.(map[string]interface{})
887 //logger.Debugw(ctx, "MibSync FSM - attributesMap", log.Fields{"attributesMap": attributesMap})
888 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, attributesMap)
889 restoredFromMibTemplate = true
890 }
891 }
892 }
893 }
894 }
895 }
896 }
897 }
898 } else {
899 logger.Debugw(ctx, "No MIB template found", log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
900 }
901 } else {
902 logger.Errorf(ctx, "Get from kvstore operation failed for path",
903 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
904 }
905 return restoredFromMibTemplate
906}