blob: cd2799f16ff46bc402617adba8ab2c63d5c533da [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +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
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000017//Package adaptercoreonu provides the utility for onu devices, flows and statistics
18package adaptercoreonu
Holger Hildebrandtfa074992020-03-27 15:42:06 +000019
20import (
21 "context"
Holger Hildebrandt47555e72020-09-21 11:07:24 +000022 "encoding/json"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000023 "errors"
Holger Hildebrandt47555e72020-09-21 11:07:24 +000024 "fmt"
25 "sync"
Holger Hildebrandt2ff21f12020-08-13 14:38:02 +000026 "time"
27
ozgecanetsiae11479f2020-07-06 09:44:47 +030028 "github.com/opencord/omci-lib-go"
29 me "github.com/opencord/omci-lib-go/generated"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000030
Holger Hildebrandtfa074992020-03-27 15:42:06 +000031 //"sync"
32 //"time"
33
34 "github.com/looplab/fsm"
Girish Gowdra50e56422021-06-01 16:46:04 -070035 "github.com/opencord/voltha-lib-go/v5/pkg/adapters/adapterif"
36 "github.com/opencord/voltha-lib-go/v5/pkg/db"
37 "github.com/opencord/voltha-lib-go/v5/pkg/db/kvstore"
Holger Hildebrandtfa074992020-03-27 15:42:06 +000038
Girish Gowdra50e56422021-06-01 16:46:04 -070039 //"github.com/opencord/voltha-lib-go/v5/pkg/kafka"
40 "github.com/opencord/voltha-lib-go/v5/pkg/log"
dbainbri4d3a0dc2020-12-02 00:33:42 +000041 //ic "github.com/opencord/voltha-protos/v4/go/inter_container"
42 //"github.com/opencord/voltha-protos/v4/go/openflow_13"
43 //"github.com/opencord/voltha-protos/v4/go/voltha"
Holger Hildebrandtfa074992020-03-27 15:42:06 +000044)
45
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000046const (
mpagenko1cc3cb42020-07-27 15:24:38 +000047 // events of MibUpload FSM
48 ulEvStart = "ulEvStart"
49 ulEvResetMib = "ulEvResetMib"
50 ulEvGetVendorAndSerial = "ulEvGetVendorAndSerial"
Himani Chawla4d908332020-08-31 12:30:20 +053051 ulEvGetEquipmentID = "ulEvGetEquipmentId"
mpagenko1cc3cb42020-07-27 15:24:38 +000052 ulEvGetFirstSwVersion = "ulEvGetFirstSwVersion"
53 ulEvGetSecondSwVersion = "ulEvGetSecondSwVersion"
54 ulEvGetMacAddress = "ulEvGetMacAddress"
55 ulEvGetMibTemplate = "ulEvGetMibTemplate"
56 ulEvUploadMib = "ulEvUploadMib"
57 ulEvExamineMds = "ulEvExamineMds"
58 ulEvSuccess = "ulEvSuccess"
59 ulEvMismatch = "ulEvMismatch"
60 ulEvAuditMib = "ulEvAuditMib"
61 ulEvForceResync = "ulEvForceResync"
62 ulEvDiffsFound = "ulEvDiffsFound"
63 ulEvTimeout = "ulEvTimeout"
64 ulEvStop = "ulEvStop"
65)
66const (
67 // states of MibUpload FSM
68 ulStDisabled = "ulStDisabled"
69 ulStStarting = "ulStStarting"
70 ulStResettingMib = "ulStResettingMib"
71 ulStGettingVendorAndSerial = "ulStGettingVendorAndSerial"
Himani Chawla4d908332020-08-31 12:30:20 +053072 ulStGettingEquipmentID = "ulStGettingEquipmentID"
mpagenko1cc3cb42020-07-27 15:24:38 +000073 ulStGettingFirstSwVersion = "ulStGettingFirstSwVersion"
74 ulStGettingSecondSwVersion = "ulStGettingSecondSwVersion"
75 ulStGettingMacAddress = "ulStGettingMacAddress"
76 ulStGettingMibTemplate = "ulStGettingMibTemplate"
77 ulStUploading = "ulStUploading"
Holger Hildebrandt10d98192021-01-27 15:29:31 +000078 ulStUploadDone = "ulStUploadDone"
mpagenko1cc3cb42020-07-27 15:24:38 +000079 ulStInSync = "ulStInSync"
80 ulStExaminingMds = "ulStExaminingMds"
81 ulStResynchronizing = "ulStResynchronizing"
Holger Hildebrandtbe523842021-03-10 10:47:18 +000082 ulStExaminingMdsSuccess = "ulStExaminingMdsSuccess"
mpagenko1cc3cb42020-07-27 15:24:38 +000083 ulStAuditing = "ulStAuditing"
Holger Hildebrandt10d98192021-01-27 15:29:31 +000084 ulStReAuditing = "ulStReAuditing"
mpagenko1cc3cb42020-07-27 15:24:38 +000085 ulStOutOfSync = "ulStOutOfSync"
86)
Holger Hildebrandt10d98192021-01-27 15:29:31 +000087const cMibUlFsmIdleState = ulStInSync
mpagenko1cc3cb42020-07-27 15:24:38 +000088
89const (
90 // events of MibDownload FSM
91 dlEvStart = "dlEvStart"
92 dlEvCreateGal = "dlEvCreateGal"
93 dlEvRxGalResp = "dlEvRxGalResp"
94 dlEvRxOnu2gResp = "dlEvRxOnu2gResp"
95 dlEvRxBridgeResp = "dlEvRxBridgeResp"
96 dlEvTimeoutSimple = "dlEvTimeoutSimple"
97 dlEvTimeoutBridge = "dlEvTimeoutBridge"
98 dlEvReset = "dlEvReset"
99 dlEvRestart = "dlEvRestart"
100)
101const (
102 // states of MibDownload FSM
103 dlStDisabled = "dlStDisabled"
104 dlStStarting = "dlStStarting"
105 dlStCreatingGal = "dlStCreatingGal"
106 dlStSettingOnu2g = "dlStSettingOnu2g"
107 dlStBridgeInit = "dlStBridgeInit"
108 dlStDownloaded = "dlStDownloaded"
109 dlStResetting = "dlStResetting"
110)
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000111const cMibDlFsmIdleState = dlStDisabled
mpagenko1cc3cb42020-07-27 15:24:38 +0000112
113const (
Matteo Scandolof1f39a72020-11-24 12:08:11 -0800114 // NOTE that this hardcoded to service/voltha as the MIB template is shared across stacks
Holger Hildebrandt2ff21f12020-08-13 14:38:02 +0000115 cBasePathMibTemplateKvStore = "service/voltha/omci_mibs/go_templates"
mpagenkoaf801632020-07-03 10:00:42 +0000116 cSuffixMibTemplateKvStore = "%s/%s/%s"
Matteo Scandolof1f39a72020-11-24 12:08:11 -0800117 cBasePathOnuKVStore = "%s/openonu"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000118)
119
Himani Chawla6d2ae152020-09-02 13:11:20 +0530120// OnuDeviceEvent - event of interest to Device Adapters and OpenOMCI State Machines
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000121type OnuDeviceEvent int
122
123const (
124 // Events of interest to Device Adapters and OpenOMCI State Machines
Himani Chawla6d2ae152020-09-02 13:11:20 +0530125
126 // DeviceStatusInit - default start state
mpagenkofc4f56e2020-11-04 17:17:49 +0000127 DeviceStatusInit OnuDeviceEvent = iota
Himani Chawla6d2ae152020-09-02 13:11:20 +0530128 // MibDatabaseSync - MIB database sync (upload done)
mpagenkofc4f56e2020-11-04 17:17:49 +0000129 MibDatabaseSync
Himani Chawla6d2ae152020-09-02 13:11:20 +0530130 // OmciCapabilitiesDone - OMCI ME and message type capabilities known
mpagenkofc4f56e2020-11-04 17:17:49 +0000131 OmciCapabilitiesDone
Himani Chawla6d2ae152020-09-02 13:11:20 +0530132 // MibDownloadDone - // MIB download done
mpagenkofc4f56e2020-11-04 17:17:49 +0000133 MibDownloadDone
Himani Chawla6d2ae152020-09-02 13:11:20 +0530134 // UniLockStateDone - Uni ports admin set to lock
mpagenkofc4f56e2020-11-04 17:17:49 +0000135 UniLockStateDone
Himani Chawla6d2ae152020-09-02 13:11:20 +0530136 // UniUnlockStateDone - Uni ports admin set to unlock
mpagenkofc4f56e2020-11-04 17:17:49 +0000137 UniUnlockStateDone
mpagenko900ee4b2020-10-12 11:56:34 +0000138 // UniDisableStateDone - Uni ports admin set to lock based on device disable
mpagenkofc4f56e2020-11-04 17:17:49 +0000139 UniDisableStateDone
mpagenko900ee4b2020-10-12 11:56:34 +0000140 // UniEnableStateDone - Uni ports admin set to unlock based on device re-enable
mpagenkofc4f56e2020-11-04 17:17:49 +0000141 UniEnableStateDone
Himani Chawla6d2ae152020-09-02 13:11:20 +0530142 // PortLinkUp - Port link state change
mpagenkofc4f56e2020-11-04 17:17:49 +0000143 PortLinkUp
Himani Chawla6d2ae152020-09-02 13:11:20 +0530144 // PortLinkDw - Port link state change
mpagenkofc4f56e2020-11-04 17:17:49 +0000145 PortLinkDw
Himani Chawla6d2ae152020-09-02 13:11:20 +0530146 // OmciAniConfigDone - AniSide config according to TechProfile done
mpagenkofc4f56e2020-11-04 17:17:49 +0000147 OmciAniConfigDone
148 // OmciAniResourceRemoved - AniSide TechProfile related resource (Gem/TCont) removed
149 OmciAniResourceRemoved // needs to be the successor of OmciAniConfigDone!
mpagenkof1fc3862021-02-16 10:09:52 +0000150 // OmciVlanFilterAddDone - Omci Vlan config done according to flow-add with request to write kvStore
mpagenkofc4f56e2020-11-04 17:17:49 +0000151 OmciVlanFilterAddDone
mpagenkof1fc3862021-02-16 10:09:52 +0000152 // OmciVlanFilterAddDoneNoKvStore - Omci Vlan config done according to flow-add without writing kvStore
153 OmciVlanFilterAddDoneNoKvStore // needs to be the successor of OmciVlanFilterAddDone!
154 // OmciVlanFilterRemDone - Omci Vlan config done according to flow-remove with request to write kvStore
155 OmciVlanFilterRemDone // needs to be the successor of OmciVlanFilterAddDoneNoKvStore!
156 // OmciVlanFilterRemDoneNoKvStore - Omci Vlan config done according to flow-remove without writing kvStore
157 OmciVlanFilterRemDoneNoKvStore // needs to be the successor of OmciVlanFilterRemDone!
mpagenko80622a52021-02-09 16:53:23 +0000158 // OmciOnuSwUpgradeDone - SoftwareUpgrade to ONU finished
159 OmciOnuSwUpgradeDone
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000160 // Add other events here as needed (alarms separate???)
161)
162
mpagenko7d6bb022021-03-11 15:07:55 +0000163//AdapterFsm related error string
164//error string could be checked on waitforOmciResponse() e.g. to avoid misleading error log
165// but not used that way so far (permit error log even for wanted cancellation)
166const cErrWaitAborted = "waitResponse aborted"
167
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000168type activityDescr struct {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000169 databaseClass func(context.Context) error
Himani Chawla4d908332020-08-31 12:30:20 +0530170 //advertiseEvents bool
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000171 auditInterval time.Duration
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000172 //tasks map[string]func() error
173}
Himani Chawla6d2ae152020-09-02 13:11:20 +0530174
175// OmciDeviceFsms - FSM event mapping to database class and time to wait between audits
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000176type OmciDeviceFsms map[string]activityDescr
177
Himani Chawla6d2ae152020-09-02 13:11:20 +0530178// AdapterFsm - Adapter FSM details including channel, event and device
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000179type AdapterFsm struct {
180 fsmName string
181 deviceID string
182 commChan chan Message
183 pFsm *fsm.FSM
184}
185
Himani Chawla6d2ae152020-09-02 13:11:20 +0530186//NewAdapterFsm - FSM details including event, device and channel.
187func NewAdapterFsm(aName string, aDeviceID string, aCommChannel chan Message) *AdapterFsm {
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000188 aFsm := &AdapterFsm{
Himani Chawla6d2ae152020-09-02 13:11:20 +0530189 fsmName: aName,
190 deviceID: aDeviceID,
191 commChan: aCommChannel,
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000192 }
193 return aFsm
194}
195
196//Start starts (logs) the omci agent
dbainbri4d3a0dc2020-12-02 00:33:42 +0000197func (oo *AdapterFsm) logFsmStateChange(ctx context.Context, e *fsm.Event) {
198 logger.Debugw(ctx, "FSM state change", log.Fields{"device-id": oo.deviceID, "FSM name": oo.fsmName,
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000199 "event name": string(e.Event), "src state": string(e.Src), "dst state": string(e.Dst)})
200}
201
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000202//OntDeviceEntry structure holds information about the attached FSM'as and their communication
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000203
204const (
Himani Chawla6d2ae152020-09-02 13:11:20 +0530205 firstSwImageMeID = 0
206 secondSwImageMeID = 1
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000207)
mpagenko15ff4a52021-03-02 10:09:20 +0000208const ( //definitions as per G.988 softwareImage::IsCommitted
209 swIsUncommitted = 0
210 swIsCommitted = 1
211)
212const ( //definitions as per G.988 softwareImage::IsActive
mpagenko9c225032021-10-15 14:26:49 +0000213 swIsInactive = 0
214 swIsActive = 1
mpagenko15ff4a52021-03-02 10:09:20 +0000215)
Holger Hildebrandtfb402a62021-05-26 14:40:49 +0000216const ( //definitions as per G.988 softwareImage::IsValid
217 //swIsInvalid = 0 not yet used
218 swIsValid = 1
219)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000220const onuDataMeID = 0
Himani Chawla6d2ae152020-09-02 13:11:20 +0530221const onugMeID = 0
222const onu2gMeID = 0
223const ipHostConfigDataMeID = 1
224const onugSerialNumberLen = 8
225const omciMacAddressLen = 6
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000226
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000227const cEmptyMacAddrString = "000000000000"
228const cEmptySerialNumberString = "0000000000000000"
229
mpagenko15ff4a52021-03-02 10:09:20 +0000230type sEntrySwImageIndication struct {
231 valid bool
232 entityID uint16
233 version string
234 isCommitted uint8
235}
236type sSwImageIndications struct {
237 activeEntityEntry sEntrySwImageIndication
238 inactiveEntityEntry sEntrySwImageIndication
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000239}
240
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000241type uniPersConfig struct {
242 PersUniID uint8 `json:"uni_id"`
Girish Gowdra041dcb32020-11-16 16:54:30 -0800243 PersTpPathMap map[uint8]string `json:"PersTpPathMap"` // tp-id to tp-path map
244 PersFlowParams []uniVlanFlowParams `json:"flow_params"` //as defined in omci_ani_config.go
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000245}
246
247type onuPersistentData struct {
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700248 PersOnuID uint32 `json:"onu_id"`
249 PersIntfID uint32 `json:"intf_id"`
250 PersSerialNumber string `json:"serial_number"`
251 PersMacAddress string `json:"mac_address"`
252 PersVendorID string `json:"vendor_id"`
253 PersEquipmentID string `json:"equipment_id"`
254 PersActiveSwVersion string `json:"active_sw_version"`
255 PersAdminState string `json:"admin_state"`
256 PersOperState string `json:"oper_state"`
257 PersUniUnlockDone bool `json:"uni_unlock_done"`
258 PersUniDisableDone bool `json:"uni_disable_done"`
259 PersMibAuditInterval time.Duration `json:"mib_audit_interval"`
260 PersMibLastDbSync uint32 `json:"mib_last_db_sync"`
261 PersMibDataSyncAdpt uint8 `json:"mib_data_sync_adpt"`
262 PersUniConfig []uniPersConfig `json:"uni_config"`
263 PersAlarmAuditInterval time.Duration `json:"alarm_audit_interval"`
264 PersTcontMap map[uint16]uint16 `json:"tcont_map"` //alloc-id to me-instance-id map
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000265}
266
Himani Chawla6d2ae152020-09-02 13:11:20 +0530267// OnuDeviceEntry - ONU device info and FSM events.
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000268type OnuDeviceEntry struct {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000269 deviceID string
270 baseDeviceHandler *deviceHandler
271 pOpenOnuAc *OpenONUAC
272 coreProxy adapterif.CoreProxy
273 adapterProxy adapterif.AdapterProxy
274 PDevOmciCC *omciCC
275 pOnuDB *onuDeviceDB
276 mibTemplateKVStore *db.Backend
277 mutexPersOnuConfig sync.RWMutex
278 sOnuPersistentData onuPersistentData
279 mibTemplatePath string
280 mutexOnuKVStore sync.RWMutex
281 onuKVStore *db.Backend
282 onuKVStorePath string
283 mutexOnuKVStoreProcResult sync.RWMutex
284 onuKVStoreProcResult error //error indication of processing
285 chOnuKvProcessingStep chan uint8
286 mutexOnuSwImageIndications sync.RWMutex
287 onuSwImageIndications sSwImageIndications
288 mutexOnuImageStatus sync.RWMutex
289 pOnuImageStatus *OnuImageStatus
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000290 //lockDeviceEntries sync.RWMutex
dbainbri4d3a0dc2020-12-02 00:33:42 +0000291 mibDbClass func(context.Context) error
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000292 supportedFsms OmciDeviceFsms
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000293 devState OnuDeviceEvent
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000294 // Audit and MDS
Himani Chawla075f1642021-03-15 19:23:24 +0530295 mibAuditInterval time.Duration
296 alarmAuditInterval time.Duration
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000297 // TODO: periodical mib resync will be implemented with story VOL-3792
298 //mibNextDbResync uint32
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000299
300 // for mibUpload
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000301 pMibUploadFsm *AdapterFsm //could be handled dynamically and more general as pAdapterFsm - perhaps later
302 mutexLastTxParamStruct sync.RWMutex
303 lastTxParamStruct sLastTxMeParameter
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000304 // for mibDownload
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000305 pMibDownloadFsm *AdapterFsm //could be handled dynamically and more general as pAdapterFsm - perhaps later
306 //remark: general usage of pAdapterFsm would require generalization of commChan usage and internal event setting
307 // within the FSM event procedures
ozgecanetsiae11479f2020-07-06 09:44:47 +0300308 omciMessageReceived chan bool //seperate channel needed by DownloadFsm
309 omciRebootMessageReceivedChannel chan Message // channel needed by Reboot request
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700310
311 mutexTcontMap sync.RWMutex
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000312}
313
Himani Chawla6d2ae152020-09-02 13:11:20 +0530314//newOnuDeviceEntry returns a new instance of a OnuDeviceEntry
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000315//mib_db (as well as not inluded alarm_db not really used in this code? VERIFY!!)
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000316func newOnuDeviceEntry(ctx context.Context, dh *deviceHandler) *OnuDeviceEntry {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000317 logger.Debugw(ctx, "init-onuDeviceEntry", log.Fields{"device-id": dh.deviceID})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000318 var onuDeviceEntry OnuDeviceEntry
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000319 onuDeviceEntry.deviceID = dh.deviceID
320 onuDeviceEntry.baseDeviceHandler = dh
321 onuDeviceEntry.pOpenOnuAc = dh.pOpenOnuAc
322 onuDeviceEntry.coreProxy = dh.coreProxy
323 onuDeviceEntry.adapterProxy = dh.AdapterProxy
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000324 onuDeviceEntry.devState = DeviceStatusInit
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000325 onuDeviceEntry.sOnuPersistentData.PersUniConfig = make([]uniPersConfig, 0)
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700326 onuDeviceEntry.sOnuPersistentData.PersTcontMap = make(map[uint16]uint16)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000327 onuDeviceEntry.chOnuKvProcessingStep = make(chan uint8)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300328 onuDeviceEntry.omciRebootMessageReceivedChannel = make(chan Message, 2048)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000329 //openomciagent.lockDeviceHandlersMap = sync.RWMutex{}
330 //OMCI related databases are on a per-agent basis. State machines and tasks
331 //are per ONU Vendor
332 //
333 // MIB Synchronization Database - possible overloading from arguments
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000334 if dh.pOpenOnuAc.pSupportedFsms != nil {
335 onuDeviceEntry.supportedFsms = *dh.pOpenOnuAc.pSupportedFsms
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000336 } else {
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000337 // This branch is currently not used and is for potential future usage of alternative MIB Sync FSMs only!
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000338 //var mibSyncFsm = NewMibSynchronizer()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000339 // use some internal defaults, if not defined from outside
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000340 onuDeviceEntry.supportedFsms = OmciDeviceFsms{
341 "mib-synchronizer": {
342 //mibSyncFsm, // Implements the MIB synchronization state machine
Himani Chawla6d2ae152020-09-02 13:11:20 +0530343 onuDeviceEntry.mibDbVolatileDict, // Implements volatile ME MIB database
Himani Chawla4d908332020-08-31 12:30:20 +0530344 //true, // Advertise events on OpenOMCI event bus
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000345 dh.pOpenOnuAc.mibAuditInterval, // Time to wait between MIB audits. 0 to disable audits.
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000346 // map[string]func() error{
347 // "mib-upload": onuDeviceEntry.MibUploadTask,
348 // "mib-template": onuDeviceEntry.MibTemplateTask,
349 // "get-mds": onuDeviceEntry.GetMdsTask,
350 // "mib-audit": onuDeviceEntry.GetMdsTask,
351 // "mib-resync": onuDeviceEntry.MibResyncTask,
352 // "mib-reconcile": onuDeviceEntry.MibReconcileTask,
353 // },
354 },
355 }
356 }
357 onuDeviceEntry.mibDbClass = onuDeviceEntry.supportedFsms["mib-synchronizer"].databaseClass
dbainbri4d3a0dc2020-12-02 00:33:42 +0000358 logger.Debug(ctx, "access2mibDbClass")
359 go onuDeviceEntry.mibDbClass(ctx)
Holger Hildebrandtf37b3d72021-02-17 10:25:22 +0000360 if !dh.isReconciling() {
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000361 onuDeviceEntry.mibAuditInterval = onuDeviceEntry.supportedFsms["mib-synchronizer"].auditInterval
362 onuDeviceEntry.sOnuPersistentData.PersMibAuditInterval = onuDeviceEntry.mibAuditInterval
Himani Chawla075f1642021-03-15 19:23:24 +0530363 onuDeviceEntry.alarmAuditInterval = dh.pOpenOnuAc.alarmAuditInterval
364 onuDeviceEntry.sOnuPersistentData.PersAlarmAuditInterval = onuDeviceEntry.alarmAuditInterval
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000365 } else {
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000366 logger.Debugw(ctx, "reconciling - take audit interval from persistent data", log.Fields{"device-id": dh.deviceID})
367 // TODO: This is a preparation for VOL-VOL-3811 to preserve config history in case of
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000368 // vendor- or deviceID-specific configurations via voltctl-commands
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000369 onuDeviceEntry.mibAuditInterval = onuDeviceEntry.sOnuPersistentData.PersMibAuditInterval
Himani Chawla075f1642021-03-15 19:23:24 +0530370 onuDeviceEntry.alarmAuditInterval = onuDeviceEntry.sOnuPersistentData.PersAlarmAuditInterval
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000371 }
Himani Chawla075f1642021-03-15 19:23:24 +0530372 logger.Debugw(ctx, "MibAuditInterval and AlarmAuditInterval is set to", log.Fields{"mib-audit-interval": onuDeviceEntry.mibAuditInterval,
373 "alarm-audit-interval": onuDeviceEntry.alarmAuditInterval})
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000374 // TODO: periodical mib resync will be implemented with story VOL-3792
375 //onuDeviceEntry.mibNextDbResync = 0
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000376
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000377 // Omci related Mib upload sync state machine
378 mibUploadChan := make(chan Message, 2048)
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000379 onuDeviceEntry.pMibUploadFsm = NewAdapterFsm("MibUpload", dh.deviceID, mibUploadChan)
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000380 onuDeviceEntry.pMibUploadFsm.pFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +0000381 ulStDisabled,
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000382 fsm.Events{
383
mpagenko1cc3cb42020-07-27 15:24:38 +0000384 {Name: ulEvStart, Src: []string{ulStDisabled}, Dst: ulStStarting},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000385
mpagenko1cc3cb42020-07-27 15:24:38 +0000386 {Name: ulEvResetMib, Src: []string{ulStStarting}, Dst: ulStResettingMib},
387 {Name: ulEvGetVendorAndSerial, Src: []string{ulStResettingMib}, Dst: ulStGettingVendorAndSerial},
Himani Chawla4d908332020-08-31 12:30:20 +0530388 {Name: ulEvGetEquipmentID, Src: []string{ulStGettingVendorAndSerial}, Dst: ulStGettingEquipmentID},
389 {Name: ulEvGetFirstSwVersion, Src: []string{ulStGettingEquipmentID}, Dst: ulStGettingFirstSwVersion},
mpagenko1cc3cb42020-07-27 15:24:38 +0000390 {Name: ulEvGetSecondSwVersion, Src: []string{ulStGettingFirstSwVersion}, Dst: ulStGettingSecondSwVersion},
391 {Name: ulEvGetMacAddress, Src: []string{ulStGettingSecondSwVersion}, Dst: ulStGettingMacAddress},
392 {Name: ulEvGetMibTemplate, Src: []string{ulStGettingMacAddress}, Dst: ulStGettingMibTemplate},
Holger Hildebrandtc54939a2020-06-17 08:14:27 +0000393
mpagenko1cc3cb42020-07-27 15:24:38 +0000394 {Name: ulEvUploadMib, Src: []string{ulStGettingMibTemplate}, Dst: ulStUploading},
395 {Name: ulEvExamineMds, Src: []string{ulStStarting}, Dst: ulStExaminingMds},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000396
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000397 {Name: ulEvSuccess, Src: []string{ulStGettingMibTemplate}, Dst: ulStUploadDone},
398 {Name: ulEvSuccess, Src: []string{ulStUploading}, Dst: ulStUploadDone},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000399
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000400 {Name: ulEvSuccess, Src: []string{ulStUploadDone}, Dst: ulStInSync},
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000401 //{Name: ulEvSuccess, Src: []string{ulStExaminingMds}, Dst: ulStInSync},
402 {Name: ulEvSuccess, Src: []string{ulStExaminingMds}, Dst: ulStExaminingMdsSuccess},
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000403 // TODO: As long as mib-resynchronizing is not implemented, failed MDS-examination triggers
404 // mib-reset and new provisioning at this point
405 //{Name: ulEvMismatch, Src: []string{ulStExaminingMds}, Dst: ulStResynchronizing},
406 {Name: ulEvMismatch, Src: []string{ulStExaminingMds}, Dst: ulStResettingMib},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000407
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000408 {Name: ulEvSuccess, Src: []string{ulStExaminingMdsSuccess}, Dst: ulStInSync},
409 {Name: ulEvMismatch, Src: []string{ulStExaminingMdsSuccess}, Dst: ulStResettingMib},
410
mpagenko1cc3cb42020-07-27 15:24:38 +0000411 {Name: ulEvAuditMib, Src: []string{ulStInSync}, Dst: ulStAuditing},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000412
mpagenko1cc3cb42020-07-27 15:24:38 +0000413 {Name: ulEvSuccess, Src: []string{ulStOutOfSync}, Dst: ulStInSync},
414 {Name: ulEvAuditMib, Src: []string{ulStOutOfSync}, Dst: ulStAuditing},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000415
mpagenko1cc3cb42020-07-27 15:24:38 +0000416 {Name: ulEvSuccess, Src: []string{ulStAuditing}, Dst: ulStInSync},
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000417 {Name: ulEvMismatch, Src: []string{ulStAuditing}, Dst: ulStReAuditing},
mpagenko1cc3cb42020-07-27 15:24:38 +0000418 {Name: ulEvForceResync, Src: []string{ulStAuditing}, Dst: ulStResynchronizing},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000419
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000420 {Name: ulEvSuccess, Src: []string{ulStReAuditing}, Dst: ulStInSync},
421 {Name: ulEvMismatch, Src: []string{ulStReAuditing}, Dst: ulStResettingMib},
422
mpagenko1cc3cb42020-07-27 15:24:38 +0000423 {Name: ulEvSuccess, Src: []string{ulStResynchronizing}, Dst: ulStInSync},
424 {Name: ulEvDiffsFound, Src: []string{ulStResynchronizing}, Dst: ulStOutOfSync},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000425
Himani Chawla4d908332020-08-31 12:30:20 +0530426 {Name: ulEvTimeout, Src: []string{ulStResettingMib, ulStGettingVendorAndSerial, ulStGettingEquipmentID, ulStGettingFirstSwVersion,
mpagenko1cc3cb42020-07-27 15:24:38 +0000427 ulStGettingSecondSwVersion, ulStGettingMacAddress, ulStGettingMibTemplate, ulStUploading, ulStResynchronizing, ulStExaminingMds,
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000428 ulStUploadDone, ulStInSync, ulStOutOfSync, ulStAuditing, ulStReAuditing}, Dst: ulStStarting},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000429
Himani Chawla4d908332020-08-31 12:30:20 +0530430 {Name: ulEvStop, Src: []string{ulStStarting, ulStResettingMib, ulStGettingVendorAndSerial, ulStGettingEquipmentID, ulStGettingFirstSwVersion,
mpagenko1cc3cb42020-07-27 15:24:38 +0000431 ulStGettingSecondSwVersion, ulStGettingMacAddress, ulStGettingMibTemplate, ulStUploading, ulStResynchronizing, ulStExaminingMds,
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000432 ulStUploadDone, ulStInSync, ulStOutOfSync, ulStAuditing, ulStReAuditing}, Dst: ulStDisabled},
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000433 },
434
435 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000436 "enter_state": func(e *fsm.Event) { onuDeviceEntry.pMibUploadFsm.logFsmStateChange(ctx, e) },
437 "enter_" + ulStStarting: func(e *fsm.Event) { onuDeviceEntry.enterStartingState(ctx, e) },
438 "enter_" + ulStResettingMib: func(e *fsm.Event) { onuDeviceEntry.enterResettingMibState(ctx, e) },
439 "enter_" + ulStGettingVendorAndSerial: func(e *fsm.Event) { onuDeviceEntry.enterGettingVendorAndSerialState(ctx, e) },
440 "enter_" + ulStGettingEquipmentID: func(e *fsm.Event) { onuDeviceEntry.enterGettingEquipmentIDState(ctx, e) },
441 "enter_" + ulStGettingFirstSwVersion: func(e *fsm.Event) { onuDeviceEntry.enterGettingFirstSwVersionState(ctx, e) },
442 "enter_" + ulStGettingSecondSwVersion: func(e *fsm.Event) { onuDeviceEntry.enterGettingSecondSwVersionState(ctx, e) },
443 "enter_" + ulStGettingMacAddress: func(e *fsm.Event) { onuDeviceEntry.enterGettingMacAddressState(ctx, e) },
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000444 "enter_" + ulStGettingMibTemplate: func(e *fsm.Event) { onuDeviceEntry.enterGettingMibTemplateState(ctx, e) },
dbainbri4d3a0dc2020-12-02 00:33:42 +0000445 "enter_" + ulStUploading: func(e *fsm.Event) { onuDeviceEntry.enterUploadingState(ctx, e) },
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000446 "enter_" + ulStUploadDone: func(e *fsm.Event) { onuDeviceEntry.enterUploadDoneState(ctx, e) },
dbainbri4d3a0dc2020-12-02 00:33:42 +0000447 "enter_" + ulStExaminingMds: func(e *fsm.Event) { onuDeviceEntry.enterExaminingMdsState(ctx, e) },
448 "enter_" + ulStResynchronizing: func(e *fsm.Event) { onuDeviceEntry.enterResynchronizingState(ctx, e) },
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000449 "enter_" + ulStExaminingMdsSuccess: func(e *fsm.Event) { onuDeviceEntry.enterExaminingMdsSuccessState(ctx, e) },
dbainbri4d3a0dc2020-12-02 00:33:42 +0000450 "enter_" + ulStAuditing: func(e *fsm.Event) { onuDeviceEntry.enterAuditingState(ctx, e) },
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000451 "enter_" + ulStReAuditing: func(e *fsm.Event) { onuDeviceEntry.enterReAuditingState(ctx, e) },
dbainbri4d3a0dc2020-12-02 00:33:42 +0000452 "enter_" + ulStOutOfSync: func(e *fsm.Event) { onuDeviceEntry.enterOutOfSyncState(ctx, e) },
453 "enter_" + ulStInSync: func(e *fsm.Event) { onuDeviceEntry.enterInSyncState(ctx, e) },
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000454 },
455 )
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000456 // Omci related Mib download state machine
457 mibDownloadChan := make(chan Message, 2048)
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000458 onuDeviceEntry.pMibDownloadFsm = NewAdapterFsm("MibDownload", dh.deviceID, mibDownloadChan)
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000459 onuDeviceEntry.pMibDownloadFsm.pFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +0000460 dlStDisabled,
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000461 fsm.Events{
462
mpagenko1cc3cb42020-07-27 15:24:38 +0000463 {Name: dlEvStart, Src: []string{dlStDisabled}, Dst: dlStStarting},
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000464
mpagenko1cc3cb42020-07-27 15:24:38 +0000465 {Name: dlEvCreateGal, Src: []string{dlStStarting}, Dst: dlStCreatingGal},
466 {Name: dlEvRxGalResp, Src: []string{dlStCreatingGal}, Dst: dlStSettingOnu2g},
467 {Name: dlEvRxOnu2gResp, Src: []string{dlStSettingOnu2g}, Dst: dlStBridgeInit},
Holger Hildebrandtdd23cc22020-05-19 13:32:18 +0000468 // the bridge state is used for multi ME config for alle UNI related ports
469 // maybe such could be reflected in the state machine as well (port number parametrized)
470 // but that looks not straightforward here - so we keep it simple here for the beginning(?)
mpagenko1cc3cb42020-07-27 15:24:38 +0000471 {Name: dlEvRxBridgeResp, Src: []string{dlStBridgeInit}, Dst: dlStDownloaded},
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000472
mpagenko1cc3cb42020-07-27 15:24:38 +0000473 {Name: dlEvTimeoutSimple, Src: []string{dlStCreatingGal, dlStSettingOnu2g}, Dst: dlStStarting},
474 {Name: dlEvTimeoutBridge, Src: []string{dlStBridgeInit}, Dst: dlStStarting},
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000475
mpagenko1cc3cb42020-07-27 15:24:38 +0000476 {Name: dlEvReset, Src: []string{dlStStarting, dlStCreatingGal, dlStSettingOnu2g,
477 dlStBridgeInit, dlStDownloaded}, Dst: dlStResetting},
478 // exceptional treatment for all states except dlStResetting
479 {Name: dlEvRestart, Src: []string{dlStStarting, dlStCreatingGal, dlStSettingOnu2g,
480 dlStBridgeInit, dlStDownloaded, dlStResetting}, Dst: dlStDisabled},
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000481 },
482
483 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000484 "enter_state": func(e *fsm.Event) { onuDeviceEntry.pMibDownloadFsm.logFsmStateChange(ctx, e) },
485 "enter_" + dlStStarting: func(e *fsm.Event) { onuDeviceEntry.enterDLStartingState(ctx, e) },
486 "enter_" + dlStCreatingGal: func(e *fsm.Event) { onuDeviceEntry.enterCreatingGalState(ctx, e) },
487 "enter_" + dlStSettingOnu2g: func(e *fsm.Event) { onuDeviceEntry.enterSettingOnu2gState(ctx, e) },
488 "enter_" + dlStBridgeInit: func(e *fsm.Event) { onuDeviceEntry.enterBridgeInitState(ctx, e) },
489 "enter_" + dlStDownloaded: func(e *fsm.Event) { onuDeviceEntry.enterDownloadedState(ctx, e) },
490 "enter_" + dlStResetting: func(e *fsm.Event) { onuDeviceEntry.enterResettingState(ctx, e) },
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000491 },
492 )
493 if onuDeviceEntry.pMibDownloadFsm == nil || onuDeviceEntry.pMibDownloadFsm.pFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000494 logger.Errorw(ctx, "MibDownloadFsm could not be instantiated", log.Fields{"device-id": dh.deviceID})
mpagenko15ff4a52021-03-02 10:09:20 +0000495 // TODO some specific error treatment - or waiting for crash ?
Holger Hildebrandt9ac0d0f2020-05-13 11:22:02 +0000496 }
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000497
dbainbri4d3a0dc2020-12-02 00:33:42 +0000498 onuDeviceEntry.mibTemplateKVStore = onuDeviceEntry.baseDeviceHandler.setBackend(ctx, cBasePathMibTemplateKvStore)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000499 if onuDeviceEntry.mibTemplateKVStore == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000500 logger.Errorw(ctx, "Can't access mibTemplateKVStore - no backend connection to service",
Holger Hildebrandt61b24d02020-11-16 13:36:40 +0000501 log.Fields{"device-id": dh.deviceID, "service": cBasePathMibTemplateKvStore})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000502 }
503
504 onuDeviceEntry.onuKVStorePath = onuDeviceEntry.deviceID
Matteo Scandolof1f39a72020-11-24 12:08:11 -0800505 baseKvStorePath := fmt.Sprintf(cBasePathOnuKVStore, dh.pOpenOnuAc.cm.Backend.PathPrefix)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000506 onuDeviceEntry.onuKVStore = onuDeviceEntry.baseDeviceHandler.setBackend(ctx, baseKvStorePath)
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000507 if onuDeviceEntry.onuKVStore == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000508 logger.Errorw(ctx, "Can't access onuKVStore - no backend connection to service",
Matteo Scandolof1f39a72020-11-24 12:08:11 -0800509 log.Fields{"device-id": dh.deviceID, "service": baseKvStorePath})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000510 }
511
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000512 // Alarm Synchronization Database
Himani Chawlaac1f5ad2021-02-04 21:21:54 +0530513
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000514 //self._alarm_db = None
515 //self._alarm_database_cls = support_classes['alarm-synchronizer']['database']
516 return &onuDeviceEntry
517}
518
Himani Chawla6d2ae152020-09-02 13:11:20 +0530519//start starts (logs) the omci agent
520func (oo *OnuDeviceEntry) start(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000521 logger.Debugw(ctx, "OnuDeviceEntry-starting", log.Fields{"for device-id": oo.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000522 if oo.PDevOmciCC == nil {
mpagenko900ee4b2020-10-12 11:56:34 +0000523 oo.PDevOmciCC = newOmciCC(ctx, oo, oo.deviceID, oo.baseDeviceHandler,
524 oo.coreProxy, oo.adapterProxy)
525 if oo.PDevOmciCC == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000526 logger.Errorw(ctx, "Could not create devOmciCc - abort", log.Fields{"for device-id": oo.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +0000527 return fmt.Errorf("could not create devOmciCc %s", oo.deviceID)
528 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000529 }
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000530 return nil
531}
532
mpagenko900ee4b2020-10-12 11:56:34 +0000533//stop stops/resets the omciCC
534func (oo *OnuDeviceEntry) stop(ctx context.Context, abResetOmciCC bool) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000535 logger.Debugw(ctx, "OnuDeviceEntry-stopping", log.Fields{"for device-id": oo.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +0000536 if abResetOmciCC && (oo.PDevOmciCC != nil) {
537 _ = oo.PDevOmciCC.stop(ctx)
538 }
539 //to allow for all event notifications again when re-using the device and omciCC
540 oo.devState = DeviceStatusInit
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000541 return nil
542}
543
Himani Chawla6d2ae152020-09-02 13:11:20 +0530544func (oo *OnuDeviceEntry) reboot(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000545 logger.Debugw(ctx, "OnuDeviceEntry-rebooting", log.Fields{"for device-id": oo.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +0000546 if oo.PDevOmciCC != nil {
Girish Gowdra0b235842021-03-09 13:06:46 -0800547 if err := oo.PDevOmciCC.sendReboot(ctx, oo.pOpenOnuAc.omciTimeout, true, oo.omciRebootMessageReceivedChannel); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000548 logger.Errorw(ctx, "onu didn't reboot", log.Fields{"for device-id": oo.deviceID})
mpagenko900ee4b2020-10-12 11:56:34 +0000549 return err
550 }
ozgecanetsiae11479f2020-07-06 09:44:47 +0300551 }
ozgecanetsiae11479f2020-07-06 09:44:47 +0300552 return nil
553}
554
dbainbri4d3a0dc2020-12-02 00:33:42 +0000555func (oo *OnuDeviceEntry) waitForRebootResponse(ctx context.Context, responseChannel chan Message) error {
ozgecanetsiae11479f2020-07-06 09:44:47 +0300556 select {
Holger Hildebrandt366ef192021-05-05 11:07:44 +0000557 case <-time.After(oo.PDevOmciCC.GetMaxOmciTimeoutWithRetries() * time.Second): //3s was detected to be to less in 8*8 bbsim test with debug Info/Debug
dbainbri4d3a0dc2020-12-02 00:33:42 +0000558 logger.Warnw(ctx, "Reboot timeout", log.Fields{"for device-id": oo.deviceID})
Andrea Campanella6515c582020-10-05 11:25:00 +0200559 return fmt.Errorf("rebootTimeout")
ozgecanetsiae11479f2020-07-06 09:44:47 +0300560 case data := <-responseChannel:
561 switch data.Data.(OmciMessage).OmciMsg.MessageType {
562 case omci.RebootResponseType:
563 {
564 msgLayer := (*data.Data.(OmciMessage).OmciPacket).Layer(omci.LayerTypeRebootResponse)
565 if msgLayer == nil {
Andrea Campanella6515c582020-10-05 11:25:00 +0200566 return fmt.Errorf("omci Msg layer could not be detected for RebootResponseType")
ozgecanetsiae11479f2020-07-06 09:44:47 +0300567 }
Andrea Campanellabef4e542020-10-22 11:01:28 +0200568 msgObj, msgOk := msgLayer.(*omci.RebootResponse)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300569 if !msgOk {
Andrea Campanella6515c582020-10-05 11:25:00 +0200570 return fmt.Errorf("omci Msg layer could not be assigned for RebootResponseType %s", oo.deviceID)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300571 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000572 logger.Debugw(ctx, "RebootResponse data", log.Fields{"device-id": oo.deviceID, "data-fields": msgObj})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300573 if msgObj.Result != me.Success {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000574 logger.Errorw(ctx, "Omci RebootResponse result error", log.Fields{"device-id": oo.deviceID, "Error": msgObj.Result})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300575 // possibly force FSM into abort or ignore some errors for some messages? store error for mgmt display?
Andrea Campanellabef4e542020-10-22 11:01:28 +0200576 return fmt.Errorf("omci RebootResponse result error indication %s for device %s",
Andrea Campanella6515c582020-10-05 11:25:00 +0200577 msgObj.Result, oo.deviceID)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300578 }
579 return nil
580 }
581 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000582 logger.Warnw(ctx, "Reboot response message type error", log.Fields{"for device-id": oo.deviceID})
Andrea Campanella6515c582020-10-05 11:25:00 +0200583 return fmt.Errorf("unexpected OmciResponse type received %s", oo.deviceID)
ozgecanetsiae11479f2020-07-06 09:44:47 +0300584 }
585}
586
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000587//Relay the InSync message via Handler to Rw core - Status update
dbainbri4d3a0dc2020-12-02 00:33:42 +0000588func (oo *OnuDeviceEntry) transferSystemEvent(ctx context.Context, devEvent OnuDeviceEvent) {
589 logger.Debugw(ctx, "relaying system-event", log.Fields{"Event": devEvent})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000590 // decouple the handler transfer from further processing here
591 // TODO!!! check if really no synch is required within the system e.g. to ensure following steps ..
Himani Chawla26e555c2020-08-31 12:30:20 +0530592 if devEvent == MibDatabaseSync {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000593 if oo.devState < MibDatabaseSync { //devState has not been synced yet
594 oo.devState = MibDatabaseSync
dbainbri4d3a0dc2020-12-02 00:33:42 +0000595 go oo.baseDeviceHandler.deviceProcStatusUpdate(ctx, devEvent)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000596 //TODO!!! device control: next step: start MIB capability verification from here ?!!!
597 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000598 logger.Debugw(ctx, "mibinsync-event in some already synced state - ignored", log.Fields{"state": oo.devState})
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000599 }
Himani Chawla26e555c2020-08-31 12:30:20 +0530600 } else if devEvent == MibDownloadDone {
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000601 if oo.devState < MibDownloadDone { //devState has not been synced yet
602 oo.devState = MibDownloadDone
dbainbri4d3a0dc2020-12-02 00:33:42 +0000603 go oo.baseDeviceHandler.deviceProcStatusUpdate(ctx, devEvent)
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000604 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000605 logger.Debugw(ctx, "mibdownloaddone-event was already seen - ignored", log.Fields{"state": oo.devState})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000606 }
607 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000608 logger.Warnw(ctx, "device-event not yet handled", log.Fields{"state": devEvent})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000609 }
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000610}
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000611
612func (oo *OnuDeviceEntry) restoreDataFromOnuKvStore(ctx context.Context) error {
613 if oo.onuKVStore == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000614 logger.Debugw(ctx, "onuKVStore not set - abort", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000615 return fmt.Errorf(fmt.Sprintf("onuKVStore-not-set-abort-%s", oo.deviceID))
616 }
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000617 oo.mutexPersOnuConfig.Lock()
618 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000619 oo.sOnuPersistentData =
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700620 onuPersistentData{0, 0, "", "", "", "", "", "", "", false, false, oo.mibAuditInterval, 0, 0, make([]uniPersConfig, 0), oo.alarmAuditInterval, make(map[uint16]uint16)}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000621 oo.mutexOnuKVStore.RLock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000622 Value, err := oo.onuKVStore.Get(ctx, oo.onuKVStorePath)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000623 oo.mutexOnuKVStore.RUnlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000624 if err == nil {
625 if Value != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000626 logger.Debugw(ctx, "ONU-data read",
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000627 log.Fields{"Key": Value.Key, "device-id": oo.deviceID})
628 tmpBytes, _ := kvstore.ToByte(Value.Value)
629
630 if err = json.Unmarshal(tmpBytes, &oo.sOnuPersistentData); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000631 logger.Errorw(ctx, "unable to unmarshal ONU-data", log.Fields{"error": err, "device-id": oo.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000632 return fmt.Errorf(fmt.Sprintf("unable-to-unmarshal-ONU-data-%s", oo.deviceID))
633 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000634 logger.Debugw(ctx, "ONU-data", log.Fields{"sOnuPersistentData": oo.sOnuPersistentData,
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000635 "device-id": oo.deviceID})
636 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000637 logger.Debugw(ctx, "no ONU-data found", log.Fields{"path": oo.onuKVStorePath, "device-id": oo.deviceID})
mpagenko2418ab02020-11-12 12:58:06 +0000638 return fmt.Errorf("no-ONU-data-found")
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000639 }
640 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000641 logger.Errorw(ctx, "unable to read from KVstore", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000642 return fmt.Errorf(fmt.Sprintf("unable-to-read-from-KVstore-%s", oo.deviceID))
643 }
644 return nil
645}
646
647func (oo *OnuDeviceEntry) deleteDataFromOnuKvStore(ctx context.Context, wg *sync.WaitGroup) {
648 defer wg.Done()
649
650 if oo.onuKVStore == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000651 logger.Debugw(ctx, "onuKVStore not set - abort", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000652 oo.setKvProcessingErrorIndication(errors.New("onu-data delete aborted: onuKVStore not set"))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000653 return
654 }
655 var processingStep uint8 = 1 // used to synchronize the different processing steps with chOnuKvProcessingStep
656 go oo.deletePersistentData(ctx, processingStep)
657 if !oo.waitForTimeoutOrCompletion(ctx, oo.chOnuKvProcessingStep, processingStep) {
658 //timeout or error detected
dbainbri4d3a0dc2020-12-02 00:33:42 +0000659 logger.Debugw(ctx, "ONU-data not deleted - abort", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000660 oo.setKvProcessingErrorIndication(errors.New("onu-data delete aborted: during kv-access"))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000661 return
662 }
663}
664
665func (oo *OnuDeviceEntry) deletePersistentData(ctx context.Context, aProcessingStep uint8) {
666
dbainbri4d3a0dc2020-12-02 00:33:42 +0000667 logger.Debugw(ctx, "delete and clear internal persistency data", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000668
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000669 oo.mutexPersOnuConfig.Lock()
670 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000671
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000672 oo.sOnuPersistentData.PersUniConfig = nil //releasing all UniConfig entries to garbage collector default entry
673 oo.sOnuPersistentData =
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700674 onuPersistentData{0, 0, "", "", "", "", "", "", "", false, false, oo.mibAuditInterval, 0, 0, make([]uniPersConfig, 0), oo.alarmAuditInterval, make(map[uint16]uint16)}
dbainbri4d3a0dc2020-12-02 00:33:42 +0000675 logger.Debugw(ctx, "delete ONU-data from KVStore", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000676 oo.mutexOnuKVStore.Lock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000677 err := oo.onuKVStore.Delete(ctx, oo.onuKVStorePath)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000678 oo.mutexOnuKVStore.Unlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000679 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000680 logger.Errorw(ctx, "unable to delete in KVstore", log.Fields{"device-id": oo.deviceID, "err": err})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000681 oo.chOnuKvProcessingStep <- 0 //error indication
682 return
683 }
684 oo.chOnuKvProcessingStep <- aProcessingStep //done
685}
686
687func (oo *OnuDeviceEntry) updateOnuKvStore(ctx context.Context, wg *sync.WaitGroup) {
688 defer wg.Done()
689
690 if oo.onuKVStore == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000691 logger.Debugw(ctx, "onuKVStore not set - abort", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000692 oo.setKvProcessingErrorIndication(errors.New("onu-data update aborted: onuKVStore not set"))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000693 return
694 }
695 var processingStep uint8 = 1 // used to synchronize the different processing steps with chOnuKvProcessingStep
696 go oo.storeDataInOnuKvStore(ctx, processingStep)
697 if !oo.waitForTimeoutOrCompletion(ctx, oo.chOnuKvProcessingStep, processingStep) {
698 //timeout or error detected
dbainbri4d3a0dc2020-12-02 00:33:42 +0000699 logger.Debugw(ctx, "ONU-data not written - abort", log.Fields{"device-id": oo.deviceID})
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000700 oo.setKvProcessingErrorIndication(errors.New("onu-data update aborted: during writing process"))
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000701 return
702 }
703}
704
705func (oo *OnuDeviceEntry) storeDataInOnuKvStore(ctx context.Context, aProcessingStep uint8) {
706
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000707 oo.mutexPersOnuConfig.Lock()
708 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000709 //assign values which are not already present when newOnuDeviceEntry() is called
710 oo.sOnuPersistentData.PersOnuID = oo.baseDeviceHandler.pOnuIndication.OnuId
711 oo.sOnuPersistentData.PersIntfID = oo.baseDeviceHandler.pOnuIndication.IntfId
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000712 //TODO: verify usage of these values during restart UC
Holger Hildebrandt3a644642020-12-02 09:46:18 +0000713 oo.sOnuPersistentData.PersAdminState = oo.baseDeviceHandler.pOnuIndication.AdminState
714 oo.sOnuPersistentData.PersOperState = oo.baseDeviceHandler.pOnuIndication.OperState
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000715
dbainbri4d3a0dc2020-12-02 00:33:42 +0000716 logger.Debugw(ctx, "Update ONU-data in KVStore", log.Fields{"device-id": oo.deviceID, "sOnuPersistentData": oo.sOnuPersistentData})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000717
718 Value, err := json.Marshal(oo.sOnuPersistentData)
719 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000720 logger.Errorw(ctx, "unable to marshal ONU-data", log.Fields{"sOnuPersistentData": oo.sOnuPersistentData,
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000721 "device-id": oo.deviceID, "err": err})
722 oo.chOnuKvProcessingStep <- 0 //error indication
723 return
724 }
Holger Hildebrandtff05b682021-03-16 15:02:05 +0000725 oo.pOpenOnuAc.lockDeviceHandlersMap.RLock()
726 if _, exist := oo.pOpenOnuAc.deviceHandlers[oo.deviceID]; !exist {
727 logger.Debugw(ctx, "delete_device in progress - skip write request", log.Fields{"device-id": oo.deviceID})
728 oo.chOnuKvProcessingStep <- aProcessingStep
729 oo.pOpenOnuAc.lockDeviceHandlersMap.RUnlock()
730 return
731 }
732 oo.baseDeviceHandler.mutexDeletionInProgressFlag.RLock()
733 if oo.baseDeviceHandler.deletionInProgress {
734 logger.Debugw(ctx, "delete_device in progress - skip write request", log.Fields{"device-id": oo.deviceID})
735 oo.chOnuKvProcessingStep <- aProcessingStep
736 oo.pOpenOnuAc.lockDeviceHandlersMap.RUnlock()
737 oo.baseDeviceHandler.mutexDeletionInProgressFlag.RUnlock()
738 return
739 }
740 oo.pOpenOnuAc.lockDeviceHandlersMap.RUnlock()
741 oo.baseDeviceHandler.mutexDeletionInProgressFlag.RUnlock()
742
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000743 oo.mutexOnuKVStore.Lock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000744 err = oo.onuKVStore.Put(ctx, oo.onuKVStorePath, Value)
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000745 oo.mutexOnuKVStore.Unlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000746 if err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000747 logger.Errorw(ctx, "unable to write ONU-data into KVstore", log.Fields{"device-id": oo.deviceID, "err": err})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000748 oo.chOnuKvProcessingStep <- 0 //error indication
749 return
750 }
751 oo.chOnuKvProcessingStep <- aProcessingStep //done
752}
753
dbainbri4d3a0dc2020-12-02 00:33:42 +0000754func (oo *OnuDeviceEntry) updateOnuUniTpPath(ctx context.Context, aUniID uint8, aTpID uint8, aPathString string) bool {
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000755 /* within some specific InterAdapter processing request write/read access to data is ensured to be sequentially,
756 as also the complete sequence is ensured to 'run to completion' before some new request is accepted
757 no specific concurrency protection to sOnuPersistentData is required here
758 */
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000759 oo.mutexPersOnuConfig.Lock()
760 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000761
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000762 for k, v := range oo.sOnuPersistentData.PersUniConfig {
763 if v.PersUniID == aUniID {
Girish Gowdra041dcb32020-11-16 16:54:30 -0800764 existingPath, ok := oo.sOnuPersistentData.PersUniConfig[k].PersTpPathMap[aTpID]
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700765 logger.Debugw(ctx, "PersUniConfig-entry exists", log.Fields{"device-id": oo.deviceID, "uniID": aUniID,
766 "tpID": aTpID, "path": aPathString, "existingPath": existingPath, "ok": ok})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800767 if !ok {
mpagenko30f28442021-03-24 09:24:04 +0000768 logger.Debugw(ctx, "tp-does-not-exist", log.Fields{"device-id": oo.deviceID, "uniID": aUniID, "tpID": aTpID, "path": aPathString})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800769 }
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000770 if existingPath != aPathString {
771 if aPathString == "" {
772 //existing entry to be deleted
dbainbri4d3a0dc2020-12-02 00:33:42 +0000773 logger.Debugw(ctx, "UniTp delete path value", log.Fields{"device-id": oo.deviceID, "uniID": aUniID, "path": aPathString})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800774 oo.sOnuPersistentData.PersUniConfig[k].PersTpPathMap[aTpID] = ""
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000775 } else {
776 //existing entry to be modified
dbainbri4d3a0dc2020-12-02 00:33:42 +0000777 logger.Debugw(ctx, "UniTp modify path value", log.Fields{"device-id": oo.deviceID, "uniID": aUniID, "path": aPathString})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800778 oo.sOnuPersistentData.PersUniConfig[k].PersTpPathMap[aTpID] = aPathString
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000779 }
780 return true
781 }
782 //entry already exists
mpagenkofc4f56e2020-11-04 17:17:49 +0000783 if aPathString == "" {
784 //no active TechProfile
dbainbri4d3a0dc2020-12-02 00:33:42 +0000785 logger.Debugw(ctx, "UniTp path has already been removed - no AniSide config to be removed", log.Fields{
mpagenkofc4f56e2020-11-04 17:17:49 +0000786 "device-id": oo.deviceID, "uniID": aUniID})
mpagenkofc4f56e2020-11-04 17:17:49 +0000787 } else {
788 //the given TechProfile already exists and is assumed to be active - update devReason as if the config has been done here
789 //was needed e.g. in voltha POD Tests:Validate authentication on a disabled ONU
790 // (as here the TechProfile has not been removed with the disable-device before the new enable-device)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000791 logger.Debugw(ctx, "UniTp path already exists - TechProfile supposed to be active", log.Fields{
mpagenkofc4f56e2020-11-04 17:17:49 +0000792 "device-id": oo.deviceID, "uniID": aUniID, "path": aPathString})
793 //no deviceReason update (deviceProcStatusUpdate) here to ensure 'omci_flows_pushed' state within disable/enable procedure of ATT scenario
794 // (during which the flows are removed/re-assigned but the techProf is left active)
795 //and as the TechProfile is regarded as active we have to verify, if some flow configuration still waits on it
796 // (should not be the case, but should not harm or be more robust ...)
mpagenko2418ab02020-11-12 12:58:06 +0000797 // and to be sure, that for some reason the corresponding TpDelete was lost somewhere in history
798 // we also reset a possibly outstanding delete request - repeated TpConfig is regarded as valid for waiting flow config
799 if oo.baseDeviceHandler.pOnuTP != nil {
Girish Gowdra041dcb32020-11-16 16:54:30 -0800800 oo.baseDeviceHandler.pOnuTP.setProfileToDelete(aUniID, aTpID, false)
mpagenko2418ab02020-11-12 12:58:06 +0000801 }
mpagenko551a4d42020-12-08 18:09:20 +0000802 go oo.baseDeviceHandler.VerifyVlanConfigRequest(ctx, aUniID, aTpID)
mpagenkofc4f56e2020-11-04 17:17:49 +0000803 }
804 return false //indicate 'no change' - nothing more to do, TechProf inter-adapter message is return with success anyway here
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000805 }
806 }
807 //no entry exists for uniId
808
809 if aPathString == "" {
810 //delete request in non-existing state , accept as no change
dbainbri4d3a0dc2020-12-02 00:33:42 +0000811 logger.Debugw(ctx, "UniTp path already removed", log.Fields{"device-id": oo.deviceID, "uniID": aUniID})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000812 return false
813 }
814 //new entry to be created
dbainbri4d3a0dc2020-12-02 00:33:42 +0000815 logger.Debugw(ctx, "New UniTp path set", log.Fields{"device-id": oo.deviceID, "uniID": aUniID, "path": aPathString})
Girish Gowdra041dcb32020-11-16 16:54:30 -0800816 perSubTpPathMap := make(map[uint8]string)
817 perSubTpPathMap[aTpID] = aPathString
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000818 oo.sOnuPersistentData.PersUniConfig =
Girish Gowdra041dcb32020-11-16 16:54:30 -0800819 append(oo.sOnuPersistentData.PersUniConfig, uniPersConfig{PersUniID: aUniID, PersTpPathMap: perSubTpPathMap, PersFlowParams: make([]uniVlanFlowParams, 0)})
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000820 return true
821}
822
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000823func (oo *OnuDeviceEntry) updateOnuUniFlowConfig(aUniID uint8, aUniVlanFlowParams *[]uniVlanFlowParams) {
824
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000825 oo.mutexPersOnuConfig.Lock()
826 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandtdaf0f722021-02-12 11:50:30 +0000827
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000828 for k, v := range oo.sOnuPersistentData.PersUniConfig {
829 if v.PersUniID == aUniID {
830 oo.sOnuPersistentData.PersUniConfig[k].PersFlowParams = make([]uniVlanFlowParams, len(*aUniVlanFlowParams))
831 copy(oo.sOnuPersistentData.PersUniConfig[k].PersFlowParams, *aUniVlanFlowParams)
832 return
833 }
834 }
835 //flow update was faster than tp-config - create PersUniConfig-entry
mpagenko30f28442021-03-24 09:24:04 +0000836 //TODO!!: following activity to 'add' some new uni entry might not be quite correct if this function is called to clear the data
837 // (e.g after flow removal from RemoveUniFlowParams()).
838 // This has the effect of misleading indication that there is still some active UNI entry, even though there might be only some nil flow entry
839 // The effect of this flaw is that at TechProfile removal there is an additional attempt to remove the entry even though no techProfile exists anymore
840 // The code is not changed here because of the current release lane, changes might have unexpected secondary effects, perhaps later with more elaborate tests
Girish Gowdra041dcb32020-11-16 16:54:30 -0800841 tmpConfig := uniPersConfig{PersUniID: aUniID, PersTpPathMap: make(map[uint8]string), PersFlowParams: make([]uniVlanFlowParams, len(*aUniVlanFlowParams))}
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000842 copy(tmpConfig.PersFlowParams, *aUniVlanFlowParams)
843 oo.sOnuPersistentData.PersUniConfig = append(oo.sOnuPersistentData.PersUniConfig, tmpConfig)
844}
845
846func (oo *OnuDeviceEntry) waitForTimeoutOrCompletion(
847 ctx context.Context, aChOnuProcessingStep <-chan uint8, aProcessingStep uint8) bool {
848 select {
849 case <-ctx.Done():
dbainbri4d3a0dc2020-12-02 00:33:42 +0000850 logger.Warnw(ctx, "processing not completed in-time!",
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000851 log.Fields{"device-id": oo.deviceID, "error": ctx.Err()})
852 return false
853 case rxStep := <-aChOnuProcessingStep:
854 if rxStep == aProcessingStep {
855 return true
856 }
857 //all other values are not accepted - including 0 for error indication
dbainbri4d3a0dc2020-12-02 00:33:42 +0000858 logger.Warnw(ctx, "Invalid processing step received: abort!",
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000859 log.Fields{"device-id": oo.deviceID,
860 "wantedStep": aProcessingStep, "haveStep": rxStep})
861 return false
862 }
863}
864
865func (oo *OnuDeviceEntry) resetKvProcessingErrorIndication() {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000866 oo.mutexOnuKVStoreProcResult.Lock()
867 oo.onuKVStoreProcResult = nil
868 oo.mutexOnuKVStoreProcResult.Unlock()
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000869}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000870
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000871func (oo *OnuDeviceEntry) getKvProcessingErrorIndication() error {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000872 oo.mutexOnuKVStoreProcResult.RLock()
873 value := oo.onuKVStoreProcResult
874 oo.mutexOnuKVStoreProcResult.RUnlock()
875 return value
Holger Hildebrandt47555e72020-09-21 11:07:24 +0000876}
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000877
878func (oo *OnuDeviceEntry) setKvProcessingErrorIndication(value error) {
879 oo.mutexOnuKVStoreProcResult.Lock()
880 oo.onuKVStoreProcResult = value
881 oo.mutexOnuKVStoreProcResult.Unlock()
882}
883
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000884func (oo *OnuDeviceEntry) incrementMibDataSync(ctx context.Context) {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000885 oo.mutexPersOnuConfig.Lock()
886 defer oo.mutexPersOnuConfig.Unlock()
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000887 if oo.sOnuPersistentData.PersMibDataSyncAdpt < 255 {
888 oo.sOnuPersistentData.PersMibDataSyncAdpt++
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000889 } else {
890 // per G.984 and G.988 overflow starts over at 1 given 0 is reserved for reset
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000891 oo.sOnuPersistentData.PersMibDataSyncAdpt = 1
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000892 }
Holger Hildebrandt10d98192021-01-27 15:29:31 +0000893 logger.Debugf(ctx, "mibDataSync updated - mds: %d - device-id: %s", oo.sOnuPersistentData.PersMibDataSyncAdpt, oo.deviceID)
Holger Hildebrandt0bd45f82021-01-11 13:29:37 +0000894}
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000895
mpagenko9c225032021-10-15 14:26:49 +0000896// ModifySwImageInactiveVersion - updates the inactive SW image version stored
897func (oo *OnuDeviceEntry) ModifySwImageInactiveVersion(ctx context.Context, aImageVersion string) {
898 oo.mutexOnuSwImageIndications.Lock()
899 defer oo.mutexOnuSwImageIndications.Unlock()
900 logger.Debugw(ctx, "software-image set inactive version", log.Fields{
901 "device-id": oo.deviceID, "version": aImageVersion})
902 oo.onuSwImageIndications.inactiveEntityEntry.version = aImageVersion
903 //inactive SW version is not part of persistency data (yet) - no need to update that
904}
905
906// ModifySwImageActiveCommit - updates the active SW commit flag stored
907func (oo *OnuDeviceEntry) ModifySwImageActiveCommit(ctx context.Context, aCommitted uint8) {
908 oo.mutexOnuSwImageIndications.Lock()
909 defer oo.mutexOnuSwImageIndications.Unlock()
910 logger.Debugw(ctx, "software-image set active entity commit flag", log.Fields{
911 "device-id": oo.deviceID, "committed": aCommitted})
912 oo.onuSwImageIndications.activeEntityEntry.isCommitted = aCommitted
913 //commit flag is not part of persistency data (yet) - no need to update that
914}
915
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300916func (oo *OnuDeviceEntry) getActiveImageVersion(ctx context.Context) string {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000917 oo.mutexOnuSwImageIndications.RLock()
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300918 if oo.onuSwImageIndications.activeEntityEntry.valid {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000919 value := oo.onuSwImageIndications.activeEntityEntry.version
920 oo.mutexOnuSwImageIndications.RUnlock()
921 return value
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300922 }
Holger Hildebrandt05011352021-06-15 09:40:24 +0000923 oo.mutexOnuSwImageIndications.RUnlock()
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300924 logger.Debugw(ctx, "Active Image is not valid", log.Fields{"device-id": oo.deviceID})
925 return ""
926}
927
928func (oo *OnuDeviceEntry) getInactiveImageVersion(ctx context.Context) string {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000929 oo.mutexOnuSwImageIndications.RLock()
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300930 if oo.onuSwImageIndications.inactiveEntityEntry.valid {
Holger Hildebrandt05011352021-06-15 09:40:24 +0000931 value := oo.onuSwImageIndications.inactiveEntityEntry.version
932 oo.mutexOnuSwImageIndications.RUnlock()
933 return value
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300934 }
Holger Hildebrandt05011352021-06-15 09:40:24 +0000935 oo.mutexOnuSwImageIndications.RUnlock()
ozgecanetsiaf0a76b62021-05-31 17:42:09 +0300936 logger.Debugw(ctx, "Inactive Image is not valid", log.Fields{"device-id": oo.deviceID})
937 return ""
938}
939
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000940func (oo *OnuDeviceEntry) buildMibTemplatePath() string {
Holger Hildebrandt0da7e6f2021-05-12 13:08:43 +0000941 oo.mutexPersOnuConfig.RLock()
942 defer oo.mutexPersOnuConfig.RUnlock()
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000943 return fmt.Sprintf(cSuffixMibTemplateKvStore, oo.sOnuPersistentData.PersVendorID, oo.sOnuPersistentData.PersEquipmentID, oo.sOnuPersistentData.PersActiveSwVersion)
944}
Mahir Gunyel7f4483a2021-05-06 12:53:43 -0700945
946func (oo *OnuDeviceEntry) allocateFreeTcont(ctx context.Context, allocID uint16) (uint16, bool, error) {
947 logger.Debugw(ctx, "allocate-free-tcont", log.Fields{"device-id": oo.deviceID, "allocID": allocID,
948 "allocated-instances": oo.sOnuPersistentData.PersTcontMap})
949
950 oo.mutexTcontMap.Lock()
951 defer oo.mutexTcontMap.Unlock()
952 if entityID, ok := oo.sOnuPersistentData.PersTcontMap[allocID]; ok {
953 //tcont already allocated before, return the used instance-id
954 return entityID, true, nil
955 }
956 //First allocation of tcont. Find a free instance
957 if tcontInstKeys := oo.pOnuDB.getSortedInstKeys(ctx, me.TContClassID); len(tcontInstKeys) > 0 {
958 logger.Debugw(ctx, "allocate-free-tcont-db-keys", log.Fields{"device-id": oo.deviceID, "keys": tcontInstKeys})
959 for _, instID := range tcontInstKeys {
960 instExist := false
961 //If this instance exist in map, it means it is not empty. It is allocated before
962 for _, v := range oo.sOnuPersistentData.PersTcontMap {
963 if v == instID {
964 instExist = true
965 break
966 }
967 }
968 if !instExist {
969 oo.sOnuPersistentData.PersTcontMap[allocID] = instID
970 return instID, false, nil
971 }
972 }
973 }
974 return 0, false, fmt.Errorf(fmt.Sprintf("no-free-tcont-left-for-device-%s", oo.deviceID))
975
976}
977
978func (oo *OnuDeviceEntry) freeTcont(ctx context.Context, allocID uint16) {
979 logger.Debugw(ctx, "free-tcont", log.Fields{"device-id": oo.deviceID, "alloc": allocID})
980 oo.mutexTcontMap.Lock()
981 defer oo.mutexTcontMap.Unlock()
982 delete(oo.sOnuPersistentData.PersTcontMap, allocID)
983}