blob: 6921612b9620c0e30466900925e07b56ccec20a5 [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 */
16package core
17
18import (
19 "context"
khenaidoo3ab34882019-05-02 21:33:30 -040020 "fmt"
khenaidoob9203542018-09-17 22:56:37 -040021 "github.com/gogo/protobuf/proto"
Scott Bakerb671a862019-10-24 10:53:40 -070022 coreutils "github.com/opencord/voltha-go/rw_core/utils"
Scott Baker807addd2019-10-24 15:16:21 -070023 "github.com/opencord/voltha-lib-go/v2/pkg/db/model"
24 fu "github.com/opencord/voltha-lib-go/v2/pkg/flows"
25 "github.com/opencord/voltha-lib-go/v2/pkg/log"
William Kurkiandaa6bb22019-03-07 12:26:28 -050026 ic "github.com/opencord/voltha-protos/go/inter_container"
27 ofp "github.com/opencord/voltha-protos/go/openflow_13"
28 "github.com/opencord/voltha-protos/go/voltha"
khenaidoob9203542018-09-17 22:56:37 -040029 "google.golang.org/grpc/codes"
30 "google.golang.org/grpc/status"
khenaidoo19d7b632018-10-30 10:49:50 -040031 "reflect"
32 "sync"
Stephane Barbarieef6650d2019-07-18 12:15:09 -040033 "time"
khenaidoob9203542018-09-17 22:56:37 -040034)
35
36type DeviceAgent struct {
khenaidoo9a468962018-09-19 15:33:13 -040037 deviceId string
khenaidoo6d62c002019-05-15 21:57:03 -040038 parentId string
khenaidoo43c82122018-11-22 18:38:28 -050039 deviceType string
khenaidoo2c6a0992019-04-29 13:46:56 -040040 isRootdevice bool
khenaidoo9a468962018-09-19 15:33:13 -040041 lastData *voltha.Device
42 adapterProxy *AdapterProxy
serkant.uluderya334479d2019-04-10 08:26:15 -070043 adapterMgr *AdapterManager
khenaidoo9a468962018-09-19 15:33:13 -040044 deviceMgr *DeviceManager
45 clusterDataProxy *model.Proxy
khenaidoo92e62c52018-10-03 14:02:54 -040046 deviceProxy *model.Proxy
khenaidoo9a468962018-09-19 15:33:13 -040047 exitChannel chan int
khenaidoo92e62c52018-10-03 14:02:54 -040048 lockDevice sync.RWMutex
khenaidoo2c6a0992019-04-29 13:46:56 -040049 defaultTimeout int64
khenaidoob9203542018-09-17 22:56:37 -040050}
51
khenaidoo4d4802d2018-10-04 21:59:49 -040052//newDeviceAgent creates a new device agent along as creating a unique ID for the device and set the device state to
53//preprovisioning
khenaidoo2c6a0992019-04-29 13:46:56 -040054func newDeviceAgent(ap *AdapterProxy, device *voltha.Device, deviceMgr *DeviceManager, cdProxy *model.Proxy, timeout int64) *DeviceAgent {
khenaidoob9203542018-09-17 22:56:37 -040055 var agent DeviceAgent
khenaidoob9203542018-09-17 22:56:37 -040056 agent.adapterProxy = ap
khenaidoo92e62c52018-10-03 14:02:54 -040057 cloned := (proto.Clone(device)).(*voltha.Device)
Stephane Barbarie1ab43272018-12-08 21:42:13 -050058 if cloned.Id == "" {
59 cloned.Id = CreateDeviceId()
khenaidoo297cd252019-02-07 22:10:23 -050060 cloned.AdminState = voltha.AdminState_PREPROVISIONED
61 cloned.FlowGroups = &ofp.FlowGroups{Items: nil}
62 cloned.Flows = &ofp.Flows{Items: nil}
Stephane Barbarie1ab43272018-12-08 21:42:13 -050063 }
khenaidoo19d7b632018-10-30 10:49:50 -040064 if !device.GetRoot() && device.ProxyAddress != nil {
65 // Set the default vlan ID to the one specified by the parent adapter. It can be
66 // overwritten by the child adapter during a device update request
67 cloned.Vlan = device.ProxyAddress.ChannelId
68 }
khenaidoo2c6a0992019-04-29 13:46:56 -040069 agent.isRootdevice = device.Root
khenaidoo92e62c52018-10-03 14:02:54 -040070 agent.deviceId = cloned.Id
khenaidoo6d62c002019-05-15 21:57:03 -040071 agent.parentId = device.ParentId
khenaidoofdbad6e2018-11-06 22:26:38 -050072 agent.deviceType = cloned.Type
khenaidoo92e62c52018-10-03 14:02:54 -040073 agent.lastData = cloned
khenaidoob9203542018-09-17 22:56:37 -040074 agent.deviceMgr = deviceMgr
khenaidoo21d51152019-02-01 13:48:37 -050075 agent.adapterMgr = deviceMgr.adapterMgr
khenaidoob9203542018-09-17 22:56:37 -040076 agent.exitChannel = make(chan int, 1)
khenaidoo9a468962018-09-19 15:33:13 -040077 agent.clusterDataProxy = cdProxy
khenaidoo92e62c52018-10-03 14:02:54 -040078 agent.lockDevice = sync.RWMutex{}
khenaidoo2c6a0992019-04-29 13:46:56 -040079 agent.defaultTimeout = timeout
khenaidoob9203542018-09-17 22:56:37 -040080 return &agent
81}
82
khenaidoo297cd252019-02-07 22:10:23 -050083// start save the device to the data model and registers for callbacks on that device if loadFromdB is false. Otherwise,
84// it will load the data from the dB and setup teh necessary callbacks and proxies.
85func (agent *DeviceAgent) start(ctx context.Context, loadFromdB bool) error {
khenaidoo92e62c52018-10-03 14:02:54 -040086 agent.lockDevice.Lock()
87 defer agent.lockDevice.Unlock()
khenaidoo297cd252019-02-07 22:10:23 -050088 log.Debugw("starting-device-agent", log.Fields{"deviceId": agent.deviceId})
89 if loadFromdB {
Stephane Barbarieef6650d2019-07-18 12:15:09 -040090 if device := agent.clusterDataProxy.Get(ctx, "/devices/"+agent.deviceId, 1, false, ""); device != nil {
khenaidoo297cd252019-02-07 22:10:23 -050091 if d, ok := device.(*voltha.Device); ok {
92 agent.lastData = proto.Clone(d).(*voltha.Device)
khenaidoo6d055132019-02-12 16:51:19 -050093 agent.deviceType = agent.lastData.Adapter
khenaidoo297cd252019-02-07 22:10:23 -050094 }
95 } else {
96 log.Errorw("failed-to-load-device", log.Fields{"deviceId": agent.deviceId})
97 return status.Errorf(codes.NotFound, "device-%s", agent.deviceId)
98 }
khenaidoo4c9e5592019-09-09 16:20:41 -040099 log.Debugw("device-loaded-from-dB", log.Fields{"deviceId": agent.deviceId})
khenaidoo297cd252019-02-07 22:10:23 -0500100 } else {
101 // Add the initial device to the local model
Stephane Barbarieef6650d2019-07-18 12:15:09 -0400102 if added := agent.clusterDataProxy.AddWithID(ctx, "/devices", agent.deviceId, agent.lastData, ""); added == nil {
khenaidoo297cd252019-02-07 22:10:23 -0500103 log.Errorw("failed-to-add-device", log.Fields{"deviceId": agent.deviceId})
khenaidoo4c9e5592019-09-09 16:20:41 -0400104 return status.Errorf(codes.Aborted, "failed-adding-device-%s", agent.deviceId)
khenaidoo297cd252019-02-07 22:10:23 -0500105 }
khenaidoob9203542018-09-17 22:56:37 -0400106 }
khenaidoo297cd252019-02-07 22:10:23 -0500107
Stephane Barbarieef6650d2019-07-18 12:15:09 -0400108 agent.deviceProxy = agent.clusterDataProxy.CreateProxy(ctx, "/devices/"+agent.deviceId, false)
khenaidoo43c82122018-11-22 18:38:28 -0500109 agent.deviceProxy.RegisterCallback(model.POST_UPDATE, agent.processUpdate)
khenaidoo19d7b632018-10-30 10:49:50 -0400110
khenaidoo4c9e5592019-09-09 16:20:41 -0400111 log.Debugw("device-agent-started", log.Fields{"deviceId": agent.deviceId})
khenaidoo297cd252019-02-07 22:10:23 -0500112 return nil
khenaidoob9203542018-09-17 22:56:37 -0400113}
114
khenaidoo4d4802d2018-10-04 21:59:49 -0400115// stop stops the device agent. Not much to do for now
116func (agent *DeviceAgent) stop(ctx context.Context) {
khenaidoo92e62c52018-10-03 14:02:54 -0400117 agent.lockDevice.Lock()
118 defer agent.lockDevice.Unlock()
khenaidoob9203542018-09-17 22:56:37 -0400119 log.Debug("stopping-device-agent")
khenaidoo0a822f92019-05-08 15:15:57 -0400120 // Remove the device from the KV store
Stephane Barbarieef6650d2019-07-18 12:15:09 -0400121 if removed := agent.clusterDataProxy.Remove(ctx, "/devices/"+agent.deviceId, ""); removed == nil {
khenaidoo4554f7c2019-05-29 22:13:15 -0400122 log.Debugw("device-already-removed", log.Fields{"id": agent.deviceId})
khenaidoo0a822f92019-05-08 15:15:57 -0400123 }
khenaidoob9203542018-09-17 22:56:37 -0400124 agent.exitChannel <- 1
125 log.Debug("device-agent-stopped")
khenaidoo0a822f92019-05-08 15:15:57 -0400126
khenaidoob9203542018-09-17 22:56:37 -0400127}
128
khenaidoo19d7b632018-10-30 10:49:50 -0400129// GetDevice retrieves the latest device information from the data model
khenaidoo92e62c52018-10-03 14:02:54 -0400130func (agent *DeviceAgent) getDevice() (*voltha.Device, error) {
khenaidoo1ce37ad2019-03-24 22:07:24 -0400131 agent.lockDevice.RLock()
132 defer agent.lockDevice.RUnlock()
Stephane Barbarieb6b68c42019-10-10 16:05:13 -0400133 if device := agent.clusterDataProxy.Get(context.Background(), "/devices/"+agent.deviceId, 0, false, ""); device != nil {
khenaidoo92e62c52018-10-03 14:02:54 -0400134 if d, ok := device.(*voltha.Device); ok {
135 cloned := proto.Clone(d).(*voltha.Device)
136 return cloned, nil
137 }
138 }
139 return nil, status.Errorf(codes.NotFound, "device-%s", agent.deviceId)
140}
141
khenaidoo4d4802d2018-10-04 21:59:49 -0400142// getDeviceWithoutLock is a helper function to be used ONLY by any device agent function AFTER it has acquired the device lock.
khenaidoo92e62c52018-10-03 14:02:54 -0400143// This function is meant so that we do not have duplicate code all over the device agent functions
144func (agent *DeviceAgent) getDeviceWithoutLock() (*voltha.Device, error) {
Stephane Barbarieef6650d2019-07-18 12:15:09 -0400145 if device := agent.clusterDataProxy.Get(context.Background(), "/devices/"+agent.deviceId, 0, false, ""); device != nil {
khenaidoo92e62c52018-10-03 14:02:54 -0400146 if d, ok := device.(*voltha.Device); ok {
147 cloned := proto.Clone(d).(*voltha.Device)
148 return cloned, nil
149 }
150 }
151 return nil, status.Errorf(codes.NotFound, "device-%s", agent.deviceId)
152}
153
khenaidoo3ab34882019-05-02 21:33:30 -0400154// enableDevice activates a preprovisioned or a disable device
khenaidoob9203542018-09-17 22:56:37 -0400155func (agent *DeviceAgent) enableDevice(ctx context.Context) error {
khenaidoo92e62c52018-10-03 14:02:54 -0400156 agent.lockDevice.Lock()
157 defer agent.lockDevice.Unlock()
158 log.Debugw("enableDevice", log.Fields{"id": agent.deviceId})
khenaidoo21d51152019-02-01 13:48:37 -0500159
khenaidoo92e62c52018-10-03 14:02:54 -0400160 if device, err := agent.getDeviceWithoutLock(); err != nil {
khenaidoob9203542018-09-17 22:56:37 -0400161 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
162 } else {
khenaidoo21d51152019-02-01 13:48:37 -0500163 // First figure out which adapter will handle this device type. We do it at this stage as allow devices to be
164 // pre-provisionned with the required adapter not registered. At this stage, since we need to communicate
165 // with the adapter then we need to know the adapter that will handle this request
166 if adapterName, err := agent.adapterMgr.getAdapterName(device.Type); err != nil {
167 log.Warnw("no-adapter-registered-for-device-type", log.Fields{"deviceType": device.Type, "deviceAdapter": device.Adapter})
168 return err
169 } else {
170 device.Adapter = adapterName
171 }
172
khenaidoo92e62c52018-10-03 14:02:54 -0400173 if device.AdminState == voltha.AdminState_ENABLED {
174 log.Debugw("device-already-enabled", log.Fields{"id": agent.deviceId})
khenaidoo92e62c52018-10-03 14:02:54 -0400175 return nil
176 }
khenaidoo59ef7be2019-06-21 12:40:28 -0400177
178 if device.AdminState == voltha.AdminState_DELETED {
179 // This is a temporary state when a device is deleted before it gets removed from the model.
180 err = status.Error(codes.FailedPrecondition, fmt.Sprintf("cannot-enable-a-deleted-device: %s ", device.Id))
181 log.Warnw("invalid-state", log.Fields{"id": agent.deviceId, "state": device.AdminState, "error": err})
182 return err
khenaidoo3ab34882019-05-02 21:33:30 -0400183 }
khenaidoo59ef7be2019-06-21 12:40:28 -0400184
185 previousAdminState := device.AdminState
186
187 // Update the Admin State and set the operational state to activating before sending the request to the
188 // Adapters
189 cloned := proto.Clone(device).(*voltha.Device)
190 cloned.AdminState = voltha.AdminState_ENABLED
191 cloned.OperStatus = voltha.OperStatus_ACTIVATING
Stephane Barbarieef6650d2019-07-18 12:15:09 -0400192
Mahir Gunyelb5851672019-07-24 10:46:26 +0300193 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
194 return err
khenaidoo59ef7be2019-06-21 12:40:28 -0400195 }
196
197 // Adopt the device if it was in preprovision state. In all other cases, try to reenable it.
198 if previousAdminState == voltha.AdminState_PREPROVISIONED {
khenaidoo92e62c52018-10-03 14:02:54 -0400199 if err := agent.adapterProxy.AdoptDevice(ctx, device); err != nil {
200 log.Debugw("adoptDevice-error", log.Fields{"id": agent.lastData.Id, "error": err})
khenaidoob9203542018-09-17 22:56:37 -0400201 return err
202 }
khenaidoo59ef7be2019-06-21 12:40:28 -0400203 } else {
khenaidoo92e62c52018-10-03 14:02:54 -0400204 if err := agent.adapterProxy.ReEnableDevice(ctx, device); err != nil {
205 log.Debugw("renableDevice-error", log.Fields{"id": agent.lastData.Id, "error": err})
206 return err
207 }
khenaidoob9203542018-09-17 22:56:37 -0400208 }
209 }
210 return nil
211}
212
khenaidoo2c6a0992019-04-29 13:46:56 -0400213func (agent *DeviceAgent) updateDeviceWithoutLockAsync(device *voltha.Device, ch chan interface{}) {
214 if err := agent.updateDeviceWithoutLock(device); err != nil {
215 ch <- status.Errorf(codes.Internal, "failure-updating-%s", agent.deviceId)
khenaidoo19d7b632018-10-30 10:49:50 -0400216 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400217 ch <- nil
khenaidoo19d7b632018-10-30 10:49:50 -0400218}
219
Manikkaraj kb1a10922019-07-29 12:10:34 -0400220func (agent *DeviceAgent) sendBulkFlowsToAdapters(device *voltha.Device, flows *voltha.Flows, groups *voltha.FlowGroups, flowMetadata *voltha.FlowMetadata, ch chan interface{}) {
221 if err := agent.adapterProxy.UpdateFlowsBulk(device, flows, groups, flowMetadata); err != nil {
khenaidoo2c6a0992019-04-29 13:46:56 -0400222 log.Debugw("update-flow-bulk-error", log.Fields{"id": agent.lastData.Id, "error": err})
223 ch <- err
224 }
225 ch <- nil
226}
227
Manikkaraj kb1a10922019-07-29 12:10:34 -0400228func (agent *DeviceAgent) sendIncrementalFlowsToAdapters(device *voltha.Device, flows *ofp.FlowChanges, groups *ofp.FlowGroupChanges, flowMetadata *voltha.FlowMetadata, ch chan interface{}) {
229 if err := agent.adapterProxy.UpdateFlowsIncremental(device, flows, groups, flowMetadata); err != nil {
khenaidoo2c6a0992019-04-29 13:46:56 -0400230 log.Debugw("update-flow-incremental-error", log.Fields{"id": agent.lastData.Id, "error": err})
231 ch <- err
232 }
233 ch <- nil
234}
235
khenaidoo0458db62019-06-20 08:50:36 -0400236//addFlowsAndGroups adds the "newFlows" and "newGroups" from the existing flows/groups and sends the update to the
237//adapters
Manikkaraj kb1a10922019-07-29 12:10:34 -0400238func (agent *DeviceAgent) addFlowsAndGroups(newFlows []*ofp.OfpFlowStats, newGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
239 log.Debugw("addFlowsAndGroups", log.Fields{"deviceId": agent.deviceId, "flows": newFlows, "groups": newGroups, "flowMetadata": flowMetadata})
khenaidoo0458db62019-06-20 08:50:36 -0400240
khenaidoo2c6a0992019-04-29 13:46:56 -0400241 if (len(newFlows) | len(newGroups)) == 0 {
242 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": newFlows, "groups": newGroups})
243 return nil
244 }
245
khenaidoo19d7b632018-10-30 10:49:50 -0400246 agent.lockDevice.Lock()
247 defer agent.lockDevice.Unlock()
khenaidoo2c6a0992019-04-29 13:46:56 -0400248
khenaidoo0458db62019-06-20 08:50:36 -0400249 var device *voltha.Device
250 var err error
251 if device, err = agent.getDeviceWithoutLock(); err != nil {
252 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
253 }
254
255 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
256 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
257
258 var updatedFlows []*ofp.OfpFlowStats
259 var flowsToDelete []*ofp.OfpFlowStats
260 var groupsToDelete []*ofp.OfpGroupEntry
261 var updatedGroups []*ofp.OfpGroupEntry
262
263 // Process flows
264 for _, flow := range newFlows {
265 updatedFlows = append(updatedFlows, flow)
266 }
267 for _, flow := range existingFlows.Items {
268 if idx := fu.FindFlows(newFlows, flow); idx == -1 {
269 updatedFlows = append(updatedFlows, flow)
270 } else {
271 flowsToDelete = append(flowsToDelete, flow)
272 }
273 }
274
275 // Process groups
276 for _, g := range newGroups {
277 updatedGroups = append(updatedGroups, g)
278 }
279 for _, group := range existingGroups.Items {
280 if fu.FindGroup(newGroups, group.Desc.GroupId) == -1 { // does not exist now
281 updatedGroups = append(updatedGroups, group)
282 } else {
283 groupsToDelete = append(groupsToDelete, group)
284 }
285 }
286
287 // Sanity check
288 if (len(updatedFlows) | len(flowsToDelete) | len(updatedGroups) | len(groupsToDelete)) == 0 {
289 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": newFlows, "groups": newGroups})
290 return nil
291 }
292
293 // Send update to adapters
294 // Create two channels to receive responses from the dB and from the adapters.
295 // Do not close these channels as this function may exit on timeout before the dB or adapters get a chance
296 // to send their responses. These channels will be garbage collected once all the responses are
297 // received
298 chAdapters := make(chan interface{})
299 chdB := make(chan interface{})
300 dType := agent.adapterMgr.getDeviceType(device.Type)
301 if !dType.AcceptsAddRemoveFlowUpdates {
302
303 if len(updatedGroups) != 0 && reflect.DeepEqual(existingGroups.Items, updatedGroups) && len(updatedFlows) != 0 && reflect.DeepEqual(existingFlows.Items, updatedFlows) {
304 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": newFlows, "groups": newGroups})
305 return nil
306 }
Manikkaraj kb1a10922019-07-29 12:10:34 -0400307 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: updatedFlows}, &voltha.FlowGroups{Items: updatedGroups}, flowMetadata, chAdapters)
khenaidoo0458db62019-06-20 08:50:36 -0400308
309 } else {
310 flowChanges := &ofp.FlowChanges{
311 ToAdd: &voltha.Flows{Items: newFlows},
312 ToRemove: &voltha.Flows{Items: flowsToDelete},
313 }
314 groupChanges := &ofp.FlowGroupChanges{
315 ToAdd: &voltha.FlowGroups{Items: newGroups},
316 ToRemove: &voltha.FlowGroups{Items: groupsToDelete},
317 ToUpdate: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
318 }
Manikkaraj kb1a10922019-07-29 12:10:34 -0400319 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, chAdapters)
khenaidoo0458db62019-06-20 08:50:36 -0400320 }
321
322 // store the changed data
323 device.Flows = &voltha.Flows{Items: updatedFlows}
324 device.FlowGroups = &voltha.FlowGroups{Items: updatedGroups}
325 go agent.updateDeviceWithoutLockAsync(device, chdB)
326
Scott Bakerb671a862019-10-24 10:53:40 -0700327 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, chAdapters, chdB); res != nil {
Manikkaraj kb1a10922019-07-29 12:10:34 -0400328 log.Debugw("Failed to get response from adapter[or] DB", log.Fields{"result": res})
khenaidoo0458db62019-06-20 08:50:36 -0400329 return status.Errorf(codes.Aborted, "errors-%s", res)
330 }
331
332 return nil
333}
334
335//deleteFlowsAndGroups removes the "flowsToDel" and "groupsToDel" from the existing flows/groups and sends the update to the
336//adapters
Manikkaraj kb1a10922019-07-29 12:10:34 -0400337func (agent *DeviceAgent) deleteFlowsAndGroups(flowsToDel []*ofp.OfpFlowStats, groupsToDel []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
khenaidoo0458db62019-06-20 08:50:36 -0400338 log.Debugw("deleteFlowsAndGroups", log.Fields{"deviceId": agent.deviceId, "flows": flowsToDel, "groups": groupsToDel})
339
340 if (len(flowsToDel) | len(groupsToDel)) == 0 {
341 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": flowsToDel, "groups": groupsToDel})
342 return nil
343 }
344
345 agent.lockDevice.Lock()
346 defer agent.lockDevice.Unlock()
347
348 var device *voltha.Device
349 var err error
350
351 if device, err = agent.getDeviceWithoutLock(); err != nil {
352 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
353 }
354
355 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
356 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
357
358 var flowsToKeep []*ofp.OfpFlowStats
359 var groupsToKeep []*ofp.OfpGroupEntry
360
361 // Process flows
362 for _, flow := range existingFlows.Items {
363 if idx := fu.FindFlows(flowsToDel, flow); idx == -1 {
364 flowsToKeep = append(flowsToKeep, flow)
365 }
366 }
367
368 // Process groups
369 for _, group := range existingGroups.Items {
370 if fu.FindGroup(groupsToDel, group.Desc.GroupId) == -1 { // does not exist now
371 groupsToKeep = append(groupsToKeep, group)
372 }
373 }
374
375 log.Debugw("deleteFlowsAndGroups",
376 log.Fields{
377 "deviceId": agent.deviceId,
378 "flowsToDel": len(flowsToDel),
379 "flowsToKeep": len(flowsToKeep),
380 "groupsToDel": len(groupsToDel),
381 "groupsToKeep": len(groupsToKeep),
382 })
383
384 // Sanity check
385 if (len(flowsToKeep) | len(flowsToDel) | len(groupsToKeep) | len(groupsToDel)) == 0 {
386 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flowsToDel": flowsToDel, "groupsToDel": groupsToDel})
387 return nil
388 }
389
390 // Send update to adapters
391 chAdapters := make(chan interface{})
392 chdB := make(chan interface{})
393 dType := agent.adapterMgr.getDeviceType(device.Type)
394 if !dType.AcceptsAddRemoveFlowUpdates {
395 if len(groupsToKeep) != 0 && reflect.DeepEqual(existingGroups.Items, groupsToKeep) && len(flowsToKeep) != 0 && reflect.DeepEqual(existingFlows.Items, flowsToKeep) {
396 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flowsToDel": flowsToDel, "groupsToDel": groupsToDel})
397 return nil
398 }
Manikkaraj kb1a10922019-07-29 12:10:34 -0400399 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: flowsToKeep}, &voltha.FlowGroups{Items: groupsToKeep}, flowMetadata, chAdapters)
khenaidoo0458db62019-06-20 08:50:36 -0400400 } else {
401 flowChanges := &ofp.FlowChanges{
402 ToAdd: &voltha.Flows{Items: []*ofp.OfpFlowStats{}},
403 ToRemove: &voltha.Flows{Items: flowsToDel},
404 }
405 groupChanges := &ofp.FlowGroupChanges{
406 ToAdd: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
407 ToRemove: &voltha.FlowGroups{Items: groupsToDel},
408 ToUpdate: &voltha.FlowGroups{Items: []*ofp.OfpGroupEntry{}},
409 }
Manikkaraj kb1a10922019-07-29 12:10:34 -0400410 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, chAdapters)
khenaidoo0458db62019-06-20 08:50:36 -0400411 }
412
413 // store the changed data
414 device.Flows = &voltha.Flows{Items: flowsToKeep}
415 device.FlowGroups = &voltha.FlowGroups{Items: groupsToKeep}
416 go agent.updateDeviceWithoutLockAsync(device, chdB)
417
Scott Bakerb671a862019-10-24 10:53:40 -0700418 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, chAdapters, chdB); res != nil {
khenaidoo0458db62019-06-20 08:50:36 -0400419 return status.Errorf(codes.Aborted, "errors-%s", res)
420 }
421 return nil
422
423}
424
425//updateFlowsAndGroups replaces the existing flows and groups with "updatedFlows" and "updatedGroups" respectively. It
426//also sends the updates to the adapters
Manikkaraj kb1a10922019-07-29 12:10:34 -0400427func (agent *DeviceAgent) updateFlowsAndGroups(updatedFlows []*ofp.OfpFlowStats, updatedGroups []*ofp.OfpGroupEntry, flowMetadata *voltha.FlowMetadata) error {
khenaidoo0458db62019-06-20 08:50:36 -0400428 log.Debugw("updateFlowsAndGroups", log.Fields{"deviceId": agent.deviceId, "flows": updatedFlows, "groups": updatedGroups})
429
430 if (len(updatedFlows) | len(updatedGroups)) == 0 {
431 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": updatedFlows, "groups": updatedGroups})
432 return nil
433 }
434
435 agent.lockDevice.Lock()
436 defer agent.lockDevice.Unlock()
437 var device *voltha.Device
438 var err error
439 if device, err = agent.getDeviceWithoutLock(); err != nil {
440 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
441 }
442 existingFlows := proto.Clone(device.Flows).(*voltha.Flows)
443 existingGroups := proto.Clone(device.FlowGroups).(*ofp.FlowGroups)
444
445 if len(updatedGroups) != 0 && reflect.DeepEqual(existingGroups.Items, updatedGroups) && len(updatedFlows) != 0 && reflect.DeepEqual(existingFlows.Items, updatedFlows) {
446 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": updatedFlows, "groups": updatedGroups})
447 return nil
448 }
449
450 log.Debugw("updating-flows-and-groups",
451 log.Fields{
452 "deviceId": agent.deviceId,
453 "updatedFlows": updatedFlows,
454 "updatedGroups": updatedGroups,
455 })
456
457 chAdapters := make(chan interface{})
458 chdB := make(chan interface{})
459 dType := agent.adapterMgr.getDeviceType(device.Type)
460
461 // Process bulk flow update differently than incremental update
462 if !dType.AcceptsAddRemoveFlowUpdates {
Manikkaraj kb1a10922019-07-29 12:10:34 -0400463 go agent.sendBulkFlowsToAdapters(device, &voltha.Flows{Items: updatedFlows}, &voltha.FlowGroups{Items: updatedGroups}, nil, chAdapters)
khenaidoo0458db62019-06-20 08:50:36 -0400464 } else {
465 var flowsToAdd []*ofp.OfpFlowStats
khenaidoo2c6a0992019-04-29 13:46:56 -0400466 var flowsToDelete []*ofp.OfpFlowStats
khenaidoo0458db62019-06-20 08:50:36 -0400467 var groupsToAdd []*ofp.OfpGroupEntry
khenaidoo2c6a0992019-04-29 13:46:56 -0400468 var groupsToDelete []*ofp.OfpGroupEntry
khenaidoo2c6a0992019-04-29 13:46:56 -0400469
470 // Process flows
khenaidoo0458db62019-06-20 08:50:36 -0400471 for _, flow := range updatedFlows {
472 if idx := fu.FindFlows(existingFlows.Items, flow); idx == -1 {
473 flowsToAdd = append(flowsToAdd, flow)
474 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400475 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400476 for _, flow := range existingFlows.Items {
khenaidoo0458db62019-06-20 08:50:36 -0400477 if idx := fu.FindFlows(updatedFlows, flow); idx != -1 {
khenaidoo2c6a0992019-04-29 13:46:56 -0400478 flowsToDelete = append(flowsToDelete, flow)
479 }
480 }
481
482 // Process groups
khenaidoo0458db62019-06-20 08:50:36 -0400483 for _, g := range updatedGroups {
484 if fu.FindGroup(existingGroups.Items, g.Desc.GroupId) == -1 { // does not exist now
485 groupsToAdd = append(groupsToAdd, g)
486 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400487 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400488 for _, group := range existingGroups.Items {
khenaidoo0458db62019-06-20 08:50:36 -0400489 if fu.FindGroup(updatedGroups, group.Desc.GroupId) != -1 { // does not exist now
khenaidoo2c6a0992019-04-29 13:46:56 -0400490 groupsToDelete = append(groupsToDelete, group)
491 }
492 }
493
khenaidoo0458db62019-06-20 08:50:36 -0400494 log.Debugw("updating-flows-and-groups",
495 log.Fields{
496 "deviceId": agent.deviceId,
497 "flowsToAdd": flowsToAdd,
498 "flowsToDelete": flowsToDelete,
499 "groupsToAdd": groupsToAdd,
500 "groupsToDelete": groupsToDelete,
501 })
502
khenaidoo2c6a0992019-04-29 13:46:56 -0400503 // Sanity check
khenaidoo0458db62019-06-20 08:50:36 -0400504 if (len(flowsToAdd) | len(flowsToDelete) | len(groupsToAdd) | len(groupsToDelete) | len(updatedGroups)) == 0 {
505 log.Debugw("nothing-to-update", log.Fields{"deviceId": agent.deviceId, "flows": updatedFlows, "groups": updatedGroups})
khenaidoo2c6a0992019-04-29 13:46:56 -0400506 return nil
khenaidoo2c6a0992019-04-29 13:46:56 -0400507 }
508
khenaidoo0458db62019-06-20 08:50:36 -0400509 flowChanges := &ofp.FlowChanges{
510 ToAdd: &voltha.Flows{Items: flowsToAdd},
511 ToRemove: &voltha.Flows{Items: flowsToDelete},
khenaidoo19d7b632018-10-30 10:49:50 -0400512 }
khenaidoo0458db62019-06-20 08:50:36 -0400513 groupChanges := &ofp.FlowGroupChanges{
514 ToAdd: &voltha.FlowGroups{Items: groupsToAdd},
515 ToRemove: &voltha.FlowGroups{Items: groupsToDelete},
516 ToUpdate: &voltha.FlowGroups{Items: updatedGroups},
517 }
Manikkaraj kb1a10922019-07-29 12:10:34 -0400518 go agent.sendIncrementalFlowsToAdapters(device, flowChanges, groupChanges, flowMetadata, chAdapters)
khenaidoo19d7b632018-10-30 10:49:50 -0400519 }
khenaidoo0458db62019-06-20 08:50:36 -0400520
521 // store the updated data
522 device.Flows = &voltha.Flows{Items: updatedFlows}
523 device.FlowGroups = &voltha.FlowGroups{Items: updatedGroups}
524 go agent.updateDeviceWithoutLockAsync(device, chdB)
525
Scott Bakerb671a862019-10-24 10:53:40 -0700526 if res := coreutils.WaitForNilOrErrorResponses(agent.defaultTimeout, chAdapters, chdB); res != nil {
khenaidoo0458db62019-06-20 08:50:36 -0400527 return status.Errorf(codes.Aborted, "errors-%s", res)
528 }
529 return nil
khenaidoo19d7b632018-10-30 10:49:50 -0400530}
531
khenaidoo4d4802d2018-10-04 21:59:49 -0400532//disableDevice disable a device
khenaidoo92e62c52018-10-03 14:02:54 -0400533func (agent *DeviceAgent) disableDevice(ctx context.Context) error {
khenaidoo59ef7be2019-06-21 12:40:28 -0400534 agent.lockDevice.Lock()
535 defer agent.lockDevice.Unlock()
khenaidoo92e62c52018-10-03 14:02:54 -0400536 log.Debugw("disableDevice", log.Fields{"id": agent.deviceId})
537 // Get the most up to date the device info
538 if device, err := agent.getDeviceWithoutLock(); err != nil {
539 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
540 } else {
541 if device.AdminState == voltha.AdminState_DISABLED {
542 log.Debugw("device-already-disabled", log.Fields{"id": agent.deviceId})
khenaidoo92e62c52018-10-03 14:02:54 -0400543 return nil
544 }
khenaidoo4554f7c2019-05-29 22:13:15 -0400545 if device.AdminState == voltha.AdminState_PREPROVISIONED ||
546 device.AdminState == voltha.AdminState_DELETED {
547 log.Debugw("device-not-enabled", log.Fields{"id": agent.deviceId})
548 return status.Errorf(codes.FailedPrecondition, "deviceId:%s, invalid-admin-state:%s", agent.deviceId, device.AdminState)
549 }
550
khenaidoo59ef7be2019-06-21 12:40:28 -0400551 // Update the Admin State and operational state before sending the request out
552 cloned := proto.Clone(device).(*voltha.Device)
553 cloned.AdminState = voltha.AdminState_DISABLED
554 cloned.OperStatus = voltha.OperStatus_UNKNOWN
Mahir Gunyelb5851672019-07-24 10:46:26 +0300555 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
556 return err
khenaidoo59ef7be2019-06-21 12:40:28 -0400557 }
558
khenaidoo92e62c52018-10-03 14:02:54 -0400559 if err := agent.adapterProxy.DisableDevice(ctx, device); err != nil {
560 log.Debugw("disableDevice-error", log.Fields{"id": agent.lastData.Id, "error": err})
khenaidoo92e62c52018-10-03 14:02:54 -0400561 return err
562 }
khenaidoo0a822f92019-05-08 15:15:57 -0400563 }
564 return nil
565}
566
567func (agent *DeviceAgent) updateAdminState(adminState voltha.AdminState_AdminState) error {
568 agent.lockDevice.Lock()
569 defer agent.lockDevice.Unlock()
570 log.Debugw("updateAdminState", log.Fields{"id": agent.deviceId})
571 // Get the most up to date the device info
572 if device, err := agent.getDeviceWithoutLock(); err != nil {
573 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
574 } else {
575 if device.AdminState == adminState {
576 log.Debugw("no-change-needed", log.Fields{"id": agent.deviceId, "state": adminState})
577 return nil
578 }
khenaidoo92e62c52018-10-03 14:02:54 -0400579 // Received an Ack (no error found above). Now update the device in the model to the expected state
580 cloned := proto.Clone(device).(*voltha.Device)
khenaidoo0a822f92019-05-08 15:15:57 -0400581 cloned.AdminState = adminState
Mahir Gunyelb5851672019-07-24 10:46:26 +0300582 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
583 return err
khenaidoo92e62c52018-10-03 14:02:54 -0400584 }
khenaidoo92e62c52018-10-03 14:02:54 -0400585 }
586 return nil
587}
588
khenaidoo4d4802d2018-10-04 21:59:49 -0400589func (agent *DeviceAgent) rebootDevice(ctx context.Context) error {
590 agent.lockDevice.Lock()
591 defer agent.lockDevice.Unlock()
592 log.Debugw("rebootDevice", log.Fields{"id": agent.deviceId})
593 // Get the most up to date the device info
594 if device, err := agent.getDeviceWithoutLock(); err != nil {
595 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
596 } else {
khenaidoo4d4802d2018-10-04 21:59:49 -0400597 if err := agent.adapterProxy.RebootDevice(ctx, device); err != nil {
598 log.Debugw("rebootDevice-error", log.Fields{"id": agent.lastData.Id, "error": err})
599 return err
600 }
601 }
602 return nil
603}
604
605func (agent *DeviceAgent) deleteDevice(ctx context.Context) error {
606 agent.lockDevice.Lock()
khenaidoo0a822f92019-05-08 15:15:57 -0400607 defer agent.lockDevice.Unlock()
khenaidoo4d4802d2018-10-04 21:59:49 -0400608 log.Debugw("deleteDevice", log.Fields{"id": agent.deviceId})
609 // Get the most up to date the device info
610 if device, err := agent.getDeviceWithoutLock(); err != nil {
khenaidoo4d4802d2018-10-04 21:59:49 -0400611 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
612 } else {
khenaidoo0a822f92019-05-08 15:15:57 -0400613 if device.AdminState == voltha.AdminState_DELETED {
614 log.Debugw("device-already-in-deleted-state", log.Fields{"id": agent.deviceId})
615 return nil
616 }
khenaidoo43c82122018-11-22 18:38:28 -0500617 if (device.AdminState != voltha.AdminState_DISABLED) &&
618 (device.AdminState != voltha.AdminState_PREPROVISIONED) {
khenaidoo4d4802d2018-10-04 21:59:49 -0400619 log.Debugw("device-not-disabled", log.Fields{"id": agent.deviceId})
620 //TODO: Needs customized error message
khenaidoo4d4802d2018-10-04 21:59:49 -0400621 return status.Errorf(codes.FailedPrecondition, "deviceId:%s, expected-admin-state:%s", agent.deviceId, voltha.AdminState_DISABLED)
622 }
khenaidoo4554f7c2019-05-29 22:13:15 -0400623 if device.AdminState != voltha.AdminState_PREPROVISIONED {
624 // Send the request to an Adapter only if the device is not in poreporovision state and wait for a response
625 if err := agent.adapterProxy.DeleteDevice(ctx, device); err != nil {
626 log.Debugw("deleteDevice-error", log.Fields{"id": agent.lastData.Id, "error": err})
627 return err
628 }
khenaidoo4d4802d2018-10-04 21:59:49 -0400629 }
khenaidoo59ef7be2019-06-21 12:40:28 -0400630 // Set the state to deleted after we recieve an Ack - this will trigger some background process to clean up
631 // the device as well as its association with the logical device
khenaidoo0a822f92019-05-08 15:15:57 -0400632 cloned := proto.Clone(device).(*voltha.Device)
633 cloned.AdminState = voltha.AdminState_DELETED
Mahir Gunyelb5851672019-07-24 10:46:26 +0300634 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
635 return err
khenaidoo4d4802d2018-10-04 21:59:49 -0400636 }
khenaidoo0a822f92019-05-08 15:15:57 -0400637 // If this is a child device then remove the associated peer ports on the parent device
638 if !device.Root {
639 go agent.deviceMgr.deletePeerPorts(device.ParentId, device.Id)
640 }
khenaidoo4d4802d2018-10-04 21:59:49 -0400641 }
642 return nil
643}
644
khenaidoob3127472019-07-24 21:04:55 -0400645func (agent *DeviceAgent) updatePmConfigs(ctx context.Context, pmConfigs *voltha.PmConfigs) error {
646 agent.lockDevice.Lock()
647 defer agent.lockDevice.Unlock()
648 log.Debugw("updatePmConfigs", log.Fields{"id": pmConfigs.Id})
649 // Work only on latest data
650 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
651 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
652 } else {
653 // clone the device
654 cloned := proto.Clone(storeDevice).(*voltha.Device)
655 cloned.PmConfigs = proto.Clone(pmConfigs).(*voltha.PmConfigs)
656 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +0300657 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
658 return err
khenaidoob3127472019-07-24 21:04:55 -0400659 }
660 // Send the request to the adapter
661 if err := agent.adapterProxy.UpdatePmConfigs(ctx, cloned, pmConfigs); err != nil {
662 log.Errorw("update-pm-configs-error", log.Fields{"id": agent.lastData.Id, "error": err})
663 return err
664 }
665 return nil
666 }
667}
668
669func (agent *DeviceAgent) initPmConfigs(pmConfigs *voltha.PmConfigs) error {
670 agent.lockDevice.Lock()
671 defer agent.lockDevice.Unlock()
672 log.Debugw("initPmConfigs", log.Fields{"id": pmConfigs.Id})
673 // Work only on latest data
674 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
675 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
676 } else {
677 // clone the device
678 cloned := proto.Clone(storeDevice).(*voltha.Device)
679 cloned.PmConfigs = proto.Clone(pmConfigs).(*voltha.PmConfigs)
680 // Store the device
681 updateCtx := context.WithValue(context.Background(), model.RequestTimestamp, time.Now().UnixNano())
682 afterUpdate := agent.clusterDataProxy.Update(updateCtx, "/devices/"+agent.deviceId, cloned, false, "")
683 if afterUpdate == nil {
684 return status.Errorf(codes.Internal, "%s", agent.deviceId)
685 }
686 return nil
687 }
688}
689
690func (agent *DeviceAgent) listPmConfigs(ctx context.Context) (*voltha.PmConfigs, error) {
691 agent.lockDevice.RLock()
692 defer agent.lockDevice.RUnlock()
693 log.Debugw("listPmConfigs", log.Fields{"id": agent.deviceId})
694 // Get the most up to date the device info
695 if device, err := agent.getDeviceWithoutLock(); err != nil {
696 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
697 } else {
698 cloned := proto.Clone(device).(*voltha.Device)
699 return cloned.PmConfigs, nil
700 }
701}
702
khenaidoof5a5bfa2019-01-23 22:20:29 -0500703func (agent *DeviceAgent) downloadImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
704 agent.lockDevice.Lock()
705 defer agent.lockDevice.Unlock()
706 log.Debugw("downloadImage", log.Fields{"id": agent.deviceId})
707 // Get the most up to date the device info
708 if device, err := agent.getDeviceWithoutLock(); err != nil {
709 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
710 } else {
711 if device.AdminState != voltha.AdminState_ENABLED {
712 log.Debugw("device-not-enabled", log.Fields{"id": agent.deviceId})
713 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, expected-admin-state:%s", agent.deviceId, voltha.AdminState_ENABLED)
714 }
715 // Save the image
716 clonedImg := proto.Clone(img).(*voltha.ImageDownload)
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500717 clonedImg.DownloadState = voltha.ImageDownload_DOWNLOAD_REQUESTED
khenaidoof5a5bfa2019-01-23 22:20:29 -0500718 cloned := proto.Clone(device).(*voltha.Device)
719 if cloned.ImageDownloads == nil {
720 cloned.ImageDownloads = []*voltha.ImageDownload{clonedImg}
721 } else {
722 cloned.ImageDownloads = append(cloned.ImageDownloads, clonedImg)
723 }
724 cloned.AdminState = voltha.AdminState_DOWNLOADING_IMAGE
Mahir Gunyelb5851672019-07-24 10:46:26 +0300725 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
726 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500727 }
728 // Send the request to the adapter
729 if err := agent.adapterProxy.DownloadImage(ctx, cloned, clonedImg); err != nil {
730 log.Debugw("downloadImage-error", log.Fields{"id": agent.lastData.Id, "error": err, "image": img.Name})
731 return nil, err
732 }
733 }
734 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
735}
736
737// isImageRegistered is a helper method to figure out if an image is already registered
738func isImageRegistered(img *voltha.ImageDownload, device *voltha.Device) bool {
739 for _, image := range device.ImageDownloads {
740 if image.Id == img.Id && image.Name == img.Name {
741 return true
742 }
743 }
744 return false
745}
746
747func (agent *DeviceAgent) cancelImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
748 agent.lockDevice.Lock()
749 defer agent.lockDevice.Unlock()
750 log.Debugw("cancelImageDownload", log.Fields{"id": agent.deviceId})
751 // Get the most up to date the device info
752 if device, err := agent.getDeviceWithoutLock(); err != nil {
753 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
754 } else {
755 // Verify whether the Image is in the list of image being downloaded
756 if !isImageRegistered(img, device) {
757 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceId, img.Name)
758 }
759
760 // Update image download state
761 cloned := proto.Clone(device).(*voltha.Device)
762 for _, image := range cloned.ImageDownloads {
763 if image.Id == img.Id && image.Name == img.Name {
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500764 image.DownloadState = voltha.ImageDownload_DOWNLOAD_CANCELLED
khenaidoof5a5bfa2019-01-23 22:20:29 -0500765 }
766 }
767
khenaidoof5a5bfa2019-01-23 22:20:29 -0500768 if device.AdminState == voltha.AdminState_DOWNLOADING_IMAGE {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500769 // Set the device to Enabled
770 cloned.AdminState = voltha.AdminState_ENABLED
Mahir Gunyelb5851672019-07-24 10:46:26 +0300771 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
772 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500773 }
khenaidoo59ef7be2019-06-21 12:40:28 -0400774 // Send the request to teh adapter
775 if err := agent.adapterProxy.CancelImageDownload(ctx, device, img); err != nil {
776 log.Debugw("cancelImageDownload-error", log.Fields{"id": agent.lastData.Id, "error": err, "image": img.Name})
777 return nil, err
778 }
khenaidoof5a5bfa2019-01-23 22:20:29 -0500779 }
780 }
781 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
serkant.uluderya334479d2019-04-10 08:26:15 -0700782}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500783
784func (agent *DeviceAgent) activateImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
785 agent.lockDevice.Lock()
786 defer agent.lockDevice.Unlock()
787 log.Debugw("activateImage", log.Fields{"id": agent.deviceId})
788 // Get the most up to date the device info
789 if device, err := agent.getDeviceWithoutLock(); err != nil {
790 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
791 } else {
792 // Verify whether the Image is in the list of image being downloaded
793 if !isImageRegistered(img, device) {
794 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceId, img.Name)
795 }
796
797 if device.AdminState == voltha.AdminState_DOWNLOADING_IMAGE {
798 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, device-in-downloading-state:%s", agent.deviceId, img.Name)
799 }
800 // Update image download state
801 cloned := proto.Clone(device).(*voltha.Device)
802 for _, image := range cloned.ImageDownloads {
803 if image.Id == img.Id && image.Name == img.Name {
804 image.ImageState = voltha.ImageDownload_IMAGE_ACTIVATING
805 }
806 }
807 // Set the device to downloading_image
808 cloned.AdminState = voltha.AdminState_DOWNLOADING_IMAGE
Mahir Gunyelb5851672019-07-24 10:46:26 +0300809 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
810 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500811 }
812
813 if err := agent.adapterProxy.ActivateImageUpdate(ctx, device, img); err != nil {
814 log.Debugw("activateImage-error", log.Fields{"id": agent.lastData.Id, "error": err, "image": img.Name})
815 return nil, err
816 }
817 // The status of the AdminState will be changed following the update_download_status response from the adapter
818 // The image name will also be removed from the device list
819 }
serkant.uluderya334479d2019-04-10 08:26:15 -0700820 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
821}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500822
823func (agent *DeviceAgent) revertImage(ctx context.Context, img *voltha.ImageDownload) (*voltha.OperationResp, error) {
824 agent.lockDevice.Lock()
825 defer agent.lockDevice.Unlock()
826 log.Debugw("revertImage", log.Fields{"id": agent.deviceId})
827 // Get the most up to date the device info
828 if device, err := agent.getDeviceWithoutLock(); err != nil {
829 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
830 } else {
831 // Verify whether the Image is in the list of image being downloaded
832 if !isImageRegistered(img, device) {
833 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, image-not-registered:%s", agent.deviceId, img.Name)
834 }
835
836 if device.AdminState != voltha.AdminState_ENABLED {
837 return nil, status.Errorf(codes.FailedPrecondition, "deviceId:%s, device-not-enabled-state:%s", agent.deviceId, img.Name)
838 }
839 // Update image download state
840 cloned := proto.Clone(device).(*voltha.Device)
841 for _, image := range cloned.ImageDownloads {
842 if image.Id == img.Id && image.Name == img.Name {
843 image.ImageState = voltha.ImageDownload_IMAGE_REVERTING
844 }
845 }
Mahir Gunyelb5851672019-07-24 10:46:26 +0300846
847 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
848 return nil, err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500849 }
850
851 if err := agent.adapterProxy.RevertImageUpdate(ctx, device, img); err != nil {
852 log.Debugw("revertImage-error", log.Fields{"id": agent.lastData.Id, "error": err, "image": img.Name})
853 return nil, err
854 }
855 }
856 return &voltha.OperationResp{Code: voltha.OperationResp_OPERATION_SUCCESS}, nil
serkant.uluderya334479d2019-04-10 08:26:15 -0700857}
khenaidoof5a5bfa2019-01-23 22:20:29 -0500858
859func (agent *DeviceAgent) getImageDownloadStatus(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
860 agent.lockDevice.Lock()
861 defer agent.lockDevice.Unlock()
862 log.Debugw("getImageDownloadStatus", log.Fields{"id": agent.deviceId})
863 // Get the most up to date the device info
864 if device, err := agent.getDeviceWithoutLock(); err != nil {
865 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
866 } else {
867 if resp, err := agent.adapterProxy.GetImageDownloadStatus(ctx, device, img); err != nil {
868 log.Debugw("getImageDownloadStatus-error", log.Fields{"id": agent.lastData.Id, "error": err, "image": img.Name})
869 return nil, err
870 } else {
871 return resp, nil
872 }
873 }
874}
875
serkant.uluderya334479d2019-04-10 08:26:15 -0700876func (agent *DeviceAgent) updateImageDownload(img *voltha.ImageDownload) error {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500877 agent.lockDevice.Lock()
878 defer agent.lockDevice.Unlock()
879 log.Debugw("updateImageDownload", log.Fields{"id": agent.deviceId})
880 // Get the most up to date the device info
881 if device, err := agent.getDeviceWithoutLock(); err != nil {
882 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
883 } else {
884 // Update the image as well as remove it if the download was cancelled
885 cloned := proto.Clone(device).(*voltha.Device)
886 clonedImages := make([]*voltha.ImageDownload, len(cloned.ImageDownloads))
887 for _, image := range cloned.ImageDownloads {
888 if image.Id == img.Id && image.Name == img.Name {
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500889 if image.DownloadState != voltha.ImageDownload_DOWNLOAD_CANCELLED {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500890 clonedImages = append(clonedImages, img)
891 }
892 }
893 }
894 cloned.ImageDownloads = clonedImages
895 // Set the Admin state to enabled if required
Stephane Barbariedf5479f2019-01-29 22:13:00 -0500896 if (img.DownloadState != voltha.ImageDownload_DOWNLOAD_REQUESTED &&
897 img.DownloadState != voltha.ImageDownload_DOWNLOAD_STARTED) ||
serkant.uluderya334479d2019-04-10 08:26:15 -0700898 (img.ImageState != voltha.ImageDownload_IMAGE_ACTIVATING) {
khenaidoof5a5bfa2019-01-23 22:20:29 -0500899 cloned.AdminState = voltha.AdminState_ENABLED
900 }
901
Mahir Gunyelb5851672019-07-24 10:46:26 +0300902 if err := agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
903 return err
khenaidoof5a5bfa2019-01-23 22:20:29 -0500904 }
905 }
906 return nil
907}
908
909func (agent *DeviceAgent) getImageDownload(ctx context.Context, img *voltha.ImageDownload) (*voltha.ImageDownload, error) {
khenaidoo1ce37ad2019-03-24 22:07:24 -0400910 agent.lockDevice.RLock()
911 defer agent.lockDevice.RUnlock()
khenaidoof5a5bfa2019-01-23 22:20:29 -0500912 log.Debugw("getImageDownload", log.Fields{"id": agent.deviceId})
913 // Get the most up to date the device info
914 if device, err := agent.getDeviceWithoutLock(); err != nil {
915 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
916 } else {
917 for _, image := range device.ImageDownloads {
918 if image.Id == img.Id && image.Name == img.Name {
919 return image, nil
920 }
921 }
922 return nil, status.Errorf(codes.NotFound, "image-not-found:%s", img.Name)
923 }
924}
925
926func (agent *DeviceAgent) listImageDownloads(ctx context.Context, deviceId string) (*voltha.ImageDownloads, error) {
khenaidoo1ce37ad2019-03-24 22:07:24 -0400927 agent.lockDevice.RLock()
928 defer agent.lockDevice.RUnlock()
khenaidoof5a5bfa2019-01-23 22:20:29 -0500929 log.Debugw("listImageDownloads", log.Fields{"id": agent.deviceId})
930 // Get the most up to date the device info
931 if device, err := agent.getDeviceWithoutLock(); err != nil {
932 return nil, status.Errorf(codes.NotFound, "%s", agent.deviceId)
933 } else {
serkant.uluderya334479d2019-04-10 08:26:15 -0700934 return &voltha.ImageDownloads{Items: device.ImageDownloads}, nil
khenaidoof5a5bfa2019-01-23 22:20:29 -0500935 }
936}
937
khenaidoo4d4802d2018-10-04 21:59:49 -0400938// getPorts retrieves the ports information of the device based on the port type.
khenaidoo92e62c52018-10-03 14:02:54 -0400939func (agent *DeviceAgent) getPorts(ctx context.Context, portType voltha.Port_PortType) *voltha.Ports {
940 log.Debugw("getPorts", log.Fields{"id": agent.deviceId, "portType": portType})
khenaidoob9203542018-09-17 22:56:37 -0400941 ports := &voltha.Ports{}
khenaidoo19d7b632018-10-30 10:49:50 -0400942 if device, _ := agent.deviceMgr.GetDevice(agent.deviceId); device != nil {
khenaidoob9203542018-09-17 22:56:37 -0400943 for _, port := range device.Ports {
khenaidoo92e62c52018-10-03 14:02:54 -0400944 if port.Type == portType {
khenaidoob9203542018-09-17 22:56:37 -0400945 ports.Items = append(ports.Items, port)
946 }
947 }
948 }
949 return ports
950}
951
khenaidoo4d4802d2018-10-04 21:59:49 -0400952// getSwitchCapability is a helper method that a logical device agent uses to retrieve the switch capability of a
953// parent device
khenaidoo79232702018-12-04 11:00:41 -0500954func (agent *DeviceAgent) getSwitchCapability(ctx context.Context) (*ic.SwitchCapability, error) {
khenaidoob9203542018-09-17 22:56:37 -0400955 log.Debugw("getSwitchCapability", log.Fields{"deviceId": agent.deviceId})
khenaidoo19d7b632018-10-30 10:49:50 -0400956 if device, err := agent.deviceMgr.GetDevice(agent.deviceId); device == nil {
khenaidoob9203542018-09-17 22:56:37 -0400957 return nil, err
958 } else {
khenaidoo79232702018-12-04 11:00:41 -0500959 var switchCap *ic.SwitchCapability
khenaidoob9203542018-09-17 22:56:37 -0400960 var err error
961 if switchCap, err = agent.adapterProxy.GetOfpDeviceInfo(ctx, device); err != nil {
962 log.Debugw("getSwitchCapability-error", log.Fields{"id": device.Id, "error": err})
963 return nil, err
964 }
965 return switchCap, nil
966 }
967}
968
khenaidoo4d4802d2018-10-04 21:59:49 -0400969// getPortCapability is a helper method that a logical device agent uses to retrieve the port capability of a
970// device
khenaidoo79232702018-12-04 11:00:41 -0500971func (agent *DeviceAgent) getPortCapability(ctx context.Context, portNo uint32) (*ic.PortCapability, error) {
khenaidoob9203542018-09-17 22:56:37 -0400972 log.Debugw("getPortCapability", log.Fields{"deviceId": agent.deviceId})
khenaidoo19d7b632018-10-30 10:49:50 -0400973 if device, err := agent.deviceMgr.GetDevice(agent.deviceId); device == nil {
khenaidoob9203542018-09-17 22:56:37 -0400974 return nil, err
975 } else {
khenaidoo79232702018-12-04 11:00:41 -0500976 var portCap *ic.PortCapability
khenaidoob9203542018-09-17 22:56:37 -0400977 var err error
978 if portCap, err = agent.adapterProxy.GetOfpPortInfo(ctx, device, portNo); err != nil {
979 log.Debugw("getPortCapability-error", log.Fields{"id": device.Id, "error": err})
980 return nil, err
981 }
982 return portCap, nil
983 }
984}
985
khenaidoofdbad6e2018-11-06 22:26:38 -0500986func (agent *DeviceAgent) packetOut(outPort uint32, packet *ofp.OfpPacketOut) error {
987 // Send packet to adapter
988 if err := agent.adapterProxy.packetOut(agent.deviceType, agent.deviceId, outPort, packet); err != nil {
989 log.Debugw("packet-out-error", log.Fields{"id": agent.lastData.Id, "error": err})
990 return err
991 }
992 return nil
993}
994
khenaidoo4d4802d2018-10-04 21:59:49 -0400995// processUpdate is a callback invoked whenever there is a change on the device manages by this device agent
khenaidoo92e62c52018-10-03 14:02:54 -0400996func (agent *DeviceAgent) processUpdate(args ...interface{}) interface{} {
khenaidoo43c82122018-11-22 18:38:28 -0500997 //// Run this callback in its own go routine
998 go func(args ...interface{}) interface{} {
999 var previous *voltha.Device
1000 var current *voltha.Device
1001 var ok bool
1002 if len(args) == 2 {
1003 if previous, ok = args[0].(*voltha.Device); !ok {
1004 log.Errorw("invalid-callback-type", log.Fields{"data": args[0]})
1005 return nil
1006 }
1007 if current, ok = args[1].(*voltha.Device); !ok {
1008 log.Errorw("invalid-callback-type", log.Fields{"data": args[1]})
1009 return nil
1010 }
1011 } else {
1012 log.Errorw("too-many-args-in-callback", log.Fields{"len": len(args)})
1013 return nil
1014 }
1015 // Perform the state transition in it's own go routine
khenaidoof5a5bfa2019-01-23 22:20:29 -05001016 if err := agent.deviceMgr.processTransition(previous, current); err != nil {
1017 log.Errorw("failed-process-transition", log.Fields{"deviceId": previous.Id,
1018 "previousAdminState": previous.AdminState, "currentAdminState": current.AdminState})
1019 }
khenaidoo43c82122018-11-22 18:38:28 -05001020 return nil
1021 }(args...)
1022
khenaidoo92e62c52018-10-03 14:02:54 -04001023 return nil
1024}
1025
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001026// updatePartialDeviceData updates a subset of a device that an Adapter can update.
1027// TODO: May need a specific proto to handle only a subset of a device that can be changed by an adapter
1028func (agent *DeviceAgent) mergeDeviceInfoFromAdapter(device *voltha.Device) (*voltha.Device, error) {
1029 // First retrieve the most up to date device info
1030 var currentDevice *voltha.Device
1031 var err error
1032 if currentDevice, err = agent.getDeviceWithoutLock(); err != nil {
1033 return nil, err
1034 }
1035 cloned := proto.Clone(currentDevice).(*voltha.Device)
1036 cloned.Root = device.Root
1037 cloned.Vendor = device.Vendor
1038 cloned.Model = device.Model
1039 cloned.SerialNumber = device.SerialNumber
1040 cloned.MacAddress = device.MacAddress
1041 cloned.Vlan = device.Vlan
1042 cloned.Reason = device.Reason
1043 return cloned, nil
1044}
1045func (agent *DeviceAgent) updateDeviceUsingAdapterData(device *voltha.Device) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001046 agent.lockDevice.Lock()
khenaidoo43c82122018-11-22 18:38:28 -05001047 defer agent.lockDevice.Unlock()
Mahir Gunyel8e2707d2019-07-25 00:36:21 -07001048 log.Debugw("updateDeviceUsingAdapterData", log.Fields{"deviceId": device.Id})
1049 if updatedDevice, err := agent.mergeDeviceInfoFromAdapter(device); err != nil {
1050 log.Errorw("failed to update device ", log.Fields{"deviceId": device.Id})
1051 return status.Errorf(codes.Internal, "%s", err.Error())
1052 } else {
1053 cloned := proto.Clone(updatedDevice).(*voltha.Device)
1054 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
1055 }
khenaidoo43c82122018-11-22 18:38:28 -05001056}
1057
1058func (agent *DeviceAgent) updateDeviceWithoutLock(device *voltha.Device) error {
1059 log.Debugw("updateDevice", log.Fields{"deviceId": device.Id})
1060 cloned := proto.Clone(device).(*voltha.Device)
Mahir Gunyelb5851672019-07-24 10:46:26 +03001061 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001062}
1063
khenaidoo92e62c52018-10-03 14:02:54 -04001064func (agent *DeviceAgent) updateDeviceStatus(operStatus voltha.OperStatus_OperStatus, connStatus voltha.ConnectStatus_ConnectStatus) error {
1065 agent.lockDevice.Lock()
khenaidoo0a822f92019-05-08 15:15:57 -04001066 defer agent.lockDevice.Unlock()
khenaidoob9203542018-09-17 22:56:37 -04001067 // Work only on latest data
khenaidoo92e62c52018-10-03 14:02:54 -04001068 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
khenaidoob9203542018-09-17 22:56:37 -04001069 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1070 } else {
1071 // clone the device
khenaidoo92e62c52018-10-03 14:02:54 -04001072 cloned := proto.Clone(storeDevice).(*voltha.Device)
1073 // Ensure the enums passed in are valid - they will be invalid if they are not set when this function is invoked
1074 if s, ok := voltha.ConnectStatus_ConnectStatus_value[connStatus.String()]; ok {
1075 log.Debugw("updateDeviceStatus-conn", log.Fields{"ok": ok, "val": s})
1076 cloned.ConnectStatus = connStatus
khenaidoob9203542018-09-17 22:56:37 -04001077 }
khenaidoo92e62c52018-10-03 14:02:54 -04001078 if s, ok := voltha.OperStatus_OperStatus_value[operStatus.String()]; ok {
1079 log.Debugw("updateDeviceStatus-oper", log.Fields{"ok": ok, "val": s})
1080 cloned.OperStatus = operStatus
khenaidoob9203542018-09-17 22:56:37 -04001081 }
khenaidoo92e62c52018-10-03 14:02:54 -04001082 log.Debugw("updateDeviceStatus", log.Fields{"deviceId": cloned.Id, "operStatus": cloned.OperStatus, "connectStatus": cloned.ConnectStatus})
khenaidoob9203542018-09-17 22:56:37 -04001083 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001084 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo92e62c52018-10-03 14:02:54 -04001085 }
1086}
1087
khenaidoo3ab34882019-05-02 21:33:30 -04001088func (agent *DeviceAgent) enablePorts() error {
1089 agent.lockDevice.Lock()
1090 defer agent.lockDevice.Unlock()
1091 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1092 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1093 } else {
1094 // clone the device
1095 cloned := proto.Clone(storeDevice).(*voltha.Device)
1096 for _, port := range cloned.Ports {
1097 port.AdminState = voltha.AdminState_ENABLED
1098 port.OperStatus = voltha.OperStatus_ACTIVE
1099 }
1100 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001101 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo3ab34882019-05-02 21:33:30 -04001102 }
1103}
1104
1105func (agent *DeviceAgent) disablePorts() error {
khenaidoo0a822f92019-05-08 15:15:57 -04001106 log.Debugw("disablePorts", log.Fields{"deviceid": agent.deviceId})
khenaidoo3ab34882019-05-02 21:33:30 -04001107 agent.lockDevice.Lock()
1108 defer agent.lockDevice.Unlock()
1109 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1110 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1111 } else {
1112 // clone the device
1113 cloned := proto.Clone(storeDevice).(*voltha.Device)
1114 for _, port := range cloned.Ports {
1115 port.AdminState = voltha.AdminState_DISABLED
1116 port.OperStatus = voltha.OperStatus_UNKNOWN
1117 }
1118 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001119 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo3ab34882019-05-02 21:33:30 -04001120 }
1121}
1122
khenaidoo92e62c52018-10-03 14:02:54 -04001123func (agent *DeviceAgent) updatePortState(portType voltha.Port_PortType, portNo uint32, operStatus voltha.OperStatus_OperStatus) error {
1124 agent.lockDevice.Lock()
khenaidoo59ef7be2019-06-21 12:40:28 -04001125 defer agent.lockDevice.Unlock()
khenaidoo92e62c52018-10-03 14:02:54 -04001126 // Work only on latest data
1127 // TODO: Get list of ports from device directly instead of the entire device
1128 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
khenaidoo92e62c52018-10-03 14:02:54 -04001129 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1130 } else {
1131 // clone the device
1132 cloned := proto.Clone(storeDevice).(*voltha.Device)
1133 // Ensure the enums passed in are valid - they will be invalid if they are not set when this function is invoked
1134 if _, ok := voltha.Port_PortType_value[portType.String()]; !ok {
khenaidoo92e62c52018-10-03 14:02:54 -04001135 return status.Errorf(codes.InvalidArgument, "%s", portType)
1136 }
1137 for _, port := range cloned.Ports {
1138 if port.Type == portType && port.PortNo == portNo {
1139 port.OperStatus = operStatus
1140 // Set the admin status to ENABLED if the operational status is ACTIVE
1141 // TODO: Set by northbound system?
1142 if operStatus == voltha.OperStatus_ACTIVE {
1143 port.AdminState = voltha.AdminState_ENABLED
1144 }
1145 break
1146 }
1147 }
1148 log.Debugw("portStatusUpdate", log.Fields{"deviceId": cloned.Id})
1149 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001150 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001151 }
1152}
1153
khenaidoo0a822f92019-05-08 15:15:57 -04001154func (agent *DeviceAgent) deleteAllPorts() error {
1155 log.Debugw("deleteAllPorts", log.Fields{"deviceId": agent.deviceId})
1156 agent.lockDevice.Lock()
1157 defer agent.lockDevice.Unlock()
1158 // Work only on latest data
1159 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1160 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1161 } else {
1162 if storeDevice.AdminState != voltha.AdminState_DISABLED && storeDevice.AdminState != voltha.AdminState_DELETED {
1163 err = status.Error(codes.FailedPrecondition, fmt.Sprintf("invalid-state-%v", storeDevice.AdminState))
1164 log.Warnw("invalid-state-removing-ports", log.Fields{"state": storeDevice.AdminState, "error": err})
1165 return err
1166 }
1167 if len(storeDevice.Ports) == 0 {
1168 log.Debugw("no-ports-present", log.Fields{"deviceId": agent.deviceId})
1169 return nil
1170 }
1171 // clone the device & set the fields to empty
1172 cloned := proto.Clone(storeDevice).(*voltha.Device)
1173 cloned.Ports = []*voltha.Port{}
1174 log.Debugw("portStatusUpdate", log.Fields{"deviceId": cloned.Id})
1175 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001176 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo0a822f92019-05-08 15:15:57 -04001177 }
1178}
1179
khenaidoob9203542018-09-17 22:56:37 -04001180func (agent *DeviceAgent) addPort(port *voltha.Port) error {
khenaidoo92e62c52018-10-03 14:02:54 -04001181 agent.lockDevice.Lock()
1182 defer agent.lockDevice.Unlock()
khenaidoo0a822f92019-05-08 15:15:57 -04001183 log.Debugw("addPort", log.Fields{"deviceId": agent.deviceId})
khenaidoob9203542018-09-17 22:56:37 -04001184 // Work only on latest data
khenaidoo92e62c52018-10-03 14:02:54 -04001185 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
khenaidoob9203542018-09-17 22:56:37 -04001186 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1187 } else {
1188 // clone the device
khenaidoo92e62c52018-10-03 14:02:54 -04001189 cloned := proto.Clone(storeDevice).(*voltha.Device)
khenaidoob9203542018-09-17 22:56:37 -04001190 if cloned.Ports == nil {
1191 // First port
khenaidoo0a822f92019-05-08 15:15:57 -04001192 log.Debugw("addPort-first-port-to-add", log.Fields{"deviceId": agent.deviceId})
khenaidoob9203542018-09-17 22:56:37 -04001193 cloned.Ports = make([]*voltha.Port, 0)
manikkaraj k259a6f72019-05-06 09:55:44 -04001194 } else {
1195 for _, p := range cloned.Ports {
1196 if p.Type == port.Type && p.PortNo == port.PortNo {
1197 log.Debugw("port already exists", log.Fields{"port": *port})
1198 return nil
1199 }
1200 }
khenaidoob9203542018-09-17 22:56:37 -04001201 }
khenaidoo92e62c52018-10-03 14:02:54 -04001202 cp := proto.Clone(port).(*voltha.Port)
1203 // Set the admin state of the port to ENABLE if the operational state is ACTIVE
1204 // TODO: Set by northbound system?
1205 if cp.OperStatus == voltha.OperStatus_ACTIVE {
1206 cp.AdminState = voltha.AdminState_ENABLED
1207 }
1208 cloned.Ports = append(cloned.Ports, cp)
khenaidoob9203542018-09-17 22:56:37 -04001209 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001210 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo92e62c52018-10-03 14:02:54 -04001211 }
1212}
1213
1214func (agent *DeviceAgent) addPeerPort(port *voltha.Port_PeerPort) error {
1215 agent.lockDevice.Lock()
1216 defer agent.lockDevice.Unlock()
1217 log.Debug("addPeerPort")
1218 // Work only on latest data
1219 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1220 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1221 } else {
1222 // clone the device
1223 cloned := proto.Clone(storeDevice).(*voltha.Device)
1224 // Get the peer port on the device based on the port no
1225 for _, peerPort := range cloned.Ports {
1226 if peerPort.PortNo == port.PortNo { // found port
1227 cp := proto.Clone(port).(*voltha.Port_PeerPort)
1228 peerPort.Peers = append(peerPort.Peers, cp)
1229 log.Debugw("found-peer", log.Fields{"portNo": port.PortNo, "deviceId": agent.deviceId})
1230 break
1231 }
1232 }
1233 // Store the device
Mahir Gunyelb5851672019-07-24 10:46:26 +03001234 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoob9203542018-09-17 22:56:37 -04001235 }
1236}
1237
khenaidoo0a822f92019-05-08 15:15:57 -04001238func (agent *DeviceAgent) deletePeerPorts(deviceId string) error {
1239 agent.lockDevice.Lock()
1240 defer agent.lockDevice.Unlock()
1241 log.Debug("deletePeerPorts")
1242 // Work only on latest data
1243 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1244 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1245 } else {
1246 // clone the device
1247 cloned := proto.Clone(storeDevice).(*voltha.Device)
1248 var updatedPeers []*voltha.Port_PeerPort
1249 for _, port := range cloned.Ports {
1250 updatedPeers = make([]*voltha.Port_PeerPort, 0)
1251 for _, peerPort := range port.Peers {
1252 if peerPort.DeviceId != deviceId {
1253 updatedPeers = append(updatedPeers, peerPort)
1254 }
1255 }
1256 port.Peers = updatedPeers
1257 }
1258
1259 // Store the device with updated peer ports
Mahir Gunyelb5851672019-07-24 10:46:26 +03001260 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
khenaidoo0a822f92019-05-08 15:15:57 -04001261 }
1262}
1263
khenaidoob9203542018-09-17 22:56:37 -04001264// TODO: A generic device update by attribute
1265func (agent *DeviceAgent) updateDeviceAttribute(name string, value interface{}) {
khenaidoo92e62c52018-10-03 14:02:54 -04001266 agent.lockDevice.Lock()
1267 defer agent.lockDevice.Unlock()
khenaidoob9203542018-09-17 22:56:37 -04001268 if value == nil {
1269 return
1270 }
1271 var storeDevice *voltha.Device
1272 var err error
khenaidoo92e62c52018-10-03 14:02:54 -04001273 if storeDevice, err = agent.getDeviceWithoutLock(); err != nil {
khenaidoob9203542018-09-17 22:56:37 -04001274 return
1275 }
1276 updated := false
1277 s := reflect.ValueOf(storeDevice).Elem()
1278 if s.Kind() == reflect.Struct {
1279 // exported field
1280 f := s.FieldByName(name)
1281 if f.IsValid() && f.CanSet() {
1282 switch f.Kind() {
1283 case reflect.String:
1284 f.SetString(value.(string))
1285 updated = true
1286 case reflect.Uint32:
1287 f.SetUint(uint64(value.(uint32)))
1288 updated = true
1289 case reflect.Bool:
1290 f.SetBool(value.(bool))
1291 updated = true
1292 }
1293 }
1294 }
khenaidoo92e62c52018-10-03 14:02:54 -04001295 log.Debugw("update-field-status", log.Fields{"deviceId": storeDevice.Id, "name": name, "updated": updated})
khenaidoob9203542018-09-17 22:56:37 -04001296 // Save the data
khenaidoo92e62c52018-10-03 14:02:54 -04001297 cloned := proto.Clone(storeDevice).(*voltha.Device)
Mahir Gunyelb5851672019-07-24 10:46:26 +03001298 if err = agent.updateDeviceInStoreWithoutLock(cloned, false, ""); err != nil {
khenaidoob9203542018-09-17 22:56:37 -04001299 log.Warnw("attribute-update-failed", log.Fields{"attribute": name, "value": value})
1300 }
1301 return
1302}
serkant.uluderya334479d2019-04-10 08:26:15 -07001303
1304func (agent *DeviceAgent) simulateAlarm(ctx context.Context, simulatereq *voltha.SimulateAlarmRequest) error {
1305 agent.lockDevice.Lock()
1306 defer agent.lockDevice.Unlock()
1307 log.Debugw("simulateAlarm", log.Fields{"id": agent.deviceId})
1308 // Get the most up to date the device info
1309 if device, err := agent.getDeviceWithoutLock(); err != nil {
1310 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1311 } else {
1312 // First send the request to an Adapter and wait for a response
1313 if err := agent.adapterProxy.SimulateAlarm(ctx, device, simulatereq); err != nil {
1314 log.Debugw("simulateAlarm-error", log.Fields{"id": agent.lastData.Id, "error": err})
1315 return err
1316 }
1317 }
1318 return nil
1319}
Mahir Gunyelb5851672019-07-24 10:46:26 +03001320
1321//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.
1322// It is an internal helper function.
1323func (agent *DeviceAgent) updateDeviceInStoreWithoutLock(device *voltha.Device, strict bool, txid string) error {
1324 updateCtx := context.WithValue(context.Background(), model.RequestTimestamp, time.Now().UnixNano())
1325 if afterUpdate := agent.clusterDataProxy.Update(updateCtx, "/devices/"+agent.deviceId, device, strict, txid); afterUpdate == nil {
1326 return status.Errorf(codes.Internal, "failed-update-device:%s", agent.deviceId)
1327 }
1328 log.Debugw("updated-device-in-store", log.Fields{"deviceId: ": agent.deviceId})
1329
1330 return nil
1331}
Mahir Gunyelfdee9212019-10-16 16:52:21 -07001332
1333func (agent *DeviceAgent) updateDeviceReason(reason string) error {
1334 agent.lockDevice.Lock()
1335 defer agent.lockDevice.Unlock()
1336 // Work only on latest data
1337 if storeDevice, err := agent.getDeviceWithoutLock(); err != nil {
1338 return status.Errorf(codes.NotFound, "%s", agent.deviceId)
1339 } else {
1340 // clone the device
1341 cloned := proto.Clone(storeDevice).(*voltha.Device)
1342 cloned.Reason = reason
1343 log.Debugw("updateDeviceReason", log.Fields{"deviceId": cloned.Id, "reason": cloned.Reason})
1344 // Store the device
1345 return agent.updateDeviceInStoreWithoutLock(cloned, false, "")
1346 }
1347}