blob: ec6f8d28f2ce7c7c944c772c8cb830f2c3813db2 [file] [log] [blame]
khenaidoo89b0e942018-10-21 21:11:33 -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 */
16
17package graph
18
19import (
20 "errors"
21 "fmt"
22 "github.com/gyuho/goraph"
23 "github.com/opencord/voltha-go/common/log"
William Kurkiandaa6bb22019-03-07 12:26:28 -050024 "github.com/opencord/voltha-protos/go/voltha"
khenaidoo89b0e942018-10-21 21:11:33 -040025 "strconv"
26 "strings"
Stephane Barbariec53a2752019-03-08 17:50:10 -050027 "sync"
khenaidoo89b0e942018-10-21 21:11:33 -040028)
29
30func init() {
khenaidoo910204f2019-04-08 17:56:40 -040031 log.AddPackage(log.JSON, log.WarnLevel, nil)
khenaidoo89b0e942018-10-21 21:11:33 -040032}
33
34type RouteHop struct {
35 DeviceID string
36 Ingress uint32
37 Egress uint32
38}
39
40type OFPortLink struct {
41 Ingress uint32
42 Egress uint32
43}
44
khenaidoo910204f2019-04-08 17:56:40 -040045type ofPortLinkToPath struct {
46 link OFPortLink
47 path []RouteHop
48}
49
khenaidoo89b0e942018-10-21 21:11:33 -040050type GetDeviceFunc func(id string) (*voltha.Device, error)
51
khenaidoo89b0e942018-10-21 21:11:33 -040052type DeviceGraph struct {
khenaidoo910204f2019-04-08 17:56:40 -040053 logicalDeviceId string
54 GGraph goraph.Graph
55 getDeviceFromModel GetDeviceFunc
56 logicalPorts []*voltha.LogicalPort
57 rootPortsString map[string]uint32
58 nonRootPortsString map[string]uint32
59 RootPorts map[uint32]uint32
60 rootPortsLock sync.RWMutex
61 Routes map[OFPortLink][]RouteHop
62 graphBuildLock sync.RWMutex
63 boundaryPorts map[string]uint32
64 boundaryPortsLock sync.RWMutex
65 cachedDevices map[string]*voltha.Device
66 cachedDevicesLock sync.RWMutex
67 devicesAdded map[string]string
68 portsAdded map[string]string
khenaidoo89b0e942018-10-21 21:11:33 -040069}
70
khenaidoo910204f2019-04-08 17:56:40 -040071func NewDeviceGraph(logicalDeviceId string, getDevice GetDeviceFunc) *DeviceGraph {
khenaidoo89b0e942018-10-21 21:11:33 -040072 var dg DeviceGraph
khenaidoo910204f2019-04-08 17:56:40 -040073 dg.logicalDeviceId = logicalDeviceId
khenaidoo89b0e942018-10-21 21:11:33 -040074 dg.GGraph = goraph.NewGraph()
khenaidoo910204f2019-04-08 17:56:40 -040075 dg.getDeviceFromModel = getDevice
khenaidoo1ce37ad2019-03-24 22:07:24 -040076 dg.graphBuildLock = sync.RWMutex{}
khenaidoo910204f2019-04-08 17:56:40 -040077 dg.cachedDevicesLock = sync.RWMutex{}
78 dg.rootPortsLock = sync.RWMutex{}
79 dg.devicesAdded = make(map[string]string)
80 dg.portsAdded = make(map[string]string)
81 dg.rootPortsString = make(map[string]uint32)
82 dg.nonRootPortsString = make(map[string]uint32)
83 dg.RootPorts = make(map[uint32]uint32)
84 dg.boundaryPorts = make(map[string]uint32)
85 dg.Routes = make(map[OFPortLink][]RouteHop)
86 dg.cachedDevices = make(map[string]*voltha.Device)
87 log.Debug("new device graph created ...")
khenaidoo89b0e942018-10-21 21:11:33 -040088 return &dg
89}
90
khenaidoo910204f2019-04-08 17:56:40 -040091//IsRootPort returns true if the port is a root port on a logical device
92func (dg *DeviceGraph) IsRootPort(port uint32) bool {
93 dg.rootPortsLock.RLock()
94 defer dg.rootPortsLock.RUnlock()
95 _, exist := dg.RootPorts[port]
96 return exist
97}
98
99//GetDeviceNodeIds retrieves all the nodes in the device graph
100func (dg *DeviceGraph) GetDeviceNodeIds() map[string]string {
101 dg.graphBuildLock.RLock()
102 defer dg.graphBuildLock.RUnlock()
103 nodeIds := make(map[string]string)
104 nodesMap := dg.GGraph.GetNodes()
105 for id, node := range nodesMap {
106 if len(strings.Split(node.String(), ":")) != 2 { // not port node
107 nodeIds[id.String()] = id.String()
108 }
109 }
110 return nodeIds
111}
112
113//ComputeRoutes creates a device graph from the logical ports and then calculates all the routes
114//between the logical ports. This will clear up the graph and routes if there were any.
khenaidoo89b0e942018-10-21 21:11:33 -0400115func (dg *DeviceGraph) ComputeRoutes(lps []*voltha.LogicalPort) {
Stephane Barbariec53a2752019-03-08 17:50:10 -0500116 if dg == nil {
117 return
118 }
khenaidoo1ce37ad2019-03-24 22:07:24 -0400119 dg.graphBuildLock.Lock()
120 defer dg.graphBuildLock.Unlock()
Stephane Barbariec53a2752019-03-08 17:50:10 -0500121
khenaidoo910204f2019-04-08 17:56:40 -0400122 // Clear the graph
123 dg.reset()
124
125 dg.logicalPorts = lps
126
127 // Set the root, non-root ports and boundary ports
khenaidoo89b0e942018-10-21 21:11:33 -0400128 for _, lp := range lps {
khenaidoo910204f2019-04-08 17:56:40 -0400129 portId := concatDeviceIdPortId(lp.DeviceId, lp.DevicePortNo)
130 if lp.RootPort {
131 dg.rootPortsString[portId] = lp.OfpPort.PortNo
132 dg.RootPorts[lp.OfpPort.PortNo] = lp.OfpPort.PortNo
133 } else {
134 dg.nonRootPortsString[portId] = lp.OfpPort.PortNo
135 }
136 dg.boundaryPorts[portId] = lp.OfpPort.PortNo
khenaidoo89b0e942018-10-21 21:11:33 -0400137 }
khenaidoo89b0e942018-10-21 21:11:33 -0400138
139 // Build the graph
140 var device *voltha.Device
khenaidoo89b0e942018-10-21 21:11:33 -0400141 for _, logicalPort := range dg.logicalPorts {
khenaidoo2c6a0992019-04-29 13:46:56 -0400142 device, _ = dg.getDevice(logicalPort.DeviceId, false)
khenaidoo910204f2019-04-08 17:56:40 -0400143 dg.GGraph = dg.addDevice(device, dg.GGraph, &dg.devicesAdded, &dg.portsAdded, dg.boundaryPorts)
khenaidoo89b0e942018-10-21 21:11:33 -0400144 }
khenaidoo910204f2019-04-08 17:56:40 -0400145
khenaidoo89b0e942018-10-21 21:11:33 -0400146 dg.Routes = dg.buildRoutes()
147}
148
khenaidoo910204f2019-04-08 17:56:40 -0400149// AddPort adds a port to the graph. If the graph is empty it will just invoke ComputeRoutes function
150func (dg *DeviceGraph) AddPort(lp *voltha.LogicalPort) {
khenaidoo2c6a0992019-04-29 13:46:56 -0400151 log.Debugw("Addport", log.Fields{"logicalPort": lp})
khenaidoo910204f2019-04-08 17:56:40 -0400152 // If the graph does not exist invoke ComputeRoutes.
153 if len(dg.boundaryPorts) == 0 {
154 dg.ComputeRoutes([]*voltha.LogicalPort{lp})
155 return
156 }
157
158 dg.graphBuildLock.Lock()
159 defer dg.graphBuildLock.Unlock()
160
161 portId := concatDeviceIdPortId(lp.DeviceId, lp.DevicePortNo)
162
163 // If the port is already part of the boundary ports, do nothing
164 if dg.portExist(portId) {
khenaidoo910204f2019-04-08 17:56:40 -0400165 return
166 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400167 // Add the port to the set of boundary ports
168 dg.boundaryPorts[portId] = lp.OfpPort.PortNo
169
khenaidoo910204f2019-04-08 17:56:40 -0400170 // Add the device where this port is located to the device graph. If the device is already added then
171 // only the missing port will be added
khenaidoo2c6a0992019-04-29 13:46:56 -0400172 device, _ := dg.getDevice(lp.DeviceId, false)
khenaidoo910204f2019-04-08 17:56:40 -0400173 dg.GGraph = dg.addDevice(device, dg.GGraph, &dg.devicesAdded, &dg.portsAdded, dg.boundaryPorts)
174
175 if lp.RootPort {
176 // Compute the route from this root port to all non-root ports
177 dg.rootPortsString[portId] = lp.OfpPort.PortNo
178 dg.RootPorts[lp.OfpPort.PortNo] = lp.OfpPort.PortNo
179 dg.Routes = dg.buildPathsToAllNonRootPorts(lp)
180 } else {
181 // Compute the route from this port to all root ports
182 dg.nonRootPortsString[portId] = lp.OfpPort.PortNo
183 dg.Routes = dg.buildPathsToAllRootPorts(lp)
184 }
185
186 dg.Print()
187}
188
189func (dg *DeviceGraph) Print() error {
khenaidoo2c6a0992019-04-29 13:46:56 -0400190 log.Debugw("Print", log.Fields{"graph": dg.logicalDeviceId, "boundaryPorts": dg.boundaryPorts})
khenaidoo910204f2019-04-08 17:56:40 -0400191 if level, err := log.GetPackageLogLevel(); err == nil && level == log.DebugLevel {
192 output := ""
193 routeNumber := 1
194 for k, v := range dg.Routes {
195 key := fmt.Sprintf("LP:%d->LP:%d", k.Ingress, k.Egress)
196 val := ""
197 for _, i := range v {
198 val += fmt.Sprintf("{%d->%s->%d},", i.Ingress, i.DeviceID, i.Egress)
199 }
200 val = val[:len(val)-1]
201 output += fmt.Sprintf("%d:{%s=>%s} ", routeNumber, key, fmt.Sprintf("[%s]", val))
202 routeNumber += 1
203 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400204 if len(dg.Routes) == 0 {
205 log.Debugw("no-routes-found", log.Fields{"lDeviceId": dg.logicalDeviceId, "Graph": dg.GGraph.String()})
206 } else {
207 log.Debugw("graph_routes", log.Fields{"lDeviceId": dg.logicalDeviceId, "Routes": output})
208 }
khenaidoo910204f2019-04-08 17:56:40 -0400209 }
210 return nil
211}
212
213//getDevice returns the device either from the local cache (default) or from the model.
214//TODO: Set a cache timeout such that we do not use invalid data. The full device lifecycle should also
215//be taken in consideration
khenaidoo2c6a0992019-04-29 13:46:56 -0400216func (dg *DeviceGraph) getDevice(id string, useCache bool) (*voltha.Device, error) {
217 if useCache {
218 dg.cachedDevicesLock.RLock()
219 if d, exist := dg.cachedDevices[id]; exist {
220 dg.cachedDevicesLock.RUnlock()
221 //log.Debugw("getDevice - returned from cache", log.Fields{"deviceId": id})
222 return d, nil
223 }
khenaidoo910204f2019-04-08 17:56:40 -0400224 dg.cachedDevicesLock.RUnlock()
khenaidoo910204f2019-04-08 17:56:40 -0400225 }
khenaidoo910204f2019-04-08 17:56:40 -0400226 // Not cached
227 if d, err := dg.getDeviceFromModel(id); err != nil {
228 log.Errorw("device-not-found", log.Fields{"deviceId": id, "error": err})
229 return nil, err
230 } else { // cache it
231 dg.cachedDevicesLock.Lock()
232 dg.cachedDevices[id] = d
233 dg.cachedDevicesLock.Unlock()
234 //log.Debugw("getDevice - returned from model", log.Fields{"deviceId": id})
235 return d, nil
236 }
237}
238
239// addDevice adds a device to a device graph and setup edges that represent the device connections to its peers
khenaidoo89b0e942018-10-21 21:11:33 -0400240func (dg *DeviceGraph) addDevice(device *voltha.Device, g goraph.Graph, devicesAdded *map[string]string, portsAdded *map[string]string,
khenaidoo910204f2019-04-08 17:56:40 -0400241 boundaryPorts map[string]uint32) goraph.Graph {
khenaidoo89b0e942018-10-21 21:11:33 -0400242
243 if device == nil {
244 return g
245 }
246
khenaidoo3d3b8c22019-05-22 18:10:39 -0400247 log.Debugw("Adding-device", log.Fields{"deviceId": device.Id, "ports": device.Ports})
248
khenaidoo910204f2019-04-08 17:56:40 -0400249 if _, exist := (*devicesAdded)[device.Id]; !exist {
250 g.AddNode(goraph.NewNode(device.Id))
251 (*devicesAdded)[device.Id] = device.Id
khenaidoo89b0e942018-10-21 21:11:33 -0400252 }
khenaidoo89b0e942018-10-21 21:11:33 -0400253
254 var portId string
255 var peerPortId string
256 for _, port := range device.Ports {
257 portId = concatDeviceIdPortId(device.Id, port.PortNo)
258 if _, exist := (*portsAdded)[portId]; !exist {
259 (*portsAdded)[portId] = portId
260 g.AddNode(goraph.NewNode(portId))
261 g.AddEdge(goraph.StringID(device.Id), goraph.StringID(portId), 1)
262 g.AddEdge(goraph.StringID(portId), goraph.StringID(device.Id), 1)
263 }
264 for _, peer := range port.Peers {
265 if _, exist := (*devicesAdded)[peer.DeviceId]; !exist {
khenaidoo2c6a0992019-04-29 13:46:56 -0400266 d, _ := dg.getDevice(peer.DeviceId, true)
khenaidoo89b0e942018-10-21 21:11:33 -0400267 g = dg.addDevice(d, g, devicesAdded, portsAdded, boundaryPorts)
khenaidoo89b0e942018-10-21 21:11:33 -0400268 }
khenaidoo2c6a0992019-04-29 13:46:56 -0400269 peerPortId = concatDeviceIdPortId(peer.DeviceId, peer.PortNo)
270 g.AddEdge(goraph.StringID(portId), goraph.StringID(peerPortId), 1)
271 g.AddEdge(goraph.StringID(peerPortId), goraph.StringID(portId), 1)
272
khenaidoo89b0e942018-10-21 21:11:33 -0400273 }
274 }
275 return g
276}
277
khenaidoo910204f2019-04-08 17:56:40 -0400278//portExist returns true if the port ID is already part of the boundary ports map.
279func (dg *DeviceGraph) portExist(id string) bool {
280 dg.boundaryPortsLock.RLock()
281 defer dg.boundaryPortsLock.RUnlock()
282 _, exist := dg.boundaryPorts[id]
khenaidoo89b0e942018-10-21 21:11:33 -0400283 return exist
284}
285
khenaidoo910204f2019-04-08 17:56:40 -0400286// buildPathsToAllRootPorts builds all the paths from the non-root logical port to all root ports
287// on the logical device
288func (dg *DeviceGraph) buildPathsToAllRootPorts(lp *voltha.LogicalPort) map[OFPortLink][]RouteHop {
289 paths := dg.Routes
290 source := concatDeviceIdPortId(lp.DeviceId, lp.DevicePortNo)
291 sourcePort := lp.OfpPort.PortNo
292 ch := make(chan *ofPortLinkToPath)
293 numBuildRequest := 0
294 for target, targetPort := range dg.rootPortsString {
295 go dg.buildRoute(source, target, sourcePort, targetPort, ch)
296 numBuildRequest += 1
297 }
298 responseReceived := 0
299forloop:
300 for {
301 if responseReceived == numBuildRequest {
302 break
303 }
304 select {
305 case res, ok := <-ch:
306 if !ok {
307 log.Debug("channel closed")
308 break forloop
khenaidoo89b0e942018-10-21 21:11:33 -0400309 }
khenaidoo910204f2019-04-08 17:56:40 -0400310 if res != nil && len(res.path) > 0 {
311 paths[res.link] = res.path
312 paths[OFPortLink{Ingress: res.link.Egress, Egress: res.link.Ingress}] = getReverseRoute(res.path)
khenaidoo89b0e942018-10-21 21:11:33 -0400313 }
khenaidoo910204f2019-04-08 17:56:40 -0400314 }
315 responseReceived += 1
316 }
khenaidoo89b0e942018-10-21 21:11:33 -0400317 return paths
318}
319
khenaidoo910204f2019-04-08 17:56:40 -0400320// buildPathsToAllNonRootPorts builds all the paths from the root logical port to all non-root ports
321// on the logical device
322func (dg *DeviceGraph) buildPathsToAllNonRootPorts(lp *voltha.LogicalPort) map[OFPortLink][]RouteHop {
323 paths := dg.Routes
324 source := concatDeviceIdPortId(lp.DeviceId, lp.DevicePortNo)
325 sourcePort := lp.OfpPort.PortNo
326 ch := make(chan *ofPortLinkToPath)
327 numBuildRequest := 0
328 for target, targetPort := range dg.nonRootPortsString {
329 go dg.buildRoute(source, target, sourcePort, targetPort, ch)
330 numBuildRequest += 1
331 }
332 responseReceived := 0
333forloop:
334 for {
335 if responseReceived == numBuildRequest {
336 break
337 }
338 select {
339 case res, ok := <-ch:
340 if !ok {
341 log.Debug("channel closed")
342 break forloop
343 }
344 if res != nil && len(res.path) > 0 {
345 paths[res.link] = res.path
346 paths[OFPortLink{Ingress: res.link.Egress, Egress: res.link.Ingress}] = getReverseRoute(res.path)
347 }
348 }
349 responseReceived += 1
350 }
351 return paths
352}
353
354//buildRoute builds a route between a source and a target logical port
355func (dg *DeviceGraph) buildRoute(sourceId, targetId string, sourcePort, targetPort uint32, ch chan *ofPortLinkToPath) {
356 var pathIds []goraph.ID
357 path := make([]RouteHop, 0)
358 var err error
359 var hop RouteHop
360 var result *ofPortLinkToPath
361
362 if sourceId == targetId {
363 ch <- result
364 return
365 }
366 //Ignore Root - Root Routes
367 if dg.IsRootPort(sourcePort) && dg.IsRootPort(targetPort) {
368 ch <- result
369 return
370 }
371
372 //Ignore non-Root - non-Root Routes
373 if !dg.IsRootPort(sourcePort) && !dg.IsRootPort(targetPort) {
374 ch <- result
375 return
376 }
377
378 if pathIds, _, err = goraph.Dijkstra(dg.GGraph, goraph.StringID(sourceId), goraph.StringID(targetId)); err != nil {
379 log.Errorw("no-path", log.Fields{"sourceId": sourceId, "targetId": targetId, "error": err})
380 ch <- result
381 return
382 }
383 if len(pathIds)%3 != 0 {
384 ch <- result
385 return
386 }
387 var deviceId string
388 var ingressPort uint32
389 var egressPort uint32
390 for i := 0; i < len(pathIds); i = i + 3 {
391 if deviceId, ingressPort, err = splitIntoDeviceIdPortId(pathIds[i].String()); err != nil {
392 log.Errorw("id-error", log.Fields{"sourceId": sourceId, "targetId": targetId, "error": err})
393 break
394 }
395 if _, egressPort, err = splitIntoDeviceIdPortId(pathIds[i+2].String()); err != nil {
396 log.Errorw("id-error", log.Fields{"sourceId": sourceId, "targetId": targetId, "error": err})
397 break
398 }
399 hop = RouteHop{Ingress: ingressPort, DeviceID: deviceId, Egress: egressPort}
400 path = append(path, hop)
401 }
402 result = &ofPortLinkToPath{link: OFPortLink{Ingress: sourcePort, Egress: targetPort}, path: path}
403 ch <- result
404}
405
406//buildRoutes build all routes between all the ports on the logical device
407func (dg *DeviceGraph) buildRoutes() map[OFPortLink][]RouteHop {
408 paths := make(map[OFPortLink][]RouteHop)
409 ch := make(chan *ofPortLinkToPath)
410 numBuildRequest := 0
411 for source, sourcePort := range dg.boundaryPorts {
412 for target, targetPort := range dg.boundaryPorts {
413 go dg.buildRoute(source, target, sourcePort, targetPort, ch)
414 numBuildRequest += 1
khenaidoo89b0e942018-10-21 21:11:33 -0400415 }
416 }
khenaidoo910204f2019-04-08 17:56:40 -0400417 responseReceived := 0
418forloop:
419 for {
420 if responseReceived == numBuildRequest {
421 break
422 }
423 select {
424 case res, ok := <-ch:
425 if !ok {
426 log.Debug("channel closed")
427 break forloop
428 }
429 if res != nil && len(res.path) > 0 {
430 paths[res.link] = res.path
431 }
432 }
433 responseReceived += 1
434 }
435 return paths
436}
437
438// reset cleans up the device graph
439func (dg *DeviceGraph) reset() {
440 dg.devicesAdded = make(map[string]string)
441 dg.portsAdded = make(map[string]string)
442 dg.rootPortsString = make(map[string]uint32)
443 dg.nonRootPortsString = make(map[string]uint32)
444 dg.RootPorts = make(map[uint32]uint32)
445 dg.boundaryPorts = make(map[string]uint32)
446 dg.Routes = make(map[OFPortLink][]RouteHop)
447 dg.cachedDevices = make(map[string]*voltha.Device)
448}
449
450//concatDeviceIdPortId formats a portid using the device id and the port number
451func concatDeviceIdPortId(deviceId string, portNo uint32) string {
452 return fmt.Sprintf("%s:%d", deviceId, portNo)
453}
454
455// splitIntoDeviceIdPortId extracts the device id and port number from the portId
456func splitIntoDeviceIdPortId(id string) (string, uint32, error) {
457 result := strings.Split(id, ":")
458 if len(result) != 2 {
459 return "", 0, errors.New(fmt.Sprintf("invalid-id-%s", id))
460 }
461 if temp, err := strconv.ParseInt(result[1], 10, 32); err != nil {
462 return "", 0, errors.New(fmt.Sprintf("invalid-id-%s-%s", id, err.Error()))
463 } else {
464 return result[0], uint32(temp), nil
465 }
466}
467
khenaidoocfe03b92019-06-03 20:06:31 -0400468//getReverseRoute returns the reverse of the route
khenaidoo910204f2019-04-08 17:56:40 -0400469func getReverseRoute(route []RouteHop) []RouteHop {
470 reverse := make([]RouteHop, len(route))
khenaidoocfe03b92019-06-03 20:06:31 -0400471 for i, j := 0, len(route)-1; j >= 0; i, j = i+1, j-1 {
472 reverse[i].DeviceID, reverse[i].Ingress, reverse[i].Egress = route[j].DeviceID, route[j].Egress, route[j].Ingress
khenaidoo910204f2019-04-08 17:56:40 -0400473 }
474 return reverse
khenaidoo89b0e942018-10-21 21:11:33 -0400475}