blob: cf6975c9e250b3ece36cff583a9b742d895b2673 [file] [log] [blame]
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -08003 *
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 */
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -070016package org.onosproject.segmentrouting.grouphandler;
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080017
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080018import org.onosproject.core.ApplicationId;
19import org.onosproject.net.DeviceId;
20import org.onosproject.net.Link;
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070021import org.onosproject.net.flowobjective.FlowObjectiveService;
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080022import org.onosproject.net.link.LinkService;
Charles Chan188ebf52015-12-23 00:15:11 -080023import org.onosproject.segmentrouting.SegmentRoutingManager;
Charles Chan0b4e6182015-11-03 10:42:14 -080024import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
25import org.onosproject.segmentrouting.config.DeviceProperties;
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080026
Pier Ventre917127a2016-10-31 16:49:19 -070027import java.util.HashSet;
28import java.util.Set;
29
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080030/**
31 * Default ECMP group handler creation module for a transit device.
32 * This component creates a set of ECMP groups for every neighbor
33 * that this device is connected to.
34 * For example, consider a network of 4 devices: D0 (Segment ID: 100),
35 * D1 (Segment ID: 101), D2 (Segment ID: 102) and D3 (Segment ID: 103),
36 * where D0 and D3 are edge devices and D1 and D2 are transit devices.
37 * Assume transit device D1 is connected to 2 neighbors (D0 and D3 ).
38 * The following groups will be created in D1:
39 * 1) all ports to D0 + with no label push,
40 * 2) all ports to D3 + with no label push,
41 */
42public class DefaultTransitGroupHandler extends DefaultGroupHandler {
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080043 protected DefaultTransitGroupHandler(DeviceId deviceId,
44 ApplicationId appId,
45 DeviceProperties config,
46 LinkService linkService,
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070047 FlowObjectiveService flowObjService,
Charles Chan188ebf52015-12-23 00:15:11 -080048 SegmentRoutingManager srManager) {
Charles Chane849c192016-01-11 18:28:54 -080049 super(deviceId, appId, config, linkService, flowObjService, srManager);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080050 }
51
52 @Override
53 public void createGroups() {
54 Set<DeviceId> neighbors = devicePortMap.keySet();
55 if (neighbors == null || neighbors.isEmpty()) {
56 return;
57 }
58
59 // Create all possible Neighbor sets from this router
60 // NOTE: Avoid any pairings of edge routers only
61 Set<Set<DeviceId>> sets = getPowerSetOfNeighbors(neighbors);
62 sets = filterEdgeRouterOnlyPairings(sets);
63 log.debug("createGroupsAtTransitRouter: The size of neighbor powerset "
64 + "for sw {} is {}", deviceId, sets.size());
Sho SHIMIZU6cfc02d2015-09-11 11:19:11 -070065 Set<NeighborSet> nsSet = new HashSet<>();
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080066 for (Set<DeviceId> combo : sets) {
67 if (combo.isEmpty()) {
68 continue;
69 }
Pier Ventre917127a2016-10-31 16:49:19 -070070 // For these NeighborSet isMpls is meaningless.
71 NeighborSet ns = new NeighborSet(combo, false);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080072 log.debug("createGroupsAtTransitRouter: sw {} combo {} ns {}",
73 deviceId, combo, ns);
74 nsSet.add(ns);
75 }
76 log.debug("createGroupsAtTransitRouter: The neighborset with label "
77 + "for sw {} is {}", deviceId, nsSet);
78
Saurav Das8a0732e2015-11-20 15:27:53 -080079 //createGroupsFromNeighborsets(nsSet);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080080 }
81
82 @Override
83 protected void newNeighbor(Link newNeighborLink) {
84 log.debug("New Neighbor: Updating groups for "
85 + "transit device {}", deviceId);
86 // Recompute neighbor power set
87 addNeighborAtPort(newNeighborLink.dst().deviceId(),
88 newNeighborLink.src().port());
89 // Compute new neighbor sets due to the addition of new neighbor
90 Set<NeighborSet> nsSet = computeImpactedNeighborsetForPortEvent(
91 newNeighborLink.dst().deviceId(),
92 devicePortMap.keySet());
Saurav Das8a0732e2015-11-20 15:27:53 -080093 //createGroupsFromNeighborsets(nsSet);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080094 }
95
96 @Override
97 protected void newPortToExistingNeighbor(Link newNeighborLink) {
Srikanth Vavilapalli23181912015-05-04 09:48:09 -070098 /*log.debug("New port to existing neighbor: Updating "
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -080099 + "groups for transit device {}", deviceId);
100 addNeighborAtPort(newNeighborLink.dst().deviceId(),
101 newNeighborLink.src().port());
102 Set<NeighborSet> nsSet = computeImpactedNeighborsetForPortEvent(
103 newNeighborLink.dst().deviceId(),
104 devicePortMap.keySet());
105 for (NeighborSet ns : nsSet) {
106 // Create the new bucket to be updated
107 TrafficTreatment.Builder tBuilder =
108 DefaultTrafficTreatment.builder();
109 tBuilder.setOutput(newNeighborLink.src().port())
110 .setEthDst(deviceConfig.getDeviceMac(
111 newNeighborLink.dst().deviceId()))
Srikanth Vavilapalli717361f2015-03-16 12:06:04 -0700112 .setEthSrc(nodeMacAddr);
113 if (ns.getEdgeLabel() != NeighborSet.NO_EDGE_LABEL) {
114 tBuilder.pushMpls()
115 .setMpls(MplsLabel.
116 mplsLabel(ns.getEdgeLabel()));
117 }
sangho834e4b02015-05-01 09:38:25 -0700118
119
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700120 Integer nextId = deviceNextObjectiveIds.get(ns);
sangho834e4b02015-05-01 09:38:25 -0700121 if (nextId != null) {
122 NextObjective.Builder nextObjBuilder = DefaultNextObjective
123 .builder().withId(nextId)
124 .withType(NextObjective.Type.HASHED).fromApp(appId);
125
126 nextObjBuilder.addTreatment(tBuilder.build());
127
128 NextObjective nextObjective = nextObjBuilder.add();
129 flowObjectiveService.next(deviceId, nextObjective);
130 }
Srikanth Vavilapalli23181912015-05-04 09:48:09 -0700131 }*/
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800132 }
133
134 @Override
135 protected Set<NeighborSet> computeImpactedNeighborsetForPortEvent(
136 DeviceId impactedNeighbor,
137 Set<DeviceId> updatedNeighbors) {
138 Set<Set<DeviceId>> powerSet = getPowerSetOfNeighbors(updatedNeighbors);
139
Sho SHIMIZU6cfc02d2015-09-11 11:19:11 -0700140 Set<DeviceId> tmp = new HashSet<>();
sanghob35a6192015-04-01 13:05:26 -0700141 tmp.addAll(updatedNeighbors);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800142 tmp.remove(impactedNeighbor);
143 Set<Set<DeviceId>> tmpPowerSet = getPowerSetOfNeighbors(tmp);
144
145 // Compute the impacted neighbor sets
146 powerSet.removeAll(tmpPowerSet);
147
148 powerSet = filterEdgeRouterOnlyPairings(powerSet);
Sho SHIMIZU6cfc02d2015-09-11 11:19:11 -0700149 Set<NeighborSet> nsSet = new HashSet<>();
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800150 for (Set<DeviceId> combo : powerSet) {
151 if (combo.isEmpty()) {
152 continue;
153 }
Pier Ventre917127a2016-10-31 16:49:19 -0700154 // For these NeighborSet isMpls is meaningless.
155 NeighborSet ns = new NeighborSet(combo, false);
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800156 log.debug("createGroupsAtTransitRouter: sw {} combo {} ns {}",
157 deviceId, combo, ns);
158 nsSet.add(ns);
159 }
160 log.debug("computeImpactedNeighborsetForPortEvent: The neighborset with label "
161 + "for sw {} is {}", deviceId, nsSet);
162
163 return nsSet;
164 }
165
166 private Set<Set<DeviceId>> filterEdgeRouterOnlyPairings(Set<Set<DeviceId>> sets) {
Sho SHIMIZU6cfc02d2015-09-11 11:19:11 -0700167 Set<Set<DeviceId>> fiteredSets = new HashSet<>();
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800168 for (Set<DeviceId> deviceSubSet : sets) {
169 if (deviceSubSet.size() > 1) {
170 boolean avoidEdgeRouterPairing = true;
171 for (DeviceId device : deviceSubSet) {
Charles Chan0b4e6182015-11-03 10:42:14 -0800172 boolean isEdge;
173 try {
174 isEdge = deviceConfig.isEdgeDevice(device);
175 } catch (DeviceConfigNotFoundException e) {
176 log.warn(e.getMessage() + " Skipping filterEdgeRouterOnlyPairings on this device.");
177 continue;
178 }
179
180 if (!isEdge) {
Srikanth Vavilapallied12ae52015-02-09 14:43:19 -0800181 avoidEdgeRouterPairing = false;
182 break;
183 }
184 }
185 if (!avoidEdgeRouterPairing) {
186 fiteredSets.add(deviceSubSet);
187 }
188 } else {
189 fiteredSets.add(deviceSubSet);
190 }
191 }
192 return fiteredSets;
193 }
194}