blob: 75e76b28d69eba79bc1567603c3ce9b908b5b52b [file] [log] [blame]
Holger Hildebrandtccd390c2020-05-29 13:49:04 +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"
Andrea Campanella6515c582020-10-05 11:25:00 +020022 "fmt"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000023 "time"
24
25 "github.com/looplab/fsm"
26
27 "github.com/opencord/omci-lib-go"
28 me "github.com/opencord/omci-lib-go/generated"
dbainbri4d3a0dc2020-12-02 00:33:42 +000029 "github.com/opencord/voltha-lib-go/v4/pkg/log"
30 //ic "github.com/opencord/voltha-protos/v4/go/inter_container"
31 //"github.com/opencord/voltha-protos/v4/go/openflow_13"
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000032)
33
Himani Chawla6d2ae152020-09-02 13:11:20 +053034//lockStateFsm defines the structure for the state machine to lock/unlock the ONU UNI ports via OMCI
35type lockStateFsm struct {
Holger Hildebrandt8165eda2020-09-24 09:39:24 +000036 pDeviceHandler *deviceHandler
mpagenko01e726e2020-10-23 09:45:29 +000037 deviceID string
Himani Chawla6d2ae152020-09-02 13:11:20 +053038 pOmciCC *omciCC
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000039 adminState bool
40 requestEvent OnuDeviceEvent
41 omciLockResponseReceived chan bool //seperate channel needed for checking UNI port OMCi message responses
42 pAdaptFsm *AdapterFsm
mpagenko01e726e2020-10-23 09:45:29 +000043 pLastTxMeInstance *me.ManagedEntity
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000044}
45
mpagenko1cc3cb42020-07-27 15:24:38 +000046const (
47 // events of lock/unlock UNI port FSM
48 uniEvStart = "uniEvStart"
49 uniEvStartAdmin = "uniEvStartAdmin"
50 uniEvRxUnisResp = "uniEvRxUnisResp"
51 uniEvRxOnugResp = "uniEvRxOnugResp"
52 uniEvTimeoutSimple = "uniEvTimeoutSimple"
53 uniEvTimeoutUnis = "uniEvTimeoutUnis"
54 uniEvReset = "uniEvReset"
55 uniEvRestart = "uniEvRestart"
56)
57const (
58 // states of lock/unlock UNI port FSM
59 uniStDisabled = "uniStDisabled"
60 uniStStarting = "uniStStarting"
61 uniStSettingUnis = "uniStSettingUnis"
62 uniStSettingOnuG = "uniStSettingOnuG"
63 uniStAdminDone = "uniStAdminDone"
64 uniStResetting = "uniStResetting"
65)
Holger Hildebrandt10d98192021-01-27 15:29:31 +000066const cUniFsmIdleState = uniStDisabled
mpagenko1cc3cb42020-07-27 15:24:38 +000067
Himani Chawla6d2ae152020-09-02 13:11:20 +053068//newLockStateFsm is the 'constructor' for the state machine to lock/unlock the ONU UNI ports via OMCI
dbainbri4d3a0dc2020-12-02 00:33:42 +000069func newLockStateFsm(ctx context.Context, apDevOmciCC *omciCC, aAdminState bool, aRequestEvent OnuDeviceEvent,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +000070 aName string, apDeviceHandler *deviceHandler, aCommChannel chan Message) *lockStateFsm {
Himani Chawla6d2ae152020-09-02 13:11:20 +053071 instFsm := &lockStateFsm{
Holger Hildebrandt8165eda2020-09-24 09:39:24 +000072 pDeviceHandler: apDeviceHandler,
mpagenko01e726e2020-10-23 09:45:29 +000073 deviceID: apDeviceHandler.deviceID,
Holger Hildebrandt8165eda2020-09-24 09:39:24 +000074 pOmciCC: apDevOmciCC,
75 adminState: aAdminState,
76 requestEvent: aRequestEvent,
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000077 }
mpagenko01e726e2020-10-23 09:45:29 +000078 instFsm.pAdaptFsm = NewAdapterFsm(aName, instFsm.deviceID, aCommChannel)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000079 if instFsm.pAdaptFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +000080 logger.Errorw(ctx, "LockStateFsm's AdapterFsm could not be instantiated!!", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +000081 "device-id": instFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000082 return nil
83 }
Himani Chawla4d908332020-08-31 12:30:20 +053084 if aAdminState { //port locking requested
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000085 instFsm.pAdaptFsm.pFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +000086 uniStDisabled,
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000087 fsm.Events{
88
mpagenko1cc3cb42020-07-27 15:24:38 +000089 {Name: uniEvStart, Src: []string{uniStDisabled}, Dst: uniStStarting},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000090
mpagenko1cc3cb42020-07-27 15:24:38 +000091 {Name: uniEvStartAdmin, Src: []string{uniStStarting}, Dst: uniStSettingUnis},
92 // the settingUnis state is used for multi ME config for all UNI related ports
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000093 // maybe such could be reflected in the state machine as well (port number parametrized)
94 // but that looks not straightforward here - so we keep it simple here for the beginning(?)
mpagenko1cc3cb42020-07-27 15:24:38 +000095 {Name: uniEvRxUnisResp, Src: []string{uniStSettingUnis}, Dst: uniStSettingOnuG},
96 {Name: uniEvRxOnugResp, Src: []string{uniStSettingOnuG}, Dst: uniStAdminDone},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +000097
mpagenko1cc3cb42020-07-27 15:24:38 +000098 {Name: uniEvTimeoutSimple, Src: []string{uniStSettingOnuG}, Dst: uniStStarting},
99 {Name: uniEvTimeoutUnis, Src: []string{uniStSettingUnis}, Dst: uniStStarting},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000100
mpagenko1cc3cb42020-07-27 15:24:38 +0000101 {Name: uniEvReset, Src: []string{uniStStarting, uniStSettingOnuG, uniStSettingUnis,
102 uniStAdminDone}, Dst: uniStResetting},
103 // exceptional treatment for all states except uniStResetting
104 {Name: uniEvRestart, Src: []string{uniStStarting, uniStSettingOnuG, uniStSettingUnis,
105 uniStAdminDone, uniStResetting}, Dst: uniStDisabled},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000106 },
107
108 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000109 "enter_state": func(e *fsm.Event) { instFsm.pAdaptFsm.logFsmStateChange(ctx, e) },
110 ("enter_" + uniStStarting): func(e *fsm.Event) { instFsm.enterAdminStartingState(ctx, e) },
111 ("enter_" + uniStSettingOnuG): func(e *fsm.Event) { instFsm.enterSettingOnuGState(ctx, e) },
112 ("enter_" + uniStSettingUnis): func(e *fsm.Event) { instFsm.enterSettingUnisState(ctx, e) },
113 ("enter_" + uniStAdminDone): func(e *fsm.Event) { instFsm.enterAdminDoneState(ctx, e) },
114 ("enter_" + uniStResetting): func(e *fsm.Event) { instFsm.enterResettingState(ctx, e) },
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000115 },
116 )
117 } else { //port unlocking requested
118 instFsm.pAdaptFsm.pFsm = fsm.NewFSM(
mpagenko1cc3cb42020-07-27 15:24:38 +0000119 uniStDisabled,
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000120 fsm.Events{
121
mpagenko1cc3cb42020-07-27 15:24:38 +0000122 {Name: uniEvStart, Src: []string{uniStDisabled}, Dst: uniStStarting},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000123
mpagenko1cc3cb42020-07-27 15:24:38 +0000124 {Name: uniEvStartAdmin, Src: []string{uniStStarting}, Dst: uniStSettingOnuG},
125 {Name: uniEvRxOnugResp, Src: []string{uniStSettingOnuG}, Dst: uniStSettingUnis},
126 // the settingUnis state is used for multi ME config for all UNI related ports
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000127 // maybe such could be reflected in the state machine as well (port number parametrized)
128 // but that looks not straightforward here - so we keep it simple here for the beginning(?)
mpagenko1cc3cb42020-07-27 15:24:38 +0000129 {Name: uniEvRxUnisResp, Src: []string{uniStSettingUnis}, Dst: uniStAdminDone},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000130
mpagenko1cc3cb42020-07-27 15:24:38 +0000131 {Name: uniEvTimeoutSimple, Src: []string{uniStSettingOnuG}, Dst: uniStStarting},
132 {Name: uniEvTimeoutUnis, Src: []string{uniStSettingUnis}, Dst: uniStStarting},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000133
mpagenko1cc3cb42020-07-27 15:24:38 +0000134 {Name: uniEvReset, Src: []string{uniStStarting, uniStSettingOnuG, uniStSettingUnis,
135 uniStAdminDone}, Dst: uniStResetting},
136 // exceptional treatment for all states except uniStResetting
137 {Name: uniEvRestart, Src: []string{uniStStarting, uniStSettingOnuG, uniStSettingUnis,
138 uniStAdminDone, uniStResetting}, Dst: uniStDisabled},
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000139 },
140
141 fsm.Callbacks{
dbainbri4d3a0dc2020-12-02 00:33:42 +0000142 "enter_state": func(e *fsm.Event) { instFsm.pAdaptFsm.logFsmStateChange(ctx, e) },
143 ("enter_" + uniStStarting): func(e *fsm.Event) { instFsm.enterAdminStartingState(ctx, e) },
144 ("enter_" + uniStSettingOnuG): func(e *fsm.Event) { instFsm.enterSettingOnuGState(ctx, e) },
145 ("enter_" + uniStSettingUnis): func(e *fsm.Event) { instFsm.enterSettingUnisState(ctx, e) },
146 ("enter_" + uniStAdminDone): func(e *fsm.Event) { instFsm.enterAdminDoneState(ctx, e) },
147 ("enter_" + uniStResetting): func(e *fsm.Event) { instFsm.enterResettingState(ctx, e) },
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000148 },
149 )
150 }
151 if instFsm.pAdaptFsm.pFsm == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000152 logger.Errorw(ctx, "LockStateFsm's Base FSM could not be instantiated!!", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000153 "device-id": instFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000154 return nil
155 }
156
dbainbri4d3a0dc2020-12-02 00:33:42 +0000157 logger.Debugw(ctx, "LockStateFsm created", log.Fields{"device-id": instFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000158 return instFsm
159}
160
Himani Chawla6d2ae152020-09-02 13:11:20 +0530161//setSuccessEvent modifies the requested event notified on success
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000162//assumption is that this is only called in the disabled (idle) state of the FSM, hence no sem protection required
Himani Chawla6d2ae152020-09-02 13:11:20 +0530163func (oFsm *lockStateFsm) setSuccessEvent(aEvent OnuDeviceEvent) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000164 oFsm.requestEvent = aEvent
165}
166
dbainbri4d3a0dc2020-12-02 00:33:42 +0000167func (oFsm *lockStateFsm) enterAdminStartingState(ctx context.Context, e *fsm.Event) {
168 logger.Debugw(ctx, "LockStateFSM start", log.Fields{"in state": e.FSM.Current(),
mpagenko01e726e2020-10-23 09:45:29 +0000169 "device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000170 // in case the used channel is not yet defined (can be re-used after restarts)
171 if oFsm.omciLockResponseReceived == nil {
172 oFsm.omciLockResponseReceived = make(chan bool)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000173 logger.Debug(ctx, "LockStateFSM - OMCI UniLock RxChannel defined")
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000174 } else {
175 // as we may 're-use' this instance of FSM and the connected channel
mpagenkob06684f2021-03-23 14:39:04 +0000176 // make sure there is no 'lingering' request in the already existing channels:
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000177 // (simple loop sufficient as we are the only receiver)
178 for len(oFsm.omciLockResponseReceived) > 0 {
179 <-oFsm.omciLockResponseReceived
180 }
mpagenkob06684f2021-03-23 14:39:04 +0000181 for len(oFsm.pAdaptFsm.commChan) > 0 {
182 <-oFsm.pAdaptFsm.commChan
183 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000184 }
185 // start go routine for processing of LockState messages
dbainbri4d3a0dc2020-12-02 00:33:42 +0000186 go oFsm.processOmciLockMessages(ctx)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000187
188 //let the state machine run forward from here directly
189 pLockStateAFsm := oFsm.pAdaptFsm
190 if pLockStateAFsm != nil {
191 // obviously calling some FSM event here directly does not work - so trying to decouple it ...
192 go func(a_pAFsm *AdapterFsm) {
193 if a_pAFsm != nil && a_pAFsm.pFsm != nil {
Himani Chawla4d908332020-08-31 12:30:20 +0530194 _ = a_pAFsm.pFsm.Event(uniEvStartAdmin)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000195 }
196 }(pLockStateAFsm)
197 }
198}
199
dbainbri4d3a0dc2020-12-02 00:33:42 +0000200func (oFsm *lockStateFsm) enterSettingOnuGState(ctx context.Context, e *fsm.Event) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000201 var omciAdminState uint8 = 1 //default locked
Himani Chawla4d908332020-08-31 12:30:20 +0530202 if !oFsm.adminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000203 omciAdminState = 0
204 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000205 logger.Debugw(ctx, "LockStateFSM Tx Set::ONU-G:admin", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000206 "omciAdmin": omciAdminState, "in state": e.FSM.Current(), "device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000207 requestedAttributes := me.AttributeValueMap{"AdministrativeState": omciAdminState}
Girish Gowdra0b235842021-03-09 13:06:46 -0800208 meInstance := oFsm.pOmciCC.sendSetOnuGLS(log.WithSpanFromContext(context.TODO(), ctx), oFsm.pDeviceHandler.pOpenOnuAc.omciTimeout, true,
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000209 requestedAttributes, oFsm.pAdaptFsm.commChan)
210 //accept also nil as (error) return value for writing to LastTx
211 // - this avoids misinterpretation of new received OMCI messages
mpagenko01e726e2020-10-23 09:45:29 +0000212 oFsm.pLastTxMeInstance = meInstance
mpagenkob06684f2021-03-23 14:39:04 +0000213 if oFsm.pLastTxMeInstance == nil {
214 logger.Errorw(ctx, "could not send OMCI message from LockStateFsm", log.Fields{
215 "device-id": oFsm.deviceID})
216 //some more sophisticated approach is possible, e.g. repeating once, by now let's reset the state machine in order to release all resources now
217 pLockStateAFsm := oFsm.pAdaptFsm
218 if pLockStateAFsm != nil {
219 // obviously calling some FSM event here directly does not work - so trying to decouple it ...
220 go func(a_pAFsm *AdapterFsm) {
221 if a_pAFsm != nil && a_pAFsm.pFsm != nil {
222 _ = a_pAFsm.pFsm.Event(uniEvReset)
223 }
224 }(pLockStateAFsm)
225 }
226 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000227}
228
dbainbri4d3a0dc2020-12-02 00:33:42 +0000229func (oFsm *lockStateFsm) enterSettingUnisState(ctx context.Context, e *fsm.Event) {
mpagenko8b5fdd22020-12-17 17:58:32 +0000230 logger.Debugw(ctx, "LockStateFSM - starting UniTP adminState loop", log.Fields{
mpagenko01e726e2020-10-23 09:45:29 +0000231 "in state": e.FSM.Current(), "device-id": oFsm.deviceID, "LockState": oFsm.adminState})
dbainbri4d3a0dc2020-12-02 00:33:42 +0000232 go oFsm.performUniPortAdminSet(ctx)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000233}
234
dbainbri4d3a0dc2020-12-02 00:33:42 +0000235func (oFsm *lockStateFsm) enterAdminDoneState(ctx context.Context, e *fsm.Event) {
236 logger.Debugw(ctx, "LockStateFSM", log.Fields{"send notification to core in State": e.FSM.Current(), "device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000237 //use DeviceHandler event notification directly, no need/support to update DeviceEntryState for lock/unlock
dbainbri4d3a0dc2020-12-02 00:33:42 +0000238 oFsm.pDeviceHandler.deviceProcStatusUpdate(ctx, oFsm.requestEvent)
Holger Hildebrandt8165eda2020-09-24 09:39:24 +0000239
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000240 //let's reset the state machine in order to release all resources now
241 pLockStateAFsm := oFsm.pAdaptFsm
242 if pLockStateAFsm != nil {
243 // obviously calling some FSM event here directly does not work - so trying to decouple it ...
244 go func(a_pAFsm *AdapterFsm) {
245 if a_pAFsm != nil && a_pAFsm.pFsm != nil {
Himani Chawla4d908332020-08-31 12:30:20 +0530246 _ = a_pAFsm.pFsm.Event(uniEvReset)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000247 }
248 }(pLockStateAFsm)
249 }
250}
251
dbainbri4d3a0dc2020-12-02 00:33:42 +0000252func (oFsm *lockStateFsm) enterResettingState(ctx context.Context, e *fsm.Event) {
253 logger.Debugw(ctx, "LockStateFSM resetting", log.Fields{"device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000254 pLockStateAFsm := oFsm.pAdaptFsm
255 if pLockStateAFsm != nil {
256 // abort running message processing
257 fsmAbortMsg := Message{
258 Type: TestMsg,
259 Data: TestMessage{
260 TestMessageVal: AbortMessageProcessing,
261 },
262 }
263 pLockStateAFsm.commChan <- fsmAbortMsg
264
265 //try to restart the FSM to 'disabled'
266 // see DownloadedState: decouple event transfer
267 go func(a_pAFsm *AdapterFsm) {
268 if a_pAFsm != nil && a_pAFsm.pFsm != nil {
Himani Chawla4d908332020-08-31 12:30:20 +0530269 _ = a_pAFsm.pFsm.Event(uniEvRestart)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000270 }
271 }(pLockStateAFsm)
mpagenko01e726e2020-10-23 09:45:29 +0000272 oFsm.pLastTxMeInstance = nil
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000273 }
274}
275
dbainbri4d3a0dc2020-12-02 00:33:42 +0000276func (oFsm *lockStateFsm) processOmciLockMessages(ctx context.Context) {
277 logger.Debugw(ctx, "Start LockStateFsm Msg processing", log.Fields{"for device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000278loop:
279 for {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000280 // case <-ctx.Done():
dbainbri4d3a0dc2020-12-02 00:33:42 +0000281 // logger.Info(ctx,"MibSync Msg", log.Fields{"Message handling canceled via context for device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000282 // break loop
Himani Chawla4d908332020-08-31 12:30:20 +0530283 message, ok := <-oFsm.pAdaptFsm.commChan
284 if !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000285 logger.Info(ctx, "LockStateFsm Rx Msg - could not read from channel", log.Fields{"device-id": oFsm.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530286 // but then we have to ensure a restart of the FSM as well - as exceptional procedure
287 _ = oFsm.pAdaptFsm.pFsm.Event(uniEvRestart)
288 break loop
289 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000290 logger.Debugw(ctx, "LockStateFsm Rx Msg", log.Fields{"device-id": oFsm.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530291
292 switch message.Type {
293 case TestMsg:
294 msg, _ := message.Data.(TestMessage)
295 if msg.TestMessageVal == AbortMessageProcessing {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000296 logger.Debugw(ctx, "LockStateFsm abort ProcessMsg", log.Fields{"for device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000297 break loop
298 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000299 logger.Warnw(ctx, "LockStateFsm unknown TestMessage", log.Fields{"device-id": oFsm.deviceID, "MessageVal": msg.TestMessageVal})
Himani Chawla4d908332020-08-31 12:30:20 +0530300 case OMCI:
301 msg, _ := message.Data.(OmciMessage)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000302 oFsm.handleOmciLockStateMessage(ctx, msg)
Himani Chawla4d908332020-08-31 12:30:20 +0530303 default:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000304 logger.Warn(ctx, "LockStateFsm Rx unknown message", log.Fields{"device-id": oFsm.deviceID,
Himani Chawla4d908332020-08-31 12:30:20 +0530305 "message.Type": message.Type})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000306 }
307 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000308 logger.Debugw(ctx, "End LockStateFsm Msg processing", log.Fields{"device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000309}
310
dbainbri4d3a0dc2020-12-02 00:33:42 +0000311func (oFsm *lockStateFsm) handleOmciLockStateMessage(ctx context.Context, msg OmciMessage) {
312 logger.Debugw(ctx, "Rx OMCI LockStateFsm Msg", log.Fields{"device-id": oFsm.deviceID,
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000313 "msgType": msg.OmciMsg.MessageType})
314
315 if msg.OmciMsg.MessageType == omci.SetResponseType {
316 msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeSetResponse)
317 if msgLayer == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000318 logger.Errorw(ctx, "LockStateFsm - Omci Msg layer could not be detected for SetResponse",
mpagenko01e726e2020-10-23 09:45:29 +0000319 log.Fields{"device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000320 return
321 }
322 msgObj, msgOk := msgLayer.(*omci.SetResponse)
323 if !msgOk {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000324 logger.Errorw(ctx, "LockStateFsm - Omci Msg layer could not be assigned for SetResponse",
mpagenko01e726e2020-10-23 09:45:29 +0000325 log.Fields{"device-id": oFsm.deviceID})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000326 return
327 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000328 logger.Debugw(ctx, "LockStateFsm SetResponse Data", log.Fields{"device-id": oFsm.deviceID, "data-fields": msgObj})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000329 if msgObj.Result != me.Success {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000330 logger.Errorw(ctx, "LockStateFsm - Omci SetResponse Error - later: drive FSM to abort state ?", log.Fields{"Error": msgObj.Result})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000331 // possibly force FSM into abort or ignore some errors for some messages? store error for mgmt display?
332 return
333 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000334
mpagenkob06684f2021-03-23 14:39:04 +0000335 //should never appear, left here for robustness
Girish Gowdra3d5d6752021-03-22 19:21:24 -0700336 if oFsm.pLastTxMeInstance != nil {
337 // compare comments above for CreateResponse (apply also here ...)
338 if msgObj.EntityClass == oFsm.pLastTxMeInstance.GetClassID() &&
339 msgObj.EntityInstance == oFsm.pLastTxMeInstance.GetEntityID() {
340 //store the created ME into DB //TODO??? obviously the Python code does not store the config ...
341 // if, then something like:
342 //oFsm.pOnuDB.StoreMe(msgObj)
343
344 switch oFsm.pLastTxMeInstance.GetName() {
345 case "OnuG":
346 { // let the FSM proceed ...
347 _ = oFsm.pAdaptFsm.pFsm.Event(uniEvRxOnugResp)
348 }
349 case "PhysicalPathTerminationPointEthernetUni", "VirtualEthernetInterfacePoint":
350 { // let the PPTP init proceed by stopping the wait function
351 oFsm.omciLockResponseReceived <- true
352 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000353 }
Girish Gowdra3d5d6752021-03-22 19:21:24 -0700354 } else {
355 logger.Warnf(ctx, "LockStateFsm - Received SetResponse Data for %s with wrong classID or entityID ",
356 log.Fields{"device-id": oFsm.deviceID, "data-fields": msgObj}, msgObj.EntityClass)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000357 }
Matteo Scandolob250bec2021-01-27 17:35:45 -0800358 } else {
mpagenkob06684f2021-03-23 14:39:04 +0000359 logger.Errorw(ctx, "pLastTxMeInstance is nil", log.Fields{"device-id": oFsm.deviceID})
Girish Gowdra3d5d6752021-03-22 19:21:24 -0700360 return
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000361 }
362 } else {
mpagenkob06684f2021-03-23 14:39:04 +0000363 logger.Errorw(ctx, "LockStateFsm - Rx OMCI unhandled MsgType", log.Fields{"omciMsgType": msg.OmciMsg.MessageType})
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000364 return
365 }
366}
367
dbainbri4d3a0dc2020-12-02 00:33:42 +0000368func (oFsm *lockStateFsm) performUniPortAdminSet(ctx context.Context) {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000369 var omciAdminState uint8 = 1 //default locked
Himani Chawla4d908332020-08-31 12:30:20 +0530370 if !oFsm.adminState {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000371 omciAdminState = 0
372 }
Holger Hildebrandt2fb70892020-10-28 11:53:18 +0000373 //set PPTPEthUni or VEIP AdminState
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000374 requestedAttributes := me.AttributeValueMap{"AdministrativeState": omciAdminState}
375
376 for uniNo, uniPort := range oFsm.pOmciCC.pBaseDeviceHandler.uniEntityMap {
mpagenko8b5fdd22020-12-17 17:58:32 +0000377 // only unlock the UniPort in case it is defined for usage (R2.6 limit only one port),
378 // compare also limitation for logical voltha port in dh.enableUniPortStateUpdate()
379 if (omciAdminState == 1) || (1<<uniPort.uniID)&activeUniPortStateUpdateMask == (1<<uniPort.uniID) {
380 var meInstance *me.ManagedEntity
381 if uniPort.portType == uniPPTP {
382 logger.Debugw(ctx, "Setting PPTP admin state", log.Fields{
383 "device-id": oFsm.deviceID, "for PortNo": uniNo, "state (0-unlock)": omciAdminState})
Girish Gowdra0b235842021-03-09 13:06:46 -0800384 meInstance = oFsm.pOmciCC.sendSetPptpEthUniLS(log.WithSpanFromContext(context.TODO(), ctx), uniPort.entityID, oFsm.pDeviceHandler.pOpenOnuAc.omciTimeout,
mpagenko8b5fdd22020-12-17 17:58:32 +0000385 true, requestedAttributes, oFsm.pAdaptFsm.commChan)
386 oFsm.pLastTxMeInstance = meInstance
387 } else if uniPort.portType == uniVEIP {
388 logger.Debugw(ctx, "Setting VEIP admin state", log.Fields{
389 "device-id": oFsm.deviceID, "for PortNo": uniNo, "state (0-unlock)": omciAdminState})
Girish Gowdra0b235842021-03-09 13:06:46 -0800390 meInstance = oFsm.pOmciCC.sendSetVeipLS(log.WithSpanFromContext(context.TODO(), ctx), uniPort.entityID, oFsm.pDeviceHandler.pOpenOnuAc.omciTimeout,
mpagenko8b5fdd22020-12-17 17:58:32 +0000391 true, requestedAttributes, oFsm.pAdaptFsm.commChan)
392 oFsm.pLastTxMeInstance = meInstance
393 } else {
394 logger.Warnw(ctx, "Unsupported UniTP type - skip",
395 log.Fields{"device-id": oFsm.deviceID, "Port": uniNo})
396 continue
397 }
mpagenkob06684f2021-03-23 14:39:04 +0000398 if oFsm.pLastTxMeInstance == nil {
399 logger.Errorw(ctx, "could not send PortAdmin OMCI message from LockStateFsm", log.Fields{
400 "device-id": oFsm.deviceID, "Port": uniNo})
401 //some more sophisticated approach is possible, e.g. repeating once, by now let's reset the state machine in order to release all resources now
402 _ = oFsm.pAdaptFsm.pFsm.Event(uniEvReset)
403 return
404 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000405
mpagenko8b5fdd22020-12-17 17:58:32 +0000406 //verify response
407 err := oFsm.waitforOmciResponse(ctx, meInstance)
408 if err != nil {
409 logger.Errorw(ctx, "UniTP Admin State set failed, aborting LockState set!",
410 log.Fields{"device-id": oFsm.deviceID, "Port": uniNo})
411 _ = oFsm.pAdaptFsm.pFsm.Event(uniEvReset)
412 return
413 }
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000414 }
415 } //for all UNI ports
416 // if Config has been done for all UNI related instances let the FSM proceed
417 // while we did not check here, if there is some port at all - !?
mpagenko8b5fdd22020-12-17 17:58:32 +0000418 logger.Infow(ctx, "UniTP adminState loop finished", log.Fields{"device-id": oFsm.deviceID})
Himani Chawla4d908332020-08-31 12:30:20 +0530419 _ = oFsm.pAdaptFsm.pFsm.Event(uniEvRxUnisResp)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000420}
421
dbainbri4d3a0dc2020-12-02 00:33:42 +0000422func (oFsm *lockStateFsm) waitforOmciResponse(ctx context.Context, apMeInstance *me.ManagedEntity) error {
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000423 select {
Himani Chawla4d908332020-08-31 12:30:20 +0530424 // maybe be also some outside cancel (but no context modeled for the moment ...)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000425 // case <-ctx.Done():
dbainbri4d3a0dc2020-12-02 00:33:42 +0000426 // logger.Infow(ctx,"LockState-bridge-init message reception canceled", log.Fields{"for device-id": oFsm.deviceID})
mpagenko3af1f032020-06-10 08:53:41 +0000427 case <-time.After(30 * time.Second): //3s was detected to be to less in 8*8 bbsim test with debug Info/Debug
dbainbri4d3a0dc2020-12-02 00:33:42 +0000428 logger.Warnw(ctx, "LockStateFSM uni-set timeout", log.Fields{"for device-id": oFsm.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +0000429 return fmt.Errorf("lockStateFsm uni-set timeout for device-id %s", oFsm.deviceID)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000430 case success := <-oFsm.omciLockResponseReceived:
Himani Chawla4d908332020-08-31 12:30:20 +0530431 if success {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000432 logger.Debug(ctx, "LockStateFSM uni-set response received")
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000433 return nil
434 }
435 // should not happen so far
dbainbri4d3a0dc2020-12-02 00:33:42 +0000436 logger.Warnw(ctx, "LockStateFSM uni-set response error", log.Fields{"for device-id": oFsm.deviceID})
mpagenko01e726e2020-10-23 09:45:29 +0000437 return fmt.Errorf("lockStateFsm uni-set responseError for device-id %s", oFsm.deviceID)
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000438 }
439}