blob: 4e96d6d7eb760ebac992ad888751cf7fac67ca1f [file] [log] [blame]
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +00001/*
2 * Copyright 2020-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//Package adaptercoreonu provides the utility for onu devices, flows and statistics
18package adaptercoreonu
19
20import (
21 "context"
Holger Hildebrandtc54939a2020-06-17 08:14:27 +000022 "encoding/hex"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000023 "encoding/json"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000024 "errors"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000025 "fmt"
26 "strconv"
mpagenko3af1f032020-06-10 08:53:41 +000027 "strings"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000028
29 "github.com/looplab/fsm"
30
31 //"sync"
divyadesaibbed37c2020-08-28 13:35:20 +053032 "time"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000033
Girish Gowdra50e56422021-06-01 16:46:04 -070034 //"github.com/opencord/voltha-lib-go/v5/pkg/kafka"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000035 "github.com/opencord/omci-lib-go"
36 me "github.com/opencord/omci-lib-go/generated"
Girish Gowdra50e56422021-06-01 16:46:04 -070037 "github.com/opencord/voltha-lib-go/v5/pkg/db/kvstore"
38 "github.com/opencord/voltha-lib-go/v5/pkg/log"
dbainbri4d3a0dc2020-12-02 00:33:42 +000039 //ic "github.com/opencord/voltha-protos/v4/go/inter_container"
40 //"github.com/opencord/voltha-protos/v4/go/openflow_13"
41 //"github.com/opencord/voltha-protos/v4/go/voltha"
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000042)
43
mpagenko01499812021-03-25 10:37:12 +000044type sLastTxMeParameter struct {
45 lastTxMessageType omci.MessageType
46 pLastTxMeInstance *me.ManagedEntity
47 repeatCount uint8
48}
49
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000050var supportedClassIds = []me.ClassID{
51 me.CardholderClassID, // 5
52 me.CircuitPackClassID, // 6
53 me.SoftwareImageClassID, // 7
54 me.PhysicalPathTerminationPointEthernetUniClassID, // 11
55 me.OltGClassID, // 131
56 me.OnuPowerSheddingClassID, // 133
57 me.IpHostConfigDataClassID, // 134
58 me.OnuGClassID, // 256
59 me.Onu2GClassID, // 257
60 me.TContClassID, // 262
61 me.AniGClassID, // 263
62 me.UniGClassID, // 264
63 me.PriorityQueueClassID, // 277
64 me.TrafficSchedulerClassID, // 278
65 me.VirtualEthernetInterfacePointClassID, // 329
66 me.EnhancedSecurityControlClassID, // 332
67 me.OnuDynamicPowerManagementControlClassID, // 336
68 // 347 // definitions for ME "IPv6 host config data" are currently missing in omci-lib-go!
69}
70
71var fsmMsg TestMessageType
72
dbainbri4d3a0dc2020-12-02 00:33:42 +000073func (oo *OnuDeviceEntry) enterStartingState(ctx context.Context, e *fsm.Event) {
74 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start processing MibSync-msgs in State": e.FSM.Current(), "device-id": oo.deviceID})
75 oo.pOnuDB = newOnuDeviceDB(log.WithSpanFromContext(context.TODO(), ctx), oo)
76 go oo.processMibSyncMessages(ctx)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000077}
78
dbainbri4d3a0dc2020-12-02 00:33:42 +000079func (oo *OnuDeviceEntry) enterResettingMibState(ctx context.Context, e *fsm.Event) {
80 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 +000081
Holger Hildebrandtbdc5f002021-04-19 14:46:21 +000082 if (!oo.isNewOnu() && !oo.baseDeviceHandler.isReconciling()) || //use case: re-auditing failed
83 oo.baseDeviceHandler.isSkipOnuConfigReconciling() { //use case: reconciling without omci-config failed
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})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +000088 oo.mutexLastTxParamStruct.Lock()
Girish Gowdra0b235842021-03-09 13:06:46 -080089 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000090 //TODO: needs to handle timeouts
mpagenko01499812021-03-25 10:37:12 +000091 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
92 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
93 oo.lastTxParamStruct.lastTxMessageType = omci.MibResetRequestType
94 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +000095 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +000096}
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000097
dbainbri4d3a0dc2020-12-02 00:33:42 +000098func (oo *OnuDeviceEntry) enterGettingVendorAndSerialState(ctx context.Context, e *fsm.Event) {
99 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 +0000100 requestedAttributes := me.AttributeValueMap{"VendorId": "", "SerialNumber": 0}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000101 oo.mutexLastTxParamStruct.Lock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300102 meInstance, err := 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 +0000103 //accept also nil as (error) return value for writing to LastTx
104 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300105 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000106 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300107 logger.Errorw(ctx, "ONU-G get failed, aborting MibSync FSM", log.Fields{"device-id": oo.deviceID})
108 pMibUlFsm := oo.pMibUploadFsm
109 if pMibUlFsm != nil {
110 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300111 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300112 }(pMibUlFsm)
113 }
114 return
115 }
mpagenko01499812021-03-25 10:37:12 +0000116 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
117 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000118 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000119}
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000120
dbainbri4d3a0dc2020-12-02 00:33:42 +0000121func (oo *OnuDeviceEntry) enterGettingEquipmentIDState(ctx context.Context, e *fsm.Event) {
122 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 +0000123 requestedAttributes := me.AttributeValueMap{"EquipmentId": ""}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000124 oo.mutexLastTxParamStruct.Lock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300125 meInstance, err := 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 +0000126 //accept also nil as (error) return value for writing to LastTx
127 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300128 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000129 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300130 logger.Errorw(ctx, "ONU2-G get failed, aborting MibSync FSM!", log.Fields{"device-id": oo.deviceID})
131 pMibUlFsm := oo.pMibUploadFsm
132 if pMibUlFsm != nil {
133 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300134 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300135 }(pMibUlFsm)
136 }
137 return
138 }
mpagenko01499812021-03-25 10:37:12 +0000139 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
140 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000141 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000142}
143
dbainbri4d3a0dc2020-12-02 00:33:42 +0000144func (oo *OnuDeviceEntry) enterGettingFirstSwVersionState(ctx context.Context, e *fsm.Event) {
145 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 +0000146 requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000147 oo.mutexLastTxParamStruct.Lock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300148 meInstance, err := 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 +0000149 //accept also nil as (error) return value for writing to LastTx
150 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300151 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000152 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300153 logger.Errorw(ctx, "SoftwareImage get failed, aborting MibSync FSM", log.Fields{"device-id": oo.deviceID})
154 pMibUlFsm := oo.pMibUploadFsm
155 if pMibUlFsm != nil {
156 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300157 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300158 }(pMibUlFsm)
159 }
160 return
161 }
mpagenko01499812021-03-25 10:37:12 +0000162 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
163 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000164 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000165}
166
dbainbri4d3a0dc2020-12-02 00:33:42 +0000167func (oo *OnuDeviceEntry) enterGettingSecondSwVersionState(ctx context.Context, e *fsm.Event) {
168 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 +0000169 requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000170 oo.mutexLastTxParamStruct.Lock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300171 meInstance, err := 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 +0000172 //accept also nil as (error) return value for writing to LastTx
173 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300174 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000175 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300176 logger.Errorw(ctx, "SoftwareImage get failed, aborting MibSync FSM", log.Fields{"device-id": oo.deviceID})
177 pMibUlFsm := oo.pMibUploadFsm
178 if pMibUlFsm != nil {
179 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300180 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300181 }(pMibUlFsm)
182 }
183 return
184 }
mpagenko01499812021-03-25 10:37:12 +0000185 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
186 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000187 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000188}
189
dbainbri4d3a0dc2020-12-02 00:33:42 +0000190func (oo *OnuDeviceEntry) enterGettingMacAddressState(ctx context.Context, e *fsm.Event) {
191 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 +0000192 requestedAttributes := me.AttributeValueMap{"MacAddress": ""}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000193 oo.mutexLastTxParamStruct.Lock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300194 meInstance, err := 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 +0000195 //accept also nil as (error) return value for writing to LastTx
196 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300197 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000198 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300199 logger.Errorw(ctx, "IpHostConfigData get failed, aborting MibSync FSM", log.Fields{"device-id": oo.deviceID})
200 pMibUlFsm := oo.pMibUploadFsm
201 if pMibUlFsm != nil {
202 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300203 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300204 }(pMibUlFsm)
205 }
206 return
207 }
mpagenko01499812021-03-25 10:37:12 +0000208 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
209 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000210 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000211}
212
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000213func (oo *OnuDeviceEntry) enterGettingMibTemplateState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000214
Holger Hildebrandt05011352021-06-15 09:40:24 +0000215 oo.mutexOnuSwImageIndications.RLock()
mpagenko15ff4a52021-03-02 10:09:20 +0000216 if oo.onuSwImageIndications.activeEntityEntry.valid {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000217 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000218 oo.sOnuPersistentData.PersActiveSwVersion = oo.onuSwImageIndications.activeEntityEntry.version
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000219 oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt05011352021-06-15 09:40:24 +0000220 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000221 } else {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000222 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000223 logger.Errorw(ctx, "get-mib-template: no active SW version found, working with empty SW version, which might be untrustworthy",
224 log.Fields{"device-id": oo.deviceID})
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000225 }
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000226 if oo.getMibFromTemplate(ctx) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000227 logger.Debug(ctx, "MibSync FSM - valid MEs stored from template")
228 oo.pOnuDB.logMeDb(ctx)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000229 fsmMsg = LoadMibTemplateOk
230 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000231 logger.Debug(ctx, "MibSync FSM - no valid MEs stored from template - perform MIB-upload!")
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000232 fsmMsg = LoadMibTemplateFailed
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000233
Holger Hildebrandt441a0172020-12-10 13:57:08 +0000234 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
235 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
236 if mibTemplateIsGenerated {
237 logger.Debugw(ctx,
238 "MibSync FSM - template was successfully generated before, but doesn't exist or isn't usable anymore - reset flag in map",
239 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
240 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
241 }
242 }
243 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
244 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000245 mibSyncMsg := Message{
246 Type: TestMsg,
247 Data: TestMessage{
248 TestMessageVal: fsmMsg,
249 },
250 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000251 oo.pMibUploadFsm.commChan <- mibSyncMsg
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000252}
253
dbainbri4d3a0dc2020-12-02 00:33:42 +0000254func (oo *OnuDeviceEntry) enterUploadingState(ctx context.Context, e *fsm.Event) {
255 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 -0800256 _ = oo.PDevOmciCC.sendMibUpload(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000257 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
258 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000259 oo.mutexLastTxParamStruct.Lock()
mpagenko01499812021-03-25 10:37:12 +0000260 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadRequestType
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000261 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000262}
263
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000264func (oo *OnuDeviceEntry) enterUploadDoneState(ctx context.Context, e *fsm.Event) {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000265 logger.Debugw(ctx, "MibSync FSM", log.Fields{"send notification to core in State": e.FSM.Current(), "device-id": oo.deviceID})
266 oo.transferSystemEvent(ctx, MibDatabaseSync)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000267 go func() {
268 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
269 }()
270}
271
272func (oo *OnuDeviceEntry) enterInSyncState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000273 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000274 oo.sOnuPersistentData.PersMibLastDbSync = uint32(time.Now().Unix())
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000275 oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000276 if oo.mibAuditInterval > 0 {
277 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 +0000278 go func() {
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000279 time.Sleep(oo.mibAuditInterval)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000280 if err := oo.pMibUploadFsm.pFsm.Event(ulEvAuditMib); err != nil {
281 logger.Debugw(ctx, "MibSyncFsm: Can't go to state auditing", log.Fields{"device-id": oo.deviceID, "err": err})
282 }
283 }()
284 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000285}
286
dbainbri4d3a0dc2020-12-02 00:33:42 +0000287func (oo *OnuDeviceEntry) enterExaminingMdsState(ctx context.Context, e *fsm.Event) {
288 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 +0000289 oo.requestMdsValue(ctx)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000290}
291
dbainbri4d3a0dc2020-12-02 00:33:42 +0000292func (oo *OnuDeviceEntry) enterResynchronizingState(ctx context.Context, e *fsm.Event) {
293 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibResync processing in State": e.FSM.Current(), "device-id": oo.deviceID})
294 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000295 // TODOs:
296 // VOL-3805 - Provide exclusive OMCI channel for one FSM
297 // VOL-3785 - New event notifications and corresponding performance counters for openonu-adapter-go
298 // VOL-3792 - Support periodical audit via mib resync
299 // VOL-3793 - ONU-reconcile handling after adapter restart based on mib resync
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000300}
301
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000302func (oo *OnuDeviceEntry) enterExaminingMdsSuccessState(ctx context.Context, e *fsm.Event) {
303 logger.Debugw(ctx, "MibSync FSM",
304 log.Fields{"Start processing on examining MDS success in State": e.FSM.Current(), "device-id": oo.deviceID})
305
306 if oo.getMibFromTemplate(ctx) {
307 oo.baseDeviceHandler.startReconciling(ctx, true)
308 oo.baseDeviceHandler.addAllUniPorts(ctx)
309 oo.baseDeviceHandler.setDeviceReason(drInitialMibDownloaded)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000310 oo.baseDeviceHandler.setReadyForOmciConfig(true)
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000311
Holger Hildebrandtced74e72021-06-10 14:55:53 +0000312 if !oo.baseDeviceHandler.getCollectorIsRunning() {
313 // Start PM collector routine
314 go oo.baseDeviceHandler.startCollector(ctx)
315 }
316 if !oo.baseDeviceHandler.getAlarmManagerIsRunning(ctx) {
317 go oo.baseDeviceHandler.startAlarmManager(ctx)
318 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000319 oo.mutexPersOnuConfig.RLock()
Holger Hildebrandtbdc5f002021-04-19 14:46:21 +0000320 if oo.sOnuPersistentData.PersUniDisableDone {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000321 oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandtbdc5f002021-04-19 14:46:21 +0000322 oo.baseDeviceHandler.disableUniPortStateUpdate(ctx)
323 oo.baseDeviceHandler.setDeviceReason(drOmciAdminLock)
324 } else {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000325 oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandtbdc5f002021-04-19 14:46:21 +0000326 oo.baseDeviceHandler.enableUniPortStateUpdate(ctx)
327 }
Holger Hildebrandt779e8d62022-02-08 15:35:01 +0000328
329 // no need to reconcile additional data for MibDownloadFsm, LockStateFsm, or UnlockStateFsm
330 if oo.baseDeviceHandler.reconcileDeviceTechProf(ctx) {
331
332 // start go routine with select() on reconciling flow channel before
333 // starting flow reconciling process to prevent loss of any signal
334 syncChannel := make(chan struct{})
335 go func(aSyncChannel chan struct{}) {
336 // In multi-ONU/multi-flow environment stopping reconcilement has to be delayed until
337 // we get a signal that the processing of the last step to rebuild the adapter internal
338 // flow data is finished.
339 expiry := oo.baseDeviceHandler.GetReconcileExpiryVlanConfigAbort()
340 oo.setReconcilingFlows(true)
341 aSyncChannel <- struct{}{}
342 select {
343 case success := <-oo.chReconcilingFlowsFinished:
344 if success {
345 logger.Debugw(ctx, "reconciling flows has been finished in time",
346 log.Fields{"device-id": oo.deviceID})
347 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
348
349 } else {
350 logger.Debugw(ctx, "wait for reconciling flows aborted",
351 log.Fields{"device-id": oo.deviceID})
352 }
353 case <-time.After(expiry):
354 logger.Errorw(ctx, "timeout waiting for reconciling flows to be finished!",
355 log.Fields{"device-id": oo.deviceID})
356 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
357 }
358 oo.setReconcilingFlows(false)
359 }(syncChannel)
360 // block further processing until the above Go routine has really started
361 // and is ready to receive values from chReconcilingFlowsFinished
362 <-syncChannel
363 oo.baseDeviceHandler.reconcileDeviceFlowConfig(ctx)
364 }
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000365 } else {
366 logger.Debugw(ctx, "MibSync FSM",
367 log.Fields{"Getting MIB from template not successful": e.FSM.Current(), "device-id": oo.deviceID})
368 go func() {
369 //switch to reconciling with OMCI config
370 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
371 }()
372 }
373}
374
dbainbri4d3a0dc2020-12-02 00:33:42 +0000375func (oo *OnuDeviceEntry) enterAuditingState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000376 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 +0000377 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000378 oo.requestMdsValue(ctx)
379 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000380 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 +0000381 go func() {
382 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
383 }()
384 }
385}
386
387func (oo *OnuDeviceEntry) enterReAuditingState(ctx context.Context, e *fsm.Event) {
388 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 +0000389 if oo.baseDeviceHandler.checkAuditStartCondition(ctx, cUploadFsm) {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000390 oo.requestMdsValue(ctx)
391 } else {
mpagenkof1fc3862021-02-16 10:09:52 +0000392 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 +0000393 go func() {
394 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
395 }()
396 }
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000397}
398
dbainbri4d3a0dc2020-12-02 00:33:42 +0000399func (oo *OnuDeviceEntry) enterOutOfSyncState(ctx context.Context, e *fsm.Event) {
400 logger.Debugw(ctx, "MibSync FSM", log.Fields{"Start MibReconcile processing in State": e.FSM.Current(), "device-id": oo.deviceID})
401 logger.Debug(ctx, "function not implemented yet")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000402}
403
dbainbri4d3a0dc2020-12-02 00:33:42 +0000404func (oo *OnuDeviceEntry) processMibSyncMessages(ctx context.Context) {
405 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Start routine to process OMCI-messages for device-id": oo.deviceID})
Girish Gowdraef7b4ad2022-02-09 10:43:15 -0800406 oo.mutexMibSyncMsgProcessorRunning.Lock()
407 oo.mibSyncMsgProcessorRunning = true
408 oo.mutexMibSyncMsgProcessorRunning.Unlock()
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000409loop:
410 for {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000411 // case <-ctx.Done():
412 // logger.Info("MibSync Msg", log.Fields{"Message handling canceled via context for device-id": onuDeviceEntry.deviceID})
413 // break loop
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000414 message, ok := <-oo.pMibUploadFsm.commChan
Himani Chawla4d908332020-08-31 12:30:20 +0530415 if !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000416 logger.Info(ctx, "MibSync Msg", log.Fields{"Message couldn't be read from channel for device-id": oo.deviceID})
Girish Gowdraef7b4ad2022-02-09 10:43:15 -0800417 oo.mutexMibSyncMsgProcessorRunning.Lock()
418 oo.mibSyncMsgProcessorRunning = false
419 oo.mutexMibSyncMsgProcessorRunning.Unlock()
Himani Chawla4d908332020-08-31 12:30:20 +0530420 break loop
421 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000422 logger.Debugw(ctx, "MibSync Msg", log.Fields{"Received message on ONU MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000423
Himani Chawla4d908332020-08-31 12:30:20 +0530424 switch message.Type {
425 case TestMsg:
426 msg, _ := message.Data.(TestMessage)
Holger Hildebrandtddc4fbd2022-02-04 14:10:36 +0000427 if msg.TestMessageVal == AbortMessageProcessing {
428 logger.Debugw(ctx, "MibSync Msg abort ProcessMsg", log.Fields{"for device-id": oo.deviceID})
Girish Gowdraef7b4ad2022-02-09 10:43:15 -0800429 oo.mutexMibSyncMsgProcessorRunning.Lock()
430 oo.mibSyncMsgProcessorRunning = false
431 oo.mutexMibSyncMsgProcessorRunning.Unlock()
Holger Hildebrandtddc4fbd2022-02-04 14:10:36 +0000432 break loop
433 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000434 oo.handleTestMsg(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530435 case OMCI:
436 msg, _ := message.Data.(OmciMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000437 oo.handleOmciMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530438 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000439 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 +0000440 }
441 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000442 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000443 // TODO: only this action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000444 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000445}
446
dbainbri4d3a0dc2020-12-02 00:33:42 +0000447func (oo *OnuDeviceEntry) handleTestMsg(ctx context.Context, msg TestMessage) {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000448
dbainbri4d3a0dc2020-12-02 00:33:42 +0000449 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 +0000450
451 switch msg.TestMessageVal {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000452 case LoadMibTemplateFailed:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000453 _ = oo.pMibUploadFsm.pFsm.Event(ulEvUploadMib)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000454 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000455 case LoadMibTemplateOk:
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000456 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000457 logger.Debugw(ctx, "MibSync Msg", log.Fields{"state": string(oo.pMibUploadFsm.pFsm.Current())})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000458 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000459 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 +0000460 }
461}
462
dbainbri4d3a0dc2020-12-02 00:33:42 +0000463func (oo *OnuDeviceEntry) handleOmciMibResetResponseMessage(ctx context.Context, msg OmciMessage) {
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000464 if oo.pMibUploadFsm.pFsm.Is(ulStResettingMib) {
Himani Chawla4d908332020-08-31 12:30:20 +0530465 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibResetResponse)
466 if msgLayer != nil {
467 msgObj, msgOk := msgLayer.(*omci.MibResetResponse)
468 if msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000469 logger.Debugw(ctx, "MibResetResponse Data", log.Fields{"data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530470 if msgObj.Result == me.Success {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000471 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000472 oo.sOnuPersistentData.PersMibDataSyncAdpt = 0
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000473 oo.mutexPersOnuConfig.Unlock()
Himani Chawla4d908332020-08-31 12:30:20 +0530474 // trigger retrieval of VendorId and SerialNumber
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000475 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetVendorAndSerial)
Himani Chawla4d908332020-08-31 12:30:20 +0530476 return
477 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000478 logger.Errorw(ctx, "Omci MibResetResponse Error", log.Fields{"device-id": oo.deviceID, "Error": msgObj.Result})
Himani Chawla4d908332020-08-31 12:30:20 +0530479 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000480 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530481 }
482 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000483 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530484 }
485 } else {
mpagenko01499812021-03-25 10:37:12 +0000486 //in case the last request was MdsGetRequest this issue may appear if the ONU was online before and has received the MIB reset
487 // with Sequence number 0x8000 as last request before - so it may still respond to that
488 // then we may force the ONU to react on the MdsGetRequest with a new message that uses an increased Sequence number
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000489 oo.mutexLastTxParamStruct.Lock()
mpagenko01499812021-03-25 10:37:12 +0000490 if oo.lastTxParamStruct.lastTxMessageType == omci.GetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
491 logger.Debugw(ctx, "MibSync FSM - repeat MdsGetRequest (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
492 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
ozgecanetsiab36ed572021-04-01 10:38:48 +0300493 _, err := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
mpagenko01499812021-03-25 10:37:12 +0000494 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300495 if err != nil {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000496 oo.mutexLastTxParamStruct.Unlock()
ozgecanetsiab36ed572021-04-01 10:38:48 +0300497 logger.Errorw(ctx, "ONUData get failed, aborting MibSync", log.Fields{"device-id": oo.deviceID})
ozgecanetsia29111002021-05-04 22:20:26 +0300498 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300499 return
500 }
mpagenko01499812021-03-25 10:37:12 +0000501 //TODO: needs extra handling of timeouts
502 oo.lastTxParamStruct.repeatCount = 1
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000503 oo.mutexLastTxParamStruct.Unlock()
mpagenko01499812021-03-25 10:37:12 +0000504 return
505 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000506 oo.mutexLastTxParamStruct.Unlock()
mpagenko01499812021-03-25 10:37:12 +0000507 logger.Errorw(ctx, "unexpected MibResetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
508 //perhaps some still lingering message from some prior activity, let's wait for the real response
509 return
Himani Chawla4d908332020-08-31 12:30:20 +0530510 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000511 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000512 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Himani Chawla4d908332020-08-31 12:30:20 +0530513}
514
dbainbri4d3a0dc2020-12-02 00:33:42 +0000515func (oo *OnuDeviceEntry) handleOmciMibUploadResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530516 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadResponse)
517 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000518 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530519 return
520 }
521 msgObj, msgOk := msgLayer.(*omci.MibUploadResponse)
522 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000523 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530524 return
525 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000526 logger.Debugw(ctx, "MibUploadResponse Data for:", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Himani Chawla4d908332020-08-31 12:30:20 +0530527 /* to be verified / reworked !!! */
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000528 oo.PDevOmciCC.uploadNoOfCmds = msgObj.NumberOfCommands
529 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800530 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000531 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
532 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000533 oo.mutexLastTxParamStruct.Lock()
mpagenko01499812021-03-25 10:37:12 +0000534 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000535 oo.mutexLastTxParamStruct.Unlock()
Himani Chawla4d908332020-08-31 12:30:20 +0530536 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000537 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 +0530538 //TODO right action?
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000539 _ = oo.pMibUploadFsm.pFsm.Event(ulEvTimeout)
Himani Chawla4d908332020-08-31 12:30:20 +0530540 }
541}
542
dbainbri4d3a0dc2020-12-02 00:33:42 +0000543func (oo *OnuDeviceEntry) handleOmciMibUploadNextResponseMessage(ctx context.Context, msg OmciMessage) {
Himani Chawla4d908332020-08-31 12:30:20 +0530544 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeMibUploadNextResponse)
Andrea Campanella6515c582020-10-05 11:25:00 +0200545
Holger Hildebrandte2439342020-12-03 16:06:54 +0000546 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000547 logger.Errorw(ctx, "Omci Msg layer could not be detected", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000548 return
549 }
550 msgObj, msgOk := msgLayer.(*omci.MibUploadNextResponse)
551 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000552 logger.Errorw(ctx, "Omci Msg layer could not be assigned", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandte2439342020-12-03 16:06:54 +0000553 return
554 }
555 meName := msgObj.ReportedME.GetName()
556 if meName == "UnknownItuG988ManagedEntity" || meName == "UnknownVendorSpecificManagedEntity" {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000557 logger.Debugw(ctx, "MibUploadNextResponse Data for unknown ME received - temporary workaround is to ignore it!",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000558 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj, "meName": meName})
559 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000560 logger.Debugw(ctx, "MibUploadNextResponse Data for:",
Holger Hildebrandte2439342020-12-03 16:06:54 +0000561 log.Fields{"device-id": oo.deviceID, "meName": meName, "data-fields": msgObj})
Holger Hildebrandt8998b872020-10-05 13:48:39 +0000562 meClassID := msgObj.ReportedME.GetClassID()
563 meEntityID := msgObj.ReportedME.GetEntityID()
564 meAttributes := msgObj.ReportedME.GetAttributeValueMap()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000565 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, meAttributes)
Himani Chawla4d908332020-08-31 12:30:20 +0530566 }
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000567 if oo.PDevOmciCC.uploadSequNo < oo.PDevOmciCC.uploadNoOfCmds {
Girish Gowdra0b235842021-03-09 13:06:46 -0800568 _ = oo.PDevOmciCC.sendMibUploadNext(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
mpagenko01499812021-03-25 10:37:12 +0000569 //even though lastTxParameters are currently not used for checking the ResetResponse message we have to ensure
570 // that the lastTxMessageType is correctly set to avoid misinterpreting other responses
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000571 oo.mutexLastTxParamStruct.Lock()
mpagenko01499812021-03-25 10:37:12 +0000572 oo.lastTxParamStruct.lastTxMessageType = omci.MibUploadNextRequestType
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000573 oo.mutexLastTxParamStruct.Unlock()
Himani Chawla4d908332020-08-31 12:30:20 +0530574 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000575 oo.pOnuDB.logMeDb(ctx)
576 err := oo.createAndPersistMibTemplate(ctx)
Himani Chawla4d908332020-08-31 12:30:20 +0530577 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000578 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 +0530579 }
580
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000581 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
Himani Chawla4d908332020-08-31 12:30:20 +0530582 }
583}
584
dbainbri4d3a0dc2020-12-02 00:33:42 +0000585func (oo *OnuDeviceEntry) handleOmciGetResponseMessage(ctx context.Context, msg OmciMessage) error {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000586 var err error = nil
mpagenko01499812021-03-25 10:37:12 +0000587
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000588 oo.mutexLastTxParamStruct.RLock()
mpagenko01499812021-03-25 10:37:12 +0000589 if oo.lastTxParamStruct.lastTxMessageType != omci.GetRequestType ||
590 oo.lastTxParamStruct.pLastTxMeInstance == nil {
591 //in case the last request was MibReset this issue may appear if the ONU was online before and has received the MDS GetRequest
592 // with Sequence number 0x8000 as last request before - so it may still respond to that
593 // then we may force the ONU to react on the MIB reset with a new message that uses an increased Sequence number
594 if oo.lastTxParamStruct.lastTxMessageType == omci.MibResetRequestType && oo.lastTxParamStruct.repeatCount == 0 {
595 logger.Debugw(ctx, "MibSync FSM - repeat mibReset (updated SequenceNumber)", log.Fields{"device-id": oo.deviceID})
596 _ = oo.PDevOmciCC.sendMibReset(log.WithSpanFromContext(context.TODO(), ctx), oo.pOpenOnuAc.omciTimeout, true)
597 //TODO: needs extra handling of timeouts
598 oo.lastTxParamStruct.repeatCount = 1
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000599 oo.mutexLastTxParamStruct.RUnlock()
mpagenko01499812021-03-25 10:37:12 +0000600 return nil
601 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000602 oo.mutexLastTxParamStruct.RUnlock()
mpagenko01499812021-03-25 10:37:12 +0000603 logger.Warnw(ctx, "unexpected GetResponse - ignoring", log.Fields{"device-id": oo.deviceID})
604 //perhaps some still lingering message from some prior activity, let's wait for the real response
605 return nil
606 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000607 oo.mutexLastTxParamStruct.RUnlock()
Himani Chawla4d908332020-08-31 12:30:20 +0530608 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeGetResponse)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000609 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000610 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 +0000611 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
612 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 +0000613 }
614 msgObj, msgOk := msgLayer.(*omci.GetResponse)
615 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000616 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 +0000617 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
618 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 +0000619 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000620 logger.Debugw(ctx, "MibSync FSM - GetResponse Data", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000621 if msgObj.Result == me.Success {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000622 oo.mutexLastTxParamStruct.RLock()
mpagenko01499812021-03-25 10:37:12 +0000623 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
624 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000625 meAttributes := msgObj.Attributes
mpagenko01499812021-03-25 10:37:12 +0000626 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000627 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 +0000628 switch meInstance {
629 case "OnuG":
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000630 oo.mutexLastTxParamStruct.RUnlock()
631 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandtfb402a62021-05-26 14:40:49 +0000632 oo.sOnuPersistentData.PersVendorID = TrimStringFromMeOctet(meAttributes["VendorId"])
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000633 snBytes, _ := me.InterfaceToOctets(meAttributes["SerialNumber"])
634 if onugSerialNumberLen == len(snBytes) {
635 snVendorPart := fmt.Sprintf("%s", snBytes[:4])
636 snNumberPart := hex.EncodeToString(snBytes[4:])
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000637 oo.sOnuPersistentData.PersSerialNumber = snVendorPart + snNumberPart
dbainbri4d3a0dc2020-12-02 00:33:42 +0000638 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 +0000639 "onuDeviceEntry.vendorID": oo.sOnuPersistentData.PersVendorID, "onuDeviceEntry.serialNumber": oo.sOnuPersistentData.PersSerialNumber})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000640 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000641 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 +0000642 oo.sOnuPersistentData.PersSerialNumber = cEmptySerialNumberString
Himani Chawla4d908332020-08-31 12:30:20 +0530643 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000644 oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000645 // trigger retrieval of EquipmentId
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000646 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetEquipmentID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000647 return nil
648 case "Onu2G":
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000649 oo.mutexLastTxParamStruct.RUnlock()
650 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandtfb402a62021-05-26 14:40:49 +0000651 oo.sOnuPersistentData.PersEquipmentID = TrimStringFromMeOctet(meAttributes["EquipmentId"])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000652 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu2-G - EquipmentId", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000653 "onuDeviceEntry.equipmentID": oo.sOnuPersistentData.PersEquipmentID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000654 oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000655 // trigger retrieval of 1st SW-image info
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000656 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetFirstSwVersion)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000657 return nil
658 case "SoftwareImage":
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000659 oo.mutexLastTxParamStruct.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000660 if entityID > secondSwImageMeID {
661 logger.Errorw(ctx, "mibSync FSM - Failed to GetResponse Data for SoftwareImage with expected EntityId",
662 log.Fields{"device-id": oo.deviceID, "entity-ID": entityID})
663 return fmt.Errorf("mibSync FSM - SwResponse Data with unexpected EntityId: %s %x",
664 oo.deviceID, entityID)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000665 }
mpagenko15ff4a52021-03-02 10:09:20 +0000666 // need to use function for go lint complexity
667 oo.handleSwImageIndications(ctx, entityID, meAttributes)
668 return nil
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000669 case "IpHostConfigData":
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000670 oo.mutexLastTxParamStruct.RUnlock()
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000671 macBytes, _ := me.InterfaceToOctets(meAttributes["MacAddress"])
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000672 oo.mutexPersOnuConfig.Lock()
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000673 if omciMacAddressLen == len(macBytes) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000674 oo.sOnuPersistentData.PersMacAddress = hex.EncodeToString(macBytes[:])
dbainbri4d3a0dc2020-12-02 00:33:42 +0000675 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for IpHostConfigData - MacAddress", log.Fields{"device-id": oo.deviceID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000676 "macAddress": oo.sOnuPersistentData.PersMacAddress})
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000677 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000678 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 +0000679 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000680 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000681 oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000682 // trigger retrieval of mib template
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000683 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000684 return nil
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000685 case "OnuData":
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000686 oo.mutexLastTxParamStruct.RUnlock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000687 oo.checkMdsValue(ctx, meAttributes["MibDataSync"].(uint8))
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000688 return nil
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000689 default:
690 oo.mutexLastTxParamStruct.RUnlock()
691 logger.Warnw(ctx, "Unsupported ME name received!",
692 log.Fields{"ME name": meInstance, "device-id": oo.deviceID})
693
Himani Chawla4d908332020-08-31 12:30:20 +0530694 }
Matteo Scandolo20ca10c2021-01-21 14:35:45 -0800695 } else {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000696 oo.mutexLastTxParamStruct.RUnlock()
697 logger.Warnf(ctx, "MibSync FSM - Received GetResponse Data for %s with wrong classID or entityID ",
698 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, msgObj.EntityClass)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000699 }
Himani Chawla4d908332020-08-31 12:30:20 +0530700 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000701 if err = oo.handleOmciGetResponseErrors(ctx, msgObj); err == nil {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000702 return nil
703 }
Himani Chawla4d908332020-08-31 12:30:20 +0530704 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000705 logger.Info(ctx, "MibSync Msg", log.Fields{"Stopped handling of MibSyncChan for device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000706 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000707 return err
Himani Chawla4d908332020-08-31 12:30:20 +0530708}
709
mpagenko15ff4a52021-03-02 10:09:20 +0000710func (oo *OnuDeviceEntry) handleSwImageIndications(ctx context.Context, entityID uint16, meAttributes me.AttributeValueMap) {
711 imageIsCommitted := meAttributes["IsCommitted"].(uint8)
712 imageIsActive := meAttributes["IsActive"].(uint8)
Holger Hildebrandtfb402a62021-05-26 14:40:49 +0000713 imageVersion := TrimStringFromMeOctet(meAttributes["Version"])
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000714 oo.mutexPersOnuConfig.RLock()
mpagenko15ff4a52021-03-02 10:09:20 +0000715 logger.Infow(ctx, "MibSync FSM - GetResponse Data for SoftwareImage",
716 log.Fields{"device-id": oo.deviceID, "entityID": entityID,
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000717 "version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted, "SNR": oo.sOnuPersistentData.PersSerialNumber})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000718 oo.mutexPersOnuConfig.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000719 if firstSwImageMeID == entityID {
720 //always accept the state of the first image (2nd image info should not yet be available)
Holger Hildebrandt05011352021-06-15 09:40:24 +0000721 oo.mutexOnuSwImageIndications.Lock()
mpagenko15ff4a52021-03-02 10:09:20 +0000722 if imageIsActive == swIsActive {
723 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
724 oo.onuSwImageIndications.activeEntityEntry.valid = true
725 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
726 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000727 //as the SW version indication may stem from some ONU Down/up event
728 //the complementary image state is to be invalidated
729 // (state of the second image is always expected afterwards or just invalid)
730 oo.onuSwImageIndications.inactiveEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000731 } else {
732 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
733 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
734 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
735 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
mpagenko59498c12021-03-18 14:15:15 +0000736 //as the SW version indication may stem form some ONU Down/up event
737 //the complementary image state is to be invalidated
738 // (state of the second image is always expected afterwards or just invalid)
739 oo.onuSwImageIndications.activeEntityEntry.valid = false
mpagenko15ff4a52021-03-02 10:09:20 +0000740 }
Holger Hildebrandt05011352021-06-15 09:40:24 +0000741 oo.mutexOnuSwImageIndications.Unlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000742 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetSecondSwVersion)
743 return
744 } else if secondSwImageMeID == entityID {
745 //2nd image info might conflict with first image info, in which case we priorize first image info!
Holger Hildebrandt05011352021-06-15 09:40:24 +0000746 oo.mutexOnuSwImageIndications.Lock()
mpagenko15ff4a52021-03-02 10:09:20 +0000747 if imageIsActive == swIsActive { //2nd image reported to be active
748 if oo.onuSwImageIndications.activeEntityEntry.valid {
749 //conflict exists - state of first image is left active
750 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as active - assuming 2nd to be inactive",
751 log.Fields{"device-id": oo.deviceID})
752 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
753 oo.onuSwImageIndications.inactiveEntityEntry.valid = true ////to indicate that at least something has been reported
754 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
755 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
756 } else { //first image inactive, this one active
757 oo.onuSwImageIndications.activeEntityEntry.entityID = entityID
758 oo.onuSwImageIndications.activeEntityEntry.valid = true
759 oo.onuSwImageIndications.activeEntityEntry.version = imageVersion
760 oo.onuSwImageIndications.activeEntityEntry.isCommitted = imageIsCommitted
761 }
762 } else { //2nd image reported to be inactive
763 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
764 //conflict exists - both images inactive - regard it as ONU failure and assume first image to be active
765 logger.Warnw(ctx, "mibSync FSM - both ONU images are reported as inactive, defining first to be active",
766 log.Fields{"device-id": oo.deviceID})
767 oo.onuSwImageIndications.activeEntityEntry.entityID = firstSwImageMeID
768 oo.onuSwImageIndications.activeEntityEntry.valid = true //to indicate that at least something has been reported
769 //copy active commit/version from the previously stored inactive position
770 oo.onuSwImageIndications.activeEntityEntry.version = oo.onuSwImageIndications.inactiveEntityEntry.version
771 oo.onuSwImageIndications.activeEntityEntry.isCommitted = oo.onuSwImageIndications.inactiveEntityEntry.isCommitted
772 }
773 //in any case we indicate (and possibly overwrite) the second image indications as inactive
774 oo.onuSwImageIndications.inactiveEntityEntry.entityID = entityID
775 oo.onuSwImageIndications.inactiveEntityEntry.valid = true
776 oo.onuSwImageIndications.inactiveEntityEntry.version = imageVersion
777 oo.onuSwImageIndications.inactiveEntityEntry.isCommitted = imageIsCommitted
778 }
Holger Hildebrandt05011352021-06-15 09:40:24 +0000779 oo.mutexOnuSwImageIndications.Unlock()
mpagenko15ff4a52021-03-02 10:09:20 +0000780 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMacAddress)
781 return
782 }
783}
784
dbainbri4d3a0dc2020-12-02 00:33:42 +0000785func (oo *OnuDeviceEntry) handleOmciMessage(ctx context.Context, msg OmciMessage) {
786 logger.Debugw(ctx, "MibSync Msg", log.Fields{"OmciMessage received for device-id": oo.deviceID,
Andrea Campanella6515c582020-10-05 11:25:00 +0200787 "msgType": msg.OmciMsg.MessageType, "msg": msg})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000788 //further analysis could be done here based on msg.OmciMsg.Payload, e.g. verification of error code ...
789 switch msg.OmciMsg.MessageType {
790 case omci.MibResetResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000791 oo.handleOmciMibResetResponseMessage(ctx, msg)
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000792
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000793 case omci.MibUploadResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000794 oo.handleOmciMibUploadResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530795
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000796 case omci.MibUploadNextResponseType:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000797 oo.handleOmciMibUploadNextResponseMessage(ctx, msg)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000798
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000799 case omci.GetResponseType:
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000800 //TODO: error handling
dbainbri4d3a0dc2020-12-02 00:33:42 +0000801 _ = oo.handleOmciGetResponseMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530802
Andrea Campanella6515c582020-10-05 11:25:00 +0200803 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000804 logger.Warnw(ctx, "Unknown Message Type", log.Fields{"msgType": msg.OmciMsg.MessageType})
Andrea Campanella6515c582020-10-05 11:25:00 +0200805
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000806 }
807}
808
dbainbri4d3a0dc2020-12-02 00:33:42 +0000809func (oo *OnuDeviceEntry) handleOmciGetResponseErrors(ctx context.Context, msgObj *omci.GetResponse) error {
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000810 var err error = nil
dbainbri4d3a0dc2020-12-02 00:33:42 +0000811 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 +0000812 // Up to now the following erroneous results have been seen for different ONU-types to indicate an unsupported ME
813 if msgObj.Result == me.UnknownInstance || msgObj.Result == me.UnknownEntity || msgObj.Result == me.ProcessingError || msgObj.Result == me.NotSupported {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000814 oo.mutexLastTxParamStruct.RLock()
815 if oo.lastTxParamStruct.pLastTxMeInstance != nil {
816 entityID := oo.lastTxParamStruct.pLastTxMeInstance.GetEntityID()
817 if msgObj.EntityClass == oo.lastTxParamStruct.pLastTxMeInstance.GetClassID() && msgObj.EntityInstance == entityID {
818 meInstance := oo.lastTxParamStruct.pLastTxMeInstance.GetName()
819 switch meInstance {
820 case "IpHostConfigData":
821 oo.mutexLastTxParamStruct.RUnlock()
822 logger.Debugw(ctx, "MibSync FSM - erroneous result for IpHostConfigData received - ONU doesn't support ME - fill macAddress with zeros",
823 log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
824 oo.mutexPersOnuConfig.Lock()
825 oo.sOnuPersistentData.PersMacAddress = cEmptyMacAddrString
826 oo.mutexPersOnuConfig.Unlock()
827 // trigger retrieval of mib template
828 _ = oo.pMibUploadFsm.pFsm.Event(ulEvGetMibTemplate)
829 return nil
830 default:
831 oo.mutexLastTxParamStruct.RUnlock()
832 logger.Warnf(ctx, "MibSync FSM - erroneous result for %s received - no exceptional treatment defined", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj}, meInstance)
833 err = fmt.Errorf("erroneous result for %s received - no exceptional treatment defined: %s", meInstance, oo.deviceID)
834 }
835 } else {
836 oo.mutexLastTxParamStruct.RUnlock()
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000837 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000838 } else {
839 oo.mutexLastTxParamStruct.RUnlock()
840 logger.Warnw(ctx, "Pointer to last Tx MeInstance is nil!", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000841 }
842 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000843 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 +0000844 err = fmt.Errorf("erroneous result in GetResponse Data: %s - %s", msgObj.Result, oo.deviceID)
845 }
846 return err
847}
848
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000849func (oo *OnuDeviceEntry) isNewOnu() bool {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000850 oo.mutexPersOnuConfig.RLock()
851 defer oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000852 return oo.sOnuPersistentData.PersMibLastDbSync == 0
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000853}
854
Himani Chawla6d2ae152020-09-02 13:11:20 +0530855func isSupportedClassID(meClassID me.ClassID) bool {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000856 for _, v := range supportedClassIds {
Himani Chawla4d908332020-08-31 12:30:20 +0530857 if v == meClassID {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000858 return true
859 }
860 }
861 return false
862}
863
dbainbri4d3a0dc2020-12-02 00:33:42 +0000864func (oo *OnuDeviceEntry) mibDbVolatileDict(ctx context.Context) error {
865 logger.Debug(ctx, "MibVolatileDict- running from default Entry code")
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000866 return errors.New("not_implemented")
867}
868
Himani Chawla6d2ae152020-09-02 13:11:20 +0530869// 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 +0530870// 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 +0000871// 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 +0000872func (oo *OnuDeviceEntry) createAndPersistMibTemplate(ctx context.Context) error {
873 logger.Debugw(ctx, "MibSync - MibTemplate - path name", log.Fields{"path": oo.mibTemplatePath,
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000874 "device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530875
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000876 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
877 if mibTemplateIsGenerated, exist := oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath]; exist {
878 if mibTemplateIsGenerated {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000879 logger.Debugw(ctx, "MibSync - MibTemplate - another thread has already started to generate it - skip",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000880 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
881 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
882 return nil
883 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000884 logger.Debugw(ctx, "MibSync - MibTemplate - previous generation attempt seems to be failed - try again",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000885 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
886 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000887 logger.Debugw(ctx, "MibSync - MibTemplate - first ONU-instance of this kind - start generation",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000888 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
889 }
890 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = true
891 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
892
893 currentTime := time.Now()
divyadesaibbed37c2020-08-28 13:35:20 +0530894 templateMap := make(map[string]interface{})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000895 templateMap["TemplateName"] = oo.mibTemplatePath
divyadesaibbed37c2020-08-28 13:35:20 +0530896 templateMap["TemplateCreated"] = currentTime.Format("2006-01-02 15:04:05.000000")
897
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000898 firstLevelMap := oo.pOnuDB.meDb
divyadesaibbed37c2020-08-28 13:35:20 +0530899 for firstLevelKey, firstLevelValue := range firstLevelMap {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000900 logger.Debugw(ctx, "MibSync - MibTemplate - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
Himani Chawla26e555c2020-08-31 12:30:20 +0530901 classID := strconv.Itoa(int(firstLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530902
903 secondLevelMap := make(map[string]interface{})
904 for secondLevelKey, secondLevelValue := range firstLevelValue {
905 thirdLevelMap := make(map[string]interface{})
Himani Chawla26e555c2020-08-31 12:30:20 +0530906 entityID := strconv.Itoa(int(secondLevelKey))
divyadesaibbed37c2020-08-28 13:35:20 +0530907 thirdLevelMap["Attributes"] = secondLevelValue
Himani Chawla26e555c2020-08-31 12:30:20 +0530908 thirdLevelMap["InstanceId"] = entityID
909 secondLevelMap[entityID] = thirdLevelMap
910 if classID == "6" || classID == "256" {
divyadesaibbed37c2020-08-28 13:35:20 +0530911 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
912 delete(forthLevelMap, "SerialNumber")
913 forthLevelMap["SerialNumber"] = "%SERIAL_NUMBER%"
914
915 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530916 if classID == "134" {
divyadesaibbed37c2020-08-28 13:35:20 +0530917 forthLevelMap := map[string]interface{}(thirdLevelMap["Attributes"].(me.AttributeValueMap))
918 delete(forthLevelMap, "MacAddress")
919 forthLevelMap["MacAddress"] = "%MAC_ADDRESS%"
920 }
921 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530922 secondLevelMap["ClassId"] = classID
923 templateMap[classID] = secondLevelMap
divyadesaibbed37c2020-08-28 13:35:20 +0530924 }
925 mibTemplate, err := json.Marshal(&templateMap)
926 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000927 logger.Errorw(ctx, "MibSync - MibTemplate - Failed to marshal mibTemplate", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000928 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
929 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
930 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530931 return err
932 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000933 err = oo.mibTemplateKVStore.Put(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath, string(mibTemplate))
divyadesaibbed37c2020-08-28 13:35:20 +0530934 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000935 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 +0000936 oo.pOpenOnuAc.lockMibTemplateGenerated.Lock()
937 oo.pOpenOnuAc.mibTemplatesGenerated[oo.mibTemplatePath] = false
938 oo.pOpenOnuAc.lockMibTemplateGenerated.Unlock()
divyadesaibbed37c2020-08-28 13:35:20 +0530939 return err
940 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000941 logger.Debugw(ctx, "MibSync - MibTemplate - Stored the template to etcd", log.Fields{"device-id": oo.deviceID})
divyadesaibbed37c2020-08-28 13:35:20 +0530942 return nil
943}
944
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000945func (oo *OnuDeviceEntry) requestMdsValue(ctx context.Context) {
946 logger.Debugw(ctx, "Request MDS value", log.Fields{"device-id": oo.deviceID})
947 requestedAttributes := me.AttributeValueMap{"MibDataSync": ""}
ozgecanetsiab36ed572021-04-01 10:38:48 +0300948 meInstance, err := oo.PDevOmciCC.sendGetMe(log.WithSpanFromContext(context.TODO(), ctx),
Girish Gowdra0b235842021-03-09 13:06:46 -0800949 me.OnuDataClassID, onuDataMeID, requestedAttributes, oo.pOpenOnuAc.omciTimeout, true, oo.pMibUploadFsm.commChan)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000950 //accept also nil as (error) return value for writing to LastTx
951 // - this avoids misinterpretation of new received OMCI messages
ozgecanetsiab36ed572021-04-01 10:38:48 +0300952 if err != nil {
953 logger.Errorw(ctx, "ONUData get failed, aborting MibSync FSM!", log.Fields{"device-id": oo.deviceID})
954 pMibUlFsm := oo.pMibUploadFsm
955 if pMibUlFsm != nil {
956 go func(a_pAFsm *AdapterFsm) {
ozgecanetsia29111002021-05-04 22:20:26 +0300957 _ = oo.pMibUploadFsm.pFsm.Event(ulEvStop)
ozgecanetsiab36ed572021-04-01 10:38:48 +0300958 }(pMibUlFsm)
959 }
960 return
961 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000962 oo.mutexLastTxParamStruct.Lock()
mpagenko01499812021-03-25 10:37:12 +0000963 oo.lastTxParamStruct.lastTxMessageType = omci.GetRequestType
964 oo.lastTxParamStruct.pLastTxMeInstance = meInstance
965 oo.lastTxParamStruct.repeatCount = 0
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000966 oo.mutexLastTxParamStruct.Unlock()
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000967}
968
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000969func (oo *OnuDeviceEntry) checkMdsValue(ctx context.Context, mibDataSyncOnu uint8) {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000970 oo.mutexPersOnuConfig.RLock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000971 logger.Debugw(ctx, "MibSync FSM - GetResponse Data for Onu-Data - MibDataSync", log.Fields{"device-id": oo.deviceID,
972 "mibDataSyncOnu": mibDataSyncOnu, "PersMibDataSyncAdpt": oo.sOnuPersistentData.PersMibDataSyncAdpt})
973
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000974 mdsValuesAreEqual := oo.sOnuPersistentData.PersMibDataSyncAdpt == mibDataSyncOnu
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000975 oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000976 if oo.pMibUploadFsm.pFsm.Is(ulStAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000977 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000978 logger.Debugw(ctx, "MibSync FSM - mib audit - MDS check ok", log.Fields{"device-id": oo.deviceID})
979 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
980 } else {
981 logger.Warnw(ctx, "MibSync FSM - mib audit - MDS check failed for the first time!", log.Fields{"device-id": oo.deviceID})
982 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
983 }
984 } else if oo.pMibUploadFsm.pFsm.Is(ulStReAuditing) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000985 if mdsValuesAreEqual {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000986 logger.Debugw(ctx, "MibSync FSM - mib reaudit - MDS check ok", log.Fields{"device-id": oo.deviceID})
987 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
988 } else {
989 logger.Errorw(ctx, "MibSync FSM - mib audit - MDS check failed for the second time!", log.Fields{"device-id": oo.deviceID})
990 //TODO: send new event notification "MDS counter mismatch" to the core
991 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
992 }
993 } else if oo.pMibUploadFsm.pFsm.Is(ulStExaminingMds) {
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000994 if mdsValuesAreEqual && mibDataSyncOnu != 0 {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000995 logger.Debugw(ctx, "MibSync FSM - MDS examination ok", log.Fields{"device-id": oo.deviceID})
996 _ = oo.pMibUploadFsm.pFsm.Event(ulEvSuccess)
997 } else {
998 logger.Debugw(ctx, "MibSync FSM - MDS examination failed - new provisioning", log.Fields{"device-id": oo.deviceID})
999 _ = oo.pMibUploadFsm.pFsm.Event(ulEvMismatch)
1000 }
1001 } else {
1002 logger.Warnw(ctx, "wrong state for MDS evaluation!", log.Fields{"state": oo.pMibUploadFsm.pFsm.Current(), "device-id": oo.deviceID})
1003 }
1004}
mpagenko15ff4a52021-03-02 10:09:20 +00001005
1006//GetActiveImageMeID returns the Omci MeId of the active ONU image together with error code for validity
1007func (oo *OnuDeviceEntry) GetActiveImageMeID(ctx context.Context) (uint16, error) {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001008 oo.mutexOnuSwImageIndications.RLock()
mpagenko15ff4a52021-03-02 10:09:20 +00001009 if oo.onuSwImageIndications.activeEntityEntry.valid {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001010 value := oo.onuSwImageIndications.activeEntityEntry.entityID
1011 oo.mutexOnuSwImageIndications.RUnlock()
1012 return value, nil
mpagenko15ff4a52021-03-02 10:09:20 +00001013 }
Holger Hildebrandt05011352021-06-15 09:40:24 +00001014 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +00001015 return 0xFFFF, fmt.Errorf("no valid active image found: %s", oo.deviceID)
1016}
1017
1018//GetInactiveImageMeID returns the Omci MeId of the inactive ONU image together with error code for validity
1019func (oo *OnuDeviceEntry) GetInactiveImageMeID(ctx context.Context) (uint16, error) {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001020 oo.mutexOnuSwImageIndications.RLock()
mpagenko15ff4a52021-03-02 10:09:20 +00001021 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001022 value := oo.onuSwImageIndications.inactiveEntityEntry.entityID
1023 oo.mutexOnuSwImageIndications.RUnlock()
1024 return value, nil
mpagenko15ff4a52021-03-02 10:09:20 +00001025 }
Holger Hildebrandt05011352021-06-15 09:40:24 +00001026 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +00001027 return 0xFFFF, fmt.Errorf("no valid inactive image found: %s", oo.deviceID)
1028}
1029
1030//IsImageToBeCommitted returns true if the active image is still uncommitted
1031func (oo *OnuDeviceEntry) IsImageToBeCommitted(ctx context.Context, aImageID uint16) bool {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001032 oo.mutexOnuSwImageIndications.RLock()
mpagenko15ff4a52021-03-02 10:09:20 +00001033 if oo.onuSwImageIndications.activeEntityEntry.valid {
1034 if oo.onuSwImageIndications.activeEntityEntry.entityID == aImageID {
1035 if oo.onuSwImageIndications.activeEntityEntry.isCommitted == swIsUncommitted {
Holger Hildebrandt05011352021-06-15 09:40:24 +00001036 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +00001037 return true
1038 }
1039 }
1040 }
Holger Hildebrandt05011352021-06-15 09:40:24 +00001041 oo.mutexOnuSwImageIndications.RUnlock()
mpagenko15ff4a52021-03-02 10:09:20 +00001042 return false //all other case are treated as 'nothing to commit
1043}
Holger Hildebrandtbe523842021-03-10 10:47:18 +00001044func (oo *OnuDeviceEntry) getMibFromTemplate(ctx context.Context) bool {
1045
1046 oo.mibTemplatePath = oo.buildMibTemplatePath()
Holger Hildebrandtbdc5f002021-04-19 14:46:21 +00001047 logger.Debugw(ctx, "MibSync FSM - get Mib from template", log.Fields{"path": fmt.Sprintf("%s/%s", cBasePathMibTemplateKvStore, oo.mibTemplatePath),
1048 "device-id": oo.deviceID})
Holger Hildebrandtbe523842021-03-10 10:47:18 +00001049
1050 restoredFromMibTemplate := false
1051 Value, err := oo.mibTemplateKVStore.Get(log.WithSpanFromContext(context.TODO(), ctx), oo.mibTemplatePath)
1052 if err == nil {
1053 if Value != nil {
1054 logger.Debugf(ctx, "MibSync FSM - Mib template read: Key: %s, Value: %s %s", Value.Key, Value.Value)
1055
1056 // swap out tokens with specific data
1057 mibTmpString, _ := kvstore.ToString(Value.Value)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +00001058 oo.mutexPersOnuConfig.RLock()
Holger Hildebrandtbe523842021-03-10 10:47:18 +00001059 mibTmpString2 := strings.Replace(mibTmpString, "%SERIAL_NUMBER%", oo.sOnuPersistentData.PersSerialNumber, -1)
1060 mibTmpString = strings.Replace(mibTmpString2, "%MAC_ADDRESS%", oo.sOnuPersistentData.PersMacAddress, -1)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +00001061 oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandtbe523842021-03-10 10:47:18 +00001062 mibTmpBytes := []byte(mibTmpString)
1063 logger.Debugf(ctx, "MibSync FSM - Mib template tokens swapped out: %s", mibTmpBytes)
1064
1065 var firstLevelMap map[string]interface{}
1066 if err = json.Unmarshal(mibTmpBytes, &firstLevelMap); err != nil {
1067 logger.Errorw(ctx, "MibSync FSM - Failed to unmarshal template", log.Fields{"error": err, "device-id": oo.deviceID})
1068 } else {
1069 for firstLevelKey, firstLevelValue := range firstLevelMap {
1070 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey", log.Fields{"firstLevelKey": firstLevelKey})
1071 if uint16ValidNumber, err := strconv.ParseUint(firstLevelKey, 10, 16); err == nil {
1072 meClassID := me.ClassID(uint16ValidNumber)
1073 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a number in uint16-range", log.Fields{"uint16ValidNumber": uint16ValidNumber})
1074 if isSupportedClassID(meClassID) {
1075 //logger.Debugw(ctx, "MibSync FSM - firstLevelKey is a supported classID", log.Fields{"meClassID": meClassID})
1076 secondLevelMap := firstLevelValue.(map[string]interface{})
1077 for secondLevelKey, secondLevelValue := range secondLevelMap {
1078 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey", log.Fields{"secondLevelKey": secondLevelKey})
1079 if uint16ValidNumber, err := strconv.ParseUint(secondLevelKey, 10, 16); err == nil {
1080 meEntityID := uint16(uint16ValidNumber)
1081 //logger.Debugw(ctx, "MibSync FSM - secondLevelKey is a number and a valid EntityId", log.Fields{"meEntityID": meEntityID})
1082 thirdLevelMap := secondLevelValue.(map[string]interface{})
1083 for thirdLevelKey, thirdLevelValue := range thirdLevelMap {
1084 if thirdLevelKey == "Attributes" {
1085 //logger.Debugw(ctx, "MibSync FSM - thirdLevelKey refers to attributes", log.Fields{"thirdLevelKey": thirdLevelKey})
1086 attributesMap := thirdLevelValue.(map[string]interface{})
1087 //logger.Debugw(ctx, "MibSync FSM - attributesMap", log.Fields{"attributesMap": attributesMap})
1088 oo.pOnuDB.PutMe(ctx, meClassID, meEntityID, attributesMap)
1089 restoredFromMibTemplate = true
1090 }
1091 }
1092 }
1093 }
1094 }
1095 }
1096 }
1097 }
1098 } else {
1099 logger.Debugw(ctx, "No MIB template found", log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
1100 }
1101 } else {
1102 logger.Errorf(ctx, "Get from kvstore operation failed for path",
1103 log.Fields{"path": oo.mibTemplatePath, "device-id": oo.deviceID})
1104 }
1105 return restoredFromMibTemplate
1106}
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +00001107
1108//CancelProcessing terminates potentially running reconciling processes and stops the FSM
1109func (oo *OnuDeviceEntry) CancelProcessing(ctx context.Context) {
1110
Holger Hildebrandt779e8d62022-02-08 15:35:01 +00001111 if oo.isReconcilingFlows() {
1112 oo.SendChReconcilingFlowsFinished(ctx, false)
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +00001113 }
Girish Gowdraef7b4ad2022-02-09 10:43:15 -08001114 oo.mutexMibSyncMsgProcessorRunning.RLock()
1115 defer oo.mutexMibSyncMsgProcessorRunning.RUnlock()
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +00001116 //the MibSync FSM might be active all the ONU-active time,
1117 // hence it must be stopped unconditionally
Holger Hildebrandt779e8d62022-02-08 15:35:01 +00001118 oo.mutexMibSyncMsgProcessorRunning.RLock()
1119 defer oo.mutexMibSyncMsgProcessorRunning.RUnlock()
1120 if oo.mibSyncMsgProcessorRunning {
1121 pMibUlFsm := oo.pMibUploadFsm
1122 if pMibUlFsm != nil {
1123 // abort running message processing
1124 fsmAbortMsg := Message{
1125 Type: TestMsg,
1126 Data: TestMessage{
1127 TestMessageVal: AbortMessageProcessing,
1128 },
1129 }
1130 pMibUlFsm.commChan <- fsmAbortMsg
1131 _ = pMibUlFsm.pFsm.Event(ulEvStop)
Holger Hildebrandtddc4fbd2022-02-04 14:10:36 +00001132 }
Holger Hildebrandtb4563ab2021-04-14 10:27:20 +00001133 }
1134}