blob: 443390465be49a98bc8459e707128b7d57ca0fe1 [file] [log] [blame]
Charles Chand55e84d2016-03-30 17:54:24 -07001/*
Pier Luigi96fe0772018-02-28 12:10:50 +01002 * Copyright 2018-present Open Networking Foundation
Charles Chand55e84d2016-03-30 17:54:24 -07003 *
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
Pier Luigi96fe0772018-02-28 12:10:50 +010017package org.onosproject.segmentrouting.mcast;
Charles Chand55e84d2016-03-30 17:54:24 -070018
Pier7631c492018-04-19 16:47:06 +020019import com.google.common.base.Objects;
Pier Luigi05514fd2018-02-28 17:24:03 +010020import com.google.common.cache.Cache;
21import com.google.common.cache.CacheBuilder;
22import com.google.common.cache.RemovalCause;
23import com.google.common.cache.RemovalNotification;
Piere7e8e3c2018-04-17 17:25:22 +020024import com.google.common.collect.HashMultimap;
Pierb0328e42018-03-27 11:29:42 -070025import com.google.common.collect.ImmutableList;
Charles Chand55e84d2016-03-30 17:54:24 -070026import com.google.common.collect.ImmutableSet;
27import com.google.common.collect.Lists;
Pier Luigibad6d6c2018-01-23 16:06:38 +010028import com.google.common.collect.Maps;
Piere7e8e3c2018-04-17 17:25:22 +020029import com.google.common.collect.Multimap;
Charles Chand55e84d2016-03-30 17:54:24 -070030import com.google.common.collect.Sets;
Charles Chand55e84d2016-03-30 17:54:24 -070031import org.onlab.packet.IpAddress;
Charles Chand55e84d2016-03-30 17:54:24 -070032import org.onlab.packet.VlanId;
33import org.onlab.util.KryoNamespace;
Pier4694e092018-04-17 16:29:56 +020034import org.onosproject.cluster.NodeId;
Charles Chand55e84d2016-03-30 17:54:24 -070035import org.onosproject.core.ApplicationId;
36import org.onosproject.core.CoreService;
Pier3ee24552018-03-14 16:47:32 -070037import org.onosproject.mcast.api.McastEvent;
38import org.onosproject.mcast.api.McastRoute;
Pierb0328e42018-03-27 11:29:42 -070039import org.onosproject.mcast.api.McastRouteData;
Pier3ee24552018-03-14 16:47:32 -070040import org.onosproject.mcast.api.McastRouteUpdate;
Charles Chan0e081ad2018-05-10 22:19:43 +000041import org.onosproject.net.HostId;
Charles Chand55e84d2016-03-30 17:54:24 -070042import org.onosproject.net.ConnectPoint;
43import org.onosproject.net.DeviceId;
44import org.onosproject.net.Link;
45import org.onosproject.net.Path;
46import org.onosproject.net.PortNumber;
Charles Chan2199c302016-04-23 17:36:10 -070047import org.onosproject.net.flowobjective.DefaultObjectiveContext;
Charles Chand55e84d2016-03-30 17:54:24 -070048import org.onosproject.net.flowobjective.ForwardingObjective;
49import org.onosproject.net.flowobjective.NextObjective;
Charles Chan2199c302016-04-23 17:36:10 -070050import org.onosproject.net.flowobjective.ObjectiveContext;
Pier3ee24552018-03-14 16:47:32 -070051import org.onosproject.net.topology.LinkWeigher;
Pier Luigi83f919b2018-02-15 16:33:08 +010052import org.onosproject.net.topology.Topology;
Charles Chand55e84d2016-03-30 17:54:24 -070053import org.onosproject.net.topology.TopologyService;
Pier3ee24552018-03-14 16:47:32 -070054import org.onosproject.segmentrouting.SRLinkWeigher;
Pier Luigi96fe0772018-02-28 12:10:50 +010055import org.onosproject.segmentrouting.SegmentRoutingManager;
Charles Chand55e84d2016-03-30 17:54:24 -070056import org.onosproject.store.serializers.KryoNamespaces;
57import org.onosproject.store.service.ConsistentMap;
58import org.onosproject.store.service.Serializer;
Andrea Campanellab20b8ea2018-06-05 14:19:21 +020059import org.onosproject.store.service.Versioned;
Charles Chand55e84d2016-03-30 17:54:24 -070060import org.slf4j.Logger;
61import org.slf4j.LoggerFactory;
62
Pier Luigib72201b2018-01-25 16:16:02 +010063import java.time.Instant;
Charles Chand55e84d2016-03-30 17:54:24 -070064import java.util.Collection;
65import java.util.Collections;
Pier Luigibad6d6c2018-01-23 16:06:38 +010066import java.util.Comparator;
Charles Chand55e84d2016-03-30 17:54:24 -070067import java.util.List;
Charles Chan2199c302016-04-23 17:36:10 -070068import java.util.Map;
Pier3ee24552018-03-14 16:47:32 -070069import java.util.Map.Entry;
Charles Chand55e84d2016-03-30 17:54:24 -070070import java.util.Optional;
71import java.util.Set;
Pier Luigib72201b2018-01-25 16:16:02 +010072import java.util.concurrent.ScheduledExecutorService;
73import java.util.concurrent.TimeUnit;
74import java.util.concurrent.locks.Lock;
75import java.util.concurrent.locks.ReentrantLock;
Charles Chan2199c302016-04-23 17:36:10 -070076import java.util.stream.Collectors;
77
Pier Luigib72201b2018-01-25 16:16:02 +010078import static java.util.concurrent.Executors.newScheduledThreadPool;
79import static org.onlab.util.Tools.groupedThreads;
Charles Chan0e081ad2018-05-10 22:19:43 +000080
Pier4694e092018-04-17 16:29:56 +020081import static org.onosproject.mcast.api.McastEvent.Type.ROUTE_ADDED;
Pierb0328e42018-03-27 11:29:42 -070082import static org.onosproject.mcast.api.McastEvent.Type.ROUTE_REMOVED;
Andrea Campanella0a1d47c2018-04-27 14:44:15 +020083import static org.onosproject.mcast.api.McastEvent.Type.SOURCES_ADDED;
84import static org.onosproject.mcast.api.McastEvent.Type.SOURCES_REMOVED;
Charles Chan0e081ad2018-05-10 22:19:43 +000085import static org.onosproject.mcast.api.McastEvent.Type.SINKS_ADDED;
86import static org.onosproject.mcast.api.McastEvent.Type.SINKS_REMOVED;
87
Piere5bff482018-03-07 11:42:50 +010088import static org.onosproject.segmentrouting.mcast.McastRole.EGRESS;
89import static org.onosproject.segmentrouting.mcast.McastRole.INGRESS;
90import static org.onosproject.segmentrouting.mcast.McastRole.TRANSIT;
Charles Chand55e84d2016-03-30 17:54:24 -070091
92/**
Pier Luigi96fe0772018-02-28 12:10:50 +010093 * Handles Multicast related events.
Charles Chand55e84d2016-03-30 17:54:24 -070094 */
Charles Chand2990362016-04-18 13:44:03 -070095public class McastHandler {
96 private static final Logger log = LoggerFactory.getLogger(McastHandler.class);
Charles Chand55e84d2016-03-30 17:54:24 -070097 private final SegmentRoutingManager srManager;
Charles Chanfc5c7802016-05-17 13:13:55 -070098 private final TopologyService topologyService;
Pier4694e092018-04-17 16:29:56 +020099 private final McastUtils mcastUtils;
Charles Chan2199c302016-04-23 17:36:10 -0700100 private final ConsistentMap<McastStoreKey, NextObjective> mcastNextObjStore;
Pier7631c492018-04-19 16:47:06 +0200101 private final ConsistentMap<McastRoleStoreKey, McastRole> mcastRoleStore;
Charles Chan2199c302016-04-23 17:36:10 -0700102
Pier Luigi05514fd2018-02-28 17:24:03 +0100103 // Wait time for the cache
104 private static final int WAIT_TIME_MS = 1000;
Pierb0328e42018-03-27 11:29:42 -0700105
Pier7631c492018-04-19 16:47:06 +0200106 //The mcastEventCache is implemented to avoid race condition by giving more time
107 // to the underlying subsystems to process previous calls.
Pier Luigi05514fd2018-02-28 17:24:03 +0100108 private Cache<McastCacheKey, McastEvent> mcastEventCache = CacheBuilder.newBuilder()
109 .expireAfterWrite(WAIT_TIME_MS, TimeUnit.MILLISECONDS)
110 .removalListener((RemovalNotification<McastCacheKey, McastEvent> notification) -> {
Pier Luigi05514fd2018-02-28 17:24:03 +0100111 IpAddress mcastIp = notification.getKey().mcastIp();
Pierb0328e42018-03-27 11:29:42 -0700112 HostId sink = notification.getKey().sinkHost();
Pier Luigi05514fd2018-02-28 17:24:03 +0100113 McastEvent mcastEvent = notification.getValue();
114 RemovalCause cause = notification.getCause();
115 log.debug("mcastEventCache removal event. group={}, sink={}, mcastEvent={}, cause={}",
116 mcastIp, sink, mcastEvent, cause);
Pier7631c492018-04-19 16:47:06 +0200117 // If it expires or it has been replaced, we deque the event - no when evicted
Pier Luigi05514fd2018-02-28 17:24:03 +0100118 switch (notification.getCause()) {
119 case REPLACED:
120 case EXPIRED:
121 dequeueMcastEvent(mcastEvent);
122 break;
123 default:
124 break;
125 }
126 }).build();
127
128 private void enqueueMcastEvent(McastEvent mcastEvent) {
Pier3ee24552018-03-14 16:47:32 -0700129 final McastRouteUpdate mcastRouteUpdate = mcastEvent.subject();
Pierb0328e42018-03-27 11:29:42 -0700130 final McastRouteUpdate mcastRoutePrevUpdate = mcastEvent.prevSubject();
131 final IpAddress group = mcastRoutePrevUpdate.route().group();
Pierb0328e42018-03-27 11:29:42 -0700132 ImmutableSet.Builder<HostId> sinksBuilder = ImmutableSet.builder();
Pier3ee24552018-03-14 16:47:32 -0700133 if (mcastEvent.type() == SOURCES_ADDED ||
134 mcastEvent.type() == SOURCES_REMOVED) {
Pier7631c492018-04-19 16:47:06 +0200135 // Current subject and prev just differ for the source connect points
136 sinksBuilder.addAll(mcastRouteUpdate.sinks().keySet());
Pierb0328e42018-03-27 11:29:42 -0700137 } else if (mcastEvent.type() == SINKS_ADDED) {
Pierb0328e42018-03-27 11:29:42 -0700138 mcastRouteUpdate.sinks().forEach(((hostId, connectPoints) -> {
139 // Get the previous locations and verify if there are changes
140 Set<ConnectPoint> prevConnectPoints = mcastRoutePrevUpdate.sinks().get(hostId);
141 Set<ConnectPoint> changes = Sets.difference(connectPoints, prevConnectPoints != null ?
142 prevConnectPoints : Collections.emptySet());
143 if (!changes.isEmpty()) {
144 sinksBuilder.add(hostId);
Pier3ee24552018-03-14 16:47:32 -0700145 }
Pierb0328e42018-03-27 11:29:42 -0700146 }));
147 } else if (mcastEvent.type() == SINKS_REMOVED) {
Pierb0328e42018-03-27 11:29:42 -0700148 mcastRoutePrevUpdate.sinks().forEach(((hostId, connectPoints) -> {
149 // Get the current locations and verify if there are changes
150 Set<ConnectPoint> currentConnectPoints = mcastRouteUpdate.sinks().get(hostId);
151 Set<ConnectPoint> changes = Sets.difference(connectPoints, currentConnectPoints != null ?
152 currentConnectPoints : Collections.emptySet());
153 if (!changes.isEmpty()) {
154 sinksBuilder.add(hostId);
155 }
156 }));
157 } else if (mcastEvent.type() == ROUTE_REMOVED) {
158 // Current subject is null, just take the previous host ids
159 sinksBuilder.addAll(mcastRoutePrevUpdate.sinks().keySet());
Pier Luigi05514fd2018-02-28 17:24:03 +0100160 }
Pier Luigi05514fd2018-02-28 17:24:03 +0100161 sinksBuilder.build().forEach(sink -> {
Pier3ee24552018-03-14 16:47:32 -0700162 McastCacheKey cacheKey = new McastCacheKey(group, sink);
Pier Luigi05514fd2018-02-28 17:24:03 +0100163 mcastEventCache.put(cacheKey, mcastEvent);
164 });
165 }
166
167 private void dequeueMcastEvent(McastEvent mcastEvent) {
Pierb0328e42018-03-27 11:29:42 -0700168 final McastRouteUpdate mcastUpdate = mcastEvent.subject();
169 final McastRouteUpdate mcastPrevUpdate = mcastEvent.prevSubject();
Pierb0328e42018-03-27 11:29:42 -0700170 IpAddress mcastIp = mcastPrevUpdate.route().group();
Pierb0328e42018-03-27 11:29:42 -0700171 Set<ConnectPoint> prevSinks = mcastPrevUpdate.sinks()
Pier7631c492018-04-19 16:47:06 +0200172 .values().stream().flatMap(Collection::stream).collect(Collectors.toSet());
173 Set<ConnectPoint> prevSources = mcastPrevUpdate.sources()
174 .values().stream().flatMap(Collection::stream).collect(Collectors.toSet());
175 Set<ConnectPoint> sources;
Pier Luigi05514fd2018-02-28 17:24:03 +0100176 switch (mcastEvent.type()) {
Pier3ee24552018-03-14 16:47:32 -0700177 case SOURCES_ADDED:
Pier7631c492018-04-19 16:47:06 +0200178 sources = mcastUpdate.sources()
179 .values().stream().flatMap(Collection::stream).collect(Collectors.toSet());
180 Set<ConnectPoint> sourcesToBeAdded = Sets.difference(sources, prevSources);
181 processSourcesAddedInternal(sourcesToBeAdded, mcastIp, mcastUpdate.sinks());
Pier Luigi05514fd2018-02-28 17:24:03 +0100182 break;
Pier3ee24552018-03-14 16:47:32 -0700183 case SOURCES_REMOVED:
Pier7631c492018-04-19 16:47:06 +0200184 sources = mcastUpdate.sources()
185 .values().stream().flatMap(Collection::stream).collect(Collectors.toSet());
186 Set<ConnectPoint> sourcesToBeRemoved = Sets.difference(prevSources, sources);
187 processSourcesRemovedInternal(sourcesToBeRemoved, sources, mcastIp, mcastUpdate.sinks());
Pier Luigi05514fd2018-02-28 17:24:03 +0100188 break;
189 case ROUTE_REMOVED:
Pier7631c492018-04-19 16:47:06 +0200190 processRouteRemovedInternal(prevSources, mcastIp);
Pier Luigi05514fd2018-02-28 17:24:03 +0100191 break;
Pier3ee24552018-03-14 16:47:32 -0700192 case SINKS_ADDED:
Pier7631c492018-04-19 16:47:06 +0200193 processSinksAddedInternal(prevSources, mcastIp, mcastUpdate.sinks(), prevSinks);
Pier Luigi05514fd2018-02-28 17:24:03 +0100194 break;
Pier3ee24552018-03-14 16:47:32 -0700195 case SINKS_REMOVED:
Pier7631c492018-04-19 16:47:06 +0200196 processSinksRemovedInternal(prevSources, mcastIp, mcastUpdate.sinks(), mcastPrevUpdate.sinks());
Pier Luigi05514fd2018-02-28 17:24:03 +0100197 break;
198 default:
199 break;
200 }
201 }
202
Pier Luigib72201b2018-01-25 16:16:02 +0100203 // Mcast lock to serialize local operations
204 private final Lock mcastLock = new ReentrantLock();
Pier Luigib72201b2018-01-25 16:16:02 +0100205 private void mcastLock() {
206 mcastLock.lock();
207 }
Pier Luigib72201b2018-01-25 16:16:02 +0100208 private void mcastUnlock() {
209 mcastLock.unlock();
210 }
Pier Luigib72201b2018-01-25 16:16:02 +0100211 // Stability threshold for Mcast. Seconds
212 private static final long MCAST_STABLITY_THRESHOLD = 5;
213 // Last change done
214 private Instant lastMcastChange = Instant.now();
215
216 /**
217 * Determines if mcast in the network has been stable in the last
218 * MCAST_STABLITY_THRESHOLD seconds, by comparing the current time
219 * to the last mcast change timestamp.
220 *
221 * @return true if stable
222 */
223 private boolean isMcastStable() {
224 long last = (long) (lastMcastChange.toEpochMilli() / 1000.0);
225 long now = (long) (Instant.now().toEpochMilli() / 1000.0);
Saurav Dasa4020382018-02-14 14:14:54 -0800226 log.trace("Mcast stable since {}s", now - last);
Pier Luigib72201b2018-01-25 16:16:02 +0100227 return (now - last) > MCAST_STABLITY_THRESHOLD;
228 }
229
Pier7631c492018-04-19 16:47:06 +0200230 // Verify interval for Mcast bucket corrector
Pier Luigib72201b2018-01-25 16:16:02 +0100231 private static final long MCAST_VERIFY_INTERVAL = 30;
Pier7631c492018-04-19 16:47:06 +0200232 // Executor for mcast bucket corrector and for cache
Pier Luigib72201b2018-01-25 16:16:02 +0100233 private ScheduledExecutorService executorService
Pier Luigi05514fd2018-02-28 17:24:03 +0100234 = newScheduledThreadPool(1, groupedThreads("mcastWorker", "mcastWorker-%d", log));
Pier Luigib72201b2018-01-25 16:16:02 +0100235
Charles Chan2199c302016-04-23 17:36:10 -0700236 /**
Charles Chand55e84d2016-03-30 17:54:24 -0700237 * Constructs the McastEventHandler.
238 *
239 * @param srManager Segment Routing manager
240 */
Charles Chand2990362016-04-18 13:44:03 -0700241 public McastHandler(SegmentRoutingManager srManager) {
Pierb0328e42018-03-27 11:29:42 -0700242 ApplicationId coreAppId = srManager.coreService.getAppId(CoreService.CORE_APP_NAME);
Charles Chand55e84d2016-03-30 17:54:24 -0700243 this.srManager = srManager;
Charles Chand55e84d2016-03-30 17:54:24 -0700244 this.topologyService = srManager.topologyService;
Pierb0328e42018-03-27 11:29:42 -0700245 KryoNamespace.Builder mcastKryo = new KryoNamespace.Builder()
Charles Chand55e84d2016-03-30 17:54:24 -0700246 .register(KryoNamespaces.API)
Pier7631c492018-04-19 16:47:06 +0200247 .register(new McastStoreKeySerializer(), McastStoreKey.class);
Pierb0328e42018-03-27 11:29:42 -0700248 mcastNextObjStore = srManager.storageService
Charles Chan2199c302016-04-23 17:36:10 -0700249 .<McastStoreKey, NextObjective>consistentMapBuilder()
Charles Chand55e84d2016-03-30 17:54:24 -0700250 .withName("onos-mcast-nextobj-store")
Charles Chaneefdedf2016-05-23 16:45:45 -0700251 .withSerializer(Serializer.using(mcastKryo.build("McastHandler-NextObj")))
Charles Chand55e84d2016-03-30 17:54:24 -0700252 .build();
Pier7631c492018-04-19 16:47:06 +0200253 mcastKryo = new KryoNamespace.Builder()
254 .register(KryoNamespaces.API)
255 .register(new McastRoleStoreKeySerializer(), McastRoleStoreKey.class)
256 .register(McastRole.class);
Pierb0328e42018-03-27 11:29:42 -0700257 mcastRoleStore = srManager.storageService
Pier7631c492018-04-19 16:47:06 +0200258 .<McastRoleStoreKey, McastRole>consistentMapBuilder()
Charles Chan2199c302016-04-23 17:36:10 -0700259 .withName("onos-mcast-role-store")
Charles Chaneefdedf2016-05-23 16:45:45 -0700260 .withSerializer(Serializer.using(mcastKryo.build("McastHandler-Role")))
Charles Chan2199c302016-04-23 17:36:10 -0700261 .build();
Pierb0328e42018-03-27 11:29:42 -0700262 mcastUtils = new McastUtils(srManager, coreAppId, log);
Pier7631c492018-04-19 16:47:06 +0200263 // Init the executor service, the buckets corrector and schedule the clean up
Pier Luigib72201b2018-01-25 16:16:02 +0100264 executorService.scheduleWithFixedDelay(new McastBucketCorrector(), 10,
Pierb0328e42018-03-27 11:29:42 -0700265 MCAST_VERIFY_INTERVAL, TimeUnit.SECONDS);
Pier Luigi05514fd2018-02-28 17:24:03 +0100266 executorService.scheduleAtFixedRate(mcastEventCache::cleanUp, 0,
267 WAIT_TIME_MS, TimeUnit.MILLISECONDS);
Charles Chan2199c302016-04-23 17:36:10 -0700268 }
269
270 /**
Pier7631c492018-04-19 16:47:06 +0200271 * Read initial multicast configuration from mcast store.
Charles Chan2199c302016-04-23 17:36:10 -0700272 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100273 public void init() {
Pierb0328e42018-03-27 11:29:42 -0700274 lastMcastChange = Instant.now();
275 mcastLock();
276 try {
277 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Pier7631c492018-04-19 16:47:06 +0200278 log.debug("Init group {}", mcastRoute.group());
Pier4694e092018-04-17 16:29:56 +0200279 if (!mcastUtils.isLeader(mcastRoute.group())) {
280 log.debug("Skip {} due to lack of leadership", mcastRoute.group());
281 return;
282 }
Pierb0328e42018-03-27 11:29:42 -0700283 McastRouteData mcastRouteData = srManager.multicastRouteService.routeData(mcastRoute);
Pier7631c492018-04-19 16:47:06 +0200284 // For each source process the mcast tree
285 srManager.multicastRouteService.sources(mcastRoute).forEach(source -> {
286 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
287 Set<DeviceId> visited = Sets.newHashSet();
288 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan1fa010c2018-08-19 19:21:46 -0700289 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
Pier7631c492018-04-19 16:47:06 +0200290 currentPath, mcastRoute.group(), source);
291 // Get all the sinks and process them
292 Set<ConnectPoint> sinks = processSinksToBeAdded(source, mcastRoute.group(),
293 mcastRouteData.sinks());
294 // Filter out all the working sinks, we do not want to move them
295 // TODO we need a better way to distinguish flows coming from different sources
296 sinks = sinks.stream()
297 .filter(sink -> !mcastPaths.containsKey(sink) ||
298 !isSinkForSource(mcastRoute.group(), sink, source))
299 .collect(Collectors.toSet());
300 if (sinks.isEmpty()) {
301 log.debug("Skip {} for source {} nothing to do", mcastRoute.group(), source);
302 return;
303 }
304 Map<ConnectPoint, List<Path>> mcasTree = computeSinkMcastTree(source.deviceId(), sinks);
305 mcasTree.forEach((sink, paths) -> processSinkAddedInternal(source, sink,
306 mcastRoute.group(), paths));
307 });
Pierb0328e42018-03-27 11:29:42 -0700308 });
309 } finally {
310 mcastUnlock();
311 }
Charles Chand55e84d2016-03-30 17:54:24 -0700312 }
313
314 /**
Pier Luigib72201b2018-01-25 16:16:02 +0100315 * Clean up when deactivating the application.
316 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100317 public void terminate() {
Pier8a0b5fb2018-04-20 14:14:34 +0200318 mcastEventCache.invalidateAll();
Pier Luigib72201b2018-01-25 16:16:02 +0100319 executorService.shutdown();
Pier8a0b5fb2018-04-20 14:14:34 +0200320 mcastNextObjStore.destroy();
321 mcastRoleStore.destroy();
322 mcastUtils.terminate();
323 log.info("Terminated");
Pier Luigib72201b2018-01-25 16:16:02 +0100324 }
325
326 /**
Pier Luigi05514fd2018-02-28 17:24:03 +0100327 * Processes the SOURCE_ADDED, SOURCE_UPDATED, SINK_ADDED,
Pier7631c492018-04-19 16:47:06 +0200328 * SINK_REMOVED, ROUTE_ADDED and ROUTE_REMOVED events.
Charles Chand55e84d2016-03-30 17:54:24 -0700329 *
330 * @param event McastEvent with SOURCE_ADDED type
331 */
Pier Luigi05514fd2018-02-28 17:24:03 +0100332 public void processMcastEvent(McastEvent event) {
Charles Chan0e081ad2018-05-10 22:19:43 +0000333 log.info("process {}", event);
Pier4694e092018-04-17 16:29:56 +0200334 // If it is a route added, we do not enqueue
335 if (event.type() == ROUTE_ADDED) {
Pier4694e092018-04-17 16:29:56 +0200336 processRouteAddedInternal(event.subject().route().group());
337 } else {
Pier4694e092018-04-17 16:29:56 +0200338 enqueueMcastEvent(event);
339 }
Pier Luigi9930da52018-02-02 16:19:11 +0100340 }
341
342 /**
Pier7631c492018-04-19 16:47:06 +0200343 * Process the SOURCES_ADDED event.
344 *
345 * @param sources the sources connect point
346 * @param mcastIp the group address
347 * @param sinks the sinks connect points
348 */
349 private void processSourcesAddedInternal(Set<ConnectPoint> sources, IpAddress mcastIp,
350 Map<HostId, Set<ConnectPoint>> sinks) {
351 lastMcastChange = Instant.now();
352 mcastLock();
353 try {
354 log.debug("Processing sources added {} for group {}", sources, mcastIp);
355 if (!mcastUtils.isLeader(mcastIp)) {
356 log.debug("Skip {} due to lack of leadership", mcastIp);
357 return;
358 }
359 sources.forEach(source -> {
360 Set<ConnectPoint> sinksToBeAdded = processSinksToBeAdded(source, mcastIp, sinks);
361 Map<ConnectPoint, List<Path>> mcasTree = computeSinkMcastTree(source.deviceId(), sinksToBeAdded);
362 mcasTree.forEach((sink, paths) -> processSinkAddedInternal(source, sink, mcastIp, paths));
363 });
364 } finally {
365 mcastUnlock();
366 }
367 }
368
369 /**
370 * Process the SOURCES_REMOVED event.
371 *
372 * @param sourcesToBeRemoved the source connect points to be removed
373 * @param remainingSources the remainig source connect points
374 * @param mcastIp the group address
375 * @param sinks the sinks connect points
376 */
377 private void processSourcesRemovedInternal(Set<ConnectPoint> sourcesToBeRemoved,
378 Set<ConnectPoint> remainingSources,
379 IpAddress mcastIp,
380 Map<HostId, Set<ConnectPoint>> sinks) {
381 lastMcastChange = Instant.now();
382 mcastLock();
383 try {
384 log.debug("Processing sources removed {} for group {}", sourcesToBeRemoved, mcastIp);
385 if (!mcastUtils.isLeader(mcastIp)) {
386 log.debug("Skip {} due to lack of leadership", mcastIp);
387 return;
388 }
389 if (remainingSources.isEmpty()) {
390 processRouteRemovedInternal(sourcesToBeRemoved, mcastIp);
391 return;
392 }
393 // Skip offline devices
394 Set<ConnectPoint> candidateSources = sourcesToBeRemoved.stream()
395 .filter(source -> srManager.deviceService.isAvailable(source.deviceId()))
396 .collect(Collectors.toSet());
397 if (candidateSources.isEmpty()) {
398 log.debug("Skip {} due to empty sources to be removed", mcastIp);
399 return;
400 }
401 Set<Link> remainingLinks = Sets.newHashSet();
402 Map<ConnectPoint, Set<Link>> candidateLinks = Maps.newHashMap();
403 Map<ConnectPoint, Set<ConnectPoint>> candidateSinks = Maps.newHashMap();
404 Set<ConnectPoint> totalSources = Sets.newHashSet(candidateSources);
405 totalSources.addAll(remainingSources);
406 // Calculate all the links used by the sources
407 totalSources.forEach(source -> {
408 Set<ConnectPoint> currentSinks = sinks.values()
409 .stream().flatMap(Collection::stream)
410 .filter(sink -> isSinkForSource(mcastIp, sink, source))
411 .collect(Collectors.toSet());
412 candidateSinks.put(source, currentSinks);
413 currentSinks.forEach(currentSink -> {
414 Optional<Path> currentPath = getPath(source.deviceId(), currentSink.deviceId(),
415 mcastIp, null, source);
416 if (currentPath.isPresent()) {
417 if (!candidateSources.contains(source)) {
418 remainingLinks.addAll(currentPath.get().links());
419 } else {
420 candidateLinks.put(source, Sets.newHashSet(currentPath.get().links()));
421 }
422 }
423 });
424 });
425 // Clean transit links
426 candidateLinks.forEach((source, currentCandidateLinks) -> {
427 Set<Link> linksToBeRemoved = Sets.difference(currentCandidateLinks, remainingLinks)
428 .immutableCopy();
429 if (!linksToBeRemoved.isEmpty()) {
430 currentCandidateLinks.forEach(link -> {
431 DeviceId srcLink = link.src().deviceId();
432 // Remove ports only on links to be removed
433 if (linksToBeRemoved.contains(link)) {
434 removePortFromDevice(link.src().deviceId(), link.src().port(), mcastIp,
435 mcastUtils.assignedVlan(srcLink.equals(source.deviceId()) ?
436 source : null));
437 }
438 // Remove role on the candidate links
439 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, srcLink, source));
440 });
441 }
442 });
443 // Clean ingress and egress
444 candidateSources.forEach(source -> {
445 Set<ConnectPoint> currentSinks = candidateSinks.get(source);
446 currentSinks.forEach(currentSink -> {
447 VlanId assignedVlan = mcastUtils.assignedVlan(source.deviceId().equals(currentSink.deviceId()) ?
448 source : null);
449 // Sinks co-located with the source
450 if (source.deviceId().equals(currentSink.deviceId())) {
451 if (source.port().equals(currentSink.port())) {
452 log.warn("Skip {} since sink {} is on the same port of source {}. Abort",
453 mcastIp, currentSink, source);
454 return;
455 }
456 // We need to check against the other sources and if it is
457 // necessary remove the port from the device - no overlap
458 Set<VlanId> otherVlans = remainingSources.stream()
459 // Only sources co-located and having this sink
460 .filter(remainingSource -> remainingSource.deviceId()
461 .equals(source.deviceId()) && candidateSinks.get(remainingSource)
462 .contains(currentSink))
463 .map(remainingSource -> mcastUtils.assignedVlan(
464 remainingSource.deviceId().equals(currentSink.deviceId()) ?
465 remainingSource : null)).collect(Collectors.toSet());
466 if (!otherVlans.contains(assignedVlan)) {
467 removePortFromDevice(currentSink.deviceId(), currentSink.port(),
468 mcastIp, assignedVlan);
469 }
470 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, currentSink.deviceId(),
471 source));
472 return;
473 }
474 Set<VlanId> otherVlans = remainingSources.stream()
475 .filter(remainingSource -> candidateSinks.get(remainingSource)
476 .contains(currentSink))
477 .map(remainingSource -> mcastUtils.assignedVlan(
478 remainingSource.deviceId().equals(currentSink.deviceId()) ?
479 remainingSource : null)).collect(Collectors.toSet());
480 // Sinks on other leaves
481 if (!otherVlans.contains(assignedVlan)) {
482 removePortFromDevice(currentSink.deviceId(), currentSink.port(),
483 mcastIp, assignedVlan);
484 }
485 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, currentSink.deviceId(),
486 source));
487 });
488 });
489 } finally {
490 mcastUnlock();
491 }
492 }
493
494 /**
Pier4694e092018-04-17 16:29:56 +0200495 * Process the ROUTE_ADDED event.
Pier Luigi57d41792018-02-26 12:31:38 +0100496 *
Pier4694e092018-04-17 16:29:56 +0200497 * @param mcastIp the group address
Pier Luigi57d41792018-02-26 12:31:38 +0100498 */
Pier4694e092018-04-17 16:29:56 +0200499 private void processRouteAddedInternal(IpAddress mcastIp) {
Pier Luigi57d41792018-02-26 12:31:38 +0100500 lastMcastChange = Instant.now();
501 mcastLock();
502 try {
Pier4694e092018-04-17 16:29:56 +0200503 log.debug("Processing route added for group {}", mcastIp);
504 // Just elect a new leader
505 mcastUtils.isLeader(mcastIp);
Pier Luigi57d41792018-02-26 12:31:38 +0100506 } finally {
507 mcastUnlock();
508 }
509 }
510
511 /**
Pier Luigi9930da52018-02-02 16:19:11 +0100512 * Removes the entire mcast tree related to this group.
Pier7631c492018-04-19 16:47:06 +0200513 * @param sources the source connect points
Pier Luigi9930da52018-02-02 16:19:11 +0100514 * @param mcastIp multicast group IP address
515 */
Pier7631c492018-04-19 16:47:06 +0200516 private void processRouteRemovedInternal(Set<ConnectPoint> sources, IpAddress mcastIp) {
Pier Luigi9930da52018-02-02 16:19:11 +0100517 lastMcastChange = Instant.now();
518 mcastLock();
519 try {
Pier Luigi57d41792018-02-26 12:31:38 +0100520 log.debug("Processing route removed for group {}", mcastIp);
Pier4694e092018-04-17 16:29:56 +0200521 if (!mcastUtils.isLeader(mcastIp)) {
522 log.debug("Skip {} due to lack of leadership", mcastIp);
523 mcastUtils.withdrawLeader(mcastIp);
524 return;
525 }
Pier7631c492018-04-19 16:47:06 +0200526 sources.forEach(source -> {
527 // Find out the ingress, transit and egress device of the affected group
528 DeviceId ingressDevice = getDevice(mcastIp, INGRESS, source)
529 .stream().findFirst().orElse(null);
530 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
531 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
532 // If there are no egress and transit devices, sinks could be only on the ingress
533 if (!egressDevices.isEmpty()) {
534 egressDevices.forEach(deviceId -> {
535 removeGroupFromDevice(deviceId, mcastIp, mcastUtils.assignedVlan(null));
536 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, deviceId, source));
537 });
538 }
539 if (!transitDevices.isEmpty()) {
540 transitDevices.forEach(deviceId -> {
541 removeGroupFromDevice(deviceId, mcastIp, mcastUtils.assignedVlan(null));
542 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, deviceId, source));
543 });
544 }
545 if (ingressDevice != null) {
546 removeGroupFromDevice(ingressDevice, mcastIp, mcastUtils.assignedVlan(source));
547 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, ingressDevice, source));
548 }
549 });
550 // Finally, withdraw the leadership
551 mcastUtils.withdrawLeader(mcastIp);
Pier Luigi9930da52018-02-02 16:19:11 +0100552 } finally {
553 mcastUnlock();
554 }
555 }
556
Pierb0328e42018-03-27 11:29:42 -0700557 /**
558 * Process sinks to be removed.
559 *
Pier7631c492018-04-19 16:47:06 +0200560 * @param sources the source connect points
Pierb0328e42018-03-27 11:29:42 -0700561 * @param mcastIp the ip address of the group
562 * @param newSinks the new sinks to be processed
Pier26d00c62018-04-17 15:50:43 +0200563 * @param prevSinks the previous sinks
Pierb0328e42018-03-27 11:29:42 -0700564 */
Pier7631c492018-04-19 16:47:06 +0200565 private void processSinksRemovedInternal(Set<ConnectPoint> sources, IpAddress mcastIp,
Pierb0328e42018-03-27 11:29:42 -0700566 Map<HostId, Set<ConnectPoint>> newSinks,
Pier26d00c62018-04-17 15:50:43 +0200567 Map<HostId, Set<ConnectPoint>> prevSinks) {
Pierb0328e42018-03-27 11:29:42 -0700568 lastMcastChange = Instant.now();
569 mcastLock();
Pierb0328e42018-03-27 11:29:42 -0700570 try {
Pier4694e092018-04-17 16:29:56 +0200571 if (!mcastUtils.isLeader(mcastIp)) {
572 log.debug("Skip {} due to lack of leadership", mcastIp);
573 return;
574 }
Pier7631c492018-04-19 16:47:06 +0200575 log.debug("Processing sinks removed for group {} and for sources {}",
576 mcastIp, sources);
577 Map<ConnectPoint, Map<ConnectPoint, Optional<Path>>> treesToBeRemoved = Maps.newHashMap();
578 Map<ConnectPoint, Set<ConnectPoint>> treesToBeAdded = Maps.newHashMap();
579 sources.forEach(source -> {
580 // Save the path associated to the sinks to be removed
581 Set<ConnectPoint> sinksToBeRemoved = processSinksToBeRemoved(mcastIp, prevSinks,
582 newSinks, source);
583 Map<ConnectPoint, Optional<Path>> treeToBeRemoved = Maps.newHashMap();
584 sinksToBeRemoved.forEach(sink -> treeToBeRemoved.put(sink, getPath(source.deviceId(),
585 sink.deviceId(), mcastIp,
586 null, source)));
587 treesToBeRemoved.put(source, treeToBeRemoved);
588 // Recover the dual-homed sinks
589 Set<ConnectPoint> sinksToBeRecovered = processSinksToBeRecovered(mcastIp, newSinks,
590 prevSinks, source);
591 treesToBeAdded.put(source, sinksToBeRecovered);
592 });
593 // Remove the sinks taking into account the multiple sources and the original paths
594 treesToBeRemoved.forEach((source, tree) ->
595 tree.forEach((sink, path) -> processSinkRemovedInternal(source, sink, mcastIp, path)));
596 // Add new sinks according to the recovery procedure
597 treesToBeAdded.forEach((source, sinks) ->
598 sinks.forEach(sink -> processSinkAddedInternal(source, sink, mcastIp, null)));
Pierb0328e42018-03-27 11:29:42 -0700599 } finally {
600 mcastUnlock();
Pierb0328e42018-03-27 11:29:42 -0700601 }
602 }
603
Pier Luigi9930da52018-02-02 16:19:11 +0100604 /**
Pier Luigib72201b2018-01-25 16:16:02 +0100605 * Removes a path from source to sink for given multicast group.
606 *
607 * @param source connect point of the multicast source
608 * @param sink connection point of the multicast sink
609 * @param mcastIp multicast group IP address
Pier7631c492018-04-19 16:47:06 +0200610 * @param mcastPath path associated to the sink
Pier Luigib72201b2018-01-25 16:16:02 +0100611 */
612 private void processSinkRemovedInternal(ConnectPoint source, ConnectPoint sink,
Pier7631c492018-04-19 16:47:06 +0200613 IpAddress mcastIp, Optional<Path> mcastPath) {
Pier Luigib72201b2018-01-25 16:16:02 +0100614 lastMcastChange = Instant.now();
615 mcastLock();
616 try {
Pier7631c492018-04-19 16:47:06 +0200617 log.debug("Processing sink removed {} for group {} and for source {}", sink, mcastIp, source);
Pierb0328e42018-03-27 11:29:42 -0700618 boolean isLast;
Pier Luigib72201b2018-01-25 16:16:02 +0100619 // When source and sink are on the same device
620 if (source.deviceId().equals(sink.deviceId())) {
621 // Source and sink are on even the same port. There must be something wrong.
622 if (source.port().equals(sink.port())) {
Pier7631c492018-04-19 16:47:06 +0200623 log.warn("Skip {} since sink {} is on the same port of source {}. Abort", mcastIp, sink, source);
Pier Luigib72201b2018-01-25 16:16:02 +0100624 return;
625 }
Pierb0328e42018-03-27 11:29:42 -0700626 isLast = removePortFromDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(source));
Pier Luigib87b8ab2018-03-02 12:53:37 +0100627 if (isLast) {
Pier7631c492018-04-19 16:47:06 +0200628 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, sink.deviceId(), source));
Pier Luigib87b8ab2018-03-02 12:53:37 +0100629 }
Pier Luigib72201b2018-01-25 16:16:02 +0100630 return;
631 }
Pier Luigib72201b2018-01-25 16:16:02 +0100632 // Process the egress device
Pierb0328e42018-03-27 11:29:42 -0700633 isLast = removePortFromDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(null));
Pier Luigib72201b2018-01-25 16:16:02 +0100634 if (isLast) {
Pier7631c492018-04-19 16:47:06 +0200635 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, sink.deviceId(), source));
Pier Luigib72201b2018-01-25 16:16:02 +0100636 }
Pier Luigib72201b2018-01-25 16:16:02 +0100637 // If this is the last sink on the device, also update upstream
Pier Luigib72201b2018-01-25 16:16:02 +0100638 if (mcastPath.isPresent()) {
639 List<Link> links = Lists.newArrayList(mcastPath.get().links());
640 Collections.reverse(links);
641 for (Link link : links) {
642 if (isLast) {
Pier7631c492018-04-19 16:47:06 +0200643 isLast = removePortFromDevice(link.src().deviceId(), link.src().port(), mcastIp,
644 mcastUtils.assignedVlan(link.src().deviceId().equals(source.deviceId()) ? source : null));
Pier Luigib87b8ab2018-03-02 12:53:37 +0100645 if (isLast) {
Pier7631c492018-04-19 16:47:06 +0200646 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source));
Pier Luigib87b8ab2018-03-02 12:53:37 +0100647 }
Pier Luigib72201b2018-01-25 16:16:02 +0100648 }
Charles Chand55e84d2016-03-30 17:54:24 -0700649 }
650 }
Pier Luigib72201b2018-01-25 16:16:02 +0100651 } finally {
652 mcastUnlock();
Charles Chand55e84d2016-03-30 17:54:24 -0700653 }
654 }
655
Pierb0328e42018-03-27 11:29:42 -0700656
657 /**
658 * Process sinks to be added.
659 *
Pier7631c492018-04-19 16:47:06 +0200660 * @param sources the source connect points
Pierb0328e42018-03-27 11:29:42 -0700661 * @param mcastIp the group IP
662 * @param newSinks the new sinks to be processed
663 * @param allPrevSinks all previous sinks
664 */
Pier7631c492018-04-19 16:47:06 +0200665 private void processSinksAddedInternal(Set<ConnectPoint> sources, IpAddress mcastIp,
Pierb0328e42018-03-27 11:29:42 -0700666 Map<HostId, Set<ConnectPoint>> newSinks,
667 Set<ConnectPoint> allPrevSinks) {
668 lastMcastChange = Instant.now();
669 mcastLock();
670 try {
Pier4694e092018-04-17 16:29:56 +0200671 if (!mcastUtils.isLeader(mcastIp)) {
672 log.debug("Skip {} due to lack of leadership", mcastIp);
673 return;
674 }
Pier7631c492018-04-19 16:47:06 +0200675 log.debug("Processing sinks added for group {} and for sources {}", mcastIp, sources);
676 sources.forEach(source -> {
677 Set<ConnectPoint> sinksToBeAdded = processSinksToBeAdded(source, mcastIp, newSinks);
678 sinksToBeAdded = Sets.difference(sinksToBeAdded, allPrevSinks);
679 sinksToBeAdded.forEach(sink -> processSinkAddedInternal(source, sink, mcastIp, null));
680 });
Pierb0328e42018-03-27 11:29:42 -0700681 } finally {
682 mcastUnlock();
683 }
684 }
685
Charles Chand55e84d2016-03-30 17:54:24 -0700686 /**
687 * Establishes a path from source to sink for given multicast group.
688 *
689 * @param source connect point of the multicast source
690 * @param sink connection point of the multicast sink
691 * @param mcastIp multicast group IP address
692 */
693 private void processSinkAddedInternal(ConnectPoint source, ConnectPoint sink,
Pierb0328e42018-03-27 11:29:42 -0700694 IpAddress mcastIp, List<Path> allPaths) {
Pier Luigib72201b2018-01-25 16:16:02 +0100695 lastMcastChange = Instant.now();
696 mcastLock();
697 try {
Pier7631c492018-04-19 16:47:06 +0200698 log.debug("Processing sink added {} for group {} and for source {}", sink, mcastIp, source);
Pier Luigib72201b2018-01-25 16:16:02 +0100699 // Process the ingress device
Pierb0328e42018-03-27 11:29:42 -0700700 mcastUtils.addFilterToDevice(source.deviceId(), source.port(),
Pier7631c492018-04-19 16:47:06 +0200701 mcastUtils.assignedVlan(source), mcastIp, INGRESS);
Pier Luigib72201b2018-01-25 16:16:02 +0100702 if (source.deviceId().equals(sink.deviceId())) {
Pier Luigib72201b2018-01-25 16:16:02 +0100703 if (source.port().equals(sink.port())) {
704 log.warn("Skip {} since sink {} is on the same port of source {}. Abort",
705 mcastIp, sink, source);
706 return;
707 }
Pierb0328e42018-03-27 11:29:42 -0700708 addPortToDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(source));
Pier7631c492018-04-19 16:47:06 +0200709 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, sink.deviceId(), source), INGRESS);
Pier Luigib72201b2018-01-25 16:16:02 +0100710 return;
711 }
Pier Luigib72201b2018-01-25 16:16:02 +0100712 // Find a path. If present, create/update groups and flows for each hop
Pier7631c492018-04-19 16:47:06 +0200713 Optional<Path> mcastPath = getPath(source.deviceId(), sink.deviceId(), mcastIp, allPaths, source);
Pier Luigib72201b2018-01-25 16:16:02 +0100714 if (mcastPath.isPresent()) {
715 List<Link> links = mcastPath.get().links();
Pier37db3692018-03-12 15:00:54 -0700716 // Setup mcast role for ingress
Pier7631c492018-04-19 16:47:06 +0200717 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, source.deviceId(), source), INGRESS);
718 // Setup properly the transit forwarding
Pier Luigib72201b2018-01-25 16:16:02 +0100719 links.forEach(link -> {
720 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pierb0328e42018-03-27 11:29:42 -0700721 mcastUtils.assignedVlan(link.src().deviceId()
722 .equals(source.deviceId()) ? source : null));
723 mcastUtils.addFilterToDevice(link.dst().deviceId(), link.dst().port(),
724 mcastUtils.assignedVlan(null), mcastIp, null);
Pier Luigib72201b2018-01-25 16:16:02 +0100725 });
Pier37db3692018-03-12 15:00:54 -0700726 // Setup mcast role for the transit
727 links.stream()
728 .filter(link -> !link.dst().deviceId().equals(sink.deviceId()))
Pier7631c492018-04-19 16:47:06 +0200729 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.dst().deviceId(),
730 source), TRANSIT));
Pier Luigib72201b2018-01-25 16:16:02 +0100731 // Process the egress device
Pierb0328e42018-03-27 11:29:42 -0700732 addPortToDevice(sink.deviceId(), sink.port(), mcastIp, mcastUtils.assignedVlan(null));
Pier37db3692018-03-12 15:00:54 -0700733 // Setup mcast role for egress
Pier7631c492018-04-19 16:47:06 +0200734 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, sink.deviceId(), source), EGRESS);
Pier Luigib72201b2018-01-25 16:16:02 +0100735 } else {
Pier7631c492018-04-19 16:47:06 +0200736 log.warn("Unable to find a path from {} to {}. Abort sinkAdded", source.deviceId(), sink.deviceId());
Pier Luigib72201b2018-01-25 16:16:02 +0100737 }
738 } finally {
739 mcastUnlock();
Charles Chand55e84d2016-03-30 17:54:24 -0700740 }
741 }
742
743 /**
Charles Chan2199c302016-04-23 17:36:10 -0700744 * Processes the LINK_DOWN event.
745 *
746 * @param affectedLink Link that is going down
747 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100748 public void processLinkDown(Link affectedLink) {
Pier Luigib72201b2018-01-25 16:16:02 +0100749 lastMcastChange = Instant.now();
750 mcastLock();
751 try {
752 // Get groups affected by the link down event
753 getAffectedGroups(affectedLink).forEach(mcastIp -> {
Pier7631c492018-04-19 16:47:06 +0200754 log.debug("Processing link down {} for group {}", affectedLink, mcastIp);
755 recoverFailure(mcastIp, affectedLink);
Charles Chan2199c302016-04-23 17:36:10 -0700756 });
Pier Luigib72201b2018-01-25 16:16:02 +0100757 } finally {
758 mcastUnlock();
759 }
Charles Chan2199c302016-04-23 17:36:10 -0700760 }
761
762 /**
Pier Luigieba73a02018-01-16 10:47:50 +0100763 * Process the DEVICE_DOWN event.
764 *
765 * @param deviceDown device going down
766 */
Pier Luigi96fe0772018-02-28 12:10:50 +0100767 public void processDeviceDown(DeviceId deviceDown) {
Pier Luigib72201b2018-01-25 16:16:02 +0100768 lastMcastChange = Instant.now();
769 mcastLock();
770 try {
771 // Get the mcast groups affected by the device going down
772 getAffectedGroups(deviceDown).forEach(mcastIp -> {
Pier7631c492018-04-19 16:47:06 +0200773 log.debug("Processing device down {} for group {}", deviceDown, mcastIp);
774 recoverFailure(mcastIp, deviceDown);
Pier Luigib72201b2018-01-25 16:16:02 +0100775 });
776 } finally {
777 mcastUnlock();
778 }
Pier Luigieba73a02018-01-16 10:47:50 +0100779 }
780
781 /**
Pier7631c492018-04-19 16:47:06 +0200782 * General failure recovery procedure.
783 *
784 * @param mcastIp the group to recover
785 * @param failedElement the failed element
786 */
787 private void recoverFailure(IpAddress mcastIp, Object failedElement) {
788 // TODO Optimize when the group editing is in place
789 if (!mcastUtils.isLeader(mcastIp)) {
790 log.debug("Skip {} due to lack of leadership", mcastIp);
791 return;
792 }
793 // Do not proceed if the sources of this group are missing
794 Set<ConnectPoint> sources = getSources(mcastIp);
795 if (sources.isEmpty()) {
796 log.warn("Missing sources for group {}", mcastIp);
797 return;
798 }
799 // Find out the ingress devices of the affected group
800 // If sinks are in other leafs, we have ingress, transit, egress, and source
801 // If sinks are in the same leaf, we have just ingress and source
802 Set<DeviceId> ingressDevices = getDevice(mcastIp, INGRESS);
803 if (ingressDevices.isEmpty()) {
804 log.warn("Missing ingress devices for group {}", ingressDevices, mcastIp);
805 return;
806 }
807 // For each tree, delete ingress-transit part
808 sources.forEach(source -> {
809 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
810 transitDevices.forEach(transitDevice -> {
811 removeGroupFromDevice(transitDevice, mcastIp, mcastUtils.assignedVlan(null));
812 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, transitDevice, source));
813 });
814 });
815 removeIngressTransitPorts(mcastIp, ingressDevices, sources);
816 // TODO Evaluate the possibility of building optimize trees between sources
817 Map<DeviceId, Set<ConnectPoint>> notRecovered = Maps.newHashMap();
818 sources.forEach(source -> {
819 Set<DeviceId> notRecoveredInternal = Sets.newHashSet();
820 DeviceId ingressDevice = ingressDevices.stream()
821 .filter(deviceId -> deviceId.equals(source.deviceId())).findFirst().orElse(null);
822 // Clean also the ingress
823 if (failedElement instanceof DeviceId && ingressDevice.equals(failedElement)) {
824 removeGroupFromDevice((DeviceId) failedElement, mcastIp, mcastUtils.assignedVlan(source));
825 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, (DeviceId) failedElement, source));
826 }
827 if (ingressDevice == null) {
828 log.warn("Skip failure recovery - " +
829 "Missing ingress for source {} and group {}", source, mcastIp);
830 return;
831 }
832 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
833 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(ingressDevice, egressDevices);
834 // We have to verify, if there are egresses without paths
835 mcastTree.forEach((egressDevice, paths) -> {
836 Optional<Path> mcastPath = getPath(ingressDevice, egressDevice,
837 mcastIp, paths, source);
838 // No paths, we have to try with alternative location
839 if (!mcastPath.isPresent()) {
840 notRecovered.compute(egressDevice, (deviceId, listSources) -> {
841 listSources = listSources == null ? Sets.newHashSet() : listSources;
842 listSources.add(source);
843 return listSources;
844 });
845 notRecoveredInternal.add(egressDevice);
846 }
847 });
848 // Fast path, we can recover all the locations
849 if (notRecoveredInternal.isEmpty()) {
850 mcastTree.forEach((egressDevice, paths) -> {
Charles Chan0e081ad2018-05-10 22:19:43 +0000851 Optional<Path> mcastPath = getPath(ingressDevice, egressDevice,
852 mcastIp, paths, source);
853 if (mcastPath.isPresent()) {
854 installPath(mcastIp, source, mcastPath.get());
855 }
Pier7631c492018-04-19 16:47:06 +0200856 });
857 } else {
858 // Let's try to recover using alternative locations
859 recoverSinks(egressDevices, notRecoveredInternal, mcastIp,
860 ingressDevice, source);
861 }
862 });
863 // Finally remove the egresses not recovered
864 notRecovered.forEach((egressDevice, listSources) -> {
865 Set<ConnectPoint> currentSources = getSources(mcastIp, egressDevice, EGRESS);
866 if (Objects.equal(currentSources, listSources)) {
867 log.warn("Fail to recover egress device {} from {} failure {}",
868 egressDevice, failedElement instanceof Link ? "Link" : "Device", failedElement);
869 removeGroupFromDevice(egressDevice, mcastIp, mcastUtils.assignedVlan(null));
870 }
871 listSources.forEach(source -> mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, egressDevice, source)));
872 });
873 }
874
875 /**
Pierb0328e42018-03-27 11:29:42 -0700876 * Try to recover sinks using alternate locations.
877 *
878 * @param egressDevices the original egress devices
879 * @param notRecovered the devices not recovered
880 * @param mcastIp the group address
881 * @param ingressDevice the ingress device
882 * @param source the source connect point
Pierb0328e42018-03-27 11:29:42 -0700883 */
884 private void recoverSinks(Set<DeviceId> egressDevices, Set<DeviceId> notRecovered,
Pier7631c492018-04-19 16:47:06 +0200885 IpAddress mcastIp, DeviceId ingressDevice, ConnectPoint source) {
886 log.debug("Processing recover sinks for group {} and for source {}",
887 mcastIp, source);
Pierb0328e42018-03-27 11:29:42 -0700888 Set<DeviceId> recovered = Sets.difference(egressDevices, notRecovered);
Pierb0328e42018-03-27 11:29:42 -0700889 Set<ConnectPoint> totalAffectedSinks = Sets.newHashSet();
Pierb0328e42018-03-27 11:29:42 -0700890 Set<ConnectPoint> totalSinks = Sets.newHashSet();
891 // Let's compute all the affected sinks and all the sinks
892 notRecovered.forEach(deviceId -> {
893 totalAffectedSinks.addAll(
Charles Chan0e081ad2018-05-10 22:19:43 +0000894 mcastUtils.getAffectedSinks(deviceId, mcastIp).values().stream()
895 .flatMap(Collection::stream)
Pierb0328e42018-03-27 11:29:42 -0700896 .filter(connectPoint -> connectPoint.deviceId().equals(deviceId))
Charles Chan0e081ad2018-05-10 22:19:43 +0000897 .collect(Collectors.toSet())
898 );
Pierb0328e42018-03-27 11:29:42 -0700899 totalSinks.addAll(
Pier7631c492018-04-19 16:47:06 +0200900 mcastUtils.getAffectedSinks(deviceId, mcastIp).values().stream()
Charles Chan0e081ad2018-05-10 22:19:43 +0000901 .flatMap(Collection::stream).collect(Collectors.toSet())
902 );
Pierb0328e42018-03-27 11:29:42 -0700903 });
Pierb0328e42018-03-27 11:29:42 -0700904 Set<ConnectPoint> sinksToBeAdded = Sets.difference(totalSinks, totalAffectedSinks);
Pier7631c492018-04-19 16:47:06 +0200905 Set<DeviceId> newEgressDevices = sinksToBeAdded.stream()
906 .map(ConnectPoint::deviceId).collect(Collectors.toSet());
907 newEgressDevices.addAll(recovered);
908 Set<DeviceId> copyNewEgressDevices = ImmutableSet.copyOf(newEgressDevices);
909 newEgressDevices = newEgressDevices.stream()
910 .filter(deviceId -> !deviceId.equals(ingressDevice)).collect(Collectors.toSet());
911 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(ingressDevice, newEgressDevices);
Pierb0328e42018-03-27 11:29:42 -0700912 // if the source was originally in the new locations, add new sinks
Pier7631c492018-04-19 16:47:06 +0200913 if (copyNewEgressDevices.contains(ingressDevice)) {
Pierb0328e42018-03-27 11:29:42 -0700914 sinksToBeAdded.stream()
915 .filter(connectPoint -> connectPoint.deviceId().equals(ingressDevice))
916 .forEach(sink -> processSinkAddedInternal(source, sink, mcastIp, ImmutableList.of()));
917 }
Pierb0328e42018-03-27 11:29:42 -0700918 // Construct a new path for each egress device
919 mcastTree.forEach((egressDevice, paths) -> {
Pier7631c492018-04-19 16:47:06 +0200920 Optional<Path> mcastPath = getPath(ingressDevice, egressDevice, mcastIp, paths, source);
Pierb0328e42018-03-27 11:29:42 -0700921 if (mcastPath.isPresent()) {
922 // Using recovery procedure
923 if (recovered.contains(egressDevice)) {
924 installPath(mcastIp, source, mcastPath.get());
925 } else {
926 // otherwise we need to threat as new sink
927 sinksToBeAdded.stream()
928 .filter(connectPoint -> connectPoint.deviceId().equals(egressDevice))
929 .forEach(sink -> processSinkAddedInternal(source, sink, mcastIp, paths));
930 }
Pierb0328e42018-03-27 11:29:42 -0700931 }
932 });
Pierb0328e42018-03-27 11:29:42 -0700933 }
934
935 /**
Pier26d00c62018-04-17 15:50:43 +0200936 * Process all the sinks related to a mcast group and return
937 * the ones to be removed.
938 *
939 * @param mcastIp the group address
940 * @param prevsinks the previous sinks to be evaluated
941 * @param newSinks the new sinks to be evaluted
Pier7631c492018-04-19 16:47:06 +0200942 * @param source the source connect point
Pier26d00c62018-04-17 15:50:43 +0200943 * @return the set of the sinks to be removed
944 */
945 private Set<ConnectPoint> processSinksToBeRemoved(IpAddress mcastIp,
946 Map<HostId, Set<ConnectPoint>> prevsinks,
Pier7631c492018-04-19 16:47:06 +0200947 Map<HostId, Set<ConnectPoint>> newSinks,
948 ConnectPoint source) {
Pier26d00c62018-04-17 15:50:43 +0200949 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
950 prevsinks.forEach(((hostId, connectPoints) -> {
Shekhar Aryan0dac4112019-06-20 14:03:07 +0000951 if (Objects.equal(HostId.NONE, hostId)) {
Esin Karamane48f73b2019-03-05 13:49:02 +0000952 //in this case connect points are single homed sinks.
953 //just found the difference btw previous and new sinks for this source.
954 Set<ConnectPoint> difference = Sets.difference(connectPoints, newSinks.get(hostId));
955 sinksToBeProcessed.addAll(difference);
956 return;
957 }
Pier26d00c62018-04-17 15:50:43 +0200958 // We have to check with the existing flows
959 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier7631c492018-04-19 16:47:06 +0200960 .filter(connectPoint -> isSinkForSource(mcastIp, connectPoint, source))
Pier26d00c62018-04-17 15:50:43 +0200961 .findFirst().orElse(null);
962 if (sinkToBeProcessed != null) {
963 // If the host has been removed or location has been removed
964 if (!newSinks.containsKey(hostId) ||
965 !newSinks.get(hostId).contains(sinkToBeProcessed)) {
966 sinksToBeProcessed.add(sinkToBeProcessed);
967 }
968 }
969 }));
970 // We have done, return the set
971 return sinksToBeProcessed;
972 }
973
974 /**
Pierb0328e42018-03-27 11:29:42 -0700975 * Process new locations and return the set of sinks to be added
976 * in the context of the recovery.
977 *
Pier26d00c62018-04-17 15:50:43 +0200978 * @param newSinks the remaining sinks
979 * @param prevSinks the previous sinks
Pier7631c492018-04-19 16:47:06 +0200980 * @param source the source connect point
Pierb0328e42018-03-27 11:29:42 -0700981 * @return the set of the sinks to be processed
982 */
Charles Chan0e081ad2018-05-10 22:19:43 +0000983 private Set<ConnectPoint> processSinksToBeRecovered(IpAddress mcastIp,
984 Map<HostId, Set<ConnectPoint>> newSinks,
Pier7631c492018-04-19 16:47:06 +0200985 Map<HostId, Set<ConnectPoint>> prevSinks,
986 ConnectPoint source) {
Pierb0328e42018-03-27 11:29:42 -0700987 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
Pier26d00c62018-04-17 15:50:43 +0200988 newSinks.forEach((hostId, connectPoints) -> {
Pierb0328e42018-03-27 11:29:42 -0700989 // If it has more than 1 locations
990 if (connectPoints.size() > 1 || connectPoints.size() == 0) {
991 log.debug("Skip {} since sink {} has {} locations",
992 mcastIp, hostId, connectPoints.size());
993 return;
994 }
Pier26d00c62018-04-17 15:50:43 +0200995 // If previously it had two locations, we need to recover it
996 // Filter out if the remaining location is already served
997 if (prevSinks.containsKey(hostId) && prevSinks.get(hostId).size() == 2) {
Pier41857a32018-04-19 15:53:20 +0200998 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier7631c492018-04-19 16:47:06 +0200999 .filter(connectPoint -> !isSinkForSource(mcastIp, connectPoint, source))
Pier41857a32018-04-19 15:53:20 +02001000 .findFirst().orElse(null);
1001 if (sinkToBeProcessed != null) {
1002 sinksToBeProcessed.add(sinkToBeProcessed);
1003 }
Pier26d00c62018-04-17 15:50:43 +02001004 }
Pierb0328e42018-03-27 11:29:42 -07001005 });
1006 return sinksToBeProcessed;
1007 }
1008
1009 /**
1010 * Process all the sinks related to a mcast group and return
1011 * the ones to be processed.
1012 *
1013 * @param source the source connect point
1014 * @param mcastIp the group address
1015 * @param sinks the sinks to be evaluated
1016 * @return the set of the sinks to be processed
1017 */
1018 private Set<ConnectPoint> processSinksToBeAdded(ConnectPoint source, IpAddress mcastIp,
1019 Map<HostId, Set<ConnectPoint>> sinks) {
Pierb0328e42018-03-27 11:29:42 -07001020 final Set<ConnectPoint> sinksToBeProcessed = Sets.newHashSet();
1021 sinks.forEach(((hostId, connectPoints) -> {
Esin Karamane48f73b2019-03-05 13:49:02 +00001022 //add all connect points that are not tied with any host
Shekhar Aryan0dac4112019-06-20 14:03:07 +00001023 if (Objects.equal(HostId.NONE, hostId)) {
Esin Karamane48f73b2019-03-05 13:49:02 +00001024 sinksToBeProcessed.addAll(connectPoints);
1025 return;
1026 }
Pierb0328e42018-03-27 11:29:42 -07001027 // If it has more than 2 locations
1028 if (connectPoints.size() > 2 || connectPoints.size() == 0) {
1029 log.debug("Skip {} since sink {} has {} locations",
1030 mcastIp, hostId, connectPoints.size());
1031 return;
1032 }
1033 // If it has one location, just use it
1034 if (connectPoints.size() == 1) {
Pier7631c492018-04-19 16:47:06 +02001035 sinksToBeProcessed.add(connectPoints.stream().findFirst().orElse(null));
Pierb0328e42018-03-27 11:29:42 -07001036 return;
1037 }
1038 // We prefer to reuse existing flows
1039 ConnectPoint sinkToBeProcessed = connectPoints.stream()
Pier7631c492018-04-19 16:47:06 +02001040 .filter(connectPoint -> {
1041 if (!isSinkForGroup(mcastIp, connectPoint, source)) {
1042 return false;
1043 }
1044 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1045 return false;
1046 }
1047 ConnectPoint other = connectPoints.stream()
Charles Chan0e081ad2018-05-10 22:19:43 +00001048 .filter(remaining -> !remaining.equals(connectPoint))
1049 .findFirst().orElse(null);
Pier7631c492018-04-19 16:47:06 +02001050 // We are already serving the sink
1051 return !isSinkForSource(mcastIp, other, source);
1052 }).findFirst().orElse(null);
1053
Pierb0328e42018-03-27 11:29:42 -07001054 if (sinkToBeProcessed != null) {
1055 sinksToBeProcessed.add(sinkToBeProcessed);
1056 return;
1057 }
1058 // Otherwise we prefer to reuse existing egresses
Pier7631c492018-04-19 16:47:06 +02001059 Set<DeviceId> egresses = getDevice(mcastIp, EGRESS, source);
Pierb0328e42018-03-27 11:29:42 -07001060 sinkToBeProcessed = connectPoints.stream()
Pier7631c492018-04-19 16:47:06 +02001061 .filter(connectPoint -> {
1062 if (!egresses.contains(connectPoint.deviceId())) {
1063 return false;
1064 }
1065 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1066 return false;
1067 }
1068 ConnectPoint other = connectPoints.stream()
Charles Chan0e081ad2018-05-10 22:19:43 +00001069 .filter(remaining -> !remaining.equals(connectPoint))
1070 .findFirst().orElse(null);
Pier7631c492018-04-19 16:47:06 +02001071 return !isSinkForSource(mcastIp, other, source);
1072 }).findFirst().orElse(null);
Pierb0328e42018-03-27 11:29:42 -07001073 if (sinkToBeProcessed != null) {
1074 sinksToBeProcessed.add(sinkToBeProcessed);
1075 return;
1076 }
1077 // Otherwise we prefer a location co-located with the source (if it exists)
1078 sinkToBeProcessed = connectPoints.stream()
1079 .filter(connectPoint -> connectPoint.deviceId().equals(source.deviceId()))
1080 .findFirst().orElse(null);
1081 if (sinkToBeProcessed != null) {
1082 sinksToBeProcessed.add(sinkToBeProcessed);
1083 return;
1084 }
Pier7631c492018-04-19 16:47:06 +02001085 // Finally, we randomly pick a new location if it is reachable
1086 sinkToBeProcessed = connectPoints.stream()
1087 .filter(connectPoint -> {
1088 if (!isSinkReachable(mcastIp, connectPoint, source)) {
1089 return false;
1090 }
1091 ConnectPoint other = connectPoints.stream()
Charles Chan0e081ad2018-05-10 22:19:43 +00001092 .filter(remaining -> !remaining.equals(connectPoint))
1093 .findFirst().orElse(null);
Pier7631c492018-04-19 16:47:06 +02001094 return !isSinkForSource(mcastIp, other, source);
1095 }).findFirst().orElse(null);
1096 if (sinkToBeProcessed != null) {
1097 sinksToBeProcessed.add(sinkToBeProcessed);
1098 }
Pierb0328e42018-03-27 11:29:42 -07001099 }));
Pierb0328e42018-03-27 11:29:42 -07001100 return sinksToBeProcessed;
1101 }
1102
1103 /**
Pier37db3692018-03-12 15:00:54 -07001104 * Utility method to remove all the ingress transit ports.
1105 *
1106 * @param mcastIp the group ip
Pier7631c492018-04-19 16:47:06 +02001107 * @param ingressDevices the ingress devices
1108 * @param sources the source connect points
Pier37db3692018-03-12 15:00:54 -07001109 */
Pier7631c492018-04-19 16:47:06 +02001110 private void removeIngressTransitPorts(IpAddress mcastIp, Set<DeviceId> ingressDevices,
1111 Set<ConnectPoint> sources) {
1112 Map<ConnectPoint, Set<PortNumber>> ingressTransitPorts = Maps.newHashMap();
1113 sources.forEach(source -> {
1114 DeviceId ingressDevice = ingressDevices.stream()
1115 .filter(deviceId -> deviceId.equals(source.deviceId()))
1116 .findFirst().orElse(null);
1117 if (ingressDevice == null) {
1118 log.warn("Skip removeIngressTransitPorts - " +
1119 "Missing ingress for source {} and group {}",
1120 source, mcastIp);
1121 return;
Pier37db3692018-03-12 15:00:54 -07001122 }
Andrea Campanellab20b8ea2018-06-05 14:19:21 +02001123 Set<PortNumber> ingressTransitPort = ingressTransitPort(mcastIp, ingressDevice, source);
1124 if (ingressTransitPort.isEmpty()) {
1125 log.warn("No transit ports to remove on device {}", ingressDevice);
1126 return;
1127 }
1128 ingressTransitPorts.put(source, ingressTransitPort);
Pier37db3692018-03-12 15:00:54 -07001129 });
Pier7631c492018-04-19 16:47:06 +02001130 ingressTransitPorts.forEach((source, ports) -> ports.forEach(ingressTransitPort -> {
1131 DeviceId ingressDevice = ingressDevices.stream()
Charles Chan0e081ad2018-05-10 22:19:43 +00001132 .filter(deviceId -> deviceId.equals(source.deviceId()))
1133 .findFirst().orElse(null);
Pier7631c492018-04-19 16:47:06 +02001134 boolean isLast = removePortFromDevice(ingressDevice, ingressTransitPort,
1135 mcastIp, mcastUtils.assignedVlan(source));
1136 if (isLast) {
1137 mcastRoleStore.remove(new McastRoleStoreKey(mcastIp, ingressDevice, source));
1138 }
1139 }));
Pier37db3692018-03-12 15:00:54 -07001140 }
1141
1142 /**
Charles Chand55e84d2016-03-30 17:54:24 -07001143 * Adds a port to given multicast group on given device. This involves the
1144 * update of L3 multicast group and multicast routing table entry.
1145 *
1146 * @param deviceId device ID
1147 * @param port port to be added
1148 * @param mcastIp multicast group
1149 * @param assignedVlan assigned VLAN ID
1150 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001151 private void addPortToDevice(DeviceId deviceId, PortNumber port,
1152 IpAddress mcastIp, VlanId assignedVlan) {
Pier7631c492018-04-19 16:47:06 +02001153 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chand55e84d2016-03-30 17:54:24 -07001154 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Pier Luigi21fffd22018-01-19 10:24:53 +01001155 NextObjective newNextObj;
Charles Chan2199c302016-04-23 17:36:10 -07001156 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Charles Chand55e84d2016-03-30 17:54:24 -07001157 // First time someone request this mcast group via this device
1158 portBuilder.add(port);
Pier Luigi21fffd22018-01-19 10:24:53 +01001159 // New nextObj
Vignesh Ethirajece19c72019-08-26 12:18:42 +00001160 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1161 log.debug("Passing 0 as nextId for unconfigured device {}", deviceId);
1162 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1163 portBuilder.build(), 0).add();
1164 } else {
1165 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1166 portBuilder.build(), null).add();
1167 }
Pier Luigi21fffd22018-01-19 10:24:53 +01001168 // Store the new port
1169 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001170 } else {
1171 // This device already serves some subscribers of this mcast group
Charles Chan2199c302016-04-23 17:36:10 -07001172 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chand55e84d2016-03-30 17:54:24 -07001173 // Stop if the port is already in the nextobj
Pierb0328e42018-03-27 11:29:42 -07001174 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chand55e84d2016-03-30 17:54:24 -07001175 if (existingPorts.contains(port)) {
1176 log.info("NextObj for {}/{} already exists. Abort", deviceId, port);
1177 return;
1178 }
Pier Luigi21fffd22018-01-19 10:24:53 +01001179 // Let's add the port and reuse the previous one
Yuta HIGUCHI0eb68e12018-02-09 18:05:23 -08001180 portBuilder.addAll(existingPorts).add(port);
Pier Luigi21fffd22018-01-19 10:24:53 +01001181 // Reuse previous nextObj
Pierb0328e42018-03-27 11:29:42 -07001182 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi21fffd22018-01-19 10:24:53 +01001183 portBuilder.build(), nextObj.id()).addToExisting();
1184 // Store the final next objective and send only the difference to the driver
1185 mcastNextObjStore.put(mcastStoreKey, newNextObj);
1186 // Add just the new port
1187 portBuilder = ImmutableSet.builder();
1188 portBuilder.add(port);
Pierb0328e42018-03-27 11:29:42 -07001189 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigi21fffd22018-01-19 10:24:53 +01001190 portBuilder.build(), nextObj.id()).addToExisting();
Charles Chand55e84d2016-03-30 17:54:24 -07001191 }
1192 // Create, store and apply the new nextObj and fwdObj
Charles Chan2199c302016-04-23 17:36:10 -07001193 ObjectiveContext context = new DefaultObjectiveContext(
1194 (objective) -> log.debug("Successfully add {} on {}/{}, vlan {}",
1195 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chan1dbadbd2018-08-23 14:30:33 -07001196 (objective, error) -> {
1197 log.warn("Failed to add {} on {}/{}, vlan {}: {}",
1198 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1199 srManager.invalidateNextObj(objective.id());
1200 });
Pierb0328e42018-03-27 11:29:42 -07001201 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan,
1202 newNextObj.id()).add(context);
Vignesh Ethirajece19c72019-08-26 12:18:42 +00001203 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1204 log.debug("skip next and forward flowobjective addition for device: {}", deviceId);
1205 } else {
1206 srManager.flowObjectiveService.next(deviceId, newNextObj);
1207 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1208 }
Charles Chand55e84d2016-03-30 17:54:24 -07001209 }
1210
1211 /**
1212 * Removes a port from given multicast group on given device.
1213 * This involves the update of L3 multicast group and multicast routing
1214 * table entry.
1215 *
1216 * @param deviceId device ID
1217 * @param port port to be added
1218 * @param mcastIp multicast group
1219 * @param assignedVlan assigned VLAN ID
1220 * @return true if this is the last sink on this device
1221 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001222 private boolean removePortFromDevice(DeviceId deviceId, PortNumber port,
1223 IpAddress mcastIp, VlanId assignedVlan) {
Charles Chan2199c302016-04-23 17:36:10 -07001224 McastStoreKey mcastStoreKey =
Pier7631c492018-04-19 16:47:06 +02001225 new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chand55e84d2016-03-30 17:54:24 -07001226 // This device is not serving this multicast group
Charles Chan2199c302016-04-23 17:36:10 -07001227 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Pier7631c492018-04-19 16:47:06 +02001228 return true;
Charles Chand55e84d2016-03-30 17:54:24 -07001229 }
Charles Chan2199c302016-04-23 17:36:10 -07001230 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pierb0328e42018-03-27 11:29:42 -07001231 Set<PortNumber> existingPorts = mcastUtils.getPorts(nextObj.next());
Charles Chan2199c302016-04-23 17:36:10 -07001232 // This port does not serve this multicast group
Charles Chand55e84d2016-03-30 17:54:24 -07001233 if (!existingPorts.contains(port)) {
Pier7631c492018-04-19 16:47:06 +02001234 if (!existingPorts.isEmpty()) {
1235 log.warn("{} is not serving {} on port {}. Abort.", deviceId, mcastIp, port);
1236 return false;
1237 }
1238 return true;
Charles Chand55e84d2016-03-30 17:54:24 -07001239 }
1240 // Copy and modify the ImmutableSet
1241 existingPorts = Sets.newHashSet(existingPorts);
1242 existingPorts.remove(port);
Charles Chand55e84d2016-03-30 17:54:24 -07001243 NextObjective newNextObj;
Pier Luigid1be7b12018-01-19 10:24:53 +01001244 ObjectiveContext context;
Charles Chand55e84d2016-03-30 17:54:24 -07001245 ForwardingObjective fwdObj;
1246 if (existingPorts.isEmpty()) {
Pier Luigid1be7b12018-01-19 10:24:53 +01001247 context = new DefaultObjectiveContext(
Charles Chan2199c302016-04-23 17:36:10 -07001248 (objective) -> log.debug("Successfully remove {} on {}/{}, vlan {}",
1249 mcastIp, deviceId, port.toLong(), assignedVlan),
Pier7631c492018-04-19 16:47:06 +02001250 (objective, error) -> log.warn("Failed to remove {} on {}/{}, vlan {}: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001251 mcastIp, deviceId, port.toLong(), assignedVlan, error));
Pierb0328e42018-03-27 11:29:42 -07001252 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
Charles Chan2199c302016-04-23 17:36:10 -07001253 mcastNextObjStore.remove(mcastStoreKey);
Charles Chand55e84d2016-03-30 17:54:24 -07001254 } else {
1255 // If this is not the last sink, update flows and groups
Pier Luigid1be7b12018-01-19 10:24:53 +01001256 context = new DefaultObjectiveContext(
Charles Chan2199c302016-04-23 17:36:10 -07001257 (objective) -> log.debug("Successfully update {} on {}/{}, vlan {}",
1258 mcastIp, deviceId, port.toLong(), assignedVlan),
Charles Chan1dbadbd2018-08-23 14:30:33 -07001259 (objective, error) -> {
1260 log.warn("Failed to update {} on {}/{}, vlan {}: {}",
1261 mcastIp, deviceId, port.toLong(), assignedVlan, error);
1262 srManager.invalidateNextObj(objective.id());
1263 });
Pier Luigid1be7b12018-01-19 10:24:53 +01001264 // Here we store the next objective with the remaining port
Pierb0328e42018-03-27 11:29:42 -07001265 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigid1be7b12018-01-19 10:24:53 +01001266 existingPorts, nextObj.id()).removeFromExisting();
Pierb0328e42018-03-27 11:29:42 -07001267 fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, newNextObj.id()).add(context);
Charles Chan2199c302016-04-23 17:36:10 -07001268 mcastNextObjStore.put(mcastStoreKey, newNextObj);
Charles Chand55e84d2016-03-30 17:54:24 -07001269 }
Pier Luigid1be7b12018-01-19 10:24:53 +01001270 // Let's modify the next objective removing the bucket
Pierb0328e42018-03-27 11:29:42 -07001271 newNextObj = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
Pier Luigid1be7b12018-01-19 10:24:53 +01001272 ImmutableSet.of(port), nextObj.id()).removeFromExisting();
Vignesh Ethirajece19c72019-08-26 12:18:42 +00001273 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1274 log.debug("skip forward and next flow objectives from adding flows on device: {}", deviceId);
1275 } else {
1276 srManager.flowObjectiveService.next(deviceId, newNextObj);
1277 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1278 }
Charles Chand55e84d2016-03-30 17:54:24 -07001279 return existingPorts.isEmpty();
1280 }
1281
Charles Chan2199c302016-04-23 17:36:10 -07001282 /**
1283 * Removes entire group on given device.
1284 *
1285 * @param deviceId device ID
1286 * @param mcastIp multicast group to be removed
1287 * @param assignedVlan assigned VLAN ID
1288 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001289 private void removeGroupFromDevice(DeviceId deviceId, IpAddress mcastIp,
1290 VlanId assignedVlan) {
Pier7631c492018-04-19 16:47:06 +02001291 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
Charles Chan2199c302016-04-23 17:36:10 -07001292 // This device is not serving this multicast group
1293 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1294 log.warn("{} is not serving {}. Abort.", deviceId, mcastIp);
1295 return;
1296 }
1297 NextObjective nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Charles Chan2199c302016-04-23 17:36:10 -07001298 ObjectiveContext context = new DefaultObjectiveContext(
1299 (objective) -> log.debug("Successfully remove {} on {}, vlan {}",
1300 mcastIp, deviceId, assignedVlan),
Pier7631c492018-04-19 16:47:06 +02001301 (objective, error) -> log.warn("Failed to remove {} on {}, vlan {}: {}",
Charles Chan2199c302016-04-23 17:36:10 -07001302 mcastIp, deviceId, assignedVlan, error));
Vignesh Ethirajece19c72019-08-26 12:18:42 +00001303 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1304 log.debug("skip flow changes on unconfigured device: {}", deviceId);
1305 } else {
1306 ForwardingObjective fwdObj = mcastUtils.fwdObjBuilder(mcastIp, assignedVlan, nextObj.id()).remove(context);
1307 srManager.flowObjectiveService.forward(deviceId, fwdObj);
1308 }
Charles Chan2199c302016-04-23 17:36:10 -07001309 mcastNextObjStore.remove(mcastStoreKey);
Charles Chan2199c302016-04-23 17:36:10 -07001310 }
1311
Pier Luigieba73a02018-01-16 10:47:50 +01001312 private void installPath(IpAddress mcastIp, ConnectPoint source, Path mcastPath) {
Pier Luigieba73a02018-01-16 10:47:50 +01001313 List<Link> links = mcastPath.links();
Pier37db3692018-03-12 15:00:54 -07001314 // Setup new ingress mcast role
Pier7631c492018-04-19 16:47:06 +02001315 mcastRoleStore.put(new McastRoleStoreKey(mcastIp, links.get(0).src().deviceId(), source),
Pier37db3692018-03-12 15:00:54 -07001316 INGRESS);
Pier Luigieba73a02018-01-16 10:47:50 +01001317 // For each link, modify the next on the source device adding the src port
1318 // and a new filter objective on the destination port
1319 links.forEach(link -> {
1320 addPortToDevice(link.src().deviceId(), link.src().port(), mcastIp,
Pierb0328e42018-03-27 11:29:42 -07001321 mcastUtils.assignedVlan(link.src().deviceId().equals(source.deviceId()) ? source : null));
1322 mcastUtils.addFilterToDevice(link.dst().deviceId(), link.dst().port(),
1323 mcastUtils.assignedVlan(null), mcastIp, null);
Pier Luigieba73a02018-01-16 10:47:50 +01001324 });
Pier37db3692018-03-12 15:00:54 -07001325 // Setup mcast role for the transit
1326 links.stream()
1327 .filter(link -> !link.src().deviceId().equals(source.deviceId()))
Pier7631c492018-04-19 16:47:06 +02001328 .forEach(link -> mcastRoleStore.put(new McastRoleStoreKey(mcastIp, link.src().deviceId(), source),
Pier37db3692018-03-12 15:00:54 -07001329 TRANSIT));
Charles Chan2199c302016-04-23 17:36:10 -07001330 }
1331
Charles Chand55e84d2016-03-30 17:54:24 -07001332 /**
Pier3ee24552018-03-14 16:47:32 -07001333 * Go through all the paths, looking for shared links to be used
1334 * in the final path computation.
1335 *
1336 * @param egresses egress devices
1337 * @param availablePaths all the available paths towards the egress
1338 * @return shared links between egress devices
1339 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001340 private Set<Link> exploreMcastTree(Set<DeviceId> egresses,
1341 Map<DeviceId, List<Path>> availablePaths) {
Pier3ee24552018-03-14 16:47:32 -07001342 int minLength = Integer.MAX_VALUE;
1343 int length;
Pier3ee24552018-03-14 16:47:32 -07001344 List<Path> currentPaths;
1345 // Verify the source can still reach all the egresses
1346 for (DeviceId egress : egresses) {
1347 // From the source we cannot reach all the sinks
Pierb0328e42018-03-27 11:29:42 -07001348 // just continue and let's figure out after
Pier3ee24552018-03-14 16:47:32 -07001349 currentPaths = availablePaths.get(egress);
1350 if (currentPaths.isEmpty()) {
1351 continue;
1352 }
Pier7631c492018-04-19 16:47:06 +02001353 // Get the length of the first one available, update the min length
Pier3ee24552018-03-14 16:47:32 -07001354 length = currentPaths.get(0).links().size();
1355 if (length < minLength) {
1356 minLength = length;
1357 }
Pier Luigif7049c52018-02-23 19:57:40 +01001358 }
Pier3ee24552018-03-14 16:47:32 -07001359 // If there are no paths
1360 if (minLength == Integer.MAX_VALUE) {
1361 return Collections.emptySet();
1362 }
Pier3ee24552018-03-14 16:47:32 -07001363 int index = 0;
Pier3ee24552018-03-14 16:47:32 -07001364 Set<Link> sharedLinks = Sets.newHashSet();
1365 Set<Link> currentSharedLinks;
1366 Set<Link> currentLinks;
Pierb0328e42018-03-27 11:29:42 -07001367 DeviceId egressToRemove = null;
Pier3ee24552018-03-14 16:47:32 -07001368 // Let's find out the shared links
1369 while (index < minLength) {
1370 // Initialize the intersection with the paths related to the first egress
Pier7631c492018-04-19 16:47:06 +02001371 currentPaths = availablePaths.get(egresses.stream().findFirst().orElse(null));
Pier3ee24552018-03-14 16:47:32 -07001372 currentSharedLinks = Sets.newHashSet();
1373 // Iterate over the paths and take the "index" links
1374 for (Path path : currentPaths) {
1375 currentSharedLinks.add(path.links().get(index));
1376 }
1377 // Iterate over the remaining egress
1378 for (DeviceId egress : egresses) {
1379 // Iterate over the paths and take the "index" links
1380 currentLinks = Sets.newHashSet();
1381 for (Path path : availablePaths.get(egress)) {
1382 currentLinks.add(path.links().get(index));
1383 }
1384 // Do intersection
1385 currentSharedLinks = Sets.intersection(currentSharedLinks, currentLinks);
1386 // If there are no shared paths exit and record the device to remove
1387 // we have to retry with a subset of sinks
1388 if (currentSharedLinks.isEmpty()) {
Pierb0328e42018-03-27 11:29:42 -07001389 egressToRemove = egress;
Pier3ee24552018-03-14 16:47:32 -07001390 index = minLength;
1391 break;
1392 }
1393 }
1394 sharedLinks.addAll(currentSharedLinks);
1395 index++;
1396 }
Pier7631c492018-04-19 16:47:06 +02001397 // If the shared links is empty and there are egress let's retry another time with less sinks,
1398 // we can still build optimal subtrees
Pierb0328e42018-03-27 11:29:42 -07001399 if (sharedLinks.isEmpty() && egresses.size() > 1 && egressToRemove != null) {
1400 egresses.remove(egressToRemove);
Pier3ee24552018-03-14 16:47:32 -07001401 sharedLinks = exploreMcastTree(egresses, availablePaths);
1402 }
1403 return sharedLinks;
1404 }
1405
1406 /**
1407 * Build Mcast tree having as root the given source and as leaves the given egress points.
1408 *
1409 * @param source source of the tree
1410 * @param sinks leaves of the tree
1411 * @return the computed Mcast tree
1412 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001413 private Map<ConnectPoint, List<Path>> computeSinkMcastTree(DeviceId source,
1414 Set<ConnectPoint> sinks) {
Pier3ee24552018-03-14 16:47:32 -07001415 // Get the egress devices, remove source from the egress if present
Pier7631c492018-04-19 16:47:06 +02001416 Set<DeviceId> egresses = sinks.stream().map(ConnectPoint::deviceId)
1417 .filter(deviceId -> !deviceId.equals(source)).collect(Collectors.toSet());
Pier3ee24552018-03-14 16:47:32 -07001418 Map<DeviceId, List<Path>> mcastTree = computeMcastTree(source, egresses);
Pier3ee24552018-03-14 16:47:32 -07001419 final Map<ConnectPoint, List<Path>> finalTree = Maps.newHashMap();
Pierb0328e42018-03-27 11:29:42 -07001420 // We need to put back the source if it was originally present
1421 sinks.forEach(sink -> {
1422 List<Path> sinkPaths = mcastTree.get(sink.deviceId());
1423 finalTree.put(sink, sinkPaths != null ? sinkPaths : ImmutableList.of());
1424 });
Pier3ee24552018-03-14 16:47:32 -07001425 return finalTree;
1426 }
1427
1428 /**
1429 * Build Mcast tree having as root the given source and as leaves the given egress.
1430 *
1431 * @param source source of the tree
1432 * @param egresses leaves of the tree
1433 * @return the computed Mcast tree
1434 */
1435 private Map<DeviceId, List<Path>> computeMcastTree(DeviceId source,
1436 Set<DeviceId> egresses) {
1437 // Pre-compute all the paths
1438 Map<DeviceId, List<Path>> availablePaths = Maps.newHashMap();
Pier3ee24552018-03-14 16:47:32 -07001439 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1440 Collections.emptySet())));
1441 // Explore the topology looking for shared links amongst the egresses
1442 Set<Link> linksToEnforce = exploreMcastTree(Sets.newHashSet(egresses), availablePaths);
Pier3ee24552018-03-14 16:47:32 -07001443 // Build the final paths enforcing the shared links between egress devices
Pier7631c492018-04-19 16:47:06 +02001444 availablePaths.clear();
Pier3ee24552018-03-14 16:47:32 -07001445 egresses.forEach(egress -> availablePaths.put(egress, getPaths(source, egress,
1446 linksToEnforce)));
1447 return availablePaths;
1448 }
1449
1450 /**
1451 * Gets path from src to dst computed using the custom link weigher.
1452 *
1453 * @param src source device ID
1454 * @param dst destination device ID
1455 * @return list of paths from src to dst
1456 */
1457 private List<Path> getPaths(DeviceId src, DeviceId dst, Set<Link> linksToEnforce) {
Pier3ee24552018-03-14 16:47:32 -07001458 final Topology currentTopology = topologyService.currentTopology();
Pier3ee24552018-03-14 16:47:32 -07001459 final LinkWeigher linkWeigher = new SRLinkWeigher(srManager, src, linksToEnforce);
Pier7631c492018-04-19 16:47:06 +02001460 List<Path> allPaths = Lists.newArrayList(topologyService.getPaths(currentTopology, src, dst, linkWeigher));
Pier3ee24552018-03-14 16:47:32 -07001461 log.debug("{} path(s) found from {} to {}", allPaths.size(), src, dst);
1462 return allPaths;
Pier Luigif7049c52018-02-23 19:57:40 +01001463 }
1464
Charles Chand55e84d2016-03-30 17:54:24 -07001465 /**
1466 * Gets a path from src to dst.
1467 * If a path was allocated before, returns the allocated path.
1468 * Otherwise, randomly pick one from available paths.
1469 *
1470 * @param src source device ID
1471 * @param dst destination device ID
1472 * @param mcastIp multicast group
Pier3ee24552018-03-14 16:47:32 -07001473 * @param allPaths paths list
Charles Chand55e84d2016-03-30 17:54:24 -07001474 * @return an optional path from src to dst
1475 */
Pier7631c492018-04-19 16:47:06 +02001476 private Optional<Path> getPath(DeviceId src, DeviceId dst, IpAddress mcastIp,
1477 List<Path> allPaths, ConnectPoint source) {
Pier3ee24552018-03-14 16:47:32 -07001478 if (allPaths == null) {
1479 allPaths = getPaths(src, dst, Collections.emptySet());
1480 }
Charles Chand55e84d2016-03-30 17:54:24 -07001481 if (allPaths.isEmpty()) {
Charles Chand55e84d2016-03-30 17:54:24 -07001482 return Optional.empty();
1483 }
Pier7631c492018-04-19 16:47:06 +02001484 // Create a map index of suitability-to-list of paths. For example
Pier Luigibad6d6c2018-01-23 16:06:38 +01001485 // a path in the list associated to the index 1 shares only the
1486 // first hop and it is less suitable of a path belonging to the index
1487 // 2 that shares leaf-spine.
1488 Map<Integer, List<Path>> eligiblePaths = Maps.newHashMap();
Pier Luigibad6d6c2018-01-23 16:06:38 +01001489 int nhop;
1490 McastStoreKey mcastStoreKey;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001491 PortNumber srcPort;
1492 Set<PortNumber> existingPorts;
1493 NextObjective nextObj;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001494 for (Path path : allPaths) {
Pier Luigibad6d6c2018-01-23 16:06:38 +01001495 if (!src.equals(path.links().get(0).src().deviceId())) {
1496 continue;
1497 }
1498 nhop = 0;
1499 // Iterate over the links
Pier7631c492018-04-19 16:47:06 +02001500 for (Link hop : path.links()) {
1501 VlanId assignedVlan = mcastUtils.assignedVlan(hop.src().deviceId().equals(src) ?
1502 source : null);
1503 mcastStoreKey = new McastStoreKey(mcastIp, hop.src().deviceId(), assignedVlan);
1504 // It does not exist in the store, go to the next link
Pier Luigibad6d6c2018-01-23 16:06:38 +01001505 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
Pier7631c492018-04-19 16:47:06 +02001506 continue;
Charles Chand55e84d2016-03-30 17:54:24 -07001507 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001508 nextObj = mcastNextObjStore.get(mcastStoreKey).value();
Pierb0328e42018-03-27 11:29:42 -07001509 existingPorts = mcastUtils.getPorts(nextObj.next());
Pier Luigibad6d6c2018-01-23 16:06:38 +01001510 srcPort = hop.src().port();
Pier7631c492018-04-19 16:47:06 +02001511 // the src port is not used as output, go to the next link
Pier Luigibad6d6c2018-01-23 16:06:38 +01001512 if (!existingPorts.contains(srcPort)) {
Pier7631c492018-04-19 16:47:06 +02001513 continue;
Pier Luigibad6d6c2018-01-23 16:06:38 +01001514 }
1515 nhop++;
1516 }
1517 // n_hop defines the index
1518 if (nhop > 0) {
1519 eligiblePaths.compute(nhop, (index, paths) -> {
1520 paths = paths == null ? Lists.newArrayList() : paths;
1521 paths.add(path);
1522 return paths;
1523 });
Charles Chand55e84d2016-03-30 17:54:24 -07001524 }
1525 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001526 if (eligiblePaths.isEmpty()) {
1527 log.debug("No eligiblePath(s) found from {} to {}", src, dst);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001528 Collections.shuffle(allPaths);
1529 return allPaths.stream().findFirst();
1530 }
Pier Luigibad6d6c2018-01-23 16:06:38 +01001531 // Let's take the best ones
Pier7631c492018-04-19 16:47:06 +02001532 Integer bestIndex = eligiblePaths.keySet().stream()
1533 .sorted(Comparator.reverseOrder()).findFirst().orElse(null);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001534 List<Path> bestPaths = eligiblePaths.get(bestIndex);
1535 log.debug("{} eligiblePath(s) found from {} to {}",
1536 bestPaths.size(), src, dst);
Pier Luigibad6d6c2018-01-23 16:06:38 +01001537 Collections.shuffle(bestPaths);
1538 return bestPaths.stream().findFirst();
Charles Chand55e84d2016-03-30 17:54:24 -07001539 }
1540
1541 /**
Pier7631c492018-04-19 16:47:06 +02001542 * Gets device(s) of given role and of given source in given multicast tree.
1543 *
1544 * @param mcastIp multicast IP
1545 * @param role multicast role
1546 * @param source source connect point
1547 * @return set of device ID or empty set if not found
1548 */
1549 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role, ConnectPoint source) {
1550 return mcastRoleStore.entrySet().stream()
1551 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
Charles Chan0e081ad2018-05-10 22:19:43 +00001552 entry.getKey().source().equals(source) &&
1553 entry.getValue().value() == role)
Pier7631c492018-04-19 16:47:06 +02001554 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1555 }
1556
1557 /**
Charles Chan2199c302016-04-23 17:36:10 -07001558 * Gets device(s) of given role in given multicast group.
1559 *
1560 * @param mcastIp multicast IP
1561 * @param role multicast role
1562 * @return set of device ID or empty set if not found
1563 */
1564 private Set<DeviceId> getDevice(IpAddress mcastIp, McastRole role) {
1565 return mcastRoleStore.entrySet().stream()
1566 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1567 entry.getValue().value() == role)
Pier7631c492018-04-19 16:47:06 +02001568 .map(Entry::getKey).map(McastRoleStoreKey::deviceId).collect(Collectors.toSet());
1569 }
1570
1571 /**
1572 * Gets source(s) of given role, given device in given multicast group.
1573 *
1574 * @param mcastIp multicast IP
1575 * @param deviceId device id
1576 * @param role multicast role
1577 * @return set of device ID or empty set if not found
1578 */
1579 private Set<ConnectPoint> getSources(IpAddress mcastIp, DeviceId deviceId, McastRole role) {
1580 return mcastRoleStore.entrySet().stream()
1581 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp) &&
1582 entry.getKey().deviceId().equals(deviceId) && entry.getValue().value() == role)
1583 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
1584 }
1585
1586 /**
1587 * Gets source(s) of given multicast group.
1588 *
1589 * @param mcastIp multicast IP
1590 * @return set of device ID or empty set if not found
1591 */
1592 private Set<ConnectPoint> getSources(IpAddress mcastIp) {
1593 return mcastRoleStore.entrySet().stream()
1594 .filter(entry -> entry.getKey().mcastIp().equals(mcastIp))
1595 .map(Entry::getKey).map(McastRoleStoreKey::source).collect(Collectors.toSet());
Charles Chan2199c302016-04-23 17:36:10 -07001596 }
1597
1598 /**
1599 * Gets groups which is affected by the link down event.
1600 *
1601 * @param link link going down
1602 * @return a set of multicast IpAddress
1603 */
1604 private Set<IpAddress> getAffectedGroups(Link link) {
1605 DeviceId deviceId = link.src().deviceId();
1606 PortNumber port = link.src().port();
1607 return mcastNextObjStore.entrySet().stream()
1608 .filter(entry -> entry.getKey().deviceId().equals(deviceId) &&
Pier7631c492018-04-19 16:47:06 +02001609 mcastUtils.getPorts(entry.getValue().value().next()).contains(port))
1610 .map(Entry::getKey).map(McastStoreKey::mcastIp).collect(Collectors.toSet());
Charles Chan2199c302016-04-23 17:36:10 -07001611 }
1612
1613 /**
Pier Luigieba73a02018-01-16 10:47:50 +01001614 * Gets groups which are affected by the device down event.
1615 *
1616 * @param deviceId device going down
1617 * @return a set of multicast IpAddress
1618 */
1619 private Set<IpAddress> getAffectedGroups(DeviceId deviceId) {
1620 return mcastNextObjStore.entrySet().stream()
1621 .filter(entry -> entry.getKey().deviceId().equals(deviceId))
Pier3ee24552018-03-14 16:47:32 -07001622 .map(Entry::getKey).map(McastStoreKey::mcastIp)
Pier Luigieba73a02018-01-16 10:47:50 +01001623 .collect(Collectors.toSet());
1624 }
1625
1626 /**
Charles Chan2199c302016-04-23 17:36:10 -07001627 * Gets the spine-facing port on ingress device of given multicast group.
1628 *
1629 * @param mcastIp multicast IP
Pier7631c492018-04-19 16:47:06 +02001630 * @param ingressDevice the ingress device
1631 * @param source the source connect point
Charles Chan2199c302016-04-23 17:36:10 -07001632 * @return spine-facing port on ingress device
1633 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001634 private Set<PortNumber> ingressTransitPort(IpAddress mcastIp, DeviceId ingressDevice,
1635 ConnectPoint source) {
Pier37db3692018-03-12 15:00:54 -07001636 ImmutableSet.Builder<PortNumber> portBuilder = ImmutableSet.builder();
Charles Chan2199c302016-04-23 17:36:10 -07001637 if (ingressDevice != null) {
Andrea Campanellab20b8ea2018-06-05 14:19:21 +02001638 Versioned<NextObjective> nextObjVers = mcastNextObjStore.get(new McastStoreKey(mcastIp, ingressDevice,
1639 mcastUtils.assignedVlan(source)));
1640 if (nextObjVers == null) {
1641 log.warn("Absent next objective for {}", new McastStoreKey(mcastIp, ingressDevice,
1642 mcastUtils.assignedVlan(source)));
1643 return portBuilder.build();
1644 }
1645 NextObjective nextObj = nextObjVers.value();
Pierb0328e42018-03-27 11:29:42 -07001646 Set<PortNumber> ports = mcastUtils.getPorts(nextObj.next());
Pier37db3692018-03-12 15:00:54 -07001647 // Let's find out all the ingress-transit ports
Charles Chan2199c302016-04-23 17:36:10 -07001648 for (PortNumber port : ports) {
1649 // Spine-facing port should have no subnet and no xconnect
Pier Luigi96fe0772018-02-28 12:10:50 +01001650 if (srManager.deviceConfiguration() != null &&
1651 srManager.deviceConfiguration().getPortSubnets(ingressDevice, port).isEmpty() &&
Charles Chan4e87b3e2018-06-19 20:31:57 -07001652 (srManager.xconnectService == null ||
1653 !srManager.xconnectService.hasXconnect(new ConnectPoint(ingressDevice, port)))) {
Pier37db3692018-03-12 15:00:54 -07001654 portBuilder.add(port);
Charles Chan2199c302016-04-23 17:36:10 -07001655 }
1656 }
1657 }
Pier37db3692018-03-12 15:00:54 -07001658 return portBuilder.build();
Charles Chan2199c302016-04-23 17:36:10 -07001659 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001660
1661 /**
Pier26d00c62018-04-17 15:50:43 +02001662 * Verify if a given connect point is sink for this group.
1663 *
1664 * @param mcastIp group address
1665 * @param connectPoint connect point to be verified
Pier7631c492018-04-19 16:47:06 +02001666 * @param source source connect point
Pier26d00c62018-04-17 15:50:43 +02001667 * @return true if the connect point is sink of the group
1668 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001669 private boolean isSinkForGroup(IpAddress mcastIp, ConnectPoint connectPoint,
1670 ConnectPoint source) {
Pier7631c492018-04-19 16:47:06 +02001671 VlanId assignedVlan = mcastUtils.assignedVlan(connectPoint.deviceId().equals(source.deviceId()) ?
1672 source : null);
1673 McastStoreKey mcastStoreKey = new McastStoreKey(mcastIp, connectPoint.deviceId(), assignedVlan);
Pier26d00c62018-04-17 15:50:43 +02001674 if (!mcastNextObjStore.containsKey(mcastStoreKey)) {
1675 return false;
1676 }
Pier26d00c62018-04-17 15:50:43 +02001677 NextObjective mcastNext = mcastNextObjStore.get(mcastStoreKey).value();
1678 return mcastUtils.getPorts(mcastNext.next()).contains(connectPoint.port());
1679 }
1680
1681 /**
Pier7631c492018-04-19 16:47:06 +02001682 * Verify if a given connect point is sink for this group and for this source.
1683 *
1684 * @param mcastIp group address
1685 * @param connectPoint connect point to be verified
1686 * @param source source connect point
1687 * @return true if the connect point is sink of the group
1688 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001689 private boolean isSinkForSource(IpAddress mcastIp, ConnectPoint connectPoint,
1690 ConnectPoint source) {
Pier7631c492018-04-19 16:47:06 +02001691 boolean isSink = isSinkForGroup(mcastIp, connectPoint, source);
1692 DeviceId device;
1693 if (connectPoint.deviceId().equals(source.deviceId())) {
1694 device = getDevice(mcastIp, INGRESS, source).stream()
1695 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1696 .findFirst().orElse(null);
1697 } else {
1698 device = getDevice(mcastIp, EGRESS, source).stream()
1699 .filter(deviceId -> deviceId.equals(connectPoint.deviceId()))
1700 .findFirst().orElse(null);
1701 }
1702 return isSink && device != null;
1703 }
1704
1705 /**
1706 * Verify if a sink is reachable from this source.
1707 *
1708 * @param mcastIp group address
1709 * @param sink connect point to be verified
1710 * @param source source connect point
1711 * @return true if the connect point is reachable from the source
1712 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001713 private boolean isSinkReachable(IpAddress mcastIp, ConnectPoint sink,
1714 ConnectPoint source) {
Pier7631c492018-04-19 16:47:06 +02001715 return sink.deviceId().equals(source.deviceId()) ||
1716 getPath(source.deviceId(), sink.deviceId(), mcastIp, null, source).isPresent();
1717 }
1718
1719 /**
Pier Luigib72201b2018-01-25 16:16:02 +01001720 * Updates filtering objective for given device and port.
1721 * It is called in general when the mcast config has been
1722 * changed.
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001723 *
1724 * @param deviceId device ID
1725 * @param portNum ingress port number
1726 * @param vlanId assigned VLAN ID
1727 * @param install true to add, false to remove
1728 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001729 public void updateFilterToDevice(DeviceId deviceId, PortNumber portNum,
1730 VlanId vlanId, boolean install) {
Pier Luigib72201b2018-01-25 16:16:02 +01001731 lastMcastChange = Instant.now();
1732 mcastLock();
1733 try {
Pier7631c492018-04-19 16:47:06 +02001734 // Iterates over the route and updates properly the filtering objective on the source device.
Pier Luigib72201b2018-01-25 16:16:02 +01001735 srManager.multicastRouteService.getRoutes().forEach(mcastRoute -> {
Pier4694e092018-04-17 16:29:56 +02001736 log.debug("Update filter for {}", mcastRoute.group());
Pier4694e092018-04-17 16:29:56 +02001737 if (!mcastUtils.isLeader(mcastRoute.group())) {
1738 log.debug("Skip {} due to lack of leadership", mcastRoute.group());
1739 return;
1740 }
Pier7631c492018-04-19 16:47:06 +02001741 // Get the sources and for each one update properly the filtering objectives
1742 Set<ConnectPoint> sources = srManager.multicastRouteService.sources(mcastRoute);
1743 sources.forEach(source -> {
1744 if (source.deviceId().equals(deviceId) && source.port().equals(portNum)) {
1745 if (install) {
1746 mcastUtils.addFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), INGRESS);
1747 } else {
1748 mcastUtils.removeFilterToDevice(deviceId, portNum, vlanId, mcastRoute.group(), null);
1749 }
Pier Luigib72201b2018-01-25 16:16:02 +01001750 }
Pier7631c492018-04-19 16:47:06 +02001751 });
Pier Luigib72201b2018-01-25 16:16:02 +01001752 });
1753 } finally {
1754 mcastUnlock();
1755 }
1756 }
1757
1758 /**
1759 * Performs bucket verification operation for all mcast groups in the devices.
1760 * Firstly, it verifies that mcast is stable before trying verification operation.
1761 * Verification consists in creating new nexts with VERIFY operation. Actually,
1762 * the operation is totally delegated to the driver.
1763 */
Pier7631c492018-04-19 16:47:06 +02001764 private final class McastBucketCorrector implements Runnable {
Pier Luigib72201b2018-01-25 16:16:02 +01001765
1766 @Override
1767 public void run() {
Pier Luigib72201b2018-01-25 16:16:02 +01001768 if (!isMcastStable()) {
1769 return;
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001770 }
Pier Luigib72201b2018-01-25 16:16:02 +01001771 mcastLock();
1772 try {
1773 // Iterates over the routes and verify the related next objectives
1774 srManager.multicastRouteService.getRoutes()
Pier7631c492018-04-19 16:47:06 +02001775 .stream().map(McastRoute::group)
Pier Luigib72201b2018-01-25 16:16:02 +01001776 .forEach(mcastIp -> {
Pier7631c492018-04-19 16:47:06 +02001777 log.trace("Running mcast buckets corrector for mcast group: {}", mcastIp);
1778 // Verify leadership on the operation
1779 if (!mcastUtils.isLeader(mcastIp)) {
1780 log.trace("Skip {} due to lack of leadership", mcastIp);
1781 return;
1782 }
1783 // Get sources and sinks from Mcast Route Service and warn about errors
1784 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Pierb0328e42018-03-27 11:29:42 -07001785 Set<ConnectPoint> sinks = mcastUtils.getSinks(mcastIp).values().stream()
Pier7631c492018-04-19 16:47:06 +02001786 .flatMap(Collection::stream).collect(Collectors.toSet());
1787 // Do not proceed if sources of this group are missing
1788 if (sources.isEmpty()) {
Pier Luigib87b8ab2018-03-02 12:53:37 +01001789 if (!sinks.isEmpty()) {
1790 log.warn("Unable to run buckets corrector. " +
Pier7631c492018-04-19 16:47:06 +02001791 "Missing source {} for group {}", sources, mcastIp);
Pier Luigib87b8ab2018-03-02 12:53:37 +01001792 }
Pier Luigib72201b2018-01-25 16:16:02 +01001793 return;
1794 }
Pier7631c492018-04-19 16:47:06 +02001795 sources.forEach(source -> {
1796 // For each group we get current information in the store
1797 // and issue a check of the next objectives in place
1798 Set<DeviceId> ingressDevices = getDevice(mcastIp, INGRESS, source);
1799 Set<DeviceId> transitDevices = getDevice(mcastIp, TRANSIT, source);
1800 Set<DeviceId> egressDevices = getDevice(mcastIp, EGRESS, source);
1801 // Do not proceed if ingress devices are missing
1802 if (ingressDevices.isEmpty()) {
1803 if (!sinks.isEmpty()) {
1804 log.warn("Unable to run buckets corrector. " +
1805 "Missing ingress {} for source {} and for group {}",
1806 ingressDevices, source, mcastIp);
1807 }
1808 return;
Pier Luigib72201b2018-01-25 16:16:02 +01001809 }
Pier7631c492018-04-19 16:47:06 +02001810 // Create the set of the devices to be processed
1811 ImmutableSet.Builder<DeviceId> devicesBuilder = ImmutableSet.builder();
1812 if (!ingressDevices.isEmpty()) {
1813 devicesBuilder.addAll(ingressDevices);
1814 }
1815 if (!transitDevices.isEmpty()) {
1816 devicesBuilder.addAll(transitDevices);
1817 }
1818 if (!egressDevices.isEmpty()) {
1819 devicesBuilder.addAll(egressDevices);
1820 }
1821 Set<DeviceId> devicesToProcess = devicesBuilder.build();
1822 devicesToProcess.forEach(deviceId -> {
Vignesh Ethirajece19c72019-08-26 12:18:42 +00001823 if (!srManager.deviceConfiguration().isConfigured(deviceId)) {
1824 log.trace("Skipping Bucket corrector for unconfigured device {}", deviceId);
1825 return;
1826 }
Pier7631c492018-04-19 16:47:06 +02001827 VlanId assignedVlan = mcastUtils.assignedVlan(deviceId.equals(source.deviceId()) ?
1828 source : null);
1829 McastStoreKey currentKey = new McastStoreKey(mcastIp, deviceId, assignedVlan);
1830 if (mcastNextObjStore.containsKey(currentKey)) {
1831 NextObjective currentNext = mcastNextObjStore.get(currentKey).value();
1832 // Rebuild the next objective using assigned vlan
1833 currentNext = mcastUtils.nextObjBuilder(mcastIp, assignedVlan,
1834 mcastUtils.getPorts(currentNext.next()), currentNext.id()).verify();
1835 // Send to the flowobjective service
1836 srManager.flowObjectiveService.next(deviceId, currentNext);
1837 } else {
1838 log.warn("Unable to run buckets corrector. " +
1839 "Missing next for {}, for source {} and for group {}",
1840 deviceId, source, mcastIp);
1841 }
1842 });
Pier Luigib72201b2018-01-25 16:16:02 +01001843 });
Pier Luigib72201b2018-01-25 16:16:02 +01001844 });
1845 } finally {
Pier Luigib72201b2018-01-25 16:16:02 +01001846 mcastUnlock();
1847 }
1848
1849 }
Jonghwan Hyun42fe1052017-08-25 17:48:36 -07001850 }
Pier Luigib29144d2018-01-15 18:06:43 +01001851
Pier7631c492018-04-19 16:47:06 +02001852 /**
1853 * Returns the associated next ids to the mcast groups or to the single
1854 * group if mcastIp is present.
1855 *
1856 * @param mcastIp the group ip
1857 * @return the mapping mcastIp-device to next id
1858 */
Charles Chan1fa010c2018-08-19 19:21:46 -07001859 public Map<McastStoreKey, Integer> getNextIds(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +01001860 if (mcastIp != null) {
1861 return mcastNextObjStore.entrySet().stream()
1862 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Pier7631c492018-04-19 16:47:06 +02001863 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigib29144d2018-01-15 18:06:43 +01001864 }
Pier Luigib29144d2018-01-15 18:06:43 +01001865 return mcastNextObjStore.entrySet().stream()
Pier7631c492018-04-19 16:47:06 +02001866 .collect(Collectors.toMap(Entry::getKey, entry -> entry.getValue().value().id()));
Pier Luigib29144d2018-01-15 18:06:43 +01001867 }
1868
Piere7e8e3c2018-04-17 17:25:22 +02001869 /**
Charles Chan1fa010c2018-08-19 19:21:46 -07001870 * Removes given next ID from mcast next id store.
1871 *
1872 * @param nextId next id
1873 */
1874 public void removeNextId(int nextId) {
1875 mcastNextObjStore.entrySet().forEach(e -> {
1876 if (e.getValue().value().id() == nextId) {
1877 mcastNextObjStore.remove(e.getKey());
1878 }
1879 });
1880 }
1881
1882 /**
Piere7e8e3c2018-04-17 17:25:22 +02001883 * Returns the associated roles to the mcast groups or to the single
1884 * group if mcastIp is present.
1885 *
1886 * @param mcastIp the group ip
1887 * @return the mapping mcastIp-device to mcast role
1888 *
1889 * @deprecated in 1.12 ("Magpie") release.
1890 */
1891 @Deprecated
Pier Luigi96fe0772018-02-28 12:10:50 +01001892 public Map<McastStoreKey, McastRole> getMcastRoles(IpAddress mcastIp) {
Pier Luigib29144d2018-01-15 18:06:43 +01001893 if (mcastIp != null) {
1894 return mcastRoleStore.entrySet().stream()
1895 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
Pier7631c492018-04-19 16:47:06 +02001896 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1897 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigib29144d2018-01-15 18:06:43 +01001898 }
Pier Luigib29144d2018-01-15 18:06:43 +01001899 return mcastRoleStore.entrySet().stream()
Pier7631c492018-04-19 16:47:06 +02001900 .collect(Collectors.toMap(entry -> new McastStoreKey(entry.getKey().mcastIp(),
1901 entry.getKey().deviceId(), null), entry -> entry.getValue().value()));
Pier Luigib29144d2018-01-15 18:06:43 +01001902 }
1903
Piere7e8e3c2018-04-17 17:25:22 +02001904 /**
Pier7631c492018-04-19 16:47:06 +02001905 * Returns the associated roles to the mcast groups.
1906 *
1907 * @param mcastIp the group ip
1908 * @param sourcecp the source connect point
1909 * @return the mapping mcastIp-device to mcast role
1910 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001911 public Map<McastRoleStoreKey, McastRole> getMcastRoles(IpAddress mcastIp,
1912 ConnectPoint sourcecp) {
Pier7631c492018-04-19 16:47:06 +02001913 if (mcastIp != null) {
1914 Map<McastRoleStoreKey, McastRole> roles = mcastRoleStore.entrySet().stream()
1915 .filter(mcastEntry -> mcastIp.equals(mcastEntry.getKey().mcastIp()))
1916 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1917 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1918 if (sourcecp != null) {
1919 roles = roles.entrySet().stream()
1920 .filter(mcastEntry -> sourcecp.equals(mcastEntry.getKey().source()))
1921 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1922 entry.getKey().deviceId(), entry.getKey().source()), Entry::getValue));
1923 }
1924 return roles;
1925 }
1926 return mcastRoleStore.entrySet().stream()
1927 .collect(Collectors.toMap(entry -> new McastRoleStoreKey(entry.getKey().mcastIp(),
1928 entry.getKey().deviceId(), entry.getKey().source()), entry -> entry.getValue().value()));
1929 }
1930
1931
1932 /**
Piere7e8e3c2018-04-17 17:25:22 +02001933 * Returns the associated paths to the mcast group.
1934 *
1935 * @param mcastIp the group ip
1936 * @return the mapping egress point to mcast path
1937 *
1938 * @deprecated in 1.12 ("Magpie") release.
1939 */
1940 @Deprecated
Pier Luigib29144d2018-01-15 18:06:43 +01001941 public Map<ConnectPoint, List<ConnectPoint>> getMcastPaths(IpAddress mcastIp) {
1942 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
Pierb0328e42018-03-27 11:29:42 -07001943 ConnectPoint source = mcastUtils.getSource(mcastIp);
Pier Luigib29144d2018-01-15 18:06:43 +01001944 if (source != null) {
Pier Luigib29144d2018-01-15 18:06:43 +01001945 Set<DeviceId> visited = Sets.newHashSet();
Pier7631c492018-04-19 16:47:06 +02001946 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan1fa010c2018-08-19 19:21:46 -07001947 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1948 currentPath, mcastIp, source);
Pier Luigib29144d2018-01-15 18:06:43 +01001949 }
1950 return mcastPaths;
1951 }
1952
Piere7e8e3c2018-04-17 17:25:22 +02001953 /**
1954 * Returns the associated trees to the mcast group.
1955 *
1956 * @param mcastIp the group ip
1957 * @param sourcecp the source connect point
1958 * @return the mapping egress point to mcast path
1959 */
Charles Chan0e081ad2018-05-10 22:19:43 +00001960 public Multimap<ConnectPoint, List<ConnectPoint>> getMcastTrees(IpAddress mcastIp,
1961 ConnectPoint sourcecp) {
Piere7e8e3c2018-04-17 17:25:22 +02001962 Multimap<ConnectPoint, List<ConnectPoint>> mcastTrees = HashMultimap.create();
Piere7e8e3c2018-04-17 17:25:22 +02001963 Set<ConnectPoint> sources = mcastUtils.getSources(mcastIp);
Piere7e8e3c2018-04-17 17:25:22 +02001964 if (sourcecp != null) {
1965 sources = sources.stream()
Pier7631c492018-04-19 16:47:06 +02001966 .filter(source -> source.equals(sourcecp)).collect(Collectors.toSet());
Piere7e8e3c2018-04-17 17:25:22 +02001967 }
Piere7e8e3c2018-04-17 17:25:22 +02001968 if (!sources.isEmpty()) {
1969 sources.forEach(source -> {
Piere7e8e3c2018-04-17 17:25:22 +02001970 Map<ConnectPoint, List<ConnectPoint>> mcastPaths = Maps.newHashMap();
1971 Set<DeviceId> visited = Sets.newHashSet();
1972 List<ConnectPoint> currentPath = Lists.newArrayList(source);
Charles Chan1fa010c2018-08-19 19:21:46 -07001973 mcastUtils.buildMcastPaths(mcastNextObjStore.asJavaMap(), source.deviceId(), visited, mcastPaths,
1974 currentPath, mcastIp, source);
Piere7e8e3c2018-04-17 17:25:22 +02001975 mcastPaths.forEach(mcastTrees::put);
1976 });
1977 }
1978 return mcastTrees;
1979 }
1980
1981 /**
Pier4694e092018-04-17 16:29:56 +02001982 * Return the leaders of the mcast groups.
1983 *
1984 * @param mcastIp the group ip
1985 * @return the mapping group-node
1986 */
1987 public Map<IpAddress, NodeId> getMcastLeaders(IpAddress mcastIp) {
1988 return mcastUtils.getMcastLeaders(mcastIp);
1989 }
Charles Chand55e84d2016-03-30 17:54:24 -07001990}