Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +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 | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 17 | //Package adaptercoreonu provides the utility for onu devices, flows and statistics |
| 18 | package adaptercoreonu |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 19 | |
| 20 | import ( |
| 21 | "context" |
| 22 | "errors" |
| 23 | "fmt" |
| 24 | "sync" |
| 25 | "time" |
| 26 | |
Girish Gowdra | 50e5642 | 2021-06-01 16:46:04 -0700 | [diff] [blame] | 27 | conf "github.com/opencord/voltha-lib-go/v5/pkg/config" |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 28 | |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 29 | "github.com/golang/protobuf/ptypes" |
Girish Gowdra | 50e5642 | 2021-06-01 16:46:04 -0700 | [diff] [blame] | 30 | "github.com/opencord/voltha-lib-go/v5/pkg/adapters/adapterif" |
| 31 | "github.com/opencord/voltha-lib-go/v5/pkg/db/kvstore" |
| 32 | "github.com/opencord/voltha-lib-go/v5/pkg/events/eventif" |
| 33 | "github.com/opencord/voltha-lib-go/v5/pkg/kafka" |
| 34 | "github.com/opencord/voltha-lib-go/v5/pkg/log" |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 35 | "github.com/opencord/voltha-protos/v4/go/extension" |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 36 | ic "github.com/opencord/voltha-protos/v4/go/inter_container" |
| 37 | "github.com/opencord/voltha-protos/v4/go/openflow_13" |
| 38 | oop "github.com/opencord/voltha-protos/v4/go/openolt" |
| 39 | "github.com/opencord/voltha-protos/v4/go/voltha" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 40 | |
Matteo Scandolo | 761f751 | 2020-11-23 15:52:40 -0800 | [diff] [blame] | 41 | "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/config" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 42 | ) |
| 43 | |
| 44 | //OpenONUAC structure holds the ONU core information |
| 45 | type OpenONUAC struct { |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 46 | deviceHandlers map[string]*deviceHandler |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 47 | deviceHandlersCreateChan map[string]chan bool //channels for deviceHandler create events |
Holger Hildebrandt | 61b24d0 | 2020-11-16 13:36:40 +0000 | [diff] [blame] | 48 | lockDeviceHandlersMap sync.RWMutex |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 49 | coreProxy adapterif.CoreProxy |
| 50 | adapterProxy adapterif.AdapterProxy |
Himani Chawla | c07fda0 | 2020-12-09 16:21:21 +0530 | [diff] [blame] | 51 | eventProxy eventif.EventProxy |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 52 | kafkaICProxy kafka.InterContainerProxy |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 53 | kvClient kvstore.Client |
Matteo Scandolo | f1f39a7 | 2020-11-24 12:08:11 -0800 | [diff] [blame] | 54 | cm *conf.ConfigManager |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 55 | config *config.AdapterFlags |
| 56 | numOnus int |
Matteo Scandolo | 127c59d | 2021-01-28 11:31:18 -0800 | [diff] [blame] | 57 | KVStoreAddress string |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 58 | KVStoreType string |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 59 | KVStoreTimeout time.Duration |
Holger Hildebrandt | 61b24d0 | 2020-11-16 13:36:40 +0000 | [diff] [blame] | 60 | mibTemplatesGenerated map[string]bool |
| 61 | lockMibTemplateGenerated sync.RWMutex |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 62 | exitChannel chan int |
| 63 | HeartbeatCheckInterval time.Duration |
| 64 | HeartbeatFailReportInterval time.Duration |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 65 | AcceptIncrementalEvto bool |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 66 | //GrpcTimeoutInterval time.Duration |
Himani Chawla | d96df18 | 2020-09-28 11:12:02 +0530 | [diff] [blame] | 67 | pSupportedFsms *OmciDeviceFsms |
| 68 | maxTimeoutInterAdapterComm time.Duration |
Holger Hildebrandt | 38985dc | 2021-02-18 16:25:20 +0000 | [diff] [blame] | 69 | maxTimeoutReconciling time.Duration |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 70 | pDownloadManager *adapterDownloadManager |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 71 | pFileManager *fileDownloadManager //let coexist 'old and new' DownloadManager as long as 'old' does not get obsolete |
Girish Gowdra | af0ad63 | 2021-01-27 13:00:01 -0800 | [diff] [blame] | 72 | metricsEnabled bool |
Holger Hildebrandt | e3677f1 | 2021-02-05 14:50:56 +0000 | [diff] [blame] | 73 | mibAuditInterval time.Duration |
Girish Gowdra | 0b23584 | 2021-03-09 13:06:46 -0800 | [diff] [blame] | 74 | omciTimeout int // in seconds |
Himani Chawla | 075f164 | 2021-03-15 19:23:24 +0530 | [diff] [blame] | 75 | alarmAuditInterval time.Duration |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 76 | dlToOnuTimeout4M time.Duration |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | //NewOpenONUAC returns a new instance of OpenONU_AC |
| 80 | func NewOpenONUAC(ctx context.Context, kafkaICProxy kafka.InterContainerProxy, |
| 81 | coreProxy adapterif.CoreProxy, adapterProxy adapterif.AdapterProxy, |
Himani Chawla | c07fda0 | 2020-12-09 16:21:21 +0530 | [diff] [blame] | 82 | eventProxy eventif.EventProxy, kvClient kvstore.Client, cfg *config.AdapterFlags, cm *conf.ConfigManager) *OpenONUAC { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 83 | var openOnuAc OpenONUAC |
| 84 | openOnuAc.exitChannel = make(chan int, 1) |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 85 | openOnuAc.deviceHandlers = make(map[string]*deviceHandler) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 86 | openOnuAc.deviceHandlersCreateChan = make(map[string]chan bool) |
Holger Hildebrandt | 61b24d0 | 2020-11-16 13:36:40 +0000 | [diff] [blame] | 87 | openOnuAc.lockDeviceHandlersMap = sync.RWMutex{} |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 88 | openOnuAc.kafkaICProxy = kafkaICProxy |
| 89 | openOnuAc.config = cfg |
Matteo Scandolo | f1f39a7 | 2020-11-24 12:08:11 -0800 | [diff] [blame] | 90 | openOnuAc.cm = cm |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 91 | openOnuAc.numOnus = cfg.OnuNumber |
| 92 | openOnuAc.coreProxy = coreProxy |
| 93 | openOnuAc.adapterProxy = adapterProxy |
| 94 | openOnuAc.eventProxy = eventProxy |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 95 | openOnuAc.kvClient = kvClient |
Matteo Scandolo | 127c59d | 2021-01-28 11:31:18 -0800 | [diff] [blame] | 96 | openOnuAc.KVStoreAddress = cfg.KVStoreAddress |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 97 | openOnuAc.KVStoreType = cfg.KVStoreType |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 98 | openOnuAc.KVStoreTimeout = cfg.KVStoreTimeout |
Holger Hildebrandt | 61b24d0 | 2020-11-16 13:36:40 +0000 | [diff] [blame] | 99 | openOnuAc.mibTemplatesGenerated = make(map[string]bool) |
| 100 | openOnuAc.lockMibTemplateGenerated = sync.RWMutex{} |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 101 | openOnuAc.HeartbeatCheckInterval = cfg.HeartbeatCheckInterval |
| 102 | openOnuAc.HeartbeatFailReportInterval = cfg.HeartbeatFailReportInterval |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 103 | openOnuAc.AcceptIncrementalEvto = cfg.AccIncrEvto |
Himani Chawla | d96df18 | 2020-09-28 11:12:02 +0530 | [diff] [blame] | 104 | openOnuAc.maxTimeoutInterAdapterComm = cfg.MaxTimeoutInterAdapterComm |
Holger Hildebrandt | 38985dc | 2021-02-18 16:25:20 +0000 | [diff] [blame] | 105 | openOnuAc.maxTimeoutReconciling = cfg.MaxTimeoutReconciling |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 106 | //openOnuAc.GrpcTimeoutInterval = cfg.GrpcTimeoutInterval |
Girish Gowdra | af0ad63 | 2021-01-27 13:00:01 -0800 | [diff] [blame] | 107 | openOnuAc.metricsEnabled = cfg.MetricsEnabled |
Holger Hildebrandt | e3677f1 | 2021-02-05 14:50:56 +0000 | [diff] [blame] | 108 | openOnuAc.mibAuditInterval = cfg.MibAuditInterval |
Girish Gowdra | 0b23584 | 2021-03-09 13:06:46 -0800 | [diff] [blame] | 109 | // since consumers of OMCI timeout value everywhere in code is in "int seconds", do this useful conversion |
| 110 | openOnuAc.omciTimeout = int(cfg.OmciTimeout.Seconds()) |
Himani Chawla | 075f164 | 2021-03-15 19:23:24 +0530 | [diff] [blame] | 111 | openOnuAc.alarmAuditInterval = cfg.AlarmAuditInterval |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 112 | openOnuAc.dlToOnuTimeout4M = cfg.DownloadToOnuTimeout4MB |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 113 | |
| 114 | openOnuAc.pSupportedFsms = &OmciDeviceFsms{ |
| 115 | "mib-synchronizer": { |
| 116 | //mibSyncFsm, // Implements the MIB synchronization state machine |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 117 | mibDbVolatileDictImpl, // Implements volatile ME MIB database |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame] | 118 | //true, // Advertise events on OpenOMCI event bus |
Holger Hildebrandt | e3677f1 | 2021-02-05 14:50:56 +0000 | [diff] [blame] | 119 | openOnuAc.mibAuditInterval, // Time to wait between MIB audits. 0 to disable audits. |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 120 | // map[string]func() error{ |
| 121 | // "mib-upload": onuDeviceEntry.MibUploadTask, |
| 122 | // "mib-template": onuDeviceEntry.MibTemplateTask, |
| 123 | // "get-mds": onuDeviceEntry.GetMdsTask, |
| 124 | // "mib-audit": onuDeviceEntry.GetMdsTask, |
| 125 | // "mib-resync": onuDeviceEntry.MibResyncTask, |
| 126 | // "mib-reconcile": onuDeviceEntry.MibReconcileTask, |
| 127 | // }, |
| 128 | }, |
| 129 | } |
| 130 | |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 131 | openOnuAc.pDownloadManager = newAdapterDownloadManager(ctx) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 132 | openOnuAc.pFileManager = newFileDownloadManager(ctx) |
| 133 | openOnuAc.pFileManager.SetDownloadTimeout(ctx, cfg.DownloadToAdapterTimeout) |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 134 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 135 | return &openOnuAc |
| 136 | } |
| 137 | |
| 138 | //Start starts (logs) the adapter |
| 139 | func (oo *OpenONUAC) Start(ctx context.Context) error { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 140 | logger.Info(ctx, "starting-openonu-adapter") |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 141 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 142 | return nil |
| 143 | } |
| 144 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 145 | /* |
| 146 | //stop terminates the session |
| 147 | func (oo *OpenONUAC) stop(ctx context.Context) error { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 148 | logger.Info(ctx,"stopping-device-manager") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 149 | oo.exitChannel <- 1 |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 150 | logger.Info(ctx,"device-manager-stopped") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 151 | return nil |
| 152 | } |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 153 | */ |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 154 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 155 | func (oo *OpenONUAC) addDeviceHandlerToMap(ctx context.Context, agent *deviceHandler) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 156 | oo.lockDeviceHandlersMap.Lock() |
| 157 | defer oo.lockDeviceHandlersMap.Unlock() |
| 158 | if _, exist := oo.deviceHandlers[agent.deviceID]; !exist { |
| 159 | oo.deviceHandlers[agent.deviceID] = agent |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 160 | oo.deviceHandlers[agent.deviceID].start(ctx) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 161 | if _, exist := oo.deviceHandlersCreateChan[agent.deviceID]; exist { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 162 | logger.Debugw(ctx, "deviceHandler created - trigger processing of pending ONU_IND_REQUEST", log.Fields{"device-id": agent.deviceID}) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 163 | oo.deviceHandlersCreateChan[agent.deviceID] <- true |
| 164 | } |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 168 | func (oo *OpenONUAC) deleteDeviceHandlerToMap(agent *deviceHandler) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 169 | oo.lockDeviceHandlersMap.Lock() |
| 170 | defer oo.lockDeviceHandlersMap.Unlock() |
| 171 | delete(oo.deviceHandlers, agent.deviceID) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 172 | delete(oo.deviceHandlersCreateChan, agent.deviceID) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 175 | //getDeviceHandler gets the ONU deviceHandler and may wait until it is created |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 176 | func (oo *OpenONUAC) getDeviceHandler(ctx context.Context, deviceID string, aWait bool) *deviceHandler { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 177 | oo.lockDeviceHandlersMap.Lock() |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 178 | agent, ok := oo.deviceHandlers[deviceID] |
| 179 | if aWait && !ok { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 180 | logger.Infow(ctx, "Race condition: deviceHandler not present - wait for creation or timeout", |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 181 | log.Fields{"device-id": deviceID}) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 182 | if _, exist := oo.deviceHandlersCreateChan[deviceID]; !exist { |
| 183 | oo.deviceHandlersCreateChan[deviceID] = make(chan bool, 1) |
| 184 | } |
Girish Gowdra | 7407a4d | 2020-11-12 12:44:53 -0800 | [diff] [blame] | 185 | deviceCreateChan := oo.deviceHandlersCreateChan[deviceID] |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 186 | //keep the read sema short to allow for subsequent write |
| 187 | oo.lockDeviceHandlersMap.Unlock() |
| 188 | // based on concurrent processing the deviceHandler creation may not yet be finished at his point |
| 189 | // so it might be needed to wait here for that event with some timeout |
| 190 | select { |
| 191 | case <-time.After(1 * time.Second): //timer may be discussed ... |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 192 | logger.Warnw(ctx, "No valid deviceHandler created after max WaitTime", log.Fields{"device-id": deviceID}) |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 193 | return nil |
Girish Gowdra | 7407a4d | 2020-11-12 12:44:53 -0800 | [diff] [blame] | 194 | case <-deviceCreateChan: |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 195 | logger.Debugw(ctx, "deviceHandler is ready now - continue", log.Fields{"device-id": deviceID}) |
Girish Gowdra | 7407a4d | 2020-11-12 12:44:53 -0800 | [diff] [blame] | 196 | oo.lockDeviceHandlersMap.RLock() |
| 197 | defer oo.lockDeviceHandlersMap.RUnlock() |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 198 | return oo.deviceHandlers[deviceID] |
| 199 | } |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 200 | } |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 201 | oo.lockDeviceHandlersMap.Unlock() |
| 202 | return agent |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 203 | } |
| 204 | |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 205 | func (oo *OpenONUAC) processInterAdapterONUIndReqMessage(ctx context.Context, msg *ic.InterAdapterMessage) error { |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 206 | msgBody := msg.GetBody() |
| 207 | onuIndication := &oop.OnuIndication{} |
| 208 | if err := ptypes.UnmarshalAny(msgBody, onuIndication); err != nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 209 | logger.Warnw(ctx, "onu-ind-request-cannot-unmarshal-msg-body", log.Fields{"error": err}) |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 210 | return err |
| 211 | } |
| 212 | //ToDeviceId should address a DeviceHandler instance |
| 213 | targetDevice := msg.Header.ToDeviceId |
| 214 | |
| 215 | onuOperstate := onuIndication.GetOperState() |
| 216 | waitForDhInstPresent := false |
| 217 | if onuOperstate == "up" { |
| 218 | //Race condition (relevant in BBSIM-environment only): Due to unsynchronized processing of olt-adapter and rw_core, |
| 219 | //ONU_IND_REQUEST msg by olt-adapter could arrive a little bit earlier than rw_core was able to announce the corresponding |
| 220 | //ONU by RPC of Adopt_device(). Therefore it could be necessary to wait with processing of ONU_IND_REQUEST until call of |
| 221 | //Adopt_device() arrived and DeviceHandler instance was created |
| 222 | waitForDhInstPresent = true |
| 223 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 224 | if handler := oo.getDeviceHandler(ctx, targetDevice, waitForDhInstPresent); handler != nil { |
| 225 | logger.Infow(ctx, "onu-ind-request", log.Fields{"device-id": targetDevice, |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 226 | "OnuId": onuIndication.GetOnuId(), |
| 227 | "AdminState": onuIndication.GetAdminState(), "OperState": onuOperstate, |
| 228 | "SNR": onuIndication.GetSerialNumber()}) |
| 229 | |
| 230 | if onuOperstate == "up" { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 231 | return handler.createInterface(ctx, onuIndication) |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 232 | } else if (onuOperstate == "down") || (onuOperstate == "unreachable") { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 233 | return handler.updateInterface(ctx, onuIndication) |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 234 | } else { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 235 | logger.Errorw(ctx, "unknown-onu-ind-request operState", log.Fields{"OnuId": onuIndication.GetOnuId()}) |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 236 | return fmt.Errorf("invalidOperState: %s, %s", onuOperstate, targetDevice) |
| 237 | } |
| 238 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 239 | logger.Warnw(ctx, "no handler found for received onu-ind-request", log.Fields{ |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 240 | "msgToDeviceId": targetDevice}) |
| 241 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", targetDevice)) |
| 242 | } |
| 243 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 244 | // Adapter interface required methods ############## begin ######### |
| 245 | // ################################################################# |
| 246 | |
| 247 | // for original content compare: (needs according deviceHandler methods) |
| 248 | // /voltha-openolt-adapter/adaptercore/openolt.go |
| 249 | |
| 250 | // Adopt_device creates a new device handler if not present already and then adopts the device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 251 | func (oo *OpenONUAC) Adopt_device(ctx context.Context, device *voltha.Device) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 252 | if device == nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 253 | logger.Warn(ctx, "voltha-device-is-nil") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 254 | return errors.New("nil-device") |
| 255 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 256 | logger.Infow(ctx, "adopt-device", log.Fields{"device-id": device.Id}) |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 257 | var handler *deviceHandler |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 258 | if handler = oo.getDeviceHandler(ctx, device.Id, false); handler == nil { |
| 259 | handler := newDeviceHandler(ctx, oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 260 | oo.addDeviceHandlerToMap(ctx, handler) |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 261 | go handler.adoptOrReconcileDevice(ctx, device) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 262 | // Launch the creation of the device topic |
| 263 | // go oo.createDeviceTopic(device) |
| 264 | } |
| 265 | return nil |
| 266 | } |
| 267 | |
| 268 | //Get_ofp_device_info returns OFP information for the given device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 269 | func (oo *OpenONUAC) Get_ofp_device_info(ctx context.Context, device *voltha.Device) (*ic.SwitchCapability, error) { |
| 270 | logger.Errorw(ctx, "device-handler-not-set", log.Fields{"device-id": device.Id}) |
Andrea Campanella | 6515c58 | 2020-10-05 11:25:00 +0200 | [diff] [blame] | 271 | return nil, fmt.Errorf("device-handler-not-set %s", device.Id) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | //Get_ofp_port_info returns OFP port information for the given device |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 275 | //200630: method removed as per [VOL-3202]: OF port info is now to be delivered within UniPort create |
| 276 | // cmp changes in onu_uni_port.go::CreateVolthaPort() |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 277 | |
| 278 | //Process_inter_adapter_message sends messages to a target device (between adapters) |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 279 | func (oo *OpenONUAC) Process_inter_adapter_message(ctx context.Context, msg *ic.InterAdapterMessage) error { |
| 280 | logger.Debugw(ctx, "Process_inter_adapter_message", log.Fields{"msgId": msg.Header.Id, |
Holger Hildebrandt | 80129db | 2020-11-23 10:49:32 +0000 | [diff] [blame] | 281 | "msgProxyDeviceId": msg.Header.ProxyDeviceId, "msgToDeviceId": msg.Header.ToDeviceId, "Type": msg.Header.Type}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 282 | |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 283 | if msg.Header.Type == ic.InterAdapterMessageType_ONU_IND_REQUEST { |
| 284 | // we have to handle ONU_IND_REQUEST already here - see comments in processInterAdapterONUIndReqMessage() |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 285 | return oo.processInterAdapterONUIndReqMessage(ctx, msg) |
Holger Hildebrandt | 6c1fb0a | 2020-11-25 15:41:01 +0000 | [diff] [blame] | 286 | } |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 287 | //ToDeviceId should address a DeviceHandler instance |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 288 | targetDevice := msg.Header.ToDeviceId |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 289 | if handler := oo.getDeviceHandler(ctx, targetDevice, false); handler != nil { |
mpagenko | 1cc3cb4 | 2020-07-27 15:24:38 +0000 | [diff] [blame] | 290 | /* 200724: modification towards synchronous implementation - possible errors within processing shall be |
| 291 | * in the accordingly delayed response, some timing effect might result in Techprofile processing for multiple UNI's |
| 292 | */ |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 293 | return handler.processInterAdapterMessage(ctx, msg) |
mpagenko | 1cc3cb4 | 2020-07-27 15:24:38 +0000 | [diff] [blame] | 294 | /* so far the processing has been in background with according commented error treatment restrictions: |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 295 | go handler.ProcessInterAdapterMessage(msg) |
| 296 | // error treatment might be more sophisticated |
| 297 | // by now let's just accept the message on 'communication layer' |
| 298 | // message content problems have to be evaluated then in the handler |
| 299 | // and are by now not reported to the calling party (to force what reaction there?) |
| 300 | return nil |
mpagenko | 1cc3cb4 | 2020-07-27 15:24:38 +0000 | [diff] [blame] | 301 | */ |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 302 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 303 | logger.Warnw(ctx, "no handler found for received Inter-Proxy-message", log.Fields{ |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 304 | "msgToDeviceId": targetDevice}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 305 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", targetDevice)) |
| 306 | } |
| 307 | |
Girish Gowdra | 50e5642 | 2021-06-01 16:46:04 -0700 | [diff] [blame] | 308 | //Process_tech_profile_instance_request not implemented |
| 309 | func (oo *OpenONUAC) Process_tech_profile_instance_request(ctx context.Context, msg *ic.InterAdapterTechProfileInstanceRequestMessage) *ic.InterAdapterTechProfileDownloadMessage { |
| 310 | logger.Error(ctx, "unImplemented") |
| 311 | return nil |
| 312 | } |
| 313 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 314 | //Adapter_descriptor not implemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 315 | func (oo *OpenONUAC) Adapter_descriptor(ctx context.Context) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 316 | return errors.New("unImplemented") |
| 317 | } |
| 318 | |
| 319 | //Device_types unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 320 | func (oo *OpenONUAC) Device_types(ctx context.Context) (*voltha.DeviceTypes, error) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 321 | return nil, errors.New("unImplemented") |
| 322 | } |
| 323 | |
| 324 | //Health returns unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 325 | func (oo *OpenONUAC) Health(ctx context.Context) (*voltha.HealthStatus, error) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 326 | return nil, errors.New("unImplemented") |
| 327 | } |
| 328 | |
Holger Hildebrandt | 9ca8b13 | 2020-08-07 14:45:03 +0000 | [diff] [blame] | 329 | //Reconcile_device is called once when the adapter needs to re-create device - usually on core restart |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 330 | func (oo *OpenONUAC) Reconcile_device(ctx context.Context, device *voltha.Device) error { |
Holger Hildebrandt | f41a160 | 2020-08-19 09:52:50 +0000 | [diff] [blame] | 331 | if device == nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 332 | logger.Warn(ctx, "reconcile-device-voltha-device-is-nil") |
Holger Hildebrandt | f41a160 | 2020-08-19 09:52:50 +0000 | [diff] [blame] | 333 | return errors.New("nil-device") |
| 334 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 335 | logger.Infow(ctx, "reconcile-device", log.Fields{"device-id": device.Id}) |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 336 | var handler *deviceHandler |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 337 | if handler = oo.getDeviceHandler(ctx, device.Id, false); handler == nil { |
| 338 | handler := newDeviceHandler(ctx, oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo) |
Holger Hildebrandt | f41a160 | 2020-08-19 09:52:50 +0000 | [diff] [blame] | 339 | oo.addDeviceHandlerToMap(ctx, handler) |
| 340 | handler.device = device |
Maninder | b518755 | 2021-03-23 22:23:42 +0530 | [diff] [blame] | 341 | if err := handler.coreProxy.DeviceStateUpdate(ctx, device.Id, device.ConnectStatus, voltha.OperStatus_RECONCILING); err != nil { |
| 342 | return fmt.Errorf("not able to update device state to reconciling. Err : %s", err.Error()) |
| 343 | } |
Holger Hildebrandt | be52384 | 2021-03-10 10:47:18 +0000 | [diff] [blame] | 344 | handler.startReconciling(ctx, false) |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 345 | go handler.adoptOrReconcileDevice(ctx, handler.device) |
Holger Hildebrandt | f41a160 | 2020-08-19 09:52:50 +0000 | [diff] [blame] | 346 | // reconcilement will be continued after onu-device entry is added |
Holger Hildebrandt | 9ca8b13 | 2020-08-07 14:45:03 +0000 | [diff] [blame] | 347 | } else { |
Holger Hildebrandt | f41a160 | 2020-08-19 09:52:50 +0000 | [diff] [blame] | 348 | return fmt.Errorf(fmt.Sprintf("device-already-reconciled-or-active-%s", device.Id)) |
Holger Hildebrandt | 9ca8b13 | 2020-08-07 14:45:03 +0000 | [diff] [blame] | 349 | } |
| 350 | return nil |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | //Abandon_device unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 354 | func (oo *OpenONUAC) Abandon_device(ctx context.Context, device *voltha.Device) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 355 | return errors.New("unImplemented") |
| 356 | } |
| 357 | |
| 358 | //Disable_device disables the given device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 359 | func (oo *OpenONUAC) Disable_device(ctx context.Context, device *voltha.Device) error { |
| 360 | logger.Infow(ctx, "disable-device", log.Fields{"device-id": device.Id}) |
| 361 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
| 362 | go handler.disableDevice(ctx, device) |
ozgecanetsia | fce57b1 | 2020-05-25 14:39:35 +0300 | [diff] [blame] | 363 | return nil |
| 364 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 365 | logger.Warnw(ctx, "no handler found for device-disable", log.Fields{"device-id": device.Id}) |
ozgecanetsia | fce57b1 | 2020-05-25 14:39:35 +0300 | [diff] [blame] | 366 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id)) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 369 | //Reenable_device enables the onu device after disable |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 370 | func (oo *OpenONUAC) Reenable_device(ctx context.Context, device *voltha.Device) error { |
| 371 | logger.Infow(ctx, "reenable-device", log.Fields{"device-id": device.Id}) |
| 372 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
| 373 | go handler.reEnableDevice(ctx, device) |
ozgecanetsia | fce57b1 | 2020-05-25 14:39:35 +0300 | [diff] [blame] | 374 | return nil |
| 375 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 376 | logger.Warnw(ctx, "no handler found for device-reenable", log.Fields{"device-id": device.Id}) |
ozgecanetsia | fce57b1 | 2020-05-25 14:39:35 +0300 | [diff] [blame] | 377 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id)) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | //Reboot_device reboots the given device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 381 | func (oo *OpenONUAC) Reboot_device(ctx context.Context, device *voltha.Device) error { |
| 382 | logger.Infow(ctx, "reboot-device", log.Fields{"device-id": device.Id}) |
| 383 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 384 | go handler.rebootDevice(ctx, true, device) //reboot request with device checking |
ozgecanetsia | e11479f | 2020-07-06 09:44:47 +0300 | [diff] [blame] | 385 | return nil |
| 386 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 387 | logger.Warnw(ctx, "no handler found for device-reboot", log.Fields{"device-id": device.Id}) |
Andrey Pozolotin | 1394a1c | 2021-06-01 00:54:18 +0300 | [diff] [blame] | 388 | return fmt.Errorf("handler-not-found-for-device: %s", device.Id) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 391 | //Self_test_device unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 392 | func (oo *OpenONUAC) Self_test_device(ctx context.Context, device *voltha.Device) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 393 | return errors.New("unImplemented") |
| 394 | } |
| 395 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 396 | // Delete_device deletes the given device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 397 | func (oo *OpenONUAC) Delete_device(ctx context.Context, device *voltha.Device) error { |
| 398 | logger.Infow(ctx, "delete-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber}) |
| 399 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
Girish Gowdra | 0e53364 | 2021-03-02 22:02:51 -0800 | [diff] [blame] | 400 | var errorsList []error |
Holger Hildebrandt | ff05b68 | 2021-03-16 15:02:05 +0000 | [diff] [blame] | 401 | |
| 402 | handler.mutexDeletionInProgressFlag.Lock() |
| 403 | handler.deletionInProgress = true |
| 404 | handler.mutexDeletionInProgressFlag.Unlock() |
| 405 | |
Girish Gowdra | 0e53364 | 2021-03-02 22:02:51 -0800 | [diff] [blame] | 406 | if err := handler.deleteDevicePersistencyData(ctx); err != nil { |
| 407 | errorsList = append(errorsList, err) |
| 408 | } |
Girish Gowdra | 6afb56a | 2021-04-27 17:47:57 -0700 | [diff] [blame] | 409 | select { |
| 410 | case handler.stopCollector <- true: // stop the metric collector routine |
| 411 | logger.Debugw(ctx, "sent stop signal to metric collector routine", log.Fields{"device-id": device.Id}) |
| 412 | default: |
| 413 | logger.Warnw(ctx, "metric collector routine not waiting on stop signal", log.Fields{"device-id": device.Id}) |
| 414 | } |
| 415 | select { |
| 416 | case handler.stopAlarmManager <- true: //stop the alarm manager. |
| 417 | logger.Debugw(ctx, "sent stop signal to alarm manager", log.Fields{"device-id": device.Id}) |
| 418 | default: |
| 419 | logger.Warnw(ctx, "alarm manager not waiting on stop signal", log.Fields{"device-id": device.Id}) |
| 420 | } |
Girish Gowdra | 0e53364 | 2021-03-02 22:02:51 -0800 | [diff] [blame] | 421 | if handler.pOnuMetricsMgr != nil { |
| 422 | if err := handler.pOnuMetricsMgr.clearAllPmData(ctx); err != nil { |
| 423 | errorsList = append(errorsList, err) |
| 424 | } |
| 425 | } |
Girish Gowdra | 6afb56a | 2021-04-27 17:47:57 -0700 | [diff] [blame] | 426 | select { |
| 427 | case handler.pSelfTestHdlr.stopSelfTestModule <- true: |
| 428 | logger.Debugw(ctx, "sent stop signal to self test handler module", log.Fields{"device-id": device.Id}) |
| 429 | default: |
| 430 | logger.Warnw(ctx, "self test handler module not waiting on stop signal", log.Fields{"device-id": device.Id}) |
| 431 | } |
Holger Hildebrandt | f07b44a | 2020-11-10 13:07:54 +0000 | [diff] [blame] | 432 | //don't leave any garbage - even in error case |
| 433 | oo.deleteDeviceHandlerToMap(handler) |
Girish Gowdra | 0e53364 | 2021-03-02 22:02:51 -0800 | [diff] [blame] | 434 | if len(errorsList) > 0 { |
| 435 | logger.Errorw(ctx, "one-or-more-error-during-device-delete", log.Fields{"device-id": device.Id}) |
| 436 | return fmt.Errorf("one-or-more-error-during-device-delete, errors:%v", errorsList) |
| 437 | } |
| 438 | return nil |
Holger Hildebrandt | 9ca8b13 | 2020-08-07 14:45:03 +0000 | [diff] [blame] | 439 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 440 | logger.Warnw(ctx, "no handler found for device-deletion", log.Fields{"device-id": device.Id}) |
mpagenko | 2418ab0 | 2020-11-12 12:58:06 +0000 | [diff] [blame] | 441 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id)) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | //Get_device_details unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 445 | func (oo *OpenONUAC) Get_device_details(ctx context.Context, device *voltha.Device) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 446 | return errors.New("unImplemented") |
| 447 | } |
| 448 | |
| 449 | //Update_flows_bulk returns |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 450 | func (oo *OpenONUAC) Update_flows_bulk(ctx context.Context, device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 451 | return errors.New("unImplemented") |
| 452 | } |
| 453 | |
| 454 | //Update_flows_incrementally updates (add/remove) the flows on a given device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 455 | func (oo *OpenONUAC) Update_flows_incrementally(ctx context.Context, device *voltha.Device, |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 456 | flows *openflow_13.FlowChanges, groups *openflow_13.FlowGroupChanges, flowMetadata *voltha.FlowMetadata) error { |
mpagenko | fc4f56e | 2020-11-04 17:17:49 +0000 | [diff] [blame] | 457 | |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 458 | logger.Infow(ctx, "update-flows-incrementally", log.Fields{"device-id": device.Id}) |
mpagenko | fc4f56e | 2020-11-04 17:17:49 +0000 | [diff] [blame] | 459 | //flow config is relayed to handler even if the device might be in some 'inactive' state |
| 460 | // let the handler or related FSM's decide, what to do with the modified flow state info |
| 461 | // at least the flow-remove must be done in respect to internal data, while OMCI activity might not be needed here |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 462 | |
| 463 | // For now, there is no support for group changes (as in the actual Py-adapter code) |
mpagenko | fc4f56e | 2020-11-04 17:17:49 +0000 | [diff] [blame] | 464 | // but processing is continued for flowUpdate possibly also set in the request |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 465 | if groups.ToAdd != nil && groups.ToAdd.Items != nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 466 | logger.Warnw(ctx, "Update-flow-incr: group add not supported (ignored)", log.Fields{"device-id": device.Id}) |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 467 | } |
| 468 | if groups.ToRemove != nil && groups.ToRemove.Items != nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 469 | logger.Warnw(ctx, "Update-flow-incr: group remove not supported (ignored)", log.Fields{"device-id": device.Id}) |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 470 | } |
| 471 | if groups.ToUpdate != nil && groups.ToUpdate.Items != nil { |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 472 | logger.Warnw(ctx, "Update-flow-incr: group update not supported (ignored)", log.Fields{"device-id": device.Id}) |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 473 | } |
| 474 | |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 475 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
| 476 | err := handler.FlowUpdateIncremental(ctx, flows, groups, flowMetadata) |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 477 | return err |
| 478 | } |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 479 | logger.Warnw(ctx, "no handler found for incremental flow update", log.Fields{"device-id": device.Id}) |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 480 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id)) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | //Update_pm_config returns PmConfigs nil or error |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 484 | func (oo *OpenONUAC) Update_pm_config(ctx context.Context, device *voltha.Device, pmConfigs *voltha.PmConfigs) error { |
Girish Gowdra | e09a620 | 2021-01-12 18:10:59 -0800 | [diff] [blame] | 485 | logger.Infow(ctx, "update-pm-config", log.Fields{"device-id": device.Id}) |
| 486 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
Girish Gowdra | 5a7c492 | 2021-01-22 18:33:41 -0800 | [diff] [blame] | 487 | return handler.updatePmConfig(ctx, pmConfigs) |
Girish Gowdra | e09a620 | 2021-01-12 18:10:59 -0800 | [diff] [blame] | 488 | } |
Girish Gowdra | 5a7c492 | 2021-01-22 18:33:41 -0800 | [diff] [blame] | 489 | logger.Warnw(ctx, "no handler found for update-pm-config", log.Fields{"device-id": device.Id}) |
| 490 | return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id)) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | //Receive_packet_out sends packet out to the device |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 494 | func (oo *OpenONUAC) Receive_packet_out(ctx context.Context, deviceID string, egressPortNo int, packet *openflow_13.OfpPacketOut) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 495 | return errors.New("unImplemented") |
| 496 | } |
| 497 | |
| 498 | //Suppress_event unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 499 | func (oo *OpenONUAC) Suppress_event(ctx context.Context, filter *voltha.EventFilter) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 500 | return errors.New("unImplemented") |
| 501 | } |
| 502 | |
| 503 | //Unsuppress_event unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 504 | func (oo *OpenONUAC) Unsuppress_event(ctx context.Context, filter *voltha.EventFilter) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 505 | return errors.New("unImplemented") |
| 506 | } |
| 507 | |
Andrea Campanella | 71e546a | 2021-02-26 11:09:33 +0100 | [diff] [blame] | 508 | //Download_image requests downloading some image according to indications as given in request |
| 509 | //The ImageDownload needs to be called `request`due to library reflection requirements |
| 510 | func (oo *OpenONUAC) Download_image(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 511 | if request != nil && (*request).Name != "" { |
| 512 | if !oo.pDownloadManager.imageExists(ctx, request) { |
| 513 | logger.Debugw(ctx, "start image download", log.Fields{"image-description": request}) |
| 514 | // Download_image is not supposed to be blocking, anyway let's call the DownloadManager still synchronously to detect 'fast' problems |
| 515 | // the download itself is later done in background |
| 516 | err := oo.pDownloadManager.startDownload(ctx, request) |
| 517 | return request, err |
| 518 | } |
| 519 | // image already exists |
| 520 | logger.Debugw(ctx, "image already downloaded", log.Fields{"image-description": request}) |
| 521 | return request, nil |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 522 | } |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 523 | return request, errors.New("invalid image definition") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | //Get_image_download_status unimplemented |
Andrea Campanella | 71e546a | 2021-02-26 11:09:33 +0100 | [diff] [blame] | 527 | //The ImageDownload needs to be called `request`due to library reflection requirements |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 528 | func (oo *OpenONUAC) Get_image_download_status(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 529 | return nil, errors.New("unImplemented") |
| 530 | } |
| 531 | |
| 532 | //Cancel_image_download unimplemented |
Andrea Campanella | 71e546a | 2021-02-26 11:09:33 +0100 | [diff] [blame] | 533 | //The ImageDownload needs to be called `request`due to library reflection requirements |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 534 | func (oo *OpenONUAC) Cancel_image_download(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 535 | return nil, errors.New("unImplemented") |
| 536 | } |
| 537 | |
mpagenko | 057889c | 2021-01-21 16:51:58 +0000 | [diff] [blame] | 538 | //Activate_image_update requests downloading some Onu Software image to the INU via OMCI |
Andrea Campanella | 71e546a | 2021-02-26 11:09:33 +0100 | [diff] [blame] | 539 | // according to indications as given in request and on success activate the image on the ONU |
| 540 | //The ImageDownload needs to be called `request`due to library reflection requirements |
| 541 | func (oo *OpenONUAC) Activate_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 542 | if request != nil && (*request).Name != "" { |
| 543 | if oo.pDownloadManager.imageLocallyDownloaded(ctx, request) { |
| 544 | if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil { |
| 545 | logger.Debugw(ctx, "image download on omci requested", log.Fields{ |
| 546 | "image-description": request, "device-id": device.Id}) |
| 547 | err := handler.doOnuSwUpgrade(ctx, request, oo.pDownloadManager) |
| 548 | return request, err |
| 549 | } |
| 550 | logger.Warnw(ctx, "no handler found for image activation", log.Fields{"device-id": device.Id}) |
| 551 | return request, fmt.Errorf(fmt.Sprintf("handler-not-found - device-id: %s", device.Id)) |
mpagenko | 057889c | 2021-01-21 16:51:58 +0000 | [diff] [blame] | 552 | } |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 553 | logger.Debugw(ctx, "image not yet downloaded on activate request", log.Fields{"image-description": request}) |
| 554 | return request, fmt.Errorf(fmt.Sprintf("image-not-yet-downloaded - device-id: %s", device.Id)) |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 555 | } |
mpagenko | 15ff4a5 | 2021-03-02 10:09:20 +0000 | [diff] [blame] | 556 | return request, errors.New("invalid image definition") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | //Revert_image_update unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 560 | func (oo *OpenONUAC) Revert_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 561 | return nil, errors.New("unImplemented") |
| 562 | } |
| 563 | |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 564 | // Enable_port to Enable PON/NNI interface - seems not to be used/required according to python code |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 565 | func (oo *OpenONUAC) Enable_port(ctx context.Context, deviceID string, port *voltha.Port) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 566 | return errors.New("unImplemented") |
| 567 | } |
| 568 | |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 569 | // Disable_port to Disable pon/nni interface - seems not to be used/required according to python code |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 570 | func (oo *OpenONUAC) Disable_port(ctx context.Context, deviceID string, port *voltha.Port) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 571 | return errors.New("unImplemented") |
| 572 | } |
| 573 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 574 | //Child_device_lost - unimplemented |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 575 | //needed for if update >= 3.1.x |
Matteo Scandolo | 3f2bdc8 | 2021-03-18 18:18:22 -0700 | [diff] [blame] | 576 | func (oo *OpenONUAC) Child_device_lost(ctx context.Context, device *voltha.Device) error { |
Matteo Scandolo | 2e6f1e3 | 2020-04-15 11:28:45 -0700 | [diff] [blame] | 577 | return errors.New("unImplemented") |
| 578 | } |
| 579 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 580 | // Start_omci_test unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 581 | func (oo *OpenONUAC) Start_omci_test(ctx context.Context, device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error) { |
Matteo Scandolo | 2e6f1e3 | 2020-04-15 11:28:45 -0700 | [diff] [blame] | 582 | return nil, errors.New("unImplemented") |
| 583 | } |
| 584 | |
Himani Chawla | 6d2ae15 | 2020-09-02 13:11:20 +0530 | [diff] [blame] | 585 | // Get_ext_value - unimplemented |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 586 | func (oo *OpenONUAC) Get_ext_value(ctx context.Context, deviceID string, device *voltha.Device, valueparam voltha.ValueType_Type) (*voltha.ReturnValues, error) { |
Matteo Scandolo | d132c0e | 2020-04-24 17:06:25 -0700 | [diff] [blame] | 587 | return nil, errors.New("unImplemented") |
| 588 | } |
| 589 | |
kesavand | fdf7763 | 2021-01-26 23:40:33 -0500 | [diff] [blame] | 590 | //Single_get_value_request handles the core request to retrieve uni status |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 591 | func (oo *OpenONUAC) Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) { |
kesavand | fdf7763 | 2021-01-26 23:40:33 -0500 | [diff] [blame] | 592 | logger.Infow(ctx, "Single_get_value_request", log.Fields{"request": request}) |
| 593 | |
| 594 | if handler := oo.getDeviceHandler(ctx, request.TargetId, false); handler != nil { |
| 595 | switch reqType := request.GetRequest().GetRequest().(type) { |
| 596 | case *extension.GetValueRequest_UniInfo: |
| 597 | return handler.getUniPortStatus(ctx, reqType.UniInfo), nil |
Girish Gowdra | 6afb56a | 2021-04-27 17:47:57 -0700 | [diff] [blame] | 598 | case *extension.GetValueRequest_OnuOpticalInfo: |
| 599 | commChan := make(chan Message) |
| 600 | respChan := make(chan extension.SingleGetValueResponse) |
| 601 | // Initiate the self test request |
| 602 | if err := handler.pSelfTestHdlr.SelfTestRequestStart(ctx, request, commChan, respChan); err != nil { |
| 603 | return &extension.SingleGetValueResponse{ |
| 604 | Response: &extension.GetValueResponse{ |
| 605 | Status: extension.GetValueResponse_ERROR, |
| 606 | ErrReason: extension.GetValueResponse_INTERNAL_ERROR, |
| 607 | }, |
| 608 | }, err |
| 609 | } |
| 610 | // The timeout handling is already implemented in omci_self_test_handler module |
| 611 | resp := <-respChan |
| 612 | return &resp, nil |
Himani Chawla | 43f95ff | 2021-06-03 00:24:12 +0530 | [diff] [blame] | 613 | case *extension.GetValueRequest_OnuInfo: |
| 614 | return handler.getOnuOMCICounters(ctx, reqType.OnuInfo), nil |
kesavand | fdf7763 | 2021-01-26 23:40:33 -0500 | [diff] [blame] | 615 | default: |
| 616 | return postUniStatusErrResponse(extension.GetValueResponse_UNSUPPORTED), nil |
| 617 | |
| 618 | } |
| 619 | } |
| 620 | logger.Errorw(ctx, "Single_get_value_request failed ", log.Fields{"request": request}) |
| 621 | return postUniStatusErrResponse(extension.GetValueResponse_INVALID_DEVICE_ID), nil |
mpagenko | c8bba41 | 2021-01-15 15:38:44 +0000 | [diff] [blame] | 622 | } |
| 623 | |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 624 | //if update >= 4.3.0 |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 625 | // Note: already with the implementation of the 'old' download interface problems were detected when the argument name used here is not the same |
| 626 | // as defined in the adapter interface file. That sounds strange and the effects were strange as well. |
| 627 | // The reason for that was never finally investigated. |
| 628 | // To be on the safe side argument names are left here always as defined in iAdapter.go . |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 629 | |
| 630 | // Download_onu_image downloads (and optionally activates and commits) the indicated ONU image to the requested ONU(s) |
| 631 | // if the image is not yet present on the adapter it has to be automatically downloaded |
| 632 | func (oo *OpenONUAC) Download_onu_image(ctx context.Context, request *voltha.DeviceImageDownloadRequest) (*voltha.DeviceImageResponse, error) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 633 | if request != nil && len((*request).DeviceId) > 0 && (*request).Image.Version != "" { |
| 634 | loResponse := voltha.DeviceImageResponse{} |
| 635 | imageIdentifier := (*request).Image.Version |
| 636 | //inform the deviceHandler about (possibly new) requested ONU download requests |
| 637 | firstDevice := true |
| 638 | var vendorID string |
| 639 | for _, pCommonID := range (*request).DeviceId { |
| 640 | loDeviceID := (*pCommonID).Id |
| 641 | onuVolthaDevice, err := oo.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), |
| 642 | loDeviceID, loDeviceID) |
| 643 | if err != nil || onuVolthaDevice == nil { |
| 644 | logger.Warnw(ctx, "Failed to fetch Onu device for image download", |
| 645 | log.Fields{"device-id": loDeviceID, "err": err}) |
| 646 | continue //try the work with next deviceId |
| 647 | } |
| 648 | if firstDevice { |
| 649 | //start/verify download of the image to the adapter based on first found device only |
| 650 | // use the OnuVendor identification from first given device |
| 651 | firstDevice = false |
| 652 | vendorID = onuVolthaDevice.VendorId |
| 653 | imageIdentifier = vendorID + imageIdentifier //head on vendor ID of the ONU |
| 654 | logger.Debugw(ctx, "download request for file", log.Fields{"image-id": imageIdentifier}) |
| 655 | |
| 656 | if !oo.pFileManager.ImageExists(ctx, imageIdentifier) { |
| 657 | logger.Debugw(ctx, "start image download", log.Fields{"image-description": request}) |
| 658 | // Download_image is not supposed to be blocking, anyway let's call the DownloadManager still synchronously to detect 'fast' problems |
| 659 | // the download itself is later done in background |
| 660 | if err := oo.pFileManager.StartDownload(ctx, imageIdentifier, (*request).Image.Url); err != nil { |
| 661 | return nil, err |
| 662 | } |
| 663 | } |
| 664 | // image already exists |
| 665 | logger.Debugw(ctx, "image already downloaded", log.Fields{"image-description": imageIdentifier}) |
| 666 | } else { |
| 667 | //for all following devices verify the matching vendorID |
| 668 | if onuVolthaDevice.VendorId != vendorID { |
| 669 | logger.Warnw(ctx, "onu vendor id does not match image vendor id, device ignored", |
| 670 | log.Fields{"onu-vendor-id": onuVolthaDevice.VendorId, "image-vendor-id": vendorID}) |
| 671 | continue //try the work with next deviceId |
| 672 | } |
| 673 | } |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 674 | loDeviceImageState := voltha.DeviceImageState{} |
| 675 | loDeviceImageState.DeviceId = loDeviceID |
| 676 | loImageState := voltha.ImageState{} |
| 677 | loDeviceImageState.ImageState = &loImageState |
| 678 | loDeviceImageState.ImageState.Version = (*request).Image.Version |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 679 | // start the ONU download activity for each possible device |
| 680 | // assumption here is, that the concerned device was already created (automatic start after device creation not supported) |
| 681 | if handler := oo.getDeviceHandler(ctx, loDeviceID, false); handler != nil { |
| 682 | logger.Debugw(ctx, "image download on omci requested", log.Fields{ |
| 683 | "image-id": imageIdentifier, "device-id": loDeviceID}) |
| 684 | //onu upgrade handling called in background without immediate error evaluation here |
| 685 | // as the processing can be done for multiple ONU's and an error on one ONU should not stop processing for others |
| 686 | // state/progress/success of the request has to be verified using the Get_onu_image_status() API |
| 687 | go handler.onuSwUpgradeAfterDownload(ctx, request, oo.pFileManager, imageIdentifier) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 688 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_STARTED |
| 689 | loDeviceImageState.ImageState.Reason = voltha.ImageState_NO_ERROR |
| 690 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_UNKNOWN |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 691 | } else { |
| 692 | //cannot start ONU download for requested device |
| 693 | logger.Warnw(ctx, "no handler found for image activation", log.Fields{"device-id": loDeviceID}) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 694 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_FAILED |
| 695 | loDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 696 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_UNKNOWN |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 697 | } |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 698 | loResponse.DeviceImageStates = append(loResponse.DeviceImageStates, &loDeviceImageState) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 699 | } |
| 700 | pImageResp := &loResponse |
| 701 | return pImageResp, nil |
| 702 | } |
| 703 | return nil, errors.New("invalid image download parameters") |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | // Get_onu_image_status delivers the adapter-related information about the download/activation/commitment |
| 707 | // status for the requested image |
| 708 | func (oo *OpenONUAC) Get_onu_image_status(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 709 | if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" { |
| 710 | loResponse := voltha.DeviceImageResponse{} |
| 711 | pDlToAdapterImageState := &voltha.ImageState{} |
| 712 | imageIdentifier := (*in).Version |
| 713 | firstDevice := true |
| 714 | var vendorID string |
| 715 | for _, pCommonID := range (*in).DeviceId { |
| 716 | loDeviceID := (*pCommonID).Id |
| 717 | onuVolthaDevice, err := oo.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), |
| 718 | loDeviceID, loDeviceID) |
| 719 | if err != nil || onuVolthaDevice == nil { |
| 720 | logger.Warnw(ctx, "Failed to fetch Onu device to get image status", |
| 721 | log.Fields{"device-id": loDeviceID, "err": err}) |
| 722 | continue //try the work with next deviceId |
| 723 | } |
| 724 | if firstDevice { |
| 725 | //start/verify download of the image to the adapter based on first found device only |
| 726 | // use the OnuVendor identification from first given device |
| 727 | firstDevice = false |
| 728 | vendorID = onuVolthaDevice.VendorId |
| 729 | imageIdentifier = vendorID + imageIdentifier //head on vendor ID of the ONU |
| 730 | logger.Debugw(ctx, "status request for image", log.Fields{"image-id": imageIdentifier}) |
| 731 | oo.pFileManager.RequestDownloadState(ctx, imageIdentifier, pDlToAdapterImageState) |
| 732 | } else { |
| 733 | //for all following devices verify the matching vendorID |
| 734 | if onuVolthaDevice.VendorId != vendorID { |
| 735 | logger.Warnw(ctx, "onu vendor id does not match image vendor id, device ignored", |
| 736 | log.Fields{"onu-vendor-id": onuVolthaDevice.VendorId, "image-vendor-id": vendorID}) |
| 737 | continue //try the work with next deviceId |
| 738 | } |
| 739 | } |
| 740 | pDeviceImageState := &voltha.DeviceImageState{ |
| 741 | ImageState: &voltha.ImageState{ |
| 742 | DownloadState: (*pDlToAdapterImageState).DownloadState, |
| 743 | Reason: (*pDlToAdapterImageState).Reason, |
| 744 | }, |
| 745 | } |
| 746 | // get the handler for the device |
| 747 | if handler := oo.getDeviceHandler(ctx, loDeviceID, false); handler != nil { |
| 748 | logger.Debugw(ctx, "image status request for", log.Fields{ |
| 749 | "image-id": imageIdentifier, "device-id": loDeviceID}) |
| 750 | //status request is called synchronously to collect the indications for all concerned devices |
| 751 | handler.requestOnuSwUpgradeState(ctx, imageIdentifier, (*in).Version, pDeviceImageState) |
| 752 | } else { |
| 753 | //cannot get the handler |
| 754 | logger.Warnw(ctx, "no handler found for image status request ", log.Fields{"device-id": loDeviceID}) |
| 755 | pDeviceImageState.DeviceId = loDeviceID |
| 756 | pDeviceImageState.ImageState.Version = (*in).Version |
| 757 | pDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_FAILED |
| 758 | pDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 759 | pDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_UNKNOWN |
| 760 | } |
| 761 | loResponse.DeviceImageStates = append(loResponse.DeviceImageStates, pDeviceImageState) |
| 762 | } |
| 763 | pImageResp := &loResponse |
| 764 | return pImageResp, nil |
| 765 | } |
| 766 | return nil, errors.New("invalid image status request parameters") |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 767 | } |
| 768 | |
| 769 | // Abort_onu_image_upgrade stops the actual download/activation/commitment process (on next possibly step) |
| 770 | func (oo *OpenONUAC) Abort_onu_image_upgrade(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 771 | if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" { |
| 772 | loResponse := voltha.DeviceImageResponse{} |
| 773 | imageIdentifier := (*in).Version |
| 774 | firstDevice := true |
| 775 | var vendorID string |
| 776 | for _, pCommonID := range (*in).DeviceId { |
| 777 | loDeviceID := (*pCommonID).Id |
| 778 | onuVolthaDevice, err := oo.coreProxy.GetDevice(log.WithSpanFromContext(context.TODO(), ctx), |
| 779 | loDeviceID, loDeviceID) |
| 780 | if err != nil || onuVolthaDevice == nil { |
| 781 | logger.Warnw(ctx, "Failed to fetch Onu device to abort its download", |
| 782 | log.Fields{"device-id": loDeviceID, "err": err}) |
| 783 | continue //try the work with next deviceId |
| 784 | } |
| 785 | pDeviceImageState := &voltha.DeviceImageState{} |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 786 | loImageState := voltha.ImageState{} |
| 787 | pDeviceImageState.ImageState = &loImageState |
| 788 | |
mpagenko | aa3afe9 | 2021-05-21 16:20:58 +0000 | [diff] [blame] | 789 | if firstDevice { |
| 790 | //start/verify download of the image to the adapter based on first found device only |
| 791 | // use the OnuVendor identification from first given device |
| 792 | firstDevice = false |
| 793 | vendorID = onuVolthaDevice.VendorId |
| 794 | imageIdentifier = vendorID + imageIdentifier //head on vendor ID of the ONU |
| 795 | logger.Debugw(ctx, "abort request for file", log.Fields{"image-id": imageIdentifier}) |
| 796 | } else { |
| 797 | //for all following devices verify the matching vendorID |
| 798 | if onuVolthaDevice.VendorId != vendorID { |
| 799 | logger.Warnw(ctx, "onu vendor id does not match image vendor id, device ignored", |
| 800 | log.Fields{"onu-vendor-id": onuVolthaDevice.VendorId, "image-vendor-id": vendorID}) |
| 801 | continue //try the work with next deviceId |
| 802 | } |
| 803 | } |
| 804 | |
| 805 | // cancel the ONU upgrade activity for each possible device |
| 806 | if handler := oo.getDeviceHandler(ctx, loDeviceID, false); handler != nil { |
| 807 | logger.Debugw(ctx, "image upgrade abort requested", log.Fields{ |
| 808 | "image-id": imageIdentifier, "device-id": loDeviceID}) |
| 809 | //upgrade cancel is called synchronously to collect the imageResponse indications for all concerned devices |
| 810 | handler.cancelOnuSwUpgrade(ctx, imageIdentifier, (*in).Version, pDeviceImageState) |
| 811 | } else { |
| 812 | //cannot start ONU download for requested device |
| 813 | logger.Warnw(ctx, "no handler found for aborting upgrade ", log.Fields{"device-id": loDeviceID}) |
| 814 | pDeviceImageState.DeviceId = loDeviceID |
| 815 | pDeviceImageState.ImageState.Version = (*in).Version |
| 816 | //nolint:misspell |
| 817 | pDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_CANCELLED |
| 818 | //nolint:misspell |
| 819 | pDeviceImageState.ImageState.Reason = voltha.ImageState_CANCELLED_ON_REQUEST |
| 820 | pDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_UNKNOWN |
| 821 | } |
| 822 | loResponse.DeviceImageStates = append(loResponse.DeviceImageStates, pDeviceImageState) |
| 823 | } |
| 824 | if !firstDevice { |
| 825 | //if at least one valid device was found cancel also a possibly running download to adapter and remove the image |
| 826 | // this is to be done after the upgradeOnu cancel activities in order to not subduct the file for still running processes |
| 827 | oo.pFileManager.CancelDownload(ctx, imageIdentifier) |
| 828 | } |
| 829 | pImageResp := &loResponse |
| 830 | return pImageResp, nil |
| 831 | } |
| 832 | return nil, errors.New("invalid image upgrade abort parameters") |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | // Get_onu_images retrieves the ONU SW image status information via OMCI |
| 836 | func (oo *OpenONUAC) Get_onu_images(ctx context.Context, deviceID string) (*voltha.OnuImages, error) { |
Holger Hildebrandt | fb402a6 | 2021-05-26 14:40:49 +0000 | [diff] [blame] | 837 | logger.Infow(ctx, "Get_onu_images", log.Fields{"device-id": deviceID}) |
| 838 | if handler := oo.getDeviceHandler(ctx, deviceID, false); handler != nil { |
| 839 | var err error |
| 840 | if images, err := handler.getOnuImages(ctx); err == nil { |
| 841 | return images, nil |
| 842 | } |
| 843 | return nil, fmt.Errorf(fmt.Sprintf("%s-%s", err, deviceID)) |
| 844 | } |
| 845 | logger.Warnw(ctx, "no handler found for Get_onu_images", log.Fields{"device-id": deviceID}) |
| 846 | return nil, fmt.Errorf(fmt.Sprintf("handler-not-found-%s", deviceID)) |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | // Activate_onu_image initiates the activation of the image for the requested ONU(s) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 850 | // precondition: image downloaded and not yet activated or image refers to current inactive image |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 851 | func (oo *OpenONUAC) Activate_onu_image(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 852 | if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" { |
| 853 | loResponse := voltha.DeviceImageResponse{} |
| 854 | imageIdentifier := (*in).Version |
| 855 | //let the deviceHandler find the adequate way of requesting the image activation |
| 856 | for _, pCommonID := range (*in).DeviceId { |
| 857 | loDeviceID := (*pCommonID).Id |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 858 | loDeviceImageState := voltha.DeviceImageState{} |
| 859 | loDeviceImageState.DeviceId = loDeviceID |
| 860 | loImageState := voltha.ImageState{} |
| 861 | loDeviceImageState.ImageState = &loImageState |
| 862 | loDeviceImageState.ImageState.Version = imageIdentifier |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 863 | //compared to download procedure the vendorID (from device) is secondary here |
| 864 | // and only needed in case the upgrade process is based on some ongoing download process (and can be retrieved in deviceHandler if needed) |
| 865 | // start image activation activity for each possible device |
| 866 | // assumption here is, that the concerned device was already created (automatic start after device creation not supported) |
| 867 | if handler := oo.getDeviceHandler(ctx, loDeviceID, false); handler != nil { |
| 868 | logger.Debugw(ctx, "onu image activation requested", log.Fields{ |
| 869 | "image-id": imageIdentifier, "device-id": loDeviceID}) |
| 870 | //onu activation handling called in background without immediate error evaluation here |
| 871 | // as the processing can be done for multiple ONU's and an error on one ONU should not stop processing for others |
| 872 | // state/progress/success of the request has to be verified using the Get_onu_image_status() API |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 873 | if pImageStates, err := handler.onuSwActivateRequest(ctx, imageIdentifier, (*in).CommitOnSuccess); err != nil { |
| 874 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_UNKNOWN |
| 875 | loDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 876 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_ACTIVATION_ABORTED |
| 877 | } else { |
| 878 | loDeviceImageState.ImageState.DownloadState = pImageStates.DownloadState |
| 879 | loDeviceImageState.ImageState.Reason = pImageStates.Reason |
| 880 | loDeviceImageState.ImageState.ImageState = pImageStates.ImageState |
| 881 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 882 | } else { |
| 883 | //cannot start SW activation for requested device |
| 884 | logger.Warnw(ctx, "no handler found for image activation", log.Fields{"device-id": loDeviceID}) |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 885 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_UNKNOWN |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 886 | loDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 887 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_ACTIVATION_ABORTED |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 888 | } |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 889 | loResponse.DeviceImageStates = append(loResponse.DeviceImageStates, &loDeviceImageState) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 890 | } |
| 891 | pImageResp := &loResponse |
| 892 | return pImageResp, nil |
| 893 | } |
| 894 | return nil, errors.New("invalid image activation parameters") |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | // Commit_onu_image enforces the commitment of the image for the requested ONU(s) |
| 898 | // precondition: image activated and not yet committed |
| 899 | func (oo *OpenONUAC) Commit_onu_image(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) { |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 900 | if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" { |
| 901 | loResponse := voltha.DeviceImageResponse{} |
| 902 | imageIdentifier := (*in).Version |
| 903 | //let the deviceHandler find the adequate way of requesting the image activation |
| 904 | for _, pCommonID := range (*in).DeviceId { |
| 905 | loDeviceID := (*pCommonID).Id |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 906 | loDeviceImageState := voltha.DeviceImageState{} |
| 907 | loDeviceImageState.DeviceId = loDeviceID |
| 908 | loImageState := voltha.ImageState{} |
| 909 | loDeviceImageState.ImageState = &loImageState |
| 910 | loDeviceImageState.ImageState.Version = imageIdentifier |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 911 | //compared to download procedure the vendorID (from device) is secondary here |
| 912 | // and only needed in case the upgrade process is based on some ongoing download process (and can be retrieved in deviceHandler if needed) |
| 913 | // start image activation activity for each possible device |
| 914 | // assumption here is, that the concerned device was already created (automatic start after device creation not supported) |
| 915 | if handler := oo.getDeviceHandler(ctx, loDeviceID, false); handler != nil { |
| 916 | logger.Debugw(ctx, "onu image commitment requested", log.Fields{ |
| 917 | "image-id": imageIdentifier, "device-id": loDeviceID}) |
| 918 | //onu commitment handling called in background without immediate error evaluation here |
| 919 | // as the processing can be done for multiple ONU's and an error on one ONU should not stop processing for others |
| 920 | // state/progress/success of the request has to be verified using the Get_onu_image_status() API |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 921 | if pImageStates, err := handler.onuSwCommitRequest(ctx, imageIdentifier); err != nil { |
| 922 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_UNKNOWN |
| 923 | loDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 924 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_COMMIT_ABORTED |
| 925 | } else { |
| 926 | loDeviceImageState.ImageState.DownloadState = pImageStates.DownloadState |
| 927 | loDeviceImageState.ImageState.Reason = pImageStates.Reason |
| 928 | loDeviceImageState.ImageState.ImageState = pImageStates.ImageState |
| 929 | } |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 930 | } else { |
| 931 | //cannot start SW commitment for requested device |
| 932 | logger.Warnw(ctx, "no handler found for image commitment", log.Fields{"device-id": loDeviceID}) |
mpagenko | 183647c | 2021-06-08 15:25:04 +0000 | [diff] [blame] | 933 | loDeviceImageState.ImageState.DownloadState = voltha.ImageState_DOWNLOAD_UNKNOWN |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 934 | loDeviceImageState.ImageState.Reason = voltha.ImageState_UNKNOWN_ERROR |
| 935 | loDeviceImageState.ImageState.ImageState = voltha.ImageState_IMAGE_COMMIT_ABORTED |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 936 | } |
mpagenko | 2f2f236 | 2021-06-07 08:25:22 +0000 | [diff] [blame] | 937 | loResponse.DeviceImageStates = append(loResponse.DeviceImageStates, &loDeviceImageState) |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 938 | } |
| 939 | pImageResp := &loResponse |
| 940 | return pImageResp, nil |
| 941 | } |
| 942 | return nil, errors.New("invalid image commitment parameters") |
mpagenko | 8314427 | 2021-04-27 10:06:22 +0000 | [diff] [blame] | 943 | } |
| 944 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 945 | // Adapter interface required methods ################ end ######### |
| 946 | // ################################################################# |