mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1 | /* |
| 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 Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 17 | //Package swupg provides the utilities for onu sw upgrade |
| 18 | package swupg |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 19 | |
| 20 | import ( |
| 21 | "context" |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 22 | "encoding/binary" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 23 | "fmt" |
| 24 | "strconv" |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 25 | "sync" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 26 | "time" |
| 27 | |
| 28 | "github.com/boguslaw-wojcik/crc32a" |
| 29 | "github.com/looplab/fsm" |
mpagenko | 836a1fd | 2021-11-01 16:12:42 +0000 | [diff] [blame] | 30 | "github.com/opencord/omci-lib-go/v2" |
| 31 | me "github.com/opencord/omci-lib-go/v2/generated" |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 32 | "github.com/opencord/voltha-lib-go/v7/pkg/log" |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 33 | cmn "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/common" |
| 34 | "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/devdb" |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 35 | "github.com/opencord/voltha-protos/v5/go/voltha" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 36 | ) |
| 37 | |
| 38 | const cMaxUint32 = ^uint32(0) |
| 39 | |
| 40 | const ( |
| 41 | // internal predefined values - some off them should later be configurable (perhaps with theses as defaults) |
| 42 | cOmciDownloadSectionSize = 31 //in bytes |
| 43 | cOmciDownloadWindowSizeLimit = 31 //in sections for window offset (windowSize(32)-1) |
| 44 | //cOmciDownloadWindowRetryMax = 2 // max attempts for a specific window |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 45 | cOmciSectionInterleaveMilliseconds = 0 //DownloadSection interleave time in milliseconds (0 for no delay) |
| 46 | cOmciEndSwDlDelaySeconds = 1 //End Software Download delay after last section (may be also configurable?) |
| 47 | cWaitCountEndSwDl = 6 //maximum number of EndSwDl requests |
| 48 | cWaitDelayEndSwDlSeconds = 10 //duration, how long is waited before next request on EndSwDl |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 49 | //cOmciDownloadCompleteTimeout = 5400 //in s for the complete timeout (may be better scale to image size/ noOfWindows) |
| 50 | ) |
| 51 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 52 | // tEndSwDlResponseResult - Response result from EndSwDownload as used in channel indication |
| 53 | type tUpgradePhase uint8 |
| 54 | |
| 55 | const ( |
| 56 | // undefined phase |
| 57 | cUpgradeUndefined tUpgradePhase = iota |
| 58 | // downloading image |
| 59 | cUpgradeDownloading |
| 60 | // image downloaded |
| 61 | cUpgradeDownloaded |
| 62 | // activating image |
| 63 | cUpgradeActivating |
| 64 | // image activated |
| 65 | cUpgradeActivated |
| 66 | // committing image |
| 67 | cUpgradeCommitting |
| 68 | // image committed |
| 69 | cUpgradeCommitted |
| 70 | ) |
| 71 | |
| 72 | // tEndSwDlResponseResult - Response result from EndSwDownload as used in channel indication |
| 73 | type tEndSwDlResponseResult uint8 |
| 74 | |
| 75 | const ( |
| 76 | // response success |
| 77 | cEndSwDlResponseSuccess tEndSwDlResponseResult = iota |
| 78 | // response busy (repeat) |
| 79 | cEndSwDlResponseBusy |
| 80 | // response error or abort waiting for response |
| 81 | cEndSwDlResponseAbort |
| 82 | ) |
| 83 | |
| 84 | // upgrade FSM related events |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 85 | const ( |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 86 | UpgradeEvStart = "UpgradeEvStart" |
| 87 | UpgradeEvDisable = "UpgradeEvDisable" |
| 88 | UpgradeEvAdapterDownload = "UpgradeEvAdapterDownload" |
| 89 | UpgradeEvPrepareSwDownload = "UpgradeEvPrepareSwDownload" |
| 90 | UpgradeEvRxStartSwDownload = "UpgradeEvRxStartSwDownload" |
| 91 | UpgradeEvWaitWindowAck = "UpgradeEvWaitWindowAck" |
| 92 | UpgradeEvContinueNextWindow = "UpgradeEvContinueNextWindow" |
| 93 | UpgradeEvEndSwDownload = "UpgradeEvEndSwDownload" |
| 94 | UpgradeEvWaitEndDownload = "UpgradeEvWaitEndDownload" |
| 95 | UpgradeEvContinueFinalize = "UpgradeEvContinueFinalize" |
| 96 | UpgradeEvCheckImageName = "UpgradeEvCheckImageName" |
| 97 | UpgradeEvWaitForActivate = "UpgradeEvWaitForActivate" |
| 98 | UpgradeEvRequestActivate = "UpgradeEvRequestActivate" |
| 99 | UpgradeEvActivationDone = "UpgradeEvActivationDone" |
| 100 | UpgradeEvWaitForCommit = "UpgradeEvWaitForCommit" |
| 101 | UpgradeEvCommitSw = "UpgradeEvCommitSw" |
| 102 | UpgradeEvCheckCommitted = "UpgradeEvCheckCommitted" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 103 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 104 | //UpgradeEvTimeoutSimple = "UpgradeEvTimeoutSimple" |
| 105 | //UpgradeEvTimeoutMids = "UpgradeEvTimeoutMids" |
| 106 | UpgradeEvReset = "UpgradeEvReset" |
| 107 | UpgradeEvAbort = "UpgradeEvAbort" |
| 108 | UpgradeEvRestart = "UpgradeEvRestart" |
| 109 | UpgradeEvAbortSwDownload = "UpgradeEvAbortSwDownload" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 110 | ) |
| 111 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 112 | // upgrade FSM related states |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 113 | const ( |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 114 | UpgradeStDisabled = "UpgradeStDisabled" |
| 115 | UpgradeStStarting = "UpgradeStStarting" |
| 116 | UpgradeStWaitingAdapterDL = "UpgradeStWaitingAdapterDL" |
| 117 | UpgradeStPreparingDL = "UpgradeStPreparingDL" |
| 118 | UpgradeStDLSection = "UpgradeStDLSection" |
| 119 | UpgradeStVerifyWindow = "UpgradeStVerifyWindow" |
| 120 | UpgradeStFinalizeDL = "UpgradeStFinalizeDL" |
| 121 | UpgradeStWaitEndDL = "UpgradeStWaitEndDL" |
| 122 | UpgradeStCheckImageName = "UpgradeStCheckImageName" |
| 123 | UpgradeStWaitForActivate = "UpgradeStWaitForActivate" |
| 124 | UpgradeStRequestingActivate = "UpgradeStRequestingActivate" |
| 125 | UpgradeStActivated = "UpgradeStActivated" |
| 126 | UpgradeStWaitForCommit = "UpgradeStWaitForCommit" |
| 127 | UpgradeStCommitSw = "UpgradeStCommitSw" |
| 128 | UpgradeStCheckCommitted = "UpgradeStCheckCommitted" |
| 129 | UpgradeStResetting = "UpgradeStResetting" |
| 130 | UpgradeStRestarting = "UpgradeStRestarting" |
| 131 | UpgradeStAbortingDL = "UpgradeStAbortingDL" |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 132 | ) |
| 133 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 134 | //COnuUpgradeFsmIdleState - required definition for IdleState detection for activities on OMCI |
| 135 | const COnuUpgradeFsmIdleState = UpgradeStWaitForCommit |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 136 | |
| 137 | //OnuUpgradeFsm defines the structure for the state machine to config the PON ANI ports of ONU UNI ports via OMCI |
| 138 | type OnuUpgradeFsm struct { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 139 | pDeviceHandler cmn.IdeviceHandler |
| 140 | pDownloadManager *AdapterDownloadManager |
| 141 | pFileManager *FileDownloadManager //used from R2.8 with new API version |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 142 | deviceID string |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 143 | pDevEntry cmn.IonuDeviceEntry |
| 144 | pOmciCC *cmn.OmciCC |
| 145 | pOnuDB *devdb.OnuDeviceDB |
| 146 | requestEvent cmn.OnuDeviceEvent |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 147 | //omciMIdsResponseReceived chan bool //seperate channel needed for checking multiInstance OMCI message responses |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 148 | PAdaptFsm *cmn.AdapterFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 149 | pImageDsc *voltha.ImageDownload |
| 150 | imageBuffer []byte |
| 151 | origImageLength uint32 //as also limited by OMCI |
| 152 | imageCRC uint32 //as per OMCI - ITU I.363.5 crc |
| 153 | imageLength uint32 //including last bytes padding |
| 154 | omciDownloadWindowSizeLimit uint8 //windowSize-1 in sections |
| 155 | omciDownloadWindowSizeLast uint8 //number of sections in last window |
| 156 | noOfSections uint32 //uint32 range for sections should be sufficient for very long images |
| 157 | nextDownloadSectionsAbsolute uint32 //number of next section to download in overall image |
| 158 | nextDownloadSectionsWindow uint8 //number of next section to download within current window |
| 159 | noOfWindows uint32 //uint32 range for windows should be sufficient for very long images |
| 160 | nextDownloadWindow uint32 //number of next window to download |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 161 | InactiveImageMeID uint16 //ME-ID of the inactive image |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 162 | downloadToOnuTimeout4MB time.Duration //timeout for downloading the image to the ONU for a 4MB image slice |
| 163 | omciSectionInterleaveDelay time.Duration //DownloadSectionInterleave delay in milliseconds |
| 164 | delayEndSwDl bool //flag to provide a delay between last section and EndSwDl |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 165 | repeatAbort bool //flag to indicate if OMCI EndSwDownload (abort) is to be repeated |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 166 | pLastTxMeInstance *me.ManagedEntity |
| 167 | waitCountEndSwDl uint8 //number, how often is waited for EndSwDl at maximum |
| 168 | waitDelayEndSwDl time.Duration //duration, how long is waited before next request on EndSwDl |
| 169 | chReceiveExpectedResponse chan bool |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 170 | useAPIVersion43 bool //flag for indication on which API version is used (and accordingly which specific methods) |
| 171 | mutexUpgradeParams sync.RWMutex //mutex to protect members for parallel function requests and omci response processing |
| 172 | imageVersion string //name of the image as used within OMCI (and on extrenal API interface) |
| 173 | imageIdentifier string //name of the image as used in the adapter |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 174 | mutexIsAwaitingAdapterDlResponse sync.RWMutex |
| 175 | chAdapterDlReady chan bool |
| 176 | isWaitingForAdapterDlResponse bool |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 177 | chOnuDlReady chan bool |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 178 | activateImage bool |
| 179 | commitImage bool |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 180 | mutexAbortRequest sync.RWMutex |
| 181 | abortRequested voltha.ImageState_ImageFailureReason |
| 182 | conditionalCancelRequested bool |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 183 | upgradePhase tUpgradePhase |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 184 | volthaDownloadState voltha.ImageState_ImageDownloadState |
| 185 | volthaDownloadReason voltha.ImageState_ImageFailureReason |
| 186 | volthaImageState voltha.ImageState_ImageActivationState |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 187 | downloadReasonCached voltha.ImageState_ImageFailureReason |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 188 | isEndSwDlOpen bool |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 189 | chReceiveAbortEndSwDlResponse chan tEndSwDlResponseResult |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | //NewOnuUpgradeFsm is the 'constructor' for the state machine to config the PON ANI ports |
| 193 | // of ONU UNI ports via OMCI |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 194 | func NewOnuUpgradeFsm(ctx context.Context, apDeviceHandler cmn.IdeviceHandler, |
| 195 | apDevEntry cmn.IonuDeviceEntry, apOnuDB *devdb.OnuDeviceDB, |
| 196 | aRequestEvent cmn.OnuDeviceEvent, aName string, aCommChannel chan cmn.Message) *OnuUpgradeFsm { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 197 | instFsm := &OnuUpgradeFsm{ |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 198 | pDeviceHandler: apDeviceHandler, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 199 | deviceID: apDeviceHandler.GetDeviceID(), |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 200 | pDevEntry: apDevEntry, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 201 | pOmciCC: apDevEntry.GetDevOmciCC(), |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 202 | pOnuDB: apOnuDB, |
| 203 | requestEvent: aRequestEvent, |
| 204 | omciDownloadWindowSizeLimit: cOmciDownloadWindowSizeLimit, |
| 205 | omciSectionInterleaveDelay: cOmciSectionInterleaveMilliseconds, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 206 | downloadToOnuTimeout4MB: apDeviceHandler.GetDlToOnuTimeout4M(), |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 207 | waitCountEndSwDl: cWaitCountEndSwDl, |
| 208 | waitDelayEndSwDl: cWaitDelayEndSwDlSeconds, |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 209 | upgradePhase: cUpgradeUndefined, |
| 210 | volthaDownloadState: voltha.ImageState_DOWNLOAD_UNKNOWN, |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 211 | volthaDownloadReason: voltha.ImageState_NO_ERROR, |
| 212 | volthaImageState: voltha.ImageState_IMAGE_UNKNOWN, |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 213 | abortRequested: voltha.ImageState_NO_ERROR, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 214 | } |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 215 | instFsm.chReceiveExpectedResponse = make(chan bool) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 216 | instFsm.chAdapterDlReady = make(chan bool) |
| 217 | instFsm.chOnuDlReady = make(chan bool) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 218 | instFsm.chReceiveAbortEndSwDlResponse = make(chan tEndSwDlResponseResult) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 219 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 220 | instFsm.PAdaptFsm = cmn.NewAdapterFsm(aName, instFsm.deviceID, aCommChannel) |
| 221 | if instFsm.PAdaptFsm == nil { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 222 | logger.Errorw(ctx, "OnuUpgradeFsm's AdapterFsm could not be instantiated!!", log.Fields{ |
| 223 | "device-id": instFsm.deviceID}) |
| 224 | return nil |
| 225 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 226 | instFsm.PAdaptFsm.PFsm = fsm.NewFSM( |
| 227 | UpgradeStDisabled, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 228 | fsm.Events{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 229 | {Name: UpgradeEvStart, Src: []string{UpgradeStDisabled}, Dst: UpgradeStStarting}, |
| 230 | {Name: UpgradeEvAdapterDownload, Src: []string{UpgradeStStarting}, Dst: UpgradeStWaitingAdapterDL}, |
| 231 | {Name: UpgradeEvPrepareSwDownload, Src: []string{UpgradeStStarting, UpgradeStWaitingAdapterDL}, Dst: UpgradeStPreparingDL}, |
| 232 | {Name: UpgradeEvRxStartSwDownload, Src: []string{UpgradeStPreparingDL}, Dst: UpgradeStDLSection}, |
| 233 | {Name: UpgradeEvWaitWindowAck, Src: []string{UpgradeStDLSection}, Dst: UpgradeStVerifyWindow}, |
| 234 | {Name: UpgradeEvContinueNextWindow, Src: []string{UpgradeStVerifyWindow}, Dst: UpgradeStDLSection}, |
| 235 | {Name: UpgradeEvEndSwDownload, Src: []string{UpgradeStVerifyWindow}, Dst: UpgradeStFinalizeDL}, |
| 236 | {Name: UpgradeEvWaitEndDownload, Src: []string{UpgradeStFinalizeDL}, Dst: UpgradeStWaitEndDL}, |
| 237 | {Name: UpgradeEvContinueFinalize, Src: []string{UpgradeStWaitEndDL}, Dst: UpgradeStFinalizeDL}, |
| 238 | //UpgradeStCheckImageName only used with useAPIVersion43 |
| 239 | {Name: UpgradeEvCheckImageName, Src: []string{UpgradeStWaitEndDL}, Dst: UpgradeStCheckImageName}, |
| 240 | //UpgradeEvWaitForActivate state transitions depend on useAPIVersion43 |
| 241 | {Name: UpgradeEvWaitForActivate, Src: []string{UpgradeStWaitEndDL, UpgradeStCheckImageName}, Dst: UpgradeStWaitForActivate}, |
| 242 | //UpgradeEvRequestActivate state transitions depend on useAPIVersion43 |
| 243 | {Name: UpgradeEvRequestActivate, Src: []string{UpgradeStStarting, UpgradeStWaitEndDL, UpgradeStCheckImageName, |
| 244 | UpgradeStWaitForActivate}, Dst: UpgradeStRequestingActivate}, //allows also for direct activation (without download) [TODO!!!] |
| 245 | {Name: UpgradeEvActivationDone, Src: []string{UpgradeStRequestingActivate}, Dst: UpgradeStActivated}, |
| 246 | {Name: UpgradeEvWaitForCommit, Src: []string{UpgradeStRequestingActivate}, Dst: UpgradeStWaitForCommit}, |
| 247 | {Name: UpgradeEvCommitSw, Src: []string{UpgradeStStarting, UpgradeStRequestingActivate, UpgradeStWaitForCommit, |
| 248 | UpgradeStActivated}, Dst: UpgradeStCommitSw}, //allows also for direct commitment (without download) [TODO!!!] |
| 249 | {Name: UpgradeEvCheckCommitted, Src: []string{UpgradeStCommitSw}, Dst: UpgradeStCheckCommitted}, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 250 | |
| 251 | /* |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 252 | {Name: UpgradeEvTimeoutSimple, Src: []string{ |
| 253 | UpgradeStCreatingDot1PMapper, UpgradeStCreatingMBPCD, UpgradeStSettingTconts, UpgradeStSettingDot1PMapper}, Dst: UpgradeStStarting}, |
| 254 | {Name: UpgradeEvTimeoutMids, Src: []string{ |
| 255 | UpgradeStCreatingGemNCTPs, UpgradeStCreatingGemIWs, UpgradeStSettingPQs}, Dst: UpgradeStStarting}, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 256 | */ |
| 257 | // exceptional treatments |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 258 | //on UpgradeEvReset: UpgradeStRequestingActivate, UpgradeStWaitForCommit and UpgradeStActivated are not reset |
mpagenko | 1f8e882 | 2021-06-25 14:10:21 +0000 | [diff] [blame] | 259 | // (to let the FSM survive the expected OnuDown indication) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 260 | {Name: UpgradeEvReset, Src: []string{UpgradeStStarting, UpgradeStWaitingAdapterDL, UpgradeStPreparingDL, UpgradeStDLSection, |
| 261 | UpgradeStVerifyWindow, UpgradeStDLSection, UpgradeStFinalizeDL, UpgradeStWaitEndDL, UpgradeStCheckImageName, |
| 262 | UpgradeStWaitForActivate, |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 263 | UpgradeStCommitSw, UpgradeStCheckCommitted, UpgradeStAbortingDL}, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 264 | Dst: UpgradeStResetting}, |
| 265 | {Name: UpgradeEvAbort, Src: []string{UpgradeStStarting, UpgradeStWaitingAdapterDL, UpgradeStPreparingDL, UpgradeStDLSection, |
| 266 | UpgradeStVerifyWindow, UpgradeStDLSection, UpgradeStFinalizeDL, UpgradeStWaitEndDL, UpgradeStCheckImageName, |
| 267 | UpgradeStWaitForActivate, |
| 268 | UpgradeStRequestingActivate, UpgradeStActivated, UpgradeStWaitForCommit, |
| 269 | UpgradeStCommitSw, UpgradeStCheckCommitted}, |
| 270 | Dst: UpgradeStResetting}, |
| 271 | {Name: UpgradeEvAbortSwDownload, Src: []string{UpgradeStResetting}, Dst: UpgradeStAbortingDL}, |
| 272 | {Name: UpgradeEvRestart, Src: []string{UpgradeStResetting, UpgradeStAbortingDL}, Dst: UpgradeStRestarting}, |
| 273 | {Name: UpgradeEvDisable, Src: []string{UpgradeStRestarting}, Dst: UpgradeStDisabled}, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 274 | }, |
| 275 | fsm.Callbacks{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 276 | "enter_state": func(e *fsm.Event) { instFsm.PAdaptFsm.LogFsmStateChange(ctx, e) }, |
| 277 | "enter_" + UpgradeStStarting: func(e *fsm.Event) { instFsm.enterStarting(ctx, e) }, |
| 278 | "enter_" + UpgradeStWaitingAdapterDL: func(e *fsm.Event) { instFsm.enterWaitingAdapterDL(ctx, e) }, |
| 279 | "enter_" + UpgradeStPreparingDL: func(e *fsm.Event) { instFsm.enterPreparingDL(ctx, e) }, |
| 280 | "enter_" + UpgradeStDLSection: func(e *fsm.Event) { instFsm.enterDownloadSection(ctx, e) }, |
| 281 | "enter_" + UpgradeStVerifyWindow: func(e *fsm.Event) { instFsm.enterVerifyWindow(ctx, e) }, |
| 282 | "enter_" + UpgradeStFinalizeDL: func(e *fsm.Event) { instFsm.enterFinalizeDL(ctx, e) }, |
| 283 | "enter_" + UpgradeStWaitEndDL: func(e *fsm.Event) { instFsm.enterWaitEndDL(ctx, e) }, |
| 284 | "enter_" + UpgradeStCheckImageName: func(e *fsm.Event) { instFsm.enterCheckImageName(ctx, e) }, |
| 285 | "enter_" + UpgradeStRequestingActivate: func(e *fsm.Event) { instFsm.enterActivateSw(ctx, e) }, |
| 286 | "enter_" + UpgradeStCommitSw: func(e *fsm.Event) { instFsm.enterCommitSw(ctx, e) }, |
| 287 | "enter_" + UpgradeStCheckCommitted: func(e *fsm.Event) { instFsm.enterCheckCommitted(ctx, e) }, |
| 288 | "enter_" + UpgradeStResetting: func(e *fsm.Event) { instFsm.enterResetting(ctx, e) }, |
| 289 | "enter_" + UpgradeStAbortingDL: func(e *fsm.Event) { instFsm.enterAbortingDL(ctx, e) }, |
| 290 | "enter_" + UpgradeStRestarting: func(e *fsm.Event) { instFsm.enterRestarting(ctx, e) }, |
| 291 | "enter_" + UpgradeStDisabled: func(e *fsm.Event) { instFsm.enterDisabled(ctx, e) }, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 292 | }, |
| 293 | ) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 294 | if instFsm.PAdaptFsm.PFsm == nil { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 295 | logger.Errorw(ctx, "OnuUpgradeFsm's Base FSM could not be instantiated!!", log.Fields{ |
| 296 | "device-id": instFsm.deviceID}) |
| 297 | return nil |
| 298 | } |
| 299 | |
| 300 | logger.Debugw(ctx, "OnuUpgradeFsm created", log.Fields{"device-id": instFsm.deviceID}) |
| 301 | return instFsm |
| 302 | } |
| 303 | |
| 304 | //SetDownloadParams configures the needed parameters for a specific download to the ONU |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 305 | // called from 'old' API Activate_image_update() |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 306 | func (oFsm *OnuUpgradeFsm) SetDownloadParams(ctx context.Context, aInactiveImageID uint16, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 307 | apImageDsc *voltha.ImageDownload, apDownloadManager *AdapterDownloadManager) error { |
| 308 | pBaseFsm := oFsm.PAdaptFsm.PFsm |
| 309 | if pBaseFsm != nil && pBaseFsm.Is(UpgradeStStarting) { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 310 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 311 | logger.Debugw(ctx, "OnuUpgradeFsm Parameter setting", log.Fields{ |
| 312 | "device-id": oFsm.deviceID, "image-description": apImageDsc}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 313 | oFsm.InactiveImageMeID = aInactiveImageID //upgrade state machines run on configured inactive ImageId |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 314 | oFsm.pImageDsc = apImageDsc |
| 315 | oFsm.pDownloadManager = apDownloadManager |
Holger Hildebrandt | ac1e059 | 2021-06-03 15:16:49 +0000 | [diff] [blame] | 316 | oFsm.activateImage = true |
| 317 | oFsm.commitImage = true |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 318 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 319 | |
| 320 | go func(aPBaseFsm *fsm.FSM) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 321 | // let the upgrade FSM proceed to PreparingDL |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 322 | _ = aPBaseFsm.Event(UpgradeEvPrepareSwDownload) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 323 | }(pBaseFsm) |
| 324 | return nil |
| 325 | } |
| 326 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer or state", log.Fields{ |
| 327 | "device-id": oFsm.deviceID}) |
| 328 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer or state for device-id: %s", oFsm.deviceID)) |
| 329 | } |
| 330 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 331 | //SetDownloadParamsAfterDownload configures the needed parameters for a specific download to the ONU according to |
| 332 | // updated API interface with R2.8: start download to ONU if the image is downloaded to the adapter |
| 333 | // called from 'new' API Download_onu_image |
| 334 | func (oFsm *OnuUpgradeFsm) SetDownloadParamsAfterDownload(ctx context.Context, aInactiveImageID uint16, |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 335 | apImageRequest *voltha.DeviceImageDownloadRequest, apDownloadManager *FileDownloadManager, |
Holger Hildebrandt | ac01073 | 2021-06-02 13:35:39 +0000 | [diff] [blame] | 336 | aImageIdentifier string) error { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 337 | oFsm.mutexUpgradeParams.Lock() |
| 338 | var pBaseFsm *fsm.FSM = nil |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 339 | if oFsm.PAdaptFsm != nil { |
| 340 | pBaseFsm = oFsm.PAdaptFsm.PFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 341 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 342 | if pBaseFsm != nil && pBaseFsm.Is(UpgradeStStarting) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 343 | logger.Debugw(ctx, "OnuUpgradeFsm Parameter setting", log.Fields{ |
| 344 | "device-id": oFsm.deviceID, "image-description": apImageRequest}) |
| 345 | oFsm.useAPIVersion43 = true |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 346 | oFsm.InactiveImageMeID = aInactiveImageID //upgrade state machines run on configured inactive ImageId |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 347 | oFsm.pFileManager = apDownloadManager |
| 348 | oFsm.imageIdentifier = aImageIdentifier |
| 349 | oFsm.imageVersion = apImageRequest.Image.Version |
| 350 | oFsm.activateImage = apImageRequest.ActivateOnSuccess |
| 351 | oFsm.commitImage = apImageRequest.CommitOnSuccess |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 352 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_STARTED //state change indication for download request |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 353 | oFsm.mutexUpgradeParams.Unlock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 354 | _ = pBaseFsm.Event(UpgradeEvAdapterDownload) //no need to call the FSM event in background here |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 355 | return nil |
| 356 | } |
| 357 | oFsm.mutexUpgradeParams.Unlock() |
| 358 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer or state", log.Fields{ |
| 359 | "device-id": oFsm.deviceID}) |
| 360 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer or state for device-id: %s", oFsm.deviceID)) |
| 361 | } |
| 362 | |
| 363 | //SetActivationParamsRunning sets the activate and commit flags for a running download to the ONU according to adapters rpc call |
| 364 | // called from 'new' API Activate_onu_image |
| 365 | func (oFsm *OnuUpgradeFsm) SetActivationParamsRunning(ctx context.Context, |
| 366 | aImageIdentifier string, aCommit bool) error { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 367 | logger.Debugw(ctx, "OnuUpgradeFsm activate/commit parameter setting", log.Fields{ |
| 368 | "device-id": oFsm.deviceID, "image-id": aImageIdentifier, "commit": aCommit}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 369 | oFsm.mutexUpgradeParams.Lock() |
| 370 | //set activate/commit independent from state, if FSM is already beyond concerned states, then it does not matter anyway |
| 371 | // (as long as the Imageidentifier is correct) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 372 | if aImageIdentifier != oFsm.imageIdentifier { |
| 373 | logger.Errorw(ctx, "OnuUpgradeFsm abort: mismatching upgrade image", log.Fields{ |
| 374 | "device-id": oFsm.deviceID, "request-image": aImageIdentifier, "fsm-image": oFsm.imageIdentifier}) |
| 375 | oFsm.mutexUpgradeParams.Unlock() |
| 376 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm params ignored: requested image-name not used in current upgrade for device-id: %s", |
| 377 | oFsm.deviceID)) |
| 378 | } |
| 379 | oFsm.activateImage = true |
| 380 | oFsm.commitImage = aCommit |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 381 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 382 | var pBaseFsm *fsm.FSM = nil |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 383 | if oFsm.PAdaptFsm != nil { |
| 384 | pBaseFsm = oFsm.PAdaptFsm.PFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 385 | } |
| 386 | if pBaseFsm != nil { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 387 | if pBaseFsm.Is(UpgradeStWaitForActivate) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 388 | logger.Debugw(ctx, "OnuUpgradeFsm finish waiting for activate", log.Fields{"device-id": oFsm.deviceID}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 389 | _ = pBaseFsm.Event(UpgradeEvRequestActivate) //no need to call the FSM event in background here |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 390 | } else { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 391 | logger.Debugw(ctx, "OnuUpgradeFsm not (yet?) waiting for activate", log.Fields{ |
| 392 | "device-id": oFsm.deviceID, "current FsmState": pBaseFsm.Current()}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 393 | } |
| 394 | return nil |
| 395 | } |
| 396 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer", log.Fields{ |
| 397 | "device-id": oFsm.deviceID}) |
| 398 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer for device-id: %s", oFsm.deviceID)) |
| 399 | } |
| 400 | |
| 401 | //SetActivationParamsStart starts upgrade processing with immediate activation |
| 402 | // called from 'new' API Activate_onu_image |
| 403 | func (oFsm *OnuUpgradeFsm) SetActivationParamsStart(ctx context.Context, aImageVersion string, aInactiveImageID uint16, aCommit bool) error { |
| 404 | oFsm.mutexUpgradeParams.Lock() |
| 405 | var pBaseFsm *fsm.FSM = nil |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 406 | if oFsm.PAdaptFsm != nil { |
| 407 | pBaseFsm = oFsm.PAdaptFsm.PFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 408 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 409 | if pBaseFsm != nil && pBaseFsm.Is(UpgradeStStarting) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 410 | logger.Debugw(ctx, "OnuUpgradeFsm Parameter setting to start with activation", log.Fields{ |
| 411 | "device-id": oFsm.deviceID, "image-version": aImageVersion}) |
| 412 | oFsm.useAPIVersion43 = true |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 413 | oFsm.InactiveImageMeID = aInactiveImageID //upgrade state machines run on configured inactive ImageId |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 414 | oFsm.imageVersion = aImageVersion |
| 415 | oFsm.activateImage = true |
| 416 | oFsm.commitImage = aCommit |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 417 | // indicate start of the upgrade activity |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 418 | oFsm.volthaImageState = voltha.ImageState_IMAGE_ACTIVATING //state change indication for activate request |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 419 | oFsm.mutexUpgradeParams.Unlock() |
| 420 | //directly request the FSM to activate the image |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 421 | _ = pBaseFsm.Event(UpgradeEvRequestActivate) //no need to call the FSM event in background here |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 422 | return nil |
| 423 | } |
| 424 | oFsm.mutexUpgradeParams.Unlock() |
| 425 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer or state", log.Fields{ |
| 426 | "device-id": oFsm.deviceID}) |
| 427 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer or state for device-id: %s", oFsm.deviceID)) |
| 428 | } |
| 429 | |
| 430 | //SetCommitmentParamsRunning sets the commit flag for a running download to the ONU according to adapters rpc call |
| 431 | // called from 'new' API Commit_onu_image |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 432 | func (oFsm *OnuUpgradeFsm) SetCommitmentParamsRunning(ctx context.Context, |
| 433 | aImageIdentifier string, aImageVersion string) error { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 434 | oFsm.mutexUpgradeParams.Lock() |
| 435 | //set commit independent from state, if FSM is already beyond commit state (just ready), then it does not matter anyway |
| 436 | // (as long as the Imageidentifier is correct) |
| 437 | logger.Debugw(ctx, "OnuUpgradeFsm commit parameter setting", log.Fields{ |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 438 | "device-id": oFsm.deviceID, "image-id": aImageIdentifier, "image-version": aImageVersion}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 439 | if (aImageIdentifier != oFsm.imageIdentifier) && (aImageVersion != oFsm.imageVersion) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 440 | logger.Errorw(ctx, "OnuUpgradeFsm abort: mismatching upgrade image", log.Fields{ |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 441 | "device-id": oFsm.deviceID, "request-identifier": aImageIdentifier, "fsm-identifier": oFsm.imageIdentifier, |
| 442 | "request-version": aImageVersion, "fsm-version": oFsm.imageVersion}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 443 | oFsm.mutexUpgradeParams.Unlock() |
| 444 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm params ignored: requested image-name not used in current upgrade for device-id: %s", |
| 445 | oFsm.deviceID)) |
| 446 | } |
| 447 | oFsm.commitImage = true |
| 448 | oFsm.mutexUpgradeParams.Unlock() |
| 449 | var pBaseFsm *fsm.FSM = nil |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 450 | if oFsm.PAdaptFsm != nil { |
| 451 | pBaseFsm = oFsm.PAdaptFsm.PFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 452 | } |
| 453 | if pBaseFsm != nil { |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 454 | //let the FSM decide if it is ready to process the event |
| 455 | logger.Debugw(ctx, "OnuUpgradeFsm requesting commit", |
| 456 | log.Fields{"device-id": oFsm.deviceID, "current FsmState": pBaseFsm.Current()}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 457 | _ = pBaseFsm.Event(UpgradeEvCommitSw) //no need to call the FSM event in background here |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 458 | return nil |
| 459 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 460 | //should never occur |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 461 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer", log.Fields{ |
| 462 | "device-id": oFsm.deviceID}) |
| 463 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer for device-id: %s", oFsm.deviceID)) |
| 464 | } |
| 465 | |
| 466 | //SetCommitmentParamsStart starts upgrade processing with immediate commitment |
| 467 | // called from 'new' API Commit_onu_image |
| 468 | func (oFsm *OnuUpgradeFsm) SetCommitmentParamsStart(ctx context.Context, aImageVersion string, aActiveImageID uint16) error { |
| 469 | oFsm.mutexUpgradeParams.Lock() |
| 470 | var pBaseFsm *fsm.FSM = nil |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 471 | if oFsm.PAdaptFsm != nil { |
| 472 | pBaseFsm = oFsm.PAdaptFsm.PFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 473 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 474 | if pBaseFsm != nil && pBaseFsm.Is(UpgradeStStarting) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 475 | logger.Debugw(ctx, "OnuUpgradeFsm Parameter setting to start with commitment", log.Fields{ |
| 476 | "device-id": oFsm.deviceID, "image-version": aImageVersion}) |
| 477 | oFsm.useAPIVersion43 = true |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 478 | oFsm.InactiveImageMeID = aActiveImageID //upgrade state machines inactive ImageId is the new active ImageId |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 479 | oFsm.imageVersion = aImageVersion |
| 480 | oFsm.commitImage = true |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 481 | oFsm.volthaImageState = voltha.ImageState_IMAGE_COMMITTING //state change indication for activate request |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 482 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 483 | //directly request the FSM to commit the image |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 484 | _ = pBaseFsm.Event(UpgradeEvCommitSw) //no need to call the FSM event in background here |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 485 | return nil |
| 486 | } |
| 487 | oFsm.mutexUpgradeParams.Unlock() |
| 488 | logger.Errorw(ctx, "OnuUpgradeFsm abort: invalid FSM base pointer or state", log.Fields{ |
| 489 | "device-id": oFsm.deviceID}) |
| 490 | return fmt.Errorf(fmt.Sprintf("OnuUpgradeFsm abort: invalid FSM base pointer or state for device-id: %s", oFsm.deviceID)) |
| 491 | } |
| 492 | |
mpagenko | 1f8e882 | 2021-06-25 14:10:21 +0000 | [diff] [blame] | 493 | //GetCommitFlag delivers the commit flag that was configured here |
| 494 | func (oFsm *OnuUpgradeFsm) GetCommitFlag(ctx context.Context) bool { |
| 495 | oFsm.mutexUpgradeParams.RLock() |
| 496 | defer oFsm.mutexUpgradeParams.RUnlock() |
| 497 | return oFsm.commitImage |
| 498 | } |
| 499 | |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 500 | //GetImageStates delivers the download/image states as per device proto buf definition |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 501 | func (oFsm *OnuUpgradeFsm) GetImageStates(ctx context.Context, |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 502 | aImageIdentifier string, aVersion string) *voltha.ImageState { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 503 | pImageState := &voltha.ImageState{} |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 504 | pImageState.Version = aVersion //version as requested |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 505 | // check if the request refers to some active image/version of the processing |
| 506 | oFsm.mutexUpgradeParams.RLock() |
| 507 | if (aImageIdentifier == oFsm.imageIdentifier) || (aVersion == oFsm.imageVersion) { |
| 508 | pImageState.DownloadState = oFsm.volthaDownloadState |
| 509 | pImageState.Reason = oFsm.volthaDownloadReason |
| 510 | pImageState.ImageState = oFsm.volthaImageState |
| 511 | } else { |
| 512 | pImageState.DownloadState = voltha.ImageState_DOWNLOAD_UNKNOWN |
| 513 | pImageState.Reason = voltha.ImageState_NO_ERROR |
| 514 | pImageState.ImageState = voltha.ImageState_IMAGE_UNKNOWN |
| 515 | } |
| 516 | oFsm.mutexUpgradeParams.RUnlock() |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 517 | return pImageState |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 518 | } |
| 519 | |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 520 | //SetImageStateActive sets the FSM internal volthaImageState to ImageState_IMAGE_ACTIVE |
| 521 | func (oFsm *OnuUpgradeFsm) SetImageStateActive(ctx context.Context) { |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 522 | oFsm.mutexUpgradeParams.Lock() |
| 523 | defer oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 524 | oFsm.upgradePhase = cUpgradeActivated |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 525 | oFsm.volthaImageState = voltha.ImageState_IMAGE_ACTIVE |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 526 | } |
| 527 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 528 | //CancelProcessing ensures that suspended processing at waiting on some response is aborted and reset of FSM |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 529 | func (oFsm *OnuUpgradeFsm) CancelProcessing(ctx context.Context, abCompleteAbort bool, |
| 530 | aReason voltha.ImageState_ImageFailureReason) { |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 531 | pAdaptFsm := oFsm.PAdaptFsm |
| 532 | if pAdaptFsm == nil || pAdaptFsm.PFsm == nil { |
| 533 | logger.Warnw(ctx, "OnuUpgradeFsm cancel, but FSM invalid", log.Fields{ |
| 534 | "device-id": oFsm.deviceID}) |
| 535 | return |
| 536 | } |
| 537 | logger.Debugw(ctx, "OnuUpgradeFsm start canceling", log.Fields{ |
| 538 | "device-id": oFsm.deviceID, "in fsm-state": pAdaptFsm.PFsm.Current()}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 539 | oFsm.mutexAbortRequest.Lock() |
| 540 | oFsm.abortRequested = aReason //possibly abort the sectionDownload loop |
| 541 | oFsm.mutexAbortRequest.Unlock() |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 542 | //mutex protection is required for possible concurrent access to FSM members |
| 543 | //attention: for an unbuffered channel the sender is blocked until the value is received (processed)! |
| 544 | // accordingly the mutex must be released before sending to channel here (mutex acquired in receiver) |
| 545 | oFsm.mutexIsAwaitingAdapterDlResponse.RLock() |
| 546 | if oFsm.isWaitingForAdapterDlResponse { |
| 547 | oFsm.mutexIsAwaitingAdapterDlResponse.RUnlock() |
| 548 | //use channel to indicate that the download response waiting shall be aborted for this device (channel) |
| 549 | oFsm.chAdapterDlReady <- false |
| 550 | } else { |
| 551 | oFsm.mutexIsAwaitingAdapterDlResponse.RUnlock() |
| 552 | } |
| 553 | //chOnuDlReady is cleared as part of the FSM reset processing (from enterResetting()) |
| 554 | |
| 555 | // in any case (even if it might be automatically requested by above cancellation of waiting) ensure resetting the FSM |
mpagenko | 1f8e882 | 2021-06-25 14:10:21 +0000 | [diff] [blame] | 556 | // specific here: See definition of state changes: some states are excluded from reset for possible later commit |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 557 | pAdaptFsm = oFsm.PAdaptFsm |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 558 | if pAdaptFsm != nil && pAdaptFsm.PFsm != nil { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 559 | // calling FSM events in background to avoid blocking of the caller |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 560 | go func(apFsm *fsm.FSM) { |
| 561 | if apFsm.Is(UpgradeStWaitEndDL) { |
| 562 | oFsm.chReceiveExpectedResponse <- false //which aborts the FSM in WaitEndDL state |
| 563 | } else if apFsm.Is(UpgradeStAbortingDL) { |
| 564 | oFsm.chReceiveAbortEndSwDlResponse <- cEndSwDlResponseAbort //abort waiting on EndDownloadResponse |
| 565 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 566 | |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 567 | var err error |
| 568 | if abCompleteAbort { |
| 569 | // in case of unconditional abort request the ImageState is set immediately |
| 570 | oFsm.mutexUpgradeParams.Lock() |
| 571 | //any previous lingering conditional cancelRequest is superseded by this abortion |
| 572 | oFsm.conditionalCancelRequested = false |
| 573 | oFsm.volthaDownloadReason = aReason |
| 574 | oFsm.mutexUpgradeParams.Unlock() |
| 575 | err = apFsm.Event(UpgradeEvAbort) //as unconditional default FSM cancellation |
| 576 | } else { |
| 577 | //at conditional abort request the image states are set when reaching the reset state |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 578 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 579 | oFsm.conditionalCancelRequested = true |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 580 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 581 | err = apFsm.Event(UpgradeEvReset) //as state-conditional default FSM cleanup |
| 582 | } |
| 583 | if err != nil { |
| 584 | //error return is expected in case of conditional request and no state transition |
| 585 | logger.Debugw(ctx, "onu upgrade fsm could not cancel with abort/reset event", log.Fields{ |
| 586 | "device-id": oFsm.deviceID, "error": err}) |
| 587 | } |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 588 | logger.Debugw(ctx, "OnuUpgradeFsm canceling done", log.Fields{ |
| 589 | "device-id": oFsm.deviceID}) |
mpagenko | 59862f0 | 2021-10-11 08:53:18 +0000 | [diff] [blame] | 590 | }(pAdaptFsm.PFsm) |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 591 | } else { //the FSM seems already to be in some released state |
| 592 | logger.Warnw(ctx, "OnuUpgradeFsm canceling without FSM event", log.Fields{ |
| 593 | "device-id": oFsm.deviceID}) |
| 594 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 595 | } |
| 596 | |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 597 | func (oFsm *OnuUpgradeFsm) enterStarting(ctx context.Context, e *fsm.Event) { |
| 598 | logger.Debugw(ctx, "OnuUpgradeFsm start", log.Fields{"in state": e.FSM.Current(), |
| 599 | "device-id": oFsm.deviceID}) |
| 600 | |
| 601 | // start go routine for processing of LockState messages |
| 602 | go oFsm.processOmciUpgradeMessages(ctx) |
| 603 | } |
| 604 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 605 | //enterWaitingAdapterDL state can only be reached with useAPIVersion43 |
| 606 | func (oFsm *OnuUpgradeFsm) enterWaitingAdapterDL(ctx context.Context, e *fsm.Event) { |
| 607 | logger.Debugw(ctx, "OnuUpgradeFsm waiting for adapter download", log.Fields{"in state": e.FSM.Current(), |
| 608 | "device-id": oFsm.deviceID}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 609 | syncChannel := make(chan struct{}) |
| 610 | go oFsm.waitOnDownloadToAdapterReady(ctx, syncChannel, oFsm.chAdapterDlReady) |
| 611 | //block until the wait routine is really blocked on chAdapterDlReady |
| 612 | <-syncChannel |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 613 | go oFsm.pFileManager.RequestDownloadReady(ctx, oFsm.imageIdentifier, oFsm.chAdapterDlReady) |
| 614 | } |
| 615 | |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 616 | func (oFsm *OnuUpgradeFsm) enterPreparingDL(ctx context.Context, e *fsm.Event) { |
| 617 | logger.Debugw(ctx, "OnuUpgradeFsm prepare Download to Onu", log.Fields{"in state": e.FSM.Current(), |
| 618 | "device-id": oFsm.deviceID}) |
| 619 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 620 | var fileLen int64 |
| 621 | var err error |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 622 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 623 | if oFsm.useAPIVersion43 { |
| 624 | //with the new API structure download to adapter is implicit and we have to wait until the image is available |
| 625 | fileLen, err = oFsm.pFileManager.GetImageBufferLen(ctx, oFsm.imageIdentifier) |
| 626 | } else { |
| 627 | fileLen, err = oFsm.pDownloadManager.getImageBufferLen(ctx, oFsm.pImageDsc.Name, oFsm.pImageDsc.LocalDir) |
| 628 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 629 | if err != nil || fileLen > int64(cMaxUint32) { |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 630 | oFsm.volthaDownloadReason = voltha.ImageState_UNKNOWN_ERROR //something like 'LOCAL_FILE_ERROR' would be better (proto) |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 631 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 632 | logger.Errorw(ctx, "OnuUpgradeFsm abort: problems getting image buffer length", log.Fields{ |
| 633 | "device-id": oFsm.deviceID, "error": err, "length": fileLen}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 634 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 635 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 636 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 637 | _ = a_pAFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 638 | }(pBaseFsm) |
| 639 | return |
| 640 | } |
| 641 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 642 | //copy file content to buffer |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 643 | oFsm.imageBuffer = make([]byte, fileLen) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 644 | if oFsm.useAPIVersion43 { |
| 645 | oFsm.imageBuffer, err = oFsm.pFileManager.GetDownloadImageBuffer(ctx, oFsm.imageIdentifier) |
| 646 | } else { |
| 647 | oFsm.imageBuffer, err = oFsm.pDownloadManager.getDownloadImageBuffer(ctx, oFsm.pImageDsc.Name, oFsm.pImageDsc.LocalDir) |
| 648 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 649 | if err != nil { |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 650 | oFsm.volthaDownloadReason = voltha.ImageState_UNKNOWN_ERROR //something like 'LOCAL_FILE_ERROR' would be better (proto) |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 651 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 652 | logger.Errorw(ctx, "OnuUpgradeFsm abort: can't get image buffer", log.Fields{ |
| 653 | "device-id": oFsm.deviceID, "error": err}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 654 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 655 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 656 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 657 | _ = a_pAFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 658 | }(pBaseFsm) |
| 659 | return |
| 660 | } |
| 661 | |
| 662 | oFsm.noOfSections = uint32(fileLen / cOmciDownloadSectionSize) |
| 663 | if fileLen%cOmciDownloadSectionSize > 0 { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 664 | bufferPadding := make([]byte, cOmciDownloadSectionSize-uint32((fileLen)%cOmciDownloadSectionSize)) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 665 | //expand the imageBuffer to exactly fit multiples of cOmciDownloadSectionSize with padding |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 666 | oFsm.imageBuffer = append(oFsm.imageBuffer[:(fileLen)], bufferPadding...) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 667 | oFsm.noOfSections++ |
| 668 | } |
| 669 | oFsm.origImageLength = uint32(fileLen) |
| 670 | oFsm.imageLength = uint32(len(oFsm.imageBuffer)) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 671 | logger.Infow(ctx, "OnuUpgradeFsm starts with StartSwDl values", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 672 | "MeId": oFsm.InactiveImageMeID, "windowSizeLimit": oFsm.omciDownloadWindowSizeLimit, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 673 | "ImageSize": oFsm.imageLength, "original file size": fileLen}) |
| 674 | //"NumberOfCircuitPacks": oFsm.numberCircuitPacks, "CircuitPacks MeId": 0}) //parallel circuit packs download not supported |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 675 | |
| 676 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 677 | |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 678 | // flush chOnuDlReady |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 679 | select { |
| 680 | case <-oFsm.chOnuDlReady: |
| 681 | logger.Debug(ctx, "flushed OnuDlReady channel") |
| 682 | default: |
| 683 | } |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 684 | go oFsm.waitOnDownloadToOnuReady(ctx, oFsm.chOnuDlReady) // start supervision of the complete download-to-ONU procedure |
| 685 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 686 | err = oFsm.pOmciCC.SendStartSoftwareDownload(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
| 687 | oFsm.PAdaptFsm.CommChan, oFsm.InactiveImageMeID, oFsm.omciDownloadWindowSizeLimit, oFsm.origImageLength) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 688 | if err != nil { |
| 689 | logger.Errorw(ctx, "StartSwDl abort: can't send section", log.Fields{ |
| 690 | "device-id": oFsm.deviceID, "error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 691 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 692 | return |
| 693 | } |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 694 | oFsm.isEndSwDlOpen = true |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | func (oFsm *OnuUpgradeFsm) enterDownloadSection(ctx context.Context, e *fsm.Event) { |
| 698 | logger.Debugw(ctx, "OnuUpgradeFsm start downloading sections", log.Fields{ |
| 699 | "device-id": oFsm.deviceID, "absolute window": oFsm.nextDownloadWindow}) |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 700 | //use a background routine to send the multiple download sections frames in a loop |
| 701 | // in order to avoid blocking on synchrounous event calls for the entire (long) processing time |
| 702 | go oFsm.runSwDlSectionWindow(ctx) |
| 703 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 704 | |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 705 | //runSwDlSectionWindow runs a loop to send all DlSection frames of one window in background |
| 706 | // may be aborted by parallel change of abortRequested |
| 707 | func (oFsm *OnuUpgradeFsm) runSwDlSectionWindow(ctx context.Context) { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 708 | var windowAckRequest uint8 = 0 |
| 709 | var bufferStartOffset uint32 |
| 710 | var bufferEndOffset uint32 |
| 711 | var downloadSection []byte |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 712 | framePrint := false //default no printing of downloadSection frames |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 713 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 714 | oFsm.upgradePhase = cUpgradeDownloading //start of downloading image to ONU |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 715 | if oFsm.nextDownloadSectionsAbsolute == 0 { |
| 716 | //debug print of first section frame |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 717 | framePrint = true |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 718 | oFsm.volthaImageState = voltha.ImageState_IMAGE_DOWNLOADING |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 719 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 720 | for { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 721 | oFsm.mutexAbortRequest.RLock() |
| 722 | // this way out of the section download loop on abort request |
| 723 | if oFsm.abortRequested != voltha.ImageState_NO_ERROR { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 724 | //states are updated when entering the reset state ... |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 725 | oFsm.volthaDownloadReason = oFsm.abortRequested |
| 726 | oFsm.mutexAbortRequest.RUnlock() |
| 727 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 728 | pUpgradeFsm := oFsm.PAdaptFsm |
| 729 | if pUpgradeFsm != nil { |
| 730 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvAbort) |
| 731 | logger.Debugw(ctx, "aborting runSwDlSectionWindow", log.Fields{ |
| 732 | "device-id": oFsm.deviceID, "reason": oFsm.volthaDownloadReason}) |
| 733 | return |
| 734 | } |
| 735 | logger.Warnw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 736 | return |
| 737 | } |
| 738 | oFsm.mutexAbortRequest.RUnlock() |
| 739 | |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 740 | bufferStartOffset = oFsm.nextDownloadSectionsAbsolute * cOmciDownloadSectionSize |
| 741 | bufferEndOffset = bufferStartOffset + cOmciDownloadSectionSize - 1 //for representing cOmciDownloadSectionSizeLimit values |
| 742 | logger.Debugw(ctx, "DlSection values are", log.Fields{ |
| 743 | "DlSectionNoAbsolute": oFsm.nextDownloadSectionsAbsolute, |
| 744 | "DlSectionWindow": oFsm.nextDownloadSectionsWindow, |
| 745 | "startOffset": bufferStartOffset, "endOffset": bufferEndOffset}) |
| 746 | if bufferStartOffset+1 > oFsm.imageLength || bufferEndOffset+1 > oFsm.imageLength { //should never occur in this state |
| 747 | logger.Errorw(ctx, "OnuUpgradeFsm buffer error: exceeded length", log.Fields{ |
| 748 | "device-id": oFsm.deviceID, "bufferStartOffset": bufferStartOffset, |
| 749 | "bufferEndOffset": bufferEndOffset, "imageLength": oFsm.imageLength}) |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 750 | oFsm.volthaDownloadReason = voltha.ImageState_UNKNOWN_ERROR //something like 'LOCAL_FILE_ERROR' would be better (proto) |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 751 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 752 | //logical error -- reset the FSM |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 753 | pUpgradeFsm := oFsm.PAdaptFsm |
| 754 | if pUpgradeFsm != nil { |
| 755 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvAbort) |
| 756 | return |
| 757 | } |
| 758 | logger.Warnw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 759 | return |
| 760 | } |
| 761 | downloadSection = oFsm.imageBuffer[bufferStartOffset : bufferEndOffset+1] |
| 762 | if oFsm.nextDownloadSectionsWindow == oFsm.omciDownloadWindowSizeLimit { |
| 763 | windowAckRequest = 1 |
| 764 | logger.Debugw(ctx, "DlSection expect Response for complete window", log.Fields{ |
| 765 | "device-id": oFsm.deviceID, "in window": oFsm.nextDownloadWindow}) |
| 766 | } |
| 767 | if oFsm.nextDownloadSectionsAbsolute+1 >= oFsm.noOfSections { |
| 768 | windowAckRequest = 1 |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 769 | framePrint = true //debug print of last frame |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 770 | oFsm.omciDownloadWindowSizeLast = oFsm.nextDownloadSectionsWindow |
| 771 | logger.Infow(ctx, "DlSection expect Response for last window (section)", log.Fields{ |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 772 | "device-id": oFsm.deviceID, "DlSectionNoAbsolute": oFsm.nextDownloadSectionsAbsolute}) |
| 773 | } |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 774 | oFsm.mutexUpgradeParams.Unlock() //unlock here to give other functions some chance to process during/after the send request |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 775 | err := oFsm.pOmciCC.SendDownloadSection(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 776 | oFsm.PAdaptFsm.CommChan, oFsm.InactiveImageMeID, windowAckRequest, oFsm.nextDownloadSectionsWindow, downloadSection, framePrint) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 777 | if err != nil { |
| 778 | logger.Errorw(ctx, "DlSection abort: can't send section", log.Fields{ |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 779 | "device-id": oFsm.deviceID, "section absolute": oFsm.nextDownloadSectionsAbsolute, "error": err}) |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 780 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 781 | return |
| 782 | } |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 783 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 784 | oFsm.nextDownloadSectionsAbsolute++ //always increase the absolute section counter after having sent one |
| 785 | if windowAckRequest == 1 { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 786 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 787 | pUpgradeFsm := oFsm.PAdaptFsm |
| 788 | if pUpgradeFsm != nil { |
| 789 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvWaitWindowAck) //state transition to upgradeStVerifyWindow |
| 790 | return |
| 791 | } |
| 792 | logger.Warnw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 793 | return |
| 794 | } |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 795 | framePrint = false //for the next Section frame (if wanted, can be enabled in logic before sendXXX()) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 796 | oFsm.nextDownloadSectionsWindow++ //increase the window related section counter only if not in the last section |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 797 | if oFsm.omciSectionInterleaveDelay > 0 { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 798 | //ensure a defined intersection-time-gap to leave space for further processing, other ONU's ... |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 799 | oFsm.mutexUpgradeParams.Unlock() //unlock here to give other functions some chance to process during/after the send request |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 800 | time.Sleep(oFsm.omciSectionInterleaveDelay * time.Millisecond) |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 801 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 802 | } |
| 803 | } |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 804 | } //runSwDlSectionWindow |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 805 | |
| 806 | func (oFsm *OnuUpgradeFsm) enterVerifyWindow(ctx context.Context, e *fsm.Event) { |
| 807 | logger.Debugw(ctx, "OnuUpgradeFsm verify DL window ack", log.Fields{ |
| 808 | "for window": oFsm.nextDownloadWindow, "device-id": oFsm.deviceID}) |
| 809 | } |
| 810 | |
| 811 | func (oFsm *OnuUpgradeFsm) enterFinalizeDL(ctx context.Context, e *fsm.Event) { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 812 | logger.Infow(ctx, "OnuUpgradeFsm finalize DL", log.Fields{ |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 813 | "device-id": oFsm.deviceID, "crc": strconv.FormatInt(int64(oFsm.imageCRC), 16), "delay": oFsm.delayEndSwDl}) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 814 | |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 815 | oFsm.mutexUpgradeParams.RLock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 816 | if oFsm.delayEndSwDl { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 817 | oFsm.mutexUpgradeParams.RUnlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 818 | //give the ONU some time for image evaluation (hoping it does not base that on first EndSwDl itself) |
| 819 | // should not be set in case this state is used for real download abort (not yet implemented) |
| 820 | time.Sleep(cOmciEndSwDlDelaySeconds * time.Second) |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 821 | } else { |
| 822 | oFsm.mutexUpgradeParams.RUnlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 823 | } |
| 824 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 825 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 826 | if pBaseFsm == nil { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 827 | logger.Errorw(ctx, "EndSwDl abort: BaseFsm invalid", log.Fields{"device-id": oFsm.deviceID}) |
| 828 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 829 | oFsm.volthaDownloadReason = voltha.ImageState_UNKNOWN_ERROR |
| 830 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 831 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 832 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 833 | _ = a_pAFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 834 | }(pBaseFsm) |
| 835 | return |
| 836 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 837 | err := oFsm.pOmciCC.SendEndSoftwareDownload(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
| 838 | oFsm.PAdaptFsm.CommChan, oFsm.InactiveImageMeID, oFsm.origImageLength, oFsm.imageCRC) |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 839 | |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 840 | if err != nil { |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 841 | logger.Errorw(ctx, "EndSwDl abort: error sending EndSwDl", log.Fields{ |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 842 | "device-id": oFsm.deviceID, "error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 843 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 844 | return |
| 845 | } |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 846 | // go waiting for the EndSwDLResponse and check, if the ONU is ready for activation |
| 847 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 848 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 849 | _ = a_pAFsm.PFsm.Event(UpgradeEvWaitEndDownload) |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 850 | }(pBaseFsm) |
| 851 | } |
| 852 | |
| 853 | func (oFsm *OnuUpgradeFsm) enterWaitEndDL(ctx context.Context, e *fsm.Event) { |
| 854 | logger.Infow(ctx, "OnuUpgradeFsm WaitEndDl", log.Fields{ |
| 855 | "device-id": oFsm.deviceID, "wait delay": oFsm.waitDelayEndSwDl * time.Second, "wait count": oFsm.waitCountEndSwDl}) |
| 856 | if oFsm.waitCountEndSwDl == 0 { |
| 857 | logger.Errorw(ctx, "WaitEndDl abort: max limit of EndSwDL reached", log.Fields{ |
| 858 | "device-id": oFsm.deviceID}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 859 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 860 | if pBaseFsm == nil { |
| 861 | logger.Errorw(ctx, "WaitEndDl abort: BaseFsm invalid", log.Fields{ |
| 862 | "device-id": oFsm.deviceID}) |
| 863 | return |
| 864 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 865 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 866 | oFsm.isEndSwDlOpen = false //no need to additionally request abort of download (already finished) |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 867 | oFsm.volthaDownloadReason = voltha.ImageState_IMAGE_REFUSED_BY_ONU //something like 'END_DOWNLOAD_TIMEOUT' would be better (proto) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 868 | oFsm.mutexUpgradeParams.Unlock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 869 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 870 | _ = a_pAFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 871 | }(pBaseFsm) |
| 872 | return |
| 873 | } |
| 874 | |
| 875 | oFsm.waitCountEndSwDl-- |
| 876 | select { |
| 877 | case <-time.After(oFsm.waitDelayEndSwDl * time.Second): |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 878 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 879 | if pBaseFsm == nil { |
| 880 | logger.Errorw(ctx, "WaitEndDl abort: BaseFsm invalid", log.Fields{ |
| 881 | "device-id": oFsm.deviceID}) |
| 882 | //FSM may be reset already from somewhere else, nothing we can do here anymore |
| 883 | return |
| 884 | } |
| 885 | //retry End SW DL |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 886 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 887 | oFsm.delayEndSwDl = false //no more extra delay for the request |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 888 | oFsm.mutexUpgradeParams.Unlock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 889 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 890 | _ = a_pAFsm.PFsm.Event(UpgradeEvContinueFinalize) |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 891 | }(pBaseFsm) |
| 892 | return |
| 893 | case success := <-oFsm.chReceiveExpectedResponse: |
| 894 | logger.Debugw(ctx, "WaitEndDl stop wait timer", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 895 | oFsm.isEndSwDlOpen = false //no request to abort of download (already finished or immediate abort) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 896 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 897 | if pBaseFsm == nil { |
| 898 | logger.Errorw(ctx, "WaitEndDl abort: BaseFsm invalid", log.Fields{ |
| 899 | "device-id": oFsm.deviceID}) |
| 900 | //FSM may be reset already from somewhere else, nothing we can do here anymore |
| 901 | return |
| 902 | } |
| 903 | if success { |
| 904 | //answer received with ready indication |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 905 | //useAPIVersion43 may not conflict in concurrency in this state function |
| 906 | if oFsm.useAPIVersion43 { // newer API usage requires verification of downloaded image version |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 907 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 908 | _ = a_pAFsm.PFsm.Event(UpgradeEvCheckImageName) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 909 | }(pBaseFsm) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 910 | } else { // elder API usage does not support image version check -immediately consider download as successful |
| 911 | if oFsm.activateImage { |
| 912 | //immediate activation requested |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 913 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 914 | _ = a_pAFsm.PFsm.Event(UpgradeEvRequestActivate) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 915 | }(pBaseFsm) |
| 916 | } else { |
| 917 | //have to wait on explicit activation request |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 918 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 919 | _ = a_pAFsm.PFsm.Event(UpgradeEvWaitForActivate) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 920 | }(pBaseFsm) |
| 921 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 922 | } |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 923 | return |
| 924 | } |
| 925 | //timer was aborted |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 926 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 59498c1 | 2021-03-18 14:15:15 +0000 | [diff] [blame] | 927 | return |
| 928 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 929 | } |
| 930 | |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 931 | func (oFsm *OnuUpgradeFsm) enterCheckImageName(ctx context.Context, e *fsm.Event) { |
| 932 | logger.Debugw(ctx, "OnuUpgradeFsm checking downloaded image name", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 933 | "device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 934 | requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""} |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 935 | meInstance, err := oFsm.pOmciCC.SendGetMe(log.WithSpanFromContext(context.Background(), ctx), |
| 936 | me.SoftwareImageClassID, oFsm.InactiveImageMeID, requestedAttributes, oFsm.pDeviceHandler.GetOmciTimeout(), |
| 937 | false, oFsm.PAdaptFsm.CommChan) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 938 | if err != nil { |
| 939 | logger.Errorw(ctx, "OnuUpgradeFsm get Software Image ME result error", |
| 940 | log.Fields{"device-id": oFsm.deviceID, "Error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 941 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 942 | return |
| 943 | } |
| 944 | oFsm.pLastTxMeInstance = meInstance |
| 945 | } |
| 946 | |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 947 | func (oFsm *OnuUpgradeFsm) enterActivateSw(ctx context.Context, e *fsm.Event) { |
| 948 | logger.Infow(ctx, "OnuUpgradeFsm activate SW", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 949 | "device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID}) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 950 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 951 | err := oFsm.pOmciCC.SendActivateSoftware(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
| 952 | oFsm.PAdaptFsm.CommChan, oFsm.InactiveImageMeID) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 953 | if err != nil { |
| 954 | logger.Errorw(ctx, "ActivateSw abort: can't send activate frame", log.Fields{ |
| 955 | "device-id": oFsm.deviceID, "error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 956 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 957 | return |
| 958 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 959 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 960 | oFsm.upgradePhase = cUpgradeActivating //start of image activation for ONU |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 961 | oFsm.volthaImageState = voltha.ImageState_IMAGE_ACTIVATING |
| 962 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 963 | } |
| 964 | |
| 965 | func (oFsm *OnuUpgradeFsm) enterCommitSw(ctx context.Context, e *fsm.Event) { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 966 | logger.Debugw(ctx, "OnuUpgradeFsm start commit SW", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 967 | "device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 968 | //any abort request (also conditional) is still regarded as valid as the commit indication might not be possible to verify |
| 969 | // (which is a bit problematic as the ONU might already be in committed state, |
| 970 | // in this case (committing failed) always 'onuimage list' should be used to verify the real state (if ONU is reachable)) |
| 971 | if activeImageID, err := oFsm.pDevEntry.GetActiveImageMeID(ctx); err == nil { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 972 | oFsm.mutexUpgradeParams.Lock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 973 | if activeImageID == oFsm.InactiveImageMeID { |
| 974 | inactiveImageID := oFsm.InactiveImageMeID |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 975 | logger.Infow(ctx, "OnuUpgradeFsm commit SW", log.Fields{ |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 976 | "device-id": oFsm.deviceID, "me-id": inactiveImageID}) //more efficient activeImageID with above check |
| 977 | oFsm.volthaImageState = voltha.ImageState_IMAGE_COMMITTING |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 978 | oFsm.upgradePhase = cUpgradeCommitting //start of image commitment for ONU |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 979 | oFsm.mutexUpgradeParams.Unlock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 980 | err := oFsm.pOmciCC.SendCommitSoftware(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
| 981 | oFsm.PAdaptFsm.CommChan, inactiveImageID) //more efficient activeImageID with above check |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 982 | if err != nil { |
| 983 | logger.Errorw(ctx, "CommitSw abort: can't send commit sw frame", log.Fields{ |
| 984 | "device-id": oFsm.deviceID, "error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 985 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 986 | return |
| 987 | } |
| 988 | return |
| 989 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 990 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 991 | logger.Errorw(ctx, "OnuUpgradeFsm active ImageId <> IdToCommit", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 992 | "device-id": oFsm.deviceID, "active ID": activeImageID, "to commit ID": oFsm.InactiveImageMeID}) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 993 | } else { |
| 994 | logger.Errorw(ctx, "OnuUpgradeFsm can't commit, no valid active image", log.Fields{ |
| 995 | "device-id": oFsm.deviceID}) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 996 | } |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 997 | oFsm.mutexUpgradeParams.Lock() |
| 998 | oFsm.conditionalCancelRequested = false //any lingering conditional cancelRequest is superseded by this error |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 999 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1000 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1001 | //TODO!!!: possibly send event information for aborted upgrade (aborted by omci processing)?? |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1002 | pBaseFsm := oFsm.PAdaptFsm |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1003 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1004 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1005 | _ = a_pAFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1006 | }(pBaseFsm) |
| 1007 | } |
| 1008 | |
| 1009 | func (oFsm *OnuUpgradeFsm) enterCheckCommitted(ctx context.Context, e *fsm.Event) { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1010 | logger.Debugw(ctx, "OnuUpgradeFsm checking committed SW", log.Fields{ |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1011 | "device-id": oFsm.deviceID, "me-id": oFsm.InactiveImageMeID}) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1012 | requestedAttributes := me.AttributeValueMap{"IsCommitted": 0, "IsActive": 0, "Version": ""} |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1013 | meInstance, err := oFsm.pOmciCC.SendGetMe(log.WithSpanFromContext(context.Background(), ctx), |
| 1014 | me.SoftwareImageClassID, oFsm.InactiveImageMeID, requestedAttributes, oFsm.pDeviceHandler.GetOmciTimeout(), false, oFsm.PAdaptFsm.CommChan) |
ozgecanetsia | b36ed57 | 2021-04-01 10:38:48 +0300 | [diff] [blame] | 1015 | if err != nil { |
| 1016 | logger.Errorw(ctx, "OnuUpgradeFsm get Software Image ME result error", |
| 1017 | log.Fields{"device-id": oFsm.deviceID, "Error": err}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1018 | oFsm.abortOnOmciError(ctx, true) |
ozgecanetsia | b36ed57 | 2021-04-01 10:38:48 +0300 | [diff] [blame] | 1019 | return |
| 1020 | } |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1021 | oFsm.pLastTxMeInstance = meInstance |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | func (oFsm *OnuUpgradeFsm) enterResetting(ctx context.Context, e *fsm.Event) { |
| 1025 | logger.Debugw(ctx, "OnuUpgradeFsm resetting", log.Fields{"device-id": oFsm.deviceID}) |
| 1026 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1027 | oFsm.stateUpdateOnReset(ctx) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1028 | |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1029 | oFsm.mutexAbortRequest.Lock() |
| 1030 | //to be sure to abort a possibly still running runSwDlSectionWindow() |
| 1031 | // in case the reset was not received from cancel() and download not finished correctly |
| 1032 | oFsm.abortRequested = oFsm.volthaDownloadReason |
| 1033 | oFsm.mutexAbortRequest.Unlock() |
| 1034 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1035 | // in case the download-to-ONU timer is still running - cancel it |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1036 | //use non-blocking channel (to be independent from receiver state) |
| 1037 | select { |
| 1038 | //use channel to indicate that the download response waiting shall be aborted for this device (channel) |
| 1039 | case oFsm.chOnuDlReady <- false: |
| 1040 | default: |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1041 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1042 | pConfigUpgradeStateAFsm := oFsm.PAdaptFsm |
| 1043 | if pConfigUpgradeStateAFsm != nil { |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1044 | var nextEvent string |
| 1045 | if oFsm.isEndSwDlOpen { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1046 | if oFsm.repeatAbort { |
| 1047 | oFsm.delayEndSwDl = true //run next abort with delay |
| 1048 | } else { //initial request |
| 1049 | oFsm.delayEndSwDl = false //run next abort with no delay |
| 1050 | oFsm.waitCountEndSwDl = cWaitCountEndSwDl //init for possible repetitions |
| 1051 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1052 | nextEvent = UpgradeEvAbortSwDownload |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1053 | } else { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1054 | nextEvent = UpgradeEvRestart |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1055 | } |
| 1056 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1057 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1058 | if a_pAFsm != nil && a_pAFsm.PFsm != nil { |
| 1059 | _ = a_pAFsm.PFsm.Event(nextEvent) |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1060 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1061 | }(pConfigUpgradeStateAFsm) |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1062 | } |
| 1063 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1064 | |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1065 | func (oFsm *OnuUpgradeFsm) enterAbortingDL(ctx context.Context, e *fsm.Event) { |
| 1066 | logger.Debugw(ctx, "OnuUpgradeFsm aborting download to ONU", log.Fields{"device-id": oFsm.deviceID}) |
| 1067 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1068 | oFsm.mutexUpgradeParams.RLock() |
| 1069 | if oFsm.delayEndSwDl { |
| 1070 | oFsm.mutexUpgradeParams.RUnlock() |
| 1071 | //give the ONU some time for image discard activities |
| 1072 | time.Sleep(cOmciEndSwDlDelaySeconds * time.Second) |
| 1073 | } else { |
| 1074 | oFsm.mutexUpgradeParams.RUnlock() |
| 1075 | } |
| 1076 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1077 | pBaseFsm := oFsm.PAdaptFsm |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1078 | if pBaseFsm == nil { |
| 1079 | logger.Errorw(ctx, "OnuUpgradeFsm aborting download: BaseFsm invalid", log.Fields{"device-id": oFsm.deviceID}) |
| 1080 | return |
| 1081 | } |
| 1082 | // abort the download operation by sending an end software download message with invalid CRC and image size |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1083 | err := oFsm.pOmciCC.SendEndSoftwareDownload(log.WithSpanFromContext(context.Background(), ctx), oFsm.pDeviceHandler.GetOmciTimeout(), false, |
| 1084 | oFsm.PAdaptFsm.CommChan, oFsm.InactiveImageMeID, 0, 0xFFFFFFFF) |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1085 | |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1086 | if err != nil { |
| 1087 | logger.Errorw(ctx, "OnuUpgradeFsm aborting download: can't send EndSwDl request", log.Fields{"device-id": oFsm.deviceID}) |
| 1088 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1089 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1090 | if a_pAFsm != nil && a_pAFsm.PFsm != nil { |
| 1091 | _ = a_pAFsm.PFsm.Event(UpgradeEvRestart) |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1092 | } |
| 1093 | }(pBaseFsm) |
| 1094 | return |
| 1095 | } |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1096 | |
| 1097 | //avoid waiting in the enterXXX function here, |
| 1098 | // otherwise synchronous event calls (like from RxMessage processing) may block and block complete Rx processing then |
| 1099 | go oFsm.waitOnAbortEndSwDlResponse(ctx) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | //abortingDlEvaluateResponse waits for a channel indication with decision to proceed the FSM processing |
| 1103 | func (oFsm *OnuUpgradeFsm) abortingDlEvaluateResponse(ctx context.Context, |
| 1104 | pBaseFsm *cmn.AdapterFsm, aResponseResult tEndSwDlResponseResult) bool { |
| 1105 | switch aResponseResult { |
| 1106 | case cEndSwDlResponseBusy: // indication for device busy, needs repetition |
| 1107 | if oFsm.waitCountEndSwDl == 0 { |
| 1108 | logger.Errorw(ctx, "aborting download: max limit of EndSwDl reached", log.Fields{ |
| 1109 | "device-id": oFsm.deviceID}) |
| 1110 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1111 | if a_pAFsm != nil && a_pAFsm.PFsm != nil { |
| 1112 | _ = a_pAFsm.PFsm.Event(UpgradeEvRestart) //give up and let FSM terminate |
| 1113 | } |
| 1114 | }(pBaseFsm) |
| 1115 | } else { |
| 1116 | logger.Debugw(ctx, "aborting download: re-trigger sending abort SwDl", log.Fields{ |
| 1117 | "device-id": oFsm.deviceID, "counter": oFsm.waitCountEndSwDl}) |
| 1118 | oFsm.waitCountEndSwDl-- |
| 1119 | oFsm.repeatAbort = true //repeated request in next round |
| 1120 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1121 | if a_pAFsm != nil && a_pAFsm.PFsm != nil { |
| 1122 | _ = a_pAFsm.PFsm.Event(UpgradeEvReset) //which then re-triggers sending AbortSwDL |
| 1123 | } |
| 1124 | }(pBaseFsm) |
| 1125 | } |
| 1126 | return true |
| 1127 | case cEndSwDlResponseSuccess: // indication for success response |
| 1128 | logger.Infow(ctx, "aborting download: success response, terminating FSM", log.Fields{ |
| 1129 | "device-id": oFsm.deviceID}) |
| 1130 | case cEndSwDlResponseAbort: // indication for request to abort waiting for response |
| 1131 | logger.Infow(ctx, "aborting download: request to abort waiting, terminating FSM", log.Fields{ |
| 1132 | "device-id": oFsm.deviceID}) |
| 1133 | default: |
| 1134 | logger.Errorw(ctx, "aborting download: unknown channel indication, terminating FSM", log.Fields{ |
| 1135 | "device-id": oFsm.deviceID}) |
| 1136 | } //switch |
| 1137 | return false |
Holger Hildebrandt | 288d947 | 2021-09-06 10:47:53 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | func (oFsm *OnuUpgradeFsm) enterRestarting(ctx context.Context, e *fsm.Event) { |
| 1141 | logger.Debugw(ctx, "OnuUpgradeFsm restarting", log.Fields{"device-id": oFsm.deviceID}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1142 | pConfigUpgradeStateAFsm := oFsm.PAdaptFsm |
| 1143 | if pConfigUpgradeStateAFsm != nil { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1144 | // abort running message processing |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1145 | fsmAbortMsg := cmn.Message{ |
| 1146 | Type: cmn.TestMsg, |
| 1147 | Data: cmn.TestMessage{ |
| 1148 | TestMessageVal: cmn.AbortMessageProcessing, |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1149 | }, |
| 1150 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1151 | pConfigUpgradeStateAFsm.CommChan <- fsmAbortMsg |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1152 | |
| 1153 | //try to restart the FSM to 'disabled' |
| 1154 | // Can't call FSM Event directly, decoupling it |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1155 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1156 | if a_pAFsm != nil && a_pAFsm.PFsm != nil { |
| 1157 | _ = a_pAFsm.PFsm.Event(UpgradeEvDisable) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1158 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1159 | }(pConfigUpgradeStateAFsm) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1160 | } |
| 1161 | } |
| 1162 | |
| 1163 | func (oFsm *OnuUpgradeFsm) enterDisabled(ctx context.Context, e *fsm.Event) { |
| 1164 | logger.Debugw(ctx, "OnuUpgradeFsm enters disabled state", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1165 | // no need to flush possible channels here, Upgrade FSM will be completely removed, garbage collector should find its way |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1166 | if oFsm.pDeviceHandler != nil { |
| 1167 | //request removal of 'reference' in the Handler (completely clear the FSM and its data) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1168 | pLastUpgradeImageState := &voltha.ImageState{ |
| 1169 | Version: oFsm.imageVersion, |
| 1170 | DownloadState: oFsm.volthaDownloadState, |
| 1171 | Reason: oFsm.volthaDownloadReason, |
| 1172 | ImageState: oFsm.volthaImageState, |
| 1173 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1174 | go oFsm.pDeviceHandler.RemoveOnuUpgradeFsm(ctx, pLastUpgradeImageState) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1175 | } |
| 1176 | } |
| 1177 | |
| 1178 | func (oFsm *OnuUpgradeFsm) processOmciUpgradeMessages(ctx context.Context) { //ctx context.Context? |
| 1179 | logger.Debugw(ctx, "Start OnuUpgradeFsm Msg processing", log.Fields{"for device-id": oFsm.deviceID}) |
| 1180 | loop: |
| 1181 | for { |
| 1182 | // case <-ctx.Done(): |
| 1183 | // logger.Info(ctx,"MibSync Msg", log.Fields{"Message handling canceled via context for device-id": oFsm.deviceID}) |
| 1184 | // break loop |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1185 | message, ok := <-oFsm.PAdaptFsm.CommChan |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1186 | if !ok { |
| 1187 | logger.Info(ctx, "OnuUpgradeFsm Rx Msg - could not read from channel", log.Fields{"device-id": oFsm.deviceID}) |
| 1188 | // but then we have to ensure a restart of the FSM as well - as exceptional procedure |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1189 | oFsm.abortOnOmciError(ctx, true) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1190 | break loop |
| 1191 | } |
| 1192 | logger.Debugw(ctx, "OnuUpgradeFsm Rx Msg", log.Fields{"device-id": oFsm.deviceID}) |
| 1193 | |
| 1194 | switch message.Type { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1195 | case cmn.TestMsg: |
| 1196 | msg, _ := message.Data.(cmn.TestMessage) |
| 1197 | if msg.TestMessageVal == cmn.AbortMessageProcessing { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1198 | logger.Infow(ctx, "OnuUpgradeFsm abort ProcessMsg", log.Fields{"for device-id": oFsm.deviceID}) |
| 1199 | break loop |
| 1200 | } |
| 1201 | logger.Warnw(ctx, "OnuUpgradeFsm unknown TestMessage", log.Fields{"device-id": oFsm.deviceID, "MessageVal": msg.TestMessageVal}) |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1202 | case cmn.OMCI: |
| 1203 | msg, _ := message.Data.(cmn.OmciMessage) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1204 | oFsm.handleOmciOnuUpgradeMessage(ctx, msg) |
| 1205 | default: |
| 1206 | logger.Warn(ctx, "OnuUpgradeFsm Rx unknown message", log.Fields{"device-id": oFsm.deviceID, |
| 1207 | "message.Type": message.Type}) |
| 1208 | } |
| 1209 | } |
| 1210 | logger.Infow(ctx, "End OnuUpgradeFsm Msg processing", log.Fields{"device-id": oFsm.deviceID}) |
| 1211 | } |
| 1212 | |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1213 | func (oFsm *OnuUpgradeFsm) handleOmciOnuUpgradeMessage(ctx context.Context, msg cmn.OmciMessage) { |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1214 | logger.Debugw(ctx, "Rx OMCI OnuUpgradeFsm Msg", log.Fields{"device-id": oFsm.deviceID, |
| 1215 | "msgType": msg.OmciMsg.MessageType}) |
| 1216 | |
| 1217 | switch msg.OmciMsg.MessageType { |
| 1218 | case omci.StartSoftwareDownloadResponseType: |
| 1219 | { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1220 | oFsm.handleRxStartSwDownloadResponse(ctx, msg) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1221 | return |
| 1222 | } //StartSoftwareDownloadResponseType |
| 1223 | case omci.DownloadSectionResponseType: |
| 1224 | { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1225 | oFsm.handleRxSwSectionResponse(ctx, msg) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1226 | return |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1227 | } //DownloadSectionResponseType |
| 1228 | case omci.EndSoftwareDownloadResponseType: |
| 1229 | { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1230 | oFsm.handleRxEndSwDownloadResponse(ctx, msg) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1231 | return |
| 1232 | } //EndSoftwareDownloadResponseType |
| 1233 | case omci.ActivateSoftwareResponseType: |
| 1234 | { |
| 1235 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeActivateSoftwareResponse) |
| 1236 | if msgLayer == nil { |
| 1237 | logger.Errorw(ctx, "Omci Msg layer could not be detected for ActivateSw", |
| 1238 | log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1239 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1240 | return |
| 1241 | } |
| 1242 | msgObj, msgOk := msgLayer.(*omci.ActivateSoftwareResponse) |
| 1243 | if !msgOk { |
| 1244 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for ActivateSw", |
| 1245 | log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1246 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1247 | return |
| 1248 | } |
| 1249 | logger.Debugw(ctx, "OnuUpgradeFsm ActivateSwResponse data", log.Fields{ |
| 1250 | "device-id": oFsm.deviceID, "data-fields": msgObj}) |
| 1251 | if msgObj.Result != me.Success { |
| 1252 | logger.Errorw(ctx, "OnuUpgradeFsm ActivateSwResponse result error - later: drive FSM to abort state ?", |
| 1253 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1254 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1255 | return |
| 1256 | } |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 1257 | oFsm.mutexUpgradeParams.Lock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1258 | if msgObj.EntityInstance == oFsm.InactiveImageMeID { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1259 | // the image is regarded as active really only after ONU reboot and according indication (ONU down/up procedure) |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 1260 | oFsm.mutexUpgradeParams.Unlock() |
| 1261 | logger.Infow(ctx, "Expected ActivateSwResponse received", |
| 1262 | log.Fields{"device-id": oFsm.deviceID, "commit": oFsm.commitImage}) |
| 1263 | if oFsm.commitImage { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1264 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvWaitForCommit) |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 1265 | } else { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1266 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvActivationDone) // let the FSM wait for external commit request |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 1267 | } |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1268 | return |
| 1269 | } |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 1270 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1271 | logger.Errorw(ctx, "OnuUpgradeFsm ActivateSwResponse wrong ME instance: abort", |
| 1272 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1273 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1274 | return |
| 1275 | } //ActivateSoftwareResponseType |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1276 | case omci.CommitSoftwareResponseType: |
| 1277 | { |
| 1278 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeCommitSoftwareResponse) |
| 1279 | if msgLayer == nil { |
| 1280 | logger.Errorw(ctx, "Omci Msg layer could not be detected for CommitResponse", |
| 1281 | log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1282 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1283 | return |
| 1284 | } |
| 1285 | msgObj, msgOk := msgLayer.(*omci.CommitSoftwareResponse) |
| 1286 | if !msgOk { |
| 1287 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for CommitResponse", |
| 1288 | log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1289 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1290 | return |
| 1291 | } |
mpagenko | bf67a09 | 2021-03-17 09:52:28 +0000 | [diff] [blame] | 1292 | if msgObj.Result != me.Success { |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1293 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage CommitResponse result error - later: drive FSM to abort state ?", |
| 1294 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1295 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1296 | return |
mpagenko | bf67a09 | 2021-03-17 09:52:28 +0000 | [diff] [blame] | 1297 | } |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 1298 | oFsm.mutexUpgradeParams.RLock() |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1299 | if msgObj.EntityInstance == oFsm.InactiveImageMeID { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 1300 | oFsm.mutexUpgradeParams.RUnlock() |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1301 | logger.Debugw(ctx, "OnuUpgradeFsm Expected SwImage CommitResponse received", log.Fields{"device-id": oFsm.deviceID}) |
| 1302 | //verifying committed image |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1303 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvCheckCommitted) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1304 | return |
| 1305 | } |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 1306 | oFsm.mutexUpgradeParams.RUnlock() |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1307 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage CommitResponse wrong ME instance: abort", |
| 1308 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1309 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1310 | return |
| 1311 | } //CommitSoftwareResponseType |
| 1312 | case omci.GetResponseType: |
| 1313 | { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1314 | oFsm.handleRxSwGetResponse(ctx, msg) |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 1315 | return |
| 1316 | } //GetResponseType |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1317 | default: |
| 1318 | { |
| 1319 | logger.Errorw(ctx, "Rx OMCI unhandled MsgType", |
| 1320 | log.Fields{"omciMsgType": msg.OmciMsg.MessageType, "device-id": oFsm.deviceID}) |
| 1321 | return |
| 1322 | } |
| 1323 | } |
| 1324 | } |
| 1325 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1326 | func (oFsm *OnuUpgradeFsm) handleRxStartSwDownloadResponse(ctx context.Context, msg cmn.OmciMessage) { |
| 1327 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeStartSoftwareDownloadResponse) |
| 1328 | if msgLayer == nil { |
| 1329 | logger.Errorw(ctx, "Omci Msg layer could not be detected for StartSwDlResponse", |
| 1330 | log.Fields{"device-id": oFsm.deviceID}) |
| 1331 | oFsm.abortOnOmciError(ctx, false) |
| 1332 | return |
| 1333 | } |
| 1334 | msgObj, msgOk := msgLayer.(*omci.StartSoftwareDownloadResponse) |
| 1335 | if !msgOk { |
| 1336 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for StartSwDlResponse", |
| 1337 | log.Fields{"device-id": oFsm.deviceID}) |
| 1338 | oFsm.abortOnOmciError(ctx, false) |
| 1339 | return |
| 1340 | } |
| 1341 | logger.Debugw(ctx, "OnuUpgradeFsm StartSwDlResponse data", log.Fields{ |
| 1342 | "device-id": oFsm.deviceID, "data-fields": msgObj}) |
| 1343 | if msgObj.Result != me.Success { |
| 1344 | logger.Errorw(ctx, "OnuUpgradeFsm StartSwDlResponse result error - later: drive FSM to abort state ?", |
| 1345 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
| 1346 | oFsm.abortOnOmciError(ctx, false) |
| 1347 | return |
| 1348 | } |
| 1349 | |
| 1350 | oFsm.mutexUpgradeParams.Lock() |
| 1351 | if msgObj.EntityInstance == oFsm.InactiveImageMeID { |
| 1352 | logger.Debugw(ctx, "Expected StartSwDlResponse received", log.Fields{"device-id": oFsm.deviceID}) |
| 1353 | if msgObj.WindowSize != oFsm.omciDownloadWindowSizeLimit { |
| 1354 | // also response WindowSize = 0 is a valid number for used Window size 1 |
| 1355 | logger.Debugw(ctx, "different StartSwDlResponse window size requested by ONU", log.Fields{ |
| 1356 | "acceptedOnuWindowSizeLimit": msgObj.WindowSize, "device-id": oFsm.deviceID}) |
| 1357 | oFsm.omciDownloadWindowSizeLimit = msgObj.WindowSize |
| 1358 | } |
| 1359 | oFsm.noOfWindows = oFsm.noOfSections / uint32(oFsm.omciDownloadWindowSizeLimit+1) |
| 1360 | if oFsm.noOfSections%uint32(oFsm.omciDownloadWindowSizeLimit+1) > 0 { |
| 1361 | oFsm.noOfWindows++ |
| 1362 | } |
| 1363 | logger.Debugw(ctx, "OnuUpgradeFsm will use", log.Fields{ |
| 1364 | "windows": oFsm.noOfWindows, "sections": oFsm.noOfSections, |
| 1365 | "at WindowSizeLimit": oFsm.omciDownloadWindowSizeLimit}) |
| 1366 | oFsm.nextDownloadSectionsAbsolute = 0 |
| 1367 | oFsm.nextDownloadSectionsWindow = 0 |
| 1368 | oFsm.nextDownloadWindow = 0 |
| 1369 | |
| 1370 | oFsm.mutexUpgradeParams.Unlock() |
| 1371 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvRxStartSwDownload) |
| 1372 | return |
| 1373 | } |
| 1374 | oFsm.mutexUpgradeParams.Unlock() |
| 1375 | logger.Errorw(ctx, "OnuUpgradeFsm StartSwDlResponse wrong ME instance: try again (later)?", |
| 1376 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
| 1377 | oFsm.abortOnOmciError(ctx, false) |
| 1378 | } //handleRxStartSwDownloadResponse |
| 1379 | |
| 1380 | func (oFsm *OnuUpgradeFsm) handleRxSwSectionResponse(ctx context.Context, msg cmn.OmciMessage) { |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1381 | if oFsm.PAdaptFsm == nil { |
| 1382 | logger.Infow(ctx, "DlSectionResponse received - but FSM not really valid anymore", log.Fields{ |
| 1383 | "device-id": oFsm.deviceID}) |
| 1384 | return |
| 1385 | } |
| 1386 | if !oFsm.PAdaptFsm.PFsm.Is(UpgradeStVerifyWindow) { |
| 1387 | //all the processing here is only relevant if the FSM is in state upgradeStVerifyWindow |
| 1388 | // otherwise this response can be ignored (may stem from a long-processing window send activity, |
| 1389 | // which is not anymore relevant based on intermediate (cancel) state transitions) |
| 1390 | logger.Infow(ctx, "DlSectionResponse received - but ignored", log.Fields{ |
| 1391 | "device-id": oFsm.deviceID, "fsm-state": oFsm.PAdaptFsm.PFsm.Current()}) |
| 1392 | return |
| 1393 | } |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1394 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeDownloadSectionResponse) |
| 1395 | if msgLayer == nil { |
| 1396 | logger.Errorw(ctx, "Omci Msg layer could not be detected for DlSectionResponse", |
| 1397 | log.Fields{"device-id": oFsm.deviceID, "omci-message": msg.OmciMsg}) |
| 1398 | oFsm.abortOnOmciError(ctx, false) |
| 1399 | return |
| 1400 | } |
| 1401 | msgObj, msgOk := msgLayer.(*omci.DownloadSectionResponse) |
| 1402 | if !msgOk { |
| 1403 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for DlSectionResponse", |
| 1404 | log.Fields{"device-id": oFsm.deviceID}) |
| 1405 | oFsm.abortOnOmciError(ctx, false) |
| 1406 | return |
| 1407 | } |
| 1408 | logger.Debugw(ctx, "OnuUpgradeFsm DlSectionResponse Data", log.Fields{ |
| 1409 | "device-id": oFsm.deviceID, "data-fields": msgObj}) |
| 1410 | if msgObj.Result != me.Success { |
| 1411 | logger.Errorw(ctx, "OnuUpgradeFsm DlSectionResponse result error - later: repeat window once?", //TODO!!! |
| 1412 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
| 1413 | oFsm.abortOnOmciError(ctx, false) |
| 1414 | return |
| 1415 | } |
| 1416 | oFsm.mutexUpgradeParams.Lock() |
| 1417 | if msgObj.EntityInstance == oFsm.InactiveImageMeID { |
| 1418 | sectionNumber := msgObj.SectionNumber |
| 1419 | logger.Infow(ctx, "DlSectionResponse received", log.Fields{ |
| 1420 | "window section-number": sectionNumber, "window": oFsm.nextDownloadWindow, "device-id": oFsm.deviceID}) |
| 1421 | |
| 1422 | oFsm.nextDownloadWindow++ |
| 1423 | if oFsm.nextDownloadWindow >= oFsm.noOfWindows { |
| 1424 | if sectionNumber != oFsm.omciDownloadWindowSizeLast { |
| 1425 | logger.Errorw(ctx, "OnuUpgradeFsm DlSectionResponse section error last window - later: repeat window once?", //TODO!!! |
| 1426 | log.Fields{"device-id": oFsm.deviceID, "actual section": sectionNumber, |
| 1427 | "expected section": oFsm.omciDownloadWindowSizeLast}) |
| 1428 | oFsm.mutexUpgradeParams.Unlock() |
| 1429 | oFsm.abortOnOmciError(ctx, false) |
| 1430 | return |
| 1431 | } |
| 1432 | oFsm.delayEndSwDl = true //ensure a delay for the EndSwDl message |
| 1433 | //CRC computation for all data bytes of the file |
| 1434 | imageCRC := crc32a.Checksum(oFsm.imageBuffer[:int(oFsm.origImageLength)]) //store internal for multiple usage |
| 1435 | //revert the retrieved CRC Byte Order (seems not to deliver NetworkByteOrder) |
| 1436 | var byteSlice []byte = make([]byte, 4) |
| 1437 | binary.LittleEndian.PutUint32(byteSlice, uint32(imageCRC)) |
| 1438 | oFsm.imageCRC = binary.BigEndian.Uint32(byteSlice) |
| 1439 | oFsm.mutexUpgradeParams.Unlock() |
| 1440 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvEndSwDownload) |
| 1441 | return |
| 1442 | } |
| 1443 | if sectionNumber != oFsm.omciDownloadWindowSizeLimit { |
| 1444 | logger.Errorw(ctx, "OnuUpgradeFsm DlSectionResponse section error - later: repeat window once?", //TODO!!! |
| 1445 | log.Fields{"device-id": oFsm.deviceID, "actual-section": sectionNumber, |
| 1446 | "expected section": oFsm.omciDownloadWindowSizeLimit}) |
| 1447 | oFsm.mutexUpgradeParams.Unlock() |
| 1448 | oFsm.abortOnOmciError(ctx, false) |
| 1449 | return |
| 1450 | } |
| 1451 | oFsm.nextDownloadSectionsWindow = 0 |
| 1452 | oFsm.mutexUpgradeParams.Unlock() |
| 1453 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvContinueNextWindow) |
| 1454 | return |
| 1455 | } |
| 1456 | oFsm.mutexUpgradeParams.Unlock() |
| 1457 | logger.Errorw(ctx, "OnuUpgradeFsm Omci StartSwDlResponse wrong ME instance: try again (later)?", |
| 1458 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
| 1459 | oFsm.abortOnOmciError(ctx, false) |
| 1460 | } //handleRxSwSectionResponse |
| 1461 | |
| 1462 | func (oFsm *OnuUpgradeFsm) handleRxEndSwDownloadResponse(ctx context.Context, msg cmn.OmciMessage) { |
| 1463 | inAbortingState := oFsm.PAdaptFsm.PFsm.Is(UpgradeStAbortingDL) |
| 1464 | |
| 1465 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeEndSoftwareDownloadResponse) |
| 1466 | if msgLayer == nil { |
| 1467 | logger.Errorw(ctx, "Omci Msg layer could not be detected for EndSwDlResponse", |
| 1468 | log.Fields{"device-id": oFsm.deviceID}) |
| 1469 | if !inAbortingState { |
| 1470 | oFsm.abortOnOmciError(ctx, false) |
| 1471 | } //else using error log and wait for another response or 'aborting' state timeout |
| 1472 | return |
| 1473 | } |
| 1474 | msgObj, msgOk := msgLayer.(*omci.EndSoftwareDownloadResponse) |
| 1475 | if !msgOk { |
| 1476 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for EndSwDlResponse", |
| 1477 | log.Fields{"device-id": oFsm.deviceID}) |
| 1478 | if !inAbortingState { |
| 1479 | oFsm.abortOnOmciError(ctx, false) |
| 1480 | } //else using error log and wait for another response or 'aborting' state timeout |
| 1481 | return |
| 1482 | } |
| 1483 | logger.Debugw(ctx, "OnuUpgradeFsm EndSwDlResponse data", log.Fields{ |
| 1484 | "device-id": oFsm.deviceID, "data-fields": msgObj}) |
| 1485 | if msgObj.Result != me.Success { |
| 1486 | if msgObj.Result == me.DeviceBusy { |
| 1487 | //ONU indicates it is still processing the image - let the FSM just wait and then repeat the request |
| 1488 | logger.Debugw(ctx, "OnuUpgradeFsm EndSwDlResponse busy: waiting before sending new request", log.Fields{ |
| 1489 | "device-id": oFsm.deviceID}) |
| 1490 | if inAbortingState { |
| 1491 | //if the EndSwDl was requested from state AbortingDL then use channel to indicate ONU busy/repeat indication |
| 1492 | oFsm.chReceiveAbortEndSwDlResponse <- cEndSwDlResponseBusy //repeat abort request |
| 1493 | } |
| 1494 | oFsm.mutexUpgradeParams.Lock() |
| 1495 | oFsm.downloadReasonCached = oFsm.volthaDownloadReason //copy for later reconstruction |
| 1496 | oFsm.volthaDownloadReason = voltha.ImageState_DEVICE_BUSY |
| 1497 | oFsm.mutexUpgradeParams.Unlock() |
| 1498 | return |
| 1499 | } |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1500 | if inAbortingState { |
| 1501 | //if the EndSwDl was requested from state AbortingDL and response is error indication |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1502 | // that would be quite strange ONU behavior, no resolution from OnuAdapter, just let the FSM go on to disabled |
| 1503 | logger.Errorw(ctx, "OnuUpgradeFsm EndSwDlResponse result error - aborting anyway", |
| 1504 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
| 1505 | oFsm.chReceiveAbortEndSwDlResponse <- cEndSwDlResponseAbort //error indication to stop waiting on EndDownloadResponse(abort) |
| 1506 | return |
| 1507 | } |
| 1508 | //else: ONU rejects the previous download, complete upgrade is immediately aborted with error |
| 1509 | logger.Errorw(ctx, "OnuUpgradeFsm EndSwDlResponse result error - abort upgrade", |
| 1510 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
| 1511 | oFsm.mutexUpgradeParams.Lock() |
| 1512 | oFsm.conditionalCancelRequested = false //any conditional cancelRequest is superseded by this abortion |
| 1513 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE |
| 1514 | oFsm.mutexUpgradeParams.Unlock() |
| 1515 | select { |
| 1516 | case oFsm.chOnuDlReady <- false: |
| 1517 | default: |
| 1518 | } |
| 1519 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1520 | return |
| 1521 | } |
| 1522 | oFsm.mutexUpgradeParams.Lock() |
| 1523 | if msgObj.EntityInstance == oFsm.InactiveImageMeID { |
| 1524 | logger.Debugw(ctx, "Expected EndSwDlResponse received", log.Fields{"device-id": oFsm.deviceID}) |
| 1525 | if oFsm.volthaDownloadReason == voltha.ImageState_DEVICE_BUSY { //was temporary on busy |
| 1526 | oFsm.volthaDownloadReason = oFsm.downloadReasonCached //recapture from mirror |
| 1527 | } |
| 1528 | if inAbortingState { |
| 1529 | oFsm.mutexUpgradeParams.Unlock() |
| 1530 | //if the EndSwDl was requested from state AbortingDL then use channel to indicate abort acceptance |
| 1531 | oFsm.chReceiveAbortEndSwDlResponse <- cEndSwDlResponseSuccess //success |
| 1532 | return |
| 1533 | } |
| 1534 | if !oFsm.useAPIVersion43 { |
| 1535 | //in the older API version the image version check was not possible |
| 1536 | // - assume new loaded image as valid-inactive immediately |
| 1537 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_SUCCEEDED |
| 1538 | oFsm.volthaImageState = voltha.ImageState_IMAGE_INACTIVE |
| 1539 | oFsm.mutexUpgradeParams.Unlock() |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1540 | //use non-blocking channel (to be independent from receiver state) to indicate that the download to ONU was successful |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1541 | select { |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1542 | case oFsm.chOnuDlReady <- true: |
| 1543 | default: |
| 1544 | } |
| 1545 | } else { |
| 1546 | oFsm.mutexUpgradeParams.Unlock() |
| 1547 | } |
| 1548 | //use asynchronous channel sending to let the FSM proceed |
| 1549 | select { |
| 1550 | case oFsm.chReceiveExpectedResponse <- true: |
| 1551 | default: |
| 1552 | } |
| 1553 | return |
| 1554 | } |
| 1555 | oFsm.mutexUpgradeParams.Unlock() |
| 1556 | logger.Errorw(ctx, "OnuUpgradeFsm StartSwDlResponse wrong ME instance: ignoring", |
| 1557 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
| 1558 | // no state abort in case of unexpected ImageId, just keep waiting for the correct one |
| 1559 | } //handleRxEndSwDownloadResponse |
| 1560 | |
| 1561 | func (oFsm *OnuUpgradeFsm) handleRxSwGetResponse(ctx context.Context, msg cmn.OmciMessage) { |
| 1562 | msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeGetResponse) |
| 1563 | if msgLayer == nil { |
| 1564 | logger.Errorw(ctx, "Omci Msg layer could not be detected for SwImage GetResponse", |
| 1565 | log.Fields{"device-id": oFsm.deviceID}) |
| 1566 | oFsm.abortOnOmciError(ctx, false) |
| 1567 | return |
| 1568 | } |
| 1569 | msgObj, msgOk := msgLayer.(*omci.GetResponse) |
| 1570 | if !msgOk { |
| 1571 | logger.Errorw(ctx, "Omci Msg layer could not be assigned for SwImage GetResponse", |
| 1572 | log.Fields{"device-id": oFsm.deviceID}) |
| 1573 | oFsm.abortOnOmciError(ctx, false) |
| 1574 | return |
| 1575 | } |
| 1576 | logger.Debugw(ctx, "OnuUpgradeFsm SwImage GetResponse data", log.Fields{ |
| 1577 | "device-id": oFsm.deviceID, "data-fields": msgObj}) |
| 1578 | if msgObj.EntityClass == oFsm.pLastTxMeInstance.GetClassID() && |
| 1579 | msgObj.EntityInstance == oFsm.pLastTxMeInstance.GetEntityID() { |
| 1580 | if msgObj.Result != me.Success { |
| 1581 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage GetResponse result error - later: drive FSM to abort state ?", |
| 1582 | log.Fields{"device-id": oFsm.deviceID, "Error": msgObj.Result}) |
| 1583 | oFsm.abortOnOmciError(ctx, false) |
| 1584 | return |
| 1585 | } |
| 1586 | } else { |
| 1587 | logger.Warnw(ctx, "OnuUpgradeFsm SwImage unexpected Entity GetResponse data - ignore", |
| 1588 | log.Fields{"device-id": oFsm.deviceID}) |
| 1589 | return |
| 1590 | } |
| 1591 | |
| 1592 | meAttributes := msgObj.Attributes |
| 1593 | imageIsCommitted := meAttributes["IsCommitted"].(uint8) |
| 1594 | imageIsActive := meAttributes["IsActive"].(uint8) |
| 1595 | imageVersion := cmn.TrimStringFromMeOctet(meAttributes["Version"]) |
| 1596 | logger.Debugw(ctx, "OnuUpgradeFsm - GetResponse Data for SoftwareImage", |
| 1597 | log.Fields{"device-id": oFsm.deviceID, "entityID": msgObj.EntityInstance, |
| 1598 | "version": imageVersion, "isActive": imageIsActive, "isCommitted": imageIsCommitted}) |
| 1599 | |
| 1600 | if oFsm.PAdaptFsm.PFsm.Current() == UpgradeStCheckImageName { |
| 1601 | //image name check after EndSwDownload, this state (and block) can only be taken if APIVersion43 is used |
| 1602 | oFsm.verifyOnuSwStatusAfterDownload(ctx, msgObj.EntityInstance, imageVersion, imageIsActive, imageIsCommitted) |
| 1603 | return |
| 1604 | } |
| 1605 | |
| 1606 | //assumed only relevant state here is upgradeStCheckCommitted |
| 1607 | oFsm.mutexUpgradeParams.Lock() |
| 1608 | oFsm.conditionalCancelRequested = false //getting here any set (conditional) cancelRequest is not relevant anymore |
| 1609 | if msgObj.EntityInstance == oFsm.InactiveImageMeID && imageIsActive == cmn.SwIsActive { |
| 1610 | //a check on the delivered image version is not done, the ONU delivered version might be different from what might have been |
| 1611 | // indicated in the download image version string (version must be part of the image content itself) |
| 1612 | // so checking that might be quite unreliable |
| 1613 | //but with new API this was changed, assumption is that omci image version is known at download request and exactly that is used |
| 1614 | // in all the API references, so it can and should be checked here now |
| 1615 | if oFsm.useAPIVersion43 { |
| 1616 | if imageVersion != oFsm.imageVersion { |
| 1617 | //new active version indicated on OMCI from ONU is not the expected version |
| 1618 | logger.Errorw(ctx, "OnuUpgradeFsm image-version not matching the requested upgrade", |
| 1619 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance, |
| 1620 | "onu-version": imageVersion, "expected-version": oFsm.imageVersion}) |
| 1621 | // TODO!!!: error treatment? |
| 1622 | //TODO!!!: possibly send event information for aborted upgrade (aborted by wrong version)? |
| 1623 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE //something like 'UNEXPECTED_VERSION' would be better - proto def |
| 1624 | oFsm.mutexUpgradeParams.Unlock() |
| 1625 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
| 1626 | return |
| 1627 | } |
| 1628 | logger.Debugw(ctx, "OnuUpgradeFsm - expected ONU image version indicated by the ONU", |
| 1629 | log.Fields{"device-id": oFsm.deviceID}) |
| 1630 | } |
| 1631 | if imageIsCommitted == cmn.SwIsCommitted { |
| 1632 | oFsm.upgradePhase = cUpgradeCommitted |
| 1633 | oFsm.volthaImageState = voltha.ImageState_IMAGE_COMMITTED |
| 1634 | //store the new commit flag to onuSwImageIndications (to keep them in sync) |
| 1635 | oFsm.pDevEntry.ModifySwImageActiveCommit(ctx, imageIsCommitted) |
| 1636 | logger.Infow(ctx, "requested SW image committed, releasing OnuUpgrade", log.Fields{"device-id": oFsm.deviceID}) |
| 1637 | //deviceProcStatusUpdate not used anymore, |
| 1638 | // replaced by transferring the last (more) upgrade state information within removeOnuUpgradeFsm |
| 1639 | oFsm.mutexUpgradeParams.Unlock() |
| 1640 | //releasing the upgrade FSM on success |
| 1641 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
| 1642 | return |
| 1643 | } |
| 1644 | //if not committed, abort upgrade as failed. There is no implementation here that would trigger this test again |
| 1645 | } |
| 1646 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE |
| 1647 | oFsm.mutexUpgradeParams.Unlock() |
| 1648 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage GetResponse indications not matching requested upgrade", |
| 1649 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": msgObj.EntityInstance}) |
| 1650 | // TODO!!!: error treatment? |
| 1651 | //TODO!!!: possibly send event information for aborted upgrade (aborted by omci processing)?? |
| 1652 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
| 1653 | } //handleRxSwGetResponse |
| 1654 | |
| 1655 | func (oFsm *OnuUpgradeFsm) verifyOnuSwStatusAfterDownload(ctx context.Context, aInstanceID uint16, |
| 1656 | aImageVersion string, aImageIsActive uint8, aImageIsCommitted uint8) { |
| 1657 | oFsm.mutexUpgradeParams.Lock() |
| 1658 | if aInstanceID == oFsm.InactiveImageMeID && aImageIsActive == cmn.SwIsInactive && |
| 1659 | aImageIsCommitted == cmn.SwIsUncommitted { |
| 1660 | if aImageVersion != oFsm.imageVersion { |
| 1661 | //new stored inactive version indicated on OMCI from ONU is not the expected version |
| 1662 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage GetResponse version indication not matching requested upgrade", |
| 1663 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": aInstanceID, |
| 1664 | "onu-version": aImageVersion, "expected-version": oFsm.imageVersion}) |
| 1665 | //download state is set when entering the reset state |
| 1666 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE //something like 'UNEXPECTED_VERSION' would be better - proto def |
| 1667 | oFsm.mutexUpgradeParams.Unlock() |
| 1668 | //stop the running ONU download timer |
| 1669 | //use non-blocking channel (to be independent from receiver state) |
| 1670 | select { |
| 1671 | //use channel to indicate that the download response waiting shall be aborted for this device (channel) |
| 1672 | case oFsm.chOnuDlReady <- false: |
| 1673 | default: |
| 1674 | } |
| 1675 | // TODO!!!: error treatment? |
| 1676 | //TODO!!!: possibly send event information for aborted upgrade (aborted by wrong version)? |
| 1677 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
| 1678 | return |
| 1679 | } |
| 1680 | //with APIVersion43 this is the point to consider the newly loaded image as valid (and inactive) |
| 1681 | oFsm.upgradePhase = cUpgradeDownloaded |
| 1682 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_SUCCEEDED |
| 1683 | oFsm.volthaImageState = voltha.ImageState_IMAGE_INACTIVE |
| 1684 | //store the new inactive version to onuSwImageIndications (to keep them in sync) |
| 1685 | oFsm.pDevEntry.ModifySwImageInactiveVersion(ctx, oFsm.imageVersion) |
| 1686 | //proceed within upgrade FSM |
| 1687 | if oFsm.activateImage { |
| 1688 | //immediate activation requested |
| 1689 | oFsm.mutexUpgradeParams.Unlock() |
| 1690 | logger.Debugw(ctx, "OnuUpgradeFsm - expected ONU image version indicated by the ONU, continue with activation", |
| 1691 | log.Fields{"device-id": oFsm.deviceID}) |
| 1692 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvRequestActivate) |
| 1693 | } else { |
| 1694 | //have to wait on explicit activation request |
| 1695 | oFsm.mutexUpgradeParams.Unlock() |
| 1696 | logger.Infow(ctx, "OnuUpgradeFsm - expected ONU image version indicated by the ONU, wait for activate request", |
| 1697 | log.Fields{"device-id": oFsm.deviceID}) |
| 1698 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvWaitForActivate) |
| 1699 | } |
| 1700 | //use non-blocking channel (to be independent from receiver state) |
| 1701 | select { |
| 1702 | //use non-blocking channel to indicate that the download to ONU was successful |
| 1703 | case oFsm.chOnuDlReady <- true: |
| 1704 | default: |
| 1705 | } |
| 1706 | return |
| 1707 | } |
| 1708 | //not the expected image/image state |
| 1709 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE |
| 1710 | oFsm.mutexUpgradeParams.Unlock() |
| 1711 | logger.Errorw(ctx, "OnuUpgradeFsm SwImage GetResponse indications not matching requested upgrade", |
| 1712 | log.Fields{"device-id": oFsm.deviceID, "ResponseMeId": aInstanceID}) |
| 1713 | // TODO!!!: error treatment? |
| 1714 | //TODO!!!: possibly send event information for aborted upgrade (aborted by ONU state indication)? |
| 1715 | _ = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
| 1716 | } //verifyOnuSwStatusAfterDownload |
| 1717 | |
| 1718 | //abortOnOmciError aborts the upgrade processing with evAbort |
| 1719 | // asynchronous/synchronous based on parameter aAsync |
| 1720 | func (oFsm *OnuUpgradeFsm) abortOnOmciError(ctx context.Context, aAsync bool) { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1721 | oFsm.mutexUpgradeParams.Lock() |
| 1722 | oFsm.conditionalCancelRequested = false //any conditional cancelRequest is superseded by this abortion |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1723 | oFsm.volthaDownloadReason = voltha.ImageState_OMCI_TRANSFER_ERROR |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1724 | oFsm.mutexUpgradeParams.Unlock() |
| 1725 | //TODO!!!: possibly send event information for aborted upgrade (aborted by omci processing)?? |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1726 | if oFsm.PAdaptFsm != nil { |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1727 | var err error |
| 1728 | if aAsync { //asynchronous call requested to ensure state transition |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1729 | go func(a_pAFsm *cmn.AdapterFsm) { |
| 1730 | if a_pAFsm.PFsm != nil { |
| 1731 | err = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1732 | } |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1733 | }(oFsm.PAdaptFsm) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1734 | } else { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1735 | if oFsm.PAdaptFsm.PFsm != nil { |
| 1736 | err = oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1737 | } |
| 1738 | } |
| 1739 | if err != nil { |
| 1740 | logger.Warnw(ctx, "onu upgrade fsm could not abort on omci error", log.Fields{ |
| 1741 | "device-id": oFsm.deviceID, "error": err}) |
| 1742 | } |
| 1743 | } |
| 1744 | } |
| 1745 | |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1746 | //waitOnDownloadToAdapterReady state can only be reached with useAPIVersion43 (usage of pFileManager) |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1747 | // precondition: mutexIsAwaitingAdapterDlResponse is lockek on call |
| 1748 | func (oFsm *OnuUpgradeFsm) waitOnDownloadToAdapterReady(ctx context.Context, aSyncChannel chan<- struct{}, |
| 1749 | aWaitChannel chan bool) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1750 | oFsm.mutexIsAwaitingAdapterDlResponse.Lock() |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1751 | downloadToAdapterTimeout := oFsm.pFileManager.GetDownloadTimeout(ctx) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1752 | oFsm.isWaitingForAdapterDlResponse = true |
| 1753 | oFsm.mutexIsAwaitingAdapterDlResponse.Unlock() |
mpagenko | 38662d0 | 2021-08-11 09:45:19 +0000 | [diff] [blame] | 1754 | aSyncChannel <- struct{}{} |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1755 | select { |
| 1756 | // maybe be also some outside cancel (but no context modeled for the moment ...) |
| 1757 | // case <-ctx.Done(): |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1758 | // logger.Infow("OnuUpgradeFsm-waitOnDownloadToAdapterReady canceled", log.Fields{"for device-id": oFsm.deviceID}) |
| 1759 | case <-time.After(downloadToAdapterTimeout): //10s should be enough for downloading some image to the adapter |
| 1760 | logger.Warnw(ctx, "OnuUpgradeFsm Waiting-adapter-download timeout", log.Fields{ |
| 1761 | "for device-id": oFsm.deviceID, "image-id": oFsm.imageIdentifier, "timeout": downloadToAdapterTimeout}) |
| 1762 | oFsm.pFileManager.RemoveReadyRequest(ctx, oFsm.imageIdentifier, aWaitChannel) |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1763 | //running into timeout here may still have the download to adapter active -> abort |
| 1764 | oFsm.pFileManager.CancelDownload(ctx, oFsm.imageIdentifier) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1765 | oFsm.mutexIsAwaitingAdapterDlResponse.Lock() |
| 1766 | oFsm.isWaitingForAdapterDlResponse = false |
| 1767 | oFsm.mutexIsAwaitingAdapterDlResponse.Unlock() |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1768 | oFsm.mutexUpgradeParams.Lock() |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1769 | oFsm.conditionalCancelRequested = false //any conditional cancelRequest is superseded by this abortion |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1770 | oFsm.volthaDownloadReason = voltha.ImageState_UNKNOWN_ERROR //something like 'DOWNLOAD_TO_ADAPTER_TIMEOUT' would be better (proto) |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1771 | oFsm.mutexUpgradeParams.Unlock() |
| 1772 | //TODO!!!: possibly send event information for aborted upgrade (aborted by omci processing)?? |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1773 | if oFsm.PAdaptFsm != nil && oFsm.PAdaptFsm.PFsm != nil { |
| 1774 | err := oFsm.PAdaptFsm.PFsm.Event(UpgradeEvAbort) |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1775 | if err != nil { |
| 1776 | logger.Warnw(ctx, "onu upgrade fsm could not abort on omci error", log.Fields{ |
| 1777 | "device-id": oFsm.deviceID, "error": err}) |
| 1778 | } |
| 1779 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1780 | return |
| 1781 | |
| 1782 | case success := <-aWaitChannel: |
| 1783 | if success { |
| 1784 | logger.Debugw(ctx, "OnuUpgradeFsm image-downloaded received", log.Fields{"device-id": oFsm.deviceID}) |
| 1785 | oFsm.mutexIsAwaitingAdapterDlResponse.Lock() |
| 1786 | oFsm.isWaitingForAdapterDlResponse = false |
| 1787 | oFsm.mutexIsAwaitingAdapterDlResponse.Unlock() |
| 1788 | //let the upgrade process proceed |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1789 | pUpgradeFsm := oFsm.PAdaptFsm |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1790 | if pUpgradeFsm != nil { |
Holger Hildebrandt | 4b5e73f | 2021-08-19 06:51:21 +0000 | [diff] [blame] | 1791 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvPrepareSwDownload) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1792 | } else { |
| 1793 | logger.Errorw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
| 1794 | } |
| 1795 | return |
| 1796 | } |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1797 | // waiting was aborted (assumed here to be caused by |
| 1798 | // error detection or cancel at download after upgrade FSM reset/abort with according image states set there) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1799 | logger.Debugw(ctx, "OnuUpgradeFsm Waiting-adapter-download aborted", log.Fields{"device-id": oFsm.deviceID}) |
| 1800 | oFsm.pFileManager.RemoveReadyRequest(ctx, oFsm.imageIdentifier, aWaitChannel) |
| 1801 | oFsm.mutexIsAwaitingAdapterDlResponse.Lock() |
| 1802 | oFsm.isWaitingForAdapterDlResponse = false |
| 1803 | oFsm.mutexIsAwaitingAdapterDlResponse.Unlock() |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1804 | return |
mpagenko | 80622a5 | 2021-02-09 16:53:23 +0000 | [diff] [blame] | 1805 | } |
| 1806 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1807 | |
| 1808 | //waitOnDownloadToOnuReady state can only be reached with useAPIVersion43 (usage of pFileManager) |
| 1809 | func (oFsm *OnuUpgradeFsm) waitOnDownloadToOnuReady(ctx context.Context, aWaitChannel chan bool) { |
| 1810 | downloadToOnuTimeout := time.Duration(1+(oFsm.imageLength/0x400000)) * oFsm.downloadToOnuTimeout4MB |
| 1811 | logger.Debugw(ctx, "OnuUpgradeFsm start download-to-ONU timer", log.Fields{"device-id": oFsm.deviceID, |
| 1812 | "duration": downloadToOnuTimeout}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1813 | select { |
| 1814 | // maybe be also some outside cancel (but no context modeled for the moment ...) |
| 1815 | // case <-ctx.Done(): |
| 1816 | // logger.Infow("OnuUpgradeFsm-waitOnDownloadToOnuReady canceled", log.Fields{"for device-id": oFsm.deviceID}) |
| 1817 | case <-time.After(downloadToOnuTimeout): //using an image-size depending timout (in minutes) |
| 1818 | logger.Warnw(ctx, "OnuUpgradeFsm Waiting-ONU-download timeout", log.Fields{ |
| 1819 | "for device-id": oFsm.deviceID, "image-id": oFsm.imageIdentifier, "timeout": downloadToOnuTimeout}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1820 | //the upgrade process has to be aborted |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1821 | oFsm.abortOnOmciError(ctx, false) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1822 | return |
| 1823 | |
| 1824 | case success := <-aWaitChannel: |
| 1825 | if success { |
| 1826 | logger.Debugw(ctx, "OnuUpgradeFsm image-downloaded on ONU received", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1827 | //all fine, let the FSM proceed like defined from the sender of this event |
| 1828 | return |
| 1829 | } |
| 1830 | // waiting was aborted (assumed here to be caused by |
mpagenko | 39b703e | 2021-08-25 13:38:40 +0000 | [diff] [blame] | 1831 | // error detection or cancel at download after upgrade FSM reset/abort with according image states set there) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1832 | logger.Debugw(ctx, "OnuUpgradeFsm Waiting-ONU-download aborted", log.Fields{"device-id": oFsm.deviceID}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 1833 | return |
| 1834 | } |
| 1835 | } |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1836 | |
mpagenko | a2b288f | 2021-10-21 11:25:27 +0000 | [diff] [blame] | 1837 | //waitOnAbortEndSwDlResponse waits for either abort/success or timeout of EndSwDownload (for abortion) |
| 1838 | func (oFsm *OnuUpgradeFsm) waitOnAbortEndSwDlResponse(ctx context.Context) { |
| 1839 | logger.Debugw(ctx, "OnuUpgradeFsm start wait for EndSwDl response (abort)", log.Fields{"device-id": oFsm.deviceID}) |
| 1840 | select { |
| 1841 | case <-time.After(oFsm.pOmciCC.GetMaxOmciTimeoutWithRetries() * time.Second): |
| 1842 | logger.Warnw(ctx, "OnuUpgradeFsm aborting download: timeout - no response received", log.Fields{"device-id": oFsm.deviceID}) |
| 1843 | pUpgradeFsm := oFsm.PAdaptFsm |
| 1844 | if pUpgradeFsm != nil { |
| 1845 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvRestart) |
| 1846 | } else { |
| 1847 | logger.Errorw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
| 1848 | } |
| 1849 | return |
| 1850 | case response := <-oFsm.chReceiveAbortEndSwDlResponse: |
| 1851 | logger.Debugw(ctx, "OnuUpgradeFsm aborting download: response received", |
| 1852 | log.Fields{"device-id": oFsm.deviceID, "response": response}) |
| 1853 | pUpgradeFsm := oFsm.PAdaptFsm |
| 1854 | if pUpgradeFsm != nil { |
| 1855 | if oFsm.abortingDlEvaluateResponse(ctx, pUpgradeFsm, response) { |
| 1856 | return //event sent from function already |
| 1857 | } |
| 1858 | _ = pUpgradeFsm.PFsm.Event(UpgradeEvRestart) |
| 1859 | } else { |
| 1860 | logger.Errorw(ctx, "pUpgradeFsm is nil", log.Fields{"device-id": oFsm.deviceID}) |
| 1861 | } |
| 1862 | return |
| 1863 | } //select |
| 1864 | } |
| 1865 | |
mpagenko | 4558676 | 2021-10-01 08:30:22 +0000 | [diff] [blame] | 1866 | //stateUpdateOnReset writes the download and/or image state on entering the reset state according to FSM internal indications |
| 1867 | func (oFsm *OnuUpgradeFsm) stateUpdateOnReset(ctx context.Context) { |
| 1868 | oFsm.mutexUpgradeParams.Lock() |
| 1869 | defer oFsm.mutexUpgradeParams.Unlock() |
| 1870 | if !oFsm.conditionalCancelRequested { |
| 1871 | switch oFsm.upgradePhase { |
| 1872 | case cUpgradeUndefined, cUpgradeDownloading: //coming from downloading |
| 1873 | //make sure the download state is only changed in case the device has still been downloading |
| 1874 | if oFsm.volthaDownloadReason == voltha.ImageState_CANCELLED_ON_REQUEST { |
| 1875 | // indication for termination on request |
| 1876 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_CANCELLED |
| 1877 | } else if oFsm.volthaDownloadReason != voltha.ImageState_NO_ERROR { |
| 1878 | // indication for termination on failure |
| 1879 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_FAILED |
| 1880 | } |
| 1881 | //reset the image state from Downloading in this case |
| 1882 | oFsm.volthaImageState = voltha.ImageState_IMAGE_UNKNOWN //something like 'IMAGE_DOWNLOAD_ABORTED' would be better (proto) |
| 1883 | //in all other upgrade phases the last set download state remains valid |
| 1884 | case cUpgradeActivating: |
| 1885 | //reset the image state from Activating in this case |
| 1886 | oFsm.volthaImageState = voltha.ImageState_IMAGE_ACTIVATION_ABORTED |
| 1887 | case cUpgradeCommitting: // indication for request to abort waiting for response |
| 1888 | //reset the image state from Activating in this case |
| 1889 | oFsm.volthaImageState = voltha.ImageState_IMAGE_COMMIT_ABORTED |
| 1890 | //default: in all other upgrade phases keep the last set imageState |
| 1891 | } //switch |
| 1892 | } else { |
| 1893 | //when reaching reset state with conditional cancel that can only result from ONU related problems |
| 1894 | // (mostly ONU down indication) - derived from resetFsms call |
| 1895 | // and it can only be related to the downloading-to-ONU phase (no need to check that additionally) |
| 1896 | oFsm.volthaDownloadState = voltha.ImageState_DOWNLOAD_FAILED |
| 1897 | oFsm.volthaDownloadReason = voltha.ImageState_CANCELLED_ON_ONU_STATE |
| 1898 | //reset the image state from Downloading in this case |
| 1899 | oFsm.volthaImageState = voltha.ImageState_IMAGE_UNKNOWN //something like 'IMAGE_DOWNLOAD_ABORTED' would be better (proto) |
| 1900 | } |
| 1901 | } |