blob: c4f8d62947b269efbaac48a883a33ee6f178a3a7 [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)
238 if oo.baseDeviceHandler.isReconciling() {
239 oo.baseDeviceHandler.reconcileDeviceFlowConfig(ctx)
240 }
241 // set admin state independent of reconciling state after tp/flow reconcilement
242 if oo.sOnuPersistentData.PersUniDisableDone {
243 oo.baseDeviceHandler.disableUniPortStateUpdate(ctx)
244 oo.baseDeviceHandler.setDeviceReason(drOmciAdminLock)
245 } else {
246 oo.baseDeviceHandler.enableUniPortStateUpdate(ctx)
247 }
248 oo.baseDeviceHandler.stopReconciling(ctx)
249 go func() {
250 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
251 }()
252
253 } else {
254 logger.Debugw(ctx, "MibSync FSM",
255 log.Fields{"Getting MIB from template not successful": e.FSM.Current(), "device-id": oo.deviceID})
256 go func() {
257 //switch to reconciling with OMCI config
258 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
259 }()
260 }
261}
262
dbainbri4d3a0dc2020-12-02 00:33:42 +0000263func (oo *OnuDeviceEntry) enterAuditingState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000264 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 +0000265 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000266 oo.requestMdsValue(ctx)
267 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000268 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 +0000269 go func() {
270 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
271 }()
272 }
273}
274
275func (oo *OnuDeviceEntry) enterReAuditingState(ctx context.Context, e *fsm.Event) {
276 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 +0000277 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000278 oo.requestMdsValue(ctx)
279 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000280 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 +0000281 go func() {
282 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
283 }()
284 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000285}
286
dbainbri4d3a0dc2020-12-02 00:33:42 +0000287func (oo *OnuDeviceEntry) enterOutOfSyncState(ctx context.Context, e *fsm.Event) {
288 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibReconcile processing in State": e.FSM.Current(), "device-id": oo.deviceID})
289 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000290}
291
dbainbri4d3a0dc2020-12-02 00:33:42 +0000292func (oo *OnuDeviceEntry) processMibSyncMessages(ctx context.Context) {
293 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 +0000294loop:
295 for {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000296 // case <-ctx.Done():
297 // logger.Info("MibSync Msg", log.Fields{"Message handling canceled via context for device-id": onuDeviceEntry.deviceID})
298 // break loop
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000299 message, ok := <-oo.pMibUploadFsm.commChan
Himani Chawla4d908332020-08-31 12:30:20 +0530300 if !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000301 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 +0530302 break loop
303 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000304 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Received message on ONU MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000305
Himani Chawla4d908332020-08-31 12:30:20 +0530306 switch message.Type {
307 case TestMsg:
308 msg, _ := message.Data.(TestMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000309 oo.handleTestMsg(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530310 case OMCI:
311 msg, _ := message.Data.(OmciMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000312 oo.handleOmciMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530313 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000314 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 +0000315 }
316 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000317 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000318 // TODO: only this action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000319 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000320}
321
dbainbri4d3a0dc2020-12-02 00:33:42 +0000322func (oo *OnuDeviceEntry) handleTestMsg(ctx context.Context, msg TestMessage) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000323
dbainbri4d3a0dc2020-12-02 00:33:42 +0000324 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 +0000325
326 switch msg.TestMessageVal {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000327 case LoadMibTemplateFailed:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000328 _ = oo.pMibUploadFsm.pFsm.Event(ulEvUploadMib)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000329 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000330 case LoadMibTemplateOk:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000331 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000332 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000333 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000334 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 +0000335 }
336}
337
dbainbri4d3a0dc2020-12-02 00:33:42 +0000338func (oo *OnuDeviceEntry) handleOmciMibResetResponseMessage(ctx context.Context, msg OmciMessage) {
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000339 if oo.pMibUploadFsm.pFsm.Is(ulStResettingMib) {
Himani Chawla4d908332020-08-31 12:30:20 +0530340 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibResetResponse)
341 if msgLayer != nil {
342 msgObj, msgOk := msgLayer.(*omci.MibResetResponse)
343 if msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000344 logger.Debugw(ctx, "MibResetResponse Data", log.Fields{"data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530345 if msgObj.Result == me.Success {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000346 oo.sOnuPersistentData.PersMibDataSyncAdpt = 0
Himani Chawla4d908332020-08-31 12:30:20 +0530347 // trigger retrieval of VendorId and SerialNumber
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000348 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetVendorAndSerial)
Himani Chawla4d908332020-08-31 12:30:20 +0530349 return
350 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000351 logger.Errorw(ctx, "Omci MibResetResponse Error", log.Fields{"device-id": oo.deviceID, "Error": msgObj.Result})
Himani Chawla4d908332020-08-31 12:30:20 +0530352 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000353 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530354 }
355 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000356 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530357 }
358 } else {
mpagenko01499812021-03-25 10:37:12 +0000359 //in case the last request was MdsGetRequest this issue may appear if the ONU was online before and has received the MIB reset
360 // with Sequence number 0x8000 as last request before - so it may still respond to that
361 // then we may force the ONU to react on the MdsGetRequest with a new message that uses an increased Sequence number
362 if oo.lastTxParamStruct.lastTxMessageType == omci.GetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
363 logger.Debugw(ctx, "MibSync FSM - repeat MdsGetRequest (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
364 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
365 _ = oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
366 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
367 //TODO: needs extra handling of timeouts
368 oo.lastTxParamStruct.repeatCount = 1
369 return
370 }
371 logger.Errorw(ctx, "unexpected MibResetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
372 //perhaps some still lingering message from some prior activity, let's wait for the real response
373 return
Himani Chawla4d908332020-08-31 12:30:20 +0530374 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000375 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000376 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Himani Chawla4d908332020-08-31 12:30:20 +0530377}
378
dbainbri4d3a0dc2020-12-02 00:33:42 +0000379func (oo *OnuDeviceEntry) handleOmciMibUploadResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530380 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadResponse)
381 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000382 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530383 return
384 }
385 msgObj, msgOk := msgLayer.(*omci.MibUploadResponse)
386 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000387 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530388 return
389 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000390 logger.Debugw(ctx, "MibUploadResponse Data for:", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530391 /* to be verified / reworked !!! */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000392 oo.PDevOmciCC.uploadNoOfCmds = msgObj.NumberOfCommands
393 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800394 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000395 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
396 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
397 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530398 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000399 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 +0530400 //TODO right action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000401 _ = oo.pMibUploadFsm.pFsm.Event(ulEvTimeout)
Himani Chawla4d908332020-08-31 12:30:20 +0530402 }
403}
404
dbainbri4d3a0dc2020-12-02 00:33:42 +0000405func (oo *OnuDeviceEntry) handleOmciMibUploadNextResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530406 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadNextResponse)
Andrea Campanella6515c582020-10-05 11:25:00 +0200407
Holger Hildebrandte2439342020-12-03 16:06:54 +0000408 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000409 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000410 return
411 }
412 msgObj, msgOk := msgLayer.(*omci.MibUploadNextResponse)
413 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000414 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000415 return
416 }
417 meName := msgObj.ReportedME.GetName()
418 if meName == "UnknownItuG988ManagedEntity" || meName == "UnknownVendorSpecificManagedEntity" {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000419 logger.Debugw(ctx, "MibUploadNextResponse Data for unknown ME received - temporary workaround is to ignore it!",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000420 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj, "meName": meName})
421 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000422 logger.Debugw(ctx, "MibUploadNextResponse Data for:",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000423 log.Fields{"device-id": oo.deviceID, "meName": meName, "data-fields": msgObj})
Holger Hildebrandt8998b872020-10-05 13:48:39 +0000424 meClassID := msgObj.ReportedME.GetClassID()
425 meEntityID := msgObj.ReportedME.GetEntityID()
426 meAttributes := msgObj.ReportedME.GetAttributeValueMap()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000427 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, meAttributes)
Himani Chawla4d908332020-08-31 12:30:20 +0530428 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000429 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800430 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000431 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
432 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
433 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Himani Chawla4d908332020-08-31 12:30:20 +0530434 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000435 oo.pOnuDB.logMeDb(ctx)
436 err := oo.createAndPersistMibTemplate(ctx)
Himani Chawla4d908332020-08-31 12:30:20 +0530437 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000438 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 +0530439 }
440
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000441 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
Himani Chawla4d908332020-08-31 12:30:20 +0530442 }
443}
444
dbainbri4d3a0dc2020-12-02 00:33:42 +0000445func (oo *OnuDeviceEntry) handleOmciGetResponseMessage(ctx context.Context, msg OmciMessage) error {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000446 var err error = nil
mpagenko01499812021-03-25 10:37:12 +0000447
448 if oo.lastTxParamStruct.lastTxMessageType != omci.GetRequestType ||
449 oo.lastTxParamStruct.pLastTxMeInstance == nil {
450 //in case the last request was MibReset this issue may appear if the ONU was online before and has received the MDS GetRequest
451 // with Sequence number 0x8000 as last request before - so it may still respond to that
452 // then we may force the ONU to react on the MIB reset with a new message that uses an increased Sequence number
453 if oo.lastTxParamStruct.lastTxMessageType == omci.MibResetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
454 logger.Debugw(ctx, "MibSync FSM - repeat mibReset (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
455 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
456 //TODO: needs extra handling of timeouts
457 oo.lastTxParamStruct.repeatCount = 1
458 return nil
459 }
460 logger.Warnw(ctx, "unexpected GetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
461 //perhaps some still lingering message from some prior activity, let's wait for the real response
462 return nil
463 }
Himani Chawla4d908332020-08-31 12:30:20 +0530464 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeGetResponse)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000465 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000466 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 +0000467 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
468 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 +0000469 }
470 msgObj, msgOk := msgLayer.(*omci.GetResponse)
471 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000472 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 +0000473 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
474 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 +0000475 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000476 logger.Debugw(ctx, "MibSync FSM - GetResponse Data", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000477 if msgObj.Result == me.Success {
mpagenko01499812021-03-25 10:37:12 +0000478 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
479 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000480 meAttributes := msgObj.Attributes
mpagenko01499812021-03-25 10:37:12 +0000481 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000482 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 +0000483 switch meInstance {
484 case "OnuG":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000485 oo.sOnuPersistentData.PersVendorID = trimStringFromInterface(meAttributes["VendorId"])
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000486 snBytes, _ := me.InterfaceToOctets(meAttributes["SerialNumber"])
487 if onugSerialNumberLen == len(snBytes) {
488 snVendorPart := fmt.Sprintf("%s", snBytes[:4])
489 snNumberPart := hex.EncodeToString(snBytes[4:])
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000490 oo.sOnuPersistentData.PersSerialNumber = snVendorPart + snNumberPart
dbainbri4d3a0dc2020-12-02 00:33:42 +0000491 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 +0000492 "onuDeviceEntry.vendorID": oo.sOnuPersistentData.PersVendorID, "onuDeviceEntry.serialNumber": oo.sOnuPersistentData.PersSerialNumber})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000493 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000494 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 +0000495 oo.sOnuPersistentData.PersSerialNumber = cEmptySerialNumberString
Himani Chawla4d908332020-08-31 12:30:20 +0530496 }
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000497 // trigger retrieval of EquipmentId
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000498 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetEquipmentID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000499 return nil
500 case "Onu2G":
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000501 oo.sOnuPersistentData.PersEquipmentID = trimStringFromInterface(meAttributes["EquipmentId"])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000502 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu2-G - EquipmentId", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000503 "onuDeviceEntry.equipmentID": oo.sOnuPersistentData.PersEquipmentID})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000504 // trigger retrieval of 1st SW-image info
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000505 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetFirstSwVersion)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000506 return nil
507 case "SoftwareImage":
mpagenko15ff4a52021-03-02 10:09:20 +0000508 if entityID > secondSwImageMeID {
509 logger.Errorw(ctx, "mibSync FSM - Failed to GetResponse Data for SoftwareImage with expected EntityId",
510 log.Fields{"device-id": oo.deviceID, "entity-ID": entityID})
511 return fmt.Errorf("mibSync FSM - SwResponse Data with unexpected EntityId: %s %x",
512 oo.deviceID, entityID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000513 }
mpagenko15ff4a52021-03-02 10:09:20 +0000514 // need to use function for go lint complexity
515 oo.handleSwImageIndications(ctx, entityID, meAttributes)
516 return nil
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000517 case "IpHostConfigData":
518 macBytes, _ := me.InterfaceToOctets(meAttributes["MacAddress"])
519 if omciMacAddressLen == len(macBytes) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000520 oo.sOnuPersistentData.PersMacAddress = hex.EncodeToString(macBytes[:])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000521 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for IpHostConfigData - MacAddress", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000522 "macAddress": oo.sOnuPersistentData.PersMacAddress})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000523 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000524 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 +0000525 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000526 }
527 // trigger retrieval of mib template
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000528 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000529 return nil
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000530 case "OnuData":
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000531 oo.checkMdsValue(ctx, meAttributes["MibDataSync"].(uint8))
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000532 return nil
Himani Chawla4d908332020-08-31 12:30:20 +0530533 }
Matteo Scandolo20ca10c2021-01-21 14:35:45 -0800534 } else {
535 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 +0000536 }
Himani Chawla4d908332020-08-31 12:30:20 +0530537 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000538 if err = oo.handleOmciGetResponseErrors(ctx, msgObj); err == nil {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000539 return nil
540 }
Himani Chawla4d908332020-08-31 12:30:20 +0530541 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000542 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000543 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000544 return err
Himani Chawla4d908332020-08-31 12:30:20 +0530545}
546
mpagenko15ff4a52021-03-02 10:09:20 +0000547func (oo *OnuDeviceEntry) handleSwImageIndications(ctx context.Context, entityID uint16, meAttributes me.AttributeValueMap) {
548 imageIsCommitted := meAttributes["IsCommitted"].(uint8)
549 imageIsActive := meAttributes["IsActive"].(uint8)
550 imageVersion := trimStringFromInterface(meAttributes["Version"])
551 logger.Infow(ctx, "MibSync FSM - GetResponse Data for SoftwareImage",
552 log.Fields{"device-id": oo.deviceID, "entityID": entityID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000553 "version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted, "SNR": oo.sOnuPersistentData.PersSerialNumber})
mpagenko15ff4a52021-03-02 10:09:20 +0000554 if firstSwImageMeID == entityID {
555 //always accept the state of the first image (2nd image info should not yet be available)
556 if imageIsActive == swIsActive {
557 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
558 oo.onuSwImageIndications.activeEntityEntry.valid = true
559 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
560 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000561 //as the SW version indication may stem from some ONU Down/up event
562 //the complementary image state is to be invalidated
563 // (state of the second image is always expected afterwards or just invalid)
564 oo.onuSwImageIndications.inactiveEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000565 } else {
566 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
567 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
568 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
569 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000570 //as the SW version indication may stem form some ONU Down/up event
571 //the complementary image state is to be invalidated
572 // (state of the second image is always expected afterwards or just invalid)
573 oo.onuSwImageIndications.activeEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000574 }
575 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetSecondSwVersion)
576 return
577 } else if secondSwImageMeID == entityID {
578 //2nd image info might conflict with first image info, in which case we priorize first image info!
579 if imageIsActive == swIsActive { //2nd image reported to be active
580 if oo.onuSwImageIndications.activeEntityEntry.valid {
581 //conflict exists - state of first image is left active
582 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as active - assuming 2nd to be inactive",
583 log.Fields{"device-id": oo.deviceID})
584 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
585 oo.onuSwImageIndications.inactiveEntityEntry.valid = true ////to indicate that at least something has been reported
586 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
587 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
588 } else { //first image inactive, this one active
589 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
590 oo.onuSwImageIndications.activeEntityEntry.valid = true
591 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
592 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
593 }
594 } else { //2nd image reported to be inactive
595 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
596 //conflict exists - both images inactive - regard it as ONU failure and assume first image to be active
597 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as inactive, defining first to be active",
598 log.Fields{"device-id": oo.deviceID})
599 oo.onuSwImageIndications.activeEntityEntry.entityID = firstSwImageMeID
600 oo.onuSwImageIndications.activeEntityEntry.valid = true //to indicate that at least something has been reported
601 //copy active commit/version from the previously stored inactive position
602 oo.onuSwImageIndications.activeEntityEntry.version = oo.onuSwImageIndications.inactiveEntityEntry.version
603 oo.onuSwImageIndications.activeEntityEntry.isCommitted = oo.onuSwImageIndications.inactiveEntityEntry.isCommitted
604 }
605 //in any case we indicate (and possibly overwrite) the second image indications as inactive
606 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
607 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
608 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
609 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
610 }
611 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMacAddress)
612 return
613 }
614}
615
dbainbri4d3a0dc2020-12-02 00:33:42 +0000616func (oo *OnuDeviceEntry) handleOmciMessage(ctx context.Context, msg OmciMessage) {
617 logger.Debugw(ctx, "MibSync Msg", log.Fields{"OmciMessage received for device-id": oo.deviceID,
Andrea Campanella6515c582020-10-05 11:25:00 +0200618 "msgType": msg.OmciMsg.MessageType, "msg": msg})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000619 //further analysis could be done here based on msg.OmciMsg.Payload, e.g. verification of error code ...
620 switch msg.OmciMsg.MessageType {
621 case omci.MibResetResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000622 oo.handleOmciMibResetResponseMessage(ctx, msg)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000623
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000624 case omci.MibUploadResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000625 oo.handleOmciMibUploadResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530626
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000627 case omci.MibUploadNextResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000628 oo.handleOmciMibUploadNextResponseMessage(ctx, msg)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000629
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000630 case omci.GetResponseType:
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000631 //TODO: error handling
dbainbri4d3a0dc2020-12-02 00:33:42 +0000632 _ = oo.handleOmciGetResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530633
Andrea Campanella6515c582020-10-05 11:25:00 +0200634 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000635 logger.Warnw(ctx, "Unknown Message Type", log.Fields{"msgType": msg.OmciMsg.MessageType})
Andrea Campanella6515c582020-10-05 11:25:00 +0200636
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000637 }
638}
639
dbainbri4d3a0dc2020-12-02 00:33:42 +0000640func (oo *OnuDeviceEntry) handleOmciGetResponseErrors(ctx context.Context, msgObj *omci.GetResponse) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000641 var err error = nil
dbainbri4d3a0dc2020-12-02 00:33:42 +0000642 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 +0000643 // Up to now the following erroneous results have been seen for different ONU-types to indicate an unsupported ME
644 if msgObj.Result == me.UnknownInstance || msgObj.Result == me.UnknownEntity || msgObj.Result == me.ProcessingError || msgObj.Result == me.NotSupported {
mpagenko01499812021-03-25 10:37:12 +0000645 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
646 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
647 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000648 switch meInstance {
649 case "IpHostConfigData":
dbainbri4d3a0dc2020-12-02 00:33:42 +0000650 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 +0000651 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000652 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000653 // trigger retrieval of mib template
654 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
655 return nil
656 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000657 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 +0000658 err = fmt.Errorf("erroneous result for %s received - no exceptional treatment defined: %s", meInstance, oo.deviceID)
659 }
660 }
661 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000662 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 +0000663 err = fmt.Errorf("erroneous result in GetResponse Data: %s - %s", msgObj.Result, oo.deviceID)
664 }
665 return err
666}
667
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000668func (oo *OnuDeviceEntry) isNewOnu() bool {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000669 return oo.sOnuPersistentData.PersMibLastDbSync == 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000670}
671
Himani Chawla6d2ae152020-09-02 13:11:20 +0530672func isSupportedClassID(meClassID me.ClassID) bool {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000673 for _, v := range supportedClassIds {
Himani Chawla4d908332020-08-31 12:30:20 +0530674 if v == meClassID {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000675 return true
676 }
677 }
678 return false
679}
680
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000681func trimStringFromInterface(input interface{}) string {
682 ifBytes, _ := me.InterfaceToOctets(input)
683 return fmt.Sprintf("%s", bytes.Trim(ifBytes, "\x00"))
684}
685
dbainbri4d3a0dc2020-12-02 00:33:42 +0000686func (oo *OnuDeviceEntry) mibDbVolatileDict(ctx context.Context) error {
687 logger.Debug(ctx, "MibVolatileDict- running from default Entry code")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000688 return errors.New("not_implemented")
689}
690
Himani Chawla6d2ae152020-09-02 13:11:20 +0530691// 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 +0530692// 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 +0000693// 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 +0000694func (oo *OnuDeviceEntry) createAndPersistMibTemplate(ctx context.Context) error {
695 logger.Debugw(ctx, "MibSync - MibTemplate - path name", log.Fields{"path": oo.mibTemplatePath,
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000696 "device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530697
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000698 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
699 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
700 if mibTemplateIsGenerated {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000701 logger.Debugw(ctx, "MibSync - MibTemplate - another thread has already started to generate it - skip",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000702 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
703 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
704 return nil
705 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000706 logger.Debugw(ctx, "MibSync - MibTemplate - previous generation attempt seems to be failed - try again",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000707 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
708 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000709 logger.Debugw(ctx, "MibSync - MibTemplate - first ONU-instance of this kind - start generation",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000710 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
711 }
712 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = true
713 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
714
715 currentTime := time.Now()
divyadesaibbed37c2020-08-28 13:35:20 +0530716 templateMap := make(map[string]interface{})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000717 templateMap["TemplateName"] = oo.mibTemplatePath
divyadesaibbed37c2020-08-28 13:35:20 +0530718 templateMap["TemplateCreated"] = currentTime.Format("2006-01-02 15:04:05.000000")
719
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000720 firstLevelMap := oo.pOnuDB.meDb
divyadesaibbed37c2020-08-28 13:35:20 +0530721 for firstLevelKey, firstLevelValue := range firstLevelMap {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000722 logger.Debugw(ctx, "MibSync - MibTemplate - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
Himani Chawla26e555c2020-08-31 12:30:20 +0530723 classID := strconv.Itoa(int(firstLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530724
725 secondLevelMap := make(map[string]interface{})
726 for secondLevelKey, secondLevelValue := range firstLevelValue {
727 thirdLevelMap := make(map[string]interface{})
Himani Chawla26e555c2020-08-31 12:30:20 +0530728 entityID := strconv.Itoa(int(secondLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530729 thirdLevelMap["Attributes"] = secondLevelValue
Himani Chawla26e555c2020-08-31 12:30:20 +0530730 thirdLevelMap["InstanceId"] = entityID
731 secondLevelMap[entityID] = thirdLevelMap
732 if classID == "6" || classID == "256" {
divyadesaibbed37c2020-08-28 13:35:20 +0530733 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
734 delete(forthLevelMap, "SerialNumber")
735 forthLevelMap["SerialNumber"] = "%SERIAL_NUMBER%"
736
737 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530738 if classID == "134" {
divyadesaibbed37c2020-08-28 13:35:20 +0530739 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
740 delete(forthLevelMap, "MacAddress")
741 forthLevelMap["MacAddress"] = "%MAC_ADDRESS%"
742 }
743 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530744 secondLevelMap["ClassId"] = classID
745 templateMap[classID] = secondLevelMap
divyadesaibbed37c2020-08-28 13:35:20 +0530746 }
747 mibTemplate, err := json.Marshal(&templateMap)
748 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000749 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to marshal mibTemplate", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000750 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
751 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
752 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530753 return err
754 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000755 err = oo.mibTemplateKVStore.Put(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath, string(mibTemplate))
divyadesaibbed37c2020-08-28 13:35:20 +0530756 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000757 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 +0000758 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
759 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
760 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530761 return err
762 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000763 logger.Debugw(ctx, "MibSync - MibTemplate - Stored the template to etcd", log.Fields{"device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530764 return nil
765}
766
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000767func (oo *OnuDeviceEntry) requestMdsValue(ctx context.Context) {
768 logger.Debugw(ctx, "Request MDS value", log.Fields{"device-id": oo.deviceID})
769 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
770 meInstance := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
Girish Gowdra0b235842021-03-09 13:06:46 -0800771 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000772 //accept also nil as (error) return value for writing to LastTx
773 // - this avoids misinterpretation of new received OMCI messages
mpagenko01499812021-03-25 10:37:12 +0000774 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
775 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
776 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000777}
778
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000779func (oo *OnuDeviceEntry) checkMdsValue(ctx context.Context, mibDataSyncOnu uint8) {
780 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu-Data - MibDataSync", log.Fields{"device-id": oo.deviceID,
781 "mibDataSyncOnu": mibDataSyncOnu, "PersMibDataSyncAdpt": oo.sOnuPersistentData.PersMibDataSyncAdpt})
782
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000783 mdsValuesAreEqual := oo.sOnuPersistentData.PersMibDataSyncAdpt == mibDataSyncOnu
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000784 if oo.pMibUploadFsm.pFsm.Is(ulStAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000785 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000786 logger.Debugw(ctx, "MibSync FSM - mib audit - MDS check ok", log.Fields{"device-id": oo.deviceID})
787 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
788 } else {
789 logger.Warnw(ctx, "MibSync FSM - mib audit - MDS check failed for the first time!", log.Fields{"device-id": oo.deviceID})
790 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
791 }
792 } else if oo.pMibUploadFsm.pFsm.Is(ulStReAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000793 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000794 logger.Debugw(ctx, "MibSync FSM - mib reaudit - MDS check ok", log.Fields{"device-id": oo.deviceID})
795 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
796 } else {
797 logger.Errorw(ctx, "MibSync FSM - mib audit - MDS check failed for the second time!", log.Fields{"device-id": oo.deviceID})
798 //TODO: send new event notification "MDS counter mismatch" to the core
799 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
800 }
801 } else if oo.pMibUploadFsm.pFsm.Is(ulStExaminingMds) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000802 if mdsValuesAreEqual && mibDataSyncOnu != 0 {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000803 logger.Debugw(ctx, "MibSync FSM - MDS examination ok", log.Fields{"device-id": oo.deviceID})
804 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
805 } else {
806 logger.Debugw(ctx, "MibSync FSM - MDS examination failed - new provisioning", log.Fields{"device-id": oo.deviceID})
807 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
808 }
809 } else {
810 logger.Warnw(ctx, "wrong state for MDS evaluation!", log.Fields{"state": oo.pMibUploadFsm.pFsm.Current(), "device-id": oo.deviceID})
811 }
812}
mpagenko15ff4a52021-03-02 10:09:20 +0000813
814//GetActiveImageMeID returns the Omci MeId of the active ONU image together with error code for validity
815func (oo *OnuDeviceEntry) GetActiveImageMeID(ctx context.Context) (uint16, error) {
816 if oo.onuSwImageIndications.activeEntityEntry.valid {
817 return oo.onuSwImageIndications.activeEntityEntry.entityID, nil
818 }
819 return 0xFFFF, fmt.Errorf("no valid active image found: %s", oo.deviceID)
820}
821
822//GetInactiveImageMeID returns the Omci MeId of the inactive ONU image together with error code for validity
823func (oo *OnuDeviceEntry) GetInactiveImageMeID(ctx context.Context) (uint16, error) {
824 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
825 return oo.onuSwImageIndications.inactiveEntityEntry.entityID, nil
826 }
827 return 0xFFFF, fmt.Errorf("no valid inactive image found: %s", oo.deviceID)
828}
829
830//IsImageToBeCommitted returns true if the active image is still uncommitted
831func (oo *OnuDeviceEntry) IsImageToBeCommitted(ctx context.Context, aImageID uint16) bool {
832 if oo.onuSwImageIndications.activeEntityEntry.valid {
833 if oo.onuSwImageIndications.activeEntityEntry.entityID == aImageID {
834 if oo.onuSwImageIndications.activeEntityEntry.isCommitted == swIsUncommitted {
835 return true
836 }
837 }
838 }
839 return false //all other case are treated as 'nothing to commit
840}
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000841func (oo *OnuDeviceEntry) getMibFromTemplate(ctx context.Context) bool {
842
843 oo.mibTemplatePath = oo.buildMibTemplatePath()
844 logger.Debugw(ctx, "MibSync FSM - get Mib from template", log.Fields{"path": fmt.Sprintf("%s/%s", cBasePathMibTemplateKvStore, oo.mibTemplatePath)})
845
846 restoredFromMibTemplate := false
847 Value, err := oo.mibTemplateKVStore.Get(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath)
848 if err == nil {
849 if Value != nil {
850 logger.Debugf(ctx, "MibSync FSM - Mib template read: Key: %s, Value: %s %s", Value.Key, Value.Value)
851
852 // swap out tokens with specific data
853 mibTmpString, _ := kvstore.ToString(Value.Value)
854 mibTmpString2 := strings.Replace(mibTmpString, "%SERIAL_NUMBER%", oo.sOnuPersistentData.PersSerialNumber, -1)
855 mibTmpString = strings.Replace(mibTmpString2, "%MAC_ADDRESS%", oo.sOnuPersistentData.PersMacAddress, -1)
856 mibTmpBytes := []byte(mibTmpString)
857 logger.Debugf(ctx, "MibSync FSM - Mib template tokens swapped out: %s", mibTmpBytes)
858
859 var firstLevelMap map[string]interface{}
860 if err = json.Unmarshal(mibTmpBytes, &firstLevelMap); err != nil {
861 logger.Errorw(ctx, "MibSync FSM - Failed to unmarshal template", log.Fields{"error": err, "device-id": oo.deviceID})
862 } else {
863 for firstLevelKey, firstLevelValue := range firstLevelMap {
864 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
865 if uint16ValidNumber, err := strconv.ParseUint(firstLevelKey, 10, 16); err == nil {
866 meClassID := me.ClassID(uint16ValidNumber)
867 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a number in uint16-range", log.Fields{"uint16ValidNumber": uint16ValidNumber})
868 if isSupportedClassID(meClassID) {
869 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a supported classID", log.Fields{"meClassID": meClassID})
870 secondLevelMap := firstLevelValue.(map[string]interface{})
871 for secondLevelKey, secondLevelValue := range secondLevelMap {
872 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey", log.Fields{"secondLevelKey": secondLevelKey})
873 if uint16ValidNumber, err := strconv.ParseUint(secondLevelKey, 10, 16); err == nil {
874 meEntityID := uint16(uint16ValidNumber)
875 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey is a number and a valid EntityId", log.Fields{"meEntityID": meEntityID})
876 thirdLevelMap := secondLevelValue.(map[string]interface{})
877 for thirdLevelKey, thirdLevelValue := range thirdLevelMap {
878 if thirdLevelKey == "Attributes" {
879 //logger.Debugw(ctx, "MibSync FSM - thirdLevelKey refers to attributes", log.Fields{"thirdLevelKey": thirdLevelKey})
880 attributesMap := thirdLevelValue.(map[string]interface{})
881 //logger.Debugw(ctx, "MibSync FSM - attributesMap", log.Fields{"attributesMap": attributesMap})
882 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, attributesMap)
883 restoredFromMibTemplate = true
884 }
885 }
886 }
887 }
888 }
889 }
890 }
891 }
892 } else {
893 logger.Debugw(ctx, "No MIB template found", log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
894 }
895 } else {
896 logger.Errorf(ctx, "Get from kvstore operation failed for path",
897 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
898 }
899 return restoredFromMibTemplate
900}