blob: 4053b46bfbf96427a19b58f3005ff94454270d2a [file] [log] [blame]
khenaidoob9203542018-09-17 22:56:37 -04001/*
2 * Copyright 2018-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 */
npujar1d86a522019-11-14 17:11:16 +053016
khenaidoob9203542018-09-17 22:56:37 -040017package core
18
19import (
20 "context"
Matteo Scandolo360605d2019-11-05 18:29:17 -080021 "encoding/hex"
khenaidoo3ab34882019-05-02 21:33:30 -040022 "fmt"
Chaitrashree G Sa773e992019-09-09 21:04:15 -040023 "reflect"
24 "sync"
25 "time"
26
khenaidoob9203542018-09-17 22:56:37 -040027 "github.com/gogo/protobuf/proto"
sbarbari17d7e222019-11-05 10:02:29 -050028 "github.com/opencord/voltha-go/db/model"
Scott Bakerb671a862019-10-24 10:53:40 -070029 coreutils "github.com/opencord/voltha-go/rw_core/utils"
serkant.uluderya2ae470f2020-01-21 11:13:09 -080030 fu "github.com/opencord/voltha-lib-go/v3/pkg/flows"
31 "github.com/opencord/voltha-lib-go/v3/pkg/log"
32 ic "github.com/opencord/voltha-protos/v3/go/inter_container"
33 ofp "github.com/opencord/voltha-protos/v3/go/openflow_13"
34 "github.com/opencord/voltha-protos/v3/go/voltha"
khenaidoob9203542018-09-17 22:56:37 -040035 "google.golang.org/grpc/codes"
36 "google.golang.org/grpc/status"
khenaidoob9203542018-09-17 22:56:37 -040037)
38
npujar1d86a522019-11-14 17:11:16 +053039// DeviceAgent represents device agent attributes
khenaidoob9203542018-09-17 22:56:37 -040040type DeviceAgent struct {
npujar1d86a522019-11-14 17:11:16 +053041 deviceID string
42 parentID string
khenaidoo43c82122018-11-22 18:38:28 -050043 deviceType string
khenaidoo2c6a0992019-04-29 13:46:56 -040044 isRootdevice bool
khenaidoo9a468962018-09-19 15:33:13 -040045 adapterProxy *AdapterProxy
serkant.uluderya334479d2019-04-10 08:26:15 -070046 adapterMgr *AdapterManager
khenaidoo9a468962018-09-19 15:33:13 -040047 deviceMgr *DeviceManager
48 clusterDataProxy *model.Proxy
khenaidoo92e62c52018-10-03 14:02:54 -040049 deviceProxy *model.Proxy
khenaidoo9a468962018-09-19 15:33:13 -040050 exitChannel chan int
khenaidoo92e62c52018-10-03 14:02:54 -040051 lockDevice sync.RWMutex
khenaidoo6e55d9e2019-12-12 18:26:26 -050052 device *voltha.Device
khenaidoo2c6a0992019-04-29 13:46:56 -040053 defaultTimeout int64
khenaidoob9203542018-09-17 22:56:37 -040054}
55
Scott Baker80678602019-11-14 16:57:36 -080056//newDeviceAgent creates a new device agent. The device will be initialized when start() is called.
khenaidoo2c6a0992019-04-29 13:46:56 -040057func newDeviceAgent(ap *AdapterProxy, device *voltha.Device, deviceMgr *DeviceManager, cdProxy *model.Proxy, timeout int64) *DeviceAgent {
khenaidoob9203542018-09-17 22:56:37 -040058 var agent DeviceAgent
khenaidoob9203542018-09-17 22:56:37 -040059 agent.adapterProxy = ap
Scott Baker80678602019-11-14 16:57:36 -080060 if device.Id == "" {
npujar1d86a522019-11-14 17:11:16 +053061 agent.deviceID = CreateDeviceID()
Scott Baker80678602019-11-14 16:57:36 -080062 } else {
npujar1d86a522019-11-14 17:11:16 +053063 agent.deviceID = device.Id
Stephane Barbarie1ab43272018-12-08 21:42:13 -050064 }
Scott Baker80678602019-11-14 16:57:36 -080065
khenaidoo2c6a0992019-04-29 13:46:56 -040066 agent.isRootdevice = device.Root
npujar1d86a522019-11-14 17:11:16 +053067 agent.parentID = device.ParentId
Scott Baker80678602019-11-14 16:57:36 -080068 agent.deviceType = device.Type
khenaidoob9203542018-09-17 22:56:37 -040069 agent.deviceMgr = deviceMgr
khenaidoo21d51152019-02-01 13:48:37 -050070 agent.adapterMgr = deviceMgr.adapterMgr
khenaidoob9203542018-09-17 22:56:37 -040071 agent.exitChannel = make(chan int, 1)
khenaidoo9a468962018-09-19 15:33:13 -040072 agent.clusterDataProxy = cdProxy
khenaidoo92e62c52018-10-03 14:02:54 -040073 agent.lockDevice = sync.RWMutex{}
khenaidoo2c6a0992019-04-29 13:46:56 -040074 agent.defaultTimeout = timeout
khenaidoo6e55d9e2019-12-12 18:26:26 -050075 agent.device = proto.Clone(device).(*voltha.Device)
khenaidoob9203542018-09-17 22:56:37 -040076 return &agent
77}
78
Scott Baker80678602019-11-14 16:57:36 -080079// start()
80// save the device to the data model and registers for callbacks on that device if deviceToCreate!=nil. Otherwise,
npujar1d86a522019-11-14 17:11:16 +053081// it will load the data from the dB and setup the necessary callbacks and proxies. Returns the device that
Scott Baker80678602019-11-14 16:57:36 -080082// was started.
83func (agent *DeviceAgent) start(ctx context.Context, deviceToCreate *voltha.Device) (*voltha.Device, error) {
84 var device *voltha.Device
85
khenaidoo92e62c52018-10-03 14:02:54 -040086 agent.lockDevice.Lock()
87 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +053088 log.Debugw("starting-device-agent", log.Fields{"deviceId": agent.deviceID})
Scott Baker80678602019-11-14 16:57:36 -080089 if deviceToCreate == nil {
90 // Load the existing device
Thomas Lee Se5a44012019-11-07 20:32:24 +053091 loadedDevice, err := agent.clusterDataProxy.Get(ctx, "/devices/"+agent.deviceID, 1, true, "")
92 if err != nil {
93 log.Errorw("failed-to-get-from-cluster-data-proxy", log.Fields{"error": err})
94 return nil, err
95 }
96 if loadedDevice != nil {
Scott Baker80678602019-11-14 16:57:36 -080097 var ok bool
98 if device, ok = loadedDevice.(*voltha.Device); ok {
99 agent.deviceType = device.Adapter
khenaidoo6e55d9e2019-12-12 18:26:26 -0500100 agent.device = proto.Clone(device).(*voltha.Device)
Scott Baker80678602019-11-14 16:57:36 -0800101 } else {
npujar1d86a522019-11-14 17:11:16 +0530102 log.Errorw("failed-to-convert-device", log.Fields{"deviceId": agent.deviceID})
103 return nil, status.Errorf(codes.NotFound, "device-%s", agent.deviceID)
khenaidoo297cd252019-02-07 22:10:23 -0500104 }
105 } else {
npujar1d86a522019-11-14 17:11:16 +0530106 log.Errorw("failed-to-load-device", log.Fields{"deviceId": agent.deviceID})
107 return nil, status.Errorf(codes.NotFound, "device-%s", agent.deviceID)
khenaidoo297cd252019-02-07 22:10:23 -0500108 }
npujar1d86a522019-11-14 17:11:16 +0530109 log.Debugw("device-loaded-from-dB", log.Fields{"deviceId": agent.deviceID})
khenaidoo297cd252019-02-07 22:10:23 -0500110 } else {
Scott Baker80678602019-11-14 16:57:36 -0800111 // Create a new device
112 // Assumption is that AdminState, FlowGroups, and Flows are unitialized since this
113 // is a new device, so populate them here before passing the device to clusterDataProxy.AddWithId.
114 // agent.deviceId will also have been set during newDeviceAgent().
115 device = (proto.Clone(deviceToCreate)).(*voltha.Device)
npujar1d86a522019-11-14 17:11:16 +0530116 device.Id = agent.deviceID
Scott Baker80678602019-11-14 16:57:36 -0800117 device.AdminState = voltha.AdminState_PREPROVISIONED
118 device.FlowGroups = &ofp.FlowGroups{Items: nil}
119 device.Flows = &ofp.Flows{Items: nil}
120 if !deviceToCreate.GetRoot() && deviceToCreate.ProxyAddress != nil {
121 // Set the default vlan ID to the one specified by the parent adapter. It can be
122 // overwritten by the child adapter during a device update request
123 device.Vlan = deviceToCreate.ProxyAddress.ChannelId
124 }
125
khenaidoo297cd252019-02-07 22:10:23 -0500126 // Add the initial device to the local model
Thomas Lee Se5a44012019-11-07 20:32:24 +0530127 added, err := agent.clusterDataProxy.AddWithID(ctx, "/devices", agent.deviceID, device, "")
128 if err != nil {
129 log.Errorw("failed-to-save-devices-to-cluster-proxy", log.Fields{"error": err})
130 return nil, err
131 }
132 if added == nil {
npujar1d86a522019-11-14 17:11:16 +0530133 log.Errorw("failed-to-add-device", log.Fields{"deviceId": agent.deviceID})
134 return nil, status.Errorf(codes.Aborted, "failed-adding-device-%s", agent.deviceID)
khenaidoo297cd252019-02-07 22:10:23 -0500135 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500136 agent.device = proto.Clone(device).(*voltha.Device)
khenaidoob9203542018-09-17 22:56:37 -0400137 }
Thomas Lee Se5a44012019-11-07 20:32:24 +0530138 var err error
139 if agent.deviceProxy, err = agent.clusterDataProxy.CreateProxy(ctx, "/devices/"+agent.deviceID, false); err != nil {
140 log.Errorw("failed-to-add-devices-to-cluster-proxy", log.Fields{"error": err})
141 return nil, err
142 }
npujar9a30c702019-11-14 17:06:39 +0530143 agent.deviceProxy.RegisterCallback(model.PostUpdate, agent.processUpdate)
khenaidoo19d7b632018-10-30 10:49:50 -0400144
npujar1d86a522019-11-14 17:11:16 +0530145 log.Debugw("device-agent-started", log.Fields{"deviceId": agent.deviceID})
Scott Baker80678602019-11-14 16:57:36 -0800146 return device, nil
khenaidoob9203542018-09-17 22:56:37 -0400147}
148
khenaidoo4d4802d2018-10-04 21:59:49 -0400149// stop stops the device agent. Not much to do for now
150func (agent *DeviceAgent) stop(ctx context.Context) {
khenaidoo92e62c52018-10-03 14:02:54 -0400151 agent.lockDevice.Lock()
152 defer agent.lockDevice.Unlock()
khenaidoo49085352020-01-13 19:15:43 -0500153
154 log.Debugw("stopping-device-agent", log.Fields{"deviceId": agent.deviceID, "parentId": agent.parentID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500155
156 // First unregister any callbacks
npujar9a30c702019-11-14 17:06:39 +0530157 agent.deviceProxy.UnregisterCallback(model.PostUpdate, agent.processUpdate)
khenaidoo6e55d9e2019-12-12 18:26:26 -0500158
khenaidoo0a822f92019-05-08 15:15:57 -0400159 // Remove the device from the KV store
Thomas Lee Se5a44012019-11-07 20:32:24 +0530160 removed, err := agent.clusterDataProxy.Remove(ctx, "/devices/"+agent.deviceID, "")
161 if err != nil {
162 log.Errorw("Failed-to-remove-device-from-cluster-data-proxy", log.Fields{"error": err})
163 return
164 }
165 if removed == nil {
npujar1d86a522019-11-14 17:11:16 +0530166 log.Debugw("device-already-removed", log.Fields{"id": agent.deviceID})
khenaidoo0a822f92019-05-08 15:15:57 -0400167 }
khenaidoob9203542018-09-17 22:56:37 -0400168 agent.exitChannel <- 1
khenaidoo49085352020-01-13 19:15:43 -0500169 log.Debugw("device-agent-stopped", log.Fields{"deviceId": agent.deviceID, "parentId": agent.parentID})
khenaidoob9203542018-09-17 22:56:37 -0400170}
171
Scott Baker80678602019-11-14 16:57:36 -0800172// Load the most recent state from the KVStore for the device.
173func (agent *DeviceAgent) reconcileWithKVStore() {
174 agent.lockDevice.Lock()
175 defer agent.lockDevice.Unlock()
176 log.Debug("reconciling-device-agent-devicetype")
177 // TODO: context timeout
Thomas Lee Se5a44012019-11-07 20:32:24 +0530178 device, err := agent.clusterDataProxy.Get(context.Background(), "/devices/"+agent.deviceID, 1, true, "")
179 if err != nil {
180 log.Errorw("Failed to get device info from cluster data proxy", log.Fields{"error": err})
181 return
182 }
183 if device != nil {
Scott Baker80678602019-11-14 16:57:36 -0800184 if d, ok := device.(*voltha.Device); ok {
185 agent.deviceType = d.Adapter
khenaidoo6e55d9e2019-12-12 18:26:26 -0500186 agent.device = proto.Clone(d).(*voltha.Device)
npujar1d86a522019-11-14 17:11:16 +0530187 log.Debugw("reconciled-device-agent-devicetype", log.Fields{"Id": agent.deviceID, "type": agent.deviceType})
Scott Baker80678602019-11-14 16:57:36 -0800188 }
189 }
190}
191
khenaidoo6e55d9e2019-12-12 18:26:26 -0500192// getDevice returns the device data from cache
193func (agent *DeviceAgent) getDevice() *voltha.Device {
khenaidoo1ce37ad2019-03-24 22:07:24 -0400194 agent.lockDevice.RLock()
195 defer agent.lockDevice.RUnlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -0500196 return proto.Clone(agent.device).(*voltha.Device)
khenaidoo92e62c52018-10-03 14:02:54 -0400197}
198
khenaidoo4d4802d2018-10-04 21:59:49 -0400199// getDeviceWithoutLock is a helper function to be used ONLY by any device agent function AFTER it has acquired the device lock.
khenaidoo6e55d9e2019-12-12 18:26:26 -0500200func (agent *DeviceAgent) getDeviceWithoutLock() *voltha.Device {
201 return proto.Clone(agent.device).(*voltha.Device)
khenaidoo92e62c52018-10-03 14:02:54 -0400202}
203
khenaidoo3ab34882019-05-02 21:33:30 -0400204// enableDevice activates a preprovisioned or a disable device
khenaidoob9203542018-09-17 22:56:37 -0400205func (agent *DeviceAgent) enableDevice(ctx context.Context) error {
khenaidoo92e62c52018-10-03 14:02:54 -0400206 agent.lockDevice.Lock()
207 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530208 log.Debugw("enableDevice", log.Fields{"id": agent.deviceID})
khenaidoo21d51152019-02-01 13:48:37 -0500209
khenaidoo6e55d9e2019-12-12 18:26:26 -0500210 cloned := agent.getDeviceWithoutLock()
211
npujar1d86a522019-11-14 17:11:16 +0530212 // First figure out which adapter will handle this device type. We do it at this stage as allow devices to be
213 // pre-provisionned with the required adapter not registered. At this stage, since we need to communicate
214 // with the adapter then we need to know the adapter that will handle this request
khenaidoo6e55d9e2019-12-12 18:26:26 -0500215 adapterName, err := agent.adapterMgr.getAdapterName(cloned.Type)
npujar1d86a522019-11-14 17:11:16 +0530216 if err != nil {
khenaidoo6e55d9e2019-12-12 18:26:26 -0500217 log.Warnw("no-adapter-registered-for-device-type", log.Fields{"deviceType": cloned.Type, "deviceAdapter": cloned.Adapter})
npujar1d86a522019-11-14 17:11:16 +0530218 return err
219 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500220 cloned.Adapter = adapterName
npujar1d86a522019-11-14 17:11:16 +0530221
khenaidoo6e55d9e2019-12-12 18:26:26 -0500222 if cloned.AdminState == voltha.AdminState_ENABLED {
npujar1d86a522019-11-14 17:11:16 +0530223 log.Debugw("device-already-enabled", log.Fields{"id": agent.deviceID})
224 return nil
225 }
226
khenaidoo6e55d9e2019-12-12 18:26:26 -0500227 if cloned.AdminState == voltha.AdminState_DELETED {
npujar1d86a522019-11-14 17:11:16 +0530228 // This is a temporary state when a device is deleted before it gets removed from the model.
khenaidoo6e55d9e2019-12-12 18:26:26 -0500229 err = status.Error(codes.FailedPrecondition, fmt.Sprintf("cannot-enable-a-deleted-device: %s ", cloned.Id))
230 log.Warnw("invalid-state", log.Fields{"id": agent.deviceID, "state": cloned.AdminState, "error": err})
npujar1d86a522019-11-14 17:11:16 +0530231 return err
232 }
233
khenaidoo6e55d9e2019-12-12 18:26:26 -0500234 previousAdminState := cloned.AdminState
npujar1d86a522019-11-14 17:11:16 +0530235
236 // Update the Admin State and set the operational state to activating before sending the request to the
237 // Adapters
npujar1d86a522019-11-14 17:11:16 +0530238 cloned.AdminState = voltha.AdminState_ENABLED
239 cloned.OperStatus = voltha.OperStatus_ACTIVATING
240
241 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
242 return err
243 }
244
245 // Adopt the device if it was in preprovision state. In all other cases, try to reenable it.
khenaidoo6e55d9e2019-12-12 18:26:26 -0500246 device := proto.Clone(cloned).(*voltha.Device)
npujar1d86a522019-11-14 17:11:16 +0530247 if previousAdminState == voltha.AdminState_PREPROVISIONED {
248 if err := agent.adapterProxy.AdoptDevice(ctx, device); err != nil {
249 log.Debugw("adoptDevice-error", log.Fields{"id": agent.deviceID, "error": err})
250 return err
251 }
khenaidoob9203542018-09-17 22:56:37 -0400252 } else {
npujar1d86a522019-11-14 17:11:16 +0530253 if err := agent.adapterProxy.ReEnableDevice(ctx, device); err != nil {
254 log.Debugw("renableDevice-error", log.Fields{"id": agent.deviceID, "error": err})
khenaidoo21d51152019-02-01 13:48:37 -0500255 return err
khenaidoob9203542018-09-17 22:56:37 -0400256 }
257 }
258 return nil
259}
260
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500261func (agent *DeviceAgent) sendBulkFlowsToAdapters(device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata, response coreutils.Response) {
Manikkaraj kb1a10922019-07-29 12:10:34 -0400262 if err := agent.adapterProxy.UpdateFlowsBulk(device, flows, groups, flowMetadata); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530263 log.Debugw("update-flow-bulk-error", log.Fields{"id": agent.deviceID, "error": err})
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500264 response.Error(err)
khenaidoo2c6a0992019-04-29 13:46:56 -0400265 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500266 response.Done()
khenaidoo2c6a0992019-04-29 13:46:56 -0400267}
268
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500269func (agent *DeviceAgent) sendIncrementalFlowsToAdapters(device *voltha.Device, flows *ofp.FlowChanges, groups *ofp.FlowGroupChanges, flowMetadata *voltha.FlowMetadata, response coreutils.Response) {
Manikkaraj kb1a10922019-07-29 12:10:34 -0400270 if err := agent.adapterProxy.UpdateFlowsIncremental(device, flows, groups, flowMetadata); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530271 log.Debugw("update-flow-incremental-error", log.Fields{"id": agent.deviceID, "error": err})
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500272 response.Error(err)
khenaidoo2c6a0992019-04-29 13:46:56 -0400273 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500274 response.Done()
khenaidoo2c6a0992019-04-29 13:46:56 -0400275}
276
khenaidoob2121e52019-12-16 17:17:22 -0500277//deleteFlowWithoutPreservingOrder removes a flow specified by index from the flows slice. This function will
278//panic if the index is out of range.
279func deleteFlowWithoutPreservingOrder(flows []*ofp.OfpFlowStats, index int) []*ofp.OfpFlowStats {
280 flows[index] = flows[len(flows)-1]
281 flows[len(flows)-1] = nil
282 return flows[:len(flows)-1]
283}
284
285//deleteGroupWithoutPreservingOrder removes a group specified by index from the groups slice. This function will
286//panic if the index is out of range.
287func deleteGroupWithoutPreservingOrder(groups []*ofp.OfpGroupEntry, index int) []*ofp.OfpGroupEntry {
288 groups[index] = groups[len(groups)-1]
289 groups[len(groups)-1] = nil
290 return groups[:len(groups)-1]
291}
292
293func flowsToUpdateToDelete(newFlows, existingFlows []*ofp.OfpFlowStats) (updatedNewFlows, flowsToDelete, updatedAllFlows []*ofp.OfpFlowStats) {
294 // Process flows
295 for _, flow := range existingFlows {
296 if idx := fu.FindFlows(newFlows, flow); idx == -1 {
297 updatedAllFlows = append(updatedAllFlows, flow)
298 } else {
299 // We have a matching flow (i.e. the following field matches: "TableId", "Priority", "Flags", "Cookie",
300 // "Match". If this is an exact match (i.e. all other fields matches as well) then this flow will be
301 // ignored. Otherwise, the previous flow will be deleted and the new one added
302 if proto.Equal(newFlows[idx], flow) {
303 // Flow already exist, remove it from the new flows but keep it in the updated flows slice
304 newFlows = deleteFlowWithoutPreservingOrder(newFlows, idx)
305 updatedAllFlows = append(updatedAllFlows, flow)
306 } else {
307 // Minor change to flow, delete old and add new one
308 flowsToDelete = append(flowsToDelete, flow)
309 }
310 }
311 }
312 updatedAllFlows = append(updatedAllFlows, newFlows...)
313 return newFlows, flowsToDelete, updatedAllFlows
314}
315
316func groupsToUpdateToDelete(newGroups, existingGroups []*ofp.OfpGroupEntry) (updatedNewGroups, groupsToDelete, updatedAllGroups []*ofp.OfpGroupEntry) {
317 for _, group := range existingGroups {
318 if idx := fu.FindGroup(newGroups, group.Desc.GroupId); idx == -1 { // does not exist now
319 updatedAllGroups = append(updatedAllGroups, group)
320 } else {
321 // Follow same logic as flows
322 if proto.Equal(newGroups[idx], group) {
323 // Group already exist, remove it from the new groups
324 newGroups = deleteGroupWithoutPreservingOrder(newGroups, idx)
325 updatedAllGroups = append(updatedAllGroups, group)
326 } else {
327 // Minor change to group, delete old and add new one
328 groupsToDelete = append(groupsToDelete, group)
329 }
330 }
331 }
332 updatedAllGroups = append(updatedAllGroups, newGroups...)
333 return newGroups, groupsToDelete, updatedAllGroups
334}
335
A R Karthick5c28f552019-12-11 22:47:44 -0800336func (agent *DeviceAgent) addFlowsAndGroupsToAdapter(newFlows []*ofp.OfpFlowStats, newGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) (coreutils.Response, error) {
npujar1d86a522019-11-14 17:11:16 +0530337 log.Debugw("addFlowsAndGroups", log.Fields{"deviceId": agent.deviceID, "flows": newFlows, "groups": newGroups, "flowMetadata": flowMetadata})
khenaidoo0458db62019-06-20 08:50:36 -0400338
khenaidoo2c6a0992019-04-29 13:46:56 -0400339 if (len(newFlows) | len(newGroups)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530340 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": newFlows, "groups": newGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800341 return coreutils.DoneResponse(), nil
khenaidoo2c6a0992019-04-29 13:46:56 -0400342 }
343
khenaidoo19d7b632018-10-30 10:49:50 -0400344 agent.lockDevice.Lock()
345 defer agent.lockDevice.Unlock()
khenaidoo2c6a0992019-04-29 13:46:56 -0400346
khenaidoo6e55d9e2019-12-12 18:26:26 -0500347 device := agent.getDeviceWithoutLock()
khenaidoo0458db62019-06-20 08:50:36 -0400348 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
349 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
350
khenaidoo0458db62019-06-20 08:50:36 -0400351 // Process flows
khenaidoob2121e52019-12-16 17:17:22 -0500352 newFlows, flowsToDelete, updatedAllFlows := flowsToUpdateToDelete(newFlows, existingFlows.Items)
khenaidoo0458db62019-06-20 08:50:36 -0400353
354 // Process groups
khenaidoob2121e52019-12-16 17:17:22 -0500355 newGroups, groupsToDelete, updatedAllGroups := groupsToUpdateToDelete(newGroups, existingGroups.Items)
khenaidoo0458db62019-06-20 08:50:36 -0400356
357 // Sanity check
khenaidoob2121e52019-12-16 17:17:22 -0500358 if (len(updatedAllFlows) | len(flowsToDelete) | len(updatedAllGroups) | len(groupsToDelete)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530359 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": newFlows, "groups": newGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800360 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400361 }
362
363 // Send update to adapters
364 // Create two channels to receive responses from the dB and from the adapters.
365 // Do not close these channels as this function may exit on timeout before the dB or adapters get a chance
366 // to send their responses. These channels will be garbage collected once all the responses are
367 // received
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500368 response := coreutils.NewResponse()
khenaidoo0458db62019-06-20 08:50:36 -0400369 dType := agent.adapterMgr.getDeviceType(device.Type)
khenaidooe7be1332020-01-24 18:58:33 -0500370 if dType == nil {
371 log.Errorw("non-existent device type", log.Fields{"deviceType": device.Type})
372 return coreutils.DoneResponse(), status.Errorf(codes.FailedPrecondition, "non-existent device type %s", device.Type)
373 }
khenaidoo0458db62019-06-20 08:50:36 -0400374 if !dType.AcceptsAddRemoveFlowUpdates {
375
khenaidoob2121e52019-12-16 17:17:22 -0500376 if len(updatedAllGroups) != 0 && reflect.DeepEqual(existingGroups.Items, updatedAllGroups) && len(updatedAllFlows) != 0 && reflect.DeepEqual(existingFlows.Items, updatedAllFlows) {
npujar1d86a522019-11-14 17:11:16 +0530377 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": newFlows, "groups": newGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800378 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400379 }
khenaidoob2121e52019-12-16 17:17:22 -0500380 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: updatedAllFlows}, &voltha.FlowGroups{Items: updatedAllGroups}, flowMetadata, response)
khenaidoo0458db62019-06-20 08:50:36 -0400381
382 } else {
383 flowChanges := &ofp.FlowChanges{
Matt Jeanneret518b5a42019-10-29 10:30:46 -0400384 ToAdd: &voltha.Flows{Items: newFlows},
khenaidoo0458db62019-06-20 08:50:36 -0400385 ToRemove: &voltha.Flows{Items: flowsToDelete},
386 }
387 groupChanges := &ofp.FlowGroupChanges{
Matt Jeanneret518b5a42019-10-29 10:30:46 -0400388 ToAdd: &voltha.FlowGroups{Items: newGroups},
389 ToRemove: &voltha.FlowGroups{Items: groupsToDelete},
khenaidoo0458db62019-06-20 08:50:36 -0400390 ToUpdate: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
391 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500392 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, response)
khenaidoo0458db62019-06-20 08:50:36 -0400393 }
394
395 // store the changed data
khenaidoob2121e52019-12-16 17:17:22 -0500396 device.Flows = &voltha.Flows{Items: updatedAllFlows}
397 device.FlowGroups = &voltha.FlowGroups{Items: updatedAllGroups}
Kent Hagerman3c513972019-11-25 13:49:41 -0500398 if err := agent.updateDeviceWithoutLock(device); err != nil {
A R Karthick5c28f552019-12-11 22:47:44 -0800399 return coreutils.DoneResponse(), status.Errorf(codes.Internal, "failure-updating-%s", agent.deviceID)
Kent Hagerman3c513972019-11-25 13:49:41 -0500400 }
khenaidoo0458db62019-06-20 08:50:36 -0400401
A R Karthick5c28f552019-12-11 22:47:44 -0800402 return response, nil
403}
404
405//addFlowsAndGroups adds the "newFlows" and "newGroups" from the existing flows/groups and sends the update to the
406//adapters
407func (agent *DeviceAgent) addFlowsAndGroups(newFlows []*ofp.OfpFlowStats, newGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
408 response, err := agent.addFlowsAndGroupsToAdapter(newFlows, newGroups, flowMetadata)
409 if err != nil {
410 return err
411 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500412 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, response); res != nil {
Manikkaraj kb1a10922019-07-29 12:10:34 -0400413 log.Debugw("Failed to get response from adapter[or] DB", log.Fields{"result": res})
khenaidoo0458db62019-06-20 08:50:36 -0400414 return status.Errorf(codes.Aborted, "errors-%s", res)
415 }
khenaidoo0458db62019-06-20 08:50:36 -0400416 return nil
417}
418
A R Karthick5c28f552019-12-11 22:47:44 -0800419func (agent *DeviceAgent) deleteFlowsAndGroupsFromAdapter(flowsToDel []*ofp.OfpFlowStats, groupsToDel []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) (coreutils.Response, error) {
npujar1d86a522019-11-14 17:11:16 +0530420 log.Debugw("deleteFlowsAndGroups", log.Fields{"deviceId": agent.deviceID, "flows": flowsToDel, "groups": groupsToDel})
khenaidoo0458db62019-06-20 08:50:36 -0400421
422 if (len(flowsToDel) | len(groupsToDel)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530423 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": flowsToDel, "groups": groupsToDel})
A R Karthick5c28f552019-12-11 22:47:44 -0800424 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400425 }
426
427 agent.lockDevice.Lock()
428 defer agent.lockDevice.Unlock()
429
khenaidoo6e55d9e2019-12-12 18:26:26 -0500430 device := agent.getDeviceWithoutLock()
khenaidoo0458db62019-06-20 08:50:36 -0400431
432 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
433 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
434
435 var flowsToKeep []*ofp.OfpFlowStats
436 var groupsToKeep []*ofp.OfpGroupEntry
437
438 // Process flows
439 for _, flow := range existingFlows.Items {
440 if idx := fu.FindFlows(flowsToDel, flow); idx == -1 {
441 flowsToKeep = append(flowsToKeep, flow)
442 }
443 }
444
445 // Process groups
446 for _, group := range existingGroups.Items {
447 if fu.FindGroup(groupsToDel, group.Desc.GroupId) == -1 { // does not exist now
448 groupsToKeep = append(groupsToKeep, group)
449 }
450 }
451
452 log.Debugw("deleteFlowsAndGroups",
453 log.Fields{
npujar1d86a522019-11-14 17:11:16 +0530454 "deviceId": agent.deviceID,
khenaidoo0458db62019-06-20 08:50:36 -0400455 "flowsToDel": len(flowsToDel),
456 "flowsToKeep": len(flowsToKeep),
457 "groupsToDel": len(groupsToDel),
458 "groupsToKeep": len(groupsToKeep),
459 })
460
461 // Sanity check
462 if (len(flowsToKeep) | len(flowsToDel) | len(groupsToKeep) | len(groupsToDel)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530463 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flowsToDel": flowsToDel, "groupsToDel": groupsToDel})
A R Karthick5c28f552019-12-11 22:47:44 -0800464 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400465 }
466
467 // Send update to adapters
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500468 response := coreutils.NewResponse()
khenaidoo0458db62019-06-20 08:50:36 -0400469 dType := agent.adapterMgr.getDeviceType(device.Type)
khenaidooe7be1332020-01-24 18:58:33 -0500470 if dType == nil {
471 log.Errorw("non-existent device type", log.Fields{"deviceType": device.Type})
472 return coreutils.DoneResponse(), status.Errorf(codes.FailedPrecondition, "non-existent device type %s", device.Type)
473 }
khenaidoo0458db62019-06-20 08:50:36 -0400474 if !dType.AcceptsAddRemoveFlowUpdates {
475 if len(groupsToKeep) != 0 && reflect.DeepEqual(existingGroups.Items, groupsToKeep) && len(flowsToKeep) != 0 && reflect.DeepEqual(existingFlows.Items, flowsToKeep) {
npujar1d86a522019-11-14 17:11:16 +0530476 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flowsToDel": flowsToDel, "groupsToDel": groupsToDel})
A R Karthick5c28f552019-12-11 22:47:44 -0800477 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400478 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500479 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: flowsToKeep}, &voltha.FlowGroups{Items: groupsToKeep}, flowMetadata, response)
khenaidoo0458db62019-06-20 08:50:36 -0400480 } else {
481 flowChanges := &ofp.FlowChanges{
482 ToAdd: &voltha.Flows{Items: []*ofp.OfpFlowStats{}},
483 ToRemove: &voltha.Flows{Items: flowsToDel},
484 }
485 groupChanges := &ofp.FlowGroupChanges{
486 ToAdd: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
487 ToRemove: &voltha.FlowGroups{Items: groupsToDel},
488 ToUpdate: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
489 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500490 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, response)
khenaidoo0458db62019-06-20 08:50:36 -0400491 }
492
493 // store the changed data
494 device.Flows = &voltha.Flows{Items: flowsToKeep}
495 device.FlowGroups = &voltha.FlowGroups{Items: groupsToKeep}
Kent Hagerman3c513972019-11-25 13:49:41 -0500496 if err := agent.updateDeviceWithoutLock(device); err != nil {
A R Karthick5c28f552019-12-11 22:47:44 -0800497 return coreutils.DoneResponse(), status.Errorf(codes.Internal, "failure-updating-%s", agent.deviceID)
Kent Hagerman3c513972019-11-25 13:49:41 -0500498 }
khenaidoo0458db62019-06-20 08:50:36 -0400499
A R Karthick5c28f552019-12-11 22:47:44 -0800500 return response, nil
501
502}
503
504//deleteFlowsAndGroups removes the "flowsToDel" and "groupsToDel" from the existing flows/groups and sends the update to the
505//adapters
506func (agent *DeviceAgent) deleteFlowsAndGroups(flowsToDel []*ofp.OfpFlowStats, groupsToDel []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
507 response, err := agent.deleteFlowsAndGroupsFromAdapter(flowsToDel, groupsToDel, flowMetadata)
508 if err != nil {
509 return err
510 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500511 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, response); res != nil {
khenaidoo0458db62019-06-20 08:50:36 -0400512 return status.Errorf(codes.Aborted, "errors-%s", res)
513 }
514 return nil
khenaidoo0458db62019-06-20 08:50:36 -0400515}
516
A R Karthick5c28f552019-12-11 22:47:44 -0800517func (agent *DeviceAgent) updateFlowsAndGroupsToAdapter(updatedFlows []*ofp.OfpFlowStats, updatedGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) (coreutils.Response, error) {
npujar1d86a522019-11-14 17:11:16 +0530518 log.Debugw("updateFlowsAndGroups", log.Fields{"deviceId": agent.deviceID, "flows": updatedFlows, "groups": updatedGroups})
khenaidoo0458db62019-06-20 08:50:36 -0400519
520 if (len(updatedFlows) | len(updatedGroups)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530521 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": updatedFlows, "groups": updatedGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800522 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400523 }
524
525 agent.lockDevice.Lock()
526 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -0500527
528 device := agent.getDeviceWithoutLock()
529
khenaidoo0458db62019-06-20 08:50:36 -0400530 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
531 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
532
533 if len(updatedGroups) != 0 && reflect.DeepEqual(existingGroups.Items, updatedGroups) && len(updatedFlows) != 0 && reflect.DeepEqual(existingFlows.Items, updatedFlows) {
npujar1d86a522019-11-14 17:11:16 +0530534 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": updatedFlows, "groups": updatedGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800535 return coreutils.DoneResponse(), nil
khenaidoo0458db62019-06-20 08:50:36 -0400536 }
537
538 log.Debugw("updating-flows-and-groups",
539 log.Fields{
npujar1d86a522019-11-14 17:11:16 +0530540 "deviceId": agent.deviceID,
khenaidoo0458db62019-06-20 08:50:36 -0400541 "updatedFlows": updatedFlows,
542 "updatedGroups": updatedGroups,
543 })
544
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500545 response := coreutils.NewResponse()
khenaidoo0458db62019-06-20 08:50:36 -0400546 dType := agent.adapterMgr.getDeviceType(device.Type)
khenaidooe7be1332020-01-24 18:58:33 -0500547 if dType == nil {
548 log.Errorw("non-existent device type", log.Fields{"deviceType": device.Type})
549 return coreutils.DoneResponse(), status.Errorf(codes.FailedPrecondition, "non-existent device type %s", device.Type)
550 }
khenaidoo0458db62019-06-20 08:50:36 -0400551
552 // Process bulk flow update differently than incremental update
553 if !dType.AcceptsAddRemoveFlowUpdates {
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500554 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: updatedFlows}, &voltha.FlowGroups{Items: updatedGroups}, nil, response)
khenaidoo0458db62019-06-20 08:50:36 -0400555 } else {
556 var flowsToAdd []*ofp.OfpFlowStats
khenaidoo2c6a0992019-04-29 13:46:56 -0400557 var flowsToDelete []*ofp.OfpFlowStats
khenaidoo0458db62019-06-20 08:50:36 -0400558 var groupsToAdd []*ofp.OfpGroupEntry
khenaidoo2c6a0992019-04-29 13:46:56 -0400559 var groupsToDelete []*ofp.OfpGroupEntry
khenaidoo2c6a0992019-04-29 13:46:56 -0400560
561 // Process flows
khenaidoo0458db62019-06-20 08:50:36 -0400562 for _, flow := range updatedFlows {
563 if idx := fu.FindFlows(existingFlows.Items, flow); idx == -1 {
564 flowsToAdd = append(flowsToAdd, flow)
565 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400566 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400567 for _, flow := range existingFlows.Items {
khenaidoo0458db62019-06-20 08:50:36 -0400568 if idx := fu.FindFlows(updatedFlows, flow); idx != -1 {
khenaidoo2c6a0992019-04-29 13:46:56 -0400569 flowsToDelete = append(flowsToDelete, flow)
570 }
571 }
572
573 // Process groups
khenaidoo0458db62019-06-20 08:50:36 -0400574 for _, g := range updatedGroups {
575 if fu.FindGroup(existingGroups.Items, g.Desc.GroupId) == -1 { // does not exist now
576 groupsToAdd = append(groupsToAdd, g)
577 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400578 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400579 for _, group := range existingGroups.Items {
khenaidoo0458db62019-06-20 08:50:36 -0400580 if fu.FindGroup(updatedGroups, group.Desc.GroupId) != -1 { // does not exist now
khenaidoo2c6a0992019-04-29 13:46:56 -0400581 groupsToDelete = append(groupsToDelete, group)
582 }
583 }
584
khenaidoo0458db62019-06-20 08:50:36 -0400585 log.Debugw("updating-flows-and-groups",
586 log.Fields{
npujar1d86a522019-11-14 17:11:16 +0530587 "deviceId": agent.deviceID,
khenaidoo0458db62019-06-20 08:50:36 -0400588 "flowsToAdd": flowsToAdd,
589 "flowsToDelete": flowsToDelete,
590 "groupsToAdd": groupsToAdd,
591 "groupsToDelete": groupsToDelete,
592 })
593
khenaidoo2c6a0992019-04-29 13:46:56 -0400594 // Sanity check
khenaidoo0458db62019-06-20 08:50:36 -0400595 if (len(flowsToAdd) | len(flowsToDelete) | len(groupsToAdd) | len(groupsToDelete) | len(updatedGroups)) == 0 {
npujar1d86a522019-11-14 17:11:16 +0530596 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceID, "flows": updatedFlows, "groups": updatedGroups})
A R Karthick5c28f552019-12-11 22:47:44 -0800597 return coreutils.DoneResponse(), nil
khenaidoo2c6a0992019-04-29 13:46:56 -0400598 }
599
khenaidoo0458db62019-06-20 08:50:36 -0400600 flowChanges := &ofp.FlowChanges{
601 ToAdd: &voltha.Flows{Items: flowsToAdd},
602 ToRemove: &voltha.Flows{Items: flowsToDelete},
khenaidoo19d7b632018-10-30 10:49:50 -0400603 }
khenaidoo0458db62019-06-20 08:50:36 -0400604 groupChanges := &ofp.FlowGroupChanges{
605 ToAdd: &voltha.FlowGroups{Items: groupsToAdd},
606 ToRemove: &voltha.FlowGroups{Items: groupsToDelete},
607 ToUpdate: &voltha.FlowGroups{Items: updatedGroups},
608 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500609 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, response)
khenaidoo19d7b632018-10-30 10:49:50 -0400610 }
khenaidoo0458db62019-06-20 08:50:36 -0400611
612 // store the updated data
613 device.Flows = &voltha.Flows{Items: updatedFlows}
614 device.FlowGroups = &voltha.FlowGroups{Items: updatedGroups}
Kent Hagerman3c513972019-11-25 13:49:41 -0500615 if err := agent.updateDeviceWithoutLock(device); err != nil {
A R Karthick5c28f552019-12-11 22:47:44 -0800616 return coreutils.DoneResponse(), status.Errorf(codes.Internal, "failure-updating-%s", agent.deviceID)
Kent Hagerman3c513972019-11-25 13:49:41 -0500617 }
khenaidoo0458db62019-06-20 08:50:36 -0400618
A R Karthick5c28f552019-12-11 22:47:44 -0800619 return response, nil
620}
621
622//updateFlowsAndGroups replaces the existing flows and groups with "updatedFlows" and "updatedGroups" respectively. It
623//also sends the updates to the adapters
624func (agent *DeviceAgent) updateFlowsAndGroups(updatedFlows []*ofp.OfpFlowStats, updatedGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
625 response, err := agent.updateFlowsAndGroupsToAdapter(updatedFlows, updatedGroups, flowMetadata)
626 if err != nil {
627 return err
628 }
Kent Hagerman8da2f1e2019-11-25 17:28:09 -0500629 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, response); res != nil {
khenaidoo0458db62019-06-20 08:50:36 -0400630 return status.Errorf(codes.Aborted, "errors-%s", res)
631 }
632 return nil
khenaidoo19d7b632018-10-30 10:49:50 -0400633}
634
khenaidoo4d4802d2018-10-04 21:59:49 -0400635//disableDevice disable a device
khenaidoo92e62c52018-10-03 14:02:54 -0400636func (agent *DeviceAgent) disableDevice(ctx context.Context) error {
khenaidoo59ef7be2019-06-21 12:40:28 -0400637 agent.lockDevice.Lock()
638 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530639 log.Debugw("disableDevice", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500640
641 cloned := agent.getDeviceWithoutLock()
642
643 if cloned.AdminState == voltha.AdminState_DISABLED {
npujar1d86a522019-11-14 17:11:16 +0530644 log.Debugw("device-already-disabled", log.Fields{"id": agent.deviceID})
645 return nil
646 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500647 if cloned.AdminState == voltha.AdminState_PREPROVISIONED ||
648 cloned.AdminState == voltha.AdminState_DELETED {
npujar1d86a522019-11-14 17:11:16 +0530649 log.Debugw("device-not-enabled", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500650 return status.Errorf(codes.FailedPrecondition, "deviceId:%s, invalid-admin-state:%s", agent.deviceID, cloned.AdminState)
npujar1d86a522019-11-14 17:11:16 +0530651 }
khenaidoo4554f7c2019-05-29 22:13:15 -0400652
npujar1d86a522019-11-14 17:11:16 +0530653 // Update the Admin State and operational state before sending the request out
npujar1d86a522019-11-14 17:11:16 +0530654 cloned.AdminState = voltha.AdminState_DISABLED
655 cloned.OperStatus = voltha.OperStatus_UNKNOWN
656 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
657 return err
658 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500659 if err := agent.adapterProxy.DisableDevice(ctx, proto.Clone(cloned).(*voltha.Device)); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530660 log.Debugw("disableDevice-error", log.Fields{"id": agent.deviceID, "error": err})
661 return err
khenaidoo0a822f92019-05-08 15:15:57 -0400662 }
663 return nil
664}
665
serkant.uluderya2ae470f2020-01-21 11:13:09 -0800666func (agent *DeviceAgent) updateAdminState(adminState voltha.AdminState_Types) error {
khenaidoo0a822f92019-05-08 15:15:57 -0400667 agent.lockDevice.Lock()
668 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530669 log.Debugw("updateAdminState", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500670
671 cloned := agent.getDeviceWithoutLock()
672
673 if cloned.AdminState == adminState {
npujar1d86a522019-11-14 17:11:16 +0530674 log.Debugw("no-change-needed", log.Fields{"id": agent.deviceID, "state": adminState})
675 return nil
676 }
677 // Received an Ack (no error found above). Now update the device in the model to the expected state
npujar1d86a522019-11-14 17:11:16 +0530678 cloned.AdminState = adminState
679 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
680 return err
khenaidoo92e62c52018-10-03 14:02:54 -0400681 }
682 return nil
683}
684
khenaidoo4d4802d2018-10-04 21:59:49 -0400685func (agent *DeviceAgent) rebootDevice(ctx context.Context) error {
686 agent.lockDevice.Lock()
687 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530688 log.Debugw("rebootDevice", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500689
690 device := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +0530691 if err := agent.adapterProxy.RebootDevice(ctx, device); err != nil {
692 log.Debugw("rebootDevice-error", log.Fields{"id": agent.deviceID, "error": err})
693 return err
khenaidoo4d4802d2018-10-04 21:59:49 -0400694 }
695 return nil
696}
697
698func (agent *DeviceAgent) deleteDevice(ctx context.Context) error {
699 agent.lockDevice.Lock()
khenaidoo0a822f92019-05-08 15:15:57 -0400700 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530701 log.Debugw("deleteDevice", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500702
703 cloned := agent.getDeviceWithoutLock()
704 if cloned.AdminState == voltha.AdminState_DELETED {
npujar1d86a522019-11-14 17:11:16 +0530705 log.Debugw("device-already-in-deleted-state", log.Fields{"id": agent.deviceID})
706 return nil
707 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500708 if (cloned.AdminState != voltha.AdminState_DISABLED) &&
709 (cloned.AdminState != voltha.AdminState_PREPROVISIONED) {
npujar1d86a522019-11-14 17:11:16 +0530710 log.Debugw("device-not-disabled", log.Fields{"id": agent.deviceID})
711 //TODO: Needs customized error message
712 return status.Errorf(codes.FailedPrecondition, "deviceId:%s, expected-admin-state:%s", agent.deviceID, voltha.AdminState_DISABLED)
713 }
khenaidoo6e55d9e2019-12-12 18:26:26 -0500714 if cloned.AdminState != voltha.AdminState_PREPROVISIONED {
npujar1d86a522019-11-14 17:11:16 +0530715 // Send the request to an Adapter only if the device is not in poreporovision state and wait for a response
khenaidoo6e55d9e2019-12-12 18:26:26 -0500716 if err := agent.adapterProxy.DeleteDevice(ctx, cloned); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530717 log.Debugw("deleteDevice-error", log.Fields{"id": agent.deviceID, "error": err})
Mahir Gunyelb5851672019-07-24 10:46:26 +0300718 return err
khenaidoo4d4802d2018-10-04 21:59:49 -0400719 }
npujar1d86a522019-11-14 17:11:16 +0530720 }
721 // Set the state to deleted after we receive an Ack - this will trigger some background process to clean up
722 // the device as well as its association with the logical device
npujar1d86a522019-11-14 17:11:16 +0530723 cloned.AdminState = voltha.AdminState_DELETED
724 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
725 return err
726 }
727 // If this is a child device then remove the associated peer ports on the parent device
khenaidoo6e55d9e2019-12-12 18:26:26 -0500728 if !cloned.Root {
npujar1d86a522019-11-14 17:11:16 +0530729 go func() {
khenaidoo6e55d9e2019-12-12 18:26:26 -0500730 err := agent.deviceMgr.deletePeerPorts(cloned.ParentId, cloned.Id)
npujar1d86a522019-11-14 17:11:16 +0530731 if err != nil {
732 log.Errorw("unable-to-delete-peer-ports", log.Fields{"error": err})
733 }
734 }()
khenaidoo4d4802d2018-10-04 21:59:49 -0400735 }
736 return nil
737}
738
npujar1d86a522019-11-14 17:11:16 +0530739func (agent *DeviceAgent) setParentID(device *voltha.Device, parentID string) error {
khenaidooad06fd72019-10-28 12:26:05 -0400740 agent.lockDevice.Lock()
741 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530742 log.Debugw("setParentId", log.Fields{"deviceId": device.Id, "parentId": parentID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500743
744 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +0530745 cloned.ParentId = parentID
746 // Store the device
747 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
748 return err
749 }
750 return nil
khenaidooad06fd72019-10-28 12:26:05 -0400751}
752
khenaidoob3127472019-07-24 21:04:55 -0400753func (agent *DeviceAgent) updatePmConfigs(ctx context.Context, pmConfigs *voltha.PmConfigs) error {
754 agent.lockDevice.Lock()
755 defer agent.lockDevice.Unlock()
756 log.Debugw("updatePmConfigs", log.Fields{"id": pmConfigs.Id})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500757
758 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +0530759 cloned.PmConfigs = proto.Clone(pmConfigs).(*voltha.PmConfigs)
760 // Store the device
761 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
762 return err
763 }
764 // Send the request to the adapter
765 if err := agent.adapterProxy.UpdatePmConfigs(ctx, cloned, pmConfigs); err != nil {
766 log.Errorw("update-pm-configs-error", log.Fields{"id": agent.deviceID, "error": err})
767 return err
768 }
769 return nil
khenaidoob3127472019-07-24 21:04:55 -0400770}
771
772func (agent *DeviceAgent) initPmConfigs(pmConfigs *voltha.PmConfigs) error {
773 agent.lockDevice.Lock()
774 defer agent.lockDevice.Unlock()
775 log.Debugw("initPmConfigs", log.Fields{"id": pmConfigs.Id})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500776
777 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +0530778 cloned.PmConfigs = proto.Clone(pmConfigs).(*voltha.PmConfigs)
779 // Store the device
780 updateCtx := context.WithValue(context.Background(), model.RequestTimestamp, time.Now().UnixNano())
Thomas Lee Se5a44012019-11-07 20:32:24 +0530781 afterUpdate, err := agent.clusterDataProxy.Update(updateCtx, "/devices/"+agent.deviceID, cloned, false, "")
782 if err != nil {
783 return status.Errorf(codes.Internal, "%s", agent.deviceID)
784 }
npujar1d86a522019-11-14 17:11:16 +0530785 if afterUpdate == nil {
786 return status.Errorf(codes.Internal, "%s", agent.deviceID)
787 }
788 return nil
khenaidoob3127472019-07-24 21:04:55 -0400789}
790
791func (agent *DeviceAgent) listPmConfigs(ctx context.Context) (*voltha.PmConfigs, error) {
792 agent.lockDevice.RLock()
793 defer agent.lockDevice.RUnlock()
npujar1d86a522019-11-14 17:11:16 +0530794 log.Debugw("listPmConfigs", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500795
796 return agent.getDeviceWithoutLock().PmConfigs, nil
khenaidoob3127472019-07-24 21:04:55 -0400797}
798
khenaidoof5a5bfa2019-01-23 22:20:29 -0500799func (agent *DeviceAgent) downloadImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
800 agent.lockDevice.Lock()
801 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530802 log.Debugw("downloadImage", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500803
804 device := agent.getDeviceWithoutLock()
805
npujar1d86a522019-11-14 17:11:16 +0530806 if device.AdminState != voltha.AdminState_ENABLED {
807 log.Debugw("device-not-enabled", log.Fields{"id": agent.deviceID})
808 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, expected-admin-state:%s", agent.deviceID, voltha.AdminState_ENABLED)
809 }
810 // Save the image
811 clonedImg := proto.Clone(img).(*voltha.ImageDownload)
812 clonedImg.DownloadState = voltha.ImageDownload_DOWNLOAD_REQUESTED
813 cloned := proto.Clone(device).(*voltha.Device)
814 if cloned.ImageDownloads == nil {
815 cloned.ImageDownloads = []*voltha.ImageDownload{clonedImg}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500816 } else {
817 if device.AdminState != voltha.AdminState_ENABLED {
npujar1d86a522019-11-14 17:11:16 +0530818 log.Debugw("device-not-enabled", log.Fields{"id": agent.deviceID})
819 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, expected-admin-state:%s", agent.deviceID, voltha.AdminState_ENABLED)
khenaidoof5a5bfa2019-01-23 22:20:29 -0500820 }
821 // Save the image
822 clonedImg := proto.Clone(img).(*voltha.ImageDownload)
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500823 clonedImg.DownloadState = voltha.ImageDownload_DOWNLOAD_REQUESTED
khenaidoof5a5bfa2019-01-23 22:20:29 -0500824 cloned := proto.Clone(device).(*voltha.Device)
825 if cloned.ImageDownloads == nil {
826 cloned.ImageDownloads = []*voltha.ImageDownload{clonedImg}
827 } else {
828 cloned.ImageDownloads = append(cloned.ImageDownloads, clonedImg)
829 }
830 cloned.AdminState = voltha.AdminState_DOWNLOADING_IMAGE
Mahir Gunyelb5851672019-07-24 10:46:26 +0300831 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
832 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500833 }
834 // Send the request to the adapter
835 if err := agent.adapterProxy.DownloadImage(ctx, cloned, clonedImg); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530836 log.Debugw("downloadImage-error", log.Fields{"id": agent.deviceID, "error": err, "image": img.Name})
khenaidoof5a5bfa2019-01-23 22:20:29 -0500837 return nil, err
838 }
839 }
840 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
841}
842
843// isImageRegistered is a helper method to figure out if an image is already registered
844func isImageRegistered(img *voltha.ImageDownload, device *voltha.Device) bool {
845 for _, image := range device.ImageDownloads {
846 if image.Id == img.Id && image.Name == img.Name {
847 return true
848 }
849 }
850 return false
851}
852
853func (agent *DeviceAgent) cancelImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
854 agent.lockDevice.Lock()
855 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530856 log.Debugw("cancelImageDownload", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500857
858 device := agent.getDeviceWithoutLock()
859
npujar1d86a522019-11-14 17:11:16 +0530860 // Verify whether the Image is in the list of image being downloaded
861 if !isImageRegistered(img, device) {
862 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceID, img.Name)
863 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500864
npujar1d86a522019-11-14 17:11:16 +0530865 // Update image download state
866 cloned := proto.Clone(device).(*voltha.Device)
867 for _, image := range cloned.ImageDownloads {
868 if image.Id == img.Id && image.Name == img.Name {
869 image.DownloadState = voltha.ImageDownload_DOWNLOAD_CANCELLED
khenaidoof5a5bfa2019-01-23 22:20:29 -0500870 }
npujar1d86a522019-11-14 17:11:16 +0530871 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500872
npujar1d86a522019-11-14 17:11:16 +0530873 if device.AdminState == voltha.AdminState_DOWNLOADING_IMAGE {
874 // Set the device to Enabled
875 cloned.AdminState = voltha.AdminState_ENABLED
876 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
877 return nil, err
878 }
879 // Send the request to the adapter
880 if err := agent.adapterProxy.CancelImageDownload(ctx, device, img); err != nil {
881 log.Debugw("cancelImageDownload-error", log.Fields{"id": agent.deviceID, "error": err, "image": img.Name})
882 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500883 }
884 }
885 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
serkant.uluderya334479d2019-04-10 08:26:15 -0700886}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500887
888func (agent *DeviceAgent) activateImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
889 agent.lockDevice.Lock()
890 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530891 log.Debugw("activateImage", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500892 cloned := agent.getDeviceWithoutLock()
893
npujar1d86a522019-11-14 17:11:16 +0530894 // Verify whether the Image is in the list of image being downloaded
khenaidoo6e55d9e2019-12-12 18:26:26 -0500895 if !isImageRegistered(img, cloned) {
npujar1d86a522019-11-14 17:11:16 +0530896 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceID, img.Name)
897 }
898
khenaidoo6e55d9e2019-12-12 18:26:26 -0500899 if cloned.AdminState == voltha.AdminState_DOWNLOADING_IMAGE {
npujar1d86a522019-11-14 17:11:16 +0530900 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, device-in-downloading-state:%s", agent.deviceID, img.Name)
901 }
902 // Update image download state
npujar1d86a522019-11-14 17:11:16 +0530903 for _, image := range cloned.ImageDownloads {
904 if image.Id == img.Id && image.Name == img.Name {
905 image.ImageState = voltha.ImageDownload_IMAGE_ACTIVATING
906 }
907 }
908 // Set the device to downloading_image
909 cloned.AdminState = voltha.AdminState_DOWNLOADING_IMAGE
910 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
911 return nil, err
912 }
913
khenaidoo6e55d9e2019-12-12 18:26:26 -0500914 if err := agent.adapterProxy.ActivateImageUpdate(ctx, proto.Clone(cloned).(*voltha.Device), img); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530915 log.Debugw("activateImage-error", log.Fields{"id": agent.deviceID, "error": err, "image": img.Name})
916 return nil, err
917 }
918 // The status of the AdminState will be changed following the update_download_status response from the adapter
919 // The image name will also be removed from the device list
serkant.uluderya334479d2019-04-10 08:26:15 -0700920 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
921}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500922
923func (agent *DeviceAgent) revertImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
924 agent.lockDevice.Lock()
925 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530926 log.Debugw("revertImage", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500927
928 cloned := agent.getDeviceWithoutLock()
929
npujar1d86a522019-11-14 17:11:16 +0530930 // Verify whether the Image is in the list of image being downloaded
khenaidoo6e55d9e2019-12-12 18:26:26 -0500931 if !isImageRegistered(img, cloned) {
npujar1d86a522019-11-14 17:11:16 +0530932 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceID, img.Name)
933 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500934
khenaidoo6e55d9e2019-12-12 18:26:26 -0500935 if cloned.AdminState != voltha.AdminState_ENABLED {
npujar1d86a522019-11-14 17:11:16 +0530936 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, device-not-enabled-state:%s", agent.deviceID, img.Name)
937 }
938 // Update image download state
npujar1d86a522019-11-14 17:11:16 +0530939 for _, image := range cloned.ImageDownloads {
940 if image.Id == img.Id && image.Name == img.Name {
941 image.ImageState = voltha.ImageDownload_IMAGE_REVERTING
khenaidoof5a5bfa2019-01-23 22:20:29 -0500942 }
npujar1d86a522019-11-14 17:11:16 +0530943 }
Mahir Gunyelb5851672019-07-24 10:46:26 +0300944
npujar1d86a522019-11-14 17:11:16 +0530945 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
946 return nil, err
947 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500948
khenaidoo6e55d9e2019-12-12 18:26:26 -0500949 if err := agent.adapterProxy.RevertImageUpdate(ctx, proto.Clone(cloned).(*voltha.Device), img); err != nil {
npujar1d86a522019-11-14 17:11:16 +0530950 log.Debugw("revertImage-error", log.Fields{"id": agent.deviceID, "error": err, "image": img.Name})
951 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500952 }
953 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
serkant.uluderya334479d2019-04-10 08:26:15 -0700954}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500955
956func (agent *DeviceAgent) getImageDownloadStatus(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
957 agent.lockDevice.Lock()
958 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530959 log.Debugw("getImageDownloadStatus", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500960
961 cloned := agent.getDeviceWithoutLock()
962 resp, err := agent.adapterProxy.GetImageDownloadStatus(ctx, cloned, img)
npujar1d86a522019-11-14 17:11:16 +0530963 if err != nil {
964 log.Debugw("getImageDownloadStatus-error", log.Fields{"id": agent.deviceID, "error": err, "image": img.Name})
965 return nil, err
966 }
967 return resp, nil
khenaidoof5a5bfa2019-01-23 22:20:29 -0500968}
969
serkant.uluderya334479d2019-04-10 08:26:15 -0700970func (agent *DeviceAgent) updateImageDownload(img *voltha.ImageDownload) error {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500971 agent.lockDevice.Lock()
972 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +0530973 log.Debugw("updateImageDownload", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -0500974
975 cloned := agent.getDeviceWithoutLock()
976
npujar1d86a522019-11-14 17:11:16 +0530977 // Update the image as well as remove it if the download was cancelled
npujar1d86a522019-11-14 17:11:16 +0530978 clonedImages := make([]*voltha.ImageDownload, len(cloned.ImageDownloads))
979 for _, image := range cloned.ImageDownloads {
980 if image.Id == img.Id && image.Name == img.Name {
981 if image.DownloadState != voltha.ImageDownload_DOWNLOAD_CANCELLED {
982 clonedImages = append(clonedImages, img)
khenaidoof5a5bfa2019-01-23 22:20:29 -0500983 }
984 }
npujar1d86a522019-11-14 17:11:16 +0530985 }
986 cloned.ImageDownloads = clonedImages
987 // Set the Admin state to enabled if required
988 if (img.DownloadState != voltha.ImageDownload_DOWNLOAD_REQUESTED &&
989 img.DownloadState != voltha.ImageDownload_DOWNLOAD_STARTED) ||
990 (img.ImageState != voltha.ImageDownload_IMAGE_ACTIVATING) {
991 cloned.AdminState = voltha.AdminState_ENABLED
992 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500993
npujar1d86a522019-11-14 17:11:16 +0530994 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
995 return err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500996 }
997 return nil
998}
999
1000func (agent *DeviceAgent) getImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
khenaidoo1ce37ad2019-03-24 22:07:24 -04001001 agent.lockDevice.RLock()
1002 defer agent.lockDevice.RUnlock()
npujar1d86a522019-11-14 17:11:16 +05301003 log.Debugw("getImageDownload", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -05001004
1005 cloned := agent.getDeviceWithoutLock()
1006 for _, image := range cloned.ImageDownloads {
npujar1d86a522019-11-14 17:11:16 +05301007 if image.Id == img.Id && image.Name == img.Name {
1008 return image, nil
1009 }
1010 }
1011 return nil, status.Errorf(codes.NotFound, "image-not-found:%s", img.Name)
khenaidoof5a5bfa2019-01-23 22:20:29 -05001012}
1013
npujar1d86a522019-11-14 17:11:16 +05301014func (agent *DeviceAgent) listImageDownloads(ctx context.Context, deviceID string) (*voltha.ImageDownloads, error) {
khenaidoo1ce37ad2019-03-24 22:07:24 -04001015 agent.lockDevice.RLock()
1016 defer agent.lockDevice.RUnlock()
npujar1d86a522019-11-14 17:11:16 +05301017 log.Debugw("listImageDownloads", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -05001018
1019 return &voltha.ImageDownloads{Items: agent.getDeviceWithoutLock().ImageDownloads}, nil
khenaidoof5a5bfa2019-01-23 22:20:29 -05001020}
1021
khenaidoo4d4802d2018-10-04 21:59:49 -04001022// getPorts retrieves the ports information of the device based on the port type.
khenaidoo92e62c52018-10-03 14:02:54 -04001023func (agent *DeviceAgent) getPorts(ctx context.Context, portType voltha.Port_PortType) *voltha.Ports {
npujar1d86a522019-11-14 17:11:16 +05301024 log.Debugw("getPorts", log.Fields{"id": agent.deviceID, "portType": portType})
khenaidoob9203542018-09-17 22:56:37 -04001025 ports := &voltha.Ports{}
npujar1d86a522019-11-14 17:11:16 +05301026 if device, _ := agent.deviceMgr.GetDevice(agent.deviceID); device != nil {
khenaidoob9203542018-09-17 22:56:37 -04001027 for _, port := range device.Ports {
khenaidoo92e62c52018-10-03 14:02:54 -04001028 if port.Type == portType {
khenaidoob9203542018-09-17 22:56:37 -04001029 ports.Items = append(ports.Items, port)
1030 }
1031 }
1032 }
1033 return ports
1034}
1035
khenaidoo4d4802d2018-10-04 21:59:49 -04001036// getSwitchCapability is a helper method that a logical device agent uses to retrieve the switch capability of a
1037// parent device
khenaidoo79232702018-12-04 11:00:41 -05001038func (agent *DeviceAgent) getSwitchCapability(ctx context.Context) (*ic.SwitchCapability, error) {
npujar1d86a522019-11-14 17:11:16 +05301039 log.Debugw("getSwitchCapability", log.Fields{"deviceId": agent.deviceID})
1040 device, err := agent.deviceMgr.GetDevice(agent.deviceID)
1041 if device == nil {
khenaidoob9203542018-09-17 22:56:37 -04001042 return nil, err
khenaidoob9203542018-09-17 22:56:37 -04001043 }
npujar1d86a522019-11-14 17:11:16 +05301044 var switchCap *ic.SwitchCapability
1045 if switchCap, err = agent.adapterProxy.GetOfpDeviceInfo(ctx, device); err != nil {
1046 log.Debugw("getSwitchCapability-error", log.Fields{"id": device.Id, "error": err})
1047 return nil, err
1048 }
1049 return switchCap, nil
khenaidoob9203542018-09-17 22:56:37 -04001050}
1051
khenaidoo4d4802d2018-10-04 21:59:49 -04001052// getPortCapability is a helper method that a logical device agent uses to retrieve the port capability of a
1053// device
khenaidoo79232702018-12-04 11:00:41 -05001054func (agent *DeviceAgent) getPortCapability(ctx context.Context, portNo uint32) (*ic.PortCapability, error) {
npujar1d86a522019-11-14 17:11:16 +05301055 log.Debugw("getPortCapability", log.Fields{"deviceId": agent.deviceID})
1056 device, err := agent.deviceMgr.GetDevice(agent.deviceID)
1057 if device == nil {
khenaidoob9203542018-09-17 22:56:37 -04001058 return nil, err
khenaidoob9203542018-09-17 22:56:37 -04001059 }
npujar1d86a522019-11-14 17:11:16 +05301060 var portCap *ic.PortCapability
1061 if portCap, err = agent.adapterProxy.GetOfpPortInfo(ctx, device, portNo); err != nil {
1062 log.Debugw("getPortCapability-error", log.Fields{"id": device.Id, "error": err})
1063 return nil, err
1064 }
1065 return portCap, nil
khenaidoob9203542018-09-17 22:56:37 -04001066}
1067
khenaidoofdbad6e2018-11-06 22:26:38 -05001068func (agent *DeviceAgent) packetOut(outPort uint32, packet *ofp.OfpPacketOut) error {
Scott Baker80678602019-11-14 16:57:36 -08001069 // If deviceType=="" then we must have taken ownership of this device.
1070 // Fixes VOL-2226 where a core would take ownership and have stale data
1071 if agent.deviceType == "" {
1072 agent.reconcileWithKVStore()
1073 }
khenaidoofdbad6e2018-11-06 22:26:38 -05001074 // Send packet to adapter
npujar1d86a522019-11-14 17:11:16 +05301075 if err := agent.adapterProxy.packetOut(agent.deviceType, agent.deviceID, outPort, packet); err != nil {
Matteo Scandolo360605d2019-11-05 18:29:17 -08001076 log.Debugw("packet-out-error", log.Fields{
npujar1d86a522019-11-14 17:11:16 +05301077 "id": agent.deviceID,
Matteo Scandolo360605d2019-11-05 18:29:17 -08001078 "error": err,
1079 "packet": hex.EncodeToString(packet.Data),
1080 })
khenaidoofdbad6e2018-11-06 22:26:38 -05001081 return err
1082 }
1083 return nil
1084}
1085
khenaidoo4d4802d2018-10-04 21:59:49 -04001086// processUpdate is a callback invoked whenever there is a change on the device manages by this device agent
khenaidoo92e62c52018-10-03 14:02:54 -04001087func (agent *DeviceAgent) processUpdate(args ...interface{}) interface{} {
khenaidoo43c82122018-11-22 18:38:28 -05001088 //// Run this callback in its own go routine
1089 go func(args ...interface{}) interface{} {
1090 var previous *voltha.Device
1091 var current *voltha.Device
1092 var ok bool
1093 if len(args) == 2 {
1094 if previous, ok = args[0].(*voltha.Device); !ok {
1095 log.Errorw("invalid-callback-type", log.Fields{"data": args[0]})
1096 return nil
1097 }
1098 if current, ok = args[1].(*voltha.Device); !ok {
1099 log.Errorw("invalid-callback-type", log.Fields{"data": args[1]})
1100 return nil
1101 }
1102 } else {
1103 log.Errorw("too-many-args-in-callback", log.Fields{"len": len(args)})
1104 return nil
1105 }
1106 // Perform the state transition in it's own go routine
khenaidoof5a5bfa2019-01-23 22:20:29 -05001107 if err := agent.deviceMgr.processTransition(previous, current); err != nil {
1108 log.Errorw("failed-process-transition", log.Fields{"deviceId": previous.Id,
1109 "previousAdminState": previous.AdminState, "currentAdminState": current.AdminState})
1110 }
khenaidoo43c82122018-11-22 18:38:28 -05001111 return nil
1112 }(args...)
1113
khenaidoo92e62c52018-10-03 14:02:54 -04001114 return nil
1115}
1116
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001117// updatePartialDeviceData updates a subset of a device that an Adapter can update.
1118// TODO: May need a specific proto to handle only a subset of a device that can be changed by an adapter
1119func (agent *DeviceAgent) mergeDeviceInfoFromAdapter(device *voltha.Device) (*voltha.Device, error) {
khenaidoo6e55d9e2019-12-12 18:26:26 -05001120 cloned := agent.getDeviceWithoutLock()
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001121 cloned.Root = device.Root
1122 cloned.Vendor = device.Vendor
1123 cloned.Model = device.Model
1124 cloned.SerialNumber = device.SerialNumber
1125 cloned.MacAddress = device.MacAddress
1126 cloned.Vlan = device.Vlan
1127 cloned.Reason = device.Reason
1128 return cloned, nil
1129}
1130func (agent *DeviceAgent) updateDeviceUsingAdapterData(device *voltha.Device) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001131 agent.lockDevice.Lock()
khenaidoo43c82122018-11-22 18:38:28 -05001132 defer agent.lockDevice.Unlock()
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001133 log.Debugw("updateDeviceUsingAdapterData", log.Fields{"deviceId": device.Id})
npujar1d86a522019-11-14 17:11:16 +05301134 updatedDevice, err := agent.mergeDeviceInfoFromAdapter(device)
1135 if err != nil {
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001136 log.Errorw("failed to update device ", log.Fields{"deviceId": device.Id})
1137 return status.Errorf(codes.Internal, "%s", err.Error())
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001138 }
npujar1d86a522019-11-14 17:11:16 +05301139 cloned := proto.Clone(updatedDevice).(*voltha.Device)
1140 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo43c82122018-11-22 18:38:28 -05001141}
1142
1143func (agent *DeviceAgent) updateDeviceWithoutLock(device *voltha.Device) error {
1144 log.Debugw("updateDevice", log.Fields{"deviceId": device.Id})
1145 cloned := proto.Clone(device).(*voltha.Device)
Mahir Gunyelb5851672019-07-24 10:46:26 +03001146 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001147}
1148
serkant.uluderya2ae470f2020-01-21 11:13:09 -08001149func (agent *DeviceAgent) updateDeviceStatus(operStatus voltha.OperStatus_Types, connStatus voltha.ConnectStatus_Types) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001150 agent.lockDevice.Lock()
khenaidoo0a822f92019-05-08 15:15:57 -04001151 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -05001152
1153 cloned := agent.getDeviceWithoutLock()
1154
npujar1d86a522019-11-14 17:11:16 +05301155 // Ensure the enums passed in are valid - they will be invalid if they are not set when this function is invoked
serkant.uluderya2ae470f2020-01-21 11:13:09 -08001156 if s, ok := voltha.ConnectStatus_Types_value[connStatus.String()]; ok {
npujar1d86a522019-11-14 17:11:16 +05301157 log.Debugw("updateDeviceStatus-conn", log.Fields{"ok": ok, "val": s})
1158 cloned.ConnectStatus = connStatus
1159 }
serkant.uluderya2ae470f2020-01-21 11:13:09 -08001160 if s, ok := voltha.OperStatus_Types_value[operStatus.String()]; ok {
npujar1d86a522019-11-14 17:11:16 +05301161 log.Debugw("updateDeviceStatus-oper", log.Fields{"ok": ok, "val": s})
1162 cloned.OperStatus = operStatus
1163 }
1164 log.Debugw("updateDeviceStatus", log.Fields{"deviceId": cloned.Id, "operStatus": cloned.OperStatus, "connectStatus": cloned.ConnectStatus})
1165 // Store the device
1166 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo92e62c52018-10-03 14:02:54 -04001167}
1168
khenaidoo3ab34882019-05-02 21:33:30 -04001169func (agent *DeviceAgent) enablePorts() error {
1170 agent.lockDevice.Lock()
1171 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -05001172
1173 cloned := agent.getDeviceWithoutLock()
1174
npujar1d86a522019-11-14 17:11:16 +05301175 for _, port := range cloned.Ports {
1176 port.AdminState = voltha.AdminState_ENABLED
1177 port.OperStatus = voltha.OperStatus_ACTIVE
1178 }
1179 // Store the device
1180 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo3ab34882019-05-02 21:33:30 -04001181}
1182
1183func (agent *DeviceAgent) disablePorts() error {
npujar1d86a522019-11-14 17:11:16 +05301184 log.Debugw("disablePorts", log.Fields{"deviceid": agent.deviceID})
khenaidoo3ab34882019-05-02 21:33:30 -04001185 agent.lockDevice.Lock()
1186 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -05001187 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +05301188 for _, port := range cloned.Ports {
1189 port.AdminState = voltha.AdminState_DISABLED
1190 port.OperStatus = voltha.OperStatus_UNKNOWN
1191 }
1192 // Store the device
1193 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo3ab34882019-05-02 21:33:30 -04001194}
1195
serkant.uluderya2ae470f2020-01-21 11:13:09 -08001196func (agent *DeviceAgent) updatePortState(portType voltha.Port_PortType, portNo uint32, operStatus voltha.OperStatus_Types) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001197 agent.lockDevice.Lock()
khenaidoo59ef7be2019-06-21 12:40:28 -04001198 defer agent.lockDevice.Unlock()
khenaidoo92e62c52018-10-03 14:02:54 -04001199 // Work only on latest data
1200 // TODO: Get list of ports from device directly instead of the entire device
khenaidoo6e55d9e2019-12-12 18:26:26 -05001201 cloned := agent.getDeviceWithoutLock()
1202
npujar1d86a522019-11-14 17:11:16 +05301203 // Ensure the enums passed in are valid - they will be invalid if they are not set when this function is invoked
1204 if _, ok := voltha.Port_PortType_value[portType.String()]; !ok {
1205 return status.Errorf(codes.InvalidArgument, "%s", portType)
1206 }
1207 for _, port := range cloned.Ports {
1208 if port.Type == portType && port.PortNo == portNo {
1209 port.OperStatus = operStatus
1210 // Set the admin status to ENABLED if the operational status is ACTIVE
1211 // TODO: Set by northbound system?
1212 if operStatus == voltha.OperStatus_ACTIVE {
1213 port.AdminState = voltha.AdminState_ENABLED
1214 }
1215 break
1216 }
1217 }
1218 log.Debugw("portStatusUpdate", log.Fields{"deviceId": cloned.Id})
1219 // Store the device
1220 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001221}
1222
khenaidoo0a822f92019-05-08 15:15:57 -04001223func (agent *DeviceAgent) deleteAllPorts() error {
npujar1d86a522019-11-14 17:11:16 +05301224 log.Debugw("deleteAllPorts", log.Fields{"deviceId": agent.deviceID})
khenaidoo0a822f92019-05-08 15:15:57 -04001225 agent.lockDevice.Lock()
1226 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -05001227
1228 cloned := agent.getDeviceWithoutLock()
1229
1230 if cloned.AdminState != voltha.AdminState_DISABLED && cloned.AdminState != voltha.AdminState_DELETED {
1231 err := status.Error(codes.FailedPrecondition, fmt.Sprintf("invalid-state-%v", cloned.AdminState))
1232 log.Warnw("invalid-state-removing-ports", log.Fields{"state": cloned.AdminState, "error": err})
npujar1d86a522019-11-14 17:11:16 +05301233 return err
1234 }
khenaidoo6e55d9e2019-12-12 18:26:26 -05001235 if len(cloned.Ports) == 0 {
npujar1d86a522019-11-14 17:11:16 +05301236 log.Debugw("no-ports-present", log.Fields{"deviceId": agent.deviceID})
1237 return nil
1238 }
khenaidoo6e55d9e2019-12-12 18:26:26 -05001239
npujar1d86a522019-11-14 17:11:16 +05301240 cloned.Ports = []*voltha.Port{}
1241 log.Debugw("portStatusUpdate", log.Fields{"deviceId": cloned.Id})
1242 // Store the device
1243 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo0a822f92019-05-08 15:15:57 -04001244}
1245
khenaidoob9203542018-09-17 22:56:37 -04001246func (agent *DeviceAgent) addPort(port *voltha.Port) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001247 agent.lockDevice.Lock()
1248 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +05301249 log.Debugw("addPort", log.Fields{"deviceId": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -05001250
1251 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +05301252 if cloned.Ports == nil {
1253 // First port
1254 log.Debugw("addPort-first-port-to-add", log.Fields{"deviceId": agent.deviceID})
1255 cloned.Ports = make([]*voltha.Port, 0)
khenaidoob9203542018-09-17 22:56:37 -04001256 } else {
npujar1d86a522019-11-14 17:11:16 +05301257 for _, p := range cloned.Ports {
1258 if p.Type == port.Type && p.PortNo == port.PortNo {
1259 log.Debugw("port already exists", log.Fields{"port": *port})
1260 return nil
manikkaraj k259a6f72019-05-06 09:55:44 -04001261 }
khenaidoob9203542018-09-17 22:56:37 -04001262 }
khenaidoo92e62c52018-10-03 14:02:54 -04001263 }
npujar1d86a522019-11-14 17:11:16 +05301264 cp := proto.Clone(port).(*voltha.Port)
1265 // Set the admin state of the port to ENABLE if the operational state is ACTIVE
1266 // TODO: Set by northbound system?
1267 if cp.OperStatus == voltha.OperStatus_ACTIVE {
1268 cp.AdminState = voltha.AdminState_ENABLED
1269 }
1270 cloned.Ports = append(cloned.Ports, cp)
1271 // Store the device
1272 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo92e62c52018-10-03 14:02:54 -04001273}
1274
1275func (agent *DeviceAgent) addPeerPort(port *voltha.Port_PeerPort) error {
1276 agent.lockDevice.Lock()
1277 defer agent.lockDevice.Unlock()
1278 log.Debug("addPeerPort")
khenaidoo6e55d9e2019-12-12 18:26:26 -05001279
1280 cloned := agent.getDeviceWithoutLock()
1281
npujar1d86a522019-11-14 17:11:16 +05301282 // Get the peer port on the device based on the port no
1283 for _, peerPort := range cloned.Ports {
1284 if peerPort.PortNo == port.PortNo { // found port
1285 cp := proto.Clone(port).(*voltha.Port_PeerPort)
1286 peerPort.Peers = append(peerPort.Peers, cp)
1287 log.Debugw("found-peer", log.Fields{"portNo": port.PortNo, "deviceId": agent.deviceID})
1288 break
1289 }
1290 }
1291 // Store the device
1292 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001293}
1294
npujar1d86a522019-11-14 17:11:16 +05301295func (agent *DeviceAgent) deletePeerPorts(deviceID string) error {
khenaidoo0a822f92019-05-08 15:15:57 -04001296 agent.lockDevice.Lock()
1297 defer agent.lockDevice.Unlock()
1298 log.Debug("deletePeerPorts")
khenaidoo6e55d9e2019-12-12 18:26:26 -05001299
1300 cloned := agent.getDeviceWithoutLock()
1301
npujar1d86a522019-11-14 17:11:16 +05301302 var updatedPeers []*voltha.Port_PeerPort
1303 for _, port := range cloned.Ports {
1304 updatedPeers = make([]*voltha.Port_PeerPort, 0)
1305 for _, peerPort := range port.Peers {
1306 if peerPort.DeviceId != deviceID {
1307 updatedPeers = append(updatedPeers, peerPort)
1308 }
1309 }
1310 port.Peers = updatedPeers
1311 }
1312
1313 // Store the device with updated peer ports
1314 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo0a822f92019-05-08 15:15:57 -04001315}
1316
khenaidoob9203542018-09-17 22:56:37 -04001317// TODO: A generic device update by attribute
1318func (agent *DeviceAgent) updateDeviceAttribute(name string, value interface{}) {
khenaidoo92e62c52018-10-03 14:02:54 -04001319 agent.lockDevice.Lock()
1320 defer agent.lockDevice.Unlock()
khenaidoob9203542018-09-17 22:56:37 -04001321 if value == nil {
1322 return
1323 }
khenaidoo6e55d9e2019-12-12 18:26:26 -05001324
1325 cloned := agent.getDeviceWithoutLock()
khenaidoob9203542018-09-17 22:56:37 -04001326 updated := false
khenaidoo6e55d9e2019-12-12 18:26:26 -05001327 s := reflect.ValueOf(cloned).Elem()
khenaidoob9203542018-09-17 22:56:37 -04001328 if s.Kind() == reflect.Struct {
1329 // exported field
1330 f := s.FieldByName(name)
1331 if f.IsValid() && f.CanSet() {
1332 switch f.Kind() {
1333 case reflect.String:
1334 f.SetString(value.(string))
1335 updated = true
1336 case reflect.Uint32:
1337 f.SetUint(uint64(value.(uint32)))
1338 updated = true
1339 case reflect.Bool:
1340 f.SetBool(value.(bool))
1341 updated = true
1342 }
1343 }
1344 }
khenaidoo6e55d9e2019-12-12 18:26:26 -05001345 log.Debugw("update-field-status", log.Fields{"deviceId": cloned.Id, "name": name, "updated": updated})
khenaidoob9203542018-09-17 22:56:37 -04001346 // Save the data
khenaidoo6e55d9e2019-12-12 18:26:26 -05001347
1348 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
khenaidoob9203542018-09-17 22:56:37 -04001349 log.Warnw("attribute-update-failed", log.Fields{"attribute": name, "value": value})
1350 }
khenaidoob9203542018-09-17 22:56:37 -04001351}
serkant.uluderya334479d2019-04-10 08:26:15 -07001352
1353func (agent *DeviceAgent) simulateAlarm(ctx context.Context, simulatereq *voltha.SimulateAlarmRequest) error {
1354 agent.lockDevice.Lock()
1355 defer agent.lockDevice.Unlock()
npujar1d86a522019-11-14 17:11:16 +05301356 log.Debugw("simulateAlarm", log.Fields{"id": agent.deviceID})
khenaidoo6e55d9e2019-12-12 18:26:26 -05001357
1358 cloned := agent.getDeviceWithoutLock()
1359
npujar1d86a522019-11-14 17:11:16 +05301360 // First send the request to an Adapter and wait for a response
khenaidoo6e55d9e2019-12-12 18:26:26 -05001361 if err := agent.adapterProxy.SimulateAlarm(ctx, cloned, simulatereq); err != nil {
npujar1d86a522019-11-14 17:11:16 +05301362 log.Debugw("simulateAlarm-error", log.Fields{"id": agent.deviceID, "error": err})
1363 return err
serkant.uluderya334479d2019-04-10 08:26:15 -07001364 }
1365 return nil
1366}
Mahir Gunyelb5851672019-07-24 10:46:26 +03001367
1368//This is an update operation to model without Lock.This function must never be invoked by another function unless the latter holds a lock on the device.
1369// It is an internal helper function.
1370func (agent *DeviceAgent) updateDeviceInStoreWithoutLock(device *voltha.Device, strict bool, txid string) error {
1371 updateCtx := context.WithValue(context.Background(), model.RequestTimestamp, time.Now().UnixNano())
Thomas Lee Se5a44012019-11-07 20:32:24 +05301372 afterUpdate, err := agent.clusterDataProxy.Update(updateCtx, "/devices/"+agent.deviceID, device, strict, txid)
1373 if err != nil {
1374 return status.Errorf(codes.Internal, "failed-update-device:%s", agent.deviceID)
1375 }
1376 if afterUpdate == nil {
npujar1d86a522019-11-14 17:11:16 +05301377 return status.Errorf(codes.Internal, "failed-update-device:%s", agent.deviceID)
Mahir Gunyelb5851672019-07-24 10:46:26 +03001378 }
npujar1d86a522019-11-14 17:11:16 +05301379 log.Debugw("updated-device-in-store", log.Fields{"deviceId: ": agent.deviceID})
Mahir Gunyelb5851672019-07-24 10:46:26 +03001380
khenaidoo6e55d9e2019-12-12 18:26:26 -05001381 agent.device = proto.Clone(device).(*voltha.Device)
1382
Mahir Gunyelb5851672019-07-24 10:46:26 +03001383 return nil
1384}
Mahir Gunyelfdee9212019-10-16 16:52:21 -07001385
1386func (agent *DeviceAgent) updateDeviceReason(reason string) error {
1387 agent.lockDevice.Lock()
1388 defer agent.lockDevice.Unlock()
khenaidoo6e55d9e2019-12-12 18:26:26 -05001389
1390 cloned := agent.getDeviceWithoutLock()
npujar1d86a522019-11-14 17:11:16 +05301391 cloned.Reason = reason
1392 log.Debugw("updateDeviceReason", log.Fields{"deviceId": cloned.Id, "reason": cloned.Reason})
1393 // Store the device
1394 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
Mahir Gunyelfdee9212019-10-16 16:52:21 -07001395}