blob: 10281cf457f611bcea53299661d7016442f1c100 [file] [log] [blame]
Holger Hildebrandtfa074992020-03-27 15:42:06 +00001/*
2 * Copyright 2020-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +000017//Package adaptercoreonu provides the utility for onu devices, flows and statistics
18package adaptercoreonu
Holger Hildebrandtfa074992020-03-27 15:42:06 +000019
20import (
21 "context"
22 "errors"
23 "fmt"
24 "sync"
25 "time"
26
dbainbri4d3a0dc2020-12-02 00:33:42 +000027 conf "github.com/opencord/voltha-lib-go/v4/pkg/config"
28
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +000029 "github.com/golang/protobuf/ptypes"
dbainbri4d3a0dc2020-12-02 00:33:42 +000030 "github.com/opencord/voltha-lib-go/v4/pkg/adapters/adapterif"
31 "github.com/opencord/voltha-lib-go/v4/pkg/db/kvstore"
Himani Chawlac07fda02020-12-09 16:21:21 +053032 "github.com/opencord/voltha-lib-go/v4/pkg/events/eventif"
dbainbri4d3a0dc2020-12-02 00:33:42 +000033 "github.com/opencord/voltha-lib-go/v4/pkg/kafka"
34 "github.com/opencord/voltha-lib-go/v4/pkg/log"
mpagenkoc8bba412021-01-15 15:38:44 +000035 "github.com/opencord/voltha-protos/v4/go/extension"
dbainbri4d3a0dc2020-12-02 00:33:42 +000036 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 Hildebrandtfa074992020-03-27 15:42:06 +000040
Matteo Scandolo761f7512020-11-23 15:52:40 -080041 "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/config"
Holger Hildebrandtfa074992020-03-27 15:42:06 +000042)
43
44//OpenONUAC structure holds the ONU core information
45type OpenONUAC struct {
Himani Chawla6d2ae152020-09-02 13:11:20 +053046 deviceHandlers map[string]*deviceHandler
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +000047 deviceHandlersCreateChan map[string]chan bool //channels for deviceHandler create events
Holger Hildebrandt61b24d02020-11-16 13:36:40 +000048 lockDeviceHandlersMap sync.RWMutex
Holger Hildebrandtfa074992020-03-27 15:42:06 +000049 coreProxy adapterif.CoreProxy
50 adapterProxy adapterif.AdapterProxy
Himani Chawlac07fda02020-12-09 16:21:21 +053051 eventProxy eventif.EventProxy
Holger Hildebrandtfa074992020-03-27 15:42:06 +000052 kafkaICProxy kafka.InterContainerProxy
mpagenkoaf801632020-07-03 10:00:42 +000053 kvClient kvstore.Client
Matteo Scandolof1f39a72020-11-24 12:08:11 -080054 cm *conf.ConfigManager
Holger Hildebrandtfa074992020-03-27 15:42:06 +000055 config *config.AdapterFlags
56 numOnus int
Matteo Scandolo127c59d2021-01-28 11:31:18 -080057 KVStoreAddress string
Holger Hildebrandtfa074992020-03-27 15:42:06 +000058 KVStoreType string
mpagenkoaf801632020-07-03 10:00:42 +000059 KVStoreTimeout time.Duration
Holger Hildebrandt61b24d02020-11-16 13:36:40 +000060 mibTemplatesGenerated map[string]bool
61 lockMibTemplateGenerated sync.RWMutex
Holger Hildebrandtfa074992020-03-27 15:42:06 +000062 exitChannel chan int
63 HeartbeatCheckInterval time.Duration
64 HeartbeatFailReportInterval time.Duration
mpagenkodff5dda2020-08-28 11:52:01 +000065 AcceptIncrementalEvto bool
Holger Hildebrandtfa074992020-03-27 15:42:06 +000066 //GrpcTimeoutInterval time.Duration
Himani Chawlad96df182020-09-28 11:12:02 +053067 pSupportedFsms *OmciDeviceFsms
68 maxTimeoutInterAdapterComm time.Duration
Holger Hildebrandt38985dc2021-02-18 16:25:20 +000069 maxTimeoutReconciling time.Duration
mpagenkoc8bba412021-01-15 15:38:44 +000070 pDownloadManager *adapterDownloadManager
Girish Gowdraaf0ad632021-01-27 13:00:01 -080071 metricsEnabled bool
Holger Hildebrandte3677f12021-02-05 14:50:56 +000072 mibAuditInterval time.Duration
Girish Gowdra0b235842021-03-09 13:06:46 -080073 omciTimeout int // in seconds
Holger Hildebrandtfa074992020-03-27 15:42:06 +000074}
75
76//NewOpenONUAC returns a new instance of OpenONU_AC
77func NewOpenONUAC(ctx context.Context, kafkaICProxy kafka.InterContainerProxy,
78 coreProxy adapterif.CoreProxy, adapterProxy adapterif.AdapterProxy,
Himani Chawlac07fda02020-12-09 16:21:21 +053079 eventProxy eventif.EventProxy, kvClient kvstore.Client, cfg *config.AdapterFlags, cm *conf.ConfigManager) *OpenONUAC {
Holger Hildebrandtfa074992020-03-27 15:42:06 +000080 var openOnuAc OpenONUAC
81 openOnuAc.exitChannel = make(chan int, 1)
Himani Chawla6d2ae152020-09-02 13:11:20 +053082 openOnuAc.deviceHandlers = make(map[string]*deviceHandler)
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +000083 openOnuAc.deviceHandlersCreateChan = make(map[string]chan bool)
Holger Hildebrandt61b24d02020-11-16 13:36:40 +000084 openOnuAc.lockDeviceHandlersMap = sync.RWMutex{}
Holger Hildebrandtfa074992020-03-27 15:42:06 +000085 openOnuAc.kafkaICProxy = kafkaICProxy
86 openOnuAc.config = cfg
Matteo Scandolof1f39a72020-11-24 12:08:11 -080087 openOnuAc.cm = cm
Holger Hildebrandtfa074992020-03-27 15:42:06 +000088 openOnuAc.numOnus = cfg.OnuNumber
89 openOnuAc.coreProxy = coreProxy
90 openOnuAc.adapterProxy = adapterProxy
91 openOnuAc.eventProxy = eventProxy
mpagenkoaf801632020-07-03 10:00:42 +000092 openOnuAc.kvClient = kvClient
Matteo Scandolo127c59d2021-01-28 11:31:18 -080093 openOnuAc.KVStoreAddress = cfg.KVStoreAddress
Holger Hildebrandtfa074992020-03-27 15:42:06 +000094 openOnuAc.KVStoreType = cfg.KVStoreType
mpagenkoaf801632020-07-03 10:00:42 +000095 openOnuAc.KVStoreTimeout = cfg.KVStoreTimeout
Holger Hildebrandt61b24d02020-11-16 13:36:40 +000096 openOnuAc.mibTemplatesGenerated = make(map[string]bool)
97 openOnuAc.lockMibTemplateGenerated = sync.RWMutex{}
Holger Hildebrandtfa074992020-03-27 15:42:06 +000098 openOnuAc.HeartbeatCheckInterval = cfg.HeartbeatCheckInterval
99 openOnuAc.HeartbeatFailReportInterval = cfg.HeartbeatFailReportInterval
mpagenkodff5dda2020-08-28 11:52:01 +0000100 openOnuAc.AcceptIncrementalEvto = cfg.AccIncrEvto
Himani Chawlad96df182020-09-28 11:12:02 +0530101 openOnuAc.maxTimeoutInterAdapterComm = cfg.MaxTimeoutInterAdapterComm
Holger Hildebrandt38985dc2021-02-18 16:25:20 +0000102 openOnuAc.maxTimeoutReconciling = cfg.MaxTimeoutReconciling
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000103 //openOnuAc.GrpcTimeoutInterval = cfg.GrpcTimeoutInterval
Girish Gowdraaf0ad632021-01-27 13:00:01 -0800104 openOnuAc.metricsEnabled = cfg.MetricsEnabled
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000105 openOnuAc.mibAuditInterval = cfg.MibAuditInterval
Girish Gowdra0b235842021-03-09 13:06:46 -0800106 // since consumers of OMCI timeout value everywhere in code is in "int seconds", do this useful conversion
107 openOnuAc.omciTimeout = int(cfg.OmciTimeout.Seconds())
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000108
109 openOnuAc.pSupportedFsms = &OmciDeviceFsms{
110 "mib-synchronizer": {
111 //mibSyncFsm, // Implements the MIB synchronization state machine
Himani Chawla6d2ae152020-09-02 13:11:20 +0530112 mibDbVolatileDictImpl, // Implements volatile ME MIB database
Himani Chawla4d908332020-08-31 12:30:20 +0530113 //true, // Advertise events on OpenOMCI event bus
Holger Hildebrandte3677f12021-02-05 14:50:56 +0000114 openOnuAc.mibAuditInterval, // Time to wait between MIB audits. 0 to disable audits.
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000115 // map[string]func() error{
116 // "mib-upload": onuDeviceEntry.MibUploadTask,
117 // "mib-template": onuDeviceEntry.MibTemplateTask,
118 // "get-mds": onuDeviceEntry.GetMdsTask,
119 // "mib-audit": onuDeviceEntry.GetMdsTask,
120 // "mib-resync": onuDeviceEntry.MibResyncTask,
121 // "mib-reconcile": onuDeviceEntry.MibReconcileTask,
122 // },
123 },
124 }
125
mpagenkoc8bba412021-01-15 15:38:44 +0000126 openOnuAc.pDownloadManager = newAdapterDownloadManager(ctx)
127
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000128 return &openOnuAc
129}
130
131//Start starts (logs) the adapter
132func (oo *OpenONUAC) Start(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000133 logger.Info(ctx, "starting-openonu-adapter")
mpagenkoc8bba412021-01-15 15:38:44 +0000134
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000135 return nil
136}
137
Himani Chawla6d2ae152020-09-02 13:11:20 +0530138/*
139//stop terminates the session
140func (oo *OpenONUAC) stop(ctx context.Context) error {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000141 logger.Info(ctx,"stopping-device-manager")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000142 oo.exitChannel <- 1
dbainbri4d3a0dc2020-12-02 00:33:42 +0000143 logger.Info(ctx,"device-manager-stopped")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000144 return nil
145}
Himani Chawla6d2ae152020-09-02 13:11:20 +0530146*/
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000147
Himani Chawla6d2ae152020-09-02 13:11:20 +0530148func (oo *OpenONUAC) addDeviceHandlerToMap(ctx context.Context, agent *deviceHandler) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000149 oo.lockDeviceHandlersMap.Lock()
150 defer oo.lockDeviceHandlersMap.Unlock()
151 if _, exist := oo.deviceHandlers[agent.deviceID]; !exist {
152 oo.deviceHandlers[agent.deviceID] = agent
Himani Chawla6d2ae152020-09-02 13:11:20 +0530153 oo.deviceHandlers[agent.deviceID].start(ctx)
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000154 if _, exist := oo.deviceHandlersCreateChan[agent.deviceID]; exist {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000155 logger.Debugw(ctx, "deviceHandler created - trigger processing of pending ONU_IND_REQUEST", log.Fields{"device-id": agent.deviceID})
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000156 oo.deviceHandlersCreateChan[agent.deviceID] <- true
157 }
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000158 }
159}
160
Himani Chawla6d2ae152020-09-02 13:11:20 +0530161func (oo *OpenONUAC) deleteDeviceHandlerToMap(agent *deviceHandler) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000162 oo.lockDeviceHandlersMap.Lock()
163 defer oo.lockDeviceHandlersMap.Unlock()
164 delete(oo.deviceHandlers, agent.deviceID)
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000165 delete(oo.deviceHandlersCreateChan, agent.deviceID)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000166}
167
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000168//getDeviceHandler gets the ONU deviceHandler and may wait until it is created
dbainbri4d3a0dc2020-12-02 00:33:42 +0000169func (oo *OpenONUAC) getDeviceHandler(ctx context.Context, deviceID string, aWait bool) *deviceHandler {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000170 oo.lockDeviceHandlersMap.Lock()
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000171 agent, ok := oo.deviceHandlers[deviceID]
172 if aWait && !ok {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000173 logger.Infow(ctx, "Race condition: deviceHandler not present - wait for creation or timeout",
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000174 log.Fields{"device-id": deviceID})
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000175 if _, exist := oo.deviceHandlersCreateChan[deviceID]; !exist {
176 oo.deviceHandlersCreateChan[deviceID] = make(chan bool, 1)
177 }
Girish Gowdra7407a4d2020-11-12 12:44:53 -0800178 deviceCreateChan := oo.deviceHandlersCreateChan[deviceID]
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000179 //keep the read sema short to allow for subsequent write
180 oo.lockDeviceHandlersMap.Unlock()
181 // based on concurrent processing the deviceHandler creation may not yet be finished at his point
182 // so it might be needed to wait here for that event with some timeout
183 select {
184 case <-time.After(1 * time.Second): //timer may be discussed ...
dbainbri4d3a0dc2020-12-02 00:33:42 +0000185 logger.Warnw(ctx, "No valid deviceHandler created after max WaitTime", log.Fields{"device-id": deviceID})
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000186 return nil
Girish Gowdra7407a4d2020-11-12 12:44:53 -0800187 case <-deviceCreateChan:
dbainbri4d3a0dc2020-12-02 00:33:42 +0000188 logger.Debugw(ctx, "deviceHandler is ready now - continue", log.Fields{"device-id": deviceID})
Girish Gowdra7407a4d2020-11-12 12:44:53 -0800189 oo.lockDeviceHandlersMap.RLock()
190 defer oo.lockDeviceHandlersMap.RUnlock()
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000191 return oo.deviceHandlers[deviceID]
192 }
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000193 }
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000194 oo.lockDeviceHandlersMap.Unlock()
195 return agent
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000196}
197
dbainbri4d3a0dc2020-12-02 00:33:42 +0000198func (oo *OpenONUAC) processInterAdapterONUIndReqMessage(ctx context.Context, msg *ic.InterAdapterMessage) error {
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000199 msgBody := msg.GetBody()
200 onuIndication := &oop.OnuIndication{}
201 if err := ptypes.UnmarshalAny(msgBody, onuIndication); err != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000202 logger.Warnw(ctx, "onu-ind-request-cannot-unmarshal-msg-body", log.Fields{"error": err})
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000203 return err
204 }
205 //ToDeviceId should address a DeviceHandler instance
206 targetDevice := msg.Header.ToDeviceId
207
208 onuOperstate := onuIndication.GetOperState()
209 waitForDhInstPresent := false
210 if onuOperstate == "up" {
211 //Race condition (relevant in BBSIM-environment only): Due to unsynchronized processing of olt-adapter and rw_core,
212 //ONU_IND_REQUEST msg by olt-adapter could arrive a little bit earlier than rw_core was able to announce the corresponding
213 //ONU by RPC of Adopt_device(). Therefore it could be necessary to wait with processing of ONU_IND_REQUEST until call of
214 //Adopt_device() arrived and DeviceHandler instance was created
215 waitForDhInstPresent = true
216 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000217 if handler := oo.getDeviceHandler(ctx, targetDevice, waitForDhInstPresent); handler != nil {
218 logger.Infow(ctx, "onu-ind-request", log.Fields{"device-id": targetDevice,
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000219 "OnuId": onuIndication.GetOnuId(),
220 "AdminState": onuIndication.GetAdminState(), "OperState": onuOperstate,
221 "SNR": onuIndication.GetSerialNumber()})
222
223 if onuOperstate == "up" {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000224 return handler.createInterface(ctx, onuIndication)
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000225 } else if (onuOperstate == "down") || (onuOperstate == "unreachable") {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000226 return handler.updateInterface(ctx, onuIndication)
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000227 } else {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000228 logger.Errorw(ctx, "unknown-onu-ind-request operState", log.Fields{"OnuId": onuIndication.GetOnuId()})
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000229 return fmt.Errorf("invalidOperState: %s, %s", onuOperstate, targetDevice)
230 }
231 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000232 logger.Warnw(ctx, "no handler found for received onu-ind-request", log.Fields{
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000233 "msgToDeviceId": targetDevice})
234 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", targetDevice))
235}
236
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000237// Adapter interface required methods ############## begin #########
238// #################################################################
239
240// for original content compare: (needs according deviceHandler methods)
241// /voltha-openolt-adapter/adaptercore/openolt.go
242
243// Adopt_device creates a new device handler if not present already and then adopts the device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000244func (oo *OpenONUAC) Adopt_device(ctx context.Context, device *voltha.Device) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000245 if device == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000246 logger.Warn(ctx, "voltha-device-is-nil")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000247 return errors.New("nil-device")
248 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000249 logger.Infow(ctx, "adopt-device", log.Fields{"device-id": device.Id})
Himani Chawla6d2ae152020-09-02 13:11:20 +0530250 var handler *deviceHandler
dbainbri4d3a0dc2020-12-02 00:33:42 +0000251 if handler = oo.getDeviceHandler(ctx, device.Id, false); handler == nil {
252 handler := newDeviceHandler(ctx, oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000253 oo.addDeviceHandlerToMap(ctx, handler)
Himani Chawla6d2ae152020-09-02 13:11:20 +0530254 go handler.adoptOrReconcileDevice(ctx, device)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000255 // Launch the creation of the device topic
256 // go oo.createDeviceTopic(device)
257 }
258 return nil
259}
260
261//Get_ofp_device_info returns OFP information for the given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000262func (oo *OpenONUAC) Get_ofp_device_info(ctx context.Context, device *voltha.Device) (*ic.SwitchCapability, error) {
263 logger.Errorw(ctx, "device-handler-not-set", log.Fields{"device-id": device.Id})
Andrea Campanella6515c582020-10-05 11:25:00 +0200264 return nil, fmt.Errorf("device-handler-not-set %s", device.Id)
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000265}
266
267//Get_ofp_port_info returns OFP port information for the given device
mpagenkoaf801632020-07-03 10:00:42 +0000268//200630: method removed as per [VOL-3202]: OF port info is now to be delivered within UniPort create
269// cmp changes in onu_uni_port.go::CreateVolthaPort()
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000270
271//Process_inter_adapter_message sends messages to a target device (between adapters)
dbainbri4d3a0dc2020-12-02 00:33:42 +0000272func (oo *OpenONUAC) Process_inter_adapter_message(ctx context.Context, msg *ic.InterAdapterMessage) error {
273 logger.Debugw(ctx, "Process_inter_adapter_message", log.Fields{"msgId": msg.Header.Id,
Holger Hildebrandt80129db2020-11-23 10:49:32 +0000274 "msgProxyDeviceId": msg.Header.ProxyDeviceId, "msgToDeviceId": msg.Header.ToDeviceId, "Type": msg.Header.Type})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000275
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000276 if msg.Header.Type == ic.InterAdapterMessageType_ONU_IND_REQUEST {
277 // we have to handle ONU_IND_REQUEST already here - see comments in processInterAdapterONUIndReqMessage()
dbainbri4d3a0dc2020-12-02 00:33:42 +0000278 return oo.processInterAdapterONUIndReqMessage(ctx, msg)
Holger Hildebrandt6c1fb0a2020-11-25 15:41:01 +0000279 }
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000280 //ToDeviceId should address a DeviceHandler instance
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000281 targetDevice := msg.Header.ToDeviceId
dbainbri4d3a0dc2020-12-02 00:33:42 +0000282 if handler := oo.getDeviceHandler(ctx, targetDevice, false); handler != nil {
mpagenko1cc3cb42020-07-27 15:24:38 +0000283 /* 200724: modification towards synchronous implementation - possible errors within processing shall be
284 * in the accordingly delayed response, some timing effect might result in Techprofile processing for multiple UNI's
285 */
dbainbri4d3a0dc2020-12-02 00:33:42 +0000286 return handler.processInterAdapterMessage(ctx, msg)
mpagenko1cc3cb42020-07-27 15:24:38 +0000287 /* so far the processing has been in background with according commented error treatment restrictions:
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000288 go handler.ProcessInterAdapterMessage(msg)
289 // error treatment might be more sophisticated
290 // by now let's just accept the message on 'communication layer'
291 // message content problems have to be evaluated then in the handler
292 // and are by now not reported to the calling party (to force what reaction there?)
293 return nil
mpagenko1cc3cb42020-07-27 15:24:38 +0000294 */
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000295 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000296 logger.Warnw(ctx, "no handler found for received Inter-Proxy-message", log.Fields{
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000297 "msgToDeviceId": targetDevice})
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000298 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", targetDevice))
299}
300
301//Adapter_descriptor not implemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000302func (oo *OpenONUAC) Adapter_descriptor(ctx context.Context) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000303 return errors.New("unImplemented")
304}
305
306//Device_types unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000307func (oo *OpenONUAC) Device_types(ctx context.Context) (*voltha.DeviceTypes, error) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000308 return nil, errors.New("unImplemented")
309}
310
311//Health returns unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000312func (oo *OpenONUAC) Health(ctx context.Context) (*voltha.HealthStatus, error) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000313 return nil, errors.New("unImplemented")
314}
315
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000316//Reconcile_device is called once when the adapter needs to re-create device - usually on core restart
dbainbri4d3a0dc2020-12-02 00:33:42 +0000317func (oo *OpenONUAC) Reconcile_device(ctx context.Context, device *voltha.Device) error {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000318 if device == nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000319 logger.Warn(ctx, "reconcile-device-voltha-device-is-nil")
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000320 return errors.New("nil-device")
321 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000322 logger.Infow(ctx, "reconcile-device", log.Fields{"device-id": device.Id})
Himani Chawla6d2ae152020-09-02 13:11:20 +0530323 var handler *deviceHandler
dbainbri4d3a0dc2020-12-02 00:33:42 +0000324 if handler = oo.getDeviceHandler(ctx, device.Id, false); handler == nil {
325 handler := newDeviceHandler(ctx, oo.coreProxy, oo.adapterProxy, oo.eventProxy, device, oo)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000326 oo.addDeviceHandlerToMap(ctx, handler)
327 handler.device = device
Holger Hildebrandtbe523842021-03-10 10:47:18 +0000328 handler.startReconciling(ctx, false)
Himani Chawla6d2ae152020-09-02 13:11:20 +0530329 go handler.adoptOrReconcileDevice(ctx, handler.device)
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000330 // reconcilement will be continued after onu-device entry is added
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000331 } else {
Holger Hildebrandtf41a1602020-08-19 09:52:50 +0000332 return fmt.Errorf(fmt.Sprintf("device-already-reconciled-or-active-%s", device.Id))
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000333 }
334 return nil
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000335}
336
337//Abandon_device unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000338func (oo *OpenONUAC) Abandon_device(ctx context.Context, device *voltha.Device) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000339 return errors.New("unImplemented")
340}
341
342//Disable_device disables the given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000343func (oo *OpenONUAC) Disable_device(ctx context.Context, device *voltha.Device) error {
344 logger.Infow(ctx, "disable-device", log.Fields{"device-id": device.Id})
345 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
346 go handler.disableDevice(ctx, device)
ozgecanetsiafce57b12020-05-25 14:39:35 +0300347 return nil
348 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000349 logger.Warnw(ctx, "no handler found for device-disable", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300350 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000351}
352
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000353//Reenable_device enables the onu device after disable
dbainbri4d3a0dc2020-12-02 00:33:42 +0000354func (oo *OpenONUAC) Reenable_device(ctx context.Context, device *voltha.Device) error {
355 logger.Infow(ctx, "reenable-device", log.Fields{"device-id": device.Id})
356 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
357 go handler.reEnableDevice(ctx, device)
ozgecanetsiafce57b12020-05-25 14:39:35 +0300358 return nil
359 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000360 logger.Warnw(ctx, "no handler found for device-reenable", log.Fields{"device-id": device.Id})
ozgecanetsiafce57b12020-05-25 14:39:35 +0300361 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000362}
363
364//Reboot_device reboots the given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000365func (oo *OpenONUAC) Reboot_device(ctx context.Context, device *voltha.Device) error {
366 logger.Infow(ctx, "reboot-device", log.Fields{"device-id": device.Id})
367 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
mpagenko15ff4a52021-03-02 10:09:20 +0000368 go handler.rebootDevice(ctx, true, device) //reboot request with device checking
ozgecanetsiae11479f2020-07-06 09:44:47 +0300369 return nil
370 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000371 logger.Warnw(ctx, "no handler found for device-reboot", log.Fields{"device-id": device.Id})
ozgecanetsiae11479f2020-07-06 09:44:47 +0300372 return fmt.Errorf(fmt.Sprintf("handler-not-found-#{device.Id}"))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000373}
374
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000375//Self_test_device unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000376func (oo *OpenONUAC) Self_test_device(ctx context.Context, device *voltha.Device) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000377 return errors.New("unImplemented")
378}
379
Himani Chawla6d2ae152020-09-02 13:11:20 +0530380// Delete_device deletes the given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000381func (oo *OpenONUAC) Delete_device(ctx context.Context, device *voltha.Device) error {
382 logger.Infow(ctx, "delete-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
383 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
Girish Gowdra0e533642021-03-02 22:02:51 -0800384 var errorsList []error
385 if err := handler.deleteDevicePersistencyData(ctx); err != nil {
386 errorsList = append(errorsList, err)
387 }
Girish Gowdrae0140f02021-02-02 16:55:09 -0800388 handler.stopCollector <- true // stop the metric collector routine
Girish Gowdra0e533642021-03-02 22:02:51 -0800389 if handler.pOnuMetricsMgr != nil {
390 if err := handler.pOnuMetricsMgr.clearAllPmData(ctx); err != nil {
391 errorsList = append(errorsList, err)
392 }
393 }
Holger Hildebrandtf07b44a2020-11-10 13:07:54 +0000394 //don't leave any garbage - even in error case
395 oo.deleteDeviceHandlerToMap(handler)
Girish Gowdra0e533642021-03-02 22:02:51 -0800396 if len(errorsList) > 0 {
397 logger.Errorw(ctx, "one-or-more-error-during-device-delete", log.Fields{"device-id": device.Id})
398 return fmt.Errorf("one-or-more-error-during-device-delete, errors:%v", errorsList)
399 }
400 return nil
Holger Hildebrandt9ca8b132020-08-07 14:45:03 +0000401 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000402 logger.Warnw(ctx, "no handler found for device-deletion", log.Fields{"device-id": device.Id})
mpagenko2418ab02020-11-12 12:58:06 +0000403 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000404}
405
406//Get_device_details unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000407func (oo *OpenONUAC) Get_device_details(ctx context.Context, device *voltha.Device) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000408 return errors.New("unImplemented")
409}
410
411//Update_flows_bulk returns
dbainbri4d3a0dc2020-12-02 00:33:42 +0000412func (oo *OpenONUAC) Update_flows_bulk(ctx context.Context, device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000413 return errors.New("unImplemented")
414}
415
416//Update_flows_incrementally updates (add/remove) the flows on a given device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000417func (oo *OpenONUAC) Update_flows_incrementally(ctx context.Context, device *voltha.Device,
mpagenkodff5dda2020-08-28 11:52:01 +0000418 flows *openflow_13.FlowChanges, groups *openflow_13.FlowGroupChanges, flowMetadata *voltha.FlowMetadata) error {
mpagenkofc4f56e2020-11-04 17:17:49 +0000419
dbainbri4d3a0dc2020-12-02 00:33:42 +0000420 logger.Infow(ctx, "update-flows-incrementally", log.Fields{"device-id": device.Id})
mpagenkofc4f56e2020-11-04 17:17:49 +0000421 //flow config is relayed to handler even if the device might be in some 'inactive' state
422 // let the handler or related FSM's decide, what to do with the modified flow state info
423 // at least the flow-remove must be done in respect to internal data, while OMCI activity might not be needed here
mpagenkodff5dda2020-08-28 11:52:01 +0000424
425 // For now, there is no support for group changes (as in the actual Py-adapter code)
mpagenkofc4f56e2020-11-04 17:17:49 +0000426 // but processing is continued for flowUpdate possibly also set in the request
mpagenkodff5dda2020-08-28 11:52:01 +0000427 if groups.ToAdd != nil && groups.ToAdd.Items != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000428 logger.Warnw(ctx, "Update-flow-incr: group add not supported (ignored)", log.Fields{"device-id": device.Id})
mpagenkodff5dda2020-08-28 11:52:01 +0000429 }
430 if groups.ToRemove != nil && groups.ToRemove.Items != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000431 logger.Warnw(ctx, "Update-flow-incr: group remove not supported (ignored)", log.Fields{"device-id": device.Id})
mpagenkodff5dda2020-08-28 11:52:01 +0000432 }
433 if groups.ToUpdate != nil && groups.ToUpdate.Items != nil {
dbainbri4d3a0dc2020-12-02 00:33:42 +0000434 logger.Warnw(ctx, "Update-flow-incr: group update not supported (ignored)", log.Fields{"device-id": device.Id})
mpagenkodff5dda2020-08-28 11:52:01 +0000435 }
436
dbainbri4d3a0dc2020-12-02 00:33:42 +0000437 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
438 err := handler.FlowUpdateIncremental(ctx, flows, groups, flowMetadata)
mpagenkodff5dda2020-08-28 11:52:01 +0000439 return err
440 }
dbainbri4d3a0dc2020-12-02 00:33:42 +0000441 logger.Warnw(ctx, "no handler found for incremental flow update", log.Fields{"device-id": device.Id})
mpagenkodff5dda2020-08-28 11:52:01 +0000442 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000443}
444
445//Update_pm_config returns PmConfigs nil or error
dbainbri4d3a0dc2020-12-02 00:33:42 +0000446func (oo *OpenONUAC) Update_pm_config(ctx context.Context, device *voltha.Device, pmConfigs *voltha.PmConfigs) error {
Girish Gowdrae09a6202021-01-12 18:10:59 -0800447 logger.Infow(ctx, "update-pm-config", log.Fields{"device-id": device.Id})
448 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800449 return handler.updatePmConfig(ctx, pmConfigs)
Girish Gowdrae09a6202021-01-12 18:10:59 -0800450 }
Girish Gowdra5a7c4922021-01-22 18:33:41 -0800451 logger.Warnw(ctx, "no handler found for update-pm-config", log.Fields{"device-id": device.Id})
452 return fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000453}
454
455//Receive_packet_out sends packet out to the device
dbainbri4d3a0dc2020-12-02 00:33:42 +0000456func (oo *OpenONUAC) Receive_packet_out(ctx context.Context, deviceID string, egressPortNo int, packet *openflow_13.OfpPacketOut) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000457 return errors.New("unImplemented")
458}
459
460//Suppress_event unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000461func (oo *OpenONUAC) Suppress_event(ctx context.Context, filter *voltha.EventFilter) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000462 return errors.New("unImplemented")
463}
464
465//Unsuppress_event unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000466func (oo *OpenONUAC) Unsuppress_event(ctx context.Context, filter *voltha.EventFilter) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000467 return errors.New("unImplemented")
468}
469
Andrea Campanella71e546a2021-02-26 11:09:33 +0100470//Download_image requests downloading some image according to indications as given in request
471//The ImageDownload needs to be called `request`due to library reflection requirements
472func (oo *OpenONUAC) Download_image(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
mpagenko15ff4a52021-03-02 10:09:20 +0000473 if request != nil && (*request).Name != "" {
474 if !oo.pDownloadManager.imageExists(ctx, request) {
475 logger.Debugw(ctx, "start image download", log.Fields{"image-description": request})
476 // Download_image is not supposed to be blocking, anyway let's call the DownloadManager still synchronously to detect 'fast' problems
477 // the download itself is later done in background
478 err := oo.pDownloadManager.startDownload(ctx, request)
479 return request, err
480 }
481 // image already exists
482 logger.Debugw(ctx, "image already downloaded", log.Fields{"image-description": request})
483 return request, nil
mpagenkoc8bba412021-01-15 15:38:44 +0000484 }
mpagenko15ff4a52021-03-02 10:09:20 +0000485 return request, errors.New("invalid image definition")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000486}
487
488//Get_image_download_status unimplemented
Andrea Campanella71e546a2021-02-26 11:09:33 +0100489//The ImageDownload needs to be called `request`due to library reflection requirements
dbainbri4d3a0dc2020-12-02 00:33:42 +0000490func (oo *OpenONUAC) Get_image_download_status(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000491 return nil, errors.New("unImplemented")
492}
493
494//Cancel_image_download unimplemented
Andrea Campanella71e546a2021-02-26 11:09:33 +0100495//The ImageDownload needs to be called `request`due to library reflection requirements
dbainbri4d3a0dc2020-12-02 00:33:42 +0000496func (oo *OpenONUAC) Cancel_image_download(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000497 return nil, errors.New("unImplemented")
498}
499
mpagenko057889c2021-01-21 16:51:58 +0000500//Activate_image_update requests downloading some Onu Software image to the INU via OMCI
Andrea Campanella71e546a2021-02-26 11:09:33 +0100501// according to indications as given in request and on success activate the image on the ONU
502//The ImageDownload needs to be called `request`due to library reflection requirements
503func (oo *OpenONUAC) Activate_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
mpagenko15ff4a52021-03-02 10:09:20 +0000504 if request != nil && (*request).Name != "" {
505 if oo.pDownloadManager.imageLocallyDownloaded(ctx, request) {
506 if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
507 logger.Debugw(ctx, "image download on omci requested", log.Fields{
508 "image-description": request, "device-id": device.Id})
509 err := handler.doOnuSwUpgrade(ctx, request, oo.pDownloadManager)
510 return request, err
511 }
512 logger.Warnw(ctx, "no handler found for image activation", log.Fields{"device-id": device.Id})
513 return request, fmt.Errorf(fmt.Sprintf("handler-not-found - device-id: %s", device.Id))
mpagenko057889c2021-01-21 16:51:58 +0000514 }
mpagenko15ff4a52021-03-02 10:09:20 +0000515 logger.Debugw(ctx, "image not yet downloaded on activate request", log.Fields{"image-description": request})
516 return request, fmt.Errorf(fmt.Sprintf("image-not-yet-downloaded - device-id: %s", device.Id))
mpagenkoc8bba412021-01-15 15:38:44 +0000517 }
mpagenko15ff4a52021-03-02 10:09:20 +0000518 return request, errors.New("invalid image definition")
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000519}
520
521//Revert_image_update unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000522func (oo *OpenONUAC) Revert_image_update(ctx context.Context, device *voltha.Device, request *voltha.ImageDownload) (*voltha.ImageDownload, error) {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000523 return nil, errors.New("unImplemented")
524}
525
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000526// Enable_port to Enable PON/NNI interface - seems not to be used/required according to python code
dbainbri4d3a0dc2020-12-02 00:33:42 +0000527func (oo *OpenONUAC) Enable_port(ctx context.Context, deviceID string, port *voltha.Port) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000528 return errors.New("unImplemented")
529}
530
Holger Hildebrandtccd390c2020-05-29 13:49:04 +0000531// Disable_port to Disable pon/nni interface - seems not to be used/required according to python code
dbainbri4d3a0dc2020-12-02 00:33:42 +0000532func (oo *OpenONUAC) Disable_port(ctx context.Context, deviceID string, port *voltha.Port) error {
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000533 return errors.New("unImplemented")
534}
535
Himani Chawla6d2ae152020-09-02 13:11:20 +0530536//Child_device_lost - unimplemented
Holger Hildebrandt0f9b88d2020-04-20 13:33:25 +0000537//needed for if update >= 3.1.x
dbainbri4d3a0dc2020-12-02 00:33:42 +0000538func (oo *OpenONUAC) Child_device_lost(ctx context.Context, deviceID string, pPortNo uint32, onuID uint32) error {
Matteo Scandolo2e6f1e32020-04-15 11:28:45 -0700539 return errors.New("unImplemented")
540}
541
Himani Chawla6d2ae152020-09-02 13:11:20 +0530542// Start_omci_test unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000543func (oo *OpenONUAC) Start_omci_test(ctx context.Context, device *voltha.Device, request *voltha.OmciTestRequest) (*voltha.TestResponse, error) {
Matteo Scandolo2e6f1e32020-04-15 11:28:45 -0700544 return nil, errors.New("unImplemented")
545}
546
Himani Chawla6d2ae152020-09-02 13:11:20 +0530547// Get_ext_value - unimplemented
dbainbri4d3a0dc2020-12-02 00:33:42 +0000548func (oo *OpenONUAC) Get_ext_value(ctx context.Context, deviceID string, device *voltha.Device, valueparam voltha.ValueType_Type) (*voltha.ReturnValues, error) {
Matteo Scandolod132c0e2020-04-24 17:06:25 -0700549 return nil, errors.New("unImplemented")
550}
551
kesavandfdf77632021-01-26 23:40:33 -0500552//Single_get_value_request handles the core request to retrieve uni status
mpagenkoc8bba412021-01-15 15:38:44 +0000553func (oo *OpenONUAC) Single_get_value_request(ctx context.Context, request extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) {
kesavandfdf77632021-01-26 23:40:33 -0500554 logger.Infow(ctx, "Single_get_value_request", log.Fields{"request": request})
555
556 if handler := oo.getDeviceHandler(ctx, request.TargetId, false); handler != nil {
557 switch reqType := request.GetRequest().GetRequest().(type) {
558 case *extension.GetValueRequest_UniInfo:
559 return handler.getUniPortStatus(ctx, reqType.UniInfo), nil
560 default:
561 return postUniStatusErrResponse(extension.GetValueResponse_UNSUPPORTED), nil
562
563 }
564 }
565 logger.Errorw(ctx, "Single_get_value_request failed ", log.Fields{"request": request})
566 return postUniStatusErrResponse(extension.GetValueResponse_INVALID_DEVICE_ID), nil
mpagenkoc8bba412021-01-15 15:38:44 +0000567}
568
Holger Hildebrandtfa074992020-03-27 15:42:06 +0000569// Adapter interface required methods ################ end #########
570// #################################################################